aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-09-22 00:02:53 +0000
committerdos-reis <gdr@axiomatics.org>2008-09-22 00:02:53 +0000
commitb79e1543c220c230e3c88dbbee3837d9859f54bf (patch)
treed643cf5255dec7e82ae74ebba88bb462f21cd31a /src
parent6f1839db405dee48ca384b957521eb2ac1be7b11 (diff)
downloadopen-axiom-b79e1543c220c230e3c88dbbee3837d9859f54bf.tar.gz
* algebra/syntax.spad.pamphlet: Tie the recursive knots between
syntax domains.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/algebra/syntax.spad.pamphlet636
-rw-r--r--src/interp/g-util.boot1
-rw-r--r--src/share/algebra/browse.daase1792
-rw-r--r--src/share/algebra/category.daase1246
-rw-r--r--src/share/algebra/compress.daase1310
-rw-r--r--src/share/algebra/interp.daase9450
-rw-r--r--src/share/algebra/operation.daase29144
8 files changed, 21824 insertions, 21760 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 743cd4fa..e6587ace 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,10 @@
2008-09-21 Gabriel Dos Reis <gdr@cs.tamu.edu>
+ * algebra/syntax.spad.pamphlet: Tie the recursive knots between
+ syntax domains.
+
+2008-09-21 Gabriel Dos Reis <gdr@cs.tamu.edu>
+
* algebra/syntax.spad.pamphlet (SpadAst): New.
* algebra/Makefile.pamphlet (axiom_algebra_layer_user): Add SPADAST.
* share/algebra: Update algebra databases.
diff --git a/src/algebra/syntax.spad.pamphlet b/src/algebra/syntax.spad.pamphlet
index 0c2da993..11550358 100644
--- a/src/algebra/syntax.spad.pamphlet
+++ b/src/algebra/syntax.spad.pamphlet
@@ -368,13 +368,16 @@ import CoercibleTo Syntax
)abbrev category ASTCAT AbstractSyntaxCategory
++ Author: Gabriel Dos Reis
++ Date Created: July 5, 2008
-++ Date Last Modified: July 5, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This is the category of Spad abstract syntax trees.
AbstractSyntaxCategory(): Category ==
- Join(SetCategory, CoercibleTo Syntax)
+ Join(SetCategory, CoercibleTo Syntax) with
+ coerce: Syntax -> %
add
coerce(x: %): Syntax ==
x pretend Syntax
+ coerce(x: Syntax): % ==
+ x pretend %
coerce(x: %): OutputForm ==
x::Syntax::OutputForm
@
@@ -388,161 +391,6 @@ AbstractSyntaxCategory(): Category ==
++ Date Last Modified: September 3, 2008
++ Description: This is the category of Spad syntax objects.
SpadSyntaxCategory(): Category == AbstractSyntaxCategory
- add
- renderSyntax: Syntax -> OutputForm
-
- renderMapping(x: List Syntax): OutputForm ==
- src := [renderSyntax t for t in rest x]::List(OutputForm)::OutputForm
- tar := renderSyntax first x
- elt('MappingAst::OutputForm,
- ['source::OutputForm = src, 'target::OutputForm = tar])$OutputForm
-
- renderAttribute(x: Syntax): OutputForm ==
- elt('AttributeAst::OutputForm,
- ['name::OutputForm = renderSyntax x])$OutputForm
-
- renderImport(x: List Syntax): OutputForm ==
- ts := [renderSyntax t for t in x]::List(OutputForm)::OutputForm
- elt('ImportAst::OutputForm, ['imports::OutputForm = ts])$OutputForm
-
- renderSignature(x: List Syntax): OutputForm ==
- n := renderSyntax first x
- s := (last(x) : Signature)::OutputForm
- elt('SignatureAst::OutputForm,
- ['name::OutputForm = n, 'signature::OutputForm = s])$OutputForm
-
- renderIf(x: List Syntax): OutputForm ==
- c := renderSyntax first x
- t := renderSyntax second x
- e := renderSyntax third x
- elt('IfAst::OutputForm,
- ['condition::OutputForm = c, 'thenBranch::OutputForm = t,
- 'elseBranch::OutputForm = e])$OutputForm
-
- renderRepeat(x: List Syntax): OutputForm ==
- its := [renderSyntax(x.i) for i in 1..(#x-1)]
- ::List(OutputForm)::OutputForm
- b := renderSyntax last x
- elt('RepeatAst::OutputForm,
- ['iterators::OutputForm = its, 'body::OutputForm = b])$OutputForm
-
- renderWhile(x: List Syntax): OutputForm ==
- elt('WhileAst::OutputForm,
- ['condition::OutputForm = renderSyntax first x])$OutputForm
-
- renderIn(x: List Syntax): OutputForm ==
- elt('InAst::OutputForm,
- ['iterationVar::OutputForm = renderSyntax first x,
- 'sequence::OutputForm = renderSyntax last x])$OutputForm
-
- renderCollect(x: List Syntax): OutputForm ==
- its := [renderSyntax(x.i) for i in 1..(#x-1)]
- ::List(OutputForm)::OutputForm
- elt('CollectAst::OutputForm,
- ['iterators::OutputForm = its,
- 'body::OutputForm = renderSyntax last x])$OutputForm
-
- renderConstruct(x: List Syntax): OutputForm ==
- es := [renderSyntax t for t in x]::List(OutputForm)::OutputForm
- elt('ConstructAst::OutputForm,
- ['elements::OutputForm = es])$OutputForm
-
- renderControl(tag: Symbol, x: List Syntax): OutputForm ==
- elt(tag::OutputForm,
- ['expression::OutputForm = renderSyntax value x])$OutputForm
-
- renderRestrictedExpr(tag: Symbol, x: List Syntax): OutputForm ==
- elt(tag::OutputForm,
- ['expression::OutputForm = renderSyntax first x,
- 'target::OutputForm = renderSyntax second x])$OutputForm
-
- renderSegment(x: List Syntax): OutputForm ==
- es := [renderSyntax t for t in x]::List(OutputForm)::OutputForm
- elt('SegmentAst::OutputForm, ['bounds::OutputForm = es])$OutputForm
-
- renderSequence(x: List Syntax): OutputForm ==
- elts := [renderSyntax t for t in x]
- elt('SequenceAst::OutputForm,
- ['body::OutputForm = elts::OutputForm,
- 'last::OutputForm = last elts])$OutputForm
-
- renderLet(x: List Syntax): OutputForm ==
- elt('LetAst::OutputForm,
- ['lhs::OutputForm = renderSyntax first x,
- 'rhs::OutputForm = renderSyntax second x])$OutputForm
-
- renderSuchThat(x: List Syntax): OutputForm ==
- elt('SuchThatAst::OutputForm,
- ['predicate::OutputForm = renderSyntax first x])$OutputForm
-
- renderColon(x: List Syntax): OutputForm ==
- elt('ColonAst::OutputForm,
- ['lhs::OutputForm = renderSyntax first x,
- 'rhs::OutputForm = renderSyntax second x])$OutputForm
-
- renderCapsule(x: List Syntax): OutputForm ==
- elt('CapsuleAst::OutputForm,
- ['body::OutputForm =
- [renderSyntax s for s in x]::List(OutputForm)::OutputForm])
-
- renderBinaryExpr(op: Symbol, args: List Syntax): OutputForm ==
- elt(op::OutputForm,
- ['lhs::OutputForm = renderSyntax first args,
- 'rhs::OutputForm = renderSyntax second args])$OutputForm
-
- renderCategory(x: List Syntax): OutputForm ==
- elt('CategoryAst::OutputForm,
- ['kind::OutputForm = renderSyntax first x,
- 'body::OutputForm =
- [renderSyntax s for s in x]::List(OutputForm)::OutputForm])
-
- renderDefinition(x: List Syntax): OutputForm ==
- elt('DefinitionAst::OutputForm,
- ['head::OutputForm = renderSyntax first x,
- 'signature::OutputForm = renderSyntax second x,
- 'body::OutputForm = renderSyntax last x])$OutputForm
-
- renderMacro(x: List Syntax): OutputForm ==
- elt('MacroAst::OutputForm,
- ['head::OutputForm = renderSyntax first x,
- 'body::OutputForm = renderSyntax last x])$OutputForm
-
- renderSyntax x ==
- compound? x =>
- op := getOperator x
- args := getOperands x
- op = 'Mapping => renderMapping args
- op = 'ATTRIBUTE or op = '%Attribute => renderAttribute value args
- op = 'IMPORT or op = '%Import => renderImport args
- op = 'SIGNATURE or op = '%Signature => renderSignature args
- op = 'IF => renderIf args
- op = 'REPEAT => renderRepeat args
- op = 'WHILE => renderWhile args
- op = 'IN => renderIn args
- op = 'COLLECT => renderCollect args
- op = 'construct => renderConstruct args
- op = '_exit => renderControl('ExitAst,args)
- op = '_return => renderControl('ReturnAst,args)
- op = '_:_: => renderRestrictedExpr('CoerceAst,args)
- op = '_pretend => renderRestrictedExpr('PretendAst,args)
- op = '_@ => renderRestrictedExpr('RestrictAst,args)
- op = 'SEGMENT => renderSegment args
- op = 'SEQ => renderSequence args
- op = '%LET => renderLet args
- op = '_| => renderSuchThat args
- op = '_: => renderColon args
- op = 'CAPSULE => renderCapsule args
- op = '_case => renderBinaryExpr('CaseAst, args)
- op = '_has => renderBinaryExpr('HasAst, args)
- op = '_is => renderBinaryExpr('IsAst, args)
- op = 'CATEGORY => renderCategory args
- op = 'DEF => renderDefinition args
- op = 'MDEF => renderMacro args
- x::OutputForm
- x::OutputForm
-
- coerce(x: %): OutputForm ==
- renderSyntax(x::Syntax)
@
\subsection{The Exports of SpadAst}
@@ -771,7 +619,7 @@ import List Symbol
)abbrev domain HEADAST HeadAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: September 3, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents the header of a definition.
HeadAst(): Public == Private where
Public == SpadSyntaxCategory with
@@ -787,26 +635,28 @@ HeadAst(): Public == Private where
headAst(op,args) == per cons(op,args)
name h == first rep h
parameters h == rest rep h
+ coerce(x: %): OutputForm ==
+ elt('HeadAst::OutputForm,
+ ['name::OutputForm = name(x)::OutputForm,
+ 'parameters::OutputForm = parameters(x)::OutputForm])$OutputForm
@
\subsection{The TypeAst domain}
<<domain TYPEAST TypeAst>>=
+SpadAst(): SpadAstExports
+
import AbstractSyntaxCategory
-import Syntax
)abbrev domain TYPEAST TypeAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 28, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents a type AST.
TypeAst(): Public == Private where
- Public == SpadSyntaxCategory with
- coerce: Syntax -> %
- ++ s::TypeAst injects `s' into the TypeAst domain.
+ Public == SpadSyntaxCategory
Private == add
- Rep == Syntax
- coerce(x: Syntax): % == per x
+ coerce(x: %): OutputForm == (x : SpadAst)::OutputForm
@
@@ -819,7 +669,7 @@ import TypeAst
)abbrev domain TYPEAST TypeAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 28, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents an `import' of types.
ImportAst(): Public == Private where
Public == SpadSyntaxCategory with
@@ -832,6 +682,9 @@ ImportAst(): Public == Private where
Rep == Pair(Symbol, List TypeAst)
coerce(ts: List TypeAst): % == per pair('import,ts)
imports x == second rep x
+ coerce(x: %): OutputForm ==
+ elt('ImportAst::OutputForm,
+ ['imports::OutputForm = imports(x)::OutputForm])$OutputForm
@
@@ -841,7 +694,7 @@ ImportAst(): Public == Private where
)abbrev domain MAPPAST MappingAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 28, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents a mapping type AST. A mapping AST
++ is a syntactic description of a function type, e.g. its result
++ type and the list of its argument types.
@@ -864,6 +717,10 @@ MappingAst(): Public == Private where
source x == source(second rep x)$Signature : List(TypeAst)
target x == target(second rep x)$Signature : TypeAst
coerce(x: %): TypeAst == x : TypeAst
+ coerce(x: %): OutputForm ==
+ elt('MappingAst::OutputForm,
+ ['source::OutputForm = source(x)::OutputForm,
+ 'target::OutputForm = target(x)::OutputForm])$OutputForm
@
@@ -873,7 +730,7 @@ MappingAst(): Public == Private where
)abbrev domain SIGAST SignatureAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 28, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents a signature AST. A signature AST
++ is a description of an exported operation, e.g. its name, result
++ type, and the list of its argument types.
@@ -892,6 +749,10 @@ SignatureAst(): Public == Private where
per pair('SIGNATURE,pair(n,[sig]))
name x == first second rep x
signature x == value second second rep x
+ coerce(x: %): OutputForm ==
+ elt('SignatureAst::OutputForm,
+ ['name::OutputForm = name(x)::OutputForm,
+ 'signature::OutputForm = signature(x)::OutputForm])$OutputForm
@
@@ -899,21 +760,25 @@ SignatureAst(): Public == Private where
\subsection{The AttributeAst domain}
<<domain ATTRAST AttributeAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain ATTRAST AttributeAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 30, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents the syntax of an attribute in
++ a category expression.
AttributeAst(): Public == Private where
Public == SpadSyntaxCategory with
- name: % -> Syntax
+ name: % -> SpadAst
++ name(a) returns the name of the attribute `a'. Note, this
++ name may be domain name, not just an identifier.
Private == add
- Rep == Pair(Symbol,Syntax)
+ Rep == Pair(Symbol,SpadAst)
name x == second rep x
-
+ coerce(x: %): OutputForm ==
+ elt('AttributeAst::OutputForm,
+ ['name::OutputForm = name(x)::OutputForm])$OutputForm
@
\subsection{The JoinAst domain}
@@ -922,7 +787,7 @@ AttributeAst(): Public == Private where
)abbrev domain JOINAST JoinAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 30, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents the join of categories ASTs.
JoinAst(): Public == Private where
Public == Join(SpadSyntaxCategory, CoercibleTo TypeAst) with
@@ -942,113 +807,143 @@ JoinAst(): Public == Private where
\subsection{The IfAst domain}
<<domain IFAST IfAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain IFAST IfAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 30, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents AST for conditional expressions.
IfAst(): Public == Private where
Public == SpadSyntaxCategory with
- condition: % -> Syntax
+ condition: % -> SpadAst
++ condition(e) returns the condition of the if-expression `e'.
- thenBranch: % -> Syntax
+ thenBranch: % -> SpadAst
++ thenBranch(e) returns the `then-branch' of `e'.
- elseBranch: % -> Syntax
+ elseBranch: % -> SpadAst
++ thenBranch(e) returns the `else-branch' of `e'.
Private == add
- Rep == List Syntax
+ Rep == List SpadAst
condition x == second rep x
thenBranch x == third rep x
elseBranch x == last rep x
+ coerce(x: %): OutputForm ==
+ elt('IfAst::OutputForm,
+ ['condition::OutputForm = condition(x)::OutputForm,
+ 'thenBranch::OutputForm = thenBranch(x)::OutputForm,
+ 'elseBranch::OutputForm = elseBranch(x)::OutputForm])$OutputForm
+
@
\subsection{The RepeatAst domain}
<<domain RPTAST RepeatAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain RPTAST RepeatAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 30, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents the `repeat' iterator syntax.
RepeatAst(): Public == Private where
Public == SpadSyntaxCategory with
- iterators: % -> List Syntax
+ iterators: % -> List SpadAst
++ iterators(e) returns the list of iterators controlling the loop `e'.
- body: % -> Syntax
+ body: % -> SpadAst
++ body(e) returns the body of the loop `e'.
Private == add
- Rep == List Syntax
+ Rep == List SpadAst
iterators x ==
s := rep x
s.(2..(#s - 1))
-
body x == last rep x
-
+ coerce(x: %): OutputForm ==
+ elt('RepeatAst::OutputForm,
+ ['iterators::OutputForm = iterators(x)::OutputForm,
+ 'body::OutputForm = body(x)::OutputForm])$OutputForm
@
\subsection{The WhileAst domain}
<<domain WHILEAST WhileAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain WHILEAST WhileAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 30, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents the `while' iterator syntax.
WhileAst(): Public == Private where
Public == SpadSyntaxCategory with
- condition: % -> Syntax
+ condition: % -> SpadAst
++ condition(i) returns the condition of the while iterator `i'.
Private == add
- Rep == Pair(Symbol,Syntax)
+ Rep == Pair(Symbol,SpadAst)
condition x == second rep x
+ coerce(x: %): OutputForm ==
+ elt('WhileAst::OutputForm,
+ ['condition::OutputForm = condition(x)::OutputForm])$OutputForm
@
\subsection{The InAst domain}
<<domain INAST InAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain INAST InAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 30, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents the `in' iterator syntax.
InAst(): Public == Private where
Public == SpadSyntaxCategory with
iterationVar: % -> Symbol
++ iterationVar(i) returns the name of the iterating
++ variable of the `in' iterator 'i'
- sequence: % -> Syntax
+ sequence: % -> SpadAst
++ sequence(i) returns the sequence expression being
++ iterated over by `i'.
Private == add
Rep == List Syntax
iterationVar x == (second rep x)::Symbol
- sequence x == last rep x
+ sequence x == (last rep x) : SpadAst
+ coerce(x: %): OutputForm ==
+ elt('InAst::OutputForm,
+ ['iterationVar::OutputForm = iterationVar(x)::OutputForm,
+ 'sequence::OutputForm = sequence(x)::OutputForm])$OutputForm
+
@
\subsection{The CollectAst domain}
<<domain CLLCTAST CollectAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain CLLCTAST CollectAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 30, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents list comprehension syntax.
CollectAst(): Public == Private where
Public == SpadSyntaxCategory with
- iterators: % -> List Syntax
+ iterators: % -> List SpadAst
++ iterators(e) returns the list of the iterators of
++ the list comprehension `e'.
- body: % -> Syntax
+ body: % -> SpadAst
++ body(e) return the expression being
++ collected by the list comprehension `e'.
Private == add
- Rep == List Syntax
+ Rep == List SpadAst
body x == last rep x
iterators x ==
s := rep x
s.(2..(#s -1))
+ coerce(x: %): OutputForm ==
+ elt('CollectAst::OutputForm,
+ ['iterators::OutputForm = iterators(x)::OutputForm,
+ 'body::OutputForm = body(x)::OutputForm])$OutputForm
@
@@ -1056,19 +951,21 @@ CollectAst(): Public == Private where
\subsection{The ReduceAst domain}
<<domain RDUCEAST ReduceAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain RDUCEAST ReduceAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 30, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents list reduction syntax.
ReduceAst(): Public == Private where
Public == SpadSyntaxCategory with
- operator: % -> Syntax
+ operator: % -> SpadAst
++ operator(e) returns the magma operation being applied.
- body: % -> Syntax
+ body: % -> SpadAst
++ body(e) return the list of expressions being redcued.
Private == add
- Rep == List Syntax
+ Rep == List SpadAst
operator x == second rep x
body x == third rep x
@@ -1077,20 +974,25 @@ ReduceAst(): Public == Private where
\subsection{The ConstructAst domain}
<<domain LSTAST ConstructAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain LSTAST ConstructAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 30, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents `literal sequence' syntax.
ConstructAst(): Public == Private where
Public == SpadSyntaxCategory with
- elements: % -> List Syntax
+ elements: % -> List SpadAst
++ elements(e) returns the list of expressions in the
++ `literal' list `e'.
Private == add
import Pair
- Rep == Pair(Symbol, List Syntax)
+ Rep == Pair(Symbol, List SpadAst)
elements x == second rep x
+ coerce(x: %): OutputForm ==
+ elt('ConstructAst::OutputForm,
+ ['elements::OutputForm = elements(x)::OutputForm])$OutputForm
@
@@ -1098,127 +1000,159 @@ ConstructAst(): Public == Private where
\subsection{The ExitAst domain}
<<domain EXITAST ExitAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain EXITAST ExitAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 30, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents exit expressions.
ExitAst(): Public == Private where
Public == SpadSyntaxCategory with
- expression: % -> Syntax
+ expression: % -> SpadAst
++ expression(e) returns the exit expression of `e'.
level: % -> Integer
++ level(e) returns the nesting exit level of `e'
Private == add
- Rep == List Syntax
+ Rep == List SpadAst
expression x == third rep x
level x == (second rep x) : Integer
+ coerce(x: %): OutputForm ==
+ elt('ExitAst::OutputForm,
+ ['expression::OutputForm = expression(x)::OutputForm,
+ 'level::OutputForm = level(x)::OutputForm])$OutputForm
@
\subsection{The ReturnAst domain}
<<domain RETAST ReturnAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain RETAST ReturnAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 30, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents `return' expressions.
ReturnAst(): Public == Private where
Public == SpadSyntaxCategory with
- expression: % -> Syntax
+ expression: % -> SpadAst
++ expression(e) returns the expression returned by `e'.
Private == add
import Pair
- Rep == Pair(Symbol,Syntax)
+ Rep == Pair(Symbol,SpadAst)
expression x == second rep x
+ coerce(x: %): OutputForm ==
+ elt('ReturnAst::OutputForm,
+ ['expression::OutputForm = expression(x)::OutputForm])$OutputForm
@
\subsection{The SequenceAst domain}
<<domain SEQAST SequenceAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain SEQAST SequenceAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 30, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents a block of expressions.
SequenceAst(): Public == Private where
Public == SpadSyntaxCategory with
- body: % -> List Syntax
+ body: % -> List SpadAst
++ body(e) returns the list of expressions in the sequence
++ of instruction `e'.
- last: % -> Syntax
+ last: % -> SpadAst
++ last(e) returns the last instruction in `e'.
Private == add
import Pair
- Rep == Pair(Symbol,List Syntax)
+ Rep == Pair(Symbol,List SpadAst)
body x == second rep x
- last x == last(second rep x)$List(Syntax)
+ last x == last(second rep x)$List(SpadAst)
+ coerce(x: %): OutputForm ==
+ elt('SequenceAst::OutputForm,
+ ['body::OutputForm = body(x)::OutputForm])$OutputForm
@
\subsection{The LetAst domain}
<<domain LETAST LetAst>>=
-import Syntax
+SpadAst(): SpadAstExports
import List
)abbrev domain LETAST LetAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 30, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents assignment expressions.
LetAst(): Public == Private where
Public == SpadSyntaxCategory with
- lhs: % -> Syntax
+ lhs: % -> SpadAst
++ lhs(e) returns the left hand side of the assignment expression `e'.
- rhs: % -> Syntax
+ rhs: % -> SpadAst
++ rhs(e) returns the right hand side of the assignment expression `e'.
Private == add
- Rep == List Syntax
+ Rep == List SpadAst
lhs x == second rep x
rhs x == third rep x
+ coerce(x: %): OutputForm ==
+ elt('LetAst::OutputForm,
+ ['lhs::OutputForm = lhs(x)::OutputForm,
+ 'rhs::OutputForm = rhs(x)::OutputForm])$OutputForm
@
\subsection{The PretendAst domain}
<<domain PRTDAST PretendAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain PRTDAST PretendAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 30, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents `pretend' expressions.
PretendAst(): Public == Private where
Public == SpadSyntaxCategory with
- expression: % -> Syntax
+ expression: % -> SpadAst
++ expression(e) returns the expression being converted.
target: % -> TypeAst
++ target(e) returns the target type of the conversion..
Private == add
Rep == List Syntax
- expression x == second rep x
+ expression x == (second rep x) : SpadAst
target x == (third rep x) : TypeAst
+ coerce(x: %): OutputForm ==
+ elt('PretendAst::OutputForm,
+ ['expression::OutputForm = expression(x)::OutputForm,
+ 'target::OutputForm = target(x)::OutputForm])$OutputForm
@
\subsection{The CoerceAst domain}
<<domain CRCEAST CoercedAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain CRCEAST CoerceAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 30, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents `coerce' expressions.
CoerceAst(): Public == Private where
Public == SpadSyntaxCategory with
- expression: % -> Syntax
+ expression: % -> SpadAst
++ expression(e) returns the expression being converted.
target: % -> TypeAst
++ target(e) returns the target type of the conversion..
Private == add
Rep == List Syntax
- expression x == second rep x
+ expression x == (second rep x) : SpadAst
target x == (third rep x) : TypeAst
+ coerce(x: %): OutputForm ==
+ elt('CoerceAst::OutputForm,
+ ['expression::OutputForm = expression(x)::OutputForm,
+ 'target::OutputForm = target(x)::OutputForm])$OutputForm
@
@@ -1226,64 +1160,80 @@ CoerceAst(): Public == Private where
\subsection{The RestrictAst domain}
<<domain RSTRCAST RestrictAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain RSTRCAST RestrictAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 30, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents `restrict' expressions.
RestrictAst(): Public == Private where
Public == SpadSyntaxCategory with
- expression: % -> Syntax
+ expression: % -> SpadAst
++ expression(e) returns the expression being converted.
target: % -> TypeAst
++ target(e) returns the target type of the conversion..
Private == add
Rep == List Syntax
- expression x == second rep x
+ expression x == (second rep x) : SpadAst
target x == (third rep x) : TypeAst
+ coerce(x: %): OutputForm ==
+ elt('RestrictAst::OutputForm,
+ ['expression::OutputForm = expression(x)::OutputForm,
+ 'target::OutputForm = target(x)::OutputForm])$OutputForm
@
\subsection{The CallAst domain}
<<domain CALLAST CallAst>>=
-import Syntax
+SpadAst(): SpadAstExports
+
import List
)abbrev domain CALLAST CallAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: August 30, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents calls.
CallAst(): Public == Private where
Public == SpadSyntaxCategory with
- operator: % -> Syntax
+ operator: % -> SpadAst
++ operation(e) returns the operation being called in `e'.
- operands: % -> List Syntax
+ operands: % -> List SpadAst
++ arguments(e) returns the argument list used in the call `e'.
Private == add
- Rep == List Syntax
+ Rep == List SpadAst
operator x == first rep x
operands x == rest rep x
+ coerce(x: %): OutputForm ==
+ elt('CallAst::OutputForm,
+ ['operator::OutputForm = operator(x)::OutputForm,
+ 'operands::OutputForm = operands(x)::OutputForm])$OutputForm
@
\subsection{The SegmentAst domain}
<<domain SEGAST SegmentAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain SEGAST SegmentAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: September 17, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents segement expressions.
SegmentAst(): Public == Private where
Public == SpadSyntaxCategory with
- bounds: % -> List Syntax
+ bounds: % -> List SpadAst
++ bounds(s) returns the bounds of the segment `s'. If
++ `s' designates an infinite interval, then the returns
++ list a singleton list.
Private == add
- Rep == List Syntax
+ Rep == List SpadAst
bounds x == rest rep x
+ coerce(x: %): OutputForm ==
+ elt('SegmentAst::OutputForm,
+ ['bounds::OutputForm = bounds(x)::OutputForm])$OutputForm
@
@@ -1291,148 +1241,190 @@ SegmentAst(): Public == Private where
\subsection{The SuchThatAst domain}
<<domain SUCHTAST SuchThatAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain SUCHTAST SuchThatAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: September 17, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents the filter iterator syntax.
SuchThatAst(): Public == Private where
Public == SpadSyntaxCategory with
- predicate: % -> Syntax
+ predicate: % -> SpadAst
++ predicate(e) returns the syntax object for the predicate
++ in the filter iterator syntax `e'.
Private == add
- Rep == List Syntax
+ Rep == List SpadAst
predicate e == second rep e
+ coerce(x: %): OutputForm ==
+ elt('SuchThatAst::OutputForm,
+ ['predicate::OutputForm = predicate(x)::OutputForm])$OutputForm
@
\subsection{The ColonAst domain}
<<domain COLONAST ColonAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain COLONAST ColonAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: September 17, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents type specification
++ for an identifier or expression.
ColonAst(): Public == Private where
Public == SpadSyntaxCategory with
- lhs: % -> Syntax
+ lhs: % -> SpadAst
++ lhs(e) returns the left hand side of the colon expression `e'.
rhs: % -> TypeAst
++ rhs(e) returns the right hand side of the colon expression `e'.
Private == add
- Rep == List Syntax
- lhs x == second rep x
+ Rep == List SpadAst
+ lhs x == (second rep x) : SpadAst
rhs x == (third rep x) : TypeAst
+ coerce(x: %): OutputForm ==
+ elt('ColonAst::OutputForm,
+ ['lhs::OutputForm = lhs(x)::OutputForm,
+ 'rhs::OutputForm = rhs(x)::OutputForm])$OutputForm
@
\subsection{The AddAst domain}
<<domain ADDAST AddAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain ADDAST AddAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: September 17, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents the syntax for an add-expression.
AddAst(): Public == Private where
Public == SpadSyntaxCategory with
- base: % -> Syntax
+ base: % -> SpadAst
++ base(d) returns the base domain(s) of the add-domain expression.
- body: % -> Syntax
+ body: % -> SpadAst
++ base(d) returns the actual body of the add-domain expression `d'.
Private == add
- Rep == List Syntax
+ Rep == List SpadAst
base x == second rep x
body x == third rep x
+ coerce(x: %): OutputForm ==
+ elt('AddAst::OutputForm,
+ ['base::OutputForm = base(x)::OutputForm,
+ 'body::OutputForm = body(x)::OutputForm])$OutputForm
@
\subsection{The CapsuleAst domain}
<<domain CAPSLAST CapsuleAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain CAPSLAST CapsuleAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: September 17, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents the capsule of a domain definition.
CapsuleAst(): Public == Private where
Public == SpadSyntaxCategory with
- body: % -> List Syntax
+ body: % -> List SpadAst
++ body(c) returns the list of top level expressions appearing in `c'.
Private == add
- Rep == Pair(Symbol, List Syntax)
+ Rep == Pair(Symbol, List SpadAst)
body x == second rep x
+ coerce(x: %): OutputForm ==
+ elt('CapsuleAst::OutputForm,
+ ['body::OutputForm = body(x)::OutputForm])$OutputForm
@
\subsection{The CaseAst domain}
<<domain CASEAST CaseAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain CASEAST CaseAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: September 17, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents a `case' expression.
CaseAst(): Public == Private where
Public == SpadSyntaxCategory with
- lhs: % -> Syntax
+ lhs: % -> SpadAst
++ lhs(e) returns the left hand side of the case expression `e'.
- rhs: % -> Syntax
+ rhs: % -> SpadAst
++ rhs(e) returns the right hand side of the case expression `e'.
Private == add
- Rep == List Syntax
+ Rep == List SpadAst
lhs x == second rep x
rhs x == third rep x
+ coerce(x: %): OutputForm ==
+ elt('CaseAst::OutputForm,
+ ['lhs::OutputForm = lhs(x)::OutputForm,
+ 'rhs::OutputForm = rhs(x)::OutputForm])$OutputForm
@
\subsection{The HasAst domain}
<<domain HASAST HasAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain HASAST HasAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: September 17, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents a `has' expression.
HasAst(): Public == Private where
Public == SpadSyntaxCategory with
- lhs: % -> Syntax
+ lhs: % -> SpadAst
++ lhs(e) returns the left hand side of the has expression `e'.
- rhs: % -> Syntax
+ rhs: % -> SpadAst
++ rhs(e) returns the right hand side of the case expression `e'.
Private == add
- Rep == List Syntax
+ Rep == List SpadAst
lhs x == second rep x
rhs x == third rep x
+ coerce(x: %): OutputForm ==
+ elt('HasAst::OutputForm,
+ ['lhs::OutputForm = lhs(x)::OutputForm,
+ 'rhs::OutputForm = rhs(x)::OutputForm])$OutputForm
@
\subsection{The IsAst domain}
<<domain ISAST IsAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain ISAST IsAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: September 17, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents a `has' expression.
IsAst(): Public == Private where
Public == SpadSyntaxCategory with
- lhs: % -> Syntax
+ lhs: % -> SpadAst
++ lhs(e) returns the left hand side of the is expression `e'.
- rhs: % -> Syntax
+ rhs: % -> SpadAst
++ rhs(e) returns the right hand side of the is expression `e'.
Private == add
- Rep == List Syntax
+ Rep == List SpadAst
lhs x == second rep x
rhs x == third rep x
+ coerce(x: %): OutputForm ==
+ elt('IsAst::OutputForm,
+ ['lhs::OutputForm = lhs(x)::OutputForm,
+ 'rhs::OutputForm = rhs(x)::OutputForm])$OutputForm
@
\subsection{The CategoryAst domain}
<<domain CATAST CategoryAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain CATAST CategoryAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: September 17, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents the unnamed category defined
++ by a list of exported signatures
CategoryAst(): Public == Private where
@@ -1440,84 +1432,106 @@ CategoryAst(): Public == Private where
kind: % -> Symbol
++ kind(c) returns the kind of unnamed category, either
++ 'domain' or 'package'.
- body: % -> List Syntax
+ body: % -> List SpadAst
++ body(c) returns the list of exports in category syntax `c'.
Private == add
- Rep == List Syntax
- kind x == second rep x
+ Rep == List SpadAst
+ kind x == (second rep x) : Symbol
body x == rest rest rep x
+ coerce(x: %): OutputForm ==
+ elt('CategoryAst::OutputForm,
+ ['kind::OutputForm = kind(x)::OutputForm,
+ 'body::OutputForm = body(x)::OutputForm])$OutputForm
@
\subsection{The WhereAst domain}
<<domain WHEREAST WhereAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain WHEREAST WhereAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: September 18, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents the syntax of a `where' expression.
WhereAst(): Public == Private where
Public == SpadSyntaxCategory with
- mainExpression: % -> Syntax
+ mainExpression: % -> SpadAst
++ mainExpression(e) returns the main expression of the
++ `where' expression `e'.
- qualifier: % -> Syntax
+ qualifier: % -> SpadAst
++ qualifier(e) returns the qualifier of the expression `e'.
Private == add
- Rep == List Syntax
+ Rep == List SpadAst
mainExpression x == second rep x
qualifier x == third rep x
+ coerce(x: %): OutputForm ==
+ elt('WhereAst::OutputForm,
+ ['mainExpression::OutputForm = mainExpression(x)::OutputForm,
+ 'qualifier::OutputForm = qualifier(x)::OutputForm])$OutputForm
@
\subsection{The CommaAst domain}
<<domain COMMAAST CommaAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain COMMAAST CommaAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: September 18, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents the syntax of a comma-separated
++ list of expressions.
CommaAst(): Public == Private where
Public == SpadSyntaxCategory with
- body: % -> List Syntax
+ body: % -> List SpadAst
++ body(e) returns the list of expressions making up `e'.
Private == add
- Rep == List Syntax
+ Rep == List SpadAst
body x == rest rep x
+ coerce(x: %): OutputForm ==
+ elt('CommaAst::OutputForm,
+ ['body::OutputForm = body(x)::OutputForm])$OutputForm
@
\subsection{The QuasiquoteAst domain}
<<domain QQUTAST QuasiquoteAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain QQUTAST QuasiquoteAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: September 18, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents the syntax of a quasiquote
++ expression.
QuasiquoteAst(): Public == Private where
Public == SpadSyntaxCategory with
- expression: % -> Syntax
+ expression: % -> SpadAst
++ expression(e) returns the syntax for the expression being quoted.
Private == add
- Rep == List Syntax
+ Rep == List SpadAst
expression x == second rep x
+ coerce(x: %): OutputForm ==
+ elt('QuasiquoteAst::OutputForm,
+ ['expression::OutputForm = expression(x)::OutputForm])$OutputForm
@
\subsection{The DefinitionAst domain}
<<domain DEFAST DefinitionAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain DEFAST DefinitionAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: September 18, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents the syntax of a definition.
DefinitionAst(): Public == Private where
Public == SpadSyntaxCategory with
- head: % -> List Identifier
+ head: % -> HeadAst
++ head(d) returns the head of the definition `d'. This is a
++ list of identifiers starting with the name of the operation
++ followed by the name of the parameters, if any.
@@ -1525,13 +1539,18 @@ DefinitionAst(): Public == Private where
++ 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.
- body: % -> Syntax
+ body: % -> SpadAst
++ body(d) returns the right hand side of the definition `d'.
Private == add
- Rep == List Syntax
- head x == (second rep x) : List Identifier
+ Rep == List SpadAst
+ head x == (second rep x) : HeadAst
signature x == (third rep x) : Signature
body x == last rep x
+ coerce(x: %): OutputForm ==
+ elt('DefinitionAst::OutputForm,
+ ['head::OutputForm = head(x)::OutputForm,
+ 'signature::OutputForm = signature(x)::OutputForm,
+ 'body::OutputForm = body(x)::OutputForm])$OutputForm
@
@@ -1539,29 +1558,42 @@ DefinitionAst(): Public == Private where
\subsection{The MacroAst domain}
<<domain MACROAST MacroAst>>=
+SpadAst(): SpadAstExports
+
)abbrev domain MACROAST MacroAst
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
-++ Date Last Modified: September 18, 2008
+++ Date Last Modified: September 21, 2008
++ Description: This domain represents the syntax of a macro definition.
MacroAst(): Public == Private where
Public == SpadSyntaxCategory with
- head: % -> List Identifier
+ head: % -> HeadAst
++ head(m) returns the head of the macro definition `m'. This is a
++ list of identifiers starting with the name of the macro
++ followed by the name of the parameters, if any.
- body: % -> Syntax
+ body: % -> SpadAst
++ body(m) returns the right hand side of the definition `m'.
Private == add
- Rep == List Syntax
- head x == (second rep x) : List Identifier
+ Rep == List SpadAst
+ head x == (second rep x) : HeadAst
body x == last rep x
+ coerce(x: %): OutputForm ==
+ elt('MacroAst::OutputForm,
+ ['head::OutputForm = head(x)::OutputForm,
+ 'body::OutputForm = body(x)::OutputForm])$OutputForm
@
\subsection{The SpadAst domain}
<<domain SPADAST SpadAst>>=
)abbrev domain SPADAST SpadAst
+++ Author: Gabriel Dos Reis
+++ Date Created: September 21, 2008
+++ Date Last Modified: September 21, 2008
+++ Description: This domain represents a kind of base domain
+++ for Spad syntax domain. It merely exists as a kind of
+++ of abstract base in object-oriented programming language.
+++ However, this is not an abstract class.
SpadAst(): SpadAstExports() == add
isAst(x: %, tag: Symbol): Boolean ==
(op := getOperator(x::Syntax)) case Symbol and op = tag
@@ -1649,6 +1681,42 @@ SpadAst(): SpadAstExports() == add
x case IsAst == isAst(x,'_is)
autoCoerce(x: %): IsAst == x : IsAst
+
+ coerce(x: %): OutputForm ==
+ x' := x : Syntax
+ compound? x' and ((op := getOperator x') case Symbol) =>
+ op = 'IF => x:IfAst::OutputForm
+ op = 'REPEAT => x:RepeatAst::OutputForm
+ op = 'WHILE => x:WhileAst::OutputForm
+ op = 'IN => x:InAst::OutputForm
+ op = 'COLLECT => x:CollectAst::OutputForm
+ op = 'construct => x:ConstructAst::OutputForm
+ op = 'exit => x:ExitAst::OutputForm
+ op = 'return => x:ReturnAst::OutputForm
+ op = 'SEQ => x:SequenceAst::OutputForm
+ op = '_%LET => x:LetAst::OutputForm
+ op = 'pretend => x:PretendAst::OutputForm
+ op = '_:_: => x:CoerceAst::OutputForm
+ op = '_@ => x:RestrictAst::OutputForm
+ op = 'SEGMENT => x:SegmentAst::OutputForm
+ op = '_| => x:SuchThatAst::OutputForm
+ op = '_: => x:ColonAst::OutputForm
+ op = 'add => x:AddAst::OutputForm
+ op = '_case => x:CaseAst::OutputForm
+ op = '_has => x:CaseAst::OutputForm
+ op = '_is => x:CaseAst::OutputForm
+ op = 'where => x:WhereAst::OutputForm
+ op = '_%Comma => x:CommaAst::OutputForm
+ op = 'Mapping => x:MappingAst::OutputForm
+ op = 'DEF => x:DefinitionAst::OutputForm
+ op = 'MDEF => x:MacroAst::OutputForm
+ op = 'SIGNATURE => x:SignatureAst::OutputForm
+ op = 'ATTRIBUTE => x:AttributeAst::OutputForm
+ op = 'CATEGORY => x:CategoryAst::OutputForm
+ op = 'CAPSULE => x:CapsuleAst::OutputForm
+ op = 'import => x:ImportAst::OutputForm
+ x'::OutputForm
+ x'::OutputForm
@
diff --git a/src/interp/g-util.boot b/src/interp/g-util.boot
index 13d2e36f..4640f06d 100644
--- a/src/interp/g-util.boot
+++ b/src/interp/g-util.boot
@@ -159,6 +159,7 @@ getTypeOfSyntax t ==
op in '(%Import import) => '(ImportAst)
op in '(%Signature SIGNATURE) => '(SignatureAst)
op = "CATEGORY" => '(CategoryAst)
+ op = "where" => '(WhereAst)
op = "[||]" => '(QuasiquoteAst)
$Syntax
diff --git a/src/share/algebra/browse.daase b/src/share/algebra/browse.daase
index ebaa2c41..952959e6 100644
--- a/src/share/algebra/browse.daase
+++ b/src/share/algebra/browse.daase
@@ -1,12 +1,12 @@
-(2265346 . 3431018168)
+(2265459 . 3431030411)
(-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.")))
-((-4338 . T) (-4337 . T) (-2624 . T))
+((-4337 . T) (-4336 . T) (-2623 . 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}.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . 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,27 +46,27 @@ 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}.")))
-((-4334 . T) (-4332 . T) (-4331 . T) ((-4339 "*") . T) (-4330 . T) (-4335 . T) (-4329 . T) (-2624 . T))
+((-4333 . T) (-4331 . T) (-4330 . T) ((-4338 "*") . T) (-4329 . T) (-4334 . T) (-4328 . T) (-2623 . 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.")))
NIL
NIL
(-31)
-((|constructor| (NIL "This domain represents the syntax for an add-expression.")) (|body| (((|Syntax|) $) "base(\\spad{d}) returns the actual body of the add-domain expression \\spad{`d'}.")) (|base| (((|Syntax|) $) "\\spad{base(d)} returns the base domain(\\spad{s}) of the add-domain expression.")))
+((|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 -1422)
+(-32 R -1421)
((|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 -1009) (QUOTE (-549)))))
(-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 -4337)))
+((|HasAttribute| |#1| (QUOTE -4336)))
(-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.")))
-((-2624 . T))
+((-2623 . T))
NIL
(-35)
((|constructor| (NIL "Category for the inverse hyperbolic trigonometric functions.")) (|atanh| (($ $) "\\spad{atanh(x)} returns the hyperbolic arc-tangent of \\spad{x}.")) (|asinh| (($ $) "\\spad{asinh(x)} returns the hyperbolic arc-sine of \\spad{x}.")) (|asech| (($ $) "\\spad{asech(x)} returns the hyperbolic arc-secant of \\spad{x}.")) (|acsch| (($ $) "\\spad{acsch(x)} returns the hyperbolic arc-cosecant of \\spad{x}.")) (|acoth| (($ $) "\\spad{acoth(x)} returns the hyperbolic arc-cotangent of \\spad{x}.")) (|acosh| (($ $) "\\spad{acosh(x)} returns the hyperbolic arc-cosine of \\spad{x}.")))
@@ -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}.")))
-((-4337 . T) (-4338 . T) (-2624 . T))
+((-4336 . T) (-4337 . T) (-2623 . T))
NIL
(-37 S R)
((|constructor| (NIL "The category of associative algebras (modules which are themselves rings). \\blankline")) (|coerce| (($ |#2|) "\\spad{coerce(r)} maps the ring element \\spad{r} to a member of the algebra.")))
@@ -82,17 +82,17 @@ NIL
NIL
(-38 R)
((|constructor| (NIL "The category of associative algebras (modules which are themselves rings). \\blankline")) (|coerce| (($ |#1|) "\\spad{coerce(r)} maps the ring element \\spad{r} to a member of the algebra.")))
-((-4331 . T) (-4332 . T) (-4334 . T))
+((-4330 . T) (-4331 . T) (-4333 . 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 -1422 UP UPUP -1591)
+(-40 -1421 UP UPUP -2107)
((|constructor| (NIL "Function field defined by \\spad{f}(\\spad{x},{} \\spad{y}) = 0.")) (|knownInfBasis| (((|Void|) (|NonNegativeInteger|)) "\\spad{knownInfBasis(n)} \\undocumented{}")))
-((-4330 |has| (-400 |#2|) (-356)) (-4335 |has| (-400 |#2|) (-356)) (-4329 |has| (-400 |#2|) (-356)) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| (-400 |#2|) (QUOTE (-143))) (|HasCategory| (-400 |#2|) (QUOTE (-145))) (|HasCategory| (-400 |#2|) (QUOTE (-342))) (-1536 (|HasCategory| (-400 |#2|) (QUOTE (-356))) (|HasCategory| (-400 |#2|) (QUOTE (-342)))) (|HasCategory| (-400 |#2|) (QUOTE (-356))) (|HasCategory| (-400 |#2|) (QUOTE (-361))) (-1536 (-12 (|HasCategory| (-400 |#2|) (QUOTE (-227))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))) (|HasCategory| (-400 |#2|) (QUOTE (-342)))) (-1536 (-12 (|HasCategory| (-400 |#2|) (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))) (-12 (|HasCategory| (-400 |#2|) (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| (-400 |#2|) (QUOTE (-342))))) (|HasCategory| (-400 |#2|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| (-400 |#2|) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-400 |#2|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-361))) (-1536 (|HasCategory| (-400 |#2|) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))) (-12 (|HasCategory| (-400 |#2|) (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))) (-12 (|HasCategory| (-400 |#2|) (QUOTE (-227))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))))
-(-41 R -1422)
+((-4329 |has| (-400 |#2|) (-356)) (-4334 |has| (-400 |#2|) (-356)) (-4328 |has| (-400 |#2|) (-356)) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| (-400 |#2|) (QUOTE (-143))) (|HasCategory| (-400 |#2|) (QUOTE (-145))) (|HasCategory| (-400 |#2|) (QUOTE (-342))) (-1536 (|HasCategory| (-400 |#2|) (QUOTE (-356))) (|HasCategory| (-400 |#2|) (QUOTE (-342)))) (|HasCategory| (-400 |#2|) (QUOTE (-356))) (|HasCategory| (-400 |#2|) (QUOTE (-361))) (-1536 (-12 (|HasCategory| (-400 |#2|) (QUOTE (-227))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))) (|HasCategory| (-400 |#2|) (QUOTE (-342)))) (-1536 (-12 (|HasCategory| (-400 |#2|) (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))) (-12 (|HasCategory| (-400 |#2|) (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| (-400 |#2|) (QUOTE (-342))))) (|HasCategory| (-400 |#2|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| (-400 |#2|) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-400 |#2|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-361))) (-1536 (|HasCategory| (-400 |#2|) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))) (-12 (|HasCategory| (-400 |#2|) (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))) (-12 (|HasCategory| (-400 |#2|) (QUOTE (-227))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))))
+(-41 R -1421)
((|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 (-444))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -423) (|devaluate| |#1|)))))
@@ -106,23 +106,23 @@ NIL
((|HasCategory| |#1| (QUOTE (-300))))
(-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.")))
-((-4334 |has| |#1| (-541)) (-4332 . T) (-4331 . T))
+((-4333 |has| |#1| (-541)) (-4331 . T) (-4330 . T))
((|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541))))
(-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.")))
-((-4337 . T) (-4338 . T))
-((-1536 (-12 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-823))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3337) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1793) (|devaluate| |#2|)))))) (-12 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3337) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1793) (|devaluate| |#2|))))))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-823))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-823))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| |#2| (QUOTE (-1067)))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| |#2| (QUOTE (-1067)))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (-12 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3337) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1793) (|devaluate| |#2|)))))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-1536 (-12 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-823))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3336) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1791) (|devaluate| |#2|)))))) (-12 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3336) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1791) (|devaluate| |#2|))))))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-823))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-823))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| |#2| (QUOTE (-1066)))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| |#2| (QUOTE (-1066)))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (-12 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3336) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1791) (|devaluate| |#2|)))))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))))
(-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 -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-356))))
(-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}.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4331 . T) (-4332 . T) (-4334 . T))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4330 . T) (-4331 . T) (-4333 . 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.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
((|HasCategory| $ (QUOTE (-1018))) (|HasCategory| $ (LIST (QUOTE -1009) (QUOTE (-549)))))
(-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}.")))
-((-4334 . T))
+((-4333 . 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 -1422)
+(-54 |Base| R -1421)
((|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
@@ -154,7 +154,7 @@ NIL
NIL
(-56 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")))
-((-4337 . T) (-4338 . T) (-2624 . T))
+((-4336 . T) (-4337 . T) (-2623 . T))
NIL
(-57 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),{}...]}.")))
@@ -162,65 +162,65 @@ NIL
NIL
(-58 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}")))
-((-4338 . T) (-4337 . T))
-((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T) (-4336 . T))
+((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-59 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}.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
-(-60 -2481)
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+(-60 -2479)
((|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
-(-61 -2481)
+(-61 -2479)
((|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
-(-62 -2481)
+(-62 -2479)
((|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
-(-63 -2481)
+(-63 -2479)
((|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
-(-64 -2481)
+(-64 -2479)
((|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}")) (|coerce| (($ (|Matrix| (|FortranExpression| (|construct|) (|construct| (QUOTE X) (QUOTE HESS)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-65 -2481)
+(-65 -2479)
((|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
-(-66 -2481)
+(-66 -2479)
((|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
-(-67 -2481)
+(-67 -2479)
((|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
-(-68 -2481)
+(-68 -2479)
((|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
-(-69 -2481)
+(-69 -2479)
((|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
-(-70 -2481)
+(-70 -2479)
((|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
-(-71 -2481)
+(-71 -2479)
((|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
-(-72 -2481)
+(-72 -2479)
((|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
-(-73 -2481)
+(-73 -2479)
((|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
@@ -232,55 +232,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
-(-76 -2481)
+(-76 -2479)
((|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
-(-77 -2481)
+(-77 -2479)
((|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
-(-78 -2481)
+(-78 -2479)
((|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
-(-79 -2481)
+(-79 -2479)
((|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
-(-80 -2481)
+(-80 -2479)
((|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}")) (|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 -2481)
+(-81 -2479)
((|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
-(-82 -2481)
+(-82 -2479)
((|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
-(-83 -2481)
+(-83 -2479)
((|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
-(-84 -2481)
+(-84 -2479)
((|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
-(-85 -2481)
+(-85 -2479)
((|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
-(-86 -2481)
+(-86 -2479)
((|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
-(-87 -2481)
+(-87 -2479)
((|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
-(-88 -2481)
+(-88 -2479)
((|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
@@ -290,8 +290,8 @@ NIL
((|HasCategory| |#1| (QUOTE (-356))))
(-90 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}.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-91 S)
((|constructor| (NIL "This is the category of Spad abstract syntax trees.")))
NIL
@@ -309,20 +309,20 @@ NIL
NIL
NIL
(-95)
-((|constructor| (NIL "This domain represents the syntax of an attribute in \\indented{2}{a category expression.}")) (|name| (((|Syntax|) $) "\\spad{name(a)} returns the name of the attribute `a'. Note,{} this name may be domain name,{} not just an identifier.")))
+((|constructor| (NIL "This domain represents the syntax of an attribute in \\indented{2}{a category expression.}")) (|name| (((|SpadAst|) $) "\\spad{name(a)} returns the name of the attribute `a'. Note,{} this name may be domain name,{} not just an identifier.")))
NIL
NIL
(-96)
((|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\".")))
-((-4337 . T))
+((-4336 . T))
NIL
(-97)
((|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.")))
-((-4337 . T) ((-4339 "*") . T) (-4338 . T) (-4334 . T) (-4332 . T) (-4331 . T) (-4330 . T) (-4335 . T) (-4329 . T) (-4328 . T) (-4327 . T) (-4326 . T) (-4325 . T) (-4333 . T) (-4336 . T) (|NullSquare| . T) (|JacobiIdentity| . T) (-4324 . T))
+((-4336 . T) ((-4338 "*") . T) (-4337 . T) (-4333 . T) (-4331 . T) (-4330 . T) (-4329 . T) (-4334 . T) (-4328 . T) (-4327 . T) (-4326 . T) (-4325 . T) (-4324 . T) (-4332 . T) (-4335 . T) (|NullSquare| . T) (|JacobiIdentity| . T) (-4323 . T))
NIL
(-98 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}.")))
-((-4334 . T))
+((-4333 . T))
NIL
(-99 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}.")))
@@ -338,15 +338,15 @@ NIL
NIL
(-102 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}.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-103 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 (-4339 "*"))))
+((|HasAttribute| |#1| (QUOTE (-4338 "*"))))
(-104)
((|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")))
-((-4337 . T))
+((-4336 . T))
NIL
(-105 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.")))
@@ -354,12 +354,12 @@ NIL
NIL
(-106 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.")))
-((-4338 . T) (-2624 . T))
+((-4337 . T) (-2623 . T))
NIL
(-107)
((|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.")) (|coerce| (((|RadixExpansion| 2) $) "\\spad{coerce(b)} converts a binary expansion to a radix expansion with base 2.") (((|Fraction| (|Integer|)) $) "\\spad{coerce(b)} converts a binary expansion to a rational number.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| (-549) (QUOTE (-880))) (|HasCategory| (-549) (LIST (QUOTE -1009) (QUOTE (-1143)))) (|HasCategory| (-549) (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-145))) (|HasCategory| (-549) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-549) (QUOTE (-993))) (|HasCategory| (-549) (QUOTE (-796))) (-1536 (|HasCategory| (-549) (QUOTE (-796))) (|HasCategory| (-549) (QUOTE (-823)))) (|HasCategory| (-549) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-549) (QUOTE (-1118))) (|HasCategory| (-549) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| (-549) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| (-549) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| (-549) (QUOTE (-227))) (|HasCategory| (-549) (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| (-549) (LIST (QUOTE -505) (QUOTE (-1143)) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -302) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -279) (QUOTE (-549)) (QUOTE (-549)))) (|HasCategory| (-549) (QUOTE (-300))) (|HasCategory| (-549) (QUOTE (-534))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-549) (LIST (QUOTE -617) (QUOTE (-549)))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-880)))) (|HasCategory| (-549) (QUOTE (-143)))))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| (-549) (QUOTE (-880))) (|HasCategory| (-549) (LIST (QUOTE -1009) (QUOTE (-1142)))) (|HasCategory| (-549) (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-145))) (|HasCategory| (-549) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-549) (QUOTE (-993))) (|HasCategory| (-549) (QUOTE (-796))) (-1536 (|HasCategory| (-549) (QUOTE (-796))) (|HasCategory| (-549) (QUOTE (-823)))) (|HasCategory| (-549) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-549) (QUOTE (-1117))) (|HasCategory| (-549) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| (-549) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| (-549) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| (-549) (QUOTE (-227))) (|HasCategory| (-549) (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| (-549) (LIST (QUOTE -505) (QUOTE (-1142)) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -302) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -279) (QUOTE (-549)) (QUOTE (-549)))) (|HasCategory| (-549) (QUOTE (-300))) (|HasCategory| (-549) (QUOTE (-534))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-549) (LIST (QUOTE -617) (QUOTE (-549)))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-880)))) (|HasCategory| (-549) (QUOTE (-143)))))
(-108)
((|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}")))
NIL
@@ -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}")))
-((-4338 . T) (-4337 . T))
-((-12 (|HasCategory| (-112) (QUOTE (-1067))) (|HasCategory| (-112) (LIST (QUOTE -302) (QUOTE (-112))))) (|HasCategory| (-112) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-112) (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-112) (QUOTE (-1067))) (|HasCategory| (-112) (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T) (-4336 . T))
+((-12 (|HasCategory| (-112) (QUOTE (-1066))) (|HasCategory| (-112) (LIST (QUOTE -302) (QUOTE (-112))))) (|HasCategory| (-112) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-112) (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-112) (QUOTE (-1066))) (|HasCategory| (-112) (LIST (QUOTE -593) (QUOTE (-834)))))
(-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}")))
-((-4332 . T) (-4331 . T))
+((-4331 . T) (-4330 . 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,25 +388,25 @@ 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 -1422 UP)
+(-115 -1421 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}.")))
-((-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . 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}.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| (-116 |#1|) (QUOTE (-880))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -1009) (QUOTE (-1143)))) (|HasCategory| (-116 |#1|) (QUOTE (-143))) (|HasCategory| (-116 |#1|) (QUOTE (-145))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-116 |#1|) (QUOTE (-993))) (|HasCategory| (-116 |#1|) (QUOTE (-796))) (-1536 (|HasCategory| (-116 |#1|) (QUOTE (-796))) (|HasCategory| (-116 |#1|) (QUOTE (-823)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-116 |#1|) (QUOTE (-1118))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| (-116 |#1|) (QUOTE (-227))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -505) (QUOTE (-1143)) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -302) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -279) (LIST (QUOTE -116) (|devaluate| |#1|)) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (QUOTE (-300))) (|HasCategory| (-116 |#1|) (QUOTE (-534))) (|HasCategory| (-116 |#1|) (QUOTE (-823))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-116 |#1|) (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-116 |#1|) (QUOTE (-880)))) (|HasCategory| (-116 |#1|) (QUOTE (-143)))))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| (-116 |#1|) (QUOTE (-880))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -1009) (QUOTE (-1142)))) (|HasCategory| (-116 |#1|) (QUOTE (-143))) (|HasCategory| (-116 |#1|) (QUOTE (-145))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-116 |#1|) (QUOTE (-993))) (|HasCategory| (-116 |#1|) (QUOTE (-796))) (-1536 (|HasCategory| (-116 |#1|) (QUOTE (-796))) (|HasCategory| (-116 |#1|) (QUOTE (-823)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-116 |#1|) (QUOTE (-1117))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| (-116 |#1|) (QUOTE (-227))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -505) (QUOTE (-1142)) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -302) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -279) (LIST (QUOTE -116) (|devaluate| |#1|)) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (QUOTE (-300))) (|HasCategory| (-116 |#1|) (QUOTE (-534))) (|HasCategory| (-116 |#1|) (QUOTE (-823))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-116 |#1|) (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-116 |#1|) (QUOTE (-880)))) (|HasCategory| (-116 |#1|) (QUOTE (-143)))))
(-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 -4338)))
+((|HasAttribute| |#1| (QUOTE -4337)))
(-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.")))
-((-2624 . T))
+((-2623 . T))
NIL
(-120 UP)
((|constructor| (NIL "\\indented{1}{Author: Frederic Lehobey,{} James \\spad{H}. Davenport} Date Created: 28 June 1994 Date Last Updated: 11 July 1997 Basic Operations: brillhartIrreducible? Related Domains: Also See: AMS Classifications: Keywords: factorization Examples: References: [1] John Brillhart,{} Note on Irreducibility Testing,{} Mathematics of Computation,{} vol. 35,{} num. 35,{} Oct. 1980,{} 1379-1381 [2] James Davenport,{} On Brillhart Irreducibility. To appear. [3] John Brillhart,{} On the Euler and Bernoulli polynomials,{} \\spad{J}. Reine Angew. Math.,{} \\spad{v}. 234,{} (1969),{} \\spad{pp}. 45-64")) (|noLinearFactor?| (((|Boolean|) |#1|) "\\spad{noLinearFactor?(p)} returns \\spad{true} if \\spad{p} can be shown to have no linear factor by a theorem of Lehmer,{} \\spad{false} else. \\spad{I} insist on the fact that \\spad{false} does not mean that \\spad{p} has a linear factor.")) (|brillhartTrials| (((|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{brillhartTrials(n)} sets to \\spad{n} the number of tests in \\spadfun{brillhartIrreducible?} and returns the previous value.") (((|NonNegativeInteger|)) "\\spad{brillhartTrials()} returns the number of tests in \\spadfun{brillhartIrreducible?}.")) (|brillhartIrreducible?| (((|Boolean|) |#1| (|Boolean|)) "\\spad{brillhartIrreducible?(p,{}noLinears)} returns \\spad{true} if \\spad{p} can be shown to be irreducible by a remark of Brillhart,{} \\spad{false} else. If \\spad{noLinears} is \\spad{true},{} we are being told \\spad{p} has no linear factors \\spad{false} does not mean that \\spad{p} is reducible.") (((|Boolean|) |#1|) "\\spad{brillhartIrreducible?(p)} returns \\spad{true} if \\spad{p} can be shown to be irreducible by a remark of Brillhart,{} \\spad{false} is inconclusive.")))
@@ -414,15 +414,15 @@ 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")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-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}}.")))
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}}.")))
-((-4338 . T) (-4337 . T) (-2624 . T))
+((-4337 . T) (-4336 . T) (-2623 . 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,20 +430,20 @@ 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")))
-((-4337 . T) (-4338 . T) (-2624 . T))
+((-4336 . T) (-4337 . T) (-2623 . 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.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-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.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-128)
((|constructor| (NIL "ByteArray provides datatype for fix-sized buffer of bytes.")))
-((-4338 . T) (-4337 . T))
-((-1536 (-12 (|HasCategory| (-129) (QUOTE (-823))) (|HasCategory| (-129) (LIST (QUOTE -302) (QUOTE (-129))))) (-12 (|HasCategory| (-129) (QUOTE (-1067))) (|HasCategory| (-129) (LIST (QUOTE -302) (QUOTE (-129)))))) (-1536 (-12 (|HasCategory| (-129) (QUOTE (-1067))) (|HasCategory| (-129) (LIST (QUOTE -302) (QUOTE (-129))))) (|HasCategory| (-129) (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-129) (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| (-129) (QUOTE (-823))) (|HasCategory| (-129) (QUOTE (-1067)))) (|HasCategory| (-129) (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-129) (QUOTE (-1067))) (-12 (|HasCategory| (-129) (QUOTE (-1067))) (|HasCategory| (-129) (LIST (QUOTE -302) (QUOTE (-129))))) (|HasCategory| (-129) (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T) (-4336 . T))
+((-1536 (-12 (|HasCategory| (-129) (QUOTE (-823))) (|HasCategory| (-129) (LIST (QUOTE -302) (QUOTE (-129))))) (-12 (|HasCategory| (-129) (QUOTE (-1066))) (|HasCategory| (-129) (LIST (QUOTE -302) (QUOTE (-129)))))) (-1536 (-12 (|HasCategory| (-129) (QUOTE (-1066))) (|HasCategory| (-129) (LIST (QUOTE -302) (QUOTE (-129))))) (|HasCategory| (-129) (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-129) (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| (-129) (QUOTE (-823))) (|HasCategory| (-129) (QUOTE (-1066)))) (|HasCategory| (-129) (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-129) (QUOTE (-1066))) (-12 (|HasCategory| (-129) (QUOTE (-1066))) (|HasCategory| (-129) (LIST (QUOTE -302) (QUOTE (-129))))) (|HasCategory| (-129) (LIST (QUOTE -593) (QUOTE (-834)))))
(-129)
((|constructor| (NIL "Byte is the datatype of 8-bit sized unsigned integer values.")) (|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'}.")) (|coerce| (($ (|NonNegativeInteger|)) "\\spad{coerce(x)} has the same effect as byte(\\spad{x}).")) (|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.")))
NIL
@@ -457,27 +457,27 @@ NIL
NIL
NIL
(-132)
-((|constructor| (NIL "This domain represents the capsule of a domain definition.")) (|body| (((|List| (|Syntax|)) $) "\\spad{body(c)} returns the list of top level expressions appearing in \\spad{`c'}.")))
+((|constructor| (NIL "This domain represents the capsule of a domain definition.")) (|body| (((|List| (|SpadAst|)) $) "\\spad{body(c)} returns the list of top level expressions appearing in \\spad{`c'}.")))
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.")))
-(((-4339 "*") . T))
+(((-4338 "*") . T))
NIL
-(-134 |minix| -2728 S T$)
+(-134 |minix| -2724 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| -2728 R)
+(-135 |minix| -2724 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
(-136)
-((|constructor| (NIL "This domain represents a `case' expression.")) (|rhs| (((|Syntax|) $) "\\spad{rhs(e)} returns the right hand side of the case expression `e'.")) (|lhs| (((|Syntax|) $) "\\spad{lhs(e)} returns the left hand side of the case expression `e'.")))
+((|constructor| (NIL "This domain represents a `case' 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 case expression `e'.")))
NIL
NIL
(-137)
-((|constructor| (NIL "This domain represents the unnamed category defined \\indented{2}{by a list of exported signatures}")) (|body| (((|List| (|Syntax|)) $) "\\spad{body(c)} returns the list of exports in category syntax \\spad{`c'}.")) (|kind| (((|Symbol|) $) "\\spad{kind(c)} returns the kind of unnamed category,{} either 'domain' or 'package'.")))
+((|constructor| (NIL "This domain represents the unnamed category defined \\indented{2}{by a list of exported signatures}")) (|body| (((|List| (|SpadAst|)) $) "\\spad{body(c)} returns the list of exports in category syntax \\spad{`c'}.")) (|kind| (((|Symbol|) $) "\\spad{kind(c)} returns the kind of unnamed category,{} either 'domain' or 'package'.")))
NIL
NIL
(-138)
@@ -486,8 +486,8 @@ NIL
NIL
(-139)
((|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}.")))
-((-4337 . T) (-4327 . T) (-4338 . T))
-((-1536 (-12 (|HasCategory| (-142) (QUOTE (-361))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142))))) (-12 (|HasCategory| (-142) (QUOTE (-1067))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142)))))) (|HasCategory| (-142) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-142) (QUOTE (-361))) (|HasCategory| (-142) (QUOTE (-823))) (|HasCategory| (-142) (QUOTE (-1067))) (-12 (|HasCategory| (-142) (QUOTE (-1067))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142))))) (|HasCategory| (-142) (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4326 . T) (-4337 . T))
+((-1536 (-12 (|HasCategory| (-142) (QUOTE (-361))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142))))) (-12 (|HasCategory| (-142) (QUOTE (-1066))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142)))))) (|HasCategory| (-142) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-142) (QUOTE (-361))) (|HasCategory| (-142) (QUOTE (-823))) (|HasCategory| (-142) (QUOTE (-1066))) (-12 (|HasCategory| (-142) (QUOTE (-1066))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142))))) (|HasCategory| (-142) (LIST (QUOTE -593) (QUOTE (-834)))))
(-140 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}.")))
NIL
@@ -502,7 +502,7 @@ NIL
NIL
(-143)
((|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.")))
-((-4334 . T))
+((-4333 . T))
NIL
(-144 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}.")))
@@ -510,9 +510,9 @@ NIL
NIL
(-145)
((|constructor| (NIL "Rings of Characteristic Zero.")))
-((-4334 . T))
+((-4333 . T))
NIL
-(-146 -1422 UP UPUP)
+(-146 -1421 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
@@ -523,21 +523,21 @@ NIL
(-148 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 -594) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-1067))) (|HasAttribute| |#1| (QUOTE -4337)))
+((|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-1066))) (|HasAttribute| |#1| (QUOTE -4336)))
(-149 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.")))
-((-2624 . T))
+((-2623 . T))
NIL
(-150 |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.")))
-((-4332 . T) (-4331 . T) (-4334 . T))
+((-4331 . T) (-4330 . T) (-4333 . T))
NIL
(-151)
((|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.")))
NIL
NIL
(-152)
-((|constructor| (NIL "This domain represents list comprehension syntax.")) (|body| (((|Syntax|) $) "\\spad{body(e)} return the expression being collected by the list comprehension `e'.")) (|iterators| (((|List| (|Syntax|)) $) "\\spad{iterators(e)} returns the list of the iterators of the list comprehension `e'.")))
+((|constructor| (NIL "This domain represents list comprehension syntax.")) (|body| (((|SpadAst|) $) "\\spad{body(e)} return the expression being collected by the list comprehension `e'.")) (|iterators| (((|List| (|SpadAst|)) $) "\\spad{iterators(e)} returns the list of the iterators of the list comprehension `e'.")))
NIL
NIL
(-153 UP |Par|)
@@ -545,14 +545,14 @@ NIL
NIL
NIL
(-154)
-((|constructor| (NIL "This domain represents type specification \\indented{2}{for an identifier or expression.}")) (|rhs| (((|TypeAst|) $) "\\spad{rhs(e)} returns the right hand side of the colon expression `e'.")) (|lhs| (((|Syntax|) $) "\\spad{lhs(e)} returns the left hand side of the colon expression `e'.")))
+((|constructor| (NIL "This domain represents type specification \\indented{2}{for an identifier or expression.}")) (|rhs| (((|TypeAst|) $) "\\spad{rhs(e)} returns the right hand side of the colon expression `e'.")) (|lhs| (((|SpadAst|) $) "\\spad{lhs(e)} returns the left hand side of the colon expression `e'.")))
NIL
NIL
(-155)
((|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
-(-156 R -1422)
+(-156 R -1421)
((|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
@@ -565,7 +565,7 @@ NIL
NIL
NIL
(-159)
-((|constructor| (NIL "This domain represents the syntax of a comma-separated \\indented{2}{list of expressions.}")) (|body| (((|List| (|Syntax|)) $) "\\spad{body(e)} returns the list of expressions making up `e'.")))
+((|constructor| (NIL "This domain represents the syntax of a comma-separated \\indented{2}{list of expressions.}")) (|body| (((|List| (|SpadAst|)) $) "\\spad{body(e)} returns the list of expressions making up `e'.")))
NIL
NIL
(-160)
@@ -583,10 +583,10 @@ NIL
(-163 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}.")) (|conjugate| (($ $) "\\spad{conjugate(x + \\%i y)} returns \\spad{x} - \\%\\spad{i} \\spad{y}.")) (|imaginary| (($) "\\spad{imaginary()} = sqrt(\\spad{-1}) = \\%\\spad{i}.")) (|complex| (($ |#2| |#2|) "\\spad{complex(x,{}y)} constructs \\spad{x} + \\%i*y.") ((|attribute|) "indicates that \\% has sqrt(\\spad{-1})")))
NIL
-((|HasCategory| |#2| (QUOTE (-880))) (|HasCategory| |#2| (QUOTE (-534))) (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (QUOTE (-1165))) (|HasCategory| |#2| (QUOTE (-1027))) (|HasCategory| |#2| (QUOTE (-993))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-356))) (|HasAttribute| |#2| (QUOTE -4333)) (|HasAttribute| |#2| (QUOTE -4336)) (|HasCategory| |#2| (QUOTE (-300))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-823))))
+((|HasCategory| |#2| (QUOTE (-880))) (|HasCategory| |#2| (QUOTE (-534))) (|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (QUOTE (-1164))) (|HasCategory| |#2| (QUOTE (-1027))) (|HasCategory| |#2| (QUOTE (-993))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-356))) (|HasAttribute| |#2| (QUOTE -4332)) (|HasAttribute| |#2| (QUOTE -4335)) (|HasCategory| |#2| (QUOTE (-300))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-823))))
(-164 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}.")) (|conjugate| (($ $) "\\spad{conjugate(x + \\%i y)} returns \\spad{x} - \\%\\spad{i} \\spad{y}.")) (|imaginary| (($) "\\spad{imaginary()} = sqrt(\\spad{-1}) = \\%\\spad{i}.")) (|complex| (($ |#1| |#1|) "\\spad{complex(x,{}y)} constructs \\spad{x} + \\%i*y.") ((|attribute|) "indicates that \\% has sqrt(\\spad{-1})")))
-((-4330 -1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))) (-4335 |has| |#1| (-356)) (-4329 |has| |#1| (-356)) (-4333 |has| |#1| (-6 -4333)) (-4336 |has| |#1| (-6 -4336)) (-3410 . T) (-2624 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 -1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))) (-4334 |has| |#1| (-356)) (-4328 |has| |#1| (-356)) (-4332 |has| |#1| (-6 -4332)) (-4335 |has| |#1| (-6 -4335)) (-3409 . T) (-2623 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-165 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.")))
@@ -598,8 +598,8 @@ NIL
NIL
(-167 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}.")))
-((-4330 -1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))) (-4335 |has| |#1| (-356)) (-4329 |has| |#1| (-356)) (-4333 |has| |#1| (-6 -4333)) (-4336 |has| |#1| (-6 -4336)) (-3410 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-342))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-342)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-361))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (QUOTE (-342)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-342)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -505) (QUOTE (-1143)) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-342)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-342)))) (-12 (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-342)))) (-12 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-342)))) (|HasCategory| |#1| (QUOTE (-227))) (-12 (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-342)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-342)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -279) (|devaluate| |#1|) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-361)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-804)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-823)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-993)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-1165)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-356))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-880))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-880)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-880)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-880))))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (QUOTE (-1165)))) (|HasCategory| |#1| (QUOTE (-1165))) (|HasCategory| |#1| (QUOTE (-993))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-342)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -505) (QUOTE (-1143)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -279) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-804))) (|HasCategory| |#1| (QUOTE (-1027))) (-12 (|HasCategory| |#1| (QUOTE (-1027))) (|HasCategory| |#1| (QUOTE (-1165)))) (|HasCategory| |#1| (QUOTE (-534))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-880))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-356)))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-227))) (-12 (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasAttribute| |#1| (QUOTE -4333)) (|HasAttribute| |#1| (QUOTE -4336)) (-12 (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143))))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-342)))))
+((-4329 -1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))) (-4334 |has| |#1| (-356)) (-4328 |has| |#1| (-356)) (-4332 |has| |#1| (-6 -4332)) (-4335 |has| |#1| (-6 -4335)) (-3409 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-342))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-342)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-361))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (QUOTE (-342)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-342)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -505) (QUOTE (-1142)) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-342)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-342)))) (-12 (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-342)))) (-12 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-342)))) (|HasCategory| |#1| (QUOTE (-227))) (-12 (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-342)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-342)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -279) (|devaluate| |#1|) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-361)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-804)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-823)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-993)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-1164)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-356))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-880))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-880)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-880)))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-880))))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (QUOTE (-1164)))) (|HasCategory| |#1| (QUOTE (-1164))) (|HasCategory| |#1| (QUOTE (-993))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-342)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -505) (QUOTE (-1142)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -279) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-804))) (|HasCategory| |#1| (QUOTE (-1027))) (-12 (|HasCategory| |#1| (QUOTE (-1027))) (|HasCategory| |#1| (QUOTE (-1164)))) (|HasCategory| |#1| (QUOTE (-534))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-880))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-356)))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-227))) (-12 (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasAttribute| |#1| (QUOTE -4332)) (|HasAttribute| |#1| (QUOTE -4335)) (-12 (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142))))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-342)))))
(-168 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
@@ -610,7 +610,7 @@ NIL
NIL
(-170)
((|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.")))
-(((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+(((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-171)
((|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.")))
@@ -618,7 +618,7 @@ NIL
NIL
(-172 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}.")))
-(((-4339 "*") . T) (-4330 . T) (-4335 . T) (-4329 . T) (-4331 . T) (-4332 . T) (-4334 . T))
+(((-4338 "*") . T) (-4329 . T) (-4334 . T) (-4328 . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-173)
((|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}.")))
@@ -641,7 +641,7 @@ NIL
NIL
NIL
(-178)
-((|constructor| (NIL "This domain represents `coerce' expressions.")) (|target| (((|TypeAst|) $) "\\spad{target(e)} returns the target type of the conversion..")) (|expression| (((|Syntax|) $) "\\spad{expression(e)} returns the expression being converted.")))
+((|constructor| (NIL "This domain represents `coerce' expressions.")) (|target| (((|TypeAst|) $) "\\spad{target(e)} returns the target type of the conversion..")) (|expression| (((|SpadAst|) $) "\\spad{expression(e)} returns the expression being converted.")))
NIL
NIL
(-179 R UP)
@@ -656,7 +656,7 @@ NIL
((|constructor| (NIL "This domains represents a syntax object that designates a category,{} domain,{} or a package. See Also: Syntax,{} Domain")) (|arguments| (((|List| (|Syntax|)) $) "\\spad{arguments returns} the list of syntax objects for the arguments used to invoke the constructor.")) (|constructorName| (((|Symbol|) $) "\\spad{constructorName c} returns the name of the constructor")))
NIL
NIL
-(-182 R -1422)
+(-182 R -1421)
((|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
@@ -764,23 +764,23 @@ NIL
((|constructor| (NIL "\\indented{1}{This domain implements a simple view of a database whose fields are} indexed by symbols")) (|coerce| (($ (|List| |#1|)) "\\spad{coerce(l)} makes a database out of a list")) (- (($ $ $) "\\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
-(-209 -1422 UP UPUP R)
+(-209 -1421 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
-(-210 -1422 FP)
+(-210 -1421 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
(-211)
((|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.")) (|coerce| (((|RadixExpansion| 10) $) "\\spad{coerce(d)} converts a decimal expansion to a radix expansion with base 10.") (((|Fraction| (|Integer|)) $) "\\spad{coerce(d)} converts a decimal expansion to a rational number.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| (-549) (QUOTE (-880))) (|HasCategory| (-549) (LIST (QUOTE -1009) (QUOTE (-1143)))) (|HasCategory| (-549) (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-145))) (|HasCategory| (-549) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-549) (QUOTE (-993))) (|HasCategory| (-549) (QUOTE (-796))) (-1536 (|HasCategory| (-549) (QUOTE (-796))) (|HasCategory| (-549) (QUOTE (-823)))) (|HasCategory| (-549) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-549) (QUOTE (-1118))) (|HasCategory| (-549) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| (-549) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| (-549) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| (-549) (QUOTE (-227))) (|HasCategory| (-549) (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| (-549) (LIST (QUOTE -505) (QUOTE (-1143)) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -302) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -279) (QUOTE (-549)) (QUOTE (-549)))) (|HasCategory| (-549) (QUOTE (-300))) (|HasCategory| (-549) (QUOTE (-534))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-549) (LIST (QUOTE -617) (QUOTE (-549)))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-880)))) (|HasCategory| (-549) (QUOTE (-143)))))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| (-549) (QUOTE (-880))) (|HasCategory| (-549) (LIST (QUOTE -1009) (QUOTE (-1142)))) (|HasCategory| (-549) (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-145))) (|HasCategory| (-549) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-549) (QUOTE (-993))) (|HasCategory| (-549) (QUOTE (-796))) (-1536 (|HasCategory| (-549) (QUOTE (-796))) (|HasCategory| (-549) (QUOTE (-823)))) (|HasCategory| (-549) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-549) (QUOTE (-1117))) (|HasCategory| (-549) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| (-549) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| (-549) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| (-549) (QUOTE (-227))) (|HasCategory| (-549) (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| (-549) (LIST (QUOTE -505) (QUOTE (-1142)) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -302) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -279) (QUOTE (-549)) (QUOTE (-549)))) (|HasCategory| (-549) (QUOTE (-300))) (|HasCategory| (-549) (QUOTE (-534))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-549) (LIST (QUOTE -617) (QUOTE (-549)))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-880)))) (|HasCategory| (-549) (QUOTE (-143)))))
(-212)
-((|constructor| (NIL "This domain represents the syntax of a definition.")) (|body| (((|Syntax|) $) "\\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| (((|List| (|Identifier|)) $) "\\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.")))
+((|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
-(-213 R -1422)
+(-213 R -1421)
((|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
@@ -794,19 +794,19 @@ NIL
NIL
(-216 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}.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-217 |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}.")))
-((-4334 . T))
+((-4333 . T))
NIL
-(-218 R -1422)
+(-218 R -1421)
((|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
(-219)
((|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)}.")) (|doubleFloatFormat| (((|String|) (|String|)) "change the output format for doublefloats using lisp format strings")) (|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}.")))
-((-2661 . T) (-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-2659 . T) (-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-220)
((|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)}.}")))
@@ -814,23 +814,23 @@ NIL
NIL
(-221 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}")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-541))) (|HasAttribute| |#1| (QUOTE (-4339 "*"))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-541))) (|HasAttribute| |#1| (QUOTE (-4338 "*"))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-222 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
(-223 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.")))
-((-4338 . T) (-2624 . T))
+((-4337 . T) (-2623 . T))
NIL
(-224 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}.")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-227))))
+((|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-227))))
(-225 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}.")))
-((-4334 . T))
+((-4333 . T))
NIL
(-226 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.")))
@@ -838,36 +838,36 @@ NIL
NIL
(-227)
((|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.")))
-((-4334 . T))
+((-4333 . T))
NIL
(-228 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 -4337)))
+((|HasAttribute| |#1| (QUOTE -4336)))
(-229 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}.")))
-((-4338 . T) (-2624 . T))
+((-4337 . T) (-2623 . T))
NIL
(-230)
((|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
-(-231 S -2728 R)
+(-231 S -2724 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 (-356))) (|HasCategory| |#3| (QUOTE (-769))) (|HasCategory| |#3| (QUOTE (-821))) (|HasAttribute| |#3| (QUOTE -4334)) (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#3| (QUOTE (-703))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (QUOTE (-1067))))
-(-232 -2728 R)
+((|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (QUOTE (-769))) (|HasCategory| |#3| (QUOTE (-821))) (|HasAttribute| |#3| (QUOTE -4333)) (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#3| (QUOTE (-703))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (QUOTE (-1066))))
+(-232 -2724 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")))
-((-4331 |has| |#2| (-1018)) (-4332 |has| |#2| (-1018)) (-4334 |has| |#2| (-6 -4334)) ((-4339 "*") |has| |#2| (-170)) (-4337 . T) (-2624 . T))
+((-4330 |has| |#2| (-1018)) (-4331 |has| |#2| (-1018)) (-4333 |has| |#2| (-6 -4333)) ((-4338 "*") |has| |#2| (-170)) (-4336 . T) (-2623 . T))
NIL
-(-233 -2728 A B)
+(-233 -2724 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
-(-234 -2728 R)
+(-234 -2724 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.")))
-((-4331 |has| |#2| (-1018)) (-4332 |has| |#2| (-1018)) (-4334 |has| |#2| (-6 -4334)) ((-4339 "*") |has| |#2| (-170)) (-4337 . T))
-((-1536 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1067)))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (QUOTE (-356))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-356)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-769))) (-1536 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (QUOTE (-821)))) (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (QUOTE (-170))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-1018)))) (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-1067)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-170)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-227)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-361)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-703)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-769)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-821)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1067))))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| (-549) (QUOTE (-823))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-1536 (|HasCategory| |#2| (QUOTE (-1018))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1067)))) (|HasAttribute| |#2| (QUOTE -4334)) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-25))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4330 |has| |#2| (-1018)) (-4331 |has| |#2| (-1018)) (-4333 |has| |#2| (-6 -4333)) ((-4338 "*") |has| |#2| (-170)) (-4336 . T))
+((-1536 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1066)))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (QUOTE (-356))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-356)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-769))) (-1536 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (QUOTE (-821)))) (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (QUOTE (-170))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-1018)))) (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-1066)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-170)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-227)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-361)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-703)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-769)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-821)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1066))))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| (-549) (QUOTE (-823))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-1536 (|HasCategory| |#2| (QUOTE (-1018))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1066)))) (|HasAttribute| |#2| (QUOTE -4333)) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-25))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))))
(-235)
((|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
@@ -878,47 +878,47 @@ NIL
NIL
(-237)
((|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}.")))
-((-4330 . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-238 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.")))
-((-2624 . T))
+((-2623 . T))
NIL
(-239 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}")) (|coerce| (((|List| |#1|) $) "\\spad{coerce(x)} returns the list of elements in \\spad{x}") (($ (|List| |#1|)) "\\spad{coerce(l)} creates a datalist from \\spad{l}")))
-((-4338 . T) (-4337 . T))
-((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T) (-4336 . T))
+((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-240 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}")))
NIL
NIL
(-241 |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")))
-(((-4339 "*") |has| |#2| (-170)) (-4330 |has| |#2| (-541)) (-4335 |has| |#2| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
-((|HasCategory| |#2| (QUOTE (-880))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-170))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-541)))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#2| (QUOTE -4335)) (|HasCategory| |#2| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-143)))))
+(((-4338 "*") |has| |#2| (-170)) (-4329 |has| |#2| (-541)) (-4334 |has| |#2| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
+((|HasCategory| |#2| (QUOTE (-880))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-170))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-541)))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#2| (QUOTE -4334)) (|HasCategory| |#2| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-143)))))
(-242)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Create: October 18,{} 2007. Date Last Updated: January 19,{} 2008. Basic Operations: coerce,{} reify Related Constructors: Type,{} Syntax,{} OutputForm Also See: Type,{} ConstructorCall")) (|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'}.")))
NIL
NIL
(-243 |n| R M S)
((|constructor| (NIL "This constructor provides a direct product type with a left matrix-module view.")))
-((-4334 -1536 (-1821 (|has| |#4| (-1018)) (|has| |#4| (-227))) (-1821 (|has| |#4| (-1018)) (|has| |#4| (-871 (-1143)))) (|has| |#4| (-6 -4334)) (-1821 (|has| |#4| (-1018)) (|has| |#4| (-617 (-549))))) (-4331 |has| |#4| (-1018)) (-4332 |has| |#4| (-1018)) ((-4339 "*") |has| |#4| (-170)) (-4337 . T))
-((-1536 (-12 (|HasCategory| |#4| (QUOTE (-170))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-227))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-356))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-361))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-703))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-769))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-821))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1067))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -871) (QUOTE (-1143)))))) (|HasCategory| |#4| (QUOTE (-356))) (-1536 (|HasCategory| |#4| (QUOTE (-170))) (|HasCategory| |#4| (QUOTE (-356))) (|HasCategory| |#4| (QUOTE (-1018)))) (-1536 (|HasCategory| |#4| (QUOTE (-170))) (|HasCategory| |#4| (QUOTE (-356)))) (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (QUOTE (-769))) (-1536 (|HasCategory| |#4| (QUOTE (-769))) (|HasCategory| |#4| (QUOTE (-821)))) (|HasCategory| |#4| (QUOTE (-821))) (|HasCategory| |#4| (QUOTE (-703))) (|HasCategory| |#4| (QUOTE (-170))) (-1536 (|HasCategory| |#4| (QUOTE (-170))) (|HasCategory| |#4| (QUOTE (-1018)))) (|HasCategory| |#4| (QUOTE (-361))) (|HasCategory| |#4| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#4| (LIST (QUOTE -871) (QUOTE (-1143)))) (-1536 (|HasCategory| |#4| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#4| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#4| (QUOTE (-170))) (|HasCategory| |#4| (QUOTE (-227))) (|HasCategory| |#4| (QUOTE (-1018)))) (|HasCategory| |#4| (QUOTE (-227))) (|HasCategory| |#4| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-170)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-227)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-356)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-361)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-703)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-769)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-821)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-1018)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-1067))))) (-1536 (-12 (|HasCategory| |#4| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-170))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-227))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-356))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-361))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-703))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-769))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-821))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-1067))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| (-549) (QUOTE (-823))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#4| (QUOTE (-227))) (|HasCategory| |#4| (QUOTE (-1018)))) (-1536 (-12 (|HasCategory| |#4| (QUOTE (-227))) (|HasCategory| |#4| (QUOTE (-1018)))) (|HasCategory| |#4| (QUOTE (-703))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -871) (QUOTE (-1143)))))) (-1536 (|HasCategory| |#4| (QUOTE (-1018))) (-12 (|HasCategory| |#4| (QUOTE (-1067))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549)))))) (-12 (|HasCategory| |#4| (QUOTE (-1067))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-1067)))) (-1536 (|HasAttribute| |#4| (QUOTE -4334)) (-12 (|HasCategory| |#4| (QUOTE (-227))) (|HasCategory| |#4| (QUOTE (-1018)))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -871) (QUOTE (-1143)))))) (|HasCategory| |#4| (QUOTE (-130))) (|HasCategory| |#4| (QUOTE (-25))) (-12 (|HasCategory| |#4| (QUOTE (-1067))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4333 -1536 (-1819 (|has| |#4| (-1018)) (|has| |#4| (-227))) (-1819 (|has| |#4| (-1018)) (|has| |#4| (-871 (-1142)))) (|has| |#4| (-6 -4333)) (-1819 (|has| |#4| (-1018)) (|has| |#4| (-617 (-549))))) (-4330 |has| |#4| (-1018)) (-4331 |has| |#4| (-1018)) ((-4338 "*") |has| |#4| (-170)) (-4336 . T))
+((-1536 (-12 (|HasCategory| |#4| (QUOTE (-170))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-227))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-356))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-361))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-703))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-769))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-821))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1066))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -871) (QUOTE (-1142)))))) (|HasCategory| |#4| (QUOTE (-356))) (-1536 (|HasCategory| |#4| (QUOTE (-170))) (|HasCategory| |#4| (QUOTE (-356))) (|HasCategory| |#4| (QUOTE (-1018)))) (-1536 (|HasCategory| |#4| (QUOTE (-170))) (|HasCategory| |#4| (QUOTE (-356)))) (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (QUOTE (-769))) (-1536 (|HasCategory| |#4| (QUOTE (-769))) (|HasCategory| |#4| (QUOTE (-821)))) (|HasCategory| |#4| (QUOTE (-821))) (|HasCategory| |#4| (QUOTE (-703))) (|HasCategory| |#4| (QUOTE (-170))) (-1536 (|HasCategory| |#4| (QUOTE (-170))) (|HasCategory| |#4| (QUOTE (-1018)))) (|HasCategory| |#4| (QUOTE (-361))) (|HasCategory| |#4| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#4| (LIST (QUOTE -871) (QUOTE (-1142)))) (-1536 (|HasCategory| |#4| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#4| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#4| (QUOTE (-170))) (|HasCategory| |#4| (QUOTE (-227))) (|HasCategory| |#4| (QUOTE (-1018)))) (|HasCategory| |#4| (QUOTE (-227))) (|HasCategory| |#4| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-170)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-227)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-356)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-361)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-703)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-769)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-821)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-1018)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-1066))))) (-1536 (-12 (|HasCategory| |#4| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-170))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-227))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-356))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-361))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-703))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-769))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-821))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-1066))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| (-549) (QUOTE (-823))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#4| (QUOTE (-227))) (|HasCategory| |#4| (QUOTE (-1018)))) (-1536 (-12 (|HasCategory| |#4| (QUOTE (-227))) (|HasCategory| |#4| (QUOTE (-1018)))) (|HasCategory| |#4| (QUOTE (-703))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -871) (QUOTE (-1142)))))) (-1536 (|HasCategory| |#4| (QUOTE (-1018))) (-12 (|HasCategory| |#4| (QUOTE (-1066))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549)))))) (-12 (|HasCategory| |#4| (QUOTE (-1066))) (|HasCategory| |#4| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (QUOTE (-1066)))) (-1536 (|HasAttribute| |#4| (QUOTE -4333)) (-12 (|HasCategory| |#4| (QUOTE (-227))) (|HasCategory| |#4| (QUOTE (-1018)))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#4| (QUOTE (-1018))) (|HasCategory| |#4| (LIST (QUOTE -871) (QUOTE (-1142)))))) (|HasCategory| |#4| (QUOTE (-130))) (|HasCategory| |#4| (QUOTE (-25))) (-12 (|HasCategory| |#4| (QUOTE (-1066))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -593) (QUOTE (-834)))))
(-244 |n| R S)
((|constructor| (NIL "This constructor provides a direct product of \\spad{R}-modules with an \\spad{R}-module view.")))
-((-4334 -1536 (-1821 (|has| |#3| (-1018)) (|has| |#3| (-227))) (-1821 (|has| |#3| (-1018)) (|has| |#3| (-871 (-1143)))) (|has| |#3| (-6 -4334)) (-1821 (|has| |#3| (-1018)) (|has| |#3| (-617 (-549))))) (-4331 |has| |#3| (-1018)) (-4332 |has| |#3| (-1018)) ((-4339 "*") |has| |#3| (-170)) (-4337 . T))
-((-1536 (-12 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-703))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-769))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-821))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1067))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143)))))) (|HasCategory| |#3| (QUOTE (-356))) (-1536 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (QUOTE (-1018)))) (-1536 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-356)))) (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (QUOTE (-769))) (-1536 (|HasCategory| |#3| (QUOTE (-769))) (|HasCategory| |#3| (QUOTE (-821)))) (|HasCategory| |#3| (QUOTE (-821))) (|HasCategory| |#3| (QUOTE (-703))) (|HasCategory| |#3| (QUOTE (-170))) (-1536 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-1018)))) (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143)))) (-1536 (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1018)))) (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-170)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-227)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-356)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-361)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-703)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-769)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-821)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-1018)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-1067))))) (-1536 (-12 (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-703))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-769))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-821))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-1067))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| (-549) (QUOTE (-823))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1018)))) (-1536 (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1018)))) (|HasCategory| |#3| (QUOTE (-703))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143)))))) (-1536 (|HasCategory| |#3| (QUOTE (-1018))) (-12 (|HasCategory| |#3| (QUOTE (-1067))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549)))))) (-12 (|HasCategory| |#3| (QUOTE (-1067))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-1067)))) (-1536 (|HasAttribute| |#3| (QUOTE -4334)) (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1018)))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143)))))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-25))) (-12 (|HasCategory| |#3| (QUOTE (-1067))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (|HasCategory| |#3| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4333 -1536 (-1819 (|has| |#3| (-1018)) (|has| |#3| (-227))) (-1819 (|has| |#3| (-1018)) (|has| |#3| (-871 (-1142)))) (|has| |#3| (-6 -4333)) (-1819 (|has| |#3| (-1018)) (|has| |#3| (-617 (-549))))) (-4330 |has| |#3| (-1018)) (-4331 |has| |#3| (-1018)) ((-4338 "*") |has| |#3| (-170)) (-4336 . T))
+((-1536 (-12 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-703))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-769))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-821))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1066))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142)))))) (|HasCategory| |#3| (QUOTE (-356))) (-1536 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (QUOTE (-1018)))) (-1536 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-356)))) (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (QUOTE (-769))) (-1536 (|HasCategory| |#3| (QUOTE (-769))) (|HasCategory| |#3| (QUOTE (-821)))) (|HasCategory| |#3| (QUOTE (-821))) (|HasCategory| |#3| (QUOTE (-703))) (|HasCategory| |#3| (QUOTE (-170))) (-1536 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-1018)))) (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142)))) (-1536 (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1018)))) (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-170)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-227)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-356)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-361)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-703)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-769)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-821)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-1018)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-1066))))) (-1536 (-12 (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-703))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-769))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-821))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-1066))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| (-549) (QUOTE (-823))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1018)))) (-1536 (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1018)))) (|HasCategory| |#3| (QUOTE (-703))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142)))))) (-1536 (|HasCategory| |#3| (QUOTE (-1018))) (-12 (|HasCategory| |#3| (QUOTE (-1066))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549)))))) (-12 (|HasCategory| |#3| (QUOTE (-1066))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-1066)))) (-1536 (|HasAttribute| |#3| (QUOTE -4333)) (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1018)))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142)))))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-25))) (-12 (|HasCategory| |#3| (QUOTE (-1066))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (|HasCategory| |#3| (LIST (QUOTE -593) (QUOTE (-834)))))
(-245 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 (-227))))
(-246 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.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
NIL
(-247 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}.")))
-((-4337 . T) (-4338 . T) (-2624 . T))
+((-4336 . T) (-4337 . T) (-2623 . T))
NIL
(-248)
((|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.")))
@@ -958,8 +958,8 @@ NIL
NIL
(-257 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")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
-((|HasCategory| |#1| (QUOTE (-880))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#3| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#3| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#3| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#3| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#1| (QUOTE -4335)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
+((|HasCategory| |#1| (QUOTE (-880))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#3| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#3| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#3| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#3| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#1| (QUOTE -4334)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
(-258 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
@@ -1004,11 +1004,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
-(-269 R -1422)
+(-269 R -1421)
((|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
-(-270 R -1422)
+(-270 R -1421)
((|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
@@ -1027,10 +1027,10 @@ NIL
(-274 A 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|) |#2|) $) "\\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|) |#2| |#2|) $ $) "\\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}.") (($ |#2| $ (|Integer|)) "\\spad{insert!(x,{}u,{}i)} destructively inserts \\spad{x} into \\spad{u} at position \\spad{i}.")) (|remove!| (($ |#2| $) "\\spad{remove!(x,{}u)} destructively removes all values \\spad{x} from \\spad{u}.") (($ (|Mapping| (|Boolean|) |#2|) $) "\\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") (($ $ |#2|) "\\spad{concat!(u,{}x)} destructively adds element \\spad{x} to the end of \\spad{u}.")))
NIL
-((|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-1067))))
+((|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-1066))))
(-275 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}.")))
-((-4338 . T) (-2624 . T))
+((-4337 . T) (-2623 . T))
NIL
(-276 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}.")))
@@ -1051,18 +1051,18 @@ NIL
(-280 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 -4338)))
+((|HasAttribute| |#1| (QUOTE -4337)))
(-281 |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
-(-282 S R |Mod| -3574 -3890 |exactQuo|)
+(-282 S R |Mod| -2012 -3050 |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")))
-((-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-283)
((|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.")))
-((-4330 . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-284)
((|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")))
@@ -1078,21 +1078,21 @@ NIL
NIL
(-287 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.")))
-((-4334 -1536 (|has| |#1| (-1018)) (|has| |#1| (-465))) (-4331 |has| |#1| (-1018)) (-4332 |has| |#1| (-1018)))
-((|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-1018)))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#1| (QUOTE (-1018)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-1018)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-1018)))) (-1536 (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#1| (QUOTE (-703)))) (|HasCategory| |#1| (QUOTE (-465))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#1| (QUOTE (-703))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-1079))) (|HasCategory| |#1| (QUOTE (-1067)))) (-1536 (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#1| (QUOTE (-703))) (|HasCategory| |#1| (QUOTE (-1079)))) (|HasCategory| |#1| (LIST (QUOTE -505) (QUOTE (-1143)) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-295))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-465)))) (-1536 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-703)))) (-1536 (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#1| (QUOTE (-1018)))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-703))) (|HasCategory| |#1| (QUOTE (-1079))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))))
+((-4333 -1536 (|has| |#1| (-1018)) (|has| |#1| (-465))) (-4330 |has| |#1| (-1018)) (-4331 |has| |#1| (-1018)))
+((|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-1018)))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#1| (QUOTE (-1018)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-1018)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-1018)))) (-1536 (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#1| (QUOTE (-703)))) (|HasCategory| |#1| (QUOTE (-465))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#1| (QUOTE (-703))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (QUOTE (-1078))) (|HasCategory| |#1| (QUOTE (-1066)))) (-1536 (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#1| (QUOTE (-703))) (|HasCategory| |#1| (QUOTE (-1078)))) (|HasCategory| |#1| (LIST (QUOTE -505) (QUOTE (-1142)) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-295))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-465)))) (-1536 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-703)))) (-1536 (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#1| (QUOTE (-1018)))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-703))) (|HasCategory| |#1| (QUOTE (-1078))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))))
(-288 |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.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3337) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1793) (|devaluate| |#2|)))))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| |#2| (QUOTE (-1067)))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-1067))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3336) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1791) (|devaluate| |#2|)))))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| |#2| (QUOTE (-1066)))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-1066))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))))
(-289)
((|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
-(-290 -1422 S)
+(-290 -1421 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
-(-291 E -1422)
+(-291 E -1421)
((|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
@@ -1130,7 +1130,7 @@ NIL
NIL
(-300)
((|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}.")))
-((-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-301 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}.")))
@@ -1140,12 +1140,12 @@ 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
-(-303 -1422)
+(-303 -1421)
((|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
(-304)
-((|constructor| (NIL "This domain represents exit expressions.")) (|level| (((|Integer|) $) "\\spad{level(e)} returns the nesting exit level of `e'")) (|expression| (((|Syntax|) $) "\\spad{expression(e)} returns the exit expression of `e'.")))
+((|constructor| (NIL "This domain represents exit expressions.")) (|level| (((|Integer|) $) "\\spad{level(e)} returns the nesting exit level of `e'")) (|expression| (((|SpadAst|) $) "\\spad{expression(e)} returns the exit expression of `e'.")))
NIL
NIL
(-305)
@@ -1154,8 +1154,8 @@ NIL
NIL
(-306 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))}.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (QUOTE (-880))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (LIST (QUOTE -1009) (QUOTE (-1143)))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (QUOTE (-143))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (QUOTE (-145))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (QUOTE (-993))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (QUOTE (-796))) (-1536 (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (QUOTE (-796))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (QUOTE (-823)))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (QUOTE (-1118))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (QUOTE (-227))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (LIST (QUOTE -505) (QUOTE (-1143)) (LIST (QUOTE -1212) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (LIST (QUOTE -302) (LIST (QUOTE -1212) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (LIST (QUOTE -279) (LIST (QUOTE -1212) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)) (LIST (QUOTE -1212) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (QUOTE (-300))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (QUOTE (-534))) (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (QUOTE (-823))) (-12 (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (QUOTE (-880))) (|HasCategory| $ (QUOTE (-143)))) (-1536 (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (QUOTE (-143))) (-12 (|HasCategory| (-1212 |#1| |#2| |#3| |#4|) (QUOTE (-880))) (|HasCategory| $ (QUOTE (-143))))))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (QUOTE (-880))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (LIST (QUOTE -1009) (QUOTE (-1142)))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (QUOTE (-143))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (QUOTE (-145))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (QUOTE (-993))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (QUOTE (-796))) (-1536 (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (QUOTE (-796))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (QUOTE (-823)))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (QUOTE (-1117))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (QUOTE (-227))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (LIST (QUOTE -505) (QUOTE (-1142)) (LIST (QUOTE -1211) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (LIST (QUOTE -302) (LIST (QUOTE -1211) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (LIST (QUOTE -279) (LIST (QUOTE -1211) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)) (LIST (QUOTE -1211) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (QUOTE (-300))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (QUOTE (-534))) (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (QUOTE (-823))) (-12 (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (QUOTE (-880))) (|HasCategory| $ (QUOTE (-143)))) (-1536 (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (QUOTE (-143))) (-12 (|HasCategory| (-1211 |#1| |#2| |#3| |#4|) (QUOTE (-880))) (|HasCategory| $ (QUOTE (-143))))))
(-307 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}.")))
NIL
@@ -1166,9 +1166,9 @@ NIL
NIL
(-309 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.")))
-((-4334 -1536 (-1821 (|has| |#1| (-1018)) (|has| |#1| (-617 (-549)))) (-12 (|has| |#1| (-541)) (-1536 (-1821 (|has| |#1| (-1018)) (|has| |#1| (-617 (-549)))) (|has| |#1| (-1018)) (|has| |#1| (-465)))) (|has| |#1| (-1018)) (|has| |#1| (-465))) (-4332 |has| |#1| (-170)) (-4331 |has| |#1| (-170)) ((-4339 "*") |has| |#1| (-541)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-541)) (-4329 |has| |#1| (-541)))
-((-1536 (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| |#1| (QUOTE (-541))) (-1536 (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-1018)))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (-1536 (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#1| (QUOTE (-1079)))) (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549))))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-1018)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-1018)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-1018)))) (-12 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549))))) (-1536 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-1079)))) (-1536 (|HasCategory| |#1| (QUOTE (-21))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))))) (-1536 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-1079)))) (-1536 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))))) (-1536 (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#1| (QUOTE (-1018)))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-1079))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| $ (QUOTE (-1018))) (|HasCategory| $ (LIST (QUOTE -1009) (QUOTE (-549)))))
-(-310 R -1422)
+((-4333 -1536 (-1819 (|has| |#1| (-1018)) (|has| |#1| (-617 (-549)))) (-12 (|has| |#1| (-541)) (-1536 (-1819 (|has| |#1| (-1018)) (|has| |#1| (-617 (-549)))) (|has| |#1| (-1018)) (|has| |#1| (-465)))) (|has| |#1| (-1018)) (|has| |#1| (-465))) (-4331 |has| |#1| (-170)) (-4330 |has| |#1| (-170)) ((-4338 "*") |has| |#1| (-541)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-541)) (-4328 |has| |#1| (-541)))
+((-1536 (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| |#1| (QUOTE (-541))) (-1536 (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-1018)))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (-1536 (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#1| (QUOTE (-1078)))) (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549))))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-1018)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-1018)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-1018)))) (-12 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549))))) (-1536 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-1078)))) (-1536 (|HasCategory| |#1| (QUOTE (-21))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))))) (-1536 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-1078)))) (-1536 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))))) (-1536 (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#1| (QUOTE (-1018)))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-1078))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| $ (QUOTE (-1018))) (|HasCategory| $ (LIST (QUOTE -1009) (QUOTE (-549)))))
+(-310 R -1421)
((|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
@@ -1178,8 +1178,8 @@ NIL
NIL
(-312 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.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-356)) (-4329 |has| |#1| (-356)) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|)))) (|HasCategory| (-400 (-549)) (QUOTE (-1079))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasSignature| |#1| (LIST (QUOTE -3846) (LIST (|devaluate| |#1|) (QUOTE (-1143)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1165))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3893) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1143))))) (|HasSignature| |#1| (LIST (QUOTE -2272) (LIST (LIST (QUOTE -621) (QUOTE (-1143))) (|devaluate| |#1|)))))))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-356)) (-4328 |has| |#1| (-356)) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|)))) (|HasCategory| (-400 (-549)) (QUOTE (-1078))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasSignature| |#1| (LIST (QUOTE -3845) (LIST (|devaluate| |#1|) (QUOTE (-1142)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1164))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3405) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1142))))) (|HasSignature| |#1| (LIST (QUOTE -2270) (LIST (LIST (QUOTE -621) (QUOTE (-1142))) (|devaluate| |#1|)))))))
(-313 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
@@ -1190,7 +1190,7 @@ NIL
NIL
(-315 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.")))
-((-4332 . T) (-4331 . T))
+((-4331 . T) (-4330 . T))
((|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-768))))
(-316 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}.")))
@@ -1206,19 +1206,19 @@ NIL
((|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-170))))
(-319 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.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4331 . T) (-4332 . T) (-4334 . T))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-320 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.")))
-((-4338 . T) (-4337 . T))
-((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
-(-321 S -1422)
+((-4337 . T) (-4336 . T))
+((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+(-321 S -1421)
((|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 (-361))))
-(-322 -1422)
+(-322 -1421)
((|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.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-323)
((|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.")) (|coerce| (((|OutputForm|) $) "\\spad{coerce(f)} returns an object of type OutputForm.")))
@@ -1236,53 +1236,53 @@ 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
-(-327 S -1422 UP UPUP R)
+(-327 S -1421 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
-(-328 -1422 UP UPUP R)
+(-328 -1421 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
-(-329 -1422 UP UPUP R)
+(-329 -1421 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
(-330 S R)
((|constructor| (NIL "This category provides a selection of evaluation operations depending on what the argument type \\spad{R} provides.")) (|map| (($ (|Mapping| |#2| |#2|) $) "\\spad{map(f,{} ex)} evaluates ex,{} applying \\spad{f} to values of type \\spad{R} in ex.")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -505) (QUOTE (-1143)) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -279) (|devaluate| |#2|) (|devaluate| |#2|))))
+((|HasCategory| |#2| (LIST (QUOTE -505) (QUOTE (-1142)) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -279) (|devaluate| |#2|) (|devaluate| |#2|))))
(-331 R)
((|constructor| (NIL "This category provides a selection of evaluation operations depending on what the argument type \\spad{R} provides.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(f,{} ex)} evaluates ex,{} applying \\spad{f} to values of type \\spad{R} in ex.")))
NIL
NIL
(-332 |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.}")))
-((-4331 . T) (-4332 . T) (-4334 . T))
+((-4330 . T) (-4331 . T) (-4333 . T))
((|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-372)))) (|HasCategory| $ (QUOTE (-1018))) (|HasCategory| $ (LIST (QUOTE -1009) (QUOTE (-549)))))
(-333 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
-(-334 S -1422 UP UPUP)
+(-334 S -1421 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 (-361))) (|HasCategory| |#2| (QUOTE (-356))))
-(-335 -1422 UP UPUP)
+(-335 -1421 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.")))
-((-4330 |has| (-400 |#2|) (-356)) (-4335 |has| (-400 |#2|) (-356)) (-4329 |has| (-400 |#2|) (-356)) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 |has| (-400 |#2|) (-356)) (-4334 |has| (-400 |#2|) (-356)) (-4328 |has| (-400 |#2|) (-356)) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-336 |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.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
((-1536 (|HasCategory| (-881 |#1|) (QUOTE (-143))) (|HasCategory| (-881 |#1|) (QUOTE (-361)))) (|HasCategory| (-881 |#1|) (QUOTE (-145))) (|HasCategory| (-881 |#1|) (QUOTE (-361))) (|HasCategory| (-881 |#1|) (QUOTE (-143))))
(-337 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.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
((-1536 (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-361)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#1| (QUOTE (-143))))
(-338 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.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
((-1536 (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-361)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#1| (QUOTE (-143))))
(-339 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}.")))
@@ -1298,33 +1298,33 @@ NIL
NIL
(-342)
((|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.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
-(-343 R UP -1422)
+(-343 R UP -1421)
((|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
(-344 |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.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
((-1536 (|HasCategory| (-881 |#1|) (QUOTE (-143))) (|HasCategory| (-881 |#1|) (QUOTE (-361)))) (|HasCategory| (-881 |#1|) (QUOTE (-145))) (|HasCategory| (-881 |#1|) (QUOTE (-361))) (|HasCategory| (-881 |#1|) (QUOTE (-143))))
(-345 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.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
((-1536 (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-361)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#1| (QUOTE (-143))))
(-346 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.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
((-1536 (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-361)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#1| (QUOTE (-143))))
(-347 |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}.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
((-1536 (|HasCategory| (-881 |#1|) (QUOTE (-143))) (|HasCategory| (-881 |#1|) (QUOTE (-361)))) (|HasCategory| (-881 |#1|) (QUOTE (-145))) (|HasCategory| (-881 |#1|) (QUOTE (-361))) (|HasCategory| (-881 |#1|) (QUOTE (-143))))
(-348 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.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
((-1536 (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-361)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#1| (QUOTE (-143))))
-(-349 -1422 GF)
+(-349 -1421 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
@@ -1332,13 +1332,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
-(-351 -1422 FP FPP)
+(-351 -1421 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
(-352 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}.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
((-1536 (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-361)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#1| (QUOTE (-143))))
(-353 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}}.")))
@@ -1346,7 +1346,7 @@ NIL
NIL
(-354 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.")))
-((-4334 . T))
+((-4333 . T))
NIL
(-355 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.")))
@@ -1354,7 +1354,7 @@ NIL
NIL
(-356)
((|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.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-357 |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.")))
@@ -1370,7 +1370,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-541))))
(-360 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.")))
-((-4334 |has| |#1| (-541)) (-4332 . T) (-4331 . T))
+((-4333 |has| |#1| (-541)) (-4331 . T) (-4330 . T))
NIL
(-361)
((|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.")))
@@ -1382,7 +1382,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-356))))
(-363 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.")))
-((-4331 . T) (-4332 . T) (-4334 . T))
+((-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-364 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.")))
@@ -1391,14 +1391,14 @@ NIL
(-365 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 -4338)) (|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-1067))))
+((|HasAttribute| |#1| (QUOTE -4337)) (|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-1066))))
(-366 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]}.")))
-((-4337 . T) (-2624 . T))
+((-4336 . T) (-2623 . T))
NIL
(-367 |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) (-4332 . T) (-4331 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4331 . T) (-4330 . T))
NIL
(-368 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.")))
@@ -1410,7 +1410,7 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))))
(-370 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}")))
-((-4334 . T))
+((-4333 . T))
NIL
(-371 |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}.")))
@@ -1418,7 +1418,7 @@ NIL
NIL
(-372)
((|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}.")) (|convert| (($ (|DoubleFloat|)) "\\spad{convert(x)} converts a \\spadtype{DoubleFloat} \\spad{x} to a \\spadtype{Float}.")) (|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}.")))
-((-4320 . T) (-4328 . T) (-2661 . T) (-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4319 . T) (-4327 . T) (-2659 . T) (-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-373 |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}.")))
@@ -1426,23 +1426,23 @@ NIL
NIL
(-374 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}")))
-((-4332 . T) (-4331 . T))
+((-4331 . T) (-4330 . T))
((|HasCategory| |#1| (QUOTE (-170))))
(-375 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}.")))
-((-4332 . T) (-4331 . T))
+((-4331 . T) (-4330 . T))
NIL
(-376)
((|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}.")))
-((-2624 . T))
+((-2623 . T))
NIL
(-377)
((|constructor| (NIL "\\axiomType{FortranMatrixFunctionCategory} provides support for producing Functions and Subroutines representing matrices of expressions.")) (|retractIfCan| (((|Union| $ "failed") (|Matrix| (|Fraction| (|Polynomial| (|Integer|))))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Matrix| (|Fraction| (|Polynomial| (|Float|))))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Matrix| (|Polynomial| (|Integer|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Matrix| (|Polynomial| (|Float|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Matrix| (|Expression| (|Integer|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Matrix| (|Expression| (|Float|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}")) (|retract| (($ (|Matrix| (|Fraction| (|Polynomial| (|Integer|))))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Matrix| (|Fraction| (|Polynomial| (|Float|))))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Matrix| (|Polynomial| (|Integer|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Matrix| (|Polynomial| (|Float|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Matrix| (|Expression| (|Integer|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Matrix| (|Expression| (|Float|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}")) (|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.}")))
-((-2624 . T))
+((-2623 . T))
NIL
(-378 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.")))
-((-4332 . T) (-4331 . T))
+((-4331 . T) (-4330 . T))
((|HasCategory| |#1| (QUOTE (-170))))
(-379 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.")))
@@ -1450,7 +1450,7 @@ NIL
((|HasCategory| |#1| (QUOTE (-823))))
(-380)
((|constructor| (NIL "A category of domains which model machine arithmetic used by machines in the AXIOM-NAG link.")))
-((-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-381)
((|constructor| (NIL "This domain provides an interface to names in the file system.")))
@@ -1462,13 +1462,13 @@ NIL
NIL
(-383 |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")))
-((-4332 . T) (-4331 . T))
+((-4331 . T) (-4330 . T))
NIL
(-384)
((|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
-(-385 -1422 UP UPUP R)
+(-385 -1421 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
@@ -1482,27 +1482,27 @@ NIL
NIL
(-388)
((|constructor| (NIL "\\axiomType{FortranProgramCategory} provides various models of FORTRAN subprograms. These can be transformed into actual FORTRAN code.")) (|outputAsFortran| (((|Void|) $) "\\axiom{outputAsFortran(\\spad{u})} translates \\axiom{\\spad{u}} into a legal FORTRAN subprogram.")))
-((-2624 . T))
+((-2623 . T))
NIL
(-389)
((|constructor| (NIL "\\axiomType{FortranFunctionCategory} is the category of arguments to NAG Library routines which return (sets of) function values.")) (|retractIfCan| (((|Union| $ "failed") (|Fraction| (|Polynomial| (|Integer|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Fraction| (|Polynomial| (|Float|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Polynomial| (|Integer|))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Polynomial| (|Float|))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Expression| (|Integer|))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Expression| (|Float|))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}")) (|retract| (($ (|Fraction| (|Polynomial| (|Integer|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Fraction| (|Polynomial| (|Float|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Polynomial| (|Integer|))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Polynomial| (|Float|))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Expression| (|Integer|))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Expression| (|Float|))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}")) (|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.}")))
-((-2624 . T))
+((-2623 . T))
NIL
(-390)
((|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
-(-391 -2481 |returnType| -2872 |symbols|)
+(-391 -2479 |returnType| -2870 |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
-(-392 -1422 UP)
+(-392 -1421 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
(-393 R)
((|constructor| (NIL "A set \\spad{S} is PatternMatchable over \\spad{R} if \\spad{S} can lift the pattern-matching functions of \\spad{S} over the integers and float to itself (necessary for matching in towers).")))
-((-2624 . T))
+((-2623 . T))
NIL
(-394 S)
((|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.")))
@@ -1510,15 +1510,15 @@ NIL
NIL
(-395)
((|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.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-396 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 -4320)) (|HasAttribute| |#1| (QUOTE -4328)))
+((|HasAttribute| |#1| (QUOTE -4319)) (|HasAttribute| |#1| (QUOTE -4327)))
(-397)
((|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\".")))
-((-2661 . T) (-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-2659 . T) (-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-398 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.")))
@@ -1530,15 +1530,15 @@ NIL
NIL
(-400 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.")))
-((-4324 -12 (|has| |#1| (-6 -4335)) (|has| |#1| (-444)) (|has| |#1| (-6 -4324))) (-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| |#1| (QUOTE (-880))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-1143)))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-804)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-993))) (|HasCategory| |#1| (QUOTE (-796))) (-1536 (|HasCategory| |#1| (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-823)))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-804)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-1118))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-804)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-804))))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (-12 (|HasCategory| |#1| (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-804))))) (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#1| (LIST (QUOTE -505) (QUOTE (-1143)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -279) (|devaluate| |#1|) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-804)))) (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-534))) (-12 (|HasAttribute| |#1| (QUOTE -4335)) (|HasAttribute| |#1| (QUOTE -4324)) (|HasCategory| |#1| (QUOTE (-444)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
+((-4323 -12 (|has| |#1| (-6 -4334)) (|has| |#1| (-444)) (|has| |#1| (-6 -4323))) (-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| |#1| (QUOTE (-880))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-1142)))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-804)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-993))) (|HasCategory| |#1| (QUOTE (-796))) (-1536 (|HasCategory| |#1| (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-823)))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-804)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-1117))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-804)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-804))))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (-12 (|HasCategory| |#1| (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-804))))) (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#1| (LIST (QUOTE -505) (QUOTE (-1142)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -279) (|devaluate| |#1|) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-804)))) (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-534))) (-12 (|HasAttribute| |#1| (QUOTE -4334)) (|HasAttribute| |#1| (QUOTE -4323)) (|HasCategory| |#1| (QUOTE (-444)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
(-401 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
(-402 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.")))
-((-4331 . T) (-4332 . T) (-4334 . T))
+((-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-403 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")))
@@ -1552,11 +1552,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
-(-406 R -1422 UP A)
+(-406 R -1421 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)}.")))
-((-4334 . T))
+((-4333 . T))
NIL
-(-407 R -1422 UP A |ibasis|)
+(-407 R -1421 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 -1009) (|devaluate| |#2|))))
@@ -1570,12 +1570,12 @@ NIL
((|HasCategory| |#2| (QUOTE (-356))))
(-410 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.")))
-((-4334 |has| |#1| (-541)) (-4332 . T) (-4331 . T))
+((-4333 |has| |#1| (-541)) (-4331 . T) (-4330 . T))
NIL
(-411 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.")))
-((-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| |#1| (LIST (QUOTE -505) (QUOTE (-1143)) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -302) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -279) (QUOTE $) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-1184))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-1184)))) (|HasCategory| |#1| (QUOTE (-993))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -505) (QUOTE (-1143)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -279) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#1| (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-444))))
+((-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| |#1| (LIST (QUOTE -505) (QUOTE (-1142)) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -302) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -279) (QUOTE $) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-1183))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-1183)))) (|HasCategory| |#1| (QUOTE (-993))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -505) (QUOTE (-1142)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -279) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#1| (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-444))))
(-412 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)}.")))
NIL
@@ -1602,37 +1602,37 @@ NIL
((|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-361))))
(-418 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}.")))
-((-4337 . T) (-4327 . T) (-4338 . T) (-2624 . T))
+((-4336 . T) (-4326 . T) (-4337 . T) (-2623 . T))
NIL
-(-419 R -1422)
+(-419 R -1421)
((|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
(-420 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")))
-((-4324 -12 (|has| |#1| (-6 -4324)) (|has| |#2| (-6 -4324))) (-4331 . T) (-4332 . T) (-4334 . T))
-((-12 (|HasAttribute| |#1| (QUOTE -4324)) (|HasAttribute| |#2| (QUOTE -4324))))
-(-421 R -1422)
+((-4323 -12 (|has| |#1| (-6 -4323)) (|has| |#2| (-6 -4323))) (-4330 . T) (-4331 . T) (-4333 . T))
+((-12 (|HasAttribute| |#1| (QUOTE -4323)) (|HasAttribute| |#2| (QUOTE -4323))))
+(-421 R -1421)
((|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
(-422 S 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| |#2| (|Kernel| $)) (|SparseMultivariatePolynomial| |#2| (|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| |#2| (|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| |#2| (|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| |#2|)))) "\\spad{coerce(f)} returns \\spad{f} as an element of \\%.") (($ (|Polynomial| (|Fraction| |#2|))) "\\spad{coerce(p)} returns \\spad{p} as an element of \\%.") (($ (|Fraction| |#2|)) "\\spad{coerce(q)} returns \\spad{q} as an element of \\%.") (($ (|SparseMultivariatePolynomial| |#2| (|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| ((|#2| $) "\\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}.")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-465))) (|HasCategory| |#2| (QUOTE (-1079))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525)))))
+((|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-465))) (|HasCategory| |#2| (QUOTE (-1078))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525)))))
(-423 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}.")))
-((-4334 -1536 (|has| |#1| (-1018)) (|has| |#1| (-465))) (-4332 |has| |#1| (-170)) (-4331 |has| |#1| (-170)) ((-4339 "*") |has| |#1| (-541)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-541)) (-4329 |has| |#1| (-541)) (-2624 . T))
+((-4333 -1536 (|has| |#1| (-1018)) (|has| |#1| (-465))) (-4331 |has| |#1| (-170)) (-4330 |has| |#1| (-170)) ((-4338 "*") |has| |#1| (-541)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-541)) (-4328 |has| |#1| (-541)) (-2623 . T))
NIL
-(-424 R -1422)
+(-424 R -1421)
((|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
-(-425 R -1422)
+(-425 R -1421)
((|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))))
-(-426 R -1422)
+(-426 R -1421)
((|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
@@ -1640,7 +1640,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
-(-428 R -1422 UP)
+(-428 R -1421 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 -1009) (QUOTE (-48)))))
@@ -1658,17 +1658,17 @@ NIL
NIL
(-432)
((|constructor| (NIL "\\axiomType{FortranVectorCategory} provides support for producing Functions and Subroutines when the input to these is an AXIOM object of type \\axiomType{Vector} 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.}") (($ (|Vector| (|MachineFloat|))) "\\spad{coerce(v)} produces an ASP which returns the value of \\spad{v}.")))
-((-2624 . T))
+((-2623 . T))
NIL
(-433)
((|constructor| (NIL "\\axiomType{FortranVectorFunctionCategory} is the catagory of arguments to NAG Library routines which return the values of vectors of functions.")) (|retractIfCan| (((|Union| $ "failed") (|Vector| (|Fraction| (|Polynomial| (|Integer|))))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Vector| (|Fraction| (|Polynomial| (|Float|))))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Vector| (|Polynomial| (|Integer|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Vector| (|Polynomial| (|Float|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Vector| (|Expression| (|Integer|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (((|Union| $ "failed") (|Vector| (|Expression| (|Float|)))) "\\spad{retractIfCan(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}")) (|retract| (($ (|Vector| (|Fraction| (|Polynomial| (|Integer|))))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Vector| (|Fraction| (|Polynomial| (|Float|))))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Vector| (|Polynomial| (|Integer|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Vector| (|Polynomial| (|Float|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Vector| (|Expression| (|Integer|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}") (($ (|Vector| (|Expression| (|Float|)))) "\\spad{retract(e)} tries to convert \\spad{e} into an ASP,{} checking that \\indented{1}{legal Fortran-77 is produced.}")) (|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.}")))
-((-2624 . T))
+((-2623 . T))
NIL
(-434 UP)
((|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
-(-435 R UP -1422)
+(-435 R UP -1421)
((|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
@@ -1706,16 +1706,16 @@ NIL
NIL
(-444)
((|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}.")))
-((-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-445 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")))
-((-4334 |has| (-400 (-923 |#1|)) (-541)) (-4332 . T) (-4331 . T))
+((-4333 |has| (-400 (-923 |#1|)) (-541)) (-4331 . T) (-4330 . T))
((|HasCategory| (-400 (-923 |#1|)) (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| (-400 (-923 |#1|)) (QUOTE (-541))))
(-446 |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")))
-(((-4339 "*") |has| |#2| (-170)) (-4330 |has| |#2| (-541)) (-4335 |has| |#2| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
-((|HasCategory| |#2| (QUOTE (-880))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-170))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-541)))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#2| (QUOTE -4335)) (|HasCategory| |#2| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-143)))))
+(((-4338 "*") |has| |#2| (-170)) (-4329 |has| |#2| (-541)) (-4334 |has| |#2| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
+((|HasCategory| |#2| (QUOTE (-880))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-170))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-541)))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#2| (QUOTE -4334)) (|HasCategory| |#2| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-143)))))
(-447 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
@@ -1742,7 +1742,7 @@ NIL
NIL
(-453 |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")))
-((-4332 . T) (-4331 . T))
+((-4331 . T) (-4330 . T))
NIL
(-454 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}.")))
@@ -1750,8 +1750,8 @@ NIL
NIL
(-455 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}}.")))
-((-4338 . T) (-4337 . T))
-((-12 (|HasCategory| |#4| (QUOTE (-1067))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#4| (QUOTE (-1067))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#4| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T) (-4336 . T))
+((-12 (|HasCategory| |#4| (QUOTE (-1066))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#4| (QUOTE (-1066))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#4| (LIST (QUOTE -593) (QUOTE (-834)))))
(-456 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}.")))
NIL
@@ -1780,7 +1780,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
-(-463 |lv| -1422 R)
+(-463 |lv| -1421 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
@@ -1790,53 +1790,53 @@ NIL
NIL
(-465)
((|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}.")))
-((-4334 . T))
+((-4333 . T))
NIL
(-466 |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.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-356)) (-4329 |has| |#1| (-356)) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|)))) (|HasCategory| (-400 (-549)) (QUOTE (-1079))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasSignature| |#1| (LIST (QUOTE -3846) (LIST (|devaluate| |#1|) (QUOTE (-1143)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1165))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3893) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1143))))) (|HasSignature| |#1| (LIST (QUOTE -2272) (LIST (LIST (QUOTE -621) (QUOTE (-1143))) (|devaluate| |#1|)))))))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-356)) (-4328 |has| |#1| (-356)) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|)))) (|HasCategory| (-400 (-549)) (QUOTE (-1078))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasSignature| |#1| (LIST (QUOTE -3845) (LIST (|devaluate| |#1|) (QUOTE (-1142)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1164))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3405) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1142))))) (|HasSignature| |#1| (LIST (QUOTE -2270) (LIST (LIST (QUOTE -621) (QUOTE (-1142))) (|devaluate| |#1|)))))))
(-467 |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.")))
-((-4338 . T))
-((-12 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3337) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1793) (|devaluate| |#2|)))))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| |#2| (QUOTE (-1067)))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-823))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T))
+((-12 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3336) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1791) (|devaluate| |#2|)))))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| |#2| (QUOTE (-1066)))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-823))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))))
(-468 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)}")))
-((-4338 . T) (-4337 . T))
-((-12 (|HasCategory| |#4| (QUOTE (-1067))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#4| (QUOTE (-1067))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#4| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T) (-4336 . T))
+((-12 (|HasCategory| |#4| (QUOTE (-1066))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#4| (QUOTE (-1066))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#4| (LIST (QUOTE -593) (QUOTE (-834)))))
(-469)
((|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}.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-470)
-((|constructor| (NIL "This domain represents a `has' expression.")) (|rhs| (((|Syntax|) $) "\\spad{rhs(e)} returns the right hand side of the case expression `e'.")) (|lhs| (((|Syntax|) $) "\\spad{lhs(e)} returns the left hand side of the has expression `e'.")))
+((|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'.")))
NIL
NIL
(-471 |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.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3337) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1793) (|devaluate| |#2|)))))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| |#2| (QUOTE (-1067)))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-1067))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3336) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1791) (|devaluate| |#2|)))))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| |#2| (QUOTE (-1066)))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-1066))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))))
(-472)
((|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
(-473 |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")))
-(((-4339 "*") |has| |#2| (-170)) (-4330 |has| |#2| (-541)) (-4335 |has| |#2| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
-((|HasCategory| |#2| (QUOTE (-880))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-170))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-541)))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#2| (QUOTE -4335)) (|HasCategory| |#2| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-143)))))
-(-474 -2728 S)
+(((-4338 "*") |has| |#2| (-170)) (-4329 |has| |#2| (-541)) (-4334 |has| |#2| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
+((|HasCategory| |#2| (QUOTE (-880))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-170))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-541)))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#2| (QUOTE -4334)) (|HasCategory| |#2| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-143)))))
+(-474 -2724 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}.")))
-((-4331 |has| |#2| (-1018)) (-4332 |has| |#2| (-1018)) (-4334 |has| |#2| (-6 -4334)) ((-4339 "*") |has| |#2| (-170)) (-4337 . T))
-((-1536 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1067)))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (QUOTE (-356))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-356)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-769))) (-1536 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (QUOTE (-821)))) (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (QUOTE (-170))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-1018)))) (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-1067)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-170)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-227)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-361)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-703)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-769)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-821)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1067))))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| (-549) (QUOTE (-823))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-1536 (|HasCategory| |#2| (QUOTE (-1018))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1067)))) (|HasAttribute| |#2| (QUOTE -4334)) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-25))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4330 |has| |#2| (-1018)) (-4331 |has| |#2| (-1018)) (-4333 |has| |#2| (-6 -4333)) ((-4338 "*") |has| |#2| (-170)) (-4336 . T))
+((-1536 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1066)))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (QUOTE (-356))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-356)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-769))) (-1536 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (QUOTE (-821)))) (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (QUOTE (-170))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-1018)))) (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-1066)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-170)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-227)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-361)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-703)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-769)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-821)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1066))))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| (-549) (QUOTE (-823))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-1536 (|HasCategory| |#2| (QUOTE (-1018))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1066)))) (|HasAttribute| |#2| (QUOTE -4333)) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-25))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))))
(-475)
((|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
(-476 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}.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
-(-477 -1422 UP UPUP R)
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+(-477 -1421 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
@@ -1846,15 +1846,15 @@ NIL
NIL
(-479)
((|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.")) (|coerce| (((|RadixExpansion| 16) $) "\\spad{coerce(h)} converts a hexadecimal expansion to a radix expansion with base 16.") (((|Fraction| (|Integer|)) $) "\\spad{coerce(h)} converts a hexadecimal expansion to a rational number.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| (-549) (QUOTE (-880))) (|HasCategory| (-549) (LIST (QUOTE -1009) (QUOTE (-1143)))) (|HasCategory| (-549) (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-145))) (|HasCategory| (-549) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-549) (QUOTE (-993))) (|HasCategory| (-549) (QUOTE (-796))) (-1536 (|HasCategory| (-549) (QUOTE (-796))) (|HasCategory| (-549) (QUOTE (-823)))) (|HasCategory| (-549) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-549) (QUOTE (-1118))) (|HasCategory| (-549) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| (-549) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| (-549) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| (-549) (QUOTE (-227))) (|HasCategory| (-549) (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| (-549) (LIST (QUOTE -505) (QUOTE (-1143)) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -302) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -279) (QUOTE (-549)) (QUOTE (-549)))) (|HasCategory| (-549) (QUOTE (-300))) (|HasCategory| (-549) (QUOTE (-534))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-549) (LIST (QUOTE -617) (QUOTE (-549)))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-880)))) (|HasCategory| (-549) (QUOTE (-143)))))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| (-549) (QUOTE (-880))) (|HasCategory| (-549) (LIST (QUOTE -1009) (QUOTE (-1142)))) (|HasCategory| (-549) (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-145))) (|HasCategory| (-549) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-549) (QUOTE (-993))) (|HasCategory| (-549) (QUOTE (-796))) (-1536 (|HasCategory| (-549) (QUOTE (-796))) (|HasCategory| (-549) (QUOTE (-823)))) (|HasCategory| (-549) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-549) (QUOTE (-1117))) (|HasCategory| (-549) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| (-549) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| (-549) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| (-549) (QUOTE (-227))) (|HasCategory| (-549) (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| (-549) (LIST (QUOTE -505) (QUOTE (-1142)) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -302) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -279) (QUOTE (-549)) (QUOTE (-549)))) (|HasCategory| (-549) (QUOTE (-300))) (|HasCategory| (-549) (QUOTE (-534))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-549) (LIST (QUOTE -617) (QUOTE (-549)))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-880)))) (|HasCategory| (-549) (QUOTE (-143)))))
(-480 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 -4337)) (|HasAttribute| |#1| (QUOTE -4338)) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))))
+((|HasAttribute| |#1| (QUOTE -4336)) (|HasAttribute| |#1| (QUOTE -4337)) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))))
(-481 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}]}.")))
-((-2624 . T))
+((-2623 . T))
NIL
(-482)
((|constructor| (NIL "This domain represents hostnames on computer network.")) (|host| (($ (|String|)) "\\spad{host(n)} constructs a Hostname from the name \\spad{`n'}.")))
@@ -1868,34 +1868,34 @@ 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
-(-485 -1422 UP |AlExt| |AlPol|)
+(-485 -1421 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
(-486)
((|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.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
((|HasCategory| $ (QUOTE (-1018))) (|HasCategory| $ (LIST (QUOTE -1009) (QUOTE (-549)))))
(-487 S |mn|)
((|constructor| (NIL "\\indented{1}{Author Micheal Monagan Aug/87} This is the basic one dimensional array data type.")))
-((-4338 . T) (-4337 . T))
-((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T) (-4336 . T))
+((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-488 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.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-489 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
-(-490 R UP -1422)
+(-490 R UP -1421)
((|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
(-491 |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}.")))
-((-4338 . T) (-4337 . T))
-((-12 (|HasCategory| (-112) (QUOTE (-1067))) (|HasCategory| (-112) (LIST (QUOTE -302) (QUOTE (-112))))) (|HasCategory| (-112) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-112) (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-112) (QUOTE (-1067))) (|HasCategory| (-112) (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T) (-4336 . T))
+((-12 (|HasCategory| (-112) (QUOTE (-1066))) (|HasCategory| (-112) (LIST (QUOTE -302) (QUOTE (-112))))) (|HasCategory| (-112) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-112) (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-112) (QUOTE (-1066))) (|HasCategory| (-112) (LIST (QUOTE -593) (QUOTE (-834)))))
(-492 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)}.")))
NIL
@@ -1908,10 +1908,10 @@ 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
-(-495 -1422 |Expon| |VarSet| |DPoly|)
+(-495 -1421 |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 -594) (QUOTE (-1143)))))
+((|HasCategory| |#3| (LIST (QUOTE -594) (QUOTE (-1142)))))
(-496 |vl| |nv|)
((|constructor| (NIL "\\indented{2}{This package provides functions for the primary decomposition of} polynomial ideals over the rational numbers. The ideals are members of the \\spadtype{PolynomialIdeals} domain,{} and the polynomial generators are required to be from the \\spadtype{DistributedMultivariatePolynomial} domain.")) (|contract| (((|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|)))) (|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|)))) (|List| (|OrderedVariableList| |#1|))) "\\spad{contract(I,{}lvar)} contracts the ideal \\spad{I} to the polynomial ring \\spad{F[lvar]}.")) (|primaryDecomp| (((|List| (|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|))))) (|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|))))) "\\spad{primaryDecomp(I)} returns a list of primary ideals such that their intersection is the ideal \\spad{I}.")) (|radical| (((|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|)))) (|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|))))) "\\spad{radical(I)} returns the radical of the ideal \\spad{I}.")) (|prime?| (((|Boolean|) (|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|))))) "\\spad{prime?(I)} tests if the ideal \\spad{I} is prime.")) (|zeroDimPrimary?| (((|Boolean|) (|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|))))) "\\spad{zeroDimPrimary?(I)} tests if the ideal \\spad{I} is 0-dimensional primary.")) (|zeroDimPrime?| (((|Boolean|) (|PolynomialIdeals| (|Fraction| (|Integer|)) (|DirectProduct| |#2| (|NonNegativeInteger|)) (|OrderedVariableList| |#1|) (|DistributedMultivariatePolynomial| |#1| (|Fraction| (|Integer|))))) "\\spad{zeroDimPrime?(I)} tests if the ideal \\spad{I} is a 0-dimensional prime.")))
NIL
@@ -1958,42 +1958,42 @@ NIL
((|HasCategory| |#2| (QUOTE (-768))))
(-507 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}")))
-((-4338 . T) (-4337 . T))
-((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T) (-4336 . T))
+((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-508)
-((|constructor| (NIL "This domain represents AST for conditional expressions.")) (|elseBranch| (((|Syntax|) $) "thenBranch(\\spad{e}) returns the `else-branch' of `e'.")) (|thenBranch| (((|Syntax|) $) "\\spad{thenBranch(e)} returns the `then-branch' of `e'.")) (|condition| (((|Syntax|) $) "\\spad{condition(e)} returns the condition of the if-expression `e'.")))
+((|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'.")))
NIL
NIL
(-509 |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}.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
((-1536 (|HasCategory| (-563 |#1|) (QUOTE (-143))) (|HasCategory| (-563 |#1|) (QUOTE (-361)))) (|HasCategory| (-563 |#1|) (QUOTE (-145))) (|HasCategory| (-563 |#1|) (QUOTE (-361))) (|HasCategory| (-563 |#1|) (QUOTE (-143))))
(-510 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}.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-511 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.")))
-((-4338 . T) (-4337 . T))
-((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T) (-4336 . T))
+((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-512 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 -4338)))
+((|HasAttribute| |#3| (QUOTE -4337)))
(-513 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 -4338)))
+((|HasAttribute| |#7| (QUOTE -4337)))
(-514 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.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-541))) (|HasAttribute| |#1| (QUOTE (-4339 "*"))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-541))) (|HasAttribute| |#1| (QUOTE (-4338 "*"))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-515)
((|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
NIL
(-516)
-((|constructor| (NIL "This domain represents the `in' iterator syntax.")) (|sequence| (((|Syntax|) $) "\\spad{sequence(i)} returns the sequence expression being iterated over by `i'.")) (|iterationVar| (((|Symbol|) $) "\\spad{iterationVar(i)} returns the name of the iterating variable of the `in' iterator 'i'")))
+((|constructor| (NIL "This domain represents the `in' iterator syntax.")) (|sequence| (((|SpadAst|) $) "\\spad{sequence(i)} returns the sequence expression being iterated over by `i'.")) (|iterationVar| (((|Symbol|) $) "\\spad{iterationVar(i)} returns the name of the iterating variable of the `in' iterator 'i'")))
NIL
NIL
(-517 S)
@@ -2016,7 +2016,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
-(-522 K -1422 |Par|)
+(-522 K -1421 |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
@@ -2036,7 +2036,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
-(-527 K -1422 |Par|)
+(-527 K -1421 |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
@@ -2066,17 +2066,17 @@ NIL
NIL
(-534)
((|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.")))
-((-4335 . T) (-4336 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4334 . T) (-4335 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-535 |Key| |Entry| |addDom|)
((|constructor| (NIL "This domain is used to provide a conditional \"add\" domain for the implementation of \\spadtype{Table}.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3337) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1793) (|devaluate| |#2|)))))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| |#2| (QUOTE (-1067)))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-1067))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))))
-(-536 R -1422)
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3336) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1791) (|devaluate| |#2|)))))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| |#2| (QUOTE (-1066)))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-1066))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))))
+(-536 R -1421)
((|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
-(-537 R0 -1422 UP UPUP R)
+(-537 R0 -1421 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
@@ -2086,7 +2086,7 @@ NIL
NIL
(-539 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.")))
-((-2661 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-2659 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-540 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.")))
@@ -2094,9 +2094,9 @@ NIL
NIL
(-541)
((|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.")))
-((-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
-(-542 R -1422)
+(-542 R -1421)
((|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
@@ -2108,7 +2108,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
-(-545 R -1422 L)
+(-545 R -1421 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 -632) (|devaluate| |#2|))))
@@ -2116,31 +2116,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
-(-547 -1422 UP UPUP R)
+(-547 -1421 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
-(-548 -1422 UP)
+(-548 -1421 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
(-549)
((|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}.")))
-((-4319 . T) (-4325 . T) (-4329 . T) (-4324 . T) (-4335 . T) (-4336 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4318 . T) (-4324 . T) (-4328 . T) (-4323 . T) (-4334 . T) (-4335 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-550)
((|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
-(-551 R -1422 L)
+(-551 R -1421 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 -632) (|devaluate| |#2|))))
-(-552 R -1422)
+(-552 R -1421)
((|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 -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-1106)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-607)))))
-(-553 -1422 UP)
+((-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-1105)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-607)))))
+(-553 -1421 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
@@ -2148,27 +2148,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
-(-555 -1422)
+(-555 -1421)
((|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
(-556 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.")))
-((-2661 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-2659 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-557)
((|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
-(-558 R -1422)
+(-558 R -1421)
((|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 -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-277))) (|HasCategory| |#2| (QUOTE (-607))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-1143))))) (-12 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-277)))) (|HasCategory| |#1| (QUOTE (-541))))
-(-559 -1422 UP)
+((-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-277))) (|HasCategory| |#2| (QUOTE (-607))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-1142))))) (-12 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-277)))) (|HasCategory| |#1| (QUOTE (-541))))
+(-559 -1421 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
-(-560 R -1422)
+(-560 R -1421)
((|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
@@ -2178,28 +2178,28 @@ NIL
NIL
(-562 |p| |unBalanced?|)
((|constructor| (NIL "This domain implements \\spad{Zp},{} the \\spad{p}-adic completion of the integers. This is an internal domain.")))
-((-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-563 |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.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
((|HasCategory| $ (QUOTE (-145))) (|HasCategory| $ (QUOTE (-143))) (|HasCategory| $ (QUOTE (-361))))
(-564)
((|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
-(-565 R -1422)
+(-565 R -1421)
((|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
-(-566 E -1422)
+(-566 E -1421)
((|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
-(-567 -1422)
+(-567 -1421)
((|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}.")))
-((-4332 . T) (-4331 . T))
-((|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-1143)))))
+((-4331 . T) (-4330 . T))
+((|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-1142)))))
(-568 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")))
NIL
@@ -2221,24 +2221,24 @@ NIL
NIL
NIL
(-573)
-((|constructor| (NIL "This domain represents a `has' expression.")) (|rhs| (((|Syntax|) $) "\\spad{rhs(e)} returns the right hand side of the is expression `e'.")) (|lhs| (((|Syntax|) $) "\\spad{lhs(e)} returns the left hand side of the is expression `e'.")))
+((|constructor| (NIL "This domain represents a `has' expression.")) (|rhs| (((|SpadAst|) $) "\\spad{rhs(e)} returns the right hand side of the is expression `e'.")) (|lhs| (((|SpadAst|) $) "\\spad{lhs(e)} returns the left hand side of the is expression `e'.")))
NIL
NIL
(-574 |mn|)
((|constructor| (NIL "This domain implements low-level strings")) (|hash| (((|Integer|) $) "\\spad{hash(x)} provides a hashing function for strings")))
-((-4338 . T) (-4337 . T))
-((-1536 (-12 (|HasCategory| (-142) (QUOTE (-823))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142))))) (-12 (|HasCategory| (-142) (QUOTE (-1067))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142)))))) (-1536 (|HasCategory| (-142) (LIST (QUOTE -593) (QUOTE (-834)))) (-12 (|HasCategory| (-142) (QUOTE (-1067))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142)))))) (|HasCategory| (-142) (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| (-142) (QUOTE (-823))) (|HasCategory| (-142) (QUOTE (-1067)))) (|HasCategory| (-142) (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-142) (QUOTE (-1067))) (-12 (|HasCategory| (-142) (QUOTE (-1067))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142))))) (|HasCategory| (-142) (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T) (-4336 . T))
+((-1536 (-12 (|HasCategory| (-142) (QUOTE (-823))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142))))) (-12 (|HasCategory| (-142) (QUOTE (-1066))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142)))))) (-1536 (|HasCategory| (-142) (LIST (QUOTE -593) (QUOTE (-834)))) (-12 (|HasCategory| (-142) (QUOTE (-1066))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142)))))) (|HasCategory| (-142) (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| (-142) (QUOTE (-823))) (|HasCategory| (-142) (QUOTE (-1066)))) (|HasCategory| (-142) (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-142) (QUOTE (-1066))) (-12 (|HasCategory| (-142) (QUOTE (-1066))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142))))) (|HasCategory| (-142) (LIST (QUOTE -593) (QUOTE (-834)))))
(-575 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)}.")))
NIL
NIL
(-576 |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}.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-549)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-549)) (|devaluate| |#1|)))) (|HasCategory| (-549) (QUOTE (-1079))) (|HasCategory| |#1| (QUOTE (-356))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3846) (LIST (|devaluate| |#1|) (QUOTE (-1143)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-549))))))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-549)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-549)) (|devaluate| |#1|)))) (|HasCategory| (-549) (QUOTE (-1078))) (|HasCategory| |#1| (QUOTE (-356))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3845) (LIST (|devaluate| |#1|) (QUOTE (-1142)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-549))))))
(-577 |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.}")))
-((-4332 |has| |#1| (-541)) (-4331 |has| |#1| (-541)) ((-4339 "*") |has| |#1| (-541)) (-4330 |has| |#1| (-541)) (-4334 . T))
+((-4331 |has| |#1| (-541)) (-4330 |has| |#1| (-541)) ((-4338 "*") |has| |#1| (-541)) (-4329 |has| |#1| (-541)) (-4333 . T))
((|HasCategory| |#1| (QUOTE (-541))))
(-578 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),{}..]}.")))
@@ -2248,7 +2248,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
-(-580 R -1422 FG)
+(-580 R -1421 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
@@ -2258,15 +2258,15 @@ NIL
NIL
(-582 R |mn|)
((|constructor| (NIL "\\indented{2}{This type represents vector like objects with varying lengths} and a user-specified initial index.")))
-((-4338 . T) (-4337 . T))
-((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-703))) (|HasCategory| |#1| (QUOTE (-1018))) (-12 (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (QUOTE (-1018)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T) (-4336 . T))
+((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-703))) (|HasCategory| |#1| (QUOTE (-1018))) (-12 (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (QUOTE (-1018)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-583 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 -4338)) (|HasCategory| |#2| (QUOTE (-823))) (|HasAttribute| |#1| (QUOTE -4337)) (|HasCategory| |#3| (QUOTE (-1067))))
+((|HasAttribute| |#1| (QUOTE -4337)) (|HasCategory| |#2| (QUOTE (-823))) (|HasAttribute| |#1| (QUOTE -4336)) (|HasCategory| |#3| (QUOTE (-1066))))
(-584 |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.")))
-((-2624 . T))
+((-2623 . T))
NIL
(-585)
((|constructor| (NIL "\\indented{1}{This domain defines the datatype for the Java} Virtual Machine byte codes.")) (|coerce| (($ (|Byte|)) "\\spad{coerce(x)} the numerical byte value into a \\spad{JVM} bytecode.")))
@@ -2278,19 +2278,19 @@ NIL
NIL
(-587 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).")))
-((-4334 -1536 (-1821 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))) (-4332 . T) (-4331 . T))
+((-4333 -1536 (-1819 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))) (-4331 . T) (-4330 . T))
((-1536 (|HasCategory| |#2| (LIST (QUOTE -360) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -410) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -410) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -410) (|devaluate| |#1|)))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#2| (LIST (QUOTE -360) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#2| (LIST (QUOTE -410) (|devaluate| |#1|))))) (|HasCategory| |#2| (LIST (QUOTE -360) (|devaluate| |#1|))))
(-588 |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.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3337) (QUOTE (-1125))) (LIST (QUOTE |:|) (QUOTE -1793) (|devaluate| |#1|)))))) (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| (-1125) (QUOTE (-823))) (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3336) (QUOTE (-1124))) (LIST (QUOTE |:|) (QUOTE -1791) (|devaluate| |#1|)))))) (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| (-1124) (QUOTE (-823))) (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (LIST (QUOTE -593) (QUOTE (-834)))))
(-589 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
(-590 |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}.")))
-((-4338 . T) (-2624 . T))
+((-4337 . T) (-2623 . T))
NIL
(-591 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")))
@@ -2308,7 +2308,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
-(-595 -1422 UP)
+(-595 -1421 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
@@ -2322,20 +2322,20 @@ NIL
NIL
(-598 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.")))
-((-4334 . T))
+((-4333 . T))
NIL
(-599 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}.")))
-((-4331 . T) (-4332 . T) (-4334 . T))
+((-4330 . T) (-4331 . T) (-4333 . T))
((|HasCategory| |#1| (QUOTE (-821))))
-(-600 R -1422)
+(-600 R -1421)
((|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
(-601 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")))
-((-4332 . T) (-4331 . T) ((-4339 "*") . T) (-4330 . T) (-4334 . T))
-((|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))))
+((-4331 . T) (-4330 . T) ((-4338 "*") . T) (-4329 . T) (-4333 . T))
+((|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))))
(-602 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.")))
NIL
@@ -2345,12 +2345,12 @@ NIL
NIL
NIL
(-604)
-((|constructor| (NIL "This domain represents assignment expressions.")) (|rhs| (((|Syntax|) $) "\\spad{rhs(e)} returns the right hand side of the assignment expression `e'.")) (|lhs| (((|Syntax|) $) "\\spad{lhs(e)} returns the left hand side of the assignment expression `e'.")))
+((|constructor| (NIL "This domain represents assignment expressions.")) (|rhs| (((|SpadAst|) $) "\\spad{rhs(e)} returns the right hand side of the assignment expression `e'.")) (|lhs| (((|SpadAst|) $) "\\spad{lhs(e)} returns the left hand side of the assignment expression `e'.")))
NIL
NIL
(-605 |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}}.")))
-((-4334 . T))
+((-4333 . T))
NIL
(-606 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}}.")))
@@ -2360,29 +2360,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
-(-608 R -1422)
+(-608 R -1421)
((|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
-(-609 |lv| -1422)
+(-609 |lv| -1421)
((|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
(-610)
((|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.")))
-((-4338 . T))
-((-12 (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3337) (QUOTE (-1125))) (LIST (QUOTE |:|) (QUOTE -1793) (QUOTE (-52))))))) (-1536 (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (QUOTE (-1067))) (|HasCategory| (-52) (QUOTE (-1067)))) (-1536 (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-52) (QUOTE (-1067))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| (-52) (QUOTE (-1067))) (|HasCategory| (-52) (LIST (QUOTE -302) (QUOTE (-52))))) (|HasCategory| (-1125) (QUOTE (-823))) (-1536 (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-52) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T))
+((-12 (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3336) (QUOTE (-1124))) (LIST (QUOTE |:|) (QUOTE -1791) (QUOTE (-52))))))) (-1536 (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (QUOTE (-1066))) (|HasCategory| (-52) (QUOTE (-1066)))) (-1536 (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-52) (QUOTE (-1066))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| (-52) (QUOTE (-1066))) (|HasCategory| (-52) (LIST (QUOTE -302) (QUOTE (-52))))) (|HasCategory| (-1124) (QUOTE (-823))) (-1536 (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-52) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))))
(-611 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 (-356))))
(-612 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) (-4332 . T) (-4331 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4331 . T) (-4330 . T))
NIL
(-613 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).")))
-((-4334 -1536 (-1821 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))) (-4332 . T) (-4331 . T))
+((-4333 -1536 (-1819 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))) (-4331 . T) (-4330 . T))
((-1536 (|HasCategory| |#2| (LIST (QUOTE -360) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -410) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -410) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -410) (|devaluate| |#1|)))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#2| (LIST (QUOTE -360) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#2| (LIST (QUOTE -410) (|devaluate| |#1|))))) (|HasCategory| |#2| (LIST (QUOTE -360) (|devaluate| |#1|))))
(-614 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))}.")))
@@ -2395,10 +2395,10 @@ NIL
(-616 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
-((-4008 (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-356))))
+((-4007 (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-356))))
(-617 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}.")))
-((-4334 . T))
+((-4333 . T))
NIL
(-618 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}.")))
@@ -2414,16 +2414,16 @@ NIL
NIL
(-621 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.")))
-((-4338 . T) (-4337 . T))
-((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-804))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T) (-4336 . T))
+((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-804))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-622 T$)
((|constructor| (NIL "This domain represents AST for Spad literals.")))
NIL
NIL
(-623 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.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-624 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}.")))
NIL
@@ -2435,22 +2435,22 @@ NIL
(-626 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 -4338)))
+((|HasAttribute| |#1| (QUOTE -4337)))
(-627 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})}.")))
-((-2624 . T))
+((-2623 . T))
NIL
-(-628 R -1422 L)
+(-628 R -1421 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
(-629 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}}")))
-((-4331 . T) (-4332 . T) (-4334 . T))
+((-4330 . T) (-4331 . T) (-4333 . T))
((|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-356))))
(-630 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}")))
-((-4331 . T) (-4332 . T) (-4334 . T))
+((-4330 . T) (-4331 . T) (-4333 . T))
((|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-356))))
(-631 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}.")))
@@ -2458,15 +2458,15 @@ NIL
((|HasCategory| |#2| (QUOTE (-356))))
(-632 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}.")))
-((-4331 . T) (-4332 . T) (-4334 . T))
+((-4330 . T) (-4331 . T) (-4333 . T))
NIL
-(-633 -1422 UP)
+(-633 -1421 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))))
-(-634 A -1875)
+(-634 A -3916)
((|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}}")))
-((-4331 . T) (-4332 . T) (-4334 . T))
+((-4330 . T) (-4331 . T) (-4333 . T))
((|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-356))))
(-635 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.")))
@@ -2482,7 +2482,7 @@ NIL
NIL
(-638 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}.")))
-((-4332 . T) (-4331 . T))
+((-4331 . T) (-4330 . T))
((|HasCategory| |#1| (QUOTE (-767))))
(-639 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.")))
@@ -2490,7 +2490,7 @@ NIL
NIL
(-640 |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) (-4332 . T) (-4331 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4331 . T) (-4330 . T))
((|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-170))))
(-641 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}.")))
@@ -2498,13 +2498,13 @@ NIL
NIL
(-642 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}.")))
-((-4338 . T) (-4337 . T) (-2624 . T))
+((-4337 . T) (-4336 . T) (-2623 . T))
NIL
-(-643 -1422)
+(-643 -1421)
((|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
-(-644 -1422 |Row| |Col| M)
+(-644 -1421 |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
@@ -2514,10 +2514,10 @@ NIL
NIL
(-646 |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.")))
-((-4334 . T) (-4337 . T) (-4331 . T) (-4332 . T))
-((|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-227))) (|HasAttribute| |#2| (QUOTE (-4339 "*"))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (-1536 (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))))) (|HasCategory| |#2| (QUOTE (-300))) (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-541))) (-1536 (|HasAttribute| |#2| (QUOTE (-4339 "*"))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-227)))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-170))))
+((-4333 . T) (-4336 . T) (-4330 . T) (-4331 . T))
+((|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-227))) (|HasAttribute| |#2| (QUOTE (-4338 "*"))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (-1536 (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))))) (|HasCategory| |#2| (QUOTE (-300))) (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-541))) (-1536 (|HasAttribute| |#2| (QUOTE (-4338 "*"))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-227)))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-170))))
(-647)
-((|constructor| (NIL "This domain represents `literal sequence' syntax.")) (|elements| (((|List| (|Syntax|)) $) "\\spad{elements(e)} returns the list of expressions in the `literal' list `e'.")))
+((|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
NIL
(-648 |VarSet|)
@@ -2530,14 +2530,14 @@ NIL
NIL
(-650 S)
((|constructor| (NIL "LazyStreamAggregate is the category of streams with lazy evaluation. It is understood that the function 'empty?' will cause lazy evaluation if necessary to determine if there are entries. Functions which call 'empty?',{} \\spadignore{e.g.} 'first' and 'rest',{} will also cause lazy evaluation if necessary.")) (|complete| (($ $) "\\spad{complete(st)} causes all entries of 'st' to be computed. this function should only be called on streams which are known to be finite.")) (|extend| (($ $ (|Integer|)) "\\spad{extend(st,{}n)} causes entries to be computed,{} if necessary,{} so that 'st' will have at least \\spad{'n'} explicit entries or so that all entries of 'st' will be computed if 'st' is finite with length \\spad{<=} \\spad{n}.")) (|numberOfComputedEntries| (((|NonNegativeInteger|) $) "\\spad{numberOfComputedEntries(st)} returns the number of explicitly computed entries of stream \\spad{st} which exist immediately prior to the time this function is called.")) (|rst| (($ $) "\\spad{rst(s)} returns a pointer to the next node of stream \\spad{s}. Caution: this function should only be called after a \\spad{empty?} test has been made since there no error check.")) (|frst| ((|#1| $) "\\spad{frst(s)} returns the first element of stream \\spad{s}. Caution: this function should only be called after a \\spad{empty?} test has been made since there no error check.")) (|lazyEvaluate| (($ $) "\\spad{lazyEvaluate(s)} causes one lazy evaluation of stream \\spad{s}. Caution: the first node must be a lazy evaluation mechanism (satisfies \\spad{lazy?(s) = true}) as there is no error check. Note: a call to this function may or may not produce an explicit first entry")) (|lazy?| (((|Boolean|) $) "\\spad{lazy?(s)} returns \\spad{true} if the first node of the stream \\spad{s} is a lazy evaluation mechanism which could produce an additional entry to \\spad{s}.")) (|explicitlyEmpty?| (((|Boolean|) $) "\\spad{explicitlyEmpty?(s)} returns \\spad{true} if the stream is an (explicitly) empty stream. Note: this is a null test which will not cause lazy evaluation.")) (|explicitEntries?| (((|Boolean|) $) "\\spad{explicitEntries?(s)} returns \\spad{true} if the stream \\spad{s} has explicitly computed entries,{} and \\spad{false} otherwise.")) (|select| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{select(f,{}st)} returns a stream consisting of those elements of stream \\spad{st} satisfying the predicate \\spad{f}. Note: \\spad{select(f,{}st) = [x for x in st | f(x)]}.")) (|remove| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{remove(f,{}st)} returns a stream consisting of those elements of stream \\spad{st} which do not satisfy the predicate \\spad{f}. Note: \\spad{remove(f,{}st) = [x for x in st | not f(x)]}.")))
-((-2624 . T))
+((-2623 . T))
NIL
(-651 R)
((|constructor| (NIL "This domain represents three dimensional matrices over a general object type")) (|matrixDimensions| (((|Vector| (|NonNegativeInteger|)) $) "\\spad{matrixDimensions(x)} returns the dimensions of a matrix")) (|matrixConcat3D| (($ (|Symbol|) $ $) "\\spad{matrixConcat3D(s,{}x,{}y)} concatenates two 3-\\spad{D} matrices along a specified axis")) (|coerce| (((|PrimitiveArray| (|PrimitiveArray| (|PrimitiveArray| |#1|))) $) "\\spad{coerce(x)} moves from the domain to the representation type") (($ (|PrimitiveArray| (|PrimitiveArray| (|PrimitiveArray| |#1|)))) "\\spad{coerce(p)} moves from the representation type (PrimitiveArray PrimitiveArray PrimitiveArray \\spad{R}) to the domain")) (|setelt!| ((|#1| $ (|NonNegativeInteger|) (|NonNegativeInteger|) (|NonNegativeInteger|) |#1|) "\\spad{setelt!(x,{}i,{}j,{}k,{}s)} (or \\spad{x}.\\spad{i}.\\spad{j}.k:=s) sets a specific element of the array to some value of type \\spad{R}")) (|elt| ((|#1| $ (|NonNegativeInteger|) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{elt(x,{}i,{}j,{}k)} extract an element from the matrix \\spad{x}")) (|construct| (($ (|List| (|List| (|List| |#1|)))) "\\spad{construct(lll)} creates a 3-\\spad{D} matrix from a List List List \\spad{R} \\spad{lll}")) (|plus| (($ $ $) "\\spad{plus(x,{}y)} adds two matrices,{} term by term we note that they must be the same size")) (|identityMatrix| (($ (|NonNegativeInteger|)) "\\spad{identityMatrix(n)} create an identity matrix we note that this must be square")) (|zeroMatrix| (($ (|NonNegativeInteger|) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{zeroMatrix(i,{}j,{}k)} create a matrix with all zero terms")))
NIL
-((-1536 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (QUOTE (-1018))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-1536 (-12 (|HasCategory| |#1| (QUOTE (-1018))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (QUOTE (-1018))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-652)
-((|constructor| (NIL "This domain represents the syntax of a macro definition.")) (|body| (((|Syntax|) $) "\\spad{body(m)} returns the right hand side of the definition \\spad{`m'}.")) (|head| (((|List| (|Identifier|)) $) "\\spad{head(m)} returns the head of the macro definition \\spad{`m'}. This is a list of identifiers starting with the name of the macro followed by the name of the parameters,{} if any.")))
+((|constructor| (NIL "This domain represents the syntax of a macro definition.")) (|body| (((|SpadAst|) $) "\\spad{body(m)} returns the right hand side of the definition \\spad{`m'}.")) (|head| (((|HeadAst|) $) "\\spad{head(m)} returns the head of the macro definition \\spad{`m'}. This is a list of identifiers starting with the name of the macro followed by the name of the parameters,{} if any.")))
NIL
NIL
(-653 |VarSet|)
@@ -2579,10 +2579,10 @@ NIL
(-662 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 (-4339 "*"))) (|HasCategory| |#2| (QUOTE (-300))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-541))))
+((|HasAttribute| |#2| (QUOTE (-4338 "*"))) (|HasCategory| |#2| (QUOTE (-300))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-541))))
(-663 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")))
-((-4337 . T) (-4338 . T) (-2624 . T))
+((-4336 . T) (-4337 . T) (-2623 . T))
NIL
(-664 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.")))
@@ -2590,8 +2590,8 @@ NIL
((|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-541))))
(-665 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.")))
-((-4337 . T) (-4338 . T))
-((-1536 (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-541))) (|HasAttribute| |#1| (QUOTE (-4339 "*"))) (|HasCategory| |#1| (QUOTE (-356))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-1536 (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-541))) (|HasAttribute| |#1| (QUOTE (-4338 "*"))) (|HasCategory| |#1| (QUOTE (-356))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-666 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
@@ -2600,7 +2600,7 @@ NIL
((|constructor| (NIL "This domain implements the notion of optional vallue,{} where a computation may fail to produce expected value.")) (|nothing| (($) "represents failure.")) (|autoCoerce| ((|#1| $) "same as above but implicitly called by the compiler.")) (|coerce| ((|#1| $) "x::T tries to extract the value of \\spad{T} from the computation \\spad{x}. Produces a runtime error when the computation fails.") (($ |#1|) "x::T injects the value \\spad{x} into \\%.")) (|case| (((|Boolean|) $ (|[\|\|]| |nothing|)) "\\spad{x case nothing} evaluates \\spad{true} 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}.")))
NIL
NIL
-(-668 S -1422 FLAF FLAS)
+(-668 S -1421 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
@@ -2610,11 +2610,11 @@ NIL
NIL
(-670)
((|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")))
-((-4330 . T) (-4335 |has| (-675) (-356)) (-4329 |has| (-675) (-356)) (-3410 . T) (-4336 |has| (-675) (-6 -4336)) (-4333 |has| (-675) (-6 -4333)) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| (-675) (QUOTE (-145))) (|HasCategory| (-675) (QUOTE (-143))) (|HasCategory| (-675) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-675) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| (-675) (QUOTE (-361))) (|HasCategory| (-675) (QUOTE (-356))) (|HasCategory| (-675) (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| (-675) (QUOTE (-227))) (-1536 (|HasCategory| (-675) (QUOTE (-356))) (|HasCategory| (-675) (QUOTE (-342)))) (|HasCategory| (-675) (QUOTE (-342))) (|HasCategory| (-675) (LIST (QUOTE -279) (QUOTE (-675)) (QUOTE (-675)))) (|HasCategory| (-675) (LIST (QUOTE -302) (QUOTE (-675)))) (|HasCategory| (-675) (LIST (QUOTE -505) (QUOTE (-1143)) (QUOTE (-675)))) (|HasCategory| (-675) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| (-675) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| (-675) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| (-675) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (-1536 (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-356))) (|HasCategory| (-675) (QUOTE (-342)))) (|HasCategory| (-675) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-675) (QUOTE (-993))) (|HasCategory| (-675) (QUOTE (-1165))) (-12 (|HasCategory| (-675) (QUOTE (-973))) (|HasCategory| (-675) (QUOTE (-1165)))) (-1536 (-12 (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-880)))) (|HasCategory| (-675) (QUOTE (-356))) (-12 (|HasCategory| (-675) (QUOTE (-342))) (|HasCategory| (-675) (QUOTE (-880))))) (-1536 (-12 (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-880)))) (-12 (|HasCategory| (-675) (QUOTE (-356))) (|HasCategory| (-675) (QUOTE (-880)))) (-12 (|HasCategory| (-675) (QUOTE (-342))) (|HasCategory| (-675) (QUOTE (-880))))) (|HasCategory| (-675) (QUOTE (-534))) (-12 (|HasCategory| (-675) (QUOTE (-1027))) (|HasCategory| (-675) (QUOTE (-1165)))) (|HasCategory| (-675) (QUOTE (-1027))) (-1536 (|HasCategory| (-675) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-675) (QUOTE (-356)))) (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-880))) (-1536 (-12 (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-880)))) (|HasCategory| (-675) (QUOTE (-356)))) (-1536 (-12 (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-880)))) (|HasCategory| (-675) (QUOTE (-541)))) (-12 (|HasCategory| (-675) (QUOTE (-227))) (|HasCategory| (-675) (QUOTE (-356)))) (-12 (|HasCategory| (-675) (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| (-675) (QUOTE (-356)))) (|HasCategory| (-675) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-675) (QUOTE (-823))) (|HasCategory| (-675) (QUOTE (-541))) (|HasAttribute| (-675) (QUOTE -4336)) (|HasAttribute| (-675) (QUOTE -4333)) (-12 (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-880)))) (|HasCategory| (-675) (QUOTE (-143)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-880)))) (|HasCategory| (-675) (QUOTE (-342)))))
+((-4329 . T) (-4334 |has| (-675) (-356)) (-4328 |has| (-675) (-356)) (-3409 . T) (-4335 |has| (-675) (-6 -4335)) (-4332 |has| (-675) (-6 -4332)) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| (-675) (QUOTE (-145))) (|HasCategory| (-675) (QUOTE (-143))) (|HasCategory| (-675) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-675) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| (-675) (QUOTE (-361))) (|HasCategory| (-675) (QUOTE (-356))) (|HasCategory| (-675) (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| (-675) (QUOTE (-227))) (-1536 (|HasCategory| (-675) (QUOTE (-356))) (|HasCategory| (-675) (QUOTE (-342)))) (|HasCategory| (-675) (QUOTE (-342))) (|HasCategory| (-675) (LIST (QUOTE -279) (QUOTE (-675)) (QUOTE (-675)))) (|HasCategory| (-675) (LIST (QUOTE -302) (QUOTE (-675)))) (|HasCategory| (-675) (LIST (QUOTE -505) (QUOTE (-1142)) (QUOTE (-675)))) (|HasCategory| (-675) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| (-675) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| (-675) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| (-675) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (-1536 (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-356))) (|HasCategory| (-675) (QUOTE (-342)))) (|HasCategory| (-675) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-675) (QUOTE (-993))) (|HasCategory| (-675) (QUOTE (-1164))) (-12 (|HasCategory| (-675) (QUOTE (-973))) (|HasCategory| (-675) (QUOTE (-1164)))) (-1536 (-12 (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-880)))) (|HasCategory| (-675) (QUOTE (-356))) (-12 (|HasCategory| (-675) (QUOTE (-342))) (|HasCategory| (-675) (QUOTE (-880))))) (-1536 (-12 (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-880)))) (-12 (|HasCategory| (-675) (QUOTE (-356))) (|HasCategory| (-675) (QUOTE (-880)))) (-12 (|HasCategory| (-675) (QUOTE (-342))) (|HasCategory| (-675) (QUOTE (-880))))) (|HasCategory| (-675) (QUOTE (-534))) (-12 (|HasCategory| (-675) (QUOTE (-1027))) (|HasCategory| (-675) (QUOTE (-1164)))) (|HasCategory| (-675) (QUOTE (-1027))) (-1536 (|HasCategory| (-675) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-675) (QUOTE (-356)))) (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-880))) (-1536 (-12 (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-880)))) (|HasCategory| (-675) (QUOTE (-356)))) (-1536 (-12 (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-880)))) (|HasCategory| (-675) (QUOTE (-541)))) (-12 (|HasCategory| (-675) (QUOTE (-227))) (|HasCategory| (-675) (QUOTE (-356)))) (-12 (|HasCategory| (-675) (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| (-675) (QUOTE (-356)))) (|HasCategory| (-675) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-675) (QUOTE (-823))) (|HasCategory| (-675) (QUOTE (-541))) (|HasAttribute| (-675) (QUOTE -4335)) (|HasAttribute| (-675) (QUOTE -4332)) (-12 (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-880)))) (|HasCategory| (-675) (QUOTE (-143)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-675) (QUOTE (-300))) (|HasCategory| (-675) (QUOTE (-880)))) (|HasCategory| (-675) (QUOTE (-342)))))
(-671 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}.")))
-((-4338 . T) (-2624 . T))
+((-4337 . T) (-2623 . T))
NIL
(-672 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}.")))
@@ -2624,13 +2624,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
-(-674 OV E -1422 PG)
+(-674 OV E -1421 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
(-675)
((|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|)) "\\spad{base()} returns the base of the model") (((|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}")))
-((-2661 . T) (-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-2659 . T) (-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-676 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.")))
@@ -2638,7 +2638,7 @@ NIL
NIL
(-677)
((|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}")))
-((-4336 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4335 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-678 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")))
@@ -2660,7 +2660,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
-(-683 S -1702 I)
+(-683 S -1699 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
@@ -2670,7 +2670,7 @@ NIL
NIL
(-685 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)}.}")))
-((-4331 . T) (-4332 . T) (-4334 . T))
+((-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-686 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}.")))
@@ -2680,25 +2680,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
-(-688 R |Mod| -3574 -3890 |exactQuo|)
+(-688 R |Mod| -2012 -3050 |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")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-689 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")) (|coerce| (($ |#2|) "\\spad{coerce(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")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4333 |has| |#1| (-356)) (-4335 |has| |#1| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
-((|HasCategory| |#1| (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-1118))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#1| (QUOTE (-342))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasCategory| |#1| (QUOTE (-227))) (|HasAttribute| |#1| (QUOTE -4335)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4332 |has| |#1| (-356)) (-4334 |has| |#1| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
+((|HasCategory| |#1| (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-1117))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#1| (QUOTE (-342))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasCategory| |#1| (QUOTE (-227))) (|HasAttribute| |#1| (QUOTE -4334)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
(-690 IS E |ff|)
((|constructor| (NIL "This package \\undocumented")) (|construct| (($ |#1| |#2|) "\\spad{construct(i,{}e)} \\undocumented")) (|coerce| (((|Record| (|:| |index| |#1|) (|:| |exponent| |#2|)) $) "\\spad{coerce(x)} \\undocumented") (($ (|Record| (|:| |index| |#1|) (|:| |exponent| |#2|))) "\\spad{coerce(x)} \\undocumented")) (|index| ((|#1| $) "\\spad{index(x)} \\undocumented")) (|exponent| ((|#2| $) "\\spad{exponent(x)} \\undocumented")))
NIL
NIL
(-691 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}.")))
-((-4332 |has| |#1| (-170)) (-4331 |has| |#1| (-170)) (-4334 . T))
+((-4331 |has| |#1| (-170)) (-4330 |has| |#1| (-170)) (-4333 . T))
((|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))))
-(-692 R |Mod| -3574 -3890 |exactQuo|)
+(-692 R |Mod| -2012 -3050 |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")))
-((-4334 . T))
+((-4333 . T))
NIL
(-693 S R)
((|constructor| (NIL "The category of modules over a commutative ring. \\blankline")))
@@ -2706,11 +2706,11 @@ NIL
NIL
(-694 R)
((|constructor| (NIL "The category of modules over a commutative ring. \\blankline")))
-((-4332 . T) (-4331 . T))
+((-4331 . T) (-4330 . T))
NIL
-(-695 -1422)
+(-695 -1421)
((|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]]}.")))
-((-4334 . T))
+((-4333 . T))
NIL
(-696 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.")))
@@ -2734,7 +2734,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-342))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-361))))
(-701 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.")))
-((-4330 |has| |#1| (-356)) (-4335 |has| |#1| (-356)) (-4329 |has| |#1| (-356)) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 |has| |#1| (-356)) (-4334 |has| |#1| (-356)) (-4328 |has| |#1| (-356)) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-702 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.")))
@@ -2744,7 +2744,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
-(-704 -1422 UP)
+(-704 -1421 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
@@ -2762,8 +2762,8 @@ NIL
NIL
(-708 |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.")))
-(((-4339 "*") |has| |#2| (-170)) (-4330 |has| |#2| (-541)) (-4335 |has| |#2| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
-((|HasCategory| |#2| (QUOTE (-880))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-170))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-541)))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#2| (QUOTE -4335)) (|HasCategory| |#2| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-143)))))
+(((-4338 "*") |has| |#2| (-170)) (-4329 |has| |#2| (-541)) (-4334 |has| |#2| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
+((|HasCategory| |#2| (QUOTE (-880))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-170))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-541)))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-836 |#1|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#2| (QUOTE -4334)) (|HasCategory| |#2| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-143)))))
(-709 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
@@ -2778,16 +2778,16 @@ NIL
NIL
(-712 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}.")))
-((-4332 |has| |#1| (-170)) (-4331 |has| |#1| (-170)) (-4334 . T))
+((-4331 |has| |#1| (-170)) (-4330 |has| |#1| (-170)) (-4333 . T))
((-12 (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#2| (QUOTE (-361)))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-823))))
(-713 S)
((|constructor| (NIL "A multi-set aggregate is a set which keeps track of the multiplicity of its elements.")))
-((-4327 . T) (-4338 . T) (-2624 . T))
+((-4326 . T) (-4337 . T) (-2623 . T))
NIL
(-714 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}.")))
-((-4337 . T) (-4327 . T) (-4338 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4326 . T) (-4337 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-715)
((|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.")))
NIL
@@ -2798,7 +2798,7 @@ NIL
NIL
(-717 |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}.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4332 . T) (-4331 . T) (-4334 . T))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4331 . T) (-4330 . T) (-4333 . T))
NIL
(-718 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")))
@@ -2814,7 +2814,7 @@ NIL
NIL
(-721 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}.")))
-((-4332 . T) (-4331 . T))
+((-4331 . T) (-4330 . T))
NIL
(-722)
((|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}.")))
@@ -2896,15 +2896,15 @@ 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
-(-742 -1422)
+(-742 -1421)
((|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
-(-743 P -1422)
+(-743 P -1421)
((|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
-(-744 UP -1422)
+(-744 UP -1421)
((|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
@@ -2918,9 +2918,9 @@ NIL
NIL
(-747)
((|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.")))
-(((-4339 "*") . T))
+(((-4338 "*") . T))
NIL
-(-748 R -1422)
+(-748 R -1421)
((|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
@@ -2940,7 +2940,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
-(-753 -1422 |ExtF| |SUEx| |ExtP| |n|)
+(-753 -1421 |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
@@ -2954,23 +2954,23 @@ NIL
NIL
(-756 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.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
-((|HasCategory| |#1| (QUOTE (-880))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-1143))))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-1143)))) (|HasCategory| |#1| (QUOTE (-356))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-1143))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-1143)))) (-4008 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-1143)))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-1143)))) (-4008 (|HasCategory| |#1| (QUOTE (-534)))) (-4008 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-1143)))) (-4008 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-549))))) (-4008 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-1143)))) (-4008 (|HasCategory| |#1| (LIST (QUOTE -963) (QUOTE (-549))))))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#1| (QUOTE -4335)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
+((|HasCategory| |#1| (QUOTE (-880))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-1142))))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-1142)))) (|HasCategory| |#1| (QUOTE (-356))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-1142))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-1142)))) (-4007 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-1142)))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-1142)))) (-4007 (|HasCategory| |#1| (QUOTE (-534)))) (-4007 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-1142)))) (-4007 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-549))))) (-4007 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-1142)))) (-4007 (|HasCategory| |#1| (LIST (QUOTE -963) (QUOTE (-549))))))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#1| (QUOTE -4334)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
(-757 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
(-758 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)}")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4333 |has| |#1| (-356)) (-4335 |has| |#1| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
-((|HasCategory| |#1| (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-1118))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasCategory| |#1| (QUOTE (-227))) (|HasAttribute| |#1| (QUOTE -4335)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4332 |has| |#1| (-356)) (-4334 |has| |#1| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
+((|HasCategory| |#1| (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-1117))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasCategory| |#1| (QUOTE (-227))) (|HasAttribute| |#1| (QUOTE -4334)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
(-759 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 -400) (QUOTE (-549))))))
(-760 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.}")))
-((-4338 . T) (-4337 . T) (-2624 . T))
+((-4337 . T) (-4336 . T) (-2623 . T))
NIL
(-761 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}.")))
@@ -3022,7 +3022,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-534))) (|HasCategory| |#2| (QUOTE (-1027))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-361))))
(-773 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}.")))
-((-4331 . T) (-4332 . T) (-4334 . T))
+((-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-774 -1536 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}.")))
@@ -3030,17 +3030,17 @@ NIL
NIL
(-775 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}.")))
-((-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#1| (LIST (QUOTE -505) (QUOTE (-1143)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -279) (|devaluate| |#1|) (|devaluate| |#1|))) (-1536 (|HasCategory| (-970 |#1|) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (-1536 (|HasCategory| (-970 |#1|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-1027))) (|HasCategory| |#1| (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| (-970 |#1|) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-970 |#1|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))))
+((-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#1| (LIST (QUOTE -505) (QUOTE (-1142)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -279) (|devaluate| |#1|) (|devaluate| |#1|))) (-1536 (|HasCategory| (-970 |#1|) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (-1536 (|HasCategory| (-970 |#1|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-1027))) (|HasCategory| |#1| (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| (-970 |#1|) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-970 |#1|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))))
(-776)
((|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
-(-777 R -1422 L)
+(-777 R -1421 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
-(-778 R -1422)
+(-778 R -1421)
((|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
@@ -3048,7 +3048,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
-(-780 R -1422)
+(-780 R -1421)
((|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
@@ -3056,11 +3056,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
-(-782 -1422 UP UPUP R)
+(-782 -1421 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
-(-783 -1422 UP L LQ)
+(-783 -1421 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
@@ -3068,41 +3068,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| (((|OutputForm|) $) "\\spad{coerce(x)} \\undocumented{}") (($ (|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
-(-785 -1422 UP L LQ)
+(-785 -1421 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
-(-786 -1422 UP)
+(-786 -1421 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
-(-787 -1422 L UP A LO)
+(-787 -1421 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
-(-788 -1422 UP)
+(-788 -1421 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))))
-(-789 -1422 LO)
+(-789 -1421 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
-(-790 -1422 LODO)
+(-790 -1421 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
-(-791 -2728 S |f|)
+(-791 -2724 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}.")))
-((-4331 |has| |#2| (-1018)) (-4332 |has| |#2| (-1018)) (-4334 |has| |#2| (-6 -4334)) ((-4339 "*") |has| |#2| (-170)) (-4337 . T))
-((-1536 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1067)))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (QUOTE (-356))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-356)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-769))) (-1536 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (QUOTE (-821)))) (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (QUOTE (-170))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-1018)))) (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-1067)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-170)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-227)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-361)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-703)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-769)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-821)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1067))))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| (-549) (QUOTE (-823))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-1536 (|HasCategory| |#2| (QUOTE (-1018))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1067)))) (|HasAttribute| |#2| (QUOTE -4334)) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-25))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4330 |has| |#2| (-1018)) (-4331 |has| |#2| (-1018)) (-4333 |has| |#2| (-6 -4333)) ((-4338 "*") |has| |#2| (-170)) (-4336 . T))
+((-1536 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1066)))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (QUOTE (-356))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-356)))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-769))) (-1536 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (QUOTE (-821)))) (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (QUOTE (-170))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-1018)))) (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-1066)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1018)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-170)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-227)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-361)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-703)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-769)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-821)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1066))))) (-1536 (-12 (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-361))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-769))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-821))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| (-549) (QUOTE (-823))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (QUOTE (-1018)))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-1536 (|HasCategory| |#2| (QUOTE (-1018))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-1066)))) (|HasAttribute| |#2| (QUOTE -4333)) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-25))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))))
(-792 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")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
-((|HasCategory| |#1| (QUOTE (-880))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| (-794 (-1143)) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-794 (-1143)) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-794 (-1143)) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-794 (-1143)) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-794 (-1143)) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#1| (QUOTE -4335)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
+((|HasCategory| |#1| (QUOTE (-880))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| (-794 (-1142)) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-794 (-1142)) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-794 (-1142)) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-794 (-1142)) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-794 (-1142)) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#1| (QUOTE -4334)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
(-793 |Kernels| R |var|)
((|constructor| (NIL "This constructor produces an ordinary differential ring from a partial differential ring by specifying a variable.")) (|coerce| ((|#2| $) "\\spad{coerce(p)} views \\spad{p} as a valie in the partial differential ring.") (($ |#2|) "\\spad{coerce(r)} views \\spad{r} as a value in the ordinary differential ring.")))
-(((-4339 "*") |has| |#2| (-356)) (-4330 |has| |#2| (-356)) (-4335 |has| |#2| (-356)) (-4329 |has| |#2| (-356)) (-4334 . T) (-4332 . T) (-4331 . T))
+(((-4338 "*") |has| |#2| (-356)) (-4329 |has| |#2| (-356)) (-4334 |has| |#2| (-356)) (-4328 |has| |#2| (-356)) (-4333 . T) (-4331 . T) (-4330 . T))
((|HasCategory| |#2| (QUOTE (-356))))
(-794 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})).")))
@@ -3114,7 +3114,7 @@ NIL
NIL
(-796)
((|constructor| (NIL "The category of ordered commutative integral domains,{} where ordering and the arithmetic operations are compatible \\blankline")))
-((-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-797)
((|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}")))
@@ -3142,7 +3142,7 @@ NIL
NIL
(-803 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}.")))
-((-4331 . T) (-4332 . T) (-4334 . T))
+((-4330 . T) (-4331 . T) (-4333 . T))
((|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-227))))
(-804)
((|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.")))
@@ -3154,7 +3154,7 @@ NIL
NIL
(-806 S)
((|constructor| (NIL "to become an in order iterator")) (|min| ((|#1| $) "\\spad{min(u)} returns the smallest entry in the multiset aggregate \\spad{u}.")))
-((-4337 . T) (-4327 . T) (-4338 . T) (-2624 . T))
+((-4336 . T) (-4326 . T) (-4337 . T) (-2623 . T))
NIL
(-807)
((|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.")))
@@ -3166,11 +3166,11 @@ NIL
NIL
(-809 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.")))
-((-4334 |has| |#1| (-821)))
+((-4333 |has| |#1| (-821)))
((|HasCategory| |#1| (QUOTE (-821))) (-1536 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-821)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-534))) (-1536 (|HasCategory| |#1| (QUOTE (-821))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-21))))
(-810 R)
((|constructor| (NIL "Algebra of ADDITIVE operators over a ring.")))
-((-4332 |has| |#1| (-170)) (-4331 |has| |#1| (-170)) (-4334 . T))
+((-4331 |has| |#1| (-170)) (-4330 |has| |#1| (-170)) (-4333 . T))
((|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))))
(-811)
((|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).")))
@@ -3194,13 +3194,13 @@ NIL
NIL
(-816 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.")))
-((-4334 |has| |#1| (-821)))
+((-4333 |has| |#1| (-821)))
((|HasCategory| |#1| (QUOTE (-821))) (-1536 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-821)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-534))) (-1536 (|HasCategory| |#1| (QUOTE (-821))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-21))))
(-817)
((|constructor| (NIL "Ordered finite sets.")))
NIL
NIL
-(-818 -2728 S)
+(-818 -2724 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
@@ -3214,7 +3214,7 @@ NIL
NIL
(-821)
((|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.")))
-((-4334 . T))
+((-4333 . T))
NIL
(-822 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.")))
@@ -3230,19 +3230,19 @@ NIL
((|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-170))))
(-825 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)}.}")))
-((-4331 . T) (-4332 . T) (-4334 . T))
+((-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-826 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.")))
NIL
((|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541))))
-(-827 R |sigma| -2662)
+(-827 R |sigma| -2658)
((|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.")))
-((-4331 . T) (-4332 . T) (-4334 . T))
+((-4330 . T) (-4331 . T) (-4333 . T))
((|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-356))))
-(-828 |x| R |sigma| -2662)
+(-828 |x| R |sigma| -2658)
((|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}.")) (|coerce| (($ (|Variable| |#1|)) "\\spad{coerce(x)} returns \\spad{x} as a skew-polynomial.")))
-((-4331 . T) (-4332 . T) (-4334 . T))
+((-4330 . T) (-4331 . T) (-4333 . T))
((|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-356))))
(-829 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..)}.")))
@@ -3278,7 +3278,7 @@ NIL
NIL
(-837 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)")) (|coerce| (($ (|Polynomial| |#1|)) "\\spad{coerce(p)} coerces a Polynomial(\\spad{R}) into Weighted form,{} applying weights and ignoring terms") (((|Polynomial| |#1|) $) "\\spad{coerce(p)} converts back into a Polynomial(\\spad{R}),{} ignoring weights")))
-((-4332 |has| |#1| (-170)) (-4331 |has| |#1| (-170)) (-4334 . T))
+((-4331 |has| |#1| (-170)) (-4330 |has| |#1| (-170)) (-4333 . T))
((|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))))
(-838 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).")))
@@ -3290,24 +3290,24 @@ NIL
NIL
(-840 |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}.")))
-((-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-841 |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).")))
-((-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-842 |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).")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| (-841 |#1|) (QUOTE (-880))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -1009) (QUOTE (-1143)))) (|HasCategory| (-841 |#1|) (QUOTE (-143))) (|HasCategory| (-841 |#1|) (QUOTE (-145))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-841 |#1|) (QUOTE (-993))) (|HasCategory| (-841 |#1|) (QUOTE (-796))) (-1536 (|HasCategory| (-841 |#1|) (QUOTE (-796))) (|HasCategory| (-841 |#1|) (QUOTE (-823)))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-841 |#1|) (QUOTE (-1118))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| (-841 |#1|) (QUOTE (-227))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -505) (QUOTE (-1143)) (LIST (QUOTE -841) (|devaluate| |#1|)))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -302) (LIST (QUOTE -841) (|devaluate| |#1|)))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -279) (LIST (QUOTE -841) (|devaluate| |#1|)) (LIST (QUOTE -841) (|devaluate| |#1|)))) (|HasCategory| (-841 |#1|) (QUOTE (-300))) (|HasCategory| (-841 |#1|) (QUOTE (-534))) (|HasCategory| (-841 |#1|) (QUOTE (-823))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-841 |#1|) (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-841 |#1|) (QUOTE (-880)))) (|HasCategory| (-841 |#1|) (QUOTE (-143)))))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| (-841 |#1|) (QUOTE (-880))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -1009) (QUOTE (-1142)))) (|HasCategory| (-841 |#1|) (QUOTE (-143))) (|HasCategory| (-841 |#1|) (QUOTE (-145))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-841 |#1|) (QUOTE (-993))) (|HasCategory| (-841 |#1|) (QUOTE (-796))) (-1536 (|HasCategory| (-841 |#1|) (QUOTE (-796))) (|HasCategory| (-841 |#1|) (QUOTE (-823)))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-841 |#1|) (QUOTE (-1117))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| (-841 |#1|) (QUOTE (-227))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -505) (QUOTE (-1142)) (LIST (QUOTE -841) (|devaluate| |#1|)))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -302) (LIST (QUOTE -841) (|devaluate| |#1|)))) (|HasCategory| (-841 |#1|) (LIST (QUOTE -279) (LIST (QUOTE -841) (|devaluate| |#1|)) (LIST (QUOTE -841) (|devaluate| |#1|)))) (|HasCategory| (-841 |#1|) (QUOTE (-300))) (|HasCategory| (-841 |#1|) (QUOTE (-534))) (|HasCategory| (-841 |#1|) (QUOTE (-823))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-841 |#1|) (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-841 |#1|) (QUOTE (-880)))) (|HasCategory| (-841 |#1|) (QUOTE (-143)))))
(-843 |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)}.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| |#2| (QUOTE (-880))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-993))) (|HasCategory| |#2| (QUOTE (-796))) (-1536 (|HasCategory| |#2| (QUOTE (-796))) (|HasCategory| |#2| (QUOTE (-823)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-1118))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (LIST (QUOTE -505) (QUOTE (-1143)) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -279) (|devaluate| |#2|) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-300))) (|HasCategory| |#2| (QUOTE (-534))) (|HasCategory| |#2| (QUOTE (-823))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-143)))))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| |#2| (QUOTE (-880))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-993))) (|HasCategory| |#2| (QUOTE (-796))) (-1536 (|HasCategory| |#2| (QUOTE (-796))) (|HasCategory| |#2| (QUOTE (-823)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-1117))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (LIST (QUOTE -505) (QUOTE (-1142)) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -279) (|devaluate| |#2|) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-300))) (|HasCategory| |#2| (QUOTE (-534))) (|HasCategory| |#2| (QUOTE (-823))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-143)))))
(-844 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'}.")))
NIL
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#2| (QUOTE (-1067)))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#2| (QUOTE (-1067)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#2| (QUOTE (-1066)))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#2| (QUOTE (-1066)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))))
(-845)
((|constructor| (NIL "This domain describes four groups of color shades (palettes).")) (|coerce| (($ (|Color|)) "\\spad{coerce(c)} sets the average shade for the palette to that of the indicated color \\spad{c}.")) (|shade| (((|Integer|) $) "\\spad{shade(p)} returns the shade index of the indicated palette \\spad{p}.")) (|hue| (((|Color|) $) "\\spad{hue(p)} returns the hue field of the indicated palette \\spad{p}.")) (|light| (($ (|Color|)) "\\spad{light(c)} sets the shade of a hue,{} \\spad{c},{} to it\\spad{'s} highest value.")) (|pastel| (($ (|Color|)) "\\spad{pastel(c)} sets the shade of a hue,{} \\spad{c},{} above bright,{} but below light.")) (|bright| (($ (|Color|)) "\\spad{bright(c)} sets the shade of a hue,{} \\spad{c},{} above dim,{} but below pastel.")) (|dim| (($ (|Color|)) "\\spad{dim(c)} sets the shade of a hue,{} \\spad{c},{} above dark,{} but below bright.")) (|dark| (($ (|Color|)) "\\spad{dark(c)} sets the shade of the indicated hue of \\spad{c} to it\\spad{'s} lowest value.")))
NIL
@@ -3363,7 +3363,7 @@ NIL
(-858 |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 (-4008 (|HasCategory| |#2| (QUOTE (-1018)))) (-4008 (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-1143)))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (-4008 (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-1143)))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-1143)))))
+((-12 (-4007 (|HasCategory| |#2| (QUOTE (-1018)))) (-4007 (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-1142)))))) (-12 (|HasCategory| |#2| (QUOTE (-1018))) (-4007 (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-1142)))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-1142)))))
(-859 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
@@ -3372,7 +3372,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
-(-861 R -1702)
+(-861 R -1699)
((|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
@@ -3396,7 +3396,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
-(-867 UP -1422)
+(-867 UP -1421)
((|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
@@ -3414,19 +3414,19 @@ NIL
NIL
(-871 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}.")))
-((-4334 . T))
+((-4333 . T))
NIL
(-872 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}")) (|coerce| (((|Tree| |#1|) $) "\\spad{coerce(x)} \\undocumented")) (|ptree| (($ $ $) "\\spad{ptree(x,{}y)} \\undocumented") (($ |#1|) "\\spad{ptree(s)} is a leaf? pendant tree")))
NIL
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-873 |n| R)
((|constructor| (NIL "Permanent implements the functions {\\em permanent},{} the permanent for square matrices.")) (|permanent| ((|#2| (|SquareMatrix| |#1| |#2|)) "\\spad{permanent(x)} computes the permanent of a square matrix \\spad{x}. The {\\em permanent} is equivalent to the \\spadfun{determinant} except that coefficients have no change of sign. This function is much more difficult to compute than the {\\em determinant}. The formula used is by \\spad{H}.\\spad{J}. Ryser,{} improved by [Nijenhuis and Wilf,{} \\spad{Ch}. 19]. Note: permanent(\\spad{x}) choose one of three algorithms,{} depending on the underlying ring \\spad{R} and on \\spad{n},{} the number of rows (and columns) of \\spad{x:}\\begin{items} \\item 1. if 2 has an inverse in \\spad{R} we can use the algorithm of \\indented{3}{[Nijenhuis and Wilf,{} \\spad{ch}.19,{}\\spad{p}.158]; if 2 has no inverse,{}} \\indented{3}{some modifications are necessary:} \\item 2. if {\\em n > 6} and \\spad{R} is an integral domain with characteristic \\indented{3}{different from 2 (the algorithm works if and only 2 is not a} \\indented{3}{zero-divisor of \\spad{R} and {\\em characteristic()\\$R ~= 2},{}} \\indented{3}{but how to check that for any given \\spad{R} ?),{}} \\indented{3}{the local function {\\em permanent2} is called;} \\item 3. else,{} the local function {\\em permanent3} is called \\indented{3}{(works for all commutative rings \\spad{R}).} \\end{items}")))
NIL
NIL
(-874 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.")))
-((-4334 . T))
+((-4333 . T))
NIL
(-875 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}.")))
@@ -3434,7 +3434,7 @@ NIL
NIL
(-876 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.")))
-((-4334 . T))
+((-4333 . T))
((-1536 (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#1| (QUOTE (-823)))) (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#1| (QUOTE (-823))))
(-877 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.")))
@@ -3450,13 +3450,13 @@ NIL
((|HasCategory| |#1| (QUOTE (-143))))
(-880)
((|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}.")))
-((-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-881 |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.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
((|HasCategory| $ (QUOTE (-145))) (|HasCategory| $ (QUOTE (-143))) (|HasCategory| $ (QUOTE (-361))))
-(-882 R0 -1422 UP UPUP R)
+(-882 R0 -1421 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
@@ -3470,7 +3470,7 @@ NIL
NIL
(-885 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.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-886 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.")))
@@ -3484,7 +3484,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
-(-889 -1422)
+(-889 -1421)
((|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
@@ -3494,17 +3494,17 @@ NIL
NIL
(-891)
((|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)}")))
-((-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-892)
((|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}.")))
-(((-4339 "*") . T))
+(((-4338 "*") . T))
NIL
-(-893 -1422 P)
+(-893 -1421 P)
((|constructor| (NIL "This package exports interpolation algorithms")) (|LagrangeInterpolation| ((|#2| (|List| |#1|) (|List| |#1|)) "\\spad{LagrangeInterpolation(l1,{}l2)} \\undocumented")))
NIL
NIL
-(-894 |xx| -1422)
+(-894 |xx| -1421)
((|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
@@ -3528,7 +3528,7 @@ NIL
((|constructor| (NIL "This package exports plotting tools")) (|calcRanges| (((|List| (|Segment| (|DoubleFloat|))) (|List| (|List| (|Point| (|DoubleFloat|))))) "\\spad{calcRanges(l)} \\undocumented")))
NIL
NIL
-(-900 R -1422)
+(-900 R -1421)
((|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
@@ -3540,7 +3540,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
-(-903 S R -1422)
+(-903 S R -1421)
((|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
@@ -3560,11 +3560,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 -857) (|devaluate| |#1|))))
-(-908 R -1422 -1702)
+(-908 R -1421 -1699)
((|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
-(-909 -1702)
+(-909 -1699)
((|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
@@ -3586,8 +3586,8 @@ NIL
NIL
(-914 R)
((|constructor| (NIL "This domain implements points in coordinate space")))
-((-4338 . T) (-4337 . T))
-((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-703))) (|HasCategory| |#1| (QUOTE (-1018))) (-12 (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (QUOTE (-1018)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T) (-4336 . T))
+((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-703))) (|HasCategory| |#1| (QUOTE (-1018))) (-12 (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (QUOTE (-1018)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-915 |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}.")))
NIL
@@ -3607,12 +3607,12 @@ NIL
(-919 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 (-880))) (|HasAttribute| |#2| (QUOTE -4335)) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#4| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#4| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#4| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#4| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#4| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-823))))
+((|HasCategory| |#2| (QUOTE (-880))) (|HasAttribute| |#2| (QUOTE -4334)) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#4| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#4| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#4| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#4| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#4| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-823))))
(-920 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}.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
NIL
-(-921 E V R P -1422)
+(-921 E V R P -1421)
((|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
@@ -3622,9 +3622,9 @@ NIL
NIL
(-923 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}.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
-((|HasCategory| |#1| (QUOTE (-880))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| (-1143) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-1143) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-1143) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-1143) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-1143) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#1| (QUOTE -4335)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
-(-924 E V R P -1422)
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
+((|HasCategory| |#1| (QUOTE (-880))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| (-1142) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-1142) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-1142) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-1142) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-1142) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#1| (QUOTE -4334)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
+(-924 E V R P -1421)
((|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)}.")) (|coerce| (($ |#4|) "\\spad{coerce(p)} \\undocumented")) (|denom| ((|#4| $) "\\spad{denom(x)} \\undocumented")) (|numer| ((|#4| $) "\\spad{numer(x)} \\undocumented")))
NIL
((|HasCategory| |#3| (QUOTE (-444))))
@@ -3646,13 +3646,13 @@ NIL
NIL
(-929 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")))
-((-4338 . T) (-4337 . T))
-((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T) (-4336 . T))
+((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-930)
((|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
-(-931 -1422)
+(-931 -1421)
((|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
@@ -3666,11 +3666,11 @@ NIL
NIL
(-934 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}")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-6 -4335)) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-130)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#1| (QUOTE -4335)))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-6 -4334)) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-130)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#1| (QUOTE -4334)))
(-935 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")))
-((-4334 -12 (|has| |#2| (-465)) (|has| |#1| (-465))))
+((-4333 -12 (|has| |#2| (-465)) (|has| |#1| (-465))))
((-1536 (-12 (|HasCategory| |#1| (QUOTE (-769))) (|HasCategory| |#2| (QUOTE (-769)))) (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-823))))) (-12 (|HasCategory| |#1| (QUOTE (-769))) (|HasCategory| |#2| (QUOTE (-769)))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#1| (QUOTE (-769))) (|HasCategory| |#2| (QUOTE (-769))))) (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-1536 (-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 (-769))) (|HasCategory| |#2| (QUOTE (-769))))) (-12 (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#2| (QUOTE (-465)))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-465))) (|HasCategory| |#2| (QUOTE (-465)))) (-12 (|HasCategory| |#1| (QUOTE (-703))) (|HasCategory| |#2| (QUOTE (-703))))) (-12 (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#2| (QUOTE (-361)))) (-1536 (-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 (-465))) (|HasCategory| |#2| (QUOTE (-465)))) (-12 (|HasCategory| |#1| (QUOTE (-703))) (|HasCategory| |#2| (QUOTE (-703)))) (-12 (|HasCategory| |#1| (QUOTE (-769))) (|HasCategory| |#2| (QUOTE (-769))))) (-12 (|HasCategory| |#1| (QUOTE (-703))) (|HasCategory| |#2| (QUOTE (-703)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-823)))))
(-936)
((|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}")))
@@ -3686,14 +3686,14 @@ NIL
NIL
(-939 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}.")))
-((-4337 . T) (-4338 . T) (-2624 . T))
+((-4336 . T) (-4337 . T) (-2623 . T))
NIL
(-940 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}}")))
NIL
((|HasCategory| |#1| (QUOTE (-444))))
(-941)
-((|constructor| (NIL "This domain represents `pretend' expressions.")) (|target| (((|TypeAst|) $) "\\spad{target(e)} returns the target type of the conversion..")) (|expression| (((|Syntax|) $) "\\spad{expression(e)} returns the expression being converted.")))
+((|constructor| (NIL "This domain represents `pretend' expressions.")) (|target| (((|TypeAst|) $) "\\spad{target(e)} returns the target type of the conversion..")) (|expression| (((|SpadAst|) $) "\\spad{expression(e)} returns the expression being converted.")))
NIL
NIL
(-942)
@@ -3706,7 +3706,7 @@ NIL
NIL
(-944 |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}.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4331 . T) (-4332 . T) (-4334 . T))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-945)
((|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}.")))
@@ -3718,7 +3718,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-541))))
(-947 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.")))
-((-4337 . T) (-2624 . T))
+((-4336 . T) (-2623 . T))
NIL
(-948 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.")))
@@ -3734,7 +3734,7 @@ NIL
NIL
(-951 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")) (|convert| (($ (|List| |#1|)) "\\spad{convert(l)} takes a list of elements,{} \\spad{l},{} from the domain Ring and returns the form of point category.")) (|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}.")))
-((-4338 . T) (-4337 . T) (-2624 . T))
+((-4337 . T) (-4336 . T) (-2623 . T))
NIL
(-952 R1 R2)
((|constructor| (NIL "This package \\undocumented")) (|map| (((|Point| |#2|) (|Mapping| |#2| |#1|) (|Point| |#1|)) "\\spad{map(f,{}p)} \\undocumented")))
@@ -3752,7 +3752,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
-(-956 K R UP -1422)
+(-956 K R UP -1421)
((|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
@@ -3779,22 +3779,22 @@ NIL
(-962 A S)
((|constructor| (NIL "QuotientField(\\spad{S}) is the category of fractions of an Integral Domain \\spad{S}.")) (|floor| ((|#2| $) "\\spad{floor(x)} returns the largest integral element below \\spad{x}.")) (|ceiling| ((|#2| $) "\\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| ((|#2| $) "\\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| ((|#2| $) "\\spad{denom(x)} returns the denominator of the fraction \\spad{x}.")) (|numer| ((|#2| $) "\\spad{numer(x)} returns the numerator of the fraction \\spad{x}.")) (/ (($ |#2| |#2|) "\\spad{d1 / d2} returns the fraction \\spad{d1} divided by \\spad{d2}.")))
NIL
-((|HasCategory| |#2| (QUOTE (-880))) (|HasCategory| |#2| (QUOTE (-534))) (|HasCategory| |#2| (QUOTE (-300))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-993))) (|HasCategory| |#2| (QUOTE (-796))) (|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-1118))))
+((|HasCategory| |#2| (QUOTE (-880))) (|HasCategory| |#2| (QUOTE (-534))) (|HasCategory| |#2| (QUOTE (-300))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-993))) (|HasCategory| |#2| (QUOTE (-796))) (|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-1117))))
(-963 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}.")))
-((-2624 . T) (-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-2623 . T) (-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-964 |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}.")))
NIL
NIL
(-965)
-((|constructor| (NIL "This domain represents the syntax of a quasiquote \\indented{2}{expression.}")) (|expression| (((|Syntax|) $) "\\spad{expression(e)} returns the syntax for the expression being quoted.")))
+((|constructor| (NIL "This domain represents the syntax of a quasiquote \\indented{2}{expression.}")) (|expression| (((|SpadAst|) $) "\\spad{expression(e)} returns the syntax for the expression being quoted.")))
NIL
NIL
(-966 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.")))
-((-4337 . T) (-4338 . T) (-2624 . T))
+((-4336 . T) (-4337 . T) (-2623 . T))
NIL
(-967 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}.")))
@@ -3802,7 +3802,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-534))) (|HasCategory| |#2| (QUOTE (-1027))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-283))))
(-968 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}.")))
-((-4330 |has| |#1| (-283)) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 |has| |#1| (-283)) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-969 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}.")))
@@ -3810,12 +3810,12 @@ NIL
NIL
(-970 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.}")))
-((-4330 |has| |#1| (-283)) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -505) (QUOTE (-1143)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -279) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-1027))) (|HasCategory| |#1| (QUOTE (-534))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356)))))
+((-4329 |has| |#1| (-283)) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-283))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -505) (QUOTE (-1142)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -279) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-1027))) (|HasCategory| |#1| (QUOTE (-534))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356)))))
(-971 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}.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
(-972 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}.")))
NIL
@@ -3824,14 +3824,14 @@ 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
-(-974 -1422 UP UPUP |radicnd| |n|)
+(-974 -1421 UP UPUP |radicnd| |n|)
((|constructor| (NIL "Function field defined by y**n = \\spad{f}(\\spad{x}).")))
-((-4330 |has| (-400 |#2|) (-356)) (-4335 |has| (-400 |#2|) (-356)) (-4329 |has| (-400 |#2|) (-356)) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| (-400 |#2|) (QUOTE (-143))) (|HasCategory| (-400 |#2|) (QUOTE (-145))) (|HasCategory| (-400 |#2|) (QUOTE (-342))) (-1536 (|HasCategory| (-400 |#2|) (QUOTE (-356))) (|HasCategory| (-400 |#2|) (QUOTE (-342)))) (|HasCategory| (-400 |#2|) (QUOTE (-356))) (|HasCategory| (-400 |#2|) (QUOTE (-361))) (-1536 (-12 (|HasCategory| (-400 |#2|) (QUOTE (-227))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))) (|HasCategory| (-400 |#2|) (QUOTE (-342)))) (-1536 (-12 (|HasCategory| (-400 |#2|) (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))) (-12 (|HasCategory| (-400 |#2|) (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| (-400 |#2|) (QUOTE (-342))))) (|HasCategory| (-400 |#2|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| (-400 |#2|) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-400 |#2|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-361))) (-1536 (|HasCategory| (-400 |#2|) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))) (-12 (|HasCategory| (-400 |#2|) (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))) (-12 (|HasCategory| (-400 |#2|) (QUOTE (-227))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))))
+((-4329 |has| (-400 |#2|) (-356)) (-4334 |has| (-400 |#2|) (-356)) (-4328 |has| (-400 |#2|) (-356)) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| (-400 |#2|) (QUOTE (-143))) (|HasCategory| (-400 |#2|) (QUOTE (-145))) (|HasCategory| (-400 |#2|) (QUOTE (-342))) (-1536 (|HasCategory| (-400 |#2|) (QUOTE (-356))) (|HasCategory| (-400 |#2|) (QUOTE (-342)))) (|HasCategory| (-400 |#2|) (QUOTE (-356))) (|HasCategory| (-400 |#2|) (QUOTE (-361))) (-1536 (-12 (|HasCategory| (-400 |#2|) (QUOTE (-227))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))) (|HasCategory| (-400 |#2|) (QUOTE (-342)))) (-1536 (-12 (|HasCategory| (-400 |#2|) (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))) (-12 (|HasCategory| (-400 |#2|) (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| (-400 |#2|) (QUOTE (-342))))) (|HasCategory| (-400 |#2|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| (-400 |#2|) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-400 |#2|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-361))) (-1536 (|HasCategory| (-400 |#2|) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))) (-12 (|HasCategory| (-400 |#2|) (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))) (-12 (|HasCategory| (-400 |#2|) (QUOTE (-227))) (|HasCategory| (-400 |#2|) (QUOTE (-356)))))
(-975 |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.")) (|coerce| (((|Fraction| (|Integer|)) $) "\\spad{coerce(rx)} converts a radix expansion to a rational number.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| (-549) (QUOTE (-880))) (|HasCategory| (-549) (LIST (QUOTE -1009) (QUOTE (-1143)))) (|HasCategory| (-549) (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-145))) (|HasCategory| (-549) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-549) (QUOTE (-993))) (|HasCategory| (-549) (QUOTE (-796))) (-1536 (|HasCategory| (-549) (QUOTE (-796))) (|HasCategory| (-549) (QUOTE (-823)))) (|HasCategory| (-549) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-549) (QUOTE (-1118))) (|HasCategory| (-549) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| (-549) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| (-549) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| (-549) (QUOTE (-227))) (|HasCategory| (-549) (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| (-549) (LIST (QUOTE -505) (QUOTE (-1143)) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -302) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -279) (QUOTE (-549)) (QUOTE (-549)))) (|HasCategory| (-549) (QUOTE (-300))) (|HasCategory| (-549) (QUOTE (-534))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-549) (LIST (QUOTE -617) (QUOTE (-549)))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-880)))) (|HasCategory| (-549) (QUOTE (-143)))))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| (-549) (QUOTE (-880))) (|HasCategory| (-549) (LIST (QUOTE -1009) (QUOTE (-1142)))) (|HasCategory| (-549) (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-145))) (|HasCategory| (-549) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-549) (QUOTE (-993))) (|HasCategory| (-549) (QUOTE (-796))) (-1536 (|HasCategory| (-549) (QUOTE (-796))) (|HasCategory| (-549) (QUOTE (-823)))) (|HasCategory| (-549) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-549) (QUOTE (-1117))) (|HasCategory| (-549) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| (-549) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| (-549) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| (-549) (QUOTE (-227))) (|HasCategory| (-549) (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| (-549) (LIST (QUOTE -505) (QUOTE (-1142)) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -302) (QUOTE (-549)))) (|HasCategory| (-549) (LIST (QUOTE -279) (QUOTE (-549)) (QUOTE (-549)))) (|HasCategory| (-549) (QUOTE (-300))) (|HasCategory| (-549) (QUOTE (-534))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-549) (LIST (QUOTE -617) (QUOTE (-549)))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-549) (QUOTE (-880)))) (|HasCategory| (-549) (QUOTE (-143)))))
(-976)
((|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}.")))
NIL
@@ -3851,10 +3851,10 @@ NIL
(-980 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 -4338)) (|HasCategory| |#2| (QUOTE (-1067))))
+((|HasAttribute| |#1| (QUOTE -4337)) (|HasCategory| |#2| (QUOTE (-1066))))
(-981 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}.")))
-((-2624 . T))
+((-2623 . T))
NIL
(-982 S)
((|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}}")))
@@ -3862,21 +3862,21 @@ NIL
NIL
(-983)
((|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}}")))
-((-4330 . T) (-4335 . T) (-4329 . T) (-4332 . T) (-4331 . T) ((-4339 "*") . T) (-4334 . T))
+((-4329 . T) (-4334 . T) (-4328 . T) (-4331 . T) (-4330 . T) ((-4338 "*") . T) (-4333 . T))
NIL
-(-984 R -1422)
+(-984 R -1421)
((|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
-(-985 R -1422)
+(-985 R -1421)
((|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
-(-986 -1422 UP)
+(-986 -1421 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
-(-987 -1422 UP)
+(-987 -1421 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
@@ -3889,7 +3889,7 @@ NIL
NIL
NIL
(-990)
-((|constructor| (NIL "This domain represents list reduction syntax.")) (|body| (((|Syntax|) $) "\\spad{body(e)} return the list of expressions being redcued.")) (|operator| (((|Syntax|) $) "\\spad{operator(e)} returns the magma operation being applied.")))
+((|constructor| (NIL "This domain represents list reduction syntax.")) (|body| (((|SpadAst|) $) "\\spad{body(e)} return the list of expressions being redcued.")) (|operator| (((|SpadAst|) $) "\\spad{operator(e)} returns the magma operation being applied.")))
NIL
NIL
(-991 |Pol|)
@@ -3910,24 +3910,24 @@ NIL
NIL
(-995 |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")))
-((-4330 . T) (-4335 . T) (-4329 . T) (-4332 . T) (-4331 . T) ((-4339 "*") . T) (-4334 . T))
+((-4329 . T) (-4334 . T) (-4328 . T) (-4331 . T) (-4330 . T) ((-4338 "*") . T) (-4333 . T))
((-1536 (|HasCategory| (-400 (-549)) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-400 (-549)) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-400 (-549)) (LIST (QUOTE -1009) (QUOTE (-549)))))
-(-996 -1422 L)
+(-996 -1421 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
(-997 S)
((|constructor| (NIL "\\indented{1}{\\spadtype{Reference} is for making a changeable instance} of something.")) (= (((|Boolean|) $ $) "\\spad{a=b} tests if \\spad{a} and \\spad{b} are equal.")) (|setref| ((|#1| $ |#1|) "\\spad{setref(n,{}m)} same as \\spad{setelt(n,{}m)}.")) (|deref| ((|#1| $) "\\spad{deref(n)} is equivalent to \\spad{elt(n)}.")) (|setelt| ((|#1| $ |#1|) "\\spad{setelt(n,{}m)} changes the value of the object \\spad{n} to \\spad{m}.")) (|elt| ((|#1| $) "\\spad{elt(n)} returns the object \\spad{n}.")) (|ref| (($ |#1|) "\\spad{ref(n)} creates a pointer (reference) to the object \\spad{n}.")))
NIL
-((|HasCategory| |#1| (QUOTE (-1067))))
+((|HasCategory| |#1| (QUOTE (-1066))))
(-998 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.")))
-((-4338 . T) (-4337 . T))
-((-12 (|HasCategory| |#4| (QUOTE (-1067))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#4| (QUOTE (-1067))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#4| (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T) (-4336 . T))
+((-12 (|HasCategory| |#4| (QUOTE (-1066))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#4| (QUOTE (-1066))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#4| (LIST (QUOTE -593) (QUOTE (-834)))))
(-999 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 (-4339 "*"))))
+((|HasAttribute| |#1| (QUOTE (-4338 "*"))))
(-1000 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
@@ -3948,16 +3948,16 @@ 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
-(-1005 -1422 |Expon| |VarSet| |FPol| |LFPol|)
+(-1005 -1421 |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")))
-(((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+(((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-1006)
((|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.}")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3337) (QUOTE (-1143))) (LIST (QUOTE |:|) (QUOTE -1793) (QUOTE (-52))))))) (-1536 (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (QUOTE (-1067))) (|HasCategory| (-52) (QUOTE (-1067)))) (-1536 (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-52) (QUOTE (-1067))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| (-52) (QUOTE (-1067))) (|HasCategory| (-52) (LIST (QUOTE -302) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (QUOTE (-1067))) (|HasCategory| (-1143) (QUOTE (-823))) (|HasCategory| (-52) (QUOTE (-1067))) (-1536 (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3336) (QUOTE (-1142))) (LIST (QUOTE |:|) (QUOTE -1791) (QUOTE (-52))))))) (-1536 (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (QUOTE (-1066))) (|HasCategory| (-52) (QUOTE (-1066)))) (-1536 (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-52) (QUOTE (-1066))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| (-52) (QUOTE (-1066))) (|HasCategory| (-52) (LIST (QUOTE -302) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (QUOTE (-1066))) (|HasCategory| (-1142) (QUOTE (-823))) (|HasCategory| (-52) (QUOTE (-1066))) (-1536 (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))))
(-1007)
-((|constructor| (NIL "This domain represents `return' expressions.")) (|expression| (((|Syntax|) $) "\\spad{expression(e)} returns the expression returned by `e'.")))
+((|constructor| (NIL "This domain represents `return' expressions.")) (|expression| (((|SpadAst|) $) "\\spad{expression(e)} returns the expression returned by `e'.")))
NIL
NIL
(-1008 A S)
@@ -3990,8 +3990,8 @@ NIL
NIL
(-1015 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}.")))
-((-4338 . T) (-4337 . T))
-((-12 (|HasCategory| (-756 |#1| (-836 |#2|)) (QUOTE (-1067))) (|HasCategory| (-756 |#1| (-836 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -756) (|devaluate| |#1|) (LIST (QUOTE -836) (|devaluate| |#2|)))))) (|HasCategory| (-756 |#1| (-836 |#2|)) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-756 |#1| (-836 |#2|)) (QUOTE (-1067))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| (-836 |#2|) (QUOTE (-361))) (|HasCategory| (-756 |#1| (-836 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4337 . T) (-4336 . T))
+((-12 (|HasCategory| (-756 |#1| (-836 |#2|)) (QUOTE (-1066))) (|HasCategory| (-756 |#1| (-836 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -756) (|devaluate| |#1|) (LIST (QUOTE -836) (|devaluate| |#2|)))))) (|HasCategory| (-756 |#1| (-836 |#2|)) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-756 |#1| (-836 |#2|)) (QUOTE (-1066))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| (-836 |#2|) (QUOTE (-361))) (|HasCategory| (-756 |#1| (-836 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))))
(-1016)
((|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")))
NIL
@@ -4002,9 +4002,9 @@ NIL
NIL
(-1018)
((|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\"}.")) (|coerce| (($ (|Integer|)) "\\spad{coerce(i)} converts the integer \\spad{i} to a member of the given domain.")) (|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.")))
-((-4334 . T))
+((-4333 . T))
NIL
-(-1019 |xx| -1422)
+(-1019 |xx| -1421)
((|constructor| (NIL "This package exports rational interpolation algorithms")))
NIL
NIL
@@ -4014,12 +4014,12 @@ NIL
((|HasCategory| |#4| (QUOTE (-300))) (|HasCategory| |#4| (QUOTE (-356))) (|HasCategory| |#4| (QUOTE (-541))) (|HasCategory| |#4| (QUOTE (-170))))
(-1021 |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")))
-((-4337 . T) (-2624 . T) (-4332 . T) (-4331 . T))
+((-4336 . T) (-2623 . T) (-4331 . T) (-4330 . T))
NIL
(-1022 |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.")) (|coerce| (((|Matrix| |#3|) $) "\\spad{coerce(m)} converts a matrix of type \\spadtype{RectangularMatrix} to a matrix of type \\spad{Matrix}.")) (|rectangularMatrix| (($ (|Matrix| |#3|)) "\\spad{rectangularMatrix(m)} converts a matrix of type \\spadtype{Matrix} to a matrix of type \\spad{RectangularMatrix}.")))
-((-4337 . T) (-4332 . T) (-4331 . T))
-((-1536 (-12 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1067))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|))))) (|HasCategory| |#3| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-356)))) (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (QUOTE (-1067))) (|HasCategory| |#3| (QUOTE (-300))) (|HasCategory| |#3| (QUOTE (-541))) (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (LIST (QUOTE -593) (QUOTE (-834)))) (-12 (|HasCategory| |#3| (QUOTE (-1067))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))))
+((-4336 . T) (-4331 . T) (-4330 . T))
+((-1536 (-12 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1066))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|))))) (|HasCategory| |#3| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-356)))) (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (QUOTE (-1066))) (|HasCategory| |#3| (QUOTE (-300))) (|HasCategory| |#3| (QUOTE (-541))) (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (LIST (QUOTE -593) (QUOTE (-834)))) (-12 (|HasCategory| |#3| (QUOTE (-1066))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))))
(-1023 |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}.")))
NIL
@@ -4038,7 +4038,7 @@ NIL
NIL
(-1027)
((|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.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-1028 |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")))
@@ -4046,22 +4046,22 @@ NIL
NIL
(-1029)
((|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}.")) (|convert| (($ (|Symbol|)) "\\spad{convert(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.")))
-((-4325 . T) (-4329 . T) (-4324 . T) (-4335 . T) (-4336 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4324 . T) (-4328 . T) (-4323 . T) (-4334 . T) (-4335 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
(-1030)
((|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}")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3337) (QUOTE (-1143))) (LIST (QUOTE |:|) (QUOTE -1793) (QUOTE (-52))))))) (-1536 (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (QUOTE (-1067))) (|HasCategory| (-52) (QUOTE (-1067)))) (-1536 (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-52) (QUOTE (-1067))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| (-52) (QUOTE (-1067))) (|HasCategory| (-52) (LIST (QUOTE -302) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (QUOTE (-1067))) (|HasCategory| (-1143) (QUOTE (-823))) (|HasCategory| (-52) (QUOTE (-1067))) (-1536 (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))))
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3336) (QUOTE (-1142))) (LIST (QUOTE |:|) (QUOTE -1791) (QUOTE (-52))))))) (-1536 (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (QUOTE (-1066))) (|HasCategory| (-52) (QUOTE (-1066)))) (-1536 (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-52) (QUOTE (-1066))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| (-52) (QUOTE (-1066))) (|HasCategory| (-52) (LIST (QUOTE -302) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (QUOTE (-1066))) (|HasCategory| (-1142) (QUOTE (-823))) (|HasCategory| (-52) (QUOTE (-1066))) (-1536 (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-52) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (LIST (QUOTE -593) (QUOTE (-834)))))
(-1031 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 (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-534))) (|HasCategory| |#2| (LIST (QUOTE -38) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -963) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (LIST (QUOTE -594) (QUOTE (-1143)))))
+((|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-534))) (|HasCategory| |#2| (LIST (QUOTE -38) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -963) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#4| (LIST (QUOTE -594) (QUOTE (-1142)))))
(-1032 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}}.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
NIL
(-1033)
-((|constructor| (NIL "This domain represents the `repeat' iterator syntax.")) (|body| (((|Syntax|) $) "\\spad{body(e)} returns the body of the loop `e'.")) (|iterators| (((|List| (|Syntax|)) $) "\\spad{iterators(e)} returns the list of iterators controlling the loop `e'.")))
+((|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'.")))
NIL
NIL
(-1034 S |TheField| |ThePols|)
@@ -4082,25 +4082,25 @@ NIL
NIL
(-1038 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}.")))
-((-4338 . T) (-4337 . T) (-2624 . T))
+((-4337 . T) (-4336 . T) (-2623 . T))
NIL
(-1039 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.")))
NIL
NIL
(-1040)
-((|constructor| (NIL "This domain represents `restrict' expressions.")) (|target| (((|TypeAst|) $) "\\spad{target(e)} returns the target type of the conversion..")) (|expression| (((|Syntax|) $) "\\spad{expression(e)} returns the expression being converted.")))
+((|constructor| (NIL "This domain represents `restrict' expressions.")) (|target| (((|TypeAst|) $) "\\spad{target(e)} returns the target type of the conversion..")) (|expression| (((|SpadAst|) $) "\\spad{expression(e)} returns the expression being converted.")))
NIL
NIL
(-1041 |f|)
((|constructor| (NIL "This domain implements named rules")) (|name| (((|Symbol|) $) "\\spad{name(x)} returns the symbol")))
NIL
NIL
-(-1042 |Base| R -1422)
+(-1042 |Base| R -1421)
((|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
-(-1043 |Base| R -1422)
+(-1043 |Base| R -1421)
((|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
@@ -4114,8 +4114,8 @@ NIL
NIL
(-1046 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.")))
-((-4330 |has| |#1| (-356)) (-4335 |has| |#1| (-356)) (-4329 |has| |#1| (-356)) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-342))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-342)))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-361))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-342)))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143))))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (QUOTE (-356)))))
+((-4329 |has| |#1| (-356)) (-4334 |has| |#1| (-356)) (-4328 |has| |#1| (-356)) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-342))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-342)))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-361))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-342)))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#1| (QUOTE (-342))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142))))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (QUOTE (-356)))))
(-1047 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}.")))
NIL
@@ -4124,829 +4124,825 @@ NIL
((|constructor| (NIL "This trivial domain lets us build Univariate Polynomials in an anonymous variable")))
NIL
NIL
-(-1049 S)
-((|constructor| (NIL "This is the category of Spad syntax objects.")))
-NIL
-NIL
-(-1050)
+(-1049)
((|constructor| (NIL "This is the category of Spad syntax objects.")))
NIL
NIL
-(-1051 S)
+(-1050 S)
((|constructor| (NIL "\\indented{1}{Cache of elements in a set} Author: Manuel Bronstein Date Created: 31 Oct 1988 Date Last Updated: 14 May 1991 \\indented{2}{A sorted cache of a cachable set \\spad{S} is a dynamic structure that} \\indented{2}{keeps the elements of \\spad{S} sorted and assigns an integer to each} \\indented{2}{element of \\spad{S} once it is in the cache. This way,{} equality and ordering} \\indented{2}{on \\spad{S} are tested directly on the integers associated with the elements} \\indented{2}{of \\spad{S},{} once they have been entered in the cache.}")) (|enterInCache| ((|#1| |#1| (|Mapping| (|Integer|) |#1| |#1|)) "\\spad{enterInCache(x,{} f)} enters \\spad{x} in the cache,{} calling \\spad{f(x,{} y)} to determine whether \\spad{x < y (f(x,{}y) < 0),{} x = y (f(x,{}y) = 0)},{} or \\spad{x > y (f(x,{}y) > 0)}. It returns \\spad{x} with an integer associated with it.") ((|#1| |#1| (|Mapping| (|Boolean|) |#1|)) "\\spad{enterInCache(x,{} f)} enters \\spad{x} in the cache,{} calling \\spad{f(y)} to determine whether \\spad{x} is equal to \\spad{y}. It returns \\spad{x} with an integer associated with it.")) (|cache| (((|List| |#1|)) "\\spad{cache()} returns the current cache as a list.")) (|clearCache| (((|Void|)) "\\spad{clearCache()} empties the cache.")))
NIL
NIL
-(-1052)
+(-1051)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Created: October 24,{} 2007 Date Last Modified: January 18,{} 2008. A `Scope' is a sequence of contours.")) (|currentCategoryFrame| (($) "\\spad{currentCategoryFrame()} returns the category frame currently in effect.")) (|currentScope| (($) "\\spad{currentScope()} returns the scope currently in effect")) (|pushNewContour| (($ (|Binding|) $) "\\spad{pushNewContour(b,{}s)} pushs a new contour with sole binding \\spad{`b'}.")) (|findBinding| (((|Union| (|Binding|) "failed") (|Symbol|) $) "\\spad{findBinding(n,{}s)} returns the first binding of \\spad{`n'} in \\spad{`s'}; otherwise `failed'.")) (|contours| (((|List| (|Contour|)) $) "\\spad{contours(s)} returns the list of contours in scope \\spad{s}.")) (|empty| (($) "\\spad{empty()} returns an empty scope.")))
NIL
NIL
-(-1053 R)
+(-1052 R)
((|constructor| (NIL "StructuralConstantsPackage provides functions creating structural constants from a multiplication tables or a basis of a matrix algebra and other useful functions in this context.")) (|coordinates| (((|Vector| |#1|) (|Matrix| |#1|) (|List| (|Matrix| |#1|))) "\\spad{coordinates(a,{}[v1,{}...,{}vn])} returns the coordinates of \\spad{a} with respect to the \\spad{R}-module basis \\spad{v1},{}...,{}\\spad{vn}.")) (|structuralConstants| (((|Vector| (|Matrix| |#1|)) (|List| (|Matrix| |#1|))) "\\spad{structuralConstants(basis)} takes the \\spad{basis} of a matrix algebra,{} \\spadignore{e.g.} the result of \\spadfun{basisOfCentroid} and calculates the structural constants. Note,{} that the it is not checked,{} whether \\spad{basis} really is a \\spad{basis} of a matrix algebra.") (((|Vector| (|Matrix| (|Polynomial| |#1|))) (|List| (|Symbol|)) (|Matrix| (|Polynomial| |#1|))) "\\spad{structuralConstants(ls,{}mt)} determines the structural constants of an algebra with generators \\spad{ls} and multiplication table \\spad{mt},{} the entries of which must be given as linear polynomials in the indeterminates given by \\spad{ls}. The result is in particular useful \\indented{1}{as fourth argument for \\spadtype{AlgebraGivenByStructuralConstants}} \\indented{1}{and \\spadtype{GenericNonAssociativeAlgebra}.}") (((|Vector| (|Matrix| (|Fraction| (|Polynomial| |#1|)))) (|List| (|Symbol|)) (|Matrix| (|Fraction| (|Polynomial| |#1|)))) "\\spad{structuralConstants(ls,{}mt)} determines the structural constants of an algebra with generators \\spad{ls} and multiplication table \\spad{mt},{} the entries of which must be given as linear polynomials in the indeterminates given by \\spad{ls}. The result is in particular useful \\indented{1}{as fourth argument for \\spadtype{AlgebraGivenByStructuralConstants}} \\indented{1}{and \\spadtype{GenericNonAssociativeAlgebra}.}")))
NIL
NIL
-(-1054 R)
+(-1053 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")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
-((|HasCategory| |#1| (QUOTE (-880))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| (-1055 (-1143)) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-1055 (-1143)) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-1055 (-1143)) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-1055 (-1143)) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-1055 (-1143)) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#1| (QUOTE -4335)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
-(-1055 S)
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
+((|HasCategory| |#1| (QUOTE (-880))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| (-1054 (-1142)) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-1054 (-1142)) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-1054 (-1142)) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-1054 (-1142)) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-1054 (-1142)) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-227))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#1| (QUOTE -4334)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
+(-1054 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
NIL
-(-1056 R S)
+(-1055 R S)
((|constructor| (NIL "This package provides operations for mapping functions onto segments.")) (|map| (((|List| |#2|) (|Mapping| |#2| |#1|) (|Segment| |#1|)) "\\spad{map(f,{}s)} expands the segment \\spad{s},{} applying \\spad{f} to each value. For example,{} if \\spad{s = l..h by k},{} then the list \\spad{[f(l),{} f(l+k),{}...,{} f(lN)]} is computed,{} where \\spad{lN <= h < lN+k}.") (((|Segment| |#2|) (|Mapping| |#2| |#1|) (|Segment| |#1|)) "\\spad{map(f,{}l..h)} returns a new segment \\spad{f(l)..f(h)}.")))
NIL
((|HasCategory| |#1| (QUOTE (-821))))
-(-1057)
-((|constructor| (NIL "This domain represents segement expressions.")) (|bounds| (((|List| (|Syntax|)) $) "\\spad{bounds(s)} returns the bounds of the segment \\spad{`s'}. If \\spad{`s'} designates an infinite interval,{} then the returns list a singleton list.")))
+(-1056)
+((|constructor| (NIL "This domain represents segement expressions.")) (|bounds| (((|List| (|SpadAst|)) $) "\\spad{bounds(s)} returns the bounds of the segment \\spad{`s'}. If \\spad{`s'} designates an infinite interval,{} then the returns list a singleton list.")))
NIL
NIL
-(-1058 R S)
+(-1057 R S)
((|constructor| (NIL "This package provides operations for mapping functions onto \\spadtype{SegmentBinding}\\spad{s}.")) (|map| (((|SegmentBinding| |#2|) (|Mapping| |#2| |#1|) (|SegmentBinding| |#1|)) "\\spad{map(f,{}v=a..b)} returns the value given by \\spad{v=f(a)..f(b)}.")))
NIL
NIL
-(-1059 S)
+(-1058 S)
((|constructor| (NIL "This domain is used to provide the function argument syntax \\spad{v=a..b}. This is used,{} for example,{} by the top-level \\spadfun{draw} functions.")) (|segment| (((|Segment| |#1|) $) "\\spad{segment(segb)} returns the segment from the right hand side of the \\spadtype{SegmentBinding}. For example,{} if \\spad{segb} is \\spad{v=a..b},{} then \\spad{segment(segb)} returns \\spad{a..b}.")) (|variable| (((|Symbol|) $) "\\spad{variable(segb)} returns the variable from the left hand side of the \\spadtype{SegmentBinding}. For example,{} if \\spad{segb} is \\spad{v=a..b},{} then \\spad{variable(segb)} returns \\spad{v}.")) (|equation| (($ (|Symbol|) (|Segment| |#1|)) "\\spad{equation(v,{}a..b)} creates a segment binding value with variable \\spad{v} and segment \\spad{a..b}. Note that the interpreter parses \\spad{v=a..b} to this form.")))
NIL
-((|HasCategory| |#1| (QUOTE (-1067))))
-(-1060 S)
+((|HasCategory| |#1| (QUOTE (-1066))))
+(-1059 S)
((|constructor| (NIL "This category provides operations on ranges,{} or {\\em segments} as they are called.")) (|convert| (($ |#1|) "\\spad{convert(i)} creates the segment \\spad{i..i}.")) (|segment| (($ |#1| |#1|) "\\spad{segment(i,{}j)} is an alternate way to create the segment \\spad{i..j}.")) (|incr| (((|Integer|) $) "\\spad{incr(s)} returns \\spad{n},{} where \\spad{s} is a segment in which every \\spad{n}\\spad{-}th element is used. Note: \\spad{incr(l..h by n) = n}.")) (|high| ((|#1| $) "\\spad{high(s)} returns the second endpoint of \\spad{s}. Note: \\spad{high(l..h) = h}.")) (|low| ((|#1| $) "\\spad{low(s)} returns the first endpoint of \\spad{s}. Note: \\spad{low(l..h) = l}.")) (|hi| ((|#1| $) "\\spad{\\spad{hi}(s)} returns the second endpoint of \\spad{s}. Note: \\spad{\\spad{hi}(l..h) = h}.")) (|lo| ((|#1| $) "\\spad{lo(s)} returns the first endpoint of \\spad{s}. Note: \\spad{lo(l..h) = l}.")) (BY (($ $ (|Integer|)) "\\spad{s by n} creates a new segment in which only every \\spad{n}\\spad{-}th element is used.")) (SEGMENT (($ |#1| |#1|) "\\spad{l..h} creates a segment with \\spad{l} and \\spad{h} as the endpoints.")))
-((-2624 . T))
+((-2623 . T))
NIL
-(-1061 S)
+(-1060 S)
((|constructor| (NIL "This type is used to specify a range of values from type \\spad{S}.")))
NIL
-((|HasCategory| |#1| (QUOTE (-821))) (|HasCategory| |#1| (QUOTE (-1067))))
-(-1062 S L)
+((|HasCategory| |#1| (QUOTE (-821))) (|HasCategory| |#1| (QUOTE (-1066))))
+(-1061 S L)
((|constructor| (NIL "This category provides an interface for expanding segments to a stream of elements.")) (|map| ((|#2| (|Mapping| |#1| |#1|) $) "\\spad{map(f,{}l..h by k)} produces a value of type \\spad{L} by applying \\spad{f} to each of the succesive elements of the segment,{} that is,{} \\spad{[f(l),{} f(l+k),{} ...,{} f(lN)]},{} where \\spad{lN <= h < lN+k}.")) (|expand| ((|#2| $) "\\spad{expand(l..h by k)} creates value of type \\spad{L} with elements \\spad{l,{} l+k,{} ... lN} where \\spad{lN <= h < lN+k}. For example,{} \\spad{expand(1..5 by 2) = [1,{}3,{}5]}.") ((|#2| (|List| $)) "\\spad{expand(l)} creates a new value of type \\spad{L} in which each segment \\spad{l..h by k} is replaced with \\spad{l,{} l+k,{} ... lN},{} where \\spad{lN <= h < lN+k}. For example,{} \\spad{expand [1..4,{} 7..9] = [1,{}2,{}3,{}4,{}7,{}8,{}9]}.")))
-((-2624 . T))
+((-2623 . T))
NIL
-(-1063)
-((|constructor| (NIL "This domain represents a block of expressions.")) (|last| (((|Syntax|) $) "\\spad{last(e)} returns the last instruction in `e'.")) (|body| (((|List| (|Syntax|)) $) "\\spad{body(e)} returns the list of expressions in the sequence of instruction `e'.")))
+(-1062)
+((|constructor| (NIL "This domain represents a block of expressions.")) (|last| (((|SpadAst|) $) "\\spad{last(e)} returns the last instruction in `e'.")) (|body| (((|List| (|SpadAst|)) $) "\\spad{body(e)} returns the list of expressions in the sequence of instruction `e'.")))
NIL
NIL
-(-1064 A S)
+(-1063 A 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| (($ |#2| $) "\\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}.") (($ $ |#2|) "\\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| (($ $ |#2|) "\\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| |#2|)) "\\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| |#2|)) "\\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}.")))
NIL
NIL
-(-1065 S)
+(-1064 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}.")))
-((-4327 . T) (-2624 . T))
+((-4326 . T) (-2623 . T))
NIL
-(-1066 S)
+(-1065 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}.")))
NIL
NIL
-(-1067)
+(-1066)
((|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}.")))
NIL
NIL
-(-1068 |m| |n|)
+(-1067 |m| |n|)
((|constructor| (NIL "\\spadtype{SetOfMIntegersInOneToN} implements the subsets of \\spad{M} integers in the interval \\spad{[1..n]}")) (|delta| (((|NonNegativeInteger|) $ (|PositiveInteger|) (|PositiveInteger|)) "\\spad{delta(S,{}k,{}p)} returns the number of elements of \\spad{S} which are strictly between \\spad{p} and the \\spad{k^}{th} element of \\spad{S}.")) (|member?| (((|Boolean|) (|PositiveInteger|) $) "\\spad{member?(p,{} s)} returns \\spad{true} is \\spad{p} is in \\spad{s},{} \\spad{false} otherwise.")) (|enumerate| (((|Vector| $)) "\\spad{enumerate()} returns a vector of all the sets of \\spad{M} integers in \\spad{1..n}.")) (|setOfMinN| (($ (|List| (|PositiveInteger|))) "\\spad{setOfMinN([a_1,{}...,{}a_m])} returns the set {a_1,{}...,{}a_m}. Error if {a_1,{}...,{}a_m} is not a set of \\spad{M} integers in \\spad{1..n}.")) (|elements| (((|List| (|PositiveInteger|)) $) "\\spad{elements(S)} returns the list of the elements of \\spad{S} in increasing order.")) (|replaceKthElement| (((|Union| $ "failed") $ (|PositiveInteger|) (|PositiveInteger|)) "\\spad{replaceKthElement(S,{}k,{}p)} replaces the \\spad{k^}{th} element of \\spad{S} by \\spad{p},{} and returns \"failed\" if the result is not a set of \\spad{M} integers in \\spad{1..n} any more.")) (|incrementKthElement| (((|Union| $ "failed") $ (|PositiveInteger|)) "\\spad{incrementKthElement(S,{}k)} increments the \\spad{k^}{th} element of \\spad{S},{} and returns \"failed\" if the result is not a set of \\spad{M} integers in \\spad{1..n} any more.")))
NIL
NIL
-(-1069 S)
+(-1068 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)}}")))
-((-4337 . T) (-4327 . T) (-4338 . T))
-((-1536 (-12 (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (QUOTE (-823))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
-(-1070 |Str| |Sym| |Int| |Flt| |Expr|)
+((-4336 . T) (-4326 . T) (-4337 . T))
+((-1536 (-12 (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-361))) (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (QUOTE (-823))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+(-1069 |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.")) (|convert| (($ |#5|) "\\spad{convert(x)} returns the Lisp atom \\spad{x}.") (($ |#4|) "\\spad{convert(x)} returns the Lisp atom \\spad{x}.") (($ |#3|) "\\spad{convert(x)} returns the Lisp atom \\spad{x}.") (($ |#2|) "\\spad{convert(x)} returns the Lisp atom \\spad{x}.") (($ |#1|) "\\spad{convert(x)} returns the Lisp atom \\spad{x}.") (($ (|List| $)) "\\spad{convert([a1,{}...,{}an])} returns the \\spad{S}-expression \\spad{(a1,{}...,{}an)}.")) (|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.")))
NIL
NIL
-(-1071)
+(-1070)
((|constructor| (NIL "This domain allows the manipulation of the usual Lisp values.")))
NIL
NIL
-(-1072 |Str| |Sym| |Int| |Flt| |Expr|)
+(-1071 |Str| |Sym| |Int| |Flt| |Expr|)
((|constructor| (NIL "This domain allows the manipulation of Lisp values over arbitrary atomic types.")))
NIL
NIL
-(-1073 R FS)
+(-1072 R FS)
((|constructor| (NIL "\\axiomType{SimpleFortranProgram(\\spad{f},{}type)} provides a simple model of some FORTRAN subprograms,{} making it possible to coerce objects of various domains into a FORTRAN subprogram called \\axiom{\\spad{f}}. These can then be translated into legal FORTRAN code.")) (|fortran| (($ (|Symbol|) (|FortranScalarType|) |#2|) "\\spad{fortran(fname,{}ftype,{}body)} builds an object of type \\axiomType{FortranProgramCategory}. The three arguments specify the name,{} the type and the \\spad{body} of the program.")))
NIL
NIL
-(-1074 R E V P TS)
+(-1073 R E V P TS)
((|constructor| (NIL "\\indented{2}{A internal package for removing redundant quasi-components and redundant} \\indented{2}{branches when decomposing a variety by means of quasi-components} \\indented{2}{of regular 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} \\indented{5}{Tech. Report (PoSSo project)} \\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.}")) (|branchIfCan| (((|Union| (|Record| (|:| |eq| (|List| |#4|)) (|:| |tower| |#5|) (|:| |ineq| (|List| |#4|))) "failed") (|List| |#4|) |#5| (|List| |#4|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{branchIfCan(leq,{}\\spad{ts},{}lineq,{}\\spad{b1},{}\\spad{b2},{}\\spad{b3},{}\\spad{b4},{}\\spad{b5})} is an internal subroutine,{} exported only for developement.")) (|prepareDecompose| (((|List| (|Record| (|:| |eq| (|List| |#4|)) (|:| |tower| |#5|) (|:| |ineq| (|List| |#4|)))) (|List| |#4|) (|List| |#5|) (|Boolean|) (|Boolean|)) "\\axiom{prepareDecompose(\\spad{lp},{}\\spad{lts},{}\\spad{b1},{}\\spad{b2})} is an internal subroutine,{} exported only for developement.")) (|removeSuperfluousCases| (((|List| (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|))) (|List| (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|)))) "\\axiom{removeSuperfluousCases(llpwt)} is an internal subroutine,{} exported only for developement.")) (|subCase?| (((|Boolean|) (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|)) (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|))) "\\axiom{subCase?(lpwt1,{}lpwt2)} is an internal subroutine,{} exported only for developement.")) (|removeSuperfluousQuasiComponents| (((|List| |#5|) (|List| |#5|)) "\\axiom{removeSuperfluousQuasiComponents(\\spad{lts})} removes from \\axiom{\\spad{lts}} any \\spad{ts} such that \\axiom{subQuasiComponent?(\\spad{ts},{}us)} holds for another \\spad{us} in \\axiom{\\spad{lts}}.")) (|subQuasiComponent?| (((|Boolean|) |#5| (|List| |#5|)) "\\axiom{subQuasiComponent?(\\spad{ts},{}lus)} returns \\spad{true} iff \\axiom{subQuasiComponent?(\\spad{ts},{}us)} holds for one \\spad{us} in \\spad{lus}.") (((|Boolean|) |#5| |#5|) "\\axiom{subQuasiComponent?(\\spad{ts},{}us)} returns \\spad{true} iff \\axiomOpFrom{internalSubQuasiComponent?(\\spad{ts},{}us)}{QuasiComponentPackage} returs \\spad{true}.")) (|internalSubQuasiComponent?| (((|Union| (|Boolean|) "failed") |#5| |#5|) "\\axiom{internalSubQuasiComponent?(\\spad{ts},{}us)} returns a boolean \\spad{b} value if the fact the regular zero set of \\axiom{us} contains that of \\axiom{\\spad{ts}} can be decided (and in that case \\axiom{\\spad{b}} gives this inclusion) otherwise returns \\axiom{\"failed\"}.")) (|infRittWu?| (((|Boolean|) (|List| |#4|) (|List| |#4|)) "\\axiom{infRittWu?(\\spad{lp1},{}\\spad{lp2})} is an internal subroutine,{} exported only for developement.")) (|internalInfRittWu?| (((|Boolean|) (|List| |#4|) (|List| |#4|)) "\\axiom{internalInfRittWu?(\\spad{lp1},{}\\spad{lp2})} is an internal subroutine,{} exported only for developement.")) (|internalSubPolSet?| (((|Boolean|) (|List| |#4|) (|List| |#4|)) "\\axiom{internalSubPolSet?(\\spad{lp1},{}\\spad{lp2})} returns \\spad{true} iff \\axiom{\\spad{lp1}} is a sub-set of \\axiom{\\spad{lp2}} assuming that these lists are sorted increasingly \\spad{w}.\\spad{r}.\\spad{t}. \\axiomOpFrom{infRittWu?}{RecursivePolynomialCategory}.")) (|subPolSet?| (((|Boolean|) (|List| |#4|) (|List| |#4|)) "\\axiom{subPolSet?(\\spad{lp1},{}\\spad{lp2})} returns \\spad{true} iff \\axiom{\\spad{lp1}} is a sub-set of \\axiom{\\spad{lp2}}.")) (|subTriSet?| (((|Boolean|) |#5| |#5|) "\\axiom{subTriSet?(\\spad{ts},{}us)} returns \\spad{true} iff \\axiom{\\spad{ts}} is a sub-set of \\axiom{us}.")) (|moreAlgebraic?| (((|Boolean|) |#5| |#5|) "\\axiom{moreAlgebraic?(\\spad{ts},{}us)} returns \\spad{false} iff \\axiom{\\spad{ts}} and \\axiom{us} are both empty,{} or \\axiom{\\spad{ts}} has less elements than \\axiom{us},{} or some variable is algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{us} and is not \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ts}}.")) (|algebraicSort| (((|List| |#5|) (|List| |#5|)) "\\axiom{algebraicSort(\\spad{lts})} sorts \\axiom{\\spad{lts}} \\spad{w}.\\spad{r}.\\spad{t} \\axiomOpFrom{supDimElseRittWu}{QuasiComponentPackage}.")) (|supDimElseRittWu?| (((|Boolean|) |#5| |#5|) "\\axiom{supDimElseRittWu(\\spad{ts},{}us)} returns \\spad{true} iff \\axiom{\\spad{ts}} has less elements than \\axiom{us} otherwise if \\axiom{\\spad{ts}} has higher rank than \\axiom{us} \\spad{w}.\\spad{r}.\\spad{t}. Riit and Wu ordering.")) (|stopTable!| (((|Void|)) "\\axiom{stopTableGcd!()} is an internal subroutine,{} exported only for developement.")) (|startTable!| (((|Void|) (|String|) (|String|) (|String|)) "\\axiom{startTableGcd!(\\spad{s1},{}\\spad{s2},{}\\spad{s3})} is an internal subroutine,{} exported only for developement.")))
NIL
NIL
-(-1075 R E V P TS)
+(-1074 R E V P TS)
((|constructor| (NIL "A internal package for computing gcds and resultants of univariate polynomials with coefficients in a tower of simple extensions of a field. There is no need to use directly this package since its main operations are available from \\spad{TS}. \\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.}")))
NIL
NIL
-(-1076 R E V P)
+(-1075 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.}")))
-((-4338 . T) (-4337 . T) (-2624 . T))
+((-4337 . T) (-4336 . T) (-2623 . T))
NIL
-(-1077)
+(-1076)
((|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.")))
NIL
NIL
-(-1078 S)
+(-1077 S)
((|constructor| (NIL "the class of all multiplicative semigroups,{} \\spadignore{i.e.} a set with an associative operation \\spadop{*}. \\blankline")) (** (($ $ (|PositiveInteger|)) "\\spad{x**n} returns the repeated product of \\spad{x} \\spad{n} times,{} \\spadignore{i.e.} exponentiation.")) (* (($ $ $) "\\spad{x*y} returns the product of \\spad{x} and \\spad{y}.")))
NIL
NIL
-(-1079)
+(-1078)
((|constructor| (NIL "the class of all multiplicative semigroups,{} \\spadignore{i.e.} a set with an associative operation \\spadop{*}. \\blankline")) (** (($ $ (|PositiveInteger|)) "\\spad{x**n} returns the repeated product of \\spad{x} \\spad{n} times,{} \\spadignore{i.e.} exponentiation.")) (* (($ $ $) "\\spad{x*y} returns the product of \\spad{x} and \\spad{y}.")))
NIL
NIL
-(-1080 |dimtot| |dim1| S)
+(-1079 |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}.")))
-((-4331 |has| |#3| (-1018)) (-4332 |has| |#3| (-1018)) (-4334 |has| |#3| (-6 -4334)) ((-4339 "*") |has| |#3| (-170)) (-4337 . T))
-((-1536 (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-703))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-769))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-821))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1067))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143)))))) (-1536 (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-1067)))) (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1018)))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#3| (QUOTE (-1067))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1067))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (|HasCategory| |#3| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#3| (QUOTE (-356))) (-1536 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (QUOTE (-1018)))) (-1536 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-356)))) (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (QUOTE (-769))) (-1536 (|HasCategory| |#3| (QUOTE (-769))) (|HasCategory| |#3| (QUOTE (-821)))) (|HasCategory| |#3| (QUOTE (-821))) (|HasCategory| |#3| (QUOTE (-703))) (|HasCategory| |#3| (QUOTE (-170))) (-1536 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-1018)))) (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143)))) (-1536 (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#3| (QUOTE (-703))) (|HasCategory| |#3| (QUOTE (-769))) (|HasCategory| |#3| (QUOTE (-821))) (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (QUOTE (-1067)))) (-1536 (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (QUOTE (-1018)))) (-1536 (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (QUOTE (-1018)))) (-1536 (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (QUOTE (-1018)))) (-1536 (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1018)))) (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-25)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-130)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-170)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-227)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-356)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-361)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-703)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-769)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-821)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-1018)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-1067))))) (-1536 (-12 (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-703))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-769))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-821))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-1067))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| (-549) (QUOTE (-823))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1018)))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1143))))) (-12 (|HasCategory| |#3| (QUOTE (-1067))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-1536 (|HasCategory| |#3| (QUOTE (-1018))) (-12 (|HasCategory| |#3| (QUOTE (-1067))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549)))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-1067)))) (|HasAttribute| |#3| (QUOTE -4334)) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-25))) (-12 (|HasCategory| |#3| (QUOTE (-1067))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (|HasCategory| |#3| (LIST (QUOTE -593) (QUOTE (-834)))))
-(-1081 R |x|)
+((-4330 |has| |#3| (-1018)) (-4331 |has| |#3| (-1018)) (-4333 |has| |#3| (-6 -4333)) ((-4338 "*") |has| |#3| (-170)) (-4336 . T))
+((-1536 (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-703))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-769))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-821))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1066))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142)))))) (-1536 (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-1066)))) (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1018)))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#3| (QUOTE (-1066))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1066))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (|HasCategory| |#3| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#3| (QUOTE (-356))) (-1536 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (QUOTE (-1018)))) (-1536 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-356)))) (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (QUOTE (-769))) (-1536 (|HasCategory| |#3| (QUOTE (-769))) (|HasCategory| |#3| (QUOTE (-821)))) (|HasCategory| |#3| (QUOTE (-821))) (|HasCategory| |#3| (QUOTE (-703))) (|HasCategory| |#3| (QUOTE (-170))) (-1536 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-1018)))) (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142)))) (-1536 (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#3| (QUOTE (-703))) (|HasCategory| |#3| (QUOTE (-769))) (|HasCategory| |#3| (QUOTE (-821))) (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (QUOTE (-1066)))) (-1536 (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (QUOTE (-1018)))) (-1536 (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (QUOTE (-1018)))) (-1536 (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (QUOTE (-1018)))) (-1536 (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1018)))) (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-25)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-130)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-170)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-227)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-356)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-361)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-703)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-769)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-821)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-1018)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-1066))))) (-1536 (-12 (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-170))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-356))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-703))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-769))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-821))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-1066))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549)))))) (|HasCategory| (-549) (QUOTE (-823))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#3| (QUOTE (-227))) (|HasCategory| |#3| (QUOTE (-1018)))) (-12 (|HasCategory| |#3| (QUOTE (-1018))) (|HasCategory| |#3| (LIST (QUOTE -871) (QUOTE (-1142))))) (-12 (|HasCategory| |#3| (QUOTE (-1066))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549))))) (-1536 (|HasCategory| |#3| (QUOTE (-1018))) (-12 (|HasCategory| |#3| (QUOTE (-1066))) (|HasCategory| |#3| (LIST (QUOTE -1009) (QUOTE (-549)))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#3| (QUOTE (-1066)))) (|HasAttribute| |#3| (QUOTE -4333)) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-25))) (-12 (|HasCategory| |#3| (QUOTE (-1066))) (|HasCategory| |#3| (LIST (QUOTE -302) (|devaluate| |#3|)))) (|HasCategory| |#3| (LIST (QUOTE -593) (QUOTE (-834)))))
+(-1080 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
((|HasCategory| |#1| (QUOTE (-444))))
-(-1082)
+(-1081)
((|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
-(-1083 R -1422)
+(-1082 R -1421)
((|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
-(-1084 R)
+(-1083 R)
((|constructor| (NIL "Find the sign of a rational function around a point or infinity.")) (|sign| (((|Union| (|Integer|) "failed") (|Fraction| (|Polynomial| |#1|)) (|Symbol|) (|Fraction| (|Polynomial| |#1|)) (|String|)) "\\spad{sign(f,{} x,{} a,{} s)} returns the sign of \\spad{f} as \\spad{x} nears \\spad{a} from the left (below) if \\spad{s} is the string \\spad{\"left\"},{} or from the right (above) if \\spad{s} is the string \\spad{\"right\"}.") (((|Union| (|Integer|) "failed") (|Fraction| (|Polynomial| |#1|)) (|Symbol|) (|OrderedCompletion| (|Fraction| (|Polynomial| |#1|)))) "\\spad{sign(f,{} x,{} a)} returns the sign of \\spad{f} as \\spad{x} approaches \\spad{a},{} from both sides if \\spad{a} is finite.") (((|Union| (|Integer|) "failed") (|Fraction| (|Polynomial| |#1|))) "\\spad{sign f} returns the sign of \\spad{f} if it is constant everywhere.")))
NIL
NIL
-(-1085)
+(-1084)
((|constructor| (NIL "This is the datatype for operation signatures as \\indented{2}{used by the compiler and the interpreter.\\space{2}Note that this domain} \\indented{2}{differs from SignatureAst.} See also: ConstructorCall,{} Domain.")) (|source| (((|List| (|Syntax|)) $) "\\spad{source(s)} returns the list of parameter types of \\spad{`s'}.")) (|target| (((|Syntax|) $) "\\spad{target(s)} returns the target type of the signature \\spad{`s'}.")) (|signature| (($ (|List| (|Syntax|)) (|Syntax|)) "\\spad{signature(s,{}t)} constructs a Signature object with parameter types indicaded by \\spad{`s'},{} and return type indicated by \\spad{`t'}.")))
NIL
NIL
-(-1086)
+(-1085)
((|constructor| (NIL "\\indented{1}{Package to allow simplify to be called on AlgebraicNumbers} by converting to EXPR(INT)")) (|simplify| (((|Expression| (|Integer|)) (|AlgebraicNumber|)) "\\spad{simplify(an)} applies simplifications to \\spad{an}")))
NIL
NIL
-(-1087)
+(-1086)
((|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}.")) (|\\/| (($ $ $) "\\spad{n} \\spad{\\/} \\spad{m} returns the bit-by-bit logical {\\em or} of the single integers \\spad{n} and \\spad{m}.")) (|/\\| (($ $ $) "\\spad{n} \\spad{/\\} \\spad{m} returns the bit-by-bit logical {\\em and} of the single integers \\spad{n} and \\spad{m}.")) (~ (($ $) "\\spad{~ n} returns the bit-by-bit logical {\\em not } of the single integer \\spad{n}.")) (|not| (($ $) "\\spad{not(n)} returns the bit-by-bit logical {\\em not} of the single integer \\spad{n}.")) (|min| (($) "\\spad{min()} returns the smallest single integer.")) (|max| (($) "\\spad{max()} returns the largest single integer.")) (|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.")))
-((-4325 . T) (-4329 . T) (-4324 . T) (-4335 . T) (-4336 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4324 . T) (-4328 . T) (-4323 . T) (-4334 . T) (-4335 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
-(-1088 S)
+(-1087 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}.")))
-((-4337 . T) (-4338 . T) (-2624 . T))
+((-4336 . T) (-4337 . T) (-2623 . T))
NIL
-(-1089 S |ndim| R |Row| |Col|)
+(-1088 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 (-356))) (|HasAttribute| |#3| (QUOTE (-4339 "*"))) (|HasCategory| |#3| (QUOTE (-170))))
-(-1090 |ndim| R |Row| |Col|)
+((|HasCategory| |#3| (QUOTE (-356))) (|HasAttribute| |#3| (QUOTE (-4338 "*"))) (|HasCategory| |#3| (QUOTE (-170))))
+(-1089 |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.")))
-((-2624 . T) (-4337 . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-2623 . T) (-4336 . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
-(-1091 R |Row| |Col| M)
+(-1090 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}.")))
NIL
NIL
-(-1092 R |VarSet|)
+(-1091 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.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
-((|HasCategory| |#1| (QUOTE (-880))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#1| (QUOTE -4335)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
-(-1093 |Coef| |Var| SMP)
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
+((|HasCategory| |#1| (QUOTE (-880))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#1| (QUOTE -4334)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
+(-1092 |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}.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4332 . T) (-4331 . T) (-4334 . T))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4331 . T) (-4330 . T) (-4333 . T))
((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-356))))
-(-1094 R E V P)
+(-1093 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}")))
-((-4338 . T) (-4337 . T) (-2624 . T))
+((-4337 . T) (-4336 . T) (-2623 . T))
NIL
-(-1095 UP -1422)
+(-1094 UP -1421)
((|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
-(-1096 R)
+(-1095 R)
((|constructor| (NIL "This package tries to find solutions expressed in terms of radicals for systems of equations of rational functions with coefficients in an integral domain \\spad{R}.")) (|contractSolve| (((|SuchThat| (|List| (|Expression| |#1|)) (|List| (|Equation| (|Expression| |#1|)))) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{contractSolve(rf,{}x)} finds the solutions expressed in terms of radicals of the equation \\spad{rf} = 0 with respect to the symbol \\spad{x},{} where \\spad{rf} is a rational function. The result contains new symbols for common subexpressions in order to reduce the size of the output.") (((|SuchThat| (|List| (|Expression| |#1|)) (|List| (|Equation| (|Expression| |#1|)))) (|Equation| (|Fraction| (|Polynomial| |#1|))) (|Symbol|)) "\\spad{contractSolve(eq,{}x)} finds the solutions expressed in terms of radicals of the equation of rational functions \\spad{eq} with respect to the symbol \\spad{x}. The result contains new symbols for common subexpressions in order to reduce the size of the output.")) (|radicalRoots| (((|List| (|List| (|Expression| |#1|))) (|List| (|Fraction| (|Polynomial| |#1|))) (|List| (|Symbol|))) "\\spad{radicalRoots(lrf,{}lvar)} finds the roots expressed in terms of radicals of the list of rational functions \\spad{lrf} with respect to the list of symbols \\spad{lvar}.") (((|List| (|Expression| |#1|)) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{radicalRoots(rf,{}x)} finds the roots expressed in terms of radicals of the rational function \\spad{rf} with respect to the symbol \\spad{x}.")) (|radicalSolve| (((|List| (|List| (|Equation| (|Expression| |#1|)))) (|List| (|Equation| (|Fraction| (|Polynomial| |#1|))))) "\\spad{radicalSolve(leq)} finds the solutions expressed in terms of radicals of the system of equations of rational functions \\spad{leq} with respect to the unique symbol \\spad{x} appearing in \\spad{leq}.") (((|List| (|List| (|Equation| (|Expression| |#1|)))) (|List| (|Equation| (|Fraction| (|Polynomial| |#1|)))) (|List| (|Symbol|))) "\\spad{radicalSolve(leq,{}lvar)} finds the solutions expressed in terms of radicals of the system of equations of rational functions \\spad{leq} with respect to the list of symbols \\spad{lvar}.") (((|List| (|List| (|Equation| (|Expression| |#1|)))) (|List| (|Fraction| (|Polynomial| |#1|)))) "\\spad{radicalSolve(lrf)} finds the solutions expressed in terms of radicals of the system of equations \\spad{lrf} = 0,{} where \\spad{lrf} is a system of univariate rational functions.") (((|List| (|List| (|Equation| (|Expression| |#1|)))) (|List| (|Fraction| (|Polynomial| |#1|))) (|List| (|Symbol|))) "\\spad{radicalSolve(lrf,{}lvar)} finds the solutions expressed in terms of radicals of the system of equations \\spad{lrf} = 0 with respect to the list of symbols \\spad{lvar},{} where \\spad{lrf} is a list of rational functions.") (((|List| (|Equation| (|Expression| |#1|))) (|Equation| (|Fraction| (|Polynomial| |#1|)))) "\\spad{radicalSolve(eq)} finds the solutions expressed in terms of radicals of the equation of rational functions \\spad{eq} with respect to the unique symbol \\spad{x} appearing in \\spad{eq}.") (((|List| (|Equation| (|Expression| |#1|))) (|Equation| (|Fraction| (|Polynomial| |#1|))) (|Symbol|)) "\\spad{radicalSolve(eq,{}x)} finds the solutions expressed in terms of radicals of the equation of rational functions \\spad{eq} with respect to the symbol \\spad{x}.") (((|List| (|Equation| (|Expression| |#1|))) (|Fraction| (|Polynomial| |#1|))) "\\spad{radicalSolve(rf)} finds the solutions expressed in terms of radicals of the equation \\spad{rf} = 0,{} where \\spad{rf} is a univariate rational function.") (((|List| (|Equation| (|Expression| |#1|))) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{radicalSolve(rf,{}x)} finds the solutions expressed in terms of radicals of the equation \\spad{rf} = 0 with respect to the symbol \\spad{x},{} where \\spad{rf} is a rational function.")))
NIL
NIL
-(-1097 R)
+(-1096 R)
((|constructor| (NIL "This package finds the function func3 where func1 and func2 \\indented{1}{are given and\\space{2}func1 = func3(func2) .\\space{2}If there is no solution then} \\indented{1}{function func1 will be returned.} \\indented{1}{An example would be\\space{2}\\spad{func1:= 8*X**3+32*X**2-14*X ::EXPR INT} and} \\indented{1}{\\spad{func2:=2*X ::EXPR INT} convert them via univariate} \\indented{1}{to FRAC SUP EXPR INT and then the solution is \\spad{func3:=X**3+X**2-X}} \\indented{1}{of type FRAC SUP EXPR INT}")) (|unvectorise| (((|Fraction| (|SparseUnivariatePolynomial| (|Expression| |#1|))) (|Vector| (|Expression| |#1|)) (|Fraction| (|SparseUnivariatePolynomial| (|Expression| |#1|))) (|Integer|)) "\\spad{unvectorise(vect,{} var,{} n)} returns \\spad{vect(1) + vect(2)*var + ... + vect(n+1)*var**(n)} where \\spad{vect} is the vector of the coefficients of the polynomail ,{} \\spad{var} the new variable and \\spad{n} the degree.")) (|decomposeFunc| (((|Fraction| (|SparseUnivariatePolynomial| (|Expression| |#1|))) (|Fraction| (|SparseUnivariatePolynomial| (|Expression| |#1|))) (|Fraction| (|SparseUnivariatePolynomial| (|Expression| |#1|))) (|Fraction| (|SparseUnivariatePolynomial| (|Expression| |#1|)))) "\\spad{decomposeFunc(func1,{} func2,{} newvar)} returns a function func3 where \\spad{func1} = func3(\\spad{func2}) and expresses it in the new variable newvar. If there is no solution then \\spad{func1} will be returned.")))
NIL
NIL
-(-1098 R)
+(-1097 R)
((|constructor| (NIL "This package tries to find solutions of equations of type Expression(\\spad{R}). This means expressions involving transcendental,{} exponential,{} logarithmic and nthRoot functions. After trying to transform different kernels to one kernel by applying several rules,{} it calls zerosOf for the SparseUnivariatePolynomial in the remaining kernel. For example the expression \\spad{sin(x)*cos(x)-2} will be transformed to \\indented{3}{\\spad{-2 tan(x/2)**4 -2 tan(x/2)**3 -4 tan(x/2)**2 +2 tan(x/2) -2}} by using the function normalize and then to \\indented{3}{\\spad{-2 tan(x)**2 + tan(x) -2}} with help of subsTan. This function tries to express the given function in terms of \\spad{tan(x/2)} to express in terms of \\spad{tan(x)} . Other examples are the expressions \\spad{sqrt(x+1)+sqrt(x+7)+1} or \\indented{1}{\\spad{sqrt(sin(x))+1} .}")) (|solve| (((|List| (|List| (|Equation| (|Expression| |#1|)))) (|List| (|Equation| (|Expression| |#1|))) (|List| (|Symbol|))) "\\spad{solve(leqs,{} lvar)} returns a list of solutions to the list of equations \\spad{leqs} with respect to the list of symbols lvar.") (((|List| (|Equation| (|Expression| |#1|))) (|Expression| |#1|) (|Symbol|)) "\\spad{solve(expr,{}x)} finds the solutions of the equation \\spad{expr} = 0 with respect to the symbol \\spad{x} where \\spad{expr} is a function of type Expression(\\spad{R}).") (((|List| (|Equation| (|Expression| |#1|))) (|Equation| (|Expression| |#1|)) (|Symbol|)) "\\spad{solve(eq,{}x)} finds the solutions of the equation \\spad{eq} where \\spad{eq} is an equation of functions of type Expression(\\spad{R}) with respect to the symbol \\spad{x}.") (((|List| (|Equation| (|Expression| |#1|))) (|Equation| (|Expression| |#1|))) "\\spad{solve(eq)} finds the solutions of the equation \\spad{eq} where \\spad{eq} is an equation of functions of type Expression(\\spad{R}) with respect to the unique symbol \\spad{x} appearing in \\spad{eq}.") (((|List| (|Equation| (|Expression| |#1|))) (|Expression| |#1|)) "\\spad{solve(expr)} finds the solutions of the equation \\spad{expr} = 0 where \\spad{expr} is a function of type Expression(\\spad{R}) with respect to the unique symbol \\spad{x} appearing in eq.")))
NIL
NIL
-(-1099 S A)
+(-1098 S A)
((|constructor| (NIL "This package exports sorting algorithnms")) (|insertionSort!| ((|#2| |#2|) "\\spad{insertionSort! }\\undocumented") ((|#2| |#2| (|Mapping| (|Boolean|) |#1| |#1|)) "\\spad{insertionSort!(a,{}f)} \\undocumented")) (|bubbleSort!| ((|#2| |#2|) "\\spad{bubbleSort!(a)} \\undocumented") ((|#2| |#2| (|Mapping| (|Boolean|) |#1| |#1|)) "\\spad{bubbleSort!(a,{}f)} \\undocumented")))
NIL
((|HasCategory| |#1| (QUOTE (-823))))
-(-1100 R)
+(-1099 R)
((|constructor| (NIL "The domain ThreeSpace is used for creating three dimensional objects using functions for defining points,{} curves,{} polygons,{} constructs and the subspaces containing them.")))
NIL
NIL
-(-1101 R)
+(-1100 R)
((|constructor| (NIL "The category ThreeSpaceCategory is used for creating three dimensional objects using functions for defining points,{} curves,{} polygons,{} constructs and the subspaces containing them.")) (|coerce| (((|OutputForm|) $) "\\spad{coerce(s)} returns the \\spadtype{ThreeSpace} \\spad{s} to Output format.")) (|subspace| (((|SubSpace| 3 |#1|) $) "\\spad{subspace(s)} returns the \\spadtype{SubSpace} which holds all the point information in the \\spadtype{ThreeSpace},{} \\spad{s}.")) (|check| (($ $) "\\spad{check(s)} returns lllpt,{} list of lists of lists of point information about the \\spadtype{ThreeSpace} \\spad{s}.")) (|objects| (((|Record| (|:| |points| (|NonNegativeInteger|)) (|:| |curves| (|NonNegativeInteger|)) (|:| |polygons| (|NonNegativeInteger|)) (|:| |constructs| (|NonNegativeInteger|))) $) "\\spad{objects(s)} returns the \\spadtype{ThreeSpace},{} \\spad{s},{} in the form of a 3D object record containing information on the number of points,{} curves,{} polygons and constructs comprising the \\spadtype{ThreeSpace}..")) (|lprop| (((|List| (|SubSpaceComponentProperty|)) $) "\\spad{lprop(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a list of subspace component properties,{} and if so,{} returns the list; An error is signaled otherwise.")) (|llprop| (((|List| (|List| (|SubSpaceComponentProperty|))) $) "\\spad{llprop(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a list of curves which are lists of the subspace component properties of the curves,{} and if so,{} returns the list of lists; An error is signaled otherwise.")) (|lllp| (((|List| (|List| (|List| (|Point| |#1|)))) $) "\\spad{lllp(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a list of components,{} which are lists of curves,{} which are lists of points,{} and if so,{} returns the list of lists of lists; An error is signaled otherwise.")) (|lllip| (((|List| (|List| (|List| (|NonNegativeInteger|)))) $) "\\spad{lllip(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a list of components,{} which are lists of curves,{} which are lists of indices to points,{} and if so,{} returns the list of lists of lists; An error is signaled otherwise.")) (|lp| (((|List| (|Point| |#1|)) $) "\\spad{lp(s)} returns the list of points component which the \\spadtype{ThreeSpace},{} \\spad{s},{} contains; these points are used by reference,{} \\spadignore{i.e.} the component holds indices referring to the points rather than the points themselves. This allows for sharing of the points.")) (|mesh?| (((|Boolean|) $) "\\spad{mesh?(s)} returns \\spad{true} if the \\spadtype{ThreeSpace} \\spad{s} is composed of one component,{} a mesh comprising a list of curves which are lists of points,{} or returns \\spad{false} if otherwise")) (|mesh| (((|List| (|List| (|Point| |#1|))) $) "\\spad{mesh(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a single surface component defined by a list curves which contain lists of points,{} and if so,{} returns the list of lists of points; An error is signaled otherwise.") (($ (|List| (|List| (|Point| |#1|))) (|Boolean|) (|Boolean|)) "\\spad{mesh([[p0],{}[p1],{}...,{}[pn]],{} close1,{} close2)} creates a surface defined over a list of curves,{} \\spad{p0} through \\spad{pn},{} which are lists of points; the booleans \\spad{close1} and close2 indicate how the surface is to be closed: \\spad{close1} set to \\spad{true} means that each individual list (a curve) is to be closed (that is,{} the last point of the list is to be connected to the first point); close2 set to \\spad{true} means that the boundary at one end of the surface is to be connected to the boundary at the other end (the boundaries are defined as the first list of points (curve) and the last list of points (curve)); the \\spadtype{ThreeSpace} containing this surface is returned.") (($ (|List| (|List| (|Point| |#1|)))) "\\spad{mesh([[p0],{}[p1],{}...,{}[pn]])} creates a surface defined by a list of curves which are lists,{} \\spad{p0} through \\spad{pn},{} of points,{} and returns a \\spadtype{ThreeSpace} whose component is the surface.") (($ $ (|List| (|List| (|List| |#1|))) (|Boolean|) (|Boolean|)) "\\spad{mesh(s,{}[ [[r10]...,{}[r1m]],{} [[r20]...,{}[r2m]],{}...,{} [[rn0]...,{}[rnm]] ],{} close1,{} close2)} adds a surface component to the \\spadtype{ThreeSpace} \\spad{s},{} which is defined over a rectangular domain of size \\spad{WxH} where \\spad{W} is the number of lists of points from the domain \\spad{PointDomain(R)} and \\spad{H} is the number of elements in each of those lists; the booleans \\spad{close1} and close2 indicate how the surface is to be closed: if \\spad{close1} is \\spad{true} this means that each individual list (a curve) is to be closed (\\spadignore{i.e.} the last point of the list is to be connected to the first point); if close2 is \\spad{true},{} this means that the boundary at one end of the surface is to be connected to the boundary at the other end (the boundaries are defined as the first list of points (curve) and the last list of points (curve)).") (($ $ (|List| (|List| (|Point| |#1|))) (|Boolean|) (|Boolean|)) "\\spad{mesh(s,{}[[p0],{}[p1],{}...,{}[pn]],{} close1,{} close2)} adds a surface component to the \\spadtype{ThreeSpace},{} which is defined over a list of curves,{} in which each of these curves is a list of points. The boolean arguments \\spad{close1} and close2 indicate how the surface is to be closed. Argument \\spad{close1} equal \\spad{true} means that each individual list (a curve) is to be closed,{} \\spadignore{i.e.} the last point of the list is to be connected to the first point. Argument close2 equal \\spad{true} means that the boundary at one end of the surface is to be connected to the boundary at the other end,{} \\spadignore{i.e.} the boundaries are defined as the first list of points (curve) and the last list of points (curve).") (($ $ (|List| (|List| (|List| |#1|))) (|List| (|SubSpaceComponentProperty|)) (|SubSpaceComponentProperty|)) "\\spad{mesh(s,{}[ [[r10]...,{}[r1m]],{} [[r20]...,{}[r2m]],{}...,{} [[rn0]...,{}[rnm]] ],{} [props],{} prop)} adds a surface component to the \\spadtype{ThreeSpace} \\spad{s},{} which is defined over a rectangular domain of size \\spad{WxH} where \\spad{W} is the number of lists of points from the domain \\spad{PointDomain(R)} and \\spad{H} is the number of elements in each of those lists; lprops is the list of the subspace component properties for each curve list,{} and prop is the subspace component property by which the points are defined.") (($ $ (|List| (|List| (|Point| |#1|))) (|List| (|SubSpaceComponentProperty|)) (|SubSpaceComponentProperty|)) "\\spad{mesh(s,{}[[p0],{}[p1],{}...,{}[pn]],{}[props],{}prop)} adds a surface component,{} defined over a list curves which contains lists of points,{} to the \\spadtype{ThreeSpace} \\spad{s}; props is a list which contains the subspace component properties for each surface parameter,{} and \\spad{prop} is the subspace component property by which the points are defined.")) (|polygon?| (((|Boolean|) $) "\\spad{polygon?(s)} returns \\spad{true} if the \\spadtype{ThreeSpace} \\spad{s} contains a single polygon component,{} or \\spad{false} otherwise.")) (|polygon| (((|List| (|Point| |#1|)) $) "\\spad{polygon(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a single polygon component defined by a list of points,{} and if so,{} returns the list of points; An error is signaled otherwise.") (($ (|List| (|Point| |#1|))) "\\spad{polygon([p0,{}p1,{}...,{}pn])} creates a polygon defined by a list of points,{} \\spad{p0} through \\spad{pn},{} and returns a \\spadtype{ThreeSpace} whose component is the polygon.") (($ $ (|List| (|List| |#1|))) "\\spad{polygon(s,{}[[r0],{}[r1],{}...,{}[rn]])} adds a polygon component defined by a list of points \\spad{r0} through \\spad{rn},{} which are lists of elements from the domain \\spad{PointDomain(m,{}R)} to the \\spadtype{ThreeSpace} \\spad{s},{} where \\spad{m} is the dimension of the points and \\spad{R} is the \\spadtype{Ring} over which the points are defined.") (($ $ (|List| (|Point| |#1|))) "\\spad{polygon(s,{}[p0,{}p1,{}...,{}pn])} adds a polygon component defined by a list of points,{} \\spad{p0} throught \\spad{pn},{} to the \\spadtype{ThreeSpace} \\spad{s}.")) (|closedCurve?| (((|Boolean|) $) "\\spad{closedCurve?(s)} returns \\spad{true} if the \\spadtype{ThreeSpace} \\spad{s} contains a single closed curve component,{} \\spadignore{i.e.} the first element of the curve is also the last element,{} or \\spad{false} otherwise.")) (|closedCurve| (((|List| (|Point| |#1|)) $) "\\spad{closedCurve(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a single closed curve component defined by a list of points in which the first point is also the last point,{} all of which are from the domain \\spad{PointDomain(m,{}R)} and if so,{} returns the list of points. An error is signaled otherwise.") (($ (|List| (|Point| |#1|))) "\\spad{closedCurve(lp)} sets a list of points defined by the first element of \\spad{lp} through the last element of \\spad{lp} and back to the first elelment again and returns a \\spadtype{ThreeSpace} whose component is the closed curve defined by \\spad{lp}.") (($ $ (|List| (|List| |#1|))) "\\spad{closedCurve(s,{}[[lr0],{}[lr1],{}...,{}[lrn],{}[lr0]])} adds a closed curve component defined by a list of points \\spad{lr0} through \\spad{lrn},{} which are lists of elements from the domain \\spad{PointDomain(m,{}R)},{} where \\spad{R} is the \\spadtype{Ring} over which the point elements are defined and \\spad{m} is the dimension of the points,{} in which the last element of the list of points contains a copy of the first element list,{} \\spad{lr0}. The closed curve is added to the \\spadtype{ThreeSpace},{} \\spad{s}.") (($ $ (|List| (|Point| |#1|))) "\\spad{closedCurve(s,{}[p0,{}p1,{}...,{}pn,{}p0])} adds a closed curve component which is a list of points defined by the first element \\spad{p0} through the last element \\spad{pn} and back to the first element \\spad{p0} again,{} to the \\spadtype{ThreeSpace} \\spad{s}.")) (|curve?| (((|Boolean|) $) "\\spad{curve?(s)} queries whether the \\spadtype{ThreeSpace},{} \\spad{s},{} is a curve,{} \\spadignore{i.e.} has one component,{} a list of list of points,{} and returns \\spad{true} if it is,{} or \\spad{false} otherwise.")) (|curve| (((|List| (|Point| |#1|)) $) "\\spad{curve(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a single curve defined by a list of points and if so,{} returns the curve,{} \\spadignore{i.e.} list of points. An error is signaled otherwise.") (($ (|List| (|Point| |#1|))) "\\spad{curve([p0,{}p1,{}p2,{}...,{}pn])} creates a space curve defined by the list of points \\spad{p0} through \\spad{pn},{} and returns the \\spadtype{ThreeSpace} whose component is the curve.") (($ $ (|List| (|List| |#1|))) "\\spad{curve(s,{}[[p0],{}[p1],{}...,{}[pn]])} adds a space curve which is a list of points \\spad{p0} through \\spad{pn} defined by lists of elements from the domain \\spad{PointDomain(m,{}R)},{} where \\spad{R} is the \\spadtype{Ring} over which the point elements are defined and \\spad{m} is the dimension of the points,{} to the \\spadtype{ThreeSpace} \\spad{s}.") (($ $ (|List| (|Point| |#1|))) "\\spad{curve(s,{}[p0,{}p1,{}...,{}pn])} adds a space curve component defined by a list of points \\spad{p0} through \\spad{pn},{} to the \\spadtype{ThreeSpace} \\spad{s}.")) (|point?| (((|Boolean|) $) "\\spad{point?(s)} queries whether the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of a single component which is a point and returns the boolean result.")) (|point| (((|Point| |#1|) $) "\\spad{point(s)} checks to see if the \\spadtype{ThreeSpace},{} \\spad{s},{} is composed of only a single point and if so,{} returns the point. An error is signaled otherwise.") (($ (|Point| |#1|)) "\\spad{point(p)} returns a \\spadtype{ThreeSpace} object which is composed of one component,{} the point \\spad{p}.") (($ $ (|NonNegativeInteger|)) "\\spad{point(s,{}i)} adds a point component which is placed into a component list of the \\spadtype{ThreeSpace},{} \\spad{s},{} at the index given by \\spad{i}.") (($ $ (|List| |#1|)) "\\spad{point(s,{}[x,{}y,{}z])} adds a point component defined by a list of elements which are from the \\spad{PointDomain(R)} to the \\spadtype{ThreeSpace},{} \\spad{s},{} where \\spad{R} is the \\spadtype{Ring} over which the point elements are defined.") (($ $ (|Point| |#1|)) "\\spad{point(s,{}p)} adds a point component defined by the point,{} \\spad{p},{} specified as a list from \\spad{List(R)},{} to the \\spadtype{ThreeSpace},{} \\spad{s},{} where \\spad{R} is the \\spadtype{Ring} over which the point is defined.")) (|modifyPointData| (($ $ (|NonNegativeInteger|) (|Point| |#1|)) "\\spad{modifyPointData(s,{}i,{}p)} changes the point at the indexed location \\spad{i} in the \\spadtype{ThreeSpace},{} \\spad{s},{} to that of point \\spad{p}. This is useful for making changes to a point which has been transformed.")) (|enterPointData| (((|NonNegativeInteger|) $ (|List| (|Point| |#1|))) "\\spad{enterPointData(s,{}[p0,{}p1,{}...,{}pn])} adds a list of points from \\spad{p0} through \\spad{pn} to the \\spadtype{ThreeSpace},{} \\spad{s},{} and returns the index,{} to the starting point of the list.")) (|copy| (($ $) "\\spad{copy(s)} returns a new \\spadtype{ThreeSpace} that is an exact copy of \\spad{s}.")) (|composites| (((|List| $) $) "\\spad{composites(s)} takes the \\spadtype{ThreeSpace} \\spad{s},{} and creates a list containing a unique \\spadtype{ThreeSpace} for each single composite of \\spad{s}. If \\spad{s} has no composites defined (composites need to be explicitly created),{} the list returned is empty. Note that not all the components need to be part of a composite.")) (|components| (((|List| $) $) "\\spad{components(s)} takes the \\spadtype{ThreeSpace} \\spad{s},{} and creates a list containing a unique \\spadtype{ThreeSpace} for each single component of \\spad{s}. If \\spad{s} has no components defined,{} the list returned is empty.")) (|composite| (($ (|List| $)) "\\spad{composite([s1,{}s2,{}...,{}sn])} will create a new \\spadtype{ThreeSpace} that is a union of all the components from each \\spadtype{ThreeSpace} in the parameter list,{} grouped as a composite.")) (|merge| (($ $ $) "\\spad{merge(s1,{}s2)} will create a new \\spadtype{ThreeSpace} that has the components of \\spad{s1} and \\spad{s2}; Groupings of components into composites are maintained.") (($ (|List| $)) "\\spad{merge([s1,{}s2,{}...,{}sn])} will create a new \\spadtype{ThreeSpace} that has the components of all the ones in the list; Groupings of components into composites are maintained.")) (|numberOfComposites| (((|NonNegativeInteger|) $) "\\spad{numberOfComposites(s)} returns the number of supercomponents,{} or composites,{} in the \\spadtype{ThreeSpace},{} \\spad{s}; Composites are arbitrary groupings of otherwise distinct and unrelated components; A \\spadtype{ThreeSpace} need not have any composites defined at all and,{} outside of the requirement that no component can belong to more than one composite at a time,{} the definition and interpretation of composites are unrestricted.")) (|numberOfComponents| (((|NonNegativeInteger|) $) "\\spad{numberOfComponents(s)} returns the number of distinct object components in the indicated \\spadtype{ThreeSpace},{} \\spad{s},{} such as points,{} curves,{} polygons,{} and constructs.")) (|create3Space| (($ (|SubSpace| 3 |#1|)) "\\spad{create3Space(s)} creates a \\spadtype{ThreeSpace} object containing objects pre-defined within some \\spadtype{SubSpace} \\spad{s}.") (($) "\\spad{create3Space()} creates a \\spadtype{ThreeSpace} object capable of holding point,{} curve,{} mesh components and any combination.")))
NIL
NIL
-(-1102)
+(-1101)
+((|constructor| (NIL "This domain represents a kind of base domain \\indented{2}{for Spad syntax domain.\\space{2}It merely exists as a kind of} \\indented{2}{of abstract base in object-oriented programming language.} \\indented{2}{However,{} this is not an abstract class.}")))
NIL
NIL
-NIL
-(-1103)
+(-1102)
((|constructor| (NIL "\\indented{1}{This package provides a simple Spad algebra parser.} Related Constructors: Syntax. See Also: Syntax.")) (|parse| (((|List| (|Syntax|)) (|String|)) "\\spad{parse(f)} parses the source file \\spad{f} (supposedly containing Spad algebras) and returns a List Syntax. The filename \\spad{f} is supposed to have the proper extension. Note that this function has the side effect of executing any system command contained in the file \\spad{f},{} even if it might not be meaningful.")))
NIL
NIL
-(-1104)
+(-1103)
((|constructor| (NIL "This category describes the exported \\indented{2}{signatures of the SpadAst domain.}")) (|autoCoerce| (((|IsAst|) $) "\\spad{autoCoerce(s)} returns the IsAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|HasAst|) $) "\\spad{autoCoerce(s)} returns the HasAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|CaseAst|) $) "\\spad{autoCoerce(s)} returns the CaseAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|ColonAst|) $) "\\spad{autoCoerce(s)} returns the ColoonAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|SuchThatAst|) $) "\\spad{autoCoerce(s)} returns the SuchThatAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|LetAst|) $) "\\spad{autoCoerce(s)} returns the LetAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|SequenceAst|) $) "\\spad{autoCoerce(s)} returns the SequenceAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|SegmentAst|) $) "\\spad{autoCoerce(s)} returns the SegmentAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|RestrictAst|) $) "\\spad{autoCoerce(s)} returns the RestrictAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|PretendAst|) $) "\\spad{autoCoerce(s)} returns the PretendAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|CoerceAst|) $) "\\spad{autoCoerce(s)} returns the CoerceAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|ReturnAst|) $) "\\spad{autoCoerce(s)} returns the ReturnAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|ExitAst|) $) "\\spad{autoCoerce(s)} returns the ExitAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|ConstructAst|) $) "\\spad{autoCoerce(s)} returns the ConstructAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|CollectAst|) $) "\\spad{autoCoerce(s)} returns the CollectAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|InAst|) $) "\\spad{autoCoerce(s)} returns the InAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|WhileAst|) $) "\\spad{autoCoerce(s)} returns the WhileAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|RepeatAst|) $) "\\spad{autoCoerce(s)} returns the RepeatAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|IfAst|) $) "\\spad{autoCoerce(s)} returns the IfAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|MappingAst|) $) "\\spad{autoCoerce(s)} returns the MappingAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|AttributeAst|) $) "\\spad{autoCoerce(s)} returns the AttributeAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|SignatureAst|) $) "\\spad{autoCoerce(s)} returns the SignatureAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|CapsuleAst|) $) "\\spad{autoCoerce(s)} returns the CapsuleAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|CategoryAst|) $) "\\spad{autoCoerce(s)} returns the CategoryAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|WhereAst|) $) "\\spad{autoCoerce(s)} returns the WhereAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|MacroAst|) $) "\\spad{autoCoerce(s)} returns the MacroAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|DefinitionAst|) $) "\\spad{autoCoerce(s)} returns the DefinitionAst view of \\spad{`s'}. Left at the discretion of the compiler.") (((|ImportAst|) $) "\\spad{autoCoerce(s)} returns the ImportAst view of \\spad{`s'}. Left at the discretion of the compiler.")) (|case| (((|Boolean|) $ (|[\|\|]| (|IsAst|))) "\\spad{s case IsAst} holds if \\spad{`s'} represents an is-expression.") (((|Boolean|) $ (|[\|\|]| (|HasAst|))) "\\spad{s case HasAst} holds if \\spad{`s'} represents a has-expression.") (((|Boolean|) $ (|[\|\|]| (|CaseAst|))) "\\spad{s case CaseAst} holds if \\spad{`s'} represents a case-expression.") (((|Boolean|) $ (|[\|\|]| (|ColonAst|))) "\\spad{s case ColonAst} holds if \\spad{`s'} represents a colon-expression.") (((|Boolean|) $ (|[\|\|]| (|SuchThatAst|))) "\\spad{s case SuchThatAst} holds if \\spad{`s'} represents a qualified-expression.") (((|Boolean|) $ (|[\|\|]| (|LetAst|))) "\\spad{s case LetAst} holds if \\spad{`s'} represents an assignment-expression.") (((|Boolean|) $ (|[\|\|]| (|SequenceAst|))) "\\spad{s case SequenceAst} holds if \\spad{`s'} represents a sequence-of-statements.") (((|Boolean|) $ (|[\|\|]| (|SegmentAst|))) "\\spad{s case SegmentAst} holds if \\spad{`s'} represents a segment-expression.") (((|Boolean|) $ (|[\|\|]| (|RestrictAst|))) "\\spad{s case RestrictAst} holds if \\spad{`s'} represents a restrict-expression.") (((|Boolean|) $ (|[\|\|]| (|PretendAst|))) "\\spad{s case PretendAst} holds if \\spad{`s'} represents a pretend-expression.") (((|Boolean|) $ (|[\|\|]| (|CoerceAst|))) "\\spad{s case ReturnAst} holds if \\spad{`s'} represents a coerce-expression.") (((|Boolean|) $ (|[\|\|]| (|ReturnAst|))) "\\spad{s case ReturnAst} holds if \\spad{`s'} represents a return-statement.") (((|Boolean|) $ (|[\|\|]| (|ExitAst|))) "\\spad{s case ExitAst} holds if \\spad{`s'} represents an exit-expression.") (((|Boolean|) $ (|[\|\|]| (|ConstructAst|))) "\\spad{s case ConstructAst} holds if \\spad{`s'} represents a list-expression.") (((|Boolean|) $ (|[\|\|]| (|CollectAst|))) "\\spad{s case CollectAst} holds if \\spad{`s'} represents a list-comprehension.") (((|Boolean|) $ (|[\|\|]| (|InAst|))) "\\spad{s case InAst} holds if \\spad{`s'} represents a in-iterator") (((|Boolean|) $ (|[\|\|]| (|WhileAst|))) "\\spad{s case WhileAst} holds if \\spad{`s'} represents a while-iterator") (((|Boolean|) $ (|[\|\|]| (|RepeatAst|))) "\\spad{s case RepeatAst} holds if \\spad{`s'} represents an repeat-loop.") (((|Boolean|) $ (|[\|\|]| (|IfAst|))) "\\spad{s case IfAst} holds if \\spad{`s'} represents an if-statement.") (((|Boolean|) $ (|[\|\|]| (|MappingAst|))) "\\spad{s case MappingAst} holds if \\spad{`s'} represents a mapping type.") (((|Boolean|) $ (|[\|\|]| (|AttributeAst|))) "\\spad{s case AttributeAst} holds if \\spad{`s'} represents an attribute.") (((|Boolean|) $ (|[\|\|]| (|SignatureAst|))) "\\spad{s case SignatureAst} holds if \\spad{`s'} represents a signature export.") (((|Boolean|) $ (|[\|\|]| (|CapsuleAst|))) "\\spad{s case CapsuleAst} holds if \\spad{`s'} represents a domain capsule.") (((|Boolean|) $ (|[\|\|]| (|CategoryAst|))) "\\spad{s case CategoryAst} holds if \\spad{`s'} represents an unnamed category.") (((|Boolean|) $ (|[\|\|]| (|WhereAst|))) "\\spad{s case WhereAst} holds if \\spad{`s'} represents an expression with local definitions.") (((|Boolean|) $ (|[\|\|]| (|MacroAst|))) "\\spad{s case MacroAst} holds if \\spad{`s'} represents a macro definition.") (((|Boolean|) $ (|[\|\|]| (|DefinitionAst|))) "\\spad{s case DefinitionAst} holds if \\spad{`s'} represents a definition.") (((|Boolean|) $ (|[\|\|]| (|ImportAst|))) "\\spad{s case ImportAst} holds if \\spad{`s'} represents an `import' statement.")))
-((-2624 . T))
+((-2623 . T))
NIL
-(-1105)
+(-1104)
((|constructor| (NIL "SpecialOutputPackage allows FORTRAN,{} Tex and \\indented{2}{Script Formula Formatter output from programs.}")) (|outputAsTex| (((|Void|) (|List| (|OutputForm|))) "\\spad{outputAsTex(l)} sends (for each expression in the list \\spad{l}) output in Tex format to the destination as defined by \\spadsyscom{set output tex}.") (((|Void|) (|OutputForm|)) "\\spad{outputAsTex(o)} sends output \\spad{o} in Tex format to the destination defined by \\spadsyscom{set output tex}.")) (|outputAsScript| (((|Void|) (|List| (|OutputForm|))) "\\spad{outputAsScript(l)} sends (for each expression in the list \\spad{l}) output in Script Formula Formatter format to the destination defined. by \\spadsyscom{set output forumula}.") (((|Void|) (|OutputForm|)) "\\spad{outputAsScript(o)} sends output \\spad{o} in Script Formula Formatter format to the destination defined by \\spadsyscom{set output formula}.")) (|outputAsFortran| (((|Void|) (|List| (|OutputForm|))) "\\spad{outputAsFortran(l)} sends (for each expression in the list \\spad{l}) output in FORTRAN format to the destination defined by \\spadsyscom{set output fortran}.") (((|Void|) (|OutputForm|)) "\\spad{outputAsFortran(o)} sends output \\spad{o} in FORTRAN format.") (((|Void|) (|String|) (|OutputForm|)) "\\spad{outputAsFortran(v,{}o)} sends output \\spad{v} = \\spad{o} in FORTRAN format to the destination defined by \\spadsyscom{set output fortran}.")))
NIL
NIL
-(-1106)
+(-1105)
((|constructor| (NIL "Category for the other special functions.")) (|airyBi| (($ $) "\\spad{airyBi(x)} is the Airy function \\spad{\\spad{Bi}(x)}.")) (|airyAi| (($ $) "\\spad{airyAi(x)} is the Airy function \\spad{\\spad{Ai}(x)}.")) (|besselK| (($ $ $) "\\spad{besselK(v,{}z)} is the modified Bessel function of the second kind.")) (|besselI| (($ $ $) "\\spad{besselI(v,{}z)} is the modified Bessel function of the first kind.")) (|besselY| (($ $ $) "\\spad{besselY(v,{}z)} is the Bessel function of the second kind.")) (|besselJ| (($ $ $) "\\spad{besselJ(v,{}z)} is the Bessel function of the first kind.")) (|polygamma| (($ $ $) "\\spad{polygamma(k,{}x)} is the \\spad{k-th} derivative of \\spad{digamma(x)},{} (often written \\spad{psi(k,{}x)} in the literature).")) (|digamma| (($ $) "\\spad{digamma(x)} is the logarithmic derivative of \\spad{Gamma(x)} (often written \\spad{psi(x)} in the literature).")) (|Beta| (($ $ $) "\\spad{Beta(x,{}y)} is \\spad{Gamma(x) * Gamma(y)/Gamma(x+y)}.")) (|Gamma| (($ $ $) "\\spad{Gamma(a,{}x)} is the incomplete Gamma function.") (($ $) "\\spad{Gamma(x)} is the Euler Gamma function.")) (|abs| (($ $) "\\spad{abs(x)} returns the absolute value of \\spad{x}.")))
NIL
NIL
-(-1107 V C)
+(-1106 V C)
((|constructor| (NIL "This domain exports a modest implementation for the vertices of splitting trees. These vertices are called here splitting nodes. Every of these nodes store 3 informations. The first one is its value,{} that is the current expression to evaluate. The second one is its condition,{} that is the hypothesis under which the value has to be evaluated. The last one is its status,{} that is a boolean flag which is \\spad{true} iff the value is the result of its evaluation under its condition. Two splitting vertices are equal iff they have the sane values and the same conditions (so their status do not matter).")) (|subNode?| (((|Boolean|) $ $ (|Mapping| (|Boolean|) |#2| |#2|)) "\\axiom{subNode?(\\spad{n1},{}\\spad{n2},{}o2)} returns \\spad{true} iff \\axiom{value(\\spad{n1}) = value(\\spad{n2})} and \\axiom{o2(condition(\\spad{n1}),{}condition(\\spad{n2}))}")) (|infLex?| (((|Boolean|) $ $ (|Mapping| (|Boolean|) |#1| |#1|) (|Mapping| (|Boolean|) |#2| |#2|)) "\\axiom{infLex?(\\spad{n1},{}\\spad{n2},{}o1,{}o2)} returns \\spad{true} iff \\axiom{o1(value(\\spad{n1}),{}value(\\spad{n2}))} or \\axiom{value(\\spad{n1}) = value(\\spad{n2})} and \\axiom{o2(condition(\\spad{n1}),{}condition(\\spad{n2}))}.")) (|setEmpty!| (($ $) "\\axiom{setEmpty!(\\spad{n})} replaces \\spad{n} by \\axiom{empty()\\$\\%}.")) (|setStatus!| (($ $ (|Boolean|)) "\\axiom{setStatus!(\\spad{n},{}\\spad{b})} returns \\spad{n} whose status has been replaced by \\spad{b} if it is not empty,{} else an error is produced.")) (|setCondition!| (($ $ |#2|) "\\axiom{setCondition!(\\spad{n},{}\\spad{t})} returns \\spad{n} whose condition has been replaced by \\spad{t} if it is not empty,{} else an error is produced.")) (|setValue!| (($ $ |#1|) "\\axiom{setValue!(\\spad{n},{}\\spad{v})} returns \\spad{n} whose value has been replaced by \\spad{v} if it is not empty,{} else an error is produced.")) (|copy| (($ $) "\\axiom{copy(\\spad{n})} returns a copy of \\spad{n}.")) (|construct| (((|List| $) |#1| (|List| |#2|)) "\\axiom{construct(\\spad{v},{}\\spad{lt})} returns the same as \\axiom{[construct(\\spad{v},{}\\spad{t}) for \\spad{t} in \\spad{lt}]}") (((|List| $) (|List| (|Record| (|:| |val| |#1|) (|:| |tower| |#2|)))) "\\axiom{construct(\\spad{lvt})} returns the same as \\axiom{[construct(\\spad{vt}.val,{}\\spad{vt}.tower) for \\spad{vt} in \\spad{lvt}]}") (($ (|Record| (|:| |val| |#1|) (|:| |tower| |#2|))) "\\axiom{construct(\\spad{vt})} returns the same as \\axiom{construct(\\spad{vt}.val,{}\\spad{vt}.tower)}") (($ |#1| |#2|) "\\axiom{construct(\\spad{v},{}\\spad{t})} returns the same as \\axiom{construct(\\spad{v},{}\\spad{t},{}\\spad{false})}") (($ |#1| |#2| (|Boolean|)) "\\axiom{construct(\\spad{v},{}\\spad{t},{}\\spad{b})} returns the non-empty node with value \\spad{v},{} condition \\spad{t} and flag \\spad{b}")) (|status| (((|Boolean|) $) "\\axiom{status(\\spad{n})} returns the status of the node \\spad{n}.")) (|condition| ((|#2| $) "\\axiom{condition(\\spad{n})} returns the condition of the node \\spad{n}.")) (|value| ((|#1| $) "\\axiom{value(\\spad{n})} returns the value of the node \\spad{n}.")) (|empty?| (((|Boolean|) $) "\\axiom{empty?(\\spad{n})} returns \\spad{true} iff the node \\spad{n} is \\axiom{empty()\\$\\%}.")) (|empty| (($) "\\axiom{empty()} returns the same as \\axiom{[empty()\\$\\spad{V},{}empty()\\$\\spad{C},{}\\spad{false}]\\$\\%}")))
NIL
NIL
-(-1108 V C)
+(-1107 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.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| (-1107 |#1| |#2|) (LIST (QUOTE -302) (LIST (QUOTE -1107) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1107 |#1| |#2|) (QUOTE (-1067)))) (|HasCategory| (-1107 |#1| |#2|) (QUOTE (-1067))) (-1536 (|HasCategory| (-1107 |#1| |#2|) (LIST (QUOTE -593) (QUOTE (-834)))) (-12 (|HasCategory| (-1107 |#1| |#2|) (LIST (QUOTE -302) (LIST (QUOTE -1107) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1107 |#1| |#2|) (QUOTE (-1067))))) (|HasCategory| (-1107 |#1| |#2|) (LIST (QUOTE -593) (QUOTE (-834)))))
-(-1109 |ndim| R)
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| (-1106 |#1| |#2|) (LIST (QUOTE -302) (LIST (QUOTE -1106) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1106 |#1| |#2|) (QUOTE (-1066)))) (|HasCategory| (-1106 |#1| |#2|) (QUOTE (-1066))) (-1536 (|HasCategory| (-1106 |#1| |#2|) (LIST (QUOTE -593) (QUOTE (-834)))) (-12 (|HasCategory| (-1106 |#1| |#2|) (LIST (QUOTE -302) (LIST (QUOTE -1106) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1106 |#1| |#2|) (QUOTE (-1066))))) (|HasCategory| (-1106 |#1| |#2|) (LIST (QUOTE -593) (QUOTE (-834)))))
+(-1108 |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.")) (|coerce| (((|Matrix| |#2|) $) "\\spad{coerce(m)} converts a matrix of type \\spadtype{SquareMatrix} to a matrix of type \\spadtype{Matrix}.")) (|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}.")))
-((-4334 . T) (-4326 |has| |#2| (-6 (-4339 "*"))) (-4337 . T) (-4331 . T) (-4332 . T))
-((|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-227))) (|HasAttribute| |#2| (QUOTE (-4339 "*"))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (-1536 (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-300))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (QUOTE (-356))) (-1536 (|HasAttribute| |#2| (QUOTE (-4339 "*"))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#2| (QUOTE (-227)))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-170))))
-(-1110 S)
+((-4333 . T) (-4325 |has| |#2| (-6 (-4338 "*"))) (-4336 . T) (-4330 . T) (-4331 . T))
+((|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-227))) (|HasAttribute| |#2| (QUOTE (-4338 "*"))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (-1536 (-12 (|HasCategory| |#2| (QUOTE (-227))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (QUOTE (-300))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (QUOTE (-356))) (-1536 (|HasAttribute| |#2| (QUOTE (-4338 "*"))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#2| (QUOTE (-227)))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-170))))
+(-1109 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
-(-1111)
+(-1110)
((|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.")))
-((-4338 . T) (-4337 . T) (-2624 . T))
+((-4337 . T) (-4336 . T) (-2623 . T))
NIL
-(-1112 R E V P TS)
+(-1111 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.}")))
NIL
NIL
-(-1113 R E V P)
+(-1112 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.")))
-((-4338 . T) (-4337 . T))
-((-12 (|HasCategory| |#4| (QUOTE (-1067))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#4| (QUOTE (-1067))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#4| (LIST (QUOTE -593) (QUOTE (-834)))))
-(-1114 S)
+((-4337 . T) (-4336 . T))
+((-12 (|HasCategory| |#4| (QUOTE (-1066))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#4| (QUOTE (-1066))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#4| (LIST (QUOTE -593) (QUOTE (-834)))))
+(-1113 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}.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
-(-1115 A S)
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+(-1114 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})}.")))
NIL
NIL
-(-1116 S)
+(-1115 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})}.")))
-((-2624 . T))
+((-2623 . T))
NIL
-(-1117 |Key| |Ent| |dent|)
+(-1116 |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.")))
-((-4338 . T))
-((-12 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3337) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1793) (|devaluate| |#2|)))))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| |#2| (QUOTE (-1067)))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-823))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))))
-(-1118)
+((-4337 . T))
+((-12 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3336) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1791) (|devaluate| |#2|)))))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| |#2| (QUOTE (-1066)))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-823))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))))
+(-1117)
((|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
NIL
-(-1119 |Coef|)
+(-1118 |Coef|)
((|constructor| (NIL "This package computes infinite products of Taylor series over an integral domain of characteristic 0. Here Taylor series are represented by streams of Taylor coefficients.")) (|generalInfiniteProduct| (((|Stream| |#1|) (|Stream| |#1|) (|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| (((|Stream| |#1|) (|Stream| |#1|)) "\\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| (((|Stream| |#1|) (|Stream| |#1|)) "\\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| (((|Stream| |#1|) (|Stream| |#1|)) "\\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
-(-1120 S)
+(-1119 S)
((|constructor| (NIL "Functions defined on streams with entries in one set.")) (|concat| (((|Stream| |#1|) (|Stream| (|Stream| |#1|))) "\\spad{concat(u)} returns the left-to-right concatentation of the streams in \\spad{u}. Note: \\spad{concat(u) = reduce(concat,{}u)}.")))
NIL
NIL
-(-1121 A B)
+(-1120 A B)
((|constructor| (NIL "Functions defined on streams with entries in two sets.")) (|reduce| ((|#2| |#2| (|Mapping| |#2| |#1| |#2|) (|Stream| |#1|)) "\\spad{reduce(b,{}f,{}u)},{} where \\spad{u} is a finite stream \\spad{[x0,{}x1,{}...,{}xn]},{} returns the value \\spad{r(n)} computed as follows: \\spad{r0 = f(x0,{}b),{} r1 = f(x1,{}r0),{}...,{} r(n) = f(xn,{}r(n-1))}.")) (|scan| (((|Stream| |#2|) |#2| (|Mapping| |#2| |#1| |#2|) (|Stream| |#1|)) "\\spad{scan(b,{}h,{}[x0,{}x1,{}x2,{}...])} returns \\spad{[y0,{}y1,{}y2,{}...]},{} where \\spad{y0 = h(x0,{}b)},{} \\spad{y1 = h(x1,{}y0)},{}\\spad{...} \\spad{yn = h(xn,{}y(n-1))}.")) (|map| (((|Stream| |#2|) (|Mapping| |#2| |#1|) (|Stream| |#1|)) "\\spad{map(f,{}s)} returns a stream whose elements are the function \\spad{f} applied to the corresponding elements of \\spad{s}. Note: \\spad{map(f,{}[x0,{}x1,{}x2,{}...]) = [f(x0),{}f(x1),{}f(x2),{}..]}.")))
NIL
NIL
-(-1122 A B C)
+(-1121 A B C)
((|constructor| (NIL "Functions defined on streams with entries in three sets.")) (|map| (((|Stream| |#3|) (|Mapping| |#3| |#1| |#2|) (|Stream| |#1|) (|Stream| |#2|)) "\\spad{map(f,{}st1,{}st2)} returns the stream whose elements are the function \\spad{f} applied to the corresponding elements of \\spad{st1} and \\spad{st2}. Note: \\spad{map(f,{}[x0,{}x1,{}x2,{}..],{}[y0,{}y1,{}y2,{}..]) = [f(x0,{}y0),{}f(x1,{}y1),{}..]}.")))
NIL
NIL
-(-1123 S)
+(-1122 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}.")) (|coerce| (($ (|List| |#1|)) "\\spad{coerce(l)} converts a list \\spad{l} to a stream.")) (|shallowlyMutable| ((|attribute|) "one may destructively alter a stream by assigning new values to its entries.")))
-((-4338 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
-(-1124)
+((-4337 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+(-1123)
((|constructor| (NIL "A category for string-like objects")) (|string| (($ (|Integer|)) "\\spad{string(i)} returns the decimal representation of \\spad{i} in a string")))
-((-4338 . T) (-4337 . T) (-2624 . T))
+((-4337 . T) (-4336 . T) (-2623 . T))
NIL
-(-1125)
+(-1124)
NIL
-((-4338 . T) (-4337 . T))
-((-1536 (-12 (|HasCategory| (-142) (QUOTE (-823))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142))))) (-12 (|HasCategory| (-142) (QUOTE (-1067))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142)))))) (|HasCategory| (-142) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-142) (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-142) (QUOTE (-1067))) (-12 (|HasCategory| (-142) (QUOTE (-1067))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142))))) (|HasCategory| (-142) (LIST (QUOTE -593) (QUOTE (-834)))))
-(-1126 |Entry|)
+((-4337 . T) (-4336 . T))
+((-1536 (-12 (|HasCategory| (-142) (QUOTE (-823))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142))))) (-12 (|HasCategory| (-142) (QUOTE (-1066))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142)))))) (|HasCategory| (-142) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| (-142) (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| (-142) (QUOTE (-1066))) (-12 (|HasCategory| (-142) (QUOTE (-1066))) (|HasCategory| (-142) (LIST (QUOTE -302) (QUOTE (-142))))) (|HasCategory| (-142) (LIST (QUOTE -593) (QUOTE (-834)))))
+(-1125 |Entry|)
((|constructor| (NIL "This domain provides tables where the keys are strings. A specialized hash function for strings is used.")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3337) (QUOTE (-1125))) (LIST (QUOTE |:|) (QUOTE -1793) (|devaluate| |#1|)))))) (-1536 (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (QUOTE (-1067))) (|HasCategory| |#1| (QUOTE (-1067)))) (-1536 (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (QUOTE (-1067))) (|HasCategory| (-1125) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (LIST (QUOTE -593) (QUOTE (-834)))))
-(-1127 A)
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3336) (QUOTE (-1124))) (LIST (QUOTE |:|) (QUOTE -1791) (|devaluate| |#1|)))))) (-1536 (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (QUOTE (-1066))) (|HasCategory| |#1| (QUOTE (-1066)))) (-1536 (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (QUOTE (-1066))) (|HasCategory| (-1124) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (LIST (QUOTE -593) (QUOTE (-834)))))
+(-1126 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
((|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))))
-(-1128 |Coef|)
+(-1127 |Coef|)
((|constructor| (NIL "StreamTranscendentalFunctionsNonCommutative implements transcendental functions on Taylor series over a non-commutative ring,{} where a Taylor series is represented by a stream of its coefficients.")) (|acsch| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acsch(st)} computes the inverse hyperbolic cosecant of a power series \\spad{st}.")) (|asech| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{asech(st)} computes the inverse hyperbolic secant of a power series \\spad{st}.")) (|acoth| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acoth(st)} computes the inverse hyperbolic cotangent of a power series \\spad{st}.")) (|atanh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{atanh(st)} computes the inverse hyperbolic tangent of a power series \\spad{st}.")) (|acosh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acosh(st)} computes the inverse hyperbolic cosine of a power series \\spad{st}.")) (|asinh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{asinh(st)} computes the inverse hyperbolic sine of a power series \\spad{st}.")) (|csch| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{csch(st)} computes the hyperbolic cosecant of a power series \\spad{st}.")) (|sech| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{sech(st)} computes the hyperbolic secant of a power series \\spad{st}.")) (|coth| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{coth(st)} computes the hyperbolic cotangent of a power series \\spad{st}.")) (|tanh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{tanh(st)} computes the hyperbolic tangent of a power series \\spad{st}.")) (|cosh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{cosh(st)} computes the hyperbolic cosine of a power series \\spad{st}.")) (|sinh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{sinh(st)} computes the hyperbolic sine of a power series \\spad{st}.")) (|acsc| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acsc(st)} computes arccosecant of a power series \\spad{st}.")) (|asec| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{asec(st)} computes arcsecant of a power series \\spad{st}.")) (|acot| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acot(st)} computes arccotangent of a power series \\spad{st}.")) (|atan| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{atan(st)} computes arctangent of a power series \\spad{st}.")) (|acos| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acos(st)} computes arccosine of a power series \\spad{st}.")) (|asin| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{asin(st)} computes arcsine of a power series \\spad{st}.")) (|csc| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{csc(st)} computes cosecant of a power series \\spad{st}.")) (|sec| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{sec(st)} computes secant of a power series \\spad{st}.")) (|cot| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{cot(st)} computes cotangent of a power series \\spad{st}.")) (|tan| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{tan(st)} computes tangent of a power series \\spad{st}.")) (|cos| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{cos(st)} computes cosine of a power series \\spad{st}.")) (|sin| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{sin(st)} computes sine of a power series \\spad{st}.")) (** (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{st1 ** st2} computes the power of a power series \\spad{st1} by another power series \\spad{st2}.")) (|log| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{log(st)} computes the log of a power series.")) (|exp| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{exp(st)} computes the exponential of a power series \\spad{st}.")))
NIL
NIL
-(-1129 |Coef|)
+(-1128 |Coef|)
((|constructor| (NIL "StreamTranscendentalFunctions implements transcendental functions on Taylor series,{} where a Taylor series is represented by a stream of its coefficients.")) (|acsch| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acsch(st)} computes the inverse hyperbolic cosecant of a power series \\spad{st}.")) (|asech| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{asech(st)} computes the inverse hyperbolic secant of a power series \\spad{st}.")) (|acoth| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acoth(st)} computes the inverse hyperbolic cotangent of a power series \\spad{st}.")) (|atanh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{atanh(st)} computes the inverse hyperbolic tangent of a power series \\spad{st}.")) (|acosh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acosh(st)} computes the inverse hyperbolic cosine of a power series \\spad{st}.")) (|asinh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{asinh(st)} computes the inverse hyperbolic sine of a power series \\spad{st}.")) (|csch| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{csch(st)} computes the hyperbolic cosecant of a power series \\spad{st}.")) (|sech| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{sech(st)} computes the hyperbolic secant of a power series \\spad{st}.")) (|coth| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{coth(st)} computes the hyperbolic cotangent of a power series \\spad{st}.")) (|tanh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{tanh(st)} computes the hyperbolic tangent of a power series \\spad{st}.")) (|cosh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{cosh(st)} computes the hyperbolic cosine of a power series \\spad{st}.")) (|sinh| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{sinh(st)} computes the hyperbolic sine of a power series \\spad{st}.")) (|sinhcosh| (((|Record| (|:| |sinh| (|Stream| |#1|)) (|:| |cosh| (|Stream| |#1|))) (|Stream| |#1|)) "\\spad{sinhcosh(st)} returns a record containing the hyperbolic sine and cosine of a power series \\spad{st}.")) (|acsc| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acsc(st)} computes arccosecant of a power series \\spad{st}.")) (|asec| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{asec(st)} computes arcsecant of a power series \\spad{st}.")) (|acot| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acot(st)} computes arccotangent of a power series \\spad{st}.")) (|atan| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{atan(st)} computes arctangent of a power series \\spad{st}.")) (|acos| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{acos(st)} computes arccosine of a power series \\spad{st}.")) (|asin| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{asin(st)} computes arcsine of a power series \\spad{st}.")) (|csc| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{csc(st)} computes cosecant of a power series \\spad{st}.")) (|sec| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{sec(st)} computes secant of a power series \\spad{st}.")) (|cot| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{cot(st)} computes cotangent of a power series \\spad{st}.")) (|tan| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{tan(st)} computes tangent of a power series \\spad{st}.")) (|cos| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{cos(st)} computes cosine of a power series \\spad{st}.")) (|sin| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{sin(st)} computes sine of a power series \\spad{st}.")) (|sincos| (((|Record| (|:| |sin| (|Stream| |#1|)) (|:| |cos| (|Stream| |#1|))) (|Stream| |#1|)) "\\spad{sincos(st)} returns a record containing the sine and cosine of a power series \\spad{st}.")) (** (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{st1 ** st2} computes the power of a power series \\spad{st1} by another power series \\spad{st2}.")) (|log| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{log(st)} computes the log of a power series.")) (|exp| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{exp(st)} computes the exponential of a power series \\spad{st}.")))
NIL
NIL
-(-1130 R UP)
+(-1129 R UP)
((|constructor| (NIL "This package computes the subresultants of two polynomials which is needed for the `Lazard Rioboo' enhancement to Tragers integrations formula For efficiency reasons this has been rewritten to call Lionel Ducos package which is currently the best one. \\blankline")) (|primitivePart| ((|#2| |#2| |#1|) "\\spad{primitivePart(p,{} q)} reduces the coefficient of \\spad{p} modulo \\spad{q},{} takes the primitive part of the result,{} and ensures that the leading coefficient of that result is monic.")) (|subresultantVector| (((|PrimitiveArray| |#2|) |#2| |#2|) "\\spad{subresultantVector(p,{} q)} returns \\spad{[p0,{}...,{}pn]} where \\spad{pi} is the \\spad{i}-th subresultant of \\spad{p} and \\spad{q}. In particular,{} \\spad{p0 = resultant(p,{} q)}.")))
NIL
((|HasCategory| |#1| (QUOTE (-300))))
-(-1131 |n| R)
+(-1130 |n| R)
((|constructor| (NIL "This domain \\undocumented")) (|pointData| (((|List| (|Point| |#2|)) $) "\\spad{pointData(s)} returns the list of points from the point data field of the 3 dimensional subspace \\spad{s}.")) (|parent| (($ $) "\\spad{parent(s)} returns the subspace which is the parent of the indicated 3 dimensional subspace \\spad{s}. If \\spad{s} is the top level subspace an error message is returned.")) (|level| (((|NonNegativeInteger|) $) "\\spad{level(s)} returns a non negative integer which is the current level field of the indicated 3 dimensional subspace \\spad{s}.")) (|extractProperty| (((|SubSpaceComponentProperty|) $) "\\spad{extractProperty(s)} returns the property of domain \\spadtype{SubSpaceComponentProperty} of the indicated 3 dimensional subspace \\spad{s}.")) (|extractClosed| (((|Boolean|) $) "\\spad{extractClosed(s)} returns the \\spadtype{Boolean} value of the closed property for the indicated 3 dimensional subspace \\spad{s}. If the property is closed,{} \\spad{True} is returned,{} otherwise \\spad{False} is returned.")) (|extractIndex| (((|NonNegativeInteger|) $) "\\spad{extractIndex(s)} returns a non negative integer which is the current index of the 3 dimensional subspace \\spad{s}.")) (|extractPoint| (((|Point| |#2|) $) "\\spad{extractPoint(s)} returns the point which is given by the current index location into the point data field of the 3 dimensional subspace \\spad{s}.")) (|traverse| (($ $ (|List| (|NonNegativeInteger|))) "\\spad{traverse(s,{}\\spad{li})} follows the branch list of the 3 dimensional subspace,{} \\spad{s},{} along the path dictated by the list of non negative integers,{} \\spad{li},{} which points to the component which has been traversed to. The subspace,{} \\spad{s},{} is returned,{} where \\spad{s} is now the subspace pointed to by \\spad{li}.")) (|defineProperty| (($ $ (|List| (|NonNegativeInteger|)) (|SubSpaceComponentProperty|)) "\\spad{defineProperty(s,{}\\spad{li},{}p)} defines the component property in the 3 dimensional subspace,{} \\spad{s},{} to be that of \\spad{p},{} where \\spad{p} is of the domain \\spadtype{SubSpaceComponentProperty}. The list of non negative integers,{} \\spad{li},{} dictates the path to follow,{} or,{} to look at it another way,{} points to the component whose property is being defined. The subspace,{} \\spad{s},{} is returned with the component property definition.")) (|closeComponent| (($ $ (|List| (|NonNegativeInteger|)) (|Boolean|)) "\\spad{closeComponent(s,{}\\spad{li},{}b)} sets the property of the component in the 3 dimensional subspace,{} \\spad{s},{} to be closed if \\spad{b} is \\spad{true},{} or open if \\spad{b} is \\spad{false}. The list of non negative integers,{} \\spad{li},{} dictates the path to follow,{} or,{} to look at it another way,{} points to the component whose closed property is to be set. The subspace,{} \\spad{s},{} is returned with the component property modification.")) (|modifyPoint| (($ $ (|NonNegativeInteger|) (|Point| |#2|)) "\\spad{modifyPoint(s,{}ind,{}p)} modifies the point referenced by the index location,{} \\spad{ind},{} by replacing it with the point,{} \\spad{p} in the 3 dimensional subspace,{} \\spad{s}. An error message occurs if \\spad{s} is empty,{} otherwise the subspace \\spad{s} is returned with the point modification.") (($ $ (|List| (|NonNegativeInteger|)) (|NonNegativeInteger|)) "\\spad{modifyPoint(s,{}\\spad{li},{}i)} replaces an existing point in the 3 dimensional subspace,{} \\spad{s},{} with the 4 dimensional point indicated by the index location,{} \\spad{i}. The list of non negative integers,{} \\spad{li},{} dictates the path to follow,{} or,{} to look at it another way,{} points to the component in which the existing point is to be modified. An error message occurs if \\spad{s} is empty,{} otherwise the subspace \\spad{s} is returned with the point modification.") (($ $ (|List| (|NonNegativeInteger|)) (|Point| |#2|)) "\\spad{modifyPoint(s,{}\\spad{li},{}p)} replaces an existing point in the 3 dimensional subspace,{} \\spad{s},{} with the 4 dimensional point,{} \\spad{p}. The list of non negative integers,{} \\spad{li},{} dictates the path to follow,{} or,{} to look at it another way,{} points to the component in which the existing point is to be modified. An error message occurs if \\spad{s} is empty,{} otherwise the subspace \\spad{s} is returned with the point modification.")) (|addPointLast| (($ $ $ (|Point| |#2|) (|NonNegativeInteger|)) "\\spad{addPointLast(s,{}s2,{}\\spad{li},{}p)} adds the 4 dimensional point,{} \\spad{p},{} to the 3 dimensional subspace,{} \\spad{s}. \\spad{s2} point to the end of the subspace \\spad{s}. \\spad{n} is the path in the \\spad{s2} component. The subspace \\spad{s} is returned with the additional point.")) (|addPoint2| (($ $ (|Point| |#2|)) "\\spad{addPoint2(s,{}p)} adds the 4 dimensional point,{} \\spad{p},{} to the 3 dimensional subspace,{} \\spad{s}. The subspace \\spad{s} is returned with the additional point.")) (|addPoint| (((|NonNegativeInteger|) $ (|Point| |#2|)) "\\spad{addPoint(s,{}p)} adds the point,{} \\spad{p},{} to the 3 dimensional subspace,{} \\spad{s},{} and returns the new total number of points in \\spad{s}.") (($ $ (|List| (|NonNegativeInteger|)) (|NonNegativeInteger|)) "\\spad{addPoint(s,{}\\spad{li},{}i)} adds the 4 dimensional point indicated by the index location,{} \\spad{i},{} to the 3 dimensional subspace,{} \\spad{s}. The list of non negative integers,{} \\spad{li},{} dictates the path to follow,{} or,{} to look at it another way,{} points to the component in which the point is to be added. It\\spad{'s} length should range from 0 to \\spad{n - 1} where \\spad{n} is the dimension of the subspace. If the length is \\spad{n - 1},{} then a specific lowest level component is being referenced. If it is less than \\spad{n - 1},{} then some higher level component (0 indicates top level component) is being referenced and a component of that level with the desired point is created. The subspace \\spad{s} is returned with the additional point.") (($ $ (|List| (|NonNegativeInteger|)) (|Point| |#2|)) "\\spad{addPoint(s,{}\\spad{li},{}p)} adds the 4 dimensional point,{} \\spad{p},{} to the 3 dimensional subspace,{} \\spad{s}. The list of non negative integers,{} \\spad{li},{} dictates the path to follow,{} or,{} to look at it another way,{} points to the component in which the point is to be added. It\\spad{'s} length should range from 0 to \\spad{n - 1} where \\spad{n} is the dimension of the subspace. If the length is \\spad{n - 1},{} then a specific lowest level component is being referenced. If it is less than \\spad{n - 1},{} then some higher level component (0 indicates top level component) is being referenced and a component of that level with the desired point is created. The subspace \\spad{s} is returned with the additional point.")) (|separate| (((|List| $) $) "\\spad{separate(s)} makes each of the components of the \\spadtype{SubSpace},{} \\spad{s},{} into a list of separate and distinct subspaces and returns the list.")) (|merge| (($ (|List| $)) "\\spad{merge(ls)} a list of subspaces,{} \\spad{ls},{} into one subspace.") (($ $ $) "\\spad{merge(s1,{}s2)} the subspaces \\spad{s1} and \\spad{s2} into a single subspace.")) (|deepCopy| (($ $) "\\spad{deepCopy(x)} \\undocumented")) (|shallowCopy| (($ $) "\\spad{shallowCopy(x)} \\undocumented")) (|numberOfChildren| (((|NonNegativeInteger|) $) "\\spad{numberOfChildren(x)} \\undocumented")) (|children| (((|List| $) $) "\\spad{children(x)} \\undocumented")) (|child| (($ $ (|NonNegativeInteger|)) "\\spad{child(x,{}n)} \\undocumented")) (|birth| (($ $) "\\spad{birth(x)} \\undocumented")) (|subspace| (($) "\\spad{subspace()} \\undocumented")) (|new| (($) "\\spad{new()} \\undocumented")) (|internal?| (((|Boolean|) $) "\\spad{internal?(x)} \\undocumented")) (|root?| (((|Boolean|) $) "\\spad{root?(x)} \\undocumented")) (|leaf?| (((|Boolean|) $) "\\spad{leaf?(x)} \\undocumented")))
NIL
NIL
-(-1132 S1 S2)
+(-1131 S1 S2)
((|constructor| (NIL "This domain implements \"such that\" forms")) (|rhs| ((|#2| $) "\\spad{rhs(f)} returns the right side of \\spad{f}")) (|lhs| ((|#1| $) "\\spad{lhs(f)} returns the left side of \\spad{f}")) (|construct| (($ |#1| |#2|) "\\spad{construct(s,{}t)} makes a form \\spad{s:t}")))
NIL
NIL
-(-1133)
-((|constructor| (NIL "This domain represents the filter iterator syntax.")) (|predicate| (((|Syntax|) $) "\\spad{predicate(e)} returns the syntax object for the predicate in the filter iterator syntax `e'.")))
+(-1132)
+((|constructor| (NIL "This domain represents the filter iterator syntax.")) (|predicate| (((|SpadAst|) $) "\\spad{predicate(e)} returns the syntax object for the predicate in the filter iterator syntax `e'.")))
NIL
NIL
-(-1134 |Coef| |var| |cen|)
+(-1133 |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.")))
-(((-4339 "*") -1536 (-1821 (|has| |#1| (-356)) (|has| (-1141 |#1| |#2| |#3|) (-796))) (|has| |#1| (-170)) (-1821 (|has| |#1| (-356)) (|has| (-1141 |#1| |#2| |#3|) (-880)))) (-4330 -1536 (-1821 (|has| |#1| (-356)) (|has| (-1141 |#1| |#2| |#3|) (-796))) (|has| |#1| (-541)) (-1821 (|has| |#1| (-356)) (|has| (-1141 |#1| |#2| |#3|) (-880)))) (-4335 |has| |#1| (-356)) (-4329 |has| |#1| (-356)) (-4331 . T) (-4332 . T) (-4334 . T))
-((-1536 (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-993))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-1118))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -279) (LIST (QUOTE -1141) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1141) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -302) (LIST (QUOTE -1141) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -505) (QUOTE (-1143)) (LIST (QUOTE -1141) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-1143)))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-143)))) (-1536 (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-145)))) (-1536 (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-549)) (|devaluate| |#1|)))))) (-1536 (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-227))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-549)) (|devaluate| |#1|))))) (|HasCategory| (-549) (QUOTE (-1079))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-356))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-1143)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-993))) (|HasCategory| |#1| (QUOTE (-356)))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-1536 (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-356))))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-1118))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -279) (LIST (QUOTE -1141) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1141) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -302) (LIST (QUOTE -1141) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -505) (QUOTE (-1143)) (LIST (QUOTE -1141) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3846) (LIST (|devaluate| |#1|) (QUOTE (-1143)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-549))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1165))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3893) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1143))))) (|HasSignature| |#1| (LIST (QUOTE -2272) (LIST (LIST (QUOTE -621) (QUOTE (-1143))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-143))) (-1536 (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-1536 (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-170)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1141 |#1| |#2| |#3|) (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-143)))))
-(-1135 R -1422)
+(((-4338 "*") -1536 (-1819 (|has| |#1| (-356)) (|has| (-1140 |#1| |#2| |#3|) (-796))) (|has| |#1| (-170)) (-1819 (|has| |#1| (-356)) (|has| (-1140 |#1| |#2| |#3|) (-880)))) (-4329 -1536 (-1819 (|has| |#1| (-356)) (|has| (-1140 |#1| |#2| |#3|) (-796))) (|has| |#1| (-541)) (-1819 (|has| |#1| (-356)) (|has| (-1140 |#1| |#2| |#3|) (-880)))) (-4334 |has| |#1| (-356)) (-4328 |has| |#1| (-356)) (-4330 . T) (-4331 . T) (-4333 . T))
+((-1536 (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-993))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-1117))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -279) (LIST (QUOTE -1140) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1140) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -302) (LIST (QUOTE -1140) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -505) (QUOTE (-1142)) (LIST (QUOTE -1140) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-1142)))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-143)))) (-1536 (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-145)))) (-1536 (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-549)) (|devaluate| |#1|)))))) (-1536 (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-227))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-549)) (|devaluate| |#1|))))) (|HasCategory| (-549) (QUOTE (-1078))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-356))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-1142)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-993))) (|HasCategory| |#1| (QUOTE (-356)))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-1536 (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-356))))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-1117))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -279) (LIST (QUOTE -1140) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1140) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -302) (LIST (QUOTE -1140) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -505) (QUOTE (-1142)) (LIST (QUOTE -1140) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3845) (LIST (|devaluate| |#1|) (QUOTE (-1142)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-549))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1164))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3405) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1142))))) (|HasSignature| |#1| (LIST (QUOTE -2270) (LIST (LIST (QUOTE -621) (QUOTE (-1142))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-143))) (-1536 (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-1536 (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-170)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1140 |#1| |#2| |#3|) (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-143)))))
+(-1134 R -1421)
((|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
-(-1136 R)
+(-1135 R)
((|constructor| (NIL "Computes sums of rational functions.")) (|sum| (((|Union| (|Fraction| (|Polynomial| |#1|)) (|Expression| |#1|)) (|Fraction| (|Polynomial| |#1|)) (|SegmentBinding| (|Fraction| (|Polynomial| |#1|)))) "\\spad{sum(f(n),{} n = a..b)} returns \\spad{f(a) + f(a+1) + ... f(b)}.") (((|Fraction| (|Polynomial| |#1|)) (|Polynomial| |#1|) (|SegmentBinding| (|Polynomial| |#1|))) "\\spad{sum(f(n),{} n = a..b)} returns \\spad{f(a) + f(a+1) + ... f(b)}.") (((|Union| (|Fraction| (|Polynomial| |#1|)) (|Expression| |#1|)) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{sum(a(n),{} n)} returns \\spad{A} which is the indefinite sum of \\spad{a} with respect to upward difference on \\spad{n},{} \\spadignore{i.e.} \\spad{A(n+1) - A(n) = a(n)}.") (((|Fraction| (|Polynomial| |#1|)) (|Polynomial| |#1|) (|Symbol|)) "\\spad{sum(a(n),{} n)} returns \\spad{A} which is the indefinite sum of \\spad{a} with respect to upward difference on \\spad{n},{} \\spadignore{i.e.} \\spad{A(n+1) - A(n) = a(n)}.")))
NIL
NIL
-(-1137 R S)
+(-1136 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| (((|SparseUnivariatePolynomial| |#2|) (|Mapping| |#2| |#1|) (|SparseUnivariatePolynomial| |#1|)) "\\spad{map(func,{} poly)} creates a new polynomial by applying \\spad{func} to every non-zero coefficient of the polynomial poly.")))
NIL
NIL
-(-1138 E OV R P)
+(-1137 E OV R P)
((|constructor| (NIL "\\indented{1}{SupFractionFactorize} contains the factor function for univariate polynomials over the quotient field of a ring \\spad{S} such that the package MultivariateFactorize works for \\spad{S}")) (|squareFree| (((|Factored| (|SparseUnivariatePolynomial| (|Fraction| |#4|))) (|SparseUnivariatePolynomial| (|Fraction| |#4|))) "\\spad{squareFree(p)} returns the square-free factorization of the univariate polynomial \\spad{p} with coefficients which are fractions of polynomials over \\spad{R}. Each factor has no repeated roots and the factors are pairwise relatively prime.")) (|factor| (((|Factored| (|SparseUnivariatePolynomial| (|Fraction| |#4|))) (|SparseUnivariatePolynomial| (|Fraction| |#4|))) "\\spad{factor(p)} factors the univariate polynomial \\spad{p} with coefficients which are fractions of polynomials over \\spad{R}.")))
NIL
NIL
-(-1139 R)
+(-1138 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.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4333 |has| |#1| (-356)) (-4335 |has| |#1| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
-((|HasCategory| |#1| (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-1118))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasCategory| |#1| (QUOTE (-227))) (|HasAttribute| |#1| (QUOTE -4335)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
-(-1140 |Coef| |var| |cen|)
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4332 |has| |#1| (-356)) (-4334 |has| |#1| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
+((|HasCategory| |#1| (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-1117))) (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasCategory| |#1| (QUOTE (-227))) (|HasAttribute| |#1| (QUOTE -4334)) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143)))))
+(-1139 |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}.")) (|coerce| (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a Puiseux series.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-356)) (-4329 |has| |#1| (-356)) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|)))) (|HasCategory| (-400 (-549)) (QUOTE (-1079))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasSignature| |#1| (LIST (QUOTE -3846) (LIST (|devaluate| |#1|) (QUOTE (-1143)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1165))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3893) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1143))))) (|HasSignature| |#1| (LIST (QUOTE -2272) (LIST (LIST (QUOTE -621) (QUOTE (-1143))) (|devaluate| |#1|)))))))
-(-1141 |Coef| |var| |cen|)
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-356)) (-4328 |has| |#1| (-356)) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|)))) (|HasCategory| (-400 (-549)) (QUOTE (-1078))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasSignature| |#1| (LIST (QUOTE -3845) (LIST (|devaluate| |#1|) (QUOTE (-1142)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1164))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3405) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1142))))) (|HasSignature| |#1| (LIST (QUOTE -2270) (LIST (LIST (QUOTE -621) (QUOTE (-1142))) (|devaluate| |#1|)))))))
+(-1140 |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}.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-747)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-747)) (|devaluate| |#1|)))) (|HasCategory| (-747) (QUOTE (-1079))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-747))))) (|HasSignature| |#1| (LIST (QUOTE -3846) (LIST (|devaluate| |#1|) (QUOTE (-1143)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-747))))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1165))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3893) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1143))))) (|HasSignature| |#1| (LIST (QUOTE -2272) (LIST (LIST (QUOTE -621) (QUOTE (-1143))) (|devaluate| |#1|)))))))
-(-1142)
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-747)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-747)) (|devaluate| |#1|)))) (|HasCategory| (-747) (QUOTE (-1078))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-747))))) (|HasSignature| |#1| (LIST (QUOTE -3845) (LIST (|devaluate| |#1|) (QUOTE (-1142)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-747))))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1164))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3405) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1142))))) (|HasSignature| |#1| (LIST (QUOTE -2270) (LIST (LIST (QUOTE -621) (QUOTE (-1142))) (|devaluate| |#1|)))))))
+(-1141)
((|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
NIL
-(-1143)
+(-1142)
((|constructor| (NIL "Basic and scripted symbols.")) (|sample| (($) "\\spad{sample()} returns a sample of \\%")) (|list| (((|List| $) $) "\\spad{list(sy)} takes a scripted symbol and produces a list of the name followed by the scripts.")) (|string| (((|String|) $) "\\spad{string(s)} converts the symbol \\spad{s} to a string. Error: if the symbol is subscripted.")) (|elt| (($ $ (|List| (|OutputForm|))) "\\spad{elt(s,{}[a1,{}...,{}an])} or \\spad{s}([a1,{}...,{}an]) returns \\spad{s} subscripted by \\spad{[a1,{}...,{}an]}.")) (|argscript| (($ $ (|List| (|OutputForm|))) "\\spad{argscript(s,{} [a1,{}...,{}an])} returns \\spad{s} arg-scripted by \\spad{[a1,{}...,{}an]}.")) (|superscript| (($ $ (|List| (|OutputForm|))) "\\spad{superscript(s,{} [a1,{}...,{}an])} returns \\spad{s} superscripted by \\spad{[a1,{}...,{}an]}.")) (|subscript| (($ $ (|List| (|OutputForm|))) "\\spad{subscript(s,{} [a1,{}...,{}an])} returns \\spad{s} subscripted by \\spad{[a1,{}...,{}an]}.")) (|script| (($ $ (|Record| (|:| |sub| (|List| (|OutputForm|))) (|:| |sup| (|List| (|OutputForm|))) (|:| |presup| (|List| (|OutputForm|))) (|:| |presub| (|List| (|OutputForm|))) (|:| |args| (|List| (|OutputForm|))))) "\\spad{script(s,{} [a,{}b,{}c,{}d,{}e])} returns \\spad{s} with subscripts a,{} superscripts \\spad{b},{} pre-superscripts \\spad{c},{} pre-subscripts \\spad{d},{} and argument-scripts \\spad{e}.") (($ $ (|List| (|List| (|OutputForm|)))) "\\spad{script(s,{} [a,{}b,{}c,{}d,{}e])} returns \\spad{s} with subscripts a,{} superscripts \\spad{b},{} pre-superscripts \\spad{c},{} pre-subscripts \\spad{d},{} and argument-scripts \\spad{e}. Omitted components are taken to be empty. For example,{} \\spad{script(s,{} [a,{}b,{}c])} is equivalent to \\spad{script(s,{}[a,{}b,{}c,{}[],{}[]])}.")) (|scripts| (((|Record| (|:| |sub| (|List| (|OutputForm|))) (|:| |sup| (|List| (|OutputForm|))) (|:| |presup| (|List| (|OutputForm|))) (|:| |presub| (|List| (|OutputForm|))) (|:| |args| (|List| (|OutputForm|)))) $) "\\spad{scripts(s)} returns all the scripts of \\spad{s}.")) (|scripted?| (((|Boolean|) $) "\\spad{scripted?(s)} is \\spad{true} if \\spad{s} has been given any scripts.")) (|name| (($ $) "\\spad{name(s)} returns \\spad{s} without its scripts.")) (|coerce| (($ (|String|)) "\\spad{coerce(s)} converts the string \\spad{s} to a symbol.")) (|resetNew| (((|Void|)) "\\spad{resetNew()} resets the internals counters that new() and new(\\spad{s}) use to return distinct symbols every time.")) (|new| (($ $) "\\spad{new(s)} returns a new symbol whose name starts with \\%\\spad{s}.") (($) "\\spad{new()} returns a new symbol whose name starts with \\%.")))
NIL
NIL
-(-1144 R)
+(-1143 R)
((|constructor| (NIL "Computes all the symmetric functions in \\spad{n} variables.")) (|symFunc| (((|Vector| |#1|) |#1| (|PositiveInteger|)) "\\spad{symFunc(r,{} n)} returns the vector of the elementary symmetric functions in \\spad{[r,{}r,{}...,{}r]} \\spad{n} times.") (((|Vector| |#1|) (|List| |#1|)) "\\spad{symFunc([r1,{}...,{}rn])} returns the vector of the elementary symmetric functions in the \\spad{\\spad{ri}'s}: \\spad{[r1 + ... + rn,{} r1 r2 + ... + r(n-1) rn,{} ...,{} r1 r2 ... rn]}.")))
NIL
NIL
-(-1145 R)
+(-1144 R)
((|constructor| (NIL "This domain implements symmetric polynomial")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-6 -4335)) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| (-942) (QUOTE (-130))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#1| (QUOTE -4335)))
-(-1146)
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-6 -4334)) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-444))) (-12 (|HasCategory| (-942) (QUOTE (-130))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasAttribute| |#1| (QUOTE -4334)))
+(-1145)
((|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
NIL
-(-1147)
+(-1146)
((|constructor| (NIL "Create and manipulate a symbol table for generated FORTRAN code")) (|symbolTable| (($ (|List| (|Record| (|:| |key| (|Symbol|)) (|:| |entry| (|FortranType|))))) "\\spad{symbolTable(l)} creates a symbol table from the elements of \\spad{l}.")) (|printTypes| (((|Void|) $) "\\spad{printTypes(tab)} produces FORTRAN type declarations from \\spad{tab},{} on the current FORTRAN output stream")) (|newTypeLists| (((|SExpression|) $) "\\spad{newTypeLists(x)} \\undocumented")) (|typeLists| (((|List| (|List| (|Union| (|:| |name| (|Symbol|)) (|:| |bounds| (|List| (|Union| (|:| S (|Symbol|)) (|:| P (|Polynomial| (|Integer|))))))))) $) "\\spad{typeLists(tab)} returns a list of lists of types of objects in \\spad{tab}")) (|externalList| (((|List| (|Symbol|)) $) "\\spad{externalList(tab)} returns a list of all the external symbols in \\spad{tab}")) (|typeList| (((|List| (|Union| (|:| |name| (|Symbol|)) (|:| |bounds| (|List| (|Union| (|:| S (|Symbol|)) (|:| P (|Polynomial| (|Integer|)))))))) (|FortranScalarType|) $) "\\spad{typeList(t,{}tab)} returns a list of all the objects of type \\spad{t} in \\spad{tab}")) (|parametersOf| (((|List| (|Symbol|)) $) "\\spad{parametersOf(tab)} returns a list of all the symbols declared in \\spad{tab}")) (|fortranTypeOf| (((|FortranType|) (|Symbol|) $) "\\spad{fortranTypeOf(u,{}tab)} returns the type of \\spad{u} in \\spad{tab}")) (|declare!| (((|FortranType|) (|Symbol|) (|FortranType|) $) "\\spad{declare!(u,{}t,{}tab)} creates a new entry in \\spad{tab},{} declaring \\spad{u} to be of type \\spad{t}") (((|FortranType|) (|List| (|Symbol|)) (|FortranType|) $) "\\spad{declare!(l,{}t,{}tab)} creates new entrys in \\spad{tab},{} declaring each of \\spad{l} to be of type \\spad{t}")) (|empty| (($) "\\spad{empty()} returns a new,{} empty symbol table")) (|coerce| (((|Table| (|Symbol|) (|FortranType|)) $) "\\spad{coerce(x)} returns a table view of \\spad{x}")))
NIL
NIL
-(-1148)
+(-1147)
((|constructor| (NIL "\\indented{1}{This domain provides a simple domain,{} general enough for} building complete representation of Spad programs as objects of a term algebra built from ground terms of type integers,{} foats,{} symbols,{} and strings. This domain differs from InputForm in that it represents any entity in a Spad program,{} not just expressions. Related Constructors: Boolean,{} Integer,{} Float,{} Symbol,{} String,{} SExpression. See Also: SExpression,{} SetCategory. The equality supported by this domain is structural.")) (|case| (((|Boolean|) $ (|[\|\|]| (|String|))) "\\spad{x case String} is \\spad{true} if \\spad{`x'} really is a String") (((|Boolean|) $ (|[\|\|]| (|Symbol|))) "\\spad{x case Symbol} is \\spad{true} if \\spad{`x'} really is a Symbol") (((|Boolean|) $ (|[\|\|]| (|DoubleFloat|))) "\\spad{x case DoubleFloat} is \\spad{true} if \\spad{`x'} really is a DoubleFloat") (((|Boolean|) $ (|[\|\|]| (|Integer|))) "\\spad{x case Integer} is \\spad{true} if \\spad{`x'} really is an Integer")) (|compound?| (((|Boolean|) $) "\\spad{compound? x} is \\spad{true} when \\spad{`x'} is not an atomic syntax.")) (|getOperands| (((|List| $) $) "\\spad{getOperands(x)} returns the list of operands to the operator in \\spad{`x'}.")) (|getOperator| (((|Union| (|Integer|) (|DoubleFloat|) (|Symbol|) (|String|) $) $) "\\spad{getOperator(x)} returns the operator,{} or tag,{} of the syntax \\spad{`x'}. The value returned is itself a syntax if \\spad{`x'} really is an application of a function symbol as opposed to being an atomic ground term.")) (|nil?| (((|Boolean|) $) "\\spad{nil?(s)} is \\spad{true} when \\spad{`s'} is a syntax for the constant nil.")) (|buildSyntax| (($ $ (|List| $)) "\\spad{buildSyntax(op,{} [a1,{} ...,{} an])} builds a syntax object for \\spad{op}(a1,{}...,{}an).") (($ (|Symbol|) (|List| $)) "\\spad{buildSyntax(op,{} [a1,{} ...,{} an])} builds a syntax object for \\spad{op}(a1,{}...,{}an).")) (|autoCoerce| (((|String|) $) "\\spad{autoCoerce(s)} forcibly extracts a string value from the syntax \\spad{`s'}; no check performed. To be called only at the discretion of the compiler.") (((|Symbol|) $) "\\spad{autoCoerce(s)} forcibly extracts a symbo from the Syntax domain \\spad{`s'}; no check performed. To be called only at at the discretion of the compiler.") (((|DoubleFloat|) $) "\\spad{autoCoerce(s)} forcibly extracts a float value from the syntax \\spad{`s'}; no check performed. To be called only at the discretion of the compiler") (((|Integer|) $) "\\spad{autoCoerce(s)} forcibly extracts an integer value from the syntax \\spad{`s'}; no check performed. To be called only at the discretion of the compiler.")) (|coerce| (((|String|) $) "\\spad{coerce(s)} extracts a string value from the syntax \\spad{`s'}.") (($ (|String|)) "\\spad{coerce(s)} injects the string value \\spad{`s'} into the syntax domain") (((|Symbol|) $) "\\spad{coerce(s)} extracts a symbol from the syntax \\spad{`s'}.") (($ (|Symbol|)) "\\spad{coerce(s)} injects the symbol \\spad{`s'} into the Syntax domain.") (((|DoubleFloat|) $) "\\spad{coerce(s)} extracts a float value from the syntax \\spad{`s'}.") (($ (|DoubleFloat|)) "\\spad{coerce(f)} injects the float value \\spad{`f'} into the Syntax domain") (((|Integer|) $) "\\spad{coerce(s)} extracts and integer value from the syntax \\spad{`s'}") (($ (|Integer|)) "\\spad{coerce(i)} injects the integer value `i' into the Syntax domain.")) (|convert| (($ (|SExpression|)) "\\spad{convert(s)} converts an \\spad{s}-expression to Syntax. Note,{} when \\spad{`s'} is not an atom,{} it is expected that it designates a proper list,{} \\spadignore{e.g.} a sequence of cons cells ending with nil.") (((|SExpression|) $) "\\spad{convert(s)} returns the \\spad{s}-expression representation of a syntax.")))
NIL
NIL
-(-1149 R)
+(-1148 R)
((|triangularSystems| (((|List| (|List| (|Polynomial| |#1|))) (|List| (|Fraction| (|Polynomial| |#1|))) (|List| (|Symbol|))) "\\spad{triangularSystems(lf,{}lv)} solves the system of equations defined by \\spad{lf} with respect to the list of symbols \\spad{lv}; the system of equations is obtaining by equating to zero the list of rational functions \\spad{lf}. The output is a list of solutions where each solution is expressed as a \"reduced\" triangular system of polynomials.")) (|solve| (((|List| (|Equation| (|Fraction| (|Polynomial| |#1|)))) (|Equation| (|Fraction| (|Polynomial| |#1|)))) "\\spad{solve(eq)} finds the solutions of the equation \\spad{eq} with respect to the unique variable appearing in \\spad{eq}.") (((|List| (|Equation| (|Fraction| (|Polynomial| |#1|)))) (|Fraction| (|Polynomial| |#1|))) "\\spad{solve(p)} finds the solution of a rational function \\spad{p} = 0 with respect to the unique variable appearing in \\spad{p}.") (((|List| (|Equation| (|Fraction| (|Polynomial| |#1|)))) (|Equation| (|Fraction| (|Polynomial| |#1|))) (|Symbol|)) "\\spad{solve(eq,{}v)} finds the solutions of the equation \\spad{eq} with respect to the variable \\spad{v}.") (((|List| (|Equation| (|Fraction| (|Polynomial| |#1|)))) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{solve(p,{}v)} solves the equation \\spad{p=0},{} where \\spad{p} is a rational function with respect to the variable \\spad{v}.") (((|List| (|List| (|Equation| (|Fraction| (|Polynomial| |#1|))))) (|List| (|Equation| (|Fraction| (|Polynomial| |#1|))))) "\\spad{solve(le)} finds the solutions of the list \\spad{le} of equations of rational functions with respect to all symbols appearing in \\spad{le}.") (((|List| (|List| (|Equation| (|Fraction| (|Polynomial| |#1|))))) (|List| (|Fraction| (|Polynomial| |#1|)))) "\\spad{solve(lp)} finds the solutions of the list \\spad{lp} of rational functions with respect to all symbols appearing in \\spad{lp}.") (((|List| (|List| (|Equation| (|Fraction| (|Polynomial| |#1|))))) (|List| (|Equation| (|Fraction| (|Polynomial| |#1|)))) (|List| (|Symbol|))) "\\spad{solve(le,{}lv)} finds the solutions of the list \\spad{le} of equations of rational functions with respect to the list of symbols \\spad{lv}.") (((|List| (|List| (|Equation| (|Fraction| (|Polynomial| |#1|))))) (|List| (|Fraction| (|Polynomial| |#1|))) (|List| (|Symbol|))) "\\spad{solve(lp,{}lv)} finds the solutions of the list \\spad{lp} of rational functions with respect to the list of symbols \\spad{lv}.")))
NIL
NIL
-(-1150)
+(-1149)
((|constructor| (NIL "The package \\spadtype{System} provides information about the runtime system and its characteristics.")) (|loadNativeModule| (((|Void|) (|String|)) "\\spad{loadNativeModule(path)} loads the native modile designated by \\spadvar{\\spad{path}}.")) (|nativeModuleExtension| (((|String|)) "\\spad{nativeModuleExtension()} returns a string representation of a filename extension for native modules.")) (|hostPlatform| (((|String|)) "\\spad{hostPlatform()} returns a string `triplet' description of the platform hosting the running OpenAxiom system.")) (|rootDirectory| (((|String|)) "\\spad{rootDirectory()} returns the pathname of the root directory for the running OpenAxiom system.")))
NIL
NIL
-(-1151 S)
+(-1150 S)
((|constructor| (NIL "TableauBumpers implements the Schenstead-Knuth correspondence between sequences and pairs of Young tableaux. The 2 Young tableaux are represented as a single tableau with pairs as components.")) (|mr| (((|Record| (|:| |f1| (|List| |#1|)) (|:| |f2| (|List| (|List| (|List| |#1|)))) (|:| |f3| (|List| (|List| |#1|))) (|:| |f4| (|List| (|List| (|List| |#1|))))) (|List| (|List| (|List| |#1|)))) "\\spad{mr(t)} is an auxiliary function which finds the position of the maximum element of a tableau \\spad{t} which is in the lowest row,{} producing a record of results")) (|maxrow| (((|Record| (|:| |f1| (|List| |#1|)) (|:| |f2| (|List| (|List| (|List| |#1|)))) (|:| |f3| (|List| (|List| |#1|))) (|:| |f4| (|List| (|List| (|List| |#1|))))) (|List| |#1|) (|List| (|List| (|List| |#1|))) (|List| (|List| |#1|)) (|List| (|List| (|List| |#1|))) (|List| (|List| (|List| |#1|))) (|List| (|List| (|List| |#1|)))) "\\spad{maxrow(a,{}b,{}c,{}d,{}e)} is an auxiliary function for \\spad{mr}")) (|inverse| (((|List| |#1|) (|List| |#1|)) "\\spad{inverse(ls)} forms the inverse of a sequence \\spad{ls}")) (|slex| (((|List| (|List| |#1|)) (|List| |#1|)) "\\spad{slex(ls)} sorts the argument sequence \\spad{ls},{} then zips (see \\spadfunFrom{map}{ListFunctions3}) the original argument sequence with the sorted result to a list of pairs")) (|lex| (((|List| (|List| |#1|)) (|List| (|List| |#1|))) "\\spad{lex(ls)} sorts a list of pairs to lexicographic order")) (|tab| (((|Tableau| (|List| |#1|)) (|List| |#1|)) "\\spad{tab(ls)} creates a tableau from \\spad{ls} by first creating a list of pairs using \\spadfunFrom{slex}{TableauBumpers},{} then creating a tableau using \\spadfunFrom{tab1}{TableauBumpers}.")) (|tab1| (((|List| (|List| (|List| |#1|))) (|List| (|List| |#1|))) "\\spad{tab1(lp)} creates a tableau from a list of pairs \\spad{lp}")) (|bat| (((|List| (|List| |#1|)) (|Tableau| (|List| |#1|))) "\\spad{bat(ls)} unbumps a tableau \\spad{ls}")) (|bat1| (((|List| (|List| |#1|)) (|List| (|List| (|List| |#1|)))) "\\spad{bat1(llp)} unbumps a tableau \\spad{llp}. Operation bat1 is the inverse of tab1.")) (|untab| (((|List| (|List| |#1|)) (|List| (|List| |#1|)) (|List| (|List| (|List| |#1|)))) "\\spad{untab(lp,{}llp)} is an auxiliary function which unbumps a tableau \\spad{llp},{} using \\spad{lp} to accumulate pairs")) (|bumptab1| (((|List| (|List| (|List| |#1|))) (|List| |#1|) (|List| (|List| (|List| |#1|)))) "\\spad{bumptab1(pr,{}t)} bumps a tableau \\spad{t} with a pair \\spad{pr} using comparison function \\spadfun{<},{} returning a new tableau")) (|bumptab| (((|List| (|List| (|List| |#1|))) (|Mapping| (|Boolean|) |#1| |#1|) (|List| |#1|) (|List| (|List| (|List| |#1|)))) "\\spad{bumptab(cf,{}pr,{}t)} bumps a tableau \\spad{t} with a pair \\spad{pr} using comparison function \\spad{cf},{} returning a new tableau")) (|bumprow| (((|Record| (|:| |fs| (|Boolean|)) (|:| |sd| (|List| |#1|)) (|:| |td| (|List| (|List| |#1|)))) (|Mapping| (|Boolean|) |#1| |#1|) (|List| |#1|) (|List| (|List| |#1|))) "\\spad{bumprow(cf,{}pr,{}r)} is an auxiliary function which bumps a row \\spad{r} with a pair \\spad{pr} using comparison function \\spad{cf},{} and returns a record")))
NIL
NIL
-(-1152 S)
+(-1151 S)
((|constructor| (NIL "\\indented{1}{The tableau domain is for printing Young tableaux,{} and} coercions to and from List List \\spad{S} where \\spad{S} is a set.")) (|coerce| (((|OutputForm|) $) "\\spad{coerce(t)} converts a tableau \\spad{t} to an output form.")) (|listOfLists| (((|List| (|List| |#1|)) $) "\\spad{listOfLists t} converts a tableau \\spad{t} to a list of lists.")) (|tableau| (($ (|List| (|List| |#1|))) "\\spad{tableau(ll)} converts a list of lists \\spad{ll} to a tableau.")))
NIL
NIL
-(-1153 |Key| |Entry|)
+(-1152 |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}")))
-((-4337 . T) (-4338 . T))
-((-12 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3337) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1793) (|devaluate| |#2|)))))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| |#2| (QUOTE (-1067)))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#2| (QUOTE (-1067))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (QUOTE (-1067))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-1067))) (-1536 (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))))
-(-1154 R)
+((-4336 . T) (-4337 . T))
+((-12 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -302) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -3336) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -1791) (|devaluate| |#2|)))))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| |#2| (QUOTE (-1066)))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -594) (QUOTE (-525)))) (-12 (|HasCategory| |#2| (QUOTE (-1066))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (QUOTE (-1066))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#2| (QUOTE (-1066))) (-1536 (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#2| (LIST (QUOTE -593) (QUOTE (-834)))) (|HasCategory| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (LIST (QUOTE -593) (QUOTE (-834)))))
+(-1153 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
NIL
-(-1155 S |Key| |Entry|)
+(-1154 S |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| |#3| |#3| |#3|) $ $) "\\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| |#2|) (|:| |entry| |#3|)))) "\\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| ((|#3| $ |#2| |#3|) "\\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})}.")))
NIL
NIL
-(-1156 |Key| |Entry|)
+(-1155 |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})}.")))
-((-4338 . T) (-2624 . T))
+((-4337 . T) (-2623 . T))
NIL
-(-1157 |Key| |Entry|)
+(-1156 |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.")))
NIL
NIL
-(-1158)
+(-1157)
((|constructor| (NIL "This package provides functions for template manipulation")) (|stripCommentsAndBlanks| (((|String|) (|String|)) "\\spad{stripCommentsAndBlanks(s)} treats \\spad{s} as a piece of AXIOM input,{} and removes comments,{} and leading and trailing blanks.")) (|interpretString| (((|Any|) (|String|)) "\\spad{interpretString(s)} treats a string as a piece of AXIOM input,{} by parsing and interpreting it.")))
NIL
NIL
-(-1159 S)
+(-1158 S)
((|constructor| (NIL "\\spadtype{TexFormat1} provides a utility coercion for changing to TeX format anything that has a coercion to the standard output format.")) (|coerce| (((|TexFormat|) |#1|) "\\spad{coerce(s)} provides a direct coercion from a domain \\spad{S} to TeX format. This allows the user to skip the step of first manually coercing the object to standard output format before it is coerced to TeX format.")))
NIL
NIL
-(-1160)
+(-1159)
((|constructor| (NIL "\\spadtype{TexFormat} provides a coercion from \\spadtype{OutputForm} to \\TeX{} format. The particular dialect of \\TeX{} used is \\LaTeX{}. The basic object consists of three parts: a prologue,{} a tex part and an epilogue. The functions \\spadfun{prologue},{} \\spadfun{tex} and \\spadfun{epilogue} extract these parts,{} respectively. The main guts of the expression go into the tex part. The other parts can be set (\\spadfun{setPrologue!},{} \\spadfun{setEpilogue!}) so that contain the appropriate tags for printing. For example,{} the prologue and epilogue might simply contain \\spad{``}\\verb+\\spad{\\[}+\\spad{''} and \\spad{``}\\verb+\\spad{\\]}+\\spad{''},{} respectively,{} so that the TeX section will be printed in LaTeX display math mode.")) (|setPrologue!| (((|List| (|String|)) $ (|List| (|String|))) "\\spad{setPrologue!(t,{}strings)} sets the prologue section of a TeX form \\spad{t} to \\spad{strings}.")) (|setTex!| (((|List| (|String|)) $ (|List| (|String|))) "\\spad{setTex!(t,{}strings)} sets the TeX section of a TeX form \\spad{t} to \\spad{strings}.")) (|setEpilogue!| (((|List| (|String|)) $ (|List| (|String|))) "\\spad{setEpilogue!(t,{}strings)} sets the epilogue section of a TeX form \\spad{t} to \\spad{strings}.")) (|prologue| (((|List| (|String|)) $) "\\spad{prologue(t)} extracts the prologue section of a TeX form \\spad{t}.")) (|new| (($) "\\spad{new()} create a new,{} empty object. Use \\spadfun{setPrologue!},{} \\spadfun{setTex!} and \\spadfun{setEpilogue!} to set the various components of this object.")) (|tex| (((|List| (|String|)) $) "\\spad{tex(t)} extracts the TeX section of a TeX form \\spad{t}.")) (|epilogue| (((|List| (|String|)) $) "\\spad{epilogue(t)} extracts the epilogue section of a TeX form \\spad{t}.")) (|display| (((|Void|) $) "\\spad{display(t)} outputs the TeX formatted code \\spad{t} so that each line has length less than or equal to the value set by the system command \\spadsyscom{set output length}.") (((|Void|) $ (|Integer|)) "\\spad{display(t,{}width)} outputs the TeX formatted code \\spad{t} so that each line has length less than or equal to \\spadvar{\\spad{width}}.")) (|convert| (($ (|OutputForm|) (|Integer|) (|OutputForm|)) "\\spad{convert(o,{}step,{}type)} changes \\spad{o} in standard output format to TeX format and also adds the given \\spad{step} number and \\spad{type}. This is useful if you want to create equations with given numbers or have the equation numbers correspond to the interpreter \\spad{step} numbers.") (($ (|OutputForm|) (|Integer|)) "\\spad{convert(o,{}step)} changes \\spad{o} in standard output format to TeX format and also adds the given \\spad{step} number. This is useful if you want to create equations with given numbers or have the equation numbers correspond to the interpreter \\spad{step} numbers.")) (|coerce| (($ (|OutputForm|)) "\\spad{coerce(o)} changes \\spad{o} in the standard output format to TeX format.")))
NIL
NIL
-(-1161)
+(-1160)
((|constructor| (NIL "This domain provides an implementation of text files. Text is stored in these files using the native character set of the computer.")) (|endOfFile?| (((|Boolean|) $) "\\spad{endOfFile?(f)} tests whether the file \\spad{f} is positioned after the end of all text. If the file is open for output,{} then this test is always \\spad{true}.")) (|readIfCan!| (((|Union| (|String|) "failed") $) "\\spad{readIfCan!(f)} returns a string of the contents of a line from file \\spad{f},{} if possible. If \\spad{f} is not readable or if it is positioned at the end of file,{} then \\spad{\"failed\"} is returned.")) (|readLineIfCan!| (((|Union| (|String|) "failed") $) "\\spad{readLineIfCan!(f)} returns a string of the contents of a line from file \\spad{f},{} if possible. If \\spad{f} is not readable or if it is positioned at the end of file,{} then \\spad{\"failed\"} is returned.")) (|readLine!| (((|String|) $) "\\spad{readLine!(f)} returns a string of the contents of a line from the file \\spad{f}.")) (|writeLine!| (((|String|) $) "\\spad{writeLine!(f)} finishes the current line in the file \\spad{f}. An empty string is returned. The call \\spad{writeLine!(f)} is equivalent to \\spad{writeLine!(f,{}\"\")}.") (((|String|) $ (|String|)) "\\spad{writeLine!(f,{}s)} writes the contents of the string \\spad{s} and finishes the current line in the file \\spad{f}. The value of \\spad{s} is returned.")))
NIL
NIL
-(-1162 R)
+(-1161 R)
((|constructor| (NIL "Tools for the sign finding utilities.")) (|direction| (((|Integer|) (|String|)) "\\spad{direction(s)} \\undocumented")) (|nonQsign| (((|Union| (|Integer|) "failed") |#1|) "\\spad{nonQsign(r)} \\undocumented")) (|sign| (((|Union| (|Integer|) "failed") |#1|) "\\spad{sign(r)} \\undocumented")))
NIL
NIL
-(-1163)
+(-1162)
((|constructor| (NIL "This package exports a function for making a \\spadtype{ThreeSpace}")) (|createThreeSpace| (((|ThreeSpace| (|DoubleFloat|))) "\\spad{createThreeSpace()} creates a \\spadtype{ThreeSpace(DoubleFloat)} object capable of holding point,{} curve,{} mesh components and any combination.")))
NIL
NIL
-(-1164 S)
+(-1163 S)
((|constructor| (NIL "Category for the transcendental elementary functions.")) (|pi| (($) "\\spad{\\spad{pi}()} returns the constant \\spad{pi}.")))
NIL
NIL
-(-1165)
+(-1164)
((|constructor| (NIL "Category for the transcendental elementary functions.")) (|pi| (($) "\\spad{\\spad{pi}()} returns the constant \\spad{pi}.")))
NIL
NIL
-(-1166 S)
+(-1165 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}.")))
-((-4338 . T) (-4337 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1067))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
-(-1167 S)
+((-4337 . T) (-4336 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1066))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+(-1166 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}.")))
NIL
NIL
-(-1168)
+(-1167)
((|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
-(-1169 R -1422)
+(-1168 R -1421)
((|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
-(-1170 R |Row| |Col| M)
+(-1169 R |Row| |Col| M)
((|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
-(-1171 R -1422)
+(-1170 R -1421)
((|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 -594) (LIST (QUOTE -863) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -857) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -857) (|devaluate| |#1|)))))
-(-1172 S R E V P)
+(-1171 S 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| (($ $ |#5|) "\\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") $ |#5|) "\\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| |#5| "failed") $ |#4|) "\\axiom{select(\\spad{ts},{}\\spad{v})} returns the polynomial of \\axiom{\\spad{ts}} with \\axiom{\\spad{v}} as main variable,{} if any.")) (|algebraic?| (((|Boolean|) |#4| $) "\\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| |#4|) $) "\\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| |#5| "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| |#5| "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| |#5|)))) (|List| |#5|)) "\\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| |#5|)) "\\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| ((|#5| |#5| $) "\\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| ((|#5| |#5| $) "\\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| ((|#5| |#5| $) "\\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| ((|#5| |#5| $) "\\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| ((|#5| |#5| $) "\\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| |#5|) (|List| |#5|) $ (|Mapping| |#5| |#5| |#5|) (|Mapping| (|Boolean|) |#5| |#5|)) "\\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| ((|#5| |#5| $ (|Mapping| |#5| |#5| |#5|) (|Mapping| (|Boolean|) |#5| |#5|)) "\\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|) |#5| (|List| |#5|))) "\\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|) |#5| $) "\\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|) |#5| $) "\\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|) |#5| $) "\\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|) |#5| $ (|Mapping| (|Boolean|) |#5| |#5|)) "\\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|) |#5| $) "\\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| |#5|)) (|:| |open| (|List| |#5|))) $) "\\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| |#5|) $) "\\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| |#5|))) "failed") (|List| |#5|) (|Mapping| (|Boolean|) |#5|) (|Mapping| (|Boolean|) |#5| |#5|)) "\\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| |#5|))) "failed") (|List| |#5|) (|Mapping| (|Boolean|) |#5| |#5|)) "\\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.")))
NIL
((|HasCategory| |#4| (QUOTE (-361))))
-(-1173 R E V P)
+(-1172 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.")))
-((-4338 . T) (-4337 . T) (-2624 . T))
+((-4337 . T) (-4336 . T) (-2623 . T))
NIL
-(-1174 |Coef|)
+(-1173 |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}.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4332 . T) (-4331 . T) (-4334 . T))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4331 . T) (-4330 . T) (-4333 . T))
((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-143))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-356))))
-(-1175 |Curve|)
+(-1174 |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}.")))
NIL
NIL
-(-1176)
+(-1175)
((|constructor| (NIL "Tools for constructing tubes around 3-dimensional parametric curves.")) (|loopPoints| (((|List| (|Point| (|DoubleFloat|))) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|List| (|List| (|DoubleFloat|)))) "\\spad{loopPoints(p,{}n,{}b,{}r,{}lls)} creates and returns a list of points which form the loop with radius \\spad{r},{} around the center point indicated by the point \\spad{p},{} with the principal normal vector of the space curve at point \\spad{p} given by the point(vector) \\spad{n},{} and the binormal vector given by the point(vector) \\spad{b},{} and a list of lists,{} \\spad{lls},{} which is the \\spadfun{cosSinInfo} of the number of points defining the loop.")) (|cosSinInfo| (((|List| (|List| (|DoubleFloat|))) (|Integer|)) "\\spad{cosSinInfo(n)} returns the list of lists of values for \\spad{n},{} in the form: \\spad{[[cos(n - 1) a,{}sin(n - 1) a],{}...,{}[cos 2 a,{}sin 2 a],{}[cos a,{}sin a]]} where \\spad{a = 2 pi/n}. Note: \\spad{n} should be greater than 2.")) (|unitVector| (((|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|))) "\\spad{unitVector(p)} creates the unit vector of the point \\spad{p} and returns the result as a point. Note: \\spad{unitVector(p) = p/|p|}.")) (|cross| (((|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|))) "\\spad{cross(p,{}q)} computes the cross product of the two points \\spad{p} and \\spad{q} using only the first three coordinates,{} and keeping the color of the first point \\spad{p}. The result is returned as a point.")) (|dot| (((|DoubleFloat|) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|))) "\\spad{dot(p,{}q)} computes the dot product of the two points \\spad{p} and \\spad{q} using only the first three coordinates,{} and returns the resulting \\spadtype{DoubleFloat}.")) (- (((|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|))) "\\spad{p - q} computes and returns a point whose coordinates are the differences of the coordinates of two points \\spad{p} and \\spad{q},{} using the color,{} or fourth coordinate,{} of the first point \\spad{p} as the color also of the point \\spad{q}.")) (+ (((|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|)) (|Point| (|DoubleFloat|))) "\\spad{p + q} computes and returns a point whose coordinates are the sums of the coordinates of the two points \\spad{p} and \\spad{q},{} using the color,{} or fourth coordinate,{} of the first point \\spad{p} as the color also of the point \\spad{q}.")) (* (((|Point| (|DoubleFloat|)) (|DoubleFloat|) (|Point| (|DoubleFloat|))) "\\spad{s * p} returns a point whose coordinates are the scalar multiple of the point \\spad{p} by the scalar \\spad{s},{} preserving the color,{} or fourth coordinate,{} of \\spad{p}.")) (|point| (((|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{point(x1,{}x2,{}x3,{}c)} creates and returns a point from the three specified coordinates \\spad{x1},{} \\spad{x2},{} \\spad{x3},{} and also a fourth coordinate,{} \\spad{c},{} which is generally used to specify the color of the point.")))
NIL
NIL
-(-1177 S)
+(-1176 S)
((|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")) (|coerce| (($ (|PrimitiveArray| |#1|)) "\\spad{coerce(a)} makes a tuple from primitive array a")))
NIL
-((|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
-(-1178 -1422)
+((|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+(-1177 -1421)
((|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
-(-1179)
-((|constructor| (NIL "This domain represents a type AST.")) (|coerce| (($ (|Syntax|)) "s::TypeAst injects \\spad{`s'} into the TypeAst domain.")))
+(-1178)
+((|constructor| (NIL "This domain represents a type AST.")))
NIL
NIL
-(-1180)
+(-1179)
((|constructor| (NIL "The fundamental Type.")))
-((-2624 . T))
+((-2623 . T))
NIL
-(-1181 S)
+(-1180 S)
((|constructor| (NIL "Provides functions to force a partial ordering on any set.")) (|more?| (((|Boolean|) |#1| |#1|) "\\spad{more?(a,{} b)} compares \\spad{a} and \\spad{b} in the partial ordering induced by setOrder,{} and uses the ordering on \\spad{S} if \\spad{a} and \\spad{b} are not comparable in the partial ordering.")) (|userOrdered?| (((|Boolean|)) "\\spad{userOrdered?()} tests if the partial ordering induced by \\spadfunFrom{setOrder}{UserDefinedPartialOrdering} is not empty.")) (|largest| ((|#1| (|List| |#1|)) "\\spad{largest l} returns the largest element of \\spad{l} where the partial ordering induced by setOrder is completed into a total one by the ordering on \\spad{S}.") ((|#1| (|List| |#1|) (|Mapping| (|Boolean|) |#1| |#1|)) "\\spad{largest(l,{} fn)} returns the largest element of \\spad{l} where the partial ordering induced by setOrder is completed into a total one by \\spad{fn}.")) (|less?| (((|Boolean|) |#1| |#1| (|Mapping| (|Boolean|) |#1| |#1|)) "\\spad{less?(a,{} b,{} fn)} compares \\spad{a} and \\spad{b} in the partial ordering induced by setOrder,{} and returns \\spad{fn(a,{} b)} if \\spad{a} and \\spad{b} are not comparable in that ordering.") (((|Union| (|Boolean|) "failed") |#1| |#1|) "\\spad{less?(a,{} b)} compares \\spad{a} and \\spad{b} in the partial ordering induced by setOrder.")) (|getOrder| (((|Record| (|:| |low| (|List| |#1|)) (|:| |high| (|List| |#1|)))) "\\spad{getOrder()} returns \\spad{[[b1,{}...,{}bm],{} [a1,{}...,{}an]]} such that the partial ordering on \\spad{S} was given by \\spad{setOrder([b1,{}...,{}bm],{}[a1,{}...,{}an])}.")) (|setOrder| (((|Void|) (|List| |#1|) (|List| |#1|)) "\\spad{setOrder([b1,{}...,{}bm],{} [a1,{}...,{}an])} defines a partial ordering on \\spad{S} given \\spad{by:} \\indented{3}{(1)\\space{2}\\spad{b1 < b2 < ... < bm < a1 < a2 < ... < an}.} \\indented{3}{(2)\\space{2}\\spad{bj < c < \\spad{ai}}\\space{2}for \\spad{c} not among the \\spad{ai}\\spad{'s} and \\spad{bj}\\spad{'s}.} \\indented{3}{(3)\\space{2}undefined on \\spad{(c,{}d)} if neither is among the \\spad{ai}\\spad{'s},{}\\spad{bj}\\spad{'s}.}") (((|Void|) (|List| |#1|)) "\\spad{setOrder([a1,{}...,{}an])} defines a partial ordering on \\spad{S} given \\spad{by:} \\indented{3}{(1)\\space{2}\\spad{a1 < a2 < ... < an}.} \\indented{3}{(2)\\space{2}\\spad{b < \\spad{ai}\\space{3}for i = 1..n} and \\spad{b} not among the \\spad{ai}\\spad{'s}.} \\indented{3}{(3)\\space{2}undefined on \\spad{(b,{} c)} if neither is among the \\spad{ai}\\spad{'s}.}")))
NIL
((|HasCategory| |#1| (QUOTE (-823))))
-(-1182)
+(-1181)
((|constructor| (NIL "This packages provides functions to allow the user to select the ordering on the variables and operators for displaying polynomials,{} fractions and expressions. The ordering affects the display only and not the computations.")) (|resetVariableOrder| (((|Void|)) "\\spad{resetVariableOrder()} cancels any previous use of setVariableOrder and returns to the default system ordering.")) (|getVariableOrder| (((|Record| (|:| |high| (|List| (|Symbol|))) (|:| |low| (|List| (|Symbol|))))) "\\spad{getVariableOrder()} returns \\spad{[[b1,{}...,{}bm],{} [a1,{}...,{}an]]} such that the ordering on the variables was given by \\spad{setVariableOrder([b1,{}...,{}bm],{} [a1,{}...,{}an])}.")) (|setVariableOrder| (((|Void|) (|List| (|Symbol|)) (|List| (|Symbol|))) "\\spad{setVariableOrder([b1,{}...,{}bm],{} [a1,{}...,{}an])} defines an ordering on the variables given by \\spad{b1 > b2 > ... > bm >} other variables \\spad{> a1 > a2 > ... > an}.") (((|Void|) (|List| (|Symbol|))) "\\spad{setVariableOrder([a1,{}...,{}an])} defines an ordering on the variables given by \\spad{a1 > a2 > ... > an > other variables}.")))
NIL
NIL
-(-1183 S)
+(-1182 S)
((|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.")))
NIL
NIL
-(-1184)
+(-1183)
((|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.")))
-((-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
-(-1185 |Coef1| |Coef2| |var1| |var2| |cen1| |cen2|)
+(-1184 |Coef1| |Coef2| |var1| |var2| |cen1| |cen2|)
((|constructor| (NIL "Mapping package for univariate Laurent series \\indented{2}{This package allows one to apply a function to the coefficients of} \\indented{2}{a univariate Laurent series.}")) (|map| (((|UnivariateLaurentSeries| |#2| |#4| |#6|) (|Mapping| |#2| |#1|) (|UnivariateLaurentSeries| |#1| |#3| |#5|)) "\\spad{map(f,{}g(x))} applies the map \\spad{f} to the coefficients of the Laurent series \\spad{g(x)}.")))
NIL
NIL
-(-1186 |Coef|)
+(-1185 |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.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-356)) (-4329 |has| |#1| (-356)) (-4331 . T) (-4332 . T) (-4334 . T))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-356)) (-4328 |has| |#1| (-356)) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
-(-1187 S |Coef| UTS)
+(-1186 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.")) (|coerce| (($ |#3|) "\\spad{coerce(f(x))} converts the Taylor series \\spad{f(x)} to a Laurent series.")) (|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)}.")))
NIL
((|HasCategory| |#2| (QUOTE (-356))))
-(-1188 |Coef| UTS)
+(-1187 |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.")) (|coerce| (($ |#2|) "\\spad{coerce(f(x))} converts the Taylor series \\spad{f(x)} to a Laurent series.")) (|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)}.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-356)) (-4329 |has| |#1| (-356)) (-2624 |has| |#1| (-356)) (-4331 . T) (-4332 . T) (-4334 . T))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-356)) (-4328 |has| |#1| (-356)) (-2623 |has| |#1| (-356)) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
-(-1189 |Coef| UTS)
+(-1188 |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)}.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-356)) (-4329 |has| |#1| (-356)) (-4331 . T) (-4332 . T) (-4334 . T))
-((-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -279) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -505) (QUOTE (-1143)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-796)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-823)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-880)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-993)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1118)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-1143)))))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (QUOTE (-143))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-143))))) (-1536 (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-145))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-549)) (|devaluate| |#1|))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-227)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-549)) (|devaluate| |#1|))))) (|HasCategory| (-549) (QUOTE (-1079))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-356))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-880)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-1143))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-993)))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-796)))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-796)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-823))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1118)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -279) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -505) (QUOTE (-1143)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3846) (LIST (|devaluate| |#1|) (QUOTE (-1143)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-549))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1165))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3893) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1143))))) (|HasSignature| |#1| (LIST (QUOTE -2272) (LIST (LIST (QUOTE -621) (QUOTE (-1143))) (|devaluate| |#1|)))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-823)))) (|HasCategory| |#2| (QUOTE (-880))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-534)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-300)))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-143))))))
-(-1190 |Coef| |var| |cen|)
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-356)) (-4328 |has| |#1| (-356)) (-4330 . T) (-4331 . T) (-4333 . T))
+((-1536 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -279) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -505) (QUOTE (-1142)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-796)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-823)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-880)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-993)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1117)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-1142)))))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (QUOTE (-143))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-143))))) (-1536 (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-145))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-549)) (|devaluate| |#1|))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-227)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-549)) (|devaluate| |#1|))))) (|HasCategory| (-549) (QUOTE (-1078))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-356))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-880)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-1142))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-993)))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-796)))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-796)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-823))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1117)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -279) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -302) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -505) (QUOTE (-1142)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3845) (LIST (|devaluate| |#1|) (QUOTE (-1142)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-549))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1164))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3405) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1142))))) (|HasSignature| |#1| (LIST (QUOTE -2270) (LIST (LIST (QUOTE -621) (QUOTE (-1142))) (|devaluate| |#1|)))))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-823)))) (|HasCategory| |#2| (QUOTE (-880))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-534)))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-300)))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#1| (QUOTE (-143))) (-12 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-143))))))
+(-1189 |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.")))
-(((-4339 "*") -1536 (-1821 (|has| |#1| (-356)) (|has| (-1218 |#1| |#2| |#3|) (-796))) (|has| |#1| (-170)) (-1821 (|has| |#1| (-356)) (|has| (-1218 |#1| |#2| |#3|) (-880)))) (-4330 -1536 (-1821 (|has| |#1| (-356)) (|has| (-1218 |#1| |#2| |#3|) (-796))) (|has| |#1| (-541)) (-1821 (|has| |#1| (-356)) (|has| (-1218 |#1| |#2| |#3|) (-880)))) (-4335 |has| |#1| (-356)) (-4329 |has| |#1| (-356)) (-4331 . T) (-4332 . T) (-4334 . T))
-((-1536 (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-993))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-1118))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -279) (LIST (QUOTE -1218) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1218) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -302) (LIST (QUOTE -1218) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -505) (QUOTE (-1143)) (LIST (QUOTE -1218) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-1143)))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-143)))) (-1536 (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-145)))) (-1536 (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-549)) (|devaluate| |#1|)))))) (-1536 (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-227))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-549)) (|devaluate| |#1|))))) (|HasCategory| (-549) (QUOTE (-1079))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-356))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-1143)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-993))) (|HasCategory| |#1| (QUOTE (-356)))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-1536 (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-356))))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-1118))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -279) (LIST (QUOTE -1218) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1218) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -302) (LIST (QUOTE -1218) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -505) (QUOTE (-1143)) (LIST (QUOTE -1218) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3846) (LIST (|devaluate| |#1|) (QUOTE (-1143)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-549))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1165))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3893) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1143))))) (|HasSignature| |#1| (LIST (QUOTE -2272) (LIST (LIST (QUOTE -621) (QUOTE (-1143))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-143))) (-1536 (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-1536 (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-170)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1218 |#1| |#2| |#3|) (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-143)))))
-(-1191 ZP)
+(((-4338 "*") -1536 (-1819 (|has| |#1| (-356)) (|has| (-1217 |#1| |#2| |#3|) (-796))) (|has| |#1| (-170)) (-1819 (|has| |#1| (-356)) (|has| (-1217 |#1| |#2| |#3|) (-880)))) (-4329 -1536 (-1819 (|has| |#1| (-356)) (|has| (-1217 |#1| |#2| |#3|) (-796))) (|has| |#1| (-541)) (-1819 (|has| |#1| (-356)) (|has| (-1217 |#1| |#2| |#3|) (-880)))) (-4334 |has| |#1| (-356)) (-4328 |has| |#1| (-356)) (-4330 . T) (-4331 . T) (-4333 . T))
+((-1536 (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-993))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-1117))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -279) (LIST (QUOTE -1217) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1217) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -302) (LIST (QUOTE -1217) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -505) (QUOTE (-1142)) (LIST (QUOTE -1217) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-1142)))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-143)))) (-1536 (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-145)))) (-1536 (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-549)) (|devaluate| |#1|)))))) (-1536 (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-227))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-549)) (|devaluate| |#1|))))) (|HasCategory| (-549) (QUOTE (-1078))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-356))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-1142)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-993))) (|HasCategory| |#1| (QUOTE (-356)))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-1536 (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-356))))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-1117))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -279) (LIST (QUOTE -1217) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1217) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -302) (LIST (QUOTE -1217) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -505) (QUOTE (-1142)) (LIST (QUOTE -1217) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3845) (LIST (|devaluate| |#1|) (QUOTE (-1142)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-549))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1164))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3405) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1142))))) (|HasSignature| |#1| (LIST (QUOTE -2270) (LIST (LIST (QUOTE -621) (QUOTE (-1142))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-534))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-300))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-143))) (-1536 (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-1536 (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-796))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-170)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-880))) (|HasCategory| |#1| (QUOTE (-356)))) (-12 (|HasCategory| (-1217 |#1| |#2| |#3|) (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-356)))) (|HasCategory| |#1| (QUOTE (-143)))))
+(-1190 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
NIL
-(-1192 R S)
+(-1191 R S)
((|constructor| (NIL "This package provides operations for mapping functions onto segments.")) (|map| (((|Stream| |#2|) (|Mapping| |#2| |#1|) (|UniversalSegment| |#1|)) "\\spad{map(f,{}s)} expands the segment \\spad{s},{} applying \\spad{f} to each value.") (((|UniversalSegment| |#2|) (|Mapping| |#2| |#1|) (|UniversalSegment| |#1|)) "\\spad{map(f,{}seg)} returns the new segment obtained by applying \\spad{f} to the endpoints of \\spad{seg}.")))
NIL
((|HasCategory| |#1| (QUOTE (-821))))
-(-1193 S)
+(-1192 S)
((|constructor| (NIL "This domain provides segments which may be half open. That is,{} ranges of the form \\spad{a..} or \\spad{a..b}.")) (|hasHi| (((|Boolean|) $) "\\spad{hasHi(s)} tests whether the segment \\spad{s} has an upper bound.")) (|coerce| (($ (|Segment| |#1|)) "\\spad{coerce(x)} allows \\spadtype{Segment} values to be used as \\%.")) (|segment| (($ |#1|) "\\spad{segment(l)} is an alternate way to construct the segment \\spad{l..}.")) (SEGMENT (($ |#1|) "\\spad{l..} produces a half open segment,{} that is,{} one with no upper bound.")))
NIL
-((|HasCategory| |#1| (QUOTE (-821))) (|HasCategory| |#1| (QUOTE (-1067))))
-(-1194 |x| R |y| S)
+((|HasCategory| |#1| (QUOTE (-821))) (|HasCategory| |#1| (QUOTE (-1066))))
+(-1193 |x| R |y| S)
((|constructor| (NIL "This package lifts a mapping from coefficient rings \\spad{R} to \\spad{S} to a mapping from \\spadtype{UnivariatePolynomial}(\\spad{x},{}\\spad{R}) to \\spadtype{UnivariatePolynomial}(\\spad{y},{}\\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| (((|UnivariatePolynomial| |#3| |#4|) (|Mapping| |#4| |#2|) (|UnivariatePolynomial| |#1| |#2|)) "\\spad{map(func,{} poly)} creates a new polynomial by applying \\spad{func} to every non-zero coefficient of the polynomial poly.")))
NIL
NIL
-(-1195 R Q UP)
+(-1194 R Q UP)
((|constructor| (NIL "UnivariatePolynomialCommonDenominator provides functions to compute the common denominator of the coefficients of univariate polynomials over the quotient field of a \\spad{gcd} domain.")) (|splitDenominator| (((|Record| (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) "\\spad{splitDenominator(q)} returns \\spad{[p,{} d]} such that \\spad{q = p/d} and \\spad{d} is a common denominator for the coefficients of \\spad{q}.")) (|clearDenominator| ((|#3| |#3|) "\\spad{clearDenominator(q)} returns \\spad{p} such that \\spad{q = p/d} where \\spad{d} is a common denominator for the coefficients of \\spad{q}.")) (|commonDenominator| ((|#1| |#3|) "\\spad{commonDenominator(q)} returns a common denominator \\spad{d} for the coefficients of \\spad{q}.")))
NIL
NIL
-(-1196 R UP)
+(-1195 R UP)
((|constructor| (NIL "UnivariatePolynomialDecompositionPackage implements functional decomposition of univariate polynomial with coefficients in an \\spad{IntegralDomain} of \\spad{CharacteristicZero}.")) (|monicCompleteDecompose| (((|List| |#2|) |#2|) "\\spad{monicCompleteDecompose(f)} returns a list of factors of \\spad{f} for the functional decomposition ([ \\spad{f1},{} ...,{} \\spad{fn} ] means \\spad{f} = \\spad{f1} \\spad{o} ... \\spad{o} \\spad{fn}).")) (|monicDecomposeIfCan| (((|Union| (|Record| (|:| |left| |#2|) (|:| |right| |#2|)) "failed") |#2|) "\\spad{monicDecomposeIfCan(f)} returns a functional decomposition of the monic polynomial \\spad{f} of \"failed\" if it has not found any.")) (|leftFactorIfCan| (((|Union| |#2| "failed") |#2| |#2|) "\\spad{leftFactorIfCan(f,{}h)} returns the left factor (\\spad{g} in \\spad{f} = \\spad{g} \\spad{o} \\spad{h}) of the functional decomposition of the polynomial \\spad{f} with given \\spad{h} or \\spad{\"failed\"} if \\spad{g} does not exist.")) (|rightFactorIfCan| (((|Union| |#2| "failed") |#2| (|NonNegativeInteger|) |#1|) "\\spad{rightFactorIfCan(f,{}d,{}c)} returns a candidate to be the right factor (\\spad{h} in \\spad{f} = \\spad{g} \\spad{o} \\spad{h}) of degree \\spad{d} with leading coefficient \\spad{c} of a functional decomposition of the polynomial \\spad{f} or \\spad{\"failed\"} if no such candidate.")) (|monicRightFactorIfCan| (((|Union| |#2| "failed") |#2| (|NonNegativeInteger|)) "\\spad{monicRightFactorIfCan(f,{}d)} returns a candidate to be the monic right factor (\\spad{h} in \\spad{f} = \\spad{g} \\spad{o} \\spad{h}) of degree \\spad{d} of a functional decomposition of the polynomial \\spad{f} or \\spad{\"failed\"} if no such candidate.")))
NIL
NIL
-(-1197 R UP)
+(-1196 R UP)
((|constructor| (NIL "UnivariatePolynomialDivisionPackage provides a division for non monic univarite polynomials with coefficients in an \\spad{IntegralDomain}.")) (|divideIfCan| (((|Union| (|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) "failed") |#2| |#2|) "\\spad{divideIfCan(f,{}g)} returns quotient and remainder of the division of \\spad{f} by \\spad{g} or \"failed\" if it has not succeeded.")))
NIL
NIL
-(-1198 R U)
+(-1197 R U)
((|constructor| (NIL "This package implements Karatsuba\\spad{'s} trick for multiplying (large) univariate polynomials. It could be improved with a version doing the work on place and also with a special case for squares. We've done this in Basicmath,{} but we believe that this out of the scope of AXIOM.")) (|karatsuba| ((|#2| |#2| |#2| (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{karatsuba(a,{}b,{}l,{}k)} returns \\spad{a*b} by applying Karatsuba\\spad{'s} trick provided that both \\spad{a} and \\spad{b} have at least \\spad{l} terms and \\spad{k > 0} holds and by calling \\spad{noKaratsuba} otherwise. The other multiplications are performed by recursive calls with the same third argument and \\spad{k-1} as fourth argument.")) (|karatsubaOnce| ((|#2| |#2| |#2|) "\\spad{karatsuba(a,{}b)} returns \\spad{a*b} by applying Karatsuba\\spad{'s} trick once. The other multiplications are performed by calling \\spad{*} from \\spad{U}.")) (|noKaratsuba| ((|#2| |#2| |#2|) "\\spad{noKaratsuba(a,{}b)} returns \\spad{a*b} without using Karatsuba\\spad{'s} trick at all.")))
NIL
NIL
-(-1199 |x| R)
+(-1198 |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}")) (|coerce| (($ (|Variable| |#1|)) "\\spad{coerce(x)} converts the variable \\spad{x} to a univariate polynomial.")))
-(((-4339 "*") |has| |#2| (-170)) (-4330 |has| |#2| (-541)) (-4333 |has| |#2| (-356)) (-4335 |has| |#2| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
-((|HasCategory| |#2| (QUOTE (-880))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-170))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-541)))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1118))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1143)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasCategory| |#2| (QUOTE (-227))) (|HasAttribute| |#2| (QUOTE -4335)) (|HasCategory| |#2| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-143)))))
-(-1200 R PR S PS)
+(((-4338 "*") |has| |#2| (-170)) (-4329 |has| |#2| (-541)) (-4332 |has| |#2| (-356)) (-4334 |has| |#2| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
+((|HasCategory| |#2| (QUOTE (-880))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-170))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-541)))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -857) (QUOTE (-372)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-372))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -857) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -857) (QUOTE (-549))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-372)))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -594) (LIST (QUOTE -863) (QUOTE (-549)))))) (-12 (|HasCategory| (-1048) (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#2| (LIST (QUOTE -594) (QUOTE (-525))))) (|HasCategory| |#2| (QUOTE (-823))) (|HasCategory| |#2| (LIST (QUOTE -617) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (-1536 (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-1117))) (|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (-1536 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasCategory| |#2| (QUOTE (-227))) (|HasAttribute| |#2| (QUOTE -4334)) (|HasCategory| |#2| (QUOTE (-444))) (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (-1536 (-12 (|HasCategory| $ (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-880)))) (|HasCategory| |#2| (QUOTE (-143)))))
+(-1199 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
NIL
-(-1201 S R)
+(-1200 S 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| |#2|) (|:| |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| ((|#2| (|Fraction| $) |#2|) "\\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| ((|#2| $ $) "\\spad{resultant(p,{}q)} returns the resultant of the polynomials \\spad{p} and \\spad{q}.")) (|discriminant| ((|#2| $) "\\spad{discriminant(p)} returns the discriminant of the polynomial \\spad{p}.")) (|differentiate| (($ $ (|Mapping| |#2| |#2|) $) "\\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| |#2|)) "\\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| |#2|) $) "\\spad{makeSUP(p)} converts the polynomial \\spad{p} to be of type SparseUnivariatePolynomial over the same coefficients.")) (|vectorise| (((|Vector| |#2|) $ (|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}.")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-1118))))
-(-1202 R)
+((|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356))) (|HasCategory| |#2| (QUOTE (-444))) (|HasCategory| |#2| (QUOTE (-541))) (|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (QUOTE (-1117))))
+(-1201 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}.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4333 |has| |#1| (-356)) (-4335 |has| |#1| (-6 -4335)) (-4332 . T) (-4331 . T) (-4334 . T))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4332 |has| |#1| (-356)) (-4334 |has| |#1| (-6 -4334)) (-4331 . T) (-4330 . T) (-4333 . T))
NIL
-(-1203 S |Coef| |Expon|)
+(-1202 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 -871) (QUOTE (-1143)))) (|HasSignature| |#2| (LIST (QUOTE *) (LIST (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#2|)))) (|HasCategory| |#3| (QUOTE (-1079))) (|HasSignature| |#2| (LIST (QUOTE **) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasSignature| |#2| (LIST (QUOTE -3846) (LIST (|devaluate| |#2|) (QUOTE (-1143))))))
-(-1204 |Coef| |Expon|)
+((|HasCategory| |#2| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasSignature| |#2| (LIST (QUOTE *) (LIST (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#2|)))) (|HasCategory| |#3| (QUOTE (-1078))) (|HasSignature| |#2| (LIST (QUOTE **) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasSignature| |#2| (LIST (QUOTE -3845) (LIST (|devaluate| |#2|) (QUOTE (-1142))))))
+(-1203 |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.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4331 . T) (-4332 . T) (-4334 . T))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
-(-1205 RC P)
+(-1204 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}.")))
NIL
NIL
-(-1206 |Coef1| |Coef2| |var1| |var2| |cen1| |cen2|)
+(-1205 |Coef1| |Coef2| |var1| |var2| |cen1| |cen2|)
((|constructor| (NIL "Mapping package for univariate Puiseux series. This package allows one to apply a function to the coefficients of a univariate Puiseux series.")) (|map| (((|UnivariatePuiseuxSeries| |#2| |#4| |#6|) (|Mapping| |#2| |#1|) (|UnivariatePuiseuxSeries| |#1| |#3| |#5|)) "\\spad{map(f,{}g(x))} applies the map \\spad{f} to the coefficients of the Puiseux series \\spad{g(x)}.")))
NIL
NIL
-(-1207 |Coef|)
+(-1206 |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.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-356)) (-4329 |has| |#1| (-356)) (-4331 . T) (-4332 . T) (-4334 . T))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-356)) (-4328 |has| |#1| (-356)) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
-(-1208 S |Coef| ULS)
+(-1207 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.")) (|coerce| (($ |#3|) "\\spad{coerce(f(x))} converts the Laurent series \\spad{f(x)} to a Puiseux series.")) (|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)}.")))
NIL
NIL
-(-1209 |Coef| ULS)
+(-1208 |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.")) (|coerce| (($ |#2|) "\\spad{coerce(f(x))} converts the Laurent series \\spad{f(x)} to a Puiseux series.")) (|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)}.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-356)) (-4329 |has| |#1| (-356)) (-4331 . T) (-4332 . T) (-4334 . T))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-356)) (-4328 |has| |#1| (-356)) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
-(-1210 |Coef| ULS)
+(-1209 |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)}.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-356)) (-4329 |has| |#1| (-356)) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|)))) (|HasCategory| (-400 (-549)) (QUOTE (-1079))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasSignature| |#1| (LIST (QUOTE -3846) (LIST (|devaluate| |#1|) (QUOTE (-1143)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1165))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3893) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1143))))) (|HasSignature| |#1| (LIST (QUOTE -2272) (LIST (LIST (QUOTE -621) (QUOTE (-1143))) (|devaluate| |#1|)))))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))))
-(-1211 |Coef| |var| |cen|)
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-356)) (-4328 |has| |#1| (-356)) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|)))) (|HasCategory| (-400 (-549)) (QUOTE (-1078))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasSignature| |#1| (LIST (QUOTE -3845) (LIST (|devaluate| |#1|) (QUOTE (-1142)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1164))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3405) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1142))))) (|HasSignature| |#1| (LIST (QUOTE -2270) (LIST (LIST (QUOTE -621) (QUOTE (-1142))) (|devaluate| |#1|)))))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))))
+(-1210 |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}.")) (|coerce| (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a Puiseux series.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4335 |has| |#1| (-356)) (-4329 |has| |#1| (-356)) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|)))) (|HasCategory| (-400 (-549)) (QUOTE (-1079))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasSignature| |#1| (LIST (QUOTE -3846) (LIST (|devaluate| |#1|) (QUOTE (-1143)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1165))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3893) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1143))))) (|HasSignature| |#1| (LIST (QUOTE -2272) (LIST (LIST (QUOTE -621) (QUOTE (-1143))) (|devaluate| |#1|)))))))
-(-1212 R FE |var| |cen|)
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4334 |has| |#1| (-356)) (-4328 |has| |#1| (-356)) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#1| (QUOTE (-170))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549))) (|devaluate| |#1|)))) (|HasCategory| (-400 (-549)) (QUOTE (-1078))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-1536 (|HasCategory| |#1| (QUOTE (-356))) (|HasCategory| |#1| (QUOTE (-541)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasSignature| |#1| (LIST (QUOTE -3845) (LIST (|devaluate| |#1|) (QUOTE (-1142)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -400) (QUOTE (-549)))))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1164))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3405) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1142))))) (|HasSignature| |#1| (LIST (QUOTE -2270) (LIST (LIST (QUOTE -621) (QUOTE (-1142))) (|devaluate| |#1|)))))))
+(-1211 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))}.")))
-(((-4339 "*") |has| (-1211 |#2| |#3| |#4|) (-170)) (-4330 |has| (-1211 |#2| |#3| |#4|) (-541)) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| (-1211 |#2| |#3| |#4|) (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-1211 |#2| |#3| |#4|) (QUOTE (-143))) (|HasCategory| (-1211 |#2| |#3| |#4|) (QUOTE (-145))) (|HasCategory| (-1211 |#2| |#3| |#4|) (QUOTE (-170))) (|HasCategory| (-1211 |#2| |#3| |#4|) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-1211 |#2| |#3| |#4|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-1211 |#2| |#3| |#4|) (QUOTE (-356))) (|HasCategory| (-1211 |#2| |#3| |#4|) (QUOTE (-444))) (-1536 (|HasCategory| (-1211 |#2| |#3| |#4|) (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-1211 |#2| |#3| |#4|) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasCategory| (-1211 |#2| |#3| |#4|) (QUOTE (-541))))
-(-1213 A S)
+(((-4338 "*") |has| (-1210 |#2| |#3| |#4|) (-170)) (-4329 |has| (-1210 |#2| |#3| |#4|) (-541)) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| (-1210 |#2| |#3| |#4|) (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-1210 |#2| |#3| |#4|) (QUOTE (-143))) (|HasCategory| (-1210 |#2| |#3| |#4|) (QUOTE (-145))) (|HasCategory| (-1210 |#2| |#3| |#4|) (QUOTE (-170))) (|HasCategory| (-1210 |#2| |#3| |#4|) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-1210 |#2| |#3| |#4|) (LIST (QUOTE -1009) (QUOTE (-549)))) (|HasCategory| (-1210 |#2| |#3| |#4|) (QUOTE (-356))) (|HasCategory| (-1210 |#2| |#3| |#4|) (QUOTE (-444))) (-1536 (|HasCategory| (-1210 |#2| |#3| |#4|) (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| (-1210 |#2| |#3| |#4|) (LIST (QUOTE -1009) (LIST (QUOTE -400) (QUOTE (-549)))))) (|HasCategory| (-1210 |#2| |#3| |#4|) (QUOTE (-541))))
+(-1212 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 -4338)))
-(-1214 S)
+((|HasAttribute| |#1| (QUOTE -4337)))
+(-1213 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)}.")))
-((-2624 . T))
+((-2623 . T))
NIL
-(-1215 |Coef1| |Coef2| UTS1 UTS2)
+(-1214 |Coef1| |Coef2| UTS1 UTS2)
((|constructor| (NIL "Mapping package for univariate Taylor series. \\indented{2}{This package allows one to apply a function to the coefficients of} \\indented{2}{a univariate Taylor series.}")) (|map| ((|#4| (|Mapping| |#2| |#1|) |#3|) "\\spad{map(f,{}g(x))} applies the map \\spad{f} to the coefficients of \\indented{1}{the Taylor series \\spad{g(x)}.}")))
NIL
NIL
-(-1216 S |Coef|)
+(-1215 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 (-549)))) (|HasCategory| |#2| (QUOTE (-930))) (|HasCategory| |#2| (QUOTE (-1165))) (|HasSignature| |#2| (LIST (QUOTE -2272) (LIST (LIST (QUOTE -621) (QUOTE (-1143))) (|devaluate| |#2|)))) (|HasSignature| |#2| (LIST (QUOTE -3893) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (QUOTE (-1143))))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356))))
-(-1217 |Coef|)
+((|HasCategory| |#2| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#2| (QUOTE (-930))) (|HasCategory| |#2| (QUOTE (-1164))) (|HasSignature| |#2| (LIST (QUOTE -2270) (LIST (LIST (QUOTE -621) (QUOTE (-1142))) (|devaluate| |#2|)))) (|HasSignature| |#2| (LIST (QUOTE -3405) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (QUOTE (-1142))))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#2| (QUOTE (-356))))
+(-1216 |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.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4331 . T) (-4332 . T) (-4334 . T))
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
-(-1218 |Coef| |var| |cen|)
+(-1217 |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}.")))
-(((-4339 "*") |has| |#1| (-170)) (-4330 |has| |#1| (-541)) (-4331 . T) (-4332 . T) (-4334 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1143)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-747)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-747)) (|devaluate| |#1|)))) (|HasCategory| (-747) (QUOTE (-1079))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-747))))) (|HasSignature| |#1| (LIST (QUOTE -3846) (LIST (|devaluate| |#1|) (QUOTE (-1143)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-747))))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1165))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3893) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1143))))) (|HasSignature| |#1| (LIST (QUOTE -2272) (LIST (LIST (QUOTE -621) (QUOTE (-1143))) (|devaluate| |#1|)))))))
-(-1219 |Coef| UTS)
+(((-4338 "*") |has| |#1| (-170)) (-4329 |has| |#1| (-541)) (-4330 . T) (-4331 . T) (-4333 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasCategory| |#1| (QUOTE (-541))) (-1536 (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-541)))) (|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-143))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (LIST (QUOTE -871) (QUOTE (-1142)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-747)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-747)) (|devaluate| |#1|)))) (|HasCategory| (-747) (QUOTE (-1078))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-747))))) (|HasSignature| |#1| (LIST (QUOTE -3845) (LIST (|devaluate| |#1|) (QUOTE (-1142)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-747))))) (|HasCategory| |#1| (QUOTE (-356))) (-1536 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-549)))) (|HasCategory| |#1| (QUOTE (-930))) (|HasCategory| |#1| (QUOTE (-1164))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasSignature| |#1| (LIST (QUOTE -3405) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1142))))) (|HasSignature| |#1| (LIST (QUOTE -2270) (LIST (LIST (QUOTE -621) (QUOTE (-1142))) (|devaluate| |#1|)))))))
+(-1218 |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
-(-1220 -1422 UP L UTS)
+(-1219 -1421 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 (-541))))
-(-1221)
+(-1220)
((|constructor| (NIL "The category of domains that act like unions. UnionType,{} like Type or Category,{} acts mostly as a take that communicates `union-like' intended semantics to the compiler. A domain \\spad{D} that satifies UnionType should provide definitions for `case' operators,{} with corresponding `autoCoerce' operators.")))
-((-2624 . T))
+((-2623 . T))
NIL
-(-1222 |sym|)
+(-1221 |sym|)
((|constructor| (NIL "This domain implements variables")) (|variable| (((|Symbol|)) "\\spad{variable()} returns the symbol")) (|coerce| (((|Symbol|) $) "\\spad{coerce(x)} returns the symbol")))
NIL
NIL
-(-1223 S R)
+(-1222 S 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| ((|#2| $) "\\spad{magnitude(v)} computes the sqrt(dot(\\spad{v},{}\\spad{v})),{} \\spadignore{i.e.} the length")) (|length| ((|#2| $) "\\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| |#2|) $ $) "\\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| ((|#2| $ $) "\\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.")) (* (($ $ |#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}.") (($ (|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.")))
NIL
((|HasCategory| |#2| (QUOTE (-973))) (|HasCategory| |#2| (QUOTE (-1018))) (|HasCategory| |#2| (QUOTE (-703))) (|HasCategory| |#2| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-25))))
-(-1224 R)
+(-1223 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.")))
-((-4338 . T) (-4337 . T) (-2624 . T))
+((-4337 . T) (-4336 . T) (-2623 . T))
NIL
-(-1225 A B)
+(-1224 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}.")))
NIL
NIL
-(-1226 R)
+(-1225 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.")))
-((-4338 . T) (-4337 . T))
-((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-703))) (|HasCategory| |#1| (QUOTE (-1018))) (-12 (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (QUOTE (-1018)))) (-12 (|HasCategory| |#1| (QUOTE (-1067))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
-(-1227)
+((-4337 . T) (-4336 . T))
+((-1536 (-12 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|))))) (-1536 (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834))))) (|HasCategory| |#1| (LIST (QUOTE -594) (QUOTE (-525)))) (-1536 (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066)))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-549) (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-703))) (|HasCategory| |#1| (QUOTE (-1018))) (-12 (|HasCategory| |#1| (QUOTE (-973))) (|HasCategory| |#1| (QUOTE (-1018)))) (-12 (|HasCategory| |#1| (QUOTE (-1066))) (|HasCategory| |#1| (LIST (QUOTE -302) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -593) (QUOTE (-834)))))
+(-1226)
((|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.")))
NIL
NIL
-(-1228)
+(-1227)
((|key| (((|Integer|) $) "\\spad{key(v)} returns the process ID number of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|close| (((|Void|) $) "\\spad{close(v)} closes the viewport window of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} and terminates the corresponding process ID.")) (|write| (((|String|) $ (|String|) (|List| (|String|))) "\\spad{write(v,{}s,{}lf)} takes the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data file 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 three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data file for \\spad{v} and an optional file type \\spad{f}.") (((|String|) $ (|String|)) "\\spad{write(v,{}s)} takes the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data file for \\spad{v}.")) (|colorDef| (((|Void|) $ (|Color|) (|Color|)) "\\spad{colorDef(v,{}c1,{}c2)} sets the range of colors along the colormap so that the lower end of the colormap is defined by \\spad{c1} and the top end of the colormap is defined by \\spad{c2},{} for the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|reset| (((|Void|) $) "\\spad{reset(v)} sets the current state of the graph characteristics of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} back to their initial settings.")) (|intensity| (((|Void|) $ (|Float|)) "\\spad{intensity(v,{}i)} sets the intensity of the light source to \\spad{i},{} for the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|lighting| (((|Void|) $ (|Float|) (|Float|) (|Float|)) "\\spad{lighting(v,{}x,{}y,{}z)} sets the position of the light source to the coordinates \\spad{x},{} \\spad{y},{} and \\spad{z} and displays the graph for the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|clipSurface| (((|Void|) $ (|String|)) "\\spad{clipSurface(v,{}s)} displays the graph with the specified clipping region removed if \\spad{s} is \"on\",{} or displays the graph without clipping implemented if \\spad{s} is \"off\",{} for the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|showClipRegion| (((|Void|) $ (|String|)) "\\spad{showClipRegion(v,{}s)} displays the clipping region of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the region if \\spad{s} is \"off\".")) (|showRegion| (((|Void|) $ (|String|)) "\\spad{showRegion(v,{}s)} displays the bounding box of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the box if \\spad{s} is \"off\".")) (|hitherPlane| (((|Void|) $ (|Float|)) "\\spad{hitherPlane(v,{}h)} sets the hither clipping plane of the graph to \\spad{h},{} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.")) (|eyeDistance| (((|Void|) $ (|Float|)) "\\spad{eyeDistance(v,{}d)} sets the distance of the observer from the center of the graph to \\spad{d},{} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.")) (|perspective| (((|Void|) $ (|String|)) "\\spad{perspective(v,{}s)} displays the graph in perspective if \\spad{s} is \"on\",{} or does not display perspective if \\spad{s} is \"off\" for the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport}.")) (|translate| (((|Void|) $ (|Float|) (|Float|)) "\\spad{translate(v,{}dx,{}dy)} sets the horizontal viewport offset to \\spad{dx} and the vertical viewport offset to \\spad{dy},{} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.")) (|zoom| (((|Void|) $ (|Float|) (|Float|) (|Float|)) "\\spad{zoom(v,{}sx,{}sy,{}sz)} sets the graph scaling factors for the \\spad{x}-coordinate axis to \\spad{sx},{} the \\spad{y}-coordinate axis to \\spad{sy} and the \\spad{z}-coordinate axis to \\spad{sz} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.") (((|Void|) $ (|Float|)) "\\spad{zoom(v,{}s)} sets the graph scaling factor to \\spad{s},{} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.")) (|rotate| (((|Void|) $ (|Integer|) (|Integer|)) "\\spad{rotate(v,{}th,{}phi)} rotates the graph to the longitudinal view angle \\spad{th} degrees and the latitudinal view angle \\spad{phi} degrees for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}. The new rotation position is not displayed until the function \\spadfun{makeViewport3D} is executed again for \\spad{v}.") (((|Void|) $ (|Float|) (|Float|)) "\\spad{rotate(v,{}th,{}phi)} rotates the graph to the longitudinal view angle \\spad{th} radians and the latitudinal view angle \\spad{phi} radians for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}.")) (|drawStyle| (((|Void|) $ (|String|)) "\\spad{drawStyle(v,{}s)} displays the surface for the given three-dimensional viewport \\spad{v} which is of domain \\spadtype{ThreeDimensionalViewport} in the style of drawing indicated by \\spad{s}. If \\spad{s} is not a valid drawing style the style is wireframe by default. Possible styles are \\spad{\"shade\"},{} \\spad{\"solid\"} or \\spad{\"opaque\"},{} \\spad{\"smooth\"},{} and \\spad{\"wireMesh\"}.")) (|outlineRender| (((|Void|) $ (|String|)) "\\spad{outlineRender(v,{}s)} displays the polygon outline showing either triangularized surface or a quadrilateral surface outline depending on the whether the \\spadfun{diagonals} function has been set,{} for the given three-dimensional viewport \\spad{v} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the polygon outline if \\spad{s} is \"off\".")) (|diagonals| (((|Void|) $ (|String|)) "\\spad{diagonals(v,{}s)} displays the diagonals of the polygon outline showing a triangularized surface instead of a quadrilateral surface outline,{} for the given three-dimensional viewport \\spad{v} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the diagonals if \\spad{s} is \"off\".")) (|axes| (((|Void|) $ (|String|)) "\\spad{axes(v,{}s)} displays the axes of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the axes if \\spad{s} is \"off\".")) (|controlPanel| (((|Void|) $ (|String|)) "\\spad{controlPanel(v,{}s)} displays the control panel of the given three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} if \\spad{s} is \"on\",{} or hides the control panel if \\spad{s} is \"off\".")) (|viewpoint| (((|Void|) $ (|Float|) (|Float|) (|Float|)) "\\spad{viewpoint(v,{}rotx,{}roty,{}rotz)} sets the rotation about the \\spad{x}-axis to be \\spad{rotx} radians,{} sets the rotation about the \\spad{y}-axis to be \\spad{roty} radians,{} and sets the rotation about the \\spad{z}-axis to be \\spad{rotz} radians,{} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport} and displays \\spad{v} with the new view position.") (((|Void|) $ (|Float|) (|Float|)) "\\spad{viewpoint(v,{}th,{}phi)} sets the longitudinal view angle to \\spad{th} radians and the latitudinal view angle to \\spad{phi} radians for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}. The new viewpoint position is not displayed until the function \\spadfun{makeViewport3D} is executed again for \\spad{v}.") (((|Void|) $ (|Integer|) (|Integer|) (|Float|) (|Float|) (|Float|)) "\\spad{viewpoint(v,{}th,{}phi,{}s,{}dx,{}dy)} sets the longitudinal view angle to \\spad{th} degrees,{} the latitudinal view angle to \\spad{phi} degrees,{} the scale factor to \\spad{s},{} the horizontal viewport offset to \\spad{dx},{} and the vertical viewport offset to \\spad{dy} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}. The new viewpoint position is not displayed until the function \\spadfun{makeViewport3D} is executed again for \\spad{v}.") (((|Void|) $ (|Record| (|:| |theta| (|DoubleFloat|)) (|:| |phi| (|DoubleFloat|)) (|:| |scale| (|DoubleFloat|)) (|:| |scaleX| (|DoubleFloat|)) (|:| |scaleY| (|DoubleFloat|)) (|:| |scaleZ| (|DoubleFloat|)) (|:| |deltaX| (|DoubleFloat|)) (|:| |deltaY| (|DoubleFloat|)))) "\\spad{viewpoint(v,{}viewpt)} sets the viewpoint for the viewport. The viewport record consists of the latitudal and longitudal angles,{} the zoom factor,{} the \\spad{X},{} \\spad{Y},{} and \\spad{Z} scales,{} and the \\spad{X} and \\spad{Y} displacements.") (((|Record| (|:| |theta| (|DoubleFloat|)) (|:| |phi| (|DoubleFloat|)) (|:| |scale| (|DoubleFloat|)) (|:| |scaleX| (|DoubleFloat|)) (|:| |scaleY| (|DoubleFloat|)) (|:| |scaleZ| (|DoubleFloat|)) (|:| |deltaX| (|DoubleFloat|)) (|:| |deltaY| (|DoubleFloat|))) $) "\\spad{viewpoint(v)} returns the current viewpoint setting of the given viewport,{} \\spad{v}. This function is useful in the situation where the user has created a viewport,{} proceeded to interact with it via the control panel and desires to save the values of the viewpoint as the default settings for another viewport to be created using the system.") (((|Void|) $ (|Float|) (|Float|) (|Float|) (|Float|) (|Float|)) "\\spad{viewpoint(v,{}th,{}phi,{}s,{}dx,{}dy)} sets the longitudinal view angle to \\spad{th} radians,{} the latitudinal view angle to \\spad{phi} radians,{} the scale factor to \\spad{s},{} the horizontal viewport offset to \\spad{dx},{} and the vertical viewport offset to \\spad{dy} for the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport}. The new viewpoint position is not displayed until the function \\spadfun{makeViewport3D} is executed again for \\spad{v}.")) (|dimensions| (((|Void|) $ (|NonNegativeInteger|) (|NonNegativeInteger|) (|PositiveInteger|) (|PositiveInteger|)) "\\spad{dimensions(v,{}x,{}y,{}width,{}height)} sets the position of the upper left-hand corner of the three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} 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{makeViewport3D} is executed again for \\spad{v}.")) (|title| (((|Void|) $ (|String|)) "\\spad{title(v,{}s)} changes the title which is shown in the three-dimensional viewport window,{} \\spad{v} of domain \\spadtype{ThreeDimensionalViewport}.")) (|resize| (((|Void|) $ (|PositiveInteger|) (|PositiveInteger|)) "\\spad{resize(v,{}w,{}h)} displays the three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} with a width of \\spad{w} and a height of \\spad{h},{} keeping the upper left-hand corner position unchanged.")) (|move| (((|Void|) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{move(v,{}x,{}y)} displays the three-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{ThreeDimensionalViewport},{} with the upper left-hand corner of the viewport window at the screen coordinate position \\spad{x},{} \\spad{y}.")) (|options| (($ $ (|List| (|DrawOption|))) "\\spad{options(v,{}lopt)} takes the viewport,{} \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport} and sets the draw options being used by \\spad{v} to those indicated in the list,{} \\spad{lopt},{} which is a list of options from the domain \\spad{DrawOption}.") (((|List| (|DrawOption|)) $) "\\spad{options(v)} takes the viewport,{} \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport} and returns a list of all the draw options from the domain \\spad{DrawOption} which are being used by \\spad{v}.")) (|modifyPointData| (((|Void|) $ (|NonNegativeInteger|) (|Point| (|DoubleFloat|))) "\\spad{modifyPointData(v,{}ind,{}pt)} takes the viewport,{} \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport},{} and places the data point,{} \\spad{pt} into the list of points database of \\spad{v} at the index location given by \\spad{ind}.")) (|subspace| (($ $ (|ThreeSpace| (|DoubleFloat|))) "\\spad{subspace(v,{}sp)} places the contents of the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport},{} in the subspace \\spad{sp},{} which is of the domain \\spad{ThreeSpace}.") (((|ThreeSpace| (|DoubleFloat|)) $) "\\spad{subspace(v)} returns the contents of the viewport \\spad{v},{} which is of the domain \\spadtype{ThreeDimensionalViewport},{} as a subspace of the domain \\spad{ThreeSpace}.")) (|makeViewport3D| (($ (|ThreeSpace| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{makeViewport3D(sp,{}lopt)} takes the given space,{} \\spad{sp} which is of the domain \\spadtype{ThreeSpace} and displays a viewport window on the screen which contains the contents of \\spad{sp},{} and whose draw options are indicated by the list \\spad{lopt},{} which is a list of options from the domain \\spad{DrawOption}.") (($ (|ThreeSpace| (|DoubleFloat|)) (|String|)) "\\spad{makeViewport3D(sp,{}s)} takes the given space,{} \\spad{sp} which is of the domain \\spadtype{ThreeSpace} and displays a viewport window on the screen which contains the contents of \\spad{sp},{} and whose title is given by \\spad{s}.") (($ $) "\\spad{makeViewport3D(v)} takes the given three-dimensional viewport,{} \\spad{v},{} of the domain \\spadtype{ThreeDimensionalViewport} and displays a viewport window on the screen which contains the contents of \\spad{v}.")) (|viewport3D| (($) "\\spad{viewport3D()} returns an undefined three-dimensional viewport of the domain \\spadtype{ThreeDimensionalViewport} whose contents are empty.")) (|viewDeltaYDefault| (((|Float|) (|Float|)) "\\spad{viewDeltaYDefault(dy)} sets the current default vertical offset from the center of the viewport window to be \\spad{dy} and returns \\spad{dy}.") (((|Float|)) "\\spad{viewDeltaYDefault()} returns the current default vertical offset from the center of the viewport window.")) (|viewDeltaXDefault| (((|Float|) (|Float|)) "\\spad{viewDeltaXDefault(dx)} sets the current default horizontal offset from the center of the viewport window to be \\spad{dx} and returns \\spad{dx}.") (((|Float|)) "\\spad{viewDeltaXDefault()} returns the current default horizontal offset from the center of the viewport window.")) (|viewZoomDefault| (((|Float|) (|Float|)) "\\spad{viewZoomDefault(s)} sets the current default graph scaling value to \\spad{s} and returns \\spad{s}.") (((|Float|)) "\\spad{viewZoomDefault()} returns the current default graph scaling value.")) (|viewPhiDefault| (((|Float|) (|Float|)) "\\spad{viewPhiDefault(p)} sets the current default latitudinal view angle in radians to the value \\spad{p} and returns \\spad{p}.") (((|Float|)) "\\spad{viewPhiDefault()} returns the current default latitudinal view angle in radians.")) (|viewThetaDefault| (((|Float|) (|Float|)) "\\spad{viewThetaDefault(t)} sets the current default longitudinal view angle in radians to the value \\spad{t} and returns \\spad{t}.") (((|Float|)) "\\spad{viewThetaDefault()} returns the current default longitudinal view angle in radians.")))
NIL
NIL
-(-1229)
+(-1228)
((|constructor| (NIL "ViewportDefaultsPackage describes default and user definable values for graphics")) (|tubeRadiusDefault| (((|DoubleFloat|)) "\\spad{tubeRadiusDefault()} returns the radius used for a 3D tube plot.") (((|DoubleFloat|) (|Float|)) "\\spad{tubeRadiusDefault(r)} sets the default radius for a 3D tube plot to \\spad{r}.")) (|tubePointsDefault| (((|PositiveInteger|)) "\\spad{tubePointsDefault()} returns the number of points to be used when creating the circle to be used in creating a 3D tube plot.") (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{tubePointsDefault(i)} sets the number of points to use when creating the circle to be used in creating a 3D tube plot to \\spad{i}.")) (|var2StepsDefault| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{var2StepsDefault(i)} sets the number of steps to take when creating a 3D mesh in the direction of the first defined free variable to \\spad{i} (a free variable is considered defined when its range is specified (\\spadignore{e.g.} \\spad{x=0}..10)).") (((|PositiveInteger|)) "\\spad{var2StepsDefault()} is the current setting for the number of steps to take when creating a 3D mesh in the direction of the first defined free variable (a free variable is considered defined when its range is specified (\\spadignore{e.g.} \\spad{x=0}..10)).")) (|var1StepsDefault| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{var1StepsDefault(i)} sets the number of steps to take when creating a 3D mesh in the direction of the first defined free variable to \\spad{i} (a free variable is considered defined when its range is specified (\\spadignore{e.g.} \\spad{x=0}..10)).") (((|PositiveInteger|)) "\\spad{var1StepsDefault()} is the current setting for the number of steps to take when creating a 3D mesh in the direction of the first defined free variable (a free variable is considered defined when its range is specified (\\spadignore{e.g.} \\spad{x=0}..10)).")) (|viewWriteAvailable| (((|List| (|String|))) "\\spad{viewWriteAvailable()} returns a list of available methods for writing,{} such as BITMAP,{} POSTSCRIPT,{} etc.")) (|viewWriteDefault| (((|List| (|String|)) (|List| (|String|))) "\\spad{viewWriteDefault(l)} sets the default list of things to write in a viewport data file to the strings in \\spad{l}; a viewAlone file is always genereated.") (((|List| (|String|))) "\\spad{viewWriteDefault()} returns the list of things to write in a viewport data file; a viewAlone file is always generated.")) (|viewDefaults| (((|Void|)) "\\spad{viewDefaults()} resets all the default graphics settings.")) (|viewSizeDefault| (((|List| (|PositiveInteger|)) (|List| (|PositiveInteger|))) "\\spad{viewSizeDefault([w,{}h])} sets the default viewport width to \\spad{w} and height to \\spad{h}.") (((|List| (|PositiveInteger|))) "\\spad{viewSizeDefault()} returns the default viewport width and height.")) (|viewPosDefault| (((|List| (|NonNegativeInteger|)) (|List| (|NonNegativeInteger|))) "\\spad{viewPosDefault([x,{}y])} sets the default \\spad{X} and \\spad{Y} position of a viewport window unless overriden explicityly,{} newly created viewports will have th \\spad{X} and \\spad{Y} coordinates \\spad{x},{} \\spad{y}.") (((|List| (|NonNegativeInteger|))) "\\spad{viewPosDefault()} returns the default \\spad{X} and \\spad{Y} position of a viewport window unless overriden explicityly,{} newly created viewports will have this \\spad{X} and \\spad{Y} coordinate.")) (|pointSizeDefault| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{pointSizeDefault(i)} sets the default size of the points in a 2D viewport to \\spad{i}.") (((|PositiveInteger|)) "\\spad{pointSizeDefault()} returns the default size of the points in a 2D viewport.")) (|unitsColorDefault| (((|Palette|) (|Palette|)) "\\spad{unitsColorDefault(p)} sets the default color of the unit ticks in a 2D viewport to the palette \\spad{p}.") (((|Palette|)) "\\spad{unitsColorDefault()} returns the default color of the unit ticks in a 2D viewport.")) (|axesColorDefault| (((|Palette|) (|Palette|)) "\\spad{axesColorDefault(p)} sets the default color of the axes in a 2D viewport to the palette \\spad{p}.") (((|Palette|)) "\\spad{axesColorDefault()} returns the default color of the axes in a 2D viewport.")) (|lineColorDefault| (((|Palette|) (|Palette|)) "\\spad{lineColorDefault(p)} sets the default color of lines connecting points in a 2D viewport to the palette \\spad{p}.") (((|Palette|)) "\\spad{lineColorDefault()} returns the default color of lines connecting points in a 2D viewport.")) (|pointColorDefault| (((|Palette|) (|Palette|)) "\\spad{pointColorDefault(p)} sets the default color of points in a 2D viewport to the palette \\spad{p}.") (((|Palette|)) "\\spad{pointColorDefault()} returns the default color of points in a 2D viewport.")))
NIL
NIL
-(-1230)
+(-1229)
((|constructor| (NIL "ViewportPackage provides functions for creating GraphImages and TwoDimensionalViewports from lists of lists of points.")) (|coerce| (((|TwoDimensionalViewport|) (|GraphImage|)) "\\spad{coerce(\\spad{gi})} converts the indicated \\spadtype{GraphImage},{} \\spad{gi},{} into the \\spadtype{TwoDimensionalViewport} form.")) (|drawCurves| (((|TwoDimensionalViewport|) (|List| (|List| (|Point| (|DoubleFloat|)))) (|List| (|DrawOption|))) "\\spad{drawCurves([[p0],{}[p1],{}...,{}[pn]],{}[options])} creates a \\spadtype{TwoDimensionalViewport} from the list of lists of points,{} \\spad{p0} throught \\spad{pn},{} using the options specified in the list \\spad{options}.") (((|TwoDimensionalViewport|) (|List| (|List| (|Point| (|DoubleFloat|)))) (|Palette|) (|Palette|) (|PositiveInteger|) (|List| (|DrawOption|))) "\\spad{drawCurves([[p0],{}[p1],{}...,{}[pn]],{}ptColor,{}lineColor,{}ptSize,{}[options])} creates a \\spadtype{TwoDimensionalViewport} from the list of lists of points,{} \\spad{p0} throught \\spad{pn},{} using the options specified in the list \\spad{options}. The point color is specified by \\spad{ptColor},{} the line color is specified by \\spad{lineColor},{} and the point size is specified by \\spad{ptSize}.")) (|graphCurves| (((|GraphImage|) (|List| (|List| (|Point| (|DoubleFloat|)))) (|List| (|DrawOption|))) "\\spad{graphCurves([[p0],{}[p1],{}...,{}[pn]],{}[options])} creates a \\spadtype{GraphImage} from the list of lists of points,{} \\spad{p0} throught \\spad{pn},{} using the options specified in the list \\spad{options}.") (((|GraphImage|) (|List| (|List| (|Point| (|DoubleFloat|))))) "\\spad{graphCurves([[p0],{}[p1],{}...,{}[pn]])} creates a \\spadtype{GraphImage} from the list of lists of points indicated by \\spad{p0} through \\spad{pn}.") (((|GraphImage|) (|List| (|List| (|Point| (|DoubleFloat|)))) (|Palette|) (|Palette|) (|PositiveInteger|) (|List| (|DrawOption|))) "\\spad{graphCurves([[p0],{}[p1],{}...,{}[pn]],{}ptColor,{}lineColor,{}ptSize,{}[options])} creates a \\spadtype{GraphImage} from the list of lists of points,{} \\spad{p0} throught \\spad{pn},{} using the options specified in the list \\spad{options}. The graph point color is specified by \\spad{ptColor},{} the graph line color is specified by \\spad{lineColor},{} and the size of the points is specified by \\spad{ptSize}.")))
NIL
NIL
-(-1231)
+(-1230)
((|constructor| (NIL "This type is used when no value is needed,{} \\spadignore{e.g.} in the \\spad{then} part of a one armed \\spad{if}. All values can be coerced to type Void. Once a value has been coerced to Void,{} it cannot be recovered.")) (|coerce| (((|OutputForm|) $) "\\spad{coerce(v)} coerces void object to outputForm.")) (|void| (($) "\\spad{void()} produces a void object.")))
NIL
NIL
-(-1232 A S)
+(-1231 A S)
((|constructor| (NIL "Vector Spaces (not necessarily finite dimensional) over a field.")) (|dimension| (((|CardinalNumber|)) "\\spad{dimension()} returns the dimensionality of the vector space.")) (/ (($ $ |#2|) "\\spad{x/y} divides the vector \\spad{x} by the scalar \\spad{y}.")))
NIL
NIL
-(-1233 S)
+(-1232 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}.")))
-((-4332 . T) (-4331 . T))
+((-4331 . T) (-4330 . T))
NIL
-(-1234 R)
+(-1233 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
-(-1235 K R UP -1422)
+(-1234 K R UP -1421)
((|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
-(-1236)
-((|constructor| (NIL "This domain represents the syntax of a `where' expression.")) (|qualifier| (((|Syntax|) $) "\\spad{qualifier(e)} returns the qualifier of the expression `e'.")) (|mainExpression| (((|Syntax|) $) "\\spad{mainExpression(e)} returns the main expression of the `where' expression `e'.")))
+(-1235)
+((|constructor| (NIL "This domain represents the syntax of a `where' expression.")) (|qualifier| (((|SpadAst|) $) "\\spad{qualifier(e)} returns the qualifier of the expression `e'.")) (|mainExpression| (((|SpadAst|) $) "\\spad{mainExpression(e)} returns the main expression of the `where' expression `e'.")))
NIL
NIL
-(-1237)
-((|constructor| (NIL "This domain represents the `while' iterator syntax.")) (|condition| (((|Syntax|) $) "\\spad{condition(i)} returns the condition of the while iterator `i'.")))
+(-1236)
+((|constructor| (NIL "This domain represents the `while' iterator syntax.")) (|condition| (((|SpadAst|) $) "\\spad{condition(i)} returns the condition of the while iterator `i'.")))
NIL
NIL
-(-1238 R |VarSet| E P |vl| |wl| |wtlevel|)
+(-1237 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)")) (|coerce| (($ |#4|) "\\spad{coerce(p)} coerces \\spad{p} into Weighted form,{} applying weights and ignoring terms") ((|#4| $) "convert back into a \\spad{\"P\"},{} ignoring weights")))
-((-4332 |has| |#1| (-170)) (-4331 |has| |#1| (-170)) (-4334 . T))
+((-4331 |has| |#1| (-170)) (-4330 |has| |#1| (-170)) (-4333 . T))
((|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))))
-(-1239 R E V P)
+(-1238 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}}.")))
-((-4338 . T) (-4337 . T))
-((-12 (|HasCategory| |#4| (QUOTE (-1067))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#4| (QUOTE (-1067))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#4| (LIST (QUOTE -593) (QUOTE (-834)))))
-(-1240 R)
+((-4337 . T) (-4336 . T))
+((-12 (|HasCategory| |#4| (QUOTE (-1066))) (|HasCategory| |#4| (LIST (QUOTE -302) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -594) (QUOTE (-525)))) (|HasCategory| |#4| (QUOTE (-1066))) (|HasCategory| |#1| (QUOTE (-541))) (|HasCategory| |#3| (QUOTE (-361))) (|HasCategory| |#4| (LIST (QUOTE -593) (QUOTE (-834)))))
+(-1239 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})")) (|coerce| (($ |#1|) "\\spad{coerce(r)} equals \\spad{r*1}.")))
-((-4331 . T) (-4332 . T) (-4334 . T))
+((-4330 . T) (-4331 . T) (-4333 . T))
NIL
-(-1241 |vl| R)
+(-1240 |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.")))
-((-4334 . T) (-4330 |has| |#2| (-6 -4330)) (-4332 . T) (-4331 . T))
-((|HasCategory| |#2| (QUOTE (-170))) (|HasAttribute| |#2| (QUOTE -4330)))
-(-1242 R |VarSet| XPOLY)
+((-4333 . T) (-4329 |has| |#2| (-6 -4329)) (-4331 . T) (-4330 . T))
+((|HasCategory| |#2| (QUOTE (-170))) (|HasAttribute| |#2| (QUOTE -4329)))
+(-1241 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
-(-1243 |vl| R)
+(-1242 |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}.")))
-((-4330 |has| |#2| (-6 -4330)) (-4332 . T) (-4331 . T) (-4334 . T))
+((-4329 |has| |#2| (-6 -4329)) (-4331 . T) (-4330 . T) (-4333 . T))
NIL
-(-1244 S -1422)
+(-1243 S -1421)
((|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 (-361))) (|HasCategory| |#2| (QUOTE (-143))) (|HasCategory| |#2| (QUOTE (-145))))
-(-1245 -1422)
+(-1244 -1421)
((|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}.")))
-((-4329 . T) (-4335 . T) (-4330 . T) ((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+((-4328 . T) (-4334 . T) (-4329 . T) ((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
-(-1246 |VarSet| R)
+(-1245 |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}}.")))
-((-4330 |has| |#2| (-6 -4330)) (-4332 . T) (-4331 . T) (-4334 . T))
-((|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (LIST (QUOTE -694) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasAttribute| |#2| (QUOTE -4330)))
-(-1247 |vl| R)
+((-4329 |has| |#2| (-6 -4329)) (-4331 . T) (-4330 . T) (-4333 . T))
+((|HasCategory| |#2| (QUOTE (-170))) (|HasCategory| |#2| (LIST (QUOTE -694) (LIST (QUOTE -400) (QUOTE (-549))))) (|HasAttribute| |#2| (QUOTE -4329)))
+(-1246 |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}.")))
-((-4330 |has| |#2| (-6 -4330)) (-4332 . T) (-4331 . T) (-4334 . T))
+((-4329 |has| |#2| (-6 -4329)) (-4331 . T) (-4330 . T) (-4333 . T))
NIL
-(-1248 R)
+(-1247 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.")))
-((-4330 |has| |#1| (-6 -4330)) (-4332 . T) (-4331 . T) (-4334 . T))
-((|HasCategory| |#1| (QUOTE (-170))) (|HasAttribute| |#1| (QUOTE -4330)))
-(-1249 R E)
+((-4329 |has| |#1| (-6 -4329)) (-4331 . T) (-4330 . T) (-4333 . T))
+((|HasCategory| |#1| (QUOTE (-170))) (|HasAttribute| |#1| (QUOTE -4329)))
+(-1248 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.")) (|coerce| (($ |#2|) "\\spad{coerce(e)} returns \\spad{1*e}")) (|#| (((|NonNegativeInteger|) $) "\\spad{\\# p} returns the number of terms in \\spad{p}.")) (* (($ $ |#1|) "\\spad{p*r} returns the product of \\spad{p} by \\spad{r}.")))
-((-4334 . T) (-4335 |has| |#1| (-6 -4335)) (-4330 |has| |#1| (-6 -4330)) (-4332 . T) (-4331 . T))
-((|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasAttribute| |#1| (QUOTE -4334)) (|HasAttribute| |#1| (QUOTE -4335)) (|HasAttribute| |#1| (QUOTE -4330)))
-(-1250 |VarSet| R)
+((-4333 . T) (-4334 |has| |#1| (-6 -4334)) (-4329 |has| |#1| (-6 -4329)) (-4331 . T) (-4330 . T))
+((|HasCategory| |#1| (QUOTE (-170))) (|HasCategory| |#1| (QUOTE (-356))) (|HasAttribute| |#1| (QUOTE -4333)) (|HasAttribute| |#1| (QUOTE -4334)) (|HasAttribute| |#1| (QUOTE -4329)))
+(-1249 |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.")))
-((-4330 |has| |#2| (-6 -4330)) (-4332 . T) (-4331 . T) (-4334 . T))
-((|HasCategory| |#2| (QUOTE (-170))) (|HasAttribute| |#2| (QUOTE -4330)))
-(-1251 A)
+((-4329 |has| |#2| (-6 -4329)) (-4331 . T) (-4330 . T) (-4333 . T))
+((|HasCategory| |#2| (QUOTE (-170))) (|HasAttribute| |#2| (QUOTE -4329)))
+(-1250 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
NIL
-(-1252 R |ls| |ls2|)
+(-1251 R |ls| |ls2|)
((|constructor| (NIL "A package for computing symbolically the complex and real roots of zero-dimensional algebraic systems over the integer or rational numbers. Complex roots are given by means of univariate representations of irreducible regular chains. Real roots are given by means of tuples of coordinates lying in the \\spadtype{RealClosure} of the coefficient ring. This constructor takes three arguments. The first one \\spad{R} is the coefficient ring. The second one \\spad{ls} is the list of variables involved in the systems to solve. The third one must be \\spad{concat(ls,{}s)} where \\spad{s} is an additional symbol used for the univariate representations. WARNING: The third argument is not checked. All operations are based on triangular decompositions. The default is to compute these decompositions directly from the input system by using the \\spadtype{RegularChain} domain constructor. The lexTriangular algorithm can also be used for computing these decompositions (see the \\spadtype{LexTriangularPackage} package constructor). For that purpose,{} the operations \\axiomOpFrom{univariateSolve}{ZeroDimensionalSolvePackage},{} \\axiomOpFrom{realSolve}{ZeroDimensionalSolvePackage} and \\axiomOpFrom{positiveSolve}{ZeroDimensionalSolvePackage} admit an optional argument. \\newline Author: Marc Moreno Maza.")) (|convert| (((|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#3|))) (|SquareFreeRegularTriangularSet| |#1| (|IndexedExponents| (|OrderedVariableList| |#3|)) (|OrderedVariableList| |#3|) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#3|)))) "\\spad{convert(st)} returns the members of \\spad{st}.") (((|SparseUnivariatePolynomial| (|RealClosure| (|Fraction| |#1|))) (|SparseUnivariatePolynomial| |#1|)) "\\spad{convert(u)} converts \\spad{u}.") (((|Polynomial| (|RealClosure| (|Fraction| |#1|))) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#3|))) "\\spad{convert(q)} converts \\spad{q}.") (((|Polynomial| (|RealClosure| (|Fraction| |#1|))) (|Polynomial| |#1|)) "\\spad{convert(p)} converts \\spad{p}.") (((|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#3|)) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) "\\spad{convert(q)} converts \\spad{q}.")) (|squareFree| (((|List| (|SquareFreeRegularTriangularSet| |#1| (|IndexedExponents| (|OrderedVariableList| |#3|)) (|OrderedVariableList| |#3|) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#3|)))) (|RegularChain| |#1| |#2|)) "\\spad{squareFree(ts)} returns the square-free factorization of \\spad{ts}. Moreover,{} each factor is a Lazard triangular set and the decomposition is a Kalkbrener split of \\spad{ts},{} which is enough here for the matter of solving zero-dimensional algebraic systems. WARNING: \\spad{ts} is not checked to be zero-dimensional.")) (|positiveSolve| (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|))) "\\spad{positiveSolve(lp)} returns the same as \\spad{positiveSolve(lp,{}false,{}false)}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|)) (|Boolean|)) "\\spad{positiveSolve(lp)} returns the same as \\spad{positiveSolve(lp,{}info?,{}false)}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|)) "\\spad{positiveSolve(lp,{}info?,{}lextri?)} returns the set of the points in the variety associated with \\spad{lp} whose coordinates are (real) strictly positive. Moreover,{} if \\spad{info?} is \\spad{true} then some information is displayed during decomposition into regular chains. If \\spad{lextri?} is \\spad{true} then the lexTriangular algorithm is called from the \\spadtype{LexTriangularPackage} constructor (see \\axiomOpFrom{zeroSetSplit}{LexTriangularPackage}(\\spad{lp},{}\\spad{false})). Otherwise,{} the triangular decomposition is computed directly from the input system by using the \\axiomOpFrom{zeroSetSplit}{RegularChain} from \\spadtype{RegularChain}. WARNING: For each set of coordinates given by \\spad{positiveSolve(lp,{}info?,{}lextri?)} the ordering of the indeterminates is reversed \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ls}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|RegularChain| |#1| |#2|)) "\\spad{positiveSolve(ts)} returns the points of the regular set of \\spad{ts} with (real) strictly positive coordinates.")) (|realSolve| (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|))) "\\spad{realSolve(lp)} returns the same as \\spad{realSolve(ts,{}false,{}false,{}false)}") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|)) (|Boolean|)) "\\spad{realSolve(ts,{}info?)} returns the same as \\spad{realSolve(ts,{}info?,{}false,{}false)}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|)) "\\spad{realSolve(ts,{}info?,{}check?)} returns the same as \\spad{realSolve(ts,{}info?,{}check?,{}false)}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|) (|Boolean|)) "\\spad{realSolve(ts,{}info?,{}check?,{}lextri?)} returns the set of the points in the variety associated with \\spad{lp} whose coordinates are all real. Moreover,{} if \\spad{info?} is \\spad{true} then some information is displayed during decomposition into regular chains. If \\spad{check?} is \\spad{true} then the result is checked. If \\spad{lextri?} is \\spad{true} then the lexTriangular algorithm is called from the \\spadtype{LexTriangularPackage} constructor (see \\axiomOpFrom{zeroSetSplit}{LexTriangularPackage}(\\spad{lp},{}\\spad{false})). Otherwise,{} the triangular decomposition is computed directly from the input system by using the \\axiomOpFrom{zeroSetSplit}{RegularChain} from \\spadtype{RegularChain}. WARNING: For each set of coordinates given by \\spad{realSolve(ts,{}info?,{}check?,{}lextri?)} the ordering of the indeterminates is reversed \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ls}.") (((|List| (|List| (|RealClosure| (|Fraction| |#1|)))) (|RegularChain| |#1| |#2|)) "\\spad{realSolve(ts)} returns the set of the points in the regular zero set of \\spad{ts} whose coordinates are all real. WARNING: For each set of coordinates given by \\spad{realSolve(ts)} the ordering of the indeterminates is reversed \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ls}.")) (|univariateSolve| (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|))) "\\spad{univariateSolve(lp)} returns the same as \\spad{univariateSolve(lp,{}false,{}false,{}false)}.") (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|)) (|Boolean|)) "\\spad{univariateSolve(lp,{}info?)} returns the same as \\spad{univariateSolve(lp,{}info?,{}false,{}false)}.") (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|)) "\\spad{univariateSolve(lp,{}info?,{}check?)} returns the same as \\spad{univariateSolve(lp,{}info?,{}check?,{}false)}.") (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|) (|Boolean|)) "\\spad{univariateSolve(lp,{}info?,{}check?,{}lextri?)} returns a univariate representation of the variety associated with \\spad{lp}. Moreover,{} if \\spad{info?} is \\spad{true} then some information is displayed during the decomposition into regular chains. If \\spad{check?} is \\spad{true} then the result is checked. See \\axiomOpFrom{rur}{RationalUnivariateRepresentationPackage}(\\spad{lp},{}\\spad{true}). If \\spad{lextri?} is \\spad{true} then the lexTriangular algorithm is called from the \\spadtype{LexTriangularPackage} constructor (see \\axiomOpFrom{zeroSetSplit}{LexTriangularPackage}(\\spad{lp},{}\\spad{false})). Otherwise,{} the triangular decomposition is computed directly from the input system by using the \\axiomOpFrom{zeroSetSplit}{RegularChain} from \\spadtype{RegularChain}.") (((|List| (|Record| (|:| |complexRoots| (|SparseUnivariatePolynomial| |#1|)) (|:| |coordinates| (|List| (|Polynomial| |#1|))))) (|RegularChain| |#1| |#2|)) "\\spad{univariateSolve(ts)} returns a univariate representation of \\spad{ts}. See \\axiomOpFrom{rur}{RationalUnivariateRepresentationPackage}(\\spad{lp},{}\\spad{true}).")) (|triangSolve| (((|List| (|RegularChain| |#1| |#2|)) (|List| (|Polynomial| |#1|))) "\\spad{triangSolve(lp)} returns the same as \\spad{triangSolve(lp,{}false,{}false)}") (((|List| (|RegularChain| |#1| |#2|)) (|List| (|Polynomial| |#1|)) (|Boolean|)) "\\spad{triangSolve(lp,{}info?)} returns the same as \\spad{triangSolve(lp,{}false)}") (((|List| (|RegularChain| |#1| |#2|)) (|List| (|Polynomial| |#1|)) (|Boolean|) (|Boolean|)) "\\spad{triangSolve(lp,{}info?,{}lextri?)} 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{\\spad{lp}} is not zero-dimensional then the result is only a decomposition of its zero-set in the sense of the closure (\\spad{w}.\\spad{r}.\\spad{t}. Zarisky topology). Moreover,{} if \\spad{info?} is \\spad{true} then some information is displayed during the computations. See \\axiomOpFrom{zeroSetSplit}{RegularTriangularSetCategory}(\\spad{lp},{}\\spad{true},{}\\spad{info?}). If \\spad{lextri?} is \\spad{true} then the lexTriangular algorithm is called from the \\spadtype{LexTriangularPackage} constructor (see \\axiomOpFrom{zeroSetSplit}{LexTriangularPackage}(\\spad{lp},{}\\spad{false})). Otherwise,{} the triangular decomposition is computed directly from the input system by using the \\axiomOpFrom{zeroSetSplit}{RegularChain} from \\spadtype{RegularChain}.")))
NIL
NIL
-(-1253 R)
+(-1252 R)
((|constructor| (NIL "Test for linear dependence over the integers.")) (|solveLinearlyOverQ| (((|Union| (|Vector| (|Fraction| (|Integer|))) "failed") (|Vector| |#1|) |#1|) "\\spad{solveLinearlyOverQ([v1,{}...,{}vn],{} u)} returns \\spad{[c1,{}...,{}cn]} such that \\spad{c1*v1 + ... + cn*vn = u},{} \"failed\" if no such rational numbers \\spad{ci}\\spad{'s} exist.")) (|linearDependenceOverZ| (((|Union| (|Vector| (|Integer|)) "failed") (|Vector| |#1|)) "\\spad{linearlyDependenceOverZ([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 the integers.")) (|linearlyDependentOverZ?| (((|Boolean|) (|Vector| |#1|)) "\\spad{linearlyDependentOverZ?([v1,{}...,{}vn])} returns \\spad{true} if the \\spad{vi}\\spad{'s} are linearly dependent over the integers,{} \\spad{false} otherwise.")))
NIL
NIL
-(-1254 |p|)
+(-1253 |p|)
((|constructor| (NIL "IntegerMod(\\spad{n}) creates the ring of integers reduced modulo the integer \\spad{n}.")))
-(((-4339 "*") . T) (-4331 . T) (-4332 . T) (-4334 . T))
+(((-4338 "*") . T) (-4330 . T) (-4331 . T) (-4333 . T))
NIL
NIL
NIL
@@ -4964,4 +4960,4 @@ NIL
NIL
NIL
NIL
-((-3 NIL 2265326 2265331 2265336 2265341) (-2 NIL 2265306 2265311 2265316 2265321) (-1 NIL 2265286 2265291 2265296 2265301) (0 NIL 2265266 2265271 2265276 2265281) (-1254 "ZMOD.spad" 2265075 2265088 2265204 2265261) (-1253 "ZLINDEP.spad" 2264119 2264130 2265065 2265070) (-1252 "ZDSOLVE.spad" 2253968 2253990 2264109 2264114) (-1251 "YSTREAM.spad" 2253461 2253472 2253958 2253963) (-1250 "XRPOLY.spad" 2252681 2252701 2253317 2253386) (-1249 "XPR.spad" 2250410 2250423 2252399 2252498) (-1248 "XPOLY.spad" 2249965 2249976 2250266 2250335) (-1247 "XPOLYC.spad" 2249282 2249298 2249891 2249960) (-1246 "XPBWPOLY.spad" 2247719 2247739 2249062 2249131) (-1245 "XF.spad" 2246180 2246195 2247621 2247714) (-1244 "XF.spad" 2244621 2244638 2246064 2246069) (-1243 "XFALG.spad" 2241645 2241661 2244547 2244616) (-1242 "XEXPPKG.spad" 2240896 2240922 2241635 2241640) (-1241 "XDPOLY.spad" 2240510 2240526 2240752 2240821) (-1240 "XALG.spad" 2240108 2240119 2240466 2240505) (-1239 "WUTSET.spad" 2235947 2235964 2239754 2239781) (-1238 "WP.spad" 2234961 2235005 2235805 2235872) (-1237 "WHILEAST.spad" 2234760 2234769 2234951 2234956) (-1236 "WHEREAST.spad" 2234433 2234442 2234750 2234755) (-1235 "WFFINTBS.spad" 2231996 2232018 2234423 2234428) (-1234 "WEIER.spad" 2230210 2230221 2231986 2231991) (-1233 "VSPACE.spad" 2229883 2229894 2230178 2230205) (-1232 "VSPACE.spad" 2229576 2229589 2229873 2229878) (-1231 "VOID.spad" 2229166 2229175 2229566 2229571) (-1230 "VIEW.spad" 2226788 2226797 2229156 2229161) (-1229 "VIEWDEF.spad" 2221985 2221994 2226778 2226783) (-1228 "VIEW3D.spad" 2205820 2205829 2221975 2221980) (-1227 "VIEW2D.spad" 2193557 2193566 2205810 2205815) (-1226 "VECTOR.spad" 2192232 2192243 2192483 2192510) (-1225 "VECTOR2.spad" 2190859 2190872 2192222 2192227) (-1224 "VECTCAT.spad" 2188747 2188758 2190815 2190854) (-1223 "VECTCAT.spad" 2186455 2186468 2188525 2188530) (-1222 "VARIABLE.spad" 2186235 2186250 2186445 2186450) (-1221 "UTYPE.spad" 2185869 2185878 2186215 2186230) (-1220 "UTSODETL.spad" 2185162 2185186 2185825 2185830) (-1219 "UTSODE.spad" 2183350 2183370 2185152 2185157) (-1218 "UTS.spad" 2178139 2178167 2181817 2181914) (-1217 "UTSCAT.spad" 2175590 2175606 2178037 2178134) (-1216 "UTSCAT.spad" 2172685 2172703 2175134 2175139) (-1215 "UTS2.spad" 2172278 2172313 2172675 2172680) (-1214 "URAGG.spad" 2166900 2166911 2172258 2172273) (-1213 "URAGG.spad" 2161496 2161509 2166856 2166861) (-1212 "UPXSSING.spad" 2159139 2159165 2160577 2160710) (-1211 "UPXS.spad" 2156166 2156194 2157271 2157420) (-1210 "UPXSCONS.spad" 2153923 2153943 2154298 2154447) (-1209 "UPXSCCA.spad" 2152381 2152401 2153769 2153918) (-1208 "UPXSCCA.spad" 2150981 2151003 2152371 2152376) (-1207 "UPXSCAT.spad" 2149562 2149578 2150827 2150976) (-1206 "UPXS2.spad" 2149103 2149156 2149552 2149557) (-1205 "UPSQFREE.spad" 2147515 2147529 2149093 2149098) (-1204 "UPSCAT.spad" 2145108 2145132 2147413 2147510) (-1203 "UPSCAT.spad" 2142407 2142433 2144714 2144719) (-1202 "UPOLYC.spad" 2137385 2137396 2142249 2142402) (-1201 "UPOLYC.spad" 2132255 2132268 2137121 2137126) (-1200 "UPOLYC2.spad" 2131724 2131743 2132245 2132250) (-1199 "UP.spad" 2128766 2128781 2129274 2129427) (-1198 "UPMP.spad" 2127656 2127669 2128756 2128761) (-1197 "UPDIVP.spad" 2127219 2127233 2127646 2127651) (-1196 "UPDECOMP.spad" 2125456 2125470 2127209 2127214) (-1195 "UPCDEN.spad" 2124663 2124679 2125446 2125451) (-1194 "UP2.spad" 2124025 2124046 2124653 2124658) (-1193 "UNISEG.spad" 2123378 2123389 2123944 2123949) (-1192 "UNISEG2.spad" 2122871 2122884 2123334 2123339) (-1191 "UNIFACT.spad" 2121972 2121984 2122861 2122866) (-1190 "ULS.spad" 2112526 2112554 2113619 2114048) (-1189 "ULSCONS.spad" 2106565 2106585 2106937 2107086) (-1188 "ULSCCAT.spad" 2104162 2104182 2106385 2106560) (-1187 "ULSCCAT.spad" 2101893 2101915 2104118 2104123) (-1186 "ULSCAT.spad" 2100109 2100125 2101739 2101888) (-1185 "ULS2.spad" 2099621 2099674 2100099 2100104) (-1184 "UFD.spad" 2098686 2098695 2099547 2099616) (-1183 "UFD.spad" 2097813 2097824 2098676 2098681) (-1182 "UDVO.spad" 2096660 2096669 2097803 2097808) (-1181 "UDPO.spad" 2094087 2094098 2096616 2096621) (-1180 "TYPE.spad" 2094009 2094018 2094067 2094082) (-1179 "TYPEAST.spad" 2093842 2093851 2093999 2094004) (-1178 "TWOFACT.spad" 2092492 2092507 2093832 2093837) (-1177 "TUPLE.spad" 2091878 2091889 2092391 2092396) (-1176 "TUBETOOL.spad" 2088715 2088724 2091868 2091873) (-1175 "TUBE.spad" 2087356 2087373 2088705 2088710) (-1174 "TS.spad" 2085945 2085961 2086921 2087018) (-1173 "TSETCAT.spad" 2073060 2073077 2085901 2085940) (-1172 "TSETCAT.spad" 2060173 2060192 2073016 2073021) (-1171 "TRMANIP.spad" 2054539 2054556 2059879 2059884) (-1170 "TRIMAT.spad" 2053498 2053523 2054529 2054534) (-1169 "TRIGMNIP.spad" 2052015 2052032 2053488 2053493) (-1168 "TRIGCAT.spad" 2051527 2051536 2052005 2052010) (-1167 "TRIGCAT.spad" 2051037 2051048 2051517 2051522) (-1166 "TREE.spad" 2049608 2049619 2050644 2050671) (-1165 "TRANFUN.spad" 2049439 2049448 2049598 2049603) (-1164 "TRANFUN.spad" 2049268 2049279 2049429 2049434) (-1163 "TOPSP.spad" 2048942 2048951 2049258 2049263) (-1162 "TOOLSIGN.spad" 2048605 2048616 2048932 2048937) (-1161 "TEXTFILE.spad" 2047162 2047171 2048595 2048600) (-1160 "TEX.spad" 2044179 2044188 2047152 2047157) (-1159 "TEX1.spad" 2043735 2043746 2044169 2044174) (-1158 "TEMUTL.spad" 2043290 2043299 2043725 2043730) (-1157 "TBCMPPK.spad" 2041383 2041406 2043280 2043285) (-1156 "TBAGG.spad" 2040407 2040430 2041351 2041378) (-1155 "TBAGG.spad" 2039451 2039476 2040397 2040402) (-1154 "TANEXP.spad" 2038827 2038838 2039441 2039446) (-1153 "TABLE.spad" 2037238 2037261 2037508 2037535) (-1152 "TABLEAU.spad" 2036719 2036730 2037228 2037233) (-1151 "TABLBUMP.spad" 2033502 2033513 2036709 2036714) (-1150 "SYSTEM.spad" 2032776 2032785 2033492 2033497) (-1149 "SYSSOLP.spad" 2030249 2030260 2032766 2032771) (-1148 "SYNTAX.spad" 2026441 2026450 2030239 2030244) (-1147 "SYMTAB.spad" 2024497 2024506 2026431 2026436) (-1146 "SYMS.spad" 2020482 2020491 2024487 2024492) (-1145 "SYMPOLY.spad" 2019489 2019500 2019571 2019698) (-1144 "SYMFUNC.spad" 2018964 2018975 2019479 2019484) (-1143 "SYMBOL.spad" 2016300 2016309 2018954 2018959) (-1142 "SWITCH.spad" 2013057 2013066 2016290 2016295) (-1141 "SUTS.spad" 2009956 2009984 2011524 2011621) (-1140 "SUPXS.spad" 2006970 2006998 2008088 2008237) (-1139 "SUP.spad" 2003739 2003750 2004520 2004673) (-1138 "SUPFRACF.spad" 2002844 2002862 2003729 2003734) (-1137 "SUP2.spad" 2002234 2002247 2002834 2002839) (-1136 "SUMRF.spad" 2001200 2001211 2002224 2002229) (-1135 "SUMFS.spad" 2000833 2000850 2001190 2001195) (-1134 "SULS.spad" 1991374 1991402 1992480 1992909) (-1133 "SUCHTAST.spad" 1991144 1991153 1991364 1991369) (-1132 "SUCH.spad" 1990824 1990839 1991134 1991139) (-1131 "SUBSPACE.spad" 1982831 1982846 1990814 1990819) (-1130 "SUBRESP.spad" 1981991 1982005 1982787 1982792) (-1129 "STTF.spad" 1978090 1978106 1981981 1981986) (-1128 "STTFNC.spad" 1974558 1974574 1978080 1978085) (-1127 "STTAYLOR.spad" 1966956 1966967 1974439 1974444) (-1126 "STRTBL.spad" 1965461 1965478 1965610 1965637) (-1125 "STRING.spad" 1964870 1964879 1964884 1964911) (-1124 "STRICAT.spad" 1964646 1964655 1964826 1964865) (-1123 "STREAM.spad" 1961414 1961425 1964171 1964186) (-1122 "STREAM3.spad" 1960959 1960974 1961404 1961409) (-1121 "STREAM2.spad" 1960027 1960040 1960949 1960954) (-1120 "STREAM1.spad" 1959731 1959742 1960017 1960022) (-1119 "STINPROD.spad" 1958637 1958653 1959721 1959726) (-1118 "STEP.spad" 1957838 1957847 1958627 1958632) (-1117 "STBL.spad" 1956364 1956392 1956531 1956546) (-1116 "STAGG.spad" 1955429 1955440 1956344 1956359) (-1115 "STAGG.spad" 1954502 1954515 1955419 1955424) (-1114 "STACK.spad" 1953853 1953864 1954109 1954136) (-1113 "SREGSET.spad" 1951557 1951574 1953499 1953526) (-1112 "SRDCMPK.spad" 1950102 1950122 1951547 1951552) (-1111 "SRAGG.spad" 1945187 1945196 1950058 1950097) (-1110 "SRAGG.spad" 1940304 1940315 1945177 1945182) (-1109 "SQMATRIX.spad" 1937928 1937946 1938836 1938923) (-1108 "SPLTREE.spad" 1932480 1932493 1937364 1937391) (-1107 "SPLNODE.spad" 1929068 1929081 1932470 1932475) (-1106 "SPFCAT.spad" 1927845 1927854 1929058 1929063) (-1105 "SPECOUT.spad" 1926395 1926404 1927835 1927840) (-1104 "SPADXPT.spad" 1919248 1919257 1926375 1926390) (-1103 "spad-parser.spad" 1918713 1918722 1919238 1919243) (-1102 "SPADAST.spad" 1918689 1918698 1918703 1918708) (-1101 "SPACEC.spad" 1902702 1902713 1918679 1918684) (-1100 "SPACE3.spad" 1902478 1902489 1902692 1902697) (-1099 "SORTPAK.spad" 1902023 1902036 1902434 1902439) (-1098 "SOLVETRA.spad" 1899780 1899791 1902013 1902018) (-1097 "SOLVESER.spad" 1898300 1898311 1899770 1899775) (-1096 "SOLVERAD.spad" 1894310 1894321 1898290 1898295) (-1095 "SOLVEFOR.spad" 1892730 1892748 1894300 1894305) (-1094 "SNTSCAT.spad" 1892318 1892335 1892686 1892725) (-1093 "SMTS.spad" 1890578 1890604 1891883 1891980) (-1092 "SMP.spad" 1888017 1888037 1888407 1888534) (-1091 "SMITH.spad" 1886860 1886885 1888007 1888012) (-1090 "SMATCAT.spad" 1884958 1884988 1886792 1886855) (-1089 "SMATCAT.spad" 1883000 1883032 1884836 1884841) (-1088 "SKAGG.spad" 1881949 1881960 1882956 1882995) (-1087 "SINT.spad" 1880257 1880266 1881815 1881944) (-1086 "SIMPAN.spad" 1879985 1879994 1880247 1880252) (-1085 "SIG.spad" 1879313 1879322 1879975 1879980) (-1084 "SIGNRF.spad" 1878421 1878432 1879303 1879308) (-1083 "SIGNEF.spad" 1877690 1877707 1878411 1878416) (-1082 "SIGAST.spad" 1877071 1877080 1877680 1877685) (-1081 "SHP.spad" 1874989 1875004 1877027 1877032) (-1080 "SHDP.spad" 1865974 1866001 1866483 1866614) (-1079 "SGROUP.spad" 1865582 1865591 1865964 1865969) (-1078 "SGROUP.spad" 1865188 1865199 1865572 1865577) (-1077 "SGCF.spad" 1858069 1858078 1865178 1865183) (-1076 "SFRTCAT.spad" 1856985 1857002 1858025 1858064) (-1075 "SFRGCD.spad" 1856048 1856068 1856975 1856980) (-1074 "SFQCMPK.spad" 1850685 1850705 1856038 1856043) (-1073 "SFORT.spad" 1850120 1850134 1850675 1850680) (-1072 "SEXOF.spad" 1849963 1850003 1850110 1850115) (-1071 "SEX.spad" 1849855 1849864 1849953 1849958) (-1070 "SEXCAT.spad" 1846959 1846999 1849845 1849850) (-1069 "SET.spad" 1845259 1845270 1846380 1846419) (-1068 "SETMN.spad" 1843693 1843710 1845249 1845254) (-1067 "SETCAT.spad" 1843178 1843187 1843683 1843688) (-1066 "SETCAT.spad" 1842661 1842672 1843168 1843173) (-1065 "SETAGG.spad" 1839170 1839181 1842629 1842656) (-1064 "SETAGG.spad" 1835699 1835712 1839160 1839165) (-1063 "SEQAST.spad" 1835404 1835413 1835689 1835694) (-1062 "SEGXCAT.spad" 1834516 1834529 1835384 1835399) (-1061 "SEG.spad" 1834329 1834340 1834435 1834440) (-1060 "SEGCAT.spad" 1833148 1833159 1834309 1834324) (-1059 "SEGBIND.spad" 1832220 1832231 1833103 1833108) (-1058 "SEGBIND2.spad" 1831916 1831929 1832210 1832215) (-1057 "SEGAST.spad" 1831631 1831640 1831906 1831911) (-1056 "SEG2.spad" 1831056 1831069 1831587 1831592) (-1055 "SDVAR.spad" 1830332 1830343 1831046 1831051) (-1054 "SDPOL.spad" 1827722 1827733 1828013 1828140) (-1053 "SCPKG.spad" 1825801 1825812 1827712 1827717) (-1052 "SCOPE.spad" 1824946 1824955 1825791 1825796) (-1051 "SCACHE.spad" 1823628 1823639 1824936 1824941) (-1050 "SASTCAT.spad" 1823537 1823546 1823618 1823623) (-1049 "SASTCAT.spad" 1823444 1823455 1823527 1823532) (-1048 "SAOS.spad" 1823316 1823325 1823434 1823439) (-1047 "SAERFFC.spad" 1823029 1823049 1823306 1823311) (-1046 "SAE.spad" 1821204 1821220 1821815 1821950) (-1045 "SAEFACT.spad" 1820905 1820925 1821194 1821199) (-1044 "RURPK.spad" 1818546 1818562 1820895 1820900) (-1043 "RULESET.spad" 1817987 1818011 1818536 1818541) (-1042 "RULE.spad" 1816191 1816215 1817977 1817982) (-1041 "RULECOLD.spad" 1816043 1816056 1816181 1816186) (-1040 "RSTRCAST.spad" 1815761 1815770 1816033 1816038) (-1039 "RSETGCD.spad" 1812139 1812159 1815751 1815756) (-1038 "RSETCAT.spad" 1801911 1801928 1812095 1812134) (-1037 "RSETCAT.spad" 1791715 1791734 1801901 1801906) (-1036 "RSDCMPK.spad" 1790167 1790187 1791705 1791710) (-1035 "RRCC.spad" 1788551 1788581 1790157 1790162) (-1034 "RRCC.spad" 1786933 1786965 1788541 1788546) (-1033 "RPTAST.spad" 1786637 1786646 1786923 1786928) (-1032 "RPOLCAT.spad" 1765997 1766012 1786505 1786632) (-1031 "RPOLCAT.spad" 1745071 1745088 1765581 1765586) (-1030 "ROUTINE.spad" 1740934 1740943 1743718 1743745) (-1029 "ROMAN.spad" 1740166 1740175 1740800 1740929) (-1028 "ROIRC.spad" 1739246 1739278 1740156 1740161) (-1027 "RNS.spad" 1738149 1738158 1739148 1739241) (-1026 "RNS.spad" 1737138 1737149 1738139 1738144) (-1025 "RNG.spad" 1736873 1736882 1737128 1737133) (-1024 "RMODULE.spad" 1736511 1736522 1736863 1736868) (-1023 "RMCAT2.spad" 1735919 1735976 1736501 1736506) (-1022 "RMATRIX.spad" 1734598 1734617 1735086 1735125) (-1021 "RMATCAT.spad" 1730119 1730150 1734542 1734593) (-1020 "RMATCAT.spad" 1725542 1725575 1729967 1729972) (-1019 "RINTERP.spad" 1725430 1725450 1725532 1725537) (-1018 "RING.spad" 1724787 1724796 1725410 1725425) (-1017 "RING.spad" 1724152 1724163 1724777 1724782) (-1016 "RIDIST.spad" 1723536 1723545 1724142 1724147) (-1015 "RGCHAIN.spad" 1722115 1722131 1723021 1723048) (-1014 "RF.spad" 1719729 1719740 1722105 1722110) (-1013 "RFFACTOR.spad" 1719191 1719202 1719719 1719724) (-1012 "RFFACT.spad" 1718926 1718938 1719181 1719186) (-1011 "RFDIST.spad" 1717914 1717923 1718916 1718921) (-1010 "RETSOL.spad" 1717331 1717344 1717904 1717909) (-1009 "RETRACT.spad" 1716680 1716691 1717321 1717326) (-1008 "RETRACT.spad" 1716027 1716040 1716670 1716675) (-1007 "RETAST.spad" 1715840 1715849 1716017 1716022) (-1006 "RESULT.spad" 1713900 1713909 1714487 1714514) (-1005 "RESRING.spad" 1713247 1713294 1713838 1713895) (-1004 "RESLATC.spad" 1712571 1712582 1713237 1713242) (-1003 "REPSQ.spad" 1712300 1712311 1712561 1712566) (-1002 "REP.spad" 1709852 1709861 1712290 1712295) (-1001 "REPDB.spad" 1709557 1709568 1709842 1709847) (-1000 "REP2.spad" 1699129 1699140 1709399 1709404) (-999 "REP1.spad" 1693120 1693130 1699079 1699084) (-998 "REGSET.spad" 1690918 1690934 1692766 1692793) (-997 "REF.spad" 1690248 1690258 1690873 1690878) (-996 "REDORDER.spad" 1689425 1689441 1690238 1690243) (-995 "RECLOS.spad" 1688209 1688228 1688912 1689005) (-994 "REALSOLV.spad" 1687342 1687350 1688199 1688204) (-993 "REAL.spad" 1687215 1687223 1687332 1687337) (-992 "REAL0Q.spad" 1684498 1684512 1687205 1687210) (-991 "REAL0.spad" 1681327 1681341 1684488 1684493) (-990 "RDUCEAST.spad" 1681051 1681059 1681317 1681322) (-989 "RDIV.spad" 1680703 1680727 1681041 1681046) (-988 "RDIST.spad" 1680267 1680277 1680693 1680698) (-987 "RDETRS.spad" 1679064 1679081 1680257 1680262) (-986 "RDETR.spad" 1677172 1677189 1679054 1679059) (-985 "RDEEFS.spad" 1676246 1676262 1677162 1677167) (-984 "RDEEF.spad" 1675243 1675259 1676236 1676241) (-983 "RCFIELD.spad" 1672430 1672438 1675145 1675238) (-982 "RCFIELD.spad" 1669703 1669713 1672420 1672425) (-981 "RCAGG.spad" 1667606 1667616 1669683 1669698) (-980 "RCAGG.spad" 1665446 1665458 1667525 1667530) (-979 "RATRET.spad" 1664807 1664817 1665436 1665441) (-978 "RATFACT.spad" 1664500 1664511 1664797 1664802) (-977 "RANDSRC.spad" 1663820 1663828 1664490 1664495) (-976 "RADUTIL.spad" 1663575 1663583 1663810 1663815) (-975 "RADIX.spad" 1660366 1660379 1662043 1662136) (-974 "RADFF.spad" 1658780 1658816 1658898 1659054) (-973 "RADCAT.spad" 1658374 1658382 1658770 1658775) (-972 "RADCAT.spad" 1657966 1657976 1658364 1658369) (-971 "QUEUE.spad" 1657309 1657319 1657573 1657600) (-970 "QUAT.spad" 1655891 1655901 1656233 1656298) (-969 "QUATCT2.spad" 1655510 1655528 1655881 1655886) (-968 "QUATCAT.spad" 1653675 1653685 1655440 1655505) (-967 "QUATCAT.spad" 1651591 1651603 1653358 1653363) (-966 "QUAGG.spad" 1650405 1650415 1651547 1651586) (-965 "QQUTAST.spad" 1650175 1650183 1650395 1650400) (-964 "QFORM.spad" 1649638 1649652 1650165 1650170) (-963 "QFCAT.spad" 1648329 1648339 1649528 1649633) (-962 "QFCAT.spad" 1646624 1646636 1647825 1647830) (-961 "QFCAT2.spad" 1646315 1646331 1646614 1646619) (-960 "QEQUAT.spad" 1645872 1645880 1646305 1646310) (-959 "QCMPACK.spad" 1640619 1640638 1645862 1645867) (-958 "QALGSET.spad" 1636694 1636726 1640533 1640538) (-957 "QALGSET2.spad" 1634690 1634708 1636684 1636689) (-956 "PWFFINTB.spad" 1632000 1632021 1634680 1634685) (-955 "PUSHVAR.spad" 1631329 1631348 1631990 1631995) (-954 "PTRANFN.spad" 1627455 1627465 1631319 1631324) (-953 "PTPACK.spad" 1624543 1624553 1627445 1627450) (-952 "PTFUNC2.spad" 1624364 1624378 1624533 1624538) (-951 "PTCAT.spad" 1623446 1623456 1624320 1624359) (-950 "PSQFR.spad" 1622753 1622777 1623436 1623441) (-949 "PSEUDLIN.spad" 1621611 1621621 1622743 1622748) (-948 "PSETPK.spad" 1607044 1607060 1621489 1621494) (-947 "PSETCAT.spad" 1600952 1600975 1607012 1607039) (-946 "PSETCAT.spad" 1594846 1594871 1600908 1600913) (-945 "PSCURVE.spad" 1593829 1593837 1594836 1594841) (-944 "PSCAT.spad" 1592596 1592625 1593727 1593824) (-943 "PSCAT.spad" 1591453 1591484 1592586 1592591) (-942 "PRTITION.spad" 1590296 1590304 1591443 1591448) (-941 "PRTDAST.spad" 1590016 1590024 1590286 1590291) (-940 "PRS.spad" 1579578 1579595 1589972 1589977) (-939 "PRQAGG.spad" 1578997 1579007 1579534 1579573) (-938 "PROPLOG.spad" 1578400 1578408 1578987 1578992) (-937 "PROPFRML.spad" 1576318 1576329 1578390 1578395) (-936 "PROPERTY.spad" 1575812 1575820 1576308 1576313) (-935 "PRODUCT.spad" 1573492 1573504 1573778 1573833) (-934 "PR.spad" 1571878 1571890 1572583 1572710) (-933 "PRINT.spad" 1571630 1571638 1571868 1571873) (-932 "PRIMES.spad" 1569881 1569891 1571620 1571625) (-931 "PRIMELT.spad" 1567862 1567876 1569871 1569876) (-930 "PRIMCAT.spad" 1567485 1567493 1567852 1567857) (-929 "PRIMARR.spad" 1566490 1566500 1566668 1566695) (-928 "PRIMARR2.spad" 1565213 1565225 1566480 1566485) (-927 "PREASSOC.spad" 1564585 1564597 1565203 1565208) (-926 "PPCURVE.spad" 1563722 1563730 1564575 1564580) (-925 "PORTNUM.spad" 1563497 1563505 1563712 1563717) (-924 "POLYROOT.spad" 1562269 1562291 1563453 1563458) (-923 "POLY.spad" 1559566 1559576 1560083 1560210) (-922 "POLYLIFT.spad" 1558827 1558850 1559556 1559561) (-921 "POLYCATQ.spad" 1556929 1556951 1558817 1558822) (-920 "POLYCAT.spad" 1550335 1550356 1556797 1556924) (-919 "POLYCAT.spad" 1543043 1543066 1549507 1549512) (-918 "POLY2UP.spad" 1542491 1542505 1543033 1543038) (-917 "POLY2.spad" 1542086 1542098 1542481 1542486) (-916 "POLUTIL.spad" 1541027 1541056 1542042 1542047) (-915 "POLTOPOL.spad" 1539775 1539790 1541017 1541022) (-914 "POINT.spad" 1538614 1538624 1538701 1538728) (-913 "PNTHEORY.spad" 1535280 1535288 1538604 1538609) (-912 "PMTOOLS.spad" 1534037 1534051 1535270 1535275) (-911 "PMSYM.spad" 1533582 1533592 1534027 1534032) (-910 "PMQFCAT.spad" 1533169 1533183 1533572 1533577) (-909 "PMPRED.spad" 1532638 1532652 1533159 1533164) (-908 "PMPREDFS.spad" 1532082 1532104 1532628 1532633) (-907 "PMPLCAT.spad" 1531152 1531170 1532014 1532019) (-906 "PMLSAGG.spad" 1530733 1530747 1531142 1531147) (-905 "PMKERNEL.spad" 1530300 1530312 1530723 1530728) (-904 "PMINS.spad" 1529876 1529886 1530290 1530295) (-903 "PMFS.spad" 1529449 1529467 1529866 1529871) (-902 "PMDOWN.spad" 1528735 1528749 1529439 1529444) (-901 "PMASS.spad" 1527747 1527755 1528725 1528730) (-900 "PMASSFS.spad" 1526716 1526732 1527737 1527742) (-899 "PLOTTOOL.spad" 1526496 1526504 1526706 1526711) (-898 "PLOT.spad" 1521327 1521335 1526486 1526491) (-897 "PLOT3D.spad" 1517747 1517755 1521317 1521322) (-896 "PLOT1.spad" 1516888 1516898 1517737 1517742) (-895 "PLEQN.spad" 1504104 1504131 1516878 1516883) (-894 "PINTERP.spad" 1503720 1503739 1504094 1504099) (-893 "PINTERPA.spad" 1503502 1503518 1503710 1503715) (-892 "PI.spad" 1503109 1503117 1503476 1503497) (-891 "PID.spad" 1502065 1502073 1503035 1503104) (-890 "PICOERCE.spad" 1501722 1501732 1502055 1502060) (-889 "PGROEB.spad" 1500319 1500333 1501712 1501717) (-888 "PGE.spad" 1491572 1491580 1500309 1500314) (-887 "PGCD.spad" 1490454 1490471 1491562 1491567) (-886 "PFRPAC.spad" 1489597 1489607 1490444 1490449) (-885 "PFR.spad" 1486254 1486264 1489499 1489592) (-884 "PFOTOOLS.spad" 1485512 1485528 1486244 1486249) (-883 "PFOQ.spad" 1484882 1484900 1485502 1485507) (-882 "PFO.spad" 1484301 1484328 1484872 1484877) (-881 "PF.spad" 1483875 1483887 1484106 1484199) (-880 "PFECAT.spad" 1481541 1481549 1483801 1483870) (-879 "PFECAT.spad" 1479235 1479245 1481497 1481502) (-878 "PFBRU.spad" 1477105 1477117 1479225 1479230) (-877 "PFBR.spad" 1474643 1474666 1477095 1477100) (-876 "PERM.spad" 1470324 1470334 1474473 1474488) (-875 "PERMGRP.spad" 1465060 1465070 1470314 1470319) (-874 "PERMCAT.spad" 1463612 1463622 1465040 1465055) (-873 "PERMAN.spad" 1462144 1462158 1463602 1463607) (-872 "PENDTREE.spad" 1461417 1461427 1461773 1461778) (-871 "PDRING.spad" 1459908 1459918 1461397 1461412) (-870 "PDRING.spad" 1458407 1458419 1459898 1459903) (-869 "PDEPROB.spad" 1457364 1457372 1458397 1458402) (-868 "PDEPACK.spad" 1451366 1451374 1457354 1457359) (-867 "PDECOMP.spad" 1450828 1450845 1451356 1451361) (-866 "PDECAT.spad" 1449182 1449190 1450818 1450823) (-865 "PCOMP.spad" 1449033 1449046 1449172 1449177) (-864 "PBWLB.spad" 1447615 1447632 1449023 1449028) (-863 "PATTERN.spad" 1442046 1442056 1447605 1447610) (-862 "PATTERN2.spad" 1441782 1441794 1442036 1442041) (-861 "PATTERN1.spad" 1440084 1440100 1441772 1441777) (-860 "PATRES.spad" 1437631 1437643 1440074 1440079) (-859 "PATRES2.spad" 1437293 1437307 1437621 1437626) (-858 "PATMATCH.spad" 1435450 1435481 1437001 1437006) (-857 "PATMAB.spad" 1434875 1434885 1435440 1435445) (-856 "PATLRES.spad" 1433959 1433973 1434865 1434870) (-855 "PATAB.spad" 1433723 1433733 1433949 1433954) (-854 "PARTPERM.spad" 1431085 1431093 1433713 1433718) (-853 "PARSURF.spad" 1430513 1430541 1431075 1431080) (-852 "PARSU2.spad" 1430308 1430324 1430503 1430508) (-851 "script-parser.spad" 1429828 1429836 1430298 1430303) (-850 "PARSCURV.spad" 1429256 1429284 1429818 1429823) (-849 "PARSC2.spad" 1429045 1429061 1429246 1429251) (-848 "PARPCURV.spad" 1428503 1428531 1429035 1429040) (-847 "PARPC2.spad" 1428292 1428308 1428493 1428498) (-846 "PAN2EXPR.spad" 1427704 1427712 1428282 1428287) (-845 "PALETTE.spad" 1426674 1426682 1427694 1427699) (-844 "PAIR.spad" 1425657 1425670 1426262 1426267) (-843 "PADICRC.spad" 1422988 1423006 1424163 1424256) (-842 "PADICRAT.spad" 1421004 1421016 1421225 1421318) (-841 "PADIC.spad" 1420699 1420711 1420930 1420999) (-840 "PADICCT.spad" 1419240 1419252 1420625 1420694) (-839 "PADEPAC.spad" 1417919 1417938 1419230 1419235) (-838 "PADE.spad" 1416659 1416675 1417909 1417914) (-837 "OWP.spad" 1415643 1415673 1416517 1416584) (-836 "OVAR.spad" 1415424 1415447 1415633 1415638) (-835 "OUT.spad" 1414508 1414516 1415414 1415419) (-834 "OUTFORM.spad" 1403922 1403930 1414498 1414503) (-833 "OUTBCON.spad" 1403201 1403209 1403912 1403917) (-832 "OUTBCON.spad" 1402478 1402488 1403191 1403196) (-831 "OSI.spad" 1401953 1401961 1402468 1402473) (-830 "OSGROUP.spad" 1401871 1401879 1401943 1401948) (-829 "ORTHPOL.spad" 1400332 1400342 1401788 1401793) (-828 "OREUP.spad" 1399690 1399718 1400012 1400051) (-827 "ORESUP.spad" 1398989 1399013 1399370 1399409) (-826 "OREPCTO.spad" 1396808 1396820 1398909 1398914) (-825 "OREPCAT.spad" 1390865 1390875 1396764 1396803) (-824 "OREPCAT.spad" 1384812 1384824 1390713 1390718) (-823 "ORDSET.spad" 1383978 1383986 1384802 1384807) (-822 "ORDSET.spad" 1383142 1383152 1383968 1383973) (-821 "ORDRING.spad" 1382532 1382540 1383122 1383137) (-820 "ORDRING.spad" 1381930 1381940 1382522 1382527) (-819 "ORDMON.spad" 1381785 1381793 1381920 1381925) (-818 "ORDFUNS.spad" 1380911 1380927 1381775 1381780) (-817 "ORDFIN.spad" 1380845 1380853 1380901 1380906) (-816 "ORDCOMP.spad" 1379310 1379320 1380392 1380421) (-815 "ORDCOMP2.spad" 1378595 1378607 1379300 1379305) (-814 "OPTPROB.spad" 1377175 1377183 1378585 1378590) (-813 "OPTPACK.spad" 1369560 1369568 1377165 1377170) (-812 "OPTCAT.spad" 1367235 1367243 1369550 1369555) (-811 "OPQUERY.spad" 1366784 1366792 1367225 1367230) (-810 "OP.spad" 1366526 1366536 1366606 1366673) (-809 "ONECOMP.spad" 1365271 1365281 1366073 1366102) (-808 "ONECOMP2.spad" 1364689 1364701 1365261 1365266) (-807 "OMSERVER.spad" 1363691 1363699 1364679 1364684) (-806 "OMSAGG.spad" 1363467 1363477 1363635 1363686) (-805 "OMPKG.spad" 1362079 1362087 1363457 1363462) (-804 "OM.spad" 1361044 1361052 1362069 1362074) (-803 "OMLO.spad" 1360469 1360481 1360930 1360969) (-802 "OMEXPR.spad" 1360303 1360313 1360459 1360464) (-801 "OMERR.spad" 1359846 1359854 1360293 1360298) (-800 "OMERRK.spad" 1358880 1358888 1359836 1359841) (-799 "OMENC.spad" 1358224 1358232 1358870 1358875) (-798 "OMDEV.spad" 1352513 1352521 1358214 1358219) (-797 "OMCONN.spad" 1351922 1351930 1352503 1352508) (-796 "OINTDOM.spad" 1351685 1351693 1351848 1351917) (-795 "OFMONOID.spad" 1347872 1347882 1351675 1351680) (-794 "ODVAR.spad" 1347133 1347143 1347862 1347867) (-793 "ODR.spad" 1346581 1346607 1346945 1347094) (-792 "ODPOL.spad" 1343927 1343937 1344267 1344394) (-791 "ODP.spad" 1335048 1335068 1335421 1335552) (-790 "ODETOOLS.spad" 1333631 1333650 1335038 1335043) (-789 "ODESYS.spad" 1331281 1331298 1333621 1333626) (-788 "ODERTRIC.spad" 1327222 1327239 1331238 1331243) (-787 "ODERED.spad" 1326609 1326633 1327212 1327217) (-786 "ODERAT.spad" 1324160 1324177 1326599 1326604) (-785 "ODEPRRIC.spad" 1321051 1321073 1324150 1324155) (-784 "ODEPROB.spad" 1320250 1320258 1321041 1321046) (-783 "ODEPRIM.spad" 1317524 1317546 1320240 1320245) (-782 "ODEPAL.spad" 1316900 1316924 1317514 1317519) (-781 "ODEPACK.spad" 1303502 1303510 1316890 1316895) (-780 "ODEINT.spad" 1302933 1302949 1303492 1303497) (-779 "ODEIFTBL.spad" 1300328 1300336 1302923 1302928) (-778 "ODEEF.spad" 1295695 1295711 1300318 1300323) (-777 "ODECONST.spad" 1295214 1295232 1295685 1295690) (-776 "ODECAT.spad" 1293810 1293818 1295204 1295209) (-775 "OCT.spad" 1291948 1291958 1292664 1292703) (-774 "OCTCT2.spad" 1291592 1291613 1291938 1291943) (-773 "OC.spad" 1289366 1289376 1291548 1291587) (-772 "OC.spad" 1286865 1286877 1289049 1289054) (-771 "OCAMON.spad" 1286713 1286721 1286855 1286860) (-770 "OASGP.spad" 1286528 1286536 1286703 1286708) (-769 "OAMONS.spad" 1286048 1286056 1286518 1286523) (-768 "OAMON.spad" 1285909 1285917 1286038 1286043) (-767 "OAGROUP.spad" 1285771 1285779 1285899 1285904) (-766 "NUMTUBE.spad" 1285358 1285374 1285761 1285766) (-765 "NUMQUAD.spad" 1273220 1273228 1285348 1285353) (-764 "NUMODE.spad" 1264356 1264364 1273210 1273215) (-763 "NUMINT.spad" 1261914 1261922 1264346 1264351) (-762 "NUMFMT.spad" 1260754 1260762 1261904 1261909) (-761 "NUMERIC.spad" 1252826 1252836 1260559 1260564) (-760 "NTSCAT.spad" 1251316 1251332 1252782 1252821) (-759 "NTPOLFN.spad" 1250861 1250871 1251233 1251238) (-758 "NSUP.spad" 1243871 1243881 1248411 1248564) (-757 "NSUP2.spad" 1243263 1243275 1243861 1243866) (-756 "NSMP.spad" 1239458 1239477 1239766 1239893) (-755 "NREP.spad" 1237830 1237844 1239448 1239453) (-754 "NPCOEF.spad" 1237076 1237096 1237820 1237825) (-753 "NORMRETR.spad" 1236674 1236713 1237066 1237071) (-752 "NORMPK.spad" 1234576 1234595 1236664 1236669) (-751 "NORMMA.spad" 1234264 1234290 1234566 1234571) (-750 "NONE.spad" 1234005 1234013 1234254 1234259) (-749 "NONE1.spad" 1233681 1233691 1233995 1234000) (-748 "NODE1.spad" 1233150 1233166 1233671 1233676) (-747 "NNI.spad" 1232037 1232045 1233124 1233145) (-746 "NLINSOL.spad" 1230659 1230669 1232027 1232032) (-745 "NIPROB.spad" 1229142 1229150 1230649 1230654) (-744 "NFINTBAS.spad" 1226602 1226619 1229132 1229137) (-743 "NCODIV.spad" 1224800 1224816 1226592 1226597) (-742 "NCNTFRAC.spad" 1224442 1224456 1224790 1224795) (-741 "NCEP.spad" 1222602 1222616 1224432 1224437) (-740 "NASRING.spad" 1222198 1222206 1222592 1222597) (-739 "NASRING.spad" 1221792 1221802 1222188 1222193) (-738 "NARNG.spad" 1221136 1221144 1221782 1221787) (-737 "NARNG.spad" 1220478 1220488 1221126 1221131) (-736 "NAGSP.spad" 1219551 1219559 1220468 1220473) (-735 "NAGS.spad" 1209076 1209084 1219541 1219546) (-734 "NAGF07.spad" 1207469 1207477 1209066 1209071) (-733 "NAGF04.spad" 1201701 1201709 1207459 1207464) (-732 "NAGF02.spad" 1195510 1195518 1201691 1201696) (-731 "NAGF01.spad" 1191113 1191121 1195500 1195505) (-730 "NAGE04.spad" 1184573 1184581 1191103 1191108) (-729 "NAGE02.spad" 1174915 1174923 1184563 1184568) (-728 "NAGE01.spad" 1170799 1170807 1174905 1174910) (-727 "NAGD03.spad" 1168719 1168727 1170789 1170794) (-726 "NAGD02.spad" 1161250 1161258 1168709 1168714) (-725 "NAGD01.spad" 1155363 1155371 1161240 1161245) (-724 "NAGC06.spad" 1151150 1151158 1155353 1155358) (-723 "NAGC05.spad" 1149619 1149627 1151140 1151145) (-722 "NAGC02.spad" 1148874 1148882 1149609 1149614) (-721 "NAALG.spad" 1148409 1148419 1148842 1148869) (-720 "NAALG.spad" 1147964 1147976 1148399 1148404) (-719 "MULTSQFR.spad" 1144922 1144939 1147954 1147959) (-718 "MULTFACT.spad" 1144305 1144322 1144912 1144917) (-717 "MTSCAT.spad" 1142339 1142360 1144203 1144300) (-716 "MTHING.spad" 1141996 1142006 1142329 1142334) (-715 "MSYSCMD.spad" 1141430 1141438 1141986 1141991) (-714 "MSET.spad" 1139372 1139382 1141136 1141175) (-713 "MSETAGG.spad" 1139205 1139215 1139328 1139367) (-712 "MRING.spad" 1136176 1136188 1138913 1138980) (-711 "MRF2.spad" 1135744 1135758 1136166 1136171) (-710 "MRATFAC.spad" 1135290 1135307 1135734 1135739) (-709 "MPRFF.spad" 1133320 1133339 1135280 1135285) (-708 "MPOLY.spad" 1130755 1130770 1131114 1131241) (-707 "MPCPF.spad" 1130019 1130038 1130745 1130750) (-706 "MPC3.spad" 1129834 1129874 1130009 1130014) (-705 "MPC2.spad" 1129476 1129509 1129824 1129829) (-704 "MONOTOOL.spad" 1127811 1127828 1129466 1129471) (-703 "MONOID.spad" 1127130 1127138 1127801 1127806) (-702 "MONOID.spad" 1126447 1126457 1127120 1127125) (-701 "MONOGEN.spad" 1125193 1125206 1126307 1126442) (-700 "MONOGEN.spad" 1123961 1123976 1125077 1125082) (-699 "MONADWU.spad" 1121975 1121983 1123951 1123956) (-698 "MONADWU.spad" 1119987 1119997 1121965 1121970) (-697 "MONAD.spad" 1119131 1119139 1119977 1119982) (-696 "MONAD.spad" 1118273 1118283 1119121 1119126) (-695 "MOEBIUS.spad" 1116959 1116973 1118253 1118268) (-694 "MODULE.spad" 1116829 1116839 1116927 1116954) (-693 "MODULE.spad" 1116719 1116731 1116819 1116824) (-692 "MODRING.spad" 1116050 1116089 1116699 1116714) (-691 "MODOP.spad" 1114709 1114721 1115872 1115939) (-690 "MODMONOM.spad" 1114241 1114259 1114699 1114704) (-689 "MODMON.spad" 1110943 1110959 1111719 1111872) (-688 "MODFIELD.spad" 1110301 1110340 1110845 1110938) (-687 "MMLFORM.spad" 1109161 1109169 1110291 1110296) (-686 "MMAP.spad" 1108901 1108935 1109151 1109156) (-685 "MLO.spad" 1107328 1107338 1108857 1108896) (-684 "MLIFT.spad" 1105900 1105917 1107318 1107323) (-683 "MKUCFUNC.spad" 1105433 1105451 1105890 1105895) (-682 "MKRECORD.spad" 1105035 1105048 1105423 1105428) (-681 "MKFUNC.spad" 1104416 1104426 1105025 1105030) (-680 "MKFLCFN.spad" 1103372 1103382 1104406 1104411) (-679 "MKCHSET.spad" 1103148 1103158 1103362 1103367) (-678 "MKBCFUNC.spad" 1102633 1102651 1103138 1103143) (-677 "MINT.spad" 1102072 1102080 1102535 1102628) (-676 "MHROWRED.spad" 1100573 1100583 1102062 1102067) (-675 "MFLOAT.spad" 1099018 1099026 1100463 1100568) (-674 "MFINFACT.spad" 1098418 1098440 1099008 1099013) (-673 "MESH.spad" 1096150 1096158 1098408 1098413) (-672 "MDDFACT.spad" 1094343 1094353 1096140 1096145) (-671 "MDAGG.spad" 1093618 1093628 1094311 1094338) (-670 "MCMPLX.spad" 1089593 1089601 1090207 1090408) (-669 "MCDEN.spad" 1088801 1088813 1089583 1089588) (-668 "MCALCFN.spad" 1085903 1085929 1088791 1088796) (-667 "MAYBE.spad" 1085152 1085163 1085893 1085898) (-666 "MATSTOR.spad" 1082428 1082438 1085142 1085147) (-665 "MATRIX.spad" 1081132 1081142 1081616 1081643) (-664 "MATLIN.spad" 1078458 1078482 1081016 1081021) (-663 "MATCAT.spad" 1070031 1070053 1078414 1078453) (-662 "MATCAT.spad" 1061488 1061512 1069873 1069878) (-661 "MATCAT2.spad" 1060756 1060804 1061478 1061483) (-660 "MAPPKG3.spad" 1059655 1059669 1060746 1060751) (-659 "MAPPKG2.spad" 1058989 1059001 1059645 1059650) (-658 "MAPPKG1.spad" 1057807 1057817 1058979 1058984) (-657 "MAPPAST.spad" 1057120 1057128 1057797 1057802) (-656 "MAPHACK3.spad" 1056928 1056942 1057110 1057115) (-655 "MAPHACK2.spad" 1056693 1056705 1056918 1056923) (-654 "MAPHACK1.spad" 1056323 1056333 1056683 1056688) (-653 "MAGMA.spad" 1054113 1054130 1056313 1056318) (-652 "MACROAST.spad" 1053681 1053689 1054103 1054108) (-651 "M3D.spad" 1051377 1051387 1053059 1053064) (-650 "LZSTAGG.spad" 1048595 1048605 1051357 1051372) (-649 "LZSTAGG.spad" 1045821 1045833 1048585 1048590) (-648 "LWORD.spad" 1042526 1042543 1045811 1045816) (-647 "LSTAST.spad" 1042311 1042319 1042516 1042521) (-646 "LSQM.spad" 1040537 1040551 1040935 1040986) (-645 "LSPP.spad" 1040070 1040087 1040527 1040532) (-644 "LSMP.spad" 1038910 1038938 1040060 1040065) (-643 "LSMP1.spad" 1036714 1036728 1038900 1038905) (-642 "LSAGG.spad" 1036371 1036381 1036670 1036709) (-641 "LSAGG.spad" 1036060 1036072 1036361 1036366) (-640 "LPOLY.spad" 1035014 1035033 1035916 1035985) (-639 "LPEFRAC.spad" 1034271 1034281 1035004 1035009) (-638 "LO.spad" 1033672 1033686 1034205 1034232) (-637 "LOGIC.spad" 1033274 1033282 1033662 1033667) (-636 "LOGIC.spad" 1032874 1032884 1033264 1033269) (-635 "LODOOPS.spad" 1031792 1031804 1032864 1032869) (-634 "LODO.spad" 1031176 1031192 1031472 1031511) (-633 "LODOF.spad" 1030220 1030237 1031133 1031138) (-632 "LODOCAT.spad" 1028878 1028888 1030176 1030215) (-631 "LODOCAT.spad" 1027534 1027546 1028834 1028839) (-630 "LODO2.spad" 1026807 1026819 1027214 1027253) (-629 "LODO1.spad" 1026207 1026217 1026487 1026526) (-628 "LODEEF.spad" 1024979 1024997 1026197 1026202) (-627 "LNAGG.spad" 1020771 1020781 1024959 1024974) (-626 "LNAGG.spad" 1016537 1016549 1020727 1020732) (-625 "LMOPS.spad" 1013273 1013290 1016527 1016532) (-624 "LMODULE.spad" 1012915 1012925 1013263 1013268) (-623 "LMDICT.spad" 1012198 1012208 1012466 1012493) (-622 "LITERAL.spad" 1012104 1012115 1012188 1012193) (-621 "LIST.spad" 1009822 1009832 1011251 1011278) (-620 "LIST3.spad" 1009113 1009127 1009812 1009817) (-619 "LIST2.spad" 1007753 1007765 1009103 1009108) (-618 "LIST2MAP.spad" 1004630 1004642 1007743 1007748) (-617 "LINEXP.spad" 1004062 1004072 1004610 1004625) (-616 "LINDEP.spad" 1002839 1002851 1003974 1003979) (-615 "LIMITRF.spad" 1000753 1000763 1002829 1002834) (-614 "LIMITPS.spad" 999636 999649 1000743 1000748) (-613 "LIE.spad" 997650 997662 998926 999071) (-612 "LIECAT.spad" 997126 997136 997576 997645) (-611 "LIECAT.spad" 996630 996642 997082 997087) (-610 "LIB.spad" 994678 994686 995289 995304) (-609 "LGROBP.spad" 992031 992050 994668 994673) (-608 "LF.spad" 990950 990966 992021 992026) (-607 "LFCAT.spad" 989969 989977 990940 990945) (-606 "LEXTRIPK.spad" 985472 985487 989959 989964) (-605 "LEXP.spad" 983475 983502 985452 985467) (-604 "LETAST.spad" 983176 983184 983465 983470) (-603 "LEADCDET.spad" 981560 981577 983166 983171) (-602 "LAZM3PK.spad" 980264 980286 981550 981555) (-601 "LAUPOL.spad" 978953 978966 979857 979926) (-600 "LAPLACE.spad" 978526 978542 978943 978948) (-599 "LA.spad" 977966 977980 978448 978487) (-598 "LALG.spad" 977742 977752 977946 977961) (-597 "LALG.spad" 977526 977538 977732 977737) (-596 "KTVLOGIC.spad" 976949 976957 977516 977521) (-595 "KOVACIC.spad" 975662 975679 976939 976944) (-594 "KONVERT.spad" 975384 975394 975652 975657) (-593 "KOERCE.spad" 975121 975131 975374 975379) (-592 "KERNEL.spad" 973656 973666 974905 974910) (-591 "KERNEL2.spad" 973359 973371 973646 973651) (-590 "KDAGG.spad" 972450 972472 973327 973354) (-589 "KDAGG.spad" 971561 971585 972440 972445) (-588 "KAFILE.spad" 970524 970540 970759 970786) (-587 "JORDAN.spad" 968351 968363 969814 969959) (-586 "JOINAST.spad" 968045 968053 968341 968346) (-585 "JAVACODE.spad" 967811 967819 968035 968040) (-584 "IXAGG.spad" 965924 965948 967791 967806) (-583 "IXAGG.spad" 963902 963928 965771 965776) (-582 "IVECTOR.spad" 962673 962688 962828 962855) (-581 "ITUPLE.spad" 961818 961828 962663 962668) (-580 "ITRIGMNP.spad" 960629 960648 961808 961813) (-579 "ITFUN3.spad" 960123 960137 960619 960624) (-578 "ITFUN2.spad" 959853 959865 960113 960118) (-577 "ITAYLOR.spad" 957645 957660 959689 959814) (-576 "ISUPS.spad" 950056 950071 956619 956716) (-575 "ISUMP.spad" 949553 949569 950046 950051) (-574 "ISTRING.spad" 948556 948569 948722 948749) (-573 "ISAST.spad" 948277 948285 948546 948551) (-572 "IRURPK.spad" 946990 947009 948267 948272) (-571 "IRSN.spad" 944950 944958 946980 946985) (-570 "IRRF2F.spad" 943425 943435 944906 944911) (-569 "IRREDFFX.spad" 943026 943037 943415 943420) (-568 "IROOT.spad" 941357 941367 943016 943021) (-567 "IR.spad" 939146 939160 941212 941239) (-566 "IR2.spad" 938166 938182 939136 939141) (-565 "IR2F.spad" 937366 937382 938156 938161) (-564 "IPRNTPK.spad" 937126 937134 937356 937361) (-563 "IPF.spad" 936691 936703 936931 937024) (-562 "IPADIC.spad" 936452 936478 936617 936686) (-561 "IOBCON.spad" 936317 936325 936442 936447) (-560 "INVLAPLA.spad" 935962 935978 936307 936312) (-559 "INTTR.spad" 929208 929225 935952 935957) (-558 "INTTOOLS.spad" 926919 926935 928782 928787) (-557 "INTSLPE.spad" 926225 926233 926909 926914) (-556 "INTRVL.spad" 925791 925801 926139 926220) (-555 "INTRF.spad" 924155 924169 925781 925786) (-554 "INTRET.spad" 923587 923597 924145 924150) (-553 "INTRAT.spad" 922262 922279 923577 923582) (-552 "INTPM.spad" 920625 920641 921905 921910) (-551 "INTPAF.spad" 918393 918411 920557 920562) (-550 "INTPACK.spad" 908703 908711 918383 918388) (-549 "INT.spad" 908064 908072 908557 908698) (-548 "INTHERTR.spad" 907330 907347 908054 908059) (-547 "INTHERAL.spad" 906996 907020 907320 907325) (-546 "INTHEORY.spad" 903409 903417 906986 906991) (-545 "INTG0.spad" 896872 896890 903341 903346) (-544 "INTFTBL.spad" 890901 890909 896862 896867) (-543 "INTFACT.spad" 889960 889970 890891 890896) (-542 "INTEF.spad" 888275 888291 889950 889955) (-541 "INTDOM.spad" 886890 886898 888201 888270) (-540 "INTDOM.spad" 885567 885577 886880 886885) (-539 "INTCAT.spad" 883820 883830 885481 885562) (-538 "INTBIT.spad" 883323 883331 883810 883815) (-537 "INTALG.spad" 882505 882532 883313 883318) (-536 "INTAF.spad" 881997 882013 882495 882500) (-535 "INTABL.spad" 880515 880546 880678 880705) (-534 "INS.spad" 877982 877990 880417 880510) (-533 "INS.spad" 875535 875545 877972 877977) (-532 "INPSIGN.spad" 874969 874982 875525 875530) (-531 "INPRODPF.spad" 874035 874054 874959 874964) (-530 "INPRODFF.spad" 873093 873117 874025 874030) (-529 "INNMFACT.spad" 872064 872081 873083 873088) (-528 "INMODGCD.spad" 871548 871578 872054 872059) (-527 "INFSP.spad" 869833 869855 871538 871543) (-526 "INFPROD0.spad" 868883 868902 869823 869828) (-525 "INFORM.spad" 866044 866052 868873 868878) (-524 "INFORM1.spad" 865669 865679 866034 866039) (-523 "INFINITY.spad" 865221 865229 865659 865664) (-522 "INEP.spad" 863753 863775 865211 865216) (-521 "INDE.spad" 863482 863499 863743 863748) (-520 "INCRMAPS.spad" 862903 862913 863472 863477) (-519 "INBFF.spad" 858673 858684 862893 862898) (-518 "INBCON.spad" 857973 857981 858663 858668) (-517 "INBCON.spad" 857271 857281 857963 857968) (-516 "INAST.spad" 856937 856945 857261 857266) (-515 "IMPTAST.spad" 856645 856653 856927 856932) (-514 "IMATRIX.spad" 855590 855616 856102 856129) (-513 "IMATQF.spad" 854684 854728 855546 855551) (-512 "IMATLIN.spad" 853289 853313 854640 854645) (-511 "ILIST.spad" 851945 851960 852472 852499) (-510 "IIARRAY2.spad" 851333 851371 851552 851579) (-509 "IFF.spad" 850743 850759 851014 851107) (-508 "IFAST.spad" 850360 850368 850733 850738) (-507 "IFARRAY.spad" 847847 847862 849543 849570) (-506 "IFAMON.spad" 847709 847726 847803 847808) (-505 "IEVALAB.spad" 847098 847110 847699 847704) (-504 "IEVALAB.spad" 846485 846499 847088 847093) (-503 "IDPO.spad" 846283 846295 846475 846480) (-502 "IDPOAMS.spad" 846039 846051 846273 846278) (-501 "IDPOAM.spad" 845759 845771 846029 846034) (-500 "IDPC.spad" 844693 844705 845749 845754) (-499 "IDPAM.spad" 844438 844450 844683 844688) (-498 "IDPAG.spad" 844185 844197 844428 844433) (-497 "IDENT.spad" 844102 844110 844175 844180) (-496 "IDECOMP.spad" 841339 841357 844092 844097) (-495 "IDEAL.spad" 836262 836301 841274 841279) (-494 "ICDEN.spad" 835413 835429 836252 836257) (-493 "ICARD.spad" 834602 834610 835403 835408) (-492 "IBPTOOLS.spad" 833195 833212 834592 834597) (-491 "IBITS.spad" 832394 832407 832831 832858) (-490 "IBATOOL.spad" 829269 829288 832384 832389) (-489 "IBACHIN.spad" 827756 827771 829259 829264) (-488 "IARRAY2.spad" 826744 826770 827363 827390) (-487 "IARRAY1.spad" 825789 825804 825927 825954) (-486 "IAN.spad" 824002 824010 825605 825698) (-485 "IALGFACT.spad" 823603 823636 823992 823997) (-484 "HYPCAT.spad" 823027 823035 823593 823598) (-483 "HYPCAT.spad" 822449 822459 823017 823022) (-482 "HOSTNAME.spad" 822257 822265 822439 822444) (-481 "HOAGG.spad" 819515 819525 822237 822252) (-480 "HOAGG.spad" 816558 816570 819282 819287) (-479 "HEXADEC.spad" 814428 814436 815026 815119) (-478 "HEUGCD.spad" 813443 813454 814418 814423) (-477 "HELLFDIV.spad" 813033 813057 813433 813438) (-476 "HEAP.spad" 812425 812435 812640 812667) (-475 "HEADAST.spad" 811956 811964 812415 812420) (-474 "HDP.spad" 803073 803089 803450 803581) (-473 "HDMP.spad" 800249 800264 800867 800994) (-472 "HB.spad" 798486 798494 800239 800244) (-471 "HASHTBL.spad" 796956 796987 797167 797194) (-470 "HASAST.spad" 796674 796682 796946 796951) (-469 "HACKPI.spad" 796157 796165 796576 796669) (-468 "GTSET.spad" 795096 795112 795803 795830) (-467 "GSTBL.spad" 793615 793650 793789 793804) (-466 "GSERIES.spad" 790782 790809 791747 791896) (-465 "GROUP.spad" 790051 790059 790762 790777) (-464 "GROUP.spad" 789328 789338 790041 790046) (-463 "GROEBSOL.spad" 787816 787837 789318 789323) (-462 "GRMOD.spad" 786387 786399 787806 787811) (-461 "GRMOD.spad" 784956 784970 786377 786382) (-460 "GRIMAGE.spad" 777561 777569 784946 784951) (-459 "GRDEF.spad" 775940 775948 777551 777556) (-458 "GRAY.spad" 774399 774407 775930 775935) (-457 "GRALG.spad" 773446 773458 774389 774394) (-456 "GRALG.spad" 772491 772505 773436 773441) (-455 "GPOLSET.spad" 771945 771968 772173 772200) (-454 "GOSPER.spad" 771210 771228 771935 771940) (-453 "GMODPOL.spad" 770348 770375 771178 771205) (-452 "GHENSEL.spad" 769417 769431 770338 770343) (-451 "GENUPS.spad" 765518 765531 769407 769412) (-450 "GENUFACT.spad" 765095 765105 765508 765513) (-449 "GENPGCD.spad" 764679 764696 765085 765090) (-448 "GENMFACT.spad" 764131 764150 764669 764674) (-447 "GENEEZ.spad" 762070 762083 764121 764126) (-446 "GDMP.spad" 759088 759105 759864 759991) (-445 "GCNAALG.spad" 752983 753010 758882 758949) (-444 "GCDDOM.spad" 752155 752163 752909 752978) (-443 "GCDDOM.spad" 751389 751399 752145 752150) (-442 "GB.spad" 748907 748945 751345 751350) (-441 "GBINTERN.spad" 744927 744965 748897 748902) (-440 "GBF.spad" 740684 740722 744917 744922) (-439 "GBEUCLID.spad" 738558 738596 740674 740679) (-438 "GAUSSFAC.spad" 737855 737863 738548 738553) (-437 "GALUTIL.spad" 736177 736187 737811 737816) (-436 "GALPOLYU.spad" 734623 734636 736167 736172) (-435 "GALFACTU.spad" 732788 732807 734613 734618) (-434 "GALFACT.spad" 722921 722932 732778 732783) (-433 "FVFUN.spad" 719934 719942 722901 722916) (-432 "FVC.spad" 718976 718984 719914 719929) (-431 "FUNCTION.spad" 718825 718837 718966 718971) (-430 "FT.spad" 717037 717045 718815 718820) (-429 "FTEM.spad" 716200 716208 717027 717032) (-428 "FSUPFACT.spad" 715100 715119 716136 716141) (-427 "FST.spad" 713186 713194 715090 715095) (-426 "FSRED.spad" 712664 712680 713176 713181) (-425 "FSPRMELT.spad" 711488 711504 712621 712626) (-424 "FSPECF.spad" 709565 709581 711478 711483) (-423 "FS.spad" 703615 703625 709328 709560) (-422 "FS.spad" 697455 697467 703170 703175) (-421 "FSINT.spad" 697113 697129 697445 697450) (-420 "FSERIES.spad" 696300 696312 696933 697032) (-419 "FSCINT.spad" 695613 695629 696290 696295) (-418 "FSAGG.spad" 694718 694728 695557 695608) (-417 "FSAGG.spad" 693797 693809 694638 694643) (-416 "FSAGG2.spad" 692496 692512 693787 693792) (-415 "FS2UPS.spad" 686885 686919 692486 692491) (-414 "FS2.spad" 686530 686546 686875 686880) (-413 "FS2EXPXP.spad" 685653 685676 686520 686525) (-412 "FRUTIL.spad" 684595 684605 685643 685648) (-411 "FR.spad" 678290 678300 683620 683689) (-410 "FRNAALG.spad" 673377 673387 678232 678285) (-409 "FRNAALG.spad" 668476 668488 673333 673338) (-408 "FRNAAF2.spad" 667930 667948 668466 668471) (-407 "FRMOD.spad" 667324 667354 667861 667866) (-406 "FRIDEAL.spad" 666519 666540 667304 667319) (-405 "FRIDEAL2.spad" 666121 666153 666509 666514) (-404 "FRETRCT.spad" 665632 665642 666111 666116) (-403 "FRETRCT.spad" 665009 665021 665490 665495) (-402 "FRAMALG.spad" 663337 663350 664965 665004) (-401 "FRAMALG.spad" 661697 661712 663327 663332) (-400 "FRAC.spad" 658797 658807 659200 659373) (-399 "FRAC2.spad" 658400 658412 658787 658792) (-398 "FR2.spad" 657734 657746 658390 658395) (-397 "FPS.spad" 654543 654551 657624 657729) (-396 "FPS.spad" 651380 651390 654463 654468) (-395 "FPC.spad" 650422 650430 651282 651375) (-394 "FPC.spad" 649550 649560 650412 650417) (-393 "FPATMAB.spad" 649302 649312 649530 649545) (-392 "FPARFRAC.spad" 647775 647792 649292 649297) (-391 "FORTRAN.spad" 646281 646324 647765 647770) (-390 "FORT.spad" 645210 645218 646271 646276) (-389 "FORTFN.spad" 642370 642378 645190 645205) (-388 "FORTCAT.spad" 642044 642052 642350 642365) (-387 "FORMULA.spad" 639382 639390 642034 642039) (-386 "FORMULA1.spad" 638861 638871 639372 639377) (-385 "FORDER.spad" 638552 638576 638851 638856) (-384 "FOP.spad" 637753 637761 638542 638547) (-383 "FNLA.spad" 637177 637199 637721 637748) (-382 "FNCAT.spad" 635505 635513 637167 637172) (-381 "FNAME.spad" 635397 635405 635495 635500) (-380 "FMTC.spad" 635195 635203 635323 635392) (-379 "FMONOID.spad" 632250 632260 635151 635156) (-378 "FM.spad" 631945 631957 632184 632211) (-377 "FMFUN.spad" 628965 628973 631925 631940) (-376 "FMC.spad" 628007 628015 628945 628960) (-375 "FMCAT.spad" 625661 625679 627975 628002) (-374 "FM1.spad" 625018 625030 625595 625622) (-373 "FLOATRP.spad" 622739 622753 625008 625013) (-372 "FLOAT.spad" 615903 615911 622605 622734) (-371 "FLOATCP.spad" 613320 613334 615893 615898) (-370 "FLINEXP.spad" 613032 613042 613300 613315) (-369 "FLINEXP.spad" 612698 612710 612968 612973) (-368 "FLASORT.spad" 612018 612030 612688 612693) (-367 "FLALG.spad" 609664 609683 611944 612013) (-366 "FLAGG.spad" 606670 606680 609632 609659) (-365 "FLAGG.spad" 603589 603601 606553 606558) (-364 "FLAGG2.spad" 602270 602286 603579 603584) (-363 "FINRALG.spad" 600299 600312 602226 602265) (-362 "FINRALG.spad" 598254 598269 600183 600188) (-361 "FINITE.spad" 597406 597414 598244 598249) (-360 "FINAALG.spad" 586387 586397 597348 597401) (-359 "FINAALG.spad" 575380 575392 586343 586348) (-358 "FILE.spad" 574963 574973 575370 575375) (-357 "FILECAT.spad" 573481 573498 574953 574958) (-356 "FIELD.spad" 572887 572895 573383 573476) (-355 "FIELD.spad" 572379 572389 572877 572882) (-354 "FGROUP.spad" 570988 570998 572359 572374) (-353 "FGLMICPK.spad" 569775 569790 570978 570983) (-352 "FFX.spad" 569150 569165 569491 569584) (-351 "FFSLPE.spad" 568639 568660 569140 569145) (-350 "FFPOLY.spad" 559891 559902 568629 568634) (-349 "FFPOLY2.spad" 558951 558968 559881 559886) (-348 "FFP.spad" 558348 558368 558667 558760) (-347 "FF.spad" 557796 557812 558029 558122) (-346 "FFNBX.spad" 556308 556328 557512 557605) (-345 "FFNBP.spad" 554821 554838 556024 556117) (-344 "FFNB.spad" 553286 553307 554502 554595) (-343 "FFINTBAS.spad" 550700 550719 553276 553281) (-342 "FFIELDC.spad" 548275 548283 550602 550695) (-341 "FFIELDC.spad" 545936 545946 548265 548270) (-340 "FFHOM.spad" 544684 544701 545926 545931) (-339 "FFF.spad" 542119 542130 544674 544679) (-338 "FFCGX.spad" 540966 540986 541835 541928) (-337 "FFCGP.spad" 539855 539875 540682 540775) (-336 "FFCG.spad" 538647 538668 539536 539629) (-335 "FFCAT.spad" 531674 531696 538486 538642) (-334 "FFCAT.spad" 524780 524804 531594 531599) (-333 "FFCAT2.spad" 524525 524565 524770 524775) (-332 "FEXPR.spad" 516234 516280 524281 524320) (-331 "FEVALAB.spad" 515940 515950 516224 516229) (-330 "FEVALAB.spad" 515431 515443 515717 515722) (-329 "FDIV.spad" 514873 514897 515421 515426) (-328 "FDIVCAT.spad" 512915 512939 514863 514868) (-327 "FDIVCAT.spad" 510955 510981 512905 512910) (-326 "FDIV2.spad" 510609 510649 510945 510950) (-325 "FCPAK1.spad" 509162 509170 510599 510604) (-324 "FCOMP.spad" 508541 508551 509152 509157) (-323 "FC.spad" 498366 498374 508531 508536) (-322 "FAXF.spad" 491301 491315 498268 498361) (-321 "FAXF.spad" 484288 484304 491257 491262) (-320 "FARRAY.spad" 482434 482444 483471 483498) (-319 "FAMR.spad" 480554 480566 482332 482429) (-318 "FAMR.spad" 478658 478672 480438 480443) (-317 "FAMONOID.spad" 478308 478318 478612 478617) (-316 "FAMONC.spad" 476530 476542 478298 478303) (-315 "FAGROUP.spad" 476136 476146 476426 476453) (-314 "FACUTIL.spad" 474332 474349 476126 476131) (-313 "FACTFUNC.spad" 473508 473518 474322 474327) (-312 "EXPUPXS.spad" 470341 470364 471640 471789) (-311 "EXPRTUBE.spad" 467569 467577 470331 470336) (-310 "EXPRODE.spad" 464441 464457 467559 467564) (-309 "EXPR.spad" 459716 459726 460430 460837) (-308 "EXPR2UPS.spad" 455808 455821 459706 459711) (-307 "EXPR2.spad" 455511 455523 455798 455803) (-306 "EXPEXPAN.spad" 452450 452475 453084 453177) (-305 "EXIT.spad" 452121 452129 452440 452445) (-304 "EXITAST.spad" 451858 451866 452111 452116) (-303 "EVALCYC.spad" 451316 451330 451848 451853) (-302 "EVALAB.spad" 450880 450890 451306 451311) (-301 "EVALAB.spad" 450442 450454 450870 450875) (-300 "EUCDOM.spad" 447984 447992 450368 450437) (-299 "EUCDOM.spad" 445588 445598 447974 447979) (-298 "ESTOOLS.spad" 437428 437436 445578 445583) (-297 "ESTOOLS2.spad" 437029 437043 437418 437423) (-296 "ESTOOLS1.spad" 436714 436725 437019 437024) (-295 "ES.spad" 429261 429269 436704 436709) (-294 "ES.spad" 421714 421724 429159 429164) (-293 "ESCONT.spad" 418487 418495 421704 421709) (-292 "ESCONT1.spad" 418236 418248 418477 418482) (-291 "ES2.spad" 417731 417747 418226 418231) (-290 "ES1.spad" 417297 417313 417721 417726) (-289 "ERROR.spad" 414618 414626 417287 417292) (-288 "EQTBL.spad" 413090 413112 413299 413326) (-287 "EQ.spad" 407964 407974 410763 410875) (-286 "EQ2.spad" 407680 407692 407954 407959) (-285 "EP.spad" 403994 404004 407670 407675) (-284 "ENV.spad" 402696 402704 403984 403989) (-283 "ENTIRER.spad" 402364 402372 402640 402691) (-282 "EMR.spad" 401565 401606 402290 402359) (-281 "ELTAGG.spad" 399805 399824 401555 401560) (-280 "ELTAGG.spad" 398009 398030 399761 399766) (-279 "ELTAB.spad" 397456 397474 397999 398004) (-278 "ELFUTS.spad" 396835 396854 397446 397451) (-277 "ELEMFUN.spad" 396524 396532 396825 396830) (-276 "ELEMFUN.spad" 396211 396221 396514 396519) (-275 "ELAGG.spad" 394142 394152 396179 396206) (-274 "ELAGG.spad" 392022 392034 394061 394066) (-273 "ELABEXPR.spad" 390953 390961 392012 392017) (-272 "EFUPXS.spad" 387729 387759 390909 390914) (-271 "EFULS.spad" 384565 384588 387685 387690) (-270 "EFSTRUC.spad" 382520 382536 384555 384560) (-269 "EF.spad" 377286 377302 382510 382515) (-268 "EAB.spad" 375562 375570 377276 377281) (-267 "E04UCFA.spad" 375098 375106 375552 375557) (-266 "E04NAFA.spad" 374675 374683 375088 375093) (-265 "E04MBFA.spad" 374255 374263 374665 374670) (-264 "E04JAFA.spad" 373791 373799 374245 374250) (-263 "E04GCFA.spad" 373327 373335 373781 373786) (-262 "E04FDFA.spad" 372863 372871 373317 373322) (-261 "E04DGFA.spad" 372399 372407 372853 372858) (-260 "E04AGNT.spad" 368241 368249 372389 372394) (-259 "DVARCAT.spad" 364926 364936 368231 368236) (-258 "DVARCAT.spad" 361609 361621 364916 364921) (-257 "DSMP.spad" 359040 359054 359345 359472) (-256 "DROPT.spad" 352985 352993 359030 359035) (-255 "DROPT1.spad" 352648 352658 352975 352980) (-254 "DROPT0.spad" 347475 347483 352638 352643) (-253 "DRAWPT.spad" 345630 345638 347465 347470) (-252 "DRAW.spad" 338230 338243 345620 345625) (-251 "DRAWHACK.spad" 337538 337548 338220 338225) (-250 "DRAWCX.spad" 334980 334988 337528 337533) (-249 "DRAWCURV.spad" 334517 334532 334970 334975) (-248 "DRAWCFUN.spad" 323689 323697 334507 334512) (-247 "DQAGG.spad" 321845 321855 323645 323684) (-246 "DPOLCAT.spad" 317186 317202 321713 321840) (-245 "DPOLCAT.spad" 312613 312631 317142 317147) (-244 "DPMO.spad" 305916 305932 306054 306355) (-243 "DPMM.spad" 299232 299250 299357 299658) (-242 "DOMAIN.spad" 298503 298511 299222 299227) (-241 "DMP.spad" 295725 295740 296297 296424) (-240 "DLP.spad" 295073 295083 295715 295720) (-239 "DLIST.spad" 293485 293495 294256 294283) (-238 "DLAGG.spad" 291886 291896 293465 293480) (-237 "DIVRING.spad" 291428 291436 291830 291881) (-236 "DIVRING.spad" 291014 291024 291418 291423) (-235 "DISPLAY.spad" 289194 289202 291004 291009) (-234 "DIRPROD.spad" 280048 280064 280688 280819) (-233 "DIRPROD2.spad" 278856 278874 280038 280043) (-232 "DIRPCAT.spad" 277786 277802 278708 278851) (-231 "DIRPCAT.spad" 276457 276475 277381 277386) (-230 "DIOSP.spad" 275282 275290 276447 276452) (-229 "DIOPS.spad" 274254 274264 275250 275277) (-228 "DIOPS.spad" 273212 273224 274210 274215) (-227 "DIFRING.spad" 272504 272512 273192 273207) (-226 "DIFRING.spad" 271804 271814 272494 272499) (-225 "DIFEXT.spad" 270963 270973 271784 271799) (-224 "DIFEXT.spad" 270039 270051 270862 270867) (-223 "DIAGG.spad" 269657 269667 270007 270034) (-222 "DIAGG.spad" 269295 269307 269647 269652) (-221 "DHMATRIX.spad" 267599 267609 268752 268779) (-220 "DFSFUN.spad" 261007 261015 267589 267594) (-219 "DFLOAT.spad" 257610 257618 260897 261002) (-218 "DFINTTLS.spad" 255819 255835 257600 257605) (-217 "DERHAM.spad" 253729 253761 255799 255814) (-216 "DEQUEUE.spad" 253047 253057 253336 253363) (-215 "DEGRED.spad" 252662 252676 253037 253042) (-214 "DEFINTRF.spad" 250187 250197 252652 252657) (-213 "DEFINTEF.spad" 248683 248699 250177 250182) (-212 "DEFAST.spad" 248040 248048 248673 248678) (-211 "DECIMAL.spad" 245922 245930 246508 246601) (-210 "DDFACT.spad" 243721 243738 245912 245917) (-209 "DBLRESP.spad" 243319 243343 243711 243716) (-208 "DBASE.spad" 241891 241901 243309 243314) (-207 "DATABUF.spad" 241379 241392 241881 241886) (-206 "D03FAFA.spad" 241207 241215 241369 241374) (-205 "D03EEFA.spad" 241027 241035 241197 241202) (-204 "D03AGNT.spad" 240107 240115 241017 241022) (-203 "D02EJFA.spad" 239569 239577 240097 240102) (-202 "D02CJFA.spad" 239047 239055 239559 239564) (-201 "D02BHFA.spad" 238537 238545 239037 239042) (-200 "D02BBFA.spad" 238027 238035 238527 238532) (-199 "D02AGNT.spad" 232831 232839 238017 238022) (-198 "D01WGTS.spad" 231150 231158 232821 232826) (-197 "D01TRNS.spad" 231127 231135 231140 231145) (-196 "D01GBFA.spad" 230649 230657 231117 231122) (-195 "D01FCFA.spad" 230171 230179 230639 230644) (-194 "D01ASFA.spad" 229639 229647 230161 230166) (-193 "D01AQFA.spad" 229085 229093 229629 229634) (-192 "D01APFA.spad" 228509 228517 229075 229080) (-191 "D01ANFA.spad" 228003 228011 228499 228504) (-190 "D01AMFA.spad" 227513 227521 227993 227998) (-189 "D01ALFA.spad" 227053 227061 227503 227508) (-188 "D01AKFA.spad" 226579 226587 227043 227048) (-187 "D01AJFA.spad" 226102 226110 226569 226574) (-186 "D01AGNT.spad" 222161 222169 226092 226097) (-185 "CYCLOTOM.spad" 221667 221675 222151 222156) (-184 "CYCLES.spad" 218499 218507 221657 221662) (-183 "CVMP.spad" 217916 217926 218489 218494) (-182 "CTRIGMNP.spad" 216406 216422 217906 217911) (-181 "CTORCALL.spad" 215994 216002 216396 216401) (-180 "CSTTOOLS.spad" 215237 215250 215984 215989) (-179 "CRFP.spad" 208941 208954 215227 215232) (-178 "CRCEAST.spad" 208662 208670 208931 208936) (-177 "CRAPACK.spad" 207705 207715 208652 208657) (-176 "CPMATCH.spad" 207205 207220 207630 207635) (-175 "CPIMA.spad" 206910 206929 207195 207200) (-174 "COORDSYS.spad" 201803 201813 206900 206905) (-173 "CONTOUR.spad" 201205 201213 201793 201798) (-172 "CONTFRAC.spad" 196817 196827 201107 201200) (-171 "CONDUIT.spad" 196575 196583 196807 196812) (-170 "COMRING.spad" 196249 196257 196513 196570) (-169 "COMPPROP.spad" 195763 195771 196239 196244) (-168 "COMPLPAT.spad" 195530 195545 195753 195758) (-167 "COMPLEX.spad" 189556 189566 189800 190061) (-166 "COMPLEX2.spad" 189269 189281 189546 189551) (-165 "COMPFACT.spad" 188871 188885 189259 189264) (-164 "COMPCAT.spad" 186927 186937 188593 188866) (-163 "COMPCAT.spad" 184689 184701 186357 186362) (-162 "COMMUPC.spad" 184435 184453 184679 184684) (-161 "COMMONOP.spad" 183968 183976 184425 184430) (-160 "COMM.spad" 183777 183785 183958 183963) (-159 "COMMAAST.spad" 183541 183549 183767 183772) (-158 "COMBOPC.spad" 182446 182454 183531 183536) (-157 "COMBINAT.spad" 181191 181201 182436 182441) (-156 "COMBF.spad" 178559 178575 181181 181186) (-155 "COLOR.spad" 177396 177404 178549 178554) (-154 "COLONAST.spad" 177063 177071 177386 177391) (-153 "CMPLXRT.spad" 176772 176789 177053 177058) (-152 "CLLCTAST.spad" 176436 176444 176762 176767) (-151 "CLIP.spad" 172528 172536 176426 176431) (-150 "CLIF.spad" 171167 171183 172484 172523) (-149 "CLAGG.spad" 167642 167652 171147 171162) (-148 "CLAGG.spad" 163998 164010 167505 167510) (-147 "CINTSLPE.spad" 163323 163336 163988 163993) (-146 "CHVAR.spad" 161401 161423 163313 163318) (-145 "CHARZ.spad" 161316 161324 161381 161396) (-144 "CHARPOL.spad" 160824 160834 161306 161311) (-143 "CHARNZ.spad" 160577 160585 160804 160819) (-142 "CHAR.spad" 158445 158453 160567 160572) (-141 "CFCAT.spad" 157761 157769 158435 158440) (-140 "CDEN.spad" 156919 156933 157751 157756) (-139 "CCLASS.spad" 155068 155076 156330 156369) (-138 "CATEGORY.spad" 154847 154855 155058 155063) (-137 "CATAST.spad" 154475 154483 154837 154842) (-136 "CASEAST.spad" 154191 154199 154465 154470) (-135 "CARTEN.spad" 149294 149318 154181 154186) (-134 "CARTEN2.spad" 148680 148707 149284 149289) (-133 "CARD.spad" 145969 145977 148654 148675) (-132 "CAPSLAST.spad" 145744 145752 145959 145964) (-131 "CACHSET.spad" 145366 145374 145734 145739) (-130 "CABMON.spad" 144919 144927 145356 145361) (-129 "BYTE.spad" 144313 144321 144909 144914) (-128 "BYTEARY.spad" 143388 143396 143482 143509) (-127 "BTREE.spad" 142457 142467 142995 143022) (-126 "BTOURN.spad" 141460 141470 142064 142091) (-125 "BTCAT.spad" 140836 140846 141416 141455) (-124 "BTCAT.spad" 140244 140256 140826 140831) (-123 "BTAGG.spad" 139354 139362 140200 140239) (-122 "BTAGG.spad" 138496 138506 139344 139349) (-121 "BSTREE.spad" 137231 137241 138103 138130) (-120 "BRILL.spad" 135426 135437 137221 137226) (-119 "BRAGG.spad" 134340 134350 135406 135421) (-118 "BRAGG.spad" 133228 133240 134296 134301) (-117 "BPADICRT.spad" 131210 131222 131465 131558) (-116 "BPADIC.spad" 130874 130886 131136 131205) (-115 "BOUNDZRO.spad" 130530 130547 130864 130869) (-114 "BOP.spad" 125994 126002 130520 130525) (-113 "BOP1.spad" 123380 123390 125950 125955) (-112 "BOOLEAN.spad" 122704 122712 123370 123375) (-111 "BMODULE.spad" 122416 122428 122672 122699) (-110 "BITS.spad" 121835 121843 122052 122079) (-109 "BINFILE.spad" 121178 121186 121825 121830) (-108 "BINDING.spad" 120597 120605 121168 121173) (-107 "BINARY.spad" 118488 118496 119065 119158) (-106 "BGAGG.spad" 117673 117683 118456 118483) (-105 "BGAGG.spad" 116878 116890 117663 117668) (-104 "BFUNCT.spad" 116442 116450 116858 116873) (-103 "BEZOUT.spad" 115576 115603 116392 116397) (-102 "BBTREE.spad" 112395 112405 115183 115210) (-101 "BASTYPE.spad" 112067 112075 112385 112390) (-100 "BASTYPE.spad" 111737 111747 112057 112062) (-99 "BALFACT.spad" 111177 111189 111727 111732) (-98 "AUTOMOR.spad" 110624 110633 111157 111172) (-97 "ATTREG.spad" 107343 107350 110376 110619) (-96 "ATTRBUT.spad" 103366 103373 107323 107338) (-95 "ATTRAST.spad" 103084 103091 103356 103361) (-94 "ATRIG.spad" 102554 102561 103074 103079) (-93 "ATRIG.spad" 102022 102031 102544 102549) (-92 "ASTCAT.spad" 101926 101933 102012 102017) (-91 "ASTCAT.spad" 101828 101837 101916 101921) (-90 "ASTACK.spad" 101161 101170 101435 101462) (-89 "ASSOCEQ.spad" 99961 99972 101117 101122) (-88 "ASP9.spad" 99042 99055 99951 99956) (-87 "ASP8.spad" 98085 98098 99032 99037) (-86 "ASP80.spad" 97407 97420 98075 98080) (-85 "ASP7.spad" 96567 96580 97397 97402) (-84 "ASP78.spad" 96018 96031 96557 96562) (-83 "ASP77.spad" 95387 95400 96008 96013) (-82 "ASP74.spad" 94479 94492 95377 95382) (-81 "ASP73.spad" 93750 93763 94469 94474) (-80 "ASP6.spad" 92382 92395 93740 93745) (-79 "ASP55.spad" 90891 90904 92372 92377) (-78 "ASP50.spad" 88708 88721 90881 90886) (-77 "ASP4.spad" 88003 88016 88698 88703) (-76 "ASP49.spad" 87002 87015 87993 87998) (-75 "ASP42.spad" 85409 85448 86992 86997) (-74 "ASP41.spad" 83988 84027 85399 85404) (-73 "ASP35.spad" 82976 82989 83978 83983) (-72 "ASP34.spad" 82277 82290 82966 82971) (-71 "ASP33.spad" 81837 81850 82267 82272) (-70 "ASP31.spad" 80977 80990 81827 81832) (-69 "ASP30.spad" 79869 79882 80967 80972) (-68 "ASP29.spad" 79335 79348 79859 79864) (-67 "ASP28.spad" 70608 70621 79325 79330) (-66 "ASP27.spad" 69505 69518 70598 70603) (-65 "ASP24.spad" 68592 68605 69495 69500) (-64 "ASP20.spad" 67808 67821 68582 68587) (-63 "ASP1.spad" 67189 67202 67798 67803) (-62 "ASP19.spad" 61875 61888 67179 67184) (-61 "ASP12.spad" 61289 61302 61865 61870) (-60 "ASP10.spad" 60560 60573 61279 61284) (-59 "ARRAY2.spad" 59920 59929 60167 60194) (-58 "ARRAY1.spad" 58755 58764 59103 59130) (-57 "ARRAY12.spad" 57424 57435 58745 58750) (-56 "ARR2CAT.spad" 53074 53095 57380 57419) (-55 "ARR2CAT.spad" 48756 48779 53064 53069) (-54 "APPRULE.spad" 48000 48022 48746 48751) (-53 "APPLYORE.spad" 47615 47628 47990 47995) (-52 "ANY.spad" 45957 45964 47605 47610) (-51 "ANY1.spad" 45028 45037 45947 45952) (-50 "ANTISYM.spad" 43467 43483 45008 45023) (-49 "ANON.spad" 43164 43171 43457 43462) (-48 "AN.spad" 41465 41472 42980 43073) (-47 "AMR.spad" 39644 39655 41363 41460) (-46 "AMR.spad" 37660 37673 39381 39386) (-45 "ALIST.spad" 35072 35093 35422 35449) (-44 "ALGSC.spad" 34195 34221 34944 34997) (-43 "ALGPKG.spad" 29904 29915 34151 34156) (-42 "ALGMFACT.spad" 29093 29107 29894 29899) (-41 "ALGMANIP.spad" 26513 26528 28890 28895) (-40 "ALGFF.spad" 24828 24855 25045 25201) (-39 "ALGFACT.spad" 23949 23959 24818 24823) (-38 "ALGEBRA.spad" 23680 23689 23905 23944) (-37 "ALGEBRA.spad" 23443 23454 23670 23675) (-36 "ALAGG.spad" 22941 22962 23399 23438) (-35 "AHYP.spad" 22322 22329 22931 22936) (-34 "AGG.spad" 20621 20628 22302 22317) (-33 "AGG.spad" 18894 18903 20577 20582) (-32 "AF.spad" 17319 17334 18829 18834) (-31 "ADDAST.spad" 16999 17006 17309 17314) (-30 "ACPLOT.spad" 15570 15577 16989 16994) (-29 "ACFS.spad" 13309 13318 15460 15565) (-28 "ACFS.spad" 11146 11157 13299 13304) (-27 "ACF.spad" 7748 7755 11048 11141) (-26 "ACF.spad" 4436 4445 7738 7743) (-25 "ABELSG.spad" 3977 3984 4426 4431) (-24 "ABELSG.spad" 3516 3525 3967 3972) (-23 "ABELMON.spad" 3059 3066 3506 3511) (-22 "ABELMON.spad" 2600 2609 3049 3054) (-21 "ABELGRP.spad" 2172 2179 2590 2595) (-20 "ABELGRP.spad" 1742 1751 2162 2167) (-19 "A1AGG.spad" 870 879 1698 1737) (-18 "A1AGG.spad" 30 41 860 865)) \ No newline at end of file
+((-3 NIL 2265439 2265444 2265449 2265454) (-2 NIL 2265419 2265424 2265429 2265434) (-1 NIL 2265399 2265404 2265409 2265414) (0 NIL 2265379 2265384 2265389 2265394) (-1253 "ZMOD.spad" 2265188 2265201 2265317 2265374) (-1252 "ZLINDEP.spad" 2264232 2264243 2265178 2265183) (-1251 "ZDSOLVE.spad" 2254081 2254103 2264222 2264227) (-1250 "YSTREAM.spad" 2253574 2253585 2254071 2254076) (-1249 "XRPOLY.spad" 2252794 2252814 2253430 2253499) (-1248 "XPR.spad" 2250523 2250536 2252512 2252611) (-1247 "XPOLY.spad" 2250078 2250089 2250379 2250448) (-1246 "XPOLYC.spad" 2249395 2249411 2250004 2250073) (-1245 "XPBWPOLY.spad" 2247832 2247852 2249175 2249244) (-1244 "XF.spad" 2246293 2246308 2247734 2247827) (-1243 "XF.spad" 2244734 2244751 2246177 2246182) (-1242 "XFALG.spad" 2241758 2241774 2244660 2244729) (-1241 "XEXPPKG.spad" 2241009 2241035 2241748 2241753) (-1240 "XDPOLY.spad" 2240623 2240639 2240865 2240934) (-1239 "XALG.spad" 2240221 2240232 2240579 2240618) (-1238 "WUTSET.spad" 2236060 2236077 2239867 2239894) (-1237 "WP.spad" 2235074 2235118 2235918 2235985) (-1236 "WHILEAST.spad" 2234872 2234881 2235064 2235069) (-1235 "WHEREAST.spad" 2234543 2234552 2234862 2234867) (-1234 "WFFINTBS.spad" 2232106 2232128 2234533 2234538) (-1233 "WEIER.spad" 2230320 2230331 2232096 2232101) (-1232 "VSPACE.spad" 2229993 2230004 2230288 2230315) (-1231 "VSPACE.spad" 2229686 2229699 2229983 2229988) (-1230 "VOID.spad" 2229276 2229285 2229676 2229681) (-1229 "VIEW.spad" 2226898 2226907 2229266 2229271) (-1228 "VIEWDEF.spad" 2222095 2222104 2226888 2226893) (-1227 "VIEW3D.spad" 2205930 2205939 2222085 2222090) (-1226 "VIEW2D.spad" 2193667 2193676 2205920 2205925) (-1225 "VECTOR.spad" 2192342 2192353 2192593 2192620) (-1224 "VECTOR2.spad" 2190969 2190982 2192332 2192337) (-1223 "VECTCAT.spad" 2188857 2188868 2190925 2190964) (-1222 "VECTCAT.spad" 2186565 2186578 2188635 2188640) (-1221 "VARIABLE.spad" 2186345 2186360 2186555 2186560) (-1220 "UTYPE.spad" 2185979 2185988 2186325 2186340) (-1219 "UTSODETL.spad" 2185272 2185296 2185935 2185940) (-1218 "UTSODE.spad" 2183460 2183480 2185262 2185267) (-1217 "UTS.spad" 2178249 2178277 2181927 2182024) (-1216 "UTSCAT.spad" 2175700 2175716 2178147 2178244) (-1215 "UTSCAT.spad" 2172795 2172813 2175244 2175249) (-1214 "UTS2.spad" 2172388 2172423 2172785 2172790) (-1213 "URAGG.spad" 2167010 2167021 2172368 2172383) (-1212 "URAGG.spad" 2161606 2161619 2166966 2166971) (-1211 "UPXSSING.spad" 2159249 2159275 2160687 2160820) (-1210 "UPXS.spad" 2156276 2156304 2157381 2157530) (-1209 "UPXSCONS.spad" 2154033 2154053 2154408 2154557) (-1208 "UPXSCCA.spad" 2152491 2152511 2153879 2154028) (-1207 "UPXSCCA.spad" 2151091 2151113 2152481 2152486) (-1206 "UPXSCAT.spad" 2149672 2149688 2150937 2151086) (-1205 "UPXS2.spad" 2149213 2149266 2149662 2149667) (-1204 "UPSQFREE.spad" 2147625 2147639 2149203 2149208) (-1203 "UPSCAT.spad" 2145218 2145242 2147523 2147620) (-1202 "UPSCAT.spad" 2142517 2142543 2144824 2144829) (-1201 "UPOLYC.spad" 2137495 2137506 2142359 2142512) (-1200 "UPOLYC.spad" 2132365 2132378 2137231 2137236) (-1199 "UPOLYC2.spad" 2131834 2131853 2132355 2132360) (-1198 "UP.spad" 2128876 2128891 2129384 2129537) (-1197 "UPMP.spad" 2127766 2127779 2128866 2128871) (-1196 "UPDIVP.spad" 2127329 2127343 2127756 2127761) (-1195 "UPDECOMP.spad" 2125566 2125580 2127319 2127324) (-1194 "UPCDEN.spad" 2124773 2124789 2125556 2125561) (-1193 "UP2.spad" 2124135 2124156 2124763 2124768) (-1192 "UNISEG.spad" 2123488 2123499 2124054 2124059) (-1191 "UNISEG2.spad" 2122981 2122994 2123444 2123449) (-1190 "UNIFACT.spad" 2122082 2122094 2122971 2122976) (-1189 "ULS.spad" 2112636 2112664 2113729 2114158) (-1188 "ULSCONS.spad" 2106675 2106695 2107047 2107196) (-1187 "ULSCCAT.spad" 2104272 2104292 2106495 2106670) (-1186 "ULSCCAT.spad" 2102003 2102025 2104228 2104233) (-1185 "ULSCAT.spad" 2100219 2100235 2101849 2101998) (-1184 "ULS2.spad" 2099731 2099784 2100209 2100214) (-1183 "UFD.spad" 2098796 2098805 2099657 2099726) (-1182 "UFD.spad" 2097923 2097934 2098786 2098791) (-1181 "UDVO.spad" 2096770 2096779 2097913 2097918) (-1180 "UDPO.spad" 2094197 2094208 2096726 2096731) (-1179 "TYPE.spad" 2094119 2094128 2094177 2094192) (-1178 "TYPEAST.spad" 2094038 2094047 2094109 2094114) (-1177 "TWOFACT.spad" 2092688 2092703 2094028 2094033) (-1176 "TUPLE.spad" 2092074 2092085 2092587 2092592) (-1175 "TUBETOOL.spad" 2088911 2088920 2092064 2092069) (-1174 "TUBE.spad" 2087552 2087569 2088901 2088906) (-1173 "TS.spad" 2086141 2086157 2087117 2087214) (-1172 "TSETCAT.spad" 2073256 2073273 2086097 2086136) (-1171 "TSETCAT.spad" 2060369 2060388 2073212 2073217) (-1170 "TRMANIP.spad" 2054735 2054752 2060075 2060080) (-1169 "TRIMAT.spad" 2053694 2053719 2054725 2054730) (-1168 "TRIGMNIP.spad" 2052211 2052228 2053684 2053689) (-1167 "TRIGCAT.spad" 2051723 2051732 2052201 2052206) (-1166 "TRIGCAT.spad" 2051233 2051244 2051713 2051718) (-1165 "TREE.spad" 2049804 2049815 2050840 2050867) (-1164 "TRANFUN.spad" 2049635 2049644 2049794 2049799) (-1163 "TRANFUN.spad" 2049464 2049475 2049625 2049630) (-1162 "TOPSP.spad" 2049138 2049147 2049454 2049459) (-1161 "TOOLSIGN.spad" 2048801 2048812 2049128 2049133) (-1160 "TEXTFILE.spad" 2047358 2047367 2048791 2048796) (-1159 "TEX.spad" 2044375 2044384 2047348 2047353) (-1158 "TEX1.spad" 2043931 2043942 2044365 2044370) (-1157 "TEMUTL.spad" 2043486 2043495 2043921 2043926) (-1156 "TBCMPPK.spad" 2041579 2041602 2043476 2043481) (-1155 "TBAGG.spad" 2040603 2040626 2041547 2041574) (-1154 "TBAGG.spad" 2039647 2039672 2040593 2040598) (-1153 "TANEXP.spad" 2039023 2039034 2039637 2039642) (-1152 "TABLE.spad" 2037434 2037457 2037704 2037731) (-1151 "TABLEAU.spad" 2036915 2036926 2037424 2037429) (-1150 "TABLBUMP.spad" 2033698 2033709 2036905 2036910) (-1149 "SYSTEM.spad" 2032972 2032981 2033688 2033693) (-1148 "SYSSOLP.spad" 2030445 2030456 2032962 2032967) (-1147 "SYNTAX.spad" 2026637 2026646 2030435 2030440) (-1146 "SYMTAB.spad" 2024693 2024702 2026627 2026632) (-1145 "SYMS.spad" 2020678 2020687 2024683 2024688) (-1144 "SYMPOLY.spad" 2019685 2019696 2019767 2019894) (-1143 "SYMFUNC.spad" 2019160 2019171 2019675 2019680) (-1142 "SYMBOL.spad" 2016496 2016505 2019150 2019155) (-1141 "SWITCH.spad" 2013253 2013262 2016486 2016491) (-1140 "SUTS.spad" 2010152 2010180 2011720 2011817) (-1139 "SUPXS.spad" 2007166 2007194 2008284 2008433) (-1138 "SUP.spad" 2003935 2003946 2004716 2004869) (-1137 "SUPFRACF.spad" 2003040 2003058 2003925 2003930) (-1136 "SUP2.spad" 2002430 2002443 2003030 2003035) (-1135 "SUMRF.spad" 2001396 2001407 2002420 2002425) (-1134 "SUMFS.spad" 2001029 2001046 2001386 2001391) (-1133 "SULS.spad" 1991570 1991598 1992676 1993105) (-1132 "SUCHTAST.spad" 1991339 1991348 1991560 1991565) (-1131 "SUCH.spad" 1991019 1991034 1991329 1991334) (-1130 "SUBSPACE.spad" 1983026 1983041 1991009 1991014) (-1129 "SUBRESP.spad" 1982186 1982200 1982982 1982987) (-1128 "STTF.spad" 1978285 1978301 1982176 1982181) (-1127 "STTFNC.spad" 1974753 1974769 1978275 1978280) (-1126 "STTAYLOR.spad" 1967151 1967162 1974634 1974639) (-1125 "STRTBL.spad" 1965656 1965673 1965805 1965832) (-1124 "STRING.spad" 1965065 1965074 1965079 1965106) (-1123 "STRICAT.spad" 1964841 1964850 1965021 1965060) (-1122 "STREAM.spad" 1961609 1961620 1964366 1964381) (-1121 "STREAM3.spad" 1961154 1961169 1961599 1961604) (-1120 "STREAM2.spad" 1960222 1960235 1961144 1961149) (-1119 "STREAM1.spad" 1959926 1959937 1960212 1960217) (-1118 "STINPROD.spad" 1958832 1958848 1959916 1959921) (-1117 "STEP.spad" 1958033 1958042 1958822 1958827) (-1116 "STBL.spad" 1956559 1956587 1956726 1956741) (-1115 "STAGG.spad" 1955624 1955635 1956539 1956554) (-1114 "STAGG.spad" 1954697 1954710 1955614 1955619) (-1113 "STACK.spad" 1954048 1954059 1954304 1954331) (-1112 "SREGSET.spad" 1951752 1951769 1953694 1953721) (-1111 "SRDCMPK.spad" 1950297 1950317 1951742 1951747) (-1110 "SRAGG.spad" 1945382 1945391 1950253 1950292) (-1109 "SRAGG.spad" 1940499 1940510 1945372 1945377) (-1108 "SQMATRIX.spad" 1938123 1938141 1939031 1939118) (-1107 "SPLTREE.spad" 1932675 1932688 1937559 1937586) (-1106 "SPLNODE.spad" 1929263 1929276 1932665 1932670) (-1105 "SPFCAT.spad" 1928040 1928049 1929253 1929258) (-1104 "SPECOUT.spad" 1926590 1926599 1928030 1928035) (-1103 "SPADXPT.spad" 1919443 1919452 1926570 1926585) (-1102 "spad-parser.spad" 1918908 1918917 1919433 1919438) (-1101 "SPADAST.spad" 1918609 1918618 1918898 1918903) (-1100 "SPACEC.spad" 1902622 1902633 1918599 1918604) (-1099 "SPACE3.spad" 1902398 1902409 1902612 1902617) (-1098 "SORTPAK.spad" 1901943 1901956 1902354 1902359) (-1097 "SOLVETRA.spad" 1899700 1899711 1901933 1901938) (-1096 "SOLVESER.spad" 1898220 1898231 1899690 1899695) (-1095 "SOLVERAD.spad" 1894230 1894241 1898210 1898215) (-1094 "SOLVEFOR.spad" 1892650 1892668 1894220 1894225) (-1093 "SNTSCAT.spad" 1892238 1892255 1892606 1892645) (-1092 "SMTS.spad" 1890498 1890524 1891803 1891900) (-1091 "SMP.spad" 1887937 1887957 1888327 1888454) (-1090 "SMITH.spad" 1886780 1886805 1887927 1887932) (-1089 "SMATCAT.spad" 1884878 1884908 1886712 1886775) (-1088 "SMATCAT.spad" 1882920 1882952 1884756 1884761) (-1087 "SKAGG.spad" 1881869 1881880 1882876 1882915) (-1086 "SINT.spad" 1880177 1880186 1881735 1881864) (-1085 "SIMPAN.spad" 1879905 1879914 1880167 1880172) (-1084 "SIG.spad" 1879233 1879242 1879895 1879900) (-1083 "SIGNRF.spad" 1878341 1878352 1879223 1879228) (-1082 "SIGNEF.spad" 1877610 1877627 1878331 1878336) (-1081 "SIGAST.spad" 1876991 1877000 1877600 1877605) (-1080 "SHP.spad" 1874909 1874924 1876947 1876952) (-1079 "SHDP.spad" 1865894 1865921 1866403 1866534) (-1078 "SGROUP.spad" 1865502 1865511 1865884 1865889) (-1077 "SGROUP.spad" 1865108 1865119 1865492 1865497) (-1076 "SGCF.spad" 1857989 1857998 1865098 1865103) (-1075 "SFRTCAT.spad" 1856905 1856922 1857945 1857984) (-1074 "SFRGCD.spad" 1855968 1855988 1856895 1856900) (-1073 "SFQCMPK.spad" 1850605 1850625 1855958 1855963) (-1072 "SFORT.spad" 1850040 1850054 1850595 1850600) (-1071 "SEXOF.spad" 1849883 1849923 1850030 1850035) (-1070 "SEX.spad" 1849775 1849784 1849873 1849878) (-1069 "SEXCAT.spad" 1846879 1846919 1849765 1849770) (-1068 "SET.spad" 1845179 1845190 1846300 1846339) (-1067 "SETMN.spad" 1843613 1843630 1845169 1845174) (-1066 "SETCAT.spad" 1843098 1843107 1843603 1843608) (-1065 "SETCAT.spad" 1842581 1842592 1843088 1843093) (-1064 "SETAGG.spad" 1839090 1839101 1842549 1842576) (-1063 "SETAGG.spad" 1835619 1835632 1839080 1839085) (-1062 "SEQAST.spad" 1835322 1835331 1835609 1835614) (-1061 "SEGXCAT.spad" 1834434 1834447 1835302 1835317) (-1060 "SEG.spad" 1834247 1834258 1834353 1834358) (-1059 "SEGCAT.spad" 1833066 1833077 1834227 1834242) (-1058 "SEGBIND.spad" 1832138 1832149 1833021 1833026) (-1057 "SEGBIND2.spad" 1831834 1831847 1832128 1832133) (-1056 "SEGAST.spad" 1831548 1831557 1831824 1831829) (-1055 "SEG2.spad" 1830973 1830986 1831504 1831509) (-1054 "SDVAR.spad" 1830249 1830260 1830963 1830968) (-1053 "SDPOL.spad" 1827639 1827650 1827930 1828057) (-1052 "SCPKG.spad" 1825718 1825729 1827629 1827634) (-1051 "SCOPE.spad" 1824863 1824872 1825708 1825713) (-1050 "SCACHE.spad" 1823545 1823556 1824853 1824858) (-1049 "SASTCAT.spad" 1823454 1823463 1823535 1823540) (-1048 "SAOS.spad" 1823326 1823335 1823444 1823449) (-1047 "SAERFFC.spad" 1823039 1823059 1823316 1823321) (-1046 "SAE.spad" 1821214 1821230 1821825 1821960) (-1045 "SAEFACT.spad" 1820915 1820935 1821204 1821209) (-1044 "RURPK.spad" 1818556 1818572 1820905 1820910) (-1043 "RULESET.spad" 1817997 1818021 1818546 1818551) (-1042 "RULE.spad" 1816201 1816225 1817987 1817992) (-1041 "RULECOLD.spad" 1816053 1816066 1816191 1816196) (-1040 "RSTRCAST.spad" 1815770 1815779 1816043 1816048) (-1039 "RSETGCD.spad" 1812148 1812168 1815760 1815765) (-1038 "RSETCAT.spad" 1801920 1801937 1812104 1812143) (-1037 "RSETCAT.spad" 1791724 1791743 1801910 1801915) (-1036 "RSDCMPK.spad" 1790176 1790196 1791714 1791719) (-1035 "RRCC.spad" 1788560 1788590 1790166 1790171) (-1034 "RRCC.spad" 1786942 1786974 1788550 1788555) (-1033 "RPTAST.spad" 1786644 1786653 1786932 1786937) (-1032 "RPOLCAT.spad" 1766004 1766019 1786512 1786639) (-1031 "RPOLCAT.spad" 1745078 1745095 1765588 1765593) (-1030 "ROUTINE.spad" 1740941 1740950 1743725 1743752) (-1029 "ROMAN.spad" 1740173 1740182 1740807 1740936) (-1028 "ROIRC.spad" 1739253 1739285 1740163 1740168) (-1027 "RNS.spad" 1738156 1738165 1739155 1739248) (-1026 "RNS.spad" 1737145 1737156 1738146 1738151) (-1025 "RNG.spad" 1736880 1736889 1737135 1737140) (-1024 "RMODULE.spad" 1736518 1736529 1736870 1736875) (-1023 "RMCAT2.spad" 1735926 1735983 1736508 1736513) (-1022 "RMATRIX.spad" 1734605 1734624 1735093 1735132) (-1021 "RMATCAT.spad" 1730126 1730157 1734549 1734600) (-1020 "RMATCAT.spad" 1725549 1725582 1729974 1729979) (-1019 "RINTERP.spad" 1725437 1725457 1725539 1725544) (-1018 "RING.spad" 1724794 1724803 1725417 1725432) (-1017 "RING.spad" 1724159 1724170 1724784 1724789) (-1016 "RIDIST.spad" 1723543 1723552 1724149 1724154) (-1015 "RGCHAIN.spad" 1722122 1722138 1723028 1723055) (-1014 "RF.spad" 1719736 1719747 1722112 1722117) (-1013 "RFFACTOR.spad" 1719198 1719209 1719726 1719731) (-1012 "RFFACT.spad" 1718933 1718945 1719188 1719193) (-1011 "RFDIST.spad" 1717921 1717930 1718923 1718928) (-1010 "RETSOL.spad" 1717338 1717351 1717911 1717916) (-1009 "RETRACT.spad" 1716687 1716698 1717328 1717333) (-1008 "RETRACT.spad" 1716034 1716047 1716677 1716682) (-1007 "RETAST.spad" 1715846 1715855 1716024 1716029) (-1006 "RESULT.spad" 1713906 1713915 1714493 1714520) (-1005 "RESRING.spad" 1713253 1713300 1713844 1713901) (-1004 "RESLATC.spad" 1712577 1712588 1713243 1713248) (-1003 "REPSQ.spad" 1712306 1712317 1712567 1712572) (-1002 "REP.spad" 1709858 1709867 1712296 1712301) (-1001 "REPDB.spad" 1709563 1709574 1709848 1709853) (-1000 "REP2.spad" 1699135 1699146 1709405 1709410) (-999 "REP1.spad" 1693126 1693136 1699085 1699090) (-998 "REGSET.spad" 1690924 1690940 1692772 1692799) (-997 "REF.spad" 1690254 1690264 1690879 1690884) (-996 "REDORDER.spad" 1689431 1689447 1690244 1690249) (-995 "RECLOS.spad" 1688215 1688234 1688918 1689011) (-994 "REALSOLV.spad" 1687348 1687356 1688205 1688210) (-993 "REAL.spad" 1687221 1687229 1687338 1687343) (-992 "REAL0Q.spad" 1684504 1684518 1687211 1687216) (-991 "REAL0.spad" 1681333 1681347 1684494 1684499) (-990 "RDUCEAST.spad" 1681055 1681063 1681323 1681328) (-989 "RDIV.spad" 1680707 1680731 1681045 1681050) (-988 "RDIST.spad" 1680271 1680281 1680697 1680702) (-987 "RDETRS.spad" 1679068 1679085 1680261 1680266) (-986 "RDETR.spad" 1677176 1677193 1679058 1679063) (-985 "RDEEFS.spad" 1676250 1676266 1677166 1677171) (-984 "RDEEF.spad" 1675247 1675263 1676240 1676245) (-983 "RCFIELD.spad" 1672434 1672442 1675149 1675242) (-982 "RCFIELD.spad" 1669707 1669717 1672424 1672429) (-981 "RCAGG.spad" 1667610 1667620 1669687 1669702) (-980 "RCAGG.spad" 1665450 1665462 1667529 1667534) (-979 "RATRET.spad" 1664811 1664821 1665440 1665445) (-978 "RATFACT.spad" 1664504 1664515 1664801 1664806) (-977 "RANDSRC.spad" 1663824 1663832 1664494 1664499) (-976 "RADUTIL.spad" 1663579 1663587 1663814 1663819) (-975 "RADIX.spad" 1660370 1660383 1662047 1662140) (-974 "RADFF.spad" 1658784 1658820 1658902 1659058) (-973 "RADCAT.spad" 1658378 1658386 1658774 1658779) (-972 "RADCAT.spad" 1657970 1657980 1658368 1658373) (-971 "QUEUE.spad" 1657313 1657323 1657577 1657604) (-970 "QUAT.spad" 1655895 1655905 1656237 1656302) (-969 "QUATCT2.spad" 1655514 1655532 1655885 1655890) (-968 "QUATCAT.spad" 1653679 1653689 1655444 1655509) (-967 "QUATCAT.spad" 1651595 1651607 1653362 1653367) (-966 "QUAGG.spad" 1650409 1650419 1651551 1651590) (-965 "QQUTAST.spad" 1650178 1650186 1650399 1650404) (-964 "QFORM.spad" 1649641 1649655 1650168 1650173) (-963 "QFCAT.spad" 1648332 1648342 1649531 1649636) (-962 "QFCAT.spad" 1646627 1646639 1647828 1647833) (-961 "QFCAT2.spad" 1646318 1646334 1646617 1646622) (-960 "QEQUAT.spad" 1645875 1645883 1646308 1646313) (-959 "QCMPACK.spad" 1640622 1640641 1645865 1645870) (-958 "QALGSET.spad" 1636697 1636729 1640536 1640541) (-957 "QALGSET2.spad" 1634693 1634711 1636687 1636692) (-956 "PWFFINTB.spad" 1632003 1632024 1634683 1634688) (-955 "PUSHVAR.spad" 1631332 1631351 1631993 1631998) (-954 "PTRANFN.spad" 1627458 1627468 1631322 1631327) (-953 "PTPACK.spad" 1624546 1624556 1627448 1627453) (-952 "PTFUNC2.spad" 1624367 1624381 1624536 1624541) (-951 "PTCAT.spad" 1623449 1623459 1624323 1624362) (-950 "PSQFR.spad" 1622756 1622780 1623439 1623444) (-949 "PSEUDLIN.spad" 1621614 1621624 1622746 1622751) (-948 "PSETPK.spad" 1607047 1607063 1621492 1621497) (-947 "PSETCAT.spad" 1600955 1600978 1607015 1607042) (-946 "PSETCAT.spad" 1594849 1594874 1600911 1600916) (-945 "PSCURVE.spad" 1593832 1593840 1594839 1594844) (-944 "PSCAT.spad" 1592599 1592628 1593730 1593827) (-943 "PSCAT.spad" 1591456 1591487 1592589 1592594) (-942 "PRTITION.spad" 1590299 1590307 1591446 1591451) (-941 "PRTDAST.spad" 1590018 1590026 1590289 1590294) (-940 "PRS.spad" 1579580 1579597 1589974 1589979) (-939 "PRQAGG.spad" 1578999 1579009 1579536 1579575) (-938 "PROPLOG.spad" 1578402 1578410 1578989 1578994) (-937 "PROPFRML.spad" 1576320 1576331 1578392 1578397) (-936 "PROPERTY.spad" 1575814 1575822 1576310 1576315) (-935 "PRODUCT.spad" 1573494 1573506 1573780 1573835) (-934 "PR.spad" 1571880 1571892 1572585 1572712) (-933 "PRINT.spad" 1571632 1571640 1571870 1571875) (-932 "PRIMES.spad" 1569883 1569893 1571622 1571627) (-931 "PRIMELT.spad" 1567864 1567878 1569873 1569878) (-930 "PRIMCAT.spad" 1567487 1567495 1567854 1567859) (-929 "PRIMARR.spad" 1566492 1566502 1566670 1566697) (-928 "PRIMARR2.spad" 1565215 1565227 1566482 1566487) (-927 "PREASSOC.spad" 1564587 1564599 1565205 1565210) (-926 "PPCURVE.spad" 1563724 1563732 1564577 1564582) (-925 "PORTNUM.spad" 1563499 1563507 1563714 1563719) (-924 "POLYROOT.spad" 1562271 1562293 1563455 1563460) (-923 "POLY.spad" 1559568 1559578 1560085 1560212) (-922 "POLYLIFT.spad" 1558829 1558852 1559558 1559563) (-921 "POLYCATQ.spad" 1556931 1556953 1558819 1558824) (-920 "POLYCAT.spad" 1550337 1550358 1556799 1556926) (-919 "POLYCAT.spad" 1543045 1543068 1549509 1549514) (-918 "POLY2UP.spad" 1542493 1542507 1543035 1543040) (-917 "POLY2.spad" 1542088 1542100 1542483 1542488) (-916 "POLUTIL.spad" 1541029 1541058 1542044 1542049) (-915 "POLTOPOL.spad" 1539777 1539792 1541019 1541024) (-914 "POINT.spad" 1538616 1538626 1538703 1538730) (-913 "PNTHEORY.spad" 1535282 1535290 1538606 1538611) (-912 "PMTOOLS.spad" 1534039 1534053 1535272 1535277) (-911 "PMSYM.spad" 1533584 1533594 1534029 1534034) (-910 "PMQFCAT.spad" 1533171 1533185 1533574 1533579) (-909 "PMPRED.spad" 1532640 1532654 1533161 1533166) (-908 "PMPREDFS.spad" 1532084 1532106 1532630 1532635) (-907 "PMPLCAT.spad" 1531154 1531172 1532016 1532021) (-906 "PMLSAGG.spad" 1530735 1530749 1531144 1531149) (-905 "PMKERNEL.spad" 1530302 1530314 1530725 1530730) (-904 "PMINS.spad" 1529878 1529888 1530292 1530297) (-903 "PMFS.spad" 1529451 1529469 1529868 1529873) (-902 "PMDOWN.spad" 1528737 1528751 1529441 1529446) (-901 "PMASS.spad" 1527749 1527757 1528727 1528732) (-900 "PMASSFS.spad" 1526718 1526734 1527739 1527744) (-899 "PLOTTOOL.spad" 1526498 1526506 1526708 1526713) (-898 "PLOT.spad" 1521329 1521337 1526488 1526493) (-897 "PLOT3D.spad" 1517749 1517757 1521319 1521324) (-896 "PLOT1.spad" 1516890 1516900 1517739 1517744) (-895 "PLEQN.spad" 1504106 1504133 1516880 1516885) (-894 "PINTERP.spad" 1503722 1503741 1504096 1504101) (-893 "PINTERPA.spad" 1503504 1503520 1503712 1503717) (-892 "PI.spad" 1503111 1503119 1503478 1503499) (-891 "PID.spad" 1502067 1502075 1503037 1503106) (-890 "PICOERCE.spad" 1501724 1501734 1502057 1502062) (-889 "PGROEB.spad" 1500321 1500335 1501714 1501719) (-888 "PGE.spad" 1491574 1491582 1500311 1500316) (-887 "PGCD.spad" 1490456 1490473 1491564 1491569) (-886 "PFRPAC.spad" 1489599 1489609 1490446 1490451) (-885 "PFR.spad" 1486256 1486266 1489501 1489594) (-884 "PFOTOOLS.spad" 1485514 1485530 1486246 1486251) (-883 "PFOQ.spad" 1484884 1484902 1485504 1485509) (-882 "PFO.spad" 1484303 1484330 1484874 1484879) (-881 "PF.spad" 1483877 1483889 1484108 1484201) (-880 "PFECAT.spad" 1481543 1481551 1483803 1483872) (-879 "PFECAT.spad" 1479237 1479247 1481499 1481504) (-878 "PFBRU.spad" 1477107 1477119 1479227 1479232) (-877 "PFBR.spad" 1474645 1474668 1477097 1477102) (-876 "PERM.spad" 1470326 1470336 1474475 1474490) (-875 "PERMGRP.spad" 1465062 1465072 1470316 1470321) (-874 "PERMCAT.spad" 1463614 1463624 1465042 1465057) (-873 "PERMAN.spad" 1462146 1462160 1463604 1463609) (-872 "PENDTREE.spad" 1461419 1461429 1461775 1461780) (-871 "PDRING.spad" 1459910 1459920 1461399 1461414) (-870 "PDRING.spad" 1458409 1458421 1459900 1459905) (-869 "PDEPROB.spad" 1457366 1457374 1458399 1458404) (-868 "PDEPACK.spad" 1451368 1451376 1457356 1457361) (-867 "PDECOMP.spad" 1450830 1450847 1451358 1451363) (-866 "PDECAT.spad" 1449184 1449192 1450820 1450825) (-865 "PCOMP.spad" 1449035 1449048 1449174 1449179) (-864 "PBWLB.spad" 1447617 1447634 1449025 1449030) (-863 "PATTERN.spad" 1442048 1442058 1447607 1447612) (-862 "PATTERN2.spad" 1441784 1441796 1442038 1442043) (-861 "PATTERN1.spad" 1440086 1440102 1441774 1441779) (-860 "PATRES.spad" 1437633 1437645 1440076 1440081) (-859 "PATRES2.spad" 1437295 1437309 1437623 1437628) (-858 "PATMATCH.spad" 1435452 1435483 1437003 1437008) (-857 "PATMAB.spad" 1434877 1434887 1435442 1435447) (-856 "PATLRES.spad" 1433961 1433975 1434867 1434872) (-855 "PATAB.spad" 1433725 1433735 1433951 1433956) (-854 "PARTPERM.spad" 1431087 1431095 1433715 1433720) (-853 "PARSURF.spad" 1430515 1430543 1431077 1431082) (-852 "PARSU2.spad" 1430310 1430326 1430505 1430510) (-851 "script-parser.spad" 1429830 1429838 1430300 1430305) (-850 "PARSCURV.spad" 1429258 1429286 1429820 1429825) (-849 "PARSC2.spad" 1429047 1429063 1429248 1429253) (-848 "PARPCURV.spad" 1428505 1428533 1429037 1429042) (-847 "PARPC2.spad" 1428294 1428310 1428495 1428500) (-846 "PAN2EXPR.spad" 1427706 1427714 1428284 1428289) (-845 "PALETTE.spad" 1426676 1426684 1427696 1427701) (-844 "PAIR.spad" 1425659 1425672 1426264 1426269) (-843 "PADICRC.spad" 1422990 1423008 1424165 1424258) (-842 "PADICRAT.spad" 1421006 1421018 1421227 1421320) (-841 "PADIC.spad" 1420701 1420713 1420932 1421001) (-840 "PADICCT.spad" 1419242 1419254 1420627 1420696) (-839 "PADEPAC.spad" 1417921 1417940 1419232 1419237) (-838 "PADE.spad" 1416661 1416677 1417911 1417916) (-837 "OWP.spad" 1415645 1415675 1416519 1416586) (-836 "OVAR.spad" 1415426 1415449 1415635 1415640) (-835 "OUT.spad" 1414510 1414518 1415416 1415421) (-834 "OUTFORM.spad" 1403924 1403932 1414500 1414505) (-833 "OUTBCON.spad" 1403203 1403211 1403914 1403919) (-832 "OUTBCON.spad" 1402480 1402490 1403193 1403198) (-831 "OSI.spad" 1401955 1401963 1402470 1402475) (-830 "OSGROUP.spad" 1401873 1401881 1401945 1401950) (-829 "ORTHPOL.spad" 1400334 1400344 1401790 1401795) (-828 "OREUP.spad" 1399692 1399720 1400014 1400053) (-827 "ORESUP.spad" 1398991 1399015 1399372 1399411) (-826 "OREPCTO.spad" 1396810 1396822 1398911 1398916) (-825 "OREPCAT.spad" 1390867 1390877 1396766 1396805) (-824 "OREPCAT.spad" 1384814 1384826 1390715 1390720) (-823 "ORDSET.spad" 1383980 1383988 1384804 1384809) (-822 "ORDSET.spad" 1383144 1383154 1383970 1383975) (-821 "ORDRING.spad" 1382534 1382542 1383124 1383139) (-820 "ORDRING.spad" 1381932 1381942 1382524 1382529) (-819 "ORDMON.spad" 1381787 1381795 1381922 1381927) (-818 "ORDFUNS.spad" 1380913 1380929 1381777 1381782) (-817 "ORDFIN.spad" 1380847 1380855 1380903 1380908) (-816 "ORDCOMP.spad" 1379312 1379322 1380394 1380423) (-815 "ORDCOMP2.spad" 1378597 1378609 1379302 1379307) (-814 "OPTPROB.spad" 1377177 1377185 1378587 1378592) (-813 "OPTPACK.spad" 1369562 1369570 1377167 1377172) (-812 "OPTCAT.spad" 1367237 1367245 1369552 1369557) (-811 "OPQUERY.spad" 1366786 1366794 1367227 1367232) (-810 "OP.spad" 1366528 1366538 1366608 1366675) (-809 "ONECOMP.spad" 1365273 1365283 1366075 1366104) (-808 "ONECOMP2.spad" 1364691 1364703 1365263 1365268) (-807 "OMSERVER.spad" 1363693 1363701 1364681 1364686) (-806 "OMSAGG.spad" 1363469 1363479 1363637 1363688) (-805 "OMPKG.spad" 1362081 1362089 1363459 1363464) (-804 "OM.spad" 1361046 1361054 1362071 1362076) (-803 "OMLO.spad" 1360471 1360483 1360932 1360971) (-802 "OMEXPR.spad" 1360305 1360315 1360461 1360466) (-801 "OMERR.spad" 1359848 1359856 1360295 1360300) (-800 "OMERRK.spad" 1358882 1358890 1359838 1359843) (-799 "OMENC.spad" 1358226 1358234 1358872 1358877) (-798 "OMDEV.spad" 1352515 1352523 1358216 1358221) (-797 "OMCONN.spad" 1351924 1351932 1352505 1352510) (-796 "OINTDOM.spad" 1351687 1351695 1351850 1351919) (-795 "OFMONOID.spad" 1347874 1347884 1351677 1351682) (-794 "ODVAR.spad" 1347135 1347145 1347864 1347869) (-793 "ODR.spad" 1346583 1346609 1346947 1347096) (-792 "ODPOL.spad" 1343929 1343939 1344269 1344396) (-791 "ODP.spad" 1335050 1335070 1335423 1335554) (-790 "ODETOOLS.spad" 1333633 1333652 1335040 1335045) (-789 "ODESYS.spad" 1331283 1331300 1333623 1333628) (-788 "ODERTRIC.spad" 1327224 1327241 1331240 1331245) (-787 "ODERED.spad" 1326611 1326635 1327214 1327219) (-786 "ODERAT.spad" 1324162 1324179 1326601 1326606) (-785 "ODEPRRIC.spad" 1321053 1321075 1324152 1324157) (-784 "ODEPROB.spad" 1320252 1320260 1321043 1321048) (-783 "ODEPRIM.spad" 1317526 1317548 1320242 1320247) (-782 "ODEPAL.spad" 1316902 1316926 1317516 1317521) (-781 "ODEPACK.spad" 1303504 1303512 1316892 1316897) (-780 "ODEINT.spad" 1302935 1302951 1303494 1303499) (-779 "ODEIFTBL.spad" 1300330 1300338 1302925 1302930) (-778 "ODEEF.spad" 1295697 1295713 1300320 1300325) (-777 "ODECONST.spad" 1295216 1295234 1295687 1295692) (-776 "ODECAT.spad" 1293812 1293820 1295206 1295211) (-775 "OCT.spad" 1291950 1291960 1292666 1292705) (-774 "OCTCT2.spad" 1291594 1291615 1291940 1291945) (-773 "OC.spad" 1289368 1289378 1291550 1291589) (-772 "OC.spad" 1286867 1286879 1289051 1289056) (-771 "OCAMON.spad" 1286715 1286723 1286857 1286862) (-770 "OASGP.spad" 1286530 1286538 1286705 1286710) (-769 "OAMONS.spad" 1286050 1286058 1286520 1286525) (-768 "OAMON.spad" 1285911 1285919 1286040 1286045) (-767 "OAGROUP.spad" 1285773 1285781 1285901 1285906) (-766 "NUMTUBE.spad" 1285360 1285376 1285763 1285768) (-765 "NUMQUAD.spad" 1273222 1273230 1285350 1285355) (-764 "NUMODE.spad" 1264358 1264366 1273212 1273217) (-763 "NUMINT.spad" 1261916 1261924 1264348 1264353) (-762 "NUMFMT.spad" 1260756 1260764 1261906 1261911) (-761 "NUMERIC.spad" 1252828 1252838 1260561 1260566) (-760 "NTSCAT.spad" 1251318 1251334 1252784 1252823) (-759 "NTPOLFN.spad" 1250863 1250873 1251235 1251240) (-758 "NSUP.spad" 1243873 1243883 1248413 1248566) (-757 "NSUP2.spad" 1243265 1243277 1243863 1243868) (-756 "NSMP.spad" 1239460 1239479 1239768 1239895) (-755 "NREP.spad" 1237832 1237846 1239450 1239455) (-754 "NPCOEF.spad" 1237078 1237098 1237822 1237827) (-753 "NORMRETR.spad" 1236676 1236715 1237068 1237073) (-752 "NORMPK.spad" 1234578 1234597 1236666 1236671) (-751 "NORMMA.spad" 1234266 1234292 1234568 1234573) (-750 "NONE.spad" 1234007 1234015 1234256 1234261) (-749 "NONE1.spad" 1233683 1233693 1233997 1234002) (-748 "NODE1.spad" 1233152 1233168 1233673 1233678) (-747 "NNI.spad" 1232039 1232047 1233126 1233147) (-746 "NLINSOL.spad" 1230661 1230671 1232029 1232034) (-745 "NIPROB.spad" 1229144 1229152 1230651 1230656) (-744 "NFINTBAS.spad" 1226604 1226621 1229134 1229139) (-743 "NCODIV.spad" 1224802 1224818 1226594 1226599) (-742 "NCNTFRAC.spad" 1224444 1224458 1224792 1224797) (-741 "NCEP.spad" 1222604 1222618 1224434 1224439) (-740 "NASRING.spad" 1222200 1222208 1222594 1222599) (-739 "NASRING.spad" 1221794 1221804 1222190 1222195) (-738 "NARNG.spad" 1221138 1221146 1221784 1221789) (-737 "NARNG.spad" 1220480 1220490 1221128 1221133) (-736 "NAGSP.spad" 1219553 1219561 1220470 1220475) (-735 "NAGS.spad" 1209078 1209086 1219543 1219548) (-734 "NAGF07.spad" 1207471 1207479 1209068 1209073) (-733 "NAGF04.spad" 1201703 1201711 1207461 1207466) (-732 "NAGF02.spad" 1195512 1195520 1201693 1201698) (-731 "NAGF01.spad" 1191115 1191123 1195502 1195507) (-730 "NAGE04.spad" 1184575 1184583 1191105 1191110) (-729 "NAGE02.spad" 1174917 1174925 1184565 1184570) (-728 "NAGE01.spad" 1170801 1170809 1174907 1174912) (-727 "NAGD03.spad" 1168721 1168729 1170791 1170796) (-726 "NAGD02.spad" 1161252 1161260 1168711 1168716) (-725 "NAGD01.spad" 1155365 1155373 1161242 1161247) (-724 "NAGC06.spad" 1151152 1151160 1155355 1155360) (-723 "NAGC05.spad" 1149621 1149629 1151142 1151147) (-722 "NAGC02.spad" 1148876 1148884 1149611 1149616) (-721 "NAALG.spad" 1148411 1148421 1148844 1148871) (-720 "NAALG.spad" 1147966 1147978 1148401 1148406) (-719 "MULTSQFR.spad" 1144924 1144941 1147956 1147961) (-718 "MULTFACT.spad" 1144307 1144324 1144914 1144919) (-717 "MTSCAT.spad" 1142341 1142362 1144205 1144302) (-716 "MTHING.spad" 1141998 1142008 1142331 1142336) (-715 "MSYSCMD.spad" 1141432 1141440 1141988 1141993) (-714 "MSET.spad" 1139374 1139384 1141138 1141177) (-713 "MSETAGG.spad" 1139207 1139217 1139330 1139369) (-712 "MRING.spad" 1136178 1136190 1138915 1138982) (-711 "MRF2.spad" 1135746 1135760 1136168 1136173) (-710 "MRATFAC.spad" 1135292 1135309 1135736 1135741) (-709 "MPRFF.spad" 1133322 1133341 1135282 1135287) (-708 "MPOLY.spad" 1130757 1130772 1131116 1131243) (-707 "MPCPF.spad" 1130021 1130040 1130747 1130752) (-706 "MPC3.spad" 1129836 1129876 1130011 1130016) (-705 "MPC2.spad" 1129478 1129511 1129826 1129831) (-704 "MONOTOOL.spad" 1127813 1127830 1129468 1129473) (-703 "MONOID.spad" 1127132 1127140 1127803 1127808) (-702 "MONOID.spad" 1126449 1126459 1127122 1127127) (-701 "MONOGEN.spad" 1125195 1125208 1126309 1126444) (-700 "MONOGEN.spad" 1123963 1123978 1125079 1125084) (-699 "MONADWU.spad" 1121977 1121985 1123953 1123958) (-698 "MONADWU.spad" 1119989 1119999 1121967 1121972) (-697 "MONAD.spad" 1119133 1119141 1119979 1119984) (-696 "MONAD.spad" 1118275 1118285 1119123 1119128) (-695 "MOEBIUS.spad" 1116961 1116975 1118255 1118270) (-694 "MODULE.spad" 1116831 1116841 1116929 1116956) (-693 "MODULE.spad" 1116721 1116733 1116821 1116826) (-692 "MODRING.spad" 1116052 1116091 1116701 1116716) (-691 "MODOP.spad" 1114711 1114723 1115874 1115941) (-690 "MODMONOM.spad" 1114243 1114261 1114701 1114706) (-689 "MODMON.spad" 1110945 1110961 1111721 1111874) (-688 "MODFIELD.spad" 1110303 1110342 1110847 1110940) (-687 "MMLFORM.spad" 1109163 1109171 1110293 1110298) (-686 "MMAP.spad" 1108903 1108937 1109153 1109158) (-685 "MLO.spad" 1107330 1107340 1108859 1108898) (-684 "MLIFT.spad" 1105902 1105919 1107320 1107325) (-683 "MKUCFUNC.spad" 1105435 1105453 1105892 1105897) (-682 "MKRECORD.spad" 1105037 1105050 1105425 1105430) (-681 "MKFUNC.spad" 1104418 1104428 1105027 1105032) (-680 "MKFLCFN.spad" 1103374 1103384 1104408 1104413) (-679 "MKCHSET.spad" 1103150 1103160 1103364 1103369) (-678 "MKBCFUNC.spad" 1102635 1102653 1103140 1103145) (-677 "MINT.spad" 1102074 1102082 1102537 1102630) (-676 "MHROWRED.spad" 1100575 1100585 1102064 1102069) (-675 "MFLOAT.spad" 1099020 1099028 1100465 1100570) (-674 "MFINFACT.spad" 1098420 1098442 1099010 1099015) (-673 "MESH.spad" 1096152 1096160 1098410 1098415) (-672 "MDDFACT.spad" 1094345 1094355 1096142 1096147) (-671 "MDAGG.spad" 1093620 1093630 1094313 1094340) (-670 "MCMPLX.spad" 1089595 1089603 1090209 1090410) (-669 "MCDEN.spad" 1088803 1088815 1089585 1089590) (-668 "MCALCFN.spad" 1085905 1085931 1088793 1088798) (-667 "MAYBE.spad" 1085154 1085165 1085895 1085900) (-666 "MATSTOR.spad" 1082430 1082440 1085144 1085149) (-665 "MATRIX.spad" 1081134 1081144 1081618 1081645) (-664 "MATLIN.spad" 1078460 1078484 1081018 1081023) (-663 "MATCAT.spad" 1070033 1070055 1078416 1078455) (-662 "MATCAT.spad" 1061490 1061514 1069875 1069880) (-661 "MATCAT2.spad" 1060758 1060806 1061480 1061485) (-660 "MAPPKG3.spad" 1059657 1059671 1060748 1060753) (-659 "MAPPKG2.spad" 1058991 1059003 1059647 1059652) (-658 "MAPPKG1.spad" 1057809 1057819 1058981 1058986) (-657 "MAPPAST.spad" 1057122 1057130 1057799 1057804) (-656 "MAPHACK3.spad" 1056930 1056944 1057112 1057117) (-655 "MAPHACK2.spad" 1056695 1056707 1056920 1056925) (-654 "MAPHACK1.spad" 1056325 1056335 1056685 1056690) (-653 "MAGMA.spad" 1054115 1054132 1056315 1056320) (-652 "MACROAST.spad" 1053694 1053702 1054105 1054110) (-651 "M3D.spad" 1051390 1051400 1053072 1053077) (-650 "LZSTAGG.spad" 1048608 1048618 1051370 1051385) (-649 "LZSTAGG.spad" 1045834 1045846 1048598 1048603) (-648 "LWORD.spad" 1042539 1042556 1045824 1045829) (-647 "LSTAST.spad" 1042323 1042331 1042529 1042534) (-646 "LSQM.spad" 1040549 1040563 1040947 1040998) (-645 "LSPP.spad" 1040082 1040099 1040539 1040544) (-644 "LSMP.spad" 1038922 1038950 1040072 1040077) (-643 "LSMP1.spad" 1036726 1036740 1038912 1038917) (-642 "LSAGG.spad" 1036383 1036393 1036682 1036721) (-641 "LSAGG.spad" 1036072 1036084 1036373 1036378) (-640 "LPOLY.spad" 1035026 1035045 1035928 1035997) (-639 "LPEFRAC.spad" 1034283 1034293 1035016 1035021) (-638 "LO.spad" 1033684 1033698 1034217 1034244) (-637 "LOGIC.spad" 1033286 1033294 1033674 1033679) (-636 "LOGIC.spad" 1032886 1032896 1033276 1033281) (-635 "LODOOPS.spad" 1031804 1031816 1032876 1032881) (-634 "LODO.spad" 1031188 1031204 1031484 1031523) (-633 "LODOF.spad" 1030232 1030249 1031145 1031150) (-632 "LODOCAT.spad" 1028890 1028900 1030188 1030227) (-631 "LODOCAT.spad" 1027546 1027558 1028846 1028851) (-630 "LODO2.spad" 1026819 1026831 1027226 1027265) (-629 "LODO1.spad" 1026219 1026229 1026499 1026538) (-628 "LODEEF.spad" 1024991 1025009 1026209 1026214) (-627 "LNAGG.spad" 1020783 1020793 1024971 1024986) (-626 "LNAGG.spad" 1016549 1016561 1020739 1020744) (-625 "LMOPS.spad" 1013285 1013302 1016539 1016544) (-624 "LMODULE.spad" 1012927 1012937 1013275 1013280) (-623 "LMDICT.spad" 1012210 1012220 1012478 1012505) (-622 "LITERAL.spad" 1012116 1012127 1012200 1012205) (-621 "LIST.spad" 1009834 1009844 1011263 1011290) (-620 "LIST3.spad" 1009125 1009139 1009824 1009829) (-619 "LIST2.spad" 1007765 1007777 1009115 1009120) (-618 "LIST2MAP.spad" 1004642 1004654 1007755 1007760) (-617 "LINEXP.spad" 1004074 1004084 1004622 1004637) (-616 "LINDEP.spad" 1002851 1002863 1003986 1003991) (-615 "LIMITRF.spad" 1000765 1000775 1002841 1002846) (-614 "LIMITPS.spad" 999648 999661 1000755 1000760) (-613 "LIE.spad" 997662 997674 998938 999083) (-612 "LIECAT.spad" 997138 997148 997588 997657) (-611 "LIECAT.spad" 996642 996654 997094 997099) (-610 "LIB.spad" 994690 994698 995301 995316) (-609 "LGROBP.spad" 992043 992062 994680 994685) (-608 "LF.spad" 990962 990978 992033 992038) (-607 "LFCAT.spad" 989981 989989 990952 990957) (-606 "LEXTRIPK.spad" 985484 985499 989971 989976) (-605 "LEXP.spad" 983487 983514 985464 985479) (-604 "LETAST.spad" 983186 983194 983477 983482) (-603 "LEADCDET.spad" 981570 981587 983176 983181) (-602 "LAZM3PK.spad" 980274 980296 981560 981565) (-601 "LAUPOL.spad" 978963 978976 979867 979936) (-600 "LAPLACE.spad" 978536 978552 978953 978958) (-599 "LA.spad" 977976 977990 978458 978497) (-598 "LALG.spad" 977752 977762 977956 977971) (-597 "LALG.spad" 977536 977548 977742 977747) (-596 "KTVLOGIC.spad" 976959 976967 977526 977531) (-595 "KOVACIC.spad" 975672 975689 976949 976954) (-594 "KONVERT.spad" 975394 975404 975662 975667) (-593 "KOERCE.spad" 975131 975141 975384 975389) (-592 "KERNEL.spad" 973666 973676 974915 974920) (-591 "KERNEL2.spad" 973369 973381 973656 973661) (-590 "KDAGG.spad" 972460 972482 973337 973364) (-589 "KDAGG.spad" 971571 971595 972450 972455) (-588 "KAFILE.spad" 970534 970550 970769 970796) (-587 "JORDAN.spad" 968361 968373 969824 969969) (-586 "JOINAST.spad" 968055 968063 968351 968356) (-585 "JAVACODE.spad" 967821 967829 968045 968050) (-584 "IXAGG.spad" 965934 965958 967801 967816) (-583 "IXAGG.spad" 963912 963938 965781 965786) (-582 "IVECTOR.spad" 962683 962698 962838 962865) (-581 "ITUPLE.spad" 961828 961838 962673 962678) (-580 "ITRIGMNP.spad" 960639 960658 961818 961823) (-579 "ITFUN3.spad" 960133 960147 960629 960634) (-578 "ITFUN2.spad" 959863 959875 960123 960128) (-577 "ITAYLOR.spad" 957655 957670 959699 959824) (-576 "ISUPS.spad" 950066 950081 956629 956726) (-575 "ISUMP.spad" 949563 949579 950056 950061) (-574 "ISTRING.spad" 948566 948579 948732 948759) (-573 "ISAST.spad" 948285 948293 948556 948561) (-572 "IRURPK.spad" 946998 947017 948275 948280) (-571 "IRSN.spad" 944958 944966 946988 946993) (-570 "IRRF2F.spad" 943433 943443 944914 944919) (-569 "IRREDFFX.spad" 943034 943045 943423 943428) (-568 "IROOT.spad" 941365 941375 943024 943029) (-567 "IR.spad" 939154 939168 941220 941247) (-566 "IR2.spad" 938174 938190 939144 939149) (-565 "IR2F.spad" 937374 937390 938164 938169) (-564 "IPRNTPK.spad" 937134 937142 937364 937369) (-563 "IPF.spad" 936699 936711 936939 937032) (-562 "IPADIC.spad" 936460 936486 936625 936694) (-561 "IOBCON.spad" 936325 936333 936450 936455) (-560 "INVLAPLA.spad" 935970 935986 936315 936320) (-559 "INTTR.spad" 929216 929233 935960 935965) (-558 "INTTOOLS.spad" 926927 926943 928790 928795) (-557 "INTSLPE.spad" 926233 926241 926917 926922) (-556 "INTRVL.spad" 925799 925809 926147 926228) (-555 "INTRF.spad" 924163 924177 925789 925794) (-554 "INTRET.spad" 923595 923605 924153 924158) (-553 "INTRAT.spad" 922270 922287 923585 923590) (-552 "INTPM.spad" 920633 920649 921913 921918) (-551 "INTPAF.spad" 918401 918419 920565 920570) (-550 "INTPACK.spad" 908711 908719 918391 918396) (-549 "INT.spad" 908072 908080 908565 908706) (-548 "INTHERTR.spad" 907338 907355 908062 908067) (-547 "INTHERAL.spad" 907004 907028 907328 907333) (-546 "INTHEORY.spad" 903417 903425 906994 906999) (-545 "INTG0.spad" 896880 896898 903349 903354) (-544 "INTFTBL.spad" 890909 890917 896870 896875) (-543 "INTFACT.spad" 889968 889978 890899 890904) (-542 "INTEF.spad" 888283 888299 889958 889963) (-541 "INTDOM.spad" 886898 886906 888209 888278) (-540 "INTDOM.spad" 885575 885585 886888 886893) (-539 "INTCAT.spad" 883828 883838 885489 885570) (-538 "INTBIT.spad" 883331 883339 883818 883823) (-537 "INTALG.spad" 882513 882540 883321 883326) (-536 "INTAF.spad" 882005 882021 882503 882508) (-535 "INTABL.spad" 880523 880554 880686 880713) (-534 "INS.spad" 877990 877998 880425 880518) (-533 "INS.spad" 875543 875553 877980 877985) (-532 "INPSIGN.spad" 874977 874990 875533 875538) (-531 "INPRODPF.spad" 874043 874062 874967 874972) (-530 "INPRODFF.spad" 873101 873125 874033 874038) (-529 "INNMFACT.spad" 872072 872089 873091 873096) (-528 "INMODGCD.spad" 871556 871586 872062 872067) (-527 "INFSP.spad" 869841 869863 871546 871551) (-526 "INFPROD0.spad" 868891 868910 869831 869836) (-525 "INFORM.spad" 866052 866060 868881 868886) (-524 "INFORM1.spad" 865677 865687 866042 866047) (-523 "INFINITY.spad" 865229 865237 865667 865672) (-522 "INEP.spad" 863761 863783 865219 865224) (-521 "INDE.spad" 863490 863507 863751 863756) (-520 "INCRMAPS.spad" 862911 862921 863480 863485) (-519 "INBFF.spad" 858681 858692 862901 862906) (-518 "INBCON.spad" 857981 857989 858671 858676) (-517 "INBCON.spad" 857279 857289 857971 857976) (-516 "INAST.spad" 856944 856952 857269 857274) (-515 "IMPTAST.spad" 856652 856660 856934 856939) (-514 "IMATRIX.spad" 855597 855623 856109 856136) (-513 "IMATQF.spad" 854691 854735 855553 855558) (-512 "IMATLIN.spad" 853296 853320 854647 854652) (-511 "ILIST.spad" 851952 851967 852479 852506) (-510 "IIARRAY2.spad" 851340 851378 851559 851586) (-509 "IFF.spad" 850750 850766 851021 851114) (-508 "IFAST.spad" 850364 850372 850740 850745) (-507 "IFARRAY.spad" 847851 847866 849547 849574) (-506 "IFAMON.spad" 847713 847730 847807 847812) (-505 "IEVALAB.spad" 847102 847114 847703 847708) (-504 "IEVALAB.spad" 846489 846503 847092 847097) (-503 "IDPO.spad" 846287 846299 846479 846484) (-502 "IDPOAMS.spad" 846043 846055 846277 846282) (-501 "IDPOAM.spad" 845763 845775 846033 846038) (-500 "IDPC.spad" 844697 844709 845753 845758) (-499 "IDPAM.spad" 844442 844454 844687 844692) (-498 "IDPAG.spad" 844189 844201 844432 844437) (-497 "IDENT.spad" 844106 844114 844179 844184) (-496 "IDECOMP.spad" 841343 841361 844096 844101) (-495 "IDEAL.spad" 836266 836305 841278 841283) (-494 "ICDEN.spad" 835417 835433 836256 836261) (-493 "ICARD.spad" 834606 834614 835407 835412) (-492 "IBPTOOLS.spad" 833199 833216 834596 834601) (-491 "IBITS.spad" 832398 832411 832835 832862) (-490 "IBATOOL.spad" 829273 829292 832388 832393) (-489 "IBACHIN.spad" 827760 827775 829263 829268) (-488 "IARRAY2.spad" 826748 826774 827367 827394) (-487 "IARRAY1.spad" 825793 825808 825931 825958) (-486 "IAN.spad" 824006 824014 825609 825702) (-485 "IALGFACT.spad" 823607 823640 823996 824001) (-484 "HYPCAT.spad" 823031 823039 823597 823602) (-483 "HYPCAT.spad" 822453 822463 823021 823026) (-482 "HOSTNAME.spad" 822261 822269 822443 822448) (-481 "HOAGG.spad" 819519 819529 822241 822256) (-480 "HOAGG.spad" 816562 816574 819286 819291) (-479 "HEXADEC.spad" 814432 814440 815030 815123) (-478 "HEUGCD.spad" 813447 813458 814422 814427) (-477 "HELLFDIV.spad" 813037 813061 813437 813442) (-476 "HEAP.spad" 812429 812439 812644 812671) (-475 "HEADAST.spad" 811960 811968 812419 812424) (-474 "HDP.spad" 803077 803093 803454 803585) (-473 "HDMP.spad" 800253 800268 800871 800998) (-472 "HB.spad" 798490 798498 800243 800248) (-471 "HASHTBL.spad" 796960 796991 797171 797198) (-470 "HASAST.spad" 796676 796684 796950 796955) (-469 "HACKPI.spad" 796159 796167 796578 796671) (-468 "GTSET.spad" 795098 795114 795805 795832) (-467 "GSTBL.spad" 793617 793652 793791 793806) (-466 "GSERIES.spad" 790784 790811 791749 791898) (-465 "GROUP.spad" 790053 790061 790764 790779) (-464 "GROUP.spad" 789330 789340 790043 790048) (-463 "GROEBSOL.spad" 787818 787839 789320 789325) (-462 "GRMOD.spad" 786389 786401 787808 787813) (-461 "GRMOD.spad" 784958 784972 786379 786384) (-460 "GRIMAGE.spad" 777563 777571 784948 784953) (-459 "GRDEF.spad" 775942 775950 777553 777558) (-458 "GRAY.spad" 774401 774409 775932 775937) (-457 "GRALG.spad" 773448 773460 774391 774396) (-456 "GRALG.spad" 772493 772507 773438 773443) (-455 "GPOLSET.spad" 771947 771970 772175 772202) (-454 "GOSPER.spad" 771212 771230 771937 771942) (-453 "GMODPOL.spad" 770350 770377 771180 771207) (-452 "GHENSEL.spad" 769419 769433 770340 770345) (-451 "GENUPS.spad" 765520 765533 769409 769414) (-450 "GENUFACT.spad" 765097 765107 765510 765515) (-449 "GENPGCD.spad" 764681 764698 765087 765092) (-448 "GENMFACT.spad" 764133 764152 764671 764676) (-447 "GENEEZ.spad" 762072 762085 764123 764128) (-446 "GDMP.spad" 759090 759107 759866 759993) (-445 "GCNAALG.spad" 752985 753012 758884 758951) (-444 "GCDDOM.spad" 752157 752165 752911 752980) (-443 "GCDDOM.spad" 751391 751401 752147 752152) (-442 "GB.spad" 748909 748947 751347 751352) (-441 "GBINTERN.spad" 744929 744967 748899 748904) (-440 "GBF.spad" 740686 740724 744919 744924) (-439 "GBEUCLID.spad" 738560 738598 740676 740681) (-438 "GAUSSFAC.spad" 737857 737865 738550 738555) (-437 "GALUTIL.spad" 736179 736189 737813 737818) (-436 "GALPOLYU.spad" 734625 734638 736169 736174) (-435 "GALFACTU.spad" 732790 732809 734615 734620) (-434 "GALFACT.spad" 722923 722934 732780 732785) (-433 "FVFUN.spad" 719936 719944 722903 722918) (-432 "FVC.spad" 718978 718986 719916 719931) (-431 "FUNCTION.spad" 718827 718839 718968 718973) (-430 "FT.spad" 717039 717047 718817 718822) (-429 "FTEM.spad" 716202 716210 717029 717034) (-428 "FSUPFACT.spad" 715102 715121 716138 716143) (-427 "FST.spad" 713188 713196 715092 715097) (-426 "FSRED.spad" 712666 712682 713178 713183) (-425 "FSPRMELT.spad" 711490 711506 712623 712628) (-424 "FSPECF.spad" 709567 709583 711480 711485) (-423 "FS.spad" 703617 703627 709330 709562) (-422 "FS.spad" 697457 697469 703172 703177) (-421 "FSINT.spad" 697115 697131 697447 697452) (-420 "FSERIES.spad" 696302 696314 696935 697034) (-419 "FSCINT.spad" 695615 695631 696292 696297) (-418 "FSAGG.spad" 694720 694730 695559 695610) (-417 "FSAGG.spad" 693799 693811 694640 694645) (-416 "FSAGG2.spad" 692498 692514 693789 693794) (-415 "FS2UPS.spad" 686887 686921 692488 692493) (-414 "FS2.spad" 686532 686548 686877 686882) (-413 "FS2EXPXP.spad" 685655 685678 686522 686527) (-412 "FRUTIL.spad" 684597 684607 685645 685650) (-411 "FR.spad" 678292 678302 683622 683691) (-410 "FRNAALG.spad" 673379 673389 678234 678287) (-409 "FRNAALG.spad" 668478 668490 673335 673340) (-408 "FRNAAF2.spad" 667932 667950 668468 668473) (-407 "FRMOD.spad" 667326 667356 667863 667868) (-406 "FRIDEAL.spad" 666521 666542 667306 667321) (-405 "FRIDEAL2.spad" 666123 666155 666511 666516) (-404 "FRETRCT.spad" 665634 665644 666113 666118) (-403 "FRETRCT.spad" 665011 665023 665492 665497) (-402 "FRAMALG.spad" 663339 663352 664967 665006) (-401 "FRAMALG.spad" 661699 661714 663329 663334) (-400 "FRAC.spad" 658799 658809 659202 659375) (-399 "FRAC2.spad" 658402 658414 658789 658794) (-398 "FR2.spad" 657736 657748 658392 658397) (-397 "FPS.spad" 654545 654553 657626 657731) (-396 "FPS.spad" 651382 651392 654465 654470) (-395 "FPC.spad" 650424 650432 651284 651377) (-394 "FPC.spad" 649552 649562 650414 650419) (-393 "FPATMAB.spad" 649304 649314 649532 649547) (-392 "FPARFRAC.spad" 647777 647794 649294 649299) (-391 "FORTRAN.spad" 646283 646326 647767 647772) (-390 "FORT.spad" 645212 645220 646273 646278) (-389 "FORTFN.spad" 642372 642380 645192 645207) (-388 "FORTCAT.spad" 642046 642054 642352 642367) (-387 "FORMULA.spad" 639384 639392 642036 642041) (-386 "FORMULA1.spad" 638863 638873 639374 639379) (-385 "FORDER.spad" 638554 638578 638853 638858) (-384 "FOP.spad" 637755 637763 638544 638549) (-383 "FNLA.spad" 637179 637201 637723 637750) (-382 "FNCAT.spad" 635507 635515 637169 637174) (-381 "FNAME.spad" 635399 635407 635497 635502) (-380 "FMTC.spad" 635197 635205 635325 635394) (-379 "FMONOID.spad" 632252 632262 635153 635158) (-378 "FM.spad" 631947 631959 632186 632213) (-377 "FMFUN.spad" 628967 628975 631927 631942) (-376 "FMC.spad" 628009 628017 628947 628962) (-375 "FMCAT.spad" 625663 625681 627977 628004) (-374 "FM1.spad" 625020 625032 625597 625624) (-373 "FLOATRP.spad" 622741 622755 625010 625015) (-372 "FLOAT.spad" 615905 615913 622607 622736) (-371 "FLOATCP.spad" 613322 613336 615895 615900) (-370 "FLINEXP.spad" 613034 613044 613302 613317) (-369 "FLINEXP.spad" 612700 612712 612970 612975) (-368 "FLASORT.spad" 612020 612032 612690 612695) (-367 "FLALG.spad" 609666 609685 611946 612015) (-366 "FLAGG.spad" 606672 606682 609634 609661) (-365 "FLAGG.spad" 603591 603603 606555 606560) (-364 "FLAGG2.spad" 602272 602288 603581 603586) (-363 "FINRALG.spad" 600301 600314 602228 602267) (-362 "FINRALG.spad" 598256 598271 600185 600190) (-361 "FINITE.spad" 597408 597416 598246 598251) (-360 "FINAALG.spad" 586389 586399 597350 597403) (-359 "FINAALG.spad" 575382 575394 586345 586350) (-358 "FILE.spad" 574965 574975 575372 575377) (-357 "FILECAT.spad" 573483 573500 574955 574960) (-356 "FIELD.spad" 572889 572897 573385 573478) (-355 "FIELD.spad" 572381 572391 572879 572884) (-354 "FGROUP.spad" 570990 571000 572361 572376) (-353 "FGLMICPK.spad" 569777 569792 570980 570985) (-352 "FFX.spad" 569152 569167 569493 569586) (-351 "FFSLPE.spad" 568641 568662 569142 569147) (-350 "FFPOLY.spad" 559893 559904 568631 568636) (-349 "FFPOLY2.spad" 558953 558970 559883 559888) (-348 "FFP.spad" 558350 558370 558669 558762) (-347 "FF.spad" 557798 557814 558031 558124) (-346 "FFNBX.spad" 556310 556330 557514 557607) (-345 "FFNBP.spad" 554823 554840 556026 556119) (-344 "FFNB.spad" 553288 553309 554504 554597) (-343 "FFINTBAS.spad" 550702 550721 553278 553283) (-342 "FFIELDC.spad" 548277 548285 550604 550697) (-341 "FFIELDC.spad" 545938 545948 548267 548272) (-340 "FFHOM.spad" 544686 544703 545928 545933) (-339 "FFF.spad" 542121 542132 544676 544681) (-338 "FFCGX.spad" 540968 540988 541837 541930) (-337 "FFCGP.spad" 539857 539877 540684 540777) (-336 "FFCG.spad" 538649 538670 539538 539631) (-335 "FFCAT.spad" 531676 531698 538488 538644) (-334 "FFCAT.spad" 524782 524806 531596 531601) (-333 "FFCAT2.spad" 524527 524567 524772 524777) (-332 "FEXPR.spad" 516236 516282 524283 524322) (-331 "FEVALAB.spad" 515942 515952 516226 516231) (-330 "FEVALAB.spad" 515433 515445 515719 515724) (-329 "FDIV.spad" 514875 514899 515423 515428) (-328 "FDIVCAT.spad" 512917 512941 514865 514870) (-327 "FDIVCAT.spad" 510957 510983 512907 512912) (-326 "FDIV2.spad" 510611 510651 510947 510952) (-325 "FCPAK1.spad" 509164 509172 510601 510606) (-324 "FCOMP.spad" 508543 508553 509154 509159) (-323 "FC.spad" 498368 498376 508533 508538) (-322 "FAXF.spad" 491303 491317 498270 498363) (-321 "FAXF.spad" 484290 484306 491259 491264) (-320 "FARRAY.spad" 482436 482446 483473 483500) (-319 "FAMR.spad" 480556 480568 482334 482431) (-318 "FAMR.spad" 478660 478674 480440 480445) (-317 "FAMONOID.spad" 478310 478320 478614 478619) (-316 "FAMONC.spad" 476532 476544 478300 478305) (-315 "FAGROUP.spad" 476138 476148 476428 476455) (-314 "FACUTIL.spad" 474334 474351 476128 476133) (-313 "FACTFUNC.spad" 473510 473520 474324 474329) (-312 "EXPUPXS.spad" 470343 470366 471642 471791) (-311 "EXPRTUBE.spad" 467571 467579 470333 470338) (-310 "EXPRODE.spad" 464443 464459 467561 467566) (-309 "EXPR.spad" 459718 459728 460432 460839) (-308 "EXPR2UPS.spad" 455810 455823 459708 459713) (-307 "EXPR2.spad" 455513 455525 455800 455805) (-306 "EXPEXPAN.spad" 452452 452477 453086 453179) (-305 "EXIT.spad" 452123 452131 452442 452447) (-304 "EXITAST.spad" 451859 451867 452113 452118) (-303 "EVALCYC.spad" 451317 451331 451849 451854) (-302 "EVALAB.spad" 450881 450891 451307 451312) (-301 "EVALAB.spad" 450443 450455 450871 450876) (-300 "EUCDOM.spad" 447985 447993 450369 450438) (-299 "EUCDOM.spad" 445589 445599 447975 447980) (-298 "ESTOOLS.spad" 437429 437437 445579 445584) (-297 "ESTOOLS2.spad" 437030 437044 437419 437424) (-296 "ESTOOLS1.spad" 436715 436726 437020 437025) (-295 "ES.spad" 429262 429270 436705 436710) (-294 "ES.spad" 421715 421725 429160 429165) (-293 "ESCONT.spad" 418488 418496 421705 421710) (-292 "ESCONT1.spad" 418237 418249 418478 418483) (-291 "ES2.spad" 417732 417748 418227 418232) (-290 "ES1.spad" 417298 417314 417722 417727) (-289 "ERROR.spad" 414619 414627 417288 417293) (-288 "EQTBL.spad" 413091 413113 413300 413327) (-287 "EQ.spad" 407965 407975 410764 410876) (-286 "EQ2.spad" 407681 407693 407955 407960) (-285 "EP.spad" 403995 404005 407671 407676) (-284 "ENV.spad" 402697 402705 403985 403990) (-283 "ENTIRER.spad" 402365 402373 402641 402692) (-282 "EMR.spad" 401566 401607 402291 402360) (-281 "ELTAGG.spad" 399806 399825 401556 401561) (-280 "ELTAGG.spad" 398010 398031 399762 399767) (-279 "ELTAB.spad" 397457 397475 398000 398005) (-278 "ELFUTS.spad" 396836 396855 397447 397452) (-277 "ELEMFUN.spad" 396525 396533 396826 396831) (-276 "ELEMFUN.spad" 396212 396222 396515 396520) (-275 "ELAGG.spad" 394143 394153 396180 396207) (-274 "ELAGG.spad" 392023 392035 394062 394067) (-273 "ELABEXPR.spad" 390954 390962 392013 392018) (-272 "EFUPXS.spad" 387730 387760 390910 390915) (-271 "EFULS.spad" 384566 384589 387686 387691) (-270 "EFSTRUC.spad" 382521 382537 384556 384561) (-269 "EF.spad" 377287 377303 382511 382516) (-268 "EAB.spad" 375563 375571 377277 377282) (-267 "E04UCFA.spad" 375099 375107 375553 375558) (-266 "E04NAFA.spad" 374676 374684 375089 375094) (-265 "E04MBFA.spad" 374256 374264 374666 374671) (-264 "E04JAFA.spad" 373792 373800 374246 374251) (-263 "E04GCFA.spad" 373328 373336 373782 373787) (-262 "E04FDFA.spad" 372864 372872 373318 373323) (-261 "E04DGFA.spad" 372400 372408 372854 372859) (-260 "E04AGNT.spad" 368242 368250 372390 372395) (-259 "DVARCAT.spad" 364927 364937 368232 368237) (-258 "DVARCAT.spad" 361610 361622 364917 364922) (-257 "DSMP.spad" 359041 359055 359346 359473) (-256 "DROPT.spad" 352986 352994 359031 359036) (-255 "DROPT1.spad" 352649 352659 352976 352981) (-254 "DROPT0.spad" 347476 347484 352639 352644) (-253 "DRAWPT.spad" 345631 345639 347466 347471) (-252 "DRAW.spad" 338231 338244 345621 345626) (-251 "DRAWHACK.spad" 337539 337549 338221 338226) (-250 "DRAWCX.spad" 334981 334989 337529 337534) (-249 "DRAWCURV.spad" 334518 334533 334971 334976) (-248 "DRAWCFUN.spad" 323690 323698 334508 334513) (-247 "DQAGG.spad" 321846 321856 323646 323685) (-246 "DPOLCAT.spad" 317187 317203 321714 321841) (-245 "DPOLCAT.spad" 312614 312632 317143 317148) (-244 "DPMO.spad" 305917 305933 306055 306356) (-243 "DPMM.spad" 299233 299251 299358 299659) (-242 "DOMAIN.spad" 298504 298512 299223 299228) (-241 "DMP.spad" 295726 295741 296298 296425) (-240 "DLP.spad" 295074 295084 295716 295721) (-239 "DLIST.spad" 293486 293496 294257 294284) (-238 "DLAGG.spad" 291887 291897 293466 293481) (-237 "DIVRING.spad" 291429 291437 291831 291882) (-236 "DIVRING.spad" 291015 291025 291419 291424) (-235 "DISPLAY.spad" 289195 289203 291005 291010) (-234 "DIRPROD.spad" 280049 280065 280689 280820) (-233 "DIRPROD2.spad" 278857 278875 280039 280044) (-232 "DIRPCAT.spad" 277787 277803 278709 278852) (-231 "DIRPCAT.spad" 276458 276476 277382 277387) (-230 "DIOSP.spad" 275283 275291 276448 276453) (-229 "DIOPS.spad" 274255 274265 275251 275278) (-228 "DIOPS.spad" 273213 273225 274211 274216) (-227 "DIFRING.spad" 272505 272513 273193 273208) (-226 "DIFRING.spad" 271805 271815 272495 272500) (-225 "DIFEXT.spad" 270964 270974 271785 271800) (-224 "DIFEXT.spad" 270040 270052 270863 270868) (-223 "DIAGG.spad" 269658 269668 270008 270035) (-222 "DIAGG.spad" 269296 269308 269648 269653) (-221 "DHMATRIX.spad" 267600 267610 268753 268780) (-220 "DFSFUN.spad" 261008 261016 267590 267595) (-219 "DFLOAT.spad" 257611 257619 260898 261003) (-218 "DFINTTLS.spad" 255820 255836 257601 257606) (-217 "DERHAM.spad" 253730 253762 255800 255815) (-216 "DEQUEUE.spad" 253048 253058 253337 253364) (-215 "DEGRED.spad" 252663 252677 253038 253043) (-214 "DEFINTRF.spad" 250188 250198 252653 252658) (-213 "DEFINTEF.spad" 248684 248700 250178 250183) (-212 "DEFAST.spad" 248052 248060 248674 248679) (-211 "DECIMAL.spad" 245934 245942 246520 246613) (-210 "DDFACT.spad" 243733 243750 245924 245929) (-209 "DBLRESP.spad" 243331 243355 243723 243728) (-208 "DBASE.spad" 241903 241913 243321 243326) (-207 "DATABUF.spad" 241391 241404 241893 241898) (-206 "D03FAFA.spad" 241219 241227 241381 241386) (-205 "D03EEFA.spad" 241039 241047 241209 241214) (-204 "D03AGNT.spad" 240119 240127 241029 241034) (-203 "D02EJFA.spad" 239581 239589 240109 240114) (-202 "D02CJFA.spad" 239059 239067 239571 239576) (-201 "D02BHFA.spad" 238549 238557 239049 239054) (-200 "D02BBFA.spad" 238039 238047 238539 238544) (-199 "D02AGNT.spad" 232843 232851 238029 238034) (-198 "D01WGTS.spad" 231162 231170 232833 232838) (-197 "D01TRNS.spad" 231139 231147 231152 231157) (-196 "D01GBFA.spad" 230661 230669 231129 231134) (-195 "D01FCFA.spad" 230183 230191 230651 230656) (-194 "D01ASFA.spad" 229651 229659 230173 230178) (-193 "D01AQFA.spad" 229097 229105 229641 229646) (-192 "D01APFA.spad" 228521 228529 229087 229092) (-191 "D01ANFA.spad" 228015 228023 228511 228516) (-190 "D01AMFA.spad" 227525 227533 228005 228010) (-189 "D01ALFA.spad" 227065 227073 227515 227520) (-188 "D01AKFA.spad" 226591 226599 227055 227060) (-187 "D01AJFA.spad" 226114 226122 226581 226586) (-186 "D01AGNT.spad" 222173 222181 226104 226109) (-185 "CYCLOTOM.spad" 221679 221687 222163 222168) (-184 "CYCLES.spad" 218511 218519 221669 221674) (-183 "CVMP.spad" 217928 217938 218501 218506) (-182 "CTRIGMNP.spad" 216418 216434 217918 217923) (-181 "CTORCALL.spad" 216006 216014 216408 216413) (-180 "CSTTOOLS.spad" 215249 215262 215996 216001) (-179 "CRFP.spad" 208953 208966 215239 215244) (-178 "CRCEAST.spad" 208673 208681 208943 208948) (-177 "CRAPACK.spad" 207716 207726 208663 208668) (-176 "CPMATCH.spad" 207216 207231 207641 207646) (-175 "CPIMA.spad" 206921 206940 207206 207211) (-174 "COORDSYS.spad" 201814 201824 206911 206916) (-173 "CONTOUR.spad" 201216 201224 201804 201809) (-172 "CONTFRAC.spad" 196828 196838 201118 201211) (-171 "CONDUIT.spad" 196586 196594 196818 196823) (-170 "COMRING.spad" 196260 196268 196524 196581) (-169 "COMPPROP.spad" 195774 195782 196250 196255) (-168 "COMPLPAT.spad" 195541 195556 195764 195769) (-167 "COMPLEX.spad" 189567 189577 189811 190072) (-166 "COMPLEX2.spad" 189280 189292 189557 189562) (-165 "COMPFACT.spad" 188882 188896 189270 189275) (-164 "COMPCAT.spad" 186938 186948 188604 188877) (-163 "COMPCAT.spad" 184700 184712 186368 186373) (-162 "COMMUPC.spad" 184446 184464 184690 184695) (-161 "COMMONOP.spad" 183979 183987 184436 184441) (-160 "COMM.spad" 183788 183796 183969 183974) (-159 "COMMAAST.spad" 183551 183559 183778 183783) (-158 "COMBOPC.spad" 182456 182464 183541 183546) (-157 "COMBINAT.spad" 181201 181211 182446 182451) (-156 "COMBF.spad" 178569 178585 181191 181196) (-155 "COLOR.spad" 177406 177414 178559 178564) (-154 "COLONAST.spad" 177072 177080 177396 177401) (-153 "CMPLXRT.spad" 176781 176798 177062 177067) (-152 "CLLCTAST.spad" 176443 176451 176771 176776) (-151 "CLIP.spad" 172535 172543 176433 176438) (-150 "CLIF.spad" 171174 171190 172491 172530) (-149 "CLAGG.spad" 167649 167659 171154 171169) (-148 "CLAGG.spad" 164005 164017 167512 167517) (-147 "CINTSLPE.spad" 163330 163343 163995 164000) (-146 "CHVAR.spad" 161408 161430 163320 163325) (-145 "CHARZ.spad" 161323 161331 161388 161403) (-144 "CHARPOL.spad" 160831 160841 161313 161318) (-143 "CHARNZ.spad" 160584 160592 160811 160826) (-142 "CHAR.spad" 158452 158460 160574 160579) (-141 "CFCAT.spad" 157768 157776 158442 158447) (-140 "CDEN.spad" 156926 156940 157758 157763) (-139 "CCLASS.spad" 155075 155083 156337 156376) (-138 "CATEGORY.spad" 154854 154862 155065 155070) (-137 "CATAST.spad" 154481 154489 154844 154849) (-136 "CASEAST.spad" 154195 154203 154471 154476) (-135 "CARTEN.spad" 149298 149322 154185 154190) (-134 "CARTEN2.spad" 148684 148711 149288 149293) (-133 "CARD.spad" 145973 145981 148658 148679) (-132 "CAPSLAST.spad" 145747 145755 145963 145968) (-131 "CACHSET.spad" 145369 145377 145737 145742) (-130 "CABMON.spad" 144922 144930 145359 145364) (-129 "BYTE.spad" 144316 144324 144912 144917) (-128 "BYTEARY.spad" 143391 143399 143485 143512) (-127 "BTREE.spad" 142460 142470 142998 143025) (-126 "BTOURN.spad" 141463 141473 142067 142094) (-125 "BTCAT.spad" 140839 140849 141419 141458) (-124 "BTCAT.spad" 140247 140259 140829 140834) (-123 "BTAGG.spad" 139357 139365 140203 140242) (-122 "BTAGG.spad" 138499 138509 139347 139352) (-121 "BSTREE.spad" 137234 137244 138106 138133) (-120 "BRILL.spad" 135429 135440 137224 137229) (-119 "BRAGG.spad" 134343 134353 135409 135424) (-118 "BRAGG.spad" 133231 133243 134299 134304) (-117 "BPADICRT.spad" 131213 131225 131468 131561) (-116 "BPADIC.spad" 130877 130889 131139 131208) (-115 "BOUNDZRO.spad" 130533 130550 130867 130872) (-114 "BOP.spad" 125997 126005 130523 130528) (-113 "BOP1.spad" 123383 123393 125953 125958) (-112 "BOOLEAN.spad" 122707 122715 123373 123378) (-111 "BMODULE.spad" 122419 122431 122675 122702) (-110 "BITS.spad" 121838 121846 122055 122082) (-109 "BINFILE.spad" 121181 121189 121828 121833) (-108 "BINDING.spad" 120600 120608 121171 121176) (-107 "BINARY.spad" 118491 118499 119068 119161) (-106 "BGAGG.spad" 117676 117686 118459 118486) (-105 "BGAGG.spad" 116881 116893 117666 117671) (-104 "BFUNCT.spad" 116445 116453 116861 116876) (-103 "BEZOUT.spad" 115579 115606 116395 116400) (-102 "BBTREE.spad" 112398 112408 115186 115213) (-101 "BASTYPE.spad" 112070 112078 112388 112393) (-100 "BASTYPE.spad" 111740 111750 112060 112065) (-99 "BALFACT.spad" 111180 111192 111730 111735) (-98 "AUTOMOR.spad" 110627 110636 111160 111175) (-97 "ATTREG.spad" 107346 107353 110379 110622) (-96 "ATTRBUT.spad" 103369 103376 107326 107341) (-95 "ATTRAST.spad" 103086 103093 103359 103364) (-94 "ATRIG.spad" 102556 102563 103076 103081) (-93 "ATRIG.spad" 102024 102033 102546 102551) (-92 "ASTCAT.spad" 101928 101935 102014 102019) (-91 "ASTCAT.spad" 101830 101839 101918 101923) (-90 "ASTACK.spad" 101163 101172 101437 101464) (-89 "ASSOCEQ.spad" 99963 99974 101119 101124) (-88 "ASP9.spad" 99044 99057 99953 99958) (-87 "ASP8.spad" 98087 98100 99034 99039) (-86 "ASP80.spad" 97409 97422 98077 98082) (-85 "ASP7.spad" 96569 96582 97399 97404) (-84 "ASP78.spad" 96020 96033 96559 96564) (-83 "ASP77.spad" 95389 95402 96010 96015) (-82 "ASP74.spad" 94481 94494 95379 95384) (-81 "ASP73.spad" 93752 93765 94471 94476) (-80 "ASP6.spad" 92384 92397 93742 93747) (-79 "ASP55.spad" 90893 90906 92374 92379) (-78 "ASP50.spad" 88710 88723 90883 90888) (-77 "ASP4.spad" 88005 88018 88700 88705) (-76 "ASP49.spad" 87004 87017 87995 88000) (-75 "ASP42.spad" 85411 85450 86994 86999) (-74 "ASP41.spad" 83990 84029 85401 85406) (-73 "ASP35.spad" 82978 82991 83980 83985) (-72 "ASP34.spad" 82279 82292 82968 82973) (-71 "ASP33.spad" 81839 81852 82269 82274) (-70 "ASP31.spad" 80979 80992 81829 81834) (-69 "ASP30.spad" 79871 79884 80969 80974) (-68 "ASP29.spad" 79337 79350 79861 79866) (-67 "ASP28.spad" 70610 70623 79327 79332) (-66 "ASP27.spad" 69507 69520 70600 70605) (-65 "ASP24.spad" 68594 68607 69497 69502) (-64 "ASP20.spad" 67810 67823 68584 68589) (-63 "ASP1.spad" 67191 67204 67800 67805) (-62 "ASP19.spad" 61877 61890 67181 67186) (-61 "ASP12.spad" 61291 61304 61867 61872) (-60 "ASP10.spad" 60562 60575 61281 61286) (-59 "ARRAY2.spad" 59922 59931 60169 60196) (-58 "ARRAY1.spad" 58757 58766 59105 59132) (-57 "ARRAY12.spad" 57426 57437 58747 58752) (-56 "ARR2CAT.spad" 53076 53097 57382 57421) (-55 "ARR2CAT.spad" 48758 48781 53066 53071) (-54 "APPRULE.spad" 48002 48024 48748 48753) (-53 "APPLYORE.spad" 47617 47630 47992 47997) (-52 "ANY.spad" 45959 45966 47607 47612) (-51 "ANY1.spad" 45030 45039 45949 45954) (-50 "ANTISYM.spad" 43469 43485 45010 45025) (-49 "ANON.spad" 43166 43173 43459 43464) (-48 "AN.spad" 41467 41474 42982 43075) (-47 "AMR.spad" 39646 39657 41365 41462) (-46 "AMR.spad" 37662 37675 39383 39388) (-45 "ALIST.spad" 35074 35095 35424 35451) (-44 "ALGSC.spad" 34197 34223 34946 34999) (-43 "ALGPKG.spad" 29906 29917 34153 34158) (-42 "ALGMFACT.spad" 29095 29109 29896 29901) (-41 "ALGMANIP.spad" 26515 26530 28892 28897) (-40 "ALGFF.spad" 24830 24857 25047 25203) (-39 "ALGFACT.spad" 23951 23961 24820 24825) (-38 "ALGEBRA.spad" 23682 23691 23907 23946) (-37 "ALGEBRA.spad" 23445 23456 23672 23677) (-36 "ALAGG.spad" 22943 22964 23401 23440) (-35 "AHYP.spad" 22324 22331 22933 22938) (-34 "AGG.spad" 20623 20630 22304 22319) (-33 "AGG.spad" 18896 18905 20579 20584) (-32 "AF.spad" 17321 17336 18831 18836) (-31 "ADDAST.spad" 16999 17006 17311 17316) (-30 "ACPLOT.spad" 15570 15577 16989 16994) (-29 "ACFS.spad" 13309 13318 15460 15565) (-28 "ACFS.spad" 11146 11157 13299 13304) (-27 "ACF.spad" 7748 7755 11048 11141) (-26 "ACF.spad" 4436 4445 7738 7743) (-25 "ABELSG.spad" 3977 3984 4426 4431) (-24 "ABELSG.spad" 3516 3525 3967 3972) (-23 "ABELMON.spad" 3059 3066 3506 3511) (-22 "ABELMON.spad" 2600 2609 3049 3054) (-21 "ABELGRP.spad" 2172 2179 2590 2595) (-20 "ABELGRP.spad" 1742 1751 2162 2167) (-19 "A1AGG.spad" 870 879 1698 1737) (-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 77c42a11..3750fe91 100644
--- a/src/share/algebra/category.daase
+++ b/src/share/algebra/category.daase
@@ -1,6 +1,6 @@
-(144986 . 3431018173)
-(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) ((#0=(-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) #0#) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))))
+(144986 . 3431030416)
+(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) ((#0=(-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) #0#) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))))
(((|#2| |#2|) . T))
((((-549)) . T))
((($ $) -1536 (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880))) ((|#2| |#2|) . T) ((#0=(-400 (-549)) #0#) |has| |#2| (-38 (-400 (-549)))))
@@ -18,10 +18,10 @@
((($) . T))
(((|#2| |#2|) . T))
((((-142)) . T))
-((((-525)) . T) (((-1125)) . T) (((-219)) . T) (((-372)) . T) (((-863 (-372))) . T))
+((((-525)) . T) (((-1124)) . T) (((-219)) . T) (((-372)) . T) (((-863 (-372))) . T))
(((|#1|) . T))
((((-219)) . T) (((-834)) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#1|) . T))
(-1536 (|has| |#1| (-21)) (|has| |#1| (-821)))
((($ $) . T) ((#0=(-400 (-549)) #0#) -1536 (|has| |#1| (-356)) (|has| |#1| (-342))) ((|#1| |#1|) . T))
@@ -31,21 +31,21 @@
((((-834)) . T))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-541)))
(|has| |#1| (-821))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#1| |#2| |#3|) . T))
(((|#4|) . T))
((($) . T) (((-400 (-549))) -1536 (|has| |#1| (-356)) (|has| |#1| (-342))) ((|#1|) . T))
((((-834)) . T))
-((((-834)) |has| |#1| (-1067)))
-((((-834)) . T) (((-1148)) . T))
+((((-834)) |has| |#1| (-1066)))
+((((-834)) . T) (((-1147)) . T))
(((|#1|) . T) ((|#2|) . T))
(((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))))
(-1536 (|has| |#2| (-170)) (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880)))
(-1536 (|has| |#1| (-170)) (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
-(((|#2| (-474 (-3775 |#1|) (-747))) . T))
-(((|#1| (-521 (-1143))) . T))
+(((|#2| (-474 (-3774 |#1|) (-747))) . T))
+(((|#1| (-521 (-1142))) . T))
(((#0=(-841 |#1|) #0#) . T) ((#1=(-400 (-549)) #1#) . T) (($ $) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
(|has| |#4| (-361))
(|has| |#3| (-361))
(((|#1|) . T))
@@ -58,16 +58,16 @@
(-1536 (|has| |#1| (-356)) (|has| |#1| (-541)))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-541)))
((($) . T))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1066))))
((((-525)) |has| |#1| (-594 (-525))))
((($) . T) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((|#1|) . T))
((($) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
((((-834)) . T))
((((-834)) . T))
((((-400 (-549))) . T) (($) . T))
-((((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (((-1218 |#1| |#2| |#3|)) |has| |#1| (-356)) (($) . T) ((|#1|) . T))
+((((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (((-1217 |#1| |#2| |#3|)) |has| |#1| (-356)) (($) . T) ((|#1|) . T))
((((-834)) . T))
(((|#1|) . T))
((((-834)) . T))
@@ -88,30 +88,30 @@
((($ $) . T))
(((|#2|) . T))
((((-400 (-549))) |has| |#2| (-38 (-400 (-549)))) ((|#2|) . T) (($) -1536 (|has| |#2| (-170)) (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880))))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
((((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((|#1|) . T) (($) -1536 (|has| |#1| (-170)) (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880))))
((($) . T))
(|has| |#1| (-361))
(((|#1|) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
((((-834)) . T))
((((-834)) . T))
(((|#1| |#2|) . T))
-(-1536 (|has| |#1| (-21)) (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-871 (-1143))) (|has| |#1| (-1018)))
-(-1536 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-871 (-1143))) (|has| |#1| (-1018)))
+(-1536 (|has| |#1| (-21)) (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-871 (-1142))) (|has| |#1| (-1018)))
+(-1536 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-871 (-1142))) (|has| |#1| (-1018)))
(((|#1| |#1|) . T))
(|has| |#1| (-541))
-(((|#2| |#2|) -12 (|has| |#1| (-356)) (|has| |#2| (-302 |#2|))) (((-1143) |#2|) -12 (|has| |#1| (-356)) (|has| |#2| (-505 (-1143) |#2|))))
+(((|#2| |#2|) -12 (|has| |#1| (-356)) (|has| |#2| (-302 |#2|))) (((-1142) |#2|) -12 (|has| |#1| (-356)) (|has| |#2| (-505 (-1142) |#2|))))
((((-400 |#2|)) . T) (((-400 (-549))) . T) (($) . T))
(-1536 (|has| |#1| (-21)) (|has| |#1| (-821)))
((($ $) . T) ((#0=(-400 (-549)) #0#) . T))
(-1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541)))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
-(|has| |#1| (-1067))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
-(|has| |#1| (-1067))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
+(|has| |#1| (-1066))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
+(|has| |#1| (-1066))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
(|has| |#1| (-821))
((($) . T) (((-400 (-549))) . T))
(((|#1|) . T))
@@ -122,9 +122,9 @@
(-1536 (|has| |#3| (-769)) (|has| |#3| (-821)))
(((|#1| |#2|) . T))
(((|#1| |#2|) . T))
-(|has| |#1| (-1067))
-(|has| |#1| (-1067))
-(((|#1| (-1143) (-1055 (-1143)) (-521 (-1055 (-1143)))) . T))
+(|has| |#1| (-1066))
+(|has| |#1| (-1066))
+(((|#1| (-1142) (-1054 (-1142)) (-521 (-1054 (-1142)))) . T))
((((-549) |#1|) . T))
((((-549)) . T))
((((-549)) . T))
@@ -140,17 +140,17 @@
(|has| |#2| (-821))
(((|#1| |#2| |#3| |#4|) . T))
(((|#1| |#2|) . T))
-((((-1125) |#1|) . T))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
+((((-1124) |#1|) . T))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
(((|#1|) . T))
(((|#3| (-747)) . T))
(|has| |#1| (-145))
(|has| |#1| (-143))
(-1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541)))
(-1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541)))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
((((-400 (-549))) . T) (((-549)) . T))
-((((-1143) |#2|) |has| |#2| (-505 (-1143) |#2|)) ((|#2| |#2|) |has| |#2| (-302 |#2|)))
+((((-1142) |#2|) |has| |#2| (-505 (-1142) |#2|)) ((|#2| |#2|) |has| |#2| (-302 |#2|)))
((((-400 (-549))) . T) (((-549)) . T))
(((|#1|) . T) (($) . T))
((((-549)) . T))
@@ -158,7 +158,7 @@
((($) -1536 (|has| |#1| (-356)) (|has| |#1| (-541))) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) ((|#1|) |has| |#1| (-170)))
((((-549)) . T))
((((-549)) . T))
-(((#0=(-675) (-1139 #0#)) . T))
+(((#0=(-675) (-1138 #0#)) . T))
((((-400 (-549))) . T) (($) . T))
(((|#1|) . T) (((-400 (-549))) . T) (($) . T))
((((-549) |#1|) . T))
@@ -168,8 +168,8 @@
(((|#1|) . T))
(((|#1| |#2|) . T))
((((-834)) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-((((-1125) |#1|) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+((((-1124) |#1|) . T))
(((|#3| |#3|) . T))
((((-834)) . T))
((((-834)) . T))
@@ -187,8 +187,8 @@
((((-834)) . T))
((((-549) |#1|) . T))
((((-834)) . T))
-((((-167 (-219))) |has| |#1| (-993)) (((-167 (-372))) |has| |#1| (-993)) (((-525)) |has| |#1| (-594 (-525))) (((-1139 |#1|)) . T) (((-863 (-549))) |has| |#1| (-594 (-863 (-549)))) (((-863 (-372))) |has| |#1| (-594 (-863 (-372)))))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+((((-167 (-219))) |has| |#1| (-993)) (((-167 (-372))) |has| |#1| (-993)) (((-525)) |has| |#1| (-594 (-525))) (((-1138 |#1|)) . T) (((-863 (-549))) |has| |#1| (-594 (-863 (-549)))) (((-863 (-372))) |has| |#1| (-594 (-863 (-372)))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#1|) . T))
(-1536 (|has| |#1| (-21)) (|has| |#1| (-821)))
(-1536 (|has| |#1| (-21)) (|has| |#1| (-821)))
@@ -199,29 +199,29 @@
(-12 (|has| |#3| (-227)) (|has| |#3| (-1018)))
(-1536 (|has| |#4| (-170)) (|has| |#4| (-821)) (|has| |#4| (-1018)))
(-1536 (|has| |#3| (-170)) (|has| |#3| (-821)) (|has| |#3| (-1018)))
-((((-834)) . T) (((-1148)) . T))
-((((-834)) . T) (((-1148)) . T))
+((((-834)) . T) (((-1147)) . T))
+((((-834)) . T) (((-1147)) . T))
((((-834)) . T))
(((|#1|) . T))
((((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) (((-549)) |has| |#1| (-1009 (-549))) ((|#1|) . T))
(((|#1|) . T) (((-549)) |has| |#1| (-617 (-549))))
-(((|#2|) . T) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
-(((|#1|) . T) (((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) . T))
+(((|#2|) . T) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
+(((|#1|) . T) (((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) . T))
(|has| |#1| (-541))
(|has| |#1| (-541))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
(((|#1|) . T))
(|has| |#1| (-541))
(|has| |#1| (-541))
(|has| |#1| (-541))
((((-675)) . T))
(((|#1|) . T))
-(-12 (|has| |#1| (-973)) (|has| |#1| (-1165)))
+(-12 (|has| |#1| (-973)) (|has| |#1| (-1164)))
(((|#2|) . T) (($) . T) (((-400 (-549))) . T))
-(-12 (|has| |#1| (-1067)) (|has| |#2| (-1067)))
+(-12 (|has| |#1| (-1066)) (|has| |#2| (-1066)))
((($) . T) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((|#1|) . T))
-((((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (((-1141 |#1| |#2| |#3|)) |has| |#1| (-356)) (($) . T) ((|#1|) . T))
+((((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (((-1140 |#1| |#2| |#3|)) |has| |#1| (-356)) (($) . T) ((|#1|) . T))
(((|#1|) . T) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (($) . T))
(((|#1|) . T) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) (($) . T))
(((|#4| |#4|) -1536 (|has| |#4| (-170)) (|has| |#4| (-356)) (|has| |#4| (-1018))) (($ $) |has| |#4| (-170)))
@@ -241,14 +241,14 @@
(((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))))
((($) . T) (((-400 (-549))) |has| |#2| (-38 (-400 (-549)))) ((|#2|) . T))
((((-400 $) (-400 $)) |has| |#2| (-541)) (($ $) . T) ((|#2| |#2|) . T))
-((((-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) . T))
+((((-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) . T))
(((|#1|) . T))
(|has| |#2| (-880))
-((((-1125) (-52)) . T))
+((((-1124) (-52)) . T))
((((-549)) |has| #0=(-400 |#2|) (-617 (-549))) ((#0#) . T))
((((-525)) . T) (((-219)) . T) (((-372)) . T) (((-863 (-372))) . T))
((((-834)) . T))
-(-1536 (|has| |#1| (-21)) (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-871 (-1143))) (|has| |#1| (-1018)))
+(-1536 (|has| |#1| (-21)) (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-871 (-1142))) (|has| |#1| (-1018)))
(((|#1|) |has| |#1| (-170)))
(((|#1| $) |has| |#1| (-279 |#1| |#1|)))
((((-834)) . T))
@@ -257,11 +257,11 @@
((((-400 (-549))) . T) (($) . T))
((((-834)) . T))
(|has| |#1| (-823))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
(((|#1|) . T))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1066))))
((((-525)) |has| |#1| (-594 (-525))))
-((((-834)) . T) (((-1148)) . T))
+((((-834)) . T) (((-1147)) . T))
((((-129)) . T))
((((-400 (-549))) |has| |#2| (-38 (-400 (-549)))) ((|#2|) |has| |#2| (-170)) (($) -1536 (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880))))
((((-129)) . T))
@@ -269,34 +269,34 @@
((($) -1536 (|has| |#1| (-356)) (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880))) ((|#1|) |has| |#1| (-170)) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
(|has| |#1| (-227))
((($) -1536 (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880))) ((|#1|) |has| |#1| (-170)) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
-(((|#1| (-521 (-794 (-1143)))) . T))
+(((|#1| (-521 (-794 (-1142)))) . T))
(((|#1| (-942)) . T))
(((#0=(-841 |#1|) $) |has| #0# (-279 #0# #0#)))
((((-549) |#4|) . T))
((((-549) |#3|) . T))
(((|#1|) . T))
(((|#2| |#2|) . T))
-(|has| |#1| (-1118))
-((((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) . T))
-(|has| (-1212 |#1| |#2| |#3| |#4|) (-143))
-(|has| (-1212 |#1| |#2| |#3| |#4|) (-145))
+(|has| |#1| (-1117))
+((((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) . T))
+(|has| (-1211 |#1| |#2| |#3| |#4|) (-143))
+(|has| (-1211 |#1| |#2| |#3| |#4|) (-145))
(|has| |#1| (-143))
(|has| |#1| (-145))
(((|#1|) |has| |#1| (-170)))
-((((-1143)) -12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018))))
+((((-1142)) -12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018))))
(((|#2|) . T))
-(|has| |#1| (-1067))
-((((-1125) |#1|) . T))
+(|has| |#1| (-1066))
+((((-1124) |#1|) . T))
(((|#1|) . T))
(((|#2|) . T) (((-549)) |has| |#2| (-617 (-549))))
(|has| |#2| (-361))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
((($) . T) ((|#1|) . T))
(((|#2|) |has| |#2| (-1018)))
((((-834)) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) ((#0=(-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) #0#) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) ((#0=(-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) #0#) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))))
(((|#1|) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((#0=(-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) #0#) |has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((#0=(-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) #0#) |has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))))
((((-549) |#1|) . T))
((((-834)) . T))
((((-525)) -12 (|has| |#1| (-594 (-525))) (|has| |#2| (-594 (-525)))) (((-863 (-372))) -12 (|has| |#1| (-594 (-863 (-372)))) (|has| |#2| (-594 (-863 (-372))))) (((-863 (-549))) -12 (|has| |#1| (-594 (-863 (-549)))) (|has| |#2| (-594 (-863 (-549))))))
@@ -310,23 +310,23 @@
((($) -1536 (|has| |#1| (-170)) (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880))) ((|#1|) . T) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
((((-834)) . T))
((((-834)) . T))
-(|has| (-1211 |#2| |#3| |#4|) (-145))
-(|has| (-1211 |#2| |#3| |#4|) (-143))
-(((|#2|) |has| |#2| (-1067)) (((-549)) -12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1067))) (((-400 (-549))) -12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1067))))
+(|has| (-1210 |#2| |#3| |#4|) (-145))
+(|has| (-1210 |#2| |#3| |#4|) (-143))
+(((|#2|) |has| |#2| (-1066)) (((-549)) -12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1066))) (((-400 (-549))) -12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1066))))
(((|#1|) . T))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
((((-834)) . T))
(((|#1|) . T))
(((|#1|) . T))
-(-1536 (|has| |#1| (-21)) (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-871 (-1143))) (|has| |#1| (-1018)))
+(-1536 (|has| |#1| (-21)) (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-871 (-1142))) (|has| |#1| (-1018)))
(((|#1|) . T))
((((-549) |#1|) . T))
(((|#2|) |has| |#2| (-170)))
(((|#1|) |has| |#1| (-170)))
(((|#1|) . T))
(-1536 (|has| |#1| (-21)) (|has| |#1| (-821)))
-((((-834)) |has| |#1| (-1067)))
-(-1536 (|has| |#1| (-465)) (|has| |#1| (-703)) (|has| |#1| (-871 (-1143))) (|has| |#1| (-1018)) (|has| |#1| (-1079)))
+((((-834)) |has| |#1| (-1066)))
+(-1536 (|has| |#1| (-465)) (|has| |#1| (-703)) (|has| |#1| (-871 (-1142))) (|has| |#1| (-1018)) (|has| |#1| (-1078)))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-342)))
((((-881 |#1|)) . T))
((((-400 |#2|) |#3|) . T))
@@ -339,12 +339,12 @@
(((|#1|) . T))
((((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((|#1|) |has| |#1| (-170)) (($) |has| |#1| (-541)))
(|has| |#1| (-356))
-(-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))
+(-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))
(|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))
(|has| |#1| (-356))
((((-549)) . T))
(|has| |#1| (-15 * (|#1| (-747) |#1|)))
-((((-1109 |#2| (-400 (-923 |#1|)))) . T) (((-400 (-923 |#1|))) . T))
+((((-1108 |#2| (-400 (-923 |#1|)))) . T) (((-400 (-923 |#1|))) . T))
((($) . T))
(((|#1|) |has| |#1| (-170)) (($) . T))
(((|#1|) . T) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) (($) . T))
@@ -355,28 +355,28 @@
(-1536 (|has| |#2| (-769)) (|has| |#2| (-821)))
(-1536 (|has| |#2| (-769)) (|has| |#2| (-821)))
(((|#1|) . T))
-((((-1143)) -12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018))))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+((((-1142)) -12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(-12 (|has| |#1| (-356)) (|has| |#2| (-796)))
(-1536 (|has| |#1| (-300)) (|has| |#1| (-356)) (|has| |#1| (-342)) (|has| |#1| (-541)))
(((#0=(-400 (-549)) #0#) |has| |#1| (-38 (-400 (-549)))) ((|#1| |#1|) . T) (($ $) -1536 (|has| |#1| (-170)) (|has| |#1| (-541))))
((($ $) |has| |#1| (-541)))
-(((#0=(-675) (-1139 #0#)) . T))
+(((#0=(-675) (-1138 #0#)) . T))
((((-834)) . T))
-((((-834)) . T) (((-1226 |#4|)) . T))
-((((-834)) . T) (((-1226 |#3|)) . T))
+((((-834)) . T) (((-1225 |#4|)) . T))
+((((-834)) . T) (((-1225 |#3|)) . T))
((((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((|#1|) . T) (($) -1536 (|has| |#1| (-170)) (|has| |#1| (-541))))
((($) |has| |#1| (-541)))
((((-834)) . T))
((($) . T))
-((($ $) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) ((#0=(-400 (-549)) #0#) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) ((#1=(-1218 |#1| |#2| |#3|) #1#) |has| |#1| (-356)) ((|#1| |#1|) . T))
+((($ $) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) ((#0=(-400 (-549)) #0#) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) ((#1=(-1217 |#1| |#2| |#3|) #1#) |has| |#1| (-356)) ((|#1| |#1|) . T))
(((|#1| |#1|) . T) (($ $) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) ((#0=(-400 (-549)) #0#) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))))
((($ $) -1536 (|has| |#1| (-170)) (|has| |#1| (-541))) ((|#1| |#1|) . T) ((#0=(-400 (-549)) #0#) |has| |#1| (-38 (-400 (-549)))))
-((($) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (((-1218 |#1| |#2| |#3|)) |has| |#1| (-356)) ((|#1|) . T))
+((($) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (((-1217 |#1| |#2| |#3|)) |has| |#1| (-356)) ((|#1|) . T))
(((|#1|) . T) (($) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))))
(((|#3|) |has| |#3| (-1018)))
((($) -1536 (|has| |#1| (-170)) (|has| |#1| (-541))) ((|#1|) . T) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
(((|#2| (-795 |#1|)) . T))
(((|#1|) . T))
(|has| |#1| (-356))
@@ -385,28 +385,28 @@
((((-881 |#1|)) . T))
((((-142)) . T))
((((-142)) . T))
-(((|#3|) |has| |#3| (-1067)) (((-549)) -12 (|has| |#3| (-1009 (-549))) (|has| |#3| (-1067))) (((-400 (-549))) -12 (|has| |#3| (-1009 (-400 (-549)))) (|has| |#3| (-1067))))
+(((|#3|) |has| |#3| (-1066)) (((-549)) -12 (|has| |#3| (-1009 (-549))) (|has| |#3| (-1066))) (((-400 (-549))) -12 (|has| |#3| (-1009 (-400 (-549)))) (|has| |#3| (-1066))))
((((-834)) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
(((|#1|) . T))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1066))))
((((-525)) |has| |#1| (-594 (-525))))
-((((-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) . T))
+((((-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) . T))
(|has| |#1| (-356))
(-1536 (|has| |#1| (-21)) (|has| |#1| (-821)))
-((((-1143) |#1|) |has| |#1| (-505 (-1143) |#1|)) ((|#1| |#1|) |has| |#1| (-302 |#1|)))
+((((-1142) |#1|) |has| |#1| (-505 (-1142) |#1|)) ((|#1| |#1|) |has| |#1| (-302 |#1|)))
(|has| |#2| (-796))
(|has| |#1| (-38 (-400 (-549))))
(|has| |#1| (-821))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
((((-834)) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
((((-525)) |has| |#1| (-594 (-525))))
(((|#1| |#2|) . T))
-((((-1143)) -12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1143)))))
-((((-1125) |#1|) . T))
+((((-1142)) -12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1142)))))
+((((-1124) |#1|) . T))
(((|#1| |#2| |#3| (-521 |#3|)) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
(|has| |#1| (-361))
(|has| |#1| (-361))
(|has| |#1| (-361))
@@ -421,18 +421,18 @@
((((-834)) . T))
((((-834)) . T))
(-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))
-((((-1143) #0=(-841 |#1|)) |has| #0# (-505 (-1143) #0#)) ((#0# #0#) |has| #0# (-302 #0#)))
+((((-1142) #0=(-841 |#1|)) |has| #0# (-505 (-1142) #0#)) ((#0# #0#) |has| #0# (-302 #0#)))
(((|#1|) . T))
((((-549) |#4|) . T))
((((-549) |#3|) . T))
(((|#1|) . T) (((-549)) |has| |#1| (-617 (-549))))
(-1536 (|has| |#2| (-170)) (|has| |#2| (-821)) (|has| |#2| (-1018)))
-((((-1212 |#1| |#2| |#3| |#4|)) . T))
+((((-1211 |#1| |#2| |#3| |#4|)) . T))
((((-400 (-549))) . T) (((-549)) . T))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
(((|#1| |#1|) . T))
(((|#1|) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#1|) . T))
(((|#1|) . T))
((($) . T) (((-549)) . T) (((-400 (-549))) . T))
@@ -456,7 +456,7 @@
(((|#1|) . T))
((($ $) . T) ((#0=(-836 |#1|) $) . T) ((#0# |#2|) . T))
((($) . T))
-((($ $) . T) ((#0=(-1143) $) . T) ((#0# |#1|) . T))
+((($ $) . T) ((#0=(-1142) $) . T) ((#0# |#1|) . T))
(((|#2|) |has| |#2| (-170)))
((($) -1536 (|has| |#2| (-356)) (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880))) ((|#2|) |has| |#2| (-170)) (((-400 (-549))) |has| |#2| (-38 (-400 (-549)))))
(((|#2| |#2|) -1536 (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-1018))) (($ $) |has| |#2| (-170)))
@@ -467,25 +467,25 @@
(((|#2|) -1536 (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-1018))) (($) |has| |#2| (-170)))
(((|#1|) . T))
((((-834)) . T))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
(|has| $ (-145))
((((-549) |#1|) . T))
((($) -1536 (|has| |#1| (-300)) (|has| |#1| (-356)) (|has| |#1| (-342)) (|has| |#1| (-541))) (((-400 (-549))) -1536 (|has| |#1| (-356)) (|has| |#1| (-342))) ((|#1|) . T))
-((((-1143)) -12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143)))))
+((((-1142)) -12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142)))))
(|has| |#1| (-356))
-(-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))
+(-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))
(|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))
(|has| |#1| (-356))
(|has| |#1| (-15 * (|#1| (-747) |#1|)))
(((|#1|) . T))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
((((-834)) . T))
((((-549) (-129)) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(-1536 (|has| |#2| (-170)) (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880)))
(((|#2| (-521 (-836 |#1|))) . T))
((((-834)) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#1|) . T))
(-1536 (|has| |#1| (-170)) (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
(-1536 (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
@@ -497,7 +497,7 @@
(((|#4|) . T))
(((|#3|) . T))
((((-841 |#1|)) . T) (($) . T) (((-400 (-549))) . T))
-((((-1143)) -12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018))))
+((((-1142)) -12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018))))
(((|#1|) . T))
((((-834)) . T))
((((-834)) . T))
@@ -507,13 +507,13 @@
((((-834)) . T))
(((|#1| |#2| |#3| |#4| |#5|) . T))
(((#0=(-400 (-549)) #0#) |has| |#1| (-38 (-400 (-549)))) ((|#1| |#1|) . T) (($ $) -1536 (|has| |#1| (-170)) (|has| |#1| (-541))))
-((($ $) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) ((#0=(-400 (-549)) #0#) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) ((#1=(-1141 |#1| |#2| |#3|) #1#) |has| |#1| (-356)) ((|#1| |#1|) . T))
+((($ $) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) ((#0=(-400 (-549)) #0#) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) ((#1=(-1140 |#1| |#2| |#3|) #1#) |has| |#1| (-356)) ((|#1| |#1|) . T))
(((|#1| |#1|) . T) (($ $) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) ((#0=(-400 (-549)) #0#) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))))
((($ $) -1536 (|has| |#1| (-170)) (|has| |#1| (-541))) ((|#1| |#1|) . T) ((#0=(-400 (-549)) #0#) |has| |#1| (-38 (-400 (-549)))))
(((|#2|) |has| |#2| (-1018)))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
((((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((|#1|) . T) (($) -1536 (|has| |#1| (-170)) (|has| |#1| (-541))))
-((($) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (((-1141 |#1| |#2| |#3|)) |has| |#1| (-356)) ((|#1|) . T))
+((($) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (((-1140 |#1| |#2| |#3|)) |has| |#1| (-356)) ((|#1|) . T))
(((|#1|) . T) (($) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))))
((($) -1536 (|has| |#1| (-170)) (|has| |#1| (-541))) ((|#1|) . T) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
(((|#1|) |has| |#1| (-170)) (($) . T))
@@ -527,10 +527,10 @@
((((-400 (-549))) |has| |#2| (-38 (-400 (-549)))) ((|#2|) . T) (($) -1536 (|has| |#2| (-170)) (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880))))
((($) . T))
(((|#1|) . T) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) (($) . T))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
(((|#1|) . T))
(((|#2|) |has| |#1| (-356)))
-(((|#2|) |has| |#2| (-1067)) (((-549)) -12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1067))) (((-400 (-549))) -12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1067))))
+(((|#2|) |has| |#2| (-1066)) (((-549)) -12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1066))) (((-400 (-549))) -12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1066))))
((((-549) |#1|) . T))
((((-834)) . T))
((((-400 |#2|) |#3|) . T))
@@ -540,7 +540,7 @@
(|has| |#1| (-38 (-400 (-549))))
(|has| |#1| (-38 (-400 (-549))))
(|has| |#1| (-38 (-400 (-549))))
-((((-834)) . T) (((-1148)) . T))
+((((-834)) . T) (((-1147)) . T))
(|has| |#1| (-143))
(|has| |#1| (-145))
((((-400 (-549))) |has| |#2| (-38 (-400 (-549)))) ((|#2|) |has| |#2| (-170)) (($) -1536 (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880))))
@@ -549,12 +549,12 @@
((((-400 (-549))) . T) (($) . T))
((((-400 (-549))) . T) (($) . T))
(((|#2| |#3| (-836 |#1|)) . T))
-((((-1143)) |has| |#2| (-871 (-1143))))
+((((-1142)) |has| |#2| (-871 (-1142))))
(((|#1|) . T))
(((|#1| (-521 |#2|) |#2|) . T))
(((|#1| (-747) (-1048)) . T))
((((-400 (-549))) |has| |#2| (-356)) (($) . T))
-(((|#1| (-521 (-1055 (-1143))) (-1055 (-1143))) . T))
+(((|#1| (-521 (-1054 (-1142))) (-1054 (-1142))) . T))
(-1536 (|has| |#1| (-170)) (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
(-1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
(((|#1|) . T))
@@ -566,7 +566,7 @@
(|has| |#1| (-361))
(|has| |#2| (-821))
((((-864 |#1|)) . T) (((-795 |#1|)) . T))
-((((-795 (-1143))) . T))
+((((-795 (-1142))) . T))
(((|#1|) . T))
(((|#2|) . T))
(((|#2|) . T))
@@ -578,32 +578,32 @@
((((-834)) . T))
((((-525)) . T) (((-863 (-549))) . T) (((-372)) . T) (((-219)) . T))
(|has| |#1| (-227))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
((($ $) . T))
(((|#1| |#1|) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-((((-1218 |#1| |#2| |#3|) $) -12 (|has| (-1218 |#1| |#2| |#3|) (-279 (-1218 |#1| |#2| |#3|) (-1218 |#1| |#2| |#3|))) (|has| |#1| (-356))) (($ $) . T))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+((((-1217 |#1| |#2| |#3|) $) -12 (|has| (-1217 |#1| |#2| |#3|) (-279 (-1217 |#1| |#2| |#3|) (-1217 |#1| |#2| |#3|))) (|has| |#1| (-356))) (($ $) . T))
((($ $) . T))
((($ $) . T))
(((|#1|) . T))
-((((-1107 |#1| |#2|)) |has| (-1107 |#1| |#2|) (-302 (-1107 |#1| |#2|))))
-(((|#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))
+((((-1106 |#1| |#2|)) |has| (-1106 |#1| |#2|) (-302 (-1106 |#1| |#2|))))
+(((|#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))
(((|#2|) . T) (((-549)) |has| |#2| (-1009 (-549))) (((-400 (-549))) |has| |#2| (-1009 (-400 (-549)))))
-(((|#3| |#3|) -12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067))))
-(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))))
+(((|#3| |#3|) -12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066))))
+(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))))
(((|#1|) . T))
(((|#1| |#2|) . T))
((($) . T))
((($) . T))
(((|#2|) . T))
(((|#3|) . T))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
-(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
+(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))))
(((|#2|) . T))
-((((-834)) -1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-593 (-834))) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1067))) (((-1226 |#2|)) . T))
+((((-834)) -1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-593 (-834))) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1066))) (((-1225 |#2|)) . T))
(((|#1|) |has| |#1| (-170)))
((((-549)) . T))
((((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((|#1|) |has| |#1| (-170)) (($) -1536 (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880))))
@@ -614,26 +614,26 @@
(((|#1|) . T))
(-1536 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-143)) (|has| |#1| (-145)) (|has| |#1| (-170)) (|has| |#1| (-541)) (|has| |#1| (-1018)))
(((|#2|) |has| |#1| (-356)))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#1| |#1|) . T) (($ $) . T))
((($) -1536 (|has| |#1| (-356)) (|has| |#1| (-541))) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) ((|#1|) |has| |#1| (-170)))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-(((|#1| (-521 #0=(-1143)) #0#) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+(((|#1| (-521 #0=(-1142)) #0#) . T))
(((|#1|) . T) (($) . T))
(|has| |#4| (-170))
(|has| |#3| (-170))
(((#0=(-400 (-923 |#1|)) #0#) . T))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
-(|has| |#1| (-1067))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
-(|has| |#1| (-1067))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1067))))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
+(|has| |#1| (-1066))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
+(|has| |#1| (-1066))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1066))))
((((-525)) |has| |#1| (-594 (-525))))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
-((((-834)) . T) (((-1148)) . T))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
+((((-834)) . T) (((-1147)) . T))
(((|#1| |#1|) |has| |#1| (-170)))
((($ $) -1536 (|has| |#1| (-170)) (|has| |#1| (-541))) ((|#1| |#1|) . T) ((#0=(-400 (-549)) #0#) |has| |#1| (-38 (-400 (-549)))))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#1|) . T))
((((-400 (-923 |#1|))) . T))
((((-549) (-129)) . T))
@@ -642,7 +642,7 @@
((($) -1536 (|has| |#1| (-170)) (|has| |#1| (-541))) ((|#1|) . T) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
(-1536 (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
((((-834)) . T))
-((((-1212 |#1| |#2| |#3| |#4|)) . T))
+((((-1211 |#1| |#2| |#3| |#4|)) . T))
(((|#1|) |has| |#1| (-1018)) (((-549)) -12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))))
(((|#1| |#2|) . T))
(-1536 (|has| |#3| (-170)) (|has| |#3| (-703)) (|has| |#3| (-821)) (|has| |#3| (-1018)))
@@ -658,12 +658,12 @@
((((-834)) . T))
((((-834)) . T))
((((-549) |#2|) . T))
-(((|#1| (-1123 |#1|)) |has| |#1| (-821)))
-(|has| |#1| (-1067))
+(((|#1| (-1122 |#1|)) |has| |#1| (-821)))
+(|has| |#1| (-1066))
(((|#1|) . T))
-(-12 (|has| |#1| (-356)) (|has| |#2| (-1118)))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-(|has| |#1| (-1067))
+(-12 (|has| |#1| (-356)) (|has| |#2| (-1117)))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+(|has| |#1| (-1066))
(((|#2|) . T))
((((-525)) |has| |#2| (-594 (-525))) (((-863 (-372))) |has| |#2| (-594 (-863 (-372)))) (((-863 (-549))) |has| |#2| (-594 (-863 (-549)))))
(((|#4|) -1536 (|has| |#4| (-170)) (|has| |#4| (-356))))
@@ -673,14 +673,14 @@
(-1536 (|has| |#2| (-444)) (|has| |#2| (-880)))
(-1536 (|has| |#1| (-444)) (|has| |#1| (-880)))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-444)) (|has| |#1| (-880)))
-((($ $) . T) ((#0=(-1143) $) |has| |#1| (-227)) ((#0# |#1|) |has| |#1| (-227)) ((#1=(-794 (-1143)) |#1|) . T) ((#1# $) . T))
+((($ $) . T) ((#0=(-1142) $) |has| |#1| (-227)) ((#0# |#1|) |has| |#1| (-227)) ((#1=(-794 (-1142)) |#1|) . T) ((#1# $) . T))
(-1536 (|has| |#1| (-444)) (|has| |#1| (-880)))
((((-549) |#2|) . T))
((((-834)) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
((($) -1536 (|has| |#3| (-170)) (|has| |#3| (-821)) (|has| |#3| (-1018))) ((|#3|) -1536 (|has| |#3| (-170)) (|has| |#3| (-356)) (|has| |#3| (-1018))))
((((-549) |#1|) . T))
(|has| (-400 |#2|) (-145))
@@ -694,22 +694,22 @@
(|has| |#1| (-541))
(|has| |#1| (-38 (-400 (-549))))
(|has| |#1| (-38 (-400 (-549))))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
((((-834)) . T))
-((((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) . T))
+((((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) . T))
(|has| |#1| (-38 (-400 (-549))))
-((((-381) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) . T))
+((((-381) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) . T))
(|has| |#1| (-38 (-400 (-549))))
-(|has| |#2| (-1118))
+(|has| |#2| (-1117))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-541)))
-((((-834)) . T) (((-1148)) . T))
-((((-834)) . T) (((-1148)) . T))
-((((-834)) . T) (((-1148)) . T))
-((((-834)) . T) (((-1148)) . T))
-((((-1179)) . T) (((-834)) . T) (((-1148)) . T))
-((((-834)) . T) (((-1148)) . T))
-(((|#1|) . T))
-((((-381) (-1125)) . T))
+((((-834)) . T) (((-1147)) . T))
+((((-834)) . T) (((-1147)) . T))
+((((-834)) . T) (((-1147)) . T))
+((((-834)) . T) (((-1147)) . T))
+((((-1178)) . T) (((-834)) . T) (((-1147)) . T))
+((((-834)) . T) (((-1147)) . T))
+(((|#1|) . T))
+((((-381) (-1124)) . T))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-541)))
((((-116 |#1|)) . T))
(|has| |#1| (-541))
@@ -720,7 +720,7 @@
((((-834)) . T))
((((-795 |#1|)) . T))
(((|#2|) |has| |#2| (-170)))
-((((-1143) (-52)) . T))
+((((-1142) (-52)) . T))
(((|#1|) . T))
(|has| |#1| (-38 (-400 (-549))))
(|has| |#1| (-38 (-400 (-549))))
@@ -728,17 +728,17 @@
(((|#1|) |has| |#1| (-170)))
((((-834)) . T))
((((-525)) |has| |#1| (-594 (-525))))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
(((|#2|) |has| |#2| (-302 |#2|)))
(((#0=(-549) #0#) . T) ((#1=(-400 (-549)) #1#) . T) (($ $) . T))
(((|#1|) . T))
-(((|#1| (-1139 |#1|)) . T))
+(((|#1| (-1138 |#1|)) . T))
(|has| $ (-145))
(((|#2|) . T))
(((#0=(-549) #0#) . T) ((#1=(-400 (-549)) #1#) . T) (($ $) . T))
((($) . T) (((-549)) . T) (((-400 (-549))) . T))
(|has| |#2| (-361))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
(((|#1|) . T) (((-400 (-549))) . T) (($) . T))
(((|#1|) . T) (((-400 (-549))) . T) (($) . T))
(((|#1|) . T) (((-400 (-549))) . T) (($) . T))
@@ -746,18 +746,18 @@
(((|#1| |#2|) . T))
(((|#1| |#2|) . T))
((((-549)) . T) (((-400 (-549))) . T) (($) . T))
-((((-1141 |#1| |#2| |#3|) $) -12 (|has| (-1141 |#1| |#2| |#3|) (-279 (-1141 |#1| |#2| |#3|) (-1141 |#1| |#2| |#3|))) (|has| |#1| (-356))) (($ $) . T))
+((((-1140 |#1| |#2| |#3|) $) -12 (|has| (-1140 |#1| |#2| |#3|) (-279 (-1140 |#1| |#2| |#3|) (-1140 |#1| |#2| |#3|))) (|has| |#1| (-356))) (($ $) . T))
((((-834)) . T))
((((-834)) . T))
((($) . T) (((-400 (-549))) -1536 (|has| |#1| (-356)) (|has| |#1| (-342))) ((|#1|) . T))
((((-525)) |has| |#1| (-594 (-525))))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
((($ $) . T))
((($ $) . T))
((((-834)) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-(((#0=(-1218 |#1| |#2| |#3|) #0#) -12 (|has| (-1218 |#1| |#2| |#3|) (-302 (-1218 |#1| |#2| |#3|))) (|has| |#1| (-356))) (((-1143) #0#) -12 (|has| (-1218 |#1| |#2| |#3|) (-505 (-1143) (-1218 |#1| |#2| |#3|))) (|has| |#1| (-356))))
-(-12 (|has| |#1| (-1067)) (|has| |#2| (-1067)))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+(((#0=(-1217 |#1| |#2| |#3|) #0#) -12 (|has| (-1217 |#1| |#2| |#3|) (-302 (-1217 |#1| |#2| |#3|))) (|has| |#1| (-356))) (((-1142) #0#) -12 (|has| (-1217 |#1| |#2| |#3|) (-505 (-1142) (-1217 |#1| |#2| |#3|))) (|has| |#1| (-356))))
+(-12 (|has| |#1| (-1066)) (|has| |#2| (-1066)))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
@@ -768,7 +768,7 @@
(((|#1|) . T))
(-1536 (|has| |#1| (-21)) (|has| |#1| (-143)) (|has| |#1| (-145)) (|has| |#1| (-170)) (|has| |#1| (-541)) (|has| |#1| (-1018)))
((((-112)) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
((((-112)) . T))
(((|#1|) . T))
((((-525)) |has| |#1| (-594 (-525))) (((-219)) . #0=(|has| |#1| (-993))) (((-372)) . #0#))
@@ -780,7 +780,7 @@
(|has| |#1| (-541))
(|has| |#1| (-880))
(((|#1|) . T))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
((((-834)) . T))
(-1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541)))
(-1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541)))
@@ -788,14 +788,14 @@
((((-834)) . T))
((((-834)) . T))
((((-834)) . T))
-(((|#1| (-1226 |#1|) (-1226 |#1|)) . T))
+(((|#1| (-1225 |#1|) (-1225 |#1|)) . T))
((((-549) (-142)) . T))
((($) . T))
(-1536 (|has| |#4| (-170)) (|has| |#4| (-821)) (|has| |#4| (-1018)))
(-1536 (|has| |#3| (-170)) (|has| |#3| (-821)) (|has| |#3| (-1018)))
-((((-1148)) . T) (((-834)) . T))
+((((-1147)) . T) (((-834)) . T))
((((-834)) . T))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
(((|#1| (-942)) . T))
(((|#1| |#1|) . T))
((($) . T))
@@ -808,7 +808,7 @@
(|has| |#2| (-769))
(-1536 (|has| |#2| (-769)) (|has| |#2| (-821)))
(((|#1| |#2|) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(|has| |#2| (-821))
(-12 (|has| |#1| (-769)) (|has| |#2| (-769)))
(-12 (|has| |#1| (-769)) (|has| |#2| (-769)))
@@ -824,15 +824,15 @@
((($) . T) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) ((|#1|) . T))
(|has| |#1| (-804))
((((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) (((-549)) |has| |#1| (-1009 (-549))) ((|#1|) . T))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
(((|#1| $) |has| |#1| (-279 |#1| |#1|)))
((((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((|#1|) |has| |#1| (-170)) (($) |has| |#1| (-541)))
((($) |has| |#1| (-541)))
-(((|#4|) |has| |#4| (-1067)))
-(((|#3|) |has| |#3| (-1067)))
+(((|#4|) |has| |#4| (-1066)))
+(((|#3|) |has| |#3| (-1066)))
(|has| |#3| (-361))
(((|#1|) . T) (((-834)) . T))
-((((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (($) -1536 (|has| |#1| (-356)) (|has| |#1| (-541))) (((-1218 |#1| |#2| |#3|)) |has| |#1| (-356)) ((|#1|) |has| |#1| (-170)))
+((((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (($) -1536 (|has| |#1| (-356)) (|has| |#1| (-541))) (((-1217 |#1| |#2| |#3|)) |has| |#1| (-356)) ((|#1|) |has| |#1| (-170)))
((((-834)) . T))
(((|#2|) . T))
(((|#1|) |has| |#1| (-170)) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (($) -1536 (|has| |#1| (-356)) (|has| |#1| (-541))))
@@ -845,7 +845,7 @@
((((-400 (-549))) . T) (((-549)) . T))
((($ $) -1536 (|has| |#1| (-170)) (|has| |#1| (-541))) ((|#1| |#1|) . T) ((#0=(-400 (-549)) #0#) |has| |#1| (-38 (-400 (-549)))))
((($) -1536 (|has| |#1| (-170)) (|has| |#1| (-541))) ((|#1|) . T) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
-(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))
+(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))
((((-142)) . T))
(((|#1|) . T))
((($) -1536 (|has| |#2| (-170)) (|has| |#2| (-821)) (|has| |#2| (-1018))) ((|#2|) -1536 (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-1018))))
@@ -855,15 +855,15 @@
(-1536 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-143)) (|has| |#1| (-145)) (|has| |#1| (-170)) (|has| |#1| (-541)) (|has| |#1| (-1018)))
(|has| $ (-145))
(|has| $ (-145))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
((((-834)) . T))
(|has| |#1| (-38 (-400 (-549))))
(|has| |#1| (-38 (-400 (-549))))
-(-1536 (|has| |#1| (-143)) (|has| |#1| (-145)) (|has| |#1| (-170)) (|has| |#1| (-465)) (|has| |#1| (-541)) (|has| |#1| (-1018)) (|has| |#1| (-1079)))
+(-1536 (|has| |#1| (-143)) (|has| |#1| (-145)) (|has| |#1| (-170)) (|has| |#1| (-465)) (|has| |#1| (-541)) (|has| |#1| (-1018)) (|has| |#1| (-1078)))
((($ $) |has| |#1| (-279 $ $)) ((|#1| $) |has| |#1| (-279 |#1| |#1|)))
(((|#1| (-400 (-549))) . T))
(((|#1|) . T))
-((((-1143)) . T))
+((((-1142)) . T))
(|has| |#1| (-541))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-541)))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-541)))
@@ -877,7 +877,7 @@
(|has| |#1| (-145))
(|has| |#1| (-143))
(|has| |#4| (-821))
-(((|#2| (-234 (-3775 |#1|) (-747)) (-836 |#1|)) . T))
+(((|#2| (-234 (-3774 |#1|) (-747)) (-836 |#1|)) . T))
(|has| |#3| (-821))
(((|#1| (-521 |#3|) |#3|) . T))
(|has| |#1| (-145))
@@ -890,14 +890,14 @@
(|has| |#1| (-361))
(|has| |#1| (-143))
((((-400 (-549))) |has| |#2| (-356)) (($) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(-1536 (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880)))
(-1536 (|has| |#1| (-342)) (|has| |#1| (-361)))
-((((-1109 |#2| |#1|)) . T) ((|#1|) . T))
+((((-1108 |#2| |#1|)) . T) ((|#1|) . T))
(|has| |#2| (-170))
(((|#1| |#2|) . T))
(-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))
-(((|#2|) . T) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
(-1536 (|has| |#3| (-769)) (|has| |#3| (-821)))
(-1536 (|has| |#3| (-769)) (|has| |#3| (-821)))
((((-834)) . T))
@@ -913,7 +913,7 @@
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-((((-1143) (-52)) . T))
+((((-1142) (-52)) . T))
((((-834)) . T))
((((-525)) . T) (((-863 (-549))) . T) (((-372)) . T) (((-219)) . T))
(((|#1|) . T))
@@ -927,32 +927,32 @@
(((|#1| (-400 (-549))) . T))
(((|#3|) . T) (((-592 $)) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
(((|#1|) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
((($ $) . T) ((|#2| $) . T))
(((|#1|) . T) (((-400 (-549))) . T) (($) . T))
-(((#0=(-1141 |#1| |#2| |#3|) #0#) -12 (|has| (-1141 |#1| |#2| |#3|) (-302 (-1141 |#1| |#2| |#3|))) (|has| |#1| (-356))) (((-1143) #0#) -12 (|has| (-1141 |#1| |#2| |#3|) (-505 (-1143) (-1141 |#1| |#2| |#3|))) (|has| |#1| (-356))))
+(((#0=(-1140 |#1| |#2| |#3|) #0#) -12 (|has| (-1140 |#1| |#2| |#3|) (-302 (-1140 |#1| |#2| |#3|))) (|has| |#1| (-356))) (((-1142) #0#) -12 (|has| (-1140 |#1| |#2| |#3|) (-505 (-1142) (-1140 |#1| |#2| |#3|))) (|has| |#1| (-356))))
((((-549)) . T) (($) . T) (((-400 (-549))) . T))
((((-834)) . T))
((((-834)) . T))
(((|#1| |#1|) . T))
-(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) (((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) |has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))))
+(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) (((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) |has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))))
((((-834)) . T))
(((|#1|) . T))
(((|#3| |#3|) . T))
(((|#1|) . T))
((($) . T) ((|#2|) . T))
-((((-1143) (-52)) . T))
+((((-1142) (-52)) . T))
(((|#3|) . T))
((($ $) . T) ((#0=(-836 |#1|) $) . T) ((#0# |#2|) . T))
(|has| |#1| (-804))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
(((|#2| |#2|) -1536 (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-1018))) (($ $) |has| |#2| (-170)))
(((|#2|) -1536 (|has| |#2| (-170)) (|has| |#2| (-356))))
-((((-549) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T) ((|#1| |#2|) . T))
+((((-549) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T) ((|#1| |#2|) . T))
(((|#2|) -1536 (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-1018))) (($) |has| |#2| (-170)))
((((-747)) . T))
((((-549)) . T))
@@ -970,24 +970,24 @@
(-1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541)))
(-1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541)))
(-1536 (|has| |#1| (-170)) (|has| |#1| (-541)))
-((((-863 (-549))) . T) (((-863 (-372))) . T) (((-525)) . T) (((-1143)) . T))
+((((-863 (-549))) . T) (((-863 (-372))) . T) (((-525)) . T) (((-1142)) . T))
((((-834)) . T))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
-((((-834)) . T) (((-1148)) . T))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
+((((-834)) . T) (((-1147)) . T))
((($) . T))
((((-834)) . T))
(-1536 (|has| |#2| (-170)) (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880)))
(((|#2|) |has| |#2| (-170)))
((($) -1536 (|has| |#2| (-356)) (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880))) ((|#2|) |has| |#2| (-170)) (((-400 (-549))) |has| |#2| (-38 (-400 (-549)))))
((((-841 |#1|)) . T))
-(-1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1067)))
+(-1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1066)))
(-12 (|has| |#3| (-227)) (|has| |#3| (-1018)))
-(|has| |#2| (-1118))
-(((#0=(-52)) . T) (((-2 (|:| -3337 (-1143)) (|:| -1793 #0#))) . T))
+(|has| |#2| (-1117))
+(((#0=(-52)) . T) (((-2 (|:| -3336 (-1142)) (|:| -1791 #0#))) . T))
(((|#1| |#2|) . T))
(-1536 (|has| |#3| (-170)) (|has| |#3| (-821)) (|has| |#3| (-1018)))
(((|#1| (-549) (-1048)) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#1| (-400 (-549)) (-1048)) . T))
((($) -1536 (|has| |#1| (-300)) (|has| |#1| (-356)) (|has| |#1| (-342)) (|has| |#1| (-541))) (((-400 (-549))) -1536 (|has| |#1| (-356)) (|has| |#1| (-342))) ((|#1|) . T))
((((-549) |#2|) . T))
@@ -996,25 +996,25 @@
(|has| |#2| (-361))
(-12 (|has| |#1| (-361)) (|has| |#2| (-361)))
((((-834)) . T))
-((((-1143) |#1|) |has| |#1| (-505 (-1143) |#1|)) ((|#1| |#1|) |has| |#1| (-302 |#1|)))
+((((-1142) |#1|) |has| |#1| (-505 (-1142) |#1|)) ((|#1| |#1|) |has| |#1| (-302 |#1|)))
(-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))
(-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))
(-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))
(((|#1|) . T))
((((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((|#1|) |has| |#1| (-170)) (($) |has| |#1| (-541)))
-((((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (($) -1536 (|has| |#1| (-356)) (|has| |#1| (-541))) (((-1141 |#1| |#2| |#3|)) |has| |#1| (-356)) ((|#1|) |has| |#1| (-170)))
+((((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (($) -1536 (|has| |#1| (-356)) (|has| |#1| (-541))) (((-1140 |#1| |#2| |#3|)) |has| |#1| (-356)) ((|#1|) |has| |#1| (-170)))
(((|#1|) |has| |#1| (-170)) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (($) -1536 (|has| |#1| (-356)) (|has| |#1| (-541))))
((($) |has| |#1| (-541)) ((|#1|) |has| |#1| (-170)) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
((((-834)) . T))
(|has| |#1| (-342))
(((|#1|) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) ((#0=(-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) #0#) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) ((#0=(-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) #0#) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))))
(|has| |#1| (-541))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
((((-834)) . T))
(((|#1| |#2|) . T))
(-1536 (|has| |#2| (-444)) (|has| |#2| (-880)))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
(-1536 (|has| |#1| (-444)) (|has| |#1| (-880)))
((((-400 (-549))) . T) (((-549)) . T))
((((-549)) . T))
@@ -1033,19 +1033,19 @@
(|has| |#1| (-361))
(|has| |#1| (-361))
(|has| |#1| (-361))
-((((-1143) $) |has| |#1| (-505 (-1143) $)) (($ $) |has| |#1| (-302 $)) ((|#1| |#1|) |has| |#1| (-302 |#1|)) (((-1143) |#1|) |has| |#1| (-505 (-1143) |#1|)))
-((((-1143)) |has| |#1| (-871 (-1143))))
+((((-1142) $) |has| |#1| (-505 (-1142) $)) (($ $) |has| |#1| (-302 $)) ((|#1| |#1|) |has| |#1| (-302 |#1|)) (((-1142) |#1|) |has| |#1| (-505 (-1142) |#1|)))
+((((-1142)) |has| |#1| (-871 (-1142))))
(-1536 (-12 (|has| |#1| (-227)) (|has| |#1| (-356))) (|has| |#1| (-342)))
-((((-381) (-1087)) . T))
+((((-381) (-1086)) . T))
(((|#1| |#4|) . T))
(((|#1| |#3|) . T))
((((-381) |#1|) . T))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-342)))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
((((-834)) . T))
((((-834)) . T))
((((-881 |#1|)) . T))
-((((-834)) . T) (((-1148)) . T))
+((((-834)) . T) (((-1147)) . T))
((((-400 (-549))) |has| |#2| (-38 (-400 (-549)))) ((|#2|) |has| |#2| (-170)) (($) -1536 (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880))))
((((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((|#1|) |has| |#1| (-170)) (($) -1536 (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880))))
(((|#1| |#2|) . T))
@@ -1060,8 +1060,8 @@
(-12 (|has| |#1| (-769)) (|has| |#2| (-769)))
(-1536 (|has| |#2| (-170)) (|has| |#2| (-821)) (|has| |#2| (-1018)))
(((|#2|) . T) (($) . T))
-(((|#2|) . T) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
-(|has| |#1| (-1165))
+(((|#2|) . T) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
+(|has| |#1| (-1164))
(((#0=(-549) #0#) . T) ((#1=(-400 (-549)) #1#) . T) (($ $) . T))
((((-400 (-549))) . T) (($) . T))
(((|#4|) |has| |#4| (-1018)))
@@ -1072,7 +1072,7 @@
(|has| |#1| (-356))
((((-549)) . T) (((-400 (-549))) . T) (($) . T))
((($ $) . T) ((#0=(-400 (-549)) #0#) -1536 (|has| |#1| (-356)) (|has| |#1| (-342))) ((|#1| |#1|) . T))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
(((|#1|) . T) (($) . T) (((-400 (-549))) . T))
((((-834)) . T))
((((-834)) . T))
@@ -1090,22 +1090,22 @@
((($) . T) (((-400 (-549))) -1536 (|has| |#1| (-356)) (|has| |#1| (-342))) ((|#1|) . T))
(-1536 (|has| |#1| (-170)) (|has| |#1| (-541)))
((($) . T))
-(((#0=(-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) #0#) |has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))))
+(((#0=(-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) #0#) |has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))))
(|has| |#2| (-823))
((($) . T))
-(((|#2|) |has| |#2| (-1067)))
-((((-834)) -1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-593 (-834))) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1067))) (((-1226 |#2|)) . T))
+(((|#2|) |has| |#2| (-1066)))
+((((-834)) -1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-593 (-834))) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1066))) (((-1225 |#2|)) . T))
(|has| |#1| (-823))
(|has| |#1| (-823))
-((((-1125) (-52)) . T))
+((((-1124) (-52)) . T))
(|has| |#1| (-823))
((((-834)) . T))
((((-549)) |has| #0=(-400 |#2|) (-617 (-549))) ((#0#) . T))
((((-549) (-142)) . T))
-((((-549) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T) ((|#1| |#2|) . T))
+((((-549) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T) ((|#1| |#2|) . T))
((((-400 (-549))) . T) (($) . T))
(((|#1|) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
((((-834)) . T))
((((-881 |#1|)) . T))
(|has| |#1| (-356))
@@ -1117,24 +1117,24 @@
(|has| |#1| (-821))
(((|#1|) . T) (($) . T))
(|has| |#1| (-821))
-((((-1143)) |has| |#1| (-871 (-1143))))
-(((|#1| (-1143)) . T))
-(((|#1| (-1226 |#1|) (-1226 |#1|)) . T))
-((((-834)) . T) (((-1148)) . T))
+((((-1142)) |has| |#1| (-871 (-1142))))
+(((|#1| (-1142)) . T))
+(((|#1| (-1225 |#1|) (-1225 |#1|)) . T))
+((((-834)) . T) (((-1147)) . T))
(((|#1| |#2|) . T))
((($ $) . T))
-(|has| |#1| (-1067))
-(((|#1| (-1143) (-794 (-1143)) (-521 (-794 (-1143)))) . T))
+(|has| |#1| (-1066))
+(((|#1| (-1142) (-794 (-1142)) (-521 (-794 (-1142)))) . T))
((((-400 (-923 |#1|))) . T))
((((-525)) . T))
((((-834)) . T))
((($) . T))
(((|#2|) . T) (($) . T))
-((((-549) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T) ((|#1| |#2|) . T))
+((((-549) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T) ((|#1| |#2|) . T))
(((|#1|) . T))
(((|#1|) |has| |#1| (-170)))
((($) |has| |#1| (-541)) ((|#1|) |has| |#1| (-170)) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#3|) . T))
(((|#1|) |has| |#1| (-170)))
((((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((|#1|) |has| |#1| (-170)) (($) -1536 (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880))))
@@ -1143,15 +1143,15 @@
(((|#1|) . T))
((((-525)) |has| |#1| (-594 (-525))) (((-863 (-372))) |has| |#1| (-594 (-863 (-372)))) (((-863 (-549))) |has| |#1| (-594 (-863 (-549)))))
((((-834)) . T))
-(((|#2|) . T) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
(|has| |#2| (-821))
(-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))
(|has| |#1| (-541))
-(|has| |#1| (-1118))
-((((-1125) |#1|) . T))
+(|has| |#1| (-1117))
+((((-1124) |#1|) . T))
(-1536 (|has| |#2| (-170)) (|has| |#2| (-821)) (|has| |#2| (-1018)))
(((#0=(-400 (-549)) #0#) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (($ $) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) ((|#1| |#1|) . T))
-((((-400 (-549))) |has| |#1| (-1009 (-549))) (((-549)) |has| |#1| (-1009 (-549))) (((-1143)) |has| |#1| (-1009 (-1143))) ((|#1|) . T))
+((((-400 (-549))) |has| |#1| (-1009 (-549))) (((-549)) |has| |#1| (-1009 (-549))) (((-1142)) |has| |#1| (-1009 (-1142))) ((|#1|) . T))
((((-549) |#2|) . T))
((((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) (((-549)) |has| |#1| (-1009 (-549))) ((|#1|) . T))
((((-549)) |has| |#1| (-857 (-549))) (((-372)) |has| |#1| (-857 (-372))))
@@ -1167,21 +1167,21 @@
((((-525)) |has| |#4| (-594 (-525))))
(((|#1|) . T))
(((|#2|) . T))
-((((-1143)) |has| (-400 |#2|) (-871 (-1143))))
-(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) ((#0=(-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) #0#) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))))
+((((-1142)) |has| (-400 |#2|) (-871 (-1142))))
+(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) ((#0=(-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) #0#) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))))
((($) . T))
((($) . T))
(((|#2|) . T))
-((((-834)) -1536 (|has| |#3| (-25)) (|has| |#3| (-130)) (|has| |#3| (-593 (-834))) (|has| |#3| (-170)) (|has| |#3| (-356)) (|has| |#3| (-361)) (|has| |#3| (-703)) (|has| |#3| (-769)) (|has| |#3| (-821)) (|has| |#3| (-1018)) (|has| |#3| (-1067))) (((-1226 |#3|)) . T))
+((((-834)) -1536 (|has| |#3| (-25)) (|has| |#3| (-130)) (|has| |#3| (-593 (-834))) (|has| |#3| (-170)) (|has| |#3| (-356)) (|has| |#3| (-361)) (|has| |#3| (-703)) (|has| |#3| (-769)) (|has| |#3| (-821)) (|has| |#3| (-1018)) (|has| |#3| (-1066))) (((-1225 |#3|)) . T))
((((-549) |#2|) . T))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
(((|#2| |#2|) -1536 (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-1018))) (($ $) |has| |#2| (-170)))
((((-834)) . T))
((((-834)) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T) ((|#2|) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T) ((|#2|) . T))
((((-834)) . T))
((((-834)) . T))
-((((-1125) (-1143) (-549) (-219) (-834)) . T))
+((((-1124) (-1142) (-549) (-219) (-834)) . T))
((((-834)) . T))
((((-834)) . T))
((((-834)) . T))
@@ -1213,7 +1213,7 @@
(|has| |#1| (-38 (-400 (-549))))
((((-834)) . T))
((((-525)) |has| |#1| (-594 (-525))))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
(((|#2|) -1536 (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-1018))) (($) |has| |#2| (-170)))
(|has| $ (-145))
((((-400 |#2|)) . T))
@@ -1234,12 +1234,12 @@
(((|#1|) . T))
(((|#2|) . T))
(|has| |#2| (-227))
-((((-834)) . T) (((-1148)) . T))
-((((-1143) (-52)) . T))
+((((-834)) . T) (((-1147)) . T))
+((((-1142) (-52)) . T))
((((-834)) . T))
-((((-834)) . T) (((-1148)) . T))
+((((-834)) . T) (((-1147)) . T))
(((|#1| |#1|) . T))
-((((-1143)) |has| |#2| (-871 (-1143))))
+((((-1142)) |has| |#2| (-871 (-1142))))
((((-549) (-112)) . T))
(|has| |#1| (-541))
(((|#2|) . T))
@@ -1262,37 +1262,37 @@
((((-970 |#1|)) . T) ((|#1|) . T))
((((-834)) . T))
((((-834)) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
((((-400 (-549))) . T) (((-400 |#1|)) . T) ((|#1|) . T) (($) . T))
-(((|#1| (-1139 |#1|)) . T))
+(((|#1| (-1138 |#1|)) . T))
((((-549)) . T) (($) . T) (((-400 (-549))) . T))
(((|#3|) . T) (($) . T))
(|has| |#1| (-823))
(((|#2|) . T))
((((-549)) . T) (($) . T) (((-400 (-549))) . T))
-((((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) . T))
+((((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) . T))
((((-549) |#2|) . T))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
(((|#2|) . T))
((((-549) |#3|) . T))
(((|#2|) . T))
(|has| |#1| (-38 (-400 (-549))))
(|has| |#1| (-38 (-400 (-549))))
-((((-1218 |#1| |#2| |#3|)) |has| |#1| (-356)))
+((((-1217 |#1| |#2| |#3|)) |has| |#1| (-356)))
(|has| |#1| (-38 (-400 (-549))))
((((-834)) . T))
-(|has| |#1| (-1067))
-(((|#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))
-(((|#3|) -12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067))))
+(|has| |#1| (-1066))
+(((|#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))
+(((|#3|) -12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066))))
(|has| |#1| (-38 (-400 (-549))))
(((|#2|) . T))
(((|#1|) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) ((#0=(-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) #0#) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) ((#0=(-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) #0#) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))))
(((|#2| |#2|) . T))
(|has| |#2| (-356))
(((|#2|) . T) (((-549)) |has| |#2| (-1009 (-549))) (((-400 (-549))) |has| |#2| (-1009 (-400 (-549)))))
(((|#2|) . T))
-((((-1125) (-52)) . T))
+((((-1124) (-52)) . T))
(((|#2|) |has| |#2| (-170)))
((((-549) |#3|) . T))
((((-549) (-142)) . T))
@@ -1304,7 +1304,7 @@
(|has| |#1| (-143))
((($) . T))
(|has| |#1| (-541))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
((($) . T))
(((|#1|) . T))
(((|#2|) . T) (((-549)) |has| |#2| (-617 (-549))))
@@ -1312,12 +1312,12 @@
((((-549)) |has| |#1| (-617 (-549))) ((|#1|) . T))
((((-549)) |has| |#1| (-617 (-549))) ((|#1|) . T))
((((-549)) |has| |#1| (-617 (-549))) ((|#1|) . T))
-((((-1125) (-52)) . T))
+((((-1124) (-52)) . T))
(((|#1|) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#1| |#2|) . T))
((((-549) (-142)) . T))
-(((#0=(-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) #0#) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) ((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))
+(((#0=(-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) #0#) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) ((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))
((($) -1536 (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880))) ((|#1|) |has| |#1| (-170)) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
(|has| |#1| (-823))
(((|#2| (-747) (-1048)) . T))
@@ -1332,42 +1332,42 @@
(-1536 (|has| |#1| (-143)) (-12 (|has| |#1| (-356)) (|has| |#2| (-143))))
(((|#4|) . T))
(|has| |#1| (-143))
-((((-1125) |#1|) . T))
+((((-1124) |#1|) . T))
(|has| |#1| (-145))
(((|#1|) . T))
((((-549)) . T))
((((-834)) . T))
(((|#1| |#2|) . T))
((((-834)) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#3|) . T))
-((((-1218 |#1| |#2| |#3|)) |has| |#1| (-356)))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
+((((-1217 |#1| |#2| |#3|)) |has| |#1| (-356)))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
(((|#1|) . T))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))) (((-929 |#1|)) . T))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))) (((-929 |#1|)) . T))
(|has| |#1| (-821))
(|has| |#1| (-821))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(|has| |#2| (-356))
(((|#1|) |has| |#1| (-170)))
(((|#2|) |has| |#2| (-1018)))
-((((-1125) |#1|) . T))
-(((|#3| |#3|) -12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067))))
+((((-1124) |#1|) . T))
+(((|#3| |#3|) -12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066))))
(((|#2| (-864 |#1|)) . T))
((($) . T))
-((((-381) (-1125)) . T))
+((((-381) (-1124)) . T))
((($) |has| |#1| (-541)) ((|#1|) |has| |#1| (-170)) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
-((((-834)) -1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-593 (-834))) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1067))) (((-1226 |#2|)) . T))
-(((#0=(-52)) . T) (((-2 (|:| -3337 (-1125)) (|:| -1793 #0#))) . T))
+((((-834)) -1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-593 (-834))) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1066))) (((-1225 |#2|)) . T))
+(((#0=(-52)) . T) (((-2 (|:| -3336 (-1124)) (|:| -1791 #0#))) . T))
(((|#1|) . T))
((((-834)) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))
+(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))
((((-142)) . T))
(|has| |#2| (-143))
(|has| |#2| (-145))
(|has| |#1| (-465))
-(-1536 (|has| |#1| (-465)) (|has| |#1| (-703)) (|has| |#1| (-871 (-1143))) (|has| |#1| (-1018)))
+(-1536 (|has| |#1| (-465)) (|has| |#1| (-703)) (|has| |#1| (-871 (-1142))) (|has| |#1| (-1018)))
(|has| |#1| (-356))
((((-834)) . T))
(|has| |#1| (-38 (-400 (-549))))
@@ -1376,18 +1376,18 @@
(|has| |#1| (-821))
(|has| |#1| (-821))
((((-834)) . T))
-((((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (($) -1536 (|has| |#1| (-356)) (|has| |#1| (-541))) (((-1218 |#1| |#2| |#3|)) |has| |#1| (-356)) ((|#1|) |has| |#1| (-170)))
+((((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (($) -1536 (|has| |#1| (-356)) (|has| |#1| (-541))) (((-1217 |#1| |#2| |#3|)) |has| |#1| (-356)) ((|#1|) |has| |#1| (-170)))
(((|#1|) |has| |#1| (-170)) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (($) -1536 (|has| |#1| (-356)) (|has| |#1| (-541))))
((($) |has| |#1| (-541)) ((|#1|) |has| |#1| (-170)) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
(((|#1| |#2|) . T))
-((((-1143)) |has| |#1| (-871 (-1143))))
+((((-1142)) |has| |#1| (-871 (-1142))))
((((-881 |#1|)) . T) (((-400 (-549))) . T) (($) . T))
((((-834)) . T))
((((-834)) . T))
-(|has| |#1| (-1067))
-(((|#2| (-474 (-3775 |#1|) (-747)) (-836 |#1|)) . T))
+(|has| |#1| (-1066))
+(((|#2| (-474 (-3774 |#1|) (-747)) (-836 |#1|)) . T))
((((-400 (-549))) . #0=(|has| |#2| (-356))) (($) . #0#))
-(((|#1| (-521 (-1143)) (-1143)) . T))
+(((|#1| (-521 (-1142)) (-1142)) . T))
(((|#1|) . T))
(((|#1|) . T))
((((-834)) . T))
@@ -1405,30 +1405,30 @@
(|has| |#1| (-145))
(((|#1|) . T))
(((|#2|) . T))
-(((|#1|) . T) (((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
-((((-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) . T))
-((((-1141 |#1| |#2| |#3|)) |has| |#1| (-356)))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
-((((-1143) (-52)) . T))
+(((|#1|) . T) (((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
+((((-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) . T))
+((((-1140 |#1| |#2| |#3|)) |has| |#1| (-356)))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
+((((-1142) (-52)) . T))
((($ $) . T))
(((|#1| (-549)) . T))
((((-881 |#1|)) . T))
-(((|#1|) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-1018))) (($) -1536 (|has| |#1| (-871 (-1143))) (|has| |#1| (-1018))))
+(((|#1|) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-1018))) (($) -1536 (|has| |#1| (-871 (-1142))) (|has| |#1| (-1018))))
(((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))))
(|has| |#1| (-823))
(|has| |#1| (-823))
((((-549) |#2|) . T))
((((-549)) . T))
-((((-1218 |#1| |#2| |#3|)) -12 (|has| (-1218 |#1| |#2| |#3|) (-302 (-1218 |#1| |#2| |#3|))) (|has| |#1| (-356))))
+((((-1217 |#1| |#2| |#3|)) -12 (|has| (-1217 |#1| |#2| |#3|) (-302 (-1217 |#1| |#2| |#3|))) (|has| |#1| (-356))))
(|has| |#1| (-823))
((((-665 |#2|)) . T) (((-834)) . T))
(((|#1| |#2|) . T))
((((-400 (-923 |#1|))) . T))
-(((|#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))
-(((|#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))
+(((|#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))
+(((|#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))
(((|#1|) |has| |#1| (-170)))
-(((|#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))
+(((|#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))
(((|#3|) -1536 (|has| |#3| (-170)) (|has| |#3| (-356))))
(|has| |#2| (-823))
(|has| |#1| (-823))
@@ -1437,7 +1437,7 @@
((((-549) |#2|) . T))
(((|#2|) -1536 (|has| |#2| (-170)) (|has| |#2| (-356))))
(|has| |#1| (-342))
-(((|#3| |#3|) -12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067))))
+(((|#3| |#3|) -12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066))))
((($) . T) (((-400 (-549))) . T))
((((-549) (-112)) . T))
(|has| |#1| (-796))
@@ -1454,14 +1454,14 @@
(|has| |#1| (-38 (-400 (-549))))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-342)))
(|has| |#1| (-38 (-400 (-549))))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
-((((-1143)) |has| |#1| (-871 (-1143))) (((-1048)) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
+((((-1142)) |has| |#1| (-871 (-1142))) (((-1048)) . T))
(((|#1|) . T))
(|has| |#1| (-821))
-(((#0=(-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) #0#) |has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))))))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-(|has| |#1| (-1067))
-((((-834)) . T) (((-1148)) . T))
+(((#0=(-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) #0#) |has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+(|has| |#1| (-1066))
+((((-834)) . T) (((-1147)) . T))
(((|#1|) . T))
(((|#2| |#2|) . T))
(((|#1|) . T))
@@ -1478,7 +1478,7 @@
(((|#1|) . T))
((((-142)) . T))
(((|#2|) |has| |#2| (-170)))
-(-1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1067)))
+(-1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1066)))
(((|#1|) . T))
(|has| |#1| (-143))
(|has| |#1| (-145))
@@ -1489,22 +1489,22 @@
(((|#2|) |has| |#1| (-356)))
((((-834)) . T))
(((|#2|) . T))
-(((|#1| (-1139 |#1|)) . T))
+(((|#1| (-1138 |#1|)) . T))
((((-1048)) . T) ((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))))
((($) . T) ((|#1|) . T) (((-400 (-549))) . T))
(((|#2|) . T))
-((((-1141 |#1| |#2| |#3|)) |has| |#1| (-356)))
+((((-1140 |#1| |#2| |#3|)) |has| |#1| (-356)))
((($) |has| |#1| (-821)))
(|has| |#1| (-880))
((((-834)) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#1|) . T))
(((|#1| |#2|) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((#0=(-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) #0#) |has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((#0=(-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) #0#) |has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))))
(-1536 (|has| |#2| (-444)) (|has| |#2| (-880)))
(-1536 (|has| |#1| (-444)) (|has| |#1| (-880)))
(((|#1|) . T) (($) . T))
-(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))
+(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))
(((|#1| |#2|) . T))
(((|#1|) . T))
(((|#1|) . T))
@@ -1522,31 +1522,31 @@
(((|#1| |#4| |#5|) . T))
(((|#1| (-747)) . T))
((((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((|#1|) |has| |#1| (-170)) (($) |has| |#1| (-541)))
-((((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (($) -1536 (|has| |#1| (-356)) (|has| |#1| (-541))) (((-1141 |#1| |#2| |#3|)) |has| |#1| (-356)) ((|#1|) |has| |#1| (-170)))
+((((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (($) -1536 (|has| |#1| (-356)) (|has| |#1| (-541))) (((-1140 |#1| |#2| |#3|)) |has| |#1| (-356)) ((|#1|) |has| |#1| (-170)))
(((|#1|) |has| |#1| (-170)) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (($) -1536 (|has| |#1| (-356)) (|has| |#1| (-541))))
((($) |has| |#1| (-541)) ((|#1|) |has| |#1| (-170)) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
-((((-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) . T))
+((((-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) . T))
((((-400 |#2|)) . T) (((-400 (-549))) . T) (($) . T))
((((-648 |#1|)) . T))
(((|#1| |#2| |#3| |#4|) . T))
-((((-834)) . T) (((-1148)) . T))
+((((-834)) . T) (((-1147)) . T))
((((-525)) . T))
((((-834)) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
((((-834)) . T))
((((-400 (-549))) |has| |#2| (-38 (-400 (-549)))) ((|#2|) |has| |#2| (-170)) (($) -1536 (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880))))
((((-834)) . T))
((((-834)) . T))
((((-834)) . T))
(((|#2|) . T))
-(-1536 (|has| |#3| (-25)) (|has| |#3| (-130)) (|has| |#3| (-170)) (|has| |#3| (-356)) (|has| |#3| (-361)) (|has| |#3| (-703)) (|has| |#3| (-769)) (|has| |#3| (-821)) (|has| |#3| (-1018)) (|has| |#3| (-1067)))
+(-1536 (|has| |#3| (-25)) (|has| |#3| (-130)) (|has| |#3| (-170)) (|has| |#3| (-356)) (|has| |#3| (-361)) (|has| |#3| (-703)) (|has| |#3| (-769)) (|has| |#3| (-821)) (|has| |#3| (-1018)) (|has| |#3| (-1066)))
(-1536 (|has| |#2| (-170)) (|has| |#2| (-821)) (|has| |#2| (-1018)))
((((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) (((-549)) |has| |#1| (-1009 (-549))) ((|#1|) . T))
-(|has| |#1| (-1165))
-(|has| |#1| (-1165))
-(-1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1067)))
-(|has| |#1| (-1165))
-(|has| |#1| (-1165))
+(|has| |#1| (-1164))
+(|has| |#1| (-1164))
+(-1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1066)))
+(|has| |#1| (-1164))
+(|has| |#1| (-1164))
(((|#3| |#3|) . T))
((((-549)) . T) (($) . T) (((-400 (-549))) . T))
((($) . T) (((-400 (-549))) . T) (((-400 |#1|)) . T) ((|#1|) . T))
@@ -1555,38 +1555,38 @@
(((|#1|) . T) (((-400 (-549))) . T) (($) . T))
(((|#1|) . T) (((-400 (-549))) . T) (($) . T))
(((|#1|) . T) (((-400 (-549))) . T) (($) . T))
-((((-1125) (-52)) . T))
-(|has| |#1| (-1067))
+((((-1124) (-52)) . T))
+(|has| |#1| (-1066))
(-1536 (|has| |#2| (-796)) (|has| |#2| (-823)))
(((|#1|) . T))
(((|#1|) |has| |#1| (-170)) (($) . T))
((($) -1536 (|has| |#1| (-356)) (|has| |#1| (-342))) (((-400 (-549))) -1536 (|has| |#1| (-356)) (|has| |#1| (-342))) ((|#1|) . T))
((($) . T))
-((((-1141 |#1| |#2| |#3|)) -12 (|has| (-1141 |#1| |#2| |#3|) (-302 (-1141 |#1| |#2| |#3|))) (|has| |#1| (-356))))
+((((-1140 |#1| |#2| |#3|)) -12 (|has| (-1140 |#1| |#2| |#3|) (-302 (-1140 |#1| |#2| |#3|))) (|has| |#1| (-356))))
((((-834)) . T))
(-1536 (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880)))
((($) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(-1536 (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
((((-834)) . T))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
(|has| |#2| (-880))
(|has| |#1| (-356))
-(((|#2|) |has| |#2| (-1067)))
+(((|#2|) |has| |#2| (-1066)))
(-1536 (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
(-1536 (|has| |#1| (-444)) (|has| |#1| (-880)))
((($) . T) ((|#2|) . T))
-((((-525)) . T) (((-400 (-1139 (-549)))) . T) (((-219)) . T) (((-372)) . T))
+((((-525)) . T) (((-400 (-1138 (-549)))) . T) (((-219)) . T) (((-372)) . T))
((((-372)) . T) (((-219)) . T) (((-834)) . T))
(|has| |#1| (-880))
(|has| |#1| (-880))
(|has| |#1| (-880))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-444)) (|has| |#1| (-880)))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
(((|#1|) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))
+(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))
((($ $) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
((($ $) . T))
((((-549) (-112)) . T))
((($) . T))
@@ -1602,33 +1602,33 @@
(((|#1|) . T))
((((-549)) . T))
(((|#1| |#2|) . T))
-((((-1143)) |has| |#1| (-1018)))
+((((-1142)) |has| |#1| (-1018)))
(|has| |#1| (-38 (-400 (-549))))
(|has| |#1| (-38 (-400 (-549))))
(|has| |#1| (-38 (-400 (-549))))
(((|#1|) . T))
((((-834)) . T))
(((|#1| (-549)) . T))
-(((|#1| (-1218 |#1| |#2| |#3|)) . T))
+(((|#1| (-1217 |#1| |#2| |#3|)) . T))
(((|#1|) . T))
(((|#1| (-400 (-549))) . T))
-(((|#1| (-1190 |#1| |#2| |#3|)) . T))
+(((|#1| (-1189 |#1| |#2| |#3|)) . T))
(((|#1| (-747)) . T))
(((|#1|) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
((((-834)) . T))
-(|has| |#1| (-1067))
-((((-1125) |#1|) . T))
+(|has| |#1| (-1066))
+((((-1124) |#1|) . T))
((($) . T))
(|has| |#2| (-145))
(|has| |#2| (-143))
-(((|#1| (-521 (-794 (-1143))) (-794 (-1143))) . T))
+(((|#1| (-521 (-794 (-1142))) (-794 (-1142))) . T))
((((-834)) . T))
-((((-1212 |#1| |#2| |#3| |#4|)) . T))
-((((-1212 |#1| |#2| |#3| |#4|)) . T))
+((((-1211 |#1| |#2| |#3| |#4|)) . T))
+((((-1211 |#1| |#2| |#3| |#4|)) . T))
(((|#1|) |has| |#1| (-1018)))
((((-549) (-112)) . T))
-((((-834)) |has| |#1| (-1067)))
+((((-834)) |has| |#1| (-1066)))
(|has| |#2| (-170))
((((-549)) . T))
(|has| |#2| (-821))
@@ -1641,28 +1641,28 @@
(((|#3|) . T))
(-1536 (|has| |#3| (-170)) (|has| |#3| (-821)) (|has| |#3| (-1018)))
((((-834)) . T))
-((((-1211 |#2| |#3| |#4|)) . T) (((-1212 |#1| |#2| |#3| |#4|)) . T))
+((((-1210 |#2| |#3| |#4|)) . T) (((-1211 |#1| |#2| |#3| |#4|)) . T))
((((-834)) . T))
-((((-48)) -12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549)))) (((-592 $)) . T) ((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) -1536 (-12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549)))) (|has| |#1| (-1009 (-400 (-549))))) (((-400 (-923 |#1|))) |has| |#1| (-541)) (((-923 |#1|)) |has| |#1| (-1018)) (((-1143)) . T))
+((((-48)) -12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549)))) (((-592 $)) . T) ((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) -1536 (-12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549)))) (|has| |#1| (-1009 (-400 (-549))))) (((-400 (-923 |#1|))) |has| |#1| (-541)) (((-923 |#1|)) |has| |#1| (-1018)) (((-1142)) . T))
(((|#1|) . T) (($) . T))
(((|#1| (-747)) . T))
((($) -1536 (|has| |#1| (-356)) (|has| |#1| (-541))) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) ((|#1|) |has| |#1| (-170)))
(((|#1|) |has| |#1| (-302 |#1|)))
-((((-1212 |#1| |#2| |#3| |#4|)) . T))
+((((-1211 |#1| |#2| |#3| |#4|)) . T))
((((-549)) |has| |#1| (-857 (-549))) (((-372)) |has| |#1| (-857 (-372))))
(((|#1|) . T))
(|has| |#1| (-541))
(((|#1|) . T))
((((-834)) . T))
-(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))))
(((|#1|) |has| |#1| (-170)))
((($) |has| |#1| (-541)) ((|#1|) |has| |#1| (-170)) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))
(((|#1|) . T))
-(((|#3|) |has| |#3| (-1067)))
+(((|#3|) |has| |#3| (-1066)))
(((|#2|) -1536 (|has| |#2| (-170)) (|has| |#2| (-356))))
-((((-1211 |#2| |#3| |#4|)) . T))
+((((-1210 |#2| |#3| |#4|)) . T))
((((-112)) . T))
(|has| |#1| (-796))
(|has| |#1| (-796))
@@ -1671,8 +1671,8 @@
(|has| |#1| (-821))
(|has| |#1| (-821))
(((|#1| (-549) (-1048)) . T))
-(-1536 (|has| |#1| (-871 (-1143))) (|has| |#1| (-1018)))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+(-1536 (|has| |#1| (-871 (-1142))) (|has| |#1| (-1018)))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
(((|#1| (-400 (-549)) (-1048)) . T))
(((|#1| (-747) (-1048)) . T))
(|has| |#1| (-823))
@@ -1682,21 +1682,21 @@
(((|#2|) . T))
(|has| |#1| (-143))
(|has| |#1| (-145))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
((((-881 |#1|)) . T) (($) . T) (((-400 (-549))) . T))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
(((|#1|) . T))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
((((-549)) -12 (|has| |#1| (-356)) (|has| |#2| (-617 (-549)))) ((|#2|) |has| |#1| (-356)))
-(-1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1067)))
+(-1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1066)))
(((|#2|) |has| |#2| (-170)))
(((|#1|) |has| |#1| (-170)))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
-((((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
+((((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) . T))
((((-834)) . T))
(|has| |#3| (-821))
((((-834)) . T))
-((((-1211 |#2| |#3| |#4|) (-312 |#2| |#3| |#4|)) . T))
+((((-1210 |#2| |#3| |#4|) (-312 |#2| |#3| |#4|)) . T))
((((-834)) . T))
(((|#1| |#1|) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-1018))))
(((|#1|) . T))
@@ -1706,9 +1706,9 @@
(((|#2|) |has| |#2| (-356)))
((($) . T) ((|#1|) . T) (((-400 (-549))) |has| |#1| (-356)))
(|has| |#1| (-823))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
(((|#2|) . T))
-((((-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) |has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))))
+((((-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) |has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))))
(-1536 (|has| |#1| (-444)) (|has| |#1| (-880)))
(((|#2|) . T) (((-549)) |has| |#2| (-617 (-549))))
((((-834)) . T))
@@ -1723,13 +1723,13 @@
(((|#1|) . T))
(((|#1| (-549)) . T))
(|has| |#1| (-821))
-(((|#1| (-1141 |#1| |#2| |#3|)) . T))
+(((|#1| (-1140 |#1| |#2| |#3|)) . T))
(((|#1| |#1|) . T))
(((|#1| |#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1| (-400 (-549))) . T))
-(((|#1| (-1134 |#1| |#2| |#3|)) . T))
+(((|#1| (-1133 |#1| |#2| |#3|)) . T))
(((|#1| (-747)) . T))
(((|#1|) . T))
(((|#1| |#1| |#2| (-234 |#1| |#2|) (-234 |#1| |#2|)) . T))
@@ -1750,20 +1750,20 @@
((((-834)) . T))
(((|#1|) . T) (((-400 (-549))) . T) (($) . T))
((($) . T) ((|#1|) . T) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
(|has| |#1| (-356))
(|has| |#1| (-356))
(|has| (-400 |#2|) (-227))
(|has| |#1| (-880))
(((|#2|) |has| |#2| (-1018)))
-(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))))
(|has| |#1| (-356))
(((|#1|) |has| |#1| (-170)))
(((|#1| |#1|) . T))
((((-841 |#1|)) . T))
((((-834)) . T))
(((|#1|) . T))
-(((|#2|) |has| |#2| (-1067)))
+(((|#2|) |has| |#2| (-1066)))
(|has| |#2| (-823))
(((|#1|) . T))
((((-400 (-549))) . T) (((-549)) . T) (((-592 $)) . T))
@@ -1800,16 +1800,16 @@
((((-675)) . T))
(((|#2|) |has| |#2| (-170)))
(|has| |#2| (-821))
-((((-112)) |has| |#1| (-1067)) (((-834)) -1536 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-465)) (|has| |#1| (-703)) (|has| |#1| (-871 (-1143))) (|has| |#1| (-1018)) (|has| |#1| (-1079)) (|has| |#1| (-1067))))
+((((-112)) |has| |#1| (-1066)) (((-834)) -1536 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-465)) (|has| |#1| (-703)) (|has| |#1| (-871 (-1142))) (|has| |#1| (-1018)) (|has| |#1| (-1078)) (|has| |#1| (-1066))))
(((|#1|) . T) (($) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) . T))
+((((-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) . T))
((((-834)) . T))
((((-549) |#1|) . T))
((((-675)) . T) (((-400 (-549))) . T) (((-549)) . T))
(((|#1| |#1|) |has| |#1| (-170)))
(((|#2|) . T))
-(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))))
((((-372)) . T))
((((-675)) . T))
((((-400 (-549))) . #0=(|has| |#2| (-356))) (($) . #0#))
@@ -1825,16 +1825,16 @@
(|has| |#1| (-880))
(|has| |#1| (-356))
(|has| |#1| (-823))
-((((-1143)) |has| |#2| (-871 (-1143))))
+((((-1142)) |has| |#2| (-871 (-1142))))
((((-834)) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
((((-400 (-549))) . T) (($) . T))
(|has| |#1| (-465))
(|has| |#1| (-361))
(|has| |#1| (-361))
(|has| |#1| (-361))
(|has| |#1| (-356))
-(-1536 (|has| |#1| (-143)) (|has| |#1| (-145)) (|has| |#1| (-170)) (|has| |#1| (-465)) (|has| |#1| (-541)) (|has| |#1| (-1018)) (|has| |#1| (-1079)))
+(-1536 (|has| |#1| (-143)) (|has| |#1| (-145)) (|has| |#1| (-170)) (|has| |#1| (-465)) (|has| |#1| (-541)) (|has| |#1| (-1018)) (|has| |#1| (-1078)))
(|has| |#1| (-38 (-400 (-549))))
((((-116 |#1|)) . T))
((((-116 |#1|)) . T))
@@ -1855,11 +1855,11 @@
(|has| |#1| (-38 (-400 (-549))))
(|has| |#1| (-38 (-400 (-549))))
(|has| |#1| (-823))
-((((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) . T))
+((((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) . T))
(((|#1| |#2|) . T))
(|has| |#1| (-145))
(|has| |#1| (-143))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) ((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) ((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))
(((|#2|) . T))
(((|#3|) . T))
((((-116 |#1|)) . T))
@@ -1877,10 +1877,10 @@
((((-525)) |has| |#1| (-594 (-525))) (((-863 (-549))) |has| |#1| (-594 (-863 (-549)))) (((-863 (-372))) |has| |#1| (-594 (-863 (-372)))) (((-372)) . #0=(|has| |#1| (-993))) (((-219)) . #0#))
(((|#1|) |has| |#1| (-356)))
((((-834)) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
((($ $) . T) (((-592 $) $) . T))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-541)))
-((($) . T) (((-1212 |#1| |#2| |#3| |#4|)) . T) (((-400 (-549))) . T))
+((($) . T) (((-1211 |#1| |#2| |#3| |#4|)) . T) (((-400 (-549))) . T))
((($) -1536 (|has| |#1| (-143)) (|has| |#1| (-145)) (|has| |#1| (-170)) (|has| |#1| (-541)) (|has| |#1| (-1018))) ((|#1|) |has| |#1| (-170)) (((-400 (-549))) |has| |#1| (-541)))
(|has| |#1| (-356))
(|has| |#1| (-356))
@@ -1888,31 +1888,31 @@
((((-372)) . T) (((-549)) . T) (((-400 (-549))) . T))
((((-621 (-756 |#1| (-836 |#2|)))) . T) (((-834)) . T))
((((-525)) |has| (-756 |#1| (-836 |#2|)) (-594 (-525))))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
((((-372)) . T))
-(((|#3|) -12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067))))
+(((|#3|) -12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066))))
((((-834)) . T))
(-1536 (|has| |#2| (-444)) (|has| |#2| (-880)))
(((|#1|) . T))
(|has| |#1| (-823))
(|has| |#1| (-823))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
((((-525)) |has| |#1| (-594 (-525))))
-(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))
-(|has| |#1| (-1067))
+(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))
+(|has| |#1| (-1066))
((((-834)) . T))
-((((-1143)) . T) (((-834)) . T) (((-1148)) . T))
+((((-1142)) . T) (((-834)) . T) (((-1147)) . T))
((((-400 (-549))) . T) (((-549)) . T) (((-592 $)) . T))
(|has| |#1| (-143))
(|has| |#1| (-145))
((((-549)) . T))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-541)))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-541)))
-(((#0=(-1211 |#2| |#3| |#4|)) . T) (((-400 (-549))) |has| #0# (-38 (-400 (-549)))) (($) . T))
+(((#0=(-1210 |#2| |#3| |#4|)) . T) (((-400 (-549))) |has| #0# (-38 (-400 (-549)))) (($) . T))
((((-549)) . T))
(|has| |#1| (-356))
-(-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-145)) (|has| |#1| (-356))) (|has| |#1| (-145)))
-(-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-143)) (|has| |#1| (-356))) (|has| |#1| (-143)))
+(-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-145)) (|has| |#1| (-356))) (|has| |#1| (-145)))
+(-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-143)) (|has| |#1| (-356))) (|has| |#1| (-143)))
(|has| |#1| (-356))
(|has| |#1| (-143))
(|has| |#1| (-145))
@@ -1925,11 +1925,11 @@
((((-834)) . T))
((((-549)) |has| |#2| (-617 (-549))) ((|#2|) . T))
(((|#2|) . T))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
(((|#1| |#2|) . T))
(((|#1|) . T) (((-549)) |has| |#1| (-617 (-549))))
(((|#3|) |has| |#3| (-170)))
-(-1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1067)))
+(-1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1066)))
((((-834)) . T))
((((-549)) . T))
(((|#1| $) |has| |#1| (-279 |#1| |#1|)))
@@ -1937,28 +1937,28 @@
((((-834)) . T))
(((|#3|) . T))
(((|#1| |#1|) . T) (($ $) -1536 (|has| |#1| (-283)) (|has| |#1| (-356))) ((#0=(-400 (-549)) #0#) |has| |#1| (-356)))
-((((-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) . T))
+((((-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) . T))
((($) . T))
((((-549) |#1|) . T))
-((((-1143)) |has| (-400 |#2|) (-871 (-1143))))
+((((-1142)) |has| (-400 |#2|) (-871 (-1142))))
(((|#1|) . T) (($) -1536 (|has| |#1| (-283)) (|has| |#1| (-356))) (((-400 (-549))) |has| |#1| (-356)))
((((-525)) |has| |#2| (-594 (-525))))
((((-665 |#2|)) . T) (((-834)) . T))
(((|#1|) . T))
-(((|#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))
-(((|#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))
+(((|#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))
+(((|#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))
((((-841 |#1|)) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(-1536 (|has| |#4| (-769)) (|has| |#4| (-821)))
(-1536 (|has| |#3| (-769)) (|has| |#3| (-821)))
((((-834)) . T))
((((-834)) . T))
-(((|#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))
+(((|#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))
(((|#2|) |has| |#2| (-1018)))
(((|#1|) . T))
((((-400 |#2|)) . T))
(((|#1|) . T))
-(((|#3|) -12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067))))
+(((|#3|) -12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066))))
((((-549) |#1|) . T))
(((|#1|) . T))
((($) . T))
@@ -1966,7 +1966,7 @@
((((-400 (-549))) . T) (($) . T))
((((-400 (-549))) . T) (($) . T))
((((-400 (-549))) . T) (($) . T))
-(-1536 (|has| |#1| (-444)) (|has| |#1| (-1184)))
+(-1536 (|has| |#1| (-444)) (|has| |#1| (-1183)))
((($) . T))
((((-400 (-549))) |has| #0=(-400 |#2|) (-1009 (-400 (-549)))) (((-549)) |has| #0# (-1009 (-549))) ((#0#) . T))
(((|#2|) . T) (((-549)) |has| |#2| (-617 (-549))))
@@ -1976,8 +1976,8 @@
((($) -1536 (|has| |#1| (-356)) (|has| |#1| (-342))) (((-400 (-549))) -1536 (|has| |#1| (-356)) (|has| |#1| (-342))) ((|#1|) . T))
((((-549)) . T))
(|has| |#1| (-38 (-400 (-549))))
-((((-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) |has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))))))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+((((-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) |has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(|has| |#1| (-821))
(|has| |#1| (-38 (-400 (-549))))
(|has| |#1| (-38 (-400 (-549))))
@@ -2001,25 +2001,25 @@
(((|#1| |#2|) . T))
((((-142)) . T))
((((-756 |#1| (-836 |#2|))) . T))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
-(|has| |#1| (-1165))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
+(|has| |#1| (-1164))
(((|#1|) . T))
-(-1536 (|has| |#3| (-25)) (|has| |#3| (-130)) (|has| |#3| (-170)) (|has| |#3| (-356)) (|has| |#3| (-361)) (|has| |#3| (-703)) (|has| |#3| (-769)) (|has| |#3| (-821)) (|has| |#3| (-1018)) (|has| |#3| (-1067)))
-((((-1143) |#1|) |has| |#1| (-505 (-1143) |#1|)))
+(-1536 (|has| |#3| (-25)) (|has| |#3| (-130)) (|has| |#3| (-170)) (|has| |#3| (-356)) (|has| |#3| (-361)) (|has| |#3| (-703)) (|has| |#3| (-769)) (|has| |#3| (-821)) (|has| |#3| (-1018)) (|has| |#3| (-1066)))
+((((-1142) |#1|) |has| |#1| (-505 (-1142) |#1|)))
(((|#2|) . T))
((($ $) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880))) ((|#1| |#1|) . T) ((#0=(-400 (-549)) #0#) |has| |#1| (-38 (-400 (-549)))))
((($) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880))) ((|#1|) . T) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
((((-881 |#1|)) . T))
((($) . T))
((((-400 (-923 |#1|))) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
((((-525)) |has| |#4| (-594 (-525))))
((((-834)) . T) (((-621 |#4|)) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
(((|#1|) . T))
(|has| |#1| (-821))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) (((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) |has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))))
-(|has| |#1| (-1067))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) (((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) |has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))))
+(|has| |#1| (-1066))
(|has| |#1| (-356))
(|has| |#1| (-823))
(((|#1|) . T))
@@ -2029,25 +2029,25 @@
((($) -1536 (|has| |#1| (-356)) (|has| |#1| (-541))) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) ((|#1|) |has| |#1| (-170)))
(|has| |#1| (-143))
(|has| |#1| (-145))
-(-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-145)) (|has| |#1| (-356))) (|has| |#1| (-145)))
-(-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-143)) (|has| |#1| (-356))) (|has| |#1| (-143)))
+(-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-145)) (|has| |#1| (-356))) (|has| |#1| (-145)))
+(-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-143)) (|has| |#1| (-356))) (|has| |#1| (-143)))
(|has| |#1| (-143))
(|has| |#1| (-145))
(|has| |#1| (-145))
(|has| |#1| (-143))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
-((((-1218 |#1| |#2| |#3|)) |has| |#1| (-356)))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
+((((-1217 |#1| |#2| |#3|)) |has| |#1| (-356)))
(|has| |#1| (-821))
(((|#1| |#2|) . T))
(((|#1|) . T) (((-549)) |has| |#1| (-617 (-549))))
((((-549)) |has| |#1| (-617 (-549))) ((|#1|) . T))
((((-881 |#1|)) . T) (((-400 (-549))) . T) (($) . T))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
(((|#1|) . T) (($) . T) (((-400 (-549))) . T) (((-549)) . T))
(|has| |#2| (-143))
(|has| |#2| (-145))
((((-881 |#1|)) . T) (((-400 (-549))) . T) (($) . T))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
(((|#2|) |has| |#2| (-170)))
(((|#2|) . T))
(((|#1| |#1|) . T))
@@ -2058,34 +2058,34 @@
((((-834)) . T))
((((-834)) . T))
((((-525)) |has| |#1| (-594 (-525))))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
-((((-1143) |#1|) |has| |#1| (-505 (-1143) |#1|)) ((|#1| |#1|) |has| |#1| (-302 |#1|)))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
+((((-1142) |#1|) |has| |#1| (-505 (-1142) |#1|)) ((|#1| |#1|) |has| |#1| (-302 |#1|)))
(((|#1|) -1536 (|has| |#1| (-170)) (|has| |#1| (-356))))
((((-309 |#1|)) . T))
(((|#2|) |has| |#2| (-356)))
(((|#2|) . T))
((((-400 (-549))) . T) (((-675)) . T) (($) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((#0=(-756 |#1| (-836 |#2|)) #0#) |has| (-756 |#1| (-836 |#2|)) (-302 (-756 |#1| (-836 |#2|)))))
((((-836 |#1|)) . T))
(((|#2|) |has| |#2| (-170)))
(((|#1|) |has| |#1| (-170)))
(((|#2|) . T))
-((((-1143)) |has| |#1| (-871 (-1143))) (((-1048)) . T))
-((((-1143)) |has| |#1| (-871 (-1143))) (((-1055 (-1143))) . T))
-(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+((((-1142)) |has| |#1| (-871 (-1142))) (((-1048)) . T))
+((((-1142)) |has| |#1| (-871 (-1142))) (((-1054 (-1142))) . T))
+(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(|has| |#1| (-38 (-400 (-549))))
(((|#4|) |has| |#4| (-1018)) (((-549)) -12 (|has| |#4| (-617 (-549))) (|has| |#4| (-1018))))
(((|#3|) |has| |#3| (-1018)) (((-549)) -12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018))))
(|has| |#1| (-143))
(|has| |#1| (-145))
((($ $) . T))
-(-1536 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-465)) (|has| |#1| (-703)) (|has| |#1| (-871 (-1143))) (|has| |#1| (-1018)) (|has| |#1| (-1079)) (|has| |#1| (-1067)))
+(-1536 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-465)) (|has| |#1| (-703)) (|has| |#1| (-871 (-1142))) (|has| |#1| (-1018)) (|has| |#1| (-1078)) (|has| |#1| (-1066)))
(|has| |#1| (-541))
(((|#2|) . T))
((((-549)) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
(((|#1|) . T))
(-1536 (|has| |#1| (-143)) (|has| |#1| (-145)) (|has| |#1| (-170)) (|has| |#1| (-541)) (|has| |#1| (-1018)))
((((-563 |#1|)) . T))
@@ -2096,34 +2096,34 @@
((($) . T))
(((|#1|) . T))
((((-834)) . T))
-(((|#2|) |has| |#2| (-6 (-4339 "*"))))
+(((|#2|) |has| |#2| (-6 (-4338 "*"))))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
((((-400 (-549))) |has| |#2| (-1009 (-400 (-549)))) (((-549)) |has| |#2| (-1009 (-549))) ((|#2|) . T) (((-836 |#1|)) . T))
((($) . T) (((-116 |#1|)) . T) (((-400 (-549))) . T))
-((((-1092 |#1| |#2|)) . T) ((|#2|) . T) ((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))))
-((((-1139 |#1|)) . T) (((-1048)) . T) ((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))))
-((((-1092 |#1| (-1143))) . T) (((-1055 (-1143))) . T) ((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) (((-1143)) . T))
-(|has| |#1| (-1067))
+((((-1091 |#1| |#2|)) . T) ((|#2|) . T) ((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))))
+((((-1138 |#1|)) . T) (((-1048)) . T) ((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))))
+((((-1091 |#1| (-1142))) . T) (((-1054 (-1142))) . T) ((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) (((-1142)) . T))
+(|has| |#1| (-1066))
((($) . T))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
((((-549)) -12 (|has| |#1| (-857 (-549))) (|has| |#2| (-857 (-549)))) (((-372)) -12 (|has| |#1| (-857 (-372))) (|has| |#2| (-857 (-372)))))
(((|#1| |#2|) . T))
-((((-1143) |#1|) . T))
+((((-1142) |#1|) . T))
(((|#4|) . T))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-342)))
-((((-1143) (-52)) . T))
-((((-1211 |#2| |#3| |#4|) (-312 |#2| |#3| |#4|)) . T))
+((((-1142) (-52)) . T))
+((((-1210 |#2| |#3| |#4|) (-312 |#2| |#3| |#4|)) . T))
((((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) (((-549)) |has| |#1| (-1009 (-549))) ((|#1|) . T))
((((-834)) . T))
-(-1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1067)))
-(((#0=(-1212 |#1| |#2| |#3| |#4|) #0#) . T) ((#1=(-400 (-549)) #1#) . T) (($ $) . T))
+(-1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-361)) (|has| |#2| (-703)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)) (|has| |#2| (-1066)))
+(((#0=(-1211 |#1| |#2| |#3| |#4|) #0#) . T) ((#1=(-400 (-549)) #1#) . T) (($ $) . T))
(((|#1| |#1|) |has| |#1| (-170)) ((#0=(-400 (-549)) #0#) |has| |#1| (-541)) (($ $) |has| |#1| (-541)))
(((|#1|) . T) (($) . T) (((-400 (-549))) . T))
(((|#1| $) |has| |#1| (-279 |#1| |#1|)))
-((((-1212 |#1| |#2| |#3| |#4|)) . T) (((-400 (-549))) . T) (($) . T))
+((((-1211 |#1| |#2| |#3| |#4|)) . T) (((-400 (-549))) . T) (($) . T))
(((|#1|) |has| |#1| (-170)) (((-400 (-549))) |has| |#1| (-541)) (($) |has| |#1| (-541)))
(|has| |#1| (-356))
(|has| |#1| (-143))
@@ -2132,21 +2132,21 @@
(|has| |#1| (-143))
((((-400 (-549))) . T) (($) . T))
(((|#3|) |has| |#3| (-356)))
-(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))
-((((-1143)) . T))
+(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))
+((((-1142)) . T))
(((|#1|) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))
+(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))
(((|#2| |#3|) . T))
(-1536 (|has| |#2| (-356)) (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880)))
(((|#1| (-521 |#2|)) . T))
(((|#1| (-747)) . T))
-(((|#1| (-521 (-1055 (-1143)))) . T))
+(((|#1| (-521 (-1054 (-1142)))) . T))
(((|#1|) |has| |#1| (-170)))
(((|#1|) . T))
(|has| |#2| (-880))
(-1536 (|has| |#2| (-769)) (|has| |#2| (-821)))
((((-834)) . T))
-((($ $) . T) ((#0=(-1211 |#2| |#3| |#4|) #0#) . T) ((#1=(-400 (-549)) #1#) |has| #0# (-38 (-400 (-549)))))
+((($ $) . T) ((#0=(-1210 |#2| |#3| |#4|) #0#) . T) ((#1=(-400 (-549)) #1#) |has| #0# (-38 (-400 (-549)))))
((((-881 |#1|)) . T))
(-12 (|has| |#1| (-356)) (|has| |#2| (-796)))
((($) . T) (((-400 (-549))) . T))
@@ -2155,11 +2155,11 @@
(|has| |#1| (-356))
(-1536 (|has| |#1| (-300)) (|has| |#1| (-356)) (|has| |#1| (-342)) (|has| |#1| (-541)))
(|has| |#1| (-356))
-((($) . T) ((#0=(-1211 |#2| |#3| |#4|)) . T) (((-400 (-549))) |has| #0# (-38 (-400 (-549)))))
+((($) . T) ((#0=(-1210 |#2| |#3| |#4|)) . T) (((-400 (-549))) |has| #0# (-38 (-400 (-549)))))
(((|#1| |#2|) . T))
-((((-1141 |#1| |#2| |#3|)) |has| |#1| (-356)))
+((((-1140 |#1| |#2| |#3|)) |has| |#1| (-356)))
(-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-356)) (|has| |#1| (-342)))
-(-1536 (|has| |#1| (-871 (-1143))) (|has| |#1| (-1018)))
+(-1536 (|has| |#1| (-871 (-1142))) (|has| |#1| (-1018)))
((((-549)) |has| |#1| (-617 (-549))) ((|#1|) . T))
(((|#1| |#2|) . T))
((((-834)) . T))
@@ -2176,10 +2176,10 @@
(((|#1|) . T))
(((|#1|) . T))
((((-834)) . T))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
(((|#4|) . T))
(((|#4|) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
((((-400 $) (-400 $)) |has| |#1| (-541)) (($ $) . T) ((|#1| |#1|) . T))
(|has| |#2| (-796))
(((|#4|) . T))
@@ -2187,25 +2187,25 @@
((($ $) . T))
((($) . T))
((((-834)) . T))
-(((|#1| (-521 (-1143))) . T))
+(((|#1| (-521 (-1142))) . T))
(((|#1|) |has| |#1| (-170)))
((((-834)) . T))
-(((|#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))
-(((|#2|) -1536 (|has| |#2| (-6 (-4339 "*"))) (|has| |#2| (-170))))
+(((|#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))
+(((|#2|) -1536 (|has| |#2| (-6 (-4338 "*"))) (|has| |#2| (-170))))
(-1536 (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880)))
(-1536 (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
(|has| |#2| (-823))
(|has| |#2| (-880))
(|has| |#1| (-880))
(((|#2|) |has| |#2| (-170)))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
-((((-1218 |#1| |#2| |#3|)) |has| |#1| (-356)))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
+((((-1217 |#1| |#2| |#3|)) |has| |#1| (-356)))
((((-834)) . T))
((((-834)) . T))
((((-525)) . T) (((-549)) . T) (((-863 (-549))) . T) (((-372)) . T) (((-219)) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
-((((-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
+((((-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) . T))
(((|#1|) . T))
((((-834)) . T))
(((|#1| |#2|) . T))
@@ -2217,7 +2217,7 @@
(|has| |#1| (-821))
((((-834)) . T))
((((-834)) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#1| |#1| |#2| (-234 |#1| |#2|) (-234 |#1| |#2|)) . T))
(((|#1|) . T))
(((|#1|) . T))
@@ -2226,19 +2226,19 @@
((((-400 (-549))) . T) (($) . T))
((((-834)) . T))
((((-834)) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
(((|#2| |#2|) . T) ((|#1| |#1|) . T))
((((-834)) . T))
((((-834)) . T))
((((-525)) |has| |#1| (-594 (-525))) (((-863 (-549))) |has| |#1| (-594 (-863 (-549)))) (((-863 (-372))) |has| |#1| (-594 (-863 (-372)))))
-((((-1143) (-52)) . T))
+((((-1142) (-52)) . T))
(((|#2|) . T))
(((|#1|) . T))
(((|#1|) . T))
((((-834)) . T))
-((((-621 (-142))) . T) (((-1125)) . T))
-((((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) . T))
-((((-1143) |#1|) |has| |#1| (-505 (-1143) |#1|)) ((|#1| |#1|) |has| |#1| (-302 |#1|)))
+((((-621 (-142))) . T) (((-1124)) . T))
+((((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) . T))
+((((-1142) |#1|) |has| |#1| (-505 (-1142) |#1|)) ((|#1| |#1|) |has| |#1| (-302 |#1|)))
(|has| |#1| (-823))
((((-834)) . T))
((((-525)) |has| |#1| (-594 (-525))))
@@ -2251,7 +2251,7 @@
((((-881 |#1|)) . T) (((-400 (-549))) . T) (($) . T))
(-1536 (|has| |#4| (-170)) (|has| |#4| (-703)) (|has| |#4| (-821)) (|has| |#4| (-1018)))
(-1536 (|has| |#3| (-170)) (|has| |#3| (-703)) (|has| |#3| (-821)) (|has| |#3| (-1018)))
-((((-1143) (-52)) . T))
+((((-1142) (-52)) . T))
(-1536 (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
(((|#1|) . T))
@@ -2268,7 +2268,7 @@
(((#0=(-400 (-549)) #0#) . T) (($ $) . T))
((((-400 (-549))) . T) (($) . T))
(((|#1| (-400 (-549)) (-1048)) . T))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
(|has| |#1| (-541))
(|has| |#1| (-38 (-400 (-549))))
(|has| |#1| (-38 (-400 (-549))))
@@ -2278,7 +2278,7 @@
(((#0=(-881 |#1|) #0#) . T) (($ $) . T) ((#1=(-400 (-549)) #1#) . T))
((((-400 |#2|)) . T))
(|has| |#1| (-821))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
(((|#1| |#1|) . T) ((#0=(-400 (-549)) #0#) . T) ((#1=(-549) #1#) . T) (($ $) . T))
((((-881 |#1|)) . T) (($) . T) (((-400 (-549))) . T))
(((|#2|) |has| |#2| (-1018)) (((-549)) -12 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018))))
@@ -2291,19 +2291,19 @@
(-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))
(-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))
(-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))
-((((-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) . T))
-(((#0=(-52)) . T) (((-2 (|:| -3337 (-1143)) (|:| -1793 #0#))) . T))
+((((-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) . T))
+(((#0=(-52)) . T) (((-2 (|:| -3336 (-1142)) (|:| -1791 #0#))) . T))
(|has| |#1| (-342))
((((-549)) . T))
((((-834)) . T))
-(((#0=(-1212 |#1| |#2| |#3| |#4|) $) |has| #0# (-279 #0# #0#)))
+(((#0=(-1211 |#1| |#2| |#3| |#4|) $) |has| #0# (-279 #0# #0#)))
(|has| |#1| (-356))
(((#0=(-1048) |#1|) . T) ((#0# $) . T) (($ $) . T))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-342)))
(((#0=(-400 (-549)) #0#) . T) ((#1=(-675) #1#) . T) (($ $) . T))
((((-309 |#1|)) . T) (($) . T))
(((|#1|) . T) (((-400 (-549))) |has| |#1| (-356)))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
(((|#1|) . T))
(((|#1|) -1536 (|has| |#2| (-360 |#1|)) (|has| |#2| (-410 |#1|))))
(((|#1|) -1536 (|has| |#2| (-360 |#1|)) (|has| |#2| (-410 |#1|))))
@@ -2312,15 +2312,15 @@
(((|#3| |#3|) . T))
(|has| |#2| (-227))
((((-836 |#1|)) . T))
-((((-1143)) |has| |#1| (-871 (-1143))) ((|#3|) . T))
+((((-1142)) |has| |#1| (-871 (-1142))) ((|#3|) . T))
(-12 (|has| |#1| (-356)) (|has| |#2| (-993)))
-((((-1141 |#1| |#2| |#3|)) |has| |#1| (-356)))
+((((-1140 |#1| |#2| |#3|)) |has| |#1| (-356)))
((((-834)) . T))
(|has| |#1| (-356))
(|has| |#1| (-356))
((((-400 (-549))) . T) (($) . T) (((-400 |#1|)) . T) ((|#1|) . T))
((((-549)) . T))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
(((|#3|) . T))
(((|#2|) . T))
(((|#1|) . T))
@@ -2333,13 +2333,13 @@
((($) . T) (((-400 (-549))) . T))
(((|#1| |#2| |#3| |#4|) . T))
(((|#1|) . T) (($) . T))
-(((|#1| (-1226 |#1|) (-1226 |#1|)) . T))
+(((|#1| (-1225 |#1|) (-1225 |#1|)) . T))
(((|#1| |#2| |#3| |#4|) . T))
((((-834)) . T))
((((-834)) . T))
(((#0=(-116 |#1|) #0#) . T) ((#1=(-400 (-549)) #1#) . T) (($ $) . T))
((((-400 (-549))) |has| |#2| (-1009 (-400 (-549)))) (((-549)) |has| |#2| (-1009 (-549))) ((|#2|) . T) (((-836 |#1|)) . T))
-((((-1092 |#1| |#2|)) . T) ((|#3|) . T) ((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((|#2|) . T))
+((((-1091 |#1| |#2|)) . T) ((|#3|) . T) ((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((|#2|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
@@ -2362,7 +2362,7 @@
(|has| |#2| (-993))
((($) . T))
(|has| |#1| (-880))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
((($) . T))
(((|#2|) . T))
(((|#1|) . T))
@@ -2375,16 +2375,16 @@
(-1536 (|has| |#1| (-361)) (|has| |#1| (-823)))
(((|#1|) . T))
((((-834)) . T))
-((((-1143)) -12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143)))))
+((((-1142)) -12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142)))))
((((-400 |#2|) |#3|) . T))
((($) . T) (((-400 (-549))) . T))
((((-747) |#1|) . T))
-(((|#2| (-234 (-3775 |#1|) (-747))) . T))
+(((|#2| (-234 (-3774 |#1|) (-747))) . T))
(((|#1| (-521 |#3|)) . T))
((((-400 (-549))) . T))
(-1536 (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
((((-834)) . T))
-(((#0=(-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) #0#) |has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))))
+(((#0=(-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) #0#) |has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))))
(|has| |#1| (-880))
(|has| |#2| (-356))
(-1536 (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)))
@@ -2408,9 +2408,9 @@
(|has| |#1| (-38 (-400 (-549))))
(-12 (|has| |#1| (-534)) (|has| |#1| (-804)))
((((-834)) . T))
-((((-1143)) -1536 (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))) (-12 (|has| |#1| (-356)) (|has| |#2| (-871 (-1143))))))
+((((-1142)) -1536 (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))) (-12 (|has| |#1| (-356)) (|has| |#2| (-871 (-1142))))))
(|has| |#1| (-356))
-((((-1143)) -12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143)))))
+((((-1142)) -12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142)))))
(|has| |#1| (-356))
((((-400 (-549))) . T) (($) . T))
((($) . T) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((|#1|) . T))
@@ -2418,52 +2418,52 @@
(((|#1|) . T))
(((|#2|) |has| |#1| (-356)))
(((|#2|) |has| |#1| (-356)))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
(((|#1|) . T))
(((|#1|) |has| |#1| (-170)))
(((|#1|) . T))
-(((|#2|) . T) (((-1143)) -12 (|has| |#1| (-356)) (|has| |#2| (-1009 (-1143)))) (((-549)) -12 (|has| |#1| (-356)) (|has| |#2| (-1009 (-549)))) (((-400 (-549))) -12 (|has| |#1| (-356)) (|has| |#2| (-1009 (-549)))))
+(((|#2|) . T) (((-1142)) -12 (|has| |#1| (-356)) (|has| |#2| (-1009 (-1142)))) (((-549)) -12 (|has| |#1| (-356)) (|has| |#2| (-1009 (-549)))) (((-400 (-549))) -12 (|has| |#1| (-356)) (|has| |#2| (-1009 (-549)))))
(((|#2|) . T))
-((((-1143) #0=(-1212 |#1| |#2| |#3| |#4|)) |has| #0# (-505 (-1143) #0#)) ((#0# #0#) |has| #0# (-302 #0#)))
+((((-1142) #0=(-1211 |#1| |#2| |#3| |#4|)) |has| #0# (-505 (-1142) #0#)) ((#0# #0#) |has| #0# (-302 #0#)))
((((-592 $) $) . T) (($ $) . T))
-((((-167 (-219))) . T) (((-167 (-372))) . T) (((-1139 (-675))) . T) (((-863 (-372))) . T))
+((((-167 (-219))) . T) (((-167 (-372))) . T) (((-1138 (-675))) . T) (((-863 (-372))) . T))
((((-834)) . T))
(|has| |#1| (-541))
(|has| |#1| (-541))
(|has| (-400 |#2|) (-227))
(((|#1| (-400 (-549))) . T))
((($ $) . T))
-((((-1143)) |has| |#2| (-871 (-1143))))
+((((-1142)) |has| |#2| (-871 (-1142))))
((($) . T))
((((-834)) . T))
((((-400 (-549))) . T) (($) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
((((-834)) . T))
(((|#2|) |has| |#1| (-356)))
((((-372)) -12 (|has| |#1| (-356)) (|has| |#2| (-857 (-372)))) (((-549)) -12 (|has| |#1| (-356)) (|has| |#2| (-857 (-549)))))
(|has| |#1| (-356))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-541)))
(|has| |#1| (-356))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-541)))
(|has| |#1| (-356))
(|has| |#1| (-541))
-(((|#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))
+(((|#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))
(((|#3|) . T))
(((|#1|) . T))
(-1536 (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)))
(((|#2|) . T))
(((|#2|) . T))
(-1536 (|has| |#2| (-170)) (|has| |#2| (-703)) (|has| |#2| (-821)) (|has| |#2| (-1018)))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
-((((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
+((((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
(|has| |#1| (-38 (-400 (-549))))
(((|#1| |#2|) . T))
(|has| |#1| (-38 (-400 (-549))))
(-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))
(|has| |#1| (-145))
-((((-1125) |#1|) . T))
+((((-1124) |#1|) . T))
(-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))
(|has| |#1| (-145))
(-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))
@@ -2478,9 +2478,9 @@
(|has| |#1| (-145))
((((-834)) . T))
((($) . T))
-((((-400 (-549))) |has| |#2| (-1009 (-549))) (((-549)) |has| |#2| (-1009 (-549))) (((-1143)) |has| |#2| (-1009 (-1143))) ((|#2|) . T))
+((((-400 (-549))) |has| |#2| (-1009 (-549))) (((-549)) |has| |#2| (-1009 (-549))) (((-1142)) |has| |#2| (-1009 (-1142))) ((|#2|) . T))
(((#0=(-400 |#2|) #0#) . T) ((#1=(-400 (-549)) #1#) . T) (($ $) . T))
-((((-1107 |#1| |#2|)) . T))
+((((-1106 |#1| |#2|)) . T))
(((|#1| (-549)) . T))
(((|#1| (-400 (-549))) . T))
((((-549)) |has| |#2| (-857 (-549))) (((-372)) |has| |#2| (-857 (-372))))
@@ -2490,22 +2490,22 @@
(((|#1| |#2| (-234 |#1| |#2|) (-234 |#1| |#2|)) . T))
(((|#2|) . T))
((((-834)) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-((((-1143) (-52)) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+((((-1142) (-52)) . T))
((((-400 |#2|)) . T))
((((-834)) . T))
(((|#1|) . T))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
(|has| |#1| (-767))
(|has| |#1| (-767))
((((-525)) |has| |#1| (-594 (-525))))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1066))))
((((-114)) . T) ((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
((((-219)) . T) (((-372)) . T) (((-863 (-372))) . T))
((((-834)) . T))
-((((-1212 |#1| |#2| |#3| |#4|)) . T) (($) . T) (((-400 (-549))) . T))
+((((-1211 |#1| |#2| |#3| |#4|)) . T) (($) . T) (((-400 (-549))) . T))
(((|#1|) |has| |#1| (-170)) (($) |has| |#1| (-541)) (((-400 (-549))) |has| |#1| (-541)))
((((-834)) . T))
((((-834)) . T))
@@ -2524,18 +2524,18 @@
((((-167 (-372))) . T) (((-219)) . T) (((-372)) . T))
((((-834)) . T))
((((-834)) . T))
-((((-1125)) . T) (((-525)) . T) (((-549)) . T) (((-863 (-549))) . T) (((-372)) . T) (((-219)) . T))
+((((-1124)) . T) (((-525)) . T) (((-549)) . T) (((-863 (-549))) . T) (((-372)) . T) (((-219)) . T))
((((-834)) . T))
(|has| |#1| (-145))
(|has| |#1| (-143))
-((($) . T) ((#0=(-1211 |#2| |#3| |#4|)) |has| #0# (-170)) (((-400 (-549))) |has| #0# (-38 (-400 (-549)))))
+((($) . T) ((#0=(-1210 |#2| |#3| |#4|)) |has| #0# (-170)) (((-400 (-549))) |has| #0# (-38 (-400 (-549)))))
(((|#1|) . T) (($) . T) (((-400 (-549))) . T))
(|has| |#1| (-356))
(|has| |#1| (-356))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
-(-1536 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-465)) (|has| |#1| (-703)) (|has| |#1| (-871 (-1143))) (|has| |#1| (-1018)) (|has| |#1| (-1079)) (|has| |#1| (-1067)))
-(|has| |#1| (-1118))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
+(-1536 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-465)) (|has| |#1| (-703)) (|has| |#1| (-871 (-1142))) (|has| |#1| (-1018)) (|has| |#1| (-1078)) (|has| |#1| (-1066)))
+(|has| |#1| (-1117))
((((-549) |#1|) . T))
(((|#1|) . T))
(((#0=(-116 |#1|) $) |has| #0# (-279 #0# #0#)))
@@ -2544,7 +2544,7 @@
((((-114)) . T) ((|#1|) . T))
((((-834)) . T))
(((|#1| |#2|) . T))
-((((-1143) |#1|) . T))
+((((-1142) |#1|) . T))
(((|#1|) |has| |#1| (-302 |#1|)))
((((-549) |#1|) . T))
(((|#1|) . T))
@@ -2560,7 +2560,7 @@
(|has| |#1| (-356))
(|has| |#1| (-356))
(|has| |#1| (-541))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
((((-756 |#1| (-836 |#2|))) |has| (-756 |#1| (-836 |#2|)) (-302 (-756 |#1| (-836 |#2|)))))
(-1536 (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880)))
(((|#1|) . T))
@@ -2570,16 +2570,16 @@
(((|#1| (-521 |#2|)) . T))
(((|#1| (-747)) . T))
(|has| |#1| (-227))
-(((|#1| (-521 (-1055 (-1143)))) . T))
+(((|#1| (-521 (-1054 (-1142)))) . T))
(|has| |#2| (-356))
-((((-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) . T))
+((((-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) . T))
(((|#1|) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
((((-834)) . T))
((((-834)) . T))
(-1536 (|has| |#3| (-769)) (|has| |#3| (-821)))
((((-834)) . T))
-((((-1087)) . T) (((-834)) . T))
+((((-1086)) . T) (((-834)) . T))
((((-834)) . T))
(((|#1|) . T))
((($ $) . T) (((-592 $) $) . T))
@@ -2592,11 +2592,11 @@
(((#0=(-563 |#1|) #0#) . T) (($ $) . T) ((#1=(-400 (-549)) #1#) . T))
((($ $) . T) ((#0=(-400 (-549)) #0#) . T))
(((|#1|) |has| |#1| (-170)))
-(((|#1| (-1226 |#1|) (-1226 |#1|)) . T))
+(((|#1| (-1225 |#1|) (-1225 |#1|)) . T))
((((-563 |#1|)) . T) (($) . T) (((-400 (-549))) . T))
((($) . T) (((-400 (-549))) . T))
((($) . T) (((-400 (-549))) . T))
-(((|#2|) |has| |#2| (-6 (-4339 "*"))))
+(((|#2|) |has| |#2| (-6 (-4338 "*"))))
(((|#1|) . T))
(((|#1|) . T))
((((-834)) . T))
@@ -2622,18 +2622,18 @@
(|has| |#1| (-880))
((($) -1536 (|has| |#1| (-170)) (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880))) ((|#1|) . T) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
(((|#1|) . T))
-((((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) . T))
+((((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1| |#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
(((|#1|) . T))
-((((-1143)) . T) ((|#1|) . T))
+((((-1142)) . T) ((|#1|) . T))
((((-834)) . T))
((((-834)) . T))
-(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))
+(((|#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))
(((#0=(-400 (-549)) #0#) . T))
((((-400 (-549))) . T))
(-1536 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)))
@@ -2642,17 +2642,17 @@
(-1536 (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-821)) (|has| |#2| (-1018)))
((((-525)) . T))
((((-834)) . T))
-((((-1143)) |has| |#2| (-871 (-1143))) (((-1048)) . T))
-((((-1211 |#2| |#3| |#4|)) . T))
+((((-1142)) |has| |#2| (-871 (-1142))) (((-1048)) . T))
+((((-1210 |#2| |#3| |#4|)) . T))
((((-881 |#1|)) . T))
((($) . T) (((-400 (-549))) . T))
(-12 (|has| |#1| (-356)) (|has| |#2| (-796)))
(-12 (|has| |#1| (-356)) (|has| |#2| (-796)))
((((-834)) . T))
-(|has| |#1| (-1184))
+(|has| |#1| (-1183))
(((|#2|) . T))
((($ $) . T) ((#0=(-400 (-549)) #0#) . T))
-((((-1143)) |has| |#1| (-871 (-1143))))
+((((-1142)) |has| |#1| (-871 (-1142))))
((((-881 |#1|)) . T) (((-400 (-549))) . T) (($) . T))
((($) . T) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) ((|#1|) . T))
(((#0=(-400 (-549)) #0#) |has| |#1| (-38 (-400 (-549)))) ((|#1| |#1|) . T) (($ $) -1536 (|has| |#1| (-170)) (|has| |#1| (-541))))
@@ -2665,7 +2665,7 @@
((((-549)) . T))
(|has| |#1| (-767))
(|has| |#1| (-767))
-((((-1143) #0=(-116 |#1|)) |has| #0# (-505 (-1143) #0#)) ((#0# #0#) |has| #0# (-302 #0#)))
+((((-1142) #0=(-116 |#1|)) |has| #0# (-505 (-1142) #0#)) ((#0# #0#) |has| #0# (-302 #0#)))
(((|#2|) . T) (((-549)) |has| |#2| (-1009 (-549))) (((-400 (-549))) |has| |#2| (-1009 (-400 (-549)))))
((((-1048)) . T) ((|#2|) . T) (((-549)) |has| |#2| (-1009 (-549))) (((-400 (-549))) |has| |#2| (-1009 (-400 (-549)))))
(((|#1|) . T))
@@ -2674,13 +2674,13 @@
((((-549) (-747)) . T) ((|#3| (-747)) . T))
(((|#1|) . T))
(((|#1| |#2|) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
((((-834)) . T))
(|has| |#2| (-796))
(|has| |#2| (-796))
((((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) ((|#2|) |has| |#1| (-356)) (($) . T) ((|#1|) . T))
(((|#1|) . T) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (($) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))))
((((-549)) |has| |#1| (-857 (-549))) (((-372)) |has| |#1| (-857 (-372))))
(((|#1|) . T))
@@ -2692,7 +2692,7 @@
(|has| |#1| (-356))
(((|#1|) . T))
(((|#1|) . T))
-(((|#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))
+(((|#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))
(|has| |#1| (-356))
(((|#2|) . T))
(((|#1|) . T))
@@ -2703,7 +2703,7 @@
(((|#1|) . T))
(((|#1|) . T))
(((|#2| (-747)) . T))
-((((-1143)) . T))
+((((-1142)) . T))
((((-841 |#1|)) . T))
(-1536 (|has| |#3| (-25)) (|has| |#3| (-130)) (|has| |#3| (-170)) (|has| |#3| (-356)) (|has| |#3| (-769)) (|has| |#3| (-821)) (|has| |#3| (-1018)))
(-1536 (|has| |#3| (-170)) (|has| |#3| (-356)) (|has| |#3| (-821)) (|has| |#3| (-1018)))
@@ -2727,27 +2727,27 @@
(((|#1|) . T))
((((-834)) . T))
((($) . T) ((|#2|) . T) (((-400 (-549))) . T))
-(|has| |#1| (-1067))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(|has| |#1| (-1066))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
((((-834)) . T))
(|has| |#2| (-880))
-((((-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) . T))
+((((-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) . T))
((((-525)) |has| |#2| (-594 (-525))) (((-863 (-372))) |has| |#2| (-594 (-863 (-372)))) (((-863 (-549))) |has| |#2| (-594 (-863 (-549)))))
((((-834)) . T))
((((-834)) . T))
(((|#3|) |has| |#3| (-1018)) (((-549)) -12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018))))
-((((-1092 |#1| |#2|)) . T) (((-923 |#1|)) |has| |#2| (-594 (-1143))) (((-834)) . T))
-((((-923 |#1|)) |has| |#2| (-594 (-1143))) (((-1125)) -12 (|has| |#1| (-1009 (-549))) (|has| |#2| (-594 (-1143)))) (((-863 (-549))) -12 (|has| |#1| (-594 (-863 (-549)))) (|has| |#2| (-594 (-863 (-549))))) (((-863 (-372))) -12 (|has| |#1| (-594 (-863 (-372)))) (|has| |#2| (-594 (-863 (-372))))) (((-525)) -12 (|has| |#1| (-594 (-525))) (|has| |#2| (-594 (-525)))))
-((((-1139 |#1|)) . T) (((-834)) . T))
+((((-1091 |#1| |#2|)) . T) (((-923 |#1|)) |has| |#2| (-594 (-1142))) (((-834)) . T))
+((((-923 |#1|)) |has| |#2| (-594 (-1142))) (((-1124)) -12 (|has| |#1| (-1009 (-549))) (|has| |#2| (-594 (-1142)))) (((-863 (-549))) -12 (|has| |#1| (-594 (-863 (-549)))) (|has| |#2| (-594 (-863 (-549))))) (((-863 (-372))) -12 (|has| |#1| (-594 (-863 (-372)))) (|has| |#2| (-594 (-863 (-372))))) (((-525)) -12 (|has| |#1| (-594 (-525))) (|has| |#2| (-594 (-525)))))
+((((-1138 |#1|)) . T) (((-834)) . T))
((((-834)) . T))
((((-400 (-549))) |has| |#2| (-1009 (-400 (-549)))) (((-549)) |has| |#2| (-1009 (-549))) ((|#2|) . T) (((-836 |#1|)) . T))
((((-116 |#1|)) . T) (($) . T) (((-400 (-549))) . T))
-((((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) (((-549)) |has| |#1| (-1009 (-549))) ((|#1|) . T) (((-1143)) . T))
+((((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) (((-549)) |has| |#1| (-1009 (-549))) ((|#1|) . T) (((-1142)) . T))
((((-834)) . T))
((((-549)) . T))
((($) . T))
@@ -2768,23 +2768,23 @@
((((-400 (-549))) . T) (($) . T))
((((-400 |#2|) |#3|) . T))
(((|#1|) . T))
-(|has| |#1| (-1067))
-(((|#2| (-474 (-3775 |#1|) (-747))) . T))
+(|has| |#1| (-1066))
+(((|#2| (-474 (-3774 |#1|) (-747))) . T))
((((-549) |#1|) . T))
-((((-1125)) . T) (((-834)) . T))
+((((-1124)) . T) (((-834)) . T))
(((|#2| |#2|) . T))
-(((|#1| (-521 (-1143))) . T))
+(((|#1| (-521 (-1142))) . T))
(-1536 (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)))
((((-549)) . T))
(((|#2|) . T))
(((|#2|) . T))
-((((-1143)) |has| |#1| (-871 (-1143))) (((-1048)) . T))
+((((-1142)) |has| |#1| (-871 (-1142))) (((-1048)) . T))
(((|#1|) . T) (((-549)) |has| |#1| (-617 (-549))))
(|has| |#1| (-541))
((($) . T) (((-400 (-549))) . T))
((($) . T))
((($) . T))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
(((|#1|) . T))
((($) -1536 (|has| |#1| (-356)) (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880))) ((|#1|) |has| |#1| (-170)) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
((((-834)) . T))
@@ -2794,7 +2794,7 @@
(((|#1|) . T))
((((-834)) . T))
(((|#1|) . T))
-(|has| |#1| (-1118))
+(|has| |#1| (-1117))
(((|#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|))) . T))
(((|#1|) . T))
((((-400 $) (-400 $)) |has| |#1| (-541)) (($ $) . T) ((|#1| |#1|) . T))
@@ -2803,7 +2803,7 @@
((((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) (((-549)) |has| |#1| (-1009 (-549))) ((|#1|) . T) ((|#2|) . T))
((((-1048)) . T) ((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))))
((((-372)) -12 (|has| |#1| (-857 (-372))) (|has| |#2| (-857 (-372)))) (((-549)) -12 (|has| |#1| (-857 (-549))) (|has| |#2| (-857 (-549)))))
-((((-1212 |#1| |#2| |#3| |#4|)) . T))
+((((-1211 |#1| |#2| |#3| |#4|)) . T))
((((-549) |#1|) . T))
(((|#1| |#1|) . T))
((($) . T) ((|#2|) . T))
@@ -2813,20 +2813,20 @@
((((-756 |#1| (-836 |#2|))) . T))
((($) . T))
((((-400 (-549))) . T) (($) . T))
-(|has| |#1| (-1067))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
+(|has| |#1| (-1066))
(|has| |#2| (-356))
(|has| |#1| (-356))
(|has| |#1| (-356))
(|has| |#1| (-38 (-400 (-549))))
((((-549)) . T))
-((((-1143)) -12 (|has| |#4| (-871 (-1143))) (|has| |#4| (-1018))))
-((((-1143)) -12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018))))
+((((-1142)) -12 (|has| |#4| (-871 (-1142))) (|has| |#4| (-1018))))
+((((-1142)) -12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018))))
(((|#1|) . T))
(|has| |#1| (-227))
(((|#1| (-521 |#3|)) . T))
(|has| |#1| (-361))
-(((|#2| (-234 (-3775 |#1|) (-747))) . T))
+(((|#2| (-234 (-3774 |#1|) (-747))) . T))
(|has| |#1| (-361))
(|has| |#1| (-361))
(((|#1|) . T) (($) . T))
@@ -2846,15 +2846,15 @@
(((|#3|) |has| |#3| (-1018)))
(-12 (|has| |#1| (-356)) (|has| |#2| (-796)))
(-12 (|has| |#1| (-356)) (|has| |#2| (-796)))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1066))))
((((-525)) |has| |#1| (-594 (-525))))
((((-400 |#2|)) . T) (((-400 (-549))) . T) (($) . T))
((($ $) . T) ((#0=(-400 (-549)) #0#) . T))
((((-834)) . T))
((($) . T) (((-400 (-549))) . T))
(((|#1|) . T))
-(((|#4|) |has| |#4| (-1067)) (((-549)) -12 (|has| |#4| (-1009 (-549))) (|has| |#4| (-1067))) (((-400 (-549))) -12 (|has| |#4| (-1009 (-400 (-549)))) (|has| |#4| (-1067))))
-(((|#3|) |has| |#3| (-1067)) (((-549)) -12 (|has| |#3| (-1009 (-549))) (|has| |#3| (-1067))) (((-400 (-549))) -12 (|has| |#3| (-1009 (-400 (-549)))) (|has| |#3| (-1067))))
+(((|#4|) |has| |#4| (-1066)) (((-549)) -12 (|has| |#4| (-1009 (-549))) (|has| |#4| (-1066))) (((-400 (-549))) -12 (|has| |#4| (-1009 (-400 (-549)))) (|has| |#4| (-1066))))
+(((|#3|) |has| |#3| (-1066)) (((-549)) -12 (|has| |#3| (-1009 (-549))) (|has| |#3| (-1066))) (((-400 (-549))) -12 (|has| |#3| (-1009 (-400 (-549)))) (|has| |#3| (-1066))))
(|has| |#2| (-356))
(((|#2|) |has| |#2| (-1018)) (((-549)) -12 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018))))
(((|#1|) . T))
@@ -2871,9 +2871,9 @@
(((|#1|) . T) (($) . T) (((-400 (-549))) . T))
(((|#1|) . T) (($) . T) (((-400 (-549))) . T))
(((|#2|) . T))
-((((-834)) |has| |#1| (-1067)))
+((((-834)) |has| |#1| (-1066)))
((($) . T))
-((((-1212 |#1| |#2| |#3| |#4|)) . T))
+((((-1211 |#1| |#2| |#3| |#4|)) . T))
(((|#1|) . T))
(((|#1|) . T))
(|has| |#2| (-796))
@@ -2885,16 +2885,16 @@
(((|#1|) |has| |#2| (-410 |#1|)))
(((|#1|) |has| |#2| (-410 |#1|)))
((((-881 |#1|)) . T) (((-400 (-549))) . T) (($) . T))
-((((-834)) . T) (((-1148)) . T))
-((((-834)) . T) (((-1148)) . T))
-((((-834)) . T) (((-1148)) . T))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1067))))
+((((-834)) . T) (((-1147)) . T))
+((((-834)) . T) (((-1147)) . T))
+((((-834)) . T) (((-1147)) . T))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1066))))
((((-525)) |has| |#1| (-594 (-525))))
-((((-834)) . T) (((-1148)) . T))
+((((-834)) . T) (((-1147)) . T))
((((-834)) . T))
-((((-834)) . T) (((-1148)) . T))
-((((-1179)) . T) (((-834)) . T) (((-1148)) . T))
-((((-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) |has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))))
+((((-834)) . T) (((-1147)) . T))
+((((-1178)) . T) (((-834)) . T) (((-1147)) . T))
+((((-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) |has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))))
(-1536 (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880)))
((((-549) |#1|) . T))
((((-549) |#1|) . T))
@@ -2904,7 +2904,7 @@
(((|#1|) . T))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
(-1536 (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
-((((-1143)) |has| |#1| (-871 (-1143))) (((-794 (-1143))) . T))
+((((-1142)) |has| |#1| (-871 (-1142))) (((-794 (-1142))) . T))
(-1536 (|has| |#3| (-130)) (|has| |#3| (-170)) (|has| |#3| (-356)) (|has| |#3| (-769)) (|has| |#3| (-821)) (|has| |#3| (-1018)))
((((-795 |#1|)) . T))
(((|#1| |#2|) . T))
@@ -2913,7 +2913,7 @@
(((|#1| |#2|) . T))
(|has| |#1| (-38 (-400 (-549))))
((((-834)) . T))
-((((-1212 |#1| |#2| |#3| |#4|)) . T) (($) . T) (((-400 (-549))) . T))
+((((-1211 |#1| |#2| |#3| |#4|)) . T) (($) . T) (((-400 (-549))) . T))
(((|#1|) |has| |#1| (-170)) (($) |has| |#1| (-541)) (((-400 (-549))) |has| |#1| (-541)))
(((|#2|) . T) (((-549)) |has| |#2| (-617 (-549))))
(|has| |#1| (-356))
@@ -2924,22 +2924,22 @@
(((#0=(-400 (-549)) #0#) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (($ $) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) ((|#1| |#1|) . T))
((((-549) |#1|) . T))
((((-309 |#1|)) . T))
-(((#0=(-675) (-1139 #0#)) . T))
+(((#0=(-675) (-1138 #0#)) . T))
((((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) (($) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) ((|#1|) . T))
(((|#1| |#2| |#3| |#4|) . T))
(|has| |#1| (-821))
((($ $) . T) ((#0=(-836 |#1|) $) . T) ((#0# |#2|) . T))
-((((-1092 |#1| (-1143))) . T) (((-794 (-1143))) . T) ((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) (((-1143)) . T))
+((((-1091 |#1| (-1142))) . T) (((-794 (-1142))) . T) ((|#1|) . T) (((-549)) |has| |#1| (-1009 (-549))) (((-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) (((-1142)) . T))
((($) . T))
(((|#2| |#1|) . T) ((|#2| $) . T) (($ $) . T))
(((#0=(-1048) |#1|) . T) ((#0# $) . T) (($ $) . T))
-((($ $) . T) ((#0=(-1143) $) |has| |#1| (-227)) ((#0# |#1|) |has| |#1| (-227)) ((#1=(-1055 (-1143)) |#1|) . T) ((#1# $) . T))
+((($ $) . T) ((#0=(-1142) $) |has| |#1| (-227)) ((#0# |#1|) |has| |#1| (-227)) ((#1=(-1054 (-1142)) |#1|) . T) ((#1# $) . T))
((($) . T) ((|#2|) . T))
((($) . T) ((|#2|) . T) (((-400 (-549))) |has| |#2| (-38 (-400 (-549)))))
(|has| |#2| (-880))
-((($) . T) ((#0=(-1211 |#2| |#3| |#4|)) |has| #0# (-170)) (((-400 (-549))) |has| #0# (-38 (-400 (-549)))))
+((($) . T) ((#0=(-1210 |#2| |#3| |#4|)) |has| #0# (-170)) (((-400 (-549))) |has| #0# (-38 (-400 (-549)))))
((((-549) |#1|) . T))
-(((#0=(-1212 |#1| |#2| |#3| |#4|)) |has| #0# (-302 #0#)))
+(((#0=(-1211 |#1| |#2| |#3| |#4|)) |has| #0# (-302 #0#)))
((($) . T))
(((|#1|) . T))
((($ $) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) ((#0=(-400 (-549)) #0#) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) ((|#2| |#2|) |has| |#1| (-356)) ((|#1| |#1|) . T))
@@ -2950,25 +2950,25 @@
((($) . T) (((-400 (-549))) -1536 (|has| |#1| (-356)) (|has| |#1| (-342))) ((|#1|) . T))
((((-834)) . T))
(|has| |#1| (-821))
-((((-1143)) -12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))
+((((-1142)) -12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))
((((-400 |#2|) |#3|) . T))
(((|#1|) . T))
((((-834)) . T))
(((|#2| (-648 |#1|)) . T))
(-12 (|has| |#1| (-300)) (|has| |#1| (-880)))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#4|) . T))
(|has| |#1| (-541))
((($) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))) ((|#2|) |has| |#1| (-356)) ((|#1|) . T))
-((((-1143)) -1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143))))))
+((((-1142)) -1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142))))))
(((|#1|) . T) (($) -1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-541))) (((-400 (-549))) -1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-356))))
-((((-1143)) -12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143)))))
-((((-1143)) -12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143)))))
-(((|#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))
+((((-1142)) -12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142)))))
+((((-1142)) -12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142)))))
+(((|#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))
((((-549) |#1|) . T))
(-1536 (|has| |#2| (-170)) (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880)))
(((|#1|) . T))
-(((|#1| (-521 (-794 (-1143)))) . T))
+(((|#1| (-521 (-794 (-1142)))) . T))
(-1536 (|has| |#1| (-170)) (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
(-1536 (|has| |#1| (-170)) (|has| |#1| (-356)) (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
(((|#1|) . T))
@@ -2976,23 +2976,23 @@
(((|#1|) . T))
(-1536 (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)))
(-1536 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-769)) (|has| |#2| (-769))))
-((((-1218 |#1| |#2| |#3|)) |has| |#1| (-356)))
+((((-1217 |#1| |#2| |#3|)) |has| |#1| (-356)))
((($) . T) (((-841 |#1|)) . T) (((-400 (-549))) . T))
-((((-1218 |#1| |#2| |#3|)) |has| |#1| (-356)))
+((((-1217 |#1| |#2| |#3|)) |has| |#1| (-356)))
(|has| |#1| (-541))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
((((-400 |#2|)) . T))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-342)))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1066))))
((((-525)) |has| |#1| (-594 (-525))))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1066))))
((((-525)) |has| |#1| (-594 (-525))))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1066))))
((((-525)) |has| |#1| (-594 (-525))))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
(((|#1|) . T))
(((|#2| |#2|) . T) ((#0=(-400 (-549)) #0#) . T) (($ $) . T))
((((-549)) . T))
@@ -3003,8 +3003,8 @@
((((-400 (-549))) . T) (($) . T))
((((-549) |#1|) . T))
((((-834)) . T))
-((($ $) . T) (((-1143) $) . T))
-((((-1218 |#1| |#2| |#3|)) . T))
+((($ $) . T) (((-1142) $) . T))
+((((-1217 |#1| |#2| |#3|)) . T))
((((-525)) |has| |#2| (-594 (-525))) (((-863 (-372))) |has| |#2| (-594 (-863 (-372)))) (((-863 (-549))) |has| |#2| (-594 (-863 (-549)))))
((((-834)) . T))
((((-834)) . T))
@@ -3012,21 +3012,21 @@
((((-834)) . T))
((((-834)) . T))
((((-834)) . T))
-(((|#1|) . T) (((-834)) . T) (((-1148)) . T))
+(((|#1|) . T) (((-834)) . T) (((-1147)) . T))
((((-834)) . T))
-(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|))) . T))
(((|#1| |#2| (-234 |#1| |#2|) (-234 |#1| |#2|)) . T))
((((-834)) . T))
-((((-1218 |#1| |#2| |#3|)) |has| |#1| (-356)))
+((((-1217 |#1| |#2| |#3|)) |has| |#1| (-356)))
(|has| |#1| (-356))
-((((-1218 |#1| |#2| |#3|)) . T) (((-1190 |#1| |#2| |#3|)) . T))
-((((-1143)) . T) (((-834)) . T))
+((((-1217 |#1| |#2| |#3|)) . T) (((-1189 |#1| |#2| |#3|)) . T))
+((((-1142)) . T) (((-834)) . T))
((((-400 (-549))) |has| |#2| (-38 (-400 (-549)))) ((|#2|) |has| |#2| (-170)) (($) -1536 (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880))))
(((|#2|) . T) ((|#6|) . T))
((($) . T) (((-400 (-549))) |has| |#2| (-38 (-400 (-549)))) ((|#2|) . T))
((($) -1536 (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880))) ((|#1|) |has| |#1| (-170)) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
-((((-1071)) . T))
+((((-1070)) . T))
((((-834)) . T))
((($) -1536 (|has| |#1| (-356)) (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880))) ((|#1|) |has| |#1| (-170)) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
((($) . T) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((|#1|) . T))
@@ -3038,7 +3038,7 @@
(((|#1|) . T))
(((|#1| |#1|) |has| |#1| (-170)))
((((-675)) . T))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
(((|#1|) |has| |#1| (-170)))
(((|#1|) |has| |#1| (-170)))
((((-400 (-549))) . T) (($) . T))
@@ -3055,22 +3055,22 @@
(((|#1| (-521 |#2|) |#2|) . T))
((((-549) |#1|) . T))
((((-549) |#1|) . T))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
((((-549) |#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-((((-863 (-372))) . T) (((-863 (-549))) . T) (((-1143)) . T) (((-525)) . T))
+((((-863 (-372))) . T) (((-863 (-549))) . T) (((-1142)) . T) (((-525)) . T))
(((|#1|) . T))
((((-834)) . T))
(-1536 (|has| |#2| (-130)) (|has| |#2| (-170)) (|has| |#2| (-356)) (|has| |#2| (-769)) (|has| |#2| (-821)) (|has| |#2| (-1018)))
(-1536 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-769)) (|has| |#2| (-769))))
((((-549)) . T))
((((-549)) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
(((|#1| |#2|) . T))
(((|#1|) . T))
(-1536 (|has| |#2| (-170)) (|has| |#2| (-703)) (|has| |#2| (-821)) (|has| |#2| (-1018)))
-((((-1143)) -12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018))))
+((((-1142)) -12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018))))
(-1536 (-12 (|has| |#1| (-465)) (|has| |#2| (-465))) (-12 (|has| |#1| (-703)) (|has| |#2| (-703))))
(|has| |#1| (-143))
(|has| |#1| (-145))
@@ -3081,7 +3081,7 @@
((((-834)) . T))
(((|#1| (-747) (-1048)) . T))
((((-549) |#1|) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
((((-549) |#1|) . T))
((((-549) |#1|) . T))
((((-116 |#1|)) . T))
@@ -3092,7 +3092,7 @@
((((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((|#1|) |has| |#1| (-170)) (($) |has| |#1| (-541)))
((((-549)) . T))
((((-549)) . T))
-((((-1125) (-1143) (-549) (-219) (-834)) . T))
+((((-1124) (-1142) (-549) (-219) (-834)) . T))
(((|#1| |#2| |#3| |#4|) . T))
(((|#1| |#2|) . T))
(-1536 (|has| |#1| (-342)) (|has| |#1| (-361)))
@@ -3101,9 +3101,9 @@
((((-834)) . T))
((($) . T) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((|#1|) . T))
((($) . T) ((|#1|) . T) (((-400 (-549))) |has| |#1| (-38 (-400 (-549)))))
-(((|#2|) |has| |#2| (-1067)) (((-549)) -12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1067))) (((-400 (-549))) -12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1067))))
+(((|#2|) |has| |#2| (-1066)) (((-549)) -12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1066))) (((-400 (-549))) -12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1066))))
((((-525)) |has| |#1| (-594 (-525))))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-823)) (|has| |#1| (-1066))))
((($) . T) (((-400 (-549))) . T))
(|has| |#1| (-880))
(|has| |#1| (-880))
@@ -3119,7 +3119,7 @@
(((|#1|) |has| |#1| (-170)))
(((|#1|) . T))
(((|#1|) . T))
-((((-834)) -1536 (-12 (|has| |#1| (-593 (-834))) (|has| |#2| (-593 (-834)))) (-12 (|has| |#1| (-1067)) (|has| |#2| (-1067)))))
+((((-834)) -1536 (-12 (|has| |#1| (-593 (-834))) (|has| |#2| (-593 (-834)))) (-12 (|has| |#1| (-1066)) (|has| |#2| (-1066)))))
((((-400 |#2|) |#3|) . T))
((((-400 (-549))) . T) (($) . T))
(|has| |#1| (-38 (-400 (-549))))
@@ -3133,7 +3133,7 @@
((($) . T) (((-400 (-549))) . T))
(-1536 (|has| |#4| (-170)) (|has| |#4| (-703)) (|has| |#4| (-821)) (|has| |#4| (-1018)))
(-1536 (|has| |#3| (-170)) (|has| |#3| (-703)) (|has| |#3| (-821)) (|has| |#3| (-1018)))
-((((-834)) . T) (((-1148)) . T))
+((((-834)) . T) (((-1147)) . T))
(|has| |#4| (-769))
(-1536 (|has| |#4| (-769)) (|has| |#4| (-821)))
(|has| |#4| (-821))
@@ -3142,11 +3142,11 @@
(|has| |#3| (-821))
((((-549)) . T))
(((|#2|) . T))
-((((-1143)) -1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143))))))
-((((-1143)) -12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143)))))
-((((-1143)) -12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143)))))
+((((-1142)) -1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142))))))
+((((-1142)) -12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142)))))
+((((-1142)) -12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142)))))
(((|#1| |#1|) . T) (($ $) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
@@ -3154,28 +3154,28 @@
(((|#1|) . T) (($) . T))
(((|#1|) . T))
((((-836 |#1|)) . T))
-((((-1141 |#1| |#2| |#3|)) |has| |#1| (-356)))
-((((-1107 |#1| |#2|)) . T))
-((((-1141 |#1| |#2| |#3|)) |has| |#1| (-356)))
-(((|#2|) . T) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
-((((-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) . T))
+((((-1140 |#1| |#2| |#3|)) |has| |#1| (-356)))
+((((-1106 |#1| |#2|)) . T))
+((((-1140 |#1| |#2| |#3|)) |has| |#1| (-356)))
+(((|#2|) . T) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
+((((-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) . T))
((($) . T))
(|has| |#1| (-993))
-(((|#2|) . T) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
((((-834)) . T))
((((-525)) |has| |#2| (-594 (-525))) (((-863 (-549))) |has| |#2| (-594 (-863 (-549)))) (((-863 (-372))) |has| |#2| (-594 (-863 (-372)))) (((-372)) . #0=(|has| |#2| (-993))) (((-219)) . #0#))
-((((-1143) (-52)) . T))
+((((-1142) (-52)) . T))
(|has| |#1| (-38 (-400 (-549))))
(|has| |#1| (-38 (-400 (-549))))
(((|#2|) . T))
((($ $) . T))
((((-400 (-549))) . T) (((-675)) . T) (($) . T))
-((((-1141 |#1| |#2| |#3|)) . T))
-((((-1141 |#1| |#2| |#3|)) . T) (((-1134 |#1| |#2| |#3|)) . T))
+((((-1140 |#1| |#2| |#3|)) . T))
+((((-1140 |#1| |#2| |#3|)) . T) (((-1133 |#1| |#2| |#3|)) . T))
((((-834)) . T))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
((((-549) |#1|) . T))
-((((-1141 |#1| |#2| |#3|)) |has| |#1| (-356)))
+((((-1140 |#1| |#2| |#3|)) |has| |#1| (-356)))
(((|#1| |#2| |#3| |#4|) . T))
(((|#1|) . T))
(((|#2|) . T))
@@ -3193,7 +3193,7 @@
((((-834)) . T))
((((-834)) . T))
(((|#1|) . T))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
((((-129)) . T) (((-834)) . T))
((((-549) |#1|) . T))
(((|#1|) . T))
@@ -3202,38 +3202,38 @@
(((|#2| $) -12 (|has| |#1| (-356)) (|has| |#2| (-279 |#2| |#2|))) (($ $) . T))
((($ $) . T))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-444)) (|has| |#1| (-880)))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
((((-834)) . T))
((((-834)) . T))
((((-834)) . T))
(((|#1| (-521 |#2|)) . T))
-((((-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) . T))
+((((-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) . T))
(((|#1| (-549)) . T))
(((|#1| (-400 (-549))) . T))
(((|#1| (-747)) . T))
-((((-834)) . T) (((-1148)) . T))
-((((-834)) . T) (((-1148)) . T))
-((((-834)) . T) (((-1148)) . T))
+((((-834)) . T) (((-1147)) . T))
+((((-834)) . T) (((-1147)) . T))
+((((-834)) . T) (((-1147)) . T))
((((-116 |#1|)) . T) (($) . T) (((-400 (-549))) . T))
-((((-834)) . T) (((-1148)) . T))
-((((-834)) . T) (((-1148)) . T))
-((((-834)) . T) (((-1148)) . T))
+((((-834)) . T) (((-1147)) . T))
+((((-834)) . T) (((-1147)) . T))
+((((-834)) . T) (((-1147)) . T))
(-1536 (|has| |#2| (-444)) (|has| |#2| (-541)) (|has| |#2| (-880)))
(-1536 (|has| |#1| (-444)) (|has| |#1| (-541)) (|has| |#1| (-880)))
((($) . T))
(((|#2| (-521 (-836 |#1|))) . T))
-((((-834)) . T) (((-1148)) . T))
-((((-834)) . T) (((-1148)) . T))
+((((-834)) . T) (((-1147)) . T))
+((((-834)) . T) (((-1147)) . T))
((((-549) |#1|) . T))
-((((-834)) . T) (((-1148)) . T))
+((((-834)) . T) (((-1147)) . T))
(((|#2|) . T))
(((|#2| (-747)) . T))
-((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1067))))
+((((-834)) -1536 (|has| |#1| (-593 (-834))) (|has| |#1| (-1066))))
(((|#1|) . T))
(((|#1| |#2|) . T))
-((((-1125) |#1|) . T))
+((((-1124) |#1|) . T))
((((-400 |#2|)) . T))
-((((-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T))
+((((-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T))
(|has| |#1| (-541))
(|has| |#1| (-541))
((($) . T) ((|#2|) . T))
@@ -3243,24 +3243,24 @@
(((|#1| (-621 |#1|)) |has| |#1| (-821)))
(-1536 (|has| |#1| (-227)) (|has| |#1| (-342)))
(-1536 (|has| |#1| (-356)) (|has| |#1| (-342)))
-(|has| |#1| (-1067))
+(|has| |#1| (-1066))
(((|#1|) . T))
((((-400 (-549))) . T) (($) . T))
((((-970 |#1|)) . T) ((|#1|) . T) (((-549)) -1536 (|has| (-970 |#1|) (-1009 (-549))) (|has| |#1| (-1009 (-549)))) (((-400 (-549))) -1536 (|has| (-970 |#1|) (-1009 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549))))))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-((((-1143)) |has| |#1| (-871 (-1143))))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
-(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+((((-1142)) |has| |#1| (-871 (-1142))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
+(((|#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))
(((|#1| (-582 |#1| |#3|) (-582 |#1| |#2|)) . T))
(((|#1|) . T))
(((|#1| |#2| |#3| |#4|) . T))
-(((#0=(-1107 |#1| |#2|) #0#) |has| (-1107 |#1| |#2|) (-302 (-1107 |#1| |#2|))))
-(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) ((#0=(-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) #0#) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))))
+(((#0=(-1106 |#1| |#2|) #0#) |has| (-1106 |#1| |#2|) (-302 (-1106 |#1| |#2|))))
+(((|#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) ((#0=(-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) #0#) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))))
(((#0=(-116 |#1|)) |has| #0# (-302 #0#)))
((($ $) . T))
-(-1536 (|has| |#1| (-823)) (|has| |#1| (-1067)))
+(-1536 (|has| |#1| (-823)) (|has| |#1| (-1066)))
((($ $) . T) ((#0=(-836 |#1|) $) . T) ((#0# |#2|) . T))
((($ $) . T) ((|#2| $) |has| |#1| (-227)) ((|#2| |#1|) |has| |#1| (-227)) ((|#3| |#1|) . T) ((|#3| $) . T))
-(((-470 . -1067) T) ((-257 . -505) 144877) ((-241 . -505) 144820) ((-239 . -1067) 144770) ((-556 . -111) 144755) ((-521 . -23) T) ((-137 . -1067) T) ((-136 . -1067) T) ((-117 . -302) 144712) ((-132 . -1067) T) ((-471 . -505) 144504) ((-670 . -101) T) ((-1108 . -505) 144423) ((-383 . -130) T) ((-1239 . -947) 144392) ((-31 . -92) T) ((-582 . -481) 144376) ((-599 . -130) T) ((-795 . -819) T) ((-514 . -56) 144326) ((-58 . -505) 144259) ((-510 . -505) 144192) ((-411 . -871) 144151) ((-167 . -1018) T) ((-507 . -505) 144084) ((-488 . -505) 144017) ((-487 . -505) 143950) ((-775 . -1009) 143733) ((-675 . -38) 143698) ((-336 . -342) T) ((-1061 . -1060) 143682) ((-1061 . -1067) 143660) ((-167 . -237) 143611) ((-167 . -227) 143562) ((-1061 . -1062) 143520) ((-843 . -279) 143478) ((-219 . -771) T) ((-219 . -768) T) ((-670 . -277) NIL) ((-1117 . -1156) 143457) ((-400 . -963) 143441) ((-677 . -21) T) ((-677 . -25) T) ((-1241 . -624) 143415) ((-309 . -158) 143394) ((-309 . -141) 143373) ((-1117 . -106) 143323) ((-133 . -25) T) ((-40 . -225) 143300) ((-116 . -21) T) ((-116 . -25) T) ((-588 . -281) 143276) ((-467 . -281) 143255) ((-1199 . -1018) T) ((-828 . -1018) T) ((-775 . -331) 143239) ((-117 . -1118) NIL) ((-90 . -593) 143171) ((-469 . -130) T) ((-574 . -1180) T) ((-1199 . -319) 143148) ((-556 . -1018) T) ((-1199 . -227) T) ((-638 . -694) 143132) ((-1063 . -593) 143098) ((-929 . -281) 143075) ((-59 . -34) T) ((-1057 . -593) 143041) ((-1040 . -593) 143007) ((-1029 . -771) T) ((-1029 . -768) T) ((-792 . -703) T) ((-708 . -47) 142972) ((-601 . -38) 142959) ((-348 . -283) T) ((-345 . -283) T) ((-337 . -283) T) ((-257 . -283) 142890) ((-241 . -283) 142821) ((-1033 . -593) 142787) ((-1007 . -593) 142753) ((-995 . -101) T) ((-990 . -593) 142719) ((-406 . -703) T) ((-117 . -38) 142664) ((-604 . -593) 142630) ((-406 . -465) T) ((-475 . -593) 142596) ((-347 . -101) T) ((-212 . -593) 142562) ((-1174 . -1025) T) ((-688 . -1025) T) ((-1141 . -47) 142539) ((-1140 . -47) 142509) ((-1134 . -47) 142486) ((-1006 . -149) 142432) ((-881 . -283) T) ((-1093 . -47) 142404) ((-670 . -302) NIL) ((-506 . -593) 142386) ((-501 . -593) 142368) ((-499 . -593) 142350) ((-320 . -1067) 142300) ((-689 . -444) 142231) ((-48 . -101) T) ((-1210 . -279) 142216) ((-1189 . -279) 142136) ((-621 . -642) 142120) ((-621 . -627) 142104) ((-332 . -21) T) ((-332 . -25) T) ((-40 . -342) NIL) ((-172 . -21) T) ((-172 . -25) T) ((-621 . -366) 142088) ((-582 . -279) 142065) ((-585 . -593) 142032) ((-381 . -101) T) ((-1087 . -141) T) ((-126 . -593) 141964) ((-845 . -1067) T) ((-634 . -404) 141948) ((-691 . -593) 141930) ((-160 . -593) 141912) ((-155 . -593) 141894) ((-1241 . -703) T) ((-1069 . -34) T) ((-842 . -771) NIL) ((-842 . -768) NIL) ((-831 . -823) T) ((-708 . -857) NIL) ((-1250 . -130) T) ((-374 . -130) T) ((-875 . -101) T) ((-708 . -1009) 141770) ((-521 . -130) T) ((-1054 . -404) 141754) ((-971 . -481) 141738) ((-117 . -393) 141715) ((-1134 . -1180) 141694) ((-758 . -404) 141678) ((-756 . -404) 141662) ((-914 . -34) T) ((-670 . -1118) NIL) ((-244 . -624) 141497) ((-243 . -624) 141319) ((-793 . -891) 141298) ((-446 . -404) 141282) ((-582 . -19) 141266) ((-1113 . -1173) 141235) ((-1134 . -857) NIL) ((-1134 . -855) 141187) ((-582 . -584) 141164) ((-1166 . -593) 141096) ((-1142 . -593) 141078) ((-61 . -388) T) ((-1140 . -1009) 141013) ((-1134 . -1009) 140979) ((-670 . -38) 140929) ((-466 . -279) 140914) ((-708 . -370) 140898) ((-634 . -1025) T) ((-1210 . -973) 140864) ((-1189 . -973) 140830) ((-1030 . -1156) 140805) ((-843 . -594) 140613) ((-843 . -593) 140595) ((-1153 . -481) 140532) ((-411 . -993) 140511) ((-48 . -302) 140498) ((-1030 . -106) 140444) ((-471 . -481) 140381) ((-511 . -1180) T) ((-1134 . -331) 140333) ((-1108 . -481) 140304) ((-1134 . -370) 140256) ((-1054 . -1025) T) ((-430 . -101) T) ((-181 . -1067) T) ((-244 . -34) T) ((-243 . -34) T) ((-758 . -1025) T) ((-756 . -1025) T) ((-708 . -871) 140233) ((-446 . -1025) T) ((-58 . -481) 140217) ((-1005 . -1024) 140191) ((-510 . -481) 140175) ((-507 . -481) 140159) ((-488 . -481) 140143) ((-487 . -481) 140127) ((-239 . -505) 140060) ((-1005 . -111) 140027) ((-1141 . -871) 139940) ((-1140 . -871) 139846) ((-1134 . -871) 139679) ((-646 . -1079) T) ((-1093 . -871) 139663) ((-622 . -92) T) ((-347 . -1118) T) ((-315 . -1024) 139645) ((-244 . -767) 139624) ((-244 . -770) 139575) ((-244 . -769) 139554) ((-243 . -767) 139533) ((-243 . -770) 139484) ((-243 . -769) 139463) ((-31 . -593) 139429) ((-50 . -1025) T) ((-244 . -703) 139339) ((-243 . -703) 139249) ((-1174 . -1067) T) ((-646 . -23) T) ((-563 . -1025) T) ((-509 . -1025) T) ((-372 . -1024) 139214) ((-315 . -111) 139189) ((-72 . -376) T) ((-72 . -388) T) ((-995 . -38) 139126) ((-670 . -393) 139108) ((-98 . -101) T) ((-688 . -1067) T) ((-974 . -143) 139080) ((-974 . -145) 139052) ((-372 . -111) 139008) ((-312 . -1184) 138987) ((-466 . -973) 138953) ((-347 . -38) 138918) ((-40 . -363) 138890) ((-844 . -593) 138762) ((-127 . -125) 138746) ((-121 . -125) 138730) ((-810 . -1024) 138700) ((-809 . -21) 138652) ((-803 . -1024) 138636) ((-809 . -25) 138588) ((-312 . -541) 138539) ((-549 . -804) T) ((-234 . -1180) T) ((-810 . -111) 138504) ((-803 . -111) 138483) ((-1210 . -593) 138465) ((-1189 . -593) 138447) ((-1189 . -594) 138120) ((-1139 . -880) 138099) ((-1092 . -880) 138078) ((-48 . -38) 138043) ((-1248 . -1079) T) ((-582 . -593) 137955) ((-582 . -594) 137916) ((-1246 . -1079) T) ((-234 . -1009) 137743) ((-1139 . -624) 137668) ((-1092 . -624) 137593) ((-695 . -593) 137575) ((-827 . -624) 137549) ((-482 . -1067) T) ((-1248 . -23) T) ((-1246 . -23) T) ((-1005 . -1018) T) ((-1153 . -279) 137528) ((-167 . -361) 137479) ((-975 . -1180) T) ((-44 . -23) T) ((-471 . -279) 137458) ((-567 . -1067) T) ((-1113 . -1076) 137427) ((-1071 . -1070) 137379) ((-128 . -1180) T) ((-383 . -21) T) ((-383 . -25) T) ((-150 . -1079) T) ((-1254 . -101) T) ((-975 . -855) 137361) ((-975 . -857) 137343) ((-1174 . -694) 137240) ((-601 . -225) 137224) ((-599 . -21) T) ((-282 . -541) T) ((-599 . -25) T) ((-1160 . -1067) T) ((-688 . -694) 137189) ((-234 . -370) 137158) ((-975 . -1009) 137118) ((-372 . -1018) T) ((-217 . -1025) T) ((-117 . -225) 137095) ((-58 . -279) 137072) ((-150 . -23) T) ((-507 . -279) 137049) ((-320 . -505) 136982) ((-487 . -279) 136959) ((-372 . -237) T) ((-372 . -227) T) ((-810 . -1018) T) ((-803 . -1018) T) ((-689 . -920) 136928) ((-677 . -823) T) ((-466 . -593) 136910) ((-803 . -227) 136889) ((-133 . -823) T) ((-634 . -1067) T) ((-1153 . -584) 136868) ((-535 . -1156) 136847) ((-329 . -1067) T) ((-312 . -356) 136826) ((-400 . -145) 136805) ((-400 . -143) 136784) ((-935 . -1079) 136683) ((-234 . -871) 136615) ((-791 . -1079) 136525) ((-630 . -825) 136509) ((-471 . -584) 136488) ((-535 . -106) 136438) ((-975 . -370) 136420) ((-975 . -331) 136402) ((-96 . -1067) T) ((-935 . -23) 136213) ((-469 . -21) T) ((-469 . -25) T) ((-791 . -23) 136083) ((-1143 . -593) 136065) ((-58 . -19) 136049) ((-1143 . -594) 135971) ((-1139 . -703) T) ((-1092 . -703) T) ((-507 . -19) 135955) ((-487 . -19) 135939) ((-58 . -584) 135916) ((-1054 . -1067) T) ((-872 . -101) 135894) ((-827 . -703) T) ((-758 . -1067) T) ((-507 . -584) 135871) ((-487 . -584) 135848) ((-756 . -1067) T) ((-756 . -1032) 135815) ((-453 . -1067) T) ((-446 . -1067) T) ((-567 . -694) 135790) ((-625 . -1067) T) ((-975 . -871) NIL) ((-1218 . -47) 135767) ((-605 . -1079) T) ((-646 . -130) T) ((-1212 . -101) T) ((-1211 . -47) 135737) ((-1190 . -47) 135714) ((-1174 . -170) 135665) ((-1046 . -1184) 135616) ((-268 . -1067) T) ((-84 . -433) T) ((-84 . -388) T) ((-1140 . -300) 135595) ((-1134 . -300) 135574) ((-50 . -1067) T) ((-1046 . -541) 135525) ((-688 . -170) T) ((-576 . -47) 135502) ((-219 . -624) 135467) ((-563 . -1067) T) ((-509 . -1067) T) ((-352 . -1184) T) ((-346 . -1184) T) ((-338 . -1184) T) ((-479 . -796) T) ((-479 . -891) T) ((-312 . -1079) T) ((-107 . -1184) T) ((-332 . -823) T) ((-211 . -891) T) ((-211 . -796) T) ((-691 . -1024) 135437) ((-352 . -541) T) ((-346 . -541) T) ((-338 . -541) T) ((-107 . -541) T) ((-634 . -694) 135407) ((-1134 . -993) NIL) ((-312 . -23) T) ((-66 . -1180) T) ((-971 . -593) 135339) ((-670 . -225) 135321) ((-691 . -111) 135286) ((-621 . -34) T) ((-239 . -481) 135270) ((-1069 . -1065) 135254) ((-169 . -1067) T) ((-923 . -880) 135233) ((-473 . -880) 135212) ((-1254 . -1118) T) ((-1250 . -21) T) ((-1250 . -25) T) ((-1248 . -130) T) ((-1246 . -130) T) ((-1054 . -694) 135061) ((-1029 . -624) 135048) ((-923 . -624) 134973) ((-758 . -694) 134802) ((-525 . -593) 134784) ((-525 . -594) 134765) ((-756 . -694) 134614) ((-1239 . -101) T) ((-1043 . -101) T) ((-374 . -25) T) ((-374 . -21) T) ((-473 . -624) 134539) ((-453 . -694) 134510) ((-446 . -694) 134359) ((-958 . -101) T) ((-1222 . -593) 134325) ((-1211 . -1009) 134260) ((-1190 . -1180) 134239) ((-714 . -101) T) ((-1190 . -857) NIL) ((-1190 . -855) 134191) ((-1153 . -594) NIL) ((-1153 . -593) 134173) ((-521 . -25) T) ((-1109 . -1090) 134118) ((-1015 . -1173) 134047) ((-872 . -302) 133985) ((-336 . -1025) T) ((-139 . -101) T) ((-44 . -130) T) ((-282 . -1079) T) ((-657 . -92) T) ((-652 . -92) T) ((-640 . -593) 133967) ((-622 . -593) 133920) ((-470 . -92) T) ((-348 . -593) 133902) ((-345 . -593) 133884) ((-337 . -593) 133866) ((-257 . -594) 133614) ((-257 . -593) 133596) ((-241 . -593) 133578) ((-241 . -594) 133439) ((-137 . -92) T) ((-136 . -92) T) ((-132 . -92) T) ((-1190 . -1009) 133405) ((-1174 . -505) 133372) ((-1108 . -593) 133354) ((-795 . -830) T) ((-795 . -703) T) ((-582 . -281) 133331) ((-563 . -694) 133296) ((-471 . -594) NIL) ((-471 . -593) 133278) ((-509 . -694) 133223) ((-309 . -101) T) ((-306 . -101) T) ((-282 . -23) T) ((-150 . -130) T) ((-379 . -703) T) ((-843 . -1024) 133175) ((-881 . -593) 133157) ((-881 . -594) 133139) ((-843 . -111) 133077) ((-135 . -101) T) ((-114 . -101) T) ((-689 . -1202) 133061) ((-691 . -1018) T) ((-670 . -342) NIL) ((-510 . -593) 132993) ((-372 . -771) T) ((-217 . -1067) T) ((-372 . -768) T) ((-219 . -770) T) ((-219 . -767) T) ((-58 . -594) 132954) ((-58 . -593) 132866) ((-219 . -703) T) ((-507 . -594) 132827) ((-507 . -593) 132739) ((-488 . -593) 132671) ((-487 . -594) 132632) ((-487 . -593) 132544) ((-1046 . -356) 132495) ((-40 . -404) 132472) ((-76 . -1180) T) ((-842 . -880) NIL) ((-352 . -322) 132456) ((-352 . -356) T) ((-346 . -322) 132440) ((-346 . -356) T) ((-338 . -322) 132424) ((-338 . -356) T) ((-309 . -277) 132403) ((-107 . -356) T) ((-69 . -1180) T) ((-1190 . -331) 132355) ((-842 . -624) 132300) ((-1190 . -370) 132252) ((-935 . -130) 132107) ((-791 . -130) 131977) ((-929 . -627) 131961) ((-1054 . -170) 131872) ((-929 . -366) 131856) ((-1029 . -770) T) ((-1029 . -767) T) ((-758 . -170) 131747) ((-756 . -170) 131658) ((-792 . -47) 131620) ((-1029 . -703) T) ((-320 . -481) 131604) ((-923 . -703) T) ((-446 . -170) 131515) ((-239 . -279) 131492) ((-473 . -703) T) ((-1239 . -302) 131430) ((-1218 . -871) 131343) ((-1211 . -871) 131249) ((-1210 . -1024) 131084) ((-1190 . -871) 130917) ((-1189 . -1024) 130725) ((-1174 . -283) 130704) ((-1113 . -149) 130688) ((-1087 . -101) T) ((-1041 . -101) T) ((-898 . -926) T) ((-714 . -302) 130626) ((-74 . -1180) T) ((-30 . -926) T) ((-167 . -880) 130579) ((-640 . -375) 130551) ((-112 . -817) T) ((-1 . -593) 130533) ((-1085 . -1067) T) ((-1046 . -23) T) ((-50 . -598) 130517) ((-1046 . -1079) T) ((-974 . -402) 130489) ((-576 . -871) 130402) ((-431 . -101) T) ((-139 . -302) NIL) ((-843 . -1018) T) ((-809 . -823) 130381) ((-80 . -1180) T) ((-688 . -283) T) ((-40 . -1025) T) ((-563 . -170) T) ((-509 . -170) T) ((-502 . -593) 130363) ((-167 . -624) 130273) ((-498 . -593) 130255) ((-344 . -145) 130237) ((-344 . -143) T) ((-352 . -1079) T) ((-346 . -1079) T) ((-338 . -1079) T) ((-975 . -300) T) ((-885 . -300) T) ((-843 . -237) T) ((-107 . -1079) T) ((-843 . -227) 130216) ((-1210 . -111) 130037) ((-1189 . -111) 129826) ((-239 . -1214) 129810) ((-549 . -821) T) ((-352 . -23) T) ((-347 . -342) T) ((-309 . -302) 129797) ((-306 . -302) 129738) ((-346 . -23) T) ((-312 . -130) T) ((-338 . -23) T) ((-975 . -993) T) ((-107 . -23) T) ((-239 . -584) 129715) ((-1212 . -38) 129607) ((-1199 . -880) 129586) ((-112 . -1067) T) ((-1006 . -101) T) ((-1199 . -624) 129511) ((-842 . -770) NIL) ((-828 . -624) 129485) ((-842 . -767) NIL) ((-792 . -857) NIL) ((-842 . -703) T) ((-1054 . -505) 129358) ((-758 . -505) 129305) ((-756 . -505) 129257) ((-556 . -624) 129244) ((-792 . -1009) 129072) ((-446 . -505) 129015) ((-381 . -382) T) ((-59 . -1180) T) ((-599 . -823) 128994) ((-491 . -637) T) ((-1113 . -947) 128963) ((-974 . -444) T) ((-675 . -821) T) ((-501 . -768) T) ((-466 . -1024) 128798) ((-336 . -1067) T) ((-306 . -1118) NIL) ((-282 . -130) T) ((-387 . -1067) T) ((-670 . -363) 128765) ((-841 . -1025) T) ((-217 . -598) 128742) ((-320 . -279) 128719) ((-466 . -111) 128540) ((-1210 . -1018) T) ((-1189 . -1018) T) ((-792 . -370) 128524) ((-167 . -703) T) ((-630 . -101) T) ((-1210 . -237) 128503) ((-1210 . -227) 128455) ((-1189 . -227) 128360) ((-1189 . -237) 128339) ((-974 . -395) NIL) ((-646 . -617) 128287) ((-309 . -38) 128197) ((-306 . -38) 128126) ((-68 . -593) 128108) ((-312 . -484) 128074) ((-1153 . -281) 128053) ((-1080 . -1079) 127963) ((-82 . -1180) T) ((-60 . -593) 127945) ((-471 . -281) 127924) ((-1241 . -1009) 127901) ((-1131 . -1067) T) ((-1080 . -23) 127771) ((-792 . -871) 127707) ((-1199 . -703) T) ((-1069 . -1180) T) ((-1054 . -283) 127638) ((-937 . -1067) T) ((-864 . -101) T) ((-758 . -283) 127549) ((-320 . -19) 127533) ((-58 . -281) 127510) ((-756 . -283) 127441) ((-828 . -703) T) ((-117 . -821) NIL) ((-507 . -281) 127418) ((-320 . -584) 127395) ((-487 . -281) 127372) ((-446 . -283) 127303) ((-1006 . -302) 127154) ((-556 . -703) T) ((-657 . -593) 127104) ((-652 . -593) 127070) ((-638 . -593) 127052) ((-470 . -593) 127018) ((-239 . -594) 126979) ((-239 . -593) 126891) ((-137 . -593) 126857) ((-136 . -593) 126823) ((-132 . -593) 126789) ((-1114 . -34) T) ((-914 . -1180) T) ((-336 . -694) 126734) ((-646 . -25) T) ((-646 . -21) T) ((-466 . -1018) T) ((-613 . -410) 126699) ((-587 . -410) 126664) ((-1087 . -1118) T) ((-563 . -283) T) ((-509 . -283) T) ((-1211 . -300) 126643) ((-466 . -227) 126595) ((-466 . -237) 126574) ((-1190 . -300) 126553) ((-1190 . -993) NIL) ((-1046 . -130) T) ((-843 . -771) 126532) ((-142 . -101) T) ((-40 . -1067) T) ((-843 . -768) 126511) ((-621 . -981) 126495) ((-562 . -1025) T) ((-549 . -1025) T) ((-486 . -1025) T) ((-400 . -444) T) ((-352 . -130) T) ((-309 . -393) 126479) ((-306 . -393) 126440) ((-346 . -130) T) ((-338 . -130) T) ((-1148 . -1067) T) ((-1087 . -38) 126427) ((-1061 . -593) 126394) ((-107 . -130) T) ((-925 . -1067) T) ((-892 . -1067) T) ((-747 . -1067) T) ((-648 . -1067) T) ((-497 . -1050) T) ((-677 . -145) T) ((-116 . -145) T) ((-1248 . -21) T) ((-1248 . -25) T) ((-1246 . -21) T) ((-1246 . -25) T) ((-640 . -1024) 126378) ((-521 . -823) T) ((-491 . -823) T) ((-348 . -1024) 126330) ((-345 . -1024) 126282) ((-337 . -1024) 126234) ((-244 . -1180) T) ((-243 . -1180) T) ((-257 . -1024) 126077) ((-241 . -1024) 125920) ((-640 . -111) 125899) ((-348 . -111) 125837) ((-345 . -111) 125775) ((-337 . -111) 125713) ((-257 . -111) 125542) ((-241 . -111) 125371) ((-793 . -1184) 125350) ((-601 . -404) 125334) ((-44 . -21) T) ((-44 . -25) T) ((-791 . -617) 125240) ((-793 . -541) 125219) ((-244 . -1009) 125046) ((-243 . -1009) 124873) ((-126 . -119) 124857) ((-881 . -1024) 124822) ((-675 . -1025) T) ((-689 . -101) T) ((-336 . -170) T) ((-150 . -21) T) ((-150 . -25) T) ((-87 . -593) 124804) ((-881 . -111) 124760) ((-40 . -694) 124705) ((-841 . -1067) T) ((-320 . -594) 124666) ((-320 . -593) 124578) ((-1189 . -768) 124531) ((-1189 . -771) 124484) ((-244 . -370) 124453) ((-243 . -370) 124422) ((-630 . -38) 124392) ((-588 . -34) T) ((-474 . -1079) 124302) ((-467 . -34) T) ((-1080 . -130) 124172) ((-935 . -25) 123983) ((-845 . -593) 123965) ((-935 . -21) 123920) ((-791 . -21) 123830) ((-791 . -25) 123681) ((-601 . -1025) T) ((-1145 . -541) 123660) ((-1139 . -47) 123637) ((-348 . -1018) T) ((-345 . -1018) T) ((-474 . -23) 123507) ((-337 . -1018) T) ((-257 . -1018) T) ((-241 . -1018) T) ((-1092 . -47) 123479) ((-117 . -1025) T) ((-1005 . -624) 123453) ((-929 . -34) T) ((-348 . -227) 123432) ((-348 . -237) T) ((-345 . -227) 123411) ((-345 . -237) T) ((-241 . -319) 123368) ((-337 . -227) 123347) ((-337 . -237) T) ((-257 . -319) 123319) ((-257 . -227) 123298) ((-1123 . -149) 123282) ((-244 . -871) 123214) ((-243 . -871) 123146) ((-1048 . -823) T) ((-1193 . -1180) T) ((-407 . -1079) T) ((-1022 . -23) T) ((-881 . -1018) T) ((-315 . -624) 123128) ((-995 . -821) T) ((-1174 . -973) 123094) ((-1140 . -891) 123073) ((-1134 . -891) 123052) ((-881 . -237) T) ((-793 . -356) 123031) ((-378 . -23) T) ((-127 . -1067) 123009) ((-121 . -1067) 122987) ((-881 . -227) T) ((-1134 . -796) NIL) ((-372 . -624) 122952) ((-841 . -694) 122939) ((-1015 . -149) 122904) ((-40 . -170) T) ((-670 . -404) 122886) ((-689 . -302) 122873) ((-810 . -624) 122833) ((-803 . -624) 122807) ((-312 . -25) T) ((-312 . -21) T) ((-634 . -279) 122786) ((-562 . -1067) T) ((-549 . -1067) T) ((-486 . -1067) T) ((-239 . -281) 122763) ((-306 . -225) 122724) ((-1139 . -857) NIL) ((-1092 . -857) 122583) ((-129 . -823) T) ((-1139 . -1009) 122463) ((-1092 . -1009) 122346) ((-181 . -593) 122328) ((-827 . -1009) 122224) ((-758 . -279) 122151) ((-793 . -1079) T) ((-1005 . -703) T) ((-582 . -627) 122135) ((-1015 . -947) 122064) ((-970 . -101) T) ((-793 . -23) T) ((-689 . -1118) 122042) ((-670 . -1025) T) ((-582 . -366) 122026) ((-344 . -444) T) ((-336 . -283) T) ((-1227 . -1067) T) ((-242 . -1067) T) ((-392 . -101) T) ((-282 . -21) T) ((-282 . -25) T) ((-354 . -703) T) ((-687 . -1067) T) ((-675 . -1067) T) ((-354 . -465) T) ((-1174 . -593) 122008) ((-1139 . -370) 121992) ((-1092 . -370) 121976) ((-995 . -404) 121938) ((-139 . -223) 121920) ((-372 . -770) T) ((-372 . -767) T) ((-841 . -170) T) ((-372 . -703) T) ((-688 . -593) 121902) ((-689 . -38) 121731) ((-1226 . -1224) 121715) ((-344 . -395) T) ((-1226 . -1067) 121665) ((-562 . -694) 121652) ((-549 . -694) 121639) ((-486 . -694) 121604) ((-309 . -607) 121583) ((-810 . -703) T) ((-803 . -703) T) ((-621 . -1180) T) ((-1046 . -617) 121531) ((-1139 . -871) 121474) ((-1092 . -871) 121458) ((-638 . -1024) 121442) ((-107 . -617) 121424) ((-474 . -130) 121294) ((-1145 . -1079) T) ((-923 . -47) 121263) ((-601 . -1067) T) ((-638 . -111) 121242) ((-482 . -593) 121208) ((-320 . -281) 121185) ((-473 . -47) 121142) ((-1145 . -23) T) ((-117 . -1067) T) ((-102 . -101) 121120) ((-1238 . -1079) T) ((-1022 . -130) T) ((-995 . -1025) T) ((-795 . -1009) 121104) ((-974 . -701) 121076) ((-1238 . -23) T) ((-675 . -694) 121041) ((-567 . -593) 121023) ((-379 . -1009) 121007) ((-347 . -1025) T) ((-378 . -130) T) ((-317 . -1009) 120991) ((-219 . -857) 120973) ((-975 . -891) T) ((-90 . -34) T) ((-975 . -796) T) ((-885 . -891) T) ((-479 . -1184) T) ((-1160 . -593) 120955) ((-1072 . -1067) T) ((-211 . -1184) T) ((-970 . -302) 120920) ((-219 . -1009) 120880) ((-40 . -283) T) ((-1046 . -21) T) ((-1046 . -25) T) ((-1087 . -804) T) ((-479 . -541) T) ((-352 . -25) T) ((-211 . -541) T) ((-352 . -21) T) ((-346 . -25) T) ((-346 . -21) T) ((-691 . -624) 120840) ((-338 . -25) T) ((-338 . -21) T) ((-107 . -25) T) ((-107 . -21) T) ((-48 . -1025) T) ((-562 . -170) T) ((-549 . -170) T) ((-486 . -170) T) ((-634 . -593) 120822) ((-714 . -713) 120806) ((-329 . -593) 120788) ((-67 . -376) T) ((-67 . -388) T) ((-1069 . -106) 120772) ((-1029 . -857) 120754) ((-923 . -857) 120679) ((-629 . -1079) T) ((-601 . -694) 120666) ((-473 . -857) NIL) ((-1113 . -101) T) ((-1029 . -1009) 120648) ((-96 . -593) 120630) ((-469 . -145) T) ((-923 . -1009) 120510) ((-117 . -694) 120455) ((-629 . -23) T) ((-473 . -1009) 120331) ((-1054 . -594) NIL) ((-1054 . -593) 120313) ((-758 . -594) NIL) ((-758 . -593) 120274) ((-756 . -594) 119908) ((-756 . -593) 119822) ((-1080 . -617) 119728) ((-453 . -593) 119710) ((-446 . -593) 119692) ((-446 . -594) 119553) ((-1006 . -223) 119499) ((-126 . -34) T) ((-793 . -130) T) ((-843 . -880) 119478) ((-625 . -593) 119460) ((-348 . -1245) 119444) ((-345 . -1245) 119428) ((-337 . -1245) 119412) ((-127 . -505) 119345) ((-121 . -505) 119278) ((-502 . -768) T) ((-502 . -771) T) ((-501 . -770) T) ((-102 . -302) 119216) ((-216 . -101) 119194) ((-670 . -1067) T) ((-675 . -170) T) ((-843 . -624) 119146) ((-64 . -377) T) ((-268 . -593) 119128) ((-64 . -388) T) ((-923 . -370) 119112) ((-841 . -283) T) ((-50 . -593) 119094) ((-970 . -38) 119042) ((-563 . -593) 119024) ((-473 . -370) 119008) ((-563 . -594) 118990) ((-509 . -593) 118972) ((-881 . -1245) 118959) ((-842 . -1180) T) ((-677 . -444) T) ((-486 . -505) 118925) ((-479 . -356) T) ((-348 . -361) 118904) ((-345 . -361) 118883) ((-337 . -361) 118862) ((-211 . -356) T) ((-691 . -703) T) ((-116 . -444) T) ((-1249 . -1240) 118846) ((-842 . -855) 118823) ((-842 . -857) NIL) ((-935 . -823) 118722) ((-791 . -823) 118673) ((-630 . -632) 118657) ((-1166 . -34) T) ((-169 . -593) 118639) ((-1080 . -21) 118549) ((-1080 . -25) 118400) ((-842 . -1009) 118377) ((-923 . -871) 118358) ((-1199 . -47) 118335) ((-881 . -361) T) ((-58 . -627) 118319) ((-507 . -627) 118303) ((-473 . -871) 118280) ((-70 . -433) T) ((-70 . -388) T) ((-487 . -627) 118264) ((-58 . -366) 118248) ((-601 . -170) T) ((-507 . -366) 118232) ((-487 . -366) 118216) ((-803 . -685) 118200) ((-1139 . -300) 118179) ((-1145 . -130) T) ((-117 . -170) T) ((-1113 . -302) 118117) ((-167 . -1180) T) ((-613 . -721) 118101) ((-587 . -721) 118085) ((-1238 . -130) T) ((-1211 . -891) 118064) ((-1190 . -891) 118043) ((-1190 . -796) NIL) ((-670 . -694) 117993) ((-1189 . -880) 117946) ((-995 . -1067) T) ((-842 . -370) 117923) ((-842 . -331) 117900) ((-876 . -1079) T) ((-167 . -855) 117884) ((-167 . -857) 117809) ((-479 . -1079) T) ((-347 . -1067) T) ((-211 . -1079) T) ((-75 . -433) T) ((-75 . -388) T) ((-167 . -1009) 117705) ((-312 . -823) T) ((-1226 . -505) 117638) ((-1210 . -624) 117535) ((-1189 . -624) 117405) ((-843 . -770) 117384) ((-843 . -767) 117363) ((-843 . -703) T) ((-479 . -23) T) ((-217 . -593) 117345) ((-172 . -444) T) ((-216 . -302) 117283) ((-85 . -433) T) ((-85 . -388) T) ((-211 . -23) T) ((-1250 . -1243) 117262) ((-562 . -283) T) ((-549 . -283) T) ((-653 . -1009) 117246) ((-486 . -283) T) ((-135 . -462) 117201) ((-48 . -1067) T) ((-689 . -225) 117185) ((-842 . -871) NIL) ((-1199 . -857) NIL) ((-860 . -101) T) ((-856 . -101) T) ((-381 . -1067) T) ((-167 . -370) 117169) ((-167 . -331) 117153) ((-1199 . -1009) 117033) ((-828 . -1009) 116929) ((-1109 . -101) T) ((-629 . -130) T) ((-117 . -505) 116837) ((-638 . -768) 116816) ((-638 . -771) 116795) ((-556 . -1009) 116777) ((-287 . -1233) 116747) ((-837 . -101) T) ((-934 . -541) 116726) ((-1174 . -1024) 116609) ((-474 . -617) 116515) ((-875 . -1067) T) ((-995 . -694) 116452) ((-688 . -1024) 116417) ((-596 . -101) T) ((-582 . -34) T) ((-1114 . -1180) T) ((-1174 . -111) 116286) ((-466 . -624) 116183) ((-347 . -694) 116128) ((-167 . -871) 116087) ((-675 . -283) T) ((-670 . -170) T) ((-688 . -111) 116043) ((-1254 . -1025) T) ((-1199 . -370) 116027) ((-411 . -1184) 116005) ((-1085 . -593) 115987) ((-306 . -821) NIL) ((-411 . -541) T) ((-219 . -300) T) ((-1189 . -767) 115940) ((-1189 . -770) 115893) ((-1210 . -703) T) ((-1189 . -703) T) ((-48 . -694) 115858) ((-219 . -993) T) ((-344 . -1233) 115835) ((-1212 . -404) 115801) ((-695 . -703) T) ((-1199 . -871) 115744) ((-112 . -593) 115726) ((-112 . -594) 115708) ((-695 . -465) T) ((-474 . -21) 115618) ((-127 . -481) 115602) ((-121 . -481) 115586) ((-474 . -25) 115437) ((-601 . -283) T) ((-567 . -1024) 115412) ((-430 . -1067) T) ((-1029 . -300) T) ((-117 . -283) T) ((-1071 . -101) T) ((-974 . -101) T) ((-567 . -111) 115380) ((-1109 . -302) 115318) ((-1174 . -1018) T) ((-1029 . -993) T) ((-65 . -1180) T) ((-1022 . -25) T) ((-1022 . -21) T) ((-688 . -1018) T) ((-378 . -21) T) ((-378 . -25) T) ((-670 . -505) NIL) ((-995 . -170) T) ((-688 . -237) T) ((-1029 . -534) T) ((-497 . -101) T) ((-493 . -101) T) ((-347 . -170) T) ((-336 . -593) 115300) ((-387 . -593) 115282) ((-466 . -703) T) ((-1087 . -821) T) ((-863 . -1009) 115250) ((-107 . -823) T) ((-634 . -1024) 115234) ((-479 . -130) T) ((-1212 . -1025) T) ((-211 . -130) T) ((-1123 . -101) 115212) ((-98 . -1067) T) ((-239 . -642) 115196) ((-239 . -627) 115180) ((-634 . -111) 115159) ((-309 . -404) 115143) ((-239 . -366) 115127) ((-1126 . -229) 115074) ((-970 . -225) 115058) ((-73 . -1180) T) ((-48 . -170) T) ((-677 . -380) T) ((-677 . -141) T) ((-1249 . -101) T) ((-1054 . -1024) 114901) ((-257 . -880) 114880) ((-241 . -880) 114859) ((-758 . -1024) 114682) ((-756 . -1024) 114525) ((-588 . -1180) T) ((-1131 . -593) 114507) ((-1054 . -111) 114336) ((-1015 . -101) T) ((-467 . -1180) T) ((-453 . -1024) 114307) ((-446 . -1024) 114150) ((-640 . -624) 114134) ((-842 . -300) T) ((-758 . -111) 113943) ((-756 . -111) 113772) ((-348 . -624) 113724) ((-345 . -624) 113676) ((-337 . -624) 113628) ((-257 . -624) 113553) ((-241 . -624) 113478) ((-1125 . -823) T) ((-1055 . -1009) 113462) ((-453 . -111) 113423) ((-446 . -111) 113252) ((-1042 . -1009) 113229) ((-971 . -34) T) ((-937 . -593) 113211) ((-929 . -1180) T) ((-126 . -981) 113195) ((-934 . -1079) T) ((-842 . -993) NIL) ((-712 . -1079) T) ((-692 . -1079) T) ((-1226 . -481) 113179) ((-1109 . -38) 113139) ((-934 . -23) T) ((-816 . -101) T) ((-793 . -21) T) ((-793 . -25) T) ((-712 . -23) T) ((-692 . -23) T) ((-110 . -637) T) ((-881 . -624) 113104) ((-563 . -1024) 113069) ((-509 . -1024) 113014) ((-221 . -56) 112972) ((-445 . -23) T) ((-400 . -101) T) ((-256 . -101) T) ((-670 . -283) T) ((-837 . -38) 112942) ((-563 . -111) 112898) ((-509 . -111) 112827) ((-411 . -1079) T) ((-309 . -1025) 112717) ((-306 . -1025) T) ((-634 . -1018) T) ((-1254 . -1067) T) ((-167 . -300) 112648) ((-411 . -23) T) ((-40 . -593) 112630) ((-40 . -594) 112614) ((-107 . -963) 112596) ((-116 . -840) 112580) ((-48 . -505) 112546) ((-1166 . -981) 112530) ((-1148 . -593) 112512) ((-1153 . -34) T) ((-925 . -593) 112478) ((-892 . -593) 112460) ((-1080 . -823) 112411) ((-747 . -593) 112393) ((-648 . -593) 112375) ((-1123 . -302) 112313) ((-471 . -34) T) ((-1059 . -1180) T) ((-469 . -444) T) ((-1054 . -1018) T) ((-1108 . -34) T) ((-758 . -1018) T) ((-756 . -1018) T) ((-623 . -229) 112297) ((-610 . -229) 112243) ((-1199 . -300) 112222) ((-1054 . -319) 112183) ((-446 . -1018) T) ((-1145 . -21) T) ((-1054 . -227) 112162) ((-758 . -319) 112139) ((-758 . -227) T) ((-756 . -319) 112111) ((-708 . -1184) 112090) ((-320 . -627) 112074) ((-1145 . -25) T) ((-58 . -34) T) ((-510 . -34) T) ((-507 . -34) T) ((-446 . -319) 112053) ((-320 . -366) 112037) ((-488 . -34) T) ((-487 . -34) T) ((-974 . -1118) NIL) ((-613 . -101) T) ((-587 . -101) T) ((-708 . -541) 111968) ((-348 . -703) T) ((-345 . -703) T) ((-337 . -703) T) ((-257 . -703) T) ((-241 . -703) T) ((-1015 . -302) 111876) ((-872 . -1067) 111854) ((-50 . -1018) T) ((-1238 . -21) T) ((-1238 . -25) T) ((-1141 . -541) 111833) ((-1140 . -1184) 111812) ((-563 . -1018) T) ((-509 . -1018) T) ((-1134 . -1184) 111791) ((-354 . -1009) 111775) ((-315 . -1009) 111759) ((-995 . -283) T) ((-372 . -857) 111741) ((-1140 . -541) 111692) ((-1134 . -541) 111643) ((-974 . -38) 111588) ((-775 . -1079) T) ((-881 . -703) T) ((-563 . -237) T) ((-563 . -227) T) ((-509 . -227) T) ((-509 . -237) T) ((-1093 . -541) 111567) ((-347 . -283) T) ((-623 . -671) 111551) ((-372 . -1009) 111511) ((-1087 . -1025) T) ((-102 . -125) 111495) ((-775 . -23) T) ((-1226 . -279) 111472) ((-400 . -302) 111437) ((-1248 . -1243) 111413) ((-1246 . -1243) 111392) ((-1212 . -1067) T) ((-841 . -593) 111374) ((-810 . -1009) 111343) ((-197 . -763) T) ((-196 . -763) T) ((-195 . -763) T) ((-194 . -763) T) ((-193 . -763) T) ((-192 . -763) T) ((-191 . -763) T) ((-190 . -763) T) ((-189 . -763) T) ((-188 . -763) T) ((-486 . -973) T) ((-267 . -812) T) ((-266 . -812) T) ((-265 . -812) T) ((-264 . -812) T) ((-48 . -283) T) ((-263 . -812) T) ((-262 . -812) T) ((-261 . -812) T) ((-187 . -763) T) ((-592 . -823) T) ((-630 . -404) 111327) ((-110 . -823) T) ((-629 . -21) T) ((-629 . -25) T) ((-1249 . -38) 111297) ((-117 . -279) 111248) ((-1226 . -19) 111232) ((-1226 . -584) 111209) ((-1239 . -1067) T) ((-1043 . -1067) T) ((-958 . -1067) T) ((-934 . -130) T) ((-714 . -1067) T) ((-712 . -130) T) ((-692 . -130) T) ((-502 . -769) T) ((-400 . -1118) 111187) ((-445 . -130) T) ((-502 . -770) T) ((-217 . -1018) T) ((-287 . -101) 110969) ((-139 . -1067) T) ((-675 . -973) T) ((-90 . -1180) T) ((-127 . -593) 110901) ((-121 . -593) 110833) ((-1254 . -170) T) ((-1140 . -356) 110812) ((-1134 . -356) 110791) ((-309 . -1067) T) ((-411 . -130) T) ((-306 . -1067) T) ((-400 . -38) 110743) ((-1100 . -101) T) ((-1212 . -694) 110635) ((-630 . -1025) T) ((-1102 . -1221) T) ((-312 . -143) 110614) ((-312 . -145) 110593) ((-135 . -1067) T) ((-114 . -1067) T) ((-831 . -101) T) ((-562 . -593) 110575) ((-549 . -594) 110474) ((-549 . -593) 110456) ((-486 . -593) 110438) ((-486 . -594) 110383) ((-477 . -23) T) ((-474 . -823) 110334) ((-479 . -617) 110316) ((-936 . -593) 110298) ((-211 . -617) 110280) ((-219 . -397) T) ((-638 . -624) 110264) ((-1139 . -891) 110243) ((-708 . -1079) T) ((-344 . -101) T) ((-1179 . -1050) T) ((-794 . -823) T) ((-708 . -23) T) ((-336 . -1024) 110188) ((-1125 . -1124) T) ((-1114 . -106) 110172) ((-1141 . -1079) T) ((-1140 . -1079) T) ((-506 . -1009) 110156) ((-1134 . -1079) T) ((-1093 . -1079) T) ((-336 . -111) 110085) ((-975 . -1184) T) ((-126 . -1180) T) ((-885 . -1184) T) ((-670 . -279) NIL) ((-1227 . -593) 110067) ((-1141 . -23) T) ((-1140 . -23) T) ((-1134 . -23) T) ((-975 . -541) T) ((-1109 . -225) 110051) ((-885 . -541) T) ((-1093 . -23) T) ((-242 . -593) 110033) ((-1041 . -1067) T) ((-775 . -130) T) ((-687 . -593) 110015) ((-309 . -694) 109925) ((-306 . -694) 109854) ((-675 . -593) 109836) ((-675 . -594) 109781) ((-400 . -393) 109765) ((-431 . -1067) T) ((-479 . -25) T) ((-479 . -21) T) ((-1087 . -1067) T) ((-211 . -25) T) ((-211 . -21) T) ((-689 . -404) 109749) ((-691 . -1009) 109718) ((-1226 . -593) 109630) ((-1226 . -594) 109591) ((-1212 . -170) T) ((-239 . -34) T) ((-897 . -945) T) ((-1166 . -1180) T) ((-638 . -767) 109570) ((-638 . -770) 109549) ((-391 . -388) T) ((-514 . -101) 109527) ((-1006 . -1067) T) ((-216 . -966) 109511) ((-495 . -101) T) ((-601 . -593) 109493) ((-45 . -823) NIL) ((-601 . -594) 109470) ((-1006 . -590) 109445) ((-872 . -505) 109378) ((-336 . -1018) T) ((-117 . -594) NIL) ((-117 . -593) 109360) ((-843 . -1180) T) ((-646 . -410) 109344) ((-646 . -1090) 109289) ((-491 . -149) 109271) ((-336 . -227) T) ((-336 . -237) T) ((-40 . -1024) 109216) ((-843 . -855) 109200) ((-843 . -857) 109125) ((-689 . -1025) T) ((-670 . -973) NIL) ((-3 . |UnionCategory|) T) ((-1210 . -47) 109095) ((-1189 . -47) 109072) ((-1108 . -981) 109043) ((-219 . -891) T) ((-40 . -111) 108972) ((-843 . -1009) 108836) ((-1087 . -694) 108823) ((-1072 . -593) 108805) ((-1046 . -145) 108784) ((-1046 . -143) 108735) ((-975 . -356) T) ((-312 . -1168) 108701) ((-372 . -300) T) ((-312 . -1165) 108667) ((-309 . -170) 108646) ((-306 . -170) T) ((-974 . -225) 108623) ((-885 . -356) T) ((-563 . -1245) 108610) ((-509 . -1245) 108587) ((-352 . -145) 108566) ((-352 . -143) 108517) ((-346 . -145) 108496) ((-346 . -143) 108447) ((-588 . -1156) 108423) ((-338 . -145) 108402) ((-338 . -143) 108353) ((-312 . -35) 108319) ((-467 . -1156) 108298) ((0 . |EnumerationCategory|) T) ((-312 . -94) 108264) ((-372 . -993) T) ((-107 . -145) T) ((-107 . -143) NIL) ((-45 . -229) 108214) ((-630 . -1067) T) ((-588 . -106) 108161) ((-477 . -130) T) ((-467 . -106) 108111) ((-234 . -1079) 108021) ((-843 . -370) 108005) ((-843 . -331) 107989) ((-234 . -23) 107859) ((-1029 . -891) T) ((-1029 . -796) T) ((-563 . -361) T) ((-509 . -361) T) ((-344 . -1118) T) ((-320 . -34) T) ((-44 . -410) 107843) ((-844 . -1180) T) ((-383 . -721) 107827) ((-1239 . -505) 107760) ((-708 . -130) T) ((-1218 . -541) 107739) ((-1211 . -1184) 107718) ((-1211 . -541) 107669) ((-1190 . -1184) 107648) ((-304 . -1050) T) ((-1190 . -541) 107599) ((-714 . -505) 107532) ((-1189 . -1180) 107511) ((-1189 . -857) 107384) ((-864 . -1067) T) ((-142 . -817) T) ((-1189 . -855) 107354) ((-667 . -593) 107336) ((-1141 . -130) T) ((-514 . -302) 107274) ((-1140 . -130) T) ((-139 . -505) NIL) ((-1134 . -130) T) ((-1093 . -130) T) ((-995 . -973) T) ((-975 . -23) T) ((-344 . -38) 107239) ((-975 . -1079) T) ((-885 . -1079) T) ((-81 . -593) 107221) ((-40 . -1018) T) ((-841 . -1024) 107208) ((-974 . -342) NIL) ((-843 . -871) 107167) ((-677 . -101) T) ((-942 . -23) T) ((-582 . -1180) T) ((-885 . -23) T) ((-841 . -111) 107152) ((-420 . -1079) T) ((-466 . -47) 107122) ((-207 . -101) T) ((-133 . -101) T) ((-40 . -227) 107094) ((-40 . -237) T) ((-116 . -101) T) ((-577 . -541) 107073) ((-576 . -541) 107052) ((-670 . -593) 107034) ((-670 . -594) 106942) ((-309 . -505) 106908) ((-306 . -505) 106800) ((-1210 . -1009) 106784) ((-1189 . -1009) 106570) ((-970 . -404) 106554) ((-420 . -23) T) ((-1087 . -170) T) ((-1212 . -283) T) ((-630 . -694) 106524) ((-142 . -1067) T) ((-48 . -973) T) ((-400 . -225) 106508) ((-288 . -229) 106458) ((-842 . -891) T) ((-842 . -796) NIL) ((-836 . -823) T) ((-1189 . -331) 106428) ((-1189 . -370) 106398) ((-216 . -1088) 106382) ((-1226 . -281) 106359) ((-1174 . -624) 106284) ((-934 . -21) T) ((-934 . -25) T) ((-712 . -21) T) ((-712 . -25) T) ((-692 . -21) T) ((-692 . -25) T) ((-688 . -624) 106249) ((-445 . -21) T) ((-445 . -25) T) ((-332 . -101) T) ((-172 . -101) T) ((-970 . -1025) T) ((-841 . -1018) T) ((-750 . -101) T) ((-1211 . -356) 106228) ((-1210 . -871) 106134) ((-1190 . -356) 106113) ((-1189 . -871) 105964) ((-995 . -593) 105946) ((-400 . -804) 105899) ((-1141 . -484) 105865) ((-167 . -891) 105796) ((-1140 . -484) 105762) ((-1134 . -484) 105728) ((-689 . -1067) T) ((-1093 . -484) 105694) ((-562 . -1024) 105681) ((-549 . -1024) 105668) ((-486 . -1024) 105633) ((-309 . -283) 105612) ((-306 . -283) T) ((-347 . -593) 105594) ((-411 . -25) T) ((-411 . -21) T) ((-98 . -279) 105573) ((-562 . -111) 105558) ((-549 . -111) 105543) ((-486 . -111) 105499) ((-1143 . -857) 105466) ((-872 . -481) 105450) ((-48 . -593) 105432) ((-48 . -594) 105377) ((-234 . -130) 105247) ((-1199 . -891) 105226) ((-792 . -1184) 105205) ((-1006 . -505) 105049) ((-381 . -593) 105031) ((-792 . -541) 104962) ((-567 . -624) 104937) ((-257 . -47) 104909) ((-241 . -47) 104866) ((-521 . -500) 104843) ((-971 . -1180) T) ((-675 . -1024) 104808) ((-1218 . -1079) T) ((-1211 . -1079) T) ((-1190 . -1079) T) ((-974 . -363) 104780) ((-112 . -361) T) ((-466 . -871) 104686) ((-1218 . -23) T) ((-1211 . -23) T) ((-875 . -593) 104668) ((-90 . -106) 104652) ((-1174 . -703) T) ((-876 . -823) 104603) ((-677 . -1118) T) ((-675 . -111) 104559) ((-1190 . -23) T) ((-577 . -1079) T) ((-576 . -1079) T) ((-689 . -694) 104388) ((-688 . -703) T) ((-1087 . -283) T) ((-975 . -130) T) ((-479 . -823) T) ((-942 . -130) T) ((-885 . -130) T) ((-775 . -25) T) ((-211 . -823) T) ((-775 . -21) T) ((-562 . -1018) T) ((-549 . -1018) T) ((-486 . -1018) T) ((-577 . -23) T) ((-336 . -1245) 104365) ((-312 . -444) 104344) ((-332 . -302) 104331) ((-576 . -23) T) ((-420 . -130) T) ((-634 . -624) 104305) ((-239 . -981) 104289) ((-843 . -300) T) ((-1250 . -1240) 104273) ((-747 . -768) T) ((-747 . -771) T) ((-677 . -38) 104260) ((-549 . -227) T) ((-486 . -237) T) ((-486 . -227) T) ((-1117 . -229) 104210) ((-1054 . -880) 104189) ((-116 . -38) 104176) ((-203 . -776) T) ((-202 . -776) T) ((-201 . -776) T) ((-200 . -776) T) ((-843 . -993) 104155) ((-1239 . -481) 104139) ((-758 . -880) 104118) ((-756 . -880) 104097) ((-1153 . -1180) T) ((-446 . -880) 104076) ((-714 . -481) 104060) ((-1054 . -624) 103985) ((-758 . -624) 103910) ((-601 . -1024) 103897) ((-471 . -1180) T) ((-336 . -361) T) ((-139 . -481) 103879) ((-756 . -624) 103804) ((-1108 . -1180) T) ((-453 . -624) 103775) ((-257 . -857) 103634) ((-241 . -857) NIL) ((-117 . -1024) 103579) ((-446 . -624) 103504) ((-640 . -1009) 103481) ((-601 . -111) 103466) ((-348 . -1009) 103450) ((-345 . -1009) 103434) ((-337 . -1009) 103418) ((-257 . -1009) 103262) ((-241 . -1009) 103138) ((-117 . -111) 103067) ((-58 . -1180) T) ((-510 . -1180) T) ((-507 . -1180) T) ((-488 . -1180) T) ((-487 . -1180) T) ((-430 . -593) 103049) ((-427 . -593) 103031) ((-3 . -101) T) ((-998 . -1173) 103000) ((-809 . -101) T) ((-665 . -56) 102958) ((-675 . -1018) T) ((-50 . -624) 102932) ((-282 . -444) T) ((-468 . -1173) 102901) ((0 . -101) T) ((-563 . -624) 102866) ((-509 . -624) 102811) ((-49 . -101) T) ((-881 . -1009) 102798) ((-675 . -237) T) ((-1046 . -402) 102777) ((-708 . -617) 102725) ((-970 . -1067) T) ((-689 . -170) 102616) ((-479 . -963) 102598) ((-257 . -370) 102582) ((-241 . -370) 102566) ((-392 . -1067) T) ((-332 . -38) 102550) ((-997 . -101) 102528) ((-211 . -963) 102510) ((-172 . -38) 102442) ((-1210 . -300) 102421) ((-1189 . -300) 102400) ((-634 . -703) T) ((-98 . -593) 102382) ((-1134 . -617) 102334) ((-477 . -25) T) ((-477 . -21) T) ((-1189 . -993) 102287) ((-601 . -1018) T) ((-372 . -397) T) ((-383 . -101) T) ((-257 . -871) 102233) ((-241 . -871) 102210) ((-117 . -1018) T) ((-792 . -1079) T) ((-1054 . -703) T) ((-601 . -227) 102189) ((-599 . -101) T) ((-758 . -703) T) ((-756 . -703) T) ((-406 . -1079) T) ((-117 . -237) T) ((-40 . -361) NIL) ((-117 . -227) NIL) ((-446 . -703) T) ((-792 . -23) T) ((-708 . -25) T) ((-708 . -21) T) ((-679 . -823) T) ((-1043 . -279) 102168) ((-77 . -389) T) ((-77 . -388) T) ((-670 . -1024) 102118) ((-1218 . -130) T) ((-1211 . -130) T) ((-1190 . -130) T) ((-1109 . -404) 102102) ((-613 . -360) 102034) ((-587 . -360) 101966) ((-1123 . -1116) 101950) ((-102 . -1067) 101928) ((-1141 . -25) T) ((-1141 . -21) T) ((-1140 . -21) T) ((-970 . -694) 101876) ((-217 . -624) 101843) ((-670 . -111) 101777) ((-50 . -703) T) ((-1140 . -25) T) ((-344 . -342) T) ((-1134 . -21) T) ((-1046 . -444) 101728) ((-1134 . -25) T) ((-689 . -505) 101675) ((-563 . -703) T) ((-509 . -703) T) ((-1093 . -21) T) ((-1093 . -25) T) ((-577 . -130) T) ((-576 . -130) T) ((-352 . -444) T) ((-346 . -444) T) ((-338 . -444) T) ((-466 . -300) 101654) ((-306 . -279) 101589) ((-107 . -444) T) ((-78 . -433) T) ((-78 . -388) T) ((-469 . -101) T) ((-1254 . -593) 101571) ((-1254 . -594) 101553) ((-1046 . -395) 101532) ((-1006 . -481) 101463) ((-549 . -771) T) ((-549 . -768) T) ((-1030 . -229) 101409) ((-352 . -395) 101360) ((-346 . -395) 101311) ((-338 . -395) 101262) ((-1241 . -1079) T) ((-1241 . -23) T) ((-1228 . -101) T) ((-173 . -593) 101244) ((-1109 . -1025) T) ((-646 . -721) 101228) ((-1145 . -143) 101207) ((-1145 . -145) 101186) ((-1113 . -1067) T) ((-1113 . -1038) 101155) ((-68 . -1180) T) ((-995 . -1024) 101092) ((-837 . -1025) T) ((-234 . -617) 100998) ((-670 . -1018) T) ((-347 . -1024) 100943) ((-60 . -1180) T) ((-995 . -111) 100859) ((-872 . -593) 100791) ((-670 . -237) T) ((-670 . -227) NIL) ((-816 . -821) 100770) ((-675 . -771) T) ((-675 . -768) T) ((-974 . -404) 100747) ((-347 . -111) 100676) ((-372 . -891) T) ((-400 . -821) 100655) ((-689 . -283) 100566) ((-217 . -703) T) ((-1218 . -484) 100532) ((-1211 . -484) 100498) ((-1190 . -484) 100464) ((-309 . -973) 100443) ((-216 . -1067) 100421) ((-312 . -944) 100383) ((-104 . -101) T) ((-48 . -1024) 100348) ((-1250 . -101) T) ((-374 . -101) T) ((-48 . -111) 100304) ((-975 . -617) 100286) ((-1212 . -593) 100268) ((-521 . -101) T) ((-491 . -101) T) ((-1100 . -1101) 100252) ((-150 . -1233) 100236) ((-239 . -1180) T) ((-1179 . -101) T) ((-1139 . -1184) 100215) ((-1092 . -1184) 100194) ((-234 . -21) 100104) ((-234 . -25) 99955) ((-127 . -119) 99939) ((-121 . -119) 99923) ((-44 . -721) 99907) ((-1139 . -541) 99818) ((-1092 . -541) 99749) ((-1006 . -279) 99724) ((-1133 . -1050) T) ((-965 . -1050) T) ((-792 . -130) T) ((-117 . -771) NIL) ((-117 . -768) NIL) ((-348 . -300) T) ((-345 . -300) T) ((-337 . -300) T) ((-1061 . -1180) T) ((-244 . -1079) 99634) ((-243 . -1079) 99544) ((-995 . -1018) T) ((-974 . -1025) T) ((-336 . -624) 99489) ((-599 . -38) 99473) ((-1239 . -593) 99435) ((-1239 . -594) 99396) ((-1043 . -593) 99378) ((-995 . -237) T) ((-347 . -1018) T) ((-791 . -1233) 99348) ((-244 . -23) T) ((-243 . -23) T) ((-958 . -593) 99330) ((-714 . -594) 99291) ((-714 . -593) 99273) ((-775 . -823) 99252) ((-970 . -505) 99164) ((-347 . -227) T) ((-347 . -237) T) ((-1126 . -149) 99111) ((-975 . -25) T) ((-139 . -594) 99070) ((-139 . -593) 99052) ((-881 . -300) T) ((-975 . -21) T) ((-942 . -25) T) ((-885 . -21) T) ((-885 . -25) T) ((-420 . -21) T) ((-420 . -25) T) ((-816 . -404) 99036) ((-48 . -1018) T) ((-1248 . -1240) 99020) ((-1246 . -1240) 99004) ((-1006 . -584) 98979) ((-309 . -594) 98840) ((-309 . -593) 98822) ((-306 . -594) NIL) ((-306 . -593) 98804) ((-48 . -237) T) ((-48 . -227) T) ((-630 . -279) 98765) ((-535 . -229) 98715) ((-135 . -593) 98697) ((-114 . -593) 98679) ((-469 . -38) 98644) ((-1250 . -1247) 98623) ((-1241 . -130) T) ((-1249 . -1025) T) ((-1048 . -101) T) ((-87 . -1180) T) ((-491 . -302) NIL) ((-971 . -106) 98607) ((-860 . -1067) T) ((-856 . -1067) T) ((-1226 . -627) 98591) ((-1226 . -366) 98575) ((-320 . -1180) T) ((-574 . -823) T) ((-1109 . -1067) T) ((-1109 . -1021) 98515) ((-102 . -505) 98448) ((-898 . -593) 98430) ((-336 . -703) T) ((-30 . -593) 98412) ((-837 . -1067) T) ((-816 . -1025) 98391) ((-40 . -624) 98336) ((-219 . -1184) T) ((-400 . -1025) T) ((-1125 . -149) 98318) ((-970 . -283) 98269) ((-596 . -1067) T) ((-219 . -541) T) ((-312 . -1207) 98253) ((-312 . -1204) 98223) ((-1153 . -1156) 98202) ((-1041 . -593) 98184) ((-623 . -149) 98168) ((-610 . -149) 98114) ((-1153 . -106) 98064) ((-471 . -1156) 98043) ((-479 . -145) T) ((-479 . -143) NIL) ((-1087 . -594) 97958) ((-431 . -593) 97940) ((-211 . -145) T) ((-211 . -143) NIL) ((-1087 . -593) 97922) ((-129 . -101) T) ((-52 . -101) T) ((-1190 . -617) 97874) ((-471 . -106) 97824) ((-964 . -23) T) ((-1250 . -38) 97794) ((-1139 . -1079) T) ((-1092 . -1079) T) ((-1029 . -1184) T) ((-304 . -101) T) ((-827 . -1079) T) ((-923 . -1184) 97773) ((-473 . -1184) 97752) ((-708 . -823) 97731) ((-1029 . -541) T) ((-923 . -541) 97662) ((-1139 . -23) T) ((-1092 . -23) T) ((-827 . -23) T) ((-473 . -541) 97593) ((-1109 . -694) 97525) ((-1113 . -505) 97458) ((-1006 . -594) NIL) ((-1006 . -593) 97440) ((-95 . -1050) T) ((-837 . -694) 97410) ((-1174 . -47) 97379) ((-244 . -130) T) ((-243 . -130) T) ((-1071 . -1067) T) ((-974 . -1067) T) ((-61 . -593) 97361) ((-1134 . -823) NIL) ((-995 . -768) T) ((-995 . -771) T) ((-1254 . -1024) 97348) ((-1254 . -111) 97333) ((-841 . -624) 97320) ((-1218 . -25) T) ((-1218 . -21) T) ((-1211 . -21) T) ((-1211 . -25) T) ((-1190 . -21) T) ((-1190 . -25) T) ((-998 . -149) 97304) ((-843 . -796) 97283) ((-843 . -891) T) ((-689 . -279) 97210) ((-577 . -21) T) ((-577 . -25) T) ((-576 . -21) T) ((-40 . -703) T) ((-216 . -505) 97143) ((-576 . -25) T) ((-468 . -149) 97127) ((-455 . -149) 97111) ((-892 . -770) T) ((-892 . -703) T) ((-747 . -769) T) ((-747 . -770) T) ((-497 . -1067) T) ((-493 . -1067) T) ((-747 . -703) T) ((-219 . -356) T) ((-1123 . -1067) 97089) ((-842 . -1184) T) ((-630 . -593) 97071) ((-842 . -541) T) ((-670 . -361) NIL) ((-352 . -1233) 97055) ((-646 . -101) T) ((-346 . -1233) 97039) ((-338 . -1233) 97023) ((-1249 . -1067) T) ((-511 . -823) 97002) ((-793 . -444) 96981) ((-1015 . -1067) T) ((-1015 . -1038) 96910) ((-998 . -947) 96879) ((-795 . -1079) T) ((-974 . -694) 96824) ((-379 . -1079) T) ((-468 . -947) 96793) ((-455 . -947) 96762) ((-110 . -149) 96744) ((-72 . -593) 96726) ((-864 . -593) 96708) ((-1046 . -701) 96687) ((-1254 . -1018) T) ((-792 . -617) 96635) ((-287 . -1025) 96577) ((-167 . -1184) 96482) ((-219 . -1079) T) ((-317 . -23) T) ((-1134 . -963) 96434) ((-816 . -1067) T) ((-1093 . -717) 96413) ((-1212 . -1024) 96318) ((-1210 . -891) 96297) ((-841 . -703) T) ((-167 . -541) 96208) ((-1189 . -891) 96187) ((-562 . -624) 96174) ((-400 . -1067) T) ((-549 . -624) 96161) ((-256 . -1067) T) ((-486 . -624) 96126) ((-219 . -23) T) ((-1189 . -796) 96079) ((-1248 . -101) T) ((-347 . -1245) 96056) ((-1246 . -101) T) ((-1212 . -111) 95948) ((-142 . -593) 95930) ((-964 . -130) T) ((-44 . -101) T) ((-234 . -823) 95881) ((-1199 . -1184) 95860) ((-102 . -481) 95844) ((-1249 . -694) 95814) ((-1054 . -47) 95775) ((-1029 . -1079) T) ((-923 . -1079) T) ((-127 . -34) T) ((-121 . -34) T) ((-758 . -47) 95752) ((-756 . -47) 95724) ((-1199 . -541) 95635) ((-347 . -361) T) ((-473 . -1079) T) ((-1139 . -130) T) ((-1092 . -130) T) ((-446 . -47) 95614) ((-842 . -356) T) ((-827 . -130) T) ((-150 . -101) T) ((-1029 . -23) T) ((-923 . -23) T) ((-556 . -541) T) ((-792 . -25) T) ((-792 . -21) T) ((-1109 . -505) 95547) ((-573 . -1050) T) ((-567 . -1009) 95531) ((-473 . -23) T) ((-344 . -1025) T) ((-1174 . -871) 95512) ((-646 . -302) 95450) ((-1080 . -1233) 95420) ((-675 . -624) 95385) ((-974 . -170) T) ((-934 . -143) 95364) ((-613 . -1067) T) ((-587 . -1067) T) ((-934 . -145) 95343) ((-975 . -823) T) ((-712 . -145) 95322) ((-712 . -143) 95301) ((-942 . -823) T) ((-466 . -891) 95280) ((-309 . -1024) 95190) ((-306 . -1024) 95119) ((-970 . -279) 95077) ((-400 . -694) 95029) ((-128 . -823) T) ((-677 . -821) T) ((-1212 . -1018) T) ((-309 . -111) 94925) ((-306 . -111) 94838) ((-935 . -101) T) ((-791 . -101) 94628) ((-689 . -594) NIL) ((-689 . -593) 94610) ((-634 . -1009) 94506) ((-1212 . -319) 94450) ((-1006 . -281) 94425) ((-562 . -703) T) ((-549 . -770) T) ((-167 . -356) 94376) ((-549 . -767) T) ((-549 . -703) T) ((-486 . -703) T) ((-1113 . -481) 94360) ((-1054 . -857) NIL) ((-842 . -1079) T) ((-117 . -880) NIL) ((-1248 . -1247) 94336) ((-1246 . -1247) 94315) ((-758 . -857) NIL) ((-756 . -857) 94174) ((-1241 . -25) T) ((-1241 . -21) T) ((-1177 . -101) 94152) ((-1073 . -388) T) ((-601 . -624) 94139) ((-446 . -857) NIL) ((-651 . -101) 94117) ((-1054 . -1009) 93944) ((-842 . -23) T) ((-758 . -1009) 93803) ((-756 . -1009) 93660) ((-117 . -624) 93605) ((-446 . -1009) 93481) ((-625 . -1009) 93465) ((-605 . -101) T) ((-216 . -481) 93449) ((-1226 . -34) T) ((-613 . -694) 93433) ((-587 . -694) 93417) ((-646 . -38) 93377) ((-312 . -101) T) ((-84 . -593) 93359) ((-50 . -1009) 93343) ((-1087 . -1024) 93330) ((-1054 . -370) 93314) ((-758 . -370) 93298) ((-59 . -56) 93260) ((-675 . -770) T) ((-675 . -767) T) ((-563 . -1009) 93247) ((-509 . -1009) 93224) ((-675 . -703) T) ((-317 . -130) T) ((-309 . -1018) 93114) ((-306 . -1018) T) ((-167 . -1079) T) ((-756 . -370) 93098) ((-45 . -149) 93048) ((-975 . -963) 93030) ((-446 . -370) 93014) ((-400 . -170) T) ((-309 . -237) 92993) ((-306 . -237) T) ((-306 . -227) NIL) ((-287 . -1067) 92775) ((-219 . -130) T) ((-1087 . -111) 92760) ((-167 . -23) T) ((-775 . -145) 92739) ((-775 . -143) 92718) ((-244 . -617) 92624) ((-243 . -617) 92530) ((-312 . -277) 92496) ((-1123 . -505) 92429) ((-1100 . -1067) T) ((-219 . -1027) T) ((-791 . -302) 92367) ((-1054 . -871) 92302) ((-758 . -871) 92245) ((-756 . -871) 92229) ((-1248 . -38) 92199) ((-1246 . -38) 92169) ((-1199 . -1079) T) ((-828 . -1079) T) ((-446 . -871) 92146) ((-831 . -1067) T) ((-1199 . -23) T) ((-556 . -1079) T) ((-828 . -23) T) ((-601 . -703) T) ((-348 . -891) T) ((-345 . -891) T) ((-282 . -101) T) ((-337 . -891) T) ((-1029 . -130) T) ((-941 . -1050) T) ((-923 . -130) T) ((-117 . -770) NIL) ((-117 . -767) NIL) ((-117 . -703) T) ((-670 . -880) NIL) ((-1015 . -505) 92047) ((-473 . -130) T) ((-556 . -23) T) ((-651 . -302) 91985) ((-613 . -738) T) ((-587 . -738) T) ((-1190 . -823) NIL) ((-974 . -283) T) ((-244 . -21) T) ((-670 . -624) 91935) ((-344 . -1067) T) ((-244 . -25) T) ((-243 . -21) T) ((-243 . -25) T) ((-150 . -38) 91919) ((-2 . -101) T) ((-881 . -891) T) ((-474 . -1233) 91889) ((-217 . -1009) 91866) ((-1087 . -1018) T) ((-688 . -300) T) ((-287 . -694) 91808) ((-677 . -1025) T) ((-479 . -444) T) ((-400 . -505) 91720) ((-211 . -444) T) ((-1087 . -227) T) ((-288 . -149) 91670) ((-970 . -594) 91631) ((-970 . -593) 91613) ((-960 . -593) 91595) ((-116 . -1025) T) ((-630 . -1024) 91579) ((-219 . -484) T) ((-392 . -593) 91561) ((-392 . -594) 91538) ((-1022 . -1233) 91508) ((-630 . -111) 91487) ((-1109 . -481) 91471) ((-791 . -38) 91441) ((-62 . -433) T) ((-62 . -388) T) ((-1126 . -101) T) ((-842 . -130) T) ((-476 . -101) 91419) ((-1254 . -361) T) ((-1046 . -101) T) ((-1028 . -101) T) ((-344 . -694) 91364) ((-708 . -145) 91343) ((-708 . -143) 91322) ((-995 . -624) 91259) ((-514 . -1067) 91237) ((-352 . -101) T) ((-346 . -101) T) ((-338 . -101) T) ((-107 . -101) T) ((-495 . -1067) T) ((-347 . -624) 91182) ((-1139 . -617) 91130) ((-1092 . -617) 91078) ((-378 . -500) 91057) ((-809 . -821) 91036) ((-372 . -1184) T) ((-670 . -703) T) ((-332 . -1025) T) ((-1190 . -963) 90988) ((-172 . -1025) T) ((-102 . -593) 90920) ((-1141 . -143) 90899) ((-1141 . -145) 90878) ((-372 . -541) T) ((-1140 . -145) 90857) ((-1140 . -143) 90836) ((-1134 . -143) 90743) ((-400 . -283) T) ((-1134 . -145) 90650) ((-1093 . -145) 90629) ((-1093 . -143) 90608) ((-312 . -38) 90449) ((-167 . -130) T) ((-306 . -771) NIL) ((-306 . -768) NIL) ((-630 . -1018) T) ((-48 . -624) 90414) ((-1133 . -101) T) ((-965 . -101) T) ((-964 . -21) T) ((-127 . -981) 90398) ((-121 . -981) 90382) ((-964 . -25) T) ((-872 . -119) 90366) ((-1125 . -101) T) ((-792 . -823) 90345) ((-1199 . -130) T) ((-1139 . -25) T) ((-1139 . -21) T) ((-828 . -130) T) ((-1092 . -25) T) ((-1092 . -21) T) ((-827 . -25) T) ((-827 . -21) T) ((-758 . -300) 90324) ((-623 . -101) 90302) ((-610 . -101) T) ((-1126 . -302) 90097) ((-556 . -130) T) ((-599 . -821) 90076) ((-1123 . -481) 90060) ((-1117 . -149) 90010) ((-1113 . -593) 89972) ((-1113 . -594) 89933) ((-995 . -767) T) ((-995 . -770) T) ((-995 . -703) T) ((-476 . -302) 89871) ((-445 . -410) 89841) ((-344 . -170) T) ((-282 . -38) 89828) ((-267 . -101) T) ((-266 . -101) T) ((-265 . -101) T) ((-264 . -101) T) ((-263 . -101) T) ((-262 . -101) T) ((-261 . -101) T) ((-336 . -1009) 89805) ((-206 . -101) T) ((-205 . -101) T) ((-203 . -101) T) ((-202 . -101) T) ((-201 . -101) T) ((-200 . -101) T) ((-197 . -101) T) ((-196 . -101) T) ((-689 . -1024) 89628) ((-195 . -101) T) ((-194 . -101) T) ((-193 . -101) T) ((-192 . -101) T) ((-191 . -101) T) ((-190 . -101) T) ((-189 . -101) T) ((-188 . -101) T) ((-187 . -101) T) ((-347 . -703) T) ((-689 . -111) 89437) ((-646 . -225) 89421) ((-563 . -300) T) ((-509 . -300) T) ((-287 . -505) 89370) ((-107 . -302) NIL) ((-71 . -388) T) ((-1080 . -101) 89160) ((-809 . -404) 89144) ((-1087 . -771) T) ((-1087 . -768) T) ((-677 . -1067) T) ((-372 . -356) T) ((-167 . -484) 89122) ((-207 . -1067) T) ((-216 . -593) 89054) ((-133 . -1067) T) ((-116 . -1067) T) ((-48 . -703) T) ((-1015 . -481) 89019) ((-497 . -92) T) ((-139 . -418) 89001) ((-139 . -361) T) ((-998 . -101) T) ((-503 . -500) 88980) ((-468 . -101) T) ((-455 . -101) T) ((-1005 . -1079) T) ((-1141 . -35) 88946) ((-1141 . -94) 88912) ((-1141 . -1168) 88878) ((-1141 . -1165) 88844) ((-1125 . -302) NIL) ((-88 . -389) T) ((-88 . -388) T) ((-1046 . -1118) 88823) ((-1140 . -1165) 88789) ((-1140 . -1168) 88755) ((-1005 . -23) T) ((-1140 . -94) 88721) ((-556 . -484) T) ((-1140 . -35) 88687) ((-1134 . -1165) 88653) ((-1134 . -1168) 88619) ((-1134 . -94) 88585) ((-354 . -1079) T) ((-352 . -1118) 88564) ((-346 . -1118) 88543) ((-338 . -1118) 88522) ((-1134 . -35) 88488) ((-1093 . -35) 88454) ((-1093 . -94) 88420) ((-107 . -1118) T) ((-1093 . -1168) 88386) ((-809 . -1025) 88365) ((-623 . -302) 88303) ((-610 . -302) 88154) ((-1093 . -1165) 88120) ((-689 . -1018) T) ((-1029 . -617) 88102) ((-1046 . -38) 87970) ((-923 . -617) 87918) ((-975 . -145) T) ((-975 . -143) NIL) ((-372 . -1079) T) ((-317 . -25) T) ((-315 . -23) T) ((-914 . -823) 87897) ((-689 . -319) 87874) ((-473 . -617) 87822) ((-40 . -1009) 87710) ((-677 . -694) 87697) ((-689 . -227) T) ((-332 . -1067) T) ((-172 . -1067) T) ((-324 . -823) T) ((-411 . -444) 87647) ((-372 . -23) T) ((-352 . -38) 87612) ((-346 . -38) 87577) ((-338 . -38) 87542) ((-79 . -433) T) ((-79 . -388) T) ((-219 . -25) T) ((-219 . -21) T) ((-810 . -1079) T) ((-107 . -38) 87492) ((-803 . -1079) T) ((-750 . -1067) T) ((-116 . -694) 87479) ((-648 . -1009) 87463) ((-592 . -101) T) ((-810 . -23) T) ((-803 . -23) T) ((-1123 . -279) 87440) ((-1080 . -302) 87378) ((-1069 . -229) 87362) ((-63 . -389) T) ((-63 . -388) T) ((-110 . -101) T) ((-40 . -370) 87339) ((-95 . -101) T) ((-629 . -825) 87323) ((-1102 . -1050) T) ((-1029 . -21) T) ((-1029 . -25) T) ((-791 . -225) 87292) ((-923 . -25) T) ((-923 . -21) T) ((-599 . -1025) T) ((-473 . -25) T) ((-473 . -21) T) ((-998 . -302) 87230) ((-860 . -593) 87212) ((-856 . -593) 87194) ((-244 . -823) 87145) ((-243 . -823) 87096) ((-514 . -505) 87029) ((-842 . -617) 87006) ((-468 . -302) 86944) ((-455 . -302) 86882) ((-344 . -283) T) ((-1123 . -1214) 86866) ((-1109 . -593) 86828) ((-1109 . -594) 86789) ((-1107 . -101) T) ((-970 . -1024) 86685) ((-40 . -871) 86637) ((-1123 . -584) 86614) ((-1254 . -624) 86601) ((-1030 . -149) 86547) ((-843 . -1184) T) ((-970 . -111) 86429) ((-332 . -694) 86413) ((-837 . -593) 86395) ((-172 . -694) 86327) ((-400 . -279) 86285) ((-843 . -541) T) ((-107 . -393) 86267) ((-83 . -377) T) ((-83 . -388) T) ((-677 . -170) T) ((-596 . -593) 86249) ((-98 . -703) T) ((-474 . -101) 86039) ((-98 . -465) T) ((-116 . -170) T) ((-1080 . -38) 86009) ((-167 . -617) 85957) ((-1022 . -101) T) ((-842 . -25) T) ((-791 . -232) 85936) ((-842 . -21) T) ((-794 . -101) T) ((-407 . -101) T) ((-378 . -101) T) ((-110 . -302) NIL) ((-221 . -101) 85914) ((-127 . -1180) T) ((-121 . -1180) T) ((-1005 . -130) T) ((-646 . -360) 85898) ((-970 . -1018) T) ((-1199 . -617) 85846) ((-1071 . -593) 85828) ((-974 . -593) 85810) ((-506 . -23) T) ((-501 . -23) T) ((-336 . -300) T) ((-499 . -23) T) ((-315 . -130) T) ((-3 . -1067) T) ((-974 . -594) 85794) ((-970 . -237) 85773) ((-970 . -227) 85752) ((-1254 . -703) T) ((-1218 . -143) 85731) ((-809 . -1067) T) ((-1218 . -145) 85710) ((-1211 . -145) 85689) ((-1211 . -143) 85668) ((-1210 . -1184) 85647) ((-1190 . -143) 85554) ((-1190 . -145) 85461) ((-1189 . -1184) 85440) ((-372 . -130) T) ((-549 . -857) 85422) ((0 . -1067) T) ((-172 . -170) T) ((-167 . -21) T) ((-167 . -25) T) ((-49 . -1067) T) ((-1212 . -624) 85327) ((-1210 . -541) 85278) ((-691 . -1079) T) ((-1189 . -541) 85229) ((-549 . -1009) 85211) ((-576 . -145) 85190) ((-576 . -143) 85169) ((-486 . -1009) 85112) ((-1102 . -1104) T) ((-86 . -377) T) ((-86 . -388) T) ((-843 . -356) T) ((-810 . -130) T) ((-803 . -130) T) ((-691 . -23) T) ((-497 . -593) 85062) ((-493 . -593) 85044) ((-1250 . -1025) T) ((-372 . -1027) T) ((-997 . -1067) 85022) ((-872 . -34) T) ((-474 . -302) 84960) ((-573 . -101) T) ((-1123 . -594) 84921) ((-1123 . -593) 84853) ((-1139 . -823) 84832) ((-45 . -101) T) ((-1092 . -823) 84811) ((-793 . -101) T) ((-1199 . -25) T) ((-1199 . -21) T) ((-828 . -25) T) ((-44 . -360) 84795) ((-828 . -21) T) ((-708 . -444) 84746) ((-1249 . -593) 84728) ((-1022 . -302) 84666) ((-647 . -1050) T) ((-586 . -1050) T) ((-383 . -1067) T) ((-556 . -25) T) ((-556 . -21) T) ((-178 . -1050) T) ((-159 . -1050) T) ((-154 . -1050) T) ((-152 . -1050) T) ((-599 . -1067) T) ((-675 . -857) 84648) ((-1226 . -1180) T) ((-221 . -302) 84586) ((-142 . -361) T) ((-1015 . -594) 84528) ((-1015 . -593) 84471) ((-306 . -880) NIL) ((-675 . -1009) 84416) ((-688 . -891) T) ((-466 . -1184) 84395) ((-1140 . -444) 84374) ((-1134 . -444) 84353) ((-323 . -101) T) ((-843 . -1079) T) ((-309 . -624) 84174) ((-306 . -624) 84103) ((-466 . -541) 84054) ((-332 . -505) 84020) ((-535 . -149) 83970) ((-40 . -300) T) ((-816 . -593) 83952) ((-677 . -283) T) ((-843 . -23) T) ((-372 . -484) T) ((-1046 . -225) 83922) ((-503 . -101) T) ((-400 . -594) 83730) ((-400 . -593) 83712) ((-256 . -593) 83694) ((-116 . -283) T) ((-1212 . -703) T) ((-1210 . -356) 83673) ((-1189 . -356) 83652) ((-1239 . -34) T) ((-117 . -1180) T) ((-107 . -225) 83634) ((-1145 . -101) T) ((-469 . -1067) T) ((-514 . -481) 83618) ((-714 . -34) T) ((-474 . -38) 83588) ((-139 . -34) T) ((-117 . -855) 83565) ((-117 . -857) NIL) ((-601 . -1009) 83448) ((-621 . -823) 83427) ((-1238 . -101) T) ((-288 . -101) T) ((-689 . -361) 83406) ((-117 . -1009) 83383) ((-383 . -694) 83367) ((-599 . -694) 83351) ((-45 . -302) 83155) ((-792 . -143) 83134) ((-792 . -145) 83113) ((-1249 . -375) 83092) ((-795 . -823) T) ((-1228 . -1067) T) ((-1126 . -223) 83039) ((-379 . -823) 83018) ((-1218 . -1168) 82984) ((-1218 . -1165) 82950) ((-1211 . -1165) 82916) ((-506 . -130) T) ((-1211 . -1168) 82882) ((-1190 . -1165) 82848) ((-1190 . -1168) 82814) ((-1218 . -35) 82780) ((-1218 . -94) 82746) ((-613 . -593) 82715) ((-587 . -593) 82684) ((-219 . -823) T) ((-1211 . -94) 82650) ((-1211 . -35) 82616) ((-1210 . -1079) T) ((-1087 . -624) 82603) ((-1190 . -94) 82569) ((-1189 . -1079) T) ((-574 . -149) 82551) ((-1046 . -342) 82530) ((-172 . -283) T) ((-117 . -370) 82507) ((-117 . -331) 82484) ((-1190 . -35) 82450) ((-841 . -300) T) ((-306 . -770) NIL) ((-306 . -767) NIL) ((-309 . -703) 82299) ((-306 . -703) T) ((-466 . -356) 82278) ((-352 . -342) 82257) ((-346 . -342) 82236) ((-338 . -342) 82215) ((-309 . -465) 82194) ((-1210 . -23) T) ((-1189 . -23) T) ((-695 . -1079) T) ((-691 . -130) T) ((-629 . -101) T) ((-469 . -694) 82159) ((-45 . -275) 82109) ((-104 . -1067) T) ((-67 . -593) 82091) ((-941 . -101) T) ((-836 . -101) T) ((-601 . -871) 82050) ((-1250 . -1067) T) ((-374 . -1067) T) ((-1179 . -1067) T) ((-81 . -1180) T) ((-1029 . -823) T) ((-923 . -823) 82029) ((-117 . -871) NIL) ((-758 . -891) 82008) ((-690 . -823) T) ((-521 . -1067) T) ((-491 . -1067) T) ((-348 . -1184) T) ((-345 . -1184) T) ((-337 . -1184) T) ((-257 . -1184) 81987) ((-241 . -1184) 81966) ((-1080 . -225) 81935) ((-473 . -823) 81914) ((-1109 . -1024) 81898) ((-383 . -738) T) ((-1125 . -804) T) ((-670 . -1180) T) ((-348 . -541) T) ((-345 . -541) T) ((-337 . -541) T) ((-257 . -541) 81829) ((-241 . -541) 81760) ((-516 . -1050) T) ((-1109 . -111) 81739) ((-445 . -721) 81709) ((-837 . -1024) 81679) ((-793 . -38) 81621) ((-670 . -855) 81603) ((-670 . -857) 81585) ((-288 . -302) 81389) ((-881 . -1184) T) ((-646 . -404) 81373) ((-837 . -111) 81338) ((-670 . -1009) 81283) ((-975 . -444) T) ((-881 . -541) T) ((-563 . -891) T) ((-466 . -1079) T) ((-509 . -891) T) ((-1123 . -281) 81260) ((-885 . -444) T) ((-64 . -593) 81242) ((-610 . -223) 81188) ((-466 . -23) T) ((-1087 . -770) T) ((-843 . -130) T) ((-1087 . -767) T) ((-1241 . -1243) 81167) ((-1087 . -703) T) ((-630 . -624) 81141) ((-287 . -593) 80882) ((-1006 . -34) T) ((-791 . -821) 80861) ((-562 . -300) T) ((-549 . -300) T) ((-486 . -300) T) ((-1250 . -694) 80831) ((-670 . -370) 80813) ((-670 . -331) 80795) ((-469 . -170) T) ((-374 . -694) 80765) ((-842 . -823) NIL) ((-549 . -993) T) ((-486 . -993) T) ((-1100 . -593) 80747) ((-1080 . -232) 80726) ((-208 . -101) T) ((-1117 . -101) T) ((-70 . -593) 80708) ((-1109 . -1018) T) ((-1145 . -38) 80605) ((-831 . -593) 80587) ((-549 . -534) T) ((-646 . -1025) T) ((-708 . -920) 80540) ((-1109 . -227) 80519) ((-1048 . -1067) T) ((-1005 . -25) T) ((-1005 . -21) T) ((-974 . -1024) 80464) ((-876 . -101) T) ((-837 . -1018) T) ((-670 . -871) NIL) ((-348 . -322) 80448) ((-348 . -356) T) ((-345 . -322) 80432) ((-345 . -356) T) ((-337 . -322) 80416) ((-337 . -356) T) ((-479 . -101) T) ((-1238 . -38) 80386) ((-514 . -663) 80336) ((-211 . -101) T) ((-995 . -1009) 80216) ((-974 . -111) 80145) ((-1141 . -944) 80114) ((-1140 . -944) 80076) ((-511 . -149) 80060) ((-1046 . -363) 80039) ((-344 . -593) 80021) ((-315 . -21) T) ((-347 . -1009) 79998) ((-315 . -25) T) ((-1134 . -944) 79967) ((-1093 . -944) 79934) ((-75 . -593) 79916) ((-675 . -300) T) ((-167 . -823) 79895) ((-881 . -356) T) ((-372 . -25) T) ((-372 . -21) T) ((-881 . -322) 79882) ((-85 . -593) 79864) ((-675 . -993) T) ((-653 . -823) T) ((-1210 . -130) T) ((-1189 . -130) T) ((-872 . -981) 79848) ((-810 . -21) T) ((-48 . -1009) 79791) ((-810 . -25) T) ((-803 . -25) T) ((-803 . -21) T) ((-1248 . -1025) T) ((-1246 . -1025) T) ((-630 . -703) T) ((-1249 . -1024) 79775) ((-1199 . -823) 79754) ((-791 . -404) 79723) ((-102 . -119) 79707) ((-129 . -1067) T) ((-52 . -1067) T) ((-897 . -593) 79689) ((-842 . -963) 79666) ((-799 . -101) T) ((-1249 . -111) 79645) ((-629 . -38) 79615) ((-556 . -823) T) ((-348 . -1079) T) ((-345 . -1079) T) ((-337 . -1079) T) ((-257 . -1079) T) ((-241 . -1079) T) ((-601 . -300) 79594) ((-1117 . -302) 79398) ((-515 . -1050) T) ((-304 . -1067) T) ((-640 . -23) T) ((-474 . -225) 79367) ((-150 . -1025) T) ((-348 . -23) T) ((-345 . -23) T) ((-337 . -23) T) ((-117 . -300) T) ((-257 . -23) T) ((-241 . -23) T) ((-974 . -1018) T) ((-689 . -880) 79346) ((-974 . -227) 79318) ((-974 . -237) T) ((-117 . -993) NIL) ((-881 . -1079) T) ((-1211 . -444) 79297) ((-1190 . -444) 79276) ((-514 . -593) 79208) ((-689 . -624) 79133) ((-400 . -1024) 79085) ((-495 . -593) 79067) ((-881 . -23) T) ((-479 . -302) NIL) ((-466 . -130) T) ((-211 . -302) NIL) ((-400 . -111) 79005) ((-791 . -1025) 78935) ((-714 . -1065) 78919) ((-1210 . -484) 78885) ((-1189 . -484) 78851) ((-469 . -283) T) ((-139 . -1065) 78833) ((-128 . -149) 78815) ((-1249 . -1018) T) ((-1030 . -101) T) ((-491 . -505) NIL) ((-679 . -101) T) ((-474 . -232) 78794) ((-1139 . -143) 78773) ((-1139 . -145) 78752) ((-1092 . -145) 78731) ((-1092 . -143) 78710) ((-613 . -1024) 78694) ((-587 . -1024) 78678) ((-646 . -1067) T) ((-646 . -1021) 78618) ((-1141 . -1217) 78602) ((-1141 . -1204) 78579) ((-479 . -1118) T) ((-1140 . -1209) 78540) ((-1140 . -1204) 78510) ((-1140 . -1207) 78494) ((-211 . -1118) T) ((-336 . -891) T) ((-794 . -259) 78478) ((-613 . -111) 78457) ((-587 . -111) 78436) ((-1134 . -1188) 78397) ((-816 . -1018) 78376) ((-1134 . -1204) 78353) ((-506 . -25) T) ((-486 . -295) T) ((-502 . -23) T) ((-501 . -25) T) ((-499 . -25) T) ((-498 . -23) T) ((-1134 . -1186) 78337) ((-400 . -1018) T) ((-312 . -1025) T) ((-670 . -300) T) ((-107 . -821) T) ((-400 . -237) T) ((-400 . -227) 78316) ((-689 . -703) T) ((-479 . -38) 78266) ((-211 . -38) 78216) ((-466 . -484) 78182) ((-1125 . -1111) T) ((-1068 . -101) T) ((-677 . -593) 78164) ((-677 . -594) 78079) ((-691 . -21) T) ((-691 . -25) T) ((-1102 . -101) T) ((-207 . -593) 78061) ((-133 . -593) 78043) ((-116 . -593) 78025) ((-155 . -25) T) ((-1248 . -1067) T) ((-843 . -617) 77973) ((-1246 . -1067) T) ((-934 . -101) T) ((-712 . -101) T) ((-692 . -101) T) ((-445 . -101) T) ((-792 . -444) 77924) ((-44 . -1067) T) ((-1055 . -823) T) ((-640 . -130) T) ((-1030 . -302) 77775) ((-646 . -694) 77759) ((-282 . -1025) T) ((-348 . -130) T) ((-345 . -130) T) ((-337 . -130) T) ((-257 . -130) T) ((-241 . -130) T) ((-411 . -101) T) ((-150 . -1067) T) ((-45 . -223) 77709) ((-929 . -823) 77688) ((-970 . -624) 77626) ((-234 . -1233) 77596) ((-995 . -300) T) ((-287 . -1024) 77517) ((-881 . -130) T) ((-40 . -891) T) ((-479 . -393) 77499) ((-347 . -300) T) ((-211 . -393) 77481) ((-1046 . -404) 77465) ((-287 . -111) 77381) ((-843 . -25) T) ((-843 . -21) T) ((-332 . -593) 77363) ((-1212 . -47) 77307) ((-219 . -145) T) ((-172 . -593) 77289) ((-1080 . -821) 77268) ((-750 . -593) 77250) ((-588 . -229) 77197) ((-467 . -229) 77147) ((-1248 . -694) 77117) ((-48 . -300) T) ((-1246 . -694) 77087) ((-935 . -1067) T) ((-791 . -1067) 76877) ((-305 . -101) T) ((-872 . -1180) T) ((-48 . -993) T) ((-1189 . -617) 76785) ((-665 . -101) 76763) ((-44 . -694) 76747) ((-535 . -101) T) ((-66 . -376) T) ((-66 . -388) T) ((-638 . -23) T) ((-646 . -738) T) ((-1177 . -1067) 76725) ((-344 . -1024) 76670) ((-651 . -1067) 76648) ((-1029 . -145) T) ((-923 . -145) 76627) ((-923 . -143) 76606) ((-775 . -101) T) ((-150 . -694) 76590) ((-473 . -145) 76569) ((-473 . -143) 76548) ((-344 . -111) 76477) ((-1046 . -1025) T) ((-315 . -823) 76456) ((-1218 . -944) 76425) ((-605 . -1067) T) ((-1211 . -944) 76387) ((-502 . -130) T) ((-498 . -130) T) ((-288 . -223) 76337) ((-352 . -1025) T) ((-346 . -1025) T) ((-338 . -1025) T) ((-287 . -1018) 76279) ((-1190 . -944) 76248) ((-372 . -823) T) ((-107 . -1025) T) ((-970 . -703) T) ((-841 . -891) T) ((-816 . -771) 76227) ((-816 . -768) 76206) ((-411 . -302) 76145) ((-460 . -101) T) ((-576 . -944) 76114) ((-312 . -1067) T) ((-400 . -771) 76093) ((-400 . -768) 76072) ((-491 . -481) 76054) ((-1212 . -1009) 76020) ((-1210 . -21) T) ((-1210 . -25) T) ((-1189 . -21) T) ((-1189 . -25) T) ((-791 . -694) 75962) ((-675 . -397) T) ((-1239 . -1180) T) ((-586 . -101) T) ((-1080 . -404) 75931) ((-974 . -361) NIL) ((-647 . -101) T) ((-178 . -101) T) ((-159 . -101) T) ((-154 . -101) T) ((-152 . -101) T) ((-102 . -34) T) ((-714 . -1180) T) ((-44 . -738) T) ((-574 . -101) T) ((-76 . -389) T) ((-76 . -388) T) ((-629 . -632) 75915) ((-139 . -1180) T) ((-842 . -145) T) ((-842 . -143) NIL) ((-1179 . -92) T) ((-344 . -1018) T) ((-69 . -376) T) ((-69 . -388) T) ((-1132 . -101) T) ((-646 . -505) 75848) ((-665 . -302) 75786) ((-934 . -38) 75683) ((-712 . -38) 75653) ((-535 . -302) 75457) ((-309 . -1180) T) ((-344 . -227) T) ((-344 . -237) T) ((-306 . -1180) T) ((-282 . -1067) T) ((-1147 . -593) 75439) ((-688 . -1184) T) ((-1123 . -627) 75423) ((-1174 . -541) 75402) ((-688 . -541) T) ((-309 . -855) 75386) ((-309 . -857) 75311) ((-306 . -855) 75272) ((-306 . -857) NIL) ((-775 . -302) 75237) ((-312 . -694) 75078) ((-317 . -316) 75055) ((-477 . -101) T) ((-466 . -25) T) ((-466 . -21) T) ((-411 . -38) 75029) ((-309 . -1009) 74692) ((-219 . -1165) T) ((-219 . -1168) T) ((-3 . -593) 74674) ((-306 . -1009) 74604) ((-2 . -1067) T) ((-2 . |RecordCategory|) T) ((-809 . -593) 74586) ((-1080 . -1025) 74516) ((-562 . -891) T) ((-549 . -796) T) ((-549 . -891) T) ((-486 . -891) T) ((-135 . -1009) 74500) ((-219 . -94) T) ((-74 . -433) T) ((-74 . -388) T) ((0 . -593) 74482) ((-167 . -145) 74461) ((-167 . -143) 74412) ((-219 . -35) T) ((-49 . -593) 74394) ((-469 . -1025) T) ((-479 . -225) 74376) ((-476 . -939) 74360) ((-474 . -821) 74339) ((-211 . -225) 74321) ((-80 . -433) T) ((-80 . -388) T) ((-1113 . -34) T) ((-791 . -170) 74300) ((-708 . -101) T) ((-997 . -593) 74267) ((-491 . -279) 74242) ((-309 . -370) 74211) ((-306 . -370) 74172) ((-306 . -331) 74133) ((-1052 . -593) 74115) ((-792 . -920) 74062) ((-638 . -130) T) ((-1199 . -143) 74041) ((-1199 . -145) 74020) ((-1141 . -101) T) ((-1140 . -101) T) ((-1134 . -101) T) ((-1126 . -1067) T) ((-1093 . -101) T) ((-216 . -34) T) ((-282 . -694) 74007) ((-1126 . -590) 73983) ((-574 . -302) NIL) ((-476 . -1067) 73961) ((-383 . -593) 73943) ((-501 . -823) T) ((-1117 . -223) 73893) ((-1218 . -1217) 73877) ((-1218 . -1204) 73854) ((-1211 . -1209) 73815) ((-1211 . -1204) 73785) ((-1211 . -1207) 73769) ((-1190 . -1188) 73730) ((-1190 . -1204) 73707) ((-599 . -593) 73689) ((-1190 . -1186) 73673) ((-675 . -891) T) ((-1141 . -277) 73639) ((-1140 . -277) 73605) ((-1134 . -277) 73571) ((-1046 . -1067) T) ((-1028 . -1067) T) ((-48 . -295) T) ((-309 . -871) 73537) ((-306 . -871) NIL) ((-1028 . -1035) 73516) ((-1087 . -857) 73498) ((-775 . -38) 73482) ((-257 . -617) 73430) ((-241 . -617) 73378) ((-677 . -1024) 73365) ((-576 . -1204) 73342) ((-1093 . -277) 73308) ((-312 . -170) 73239) ((-352 . -1067) T) ((-346 . -1067) T) ((-338 . -1067) T) ((-491 . -19) 73221) ((-1087 . -1009) 73203) ((-1069 . -149) 73187) ((-107 . -1067) T) ((-116 . -1024) 73174) ((-688 . -356) T) ((-491 . -584) 73149) ((-677 . -111) 73134) ((-429 . -101) T) ((-45 . -1116) 73084) ((-116 . -111) 73069) ((-613 . -697) T) ((-587 . -697) T) ((-791 . -505) 73002) ((-1006 . -1180) T) ((-914 . -149) 72986) ((-516 . -101) T) ((-511 . -101) 72936) ((-1139 . -444) 72867) ((-1133 . -1067) T) ((-1054 . -1184) 72846) ((-758 . -1184) 72825) ((-756 . -1184) 72804) ((-61 . -1180) T) ((-469 . -593) 72756) ((-469 . -594) 72678) ((-1125 . -1067) T) ((-1109 . -624) 72652) ((-1092 . -444) 72603) ((-1054 . -541) 72534) ((-474 . -404) 72503) ((-601 . -891) 72482) ((-446 . -1184) 72461) ((-965 . -1067) T) ((-758 . -541) 72372) ((-391 . -593) 72354) ((-756 . -541) 72285) ((-651 . -505) 72218) ((-708 . -302) 72205) ((-640 . -25) T) ((-640 . -21) T) ((-446 . -541) 72136) ((-117 . -891) T) ((-117 . -796) NIL) ((-348 . -25) T) ((-348 . -21) T) ((-345 . -25) T) ((-345 . -21) T) ((-337 . -25) T) ((-337 . -21) T) ((-257 . -25) T) ((-257 . -21) T) ((-82 . -377) T) ((-82 . -388) T) ((-241 . -25) T) ((-241 . -21) T) ((-1228 . -593) 72118) ((-1174 . -1079) T) ((-1174 . -23) T) ((-1134 . -302) 72003) ((-1093 . -302) 71990) ((-1046 . -694) 71858) ((-837 . -624) 71818) ((-914 . -951) 71802) ((-881 . -21) T) ((-282 . -170) T) ((-881 . -25) T) ((-304 . -92) T) ((-843 . -823) 71753) ((-688 . -1079) T) ((-688 . -23) T) ((-623 . -1067) 71731) ((-610 . -590) 71706) ((-610 . -1067) T) ((-563 . -1184) T) ((-509 . -1184) T) ((-563 . -541) T) ((-509 . -541) T) ((-352 . -694) 71658) ((-346 . -694) 71610) ((-338 . -694) 71562) ((-332 . -1024) 71546) ((-172 . -111) 71457) ((-172 . -1024) 71389) ((-107 . -694) 71339) ((-332 . -111) 71318) ((-267 . -1067) T) ((-266 . -1067) T) ((-265 . -1067) T) ((-264 . -1067) T) ((-677 . -1018) T) ((-263 . -1067) T) ((-262 . -1067) T) ((-261 . -1067) T) ((-206 . -1067) T) ((-205 . -1067) T) ((-203 . -1067) T) ((-167 . -1168) 71296) ((-167 . -1165) 71274) ((-202 . -1067) T) ((-201 . -1067) T) ((-116 . -1018) T) ((-200 . -1067) T) ((-197 . -1067) T) ((-677 . -227) T) ((-196 . -1067) T) ((-195 . -1067) T) ((-194 . -1067) T) ((-193 . -1067) T) ((-192 . -1067) T) ((-191 . -1067) T) ((-190 . -1067) T) ((-189 . -1067) T) ((-188 . -1067) T) ((-187 . -1067) T) ((-234 . -101) 71064) ((-167 . -35) 71042) ((-167 . -94) 71020) ((-630 . -1009) 70916) ((-474 . -1025) 70846) ((-1080 . -1067) 70636) ((-1109 . -34) T) ((-646 . -481) 70620) ((-72 . -1180) T) ((-104 . -593) 70602) ((-1250 . -593) 70584) ((-374 . -593) 70566) ((-708 . -38) 70415) ((-556 . -1168) T) ((-556 . -1165) T) ((-521 . -593) 70397) ((-511 . -302) 70335) ((-491 . -593) 70317) ((-491 . -594) 70299) ((-1179 . -593) 70265) ((-1134 . -1118) NIL) ((-998 . -1038) 70234) ((-998 . -1067) T) ((-975 . -101) T) ((-942 . -101) T) ((-885 . -101) T) ((-864 . -1009) 70211) ((-1109 . -703) T) ((-974 . -624) 70156) ((-468 . -1067) T) ((-455 . -1067) T) ((-567 . -23) T) ((-556 . -35) T) ((-556 . -94) T) ((-420 . -101) T) ((-1030 . -223) 70102) ((-128 . -101) T) ((-1141 . -38) 69999) ((-837 . -703) T) ((-670 . -891) T) ((-502 . -25) T) ((-498 . -21) T) ((-498 . -25) T) ((-1140 . -38) 69840) ((-332 . -1018) T) ((-1134 . -38) 69636) ((-1046 . -170) T) ((-172 . -1018) T) ((-1093 . -38) 69533) ((-689 . -47) 69510) ((-352 . -170) T) ((-346 . -170) T) ((-510 . -56) 69484) ((-488 . -56) 69434) ((-344 . -1245) 69411) ((-219 . -444) T) ((-312 . -283) 69362) ((-338 . -170) T) ((-172 . -237) T) ((-1189 . -823) 69261) ((-107 . -170) T) ((-843 . -963) 69245) ((-634 . -1079) T) ((-563 . -356) T) ((-563 . -322) 69232) ((-509 . -322) 69209) ((-509 . -356) T) ((-309 . -300) 69188) ((-306 . -300) T) ((-582 . -823) 69167) ((-1080 . -694) 69109) ((-511 . -275) 69093) ((-634 . -23) T) ((-411 . -225) 69077) ((-306 . -993) NIL) ((-329 . -23) T) ((-102 . -981) 69061) ((-45 . -36) 69040) ((-592 . -1067) T) ((-344 . -361) T) ((-515 . -101) T) ((-486 . -27) T) ((-234 . -302) 68978) ((-1054 . -1079) T) ((-1249 . -624) 68952) ((-758 . -1079) T) ((-756 . -1079) T) ((-446 . -1079) T) ((-1029 . -444) T) ((-923 . -444) 68903) ((-1082 . -1050) T) ((-110 . -1067) T) ((-1054 . -23) T) ((-793 . -1025) T) ((-758 . -23) T) ((-756 . -23) T) ((-473 . -444) 68854) ((-1126 . -505) 68637) ((-374 . -375) 68616) ((-1145 . -404) 68600) ((-453 . -23) T) ((-446 . -23) T) ((-95 . -1067) T) ((-476 . -505) 68533) ((-282 . -283) T) ((-1048 . -593) 68515) ((-400 . -880) 68494) ((-50 . -1079) T) ((-995 . -891) T) ((-974 . -703) T) ((-689 . -857) NIL) ((-563 . -1079) T) ((-509 . -1079) T) ((-816 . -624) 68467) ((-1174 . -130) T) ((-1134 . -393) 68419) ((-975 . -302) NIL) ((-791 . -481) 68403) ((-347 . -891) T) ((-1123 . -34) T) ((-400 . -624) 68355) ((-50 . -23) T) ((-688 . -130) T) ((-689 . -1009) 68235) ((-563 . -23) T) ((-107 . -505) NIL) ((-509 . -23) T) ((-167 . -402) 68206) ((-128 . -302) NIL) ((-1107 . -1067) T) ((-1241 . -1240) 68190) ((-677 . -771) T) ((-677 . -768) T) ((-1087 . -300) T) ((-372 . -145) T) ((-273 . -593) 68172) ((-1189 . -963) 68142) ((-48 . -891) T) ((-651 . -481) 68126) ((-244 . -1233) 68096) ((-243 . -1233) 68066) ((-1143 . -823) T) ((-1080 . -170) 68045) ((-1087 . -993) T) ((-1015 . -34) T) ((-810 . -145) 68024) ((-810 . -143) 68003) ((-714 . -106) 67987) ((-592 . -131) T) ((-474 . -1067) 67777) ((-1145 . -1025) T) ((-842 . -444) T) ((-84 . -1180) T) ((-234 . -38) 67747) ((-139 . -106) 67729) ((-689 . -370) 67713) ((-1087 . -534) T) ((-383 . -1024) 67697) ((-1249 . -703) T) ((-1139 . -920) 67666) ((-129 . -593) 67633) ((-52 . -593) 67615) ((-1092 . -920) 67582) ((-629 . -404) 67566) ((-1238 . -1025) T) ((-599 . -1024) 67550) ((-638 . -25) T) ((-638 . -21) T) ((-1125 . -505) NIL) ((-1218 . -101) T) ((-1211 . -101) T) ((-383 . -111) 67529) ((-216 . -247) 67513) ((-1190 . -101) T) ((-1022 . -1067) T) ((-975 . -1118) T) ((-1022 . -1021) 67453) ((-794 . -1067) T) ((-336 . -1184) T) ((-613 . -624) 67437) ((-599 . -111) 67416) ((-587 . -624) 67400) ((-577 . -101) T) ((-567 . -130) T) ((-576 . -101) T) ((-407 . -1067) T) ((-378 . -1067) T) ((-304 . -593) 67366) ((-221 . -1067) 67344) ((-623 . -505) 67277) ((-610 . -505) 67121) ((-809 . -1018) 67100) ((-621 . -149) 67084) ((-336 . -541) T) ((-689 . -871) 67027) ((-535 . -223) 66977) ((-1218 . -277) 66943) ((-1046 . -283) 66894) ((-479 . -821) T) ((-217 . -1079) T) ((-1211 . -277) 66860) ((-1190 . -277) 66826) ((-975 . -38) 66776) ((-211 . -821) T) ((-1174 . -484) 66742) ((-885 . -38) 66694) ((-816 . -770) 66673) ((-816 . -767) 66652) ((-816 . -703) 66631) ((-352 . -283) T) ((-346 . -283) T) ((-338 . -283) T) ((-167 . -444) 66562) ((-420 . -38) 66546) ((-107 . -283) T) ((-217 . -23) T) ((-400 . -770) 66525) ((-400 . -767) 66504) ((-400 . -703) T) ((-491 . -281) 66479) ((-469 . -1024) 66444) ((-634 . -130) T) ((-1080 . -505) 66377) ((-329 . -130) T) ((-167 . -395) 66356) ((-474 . -694) 66298) ((-791 . -279) 66275) ((-469 . -111) 66231) ((-629 . -1025) T) ((-1199 . -444) 66162) ((-1237 . -1050) T) ((-1236 . -1050) T) ((-1054 . -130) T) ((-257 . -823) 66141) ((-241 . -823) 66120) ((-758 . -130) T) ((-756 . -130) T) ((-556 . -444) T) ((-1022 . -694) 66062) ((-599 . -1018) T) ((-998 . -505) 65995) ((-573 . -1067) T) ((-453 . -130) T) ((-446 . -130) T) ((-45 . -1067) T) ((-378 . -694) 65965) ((-793 . -1067) T) ((-468 . -505) 65898) ((-455 . -505) 65831) ((-445 . -360) 65801) ((-45 . -590) 65780) ((-309 . -295) T) ((-646 . -593) 65742) ((-58 . -823) 65721) ((-1190 . -302) 65606) ((-975 . -393) 65588) ((-791 . -584) 65565) ((-507 . -823) 65544) ((-487 . -823) 65523) ((-40 . -1184) T) ((-970 . -1009) 65419) ((-50 . -130) T) ((-563 . -130) T) ((-509 . -130) T) ((-287 . -624) 65279) ((-336 . -322) 65256) ((-336 . -356) T) ((-315 . -316) 65233) ((-312 . -279) 65218) ((-40 . -541) T) ((-372 . -1165) T) ((-372 . -1168) T) ((-1006 . -1156) 65193) ((-1153 . -229) 65143) ((-1134 . -225) 65095) ((-323 . -1067) T) ((-372 . -94) T) ((-372 . -35) T) ((-1006 . -106) 65041) ((-469 . -1018) T) ((-471 . -229) 64991) ((-1126 . -481) 64925) ((-1250 . -1024) 64909) ((-374 . -1024) 64893) ((-469 . -237) T) ((-792 . -101) T) ((-691 . -145) 64872) ((-691 . -143) 64851) ((-476 . -481) 64835) ((-477 . -328) 64804) ((-1250 . -111) 64783) ((-503 . -1067) T) ((-474 . -170) 64762) ((-970 . -370) 64746) ((-406 . -101) T) ((-374 . -111) 64725) ((-970 . -331) 64709) ((-272 . -954) 64693) ((-271 . -954) 64677) ((-1248 . -593) 64659) ((-1246 . -593) 64641) ((-110 . -505) NIL) ((-1139 . -1202) 64625) ((-827 . -825) 64609) ((-1145 . -1067) T) ((-102 . -1180) T) ((-923 . -920) 64570) ((-793 . -694) 64512) ((-1190 . -1118) NIL) ((-473 . -920) 64457) ((-1029 . -141) T) ((-59 . -101) 64435) ((-44 . -593) 64417) ((-77 . -593) 64399) ((-344 . -624) 64344) ((-1238 . -1067) T) ((-502 . -823) T) ((-336 . -1079) T) ((-288 . -1067) T) ((-970 . -871) 64303) ((-288 . -590) 64282) ((-1218 . -38) 64179) ((-1211 . -38) 64020) ((-479 . -1025) T) ((-1190 . -38) 63816) ((-211 . -1025) T) ((-336 . -23) T) ((-150 . -593) 63798) ((-809 . -771) 63777) ((-809 . -768) 63756) ((-577 . -38) 63729) ((-576 . -38) 63626) ((-841 . -541) T) ((-217 . -130) T) ((-312 . -973) 63592) ((-78 . -593) 63574) ((-689 . -300) 63553) ((-287 . -703) 63455) ((-800 . -101) T) ((-836 . -817) T) ((-287 . -465) 63434) ((-1241 . -101) T) ((-40 . -356) T) ((-843 . -145) 63413) ((-843 . -143) 63392) ((-1125 . -481) 63374) ((-1250 . -1018) T) ((-474 . -505) 63307) ((-1113 . -1180) T) ((-935 . -593) 63289) ((-623 . -481) 63273) ((-610 . -481) 63204) ((-791 . -593) 62935) ((-48 . -27) T) ((-1145 . -694) 62832) ((-629 . -1067) T) ((-429 . -357) 62806) ((-1069 . -101) T) ((-792 . -302) 62793) ((-941 . -1067) T) ((-836 . -1067) T) ((-1246 . -375) 62765) ((-1022 . -505) 62698) ((-1126 . -279) 62674) ((-234 . -225) 62643) ((-1238 . -694) 62613) ((-1133 . -92) T) ((-965 . -92) T) ((-793 . -170) 62592) ((-221 . -505) 62525) ((-599 . -771) 62504) ((-599 . -768) 62483) ((-1177 . -593) 62395) ((-216 . -1180) T) ((-651 . -593) 62327) ((-1123 . -981) 62311) ((-344 . -703) T) ((-914 . -101) 62261) ((-1190 . -393) 62213) ((-1080 . -481) 62197) ((-59 . -302) 62135) ((-324 . -101) T) ((-1174 . -21) T) ((-1174 . -25) T) ((-40 . -1079) T) ((-688 . -21) T) ((-605 . -593) 62117) ((-506 . -316) 62096) ((-688 . -25) T) ((-107 . -279) NIL) ((-892 . -1079) T) ((-40 . -23) T) ((-747 . -1079) T) ((-549 . -1184) T) ((-486 . -1184) T) ((-312 . -593) 62078) ((-975 . -225) 62060) ((-167 . -164) 62044) ((-562 . -541) T) ((-549 . -541) T) ((-486 . -541) T) ((-747 . -23) T) ((-1210 . -145) 62023) ((-1126 . -584) 61999) ((-1210 . -143) 61978) ((-998 . -481) 61962) ((-1189 . -143) 61887) ((-1189 . -145) 61812) ((-1241 . -1247) 61791) ((-468 . -481) 61775) ((-455 . -481) 61759) ((-514 . -34) T) ((-629 . -694) 61729) ((-112 . -938) T) ((-638 . -823) 61708) ((-1145 . -170) 61659) ((-358 . -101) T) ((-234 . -232) 61638) ((-244 . -101) T) ((-243 . -101) T) ((-1199 . -920) 61607) ((-109 . -101) T) ((-239 . -823) 61586) ((-792 . -38) 61435) ((-45 . -505) 61227) ((-1125 . -279) 61202) ((-208 . -1067) T) ((-1117 . -1067) T) ((-1117 . -590) 61181) ((-567 . -25) T) ((-567 . -21) T) ((-1069 . -302) 61119) ((-934 . -404) 61103) ((-675 . -1184) T) ((-610 . -279) 61078) ((-1054 . -617) 61026) ((-758 . -617) 60974) ((-756 . -617) 60922) ((-336 . -130) T) ((-282 . -593) 60904) ((-675 . -541) T) ((-876 . -1067) T) ((-841 . -1079) T) ((-446 . -617) 60852) ((-876 . -874) 60836) ((-372 . -444) T) ((-479 . -1067) T) ((-677 . -624) 60823) ((-914 . -302) 60761) ((-211 . -1067) T) ((-309 . -891) 60740) ((-306 . -891) T) ((-306 . -796) NIL) ((-383 . -697) T) ((-841 . -23) T) ((-116 . -624) 60727) ((-466 . -143) 60706) ((-411 . -404) 60690) ((-466 . -145) 60669) ((-110 . -481) 60651) ((-2 . -593) 60633) ((-1125 . -19) 60615) ((-1125 . -584) 60590) ((-634 . -21) T) ((-634 . -25) T) ((-574 . -1111) T) ((-1080 . -279) 60567) ((-329 . -25) T) ((-329 . -21) T) ((-486 . -356) T) ((-1241 . -38) 60537) ((-1109 . -1180) T) ((-610 . -584) 60512) ((-1054 . -25) T) ((-1054 . -21) T) ((-521 . -768) T) ((-521 . -771) T) ((-117 . -1184) T) ((-934 . -1025) T) ((-601 . -541) T) ((-758 . -25) T) ((-758 . -21) T) ((-756 . -21) T) ((-756 . -25) T) ((-712 . -1025) T) ((-692 . -1025) T) ((-646 . -1024) 60496) ((-508 . -1050) T) ((-453 . -25) T) ((-117 . -541) T) ((-453 . -21) T) ((-446 . -25) T) ((-446 . -21) T) ((-1109 . -1009) 60392) ((-793 . -283) 60371) ((-799 . -1067) T) ((-937 . -938) T) ((-646 . -111) 60350) ((-288 . -505) 60142) ((-1248 . -1024) 60126) ((-1246 . -1024) 60110) ((-1210 . -1165) 60076) ((-244 . -302) 60014) ((-243 . -302) 59952) ((-1193 . -101) 59930) ((-1126 . -594) NIL) ((-1126 . -593) 59912) ((-1210 . -1168) 59878) ((-1190 . -225) 59830) ((-1189 . -1165) 59796) ((-95 . -92) T) ((-1189 . -1168) 59762) ((-1109 . -370) 59746) ((-1087 . -796) T) ((-1087 . -891) T) ((-1080 . -584) 59723) ((-1046 . -594) 59707) ((-476 . -593) 59639) ((-791 . -281) 59616) ((-588 . -149) 59563) ((-411 . -1025) T) ((-479 . -694) 59513) ((-474 . -481) 59497) ((-320 . -823) 59476) ((-332 . -624) 59450) ((-50 . -21) T) ((-50 . -25) T) ((-211 . -694) 59400) ((-167 . -701) 59371) ((-172 . -624) 59303) ((-563 . -21) T) ((-563 . -25) T) ((-509 . -25) T) ((-509 . -21) T) ((-467 . -149) 59253) ((-1046 . -593) 59235) ((-1028 . -593) 59217) ((-964 . -101) T) ((-834 . -101) T) ((-775 . -404) 59181) ((-40 . -130) T) ((-675 . -356) T) ((-206 . -866) T) ((-677 . -770) T) ((-677 . -767) T) ((-562 . -1079) T) ((-549 . -1079) T) ((-486 . -1079) T) ((-677 . -703) T) ((-352 . -593) 59163) ((-346 . -593) 59145) ((-338 . -593) 59127) ((-65 . -389) T) ((-65 . -388) T) ((-107 . -594) 59057) ((-107 . -593) 59039) ((-205 . -866) T) ((-929 . -149) 59023) ((-1210 . -94) 58989) ((-747 . -130) T) ((-133 . -703) T) ((-116 . -703) T) ((-1210 . -35) 58955) ((-1022 . -481) 58939) ((-562 . -23) T) ((-549 . -23) T) ((-486 . -23) T) ((-1189 . -94) 58905) ((-1189 . -35) 58871) ((-1139 . -101) T) ((-1092 . -101) T) ((-827 . -101) T) ((-221 . -481) 58855) ((-1248 . -111) 58834) ((-1246 . -111) 58813) ((-44 . -1024) 58797) ((-1199 . -1202) 58781) ((-828 . -825) 58765) ((-1145 . -283) 58744) ((-110 . -279) 58719) ((-1109 . -871) 58678) ((-44 . -111) 58657) ((-1148 . -1221) T) ((-1133 . -593) 58623) ((-646 . -1018) T) ((-1125 . -594) NIL) ((-1125 . -593) 58605) ((-1030 . -590) 58580) ((-1030 . -1067) T) ((-965 . -593) 58546) ((-73 . -433) T) ((-73 . -388) T) ((-646 . -227) 58525) ((-150 . -1024) 58509) ((-556 . -539) 58493) ((-348 . -145) 58472) ((-348 . -143) 58423) ((-345 . -145) 58402) ((-679 . -1067) T) ((-345 . -143) 58353) ((-337 . -145) 58332) ((-337 . -143) 58283) ((-257 . -143) 58262) ((-257 . -145) 58241) ((-244 . -38) 58211) ((-241 . -145) 58190) ((-117 . -356) T) ((-241 . -143) 58169) ((-243 . -38) 58139) ((-150 . -111) 58118) ((-974 . -1009) 58006) ((-1134 . -821) NIL) ((-670 . -1184) T) ((-775 . -1025) T) ((-675 . -1079) T) ((-1248 . -1018) T) ((-1246 . -1018) T) ((-1123 . -1180) T) ((-974 . -370) 57983) ((-881 . -143) T) ((-881 . -145) 57965) ((-841 . -130) T) ((-791 . -1024) 57862) ((-670 . -541) T) ((-675 . -23) T) ((-623 . -593) 57794) ((-623 . -594) 57755) ((-610 . -594) NIL) ((-610 . -593) 57737) ((-479 . -170) T) ((-217 . -21) T) ((-211 . -170) T) ((-217 . -25) T) ((-466 . -1168) 57703) ((-466 . -1165) 57669) ((-267 . -593) 57651) ((-266 . -593) 57633) ((-265 . -593) 57615) ((-264 . -593) 57597) ((-263 . -593) 57579) ((-491 . -627) 57561) ((-262 . -593) 57543) ((-332 . -703) T) ((-261 . -593) 57525) ((-110 . -19) 57507) ((-172 . -703) T) ((-491 . -366) 57489) ((-206 . -593) 57471) ((-511 . -1116) 57455) ((-491 . -123) T) ((-110 . -584) 57430) ((-205 . -593) 57412) ((-466 . -35) 57378) ((-466 . -94) 57344) ((-203 . -593) 57326) ((-202 . -593) 57308) ((-201 . -593) 57290) ((-200 . -593) 57272) ((-197 . -593) 57254) ((-196 . -593) 57236) ((-195 . -593) 57218) ((-194 . -593) 57200) ((-193 . -593) 57182) ((-192 . -593) 57164) ((-191 . -593) 57146) ((-525 . -1070) 57098) ((-190 . -593) 57080) ((-189 . -593) 57062) ((-45 . -481) 56999) ((-188 . -593) 56981) ((-187 . -593) 56963) ((-1082 . -101) T) ((-791 . -111) 56853) ((-621 . -101) 56803) ((-474 . -279) 56780) ((-1080 . -593) 56511) ((-1068 . -1067) T) ((-1015 . -1180) T) ((-1249 . -1009) 56495) ((-601 . -1079) T) ((-1139 . -302) 56482) ((-1102 . -1067) T) ((-1092 . -302) 56469) ((-1063 . -1050) T) ((-1057 . -1050) T) ((-1040 . -1050) T) ((-1033 . -1050) T) ((-1007 . -1050) T) ((-990 . -1050) T) ((-117 . -1079) T) ((-795 . -101) T) ((-604 . -1050) T) ((-601 . -23) T) ((-1117 . -505) 56261) ((-475 . -1050) T) ((-974 . -871) 56213) ((-379 . -101) T) ((-317 . -101) T) ((-212 . -1050) T) ((-934 . -1067) T) ((-150 . -1018) T) ((-117 . -23) T) ((-708 . -404) 56197) ((-712 . -1067) T) ((-692 . -1067) T) ((-679 . -131) T) ((-445 . -1067) T) ((-400 . -1180) T) ((-309 . -423) 56181) ((-573 . -92) T) ((-998 . -594) 56142) ((-995 . -1184) T) ((-219 . -101) T) ((-998 . -593) 56104) ((-792 . -225) 56088) ((-995 . -541) T) ((-809 . -624) 56061) ((-347 . -1184) T) ((-468 . -593) 56023) ((-468 . -594) 55984) ((-455 . -594) 55945) ((-455 . -593) 55907) ((-400 . -855) 55891) ((-312 . -1024) 55726) ((-400 . -857) 55651) ((-816 . -1009) 55547) ((-479 . -505) NIL) ((-474 . -584) 55524) ((-347 . -541) T) ((-211 . -505) NIL) ((-843 . -444) T) ((-411 . -1067) T) ((-400 . -1009) 55388) ((-312 . -111) 55209) ((-670 . -356) T) ((-219 . -277) T) ((-48 . -1184) T) ((-791 . -1018) 55139) ((-562 . -130) T) ((-549 . -130) T) ((-486 . -130) T) ((-48 . -541) T) ((-1126 . -281) 55115) ((-1139 . -1118) 55093) ((-309 . -27) 55072) ((-1029 . -101) T) ((-791 . -227) 55024) ((-234 . -821) 55003) ((-923 . -101) T) ((-690 . -101) T) ((-288 . -481) 54940) ((-473 . -101) T) ((-708 . -1025) T) ((-592 . -593) 54922) ((-592 . -594) 54783) ((-400 . -370) 54767) ((-400 . -331) 54751) ((-1139 . -38) 54580) ((-1092 . -38) 54429) ((-827 . -38) 54399) ((-383 . -624) 54383) ((-621 . -302) 54321) ((-934 . -694) 54218) ((-712 . -694) 54188) ((-216 . -106) 54172) ((-45 . -279) 54097) ((-599 . -624) 54071) ((-305 . -1067) T) ((-282 . -1024) 54058) ((-110 . -593) 54040) ((-110 . -594) 54022) ((-445 . -694) 53992) ((-792 . -246) 53931) ((-665 . -1067) 53909) ((-535 . -1067) T) ((-1141 . -1025) T) ((-1140 . -1025) T) ((-1134 . -1025) T) ((-282 . -111) 53894) ((-1093 . -1025) T) ((-535 . -590) 53873) ((-95 . -593) 53839) ((-975 . -821) T) ((-221 . -663) 53797) ((-670 . -1079) T) ((-1174 . -717) 53773) ((-312 . -1018) T) ((-336 . -25) T) ((-336 . -21) T) ((-400 . -871) 53732) ((-67 . -1180) T) ((-809 . -770) 53711) ((-411 . -694) 53685) ((-775 . -1067) T) ((-809 . -767) 53664) ((-675 . -130) T) ((-689 . -891) 53643) ((-670 . -23) T) ((-479 . -283) T) ((-809 . -703) 53622) ((-312 . -227) 53574) ((-312 . -237) 53553) ((-211 . -283) T) ((-995 . -356) T) ((-1210 . -444) 53532) ((-1189 . -444) 53511) ((-347 . -322) 53488) ((-347 . -356) T) ((-1107 . -593) 53470) ((-45 . -1214) 53420) ((-842 . -101) T) ((-621 . -275) 53404) ((-675 . -1027) T) ((-1237 . -101) T) ((-469 . -624) 53369) ((-460 . -1067) T) ((-45 . -584) 53294) ((-1236 . -101) T) ((-1125 . -281) 53269) ((-40 . -617) 53208) ((-48 . -356) T) ((-1073 . -593) 53190) ((-1054 . -823) 53169) ((-610 . -281) 53144) ((-758 . -823) 53123) ((-756 . -823) 53102) ((-474 . -593) 52833) ((-234 . -404) 52802) ((-923 . -302) 52789) ((-446 . -823) 52768) ((-64 . -1180) T) ((-1030 . -505) 52612) ((-601 . -130) T) ((-473 . -302) 52599) ((-586 . -1067) T) ((-117 . -130) T) ((-647 . -1067) T) ((-282 . -1018) T) ((-178 . -1067) T) ((-159 . -1067) T) ((-154 . -1067) T) ((-152 . -1067) T) ((-445 . -738) T) ((-31 . -1050) T) ((-934 . -170) 52550) ((-941 . -92) T) ((-1046 . -1024) 52460) ((-599 . -770) 52439) ((-574 . -1067) T) ((-599 . -767) 52418) ((-599 . -703) T) ((-288 . -279) 52397) ((-287 . -1180) T) ((-1022 . -593) 52359) ((-1022 . -594) 52320) ((-995 . -1079) T) ((-167 . -101) T) ((-268 . -823) T) ((-1132 . -1067) T) ((-794 . -593) 52302) ((-1080 . -281) 52279) ((-1069 . -223) 52263) ((-974 . -300) T) ((-775 . -694) 52247) ((-352 . -1024) 52199) ((-347 . -1079) T) ((-346 . -1024) 52151) ((-407 . -593) 52133) ((-378 . -593) 52115) ((-338 . -1024) 52067) ((-221 . -593) 51999) ((-1046 . -111) 51895) ((-995 . -23) T) ((-107 . -1024) 51845) ((-869 . -101) T) ((-814 . -101) T) ((-784 . -101) T) ((-745 . -101) T) ((-653 . -101) T) ((-466 . -444) 51824) ((-411 . -170) T) ((-352 . -111) 51762) ((-346 . -111) 51700) ((-338 . -111) 51638) ((-244 . -225) 51607) ((-243 . -225) 51576) ((-347 . -23) T) ((-70 . -1180) T) ((-219 . -38) 51541) ((-107 . -111) 51475) ((-40 . -25) T) ((-40 . -21) T) ((-646 . -697) T) ((-167 . -277) 51453) ((-48 . -1079) T) ((-892 . -25) T) ((-747 . -25) T) ((-1117 . -481) 51390) ((-477 . -1067) T) ((-1250 . -624) 51364) ((-1199 . -101) T) ((-828 . -101) T) ((-234 . -1025) 51294) ((-1029 . -1118) T) ((-935 . -768) 51247) ((-374 . -624) 51231) ((-48 . -23) T) ((-935 . -771) 51184) ((-791 . -771) 51135) ((-791 . -768) 51086) ((-288 . -584) 51065) ((-469 . -703) T) ((-556 . -101) T) ((-842 . -302) 51022) ((-629 . -279) 51001) ((-112 . -637) T) ((-75 . -1180) T) ((-1029 . -38) 50988) ((-640 . -367) 50967) ((-923 . -38) 50816) ((-708 . -1067) T) ((-473 . -38) 50665) ((-85 . -1180) T) ((-556 . -277) T) ((-1190 . -821) NIL) ((-573 . -593) 50631) ((-1141 . -1067) T) ((-1140 . -1067) T) ((-1134 . -1067) T) ((-344 . -1009) 50608) ((-1046 . -1018) T) ((-975 . -1025) T) ((-45 . -593) 50590) ((-45 . -594) NIL) ((-885 . -1025) T) ((-793 . -593) 50572) ((-1114 . -101) 50550) ((-1046 . -237) 50501) ((-420 . -1025) T) ((-352 . -1018) T) ((-346 . -1018) T) ((-358 . -357) 50478) ((-338 . -1018) T) ((-244 . -232) 50457) ((-243 . -232) 50436) ((-109 . -357) 50410) ((-1046 . -227) 50335) ((-1093 . -1067) T) ((-287 . -871) 50294) ((-107 . -1018) T) ((-670 . -130) T) ((-411 . -505) 50136) ((-352 . -227) 50115) ((-352 . -237) T) ((-44 . -697) T) ((-346 . -227) 50094) ((-346 . -237) T) ((-338 . -227) 50073) ((-338 . -237) T) ((-167 . -302) 50038) ((-107 . -237) T) ((-107 . -227) T) ((-312 . -768) T) ((-841 . -21) T) ((-841 . -25) T) ((-400 . -300) T) ((-491 . -34) T) ((-110 . -281) 50013) ((-1080 . -1024) 49910) ((-842 . -1118) NIL) ((-323 . -593) 49892) ((-400 . -993) 49871) ((-1080 . -111) 49761) ((-667 . -1221) T) ((-429 . -1067) T) ((-1250 . -703) T) ((-62 . -593) 49743) ((-842 . -38) 49688) ((-514 . -1180) T) ((-582 . -149) 49672) ((-503 . -593) 49654) ((-1199 . -302) 49641) ((-708 . -694) 49490) ((-521 . -769) T) ((-521 . -770) T) ((-549 . -617) 49472) ((-486 . -617) 49432) ((-348 . -444) T) ((-345 . -444) T) ((-337 . -444) T) ((-257 . -444) 49383) ((-516 . -1067) T) ((-511 . -1067) 49333) ((-241 . -444) 49284) ((-1117 . -279) 49263) ((-1145 . -593) 49245) ((-665 . -505) 49178) ((-934 . -283) 49157) ((-535 . -505) 48949) ((-1139 . -225) 48933) ((-167 . -1118) 48912) ((-1238 . -593) 48894) ((-1141 . -694) 48791) ((-1140 . -694) 48632) ((-863 . -101) T) ((-1134 . -694) 48428) ((-1093 . -694) 48325) ((-1123 . -650) 48309) ((-348 . -395) 48260) ((-345 . -395) 48211) ((-337 . -395) 48162) ((-995 . -130) T) ((-775 . -505) 48074) ((-288 . -594) NIL) ((-288 . -593) 48056) ((-881 . -444) T) ((-935 . -361) 48009) ((-791 . -361) 47988) ((-501 . -500) 47967) ((-499 . -500) 47946) ((-479 . -279) NIL) ((-474 . -281) 47923) ((-411 . -283) T) ((-347 . -130) T) ((-211 . -279) NIL) ((-670 . -484) NIL) ((-98 . -1079) T) ((-167 . -38) 47751) ((-1210 . -944) 47713) ((-1114 . -302) 47651) ((-1189 . -944) 47620) ((-881 . -395) T) ((-1080 . -1018) 47550) ((-1212 . -541) T) ((-1117 . -584) 47529) ((-112 . -823) T) ((-1030 . -481) 47460) ((-562 . -21) T) ((-562 . -25) T) ((-549 . -21) T) ((-549 . -25) T) ((-486 . -25) T) ((-486 . -21) T) ((-1199 . -1118) 47438) ((-1080 . -227) 47390) ((-48 . -130) T) ((-1161 . -101) T) ((-234 . -1067) 47180) ((-842 . -393) 47157) ((-1055 . -101) T) ((-1042 . -101) T) ((-588 . -101) T) ((-467 . -101) T) ((-1199 . -38) 46986) ((-828 . -38) 46956) ((-708 . -170) 46867) ((-629 . -593) 46849) ((-622 . -1050) T) ((-556 . -38) 46836) ((-941 . -593) 46802) ((-929 . -101) 46752) ((-836 . -593) 46734) ((-836 . -594) 46656) ((-574 . -505) NIL) ((-1218 . -1025) T) ((-1211 . -1025) T) ((-1190 . -1025) T) ((-577 . -1025) T) ((-576 . -1025) T) ((-1254 . -1079) T) ((-1141 . -170) 46607) ((-1140 . -170) 46538) ((-1134 . -170) 46469) ((-1093 . -170) 46420) ((-975 . -1067) T) ((-942 . -1067) T) ((-885 . -1067) T) ((-1174 . -145) 46399) ((-775 . -773) 46383) ((-675 . -25) T) ((-675 . -21) T) ((-117 . -617) 46360) ((-677 . -857) 46342) ((-420 . -1067) T) ((-309 . -1184) 46321) ((-306 . -1184) T) ((-167 . -393) 46305) ((-1174 . -143) 46284) ((-466 . -944) 46246) ((-128 . -1067) T) ((-71 . -593) 46228) ((-107 . -771) T) ((-107 . -768) T) ((-309 . -541) 46207) ((-677 . -1009) 46189) ((-306 . -541) T) ((-1254 . -23) T) ((-133 . -1009) 46171) ((-474 . -1024) 46068) ((-45 . -281) 45993) ((-234 . -694) 45935) ((-508 . -101) T) ((-474 . -111) 45825) ((-1059 . -101) 45803) ((-1005 . -101) T) ((-621 . -804) 45782) ((-708 . -505) 45725) ((-1022 . -1024) 45709) ((-1102 . -92) T) ((-1030 . -279) 45684) ((-601 . -21) T) ((-601 . -25) T) ((-515 . -1067) T) ((-354 . -101) T) ((-315 . -101) T) ((-646 . -624) 45658) ((-378 . -1024) 45642) ((-1022 . -111) 45621) ((-792 . -404) 45605) ((-117 . -25) T) ((-88 . -593) 45587) ((-117 . -21) T) ((-588 . -302) 45382) ((-467 . -302) 45186) ((-1117 . -594) NIL) ((-378 . -111) 45165) ((-372 . -101) T) ((-208 . -593) 45147) ((-1117 . -593) 45129) ((-975 . -694) 45079) ((-1134 . -505) 44848) ((-885 . -694) 44800) ((-1093 . -505) 44770) ((-344 . -300) T) ((-1153 . -149) 44720) ((-929 . -302) 44658) ((-810 . -101) T) ((-420 . -694) 44642) ((-219 . -804) T) ((-803 . -101) T) ((-801 . -101) T) ((-471 . -149) 44592) ((-1210 . -1209) 44571) ((-1087 . -1184) T) ((-332 . -1009) 44538) ((-1210 . -1204) 44508) ((-1210 . -1207) 44492) ((-1189 . -1188) 44471) ((-79 . -593) 44453) ((-876 . -593) 44435) ((-1189 . -1204) 44412) ((-1087 . -541) T) ((-892 . -823) T) ((-747 . -823) T) ((-479 . -594) 44342) ((-479 . -593) 44324) ((-372 . -277) T) ((-648 . -823) T) ((-1189 . -1186) 44308) ((-1212 . -1079) T) ((-211 . -594) 44238) ((-211 . -593) 44220) ((-1030 . -584) 44195) ((-58 . -149) 44179) ((-507 . -149) 44163) ((-487 . -149) 44147) ((-352 . -1245) 44131) ((-346 . -1245) 44115) ((-338 . -1245) 44099) ((-309 . -356) 44078) ((-306 . -356) T) ((-474 . -1018) 44008) ((-670 . -617) 43990) ((-1248 . -624) 43964) ((-1246 . -624) 43938) ((-1212 . -23) T) ((-665 . -481) 43922) ((-63 . -593) 43904) ((-1080 . -771) 43855) ((-1080 . -768) 43806) ((-535 . -481) 43743) ((-646 . -34) T) ((-474 . -227) 43695) ((-288 . -281) 43674) ((-234 . -170) 43653) ((-792 . -1025) T) ((-44 . -624) 43611) ((-1046 . -361) 43562) ((-708 . -283) 43493) ((-511 . -505) 43426) ((-793 . -1024) 43377) ((-1054 . -143) 43356) ((-352 . -361) 43335) ((-346 . -361) 43314) ((-338 . -361) 43293) ((-1054 . -145) 43272) ((-842 . -225) 43249) ((-793 . -111) 43191) ((-758 . -143) 43170) ((-758 . -145) 43149) ((-257 . -920) 43116) ((-244 . -821) 43095) ((-241 . -920) 43040) ((-243 . -821) 43019) ((-756 . -143) 42998) ((-756 . -145) 42977) ((-150 . -624) 42951) ((-446 . -145) 42930) ((-446 . -143) 42909) ((-646 . -703) T) ((-799 . -593) 42891) ((-1218 . -1067) T) ((-1211 . -1067) T) ((-1190 . -1067) T) ((-1174 . -1168) 42857) ((-1174 . -1165) 42823) ((-1141 . -283) 42802) ((-1140 . -283) 42753) ((-1134 . -283) 42704) ((-1093 . -283) 42683) ((-332 . -871) 42664) ((-975 . -170) T) ((-885 . -170) T) ((-577 . -1067) T) ((-576 . -1067) T) ((-670 . -21) T) ((-670 . -25) T) ((-466 . -1207) 42648) ((-466 . -1204) 42618) ((-411 . -279) 42546) ((-309 . -1079) 42395) ((-306 . -1079) T) ((-1174 . -35) 42361) ((-1174 . -94) 42327) ((-83 . -593) 42309) ((-90 . -101) 42287) ((-1254 . -130) T) ((-563 . -143) T) ((-563 . -145) 42269) ((-509 . -145) 42251) ((-509 . -143) T) ((-309 . -23) 42103) ((-40 . -335) 42077) ((-306 . -23) T) ((-1125 . -627) 42059) ((-1241 . -1025) T) ((-1125 . -366) 42041) ((-791 . -624) 41889) ((-1063 . -101) T) ((-1057 . -101) T) ((-1040 . -101) T) ((-167 . -225) 41873) ((-1033 . -101) T) ((-1007 . -101) T) ((-990 . -101) T) ((-574 . -481) 41855) ((-604 . -101) T) ((-234 . -505) 41788) ((-475 . -101) T) ((-1248 . -703) T) ((-1246 . -703) T) ((-212 . -101) T) ((-1145 . -1024) 41671) ((-1145 . -111) 41540) ((-793 . -1018) T) ((-657 . -1050) T) ((-652 . -1050) T) ((-506 . -101) T) ((-501 . -101) T) ((-48 . -617) 41500) ((-499 . -101) T) ((-470 . -1050) T) ((-1238 . -1024) 41470) ((-137 . -1050) T) ((-136 . -1050) T) ((-132 . -1050) T) ((-1005 . -38) 41454) ((-793 . -227) T) ((-793 . -237) 41433) ((-1238 . -111) 41398) ((-1218 . -694) 41295) ((-535 . -279) 41274) ((-1211 . -694) 41115) ((-1199 . -225) 41099) ((-586 . -92) T) ((-1030 . -594) NIL) ((-1030 . -593) 41081) ((-647 . -92) T) ((-178 . -92) T) ((-159 . -92) T) ((-154 . -92) T) ((-152 . -92) T) ((-1190 . -694) 40877) ((-974 . -891) T) ((-679 . -593) 40846) ((-150 . -703) T) ((-1080 . -361) 40825) ((-975 . -505) NIL) ((-244 . -404) 40794) ((-243 . -404) 40763) ((-995 . -25) T) ((-995 . -21) T) ((-577 . -694) 40736) ((-576 . -694) 40633) ((-775 . -279) 40591) ((-126 . -101) 40569) ((-809 . -1009) 40465) ((-167 . -804) 40444) ((-312 . -624) 40341) ((-791 . -34) T) ((-691 . -101) T) ((-1087 . -1079) T) ((-128 . -505) NIL) ((-997 . -1180) T) ((-372 . -38) 40306) ((-347 . -25) T) ((-347 . -21) T) ((-160 . -101) T) ((-155 . -101) T) ((-348 . -1233) 40290) ((-345 . -1233) 40274) ((-337 . -1233) 40258) ((-167 . -342) 40237) ((-549 . -823) T) ((-486 . -823) T) ((-1087 . -23) T) ((-86 . -593) 40219) ((-677 . -300) T) ((-810 . -38) 40189) ((-803 . -38) 40159) ((-1212 . -130) T) ((-1117 . -281) 40138) ((-935 . -769) 40091) ((-935 . -770) 40044) ((-791 . -767) 40023) ((-116 . -300) T) ((-90 . -302) 39961) ((-651 . -34) T) ((-535 . -584) 39940) ((-48 . -25) T) ((-48 . -21) T) ((-791 . -770) 39891) ((-791 . -769) 39870) ((-677 . -993) T) ((-629 . -1024) 39854) ((-935 . -703) 39753) ((-791 . -703) 39663) ((-935 . -465) 39616) ((-474 . -771) 39567) ((-474 . -768) 39518) ((-881 . -1233) 39505) ((-1145 . -1018) T) ((-629 . -111) 39484) ((-1145 . -319) 39461) ((-1166 . -101) 39439) ((-1068 . -593) 39421) ((-677 . -534) T) ((-792 . -1067) T) ((-1238 . -1018) T) ((-406 . -1067) T) ((-1102 . -593) 39387) ((-244 . -1025) 39317) ((-243 . -1025) 39247) ((-282 . -624) 39234) ((-574 . -279) 39209) ((-665 . -663) 39167) ((-934 . -593) 39149) ((-843 . -101) T) ((-712 . -593) 39131) ((-692 . -593) 39113) ((-1218 . -170) 39064) ((-1211 . -170) 38995) ((-1190 . -170) 38926) ((-675 . -823) T) ((-975 . -283) T) ((-445 . -593) 38908) ((-605 . -703) T) ((-59 . -1067) 38886) ((-239 . -149) 38870) ((-885 . -283) T) ((-995 . -983) T) ((-605 . -465) T) ((-689 . -1184) 38849) ((-577 . -170) 38828) ((-576 . -170) 38779) ((-1226 . -823) 38758) ((-689 . -541) 38669) ((-400 . -891) T) ((-400 . -796) 38648) ((-312 . -770) T) ((-312 . -703) T) ((-411 . -593) 38630) ((-411 . -594) 38538) ((-621 . -1116) 38522) ((-110 . -627) 38504) ((-172 . -300) T) ((-126 . -302) 38442) ((-110 . -366) 38424) ((-391 . -1180) T) ((-309 . -130) 38295) ((-306 . -130) T) ((-68 . -388) T) ((-110 . -123) T) ((-511 . -481) 38279) ((-630 . -1079) T) ((-574 . -19) 38261) ((-60 . -433) T) ((-60 . -388) T) ((-800 . -1067) T) ((-574 . -584) 38236) ((-469 . -1009) 38196) ((-629 . -1018) T) ((-630 . -23) T) ((-1241 . -1067) T) ((-31 . -101) T) ((-792 . -694) 38045) ((-117 . -823) NIL) ((-1139 . -404) 38029) ((-1092 . -404) 38013) ((-827 . -404) 37997) ((-844 . -101) 37948) ((-1210 . -101) T) ((-1190 . -505) 37717) ((-516 . -92) T) ((-1166 . -302) 37655) ((-305 . -593) 37637) ((-1189 . -101) T) ((-1069 . -1067) T) ((-1141 . -279) 37622) ((-1140 . -279) 37607) ((-282 . -703) T) ((-107 . -880) NIL) ((-665 . -593) 37539) ((-665 . -594) 37500) ((-1046 . -624) 37410) ((-581 . -593) 37392) ((-535 . -594) NIL) ((-535 . -593) 37374) ((-1134 . -279) 37222) ((-479 . -1024) 37172) ((-688 . -444) T) ((-502 . -500) 37151) ((-498 . -500) 37130) ((-211 . -1024) 37080) ((-352 . -624) 37032) ((-346 . -624) 36984) ((-219 . -821) T) ((-338 . -624) 36936) ((-582 . -101) 36886) ((-474 . -361) 36865) ((-107 . -624) 36815) ((-479 . -111) 36749) ((-234 . -481) 36733) ((-336 . -145) 36715) ((-336 . -143) T) ((-167 . -363) 36686) ((-914 . -1224) 36670) ((-211 . -111) 36604) ((-843 . -302) 36569) ((-914 . -1067) 36519) ((-775 . -594) 36480) ((-775 . -593) 36462) ((-695 . -101) T) ((-324 . -1067) T) ((-1087 . -130) T) ((-691 . -38) 36432) ((-309 . -484) 36411) ((-491 . -1180) T) ((-1210 . -277) 36377) ((-1189 . -277) 36343) ((-320 . -149) 36327) ((-1030 . -281) 36302) ((-1241 . -694) 36272) ((-1126 . -34) T) ((-1250 . -1009) 36249) ((-460 . -593) 36231) ((-476 . -34) T) ((-374 . -1009) 36215) ((-1139 . -1025) T) ((-1092 . -1025) T) ((-827 . -1025) T) ((-1029 . -821) T) ((-792 . -170) 36126) ((-511 . -279) 36103) ((-128 . -481) 36085) ((-1218 . -283) 36064) ((-117 . -963) 36041) ((-1211 . -283) 35992) ((-1161 . -357) 35966) ((-1055 . -259) 35950) ((-647 . -593) 35916) ((-586 . -593) 35866) ((-466 . -101) T) ((-178 . -593) 35832) ((-159 . -593) 35798) ((-154 . -593) 35764) ((-358 . -1067) T) ((-244 . -1067) T) ((-243 . -1067) T) ((-152 . -593) 35730) ((-109 . -1067) T) ((-1190 . -283) 35681) ((-843 . -1118) 35659) ((-1141 . -973) 35625) ((-588 . -357) 35565) ((-1140 . -973) 35531) ((-588 . -223) 35478) ((-574 . -593) 35460) ((-574 . -594) NIL) ((-670 . -823) T) ((-467 . -223) 35410) ((-479 . -1018) T) ((-1134 . -973) 35376) ((-87 . -432) T) ((-87 . -388) T) ((-211 . -1018) T) ((-1093 . -973) 35342) ((-1046 . -703) T) ((-689 . -1079) T) ((-577 . -283) 35321) ((-576 . -283) 35300) ((-479 . -237) T) ((-479 . -227) T) ((-211 . -237) T) ((-211 . -227) T) ((-1132 . -593) 35282) ((-843 . -38) 35234) ((-352 . -703) T) ((-346 . -703) T) ((-338 . -703) T) ((-107 . -770) T) ((-107 . -767) T) ((-511 . -1214) 35218) ((-107 . -703) T) ((-689 . -23) T) ((-1254 . -25) T) ((-466 . -277) 35184) ((-1254 . -21) T) ((-1189 . -302) 35123) ((-1143 . -101) T) ((-40 . -143) 35095) ((-40 . -145) 35067) ((-511 . -584) 35044) ((-1080 . -624) 34892) ((-582 . -302) 34830) ((-45 . -627) 34780) ((-45 . -642) 34730) ((-45 . -366) 34680) ((-1125 . -34) T) ((-842 . -821) NIL) ((-630 . -130) T) ((-477 . -593) 34662) ((-234 . -279) 34639) ((-623 . -34) T) ((-610 . -34) T) ((-1054 . -444) 34590) ((-792 . -505) 34464) ((-758 . -444) 34395) ((-756 . -444) 34346) ((-446 . -444) 34297) ((-923 . -404) 34281) ((-708 . -593) 34263) ((-244 . -694) 34205) ((-243 . -694) 34147) ((-708 . -594) 34008) ((-473 . -404) 33992) ((-332 . -295) T) ((-515 . -92) T) ((-344 . -891) T) ((-971 . -101) 33970) ((-995 . -823) T) ((-59 . -505) 33903) ((-1189 . -1118) 33855) ((-975 . -279) NIL) ((-219 . -1025) T) ((-372 . -804) T) ((-1080 . -34) T) ((-1193 . -1060) 33839) ((-563 . -444) T) ((-509 . -444) T) ((-1193 . -1067) 33817) ((-1193 . -1062) 33774) ((-234 . -584) 33751) ((-1141 . -593) 33733) ((-1140 . -593) 33715) ((-1134 . -593) 33697) ((-1134 . -594) NIL) ((-1093 . -593) 33679) ((-128 . -279) 33654) ((-843 . -393) 33638) ((-525 . -101) T) ((-1210 . -38) 33479) ((-1189 . -38) 33293) ((-841 . -145) T) ((-563 . -395) T) ((-48 . -823) T) ((-509 . -395) T) ((-1222 . -101) T) ((-1212 . -21) T) ((-1212 . -25) T) ((-1080 . -767) 33272) ((-1080 . -770) 33223) ((-1080 . -769) 33202) ((-964 . -1067) T) ((-998 . -34) T) ((-834 . -1067) T) ((-1080 . -703) 33112) ((-640 . -101) T) ((-622 . -101) T) ((-535 . -281) 33091) ((-1153 . -101) T) ((-468 . -34) T) ((-455 . -34) T) ((-348 . -101) T) ((-345 . -101) T) ((-337 . -101) T) ((-257 . -101) T) ((-241 . -101) T) ((-469 . -300) T) ((-1029 . -1025) T) ((-923 . -1025) T) ((-309 . -617) 32997) ((-306 . -617) 32958) ((-473 . -1025) T) ((-471 . -101) T) ((-429 . -593) 32940) ((-1139 . -1067) T) ((-1092 . -1067) T) ((-827 . -1067) T) ((-1108 . -101) T) ((-792 . -283) 32871) ((-934 . -1024) 32754) ((-469 . -993) T) ((-128 . -19) 32736) ((-712 . -1024) 32706) ((-128 . -584) 32681) ((-445 . -1024) 32651) ((-1114 . -1088) 32635) ((-1069 . -505) 32568) ((-934 . -111) 32437) ((-881 . -101) T) ((-712 . -111) 32402) ((-516 . -593) 32368) ((-58 . -101) 32318) ((-511 . -594) 32279) ((-511 . -593) 32191) ((-510 . -101) 32169) ((-507 . -101) 32119) ((-488 . -101) 32097) ((-487 . -101) 32047) ((-445 . -111) 32010) ((-244 . -170) 31989) ((-243 . -170) 31968) ((-411 . -1024) 31942) ((-1174 . -944) 31904) ((-970 . -1079) T) ((-914 . -505) 31837) ((-479 . -771) T) ((-466 . -38) 31678) ((-411 . -111) 31645) ((-479 . -768) T) ((-971 . -302) 31583) ((-211 . -771) T) ((-211 . -768) T) ((-970 . -23) T) ((-689 . -130) T) ((-1189 . -393) 31553) ((-309 . -25) 31405) ((-167 . -404) 31389) ((-309 . -21) 31260) ((-306 . -25) T) ((-306 . -21) T) ((-836 . -361) T) ((-110 . -34) T) ((-474 . -624) 31108) ((-842 . -1025) T) ((-574 . -281) 31083) ((-562 . -145) T) ((-549 . -145) T) ((-486 . -145) T) ((-1139 . -694) 30912) ((-1092 . -694) 30761) ((-1087 . -617) 30743) ((-827 . -694) 30713) ((-646 . -1180) T) ((-1 . -101) T) ((-234 . -593) 30444) ((-1082 . -1067) T) ((-1199 . -404) 30428) ((-1153 . -302) 30232) ((-934 . -1018) T) ((-712 . -1018) T) ((-692 . -1018) T) ((-621 . -1067) 30182) ((-1022 . -624) 30166) ((-828 . -404) 30150) ((-502 . -101) T) ((-498 . -101) T) ((-241 . -302) 30137) ((-257 . -302) 30124) ((-934 . -319) 30103) ((-378 . -624) 30087) ((-471 . -302) 29891) ((-244 . -505) 29824) ((-646 . -1009) 29720) ((-243 . -505) 29653) ((-1108 . -302) 29579) ((-795 . -1067) T) ((-775 . -1024) 29563) ((-1218 . -279) 29548) ((-1211 . -279) 29533) ((-1190 . -279) 29381) ((-379 . -1067) T) ((-317 . -1067) T) ((-411 . -1018) T) ((-167 . -1025) T) ((-58 . -302) 29319) ((-775 . -111) 29298) ((-576 . -279) 29283) ((-510 . -302) 29221) ((-507 . -302) 29159) ((-488 . -302) 29097) ((-487 . -302) 29035) ((-411 . -227) 29014) ((-474 . -34) T) ((-975 . -594) 28944) ((-219 . -1067) T) ((-975 . -593) 28926) ((-942 . -593) 28908) ((-942 . -594) 28883) ((-885 . -593) 28865) ((-675 . -145) T) ((-677 . -891) T) ((-677 . -796) T) ((-420 . -593) 28847) ((-1087 . -21) T) ((-128 . -594) NIL) ((-128 . -593) 28829) ((-1087 . -25) T) ((-646 . -370) 28813) ((-116 . -891) T) ((-843 . -225) 28797) ((-77 . -1180) T) ((-126 . -125) 28781) ((-1022 . -34) T) ((-1248 . -1009) 28755) ((-1246 . -1009) 28712) ((-1199 . -1025) T) ((-828 . -1025) T) ((-474 . -767) 28691) ((-348 . -1118) 28670) ((-345 . -1118) 28649) ((-337 . -1118) 28628) ((-474 . -770) 28579) ((-474 . -769) 28558) ((-221 . -34) T) ((-474 . -703) 28468) ((-59 . -481) 28452) ((-556 . -1025) T) ((-1139 . -170) 28343) ((-1092 . -170) 28254) ((-1029 . -1067) T) ((-1054 . -920) 28199) ((-923 . -1067) T) ((-793 . -624) 28150) ((-758 . -920) 28119) ((-690 . -1067) T) ((-756 . -920) 28086) ((-507 . -275) 28070) ((-646 . -871) 28029) ((-473 . -1067) T) ((-446 . -920) 27996) ((-78 . -1180) T) ((-348 . -38) 27961) ((-345 . -38) 27926) ((-337 . -38) 27891) ((-257 . -38) 27740) ((-241 . -38) 27589) ((-881 . -1118) T) ((-601 . -145) 27568) ((-601 . -143) 27547) ((-515 . -593) 27513) ((-117 . -145) T) ((-117 . -143) NIL) ((-407 . -703) T) ((-775 . -1018) T) ((-336 . -444) T) ((-1218 . -973) 27479) ((-1211 . -973) 27445) ((-1190 . -973) 27411) ((-881 . -38) 27376) ((-219 . -694) 27341) ((-312 . -47) 27311) ((-40 . -402) 27283) ((-138 . -593) 27265) ((-970 . -130) T) ((-791 . -1180) T) ((-172 . -891) T) ((-336 . -395) T) ((-511 . -281) 27242) ((-791 . -1009) 27069) ((-45 . -34) T) ((-657 . -101) T) ((-652 . -101) T) ((-638 . -101) T) ((-630 . -21) T) ((-630 . -25) T) ((-1189 . -225) 27039) ((-1069 . -481) 27023) ((-470 . -101) T) ((-651 . -1180) T) ((-239 . -101) 26973) ((-137 . -101) T) ((-136 . -101) T) ((-132 . -101) T) ((-842 . -1067) T) ((-1145 . -624) 26898) ((-1029 . -694) 26885) ((-708 . -1024) 26728) ((-1139 . -505) 26675) ((-923 . -694) 26524) ((-1092 . -505) 26476) ((-1237 . -1067) T) ((-1236 . -1067) T) ((-473 . -694) 26325) ((-66 . -593) 26307) ((-708 . -111) 26136) ((-914 . -481) 26120) ((-1238 . -624) 26080) ((-793 . -703) T) ((-1141 . -1024) 25963) ((-1140 . -1024) 25798) ((-1134 . -1024) 25588) ((-1093 . -1024) 25471) ((-974 . -1184) T) ((-1061 . -101) 25449) ((-791 . -370) 25418) ((-974 . -541) T) ((-1141 . -111) 25287) ((-1140 . -111) 25108) ((-1134 . -111) 24877) ((-1093 . -111) 24746) ((-1072 . -1070) 24710) ((-372 . -821) T) ((-1218 . -593) 24692) ((-1211 . -593) 24674) ((-1190 . -593) 24656) ((-1190 . -594) NIL) ((-234 . -281) 24633) ((-40 . -444) T) ((-219 . -170) T) ((-167 . -1067) T) ((-670 . -145) T) ((-670 . -143) NIL) ((-577 . -593) 24615) ((-576 . -593) 24597) ((-869 . -1067) T) ((-814 . -1067) T) ((-784 . -1067) T) ((-745 . -1067) T) ((-634 . -825) 24581) ((-653 . -1067) T) ((-791 . -871) 24513) ((-40 . -395) NIL) ((-1087 . -637) T) ((-842 . -694) 24458) ((-244 . -481) 24442) ((-243 . -481) 24426) ((-689 . -617) 24374) ((-629 . -624) 24348) ((-288 . -34) T) ((-708 . -1018) T) ((-563 . -1233) 24335) ((-509 . -1233) 24312) ((-1199 . -1067) T) ((-1139 . -283) 24223) ((-1092 . -283) 24154) ((-1029 . -170) T) ((-828 . -1067) T) ((-923 . -170) 24065) ((-758 . -1202) 24049) ((-621 . -505) 23982) ((-76 . -593) 23964) ((-708 . -319) 23929) ((-1145 . -703) T) ((-556 . -1067) T) ((-473 . -170) 23840) ((-239 . -302) 23778) ((-128 . -281) 23753) ((-1109 . -1079) T) ((-69 . -593) 23735) ((-1238 . -703) T) ((-1141 . -1018) T) ((-1140 . -1018) T) ((-320 . -101) 23685) ((-1134 . -1018) T) ((-1109 . -23) T) ((-1093 . -1018) T) ((-90 . -1088) 23669) ((-837 . -1079) T) ((-1141 . -227) 23628) ((-1140 . -237) 23607) ((-1140 . -227) 23559) ((-1134 . -227) 23446) ((-1134 . -237) 23425) ((-312 . -871) 23331) ((-837 . -23) T) ((-167 . -694) 23159) ((-400 . -1184) T) ((-1068 . -361) T) ((-995 . -145) T) ((-974 . -356) T) ((-841 . -444) T) ((-914 . -279) 23136) ((-309 . -823) T) ((-306 . -823) NIL) ((-845 . -101) T) ((-689 . -25) T) ((-400 . -541) T) ((-689 . -21) T) ((-347 . -145) 23118) ((-347 . -143) T) ((-1114 . -1067) 23096) ((-445 . -697) T) ((-74 . -593) 23078) ((-114 . -823) T) ((-239 . -275) 23062) ((-234 . -1024) 22959) ((-80 . -593) 22941) ((-712 . -361) 22894) ((-1143 . -804) T) ((-714 . -229) 22878) ((-1126 . -1180) T) ((-139 . -229) 22860) ((-234 . -111) 22750) ((-1199 . -694) 22579) ((-48 . -145) T) ((-842 . -170) T) ((-828 . -694) 22549) ((-476 . -1180) T) ((-923 . -505) 22496) ((-629 . -703) T) ((-556 . -694) 22483) ((-1005 . -1025) T) ((-473 . -505) 22426) ((-914 . -19) 22410) ((-914 . -584) 22387) ((-792 . -594) NIL) ((-792 . -593) 22369) ((-975 . -1024) 22319) ((-406 . -593) 22301) ((-244 . -279) 22278) ((-243 . -279) 22255) ((-479 . -880) NIL) ((-309 . -29) 22225) ((-107 . -1180) T) ((-974 . -1079) T) ((-211 . -880) NIL) ((-885 . -1024) 22177) ((-1046 . -1009) 22073) ((-975 . -111) 22007) ((-714 . -671) 21991) ((-257 . -225) 21975) ((-420 . -1024) 21959) ((-372 . -1025) T) ((-974 . -23) T) ((-885 . -111) 21897) ((-670 . -1168) NIL) ((-479 . -624) 21847) ((-107 . -855) 21829) ((-107 . -857) 21811) ((-670 . -1165) NIL) ((-211 . -624) 21761) ((-352 . -1009) 21745) ((-346 . -1009) 21729) ((-320 . -302) 21667) ((-338 . -1009) 21651) ((-219 . -283) T) ((-420 . -111) 21630) ((-59 . -593) 21562) ((-167 . -170) T) ((-1087 . -823) T) ((-107 . -1009) 21522) ((-863 . -1067) T) ((-810 . -1025) T) ((-803 . -1025) T) ((-670 . -35) NIL) ((-670 . -94) NIL) ((-306 . -963) 21483) ((-181 . -101) T) ((-562 . -444) T) ((-549 . -444) T) ((-486 . -444) T) ((-400 . -356) T) ((-234 . -1018) 21413) ((-1117 . -34) T) ((-469 . -891) T) ((-970 . -617) 21361) ((-244 . -584) 21338) ((-243 . -584) 21315) ((-1046 . -370) 21299) ((-842 . -505) 21207) ((-234 . -227) 21159) ((-1125 . -1180) T) ((-800 . -593) 21141) ((-1249 . -1079) T) ((-1241 . -593) 21123) ((-1199 . -170) 21014) ((-107 . -370) 20996) ((-107 . -331) 20978) ((-1029 . -283) T) ((-923 . -283) 20909) ((-775 . -361) 20888) ((-623 . -1180) T) ((-610 . -1180) T) ((-473 . -283) 20819) ((-556 . -170) T) ((-320 . -275) 20803) ((-1249 . -23) T) ((-1174 . -101) T) ((-1161 . -1067) T) ((-1055 . -1067) T) ((-1042 . -1067) T) ((-82 . -593) 20785) ((-688 . -101) T) ((-348 . -342) 20764) ((-588 . -1067) T) ((-345 . -342) 20743) ((-337 . -342) 20722) ((-467 . -1067) T) ((-1153 . -223) 20672) ((-257 . -246) 20634) ((-1109 . -130) T) ((-588 . -590) 20610) ((-1046 . -871) 20543) ((-975 . -1018) T) ((-885 . -1018) T) ((-467 . -590) 20522) ((-1134 . -768) NIL) ((-1134 . -771) NIL) ((-1069 . -594) 20483) ((-471 . -223) 20433) ((-1069 . -593) 20415) ((-975 . -237) T) ((-975 . -227) T) ((-420 . -1018) T) ((-929 . -1067) 20365) ((-885 . -237) T) ((-837 . -130) T) ((-675 . -444) T) ((-816 . -1079) 20344) ((-107 . -871) NIL) ((-1174 . -277) 20310) ((-843 . -821) 20289) ((-1080 . -1180) T) ((-876 . -703) T) ((-167 . -505) 20201) ((-970 . -25) T) ((-876 . -465) T) ((-400 . -1079) T) ((-479 . -770) T) ((-479 . -767) T) ((-881 . -342) T) ((-479 . -703) T) ((-211 . -770) T) ((-211 . -767) T) ((-970 . -21) T) ((-211 . -703) T) ((-816 . -23) 20153) ((-312 . -300) 20132) ((-1006 . -229) 20078) ((-400 . -23) T) ((-914 . -594) 20039) ((-914 . -593) 19951) ((-621 . -481) 19935) ((-45 . -981) 19885) ((-596 . -938) T) ((-482 . -101) T) ((-324 . -593) 19867) ((-1080 . -1009) 19694) ((-574 . -627) 19676) ((-574 . -366) 19658) ((-336 . -1233) 19635) ((-998 . -1180) T) ((-842 . -283) T) ((-1199 . -505) 19582) ((-468 . -1180) T) ((-455 . -1180) T) ((-567 . -101) T) ((-1139 . -279) 19509) ((-601 . -444) 19488) ((-971 . -966) 19472) ((-1241 . -375) 19444) ((-508 . -1067) T) ((-117 . -444) T) ((-1160 . -101) T) ((-1059 . -1067) 19422) ((-1005 . -1067) T) ((-1082 . -92) T) ((-864 . -823) T) ((-344 . -1184) T) ((-1218 . -1024) 19305) ((-1080 . -370) 19274) ((-1211 . -1024) 19109) ((-1190 . -1024) 18899) ((-1218 . -111) 18768) ((-1211 . -111) 18589) ((-1190 . -111) 18358) ((-1174 . -302) 18345) ((-344 . -541) T) ((-358 . -593) 18327) ((-282 . -300) T) ((-577 . -1024) 18300) ((-576 . -1024) 18183) ((-354 . -1067) T) ((-315 . -1067) T) ((-244 . -593) 18144) ((-243 . -593) 18105) ((-974 . -130) T) ((-109 . -593) 18087) ((-613 . -23) T) ((-670 . -402) 18054) ((-587 . -23) T) ((-634 . -101) T) ((-577 . -111) 18025) ((-576 . -111) 17894) ((-372 . -1067) T) ((-329 . -101) T) ((-167 . -283) 17805) ((-1189 . -821) 17758) ((-691 . -1025) T) ((-1114 . -505) 17691) ((-1080 . -871) 17623) ((-810 . -1067) T) ((-803 . -1067) T) ((-801 . -1067) T) ((-96 . -101) T) ((-142 . -823) T) ((-592 . -855) 17607) ((-110 . -1180) T) ((-1054 . -101) T) ((-1030 . -34) T) ((-758 . -101) T) ((-756 . -101) T) ((-453 . -101) T) ((-446 . -101) T) ((-234 . -771) 17558) ((-234 . -768) 17509) ((-625 . -101) T) ((-1199 . -283) 17420) ((-640 . -612) 17404) ((-621 . -279) 17381) ((-1005 . -694) 17365) ((-556 . -283) T) ((-934 . -624) 17290) ((-1249 . -130) T) ((-712 . -624) 17250) ((-692 . -624) 17237) ((-268 . -101) T) ((-445 . -624) 17167) ((-50 . -101) T) ((-563 . -101) T) ((-509 . -101) T) ((-1218 . -1018) T) ((-1211 . -1018) T) ((-1190 . -1018) T) ((-1218 . -227) 17126) ((-315 . -694) 17108) ((-1211 . -237) 17087) ((-1211 . -227) 17039) ((-1190 . -227) 16926) ((-1190 . -237) 16905) ((-1174 . -38) 16802) ((-975 . -771) T) ((-577 . -1018) T) ((-576 . -1018) T) ((-975 . -768) T) ((-942 . -771) T) ((-942 . -768) T) ((-843 . -1025) T) ((-841 . -840) 16786) ((-108 . -593) 16768) ((-670 . -444) T) ((-372 . -694) 16733) ((-411 . -624) 16707) ((-689 . -823) 16686) ((-688 . -38) 16651) ((-576 . -227) 16610) ((-40 . -701) 16582) ((-344 . -322) 16559) ((-344 . -356) T) ((-1046 . -300) 16510) ((-287 . -1079) 16391) ((-1073 . -1180) T) ((-169 . -101) T) ((-1193 . -593) 16358) ((-816 . -130) 16310) ((-621 . -1214) 16294) ((-810 . -694) 16264) ((-803 . -694) 16234) ((-474 . -1180) T) ((-352 . -300) T) ((-346 . -300) T) ((-338 . -300) T) ((-621 . -584) 16211) ((-400 . -130) T) ((-511 . -642) 16195) ((-107 . -300) T) ((-287 . -23) 16078) ((-511 . -627) 16062) ((-670 . -395) NIL) ((-511 . -366) 16046) ((-284 . -593) 16028) ((-90 . -1067) 16006) ((-107 . -993) T) ((-549 . -141) T) ((-1226 . -149) 15990) ((-474 . -1009) 15817) ((-1212 . -143) 15778) ((-1212 . -145) 15739) ((-1022 . -1180) T) ((-964 . -593) 15721) ((-834 . -593) 15703) ((-792 . -1024) 15546) ((-1063 . -1067) T) ((-1057 . -1067) T) ((-1054 . -302) 15533) ((-1040 . -1067) T) ((-221 . -1180) T) ((-1033 . -1067) T) ((-1007 . -1067) T) ((-990 . -1067) T) ((-758 . -302) 15520) ((-756 . -302) 15507) ((-1237 . -92) T) ((-792 . -111) 15336) ((-1236 . -92) T) ((-604 . -1067) T) ((-1139 . -594) NIL) ((-1139 . -593) 15318) ((-446 . -302) 15305) ((-475 . -1067) T) ((-1092 . -593) 15287) ((-1092 . -594) 15035) ((-1005 . -170) T) ((-212 . -1067) T) ((-827 . -593) 15017) ((-914 . -281) 14994) ((-588 . -505) 14777) ((-794 . -1009) 14761) ((-467 . -505) 14553) ((-934 . -703) T) ((-712 . -703) T) ((-692 . -703) T) ((-344 . -1079) T) ((-1146 . -593) 14535) ((-217 . -101) T) ((-474 . -370) 14504) ((-506 . -1067) T) ((-501 . -1067) T) ((-499 . -1067) T) ((-775 . -624) 14478) ((-995 . -444) T) ((-929 . -505) 14411) ((-344 . -23) T) ((-613 . -130) T) ((-587 . -130) T) ((-347 . -444) T) ((-234 . -361) 14390) ((-372 . -170) T) ((-1210 . -1025) T) ((-1189 . -1025) T) ((-219 . -973) T) ((-675 . -380) T) ((-411 . -703) T) ((-677 . -1184) T) ((-1109 . -617) 14338) ((-562 . -840) 14322) ((-1126 . -1156) 14298) ((-677 . -541) T) ((-126 . -1067) 14276) ((-1241 . -1024) 14260) ((-691 . -1067) T) ((-474 . -871) 14192) ((-634 . -38) 14162) ((-347 . -395) T) ((-309 . -145) 14141) ((-309 . -143) 14120) ((-116 . -541) T) ((-306 . -145) 14076) ((-306 . -143) 14032) ((-48 . -444) T) ((-160 . -1067) T) ((-155 . -1067) T) ((-1126 . -106) 13979) ((-758 . -1118) 13957) ((-665 . -34) T) ((-1241 . -111) 13936) ((-535 . -34) T) ((-476 . -106) 13920) ((-244 . -281) 13897) ((-243 . -281) 13874) ((-842 . -279) 13825) ((-45 . -1180) T) ((-792 . -1018) T) ((-1145 . -47) 13802) ((-792 . -319) 13764) ((-1054 . -38) 13613) ((-792 . -227) 13592) ((-758 . -38) 13421) ((-756 . -38) 13270) ((-128 . -627) 13252) ((-446 . -38) 13101) ((-128 . -366) 13083) ((-1082 . -593) 13049) ((-1085 . -101) T) ((-621 . -594) 13010) ((-621 . -593) 12922) ((-563 . -1118) T) ((-509 . -1118) T) ((-1114 . -481) 12906) ((-1166 . -1067) 12884) ((-1109 . -25) T) ((-1109 . -21) T) ((-466 . -1025) T) ((-1190 . -768) NIL) ((-1190 . -771) NIL) ((-970 . -823) 12863) ((-795 . -593) 12845) ((-837 . -21) T) ((-837 . -25) T) ((-775 . -703) T) ((-172 . -1184) T) ((-563 . -38) 12810) ((-509 . -38) 12775) ((-379 . -593) 12757) ((-317 . -593) 12739) ((-167 . -279) 12697) ((-62 . -1180) T) ((-112 . -101) T) ((-843 . -1067) T) ((-172 . -541) T) ((-691 . -694) 12667) ((-287 . -130) 12550) ((-219 . -593) 12532) ((-219 . -594) 12462) ((-974 . -617) 12401) ((-1241 . -1018) T) ((-1087 . -145) T) ((-610 . -1156) 12376) ((-708 . -880) 12355) ((-574 . -34) T) ((-623 . -106) 12339) ((-610 . -106) 12285) ((-1199 . -279) 12212) ((-708 . -624) 12137) ((-288 . -1180) T) ((-1145 . -1009) 12033) ((-1134 . -880) NIL) ((-1029 . -594) 11948) ((-1029 . -593) 11930) ((-923 . -593) 11912) ((-336 . -101) T) ((-244 . -1024) 11809) ((-243 . -1024) 11706) ((-387 . -101) T) ((-31 . -1067) T) ((-923 . -594) 11567) ((-690 . -593) 11549) ((-1239 . -1173) 11518) ((-473 . -593) 11500) ((-473 . -594) 11361) ((-241 . -404) 11345) ((-257 . -404) 11329) ((-244 . -111) 11219) ((-243 . -111) 11109) ((-1141 . -624) 11034) ((-1140 . -624) 10931) ((-1134 . -624) 10783) ((-1093 . -624) 10708) ((-344 . -130) T) ((-81 . -433) T) ((-81 . -388) T) ((-974 . -25) T) ((-974 . -21) T) ((-844 . -1067) 10659) ((-843 . -694) 10611) ((-372 . -283) T) ((-167 . -973) 10563) ((-670 . -380) T) ((-970 . -968) 10547) ((-677 . -1079) T) ((-670 . -164) 10529) ((-1210 . -1067) T) ((-1189 . -1067) T) ((-309 . -1165) 10508) ((-309 . -1168) 10487) ((-1131 . -101) T) ((-309 . -930) 10466) ((-133 . -1079) T) ((-116 . -1079) T) ((-582 . -1224) 10450) ((-677 . -23) T) ((-582 . -1067) 10400) ((-90 . -505) 10333) ((-172 . -356) T) ((-309 . -94) 10312) ((-309 . -35) 10291) ((-588 . -481) 10225) ((-133 . -23) T) ((-116 . -23) T) ((-937 . -101) T) ((-695 . -1067) T) ((-467 . -481) 10162) ((-400 . -617) 10110) ((-629 . -1009) 10006) ((-929 . -481) 9990) ((-348 . -1025) T) ((-345 . -1025) T) ((-337 . -1025) T) ((-257 . -1025) T) ((-241 . -1025) T) ((-842 . -594) NIL) ((-842 . -593) 9972) ((-1249 . -21) T) ((-1237 . -593) 9938) ((-1236 . -593) 9904) ((-556 . -973) T) ((-708 . -703) T) ((-1249 . -25) T) ((-244 . -1018) 9834) ((-243 . -1018) 9764) ((-71 . -1180) T) ((-244 . -227) 9716) ((-243 . -227) 9668) ((-40 . -101) T) ((-881 . -1025) T) ((-1148 . -101) T) ((-1141 . -703) T) ((-1140 . -703) T) ((-1134 . -703) T) ((-1134 . -767) NIL) ((-1134 . -770) NIL) ((-925 . -101) T) ((-892 . -101) T) ((-1093 . -703) T) ((-747 . -101) T) ((-648 . -101) T) ((-466 . -1067) T) ((-332 . -1079) T) ((-172 . -1079) T) ((-312 . -891) 9647) ((-1210 . -694) 9488) ((-843 . -170) T) ((-1189 . -694) 9302) ((-816 . -21) 9254) ((-816 . -25) 9206) ((-239 . -1116) 9190) ((-126 . -505) 9123) ((-400 . -25) T) ((-400 . -21) T) ((-332 . -23) T) ((-167 . -594) 8891) ((-167 . -593) 8873) ((-172 . -23) T) ((-621 . -281) 8850) ((-511 . -34) T) ((-869 . -593) 8832) ((-88 . -1180) T) ((-814 . -593) 8814) ((-784 . -593) 8796) ((-745 . -593) 8778) ((-653 . -593) 8760) ((-234 . -624) 8608) ((-1143 . -1067) T) ((-1139 . -1024) 8431) ((-1117 . -1180) T) ((-1092 . -1024) 8274) ((-827 . -1024) 8258) ((-1139 . -111) 8067) ((-1092 . -111) 7896) ((-827 . -111) 7875) ((-1199 . -594) NIL) ((-1199 . -593) 7857) ((-336 . -1118) T) ((-828 . -593) 7839) ((-1042 . -279) 7818) ((-79 . -1180) T) ((-975 . -880) NIL) ((-588 . -279) 7794) ((-1166 . -505) 7727) ((-479 . -1180) T) ((-556 . -593) 7709) ((-467 . -279) 7688) ((-508 . -92) T) ((-211 . -1180) T) ((-1054 . -225) 7672) ((-282 . -891) T) ((-793 . -300) 7651) ((-841 . -101) T) ((-758 . -225) 7635) ((-975 . -624) 7585) ((-929 . -279) 7562) ((-885 . -624) 7514) ((-613 . -21) T) ((-613 . -25) T) ((-587 . -21) T) ((-336 . -38) 7479) ((-670 . -701) 7446) ((-479 . -855) 7428) ((-479 . -857) 7410) ((-466 . -694) 7251) ((-211 . -855) 7233) ((-63 . -1180) T) ((-211 . -857) 7215) ((-587 . -25) T) ((-420 . -624) 7189) ((-479 . -1009) 7149) ((-843 . -505) 7061) ((-211 . -1009) 7021) ((-234 . -34) T) ((-971 . -1067) 6999) ((-1210 . -170) 6930) ((-1189 . -170) 6861) ((-689 . -143) 6840) ((-689 . -145) 6819) ((-677 . -130) T) ((-135 . -457) 6796) ((-634 . -632) 6780) ((-1114 . -593) 6712) ((-116 . -130) T) ((-469 . -1184) T) ((-588 . -584) 6688) ((-467 . -584) 6667) ((-329 . -328) 6636) ((-525 . -1067) T) ((-469 . -541) T) ((-1139 . -1018) T) ((-1092 . -1018) T) ((-827 . -1018) T) ((-234 . -767) 6615) ((-234 . -770) 6566) ((-234 . -769) 6545) ((-1139 . -319) 6522) ((-234 . -703) 6432) ((-929 . -19) 6416) ((-479 . -370) 6398) ((-479 . -331) 6380) ((-1092 . -319) 6352) ((-347 . -1233) 6329) ((-211 . -370) 6311) ((-211 . -331) 6293) ((-929 . -584) 6270) ((-1139 . -227) T) ((-640 . -1067) T) ((-622 . -1067) T) ((-1222 . -1067) T) ((-1153 . -1067) T) ((-1054 . -246) 6207) ((-348 . -1067) T) ((-345 . -1067) T) ((-337 . -1067) T) ((-257 . -1067) T) ((-241 . -1067) T) ((-83 . -1180) T) ((-127 . -101) 6185) ((-121 . -101) 6163) ((-128 . -34) T) ((-1153 . -590) 6142) ((-471 . -1067) T) ((-1108 . -1067) T) ((-471 . -590) 6121) ((-244 . -771) 6072) ((-244 . -768) 6023) ((-243 . -771) 5974) ((-40 . -1118) NIL) ((-243 . -768) 5925) ((-1046 . -891) 5876) ((-975 . -770) T) ((-975 . -767) T) ((-975 . -703) T) ((-942 . -770) T) ((-885 . -703) T) ((-90 . -481) 5860) ((-479 . -871) NIL) ((-881 . -1067) T) ((-219 . -1024) 5825) ((-843 . -283) T) ((-211 . -871) NIL) ((-809 . -1079) 5804) ((-58 . -1067) 5754) ((-510 . -1067) 5732) ((-507 . -1067) 5682) ((-488 . -1067) 5660) ((-487 . -1067) 5610) ((-562 . -101) T) ((-549 . -101) T) ((-486 . -101) T) ((-466 . -170) 5541) ((-352 . -891) T) ((-346 . -891) T) ((-338 . -891) T) ((-219 . -111) 5497) ((-809 . -23) 5449) ((-420 . -703) T) ((-107 . -891) T) ((-40 . -38) 5394) ((-107 . -796) T) ((-563 . -342) T) ((-509 . -342) T) ((-1189 . -505) 5254) ((-309 . -444) 5233) ((-306 . -444) T) ((-810 . -279) 5212) ((-332 . -130) T) ((-172 . -130) T) ((-287 . -25) 5076) ((-287 . -21) 4959) ((-45 . -1156) 4938) ((-65 . -593) 4920) ((-863 . -593) 4902) ((-582 . -505) 4835) ((-45 . -106) 4785) ((-1069 . -418) 4769) ((-1069 . -361) 4748) ((-1030 . -1180) T) ((-1029 . -1024) 4735) ((-923 . -1024) 4578) ((-1227 . -101) T) ((-1226 . -101) 4528) ((-473 . -1024) 4371) ((-640 . -694) 4355) ((-1029 . -111) 4340) ((-923 . -111) 4169) ((-469 . -356) T) ((-348 . -694) 4121) ((-345 . -694) 4073) ((-337 . -694) 4025) ((-257 . -694) 3874) ((-241 . -694) 3723) ((-1218 . -624) 3648) ((-1190 . -880) NIL) ((-1063 . -92) T) ((-1057 . -92) T) ((-914 . -627) 3632) ((-1040 . -92) T) ((-473 . -111) 3461) ((-1033 . -92) T) ((-1007 . -92) T) ((-914 . -366) 3445) ((-242 . -101) T) ((-990 . -92) T) ((-73 . -593) 3427) ((-934 . -47) 3406) ((-599 . -1079) T) ((-1 . -1067) T) ((-687 . -101) T) ((-675 . -101) T) ((-1211 . -624) 3303) ((-604 . -92) T) ((-1161 . -593) 3285) ((-1055 . -593) 3267) ((-126 . -481) 3251) ((-475 . -92) T) ((-1042 . -593) 3233) ((-383 . -23) T) ((-86 . -1180) T) ((-212 . -92) T) ((-1190 . -624) 3085) ((-881 . -694) 3050) ((-599 . -23) T) ((-588 . -593) 3032) ((-588 . -594) NIL) ((-467 . -594) NIL) ((-467 . -593) 3014) ((-502 . -1067) T) ((-498 . -1067) T) ((-344 . -25) T) ((-344 . -21) T) ((-127 . -302) 2952) ((-121 . -302) 2890) ((-577 . -624) 2877) ((-219 . -1018) T) ((-576 . -624) 2802) ((-372 . -973) T) ((-219 . -237) T) ((-219 . -227) T) ((-929 . -594) 2763) ((-929 . -593) 2675) ((-841 . -38) 2662) ((-1210 . -283) 2613) ((-1189 . -283) 2564) ((-1087 . -444) T) ((-493 . -823) T) ((-309 . -1106) 2543) ((-970 . -145) 2522) ((-970 . -143) 2501) ((-486 . -302) 2488) ((-288 . -1156) 2467) ((-469 . -1079) T) ((-842 . -1024) 2412) ((-601 . -101) T) ((-1166 . -481) 2396) ((-244 . -361) 2375) ((-243 . -361) 2354) ((-288 . -106) 2304) ((-1029 . -1018) T) ((-117 . -101) T) ((-923 . -1018) T) ((-842 . -111) 2233) ((-469 . -23) T) ((-473 . -1018) T) ((-1029 . -227) T) ((-923 . -319) 2202) ((-473 . -319) 2159) ((-348 . -170) T) ((-345 . -170) T) ((-337 . -170) T) ((-257 . -170) 2070) ((-241 . -170) 1981) ((-934 . -1009) 1877) ((-712 . -1009) 1848) ((-508 . -593) 1814) ((-1072 . -101) T) ((-1059 . -593) 1781) ((-1005 . -593) 1763) ((-1218 . -703) T) ((-1211 . -703) T) ((-1190 . -767) NIL) ((-167 . -1024) 1673) ((-1190 . -770) NIL) ((-881 . -170) T) ((-1190 . -703) T) ((-1239 . -149) 1657) ((-974 . -335) 1631) ((-971 . -505) 1564) ((-816 . -823) 1543) ((-549 . -1118) T) ((-466 . -283) 1494) ((-577 . -703) T) ((-354 . -593) 1476) ((-315 . -593) 1458) ((-411 . -1009) 1354) ((-576 . -703) T) ((-400 . -823) 1305) ((-167 . -111) 1201) ((-809 . -130) 1153) ((-714 . -149) 1137) ((-1226 . -302) 1075) ((-479 . -300) T) ((-372 . -593) 1042) ((-511 . -981) 1026) ((-372 . -594) 940) ((-211 . -300) T) ((-139 . -149) 922) ((-691 . -279) 901) ((-479 . -993) T) ((-562 . -38) 888) ((-549 . -38) 875) ((-486 . -38) 840) ((-211 . -993) T) ((-842 . -1018) T) ((-810 . -593) 822) ((-803 . -593) 804) ((-801 . -593) 786) ((-792 . -880) 765) ((-1250 . -1079) T) ((-1199 . -1024) 588) ((-828 . -1024) 572) ((-842 . -237) T) ((-842 . -227) NIL) ((-665 . -1180) T) ((-1250 . -23) T) ((-792 . -624) 497) ((-535 . -1180) T) ((-411 . -331) 481) ((-556 . -1024) 468) ((-1199 . -111) 277) ((-677 . -617) 259) ((-828 . -111) 238) ((-374 . -23) T) ((-1153 . -505) 30) ((-638 . -1067) T) ((-657 . -1067) T) ((-652 . -1067) T)) \ No newline at end of file
+(((-470 . -1066) T) ((-257 . -505) 144877) ((-241 . -505) 144820) ((-239 . -1066) 144770) ((-556 . -111) 144755) ((-521 . -23) T) ((-137 . -1066) T) ((-136 . -1066) T) ((-117 . -302) 144712) ((-132 . -1066) T) ((-471 . -505) 144504) ((-670 . -101) T) ((-1107 . -505) 144423) ((-383 . -130) T) ((-1238 . -947) 144392) ((-31 . -92) T) ((-582 . -481) 144376) ((-599 . -130) T) ((-795 . -819) T) ((-514 . -56) 144326) ((-58 . -505) 144259) ((-510 . -505) 144192) ((-411 . -871) 144151) ((-167 . -1018) T) ((-507 . -505) 144084) ((-488 . -505) 144017) ((-487 . -505) 143950) ((-775 . -1009) 143733) ((-675 . -38) 143698) ((-336 . -342) T) ((-1060 . -1059) 143682) ((-1060 . -1066) 143660) ((-167 . -237) 143611) ((-167 . -227) 143562) ((-1060 . -1061) 143520) ((-843 . -279) 143478) ((-219 . -771) T) ((-219 . -768) T) ((-670 . -277) NIL) ((-1116 . -1155) 143457) ((-400 . -963) 143441) ((-677 . -21) T) ((-677 . -25) T) ((-1240 . -624) 143415) ((-309 . -158) 143394) ((-309 . -141) 143373) ((-1116 . -106) 143323) ((-133 . -25) T) ((-40 . -225) 143300) ((-116 . -21) T) ((-116 . -25) T) ((-588 . -281) 143276) ((-467 . -281) 143255) ((-1198 . -1018) T) ((-828 . -1018) T) ((-775 . -331) 143239) ((-117 . -1117) NIL) ((-90 . -593) 143171) ((-469 . -130) T) ((-574 . -1179) T) ((-1198 . -319) 143148) ((-556 . -1018) T) ((-1198 . -227) T) ((-638 . -694) 143132) ((-1062 . -593) 143098) ((-929 . -281) 143075) ((-59 . -34) T) ((-1056 . -593) 143041) ((-1040 . -593) 143007) ((-1029 . -771) T) ((-1029 . -768) T) ((-792 . -703) T) ((-708 . -47) 142972) ((-601 . -38) 142959) ((-348 . -283) T) ((-345 . -283) T) ((-337 . -283) T) ((-257 . -283) 142890) ((-241 . -283) 142821) ((-1033 . -593) 142787) ((-1007 . -593) 142753) ((-995 . -101) T) ((-990 . -593) 142719) ((-406 . -703) T) ((-117 . -38) 142664) ((-604 . -593) 142630) ((-406 . -465) T) ((-475 . -593) 142596) ((-347 . -101) T) ((-212 . -593) 142562) ((-1173 . -1025) T) ((-688 . -1025) T) ((-1140 . -47) 142539) ((-1139 . -47) 142509) ((-1133 . -47) 142486) ((-1006 . -149) 142432) ((-881 . -283) T) ((-1092 . -47) 142404) ((-670 . -302) NIL) ((-506 . -593) 142386) ((-501 . -593) 142368) ((-499 . -593) 142350) ((-320 . -1066) 142300) ((-689 . -444) 142231) ((-48 . -101) T) ((-1209 . -279) 142216) ((-1188 . -279) 142136) ((-621 . -642) 142120) ((-621 . -627) 142104) ((-332 . -21) T) ((-332 . -25) T) ((-40 . -342) NIL) ((-172 . -21) T) ((-172 . -25) T) ((-621 . -366) 142088) ((-582 . -279) 142065) ((-585 . -593) 142032) ((-381 . -101) T) ((-1086 . -141) T) ((-126 . -593) 141964) ((-845 . -1066) T) ((-634 . -404) 141948) ((-691 . -593) 141930) ((-160 . -593) 141912) ((-155 . -593) 141894) ((-1240 . -703) T) ((-1068 . -34) T) ((-842 . -771) NIL) ((-842 . -768) NIL) ((-831 . -823) T) ((-708 . -857) NIL) ((-1249 . -130) T) ((-374 . -130) T) ((-875 . -101) T) ((-708 . -1009) 141770) ((-521 . -130) T) ((-1053 . -404) 141754) ((-971 . -481) 141738) ((-117 . -393) 141715) ((-1133 . -1179) 141694) ((-758 . -404) 141678) ((-756 . -404) 141662) ((-914 . -34) T) ((-670 . -1117) NIL) ((-244 . -624) 141497) ((-243 . -624) 141319) ((-793 . -891) 141298) ((-446 . -404) 141282) ((-582 . -19) 141266) ((-1112 . -1172) 141235) ((-1133 . -857) NIL) ((-1133 . -855) 141187) ((-582 . -584) 141164) ((-1165 . -593) 141096) ((-1141 . -593) 141078) ((-61 . -388) T) ((-1139 . -1009) 141013) ((-1133 . -1009) 140979) ((-670 . -38) 140929) ((-466 . -279) 140914) ((-708 . -370) 140898) ((-634 . -1025) T) ((-1209 . -973) 140864) ((-1188 . -973) 140830) ((-1030 . -1155) 140805) ((-843 . -594) 140613) ((-843 . -593) 140595) ((-1152 . -481) 140532) ((-411 . -993) 140511) ((-48 . -302) 140498) ((-1030 . -106) 140444) ((-471 . -481) 140381) ((-511 . -1179) T) ((-1133 . -331) 140333) ((-1107 . -481) 140304) ((-1133 . -370) 140256) ((-1053 . -1025) T) ((-430 . -101) T) ((-181 . -1066) T) ((-244 . -34) T) ((-243 . -34) T) ((-758 . -1025) T) ((-756 . -1025) T) ((-708 . -871) 140233) ((-446 . -1025) T) ((-58 . -481) 140217) ((-1005 . -1024) 140191) ((-510 . -481) 140175) ((-507 . -481) 140159) ((-488 . -481) 140143) ((-487 . -481) 140127) ((-239 . -505) 140060) ((-1005 . -111) 140027) ((-1140 . -871) 139940) ((-1139 . -871) 139846) ((-1133 . -871) 139679) ((-646 . -1078) T) ((-1092 . -871) 139663) ((-622 . -92) T) ((-347 . -1117) T) ((-315 . -1024) 139645) ((-244 . -767) 139624) ((-244 . -770) 139575) ((-244 . -769) 139554) ((-243 . -767) 139533) ((-243 . -770) 139484) ((-243 . -769) 139463) ((-31 . -593) 139429) ((-50 . -1025) T) ((-244 . -703) 139339) ((-243 . -703) 139249) ((-1173 . -1066) T) ((-646 . -23) T) ((-563 . -1025) T) ((-509 . -1025) T) ((-372 . -1024) 139214) ((-315 . -111) 139189) ((-72 . -376) T) ((-72 . -388) T) ((-995 . -38) 139126) ((-670 . -393) 139108) ((-98 . -101) T) ((-688 . -1066) T) ((-974 . -143) 139080) ((-974 . -145) 139052) ((-372 . -111) 139008) ((-312 . -1183) 138987) ((-466 . -973) 138953) ((-347 . -38) 138918) ((-40 . -363) 138890) ((-844 . -593) 138762) ((-127 . -125) 138746) ((-121 . -125) 138730) ((-810 . -1024) 138700) ((-809 . -21) 138652) ((-803 . -1024) 138636) ((-809 . -25) 138588) ((-312 . -541) 138539) ((-549 . -804) T) ((-234 . -1179) T) ((-810 . -111) 138504) ((-803 . -111) 138483) ((-1209 . -593) 138465) ((-1188 . -593) 138447) ((-1188 . -594) 138120) ((-1138 . -880) 138099) ((-1091 . -880) 138078) ((-48 . -38) 138043) ((-1247 . -1078) T) ((-582 . -593) 137955) ((-582 . -594) 137916) ((-1245 . -1078) T) ((-234 . -1009) 137743) ((-1138 . -624) 137668) ((-1091 . -624) 137593) ((-695 . -593) 137575) ((-827 . -624) 137549) ((-482 . -1066) T) ((-1247 . -23) T) ((-1245 . -23) T) ((-1005 . -1018) T) ((-1152 . -279) 137528) ((-167 . -361) 137479) ((-975 . -1179) T) ((-44 . -23) T) ((-471 . -279) 137458) ((-567 . -1066) T) ((-1112 . -1075) 137427) ((-1070 . -1069) 137379) ((-128 . -1179) T) ((-383 . -21) T) ((-383 . -25) T) ((-150 . -1078) T) ((-1253 . -101) T) ((-975 . -855) 137361) ((-975 . -857) 137343) ((-1173 . -694) 137240) ((-601 . -225) 137224) ((-599 . -21) T) ((-282 . -541) T) ((-599 . -25) T) ((-1159 . -1066) T) ((-688 . -694) 137189) ((-234 . -370) 137158) ((-975 . -1009) 137118) ((-372 . -1018) T) ((-217 . -1025) T) ((-117 . -225) 137095) ((-58 . -279) 137072) ((-150 . -23) T) ((-507 . -279) 137049) ((-320 . -505) 136982) ((-487 . -279) 136959) ((-372 . -237) T) ((-372 . -227) T) ((-810 . -1018) T) ((-803 . -1018) T) ((-689 . -920) 136928) ((-677 . -823) T) ((-466 . -593) 136910) ((-803 . -227) 136889) ((-133 . -823) T) ((-634 . -1066) T) ((-1152 . -584) 136868) ((-535 . -1155) 136847) ((-329 . -1066) T) ((-312 . -356) 136826) ((-400 . -145) 136805) ((-400 . -143) 136784) ((-935 . -1078) 136683) ((-234 . -871) 136615) ((-791 . -1078) 136525) ((-630 . -825) 136509) ((-471 . -584) 136488) ((-535 . -106) 136438) ((-975 . -370) 136420) ((-975 . -331) 136402) ((-96 . -1066) T) ((-935 . -23) 136213) ((-469 . -21) T) ((-469 . -25) T) ((-791 . -23) 136083) ((-1142 . -593) 136065) ((-58 . -19) 136049) ((-1142 . -594) 135971) ((-1138 . -703) T) ((-1091 . -703) T) ((-507 . -19) 135955) ((-487 . -19) 135939) ((-58 . -584) 135916) ((-1053 . -1066) T) ((-872 . -101) 135894) ((-827 . -703) T) ((-758 . -1066) T) ((-507 . -584) 135871) ((-487 . -584) 135848) ((-756 . -1066) T) ((-756 . -1032) 135815) ((-453 . -1066) T) ((-446 . -1066) T) ((-567 . -694) 135790) ((-625 . -1066) T) ((-975 . -871) NIL) ((-1217 . -47) 135767) ((-605 . -1078) T) ((-646 . -130) T) ((-1211 . -101) T) ((-1210 . -47) 135737) ((-1189 . -47) 135714) ((-1173 . -170) 135665) ((-1046 . -1183) 135616) ((-268 . -1066) T) ((-84 . -433) T) ((-84 . -388) T) ((-1139 . -300) 135595) ((-1133 . -300) 135574) ((-50 . -1066) T) ((-1046 . -541) 135525) ((-688 . -170) T) ((-576 . -47) 135502) ((-219 . -624) 135467) ((-563 . -1066) T) ((-509 . -1066) T) ((-352 . -1183) T) ((-346 . -1183) T) ((-338 . -1183) T) ((-479 . -796) T) ((-479 . -891) T) ((-312 . -1078) T) ((-107 . -1183) T) ((-332 . -823) T) ((-211 . -891) T) ((-211 . -796) T) ((-691 . -1024) 135437) ((-352 . -541) T) ((-346 . -541) T) ((-338 . -541) T) ((-107 . -541) T) ((-634 . -694) 135407) ((-1133 . -993) NIL) ((-312 . -23) T) ((-66 . -1179) T) ((-971 . -593) 135339) ((-670 . -225) 135321) ((-691 . -111) 135286) ((-621 . -34) T) ((-239 . -481) 135270) ((-1068 . -1064) 135254) ((-169 . -1066) T) ((-923 . -880) 135233) ((-473 . -880) 135212) ((-1253 . -1117) T) ((-1249 . -21) T) ((-1249 . -25) T) ((-1247 . -130) T) ((-1245 . -130) T) ((-1053 . -694) 135061) ((-1029 . -624) 135048) ((-923 . -624) 134973) ((-758 . -694) 134802) ((-525 . -593) 134784) ((-525 . -594) 134765) ((-756 . -694) 134614) ((-1238 . -101) T) ((-1043 . -101) T) ((-374 . -25) T) ((-374 . -21) T) ((-473 . -624) 134539) ((-453 . -694) 134510) ((-446 . -694) 134359) ((-958 . -101) T) ((-1221 . -593) 134325) ((-1210 . -1009) 134260) ((-1189 . -1179) 134239) ((-714 . -101) T) ((-1189 . -857) NIL) ((-1189 . -855) 134191) ((-1152 . -594) NIL) ((-1152 . -593) 134173) ((-521 . -25) T) ((-1108 . -1089) 134118) ((-1015 . -1172) 134047) ((-872 . -302) 133985) ((-336 . -1025) T) ((-139 . -101) T) ((-44 . -130) T) ((-282 . -1078) T) ((-657 . -92) T) ((-652 . -92) T) ((-640 . -593) 133967) ((-622 . -593) 133920) ((-470 . -92) T) ((-348 . -593) 133902) ((-345 . -593) 133884) ((-337 . -593) 133866) ((-257 . -594) 133614) ((-257 . -593) 133596) ((-241 . -593) 133578) ((-241 . -594) 133439) ((-137 . -92) T) ((-136 . -92) T) ((-132 . -92) T) ((-1189 . -1009) 133405) ((-1173 . -505) 133372) ((-1107 . -593) 133354) ((-795 . -830) T) ((-795 . -703) T) ((-582 . -281) 133331) ((-563 . -694) 133296) ((-471 . -594) NIL) ((-471 . -593) 133278) ((-509 . -694) 133223) ((-309 . -101) T) ((-306 . -101) T) ((-282 . -23) T) ((-150 . -130) T) ((-379 . -703) T) ((-843 . -1024) 133175) ((-881 . -593) 133157) ((-881 . -594) 133139) ((-843 . -111) 133077) ((-135 . -101) T) ((-114 . -101) T) ((-689 . -1201) 133061) ((-691 . -1018) T) ((-670 . -342) NIL) ((-510 . -593) 132993) ((-372 . -771) T) ((-217 . -1066) T) ((-372 . -768) T) ((-219 . -770) T) ((-219 . -767) T) ((-58 . -594) 132954) ((-58 . -593) 132866) ((-219 . -703) T) ((-507 . -594) 132827) ((-507 . -593) 132739) ((-488 . -593) 132671) ((-487 . -594) 132632) ((-487 . -593) 132544) ((-1046 . -356) 132495) ((-40 . -404) 132472) ((-76 . -1179) T) ((-842 . -880) NIL) ((-352 . -322) 132456) ((-352 . -356) T) ((-346 . -322) 132440) ((-346 . -356) T) ((-338 . -322) 132424) ((-338 . -356) T) ((-309 . -277) 132403) ((-107 . -356) T) ((-69 . -1179) T) ((-1189 . -331) 132355) ((-842 . -624) 132300) ((-1189 . -370) 132252) ((-935 . -130) 132107) ((-791 . -130) 131977) ((-929 . -627) 131961) ((-1053 . -170) 131872) ((-929 . -366) 131856) ((-1029 . -770) T) ((-1029 . -767) T) ((-758 . -170) 131747) ((-756 . -170) 131658) ((-792 . -47) 131620) ((-1029 . -703) T) ((-320 . -481) 131604) ((-923 . -703) T) ((-446 . -170) 131515) ((-239 . -279) 131492) ((-473 . -703) T) ((-1238 . -302) 131430) ((-1217 . -871) 131343) ((-1210 . -871) 131249) ((-1209 . -1024) 131084) ((-1189 . -871) 130917) ((-1188 . -1024) 130725) ((-1173 . -283) 130704) ((-1112 . -149) 130688) ((-1086 . -101) T) ((-1041 . -101) T) ((-898 . -926) T) ((-714 . -302) 130626) ((-74 . -1179) T) ((-30 . -926) T) ((-167 . -880) 130579) ((-640 . -375) 130551) ((-112 . -817) T) ((-1 . -593) 130533) ((-1084 . -1066) T) ((-1046 . -23) T) ((-50 . -598) 130517) ((-1046 . -1078) T) ((-974 . -402) 130489) ((-576 . -871) 130402) ((-431 . -101) T) ((-139 . -302) NIL) ((-843 . -1018) T) ((-809 . -823) 130381) ((-80 . -1179) T) ((-688 . -283) T) ((-40 . -1025) T) ((-563 . -170) T) ((-509 . -170) T) ((-502 . -593) 130363) ((-167 . -624) 130273) ((-498 . -593) 130255) ((-344 . -145) 130237) ((-344 . -143) T) ((-352 . -1078) T) ((-346 . -1078) T) ((-338 . -1078) T) ((-975 . -300) T) ((-885 . -300) T) ((-843 . -237) T) ((-107 . -1078) T) ((-843 . -227) 130216) ((-1209 . -111) 130037) ((-1188 . -111) 129826) ((-239 . -1213) 129810) ((-549 . -821) T) ((-352 . -23) T) ((-347 . -342) T) ((-309 . -302) 129797) ((-306 . -302) 129738) ((-346 . -23) T) ((-312 . -130) T) ((-338 . -23) T) ((-975 . -993) T) ((-107 . -23) T) ((-239 . -584) 129715) ((-1211 . -38) 129607) ((-1198 . -880) 129586) ((-112 . -1066) T) ((-1006 . -101) T) ((-1198 . -624) 129511) ((-842 . -770) NIL) ((-828 . -624) 129485) ((-842 . -767) NIL) ((-792 . -857) NIL) ((-842 . -703) T) ((-1053 . -505) 129358) ((-758 . -505) 129305) ((-756 . -505) 129257) ((-556 . -624) 129244) ((-792 . -1009) 129072) ((-446 . -505) 129015) ((-381 . -382) T) ((-59 . -1179) T) ((-599 . -823) 128994) ((-491 . -637) T) ((-1112 . -947) 128963) ((-974 . -444) T) ((-675 . -821) T) ((-501 . -768) T) ((-466 . -1024) 128798) ((-336 . -1066) T) ((-306 . -1117) NIL) ((-282 . -130) T) ((-387 . -1066) T) ((-670 . -363) 128765) ((-841 . -1025) T) ((-217 . -598) 128742) ((-320 . -279) 128719) ((-466 . -111) 128540) ((-1209 . -1018) T) ((-1188 . -1018) T) ((-792 . -370) 128524) ((-167 . -703) T) ((-630 . -101) T) ((-1209 . -237) 128503) ((-1209 . -227) 128455) ((-1188 . -227) 128360) ((-1188 . -237) 128339) ((-974 . -395) NIL) ((-646 . -617) 128287) ((-309 . -38) 128197) ((-306 . -38) 128126) ((-68 . -593) 128108) ((-312 . -484) 128074) ((-1152 . -281) 128053) ((-1079 . -1078) 127963) ((-82 . -1179) T) ((-60 . -593) 127945) ((-471 . -281) 127924) ((-1240 . -1009) 127901) ((-1130 . -1066) T) ((-1079 . -23) 127771) ((-792 . -871) 127707) ((-1198 . -703) T) ((-1068 . -1179) T) ((-1053 . -283) 127638) ((-937 . -1066) T) ((-864 . -101) T) ((-758 . -283) 127549) ((-320 . -19) 127533) ((-58 . -281) 127510) ((-756 . -283) 127441) ((-828 . -703) T) ((-117 . -821) NIL) ((-507 . -281) 127418) ((-320 . -584) 127395) ((-487 . -281) 127372) ((-446 . -283) 127303) ((-1006 . -302) 127154) ((-556 . -703) T) ((-657 . -593) 127104) ((-652 . -593) 127070) ((-638 . -593) 127052) ((-470 . -593) 127018) ((-239 . -594) 126979) ((-239 . -593) 126891) ((-137 . -593) 126857) ((-136 . -593) 126823) ((-132 . -593) 126789) ((-1113 . -34) T) ((-914 . -1179) T) ((-336 . -694) 126734) ((-646 . -25) T) ((-646 . -21) T) ((-466 . -1018) T) ((-613 . -410) 126699) ((-587 . -410) 126664) ((-1086 . -1117) T) ((-563 . -283) T) ((-509 . -283) T) ((-1210 . -300) 126643) ((-466 . -227) 126595) ((-466 . -237) 126574) ((-1189 . -300) 126553) ((-1189 . -993) NIL) ((-1046 . -130) T) ((-843 . -771) 126532) ((-142 . -101) T) ((-40 . -1066) T) ((-843 . -768) 126511) ((-621 . -981) 126495) ((-562 . -1025) T) ((-549 . -1025) T) ((-486 . -1025) T) ((-400 . -444) T) ((-352 . -130) T) ((-309 . -393) 126479) ((-306 . -393) 126440) ((-346 . -130) T) ((-338 . -130) T) ((-1147 . -1066) T) ((-1086 . -38) 126427) ((-1060 . -593) 126394) ((-107 . -130) T) ((-925 . -1066) T) ((-892 . -1066) T) ((-747 . -1066) T) ((-648 . -1066) T) ((-497 . -1049) T) ((-677 . -145) T) ((-116 . -145) T) ((-1247 . -21) T) ((-1247 . -25) T) ((-1245 . -21) T) ((-1245 . -25) T) ((-640 . -1024) 126378) ((-521 . -823) T) ((-491 . -823) T) ((-348 . -1024) 126330) ((-345 . -1024) 126282) ((-337 . -1024) 126234) ((-244 . -1179) T) ((-243 . -1179) T) ((-257 . -1024) 126077) ((-241 . -1024) 125920) ((-640 . -111) 125899) ((-348 . -111) 125837) ((-345 . -111) 125775) ((-337 . -111) 125713) ((-257 . -111) 125542) ((-241 . -111) 125371) ((-793 . -1183) 125350) ((-601 . -404) 125334) ((-44 . -21) T) ((-44 . -25) T) ((-791 . -617) 125240) ((-793 . -541) 125219) ((-244 . -1009) 125046) ((-243 . -1009) 124873) ((-126 . -119) 124857) ((-881 . -1024) 124822) ((-675 . -1025) T) ((-689 . -101) T) ((-336 . -170) T) ((-150 . -21) T) ((-150 . -25) T) ((-87 . -593) 124804) ((-881 . -111) 124760) ((-40 . -694) 124705) ((-841 . -1066) T) ((-320 . -594) 124666) ((-320 . -593) 124578) ((-1188 . -768) 124531) ((-1188 . -771) 124484) ((-244 . -370) 124453) ((-243 . -370) 124422) ((-630 . -38) 124392) ((-588 . -34) T) ((-474 . -1078) 124302) ((-467 . -34) T) ((-1079 . -130) 124172) ((-935 . -25) 123983) ((-845 . -593) 123965) ((-935 . -21) 123920) ((-791 . -21) 123830) ((-791 . -25) 123681) ((-601 . -1025) T) ((-1144 . -541) 123660) ((-1138 . -47) 123637) ((-348 . -1018) T) ((-345 . -1018) T) ((-474 . -23) 123507) ((-337 . -1018) T) ((-257 . -1018) T) ((-241 . -1018) T) ((-1091 . -47) 123479) ((-117 . -1025) T) ((-1005 . -624) 123453) ((-929 . -34) T) ((-348 . -227) 123432) ((-348 . -237) T) ((-345 . -227) 123411) ((-345 . -237) T) ((-241 . -319) 123368) ((-337 . -227) 123347) ((-337 . -237) T) ((-257 . -319) 123319) ((-257 . -227) 123298) ((-1122 . -149) 123282) ((-244 . -871) 123214) ((-243 . -871) 123146) ((-1048 . -823) T) ((-1192 . -1179) T) ((-407 . -1078) T) ((-1022 . -23) T) ((-881 . -1018) T) ((-315 . -624) 123128) ((-995 . -821) T) ((-1173 . -973) 123094) ((-1139 . -891) 123073) ((-1133 . -891) 123052) ((-881 . -237) T) ((-793 . -356) 123031) ((-378 . -23) T) ((-127 . -1066) 123009) ((-121 . -1066) 122987) ((-881 . -227) T) ((-1133 . -796) NIL) ((-372 . -624) 122952) ((-841 . -694) 122939) ((-1015 . -149) 122904) ((-40 . -170) T) ((-670 . -404) 122886) ((-689 . -302) 122873) ((-810 . -624) 122833) ((-803 . -624) 122807) ((-312 . -25) T) ((-312 . -21) T) ((-634 . -279) 122786) ((-562 . -1066) T) ((-549 . -1066) T) ((-486 . -1066) T) ((-239 . -281) 122763) ((-306 . -225) 122724) ((-1138 . -857) NIL) ((-1091 . -857) 122583) ((-129 . -823) T) ((-1138 . -1009) 122463) ((-1091 . -1009) 122346) ((-181 . -593) 122328) ((-827 . -1009) 122224) ((-758 . -279) 122151) ((-793 . -1078) T) ((-1005 . -703) T) ((-582 . -627) 122135) ((-1015 . -947) 122064) ((-970 . -101) T) ((-793 . -23) T) ((-689 . -1117) 122042) ((-670 . -1025) T) ((-582 . -366) 122026) ((-344 . -444) T) ((-336 . -283) T) ((-1226 . -1066) T) ((-242 . -1066) T) ((-392 . -101) T) ((-282 . -21) T) ((-282 . -25) T) ((-354 . -703) T) ((-687 . -1066) T) ((-675 . -1066) T) ((-354 . -465) T) ((-1173 . -593) 122008) ((-1138 . -370) 121992) ((-1091 . -370) 121976) ((-995 . -404) 121938) ((-139 . -223) 121920) ((-372 . -770) T) ((-372 . -767) T) ((-841 . -170) T) ((-372 . -703) T) ((-688 . -593) 121902) ((-689 . -38) 121731) ((-1225 . -1223) 121715) ((-344 . -395) T) ((-1225 . -1066) 121665) ((-562 . -694) 121652) ((-549 . -694) 121639) ((-486 . -694) 121604) ((-309 . -607) 121583) ((-810 . -703) T) ((-803 . -703) T) ((-621 . -1179) T) ((-1046 . -617) 121531) ((-1138 . -871) 121474) ((-1091 . -871) 121458) ((-638 . -1024) 121442) ((-107 . -617) 121424) ((-474 . -130) 121294) ((-1144 . -1078) T) ((-923 . -47) 121263) ((-601 . -1066) T) ((-638 . -111) 121242) ((-482 . -593) 121208) ((-320 . -281) 121185) ((-473 . -47) 121142) ((-1144 . -23) T) ((-117 . -1066) T) ((-102 . -101) 121120) ((-1237 . -1078) T) ((-1022 . -130) T) ((-995 . -1025) T) ((-795 . -1009) 121104) ((-974 . -701) 121076) ((-1237 . -23) T) ((-675 . -694) 121041) ((-567 . -593) 121023) ((-379 . -1009) 121007) ((-347 . -1025) T) ((-378 . -130) T) ((-317 . -1009) 120991) ((-219 . -857) 120973) ((-975 . -891) T) ((-90 . -34) T) ((-975 . -796) T) ((-885 . -891) T) ((-479 . -1183) T) ((-1159 . -593) 120955) ((-1071 . -1066) T) ((-211 . -1183) T) ((-970 . -302) 120920) ((-219 . -1009) 120880) ((-40 . -283) T) ((-1046 . -21) T) ((-1046 . -25) T) ((-1086 . -804) T) ((-479 . -541) T) ((-352 . -25) T) ((-211 . -541) T) ((-352 . -21) T) ((-346 . -25) T) ((-346 . -21) T) ((-691 . -624) 120840) ((-338 . -25) T) ((-338 . -21) T) ((-107 . -25) T) ((-107 . -21) T) ((-48 . -1025) T) ((-562 . -170) T) ((-549 . -170) T) ((-486 . -170) T) ((-634 . -593) 120822) ((-714 . -713) 120806) ((-329 . -593) 120788) ((-67 . -376) T) ((-67 . -388) T) ((-1068 . -106) 120772) ((-1029 . -857) 120754) ((-923 . -857) 120679) ((-629 . -1078) T) ((-601 . -694) 120666) ((-473 . -857) NIL) ((-1112 . -101) T) ((-1029 . -1009) 120648) ((-96 . -593) 120630) ((-469 . -145) T) ((-923 . -1009) 120510) ((-117 . -694) 120455) ((-629 . -23) T) ((-473 . -1009) 120331) ((-1053 . -594) NIL) ((-1053 . -593) 120313) ((-758 . -594) NIL) ((-758 . -593) 120274) ((-756 . -594) 119908) ((-756 . -593) 119822) ((-1079 . -617) 119728) ((-453 . -593) 119710) ((-446 . -593) 119692) ((-446 . -594) 119553) ((-1006 . -223) 119499) ((-126 . -34) T) ((-793 . -130) T) ((-843 . -880) 119478) ((-625 . -593) 119460) ((-348 . -1244) 119444) ((-345 . -1244) 119428) ((-337 . -1244) 119412) ((-127 . -505) 119345) ((-121 . -505) 119278) ((-502 . -768) T) ((-502 . -771) T) ((-501 . -770) T) ((-102 . -302) 119216) ((-216 . -101) 119194) ((-670 . -1066) T) ((-675 . -170) T) ((-843 . -624) 119146) ((-64 . -377) T) ((-268 . -593) 119128) ((-64 . -388) T) ((-923 . -370) 119112) ((-841 . -283) T) ((-50 . -593) 119094) ((-970 . -38) 119042) ((-563 . -593) 119024) ((-473 . -370) 119008) ((-563 . -594) 118990) ((-509 . -593) 118972) ((-881 . -1244) 118959) ((-842 . -1179) T) ((-677 . -444) T) ((-486 . -505) 118925) ((-479 . -356) T) ((-348 . -361) 118904) ((-345 . -361) 118883) ((-337 . -361) 118862) ((-211 . -356) T) ((-691 . -703) T) ((-116 . -444) T) ((-1248 . -1239) 118846) ((-842 . -855) 118823) ((-842 . -857) NIL) ((-935 . -823) 118722) ((-791 . -823) 118673) ((-630 . -632) 118657) ((-1165 . -34) T) ((-169 . -593) 118639) ((-1079 . -21) 118549) ((-1079 . -25) 118400) ((-842 . -1009) 118377) ((-923 . -871) 118358) ((-1198 . -47) 118335) ((-881 . -361) T) ((-58 . -627) 118319) ((-507 . -627) 118303) ((-473 . -871) 118280) ((-70 . -433) T) ((-70 . -388) T) ((-487 . -627) 118264) ((-58 . -366) 118248) ((-601 . -170) T) ((-507 . -366) 118232) ((-487 . -366) 118216) ((-803 . -685) 118200) ((-1138 . -300) 118179) ((-1144 . -130) T) ((-117 . -170) T) ((-1112 . -302) 118117) ((-167 . -1179) T) ((-613 . -721) 118101) ((-587 . -721) 118085) ((-1237 . -130) T) ((-1210 . -891) 118064) ((-1189 . -891) 118043) ((-1189 . -796) NIL) ((-670 . -694) 117993) ((-1188 . -880) 117946) ((-995 . -1066) T) ((-842 . -370) 117923) ((-842 . -331) 117900) ((-876 . -1078) T) ((-167 . -855) 117884) ((-167 . -857) 117809) ((-479 . -1078) T) ((-347 . -1066) T) ((-211 . -1078) T) ((-75 . -433) T) ((-75 . -388) T) ((-167 . -1009) 117705) ((-312 . -823) T) ((-1225 . -505) 117638) ((-1209 . -624) 117535) ((-1188 . -624) 117405) ((-843 . -770) 117384) ((-843 . -767) 117363) ((-843 . -703) T) ((-479 . -23) T) ((-217 . -593) 117345) ((-172 . -444) T) ((-216 . -302) 117283) ((-85 . -433) T) ((-85 . -388) T) ((-211 . -23) T) ((-1249 . -1242) 117262) ((-562 . -283) T) ((-549 . -283) T) ((-653 . -1009) 117246) ((-486 . -283) T) ((-135 . -462) 117201) ((-48 . -1066) T) ((-689 . -225) 117185) ((-842 . -871) NIL) ((-1198 . -857) NIL) ((-860 . -101) T) ((-856 . -101) T) ((-381 . -1066) T) ((-167 . -370) 117169) ((-167 . -331) 117153) ((-1198 . -1009) 117033) ((-828 . -1009) 116929) ((-1108 . -101) T) ((-629 . -130) T) ((-117 . -505) 116837) ((-638 . -768) 116816) ((-638 . -771) 116795) ((-556 . -1009) 116777) ((-287 . -1232) 116747) ((-837 . -101) T) ((-934 . -541) 116726) ((-1173 . -1024) 116609) ((-474 . -617) 116515) ((-875 . -1066) T) ((-995 . -694) 116452) ((-688 . -1024) 116417) ((-596 . -101) T) ((-582 . -34) T) ((-1113 . -1179) T) ((-1173 . -111) 116286) ((-466 . -624) 116183) ((-347 . -694) 116128) ((-167 . -871) 116087) ((-675 . -283) T) ((-670 . -170) T) ((-688 . -111) 116043) ((-1253 . -1025) T) ((-1198 . -370) 116027) ((-411 . -1183) 116005) ((-1084 . -593) 115987) ((-306 . -821) NIL) ((-411 . -541) T) ((-219 . -300) T) ((-1188 . -767) 115940) ((-1188 . -770) 115893) ((-1209 . -703) T) ((-1188 . -703) T) ((-48 . -694) 115858) ((-219 . -993) T) ((-344 . -1232) 115835) ((-1211 . -404) 115801) ((-695 . -703) T) ((-1198 . -871) 115744) ((-112 . -593) 115726) ((-112 . -594) 115708) ((-695 . -465) T) ((-474 . -21) 115618) ((-127 . -481) 115602) ((-121 . -481) 115586) ((-474 . -25) 115437) ((-601 . -283) T) ((-567 . -1024) 115412) ((-430 . -1066) T) ((-1029 . -300) T) ((-117 . -283) T) ((-1070 . -101) T) ((-974 . -101) T) ((-567 . -111) 115380) ((-1108 . -302) 115318) ((-1173 . -1018) T) ((-1029 . -993) T) ((-65 . -1179) T) ((-1022 . -25) T) ((-1022 . -21) T) ((-688 . -1018) T) ((-378 . -21) T) ((-378 . -25) T) ((-670 . -505) NIL) ((-995 . -170) T) ((-688 . -237) T) ((-1029 . -534) T) ((-497 . -101) T) ((-493 . -101) T) ((-347 . -170) T) ((-336 . -593) 115300) ((-387 . -593) 115282) ((-466 . -703) T) ((-1086 . -821) T) ((-863 . -1009) 115250) ((-107 . -823) T) ((-634 . -1024) 115234) ((-479 . -130) T) ((-1211 . -1025) T) ((-211 . -130) T) ((-1122 . -101) 115212) ((-98 . -1066) T) ((-239 . -642) 115196) ((-239 . -627) 115180) ((-634 . -111) 115159) ((-309 . -404) 115143) ((-239 . -366) 115127) ((-1125 . -229) 115074) ((-970 . -225) 115058) ((-73 . -1179) T) ((-48 . -170) T) ((-677 . -380) T) ((-677 . -141) T) ((-1248 . -101) T) ((-1053 . -1024) 114901) ((-257 . -880) 114880) ((-241 . -880) 114859) ((-758 . -1024) 114682) ((-756 . -1024) 114525) ((-588 . -1179) T) ((-1130 . -593) 114507) ((-1053 . -111) 114336) ((-1015 . -101) T) ((-467 . -1179) T) ((-453 . -1024) 114307) ((-446 . -1024) 114150) ((-640 . -624) 114134) ((-842 . -300) T) ((-758 . -111) 113943) ((-756 . -111) 113772) ((-348 . -624) 113724) ((-345 . -624) 113676) ((-337 . -624) 113628) ((-257 . -624) 113553) ((-241 . -624) 113478) ((-1124 . -823) T) ((-1054 . -1009) 113462) ((-453 . -111) 113423) ((-446 . -111) 113252) ((-1042 . -1009) 113229) ((-971 . -34) T) ((-937 . -593) 113211) ((-929 . -1179) T) ((-126 . -981) 113195) ((-934 . -1078) T) ((-842 . -993) NIL) ((-712 . -1078) T) ((-692 . -1078) T) ((-1225 . -481) 113179) ((-1108 . -38) 113139) ((-934 . -23) T) ((-816 . -101) T) ((-793 . -21) T) ((-793 . -25) T) ((-712 . -23) T) ((-692 . -23) T) ((-110 . -637) T) ((-881 . -624) 113104) ((-563 . -1024) 113069) ((-509 . -1024) 113014) ((-221 . -56) 112972) ((-445 . -23) T) ((-400 . -101) T) ((-256 . -101) T) ((-670 . -283) T) ((-837 . -38) 112942) ((-563 . -111) 112898) ((-509 . -111) 112827) ((-411 . -1078) T) ((-309 . -1025) 112717) ((-306 . -1025) T) ((-634 . -1018) T) ((-1253 . -1066) T) ((-167 . -300) 112648) ((-411 . -23) T) ((-40 . -593) 112630) ((-40 . -594) 112614) ((-107 . -963) 112596) ((-116 . -840) 112580) ((-48 . -505) 112546) ((-1165 . -981) 112530) ((-1147 . -593) 112512) ((-1152 . -34) T) ((-925 . -593) 112478) ((-892 . -593) 112460) ((-1079 . -823) 112411) ((-747 . -593) 112393) ((-648 . -593) 112375) ((-1122 . -302) 112313) ((-471 . -34) T) ((-1058 . -1179) T) ((-469 . -444) T) ((-1053 . -1018) T) ((-1107 . -34) T) ((-758 . -1018) T) ((-756 . -1018) T) ((-623 . -229) 112297) ((-610 . -229) 112243) ((-1198 . -300) 112222) ((-1053 . -319) 112183) ((-446 . -1018) T) ((-1144 . -21) T) ((-1053 . -227) 112162) ((-758 . -319) 112139) ((-758 . -227) T) ((-756 . -319) 112111) ((-708 . -1183) 112090) ((-320 . -627) 112074) ((-1144 . -25) T) ((-58 . -34) T) ((-510 . -34) T) ((-507 . -34) T) ((-446 . -319) 112053) ((-320 . -366) 112037) ((-488 . -34) T) ((-487 . -34) T) ((-974 . -1117) NIL) ((-613 . -101) T) ((-587 . -101) T) ((-708 . -541) 111968) ((-348 . -703) T) ((-345 . -703) T) ((-337 . -703) T) ((-257 . -703) T) ((-241 . -703) T) ((-1015 . -302) 111876) ((-872 . -1066) 111854) ((-50 . -1018) T) ((-1237 . -21) T) ((-1237 . -25) T) ((-1140 . -541) 111833) ((-1139 . -1183) 111812) ((-563 . -1018) T) ((-509 . -1018) T) ((-1133 . -1183) 111791) ((-354 . -1009) 111775) ((-315 . -1009) 111759) ((-995 . -283) T) ((-372 . -857) 111741) ((-1139 . -541) 111692) ((-1133 . -541) 111643) ((-974 . -38) 111588) ((-775 . -1078) T) ((-881 . -703) T) ((-563 . -237) T) ((-563 . -227) T) ((-509 . -227) T) ((-509 . -237) T) ((-1092 . -541) 111567) ((-347 . -283) T) ((-623 . -671) 111551) ((-372 . -1009) 111511) ((-1086 . -1025) T) ((-102 . -125) 111495) ((-775 . -23) T) ((-1225 . -279) 111472) ((-400 . -302) 111437) ((-1247 . -1242) 111413) ((-1245 . -1242) 111392) ((-1211 . -1066) T) ((-841 . -593) 111374) ((-810 . -1009) 111343) ((-197 . -763) T) ((-196 . -763) T) ((-195 . -763) T) ((-194 . -763) T) ((-193 . -763) T) ((-192 . -763) T) ((-191 . -763) T) ((-190 . -763) T) ((-189 . -763) T) ((-188 . -763) T) ((-486 . -973) T) ((-267 . -812) T) ((-266 . -812) T) ((-265 . -812) T) ((-264 . -812) T) ((-48 . -283) T) ((-263 . -812) T) ((-262 . -812) T) ((-261 . -812) T) ((-187 . -763) T) ((-592 . -823) T) ((-630 . -404) 111327) ((-110 . -823) T) ((-629 . -21) T) ((-629 . -25) T) ((-1248 . -38) 111297) ((-117 . -279) 111248) ((-1225 . -19) 111232) ((-1225 . -584) 111209) ((-1238 . -1066) T) ((-1043 . -1066) T) ((-958 . -1066) T) ((-934 . -130) T) ((-714 . -1066) T) ((-712 . -130) T) ((-692 . -130) T) ((-502 . -769) T) ((-400 . -1117) 111187) ((-445 . -130) T) ((-502 . -770) T) ((-217 . -1018) T) ((-287 . -101) 110969) ((-139 . -1066) T) ((-675 . -973) T) ((-90 . -1179) T) ((-127 . -593) 110901) ((-121 . -593) 110833) ((-1253 . -170) T) ((-1139 . -356) 110812) ((-1133 . -356) 110791) ((-309 . -1066) T) ((-411 . -130) T) ((-306 . -1066) T) ((-400 . -38) 110743) ((-1099 . -101) T) ((-1211 . -694) 110635) ((-630 . -1025) T) ((-1101 . -1220) T) ((-312 . -143) 110614) ((-312 . -145) 110593) ((-135 . -1066) T) ((-114 . -1066) T) ((-831 . -101) T) ((-562 . -593) 110575) ((-549 . -594) 110474) ((-549 . -593) 110456) ((-486 . -593) 110438) ((-486 . -594) 110383) ((-477 . -23) T) ((-474 . -823) 110334) ((-479 . -617) 110316) ((-936 . -593) 110298) ((-211 . -617) 110280) ((-219 . -397) T) ((-638 . -624) 110264) ((-1138 . -891) 110243) ((-708 . -1078) T) ((-344 . -101) T) ((-1178 . -1049) T) ((-794 . -823) T) ((-708 . -23) T) ((-336 . -1024) 110188) ((-1124 . -1123) T) ((-1113 . -106) 110172) ((-1140 . -1078) T) ((-1139 . -1078) T) ((-506 . -1009) 110156) ((-1133 . -1078) T) ((-1092 . -1078) T) ((-336 . -111) 110085) ((-975 . -1183) T) ((-126 . -1179) T) ((-885 . -1183) T) ((-670 . -279) NIL) ((-1226 . -593) 110067) ((-1140 . -23) T) ((-1139 . -23) T) ((-1133 . -23) T) ((-975 . -541) T) ((-1108 . -225) 110051) ((-885 . -541) T) ((-1092 . -23) T) ((-242 . -593) 110033) ((-1041 . -1066) T) ((-775 . -130) T) ((-687 . -593) 110015) ((-309 . -694) 109925) ((-306 . -694) 109854) ((-675 . -593) 109836) ((-675 . -594) 109781) ((-400 . -393) 109765) ((-431 . -1066) T) ((-479 . -25) T) ((-479 . -21) T) ((-1086 . -1066) T) ((-211 . -25) T) ((-211 . -21) T) ((-689 . -404) 109749) ((-691 . -1009) 109718) ((-1225 . -593) 109630) ((-1225 . -594) 109591) ((-1211 . -170) T) ((-239 . -34) T) ((-897 . -945) T) ((-1165 . -1179) T) ((-638 . -767) 109570) ((-638 . -770) 109549) ((-391 . -388) T) ((-514 . -101) 109527) ((-1006 . -1066) T) ((-216 . -966) 109511) ((-495 . -101) T) ((-601 . -593) 109493) ((-45 . -823) NIL) ((-601 . -594) 109470) ((-1006 . -590) 109445) ((-872 . -505) 109378) ((-336 . -1018) T) ((-117 . -594) NIL) ((-117 . -593) 109360) ((-843 . -1179) T) ((-646 . -410) 109344) ((-646 . -1089) 109289) ((-491 . -149) 109271) ((-336 . -227) T) ((-336 . -237) T) ((-40 . -1024) 109216) ((-843 . -855) 109200) ((-843 . -857) 109125) ((-689 . -1025) T) ((-670 . -973) NIL) ((-3 . |UnionCategory|) T) ((-1209 . -47) 109095) ((-1188 . -47) 109072) ((-1107 . -981) 109043) ((-219 . -891) T) ((-40 . -111) 108972) ((-843 . -1009) 108836) ((-1086 . -694) 108823) ((-1071 . -593) 108805) ((-1046 . -145) 108784) ((-1046 . -143) 108735) ((-975 . -356) T) ((-312 . -1167) 108701) ((-372 . -300) T) ((-312 . -1164) 108667) ((-309 . -170) 108646) ((-306 . -170) T) ((-974 . -225) 108623) ((-885 . -356) T) ((-563 . -1244) 108610) ((-509 . -1244) 108587) ((-352 . -145) 108566) ((-352 . -143) 108517) ((-346 . -145) 108496) ((-346 . -143) 108447) ((-588 . -1155) 108423) ((-338 . -145) 108402) ((-338 . -143) 108353) ((-312 . -35) 108319) ((-467 . -1155) 108298) ((0 . |EnumerationCategory|) T) ((-312 . -94) 108264) ((-372 . -993) T) ((-107 . -145) T) ((-107 . -143) NIL) ((-45 . -229) 108214) ((-630 . -1066) T) ((-588 . -106) 108161) ((-477 . -130) T) ((-467 . -106) 108111) ((-234 . -1078) 108021) ((-843 . -370) 108005) ((-843 . -331) 107989) ((-234 . -23) 107859) ((-1029 . -891) T) ((-1029 . -796) T) ((-563 . -361) T) ((-509 . -361) T) ((-344 . -1117) T) ((-320 . -34) T) ((-44 . -410) 107843) ((-844 . -1179) T) ((-383 . -721) 107827) ((-1238 . -505) 107760) ((-708 . -130) T) ((-1217 . -541) 107739) ((-1210 . -1183) 107718) ((-1210 . -541) 107669) ((-1189 . -1183) 107648) ((-304 . -1049) T) ((-1189 . -541) 107599) ((-714 . -505) 107532) ((-1188 . -1179) 107511) ((-1188 . -857) 107384) ((-864 . -1066) T) ((-142 . -817) T) ((-1188 . -855) 107354) ((-667 . -593) 107336) ((-1140 . -130) T) ((-514 . -302) 107274) ((-1139 . -130) T) ((-139 . -505) NIL) ((-1133 . -130) T) ((-1092 . -130) T) ((-995 . -973) T) ((-975 . -23) T) ((-344 . -38) 107239) ((-975 . -1078) T) ((-885 . -1078) T) ((-81 . -593) 107221) ((-40 . -1018) T) ((-841 . -1024) 107208) ((-974 . -342) NIL) ((-843 . -871) 107167) ((-677 . -101) T) ((-942 . -23) T) ((-582 . -1179) T) ((-885 . -23) T) ((-841 . -111) 107152) ((-420 . -1078) T) ((-466 . -47) 107122) ((-207 . -101) T) ((-133 . -101) T) ((-40 . -227) 107094) ((-40 . -237) T) ((-116 . -101) T) ((-577 . -541) 107073) ((-576 . -541) 107052) ((-670 . -593) 107034) ((-670 . -594) 106942) ((-309 . -505) 106908) ((-306 . -505) 106800) ((-1209 . -1009) 106784) ((-1188 . -1009) 106570) ((-970 . -404) 106554) ((-420 . -23) T) ((-1086 . -170) T) ((-1211 . -283) T) ((-630 . -694) 106524) ((-142 . -1066) T) ((-48 . -973) T) ((-400 . -225) 106508) ((-288 . -229) 106458) ((-842 . -891) T) ((-842 . -796) NIL) ((-836 . -823) T) ((-1188 . -331) 106428) ((-1188 . -370) 106398) ((-216 . -1087) 106382) ((-1225 . -281) 106359) ((-1173 . -624) 106284) ((-934 . -21) T) ((-934 . -25) T) ((-712 . -21) T) ((-712 . -25) T) ((-692 . -21) T) ((-692 . -25) T) ((-688 . -624) 106249) ((-445 . -21) T) ((-445 . -25) T) ((-332 . -101) T) ((-172 . -101) T) ((-970 . -1025) T) ((-841 . -1018) T) ((-750 . -101) T) ((-1210 . -356) 106228) ((-1209 . -871) 106134) ((-1189 . -356) 106113) ((-1188 . -871) 105964) ((-995 . -593) 105946) ((-400 . -804) 105899) ((-1140 . -484) 105865) ((-167 . -891) 105796) ((-1139 . -484) 105762) ((-1133 . -484) 105728) ((-689 . -1066) T) ((-1092 . -484) 105694) ((-562 . -1024) 105681) ((-549 . -1024) 105668) ((-486 . -1024) 105633) ((-309 . -283) 105612) ((-306 . -283) T) ((-347 . -593) 105594) ((-411 . -25) T) ((-411 . -21) T) ((-98 . -279) 105573) ((-562 . -111) 105558) ((-549 . -111) 105543) ((-486 . -111) 105499) ((-1142 . -857) 105466) ((-872 . -481) 105450) ((-48 . -593) 105432) ((-48 . -594) 105377) ((-234 . -130) 105247) ((-1198 . -891) 105226) ((-792 . -1183) 105205) ((-1006 . -505) 105049) ((-381 . -593) 105031) ((-792 . -541) 104962) ((-567 . -624) 104937) ((-257 . -47) 104909) ((-241 . -47) 104866) ((-521 . -500) 104843) ((-971 . -1179) T) ((-675 . -1024) 104808) ((-1217 . -1078) T) ((-1210 . -1078) T) ((-1189 . -1078) T) ((-974 . -363) 104780) ((-112 . -361) T) ((-466 . -871) 104686) ((-1217 . -23) T) ((-1210 . -23) T) ((-875 . -593) 104668) ((-90 . -106) 104652) ((-1173 . -703) T) ((-876 . -823) 104603) ((-677 . -1117) T) ((-675 . -111) 104559) ((-1189 . -23) T) ((-577 . -1078) T) ((-576 . -1078) T) ((-689 . -694) 104388) ((-688 . -703) T) ((-1086 . -283) T) ((-975 . -130) T) ((-479 . -823) T) ((-942 . -130) T) ((-885 . -130) T) ((-775 . -25) T) ((-211 . -823) T) ((-775 . -21) T) ((-562 . -1018) T) ((-549 . -1018) T) ((-486 . -1018) T) ((-577 . -23) T) ((-336 . -1244) 104365) ((-312 . -444) 104344) ((-332 . -302) 104331) ((-576 . -23) T) ((-420 . -130) T) ((-634 . -624) 104305) ((-239 . -981) 104289) ((-843 . -300) T) ((-1249 . -1239) 104273) ((-747 . -768) T) ((-747 . -771) T) ((-677 . -38) 104260) ((-549 . -227) T) ((-486 . -237) T) ((-486 . -227) T) ((-1116 . -229) 104210) ((-1053 . -880) 104189) ((-116 . -38) 104176) ((-203 . -776) T) ((-202 . -776) T) ((-201 . -776) T) ((-200 . -776) T) ((-843 . -993) 104155) ((-1238 . -481) 104139) ((-758 . -880) 104118) ((-756 . -880) 104097) ((-1152 . -1179) T) ((-446 . -880) 104076) ((-714 . -481) 104060) ((-1053 . -624) 103985) ((-758 . -624) 103910) ((-601 . -1024) 103897) ((-471 . -1179) T) ((-336 . -361) T) ((-139 . -481) 103879) ((-756 . -624) 103804) ((-1107 . -1179) T) ((-453 . -624) 103775) ((-257 . -857) 103634) ((-241 . -857) NIL) ((-117 . -1024) 103579) ((-446 . -624) 103504) ((-640 . -1009) 103481) ((-601 . -111) 103466) ((-348 . -1009) 103450) ((-345 . -1009) 103434) ((-337 . -1009) 103418) ((-257 . -1009) 103262) ((-241 . -1009) 103138) ((-117 . -111) 103067) ((-58 . -1179) T) ((-510 . -1179) T) ((-507 . -1179) T) ((-488 . -1179) T) ((-487 . -1179) T) ((-430 . -593) 103049) ((-427 . -593) 103031) ((-3 . -101) T) ((-998 . -1172) 103000) ((-809 . -101) T) ((-665 . -56) 102958) ((-675 . -1018) T) ((-50 . -624) 102932) ((-282 . -444) T) ((-468 . -1172) 102901) ((0 . -101) T) ((-563 . -624) 102866) ((-509 . -624) 102811) ((-49 . -101) T) ((-881 . -1009) 102798) ((-675 . -237) T) ((-1046 . -402) 102777) ((-708 . -617) 102725) ((-970 . -1066) T) ((-689 . -170) 102616) ((-479 . -963) 102598) ((-257 . -370) 102582) ((-241 . -370) 102566) ((-392 . -1066) T) ((-332 . -38) 102550) ((-997 . -101) 102528) ((-211 . -963) 102510) ((-172 . -38) 102442) ((-1209 . -300) 102421) ((-1188 . -300) 102400) ((-634 . -703) T) ((-98 . -593) 102382) ((-1133 . -617) 102334) ((-477 . -25) T) ((-477 . -21) T) ((-1188 . -993) 102287) ((-601 . -1018) T) ((-372 . -397) T) ((-383 . -101) T) ((-257 . -871) 102233) ((-241 . -871) 102210) ((-117 . -1018) T) ((-792 . -1078) T) ((-1053 . -703) T) ((-601 . -227) 102189) ((-599 . -101) T) ((-758 . -703) T) ((-756 . -703) T) ((-406 . -1078) T) ((-117 . -237) T) ((-40 . -361) NIL) ((-117 . -227) NIL) ((-446 . -703) T) ((-792 . -23) T) ((-708 . -25) T) ((-708 . -21) T) ((-679 . -823) T) ((-1043 . -279) 102168) ((-77 . -389) T) ((-77 . -388) T) ((-670 . -1024) 102118) ((-1217 . -130) T) ((-1210 . -130) T) ((-1189 . -130) T) ((-1108 . -404) 102102) ((-613 . -360) 102034) ((-587 . -360) 101966) ((-1122 . -1115) 101950) ((-102 . -1066) 101928) ((-1140 . -25) T) ((-1140 . -21) T) ((-1139 . -21) T) ((-970 . -694) 101876) ((-217 . -624) 101843) ((-670 . -111) 101777) ((-50 . -703) T) ((-1139 . -25) T) ((-344 . -342) T) ((-1133 . -21) T) ((-1046 . -444) 101728) ((-1133 . -25) T) ((-689 . -505) 101675) ((-563 . -703) T) ((-509 . -703) T) ((-1092 . -21) T) ((-1092 . -25) T) ((-577 . -130) T) ((-576 . -130) T) ((-352 . -444) T) ((-346 . -444) T) ((-338 . -444) T) ((-466 . -300) 101654) ((-306 . -279) 101589) ((-107 . -444) T) ((-78 . -433) T) ((-78 . -388) T) ((-469 . -101) T) ((-1253 . -593) 101571) ((-1253 . -594) 101553) ((-1046 . -395) 101532) ((-1006 . -481) 101463) ((-549 . -771) T) ((-549 . -768) T) ((-1030 . -229) 101409) ((-352 . -395) 101360) ((-346 . -395) 101311) ((-338 . -395) 101262) ((-1240 . -1078) T) ((-1240 . -23) T) ((-1227 . -101) T) ((-173 . -593) 101244) ((-1108 . -1025) T) ((-646 . -721) 101228) ((-1144 . -143) 101207) ((-1144 . -145) 101186) ((-1112 . -1066) T) ((-1112 . -1038) 101155) ((-68 . -1179) T) ((-995 . -1024) 101092) ((-837 . -1025) T) ((-234 . -617) 100998) ((-670 . -1018) T) ((-347 . -1024) 100943) ((-60 . -1179) T) ((-995 . -111) 100859) ((-872 . -593) 100791) ((-670 . -237) T) ((-670 . -227) NIL) ((-816 . -821) 100770) ((-675 . -771) T) ((-675 . -768) T) ((-974 . -404) 100747) ((-347 . -111) 100676) ((-372 . -891) T) ((-400 . -821) 100655) ((-689 . -283) 100566) ((-217 . -703) T) ((-1217 . -484) 100532) ((-1210 . -484) 100498) ((-1189 . -484) 100464) ((-309 . -973) 100443) ((-216 . -1066) 100421) ((-312 . -944) 100383) ((-104 . -101) T) ((-48 . -1024) 100348) ((-1249 . -101) T) ((-374 . -101) T) ((-48 . -111) 100304) ((-975 . -617) 100286) ((-1211 . -593) 100268) ((-521 . -101) T) ((-491 . -101) T) ((-1099 . -1100) 100252) ((-150 . -1232) 100236) ((-239 . -1179) T) ((-1178 . -101) T) ((-1138 . -1183) 100215) ((-1091 . -1183) 100194) ((-234 . -21) 100104) ((-234 . -25) 99955) ((-127 . -119) 99939) ((-121 . -119) 99923) ((-44 . -721) 99907) ((-1138 . -541) 99818) ((-1091 . -541) 99749) ((-1006 . -279) 99724) ((-1132 . -1049) T) ((-965 . -1049) T) ((-792 . -130) T) ((-117 . -771) NIL) ((-117 . -768) NIL) ((-348 . -300) T) ((-345 . -300) T) ((-337 . -300) T) ((-1060 . -1179) T) ((-244 . -1078) 99634) ((-243 . -1078) 99544) ((-995 . -1018) T) ((-974 . -1025) T) ((-336 . -624) 99489) ((-599 . -38) 99473) ((-1238 . -593) 99435) ((-1238 . -594) 99396) ((-1043 . -593) 99378) ((-995 . -237) T) ((-347 . -1018) T) ((-791 . -1232) 99348) ((-244 . -23) T) ((-243 . -23) T) ((-958 . -593) 99330) ((-714 . -594) 99291) ((-714 . -593) 99273) ((-775 . -823) 99252) ((-970 . -505) 99164) ((-347 . -227) T) ((-347 . -237) T) ((-1125 . -149) 99111) ((-975 . -25) T) ((-139 . -594) 99070) ((-139 . -593) 99052) ((-881 . -300) T) ((-975 . -21) T) ((-942 . -25) T) ((-885 . -21) T) ((-885 . -25) T) ((-420 . -21) T) ((-420 . -25) T) ((-816 . -404) 99036) ((-48 . -1018) T) ((-1247 . -1239) 99020) ((-1245 . -1239) 99004) ((-1006 . -584) 98979) ((-309 . -594) 98840) ((-309 . -593) 98822) ((-306 . -594) NIL) ((-306 . -593) 98804) ((-48 . -237) T) ((-48 . -227) T) ((-630 . -279) 98765) ((-535 . -229) 98715) ((-135 . -593) 98697) ((-114 . -593) 98679) ((-469 . -38) 98644) ((-1249 . -1246) 98623) ((-1240 . -130) T) ((-1248 . -1025) T) ((-1048 . -101) T) ((-87 . -1179) T) ((-491 . -302) NIL) ((-971 . -106) 98607) ((-860 . -1066) T) ((-856 . -1066) T) ((-1225 . -627) 98591) ((-1225 . -366) 98575) ((-320 . -1179) T) ((-574 . -823) T) ((-1108 . -1066) T) ((-1108 . -1021) 98515) ((-102 . -505) 98448) ((-898 . -593) 98430) ((-336 . -703) T) ((-30 . -593) 98412) ((-837 . -1066) T) ((-816 . -1025) 98391) ((-40 . -624) 98336) ((-219 . -1183) T) ((-400 . -1025) T) ((-1124 . -149) 98318) ((-970 . -283) 98269) ((-596 . -1066) T) ((-219 . -541) T) ((-312 . -1206) 98253) ((-312 . -1203) 98223) ((-1152 . -1155) 98202) ((-1041 . -593) 98184) ((-623 . -149) 98168) ((-610 . -149) 98114) ((-1152 . -106) 98064) ((-471 . -1155) 98043) ((-479 . -145) T) ((-479 . -143) NIL) ((-1086 . -594) 97958) ((-431 . -593) 97940) ((-211 . -145) T) ((-211 . -143) NIL) ((-1086 . -593) 97922) ((-129 . -101) T) ((-52 . -101) T) ((-1189 . -617) 97874) ((-471 . -106) 97824) ((-964 . -23) T) ((-1249 . -38) 97794) ((-1138 . -1078) T) ((-1091 . -1078) T) ((-1029 . -1183) T) ((-304 . -101) T) ((-827 . -1078) T) ((-923 . -1183) 97773) ((-473 . -1183) 97752) ((-708 . -823) 97731) ((-1029 . -541) T) ((-923 . -541) 97662) ((-1138 . -23) T) ((-1091 . -23) T) ((-827 . -23) T) ((-473 . -541) 97593) ((-1108 . -694) 97525) ((-1112 . -505) 97458) ((-1006 . -594) NIL) ((-1006 . -593) 97440) ((-95 . -1049) T) ((-837 . -694) 97410) ((-1173 . -47) 97379) ((-244 . -130) T) ((-243 . -130) T) ((-1070 . -1066) T) ((-974 . -1066) T) ((-61 . -593) 97361) ((-1133 . -823) NIL) ((-995 . -768) T) ((-995 . -771) T) ((-1253 . -1024) 97348) ((-1253 . -111) 97333) ((-841 . -624) 97320) ((-1217 . -25) T) ((-1217 . -21) T) ((-1210 . -21) T) ((-1210 . -25) T) ((-1189 . -21) T) ((-1189 . -25) T) ((-998 . -149) 97304) ((-843 . -796) 97283) ((-843 . -891) T) ((-689 . -279) 97210) ((-577 . -21) T) ((-577 . -25) T) ((-576 . -21) T) ((-40 . -703) T) ((-216 . -505) 97143) ((-576 . -25) T) ((-468 . -149) 97127) ((-455 . -149) 97111) ((-892 . -770) T) ((-892 . -703) T) ((-747 . -769) T) ((-747 . -770) T) ((-497 . -1066) T) ((-493 . -1066) T) ((-747 . -703) T) ((-219 . -356) T) ((-1122 . -1066) 97089) ((-842 . -1183) T) ((-630 . -593) 97071) ((-842 . -541) T) ((-670 . -361) NIL) ((-352 . -1232) 97055) ((-646 . -101) T) ((-346 . -1232) 97039) ((-338 . -1232) 97023) ((-1248 . -1066) T) ((-511 . -823) 97002) ((-793 . -444) 96981) ((-1015 . -1066) T) ((-1015 . -1038) 96910) ((-998 . -947) 96879) ((-795 . -1078) T) ((-974 . -694) 96824) ((-379 . -1078) T) ((-468 . -947) 96793) ((-455 . -947) 96762) ((-110 . -149) 96744) ((-72 . -593) 96726) ((-864 . -593) 96708) ((-1046 . -701) 96687) ((-1253 . -1018) T) ((-792 . -617) 96635) ((-287 . -1025) 96577) ((-167 . -1183) 96482) ((-219 . -1078) T) ((-317 . -23) T) ((-1133 . -963) 96434) ((-816 . -1066) T) ((-1092 . -717) 96413) ((-1211 . -1024) 96318) ((-1209 . -891) 96297) ((-841 . -703) T) ((-167 . -541) 96208) ((-1188 . -891) 96187) ((-562 . -624) 96174) ((-400 . -1066) T) ((-549 . -624) 96161) ((-256 . -1066) T) ((-486 . -624) 96126) ((-219 . -23) T) ((-1188 . -796) 96079) ((-1247 . -101) T) ((-347 . -1244) 96056) ((-1245 . -101) T) ((-1211 . -111) 95948) ((-142 . -593) 95930) ((-964 . -130) T) ((-44 . -101) T) ((-234 . -823) 95881) ((-1198 . -1183) 95860) ((-102 . -481) 95844) ((-1248 . -694) 95814) ((-1053 . -47) 95775) ((-1029 . -1078) T) ((-923 . -1078) T) ((-127 . -34) T) ((-121 . -34) T) ((-758 . -47) 95752) ((-756 . -47) 95724) ((-1198 . -541) 95635) ((-347 . -361) T) ((-473 . -1078) T) ((-1138 . -130) T) ((-1091 . -130) T) ((-446 . -47) 95614) ((-842 . -356) T) ((-827 . -130) T) ((-150 . -101) T) ((-1029 . -23) T) ((-923 . -23) T) ((-556 . -541) T) ((-792 . -25) T) ((-792 . -21) T) ((-1108 . -505) 95547) ((-573 . -1049) T) ((-567 . -1009) 95531) ((-473 . -23) T) ((-344 . -1025) T) ((-1173 . -871) 95512) ((-646 . -302) 95450) ((-1079 . -1232) 95420) ((-675 . -624) 95385) ((-974 . -170) T) ((-934 . -143) 95364) ((-613 . -1066) T) ((-587 . -1066) T) ((-934 . -145) 95343) ((-975 . -823) T) ((-712 . -145) 95322) ((-712 . -143) 95301) ((-942 . -823) T) ((-466 . -891) 95280) ((-309 . -1024) 95190) ((-306 . -1024) 95119) ((-970 . -279) 95077) ((-400 . -694) 95029) ((-128 . -823) T) ((-677 . -821) T) ((-1211 . -1018) T) ((-309 . -111) 94925) ((-306 . -111) 94838) ((-935 . -101) T) ((-791 . -101) 94628) ((-689 . -594) NIL) ((-689 . -593) 94610) ((-634 . -1009) 94506) ((-1211 . -319) 94450) ((-1006 . -281) 94425) ((-562 . -703) T) ((-549 . -770) T) ((-167 . -356) 94376) ((-549 . -767) T) ((-549 . -703) T) ((-486 . -703) T) ((-1112 . -481) 94360) ((-1053 . -857) NIL) ((-842 . -1078) T) ((-117 . -880) NIL) ((-1247 . -1246) 94336) ((-1245 . -1246) 94315) ((-758 . -857) NIL) ((-756 . -857) 94174) ((-1240 . -25) T) ((-1240 . -21) T) ((-1176 . -101) 94152) ((-1072 . -388) T) ((-601 . -624) 94139) ((-446 . -857) NIL) ((-651 . -101) 94117) ((-1053 . -1009) 93944) ((-842 . -23) T) ((-758 . -1009) 93803) ((-756 . -1009) 93660) ((-117 . -624) 93605) ((-446 . -1009) 93481) ((-625 . -1009) 93465) ((-605 . -101) T) ((-216 . -481) 93449) ((-1225 . -34) T) ((-613 . -694) 93433) ((-587 . -694) 93417) ((-646 . -38) 93377) ((-312 . -101) T) ((-84 . -593) 93359) ((-50 . -1009) 93343) ((-1086 . -1024) 93330) ((-1053 . -370) 93314) ((-758 . -370) 93298) ((-59 . -56) 93260) ((-675 . -770) T) ((-675 . -767) T) ((-563 . -1009) 93247) ((-509 . -1009) 93224) ((-675 . -703) T) ((-317 . -130) T) ((-309 . -1018) 93114) ((-306 . -1018) T) ((-167 . -1078) T) ((-756 . -370) 93098) ((-45 . -149) 93048) ((-975 . -963) 93030) ((-446 . -370) 93014) ((-400 . -170) T) ((-309 . -237) 92993) ((-306 . -237) T) ((-306 . -227) NIL) ((-287 . -1066) 92775) ((-219 . -130) T) ((-1086 . -111) 92760) ((-167 . -23) T) ((-775 . -145) 92739) ((-775 . -143) 92718) ((-244 . -617) 92624) ((-243 . -617) 92530) ((-312 . -277) 92496) ((-1122 . -505) 92429) ((-1099 . -1066) T) ((-219 . -1027) T) ((-791 . -302) 92367) ((-1053 . -871) 92302) ((-758 . -871) 92245) ((-756 . -871) 92229) ((-1247 . -38) 92199) ((-1245 . -38) 92169) ((-1198 . -1078) T) ((-828 . -1078) T) ((-446 . -871) 92146) ((-831 . -1066) T) ((-1198 . -23) T) ((-556 . -1078) T) ((-828 . -23) T) ((-601 . -703) T) ((-348 . -891) T) ((-345 . -891) T) ((-282 . -101) T) ((-337 . -891) T) ((-1029 . -130) T) ((-941 . -1049) T) ((-923 . -130) T) ((-117 . -770) NIL) ((-117 . -767) NIL) ((-117 . -703) T) ((-670 . -880) NIL) ((-1015 . -505) 92047) ((-473 . -130) T) ((-556 . -23) T) ((-651 . -302) 91985) ((-613 . -738) T) ((-587 . -738) T) ((-1189 . -823) NIL) ((-974 . -283) T) ((-244 . -21) T) ((-670 . -624) 91935) ((-344 . -1066) T) ((-244 . -25) T) ((-243 . -21) T) ((-243 . -25) T) ((-150 . -38) 91919) ((-2 . -101) T) ((-881 . -891) T) ((-474 . -1232) 91889) ((-217 . -1009) 91866) ((-1086 . -1018) T) ((-688 . -300) T) ((-287 . -694) 91808) ((-677 . -1025) T) ((-479 . -444) T) ((-400 . -505) 91720) ((-211 . -444) T) ((-1086 . -227) T) ((-288 . -149) 91670) ((-970 . -594) 91631) ((-970 . -593) 91613) ((-960 . -593) 91595) ((-116 . -1025) T) ((-630 . -1024) 91579) ((-219 . -484) T) ((-392 . -593) 91561) ((-392 . -594) 91538) ((-1022 . -1232) 91508) ((-630 . -111) 91487) ((-1108 . -481) 91471) ((-791 . -38) 91441) ((-62 . -433) T) ((-62 . -388) T) ((-1125 . -101) T) ((-842 . -130) T) ((-476 . -101) 91419) ((-1253 . -361) T) ((-1046 . -101) T) ((-1028 . -101) T) ((-344 . -694) 91364) ((-708 . -145) 91343) ((-708 . -143) 91322) ((-995 . -624) 91259) ((-514 . -1066) 91237) ((-352 . -101) T) ((-346 . -101) T) ((-338 . -101) T) ((-107 . -101) T) ((-495 . -1066) T) ((-347 . -624) 91182) ((-1138 . -617) 91130) ((-1091 . -617) 91078) ((-378 . -500) 91057) ((-809 . -821) 91036) ((-372 . -1183) T) ((-670 . -703) T) ((-332 . -1025) T) ((-1189 . -963) 90988) ((-172 . -1025) T) ((-102 . -593) 90920) ((-1140 . -143) 90899) ((-1140 . -145) 90878) ((-372 . -541) T) ((-1139 . -145) 90857) ((-1139 . -143) 90836) ((-1133 . -143) 90743) ((-400 . -283) T) ((-1133 . -145) 90650) ((-1092 . -145) 90629) ((-1092 . -143) 90608) ((-312 . -38) 90449) ((-167 . -130) T) ((-306 . -771) NIL) ((-306 . -768) NIL) ((-630 . -1018) T) ((-48 . -624) 90414) ((-1132 . -101) T) ((-965 . -101) T) ((-964 . -21) T) ((-127 . -981) 90398) ((-121 . -981) 90382) ((-964 . -25) T) ((-872 . -119) 90366) ((-1124 . -101) T) ((-792 . -823) 90345) ((-1198 . -130) T) ((-1138 . -25) T) ((-1138 . -21) T) ((-828 . -130) T) ((-1091 . -25) T) ((-1091 . -21) T) ((-827 . -25) T) ((-827 . -21) T) ((-758 . -300) 90324) ((-623 . -101) 90302) ((-610 . -101) T) ((-1125 . -302) 90097) ((-556 . -130) T) ((-599 . -821) 90076) ((-1122 . -481) 90060) ((-1116 . -149) 90010) ((-1112 . -593) 89972) ((-1112 . -594) 89933) ((-995 . -767) T) ((-995 . -770) T) ((-995 . -703) T) ((-476 . -302) 89871) ((-445 . -410) 89841) ((-344 . -170) T) ((-282 . -38) 89828) ((-267 . -101) T) ((-266 . -101) T) ((-265 . -101) T) ((-264 . -101) T) ((-263 . -101) T) ((-262 . -101) T) ((-261 . -101) T) ((-336 . -1009) 89805) ((-206 . -101) T) ((-205 . -101) T) ((-203 . -101) T) ((-202 . -101) T) ((-201 . -101) T) ((-200 . -101) T) ((-197 . -101) T) ((-196 . -101) T) ((-689 . -1024) 89628) ((-195 . -101) T) ((-194 . -101) T) ((-193 . -101) T) ((-192 . -101) T) ((-191 . -101) T) ((-190 . -101) T) ((-189 . -101) T) ((-188 . -101) T) ((-187 . -101) T) ((-347 . -703) T) ((-689 . -111) 89437) ((-646 . -225) 89421) ((-563 . -300) T) ((-509 . -300) T) ((-287 . -505) 89370) ((-107 . -302) NIL) ((-71 . -388) T) ((-1079 . -101) 89160) ((-809 . -404) 89144) ((-1086 . -771) T) ((-1086 . -768) T) ((-677 . -1066) T) ((-372 . -356) T) ((-167 . -484) 89122) ((-207 . -1066) T) ((-216 . -593) 89054) ((-133 . -1066) T) ((-116 . -1066) T) ((-48 . -703) T) ((-1015 . -481) 89019) ((-497 . -92) T) ((-139 . -418) 89001) ((-139 . -361) T) ((-998 . -101) T) ((-503 . -500) 88980) ((-468 . -101) T) ((-455 . -101) T) ((-1005 . -1078) T) ((-1140 . -35) 88946) ((-1140 . -94) 88912) ((-1140 . -1167) 88878) ((-1140 . -1164) 88844) ((-1124 . -302) NIL) ((-88 . -389) T) ((-88 . -388) T) ((-1046 . -1117) 88823) ((-1139 . -1164) 88789) ((-1139 . -1167) 88755) ((-1005 . -23) T) ((-1139 . -94) 88721) ((-556 . -484) T) ((-1139 . -35) 88687) ((-1133 . -1164) 88653) ((-1133 . -1167) 88619) ((-1133 . -94) 88585) ((-354 . -1078) T) ((-352 . -1117) 88564) ((-346 . -1117) 88543) ((-338 . -1117) 88522) ((-1133 . -35) 88488) ((-1092 . -35) 88454) ((-1092 . -94) 88420) ((-107 . -1117) T) ((-1092 . -1167) 88386) ((-809 . -1025) 88365) ((-623 . -302) 88303) ((-610 . -302) 88154) ((-1092 . -1164) 88120) ((-689 . -1018) T) ((-1029 . -617) 88102) ((-1046 . -38) 87970) ((-923 . -617) 87918) ((-975 . -145) T) ((-975 . -143) NIL) ((-372 . -1078) T) ((-317 . -25) T) ((-315 . -23) T) ((-914 . -823) 87897) ((-689 . -319) 87874) ((-473 . -617) 87822) ((-40 . -1009) 87710) ((-677 . -694) 87697) ((-689 . -227) T) ((-332 . -1066) T) ((-172 . -1066) T) ((-324 . -823) T) ((-411 . -444) 87647) ((-372 . -23) T) ((-352 . -38) 87612) ((-346 . -38) 87577) ((-338 . -38) 87542) ((-79 . -433) T) ((-79 . -388) T) ((-219 . -25) T) ((-219 . -21) T) ((-810 . -1078) T) ((-107 . -38) 87492) ((-803 . -1078) T) ((-750 . -1066) T) ((-116 . -694) 87479) ((-648 . -1009) 87463) ((-592 . -101) T) ((-810 . -23) T) ((-803 . -23) T) ((-1122 . -279) 87440) ((-1079 . -302) 87378) ((-1068 . -229) 87362) ((-63 . -389) T) ((-63 . -388) T) ((-110 . -101) T) ((-40 . -370) 87339) ((-95 . -101) T) ((-629 . -825) 87323) ((-1101 . -1049) T) ((-1029 . -21) T) ((-1029 . -25) T) ((-791 . -225) 87292) ((-923 . -25) T) ((-923 . -21) T) ((-599 . -1025) T) ((-473 . -25) T) ((-473 . -21) T) ((-998 . -302) 87230) ((-860 . -593) 87212) ((-856 . -593) 87194) ((-244 . -823) 87145) ((-243 . -823) 87096) ((-514 . -505) 87029) ((-842 . -617) 87006) ((-468 . -302) 86944) ((-455 . -302) 86882) ((-344 . -283) T) ((-1122 . -1213) 86866) ((-1108 . -593) 86828) ((-1108 . -594) 86789) ((-1106 . -101) T) ((-970 . -1024) 86685) ((-40 . -871) 86637) ((-1122 . -584) 86614) ((-1253 . -624) 86601) ((-1030 . -149) 86547) ((-843 . -1183) T) ((-970 . -111) 86429) ((-332 . -694) 86413) ((-837 . -593) 86395) ((-172 . -694) 86327) ((-400 . -279) 86285) ((-843 . -541) T) ((-107 . -393) 86267) ((-83 . -377) T) ((-83 . -388) T) ((-677 . -170) T) ((-596 . -593) 86249) ((-98 . -703) T) ((-474 . -101) 86039) ((-98 . -465) T) ((-116 . -170) T) ((-1079 . -38) 86009) ((-167 . -617) 85957) ((-1022 . -101) T) ((-842 . -25) T) ((-791 . -232) 85936) ((-842 . -21) T) ((-794 . -101) T) ((-407 . -101) T) ((-378 . -101) T) ((-110 . -302) NIL) ((-221 . -101) 85914) ((-127 . -1179) T) ((-121 . -1179) T) ((-1005 . -130) T) ((-646 . -360) 85898) ((-970 . -1018) T) ((-1198 . -617) 85846) ((-1070 . -593) 85828) ((-974 . -593) 85810) ((-506 . -23) T) ((-501 . -23) T) ((-336 . -300) T) ((-499 . -23) T) ((-315 . -130) T) ((-3 . -1066) T) ((-974 . -594) 85794) ((-970 . -237) 85773) ((-970 . -227) 85752) ((-1253 . -703) T) ((-1217 . -143) 85731) ((-809 . -1066) T) ((-1217 . -145) 85710) ((-1210 . -145) 85689) ((-1210 . -143) 85668) ((-1209 . -1183) 85647) ((-1189 . -143) 85554) ((-1189 . -145) 85461) ((-1188 . -1183) 85440) ((-372 . -130) T) ((-549 . -857) 85422) ((0 . -1066) T) ((-172 . -170) T) ((-167 . -21) T) ((-167 . -25) T) ((-49 . -1066) T) ((-1211 . -624) 85327) ((-1209 . -541) 85278) ((-691 . -1078) T) ((-1188 . -541) 85229) ((-549 . -1009) 85211) ((-576 . -145) 85190) ((-576 . -143) 85169) ((-486 . -1009) 85112) ((-1101 . -1103) T) ((-86 . -377) T) ((-86 . -388) T) ((-843 . -356) T) ((-810 . -130) T) ((-803 . -130) T) ((-691 . -23) T) ((-497 . -593) 85062) ((-493 . -593) 85044) ((-1249 . -1025) T) ((-372 . -1027) T) ((-997 . -1066) 85022) ((-872 . -34) T) ((-474 . -302) 84960) ((-573 . -101) T) ((-1122 . -594) 84921) ((-1122 . -593) 84853) ((-1138 . -823) 84832) ((-45 . -101) T) ((-1091 . -823) 84811) ((-793 . -101) T) ((-1198 . -25) T) ((-1198 . -21) T) ((-828 . -25) T) ((-44 . -360) 84795) ((-828 . -21) T) ((-708 . -444) 84746) ((-1248 . -593) 84728) ((-1022 . -302) 84666) ((-647 . -1049) T) ((-586 . -1049) T) ((-383 . -1066) T) ((-556 . -25) T) ((-556 . -21) T) ((-178 . -1049) T) ((-159 . -1049) T) ((-154 . -1049) T) ((-152 . -1049) T) ((-599 . -1066) T) ((-675 . -857) 84648) ((-1225 . -1179) T) ((-221 . -302) 84586) ((-142 . -361) T) ((-1015 . -594) 84528) ((-1015 . -593) 84471) ((-306 . -880) NIL) ((-675 . -1009) 84416) ((-688 . -891) T) ((-466 . -1183) 84395) ((-1139 . -444) 84374) ((-1133 . -444) 84353) ((-323 . -101) T) ((-843 . -1078) T) ((-309 . -624) 84174) ((-306 . -624) 84103) ((-466 . -541) 84054) ((-332 . -505) 84020) ((-535 . -149) 83970) ((-40 . -300) T) ((-816 . -593) 83952) ((-677 . -283) T) ((-843 . -23) T) ((-372 . -484) T) ((-1046 . -225) 83922) ((-503 . -101) T) ((-400 . -594) 83730) ((-400 . -593) 83712) ((-256 . -593) 83694) ((-116 . -283) T) ((-1211 . -703) T) ((-1209 . -356) 83673) ((-1188 . -356) 83652) ((-1238 . -34) T) ((-117 . -1179) T) ((-107 . -225) 83634) ((-1144 . -101) T) ((-469 . -1066) T) ((-514 . -481) 83618) ((-714 . -34) T) ((-474 . -38) 83588) ((-139 . -34) T) ((-117 . -855) 83565) ((-117 . -857) NIL) ((-601 . -1009) 83448) ((-621 . -823) 83427) ((-1237 . -101) T) ((-288 . -101) T) ((-689 . -361) 83406) ((-117 . -1009) 83383) ((-383 . -694) 83367) ((-599 . -694) 83351) ((-45 . -302) 83155) ((-792 . -143) 83134) ((-792 . -145) 83113) ((-1248 . -375) 83092) ((-795 . -823) T) ((-1227 . -1066) T) ((-1125 . -223) 83039) ((-379 . -823) 83018) ((-1217 . -1167) 82984) ((-1217 . -1164) 82950) ((-1210 . -1164) 82916) ((-506 . -130) T) ((-1210 . -1167) 82882) ((-1189 . -1164) 82848) ((-1189 . -1167) 82814) ((-1217 . -35) 82780) ((-1217 . -94) 82746) ((-613 . -593) 82715) ((-587 . -593) 82684) ((-219 . -823) T) ((-1210 . -94) 82650) ((-1210 . -35) 82616) ((-1209 . -1078) T) ((-1086 . -624) 82603) ((-1189 . -94) 82569) ((-1188 . -1078) T) ((-574 . -149) 82551) ((-1046 . -342) 82530) ((-172 . -283) T) ((-117 . -370) 82507) ((-117 . -331) 82484) ((-1189 . -35) 82450) ((-841 . -300) T) ((-306 . -770) NIL) ((-306 . -767) NIL) ((-309 . -703) 82299) ((-306 . -703) T) ((-466 . -356) 82278) ((-352 . -342) 82257) ((-346 . -342) 82236) ((-338 . -342) 82215) ((-309 . -465) 82194) ((-1209 . -23) T) ((-1188 . -23) T) ((-695 . -1078) T) ((-691 . -130) T) ((-629 . -101) T) ((-469 . -694) 82159) ((-45 . -275) 82109) ((-104 . -1066) T) ((-67 . -593) 82091) ((-941 . -101) T) ((-836 . -101) T) ((-601 . -871) 82050) ((-1249 . -1066) T) ((-374 . -1066) T) ((-1178 . -1066) T) ((-81 . -1179) T) ((-1029 . -823) T) ((-923 . -823) 82029) ((-117 . -871) NIL) ((-758 . -891) 82008) ((-690 . -823) T) ((-521 . -1066) T) ((-491 . -1066) T) ((-348 . -1183) T) ((-345 . -1183) T) ((-337 . -1183) T) ((-257 . -1183) 81987) ((-241 . -1183) 81966) ((-1079 . -225) 81935) ((-473 . -823) 81914) ((-1108 . -1024) 81898) ((-383 . -738) T) ((-1124 . -804) T) ((-670 . -1179) T) ((-348 . -541) T) ((-345 . -541) T) ((-337 . -541) T) ((-257 . -541) 81829) ((-241 . -541) 81760) ((-516 . -1049) T) ((-1108 . -111) 81739) ((-445 . -721) 81709) ((-837 . -1024) 81679) ((-793 . -38) 81621) ((-670 . -855) 81603) ((-670 . -857) 81585) ((-288 . -302) 81389) ((-881 . -1183) T) ((-646 . -404) 81373) ((-837 . -111) 81338) ((-670 . -1009) 81283) ((-975 . -444) T) ((-881 . -541) T) ((-563 . -891) T) ((-466 . -1078) T) ((-509 . -891) T) ((-1122 . -281) 81260) ((-885 . -444) T) ((-64 . -593) 81242) ((-610 . -223) 81188) ((-466 . -23) T) ((-1086 . -770) T) ((-843 . -130) T) ((-1086 . -767) T) ((-1240 . -1242) 81167) ((-1086 . -703) T) ((-630 . -624) 81141) ((-287 . -593) 80882) ((-1006 . -34) T) ((-791 . -821) 80861) ((-562 . -300) T) ((-549 . -300) T) ((-486 . -300) T) ((-1249 . -694) 80831) ((-670 . -370) 80813) ((-670 . -331) 80795) ((-469 . -170) T) ((-374 . -694) 80765) ((-842 . -823) NIL) ((-549 . -993) T) ((-486 . -993) T) ((-1099 . -593) 80747) ((-1079 . -232) 80726) ((-208 . -101) T) ((-1116 . -101) T) ((-70 . -593) 80708) ((-1108 . -1018) T) ((-1144 . -38) 80605) ((-831 . -593) 80587) ((-549 . -534) T) ((-646 . -1025) T) ((-708 . -920) 80540) ((-1108 . -227) 80519) ((-1048 . -1066) T) ((-1005 . -25) T) ((-1005 . -21) T) ((-974 . -1024) 80464) ((-876 . -101) T) ((-837 . -1018) T) ((-670 . -871) NIL) ((-348 . -322) 80448) ((-348 . -356) T) ((-345 . -322) 80432) ((-345 . -356) T) ((-337 . -322) 80416) ((-337 . -356) T) ((-479 . -101) T) ((-1237 . -38) 80386) ((-514 . -663) 80336) ((-211 . -101) T) ((-995 . -1009) 80216) ((-974 . -111) 80145) ((-1140 . -944) 80114) ((-1139 . -944) 80076) ((-511 . -149) 80060) ((-1046 . -363) 80039) ((-344 . -593) 80021) ((-315 . -21) T) ((-347 . -1009) 79998) ((-315 . -25) T) ((-1133 . -944) 79967) ((-1092 . -944) 79934) ((-75 . -593) 79916) ((-675 . -300) T) ((-167 . -823) 79895) ((-881 . -356) T) ((-372 . -25) T) ((-372 . -21) T) ((-881 . -322) 79882) ((-85 . -593) 79864) ((-675 . -993) T) ((-653 . -823) T) ((-1209 . -130) T) ((-1188 . -130) T) ((-872 . -981) 79848) ((-810 . -21) T) ((-48 . -1009) 79791) ((-810 . -25) T) ((-803 . -25) T) ((-803 . -21) T) ((-1247 . -1025) T) ((-1245 . -1025) T) ((-630 . -703) T) ((-1248 . -1024) 79775) ((-1198 . -823) 79754) ((-791 . -404) 79723) ((-102 . -119) 79707) ((-129 . -1066) T) ((-52 . -1066) T) ((-897 . -593) 79689) ((-842 . -963) 79666) ((-799 . -101) T) ((-1248 . -111) 79645) ((-629 . -38) 79615) ((-556 . -823) T) ((-348 . -1078) T) ((-345 . -1078) T) ((-337 . -1078) T) ((-257 . -1078) T) ((-241 . -1078) T) ((-601 . -300) 79594) ((-1116 . -302) 79398) ((-515 . -1049) T) ((-304 . -1066) T) ((-640 . -23) T) ((-474 . -225) 79367) ((-150 . -1025) T) ((-348 . -23) T) ((-345 . -23) T) ((-337 . -23) T) ((-117 . -300) T) ((-257 . -23) T) ((-241 . -23) T) ((-974 . -1018) T) ((-689 . -880) 79346) ((-974 . -227) 79318) ((-974 . -237) T) ((-117 . -993) NIL) ((-881 . -1078) T) ((-1210 . -444) 79297) ((-1189 . -444) 79276) ((-514 . -593) 79208) ((-689 . -624) 79133) ((-400 . -1024) 79085) ((-495 . -593) 79067) ((-881 . -23) T) ((-479 . -302) NIL) ((-466 . -130) T) ((-211 . -302) NIL) ((-400 . -111) 79005) ((-791 . -1025) 78935) ((-714 . -1064) 78919) ((-1209 . -484) 78885) ((-1188 . -484) 78851) ((-469 . -283) T) ((-139 . -1064) 78833) ((-128 . -149) 78815) ((-1248 . -1018) T) ((-1030 . -101) T) ((-491 . -505) NIL) ((-679 . -101) T) ((-474 . -232) 78794) ((-1138 . -143) 78773) ((-1138 . -145) 78752) ((-1091 . -145) 78731) ((-1091 . -143) 78710) ((-613 . -1024) 78694) ((-587 . -1024) 78678) ((-646 . -1066) T) ((-646 . -1021) 78618) ((-1140 . -1216) 78602) ((-1140 . -1203) 78579) ((-479 . -1117) T) ((-1139 . -1208) 78540) ((-1139 . -1203) 78510) ((-1139 . -1206) 78494) ((-211 . -1117) T) ((-336 . -891) T) ((-794 . -259) 78478) ((-613 . -111) 78457) ((-587 . -111) 78436) ((-1133 . -1187) 78397) ((-816 . -1018) 78376) ((-1133 . -1203) 78353) ((-506 . -25) T) ((-486 . -295) T) ((-502 . -23) T) ((-501 . -25) T) ((-499 . -25) T) ((-498 . -23) T) ((-1133 . -1185) 78337) ((-400 . -1018) T) ((-312 . -1025) T) ((-670 . -300) T) ((-107 . -821) T) ((-400 . -237) T) ((-400 . -227) 78316) ((-689 . -703) T) ((-479 . -38) 78266) ((-211 . -38) 78216) ((-466 . -484) 78182) ((-1124 . -1110) T) ((-1067 . -101) T) ((-677 . -593) 78164) ((-677 . -594) 78079) ((-691 . -21) T) ((-691 . -25) T) ((-1101 . -101) T) ((-207 . -593) 78061) ((-133 . -593) 78043) ((-116 . -593) 78025) ((-155 . -25) T) ((-1247 . -1066) T) ((-843 . -617) 77973) ((-1245 . -1066) T) ((-934 . -101) T) ((-712 . -101) T) ((-692 . -101) T) ((-445 . -101) T) ((-792 . -444) 77924) ((-44 . -1066) T) ((-1054 . -823) T) ((-640 . -130) T) ((-1030 . -302) 77775) ((-646 . -694) 77759) ((-282 . -1025) T) ((-348 . -130) T) ((-345 . -130) T) ((-337 . -130) T) ((-257 . -130) T) ((-241 . -130) T) ((-411 . -101) T) ((-150 . -1066) T) ((-45 . -223) 77709) ((-929 . -823) 77688) ((-970 . -624) 77626) ((-234 . -1232) 77596) ((-995 . -300) T) ((-287 . -1024) 77517) ((-881 . -130) T) ((-40 . -891) T) ((-479 . -393) 77499) ((-347 . -300) T) ((-211 . -393) 77481) ((-1046 . -404) 77465) ((-287 . -111) 77381) ((-843 . -25) T) ((-843 . -21) T) ((-332 . -593) 77363) ((-1211 . -47) 77307) ((-219 . -145) T) ((-172 . -593) 77289) ((-1079 . -821) 77268) ((-750 . -593) 77250) ((-588 . -229) 77197) ((-467 . -229) 77147) ((-1247 . -694) 77117) ((-48 . -300) T) ((-1245 . -694) 77087) ((-935 . -1066) T) ((-791 . -1066) 76877) ((-305 . -101) T) ((-872 . -1179) T) ((-48 . -993) T) ((-1188 . -617) 76785) ((-665 . -101) 76763) ((-44 . -694) 76747) ((-535 . -101) T) ((-66 . -376) T) ((-66 . -388) T) ((-638 . -23) T) ((-646 . -738) T) ((-1176 . -1066) 76725) ((-344 . -1024) 76670) ((-651 . -1066) 76648) ((-1029 . -145) T) ((-923 . -145) 76627) ((-923 . -143) 76606) ((-775 . -101) T) ((-150 . -694) 76590) ((-473 . -145) 76569) ((-473 . -143) 76548) ((-344 . -111) 76477) ((-1046 . -1025) T) ((-315 . -823) 76456) ((-1217 . -944) 76425) ((-605 . -1066) T) ((-1210 . -944) 76387) ((-502 . -130) T) ((-498 . -130) T) ((-288 . -223) 76337) ((-352 . -1025) T) ((-346 . -1025) T) ((-338 . -1025) T) ((-287 . -1018) 76279) ((-1189 . -944) 76248) ((-372 . -823) T) ((-107 . -1025) T) ((-970 . -703) T) ((-841 . -891) T) ((-816 . -771) 76227) ((-816 . -768) 76206) ((-411 . -302) 76145) ((-460 . -101) T) ((-576 . -944) 76114) ((-312 . -1066) T) ((-400 . -771) 76093) ((-400 . -768) 76072) ((-491 . -481) 76054) ((-1211 . -1009) 76020) ((-1209 . -21) T) ((-1209 . -25) T) ((-1188 . -21) T) ((-1188 . -25) T) ((-791 . -694) 75962) ((-675 . -397) T) ((-1238 . -1179) T) ((-586 . -101) T) ((-1079 . -404) 75931) ((-974 . -361) NIL) ((-647 . -101) T) ((-178 . -101) T) ((-159 . -101) T) ((-154 . -101) T) ((-152 . -101) T) ((-102 . -34) T) ((-714 . -1179) T) ((-44 . -738) T) ((-574 . -101) T) ((-76 . -389) T) ((-76 . -388) T) ((-629 . -632) 75915) ((-139 . -1179) T) ((-842 . -145) T) ((-842 . -143) NIL) ((-1178 . -92) T) ((-344 . -1018) T) ((-69 . -376) T) ((-69 . -388) T) ((-1131 . -101) T) ((-646 . -505) 75848) ((-665 . -302) 75786) ((-934 . -38) 75683) ((-712 . -38) 75653) ((-535 . -302) 75457) ((-309 . -1179) T) ((-344 . -227) T) ((-344 . -237) T) ((-306 . -1179) T) ((-282 . -1066) T) ((-1146 . -593) 75439) ((-688 . -1183) T) ((-1122 . -627) 75423) ((-1173 . -541) 75402) ((-688 . -541) T) ((-309 . -855) 75386) ((-309 . -857) 75311) ((-306 . -855) 75272) ((-306 . -857) NIL) ((-775 . -302) 75237) ((-312 . -694) 75078) ((-317 . -316) 75055) ((-477 . -101) T) ((-466 . -25) T) ((-466 . -21) T) ((-411 . -38) 75029) ((-309 . -1009) 74692) ((-219 . -1164) T) ((-219 . -1167) T) ((-3 . -593) 74674) ((-306 . -1009) 74604) ((-2 . -1066) T) ((-2 . |RecordCategory|) T) ((-809 . -593) 74586) ((-1079 . -1025) 74516) ((-562 . -891) T) ((-549 . -796) T) ((-549 . -891) T) ((-486 . -891) T) ((-135 . -1009) 74500) ((-219 . -94) T) ((-74 . -433) T) ((-74 . -388) T) ((0 . -593) 74482) ((-167 . -145) 74461) ((-167 . -143) 74412) ((-219 . -35) T) ((-49 . -593) 74394) ((-469 . -1025) T) ((-479 . -225) 74376) ((-476 . -939) 74360) ((-474 . -821) 74339) ((-211 . -225) 74321) ((-80 . -433) T) ((-80 . -388) T) ((-1112 . -34) T) ((-791 . -170) 74300) ((-708 . -101) T) ((-997 . -593) 74267) ((-491 . -279) 74242) ((-309 . -370) 74211) ((-306 . -370) 74172) ((-306 . -331) 74133) ((-1051 . -593) 74115) ((-792 . -920) 74062) ((-638 . -130) T) ((-1198 . -143) 74041) ((-1198 . -145) 74020) ((-1140 . -101) T) ((-1139 . -101) T) ((-1133 . -101) T) ((-1125 . -1066) T) ((-1092 . -101) T) ((-216 . -34) T) ((-282 . -694) 74007) ((-1125 . -590) 73983) ((-574 . -302) NIL) ((-476 . -1066) 73961) ((-383 . -593) 73943) ((-501 . -823) T) ((-1116 . -223) 73893) ((-1217 . -1216) 73877) ((-1217 . -1203) 73854) ((-1210 . -1208) 73815) ((-1210 . -1203) 73785) ((-1210 . -1206) 73769) ((-1189 . -1187) 73730) ((-1189 . -1203) 73707) ((-599 . -593) 73689) ((-1189 . -1185) 73673) ((-675 . -891) T) ((-1140 . -277) 73639) ((-1139 . -277) 73605) ((-1133 . -277) 73571) ((-1046 . -1066) T) ((-1028 . -1066) T) ((-48 . -295) T) ((-309 . -871) 73537) ((-306 . -871) NIL) ((-1028 . -1035) 73516) ((-1086 . -857) 73498) ((-775 . -38) 73482) ((-257 . -617) 73430) ((-241 . -617) 73378) ((-677 . -1024) 73365) ((-576 . -1203) 73342) ((-1092 . -277) 73308) ((-312 . -170) 73239) ((-352 . -1066) T) ((-346 . -1066) T) ((-338 . -1066) T) ((-491 . -19) 73221) ((-1086 . -1009) 73203) ((-1068 . -149) 73187) ((-107 . -1066) T) ((-116 . -1024) 73174) ((-688 . -356) T) ((-491 . -584) 73149) ((-677 . -111) 73134) ((-429 . -101) T) ((-45 . -1115) 73084) ((-116 . -111) 73069) ((-613 . -697) T) ((-587 . -697) T) ((-791 . -505) 73002) ((-1006 . -1179) T) ((-914 . -149) 72986) ((-516 . -101) T) ((-511 . -101) 72936) ((-1138 . -444) 72867) ((-1132 . -1066) T) ((-1053 . -1183) 72846) ((-758 . -1183) 72825) ((-756 . -1183) 72804) ((-61 . -1179) T) ((-469 . -593) 72756) ((-469 . -594) 72678) ((-1124 . -1066) T) ((-1108 . -624) 72652) ((-1091 . -444) 72603) ((-1053 . -541) 72534) ((-474 . -404) 72503) ((-601 . -891) 72482) ((-446 . -1183) 72461) ((-965 . -1066) T) ((-758 . -541) 72372) ((-391 . -593) 72354) ((-756 . -541) 72285) ((-651 . -505) 72218) ((-708 . -302) 72205) ((-640 . -25) T) ((-640 . -21) T) ((-446 . -541) 72136) ((-117 . -891) T) ((-117 . -796) NIL) ((-348 . -25) T) ((-348 . -21) T) ((-345 . -25) T) ((-345 . -21) T) ((-337 . -25) T) ((-337 . -21) T) ((-257 . -25) T) ((-257 . -21) T) ((-82 . -377) T) ((-82 . -388) T) ((-241 . -25) T) ((-241 . -21) T) ((-1227 . -593) 72118) ((-1173 . -1078) T) ((-1173 . -23) T) ((-1133 . -302) 72003) ((-1092 . -302) 71990) ((-1046 . -694) 71858) ((-837 . -624) 71818) ((-914 . -951) 71802) ((-881 . -21) T) ((-282 . -170) T) ((-881 . -25) T) ((-304 . -92) T) ((-843 . -823) 71753) ((-688 . -1078) T) ((-688 . -23) T) ((-623 . -1066) 71731) ((-610 . -590) 71706) ((-610 . -1066) T) ((-563 . -1183) T) ((-509 . -1183) T) ((-563 . -541) T) ((-509 . -541) T) ((-352 . -694) 71658) ((-346 . -694) 71610) ((-338 . -694) 71562) ((-332 . -1024) 71546) ((-172 . -111) 71457) ((-172 . -1024) 71389) ((-107 . -694) 71339) ((-332 . -111) 71318) ((-267 . -1066) T) ((-266 . -1066) T) ((-265 . -1066) T) ((-264 . -1066) T) ((-677 . -1018) T) ((-263 . -1066) T) ((-262 . -1066) T) ((-261 . -1066) T) ((-206 . -1066) T) ((-205 . -1066) T) ((-203 . -1066) T) ((-167 . -1167) 71296) ((-167 . -1164) 71274) ((-202 . -1066) T) ((-201 . -1066) T) ((-116 . -1018) T) ((-200 . -1066) T) ((-197 . -1066) T) ((-677 . -227) T) ((-196 . -1066) T) ((-195 . -1066) T) ((-194 . -1066) T) ((-193 . -1066) T) ((-192 . -1066) T) ((-191 . -1066) T) ((-190 . -1066) T) ((-189 . -1066) T) ((-188 . -1066) T) ((-187 . -1066) T) ((-234 . -101) 71064) ((-167 . -35) 71042) ((-167 . -94) 71020) ((-630 . -1009) 70916) ((-474 . -1025) 70846) ((-1079 . -1066) 70636) ((-1108 . -34) T) ((-646 . -481) 70620) ((-72 . -1179) T) ((-104 . -593) 70602) ((-1249 . -593) 70584) ((-374 . -593) 70566) ((-708 . -38) 70415) ((-556 . -1167) T) ((-556 . -1164) T) ((-521 . -593) 70397) ((-511 . -302) 70335) ((-491 . -593) 70317) ((-491 . -594) 70299) ((-1178 . -593) 70265) ((-1133 . -1117) NIL) ((-998 . -1038) 70234) ((-998 . -1066) T) ((-975 . -101) T) ((-942 . -101) T) ((-885 . -101) T) ((-864 . -1009) 70211) ((-1108 . -703) T) ((-974 . -624) 70156) ((-468 . -1066) T) ((-455 . -1066) T) ((-567 . -23) T) ((-556 . -35) T) ((-556 . -94) T) ((-420 . -101) T) ((-1030 . -223) 70102) ((-128 . -101) T) ((-1140 . -38) 69999) ((-837 . -703) T) ((-670 . -891) T) ((-502 . -25) T) ((-498 . -21) T) ((-498 . -25) T) ((-1139 . -38) 69840) ((-332 . -1018) T) ((-1133 . -38) 69636) ((-1046 . -170) T) ((-172 . -1018) T) ((-1092 . -38) 69533) ((-689 . -47) 69510) ((-352 . -170) T) ((-346 . -170) T) ((-510 . -56) 69484) ((-488 . -56) 69434) ((-344 . -1244) 69411) ((-219 . -444) T) ((-312 . -283) 69362) ((-338 . -170) T) ((-172 . -237) T) ((-1188 . -823) 69261) ((-107 . -170) T) ((-843 . -963) 69245) ((-634 . -1078) T) ((-563 . -356) T) ((-563 . -322) 69232) ((-509 . -322) 69209) ((-509 . -356) T) ((-309 . -300) 69188) ((-306 . -300) T) ((-582 . -823) 69167) ((-1079 . -694) 69109) ((-511 . -275) 69093) ((-634 . -23) T) ((-411 . -225) 69077) ((-306 . -993) NIL) ((-329 . -23) T) ((-102 . -981) 69061) ((-45 . -36) 69040) ((-592 . -1066) T) ((-344 . -361) T) ((-515 . -101) T) ((-486 . -27) T) ((-234 . -302) 68978) ((-1053 . -1078) T) ((-1248 . -624) 68952) ((-758 . -1078) T) ((-756 . -1078) T) ((-446 . -1078) T) ((-1029 . -444) T) ((-923 . -444) 68903) ((-1081 . -1049) T) ((-110 . -1066) T) ((-1053 . -23) T) ((-793 . -1025) T) ((-758 . -23) T) ((-756 . -23) T) ((-473 . -444) 68854) ((-1125 . -505) 68637) ((-374 . -375) 68616) ((-1144 . -404) 68600) ((-453 . -23) T) ((-446 . -23) T) ((-95 . -1066) T) ((-476 . -505) 68533) ((-282 . -283) T) ((-1048 . -593) 68515) ((-400 . -880) 68494) ((-50 . -1078) T) ((-995 . -891) T) ((-974 . -703) T) ((-689 . -857) NIL) ((-563 . -1078) T) ((-509 . -1078) T) ((-816 . -624) 68467) ((-1173 . -130) T) ((-1133 . -393) 68419) ((-975 . -302) NIL) ((-791 . -481) 68403) ((-347 . -891) T) ((-1122 . -34) T) ((-400 . -624) 68355) ((-50 . -23) T) ((-688 . -130) T) ((-689 . -1009) 68235) ((-563 . -23) T) ((-107 . -505) NIL) ((-509 . -23) T) ((-167 . -402) 68206) ((-128 . -302) NIL) ((-1106 . -1066) T) ((-1240 . -1239) 68190) ((-677 . -771) T) ((-677 . -768) T) ((-1086 . -300) T) ((-372 . -145) T) ((-273 . -593) 68172) ((-1188 . -963) 68142) ((-48 . -891) T) ((-651 . -481) 68126) ((-244 . -1232) 68096) ((-243 . -1232) 68066) ((-1142 . -823) T) ((-1079 . -170) 68045) ((-1086 . -993) T) ((-1015 . -34) T) ((-810 . -145) 68024) ((-810 . -143) 68003) ((-714 . -106) 67987) ((-592 . -131) T) ((-474 . -1066) 67777) ((-1144 . -1025) T) ((-842 . -444) T) ((-84 . -1179) T) ((-234 . -38) 67747) ((-139 . -106) 67729) ((-689 . -370) 67713) ((-1086 . -534) T) ((-383 . -1024) 67697) ((-1248 . -703) T) ((-1138 . -920) 67666) ((-129 . -593) 67633) ((-52 . -593) 67615) ((-1091 . -920) 67582) ((-629 . -404) 67566) ((-1237 . -1025) T) ((-599 . -1024) 67550) ((-638 . -25) T) ((-638 . -21) T) ((-1124 . -505) NIL) ((-1217 . -101) T) ((-1210 . -101) T) ((-383 . -111) 67529) ((-216 . -247) 67513) ((-1189 . -101) T) ((-1022 . -1066) T) ((-975 . -1117) T) ((-1022 . -1021) 67453) ((-794 . -1066) T) ((-336 . -1183) T) ((-613 . -624) 67437) ((-599 . -111) 67416) ((-587 . -624) 67400) ((-577 . -101) T) ((-567 . -130) T) ((-576 . -101) T) ((-407 . -1066) T) ((-378 . -1066) T) ((-304 . -593) 67366) ((-221 . -1066) 67344) ((-623 . -505) 67277) ((-610 . -505) 67121) ((-809 . -1018) 67100) ((-621 . -149) 67084) ((-336 . -541) T) ((-689 . -871) 67027) ((-535 . -223) 66977) ((-1217 . -277) 66943) ((-1046 . -283) 66894) ((-479 . -821) T) ((-217 . -1078) T) ((-1210 . -277) 66860) ((-1189 . -277) 66826) ((-975 . -38) 66776) ((-211 . -821) T) ((-1173 . -484) 66742) ((-885 . -38) 66694) ((-816 . -770) 66673) ((-816 . -767) 66652) ((-816 . -703) 66631) ((-352 . -283) T) ((-346 . -283) T) ((-338 . -283) T) ((-167 . -444) 66562) ((-420 . -38) 66546) ((-107 . -283) T) ((-217 . -23) T) ((-400 . -770) 66525) ((-400 . -767) 66504) ((-400 . -703) T) ((-491 . -281) 66479) ((-469 . -1024) 66444) ((-634 . -130) T) ((-1079 . -505) 66377) ((-329 . -130) T) ((-167 . -395) 66356) ((-474 . -694) 66298) ((-791 . -279) 66275) ((-469 . -111) 66231) ((-629 . -1025) T) ((-1198 . -444) 66162) ((-1236 . -1049) T) ((-1235 . -1049) T) ((-1053 . -130) T) ((-257 . -823) 66141) ((-241 . -823) 66120) ((-758 . -130) T) ((-756 . -130) T) ((-556 . -444) T) ((-1022 . -694) 66062) ((-599 . -1018) T) ((-998 . -505) 65995) ((-573 . -1066) T) ((-453 . -130) T) ((-446 . -130) T) ((-45 . -1066) T) ((-378 . -694) 65965) ((-793 . -1066) T) ((-468 . -505) 65898) ((-455 . -505) 65831) ((-445 . -360) 65801) ((-45 . -590) 65780) ((-309 . -295) T) ((-646 . -593) 65742) ((-58 . -823) 65721) ((-1189 . -302) 65606) ((-975 . -393) 65588) ((-791 . -584) 65565) ((-507 . -823) 65544) ((-487 . -823) 65523) ((-40 . -1183) T) ((-970 . -1009) 65419) ((-50 . -130) T) ((-563 . -130) T) ((-509 . -130) T) ((-287 . -624) 65279) ((-336 . -322) 65256) ((-336 . -356) T) ((-315 . -316) 65233) ((-312 . -279) 65218) ((-40 . -541) T) ((-372 . -1164) T) ((-372 . -1167) T) ((-1006 . -1155) 65193) ((-1152 . -229) 65143) ((-1133 . -225) 65095) ((-323 . -1066) T) ((-372 . -94) T) ((-372 . -35) T) ((-1006 . -106) 65041) ((-469 . -1018) T) ((-471 . -229) 64991) ((-1125 . -481) 64925) ((-1249 . -1024) 64909) ((-374 . -1024) 64893) ((-469 . -237) T) ((-792 . -101) T) ((-691 . -145) 64872) ((-691 . -143) 64851) ((-476 . -481) 64835) ((-477 . -328) 64804) ((-1249 . -111) 64783) ((-503 . -1066) T) ((-474 . -170) 64762) ((-970 . -370) 64746) ((-406 . -101) T) ((-374 . -111) 64725) ((-970 . -331) 64709) ((-272 . -954) 64693) ((-271 . -954) 64677) ((-1247 . -593) 64659) ((-1245 . -593) 64641) ((-110 . -505) NIL) ((-1138 . -1201) 64625) ((-827 . -825) 64609) ((-1144 . -1066) T) ((-102 . -1179) T) ((-923 . -920) 64570) ((-793 . -694) 64512) ((-1189 . -1117) NIL) ((-473 . -920) 64457) ((-1029 . -141) T) ((-59 . -101) 64435) ((-44 . -593) 64417) ((-77 . -593) 64399) ((-344 . -624) 64344) ((-1237 . -1066) T) ((-502 . -823) T) ((-336 . -1078) T) ((-288 . -1066) T) ((-970 . -871) 64303) ((-288 . -590) 64282) ((-1217 . -38) 64179) ((-1210 . -38) 64020) ((-479 . -1025) T) ((-1189 . -38) 63816) ((-211 . -1025) T) ((-336 . -23) T) ((-150 . -593) 63798) ((-809 . -771) 63777) ((-809 . -768) 63756) ((-577 . -38) 63729) ((-576 . -38) 63626) ((-841 . -541) T) ((-217 . -130) T) ((-312 . -973) 63592) ((-78 . -593) 63574) ((-689 . -300) 63553) ((-287 . -703) 63455) ((-800 . -101) T) ((-836 . -817) T) ((-287 . -465) 63434) ((-1240 . -101) T) ((-40 . -356) T) ((-843 . -145) 63413) ((-843 . -143) 63392) ((-1124 . -481) 63374) ((-1249 . -1018) T) ((-474 . -505) 63307) ((-1112 . -1179) T) ((-935 . -593) 63289) ((-623 . -481) 63273) ((-610 . -481) 63204) ((-791 . -593) 62935) ((-48 . -27) T) ((-1144 . -694) 62832) ((-629 . -1066) T) ((-429 . -357) 62806) ((-1068 . -101) T) ((-792 . -302) 62793) ((-941 . -1066) T) ((-836 . -1066) T) ((-1245 . -375) 62765) ((-1022 . -505) 62698) ((-1125 . -279) 62674) ((-234 . -225) 62643) ((-1237 . -694) 62613) ((-1132 . -92) T) ((-965 . -92) T) ((-793 . -170) 62592) ((-221 . -505) 62525) ((-599 . -771) 62504) ((-599 . -768) 62483) ((-1176 . -593) 62395) ((-216 . -1179) T) ((-651 . -593) 62327) ((-1122 . -981) 62311) ((-344 . -703) T) ((-914 . -101) 62261) ((-1189 . -393) 62213) ((-1079 . -481) 62197) ((-59 . -302) 62135) ((-324 . -101) T) ((-1173 . -21) T) ((-1173 . -25) T) ((-40 . -1078) T) ((-688 . -21) T) ((-605 . -593) 62117) ((-506 . -316) 62096) ((-688 . -25) T) ((-107 . -279) NIL) ((-892 . -1078) T) ((-40 . -23) T) ((-747 . -1078) T) ((-549 . -1183) T) ((-486 . -1183) T) ((-312 . -593) 62078) ((-975 . -225) 62060) ((-167 . -164) 62044) ((-562 . -541) T) ((-549 . -541) T) ((-486 . -541) T) ((-747 . -23) T) ((-1209 . -145) 62023) ((-1125 . -584) 61999) ((-1209 . -143) 61978) ((-998 . -481) 61962) ((-1188 . -143) 61887) ((-1188 . -145) 61812) ((-1240 . -1246) 61791) ((-468 . -481) 61775) ((-455 . -481) 61759) ((-514 . -34) T) ((-629 . -694) 61729) ((-112 . -938) T) ((-638 . -823) 61708) ((-1144 . -170) 61659) ((-358 . -101) T) ((-234 . -232) 61638) ((-244 . -101) T) ((-243 . -101) T) ((-1198 . -920) 61607) ((-109 . -101) T) ((-239 . -823) 61586) ((-792 . -38) 61435) ((-45 . -505) 61227) ((-1124 . -279) 61202) ((-208 . -1066) T) ((-1116 . -1066) T) ((-1116 . -590) 61181) ((-567 . -25) T) ((-567 . -21) T) ((-1068 . -302) 61119) ((-934 . -404) 61103) ((-675 . -1183) T) ((-610 . -279) 61078) ((-1053 . -617) 61026) ((-758 . -617) 60974) ((-756 . -617) 60922) ((-336 . -130) T) ((-282 . -593) 60904) ((-675 . -541) T) ((-876 . -1066) T) ((-841 . -1078) T) ((-446 . -617) 60852) ((-876 . -874) 60836) ((-372 . -444) T) ((-479 . -1066) T) ((-677 . -624) 60823) ((-914 . -302) 60761) ((-211 . -1066) T) ((-309 . -891) 60740) ((-306 . -891) T) ((-306 . -796) NIL) ((-383 . -697) T) ((-841 . -23) T) ((-116 . -624) 60727) ((-466 . -143) 60706) ((-411 . -404) 60690) ((-466 . -145) 60669) ((-110 . -481) 60651) ((-2 . -593) 60633) ((-1124 . -19) 60615) ((-1124 . -584) 60590) ((-634 . -21) T) ((-634 . -25) T) ((-574 . -1110) T) ((-1079 . -279) 60567) ((-329 . -25) T) ((-329 . -21) T) ((-486 . -356) T) ((-1240 . -38) 60537) ((-1108 . -1179) T) ((-610 . -584) 60512) ((-1053 . -25) T) ((-1053 . -21) T) ((-521 . -768) T) ((-521 . -771) T) ((-117 . -1183) T) ((-934 . -1025) T) ((-601 . -541) T) ((-758 . -25) T) ((-758 . -21) T) ((-756 . -21) T) ((-756 . -25) T) ((-712 . -1025) T) ((-692 . -1025) T) ((-646 . -1024) 60496) ((-508 . -1049) T) ((-453 . -25) T) ((-117 . -541) T) ((-453 . -21) T) ((-446 . -25) T) ((-446 . -21) T) ((-1108 . -1009) 60392) ((-793 . -283) 60371) ((-799 . -1066) T) ((-937 . -938) T) ((-646 . -111) 60350) ((-288 . -505) 60142) ((-1247 . -1024) 60126) ((-1245 . -1024) 60110) ((-1209 . -1164) 60076) ((-244 . -302) 60014) ((-243 . -302) 59952) ((-1192 . -101) 59930) ((-1125 . -594) NIL) ((-1125 . -593) 59912) ((-1209 . -1167) 59878) ((-1189 . -225) 59830) ((-1188 . -1164) 59796) ((-95 . -92) T) ((-1188 . -1167) 59762) ((-1108 . -370) 59746) ((-1086 . -796) T) ((-1086 . -891) T) ((-1079 . -584) 59723) ((-1046 . -594) 59707) ((-476 . -593) 59639) ((-791 . -281) 59616) ((-588 . -149) 59563) ((-411 . -1025) T) ((-479 . -694) 59513) ((-474 . -481) 59497) ((-320 . -823) 59476) ((-332 . -624) 59450) ((-50 . -21) T) ((-50 . -25) T) ((-211 . -694) 59400) ((-167 . -701) 59371) ((-172 . -624) 59303) ((-563 . -21) T) ((-563 . -25) T) ((-509 . -25) T) ((-509 . -21) T) ((-467 . -149) 59253) ((-1046 . -593) 59235) ((-1028 . -593) 59217) ((-964 . -101) T) ((-834 . -101) T) ((-775 . -404) 59181) ((-40 . -130) T) ((-675 . -356) T) ((-206 . -866) T) ((-677 . -770) T) ((-677 . -767) T) ((-562 . -1078) T) ((-549 . -1078) T) ((-486 . -1078) T) ((-677 . -703) T) ((-352 . -593) 59163) ((-346 . -593) 59145) ((-338 . -593) 59127) ((-65 . -389) T) ((-65 . -388) T) ((-107 . -594) 59057) ((-107 . -593) 59039) ((-205 . -866) T) ((-929 . -149) 59023) ((-1209 . -94) 58989) ((-747 . -130) T) ((-133 . -703) T) ((-116 . -703) T) ((-1209 . -35) 58955) ((-1022 . -481) 58939) ((-562 . -23) T) ((-549 . -23) T) ((-486 . -23) T) ((-1188 . -94) 58905) ((-1188 . -35) 58871) ((-1138 . -101) T) ((-1091 . -101) T) ((-827 . -101) T) ((-221 . -481) 58855) ((-1247 . -111) 58834) ((-1245 . -111) 58813) ((-44 . -1024) 58797) ((-1198 . -1201) 58781) ((-828 . -825) 58765) ((-1144 . -283) 58744) ((-110 . -279) 58719) ((-1108 . -871) 58678) ((-44 . -111) 58657) ((-1147 . -1220) T) ((-1132 . -593) 58623) ((-646 . -1018) T) ((-1124 . -594) NIL) ((-1124 . -593) 58605) ((-1030 . -590) 58580) ((-1030 . -1066) T) ((-965 . -593) 58546) ((-73 . -433) T) ((-73 . -388) T) ((-646 . -227) 58525) ((-150 . -1024) 58509) ((-556 . -539) 58493) ((-348 . -145) 58472) ((-348 . -143) 58423) ((-345 . -145) 58402) ((-679 . -1066) T) ((-345 . -143) 58353) ((-337 . -145) 58332) ((-337 . -143) 58283) ((-257 . -143) 58262) ((-257 . -145) 58241) ((-244 . -38) 58211) ((-241 . -145) 58190) ((-117 . -356) T) ((-241 . -143) 58169) ((-243 . -38) 58139) ((-150 . -111) 58118) ((-974 . -1009) 58006) ((-1133 . -821) NIL) ((-670 . -1183) T) ((-775 . -1025) T) ((-675 . -1078) T) ((-1247 . -1018) T) ((-1245 . -1018) T) ((-1122 . -1179) T) ((-974 . -370) 57983) ((-881 . -143) T) ((-881 . -145) 57965) ((-841 . -130) T) ((-791 . -1024) 57862) ((-670 . -541) T) ((-675 . -23) T) ((-623 . -593) 57794) ((-623 . -594) 57755) ((-610 . -594) NIL) ((-610 . -593) 57737) ((-479 . -170) T) ((-217 . -21) T) ((-211 . -170) T) ((-217 . -25) T) ((-466 . -1167) 57703) ((-466 . -1164) 57669) ((-267 . -593) 57651) ((-266 . -593) 57633) ((-265 . -593) 57615) ((-264 . -593) 57597) ((-263 . -593) 57579) ((-491 . -627) 57561) ((-262 . -593) 57543) ((-332 . -703) T) ((-261 . -593) 57525) ((-110 . -19) 57507) ((-172 . -703) T) ((-491 . -366) 57489) ((-206 . -593) 57471) ((-511 . -1115) 57455) ((-491 . -123) T) ((-110 . -584) 57430) ((-205 . -593) 57412) ((-466 . -35) 57378) ((-466 . -94) 57344) ((-203 . -593) 57326) ((-202 . -593) 57308) ((-201 . -593) 57290) ((-200 . -593) 57272) ((-197 . -593) 57254) ((-196 . -593) 57236) ((-195 . -593) 57218) ((-194 . -593) 57200) ((-193 . -593) 57182) ((-192 . -593) 57164) ((-191 . -593) 57146) ((-525 . -1069) 57098) ((-190 . -593) 57080) ((-189 . -593) 57062) ((-45 . -481) 56999) ((-188 . -593) 56981) ((-187 . -593) 56963) ((-1081 . -101) T) ((-791 . -111) 56853) ((-621 . -101) 56803) ((-474 . -279) 56780) ((-1079 . -593) 56511) ((-1067 . -1066) T) ((-1015 . -1179) T) ((-1248 . -1009) 56495) ((-601 . -1078) T) ((-1138 . -302) 56482) ((-1101 . -1066) T) ((-1091 . -302) 56469) ((-1062 . -1049) T) ((-1056 . -1049) T) ((-1040 . -1049) T) ((-1033 . -1049) T) ((-1007 . -1049) T) ((-990 . -1049) T) ((-117 . -1078) T) ((-795 . -101) T) ((-604 . -1049) T) ((-601 . -23) T) ((-1116 . -505) 56261) ((-475 . -1049) T) ((-974 . -871) 56213) ((-379 . -101) T) ((-317 . -101) T) ((-212 . -1049) T) ((-934 . -1066) T) ((-150 . -1018) T) ((-117 . -23) T) ((-708 . -404) 56197) ((-712 . -1066) T) ((-692 . -1066) T) ((-679 . -131) T) ((-445 . -1066) T) ((-400 . -1179) T) ((-309 . -423) 56181) ((-573 . -92) T) ((-998 . -594) 56142) ((-995 . -1183) T) ((-219 . -101) T) ((-998 . -593) 56104) ((-792 . -225) 56088) ((-995 . -541) T) ((-809 . -624) 56061) ((-347 . -1183) T) ((-468 . -593) 56023) ((-468 . -594) 55984) ((-455 . -594) 55945) ((-455 . -593) 55907) ((-400 . -855) 55891) ((-312 . -1024) 55726) ((-400 . -857) 55651) ((-816 . -1009) 55547) ((-479 . -505) NIL) ((-474 . -584) 55524) ((-347 . -541) T) ((-211 . -505) NIL) ((-843 . -444) T) ((-411 . -1066) T) ((-400 . -1009) 55388) ((-312 . -111) 55209) ((-670 . -356) T) ((-219 . -277) T) ((-48 . -1183) T) ((-791 . -1018) 55139) ((-562 . -130) T) ((-549 . -130) T) ((-486 . -130) T) ((-48 . -541) T) ((-1125 . -281) 55115) ((-1138 . -1117) 55093) ((-309 . -27) 55072) ((-1029 . -101) T) ((-791 . -227) 55024) ((-234 . -821) 55003) ((-923 . -101) T) ((-690 . -101) T) ((-288 . -481) 54940) ((-473 . -101) T) ((-708 . -1025) T) ((-592 . -593) 54922) ((-592 . -594) 54783) ((-400 . -370) 54767) ((-400 . -331) 54751) ((-1138 . -38) 54580) ((-1091 . -38) 54429) ((-827 . -38) 54399) ((-383 . -624) 54383) ((-621 . -302) 54321) ((-934 . -694) 54218) ((-712 . -694) 54188) ((-216 . -106) 54172) ((-45 . -279) 54097) ((-599 . -624) 54071) ((-305 . -1066) T) ((-282 . -1024) 54058) ((-110 . -593) 54040) ((-110 . -594) 54022) ((-445 . -694) 53992) ((-792 . -246) 53931) ((-665 . -1066) 53909) ((-535 . -1066) T) ((-1140 . -1025) T) ((-1139 . -1025) T) ((-1133 . -1025) T) ((-282 . -111) 53894) ((-1092 . -1025) T) ((-535 . -590) 53873) ((-95 . -593) 53839) ((-975 . -821) T) ((-221 . -663) 53797) ((-670 . -1078) T) ((-1173 . -717) 53773) ((-312 . -1018) T) ((-336 . -25) T) ((-336 . -21) T) ((-400 . -871) 53732) ((-67 . -1179) T) ((-809 . -770) 53711) ((-411 . -694) 53685) ((-775 . -1066) T) ((-809 . -767) 53664) ((-675 . -130) T) ((-689 . -891) 53643) ((-670 . -23) T) ((-479 . -283) T) ((-809 . -703) 53622) ((-312 . -227) 53574) ((-312 . -237) 53553) ((-211 . -283) T) ((-995 . -356) T) ((-1209 . -444) 53532) ((-1188 . -444) 53511) ((-347 . -322) 53488) ((-347 . -356) T) ((-1106 . -593) 53470) ((-45 . -1213) 53420) ((-842 . -101) T) ((-621 . -275) 53404) ((-675 . -1027) T) ((-1236 . -101) T) ((-469 . -624) 53369) ((-460 . -1066) T) ((-45 . -584) 53294) ((-1235 . -101) T) ((-1124 . -281) 53269) ((-40 . -617) 53208) ((-48 . -356) T) ((-1072 . -593) 53190) ((-1053 . -823) 53169) ((-610 . -281) 53144) ((-758 . -823) 53123) ((-756 . -823) 53102) ((-474 . -593) 52833) ((-234 . -404) 52802) ((-923 . -302) 52789) ((-446 . -823) 52768) ((-64 . -1179) T) ((-1030 . -505) 52612) ((-601 . -130) T) ((-473 . -302) 52599) ((-586 . -1066) T) ((-117 . -130) T) ((-647 . -1066) T) ((-282 . -1018) T) ((-178 . -1066) T) ((-159 . -1066) T) ((-154 . -1066) T) ((-152 . -1066) T) ((-445 . -738) T) ((-31 . -1049) T) ((-934 . -170) 52550) ((-941 . -92) T) ((-1046 . -1024) 52460) ((-599 . -770) 52439) ((-574 . -1066) T) ((-599 . -767) 52418) ((-599 . -703) T) ((-288 . -279) 52397) ((-287 . -1179) T) ((-1022 . -593) 52359) ((-1022 . -594) 52320) ((-995 . -1078) T) ((-167 . -101) T) ((-268 . -823) T) ((-1131 . -1066) T) ((-794 . -593) 52302) ((-1079 . -281) 52279) ((-1068 . -223) 52263) ((-974 . -300) T) ((-775 . -694) 52247) ((-352 . -1024) 52199) ((-347 . -1078) T) ((-346 . -1024) 52151) ((-407 . -593) 52133) ((-378 . -593) 52115) ((-338 . -1024) 52067) ((-221 . -593) 51999) ((-1046 . -111) 51895) ((-995 . -23) T) ((-107 . -1024) 51845) ((-869 . -101) T) ((-814 . -101) T) ((-784 . -101) T) ((-745 . -101) T) ((-653 . -101) T) ((-466 . -444) 51824) ((-411 . -170) T) ((-352 . -111) 51762) ((-346 . -111) 51700) ((-338 . -111) 51638) ((-244 . -225) 51607) ((-243 . -225) 51576) ((-347 . -23) T) ((-70 . -1179) T) ((-219 . -38) 51541) ((-107 . -111) 51475) ((-40 . -25) T) ((-40 . -21) T) ((-646 . -697) T) ((-167 . -277) 51453) ((-48 . -1078) T) ((-892 . -25) T) ((-747 . -25) T) ((-1116 . -481) 51390) ((-477 . -1066) T) ((-1249 . -624) 51364) ((-1198 . -101) T) ((-828 . -101) T) ((-234 . -1025) 51294) ((-1029 . -1117) T) ((-935 . -768) 51247) ((-374 . -624) 51231) ((-48 . -23) T) ((-935 . -771) 51184) ((-791 . -771) 51135) ((-791 . -768) 51086) ((-288 . -584) 51065) ((-469 . -703) T) ((-556 . -101) T) ((-842 . -302) 51022) ((-629 . -279) 51001) ((-112 . -637) T) ((-75 . -1179) T) ((-1029 . -38) 50988) ((-640 . -367) 50967) ((-923 . -38) 50816) ((-708 . -1066) T) ((-473 . -38) 50665) ((-85 . -1179) T) ((-556 . -277) T) ((-1189 . -821) NIL) ((-573 . -593) 50631) ((-1140 . -1066) T) ((-1139 . -1066) T) ((-1133 . -1066) T) ((-344 . -1009) 50608) ((-1046 . -1018) T) ((-975 . -1025) T) ((-45 . -593) 50590) ((-45 . -594) NIL) ((-885 . -1025) T) ((-793 . -593) 50572) ((-1113 . -101) 50550) ((-1046 . -237) 50501) ((-420 . -1025) T) ((-352 . -1018) T) ((-346 . -1018) T) ((-358 . -357) 50478) ((-338 . -1018) T) ((-244 . -232) 50457) ((-243 . -232) 50436) ((-109 . -357) 50410) ((-1046 . -227) 50335) ((-1092 . -1066) T) ((-287 . -871) 50294) ((-107 . -1018) T) ((-670 . -130) T) ((-411 . -505) 50136) ((-352 . -227) 50115) ((-352 . -237) T) ((-44 . -697) T) ((-346 . -227) 50094) ((-346 . -237) T) ((-338 . -227) 50073) ((-338 . -237) T) ((-167 . -302) 50038) ((-107 . -237) T) ((-107 . -227) T) ((-312 . -768) T) ((-841 . -21) T) ((-841 . -25) T) ((-400 . -300) T) ((-491 . -34) T) ((-110 . -281) 50013) ((-1079 . -1024) 49910) ((-842 . -1117) NIL) ((-323 . -593) 49892) ((-400 . -993) 49871) ((-1079 . -111) 49761) ((-667 . -1220) T) ((-429 . -1066) T) ((-1249 . -703) T) ((-62 . -593) 49743) ((-842 . -38) 49688) ((-514 . -1179) T) ((-582 . -149) 49672) ((-503 . -593) 49654) ((-1198 . -302) 49641) ((-708 . -694) 49490) ((-521 . -769) T) ((-521 . -770) T) ((-549 . -617) 49472) ((-486 . -617) 49432) ((-348 . -444) T) ((-345 . -444) T) ((-337 . -444) T) ((-257 . -444) 49383) ((-516 . -1066) T) ((-511 . -1066) 49333) ((-241 . -444) 49284) ((-1116 . -279) 49263) ((-1144 . -593) 49245) ((-665 . -505) 49178) ((-934 . -283) 49157) ((-535 . -505) 48949) ((-1138 . -225) 48933) ((-167 . -1117) 48912) ((-1237 . -593) 48894) ((-1140 . -694) 48791) ((-1139 . -694) 48632) ((-863 . -101) T) ((-1133 . -694) 48428) ((-1092 . -694) 48325) ((-1122 . -650) 48309) ((-348 . -395) 48260) ((-345 . -395) 48211) ((-337 . -395) 48162) ((-995 . -130) T) ((-775 . -505) 48074) ((-288 . -594) NIL) ((-288 . -593) 48056) ((-881 . -444) T) ((-935 . -361) 48009) ((-791 . -361) 47988) ((-501 . -500) 47967) ((-499 . -500) 47946) ((-479 . -279) NIL) ((-474 . -281) 47923) ((-411 . -283) T) ((-347 . -130) T) ((-211 . -279) NIL) ((-670 . -484) NIL) ((-98 . -1078) T) ((-167 . -38) 47751) ((-1209 . -944) 47713) ((-1113 . -302) 47651) ((-1188 . -944) 47620) ((-881 . -395) T) ((-1079 . -1018) 47550) ((-1211 . -541) T) ((-1116 . -584) 47529) ((-112 . -823) T) ((-1030 . -481) 47460) ((-562 . -21) T) ((-562 . -25) T) ((-549 . -21) T) ((-549 . -25) T) ((-486 . -25) T) ((-486 . -21) T) ((-1198 . -1117) 47438) ((-1079 . -227) 47390) ((-48 . -130) T) ((-1160 . -101) T) ((-234 . -1066) 47180) ((-842 . -393) 47157) ((-1054 . -101) T) ((-1042 . -101) T) ((-588 . -101) T) ((-467 . -101) T) ((-1198 . -38) 46986) ((-828 . -38) 46956) ((-708 . -170) 46867) ((-629 . -593) 46849) ((-622 . -1049) T) ((-556 . -38) 46836) ((-941 . -593) 46802) ((-929 . -101) 46752) ((-836 . -593) 46734) ((-836 . -594) 46656) ((-574 . -505) NIL) ((-1217 . -1025) T) ((-1210 . -1025) T) ((-1189 . -1025) T) ((-577 . -1025) T) ((-576 . -1025) T) ((-1253 . -1078) T) ((-1140 . -170) 46607) ((-1139 . -170) 46538) ((-1133 . -170) 46469) ((-1092 . -170) 46420) ((-975 . -1066) T) ((-942 . -1066) T) ((-885 . -1066) T) ((-1173 . -145) 46399) ((-775 . -773) 46383) ((-675 . -25) T) ((-675 . -21) T) ((-117 . -617) 46360) ((-677 . -857) 46342) ((-420 . -1066) T) ((-309 . -1183) 46321) ((-306 . -1183) T) ((-167 . -393) 46305) ((-1173 . -143) 46284) ((-466 . -944) 46246) ((-128 . -1066) T) ((-71 . -593) 46228) ((-107 . -771) T) ((-107 . -768) T) ((-309 . -541) 46207) ((-677 . -1009) 46189) ((-306 . -541) T) ((-1253 . -23) T) ((-133 . -1009) 46171) ((-474 . -1024) 46068) ((-45 . -281) 45993) ((-234 . -694) 45935) ((-508 . -101) T) ((-474 . -111) 45825) ((-1058 . -101) 45803) ((-1005 . -101) T) ((-621 . -804) 45782) ((-708 . -505) 45725) ((-1022 . -1024) 45709) ((-1101 . -92) T) ((-1030 . -279) 45684) ((-601 . -21) T) ((-601 . -25) T) ((-515 . -1066) T) ((-354 . -101) T) ((-315 . -101) T) ((-646 . -624) 45658) ((-378 . -1024) 45642) ((-1022 . -111) 45621) ((-792 . -404) 45605) ((-117 . -25) T) ((-88 . -593) 45587) ((-117 . -21) T) ((-588 . -302) 45382) ((-467 . -302) 45186) ((-1116 . -594) NIL) ((-378 . -111) 45165) ((-372 . -101) T) ((-208 . -593) 45147) ((-1116 . -593) 45129) ((-975 . -694) 45079) ((-1133 . -505) 44848) ((-885 . -694) 44800) ((-1092 . -505) 44770) ((-344 . -300) T) ((-1152 . -149) 44720) ((-929 . -302) 44658) ((-810 . -101) T) ((-420 . -694) 44642) ((-219 . -804) T) ((-803 . -101) T) ((-801 . -101) T) ((-471 . -149) 44592) ((-1209 . -1208) 44571) ((-1086 . -1183) T) ((-332 . -1009) 44538) ((-1209 . -1203) 44508) ((-1209 . -1206) 44492) ((-1188 . -1187) 44471) ((-79 . -593) 44453) ((-876 . -593) 44435) ((-1188 . -1203) 44412) ((-1086 . -541) T) ((-892 . -823) T) ((-747 . -823) T) ((-479 . -594) 44342) ((-479 . -593) 44324) ((-372 . -277) T) ((-648 . -823) T) ((-1188 . -1185) 44308) ((-1211 . -1078) T) ((-211 . -594) 44238) ((-211 . -593) 44220) ((-1030 . -584) 44195) ((-58 . -149) 44179) ((-507 . -149) 44163) ((-487 . -149) 44147) ((-352 . -1244) 44131) ((-346 . -1244) 44115) ((-338 . -1244) 44099) ((-309 . -356) 44078) ((-306 . -356) T) ((-474 . -1018) 44008) ((-670 . -617) 43990) ((-1247 . -624) 43964) ((-1245 . -624) 43938) ((-1211 . -23) T) ((-665 . -481) 43922) ((-63 . -593) 43904) ((-1079 . -771) 43855) ((-1079 . -768) 43806) ((-535 . -481) 43743) ((-646 . -34) T) ((-474 . -227) 43695) ((-288 . -281) 43674) ((-234 . -170) 43653) ((-792 . -1025) T) ((-44 . -624) 43611) ((-1046 . -361) 43562) ((-708 . -283) 43493) ((-511 . -505) 43426) ((-793 . -1024) 43377) ((-1053 . -143) 43356) ((-352 . -361) 43335) ((-346 . -361) 43314) ((-338 . -361) 43293) ((-1053 . -145) 43272) ((-842 . -225) 43249) ((-793 . -111) 43191) ((-758 . -143) 43170) ((-758 . -145) 43149) ((-257 . -920) 43116) ((-244 . -821) 43095) ((-241 . -920) 43040) ((-243 . -821) 43019) ((-756 . -143) 42998) ((-756 . -145) 42977) ((-150 . -624) 42951) ((-446 . -145) 42930) ((-446 . -143) 42909) ((-646 . -703) T) ((-799 . -593) 42891) ((-1217 . -1066) T) ((-1210 . -1066) T) ((-1189 . -1066) T) ((-1173 . -1167) 42857) ((-1173 . -1164) 42823) ((-1140 . -283) 42802) ((-1139 . -283) 42753) ((-1133 . -283) 42704) ((-1092 . -283) 42683) ((-332 . -871) 42664) ((-975 . -170) T) ((-885 . -170) T) ((-577 . -1066) T) ((-576 . -1066) T) ((-670 . -21) T) ((-670 . -25) T) ((-466 . -1206) 42648) ((-466 . -1203) 42618) ((-411 . -279) 42546) ((-309 . -1078) 42395) ((-306 . -1078) T) ((-1173 . -35) 42361) ((-1173 . -94) 42327) ((-83 . -593) 42309) ((-90 . -101) 42287) ((-1253 . -130) T) ((-563 . -143) T) ((-563 . -145) 42269) ((-509 . -145) 42251) ((-509 . -143) T) ((-309 . -23) 42103) ((-40 . -335) 42077) ((-306 . -23) T) ((-1124 . -627) 42059) ((-1240 . -1025) T) ((-1124 . -366) 42041) ((-791 . -624) 41889) ((-1062 . -101) T) ((-1056 . -101) T) ((-1040 . -101) T) ((-167 . -225) 41873) ((-1033 . -101) T) ((-1007 . -101) T) ((-990 . -101) T) ((-574 . -481) 41855) ((-604 . -101) T) ((-234 . -505) 41788) ((-475 . -101) T) ((-1247 . -703) T) ((-1245 . -703) T) ((-212 . -101) T) ((-1144 . -1024) 41671) ((-1144 . -111) 41540) ((-793 . -1018) T) ((-657 . -1049) T) ((-652 . -1049) T) ((-506 . -101) T) ((-501 . -101) T) ((-48 . -617) 41500) ((-499 . -101) T) ((-470 . -1049) T) ((-1237 . -1024) 41470) ((-137 . -1049) T) ((-136 . -1049) T) ((-132 . -1049) T) ((-1005 . -38) 41454) ((-793 . -227) T) ((-793 . -237) 41433) ((-1237 . -111) 41398) ((-1217 . -694) 41295) ((-535 . -279) 41274) ((-1210 . -694) 41115) ((-1198 . -225) 41099) ((-586 . -92) T) ((-1030 . -594) NIL) ((-1030 . -593) 41081) ((-647 . -92) T) ((-178 . -92) T) ((-159 . -92) T) ((-154 . -92) T) ((-152 . -92) T) ((-1189 . -694) 40877) ((-974 . -891) T) ((-679 . -593) 40846) ((-150 . -703) T) ((-1079 . -361) 40825) ((-975 . -505) NIL) ((-244 . -404) 40794) ((-243 . -404) 40763) ((-995 . -25) T) ((-995 . -21) T) ((-577 . -694) 40736) ((-576 . -694) 40633) ((-775 . -279) 40591) ((-126 . -101) 40569) ((-809 . -1009) 40465) ((-167 . -804) 40444) ((-312 . -624) 40341) ((-791 . -34) T) ((-691 . -101) T) ((-1086 . -1078) T) ((-128 . -505) NIL) ((-997 . -1179) T) ((-372 . -38) 40306) ((-347 . -25) T) ((-347 . -21) T) ((-160 . -101) T) ((-155 . -101) T) ((-348 . -1232) 40290) ((-345 . -1232) 40274) ((-337 . -1232) 40258) ((-167 . -342) 40237) ((-549 . -823) T) ((-486 . -823) T) ((-1086 . -23) T) ((-86 . -593) 40219) ((-677 . -300) T) ((-810 . -38) 40189) ((-803 . -38) 40159) ((-1211 . -130) T) ((-1116 . -281) 40138) ((-935 . -769) 40091) ((-935 . -770) 40044) ((-791 . -767) 40023) ((-116 . -300) T) ((-90 . -302) 39961) ((-651 . -34) T) ((-535 . -584) 39940) ((-48 . -25) T) ((-48 . -21) T) ((-791 . -770) 39891) ((-791 . -769) 39870) ((-677 . -993) T) ((-629 . -1024) 39854) ((-935 . -703) 39753) ((-791 . -703) 39663) ((-935 . -465) 39616) ((-474 . -771) 39567) ((-474 . -768) 39518) ((-881 . -1232) 39505) ((-1144 . -1018) T) ((-629 . -111) 39484) ((-1144 . -319) 39461) ((-1165 . -101) 39439) ((-1067 . -593) 39421) ((-677 . -534) T) ((-792 . -1066) T) ((-1237 . -1018) T) ((-406 . -1066) T) ((-1101 . -593) 39387) ((-244 . -1025) 39317) ((-243 . -1025) 39247) ((-282 . -624) 39234) ((-574 . -279) 39209) ((-665 . -663) 39167) ((-934 . -593) 39149) ((-843 . -101) T) ((-712 . -593) 39131) ((-692 . -593) 39113) ((-1217 . -170) 39064) ((-1210 . -170) 38995) ((-1189 . -170) 38926) ((-675 . -823) T) ((-975 . -283) T) ((-445 . -593) 38908) ((-605 . -703) T) ((-59 . -1066) 38886) ((-239 . -149) 38870) ((-885 . -283) T) ((-995 . -983) T) ((-605 . -465) T) ((-689 . -1183) 38849) ((-577 . -170) 38828) ((-576 . -170) 38779) ((-1225 . -823) 38758) ((-689 . -541) 38669) ((-400 . -891) T) ((-400 . -796) 38648) ((-312 . -770) T) ((-312 . -703) T) ((-411 . -593) 38630) ((-411 . -594) 38538) ((-621 . -1115) 38522) ((-110 . -627) 38504) ((-172 . -300) T) ((-126 . -302) 38442) ((-110 . -366) 38424) ((-391 . -1179) T) ((-309 . -130) 38295) ((-306 . -130) T) ((-68 . -388) T) ((-110 . -123) T) ((-511 . -481) 38279) ((-630 . -1078) T) ((-574 . -19) 38261) ((-60 . -433) T) ((-60 . -388) T) ((-800 . -1066) T) ((-574 . -584) 38236) ((-469 . -1009) 38196) ((-629 . -1018) T) ((-630 . -23) T) ((-1240 . -1066) T) ((-31 . -101) T) ((-792 . -694) 38045) ((-117 . -823) NIL) ((-1138 . -404) 38029) ((-1091 . -404) 38013) ((-827 . -404) 37997) ((-844 . -101) 37948) ((-1209 . -101) T) ((-1189 . -505) 37717) ((-516 . -92) T) ((-1165 . -302) 37655) ((-305 . -593) 37637) ((-1188 . -101) T) ((-1068 . -1066) T) ((-1140 . -279) 37622) ((-1139 . -279) 37607) ((-282 . -703) T) ((-107 . -880) NIL) ((-665 . -593) 37539) ((-665 . -594) 37500) ((-1046 . -624) 37410) ((-581 . -593) 37392) ((-535 . -594) NIL) ((-535 . -593) 37374) ((-1133 . -279) 37222) ((-479 . -1024) 37172) ((-688 . -444) T) ((-502 . -500) 37151) ((-498 . -500) 37130) ((-211 . -1024) 37080) ((-352 . -624) 37032) ((-346 . -624) 36984) ((-219 . -821) T) ((-338 . -624) 36936) ((-582 . -101) 36886) ((-474 . -361) 36865) ((-107 . -624) 36815) ((-479 . -111) 36749) ((-234 . -481) 36733) ((-336 . -145) 36715) ((-336 . -143) T) ((-167 . -363) 36686) ((-914 . -1223) 36670) ((-211 . -111) 36604) ((-843 . -302) 36569) ((-914 . -1066) 36519) ((-775 . -594) 36480) ((-775 . -593) 36462) ((-695 . -101) T) ((-324 . -1066) T) ((-1086 . -130) T) ((-691 . -38) 36432) ((-309 . -484) 36411) ((-491 . -1179) T) ((-1209 . -277) 36377) ((-1188 . -277) 36343) ((-320 . -149) 36327) ((-1030 . -281) 36302) ((-1240 . -694) 36272) ((-1125 . -34) T) ((-1249 . -1009) 36249) ((-460 . -593) 36231) ((-476 . -34) T) ((-374 . -1009) 36215) ((-1138 . -1025) T) ((-1091 . -1025) T) ((-827 . -1025) T) ((-1029 . -821) T) ((-792 . -170) 36126) ((-511 . -279) 36103) ((-128 . -481) 36085) ((-1217 . -283) 36064) ((-117 . -963) 36041) ((-1210 . -283) 35992) ((-1160 . -357) 35966) ((-1054 . -259) 35950) ((-647 . -593) 35916) ((-586 . -593) 35866) ((-466 . -101) T) ((-178 . -593) 35832) ((-159 . -593) 35798) ((-154 . -593) 35764) ((-358 . -1066) T) ((-244 . -1066) T) ((-243 . -1066) T) ((-152 . -593) 35730) ((-109 . -1066) T) ((-1189 . -283) 35681) ((-843 . -1117) 35659) ((-1140 . -973) 35625) ((-588 . -357) 35565) ((-1139 . -973) 35531) ((-588 . -223) 35478) ((-574 . -593) 35460) ((-574 . -594) NIL) ((-670 . -823) T) ((-467 . -223) 35410) ((-479 . -1018) T) ((-1133 . -973) 35376) ((-87 . -432) T) ((-87 . -388) T) ((-211 . -1018) T) ((-1092 . -973) 35342) ((-1046 . -703) T) ((-689 . -1078) T) ((-577 . -283) 35321) ((-576 . -283) 35300) ((-479 . -237) T) ((-479 . -227) T) ((-211 . -237) T) ((-211 . -227) T) ((-1131 . -593) 35282) ((-843 . -38) 35234) ((-352 . -703) T) ((-346 . -703) T) ((-338 . -703) T) ((-107 . -770) T) ((-107 . -767) T) ((-511 . -1213) 35218) ((-107 . -703) T) ((-689 . -23) T) ((-1253 . -25) T) ((-466 . -277) 35184) ((-1253 . -21) T) ((-1188 . -302) 35123) ((-1142 . -101) T) ((-40 . -143) 35095) ((-40 . -145) 35067) ((-511 . -584) 35044) ((-1079 . -624) 34892) ((-582 . -302) 34830) ((-45 . -627) 34780) ((-45 . -642) 34730) ((-45 . -366) 34680) ((-1124 . -34) T) ((-842 . -821) NIL) ((-630 . -130) T) ((-477 . -593) 34662) ((-234 . -279) 34639) ((-623 . -34) T) ((-610 . -34) T) ((-1053 . -444) 34590) ((-792 . -505) 34464) ((-758 . -444) 34395) ((-756 . -444) 34346) ((-446 . -444) 34297) ((-923 . -404) 34281) ((-708 . -593) 34263) ((-244 . -694) 34205) ((-243 . -694) 34147) ((-708 . -594) 34008) ((-473 . -404) 33992) ((-332 . -295) T) ((-515 . -92) T) ((-344 . -891) T) ((-971 . -101) 33970) ((-995 . -823) T) ((-59 . -505) 33903) ((-1188 . -1117) 33855) ((-975 . -279) NIL) ((-219 . -1025) T) ((-372 . -804) T) ((-1079 . -34) T) ((-1192 . -1059) 33839) ((-563 . -444) T) ((-509 . -444) T) ((-1192 . -1066) 33817) ((-1192 . -1061) 33774) ((-234 . -584) 33751) ((-1140 . -593) 33733) ((-1139 . -593) 33715) ((-1133 . -593) 33697) ((-1133 . -594) NIL) ((-1092 . -593) 33679) ((-128 . -279) 33654) ((-843 . -393) 33638) ((-525 . -101) T) ((-1209 . -38) 33479) ((-1188 . -38) 33293) ((-841 . -145) T) ((-563 . -395) T) ((-48 . -823) T) ((-509 . -395) T) ((-1221 . -101) T) ((-1211 . -21) T) ((-1211 . -25) T) ((-1079 . -767) 33272) ((-1079 . -770) 33223) ((-1079 . -769) 33202) ((-964 . -1066) T) ((-998 . -34) T) ((-834 . -1066) T) ((-1079 . -703) 33112) ((-640 . -101) T) ((-622 . -101) T) ((-535 . -281) 33091) ((-1152 . -101) T) ((-468 . -34) T) ((-455 . -34) T) ((-348 . -101) T) ((-345 . -101) T) ((-337 . -101) T) ((-257 . -101) T) ((-241 . -101) T) ((-469 . -300) T) ((-1029 . -1025) T) ((-923 . -1025) T) ((-309 . -617) 32997) ((-306 . -617) 32958) ((-473 . -1025) T) ((-471 . -101) T) ((-429 . -593) 32940) ((-1138 . -1066) T) ((-1091 . -1066) T) ((-827 . -1066) T) ((-1107 . -101) T) ((-792 . -283) 32871) ((-934 . -1024) 32754) ((-469 . -993) T) ((-128 . -19) 32736) ((-712 . -1024) 32706) ((-128 . -584) 32681) ((-445 . -1024) 32651) ((-1113 . -1087) 32635) ((-1068 . -505) 32568) ((-934 . -111) 32437) ((-881 . -101) T) ((-712 . -111) 32402) ((-516 . -593) 32368) ((-58 . -101) 32318) ((-511 . -594) 32279) ((-511 . -593) 32191) ((-510 . -101) 32169) ((-507 . -101) 32119) ((-488 . -101) 32097) ((-487 . -101) 32047) ((-445 . -111) 32010) ((-244 . -170) 31989) ((-243 . -170) 31968) ((-411 . -1024) 31942) ((-1173 . -944) 31904) ((-970 . -1078) T) ((-914 . -505) 31837) ((-479 . -771) T) ((-466 . -38) 31678) ((-411 . -111) 31645) ((-479 . -768) T) ((-971 . -302) 31583) ((-211 . -771) T) ((-211 . -768) T) ((-970 . -23) T) ((-689 . -130) T) ((-1188 . -393) 31553) ((-309 . -25) 31405) ((-167 . -404) 31389) ((-309 . -21) 31260) ((-306 . -25) T) ((-306 . -21) T) ((-836 . -361) T) ((-110 . -34) T) ((-474 . -624) 31108) ((-842 . -1025) T) ((-574 . -281) 31083) ((-562 . -145) T) ((-549 . -145) T) ((-486 . -145) T) ((-1138 . -694) 30912) ((-1091 . -694) 30761) ((-1086 . -617) 30743) ((-827 . -694) 30713) ((-646 . -1179) T) ((-1 . -101) T) ((-234 . -593) 30444) ((-1081 . -1066) T) ((-1198 . -404) 30428) ((-1152 . -302) 30232) ((-934 . -1018) T) ((-712 . -1018) T) ((-692 . -1018) T) ((-621 . -1066) 30182) ((-1022 . -624) 30166) ((-828 . -404) 30150) ((-502 . -101) T) ((-498 . -101) T) ((-241 . -302) 30137) ((-257 . -302) 30124) ((-934 . -319) 30103) ((-378 . -624) 30087) ((-471 . -302) 29891) ((-244 . -505) 29824) ((-646 . -1009) 29720) ((-243 . -505) 29653) ((-1107 . -302) 29579) ((-795 . -1066) T) ((-775 . -1024) 29563) ((-1217 . -279) 29548) ((-1210 . -279) 29533) ((-1189 . -279) 29381) ((-379 . -1066) T) ((-317 . -1066) T) ((-411 . -1018) T) ((-167 . -1025) T) ((-58 . -302) 29319) ((-775 . -111) 29298) ((-576 . -279) 29283) ((-510 . -302) 29221) ((-507 . -302) 29159) ((-488 . -302) 29097) ((-487 . -302) 29035) ((-411 . -227) 29014) ((-474 . -34) T) ((-975 . -594) 28944) ((-219 . -1066) T) ((-975 . -593) 28926) ((-942 . -593) 28908) ((-942 . -594) 28883) ((-885 . -593) 28865) ((-675 . -145) T) ((-677 . -891) T) ((-677 . -796) T) ((-420 . -593) 28847) ((-1086 . -21) T) ((-128 . -594) NIL) ((-128 . -593) 28829) ((-1086 . -25) T) ((-646 . -370) 28813) ((-116 . -891) T) ((-843 . -225) 28797) ((-77 . -1179) T) ((-126 . -125) 28781) ((-1022 . -34) T) ((-1247 . -1009) 28755) ((-1245 . -1009) 28712) ((-1198 . -1025) T) ((-828 . -1025) T) ((-474 . -767) 28691) ((-348 . -1117) 28670) ((-345 . -1117) 28649) ((-337 . -1117) 28628) ((-474 . -770) 28579) ((-474 . -769) 28558) ((-221 . -34) T) ((-474 . -703) 28468) ((-59 . -481) 28452) ((-556 . -1025) T) ((-1138 . -170) 28343) ((-1091 . -170) 28254) ((-1029 . -1066) T) ((-1053 . -920) 28199) ((-923 . -1066) T) ((-793 . -624) 28150) ((-758 . -920) 28119) ((-690 . -1066) T) ((-756 . -920) 28086) ((-507 . -275) 28070) ((-646 . -871) 28029) ((-473 . -1066) T) ((-446 . -920) 27996) ((-78 . -1179) T) ((-348 . -38) 27961) ((-345 . -38) 27926) ((-337 . -38) 27891) ((-257 . -38) 27740) ((-241 . -38) 27589) ((-881 . -1117) T) ((-601 . -145) 27568) ((-601 . -143) 27547) ((-515 . -593) 27513) ((-117 . -145) T) ((-117 . -143) NIL) ((-407 . -703) T) ((-775 . -1018) T) ((-336 . -444) T) ((-1217 . -973) 27479) ((-1210 . -973) 27445) ((-1189 . -973) 27411) ((-881 . -38) 27376) ((-219 . -694) 27341) ((-312 . -47) 27311) ((-40 . -402) 27283) ((-138 . -593) 27265) ((-970 . -130) T) ((-791 . -1179) T) ((-172 . -891) T) ((-336 . -395) T) ((-511 . -281) 27242) ((-791 . -1009) 27069) ((-45 . -34) T) ((-657 . -101) T) ((-652 . -101) T) ((-638 . -101) T) ((-630 . -21) T) ((-630 . -25) T) ((-1188 . -225) 27039) ((-1068 . -481) 27023) ((-470 . -101) T) ((-651 . -1179) T) ((-239 . -101) 26973) ((-137 . -101) T) ((-136 . -101) T) ((-132 . -101) T) ((-842 . -1066) T) ((-1144 . -624) 26898) ((-1029 . -694) 26885) ((-708 . -1024) 26728) ((-1138 . -505) 26675) ((-923 . -694) 26524) ((-1091 . -505) 26476) ((-1236 . -1066) T) ((-1235 . -1066) T) ((-473 . -694) 26325) ((-66 . -593) 26307) ((-708 . -111) 26136) ((-914 . -481) 26120) ((-1237 . -624) 26080) ((-793 . -703) T) ((-1140 . -1024) 25963) ((-1139 . -1024) 25798) ((-1133 . -1024) 25588) ((-1092 . -1024) 25471) ((-974 . -1183) T) ((-1060 . -101) 25449) ((-791 . -370) 25418) ((-974 . -541) T) ((-1140 . -111) 25287) ((-1139 . -111) 25108) ((-1133 . -111) 24877) ((-1092 . -111) 24746) ((-1071 . -1069) 24710) ((-372 . -821) T) ((-1217 . -593) 24692) ((-1210 . -593) 24674) ((-1189 . -593) 24656) ((-1189 . -594) NIL) ((-234 . -281) 24633) ((-40 . -444) T) ((-219 . -170) T) ((-167 . -1066) T) ((-670 . -145) T) ((-670 . -143) NIL) ((-577 . -593) 24615) ((-576 . -593) 24597) ((-869 . -1066) T) ((-814 . -1066) T) ((-784 . -1066) T) ((-745 . -1066) T) ((-634 . -825) 24581) ((-653 . -1066) T) ((-791 . -871) 24513) ((-40 . -395) NIL) ((-1086 . -637) T) ((-842 . -694) 24458) ((-244 . -481) 24442) ((-243 . -481) 24426) ((-689 . -617) 24374) ((-629 . -624) 24348) ((-288 . -34) T) ((-708 . -1018) T) ((-563 . -1232) 24335) ((-509 . -1232) 24312) ((-1198 . -1066) T) ((-1138 . -283) 24223) ((-1091 . -283) 24154) ((-1029 . -170) T) ((-828 . -1066) T) ((-923 . -170) 24065) ((-758 . -1201) 24049) ((-621 . -505) 23982) ((-76 . -593) 23964) ((-708 . -319) 23929) ((-1144 . -703) T) ((-556 . -1066) T) ((-473 . -170) 23840) ((-239 . -302) 23778) ((-128 . -281) 23753) ((-1108 . -1078) T) ((-69 . -593) 23735) ((-1237 . -703) T) ((-1140 . -1018) T) ((-1139 . -1018) T) ((-320 . -101) 23685) ((-1133 . -1018) T) ((-1108 . -23) T) ((-1092 . -1018) T) ((-90 . -1087) 23669) ((-837 . -1078) T) ((-1140 . -227) 23628) ((-1139 . -237) 23607) ((-1139 . -227) 23559) ((-1133 . -227) 23446) ((-1133 . -237) 23425) ((-312 . -871) 23331) ((-837 . -23) T) ((-167 . -694) 23159) ((-400 . -1183) T) ((-1067 . -361) T) ((-995 . -145) T) ((-974 . -356) T) ((-841 . -444) T) ((-914 . -279) 23136) ((-309 . -823) T) ((-306 . -823) NIL) ((-845 . -101) T) ((-689 . -25) T) ((-400 . -541) T) ((-689 . -21) T) ((-347 . -145) 23118) ((-347 . -143) T) ((-1113 . -1066) 23096) ((-445 . -697) T) ((-74 . -593) 23078) ((-114 . -823) T) ((-239 . -275) 23062) ((-234 . -1024) 22959) ((-80 . -593) 22941) ((-712 . -361) 22894) ((-1142 . -804) T) ((-714 . -229) 22878) ((-1125 . -1179) T) ((-139 . -229) 22860) ((-234 . -111) 22750) ((-1198 . -694) 22579) ((-48 . -145) T) ((-842 . -170) T) ((-828 . -694) 22549) ((-476 . -1179) T) ((-923 . -505) 22496) ((-629 . -703) T) ((-556 . -694) 22483) ((-1005 . -1025) T) ((-473 . -505) 22426) ((-914 . -19) 22410) ((-914 . -584) 22387) ((-792 . -594) NIL) ((-792 . -593) 22369) ((-975 . -1024) 22319) ((-406 . -593) 22301) ((-244 . -279) 22278) ((-243 . -279) 22255) ((-479 . -880) NIL) ((-309 . -29) 22225) ((-107 . -1179) T) ((-974 . -1078) T) ((-211 . -880) NIL) ((-885 . -1024) 22177) ((-1046 . -1009) 22073) ((-975 . -111) 22007) ((-714 . -671) 21991) ((-257 . -225) 21975) ((-420 . -1024) 21959) ((-372 . -1025) T) ((-974 . -23) T) ((-885 . -111) 21897) ((-670 . -1167) NIL) ((-479 . -624) 21847) ((-107 . -855) 21829) ((-107 . -857) 21811) ((-670 . -1164) NIL) ((-211 . -624) 21761) ((-352 . -1009) 21745) ((-346 . -1009) 21729) ((-320 . -302) 21667) ((-338 . -1009) 21651) ((-219 . -283) T) ((-420 . -111) 21630) ((-59 . -593) 21562) ((-167 . -170) T) ((-1086 . -823) T) ((-107 . -1009) 21522) ((-863 . -1066) T) ((-810 . -1025) T) ((-803 . -1025) T) ((-670 . -35) NIL) ((-670 . -94) NIL) ((-306 . -963) 21483) ((-181 . -101) T) ((-562 . -444) T) ((-549 . -444) T) ((-486 . -444) T) ((-400 . -356) T) ((-234 . -1018) 21413) ((-1116 . -34) T) ((-469 . -891) T) ((-970 . -617) 21361) ((-244 . -584) 21338) ((-243 . -584) 21315) ((-1046 . -370) 21299) ((-842 . -505) 21207) ((-234 . -227) 21159) ((-1124 . -1179) T) ((-800 . -593) 21141) ((-1248 . -1078) T) ((-1240 . -593) 21123) ((-1198 . -170) 21014) ((-107 . -370) 20996) ((-107 . -331) 20978) ((-1029 . -283) T) ((-923 . -283) 20909) ((-775 . -361) 20888) ((-623 . -1179) T) ((-610 . -1179) T) ((-473 . -283) 20819) ((-556 . -170) T) ((-320 . -275) 20803) ((-1248 . -23) T) ((-1173 . -101) T) ((-1160 . -1066) T) ((-1054 . -1066) T) ((-1042 . -1066) T) ((-82 . -593) 20785) ((-688 . -101) T) ((-348 . -342) 20764) ((-588 . -1066) T) ((-345 . -342) 20743) ((-337 . -342) 20722) ((-467 . -1066) T) ((-1152 . -223) 20672) ((-257 . -246) 20634) ((-1108 . -130) T) ((-588 . -590) 20610) ((-1046 . -871) 20543) ((-975 . -1018) T) ((-885 . -1018) T) ((-467 . -590) 20522) ((-1133 . -768) NIL) ((-1133 . -771) NIL) ((-1068 . -594) 20483) ((-471 . -223) 20433) ((-1068 . -593) 20415) ((-975 . -237) T) ((-975 . -227) T) ((-420 . -1018) T) ((-929 . -1066) 20365) ((-885 . -237) T) ((-837 . -130) T) ((-675 . -444) T) ((-816 . -1078) 20344) ((-107 . -871) NIL) ((-1173 . -277) 20310) ((-843 . -821) 20289) ((-1079 . -1179) T) ((-876 . -703) T) ((-167 . -505) 20201) ((-970 . -25) T) ((-876 . -465) T) ((-400 . -1078) T) ((-479 . -770) T) ((-479 . -767) T) ((-881 . -342) T) ((-479 . -703) T) ((-211 . -770) T) ((-211 . -767) T) ((-970 . -21) T) ((-211 . -703) T) ((-816 . -23) 20153) ((-312 . -300) 20132) ((-1006 . -229) 20078) ((-400 . -23) T) ((-914 . -594) 20039) ((-914 . -593) 19951) ((-621 . -481) 19935) ((-45 . -981) 19885) ((-596 . -938) T) ((-482 . -101) T) ((-324 . -593) 19867) ((-1079 . -1009) 19694) ((-574 . -627) 19676) ((-574 . -366) 19658) ((-336 . -1232) 19635) ((-998 . -1179) T) ((-842 . -283) T) ((-1198 . -505) 19582) ((-468 . -1179) T) ((-455 . -1179) T) ((-567 . -101) T) ((-1138 . -279) 19509) ((-601 . -444) 19488) ((-971 . -966) 19472) ((-1240 . -375) 19444) ((-508 . -1066) T) ((-117 . -444) T) ((-1159 . -101) T) ((-1058 . -1066) 19422) ((-1005 . -1066) T) ((-1081 . -92) T) ((-864 . -823) T) ((-344 . -1183) T) ((-1217 . -1024) 19305) ((-1079 . -370) 19274) ((-1210 . -1024) 19109) ((-1189 . -1024) 18899) ((-1217 . -111) 18768) ((-1210 . -111) 18589) ((-1189 . -111) 18358) ((-1173 . -302) 18345) ((-344 . -541) T) ((-358 . -593) 18327) ((-282 . -300) T) ((-577 . -1024) 18300) ((-576 . -1024) 18183) ((-354 . -1066) T) ((-315 . -1066) T) ((-244 . -593) 18144) ((-243 . -593) 18105) ((-974 . -130) T) ((-109 . -593) 18087) ((-613 . -23) T) ((-670 . -402) 18054) ((-587 . -23) T) ((-634 . -101) T) ((-577 . -111) 18025) ((-576 . -111) 17894) ((-372 . -1066) T) ((-329 . -101) T) ((-167 . -283) 17805) ((-1188 . -821) 17758) ((-691 . -1025) T) ((-1113 . -505) 17691) ((-1079 . -871) 17623) ((-810 . -1066) T) ((-803 . -1066) T) ((-801 . -1066) T) ((-96 . -101) T) ((-142 . -823) T) ((-592 . -855) 17607) ((-110 . -1179) T) ((-1053 . -101) T) ((-1030 . -34) T) ((-758 . -101) T) ((-756 . -101) T) ((-453 . -101) T) ((-446 . -101) T) ((-234 . -771) 17558) ((-234 . -768) 17509) ((-625 . -101) T) ((-1198 . -283) 17420) ((-640 . -612) 17404) ((-621 . -279) 17381) ((-1005 . -694) 17365) ((-556 . -283) T) ((-934 . -624) 17290) ((-1248 . -130) T) ((-712 . -624) 17250) ((-692 . -624) 17237) ((-268 . -101) T) ((-445 . -624) 17167) ((-50 . -101) T) ((-563 . -101) T) ((-509 . -101) T) ((-1217 . -1018) T) ((-1210 . -1018) T) ((-1189 . -1018) T) ((-1217 . -227) 17126) ((-315 . -694) 17108) ((-1210 . -237) 17087) ((-1210 . -227) 17039) ((-1189 . -227) 16926) ((-1189 . -237) 16905) ((-1173 . -38) 16802) ((-975 . -771) T) ((-577 . -1018) T) ((-576 . -1018) T) ((-975 . -768) T) ((-942 . -771) T) ((-942 . -768) T) ((-843 . -1025) T) ((-841 . -840) 16786) ((-108 . -593) 16768) ((-670 . -444) T) ((-372 . -694) 16733) ((-411 . -624) 16707) ((-689 . -823) 16686) ((-688 . -38) 16651) ((-576 . -227) 16610) ((-40 . -701) 16582) ((-344 . -322) 16559) ((-344 . -356) T) ((-1046 . -300) 16510) ((-287 . -1078) 16391) ((-1072 . -1179) T) ((-169 . -101) T) ((-1192 . -593) 16358) ((-816 . -130) 16310) ((-621 . -1213) 16294) ((-810 . -694) 16264) ((-803 . -694) 16234) ((-474 . -1179) T) ((-352 . -300) T) ((-346 . -300) T) ((-338 . -300) T) ((-621 . -584) 16211) ((-400 . -130) T) ((-511 . -642) 16195) ((-107 . -300) T) ((-287 . -23) 16078) ((-511 . -627) 16062) ((-670 . -395) NIL) ((-511 . -366) 16046) ((-284 . -593) 16028) ((-90 . -1066) 16006) ((-107 . -993) T) ((-549 . -141) T) ((-1225 . -149) 15990) ((-474 . -1009) 15817) ((-1211 . -143) 15778) ((-1211 . -145) 15739) ((-1022 . -1179) T) ((-964 . -593) 15721) ((-834 . -593) 15703) ((-792 . -1024) 15546) ((-1062 . -1066) T) ((-1056 . -1066) T) ((-1053 . -302) 15533) ((-1040 . -1066) T) ((-221 . -1179) T) ((-1033 . -1066) T) ((-1007 . -1066) T) ((-990 . -1066) T) ((-758 . -302) 15520) ((-756 . -302) 15507) ((-1236 . -92) T) ((-792 . -111) 15336) ((-1235 . -92) T) ((-604 . -1066) T) ((-1138 . -594) NIL) ((-1138 . -593) 15318) ((-446 . -302) 15305) ((-475 . -1066) T) ((-1091 . -593) 15287) ((-1091 . -594) 15035) ((-1005 . -170) T) ((-212 . -1066) T) ((-827 . -593) 15017) ((-914 . -281) 14994) ((-588 . -505) 14777) ((-794 . -1009) 14761) ((-467 . -505) 14553) ((-934 . -703) T) ((-712 . -703) T) ((-692 . -703) T) ((-344 . -1078) T) ((-1145 . -593) 14535) ((-217 . -101) T) ((-474 . -370) 14504) ((-506 . -1066) T) ((-501 . -1066) T) ((-499 . -1066) T) ((-775 . -624) 14478) ((-995 . -444) T) ((-929 . -505) 14411) ((-344 . -23) T) ((-613 . -130) T) ((-587 . -130) T) ((-347 . -444) T) ((-234 . -361) 14390) ((-372 . -170) T) ((-1209 . -1025) T) ((-1188 . -1025) T) ((-219 . -973) T) ((-675 . -380) T) ((-411 . -703) T) ((-677 . -1183) T) ((-1108 . -617) 14338) ((-562 . -840) 14322) ((-1125 . -1155) 14298) ((-677 . -541) T) ((-126 . -1066) 14276) ((-1240 . -1024) 14260) ((-691 . -1066) T) ((-474 . -871) 14192) ((-634 . -38) 14162) ((-347 . -395) T) ((-309 . -145) 14141) ((-309 . -143) 14120) ((-116 . -541) T) ((-306 . -145) 14076) ((-306 . -143) 14032) ((-48 . -444) T) ((-160 . -1066) T) ((-155 . -1066) T) ((-1125 . -106) 13979) ((-758 . -1117) 13957) ((-665 . -34) T) ((-1240 . -111) 13936) ((-535 . -34) T) ((-476 . -106) 13920) ((-244 . -281) 13897) ((-243 . -281) 13874) ((-842 . -279) 13825) ((-45 . -1179) T) ((-792 . -1018) T) ((-1144 . -47) 13802) ((-792 . -319) 13764) ((-1053 . -38) 13613) ((-792 . -227) 13592) ((-758 . -38) 13421) ((-756 . -38) 13270) ((-128 . -627) 13252) ((-446 . -38) 13101) ((-128 . -366) 13083) ((-1081 . -593) 13049) ((-1084 . -101) T) ((-621 . -594) 13010) ((-621 . -593) 12922) ((-563 . -1117) T) ((-509 . -1117) T) ((-1113 . -481) 12906) ((-1165 . -1066) 12884) ((-1108 . -25) T) ((-1108 . -21) T) ((-466 . -1025) T) ((-1189 . -768) NIL) ((-1189 . -771) NIL) ((-970 . -823) 12863) ((-795 . -593) 12845) ((-837 . -21) T) ((-837 . -25) T) ((-775 . -703) T) ((-172 . -1183) T) ((-563 . -38) 12810) ((-509 . -38) 12775) ((-379 . -593) 12757) ((-317 . -593) 12739) ((-167 . -279) 12697) ((-62 . -1179) T) ((-112 . -101) T) ((-843 . -1066) T) ((-172 . -541) T) ((-691 . -694) 12667) ((-287 . -130) 12550) ((-219 . -593) 12532) ((-219 . -594) 12462) ((-974 . -617) 12401) ((-1240 . -1018) T) ((-1086 . -145) T) ((-610 . -1155) 12376) ((-708 . -880) 12355) ((-574 . -34) T) ((-623 . -106) 12339) ((-610 . -106) 12285) ((-1198 . -279) 12212) ((-708 . -624) 12137) ((-288 . -1179) T) ((-1144 . -1009) 12033) ((-1133 . -880) NIL) ((-1029 . -594) 11948) ((-1029 . -593) 11930) ((-923 . -593) 11912) ((-336 . -101) T) ((-244 . -1024) 11809) ((-243 . -1024) 11706) ((-387 . -101) T) ((-31 . -1066) T) ((-923 . -594) 11567) ((-690 . -593) 11549) ((-1238 . -1172) 11518) ((-473 . -593) 11500) ((-473 . -594) 11361) ((-241 . -404) 11345) ((-257 . -404) 11329) ((-244 . -111) 11219) ((-243 . -111) 11109) ((-1140 . -624) 11034) ((-1139 . -624) 10931) ((-1133 . -624) 10783) ((-1092 . -624) 10708) ((-344 . -130) T) ((-81 . -433) T) ((-81 . -388) T) ((-974 . -25) T) ((-974 . -21) T) ((-844 . -1066) 10659) ((-843 . -694) 10611) ((-372 . -283) T) ((-167 . -973) 10563) ((-670 . -380) T) ((-970 . -968) 10547) ((-677 . -1078) T) ((-670 . -164) 10529) ((-1209 . -1066) T) ((-1188 . -1066) T) ((-309 . -1164) 10508) ((-309 . -1167) 10487) ((-1130 . -101) T) ((-309 . -930) 10466) ((-133 . -1078) T) ((-116 . -1078) T) ((-582 . -1223) 10450) ((-677 . -23) T) ((-582 . -1066) 10400) ((-90 . -505) 10333) ((-172 . -356) T) ((-309 . -94) 10312) ((-309 . -35) 10291) ((-588 . -481) 10225) ((-133 . -23) T) ((-116 . -23) T) ((-937 . -101) T) ((-695 . -1066) T) ((-467 . -481) 10162) ((-400 . -617) 10110) ((-629 . -1009) 10006) ((-929 . -481) 9990) ((-348 . -1025) T) ((-345 . -1025) T) ((-337 . -1025) T) ((-257 . -1025) T) ((-241 . -1025) T) ((-842 . -594) NIL) ((-842 . -593) 9972) ((-1248 . -21) T) ((-1236 . -593) 9938) ((-1235 . -593) 9904) ((-556 . -973) T) ((-708 . -703) T) ((-1248 . -25) T) ((-244 . -1018) 9834) ((-243 . -1018) 9764) ((-71 . -1179) T) ((-244 . -227) 9716) ((-243 . -227) 9668) ((-40 . -101) T) ((-881 . -1025) T) ((-1147 . -101) T) ((-1140 . -703) T) ((-1139 . -703) T) ((-1133 . -703) T) ((-1133 . -767) NIL) ((-1133 . -770) NIL) ((-925 . -101) T) ((-892 . -101) T) ((-1092 . -703) T) ((-747 . -101) T) ((-648 . -101) T) ((-466 . -1066) T) ((-332 . -1078) T) ((-172 . -1078) T) ((-312 . -891) 9647) ((-1209 . -694) 9488) ((-843 . -170) T) ((-1188 . -694) 9302) ((-816 . -21) 9254) ((-816 . -25) 9206) ((-239 . -1115) 9190) ((-126 . -505) 9123) ((-400 . -25) T) ((-400 . -21) T) ((-332 . -23) T) ((-167 . -594) 8891) ((-167 . -593) 8873) ((-172 . -23) T) ((-621 . -281) 8850) ((-511 . -34) T) ((-869 . -593) 8832) ((-88 . -1179) T) ((-814 . -593) 8814) ((-784 . -593) 8796) ((-745 . -593) 8778) ((-653 . -593) 8760) ((-234 . -624) 8608) ((-1142 . -1066) T) ((-1138 . -1024) 8431) ((-1116 . -1179) T) ((-1091 . -1024) 8274) ((-827 . -1024) 8258) ((-1138 . -111) 8067) ((-1091 . -111) 7896) ((-827 . -111) 7875) ((-1198 . -594) NIL) ((-1198 . -593) 7857) ((-336 . -1117) T) ((-828 . -593) 7839) ((-1042 . -279) 7818) ((-79 . -1179) T) ((-975 . -880) NIL) ((-588 . -279) 7794) ((-1165 . -505) 7727) ((-479 . -1179) T) ((-556 . -593) 7709) ((-467 . -279) 7688) ((-508 . -92) T) ((-211 . -1179) T) ((-1053 . -225) 7672) ((-282 . -891) T) ((-793 . -300) 7651) ((-841 . -101) T) ((-758 . -225) 7635) ((-975 . -624) 7585) ((-929 . -279) 7562) ((-885 . -624) 7514) ((-613 . -21) T) ((-613 . -25) T) ((-587 . -21) T) ((-336 . -38) 7479) ((-670 . -701) 7446) ((-479 . -855) 7428) ((-479 . -857) 7410) ((-466 . -694) 7251) ((-211 . -855) 7233) ((-63 . -1179) T) ((-211 . -857) 7215) ((-587 . -25) T) ((-420 . -624) 7189) ((-479 . -1009) 7149) ((-843 . -505) 7061) ((-211 . -1009) 7021) ((-234 . -34) T) ((-971 . -1066) 6999) ((-1209 . -170) 6930) ((-1188 . -170) 6861) ((-689 . -143) 6840) ((-689 . -145) 6819) ((-677 . -130) T) ((-135 . -457) 6796) ((-634 . -632) 6780) ((-1113 . -593) 6712) ((-116 . -130) T) ((-469 . -1183) T) ((-588 . -584) 6688) ((-467 . -584) 6667) ((-329 . -328) 6636) ((-525 . -1066) T) ((-469 . -541) T) ((-1138 . -1018) T) ((-1091 . -1018) T) ((-827 . -1018) T) ((-234 . -767) 6615) ((-234 . -770) 6566) ((-234 . -769) 6545) ((-1138 . -319) 6522) ((-234 . -703) 6432) ((-929 . -19) 6416) ((-479 . -370) 6398) ((-479 . -331) 6380) ((-1091 . -319) 6352) ((-347 . -1232) 6329) ((-211 . -370) 6311) ((-211 . -331) 6293) ((-929 . -584) 6270) ((-1138 . -227) T) ((-640 . -1066) T) ((-622 . -1066) T) ((-1221 . -1066) T) ((-1152 . -1066) T) ((-1053 . -246) 6207) ((-348 . -1066) T) ((-345 . -1066) T) ((-337 . -1066) T) ((-257 . -1066) T) ((-241 . -1066) T) ((-83 . -1179) T) ((-127 . -101) 6185) ((-121 . -101) 6163) ((-128 . -34) T) ((-1152 . -590) 6142) ((-471 . -1066) T) ((-1107 . -1066) T) ((-471 . -590) 6121) ((-244 . -771) 6072) ((-244 . -768) 6023) ((-243 . -771) 5974) ((-40 . -1117) NIL) ((-243 . -768) 5925) ((-1046 . -891) 5876) ((-975 . -770) T) ((-975 . -767) T) ((-975 . -703) T) ((-942 . -770) T) ((-885 . -703) T) ((-90 . -481) 5860) ((-479 . -871) NIL) ((-881 . -1066) T) ((-219 . -1024) 5825) ((-843 . -283) T) ((-211 . -871) NIL) ((-809 . -1078) 5804) ((-58 . -1066) 5754) ((-510 . -1066) 5732) ((-507 . -1066) 5682) ((-488 . -1066) 5660) ((-487 . -1066) 5610) ((-562 . -101) T) ((-549 . -101) T) ((-486 . -101) T) ((-466 . -170) 5541) ((-352 . -891) T) ((-346 . -891) T) ((-338 . -891) T) ((-219 . -111) 5497) ((-809 . -23) 5449) ((-420 . -703) T) ((-107 . -891) T) ((-40 . -38) 5394) ((-107 . -796) T) ((-563 . -342) T) ((-509 . -342) T) ((-1188 . -505) 5254) ((-309 . -444) 5233) ((-306 . -444) T) ((-810 . -279) 5212) ((-332 . -130) T) ((-172 . -130) T) ((-287 . -25) 5076) ((-287 . -21) 4959) ((-45 . -1155) 4938) ((-65 . -593) 4920) ((-863 . -593) 4902) ((-582 . -505) 4835) ((-45 . -106) 4785) ((-1068 . -418) 4769) ((-1068 . -361) 4748) ((-1030 . -1179) T) ((-1029 . -1024) 4735) ((-923 . -1024) 4578) ((-1226 . -101) T) ((-1225 . -101) 4528) ((-473 . -1024) 4371) ((-640 . -694) 4355) ((-1029 . -111) 4340) ((-923 . -111) 4169) ((-469 . -356) T) ((-348 . -694) 4121) ((-345 . -694) 4073) ((-337 . -694) 4025) ((-257 . -694) 3874) ((-241 . -694) 3723) ((-1217 . -624) 3648) ((-1189 . -880) NIL) ((-1062 . -92) T) ((-1056 . -92) T) ((-914 . -627) 3632) ((-1040 . -92) T) ((-473 . -111) 3461) ((-1033 . -92) T) ((-1007 . -92) T) ((-914 . -366) 3445) ((-242 . -101) T) ((-990 . -92) T) ((-73 . -593) 3427) ((-934 . -47) 3406) ((-599 . -1078) T) ((-1 . -1066) T) ((-687 . -101) T) ((-675 . -101) T) ((-1210 . -624) 3303) ((-604 . -92) T) ((-1160 . -593) 3285) ((-1054 . -593) 3267) ((-126 . -481) 3251) ((-475 . -92) T) ((-1042 . -593) 3233) ((-383 . -23) T) ((-86 . -1179) T) ((-212 . -92) T) ((-1189 . -624) 3085) ((-881 . -694) 3050) ((-599 . -23) T) ((-588 . -593) 3032) ((-588 . -594) NIL) ((-467 . -594) NIL) ((-467 . -593) 3014) ((-502 . -1066) T) ((-498 . -1066) T) ((-344 . -25) T) ((-344 . -21) T) ((-127 . -302) 2952) ((-121 . -302) 2890) ((-577 . -624) 2877) ((-219 . -1018) T) ((-576 . -624) 2802) ((-372 . -973) T) ((-219 . -237) T) ((-219 . -227) T) ((-929 . -594) 2763) ((-929 . -593) 2675) ((-841 . -38) 2662) ((-1209 . -283) 2613) ((-1188 . -283) 2564) ((-1086 . -444) T) ((-493 . -823) T) ((-309 . -1105) 2543) ((-970 . -145) 2522) ((-970 . -143) 2501) ((-486 . -302) 2488) ((-288 . -1155) 2467) ((-469 . -1078) T) ((-842 . -1024) 2412) ((-601 . -101) T) ((-1165 . -481) 2396) ((-244 . -361) 2375) ((-243 . -361) 2354) ((-288 . -106) 2304) ((-1029 . -1018) T) ((-117 . -101) T) ((-923 . -1018) T) ((-842 . -111) 2233) ((-469 . -23) T) ((-473 . -1018) T) ((-1029 . -227) T) ((-923 . -319) 2202) ((-473 . -319) 2159) ((-348 . -170) T) ((-345 . -170) T) ((-337 . -170) T) ((-257 . -170) 2070) ((-241 . -170) 1981) ((-934 . -1009) 1877) ((-712 . -1009) 1848) ((-508 . -593) 1814) ((-1071 . -101) T) ((-1058 . -593) 1781) ((-1005 . -593) 1763) ((-1217 . -703) T) ((-1210 . -703) T) ((-1189 . -767) NIL) ((-167 . -1024) 1673) ((-1189 . -770) NIL) ((-881 . -170) T) ((-1189 . -703) T) ((-1238 . -149) 1657) ((-974 . -335) 1631) ((-971 . -505) 1564) ((-816 . -823) 1543) ((-549 . -1117) T) ((-466 . -283) 1494) ((-577 . -703) T) ((-354 . -593) 1476) ((-315 . -593) 1458) ((-411 . -1009) 1354) ((-576 . -703) T) ((-400 . -823) 1305) ((-167 . -111) 1201) ((-809 . -130) 1153) ((-714 . -149) 1137) ((-1225 . -302) 1075) ((-479 . -300) T) ((-372 . -593) 1042) ((-511 . -981) 1026) ((-372 . -594) 940) ((-211 . -300) T) ((-139 . -149) 922) ((-691 . -279) 901) ((-479 . -993) T) ((-562 . -38) 888) ((-549 . -38) 875) ((-486 . -38) 840) ((-211 . -993) T) ((-842 . -1018) T) ((-810 . -593) 822) ((-803 . -593) 804) ((-801 . -593) 786) ((-792 . -880) 765) ((-1249 . -1078) T) ((-1198 . -1024) 588) ((-828 . -1024) 572) ((-842 . -237) T) ((-842 . -227) NIL) ((-665 . -1179) T) ((-1249 . -23) T) ((-792 . -624) 497) ((-535 . -1179) T) ((-411 . -331) 481) ((-556 . -1024) 468) ((-1198 . -111) 277) ((-677 . -617) 259) ((-828 . -111) 238) ((-374 . -23) T) ((-1152 . -505) 30) ((-638 . -1066) T) ((-657 . -1066) T) ((-652 . -1066) T)) \ No newline at end of file
diff --git a/src/share/algebra/compress.daase b/src/share/algebra/compress.daase
index e2cc998a..9da2ed17 100644
--- a/src/share/algebra/compress.daase
+++ b/src/share/algebra/compress.daase
@@ -1,6 +1,6 @@
-(30 . 3431018166)
-(4340 |Enumeration| |Mapping| |Record| |Union| |ofCategory| |isDomain|
+(30 . 3431030409)
+(4339 |Enumeration| |Mapping| |Record| |Union| |ofCategory| |isDomain|
ATTRIBUTE |package| |domain| |category| CATEGORY |nobranch| AND |Join|
|ofType| SIGNATURE "failed" "algebra" |OneDimensionalArrayAggregate&|
|OneDimensionalArrayAggregate| |AbelianGroup&| |AbelianGroup|
@@ -387,7 +387,7 @@
|RewriteRule| |Ruleset| |RationalUnivariateRepresentationPackage|
|SimpleAlgebraicExtensionAlgFactor| |SimpleAlgebraicExtension|
|SAERationalFunctionAlgFactor| |SingletonAsOrderedSet|
- |SpadSyntaxCategory&| |SpadSyntaxCategory| |SortedCache| |Scope|
+ |SpadSyntaxCategory| |SortedCache| |Scope|
|StructuralConstantsPackage| |SequentialDifferentialPolynomial|
|SequentialDifferentialVariable| |SegmentFunctions2| |SegmentAst|
|SegmentBindingFunctions2| |SegmentBinding| |SegmentCategory|
@@ -469,656 +469,654 @@
|XPolynomial| |XPolynomialRing| |XRecursivePolynomial|
|ParadoxicalCombinatorsForStreams| |ZeroDimensionalSolvePackage|
|IntegerLinearDependence| |IntegerMod| |Enumeration| |Mapping|
- |Record| |Union| |listLoops| |graphStates| |zeroSquareMatrix|
- |colorFunction| |tanhIfCan| |comment| |e01sff| |rename| |lo|
- |printCode| |singleFactorBound| |obj| |permutation|
- |numberOfPrimitivePoly| |airyBi| |OMread| |balancedBinaryTree| |incr|
- |totalGroebner| |aLinear| |singularAtInfinity?| |rk4a| |c06ecf|
- |eisensteinIrreducible?| |anticoord| |cache| |primitivePart|
- |makingStats?| |univcase| |orbit| |hi| |unrankImproperPartitions1|
- |GospersMethod| |findBinding| |redmat| |imports| |lfintegrate|
- |schema| |limit| |complexRoots| |largest| |monicDecomposeIfCan|
- |identityMatrix| |nthFactor| |merge!| |bfKeys| |alphabetic?|
- |OMcloseConn| |char| |clearDenominator| |principalIdeal| |shift|
- |morphism| |topPredicate| |removeIrreducibleRedundantFactors|
- |hyperelliptic| |s17aff| |unravel| |modTree| |computeCycleEntry|
- |OMputEndAttr| |fortran| |depth| |normalize| |nullity| |badValues|
- |nsqfree| |indicialEquationAtInfinity| |aspFilename| |shallowExpand|
- |zerosOf| |minrank| |OMputEndAtp| |firstDenom| |setMaxPoints|
- |difference| |headReduced?| |relativeApprox| |physicalLength!|
- |OMencodingBinary| |dmpToHdmp| ~ |compose| |lineColorDefault| |tail|
- |hasHi| |composites| |subCase?| |localAbs|
- |solveLinearPolynomialEquation| |ran| |pop!| |dmp2rfi| |s19acf|
- |resultant| |selectOptimizationRoutines| |float| |lex| |rightOne|
- |separate| |open| |shellSort| |pushdown| |numberOfVariables|
- |tubeRadiusDefault| |cCoth| |mapmult| |s15aef| |idealiser|
- |rightAlternative?| |rangePascalTriangle| |besselY| |writeLine!|
- |range| |bitTruth| |exponential| |lagrange| |selectfirst| |critB|
- |leftMinimalPolynomial| |eigenMatrix| |s18dcf| |prefixRagits|
- |removeSuperfluousQuasiComponents| |pointData| |viewport3D| |dark|
- |f02aaf| |revert| |singular?| |showClipRegion| |clipParametric|
- |measure| |linear| |log2| |numer| |yellow| |nor| |updatF| |OMreceive|
- |resultantEuclideannaif| |fortranCompilerName| |argumentListOf|
- |phiCoord| |denom| |symbol?| |dimensions| |trapezoidalo|
- |specialTrigs| |makeEq| |front| |back| |Hausdorff| |generate|
- |shallowCopy| |polynomial| |f02bbf| |factorByRecursion| |complement|
- |startTableGcd!| |cycleRagits| |prime?| |pointColorDefault| F
- |thenBranch| |listRepresentation| |pi| |mainExpression| |iiacsch|
- |infinityNorm| |imaginary| |erf| |psolve| |reduceLODE|
- |roughUnitIdeal?| |incrementBy| |gramschmidt| |localReal?|
- |generateIrredPoly| |infinity| |quasiComponent| |quasiRegular|
- |safetyMargin| |union| |fibonacci| |extendedSubResultantGcd| |trim|
- |setMinPoints3D| |script| |henselFact| |expand| |coefChoose|
- |showFortranOutputStack| |OMgetAttr| |copy!| |meshPar2Var|
- |useSingleFactorBound?| |safeFloor| |reorder| |B1solve|
- |rootDirectory| |filterWhile| |mantissa| |e02ahf| |atrapezoidal|
- |status| |buildSyntax| |factor1| |LiePolyIfCan| |partialDenominators|
- |dilog| |open?| |curryRight| |selectsecond| |sequences| |filterUntil|
- |mapDown!| |kernel| |recur| |minus!| |nullSpace|
- |factorSquareFreeByRecursion| |drawCurves| |pleskenSplit| |cAcosh|
- |yCoord| |tex| |sin| |options| |calcRanges| |select| |draw|
- |viewpoint| |imagE| |variationOfParameters| |level|
- |cyclotomicFactorization| |interval| |stiffnessAndStabilityOfODEIF|
- |associates?| |result| |outputGeneral| |cos| |bits| |isExpt|
- |stoseInvertible?sqfreg| |setnext!| |subResultantChain| |cup| |less?|
- |binomThmExpt| |d02bbf| |indicialEquations| |tan| |prevPrime|
- |invertibleElseSplit?| |cAcot| |KrullNumber| |optimize| |augment|
- |integralMatrix| |mainVariable| |newLine| |compBound| |e01saf| NOT
- |string| |cot| |bezoutDiscriminant| |asechIfCan| |dom|
- |definingInequation| |elliptic?| |extractIfCan| |OMlistSymbols|
- |contractSolve| |swap!| OR |laurentIfCan| |quotientByP| |sec|
- |splitLinear| |binaryFunction| |makeObject| |typeLists|
- |createNormalElement| |numberOfComputedEntries| |graphImage|
- |element?| |binarySearchTree| |minPoly| AND |explicitlyEmpty?| |csc|
- |minimize| |crushedSet| |lowerCase!| |expIfCan| |removeSinhSq| |lazy?|
- |removeRedundantFactors| |binding| |generalizedInverse| |members|
- |normInvertible?| |asin| |leadingIdeal| |makeRecord|
- |basisOfCommutingElements| |setScreenResolution| |maxIndex| |coef|
- |setErrorBound| |argument| |rootProduct| |e04fdf|
- |complexNumericIfCan| |acos| |exprHasAlgebraicWeight| |low| |routines|
- |cTan| |s19abf| |factorGroebnerBasis| |equiv| |size?| |reverse!|
- |pointPlot| |atan| |realRoots| |algebraicDecompose| |makeSketch|
- |modulus| |middle| |viewSizeDefault| |multisect| |lazyIntegrate|
- |title| |f02awf| |acosIfCan| |rightExactQuotient| |acot| |cycleElt|
- |callForm?| |f02agf| |tubePointsDefault| |initTable!| |algebraic?|
- |principal?| |deepestInitial| |curry| |d02kef| |besselK| |asec|
- |integralBasis| |f02fjf| |hasoln| |cartesian| |nonLinearPart|
- |numeric| |getMultiplicationTable| |radicalRoots| |mapUp!|
- |cyclicEntries| |iisqrt2| |subMatrix| |lllp| |OMputEndObject| |acsc|
- |OMconnOutDevice| |generalLambert| |e| |radical| |Lazard| |imagj|
- |padicallyExpand| |notelem| |readLineIfCan!| |weight| |initials|
- |lazyPseudoRemainder| |sinh| |ratDenom| |fill!| |besselI|
- |OMencodingSGML| |plot| |minPol| |f01brf| |vertConcat|
- |scanOneDimSubspaces| |OMUnknownCD?| |cosh| |rightMult| |c06ebf|
- |bitCoef| |decompose| |tab1| |approxSqrt| |deref| |OMputAttr| |tree|
- |maxRowIndex| * |stopTable!| |tanh| |modularGcdPrimitive| |cAsech|
- |high| |expandPower| |axes| |solveInField| |isPower|
- |nonSingularModel| |cExp| |semiResultantReduitEuclidean| |coth|
- |constantOpIfCan| |musserTrials| |prinb| |host| |scripted?| |nextItem|
- |sample| |intermediateResultsIF| |d02raf| |sech| |traverse|
- |groebnerIdeal| |compdegd| |alternating| |debug|
- |reducedContinuedFraction| |UnVectorise| |lowerPolynomial|
- |nextPrimitiveNormalPoly| |changeNameToObjf|
- |removeRedundantFactorsInPols| |OMgetEndApp| |csch| |normalDenom|
- |mathieu11| |f01mcf| D |rischNormalize| |f04maf| |polygon?| |dot|
- |overlap| |interpretString| |adjoint| |asinh| |hessian|
- |RittWuCompare| |oblateSpheroidal| |li| |lepol| |autoReduced?|
- |select!| |stoseInternalLastSubResultant| |setFieldInfo| |f02aef|
- |gcdPolynomial| |acosh| |pushNewContour| |region|
- |cyclotomicDecomposition| |numerator| |putGraph|
- |stiffnessAndStabilityFactor| |palgLODE0| |realElementary|
- |gcdPrimitive| |integers| |atanh| |cSech| |printingInfo?| |cothIfCan|
- |ef2edf| |traceMatrix| |trace2PowMod| |s13aaf| |style| |leftUnits|
- |linears| |mathieu22| |acoth| |ridHack1| |product| |sn| |vedf2vef|
- |unknown| |OMputFloat| |bfEntry| |selectAndPolynomials|
- |sizePascalTriangle| |backOldPos| |setsubMatrix!| |diagonal?| |asech|
- |const| |setOfMinN| |minRowIndex| |factorsOfCyclicGroupSize| |zero?|
- |reflect| |torsionIfCan| |clearTheFTable| |sumSquares| |addPoint2|
- |swapColumns!| |d01akf| |cAsec| |measure2Result| |lighting|
- |chiSquare1| |atom?| |unary?| |cSec| |halfExtendedResultant1|
- |multiple| |every?| |asinIfCan| |diophantineSystem| |getOperator|
- |localIntegralBasis| |top!| |dn| |rootPoly| |complexSolve|
- |applyQuote| |quadraticForm| |matrixConcat3D| |surface| |entry|
- |unitNormalize| |block| |readLine!| |bracket| |wordInStrongGenerators|
- |f02axf| |raisePolynomial| |totalLex| |optpair|
- |stoseLastSubResultant| |edf2efi| |true| |print|
- |removeRoughlyRedundantFactorsInPols| |sturmSequence| |qelt| |c06gbf|
- |plotPolar| |impliesOperands| |PollardSmallFactor| |intcompBasis|
- |rootsOf| |graphState| |applyRules| |in?| |slash| |tableau| |and|
- |nextColeman| |leadingSupport| |coHeight| |pushup| |ruleset| |reify|
- |s19adf| |f2st| |solveLinear| |nthFractionalTerm| |xRange| |e02def|
- |cos2sec| |fmecg| |unparse| |c05adf| |pToHdmp| LODO2FUN |ParCondList|
- |OMgetFloat| |interpolate| |yRange| |numericIfCan| |elements| |Ci|
- |mainCharacterization| |c06gcf| |selectSumOfSquaresRoutines| |objects|
- |createThreeSpace| |leftZero| |po| SEGMENT
- |stoseIntegralLastSubResultant| |zRange| |graphs| |makeViewport2D|
- |prindINFO| |e01sbf| |isList| |f02akf| |suchThat| |base|
- |numberOfImproperPartitions| |iidsum| |univariatePolynomials| |map!|
- |rquo| |e01bhf| |atanIfCan| |sign| |janko2| |newTypeLists| |diff|
- |mainCoefficients| |cyclic| |lastSubResultantElseSplit| |qsetelt!|
- |mix| |lookup| |argscript| |OMencodingUnknown| |ddFact| |root| |hue|
- |maxColIndex| |prefix| |numberOfChildren| |pdf2ef| |xCoord|
- |trailingCoefficient| |compound?| |gcdcofactprim| |ParCond|
- |symbolIfCan| |supDimElseRittWu?| |alternative?|
- |selectNonFiniteRoutines| |dec| |e02baf| |rowEchelonLocal|
- |removeZero| |denomLODE| |cyclePartition| |outlineRender| |qroot|
- |symbolTableOf| |solid?| |subResultantGcd| |s17ahf| |setClosed|
- |splitNodeOf!| |limitPlus| |mainPrimitivePart| |gcdprim|
- |expextendedint| |charClass| |leftRecip| |differentialVariables|
- |unexpand| |setEpilogue!| |karatsuba| |algintegrate|
- |selectODEIVPRoutines| |quasiMonicPolynomials| |condition| |e04jaf|
- |minordet| |newReduc| |rk4| |e02bdf| |Frobenius| |acsch| |palgint|
- |polCase| |testDim| |linearPart| |minset| |basisOfLeftNucleus|
- |approximants| |commutative?| |f01rcf| |leftGcd| |variable?|
- |internal?| |rootOf| |inverseIntegralMatrix| |basis| |uniform|
- |squareFreePrim| |concat| |OMbindTCP| |makeSin| |conjugate| |meatAxe|
- |currentScope| |ScanFloatIgnoreSpaces| |anfactor| |viewPhiDefault|
- |s20adf| |collectQuasiMonic| |symFunc| |iisqrt3| |zCoord| |SFunction|
- |rootNormalize| |prod| |elliptic| |OMputBind| |triangulate| |sdf2lst|
- |normalElement| |OMParseError?| |bivariateSLPEBR| |mesh?| |complete|
- |float?| |oddInfiniteProduct| |previous| |tower| |f2df|
- |linearAssociatedLog| |qqq| |reducedQPowers| |s17aef| |child?|
- |inRadical?| |c06frf| |numerators| |stoseSquareFreePart| |inv|
- |leftLcm| |coord| |gderiv| |iprint| |property| |printHeader|
- |cycleTail| |OMmakeConn| |subtractIfCan| |iicsch| |ord| |ground?|
- |removeRoughlyRedundantFactorsInContents| |outputAsTex|
- |generalizedContinuumHypothesisAssumed?| |chiSquare| |nthExpon|
- |OMputApp| |s17dlf| |viewZoomDefault| |rootRadius|
- |leftRankPolynomial| |nextPrimitivePoly| |ground| |tubePoints|
- |LyndonCoordinates| |vconcat| |mapdiv| |makeTerm| |nthRootIfCan|
- |readIfCan!| |Si| |s17dhf| |edf2df| |OMgetBVar| |leadingMonomial|
- |determinant| |lifting| |d03faf| |univariatePolynomialsGcds|
- |algSplitSimple| |rroot| |controlPanel| |units| |inHallBasis?|
- |tValues| |s18aff| |squareMatrix| |complexLimit| |exquo|
- |leadingCoefficient| |transcendent?| |complexNumeric|
- |euclideanGroebner| |rightQuotient| |changeVar| |sinhcosh|
- |splitDenominator| |escape| |removeRoughlyRedundantFactorsInPol|
- |swap| |numberOfOperations| |jacobiIdentity?| |div| |monicRightDivide|
- |primitiveMonomials| |iicot| |reopen!| |c05pbf| |d03edf| |fprindINFO|
- |purelyAlgebraic?| |palglimint| |cAsinh| |quo| |imagk| |extractClosed|
- |reductum| |kernels| |constDsolve| |fortranReal| |getOrder| |output|
- |leaf?| |zeroDimPrimary?| |basisOfCentroid| |particularSolution|
- |f01ref| |diagonal| |characteristic| |monicModulo| |univariate|
- |closeComponent| |edf2ef| |formula| |order| |getMeasure| |member?|
- |makeCos| |symmetric?| |compile| |setPoly| |rem| |Beta|
- |virtualDegree| |generalInfiniteProduct| |expt| |target| |derivative|
- |createLowComplexityNormalBasis| |code| |critpOrder| |llprop| |move|
- |useNagFunctions| |outputArgs| |character?| |trigs2explogs| |iiatan|
- |poisson| |perfectSquare?| |recip| |cAcoth| |viewport2D|
- |alphanumeric| |genus| |s01eaf| |resize| |factor| |SturmHabicht| BY
- |sncndn| |fractionFreeGauss!| |btwFact| |imagi| |integralAtInfinity?|
- |remove!| |LyndonBasis| |factorSquareFree| |consnewpol|
- |diagonalMatrix| |sqrt| |unprotectedRemoveRedundantFactors| |rotatez|
- |nilFactor| |getStream| |monicRightFactorIfCan| |untab| |secIfCan|
- |nrows| |expenseOfEvaluation| |binary| |real| |OMreadFile|
- |LowTriBddDenomInv| |colorDef| |approxNthRoot| |inverseColeman|
- |stoseInvertibleSet| |coefficient| |lexGroebner| |setref| |ncols|
- |homogeneous?| |completeHensel| |nthFlag| |lifting1| |imag| |dmpToP|
- |operators| |df2fi| |d03eef| |zeroVector| |internalDecompose| |delete|
- |cross| |directProduct| |initiallyReduced?| |dequeue|
- |chainSubResultants| |recolor| |antiCommutator| |mkPrim|
- |rectangularMatrix| |s17akf| |drawStyle| |cAcsc| |polyRicDE| |s20acf|
- |rightNorm| |writeBytes!| |createPrimitiveNormalPoly|
- |createGenericMatrix| |whileLoop| |genericRightMinimalPolynomial|
- |bandedJacobian| |cSin| |lhs| |exactQuotient!| |maxdeg| |exprToGenUPS|
- |imagI| |elseBranch| |mapSolve| |destruct| |fortranTypeOf|
- |binaryTree| |checkForZero| |constantLeft| |bernoulliB| |rhs|
- |integral| |monomial?| |algDsolve| |unit| |flexibleArray| |groebSolve|
- |charthRoot| |tubeRadius| |terms| |makeGraphImage|
- |halfExtendedSubResultantGcd1| |d01amf| |content| |reduced?|
- |factorSFBRlcUnit| |ref| |lexTriangular| |generalSqFr| |eigenvectors|
- |simplifyPower| |LyndonWordsList1| |LagrangeInterpolation|
- |leftScalarTimes!| |solve| |scalarMatrix| |iiperm| |tan2cot|
- |drawComplex| |realEigenvalues| |Vectorise| |OMgetError| |coleman|
- |deriv| |curve| |fintegrate| |basisOfRightNucloid| UTS2UP
- |brillhartTrials| |setFormula!| |node| |fortranLiteralLine| |f07fef|
- |monomial| |eigenvalues| |leftNorm| |cSinh| |ricDsolve| |OMgetApp|
- |cotIfCan| |certainlySubVariety?| |setelt| |initial| |distFact|
- |sqfrFactor| |unitCanonical| |scaleRoots| |c06fuf| |multivariate|
- |selectMultiDimensionalRoutines| |reduceBasisAtInfinity|
- |chineseRemainder| |entry?| |maxPoints3D| |cot2tan| |gradient|
- |create| |completeEval| |viewDeltaXDefault| |variables| |asecIfCan|
- |setStatus| |repeating| |byte| |super| |sinhIfCan| |makeYoungTableau|
- |mainSquareFreePart| |copy| |hasPredicate?| |stopTableInvSet!|
- |socf2socdf| |polyPart| |arity| |diag| |primitive?|
- |rightMinimalPolynomial| |pseudoQuotient| |lieAlgebra?| |c02agf|
- |substring?| |removeZeroes| |clipPointsDefault| |readable?|
- |unitNormal| |normalDeriv| |radicalSimplify| |paraboloidal| |log10|
- |firstSubsetGray| |leftRegularRepresentation| |ptFunc| |mappingAst|
- |OMopenString| |bezoutMatrix| |minPoints3D| |optAttributes|
- |tanintegrate| |bandedHessian| |match?| |bitand|
- |drawComplexVectorField| |e01bgf| |quasiMonic?| |top| |imagK|
- |suffix?| |birth| |autoCoerce| |leftExactQuotient| |cCsch|
- |decreasePrecision| |implies?| |figureUnits| |subNodeOf?| |bitior|
- |continue| |branchPoint?| F2FG |e04naf|
- |standardBasisOfCyclicSubmodule| |thetaCoord| |chebyshevU| |taylor|
- |padecf| |csch2sinh| |removeCosSq| |square?| |cyclicEqual?| |width|
- |lfextlimint| |e04gcf| |subNode?| |getSyntaxFormsFromFile| UP2UTS
- |primPartElseUnitCanonical!| |prefix?| |dihedral| |debug3D| |laurent|
- |isOp| |OMputVariable| |OMReadError?| |computeInt| |OMlistCDs|
- |f02abf| |interReduce| |mathieu12| |countRealRootsMultiple|
- |subscriptedVariables| |karatsubaOnce| |subresultantSequence|
- |tan2trig| |puiseux| |rightExtendedGcd| |numberOfHues| |part?|
- |setPredicates| |resultantnaif| |errorKind| |mainForm| |negative?|
- |leadingIndex| |acschIfCan| |partialFraction| |mainVariable?|
- |rootSimp| |zeroDimPrime?| |lastSubResultantEuclidean|
- |subresultantVector| |rCoord| |generators| |tracePowMod| |leftOne|
- |lazyIrreducibleFactors| |inverseLaplace| = |generalizedEigenvector|
- |equation| |flexible?| |rationalApproximation| |generic| |signAround|
- |argumentList!| |roughBase?| |getExplanations| |physicalLength|
- |omError| |linkToFortran| |squareFree| |appendPoint| |LyndonWordsList|
- |primitiveElement| |quotedOperators| |rightScalarTimes!|
- |rightRemainder| |rootSplit| |expenseOfEvaluationIF| |reverseLex| <
- |factorPolynomial| |characteristicSet| |optional| |lowerCase?|
- |f02wef| |normFactors| |areEquivalent?| |infix?| |positiveSolve| |say|
- |updatD| |adaptive| > |cschIfCan| |key?| |recoverAfterFail|
- |increasePrecision| |dominantTerm| |extractSplittingLeaf| |vectorise|
- |mask| |shiftLeft| |elementary| |makeUnit| |e02dff| <= |reseed|
- |symmetricDifference| |summation| |implies|
- |leftCharacteristicPolynomial| |viewThetaDefault| |expintfldpoly|
- |stoseInvertible?| |getZechTable| >= |coordinate|
- |createRandomElement| |iiasinh| |polyRDE| |normalizeAtInfinity|
- |insertTop!| |palgRDE0| |setProperties| |internalInfRittWu?| |regime|
- |identity| |module| |iiacoth| |getMatch| |d01bbf| |xor|
- |numberOfIrreduciblePoly| |fixedDivisor| |polarCoordinates|
- |lazyPseudoQuotient| |bipolarCylindrical|
- |setLegalFortranSourceExtensions| |radicalEigenvectors|
- |lazyVariations| |infRittWu?| |minPoints| |match| |basisOfLeftNucloid|
- |solveLinearPolynomialEquationByFractions| |rightRankPolynomial|
- |hasSolution?| |nextLatticePermutation| |name|
- |radicalOfLeftTraceForm| |nextSubsetGray| |stFunc2|
- |irreducibleRepresentation| + |e02ajf| |f07adf| |times!| |modifyPoint|
- |OMputObject| |body| |updateStatus!| |resetVariableOrder| |pow|
- |normDeriv2| |legendre| |reset| |semiSubResultantGcdEuclidean2| -
- |s14abf| |enqueue!| |push| |hdmpToDmp| |sylvesterSequence| |gbasis|
- |OMgetEndAtp| |schwerpunkt| |qfactor| |explicitEntries?| |pastel|
- |OMgetVariable| / |wrregime| |rischDEsys| |constructorName| |laguerre|
- |showTheFTable| |normalForm| |nextNormalPoly| |predicates| |coerceP|
- |representationType| |overlabel| |write| |safeCeiling| |triangular?|
- |integer?| |antisymmetricTensors| |compiledFunction| |PDESolve|
- |rational| |isPlus| |tanAn| |iisec| |save| |trueEqual|
- |limitedIntegrate| |primes| |asinhIfCan| |pointSizeDefault|
- |bivariate?| |clipWithRanges| |complexExpand| |mkcomm| |ceiling|
- |e04mbf| |lift| |showScalarValues|
- |generalizedContinuumHypothesisAssumed| |meshPar1Var| |quoted?|
- |doubleDisc| |setAttributeButtonStep| |roughSubIdeal?| |sh| |reduce|
- |resultantReduit| |nextPartition| |totalDifferential| |mainVariables|
- |algebraicOf| |indiceSubResultant| |eyeDistance|
- |genericLeftDiscriminant| |parabolic| |nextIrreduciblePoly| |iroot|
- |setAdaptive| |resetNew| |cAsin| |listYoungTableaus| |outputForm|
- |basicSet| |semiDiscriminantEuclidean| |leastAffineMultiple|
- |normalizedAssociate| |graeffe| |ode1| |mesh|
- |basisOfRightAnnihilator| |primPartElseUnitCanonical| |iisin|
- |numberOfCycles| |moduleSum| |maximumExponent| |algebraicSort|
- |parametersOf| |constant| |fortranCarriageReturn| |f04mcf|
- |sumOfSquares| |critBonD| |s17adf| |roughEqualIdeals?| |nullary?|
- |center| |permutations| |lyndon| |monic?| |cCot| |complexElementary|
- |sayLength| |linear?| |pr2dmp| |oddintegers| |prologue| |contains?|
- |numberOfComponents| |stirling1| |messagePrint| |palgLODE|
- |leftFactor| |makeViewport3D| |monomialIntPoly| |insert| |epilogue|
- |readBytes!| |quartic| |showTheSymbolTable| |ocf2ocdf| |e04ucf|
- |multMonom| |nil| |roman| |getCurve| |postfix|
- |rewriteIdealWithQuasiMonicGenerators| |closedCurve?|
- |evaluateInverse| |ListOfTerms| |t| |clearCache| |mainKernel|
- |supRittWu?| |drawToScale| |fTable| |sinh2csch| |cscIfCan|
- |extendIfCan| |OMgetEndAttr| |internalLastSubResultant| |cycleSplit!|
- |midpoints| |constant?| |iomode| |lieAdmissible?| |distdfact| |df2st|
- |and?| |transform| |eq| |primitivePart!| |leftTrace| |bat1|
- |fillPascalTriangle| |s18adf| |constantCoefficientRicDE| |retract|
- |shuffle| |approximate| |delta| Y |universe| |iter| |c06gqf|
- |parametric?| |qPot| |c06fqf| |rst| |null?| |squareFreeLexTriangular|
- |withPredicates| |sts2stst| |one?| |d01gbf| |var2StepsDefault| |df2mf|
- |RemainderList| |external?| |close| |countable?| |flagFactor|
- |fullDisplay| |sechIfCan| |eval| |outputFixed| |newSubProgram|
- |getVariableOrder| |setEmpty!| |pomopo!| |expandTrigProducts|
- |OMputBVar| |lquo| |subset?| |entries| |imagJ| |leftMult| |display|
- |primlimintfrac| |direction| |goodnessOfFit| |minColIndex| |cosh2sech|
- |genericLeftMinimalPolynomial| |doubleResultant| |zeroDim?| |kind|
- |isobaric?| |getProperties| |critMTonD1| |assign| |decomposeFunc|
- |retractIfCan| |prime| |useEisensteinCriterion| |wronskianMatrix|
- |forLoop| |exp| |elColumn2!| |op| |setchildren!| |toroidal|
- |yCoordinates| |lambda| |s21bcf| |child| |dim| |or?| |copyInto!|
- |stronglyReduce| |ode2| |exprHasLogarithmicWeights| |ranges|
- |conjugates| |intPatternMatch| |rewriteSetWithReduction|
- |multiEuclideanTree| |leftExtendedGcd| |zoom| |input| |children|
- |OMputAtp| |aCubic| |mvar| |monicCompleteDecompose| |showSummary|
- |multiEuclidean| |pascalTriangle| |divideIfCan!| |insert!|
- |setImagSteps| |library| |jordanAdmissible?| |sech2cosh| |ignore?|
- |closed?| |indicialEquation| |packageCall| |fixedPointExquo| |isMult|
- |orbits| |extend| |showAttributes| |linearDependenceOverZ| |powerSum|
- |acoshIfCan| |inverseIntegralMatrixAtInfinity| |beauzamyBound|
- |rischDE| |plus!| |positive?| |properties| |subscript|
- |bezoutResultant| |iCompose| |lfinfieldint| |ptree|
- |wordsForStrongGenerators| |setlast!| |makeprod| |rur| |translate|
- |palgextint0| |mainValue| |addPoint| |set| |parent|
- |selectIntegrationRoutines| |lp| |connect| |complexZeros|
- |outputMeasure| |overbar| |repeatUntilLoop| |writeByteIfCan!| |map|
- |point| |unit?| |cAcos| |leastMonomial| |term| |UpTriBddDenomInv|
- |rightFactorCandidate| |tanQ| |commutativeEquality| |cCsc| |queue|
- |sec2cos| |absolutelyIrreducible?| |OMreadStr| |normalized?| |redPo|
- |irreducibleFactors| |definingPolynomial| |irreducible?| |conjug|
- |pointLists| |zeroDimensional?| |iiabs| |sum| |f01qef| |normalise|
- |predicate| |update| |series| |monomialIntegrate| |perfectNthPower?|
- |removeSinSq| |second| |symmetricRemainder| |htrigs| |d01anf|
- |operator| |mpsode| |commonDenominator| |definingEquations|
- |setvalue!| |third| |rightTrace| |numberOfFractionalTerms|
- |reducedForm| |functionIsOscillatory| |startStats!| |convert|
- |youngGroup| |setVariableOrder| |lambert| |position!|
- |numericalOptimization| |column| |radPoly| |testModulus| |pquo|
- |basisOfNucleus| |cyclotomic| |mapUnivariate| |collectUpper|
- |mapBivariate| |interpret| |sup| |normal01| |min| |antiCommutative?|
- |iExquo| |zeroSetSplit| |simpleBounds?| |hMonic| |generic?|
- |leftTraceMatrix| |pole?| |arguments| |fractionPart| |ffactor|
- |internalIntegrate0| |multiplyCoefficients| |basisOfRightNucleus|
- |mainContent| |e02aef| |cTanh| |squareFreeFactors| |prem| |position|
- |leftPower| |subResultantGcdEuclidean| |show| |OMUnknownSymbol?|
- |se2rfi| |getCode| |bumptab| |OMgetSymbol| |innerSolve1| |aQuartic|
- |exprHasWeightCosWXorSinWX| |sub| |cAtan|
- |indiceSubResultantEuclidean| |dictionary| |coerceImages| |upperCase?|
- |derivationCoordinates| |integralLastSubResultant| |void| |parameters|
- |factorSquareFreePolynomial| |trace| |partialQuotients|
- |OMgetEndError| |s17dcf| |triangSolve| |enterInCache|
- |complexEigenvectors| |listOfLists| |radicalEigenvector| |wreath|
- |genericPosition| |hdmpToP| |curve?| |pointColor| |leftDiscriminant|
- |s18aef| |listConjugateBases| |solveid| |pushdterm| |iilog|
- |lazyResidueClass| |shrinkable| |leadingBasisTerm| |pureLex|
- |duplicates?| |OMputInteger| |patternMatch| |validExponential|
- |addiag| |createMultiplicationTable| |leadingExponent|
- |nextsubResultant2| |LazardQuotient| |iiexp| |varselect| |ramified?|
- |printInfo!| |plenaryPower| |dihedralGroup| |scale| |upperCase|
- |objectOf| |lazyEvaluate| |f02xef| |invmod| |roughBasicSet|
- |nextsousResultant2| |rewriteIdealWithHeadRemainder| |subTriSet?|
- |integralMatrixAtInfinity| |setleaves!| |generalizedEigenvectors|
- |highCommonTerms| |toScale| |monomRDEsys| |baseRDE| |hexDigit?|
- |tanNa| |createMultiplicationMatrix| |ldf2lst| |signatureAst|
- |normalizeIfCan| |semiSubResultantGcdEuclidean1| |upperCase!|
- |getDatabase| |randomR| |repSq| |genericRightDiscriminant|
- |antisymmetric?| |ScanFloatIgnoreSpacesIfCan| |findCycle| |expr|
- |stFuncN| |freeOf?| |getlo| |besselJ| |computePowers| |e02akf|
- |quadratic?| |dimension| |modifyPointData| |lSpaceBasis| |f04axf|
- |parts| |leftRemainder| |d01gaf| |multiplyExponents| |edf2fi|
- |sturmVariationsOf| |lfunc| |green| |prolateSpheroidal|
- |initializeGroupForWordProblem| |leviCivitaSymbol| |airyAi| |read!|
- |algebraicVariables| |exptMod| |lintgcd| |kovacic| |stFunc1|
- |infieldint| |identification| |dAndcExp| |explogs2trigs| |variable|
- |increment| |showTheRoutinesTable| |divideIfCan| |subst|
- |explicitlyFinite?| |outputFloating| |OMsend| |inf| |chebyshevT|
- |loadNativeModule| |iterators| |UP2ifCan| |OMputEndApp| |coth2tanh|
- |satisfy?| |uncouplingMatrices| |pol| |returns| |mulmod|
- |ramifiedAtInfinity?| |shade| |composite| |setTex!| |totolex|
- |tanh2coth| |LiePoly| |rightRecip| |endOfFile?| |makeVariable|
- |countRealRoots| |error| |next| |build| |OMgetObject| |OMgetBind|
- |sqfree| |plusInfinity| |extensionDegree| |s13acf| |iiasin|
- |closedCurve| |assert| |Aleph| |taylorIfCan| |vspace| |getGraph|
- |complex?| |minusInfinity| |init| |userOrdered?|
- |tableForDiscreteLogarithm| |power| |reverse| |doubleRank|
- |numberOfNormalPoly| |root?| |s17def| |acotIfCan| |mainMonomial|
- |fortranLiteral| |lastSubResultant| |permanent| |multiple?| |nodes|
- |rightDiscriminant| |semiIndiceSubResultantEuclidean| |tanSum|
- |associatedSystem| |deepExpand| |datalist| |setValue!|
- |extendedEuclidean| |mapUnivariateIfCan| |rowEch| |patternMatchTimes|
- |unitsColorDefault| |functionIsContinuousAtEndPoints| |linGenPos|
- |OMunhandledSymbol| |movedPoints| |possiblyNewVariety?|
- |showTheIFTable| |hostPlatform| |setButtonValue| |FormatRoman| |check|
- |karatsubaDivide| |seriesSolve| |unrankImproperPartitions0|
- |fortranLogical| |OMgetEndObject| |getButtonValue| |getGoodPrime|
- |transcendentalDecompose| |droot| |goodPoint| FG2F |addPointLast|
- |type| |equiv?| |subHeight| |write!| |frobenius| |groebner?|
- |numberOfFactors| |rightPower| |partitions| |pToDmp| |iicosh|
- |decimal| |e04dgf| |rank| |f04faf| |listexp| |factorset| |adaptive3D?|
- |string?| |bumptab1| |segment| |evenInfiniteProduct| |e02bbf|
- |presuper| |rootOfIrreduciblePoly| |writable?| |diagonalProduct|
- |genericRightTrace| |semiDegreeSubResultantEuclidean| |OMsetEncoding|
- |cyclicGroup| |constantRight| |separateDegrees|
- |resultantReduitEuclidean| |decrease| |goto| |component| |exQuo|
- |divide| |rdHack1| |purelyAlgebraicLeadingMonomial?| |superHeight|
- |binaryTournament| |solveLinearPolynomialEquationByRecursion|
- |shiftRight| |balancedFactorisation| |rootBound| |OMputSymbol|
- |makeResult| |rationalPower| |patternVariable| |inconsistent?|
- |quatern| |localUnquote| |tanIfCan| |primeFrobenius| |critM|
- |symmetricPower| |f04adf| |stoseInvertibleSetreg|
- |createPrimitiveElement| |e02gaf| |badNum| |cons| |split!| |f02adf|
- |mkAnswer| |light| |atoms| |binomial| |solveLinearlyOverQ|
- |getBadValues| |medialSet| |lists| |evenlambert| |clearTheIFTable|
- |totalDegree| |makeCrit| |dimensionOfIrreducibleRepresentation| |inR?|
- |symmetricGroup| |harmonic| |space| |sort| |more?| |finite?| |concat!|
- |romberg| |clip| |octon| |triangularSystems| |stopMusserTrials|
- |endSubProgram| |nary?| |push!| |currentSubProgram| |alphanumeric?|
- |primlimitedint| |setprevious!| |computeBasis| |trunc|
- |alternatingGroup| |abs| |tubePlot| |transcendenceDegree| |d02bhf|
- |rightDivide| |frst| |insertBottom!| |rightUnits| |kmax|
- |bivariatePolynomials| |accuracyIF| |sizeMultiplication| |source|
- |paren| |iidprod| |reciprocalPolynomial| |maxPoints|
- |semiResultantEuclideannaif| |distance| |squareFreePolynomial|
- |numberOfDivisors| |fixPredicate| |lfextendedint| |removeConstantTerm|
- |precision| |pushucoef| |supersub| |random| |number?| |univariate?|
- |aromberg| |perspective| |exponentialOrder| |mr| |moduloP| |cCosh|
- |cubic| |idealSimplify| |extractProperty| |factorials| |round|
- |pdf2df| |iiGamma| GF2FG |null| |quickSort| |primintfldpoly| |list?|
- |jordanAlgebra?| |changeWeightLevel| |fi2df| |iteratedInitials| |case|
- |monicDivide| |rightCharacteristicPolynomial| |abelianGroup| |algint|
- |rewriteIdealWithRemainder| |initiallyReduce| |option?| |symbolTable|
- |heap| |bright| |primintegrate| |Zero| |structuralConstants| |sincos|
- |viewDefaults| |bounds| |saturate| |stronglyReduced?| |finiteBasis|
- |logIfCan| |vark| |Is| |One| |color| |zeroOf| |matrixDimensions|
- |groebgen| |sylvesterMatrix| |commutator| |pushFortranOutputStack|
- |setLabelValue| |crest| |opeval| |s15adf| |rightFactorIfCan|
- |popFortranOutputStack| |solve1| |allRootsOf| |indices| |varList|
- |resetBadValues| |lprop| |makeFloatFunction| |adaptive?| |setPosition|
- |sinIfCan| |cosIfCan| |hasTopPredicate?| |degreeSubResultant| |powern|
- |BumInSepFFE| |outputAsFortran| |mergeFactors| |linearAssociatedOrder|
- |linearMatrix| |Ei| |mkIntegral| |genericLeftNorm|
- |functionIsFracPolynomial?| |permutationGroup| |extract!|
- |doubleFloatFormat| |critT| |categories| |wholePart| |e01daf|
- |possiblyInfinite?| |submod| |coerceS| |nextPrime| |f04asf| |failed?|
- |key| |clipSurface| |complementaryBasis| |perfectNthRoot| |elt|
- |dimensionsOf| |generalTwoFactor| |hconcat| |pmintegrate|
- |kroneckerDelta| |numberOfMonomials| |HenselLift|
- |removeRedundantFactorsInContents| |leftDivide| |constantKernel|
- |probablyZeroDim?| |toseSquareFreePart| |setProperty!| |enumerate|
- |filename| |wordInGenerators| |palgRDE| |magnitude| |insertRoot!|
- |viewWriteDefault| |expint| |setTopPredicate| GE |associatedEquations|
- |has?| |hermite| |subspace| |separateFactors| |not?| |unmakeSUP|
- |tablePow| |heapSort| |pair?| GT |any| |red| |iisinh| |operation|
- |parseString| |denomRicDE| |s14baf| |parse| |rightZero|
- |sumOfKthPowerDivisors| |coerceL| |rotate| LE |addMatch| |iicos|
- |linearlyDependentOverZ?| |fortranComplex| |ScanRoman| |deepCopy|
- |presub| |extendedResultant| |notOperand| LT |att2Result| |c06fpf|
- |outputList| |label| |equivOperands| |subResultantsChain|
- |rationalIfCan| |jacobi| |xn| |lowerCase| |realSolve| |complex|
- |symmetricProduct| |deleteProperty!| |d01fcf| |contract|
- |cRationalPower| |infLex?| |subQuasiComponent?| |divisorCascade|
- |npcoef| |lazyPquo| |is?| |trivialIdeal?| |Nul| |Lazard2| |palgextint|
- |bindings| |OMsupportsSymbol?| |showAllElements| |digit?|
- |associative?| |gethi| |f01maf| |distribute| |baseRDEsys| |neglist|
- |mainDefiningPolynomial| |sortConstraints| |showArrayValues|
- |genericLeftTraceForm| |ratpart| |plus| |s21bbf| |nil?| |f01bsf|
- |vector| |multinomial| |readByteIfCan!| |divergence| |keys| |even?|
- |central?| |exponents| |generalPosition| |f01rdf| |OMgetInteger|
- |differentiate| |partition| |duplicates| |degreeSubResultantEuclidean|
- |rowEchelon| |copies| |elRow1!| |currentEnv| |stoseInvertible?reg|
- |rationalPoint?| |cyclicSubmodule| |curveColorPalette| |term?|
- |seriesToOutputForm| |discriminantEuclidean| |var1Steps| |nthCoef|
- |mindegTerm| |extension| |bumprow| |selectPolynomials| |head|
- |factorAndSplit| |createIrreduciblePoly| |modularGcd| |limitedint|
- |mapGen| |times| |innerEigenvectors| |directSum| |OMencodingXML|
- |infix| |laguerreL| |cycles| |search| |createZechTable| |represents|
- |index| |leftQuotient| |leadingCoefficientRicDE| |aQuadratic|
- |cyclic?| |invmultisect| |brillhartIrreducible?| |sumOfDivisors|
- |realEigenvectors| |companionBlocks| |subPolSet?| |inspect|
- |getConstant| |regularRepresentation| |lazyPremWithDefault| |rk4qc|
- |completeEchelonBasis| |option| |call| |viewWriteAvailable| |twist|
- |zeroSetSplitIntoTriangularSystems| |minGbasis|
- |purelyTranscendental?| |randomLC| |c06gsf| |iiacsc| |nonQsign| |mat|
- |createPrimitivePoly| |trapezoidal| |algebraicCoefficients?| |list|
- |monom| |any?| |pair| |increase| |real?| |delete!| |fglmIfCan|
- |divisor| |createNormalPrimitivePoly| |exactQuotient| |car| |setRow!|
- |getPickedPoints| |blue| |polar| |lyndonIfCan|
- |halfExtendedSubResultantGcd2| |declare| |f02bjf| |complexEigenvalues|
- |cdr| |slex| |currentCategoryFrame| |showAll?| |rightUnit| |qinterval|
- |polynomialZeros| |Gamma| |arg1| |iiasech| |common| |setDifference|
- |curryLeft| |odd?| |var2Steps| |univariatePolynomial| |elem?|
- |checkPrecision| |lazyPrem| |nextNormalPrimitivePoly| |makeop| |arg2|
- |function| |integralRepresents| |setIntersection| |horizConcat|
- |f07aef| |nthExponent| |reduction| |max| |delay| |ellipticCylindrical|
- |close!| |viewPosDefault| |arrayStack| |integralCoordinates|
- |setUnion| |mergeDifference| |d01asf| |tensorProduct| |stirling2|
- |convergents| |subSet| |c02aff| |rightTrim| |leaves| |conditions|
- |e02daf| |typeList| |OMputEndError| |apply|
- |internalSubQuasiComponent?| |makeSUP| |irreducibleFactor| |OMgetType|
- |powerAssociative?| |discriminant| |leftTrim| |factorOfDegree|
- |e04ycf| |graphCurves| |s19aaf| |andOperands| |d02gaf| |addmod|
- |minimumDegree| |cycleEntry| |iicoth| |size| |reduceByQuasiMonic|
- |viewDeltaYDefault| |listOfMonoms| |tube| |pmComplexintegrate|
- |OMconnInDevice| |integralDerivationMatrix| |completeHermite|
- |leftAlternative?| |bag| |choosemon| |SturmHabichtCoefficients|
- |setStatus!| |split| |skewSFunction| |norm| |infieldIntegrate| |log|
- |iiacosh| |digamma| |f07fdf| |nextSublist| |useSingleFactorBound|
- |rules| |singularitiesOf| |identitySquareMatrix| |reindex|
- |changeName| |iifact| |expressIdealMember| |expPot| |first|
- |leadingTerm| |relationsIdeal| |euclideanNormalForm| |bernoulli|
- |leastPower| |f02aff| |mapExpon| |screenResolution| |intersect|
- |pattern| |rest| |fracPart| |BasicMethod| |monomRDE| |simplifyLog|
- |rule| |over| |addBadValue| |getMultiplicationMatrix|
- |primextendedint| |substitute| |divideExponents| |iisech| |empty?|
- |torsion?| |branchPointAtInfinity?| |logGamma| |mindeg| |remainder|
- |removeDuplicates| |OMputError| |d02ejf| |rational?| |multiset|
- |permutationRepresentation| |transpose| |OMputString| |euclideanSize|
- |e01sef| |evaluate| |iiatanh| |modularFactor| |invertibleSet|
- |rationalPoints| |primeFactor| |scopes| |biRank| |trigs| |/\\|
- |atanhIfCan| |lcm| |ipow| |uniform01| |message| |degree| |rightRank|
- |ScanArabic| |resultantEuclidean| |mapExponents| |LazardQuotient2|
- |HermiteIntegrate| |\\/| |pade| |integral?| |s14aaf|
- |topFortranOutputStack| |e02bef| |df2ef| |id| |exp1| |boundOfCauchy|
- |append| |linearAssociatedExp| |bottom!| |fractRadix| |nullary|
- |rightLcm| |overset?| |basisOfMiddleNucleus| |OMserve| |gcd|
- |externalList| |simpsono| |extractIndex| |exponent| |e02adf| |table|
- |port| |sparsityIF| |coth2trigh| |false| |coercePreimagesImages|
- |eigenvector| |setOrder| |printTypes| |empty| |new| |simpson|
- |removeDuplicates!| |c05nbf| |FormatArabic| |screenResolution3D|
- |rootPower| |monomials| |branchIfCan| |setAdaptive3D|
- |infiniteProduct| |quoByVar| |bitLength| |axesColorDefault|
- |unaryFunction| |collectUnder| |bombieriNorm| |nthr| |index?|
- |printInfo| |ratPoly| |test| |equality| |s18acf| |quadratic|
- |legendreP| |zero| |leftRank| |monicLeftDivide| |lyndon?| |e01bff|
- |comp| |#| |palgintegrate| |charpol| |s18def| |find|
- |genericRightNorm| |inc| |OMputEndBind| |removeCoshSq|
- |radicalEigenvalues| |outputSpacing| |primextintfrac| |unvectorise|
- |minimalPolynomial| |And| |bat| |tryFunctionalDecomposition| |s17acf|
- |e02ddf| |laplace| |knownInfBasis| |polygamma|
- |semiResultantEuclidean1| |cycleLength| |Or| |characteristicSerie|
- |meshFun2Var| |e01baf| |cot2trig| |scan| |critMonD1| |powmod|
- |infinite?| |cCos| |Not| |iflist2Result| |setleft!| |remove| |stack|
- |clearTheSymbolTable| |setColumn!| |rightGcd| |upDateBranches| |ideal|
- |hexDigit| |cycle| |iitan| |domainOf| |d01apf| |e02dcf|
- |prepareSubResAlgo| |pushuconst| |hermiteH| |deepestTail| |last|
- |power!| |solid| |e02zaf| |logical?| ~= |setMaxPoints3D| |taylorRep|
- |assoc| |left| |constantOperator| |factorList|
- |rightRegularRepresentation| |rarrow| |removeSquaresIfCan|
- |setRealSteps| |fixedPoints| |coerce| |startTableInvSet!| |right|
- |inverse| |extractBottom!| |latex| |integralBasisAtInfinity|
- |perfectSqrt| |construct| |superscript| |eulerE| |mathieu23|
- |leftFactorIfCan| |pointColorPalette| |genericLeftTrace| |makeFR|
- |digits| |quasiRegular?| |exprex| |tRange| |sizeLess?| |c06ekf|
- |numericalIntegration| |setright!| |iFTable| |curveColor| |rotatey|
- |loopPoints| |ravel| |innerSolve| |createNormalPoly| |twoFactor|
- |s21baf| |reducedSystem| |fractRagits| |reshape| |firstNumer|
- |palgint0| |ode| |quasiAlgebraicSet| |complexForm| ** |getIdentifier|
- |seed| |merge| |oneDimensionalArray| |clipBoolean| |integrate|
- |rdregime| |node?| |truncate| |palglimint0| |numberOfComposites|
- |simplifyExp| |finiteBound| |d01ajf| |groebnerFactorize|
- |stripCommentsAndBlanks| |mapCoef| |repeating?| |rationalFunction|
- |rootKerSimp| EQ |idealiserMatrix| |logpart| |corrPoly| |dequeue!|
- |fortranCharacter| |discreteLog| |semiResultantEuclidean2|
- |cardinality| |SturmHabichtMultiple| |checkRur| |ODESolve| |separant|
- |pseudoDivide| |getRef| |alphabetic|
- |rewriteSetByReducingWithParticularGenerators| |scalarTypeOf|
- |exprToUPS| |restorePrecision| |listBranches| |c06eaf|
- |outputAsScript| |f04mbf| |matrixGcd| |moebius| |insertMatch| |bit?|
- |f04qaf| |semicolonSeparate| |hypergeometric0F1| |denominator|
- |createLowComplexityTable| |flatten| |rubiksGroup| |acothIfCan|
- |symbol| |someBasis| |matrix| |positiveRemainder| |ksec|
- |selectPDERoutines| |factorsOfDegree| |nodeOf?| |doublyTransitive?|
- |complexNormalize| |prepareDecompose| |expression| |unitVector|
- |e01bef| |parabolicCylindrical| |double?| |prinpolINFO|
- |strongGenerators| |coerceListOfPairs| |toseInvertibleSet|
- |noKaratsuba| |integer| |var1StepsDefault| |floor| |iitanh|
- |whatInfinity| |OMclose| |components| |partialNumerators|
- |systemSizeIF| |fortranInteger| |noncommutativeJordanAlgebra?|
- |showRegion| |weights| RF2UTS |squareFreePart| |inGroundField?|
- |conical| |s17ajf| |exists?| |isQuotient| |zeroMatrix| |signature|
- |printStatement| |rk4f| |groebner| |hash| |setScreenResolution3D|
- |mightHaveRoots| |extractTop!| |setelt!| |stosePrepareSubResAlgo|
- |reducedDiscriminant| |resetAttributeButtons| |doubleComplex?|
- |selectFiniteRoutines| |count| |linearlyDependent?| |cn|
- |OMsupportsCD?| |putColorInfo| |factorial| |makeSeries| |cyclicCopy|
- |not| |systemCommand| |lazyGintegrate| |constantToUnaryFunction|
- |euler| |quotient| |linearPolynomials| |extendedIntegrate| |csubst|
- |returnType!| |bsolve| |diagonals| |genericRightTraceForm|
- |showIntensityFunctions| |explimitedint| |changeThreshhold| |factors|
- |cLog| |asimpson| |lflimitedint| |double| |chvar|
- |combineFeatureCompatibility| |minIndex| |halfExtendedResultant2|
- |rombergo| |setCondition!| |s21bdf| |height| |solveRetract| |simplify|
- |hcrf| |innerint| |normal| |OMopenFile| |sin2csc| |midpoint|
- |expandLog| |bringDown| |e02bcf| |OMgetString| |zag| |outerProduct|
- |rspace| |leader| |fortranDoubleComplex| |f01qdf| |cosSinInfo|
- |wholeRadix| |nlde| |sequence| |pdct| |row| |univariateSolve|
- |shiftRoots| |processTemplate| |contours| |inrootof| |stopTableGcd!|
- |denominators| |polyred| |nativeModuleExtension| |elRow2!| |directory|
- |replaceKthElement| |prinshINFO| |returnTypeOf| |intChoose| |cfirst|
- |f01qcf| |weakBiRank| |f04arf| |iibinom| |point?| |addMatchRestricted|
- |internalSubPolSet?| |comparison| |toseInvertible?| |gcdcofact|
- |exprToXXP| |create3Space| |orOperands| |shanksDiscLogAlgorithm|
- |normal?| |taylorQuoByVar| |iterationVar| |radicalSolve| |nothing|
- |setMinPoints| |rotatex| |An| |tryFunctionalDecomposition?| |declare!|
- |leftUnit| |f04jgf| |shufflein| |expintegrate| |clearTable!|
- |compactFraction| |computeCycleLength| |constantIfCan| |cond| |hspace|
- |conditionsForIdempotents| |froot| |isAbsolutelyIrreducible?| |pack!|
- |points| |continuedFraction| |problemPoints| |removeSuperfluousCases|
- |quadraticNorm| |brace| |s17dgf| |hclf| |cyclicParents|
- |useEisensteinCriterion?| |splitConstant| |replace| |bubbleSort!|
- |e02agf| |defineProperty| |deleteRoutine!| |maxrank| |ratDsolve|
- |OMconnectTCP| |lllip| |setfirst!| |dfRange| |box|
- |firstUncouplingMatrix| |changeMeasure| |extractPoint| |coefficients|
- |sorted?| |optional?| |eq?| |quote| |redpps| |makeMulti| |wholeRagits|
- |rangeIsFinite| |stop| |failed| |redPol| |sPol|
- |characteristicPolynomial| |relerror| |smith| |linearDependence|
- |minimumExponent| |selectOrPolynomials| |numFunEvals3D| |value|
- |primaryDecomp| |lazyPseudoDivide| |startTable!| |cAtanh| |refine|
- |showTypeInOutput| |categoryFrame| |setPrologue!| |spherical|
- |blankSeparate| |f02ajf| |randnum| |setProperty| |OMgetAtp|
- |internalIntegrate| |invertIfCan| |coshIfCan| |setrest!| |credPol|
- |preprocess| |csc2sin| |exteriorDifferential| |invertible?|
- |orthonormalBasis| |conditionP| |nthRoot| |d02gbf| |s13adf|
- |noLinearFactor?| |exponential1| |lexico| |qualifier| |rotate!|
- |dioSolve| |fixedPoint| |numFunEvals| |setProperties!| |fortranDouble|
- |enterPointData| |ldf2vmf| |printStats!| |headRemainder| |jacobian|
- |d02cjf| |swapRows!| |or| |cylindrical| |hitherPlane| |length|
- |semiLastSubResultantEuclidean| |rightTraceMatrix| |fortranLinkerArgs|
- |startPolynomial| |errorInfo| |changeBase| |basisOfLeftAnnihilator|
- |squareTop| |acscIfCan| |scripts| |tab| |OMgetEndBind| |weighted|
- |clearFortranOutputStack| |extendedint| |oddlambert| |moebiusMu| |cap|
- |headAst| |tanh2trigh| |dflist| |degreePartition| |iicsc| |laurentRep|
- |intensity| |hex| |clikeUniv| |sin?| |mainMonomials| |basisOfCenter|
- |integerIfCan| |cAcsch| |bipolar| |weierstrass| |OMwrite| |divisors|
- |mdeg| |generator| |internalZeroSetSplit| |symmetricSquare|
- |incrementKthElement| |myDegree| |integerBound| |factorFraction|
- |polygon| |iiacot| |antiAssociative?| |s17agf| |radix|
- |SturmHabichtSequence| |setClipValue| |iiasec| |coordinates| |cPower|
- |d01alf| |isTimes| |maxint| |usingTable?| |OMgetEndBVar|
- |toseLastSubResultant| |rowEchLocal| |associator| |mirror| |realZeros|
- |maxrow| |nand| |iiacos| |mathieu24| |fullPartialFraction|
- |commaSeparate| |f04atf| |moreAlgebraic?| |internalAugment|
- |getOperands| |belong?| |pile| |insertionSort!| |palginfieldint|
- |pseudoRemainder| |symmetricTensors| |totalfract| |int| |OMputEndBVar|
- |complexIntegrate| |powers| |mapMatrixIfCan| |normalizedDivide|
- |headReduce| |d01aqf| |rename!| |padicFraction| |iipow| |singRicDE|
- |retractable?| |getProperty| |ReduceOrder| |eulerPhi|
- |stoseInvertibleSetsqfreg| |completeSmith| |digit| |sort!| |linSolve|
- |splitSquarefree| |geometric| |associatorDependence| |laplacian|
- |collect| |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| |composites| |printTypes| |d01aqf| |iipow|
+ |definingPolynomial| |comment| |btwFact| |explimitedint| |lo|
+ |newReduc| |product| |obj| |exteriorDifferential| |rk4a|
+ |indicialEquations| |arrayStack| |cAcot| |incr| |nextsubResultant2|
+ |triangularSystems| |genericLeftDiscriminant| |zeroDimPrime?|
+ |supDimElseRittWu?| |cache| |check| |dot| |mainSquareFreePart|
+ |univariatePolynomials| |socf2socdf| |updatF| |hi| |indicialEquation|
+ |relationsIdeal| |partition| |PDESolve| |reciprocalPolynomial|
+ |number?| |square?| |enumerate| |s14abf| |linearAssociatedLog|
+ |inverse| |OMgetEndBVar| |setMinPoints| |superHeight| |homogeneous?|
+ |initiallyReduced?| |infLex?| |char| |pointColor| |cylindrical|
+ |shift| |stFunc1| |integralBasis| |clikeUniv| |sequence|
+ |selectIntegrationRoutines| |primitive?| |linearlyDependent?| |e04dgf|
+ |fortran| |depth| |readLine!| |genericLeftNorm| |c05pbf|
+ |makeGraphImage| |semiSubResultantGcdEuclidean1| |twoFactor| |symFunc|
+ |iiGamma| |extractSplittingLeaf| |tab1| |outputSpacing| |f07fef| |low|
+ |pToHdmp| |gramschmidt| |euclideanSize| |numberOfComputedEntries|
+ |quote| |setTopPredicate| ~ |subResultantGcdEuclidean| |subset?|
+ |tail| |f04mbf| |permutations| |writeBytes!| |topPredicate| |subCase?|
+ |sn| |floor| |Is| |binary| |midpoint| |rename!| |float| |irreducible?|
+ |factor1| |sqfree| |open| |duplicates| |rk4| |digit|
+ |numericalOptimization| |rightDivide| |cycleRagits| |prevPrime|
+ |stripCommentsAndBlanks| |cAcoth| |setfirst!| |parabolic|
+ |lastSubResultantEuclidean| |bezoutDiscriminant| |binaryTournament|
+ |iCompose| |removeRoughlyRedundantFactorsInContents|
+ |numberOfPrimitivePoly| |rquo| |e01sff| |symmetricGroup|
+ |alternative?| |univcase| |cscIfCan| |OMputInteger| |hasPredicate?|
+ |integralCoordinates| |multiEuclidean| |OMputBind| |setPosition|
+ |legendreP| |setRow!| |rational| |linear| |numer| |externalList|
+ |csubst| |wordInGenerators| |enqueue!| |prepareSubResAlgo| |taylorRep|
+ |cSech| |realEigenvalues| |reify| |reduceByQuasiMonic|
+ |lowerPolynomial| |denom| |leftDiscriminant| |numberOfHues| |f04faf|
+ |regularRepresentation| |rewriteSetWithReduction| |pole?| |generate|
+ |sin?| |polynomial| |setProperty| |figureUnits| |associatedEquations|
+ |hitherPlane| |s21bbf| |bracket| |complexNormalize| F |iiacoth|
+ |matrixGcd| |subResultantsChain| |pi| |modularGcd| |hconcat|
+ |charClass| |createPrimitiveNormalPoly| |approxSqrt| |erf| |vectorise|
+ |incrementBy| |sturmVariationsOf| |functionIsContinuousAtEndPoints|
+ |generalizedEigenvectors| |color| |LyndonWordsList| |infinity| |rk4f|
+ |union| |rightMinimalPolynomial| |graphImage| |f07fdf| |redpps|
+ |script| |internalSubPolSet?| |expand| |routines| |lfinfieldint|
+ |expandLog| |s17dgf| |OMgetEndError| |localAbs| GF2FG |rightQuotient|
+ |userOrdered?| |doubleDisc| |filterWhile| |mantissa| |frst|
+ |halfExtendedSubResultantGcd1| |status| |prime?| |squareFreePrim|
+ |shade| |leftRank| |dfRange| |mapCoef| |dilog|
+ |removeIrreducibleRedundantFactors| |cycleElt| |filterUntil|
+ |countable?| |kernel| |column| |isExpt| |outputAsTex|
+ |branchPointAtInfinity?| |getMeasure| |conjug| |tex| |sin| |options|
+ |extensionDegree| |LiePolyIfCan| |Vectorise| |select| |draw|
+ |selectNonFiniteRoutines| |simpsono| |OMreadFile| |level|
+ |iflist2Result| |moduleSum| |push| |harmonic| |result| |dark| |cos|
+ |sinIfCan| |printingInfo?| |isPlus| |c06ekf| |extendIfCan|
+ |setchildren!| |pseudoRemainder| |e01bhf| |triangulate| |tan|
+ |viewport2D| |fractionPart| |part?| |nextPrimitiveNormalPoly|
+ |viewDeltaYDefault| |optimize| |orbit| |weight| |measure2Result|
+ |constantOperator| |mergeDifference| NOT |rename| |string| |cot|
+ |prepareDecompose| |nil?| |dom|
+ |solveLinearPolynomialEquationByRecursion| |s19adf| |rationalIfCan|
+ |pmintegrate| |limitedint| |pascalTriangle| |listexp| OR |deref| |sec|
+ |comparison| |leftRecip| |makeObject| |mainMonomials| |getMatch|
+ |subNodeOf?| |primitiveElement| |create| |has?|
+ |semiLastSubResultantEuclidean| AND |hyperelliptic| |csc|
+ |setAttributeButtonStep| |lfunc| |cTan| |highCommonTerms|
+ |getPickedPoints| |groebner| |prefixRagits| |quickSort| |makeRecord|
+ |lazyPremWithDefault| |asin| |pseudoQuotient| |changeVar|
+ |nextSublist| |zeroOf| |bringDown| |linGenPos| |coef| |s17dcf| |hclf|
+ |element?| |s13acf| |wordInStrongGenerators| |acos| |callForm?|
+ |flagFactor| |d01amf| |OMgetAtp| |pointColorDefault| |OMbindTCP|
+ |composite| |createGenericMatrix| |firstUncouplingMatrix| |atan|
+ |shiftLeft| |OMgetError| |monicLeftDivide|
+ |generalizedContinuumHypothesisAssumed?| |radPoly| |logGamma|
+ |insertBottom!| |member?| |title| |sdf2lst| |pointLists|
+ |tableForDiscreteLogarithm| |acot| |f01bsf| |cosIfCan| |lyndon|
+ |moebius| |OMgetEndAttr| |stoseInvertible?sqfreg| |setleft!|
+ |maximumExponent| |ffactor| |makeMulti| |repeating?| |f02aaf| |asec|
+ |ParCondList| |cothIfCan| |e01sef| |e02baf| |numeric|
+ |numericalIntegration| |extractIndex| |toroidal| |symmetricTensors|
+ |alphanumeric| |iiatanh| |atanIfCan| |printCode| |acsc|
+ |setPredicates| |unitVector| |kroneckerDelta| |radical| |listOfMonoms|
+ |changeNameToObjf| |wordsForStrongGenerators| |e| |mapGen| |biRank|
+ |d01asf| |partialDenominators| |sinh| |green| |differentialVariables|
+ |tanAn| |branchPoint?| |LowTriBddDenomInv| |totalGroebner| |initials|
+ |space| |hdmpToDmp| |cosh| |prologue| |useSingleFactorBound|
+ |toseInvertible?| |basisOfCenter| |jacobi| |eigenMatrix|
+ |completeEval| |lighting| |rightTraceMatrix| |factorList| |tree| *
+ |OMputAttr| |tanh| |roughSubIdeal?| |sinhcosh| |shiftRight| |toScale|
+ |unrankImproperPartitions1| |setScreenResolution3D| |quotedOperators|
+ |lieAlgebra?| |factorset| |divideIfCan!| |coth| |fullDisplay|
+ |SturmHabichtSequence| |s19abf| |f2st| |e02bcf|
+ |removeSuperfluousQuasiComponents| |triangSolve| |binarySearchTree|
+ |elementary| |hermite| |sech| |lyndon?| |f02agf| |matrixDimensions|
+ |debug| |blue| |thenBranch| |makeSin| |setTex!| |iiasin| |whileLoop|
+ |f02axf| |csch| |multinomial| |hasTopPredicate?| D |content| |d01bbf|
+ |chiSquare| |algebraicSort| |cyclicParents| |primintfldpoly| |s17aff|
+ |changeMeasure| |asinh| |ef2edf| |coleman| |testModulus| |li|
+ |internalIntegrate| |exponent| |makeCos| |mindeg| |zeroDimensional?|
+ |rk4qc| |acosh| |revert| |internalIntegrate0| |resultantnaif|
+ |insertMatch| |OMunhandledSymbol| |internalLastSubResultant|
+ |yCoordinates| |totalfract| |normalElement| |rationalFunction|
+ |wholeRagits| |atanh| |prolateSpheroidal| |e01bef| |rowEchelonLocal|
+ |setright!| |removeRedundantFactorsInPols| |lazyPseudoRemainder|
+ |clearTheSymbolTable| |gcdcofact| |contains?| |sign| |power| |acoth|
+ |cCot| |unexpand| |setnext!| |iisec| |xn| |unknown|
+ |innerEigenvectors| |numberOfMonomials| |singularitiesOf| |asech|
+ |sylvesterSequence| |trigs| |open?| |singRicDE| |splitDenominator|
+ |tube| |rightUnits| F2FG |aLinear| |viewDeltaXDefault| |tensorProduct|
+ |genus| |maxRowIndex| |e01bff| |sh| |balancedFactorisation|
+ |GospersMethod| |OMgetString| |chiSquare1| |mightHaveRoots| |c02agf|
+ |fortranLinkerArgs| |multiple| |more?| |setClipValue| |sechIfCan|
+ |integerIfCan| |monomRDEsys| |colorDef| |rightScalarTimes!|
+ |enterInCache| |rightRegularRepresentation| |adaptive3D?| |applyQuote|
+ |subspace| |traceMatrix| |tubePointsDefault| |entry| |groebgen|
+ |listRepresentation| |pop!| |conjugate| |pointData| |minPoly|
+ |closedCurve| |insert!| |readByteIfCan!| |degreeSubResultant|
+ |useEisensteinCriterion?| |print| |reduced?| |nthExpon| |setlast!|
+ |qelt| |true| |remainder| |genericRightMinimalPolynomial| |doubleRank|
+ |extractPoint| |errorKind| |deriv| |bit?| |totolex| |solveLinear|
+ |e02adf| |and| |parametersOf| |raisePolynomial| |list?| |singular?|
+ |ruleset| |parabolicCylindrical| |exprToXXP| |polar| |pquo|
+ |cycleSplit!| |xRange| |symmetric?| |int| |rootKerSimp|
+ |singleFactorBound| |makeUnit| |initializeGroupForWordProblem|
+ |multiplyCoefficients| |numberOfIrreduciblePoly| |trueEqual| |e04naf|
+ |yRange| |ratDenom| |setColumn!| |escape| |iiabs| |OMParseError?|
+ |completeEchelonBasis| |objects| |setEpilogue!| |HenselLift|
+ |invertIfCan| |removeZero| |OMgetEndApp| |zRange| |s21bcf| SEGMENT
+ |unravel| |identitySquareMatrix| |janko2| |atanhIfCan| |suchThat|
+ |outputFixed| |base| |map!| |pmComplexintegrate| |movedPoints|
+ |lowerCase| |OMencodingBinary| |asecIfCan| |stirling2| |rangeIsFinite|
+ |numberOfComponents| |palgintegrate| |resultantReduit| |qsetelt!|
+ |rootBound| |kmax| |zag| |extractTop!| |directSum| |gbasis|
+ |curryRight| |stopTable!| |trace2PowMod| |iiasec| |cAcsch| |prefix|
+ |approxNthRoot| |baseRDE| |complexEigenvectors| |rightRemainder|
+ |separateFactors| |s01eaf| |divergence| |initTable!| |dec|
+ |generateIrredPoly| |subResultantChain| |mainExpression| |meatAxe|
+ |viewport3D| |nthExponent| |finite?| |removeZeroes| |mainForm| |curve|
+ |sylvesterMatrix| |fortranCarriageReturn| |iFTable| |OMputApp|
+ |splitConstant| |supersub| |prindINFO| |setImagSteps| |showClipRegion|
+ |leviCivitaSymbol| |powern| |cross| |factorSFBRlcUnit| |dmp2rfi|
+ |port| |OMputError| |tanh2coth| |updateStatus!| |condition|
+ |permutation| |rarrow| |basisOfRightNucleus| |create3Space| |makeprod|
+ |midpoints| |acsch| |setPoly| |OMputEndBVar| |numberOfFactors|
+ |modTree| |bivariateSLPEBR| |double?| |charpol| |setErrorBound|
+ |normalDenom| |findBinding| |fill!| |rightGcd|
+ |absolutelyIrreducible?| |reindex| |ipow| |totalLex|
+ |removeRoughlyRedundantFactorsInPol| |concat| |unit| |lyndonIfCan|
+ |standardBasisOfCyclicSubmodule| |removeRedundantFactorsInContents|
+ |child| |s17akf| |stirling1| |e02dff| |newSubProgram| |karatsuba|
+ |bounds| |nthFractionalTerm| |realSolve| |critB| |setStatus|
+ |laurentIfCan| |s13aaf| |nextPartition| |functionIsOscillatory|
+ |hexDigit?| |extendedIntegrate| |fixedDivisor| |setelt!| |dmpToHdmp|
+ |cubic| |vertConcat| |zoom| |previous| |tower| |even?| |coordinates|
+ |scalarTypeOf| |duplicates?| |rspace| |possiblyNewVariety?| |f01brf|
+ |listOfLists| |expenseOfEvaluationIF| |palglimint0| |inv|
+ |quadraticForm| |negative?| |algebraic?| |trailingCoefficient|
+ |iiacsch| |property| |coshIfCan| |retractable?| |rootSplit|
+ |currentScope| |ground?| |e01sbf| |sumOfDivisors| |infix| |orOperands|
+ |fintegrate| |safeCeiling| |augment| |d02ejf| |OMencodingXML| |ground|
+ |reduction| |rightRecip| |cschIfCan| |sort!| |airyAi| |BumInSepFFE|
+ |andOperands| |palgRDE0| |quasiMonic?| |arity| |LiePoly| |f04mcf|
+ |alphabetic?| |resetVariableOrder| |e02agf| |leadingMonomial| |swap|
+ |prinpolINFO| |asechIfCan| |degreePartition| |deepCopy| |real?|
+ |units| |virtualDegree| |viewWriteDefault| |complexIntegrate|
+ |bubbleSort!| |rightPower| |exquo| |B1solve| |leadingCoefficient|
+ |complexNumeric| |s18def| |mainContent| |component| |solveRetract|
+ |setValue!| |copyInto!| |pushdterm| |Beta| |besselI| |div|
+ |printStats!| |trigs2explogs| |primitiveMonomials|
+ |cyclotomicFactorization| |argument| |kernels| |Hausdorff| |ideal|
+ |cyclicCopy| |leftDivide| |or?| |quo| |quotientByP| |clearTheIFTable|
+ |reductum| |bombieriNorm| |subResultantGcd| |saturate| |getStream|
+ |output| |printHeader| |interpolate| |upDateBranches| |repeating|
+ |power!| |OMreadStr| |unaryFunction| |scanOneDimSubspaces|
+ |univariate| |withPredicates| |sayLength| |leftMinimalPolynomial|
+ |flexibleArray| |ListOfTerms| |alternatingGroup| |formula| |compile|
+ |rem| |radicalEigenvector| |reverseLex| |idealSimplify| |children|
+ |numerator| |null?| |target| |code| |exprToUPS| |makeFR| |fractRadix|
+ |rangePascalTriangle| |drawStyle| |Aleph| |laguerreL| |modulus|
+ |mathieu12| |rischDE| |startStats!| |traverse| |OMconnOutDevice|
+ |roughBase?| |invertibleSet| |solve1| |numberOfComposites|
+ |matrixConcat3D| |defineProperty| |factor| |baseRDEsys| BY
+ |setProperties| |compound?| |getProperty| |presub| |failed?|
+ |mindegTerm| |setProperties!| |pow| |key?| |endOfFile?| |sqrt|
+ |LagrangeInterpolation| |integralMatrix| |d02gaf| |imagK| |tableau|
+ |isAbsolutelyIrreducible?| |selectMultiDimensionalRoutines| |nrows|
+ |hexDigit| |isList| |quadratic?| |realEigenvectors| |write!| |real|
+ |iilog| |triangular?| |delete!| |roughBasicSet| |coerceImages|
+ |coth2tanh| |ncols| |inHallBasis?| |delay| |stronglyReduce|
+ |coefficients| |imag| |returnTypeOf| |iicsc| |extendedEuclidean|
+ |delete| |f01ref| |simplify| |inGroundField?| |lazyGintegrate|
+ |directProduct| |partitions| |OMcloseConn| |OMUnknownCD?| |s17ahf|
+ |s18dcf| |exQuo| |e01baf| |shallowCopy| |setPrologue!| |numericIfCan|
+ |variable?| |headRemainder| |solid| |cycles| |squareFreeLexTriangular|
+ |nthr| |rootProduct| |rationalPoints| |interval| |lhs| |cycleTail|
+ |getMultiplicationMatrix| |assign| |splitLinear| |destruct|
+ |factorPolynomial| |rootDirectory| |collectUnder| |sts2stst|
+ |mainKernel| |groebSolve| |abs| |rhs| |torsionIfCan| |ode1| |linear?|
+ |cAcsc| |makeVariable| |iiatan| |middle| |putGraph| |df2fi|
+ |stronglyReduced?| |nullary| |monicRightFactorIfCan| |extension|
+ |internalAugment| |simplifyExp| |totalDegree| |deleteRoutine!|
+ |neglist| |leftScalarTimes!| |groebnerIdeal| |restorePrecision|
+ |plus!| |getExplanations| |generalLambert| |ReduceOrder|
+ |extractProperty| |OMputAtp| |zCoord| |allRootsOf|
+ |countRealRootsMultiple| |reduceBasisAtInfinity| |youngGroup|
+ |extendedResultant| |digits| |pack!| |mainVariable| |node|
+ |selectSumOfSquaresRoutines| |sorted?| |normalized?| |fortranDouble|
+ |cycle| |intChoose| |monomial| |leadingBasisTerm| |gcdcofactprim|
+ |nextColeman| |birth| |satisfy?| |setelt| |clipSurface| |fixPredicate|
+ |factorials| |selectOptimizationRoutines| |initial| |frobenius|
+ |surface| |ode2| |multivariate| |dimension| |upperCase?| |quotient|
+ |addmod| |fglmIfCan| |hcrf| |constantToUnaryFunction| |diagonal|
+ |ellipticCylindrical| |rightMult| |variables| |companionBlocks|
+ |tValues| |setClosed| |conical| |nextsousResultant2| |integer?|
+ |internalInfRittWu?| |decomposeFunc| |copy| |lazyResidueClass|
+ |f02akf| |createZechTable| |recoverAfterFail| |index?|
+ |viewSizeDefault| |spherical| |f02bbf| |divide| |substring?|
+ |internal?| |cot2trig| |elements| |normDeriv2| |taylorIfCan|
+ |characteristicSet| |indices| |one?| |log10| |primeFactor|
+ |laurentRep| |mapUnivariateIfCan| |OMmakeConn| |clearTheFTable|
+ |primextendedint| |stiffnessAndStabilityFactor| |jacobian| |maxrank|
+ |clearDenominator| |match?| |solve| |bitand|
+ |stiffnessAndStabilityOfODEIF| |physicalLength| |e04fdf| |rightLcm|
+ |top| |mesh| |suffix?| |autoCoerce| |pr2dmp| |pToDmp| |makeCrit|
+ |countRealRoots| |subscriptedVariables| |modifyPointData| |bitior|
+ |tubePlot| |continue| |finiteBasis| |eulerPhi| |supRittWu?|
+ |getOperands| |bumprow| |SFunction| |finiteBound| |e02ahf| |taylor|
+ |mainDefiningPolynomial| |cfirst| |width| |uncouplingMatrices|
+ |innerint| |charthRoot| |newLine| |untab| |Lazard| |prefix?|
+ |exprHasLogarithmicWeights| |binaryFunction| |e02zaf| |s18aff|
+ |laurent| |splitNodeOf!| |complementaryBasis| |listBranches|
+ |compdegd| |positive?| |lfextendedint| |points| |ratPoly| |polyRicDE|
+ |iitan| |poisson| |skewSFunction| |puiseux| |chineseRemainder|
+ |setVariableOrder| |leftExactQuotient| |quasiRegular?| |d03eef|
+ |characteristic| |redPo| |c06ebf| |aCubic| |d01gbf| |e04mbf|
+ |leadingSupport| |ParCond| |shrinkable| |notOperand|
+ |derivationCoordinates| |prime| |lowerCase?| |close!|
+ |increasePrecision| |palgLODE0| = |equation| |multisect| |divisor|
+ |minimumDegree| |s17ajf| |rewriteIdealWithHeadRemainder| |scan|
+ |euler| |numberOfImproperPartitions| |represents| |unitNormalize|
+ |sortConstraints| |resetBadValues| |sumSquares| |antisymmetricTensors|
+ |factorByRecursion| |regime| |Ci| |rootOf| |build| |legendre| <
+ |subPolSet?| |scalarMatrix| |karatsubaOnce| |optional|
+ |basisOfRightAnnihilator| |rdHack1| |subtractIfCan| |rowEch| |omError|
+ |infix?| |say| |iicosh| |ratDsolve| > |vspace| |lSpaceBasis| |f04arf|
+ |drawToScale| |intensity| |mask| |blankSeparate| |selectPolynomials|
+ |divideExponents| |rootNormalize| |d02cjf| |optional?| <= |f01qcf|
+ |leftRemainder| |tubeRadius| |implies| |associates?| |overset?| |pol|
+ |belong?| |zeroSquareMatrix| |s20acf| >= |principalIdeal|
+ |squareMatrix| |limitPlus| |complexNumericIfCan| |alternating|
+ |secIfCan| |imagj| |continuedFraction| |typeLists| |domainOf|
+ |logical?| |equality| |showScalarValues| |xor| |logIfCan| |att2Result|
+ |transcendenceDegree| |perfectNthRoot| |monicModulo| |ranges| |round|
+ |norm| |var2StepsDefault| |atrapezoidal| |match| |KrullNumber|
+ |useEisensteinCriterion| |c06eaf| |cCsch| |exprex| |entry?| |name|
+ |balancedBinaryTree| |bitCoef| |d01ajf| |perfectSquare?| +
+ |realElementary| |lazyIntegrate| |exists?| |lambert| |OMopenFile|
+ |subscript| |critMonD1| |body| |insertRoot!|
+ |dimensionOfIrreducibleRepresentation| |irreducibleFactors| |reset|
+ |OMconnectTCP| - |iiperm| |showArrayValues| |symbolIfCan| |subTriSet?|
+ |coHeight| |integralLastSubResultant| |addPoint2| |iidsum| |polyPart|
+ |subresultantSequence| |OMgetObject| |mvar| / |lprop| |univariate?|
+ |constructorName| |compiledFunction| |identity| |complement|
+ |inverseIntegralMatrix| |linkToFortran| |eq?| |weakBiRank|
+ |semiSubResultantGcdEuclidean2| |write| |iibinom| |colorFunction|
+ |solveid| |linearPolynomials| |cycleEntry| |iicsch|
+ |createNormalPrimitivePoly| |iisech| |head| |save| |block|
+ |makeSeries| |viewPosDefault| |c06gcf| |prod| |d01gaf| |f04axf|
+ |basisOfMiddleNucleus| |hex| |problemPoints| |f02ajf| |lift|
+ |primPartElseUnitCanonical| |decimal| |inspect| |d01apf|
+ |complexLimit| |mainPrimitivePart| |returns|
+ |purelyAlgebraicLeadingMonomial?| |fTable| |patternMatchTimes|
+ |reduce| |pile| |swapRows!| |conjugates| |dominantTerm|
+ |generalizedContinuumHypothesisAssumed| |df2mf|
+ |exprHasAlgebraicWeight| |bezoutResultant| |reducedContinuedFraction|
+ |padicallyExpand| |closeComponent| |pdf2df| |morphism| |decompose|
+ |infieldIntegrate| |s18acf| |vark| |expenseOfEvaluation|
+ |integralMatrixAtInfinity| |powmod| |dimensionsOf|
+ |createNormalElement| |diag| |getGraph| |genericLeftTraceForm|
+ |f02awf| |outputGeneral| |decreasePrecision| |terms|
+ |mainCharacterization| |constant| |wronskianMatrix| |maxPoints3D|
+ |expint| |buildSyntax| |makeFloatFunction| |gcdPrimitive| |position!|
+ |c06fpf| |center| |d02bhf| |completeSmith| |zeroMatrix| |swapColumns!|
+ |OMgetBind| |inR?| |tan2trig| |tan2cot| |outputAsScript| |tRange|
+ |sin2csc| |factorAndSplit| |factorSquareFreePolynomial| |gcdprim|
+ |lllip| |recip| |insert| |point?| |stoseInvertibleSetsqfreg| |iicoth|
+ |startTableGcd!| |makingStats?| |basis| |squareFree| |iiacosh|
+ |elliptic| |nil| |setMaxPoints3D| |multiplyExponents| |OMgetFloat|
+ |compBound| |ord| |module| |t| |clearCache| |iisin| |mulmod|
+ |rightAlternative?| |tanhIfCan| |monicCompleteDecompose| |meshPar1Var|
+ |transcendent?| |powerAssociative?| |OMserve| |pushup|
+ |removeSuperfluousCases| |empty?| |getConstant| |intPatternMatch|
+ |acosIfCan| |quadratic| |normalForm| |eq| |exactQuotient| |sinh2csch|
+ |edf2ef| |insertionSort!| |drawComplex| |complex?| |e02dcf| |retract|
+ |delta| |approximate| |RemainderList| Y |cyclicGroup| |iter|
+ |UnVectorise| |randnum| |forLoop| |notelem| |adaptive?| |integers|
+ |oddlambert| |equivOperands| |unitsColorDefault| |infinite?| |cot2tan|
+ |atoms| |doublyTransitive?| |ratpart| |heap| |close| |sizeLess?|
+ |d01akf| |implies?| |generalTwoFactor| |eval| |factorsOfDegree|
+ |leftTraceMatrix| |rightExtendedGcd| |normInvertible?| |setleaves!|
+ |bits| |partialQuotients| |createIrreduciblePoly| |hMonic| |edf2fi|
+ |expextendedint| |constantLeft| |display| |printStatement|
+ |appendPoint| |idealiser| |addMatchRestricted| |quoted?| |separant|
+ |prinb| |intcompBasis| |kind| |ramifiedAtInfinity?| |uniform|
+ |normFactors| |euclideanGroebner| |digamma| |retractIfCan|
+ |definingEquations| |createPrimitivePoly| |minPoints3D|
+ |quadraticNorm| |exp| |op| |numberOfCycles| |localIntegralBasis|
+ |external?| |lambda| |rightExactQuotient| |dim| |hue|
+ |createRandomElement| |rotate| |torsion?| |order|
+ |leadingCoefficientRicDE| |nextNormalPoly|
+ |combineFeatureCompatibility| |rightDiscriminant| |palginfieldint|
+ |cCos| |copy!| |curryLeft| |s17dhf| |input| |discriminant|
+ |dihedralGroup| |lazyPseudoDivide| |elColumn2!| |readLineIfCan!|
+ |noLinearFactor?| |showSummary| |monicDecomposeIfCan| |leftZero|
+ |shuffle| |moebiusMu| |library| |alphanumeric?| |dimensions| |cAsec|
+ |gradient| |f04adf| |getGoodPrime| |monomials| |constantRight|
+ |numerators| |yCoord| |showAttributes| |polygon| |OMgetBVar| |equiv|
+ |leadingIdeal| |consnewpol| |e02bef| |inverseLaplace|
+ |listYoungTableaus| |properties| |binomial| |dihedral| |unit?|
+ |primintegrate| |eulerE| |ptree| |roman| |nand| |cyclicSubmodule|
+ |translate| |llprop| |Lazard2| |quasiAlgebraicSet| |optAttributes|
+ |bernoulliB| |set| |lp| |linearDependenceOverZ| |mapUp!|
+ |explicitlyFinite?| |generic?| |stopTableGcd!|
+ |stoseInternalLastSubResultant| |map| |point| |setvalue!| |rootsOf|
+ |host| |e01daf| |clearTable!| |nodeOf?| |odd?| |findCycle|
+ |pseudoDivide| |iiasinh| |minIndex| |constDsolve|
+ |certainlySubVariety?| |top!| |range| |nextLatticePermutation|
+ |maxColIndex| |trapezoidal| |addMatch| |fortranInteger| |laplace|
+ |areEquivalent?| |sum| |edf2df| |exponential1| |predicate| |update|
+ |series| |factorOfDegree| |semiIndiceSubResultantEuclidean| |second|
+ |scale| |aQuartic| |cosh2sech| |aQuadratic| |universe|
+ |transcendentalDecompose| |predicates| |trapezoidalo| |startTable!|
+ |third| |minset| |diagonal?| |iiacot| |branchIfCan| |determinant|
+ |convert| |cap| |df2ef| |minrank| |curveColorPalette| |fracPart|
+ |identityMatrix| |size?| |cAcos| |separateDegrees| |calcRanges|
+ |stoseSquareFreePart| |generalizedEigenvector| |outputForm|
+ |interpret| |meshPar2Var| |palgextint| |complexForm| |min|
+ |basisOfCommutingElements| |primlimitedint| |getCurve| |iiacos|
+ |outputFloating| |stoseInvertibleSetreg| |setFieldInfo| |debug3D|
+ |arguments| |modularFactor| |rightTrace| |iicos| |diagonalMatrix|
+ |compactFraction| |cyclicEntries| |move| |radicalOfLeftTraceForm|
+ |denominators| |complexElementary| |position| |powerSum| |integral|
+ |show| |nextSubsetGray| |scripted?| |fortranReal| |distFact|
+ |solveLinearlyOverQ| |var2Steps| |stFuncN| |tanintegrate|
+ |structuralConstants| |mathieu23| |univariatePolynomial|
+ |knownInfBasis| |possiblyInfinite?| |droot| |multiEuclideanTree|
+ |c06gqf| |void| |parameters| |getRef| |trace| |cAtanh|
+ |halfExtendedResultant2| |exprHasWeightCosWXorSinWX|
+ |genericLeftMinimalPolynomial| |dn| |lexico| |setAdaptive3D|
+ |anticoord| |upperCase| |graphState| |noncommutativeJordanAlgebra?|
+ |const| |cyclic?| |reverse!| |lifting| |coerceP| |specialTrigs|
+ |polyRDE| |basisOfLeftNucleus| |flexible?| |positiveSolve| |bindings|
+ |getIdentifier| |numberOfChildren| |leftLcm| |algebraicCoefficients?|
+ |BasicMethod| |term?| |useNagFunctions| |freeOf?| |leastMonomial|
+ |e04ycf| |exp1| |tanSum| |computeCycleLength| |basicSet| |nthFactor|
+ |f02aef| |isOp| |lazyPrem| |headAst| |OMputEndAtp| |postfix| |OMsend|
+ |mathieu24| |createPrimitiveElement| |goodPoint| |polyred| |linSolve|
+ |resultantReduitEuclidean| |objectOf| |setprevious!| |iisqrt2|
+ |getOrder| |antiAssociative?| |outlineRender| |qualifier| |alphabetic|
+ |unprotectedRemoveRedundantFactors| |nextItem| |doubleResultant|
+ |sqfrFactor| |useSingleFactorBound?| |d03faf| |parametric?| |sincos|
+ |bandedHessian| |viewpoint| |submod| |polygamma| |expr| |getBadValues|
+ |term| |infiniteProduct| |setScreenResolution| |acoshIfCan|
+ |linearlyDependentOverZ?| |sub| |setOfMinN| |pushuconst| |bitTruth|
+ |seed| |parts| |monomial?| |rombergo| |leftFactorIfCan|
+ |rationalApproximation| |showRegion| |rootPoly| |gcdPolynomial|
+ |pointPlot| |numberOfFractionalTerms| |applyRules| |makeEq|
+ |approximants| |seriesToOutputForm| |updatD| |computeInt| |getlo|
+ |primitivePart| |associatedSystem| |coord| |inf|
+ |semiDiscriminantEuclidean| |variable| |invmultisect| |associative?|
+ |OMputVariable| |subst| |pdf2ef| |normalizeAtInfinity| |boundOfCauchy|
+ |constantIfCan| |monomRDE| |loadNativeModule| |iterators| |merge!|
+ FG2F |OMsupportsSymbol?| |representationType| |any?|
+ |rewriteIdealWithQuasiMonicGenerators| |fullPartialFraction| |leaf?|
+ |e02gaf| |rotate!| |nativeModuleExtension| |graphCurves| |refine|
+ |sample| |zeroDim?| |subMatrix| |s17agf| |qroot|
+ |univariatePolynomialsGcds| |error| |decrease| |next|
+ |drawComplexVectorField| |unitCanonical| |firstDenom| |plusInfinity|
+ |semiResultantEuclidean1| |safeFloor| |qPot| |merge| |assert|
+ |fortranComplex| |tanh2trigh| |coerceS| |imagE| |minusInfinity|
+ |minRowIndex| |outputArgs| |init| |UpTriBddDenomInv| |quoByVar|
+ |reverse| |maxIndex| |rotatez| |lazyEvaluate| |weights| |generic|
+ |medialSet| |exponential| |pushNewContour| |algDsolve| |computeBasis|
+ |setCondition!| |cAtan| |discriminantEuclidean| |leftExtendedGcd|
+ |gethi| |realRoots| |datalist| |viewDefaults| |pointColorPalette|
+ |front| |commutative?| |hspace| |hermiteH| |elRow2!| |OMlistCDs|
+ |reducedForm| |inverseIntegralMatrixAtInfinity| |gderiv|
+ |leastAffineMultiple| |chebyshevT| |bfKeys| |dioSolve| |OMReadError?|
+ |rewriteSetByReducingWithParticularGenerators| |showTypeInOutput|
+ |linearAssociatedExp| |zeroDimPrimary?| |simplifyLog|
+ |brillhartIrreducible?| |showAllElements| |addPointLast| |isobaric?|
+ |xCoord| |in?| |closedCurve?| |type| |commaSeparate| |complexSolve|
+ |algSplitSimple| |besselJ| |s19aaf| |increase| |intermediateResultsIF|
+ |lllp| |cycleLength| |adaptive| |oneDimensionalArray| |symbolTableOf|
+ |rank| |insertTop!| |overlabel| |nextNormalPrimitivePoly| |e01bgf|
+ |factorsOfCyclicGroupSize| |scaleRoots| |segment| |character?|
+ |bitLength| |rightFactorCandidate| |dflist| |deepExpand| |OMread|
+ |e02ajf| |ScanRoman| |var1Steps| |nextPrime| |reorder| |c06fqf|
+ |f01maf| |goto| |f02xef| |magnitude| |setMaxPoints| |besselY|
+ |signAround| |indiceSubResultantEuclidean| |badNum|
+ |algebraicDecompose| |region| |zeroVector| |nilFactor|
+ |splitSquarefree| |s21bdf| |UP2ifCan| RF2UTS |radix| |computePowers|
+ |f02abf| |removeConstantTerm| |definingInequation|
+ |rightCharacteristicPolynomial| |variationOfParameters| |back|
+ |conditionsForIdempotents| |f01rcf| |fixedPoint| |evenlambert|
+ |replaceKthElement| |cons| |dequeue| |removeSinhSq| |iprint| |trunc|
+ |basisOfCentroid| |normalizedAssociate| |deepestTail| |solid?|
+ |equiv?| |lists| |imagI| |bottom!| |beauzamyBound| |getProperties|
+ |over| |rst| |rroot| |discreteLog| |genericLeftTrace| |sort|
+ |evaluateInverse| |f04atf| |characteristicSerie| |quatern|
+ |cyclotomicDecomposition| |axesColorDefault| |symmetricRemainder|
+ |categoryFrame| |invmod| |nthCoef| |OMputEndObject|
+ |internalZeroSetSplit| |makeSketch| |distribute| |mix| |d02raf|
+ |slash| |c06fuf| |zero?| |trim| |padicFraction| |LyndonWordsList1|
+ |interReduce| |OMputEndError| |f04asf| |OMputEndApp| |acothIfCan|
+ |invertibleElseSplit?| |subHeight| |source| |rightFactorIfCan|
+ |OMgetVariable| |mapExponents| |randomLC| |dictionary| |argumentList!|
+ |palgRDE| |normal01| |prinshINFO| |numFunEvals| |writable?|
+ |fortranLiteral| |precision| |e01saf| |epilogue| |random| |froot|
+ |squareFreePart| |halfExtendedResultant1| |airyBi| |e02akf| |mr|
+ |controlPanel| |firstSubsetGray| |tab| |pushucoef| |sturmSequence|
+ |leftGcd| |particularSolution| |localUnquote| |elliptic?| |null|
+ |stopTableInvSet!| |elseBranch| |linearDependence| |isPower| |graeffe|
+ |critMTonD1| |putColorInfo| |aromberg| |complexExpand| |case|
+ |LyndonCoordinates| |lazyVariations| |lazy?| |parseString|
+ |viewThetaDefault| |meshFun2Var| |symbolTable| |bright| |addBadValue|
+ |chainSubResultants| |Zero| |SturmHabichtCoefficients| |transform|
+ |showAll?| |abelianGroup| |badValues| |changeThreshhold| |reflect|
+ |moreAlgebraic?| |clipBoolean| |shellSort| |s18aef| |One|
+ |invertible?| |empty| |semiResultantEuclidean2| |nullSpace|
+ |LazardQuotient| |pushFortranOutputStack| |tanQ| |symmetricSquare|
+ |evaluate| |overlap| |karatsubaDivide| |rotatex| |stopMusserTrials|
+ |htrigs| |OMreceive| |varList| |popFortranOutputStack|
+ |euclideanNormalForm| |f07adf| |setMinPoints3D| |completeHensel|
+ |subQuasiComponent?| |lookup| |infieldint| |imagi| |qqq|
+ |toseLastSubResultant| |outputAsFortran| |po| |generalInfiniteProduct|
+ |maxPoints| |cyclicEqual?| |extractBottom!| |wrregime| |scopes|
+ |readBytes!| |d03edf| |f02fjf| |makeop| |categories| |split!| |s21baf|
+ |pdct| |eigenvalues| |packageCall| |internalSubQuasiComponent?|
+ |oddintegers| |LazardQuotient2| |primextintfrac| |key| |writeLine!|
+ |antiCommutative?| |elt| |upperCase!| |connect| |OMsupportsCD?|
+ |OMgetEndBind| |iiexp| |expintfldpoly| |functionIsFracPolynomial?|
+ |entries| |geometric| |someBasis| |localReal?| |relativeApprox|
+ |iisqrt3| |iitanh| |diagonalProduct| |nonSingularModel| |c06gbf|
+ |vedf2vef| |filename| |extractIfCan| |every?| |primitivePart!|
+ LODO2FUN GE |leftRegularRepresentation| |algint| |minimumExponent|
+ |OMUnknownSymbol?| |not?| |degreeSubResultantEuclidean| |recolor|
+ |mkcomm| |rightUnit| |vconcat| GT |any| |operation| |c06gsf|
+ |removeRedundantFactors| |e02bdf| |denomRicDE| |parse|
+ |subresultantVector| |perspective| |pushdown| |simpson| |infRittWu?|
+ LE |mapSolve| |nsqfree| |factors| |nextIrreduciblePoly|
+ |identification| |commutativeEquality| |setStatus!| |seriesSolve|
+ |interpretString| LT |cardinality| |label| |outputList|
+ |resultantEuclideannaif| |lastSubResultant| |An| |bernoulli|
+ |integrate| |tanIfCan| |divisorCascade| |orthonormalBasis| |complex|
+ |d01anf| |integralAtInfinity?| |reducedQPowers| |fprindINFO|
+ |rowEchLocal| |integralRepresents| |incrementKthElement|
+ |complexZeros| |lfextlimint| |argscript| |HermiteIntegrate|
+ |factorSquareFreeByRecursion| |hasoln| |imagJ|
+ |stoseIntegralLastSubResultant| |f02adf| |nthFlag| |getDatabase|
+ |digit?| |rischDEsys| |quartic| |endSubProgram| |leftNorm|
+ |unvectorise| |times!| |henselFact| |semiResultantEuclideannaif| |row|
+ |cExp| |plus| |makeSUP| |latex| |permutationGroup| |lagrange| |vector|
+ |associatorDependence| |reducedSystem| |expt| |keys| |mapdiv|
+ |genericRightTrace| |ptFunc| |fixedPointExquo| |OMputFloat|
+ |whatInfinity| |differentiate| |exponentialOrder| |positiveRemainder|
+ |leftTrace| |redmat| |iiacsc| |weighted| |currentEnv| |s14baf|
+ |se2rfi| |rCoord| |OMlistSymbols| |iExquo| |physicalLength!|
+ |removeDuplicates!| |binding| |varselect| |stoseInvertible?| |cCoth|
+ |rowEchelon| |cCsc| |asinIfCan| |qinterval| |adjoint| |cLog|
+ |rewriteIdealWithRemainder| |times| |plotPolar| |iroot|
+ |tryFunctionalDecomposition?| |antiCommutator| |limit| |e04gcf|
+ |minPoints| |search| |dAndcExp| |fortranTypeOf| |fortranCompilerName|
+ |permanent| |index| |Frobenius| |rdregime| |ceiling| |npcoef|
+ |conditionP| |operator| |s17aef| |selectOrPolynomials| |leastPower|
+ |purelyAlgebraic?| |graphs| |split| |randomR|
+ |unrankImproperPartitions0| |option| |call| |SturmHabichtMultiple|
+ |indicialEquationAtInfinity| |pade| |minimalPolynomial| |associator|
+ |horizConcat| |primeFrobenius| |outputMeasure| |univariateSolve|
+ |cartesian| |list| |showTheSymbolTable| |OMencodingUnknown|
+ |drawCurves| |monom| |leftMult| |pair| |modifyPoint| |myDegree|
+ |makeTerm| |lifting1| |nary?| |irreducibleFactor| |rightZero| |car|
+ |extract!| |selectfirst| |mkPrim| |derivative| |c05nbf| |distance|
+ |bfEntry| |semiResultantReduitEuclidean| |laguerre| |cdr| |remove!|
+ |declare| |cSinh| |contractSolve| |coefChoose| |imports| |bat1| |arg1|
+ |common| |integralBasisAtInfinity| |clearFortranOutputStack|
+ |setDifference| |mappingAst| |copies| |getCode| |checkPrecision|
+ |queue| |mkAnswer| |hessian| |fractRagits| |arg2| |function|
+ |ramified?| |semiDegreeSubResultantEuclidean| |isMult|
+ |setIntersection| |OMclose| |generators| |max| |moduloP| |ksec|
+ |oblateSpheroidal| |lazyPquo| |binaryTree| |getZechTable| |setUnion|
+ |asimpson| |leftUnit| |mapmult| |node?| |basisOfLeftNucloid|
+ |zeroSetSplit| |rightTrim| |subNode?| |leaves| |conditions|
+ |generalizedInverse| |apply| |impliesOperands| |argumentListOf|
+ |palgint| |explogs2trigs| |f07aef| |diophantineSystem|
+ |polynomialZeros| |shiftRoots| |leftTrim| |initiallyReduce|
+ |aspFilename| |child?| |palglimint| |f02aff| |makeViewport2D|
+ |complexRoots| |fortranLogical| |repSq| |ocf2ocdf| |checkRur| |size|
+ |nonQsign| |primlimintfrac| |setAdaptive| |OMputObject| |integerBound|
+ |nthRootIfCan| |nthRoot| |mpsode| |integral?| |multiple?| |bat|
+ |mirror| |groebner?| |fillPascalTriangle| |critM|
+ |squareFreePolynomial| |log| |constantOpIfCan| |ddFact|
+ |nonLinearPart| |numFunEvals3D| |selectAndPolynomials| |rules|
+ |enterPointData| |createLowComplexityNormalBasis| |FormatArabic|
+ |dmpToP| |pleskenSplit| |showTheFTable| |sumOfKthPowerDivisors|
+ |first| |tracePowMod| |doubleFloatFormat| |cCosh|
+ |showFortranOutputStack| |overbar| |RittWuCompare| |perfectSqrt|
+ |OMopenString| |OMgetType| |pattern| |rest| |elRow1!| |ricDsolve|
+ |swap!| |light| |rule| |getSyntaxFormsFromFile| |firstNumer|
+ |lflimitedint| |extendedint| |LyndonBasis| |substitute| |increment|
+ |components| |rectangularMatrix| |simpleBounds?| |lepol| |is?|
+ |factorial| |removeDuplicates| |OMsetEncoding| |push!| |printInfo!|
+ |f04jgf| |bumptab| |sec2cos| |s15aef| |processTemplate|
+ |solveLinearPolynomialEquationByFractions| |listConjugateBases|
+ |checkForZero| |orbits| |phiCoord| |cAsinh| |polCase| |truncate|
+ |genericRightDiscriminant| |selectPDERoutines| |/\\| |Gamma| |lcm|
+ |mat| |members| |inRadical?| |message| |tryFunctionalDecomposition|
+ |mapExpon| |ldf2vmf| |d02gbf| |getOperator| |readIfCan!| |\\/|
+ |option?| |shallowExpand| |e04ucf| |resetNew| |direction| |id|
+ |f02wef| |s18adf| |OMgetEndObject| |append| |ODESolve|
+ |PollardSmallFactor| |s14aaf| |sizePascalTriangle| |realZeros|
+ |leftQuotient| |operators| |screenResolution3D| |gcd|
+ |commonDenominator| |musserTrials| |primaryDecomp| |leftOne|
+ |getMultiplicationTable| |table| |largest| |repeatUntilLoop|
+ |trivialIdeal?| |false| |root| |bezoutMatrix| |coordinate| |critT|
+ |stoseInvertible?reg| |symmetricPower| |new| |palgint0| UP2UTS
+ |coerceL| |nodes| |OMgetApp| |shufflein| |factorFraction|
+ |numberOfDivisors| |antisymmetric?| |startPolynomial| |chvar| |cAcosh|
+ |partialNumerators| |showTheRoutinesTable| |critpOrder| |contours|
+ |autoReduced?| |printInfo| |test| |string?| |plenaryPower|
+ |currentSubProgram| |imagk| |OMgetSymbol| |zero| |iiasech| |OMgetAttr|
+ |Si| |comp| |lex| |#| |jordanAlgebra?| |symbol?| |factorSquareFree|
+ |testDim| |s17acf| |rootPower| |rightRankPolynomial| |inc|
+ |explicitlyEmpty?| |cAsin| |c06frf| |superscript| |goodnessOfFit|
+ |And| |basisOfNucleus| |getButtonValue| |constantCoefficientRicDE|
+ |createThreeSpace| |bandedJacobian| |topFortranOutputStack|
+ |backOldPos| |extend| |screenResolution| |Or| |f04qaf|
+ |factorGroebnerBasis| |s13adf| |irreducibleRepresentation|
+ |idealiserMatrix| |zerosOf| |rationalPoint?| |multMonom| |maxrow|
+ |Not| |bipolar| |Nul| |writeByteIfCan!| |remove| |stack| |f01qef|
+ |lazyIrreducibleFactors| |radicalRoots| |denomLODE|
+ |primPartElseUnitCanonical!| |ode| |convergents| |clipPointsDefault|
+ |viewWriteAvailable| |expintegrate| |cotIfCan| |limitedIntegrate|
+ |inrootof| |select!| |last| |newTypeLists| |numberOfNormalPoly|
+ |modularGcdPrimitive| ~= |wholePart| |divideIfCan| |OMconnInDevice|
+ |assoc| |left| |hasSolution?| |ScanFloatIgnoreSpacesIfCan| |errorInfo|
+ |redPol| |unmakeSUP| |systemSizeIF| |extractClosed| |coerce|
+ |rightOne| |right| |OMgetEndAtp| |patternMatch| |selectsecond|
+ |innerSolve1| |e02ddf| |construct| |OMputSymbol| |cup| |sparsityIF|
+ |bumptab1| |returnType!| |concat!| |linearPart| |minColIndex|
+ |quasiComponent| |s17dlf| |bivariatePolynomials| |minimize|
+ |clipParametric| |resize| |setsubMatrix!| |intersect| |commutator|
+ |inverseColeman| |constant?| |ravel| |cSin| |jordanAdmissible?|
+ |mesh?| |ref| |curveColor| |fortranDoubleComplex| |reshape|
+ |changeWeightLevel| |messagePrint| |removeSquaresIfCan| |changeName|
+ |getVariableOrder| ** |semicolonSeparate| |mathieu11| |rur| |logpart|
+ |computeCycleEntry| |uniform01| |algintegrate| |lfintegrate|
+ |cyclotomic| |polarCoordinates| |symmetricProduct| |normalise|
+ |validExponential| |optpair| |totalDifferential| |style|
+ |integralDerivationMatrix| |e02def| |thetaCoord| |schwerpunkt| EQ
+ |cAsech| |twist| |central?| |cPower| |cyclePartition|
+ |halfExtendedSubResultantGcd2| |tanNa| |stosePrepareSubResAlgo| |diff|
+ |readable?| |reseed| |principal?| |leadingIndex| |separate|
+ |infinityNorm| |showTheIFTable| |ScanFloatIgnoreSpaces| |subSet|
+ |sPol| |tablePow| |basisOfRightNucloid| |shanksDiscLogAlgorithm|
+ |primes| |setrest!| |viewZoomDefault| |sumOfSquares| |listLoops|
+ |bsolve| |root?| |read!| |mergeFactors| |iomode| |flatten|
+ |makeResult| |less?| |symbol| |matrix| |rational?| |changeBase|
+ |measure| |numberOfVariables| |numberOfOperations| |e02aef|
+ |accuracyIF| |weierstrass| |coth2trigh| |expression|
+ |solveLinearPolynomialEquation| |evenInfiniteProduct| |setRealSteps|
+ |complete| |find| |strongGenerators| |deleteProperty!| |quasiRegular|
+ |stoseInvertibleSet| |integer| |powers| |fi2df| |palgLODE| |sequences|
+ |iifact| |setEmpty!| |setLabelValue| |rotatey| |f01mcf|
+ |OMencodingSGML| |monomialIntegrate| |romberg| |degree| |schema|
+ |selectODEIVPRoutines| |palgextint0| |lexTriangular| |isQuotient|
+ |chebyshevU| |byte| |signature| |heapSort| |crushedSet| |hash|
+ |SturmHabicht| |exponents| |mainVariables| |hypergeometric0F1|
+ |createMultiplicationMatrix| |cos2sec| |constantKernel| |cn| |count|
+ |exactQuotient!| |high| |sech2cosh| |leftUnits| |d01alf|
+ |mapUnivariate| |f01qdf| |f02bjf| |wreath| |not| |corrPoly|
+ |systemCommand| |unitNormal| |s17def| |s19acf| |deepestInitial|
+ |asinhIfCan| |imaginary| |lazyPseudoQuotient| |reducedDiscriminant|
+ |c06ecf| |characteristicPolynomial| |difference|
+ |linearAssociatedOrder| |acschIfCan| |completeHermite| |rootRadius|
+ |credPol| |anfactor| |double| |qfactor| |symmetricDifference| |addiag|
+ |normal?| UTS2UP |elem?| |lieAdmissible?| |OMwrite| |height|
+ |hostPlatform| |critBonD| |normal| |mainCoefficients|
+ |stoseLastSubResultant| |diagonals| |cTanh| |algebraicVariables|
+ |stFunc2| |binomThmExpt| |rationalPower| |coercePreimagesImages|
+ |outerProduct| |multiset| |leader| |c02aff| |log2| |compose|
+ |jacobiIdentity?| |coerceListOfPairs| |safetyMargin| |rischNormalize|
+ |sizeMultiplication| |ran| |graphStates| |rightRank|
+ |zeroSetSplitIntoTriangularSystems| |pomopo!| |quasiMonicPolynomials|
+ |generalSqFr| |d01fcf| |coefficient| |mapMatrixIfCan| |directory|
+ |basisOfLeftAnnihilator| |OMputEndAttr| |float?| |genericRightNorm|
+ |expressIdealMember| |crest| |padecf| |mainValue| |plot| |e02bbf|
+ |mapDown!| |leftFactor| |generalPosition| |algebraicOf| |collectUpper|
+ |ldf2lst| |loopPoints| |super| |eisensteinIrreducible?| |normalDeriv|
+ |tubeRadiusDefault| |linears| |isTimes| |nothing| |denominator|
+ |cosSinInfo| |fmecg| |probablyZeroDim?| |declare!| |lowerCase!|
+ |ignore?| |createMultiplicationTable| |curry| |partialFraction|
+ |atom?| |bipolarCylindrical| |psolve| |resetAttributeButtons| |cond|
+ |iteratedInitials| |clip| |expandPower| |brillhartTrials| |resultant|
+ |leftAlternative?| |distdfact| |complexEigenvalues| |genericPosition|
+ |brace| |maxdeg| |sncndn| |headReduced?| |linearMatrix|
+ |taylorQuoByVar| |replace| |pointSizeDefault| |setButtonValue|
+ |leftRankPolynomial| |viewPhiDefault| |perfectNthPower?| |fixedPoints|
+ |pair?| |exptMod| |squareFreeFactors| |divisors| |box| |eigenvector|
+ |preprocess| |s17adf| |dequeue!| |summation| |genericRightTraceForm|
+ |OMputEndBind| |toseInvertibleSet| |patternVariable| |contract|
+ |d02bbf| |stop| |permutationRepresentation| |failed| |cyclic| |yellow|
+ |edf2efi| |expPot| |monicRightDivide| |fibonacci| |f04maf| |paren|
+ |normalizedDivide| |value| |explicitEntries?| |relerror|
+ |oddInfiniteProduct| |e04jaf| |expandTrigProducts| |eigenvectors|
+ |lexGroebner| |csch2sinh| |minPol| |e02daf| |minGbasis| |ScanArabic|
+ |mathieu22| |indiceSubResultant| |createLowComplexityTable|
+ |innerSolve| |wholeRadix| |sinhIfCan| |squareTop| |makeViewport3D|
+ |lineColorDefault| |maxint| |f01rdf| |opeval| |signatureAst|
+ |addPoint| |toseSquareFreePart| |presuper| |laplacian| |normalize|
+ |setFormula!| |mainVariable?| |mapBivariate|
+ |setLegalFortranSourceExtensions| |reduceLODE| |doubleComplex?|
+ |exprToGenUPS| |acotIfCan| |axes| |lintgcd| |d02kef| |unary?|
+ |nextPrimitivePoly| |unparse| |hdmpToP| |or| |red| |expIfCan| |recur|
+ |length| |iterationVar| |Ei| |bag| |df2st| |slex| |s20adf|
+ |fractionFreeGauss!| |monicDivide| |scripts| |radicalSimplify| |iicot|
+ |prem| |bivariate?| |setOrder| |hasHi| |roughEqualIdeals?|
+ |fortranCharacter| |leadingExponent| |octon| |OMputBVar| |noKaratsuba|
+ |inconsistent?| |singularAtInfinity?| |FormatRoman| |transpose|
+ |removeSinSq| |showIntensityFunctions| |startTableInvSet!| |minordet|
+ |removeCoshSq| |mdeg| |polygon?| |csc2sin| |headReduce| |nor|
+ |lastSubResultantElseSplit| |generator| |closed?| |leadingTerm|
+ |ridHack1| |extendedSubResultantGcd| |iidprod| |cRationalPower|
+ |setProperty!| |pastel| |f2df| |leftCharacteristicPolynomial|
+ |rootSimp| |eyeDistance| |simplifyPower| |setref| |removeCosSq|
+ |makeYoungTableau| |internalDecompose| |typeList| |monomialIntPoly|
+ |purelyTranscendental?| |OMgetInteger| |usingTable?| |s15adf|
+ |createNormalPoly| |normalizeIfCan| |pureLex| |selectFiniteRoutines|
+ |rootOfIrreduciblePoly| |resultantEuclidean|
+ |removeRoughlyRedundantFactorsInPols| |mkIntegral| |kovacic| |sup|
+ |nlde| |parent| |curve?| |acscIfCan| |collect| |mainMonomial|
+ |radicalSolve| |besselK| |rubiksGroup| |c05adf| |roughUnitIdeal?|
+ |collectQuasiMonic| |paraboloidal| |smith| |reopen!|
+ |fortranLiteralLine| |cSec| |tubePoints| |radicalEigenvectors|
+ |nullary?| |rightNorm| |solveInField| |nullity| |leftPower|
+ |radicalEigenvalues| |clipWithRanges| |and?| |currentCategoryFrame|
+ |OMputString| |groebnerFactorize| |iisinh| |minus!| |monic?|
+ |var1StepsDefault| |lquo| |choosemon| |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 f35d2f1f..89645f28 100644
--- a/src/share/algebra/interp.daase
+++ b/src/share/algebra/interp.daase
@@ -1,5156 +1,5152 @@
-(3172667 . 3431018188)
-((-4142 (((-112) (-1 (-112) |#2| |#2|) $) 63) (((-112) $) NIL)) (-4311 (($ (-1 (-112) |#2| |#2|) $) 18) (($ $) NIL)) (-2254 ((|#2| $ (-549) |#2|) NIL) ((|#2| $ (-1193 (-549)) |#2|) 34)) (-1585 (($ $) 59)) (-2557 ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 40) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 38) ((|#2| (-1 |#2| |#2| |#2|) $) 37)) (-2883 (((-549) (-1 (-112) |#2|) $) 22) (((-549) |#2| $) NIL) (((-549) |#2| $ (-549)) 73)) (-2989 (((-621 |#2|) $) 13)) (-3890 (($ (-1 (-112) |#2| |#2|) $ $) 48) (($ $ $) NIL)) (-1868 (($ (-1 |#2| |#2|) $) 29)) (-2797 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 44)) (-2616 (($ |#2| $ (-549)) NIL) (($ $ $ (-549)) 50)) (-3779 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 24)) (-1780 (((-112) (-1 (-112) |#2|) $) 21)) (-3341 ((|#2| $ (-549) |#2|) NIL) ((|#2| $ (-549)) NIL) (($ $ (-1193 (-549))) 49)) (-2167 (($ $ (-549)) 56) (($ $ (-1193 (-549))) 55)) (-4000 (((-747) (-1 (-112) |#2|) $) 26) (((-747) |#2| $) NIL)) (-2730 (($ $ $ (-549)) 52)) (-2281 (($ $) 51)) (-3854 (($ (-621 |#2|)) 53)) (-1952 (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ $ $) 64) (($ (-621 $)) 62)) (-3846 (((-834) $) 69)) (-3527 (((-112) (-1 (-112) |#2|) $) 20)) (-2389 (((-112) $ $) 72)) (-2412 (((-112) $ $) 75)))
-(((-18 |#1| |#2|) (-10 -8 (-15 -2389 ((-112) |#1| |#1|)) (-15 -3846 ((-834) |#1|)) (-15 -2412 ((-112) |#1| |#1|)) (-15 -4311 (|#1| |#1|)) (-15 -4311 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -1585 (|#1| |#1|)) (-15 -2730 (|#1| |#1| |#1| (-549))) (-15 -4142 ((-112) |#1|)) (-15 -3890 (|#1| |#1| |#1|)) (-15 -2883 ((-549) |#2| |#1| (-549))) (-15 -2883 ((-549) |#2| |#1|)) (-15 -2883 ((-549) (-1 (-112) |#2|) |#1|)) (-15 -4142 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3890 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2254 (|#2| |#1| (-1193 (-549)) |#2|)) (-15 -2616 (|#1| |#1| |#1| (-549))) (-15 -2616 (|#1| |#2| |#1| (-549))) (-15 -2167 (|#1| |#1| (-1193 (-549)))) (-15 -2167 (|#1| |#1| (-549))) (-15 -3341 (|#1| |#1| (-1193 (-549)))) (-15 -2797 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1952 (|#1| (-621 |#1|))) (-15 -1952 (|#1| |#1| |#1|)) (-15 -1952 (|#1| |#2| |#1|)) (-15 -1952 (|#1| |#1| |#2|)) (-15 -3854 (|#1| (-621 |#2|))) (-15 -3779 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3341 (|#2| |#1| (-549))) (-15 -3341 (|#2| |#1| (-549) |#2|)) (-15 -2254 (|#2| |#1| (-549) |#2|)) (-15 -4000 ((-747) |#2| |#1|)) (-15 -2989 ((-621 |#2|) |#1|)) (-15 -4000 ((-747) (-1 (-112) |#2|) |#1|)) (-15 -1780 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3527 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1868 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2797 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2281 (|#1| |#1|))) (-19 |#2|) (-1180)) (T -18))
+(3173111 . 3431030431)
+((-2239 (((-112) (-1 (-112) |#2| |#2|) $) 63) (((-112) $) NIL)) (-2015 (($ (-1 (-112) |#2| |#2|) $) 18) (($ $) NIL)) (-2250 ((|#2| $ (-549) |#2|) NIL) ((|#2| $ (-1192 (-549)) |#2|) 34)) (-2918 (($ $) 59)) (-2556 ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 40) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 38) ((|#2| (-1 |#2| |#2| |#2|) $) 37)) (-2881 (((-549) (-1 (-112) |#2|) $) 22) (((-549) |#2| $) NIL) (((-549) |#2| $ (-549)) 73)) (-2987 (((-621 |#2|) $) 13)) (-3050 (($ (-1 (-112) |#2| |#2|) $ $) 48) (($ $ $) NIL)) (-1864 (($ (-1 |#2| |#2|) $) 29)) (-2795 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 44)) (-2613 (($ |#2| $ (-549)) NIL) (($ $ $ (-549)) 50)) (-3959 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 24)) (-3360 (((-112) (-1 (-112) |#2|) $) 21)) (-3339 ((|#2| $ (-549) |#2|) NIL) ((|#2| $ (-549)) NIL) (($ $ (-1192 (-549))) 49)) (-2162 (($ $ (-549)) 56) (($ $ (-1192 (-549))) 55)) (-3997 (((-747) (-1 (-112) |#2|) $) 26) (((-747) |#2| $) NIL)) (-2049 (($ $ $ (-549)) 52)) (-2279 (($ $) 51)) (-3853 (($ (-621 |#2|)) 53)) (-1950 (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ $ $) 64) (($ (-621 $)) 62)) (-3845 (((-834) $) 69)) (-3025 (((-112) (-1 (-112) |#2|) $) 20)) (-2387 (((-112) $ $) 72)) (-2409 (((-112) $ $) 75)))
+(((-18 |#1| |#2|) (-10 -8 (-15 -2387 ((-112) |#1| |#1|)) (-15 -3845 ((-834) |#1|)) (-15 -2409 ((-112) |#1| |#1|)) (-15 -2015 (|#1| |#1|)) (-15 -2015 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2918 (|#1| |#1|)) (-15 -2049 (|#1| |#1| |#1| (-549))) (-15 -2239 ((-112) |#1|)) (-15 -3050 (|#1| |#1| |#1|)) (-15 -2881 ((-549) |#2| |#1| (-549))) (-15 -2881 ((-549) |#2| |#1|)) (-15 -2881 ((-549) (-1 (-112) |#2|) |#1|)) (-15 -2239 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3050 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2250 (|#2| |#1| (-1192 (-549)) |#2|)) (-15 -2613 (|#1| |#1| |#1| (-549))) (-15 -2613 (|#1| |#2| |#1| (-549))) (-15 -2162 (|#1| |#1| (-1192 (-549)))) (-15 -2162 (|#1| |#1| (-549))) (-15 -3339 (|#1| |#1| (-1192 (-549)))) (-15 -2795 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1950 (|#1| (-621 |#1|))) (-15 -1950 (|#1| |#1| |#1|)) (-15 -1950 (|#1| |#2| |#1|)) (-15 -1950 (|#1| |#1| |#2|)) (-15 -3853 (|#1| (-621 |#2|))) (-15 -3959 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3339 (|#2| |#1| (-549))) (-15 -3339 (|#2| |#1| (-549) |#2|)) (-15 -2250 (|#2| |#1| (-549) |#2|)) (-15 -3997 ((-747) |#2| |#1|)) (-15 -2987 ((-621 |#2|) |#1|)) (-15 -3997 ((-747) (-1 (-112) |#2|) |#1|)) (-15 -3360 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3025 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1864 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2795 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2279 (|#1| |#1|))) (-19 |#2|) (-1179)) (T -18))
NIL
-(-10 -8 (-15 -2389 ((-112) |#1| |#1|)) (-15 -3846 ((-834) |#1|)) (-15 -2412 ((-112) |#1| |#1|)) (-15 -4311 (|#1| |#1|)) (-15 -4311 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -1585 (|#1| |#1|)) (-15 -2730 (|#1| |#1| |#1| (-549))) (-15 -4142 ((-112) |#1|)) (-15 -3890 (|#1| |#1| |#1|)) (-15 -2883 ((-549) |#2| |#1| (-549))) (-15 -2883 ((-549) |#2| |#1|)) (-15 -2883 ((-549) (-1 (-112) |#2|) |#1|)) (-15 -4142 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3890 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2254 (|#2| |#1| (-1193 (-549)) |#2|)) (-15 -2616 (|#1| |#1| |#1| (-549))) (-15 -2616 (|#1| |#2| |#1| (-549))) (-15 -2167 (|#1| |#1| (-1193 (-549)))) (-15 -2167 (|#1| |#1| (-549))) (-15 -3341 (|#1| |#1| (-1193 (-549)))) (-15 -2797 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1952 (|#1| (-621 |#1|))) (-15 -1952 (|#1| |#1| |#1|)) (-15 -1952 (|#1| |#2| |#1|)) (-15 -1952 (|#1| |#1| |#2|)) (-15 -3854 (|#1| (-621 |#2|))) (-15 -3779 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3341 (|#2| |#1| (-549))) (-15 -3341 (|#2| |#1| (-549) |#2|)) (-15 -2254 (|#2| |#1| (-549) |#2|)) (-15 -4000 ((-747) |#2| |#1|)) (-15 -2989 ((-621 |#2|) |#1|)) (-15 -4000 ((-747) (-1 (-112) |#2|) |#1|)) (-15 -1780 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3527 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1868 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2797 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2281 (|#1| |#1|)))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-1535 (((-1231) $ (-549) (-549)) 40 (|has| $ (-6 -4338)))) (-4142 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-823)))) (-4311 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4338))) (($ $) 88 (-12 (|has| |#1| (-823)) (|has| $ (-6 -4338))))) (-3193 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-823)))) (-1584 (((-112) $ (-747)) 8)) (-2254 ((|#1| $ (-549) |#1|) 52 (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) 58 (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4337)))) (-1682 (($) 7 T CONST)) (-1585 (($ $) 90 (|has| $ (-6 -4338)))) (-3064 (($ $) 100)) (-3676 (($ $) 78 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ |#1| $) 77 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4337)))) (-1879 ((|#1| $ (-549) |#1|) 53 (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) 51)) (-2883 (((-549) (-1 (-112) |#1|) $) 97) (((-549) |#1| $) 96 (|has| |#1| (-1067))) (((-549) |#1| $ (-549)) 95 (|has| |#1| (-1067)))) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3743 (($ (-747) |#1|) 69)) (-3194 (((-112) $ (-747)) 9)) (-4031 (((-549) $) 43 (|has| (-549) (-823)))) (-2863 (($ $ $) 87 (|has| |#1| (-823)))) (-3890 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-823)))) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1569 (((-549) $) 44 (|has| (-549) (-823)))) (-3575 (($ $ $) 86 (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-2616 (($ |#1| $ (-549)) 60) (($ $ $ (-549)) 59)) (-3303 (((-621 (-549)) $) 46)) (-3761 (((-112) (-549) $) 47)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-3646 ((|#1| $) 42 (|has| (-549) (-823)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-1642 (($ $ |#1|) 41 (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-2265 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) 48)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#1| $ (-549) |#1|) 50) ((|#1| $ (-549)) 49) (($ $ (-1193 (-549))) 63)) (-2167 (($ $ (-549)) 62) (($ $ (-1193 (-549))) 61)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2730 (($ $ $ (-549)) 91 (|has| $ (-6 -4338)))) (-2281 (($ $) 13)) (-2845 (((-525) $) 79 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 70)) (-1952 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-621 $)) 65)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) 84 (|has| |#1| (-823)))) (-2425 (((-112) $ $) 83 (|has| |#1| (-823)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-2438 (((-112) $ $) 85 (|has| |#1| (-823)))) (-2412 (((-112) $ $) 82 (|has| |#1| (-823)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-19 |#1|) (-138) (-1180)) (T -19))
+(-10 -8 (-15 -2387 ((-112) |#1| |#1|)) (-15 -3845 ((-834) |#1|)) (-15 -2409 ((-112) |#1| |#1|)) (-15 -2015 (|#1| |#1|)) (-15 -2015 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2918 (|#1| |#1|)) (-15 -2049 (|#1| |#1| |#1| (-549))) (-15 -2239 ((-112) |#1|)) (-15 -3050 (|#1| |#1| |#1|)) (-15 -2881 ((-549) |#2| |#1| (-549))) (-15 -2881 ((-549) |#2| |#1|)) (-15 -2881 ((-549) (-1 (-112) |#2|) |#1|)) (-15 -2239 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3050 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2250 (|#2| |#1| (-1192 (-549)) |#2|)) (-15 -2613 (|#1| |#1| |#1| (-549))) (-15 -2613 (|#1| |#2| |#1| (-549))) (-15 -2162 (|#1| |#1| (-1192 (-549)))) (-15 -2162 (|#1| |#1| (-549))) (-15 -3339 (|#1| |#1| (-1192 (-549)))) (-15 -2795 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1950 (|#1| (-621 |#1|))) (-15 -1950 (|#1| |#1| |#1|)) (-15 -1950 (|#1| |#2| |#1|)) (-15 -1950 (|#1| |#1| |#2|)) (-15 -3853 (|#1| (-621 |#2|))) (-15 -3959 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3339 (|#2| |#1| (-549))) (-15 -3339 (|#2| |#1| (-549) |#2|)) (-15 -2250 (|#2| |#1| (-549) |#2|)) (-15 -3997 ((-747) |#2| |#1|)) (-15 -2987 ((-621 |#2|) |#1|)) (-15 -3997 ((-747) (-1 (-112) |#2|) |#1|)) (-15 -3360 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3025 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1864 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2795 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2279 (|#1| |#1|)))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-3659 (((-1230) $ (-549) (-549)) 40 (|has| $ (-6 -4337)))) (-2239 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-823)))) (-2015 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4337))) (($ $) 88 (-12 (|has| |#1| (-823)) (|has| $ (-6 -4337))))) (-3191 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-823)))) (-2850 (((-112) $ (-747)) 8)) (-2250 ((|#1| $ (-549) |#1|) 52 (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) 58 (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4336)))) (-3034 (($) 7 T CONST)) (-2918 (($ $) 90 (|has| $ (-6 -4337)))) (-3062 (($ $) 100)) (-3675 (($ $) 78 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ |#1| $) 77 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4336)))) (-1875 ((|#1| $ (-549) |#1|) 53 (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) 51)) (-2881 (((-549) (-1 (-112) |#1|) $) 97) (((-549) |#1| $) 96 (|has| |#1| (-1066))) (((-549) |#1| $ (-549)) 95 (|has| |#1| (-1066)))) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-3743 (($ (-747) |#1|) 69)) (-1777 (((-112) $ (-747)) 9)) (-2807 (((-549) $) 43 (|has| (-549) (-823)))) (-2861 (($ $ $) 87 (|has| |#1| (-823)))) (-3050 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-823)))) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3063 (((-549) $) 44 (|has| (-549) (-823)))) (-3574 (($ $ $) 86 (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-2613 (($ |#1| $ (-549)) 60) (($ $ $ (-549)) 59)) (-2296 (((-621 (-549)) $) 46)) (-2284 (((-112) (-549) $) 47)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3645 ((|#1| $) 42 (|has| (-549) (-823)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-1943 (($ $ |#1|) 41 (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2478 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) 48)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#1| $ (-549) |#1|) 50) ((|#1| $ (-549)) 49) (($ $ (-1192 (-549))) 63)) (-2162 (($ $ (-549)) 62) (($ $ (-1192 (-549))) 61)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2049 (($ $ $ (-549)) 91 (|has| $ (-6 -4337)))) (-2279 (($ $) 13)) (-2843 (((-525) $) 79 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 70)) (-1950 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-621 $)) 65)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) 84 (|has| |#1| (-823)))) (-2423 (((-112) $ $) 83 (|has| |#1| (-823)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-2436 (((-112) $ $) 85 (|has| |#1| (-823)))) (-2409 (((-112) $ $) 82 (|has| |#1| (-823)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-19 |#1|) (-138) (-1179)) (T -19))
NIL
-(-13 (-366 |t#1|) (-10 -7 (-6 -4338)))
-(((-34) . T) ((-101) -1536 (|has| |#1| (-1067)) (|has| |#1| (-823))) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-823)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-366 |#1|) . T) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-627 |#1|) . T) ((-823) |has| |#1| (-823)) ((-1067) -1536 (|has| |#1| (-1067)) (|has| |#1| (-823))) ((-1180) . T))
-((-2001 (((-3 $ "failed") $ $) 12)) (-2500 (($ $) NIL) (($ $ $) 9)) (* (($ (-892) $) NIL) (($ (-747) $) 16) (($ (-549) $) 21)))
-(((-20 |#1|) (-10 -8 (-15 * (|#1| (-549) |#1|)) (-15 -2500 (|#1| |#1| |#1|)) (-15 -2500 (|#1| |#1|)) (-15 -2001 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|))) (-21)) (T -20))
+(-13 (-366 |t#1|) (-10 -7 (-6 -4337)))
+(((-34) . T) ((-101) -1536 (|has| |#1| (-1066)) (|has| |#1| (-823))) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-823)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-366 |#1|) . T) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-627 |#1|) . T) ((-823) |has| |#1| (-823)) ((-1066) -1536 (|has| |#1| (-1066)) (|has| |#1| (-823))) ((-1179) . T))
+((-2416 (((-3 $ "failed") $ $) 12)) (-2498 (($ $) NIL) (($ $ $) 9)) (* (($ (-892) $) NIL) (($ (-747) $) 16) (($ (-549) $) 21)))
+(((-20 |#1|) (-10 -8 (-15 * (|#1| (-549) |#1|)) (-15 -2498 (|#1| |#1| |#1|)) (-15 -2498 (|#1| |#1|)) (-15 -2416 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|))) (-21)) (T -20))
NIL
-(-10 -8 (-15 * (|#1| (-549) |#1|)) (-15 -2500 (|#1| |#1| |#1|)) (-15 -2500 (|#1| |#1|)) (-15 -2001 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20)))
+(-10 -8 (-15 * (|#1| (-549) |#1|)) (-15 -2498 (|#1| |#1| |#1|)) (-15 -2498 (|#1| |#1|)) (-15 -2416 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20)))
(((-21) (-138)) (T -21))
-((-2500 (*1 *1 *1) (-4 *1 (-21))) (-2500 (*1 *1 *1 *1) (-4 *1 (-21))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-21)) (-5 *2 (-549)))))
-(-13 (-130) (-10 -8 (-15 -2500 ($ $)) (-15 -2500 ($ $ $)) (-15 * ($ (-549) $))))
-(((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-1763 (((-112) $) 10)) (-1682 (($) 15)) (* (($ (-892) $) 14) (($ (-747) $) 18)))
-(((-22 |#1|) (-10 -8 (-15 * (|#1| (-747) |#1|)) (-15 -1763 ((-112) |#1|)) (-15 -1682 (|#1|)) (-15 * (|#1| (-892) |#1|))) (-23)) (T -22))
-NIL
-(-10 -8 (-15 * (|#1| (-747) |#1|)) (-15 -1763 ((-112) |#1|)) (-15 -1682 (|#1|)) (-15 * (|#1| (-892) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-1682 (($) 17 T CONST)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2486 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15)))
+((-2498 (*1 *1 *1) (-4 *1 (-21))) (-2498 (*1 *1 *1 *1) (-4 *1 (-21))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-21)) (-5 *2 (-549)))))
+(-13 (-130) (-10 -8 (-15 -2498 ($ $)) (-15 -2498 ($ $ $)) (-15 * ($ (-549) $))))
+(((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-3210 (((-112) $) 10)) (-3034 (($) 15)) (* (($ (-892) $) 14) (($ (-747) $) 18)))
+(((-22 |#1|) (-10 -8 (-15 * (|#1| (-747) |#1|)) (-15 -3210 ((-112) |#1|)) (-15 -3034 (|#1|)) (-15 * (|#1| (-892) |#1|))) (-23)) (T -22))
+NIL
+(-10 -8 (-15 * (|#1| (-747) |#1|)) (-15 -3210 ((-112) |#1|)) (-15 -3034 (|#1|)) (-15 * (|#1| (-892) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-3034 (($) 17 T CONST)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2484 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15)))
(((-23) (-138)) (T -23))
-((-3276 (*1 *1) (-4 *1 (-23))) (-1682 (*1 *1) (-4 *1 (-23))) (-1763 (*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-747)))))
-(-13 (-25) (-10 -8 (-15 (-3276) ($) -2589) (-15 -1682 ($) -2589) (-15 -1763 ((-112) $)) (-15 * ($ (-747) $))))
-(((-25) . T) ((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
+((-3274 (*1 *1) (-4 *1 (-23))) (-3034 (*1 *1) (-4 *1 (-23))) (-3210 (*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-747)))))
+(-13 (-25) (-10 -8 (-15 (-3274) ($) -2587) (-15 -3034 ($) -2587) (-15 -3210 ((-112) $)) (-15 * ($ (-747) $))))
+(((-25) . T) ((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
((* (($ (-892) $) 10)))
(((-24 |#1|) (-10 -8 (-15 * (|#1| (-892) |#1|))) (-25)) (T -24))
NIL
(-10 -8 (-15 * (|#1| (-892) |#1|)))
-((-3834 (((-112) $ $) 7)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-2389 (((-112) $ $) 6)) (-2486 (($ $ $) 14)) (* (($ (-892) $) 13)))
+((-3832 (((-112) $ $) 7)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-2387 (((-112) $ $) 6)) (-2484 (($ $ $) 14)) (* (($ (-892) $) 13)))
(((-25) (-138)) (T -25))
-((-2486 (*1 *1 *1 *1) (-4 *1 (-25))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-892)))))
-(-13 (-1067) (-10 -8 (-15 -2486 ($ $ $)) (-15 * ($ (-892) $))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-1329 (((-621 $) (-923 $)) 29) (((-621 $) (-1139 $)) 16) (((-621 $) (-1139 $) (-1143)) 20)) (-3289 (($ (-923 $)) 27) (($ (-1139 $)) 11) (($ (-1139 $) (-1143)) 54)) (-1815 (((-621 $) (-923 $)) 30) (((-621 $) (-1139 $)) 18) (((-621 $) (-1139 $) (-1143)) 19)) (-1947 (($ (-923 $)) 28) (($ (-1139 $)) 13) (($ (-1139 $) (-1143)) NIL)))
-(((-26 |#1|) (-10 -8 (-15 -1329 ((-621 |#1|) (-1139 |#1|) (-1143))) (-15 -1329 ((-621 |#1|) (-1139 |#1|))) (-15 -1329 ((-621 |#1|) (-923 |#1|))) (-15 -3289 (|#1| (-1139 |#1|) (-1143))) (-15 -3289 (|#1| (-1139 |#1|))) (-15 -3289 (|#1| (-923 |#1|))) (-15 -1815 ((-621 |#1|) (-1139 |#1|) (-1143))) (-15 -1815 ((-621 |#1|) (-1139 |#1|))) (-15 -1815 ((-621 |#1|) (-923 |#1|))) (-15 -1947 (|#1| (-1139 |#1|) (-1143))) (-15 -1947 (|#1| (-1139 |#1|))) (-15 -1947 (|#1| (-923 |#1|)))) (-27)) (T -26))
-NIL
-(-10 -8 (-15 -1329 ((-621 |#1|) (-1139 |#1|) (-1143))) (-15 -1329 ((-621 |#1|) (-1139 |#1|))) (-15 -1329 ((-621 |#1|) (-923 |#1|))) (-15 -3289 (|#1| (-1139 |#1|) (-1143))) (-15 -3289 (|#1| (-1139 |#1|))) (-15 -3289 (|#1| (-923 |#1|))) (-15 -1815 ((-621 |#1|) (-1139 |#1|) (-1143))) (-15 -1815 ((-621 |#1|) (-1139 |#1|))) (-15 -1815 ((-621 |#1|) (-923 |#1|))) (-15 -1947 (|#1| (-1139 |#1|) (-1143))) (-15 -1947 (|#1| (-1139 |#1|))) (-15 -1947 (|#1| (-923 |#1|))))
-((-3834 (((-112) $ $) 7)) (-1329 (((-621 $) (-923 $)) 77) (((-621 $) (-1139 $)) 76) (((-621 $) (-1139 $) (-1143)) 75)) (-3289 (($ (-923 $)) 80) (($ (-1139 $)) 79) (($ (-1139 $) (-1143)) 78)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-2001 (((-3 $ "failed") $ $) 19)) (-3979 (($ $) 70)) (-2402 (((-411 $) $) 69)) (-2134 (($ $) 89)) (-3866 (((-112) $ $) 57)) (-1682 (($) 17 T CONST)) (-1815 (((-621 $) (-923 $)) 83) (((-621 $) (-1139 $)) 82) (((-621 $) (-1139 $) (-1143)) 81)) (-1947 (($ (-923 $)) 86) (($ (-1139 $)) 85) (($ (-1139 $) (-1143)) 84)) (-2095 (($ $ $) 53)) (-2114 (((-3 $ "failed") $) 32)) (-2067 (($ $ $) 54)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 49)) (-1420 (((-112) $) 68)) (-2675 (((-112) $) 30)) (-4187 (($ $ (-549)) 88)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-1992 (($ $) 67)) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-2121 (((-411 $) $) 71)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2042 (((-3 $ "failed") $ $) 40)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-3684 (((-747) $) 56)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 55)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63)) (-2082 (((-747)) 28)) (-1498 (((-112) $ $) 37)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2513 (($ $ $) 62)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66) (($ $ (-400 (-549))) 87)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64)))
+((-2484 (*1 *1 *1 *1) (-4 *1 (-25))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-892)))))
+(-13 (-1066) (-10 -8 (-15 -2484 ($ $ $)) (-15 * ($ (-892) $))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-3804 (((-621 $) (-923 $)) 29) (((-621 $) (-1138 $)) 16) (((-621 $) (-1138 $) (-1142)) 20)) (-1566 (($ (-923 $)) 27) (($ (-1138 $)) 11) (($ (-1138 $) (-1142)) 54)) (-2798 (((-621 $) (-923 $)) 30) (((-621 $) (-1138 $)) 18) (((-621 $) (-1138 $) (-1142)) 19)) (-2406 (($ (-923 $)) 28) (($ (-1138 $)) 13) (($ (-1138 $) (-1142)) NIL)))
+(((-26 |#1|) (-10 -8 (-15 -3804 ((-621 |#1|) (-1138 |#1|) (-1142))) (-15 -3804 ((-621 |#1|) (-1138 |#1|))) (-15 -3804 ((-621 |#1|) (-923 |#1|))) (-15 -1566 (|#1| (-1138 |#1|) (-1142))) (-15 -1566 (|#1| (-1138 |#1|))) (-15 -1566 (|#1| (-923 |#1|))) (-15 -2798 ((-621 |#1|) (-1138 |#1|) (-1142))) (-15 -2798 ((-621 |#1|) (-1138 |#1|))) (-15 -2798 ((-621 |#1|) (-923 |#1|))) (-15 -2406 (|#1| (-1138 |#1|) (-1142))) (-15 -2406 (|#1| (-1138 |#1|))) (-15 -2406 (|#1| (-923 |#1|)))) (-27)) (T -26))
+NIL
+(-10 -8 (-15 -3804 ((-621 |#1|) (-1138 |#1|) (-1142))) (-15 -3804 ((-621 |#1|) (-1138 |#1|))) (-15 -3804 ((-621 |#1|) (-923 |#1|))) (-15 -1566 (|#1| (-1138 |#1|) (-1142))) (-15 -1566 (|#1| (-1138 |#1|))) (-15 -1566 (|#1| (-923 |#1|))) (-15 -2798 ((-621 |#1|) (-1138 |#1|) (-1142))) (-15 -2798 ((-621 |#1|) (-1138 |#1|))) (-15 -2798 ((-621 |#1|) (-923 |#1|))) (-15 -2406 (|#1| (-1138 |#1|) (-1142))) (-15 -2406 (|#1| (-1138 |#1|))) (-15 -2406 (|#1| (-923 |#1|))))
+((-3832 (((-112) $ $) 7)) (-3804 (((-621 $) (-923 $)) 77) (((-621 $) (-1138 $)) 76) (((-621 $) (-1138 $) (-1142)) 75)) (-1566 (($ (-923 $)) 80) (($ (-1138 $)) 79) (($ (-1138 $) (-1142)) 78)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-2416 (((-3 $ "failed") $ $) 19)) (-3239 (($ $) 70)) (-2620 (((-411 $) $) 69)) (-2132 (($ $) 89)) (-2680 (((-112) $ $) 57)) (-3034 (($) 17 T CONST)) (-2798 (((-621 $) (-923 $)) 83) (((-621 $) (-1138 $)) 82) (((-621 $) (-1138 $) (-1142)) 81)) (-2406 (($ (-923 $)) 86) (($ (-1138 $)) 85) (($ (-1138 $) (-1142)) 84)) (-2091 (($ $ $) 53)) (-2612 (((-3 $ "failed") $) 32)) (-2065 (($ $ $) 54)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 49)) (-1464 (((-112) $) 68)) (-2297 (((-112) $) 30)) (-3621 (($ $ (-549)) 88)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-1990 (($ $) 67)) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-2119 (((-411 $) $) 71)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2040 (((-3 $ "failed") $ $) 40)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-1335 (((-747) $) 56)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 55)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63)) (-2371 (((-747)) 28)) (-2441 (((-112) $ $) 37)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2511 (($ $ $) 62)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66) (($ $ (-400 (-549))) 87)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64)))
(((-27) (-138)) (T -27))
-((-1947 (*1 *1 *2) (-12 (-5 *2 (-923 *1)) (-4 *1 (-27)))) (-1947 (*1 *1 *2) (-12 (-5 *2 (-1139 *1)) (-4 *1 (-27)))) (-1947 (*1 *1 *2 *3) (-12 (-5 *2 (-1139 *1)) (-5 *3 (-1143)) (-4 *1 (-27)))) (-1815 (*1 *2 *3) (-12 (-5 *3 (-923 *1)) (-4 *1 (-27)) (-5 *2 (-621 *1)))) (-1815 (*1 *2 *3) (-12 (-5 *3 (-1139 *1)) (-4 *1 (-27)) (-5 *2 (-621 *1)))) (-1815 (*1 *2 *3 *4) (-12 (-5 *3 (-1139 *1)) (-5 *4 (-1143)) (-4 *1 (-27)) (-5 *2 (-621 *1)))) (-3289 (*1 *1 *2) (-12 (-5 *2 (-923 *1)) (-4 *1 (-27)))) (-3289 (*1 *1 *2) (-12 (-5 *2 (-1139 *1)) (-4 *1 (-27)))) (-3289 (*1 *1 *2 *3) (-12 (-5 *2 (-1139 *1)) (-5 *3 (-1143)) (-4 *1 (-27)))) (-1329 (*1 *2 *3) (-12 (-5 *3 (-923 *1)) (-4 *1 (-27)) (-5 *2 (-621 *1)))) (-1329 (*1 *2 *3) (-12 (-5 *3 (-1139 *1)) (-4 *1 (-27)) (-5 *2 (-621 *1)))) (-1329 (*1 *2 *3 *4) (-12 (-5 *3 (-1139 *1)) (-5 *4 (-1143)) (-4 *1 (-27)) (-5 *2 (-621 *1)))))
-(-13 (-356) (-973) (-10 -8 (-15 -1947 ($ (-923 $))) (-15 -1947 ($ (-1139 $))) (-15 -1947 ($ (-1139 $) (-1143))) (-15 -1815 ((-621 $) (-923 $))) (-15 -1815 ((-621 $) (-1139 $))) (-15 -1815 ((-621 $) (-1139 $) (-1143))) (-15 -3289 ($ (-923 $))) (-15 -3289 ($ (-1139 $))) (-15 -3289 ($ (-1139 $) (-1143))) (-15 -1329 ((-621 $) (-923 $))) (-15 -1329 ((-621 $) (-1139 $))) (-15 -1329 ((-621 $) (-1139 $) (-1143)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-237) . T) ((-283) . T) ((-300) . T) ((-356) . T) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 $) . T) ((-703) . T) ((-891) . T) ((-973) . T) ((-1024 #0#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1184) . T))
-((-1329 (((-621 $) (-923 $)) NIL) (((-621 $) (-1139 $)) NIL) (((-621 $) (-1139 $) (-1143)) 50) (((-621 $) $) 19) (((-621 $) $ (-1143)) 41)) (-3289 (($ (-923 $)) NIL) (($ (-1139 $)) NIL) (($ (-1139 $) (-1143)) 52) (($ $) 17) (($ $ (-1143)) 37)) (-1815 (((-621 $) (-923 $)) NIL) (((-621 $) (-1139 $)) NIL) (((-621 $) (-1139 $) (-1143)) 48) (((-621 $) $) 15) (((-621 $) $ (-1143)) 43)) (-1947 (($ (-923 $)) NIL) (($ (-1139 $)) NIL) (($ (-1139 $) (-1143)) NIL) (($ $) 12) (($ $ (-1143)) 39)))
-(((-28 |#1| |#2|) (-10 -8 (-15 -1329 ((-621 |#1|) |#1| (-1143))) (-15 -3289 (|#1| |#1| (-1143))) (-15 -1329 ((-621 |#1|) |#1|)) (-15 -3289 (|#1| |#1|)) (-15 -1815 ((-621 |#1|) |#1| (-1143))) (-15 -1947 (|#1| |#1| (-1143))) (-15 -1815 ((-621 |#1|) |#1|)) (-15 -1947 (|#1| |#1|)) (-15 -1329 ((-621 |#1|) (-1139 |#1|) (-1143))) (-15 -1329 ((-621 |#1|) (-1139 |#1|))) (-15 -1329 ((-621 |#1|) (-923 |#1|))) (-15 -3289 (|#1| (-1139 |#1|) (-1143))) (-15 -3289 (|#1| (-1139 |#1|))) (-15 -3289 (|#1| (-923 |#1|))) (-15 -1815 ((-621 |#1|) (-1139 |#1|) (-1143))) (-15 -1815 ((-621 |#1|) (-1139 |#1|))) (-15 -1815 ((-621 |#1|) (-923 |#1|))) (-15 -1947 (|#1| (-1139 |#1|) (-1143))) (-15 -1947 (|#1| (-1139 |#1|))) (-15 -1947 (|#1| (-923 |#1|)))) (-29 |#2|) (-13 (-823) (-541))) (T -28))
-NIL
-(-10 -8 (-15 -1329 ((-621 |#1|) |#1| (-1143))) (-15 -3289 (|#1| |#1| (-1143))) (-15 -1329 ((-621 |#1|) |#1|)) (-15 -3289 (|#1| |#1|)) (-15 -1815 ((-621 |#1|) |#1| (-1143))) (-15 -1947 (|#1| |#1| (-1143))) (-15 -1815 ((-621 |#1|) |#1|)) (-15 -1947 (|#1| |#1|)) (-15 -1329 ((-621 |#1|) (-1139 |#1|) (-1143))) (-15 -1329 ((-621 |#1|) (-1139 |#1|))) (-15 -1329 ((-621 |#1|) (-923 |#1|))) (-15 -3289 (|#1| (-1139 |#1|) (-1143))) (-15 -3289 (|#1| (-1139 |#1|))) (-15 -3289 (|#1| (-923 |#1|))) (-15 -1815 ((-621 |#1|) (-1139 |#1|) (-1143))) (-15 -1815 ((-621 |#1|) (-1139 |#1|))) (-15 -1815 ((-621 |#1|) (-923 |#1|))) (-15 -1947 (|#1| (-1139 |#1|) (-1143))) (-15 -1947 (|#1| (-1139 |#1|))) (-15 -1947 (|#1| (-923 |#1|))))
-((-3834 (((-112) $ $) 7)) (-1329 (((-621 $) (-923 $)) 77) (((-621 $) (-1139 $)) 76) (((-621 $) (-1139 $) (-1143)) 75) (((-621 $) $) 123) (((-621 $) $ (-1143)) 121)) (-3289 (($ (-923 $)) 80) (($ (-1139 $)) 79) (($ (-1139 $) (-1143)) 78) (($ $) 124) (($ $ (-1143)) 122)) (-1763 (((-112) $) 16)) (-2272 (((-621 (-1143)) $) 198)) (-2084 (((-400 (-1139 $)) $ (-592 $)) 230 (|has| |#1| (-541)))) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-1981 (((-621 (-592 $)) $) 161)) (-2001 (((-3 $ "failed") $ $) 19)) (-3015 (($ $ (-621 (-592 $)) (-621 $)) 151) (($ $ (-621 (-287 $))) 150) (($ $ (-287 $)) 149)) (-3979 (($ $) 70)) (-2402 (((-411 $) $) 69)) (-2134 (($ $) 89)) (-3866 (((-112) $ $) 57)) (-1682 (($) 17 T CONST)) (-1815 (((-621 $) (-923 $)) 83) (((-621 $) (-1139 $)) 82) (((-621 $) (-1139 $) (-1143)) 81) (((-621 $) $) 127) (((-621 $) $ (-1143)) 125)) (-1947 (($ (-923 $)) 86) (($ (-1139 $)) 85) (($ (-1139 $) (-1143)) 84) (($ $) 128) (($ $ (-1143)) 126)) (-2714 (((-3 (-923 |#1|) "failed") $) 248 (|has| |#1| (-1018))) (((-3 (-400 (-923 |#1|)) "failed") $) 232 (|has| |#1| (-541))) (((-3 |#1| "failed") $) 194) (((-3 (-549) "failed") $) 192 (|has| |#1| (-1009 (-549)))) (((-3 (-1143) "failed") $) 185) (((-3 (-592 $) "failed") $) 136) (((-3 (-400 (-549)) "failed") $) 120 (-1536 (-12 (|has| |#1| (-1009 (-549))) (|has| |#1| (-541))) (|has| |#1| (-1009 (-400 (-549))))))) (-2659 (((-923 |#1|) $) 249 (|has| |#1| (-1018))) (((-400 (-923 |#1|)) $) 233 (|has| |#1| (-541))) ((|#1| $) 195) (((-549) $) 191 (|has| |#1| (-1009 (-549)))) (((-1143) $) 186) (((-592 $) $) 137) (((-400 (-549)) $) 119 (-1536 (-12 (|has| |#1| (-1009 (-549))) (|has| |#1| (-541))) (|has| |#1| (-1009 (-400 (-549))))))) (-2095 (($ $ $) 53)) (-3879 (((-665 |#1|) (-665 $)) 238 (|has| |#1| (-1018))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) 237 (|has| |#1| (-1018))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 118 (-1536 (-1821 (|has| |#1| (-1018)) (|has| |#1| (-617 (-549)))) (-1821 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))))) (((-665 (-549)) (-665 $)) 117 (-1536 (-1821 (|has| |#1| (-1018)) (|has| |#1| (-617 (-549)))) (-1821 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))))) (-2114 (((-3 $ "failed") $) 32)) (-2067 (($ $ $) 54)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 49)) (-1420 (((-112) $) 68)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 190 (|has| |#1| (-857 (-372)))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 189 (|has| |#1| (-857 (-549))))) (-3225 (($ (-621 $)) 155) (($ $) 154)) (-2162 (((-621 (-114)) $) 162)) (-2834 (((-114) (-114)) 163)) (-2675 (((-112) $) 30)) (-3559 (((-112) $) 183 (|has| $ (-1009 (-549))))) (-1726 (($ $) 215 (|has| |#1| (-1018)))) (-1394 (((-1092 |#1| (-592 $)) $) 214 (|has| |#1| (-1018)))) (-4187 (($ $ (-549)) 88)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-1549 (((-1139 $) (-592 $)) 180 (|has| $ (-1018)))) (-2863 (($ $ $) 134)) (-3575 (($ $ $) 133)) (-2797 (($ (-1 $ $) (-592 $)) 169)) (-2634 (((-3 (-592 $) "failed") $) 159)) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-2071 (((-621 (-592 $)) $) 160)) (-1476 (($ (-114) (-621 $)) 168) (($ (-114) $) 167)) (-4266 (((-3 (-621 $) "failed") $) 209 (|has| |#1| (-1079)))) (-1671 (((-3 (-2 (|:| |val| $) (|:| -3731 (-549))) "failed") $) 218 (|has| |#1| (-1018)))) (-2533 (((-3 (-621 $) "failed") $) 211 (|has| |#1| (-25)))) (-2761 (((-3 (-2 (|:| -1570 (-549)) (|:| |var| (-592 $))) "failed") $) 212 (|has| |#1| (-25)))) (-1503 (((-3 (-2 (|:| |var| (-592 $)) (|:| -3731 (-549))) "failed") $ (-1143)) 217 (|has| |#1| (-1018))) (((-3 (-2 (|:| |var| (-592 $)) (|:| -3731 (-549))) "failed") $ (-114)) 216 (|has| |#1| (-1018))) (((-3 (-2 (|:| |var| (-592 $)) (|:| -3731 (-549))) "failed") $) 210 (|has| |#1| (-1079)))) (-3421 (((-112) $ (-1143)) 166) (((-112) $ (-114)) 165)) (-1992 (($ $) 67)) (-4036 (((-747) $) 158)) (-3990 (((-1087) $) 10)) (-2004 (((-112) $) 196)) (-2016 ((|#1| $) 197)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-2979 (((-112) $ (-1143)) 171) (((-112) $ $) 170)) (-2121 (((-411 $) $) 71)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2042 (((-3 $ "failed") $ $) 40)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-3450 (((-112) $) 182 (|has| $ (-1009 (-549))))) (-2686 (($ $ (-1143) (-747) (-1 $ $)) 222 (|has| |#1| (-1018))) (($ $ (-1143) (-747) (-1 $ (-621 $))) 221 (|has| |#1| (-1018))) (($ $ (-621 (-1143)) (-621 (-747)) (-621 (-1 $ (-621 $)))) 220 (|has| |#1| (-1018))) (($ $ (-621 (-1143)) (-621 (-747)) (-621 (-1 $ $))) 219 (|has| |#1| (-1018))) (($ $ (-621 (-114)) (-621 $) (-1143)) 208 (|has| |#1| (-594 (-525)))) (($ $ (-114) $ (-1143)) 207 (|has| |#1| (-594 (-525)))) (($ $) 206 (|has| |#1| (-594 (-525)))) (($ $ (-621 (-1143))) 205 (|has| |#1| (-594 (-525)))) (($ $ (-1143)) 204 (|has| |#1| (-594 (-525)))) (($ $ (-114) (-1 $ $)) 179) (($ $ (-114) (-1 $ (-621 $))) 178) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) 177) (($ $ (-621 (-114)) (-621 (-1 $ $))) 176) (($ $ (-1143) (-1 $ $)) 175) (($ $ (-1143) (-1 $ (-621 $))) 174) (($ $ (-621 (-1143)) (-621 (-1 $ (-621 $)))) 173) (($ $ (-621 (-1143)) (-621 (-1 $ $))) 172) (($ $ (-621 $) (-621 $)) 143) (($ $ $ $) 142) (($ $ (-287 $)) 141) (($ $ (-621 (-287 $))) 140) (($ $ (-621 (-592 $)) (-621 $)) 139) (($ $ (-592 $) $) 138)) (-3684 (((-747) $) 56)) (-3341 (($ (-114) (-621 $)) 148) (($ (-114) $ $ $ $) 147) (($ (-114) $ $ $) 146) (($ (-114) $ $) 145) (($ (-114) $) 144)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 55)) (-3433 (($ $ $) 157) (($ $) 156)) (-3456 (($ $ (-1143)) 246 (|has| |#1| (-1018))) (($ $ (-621 (-1143))) 245 (|has| |#1| (-1018))) (($ $ (-1143) (-747)) 244 (|has| |#1| (-1018))) (($ $ (-621 (-1143)) (-621 (-747))) 243 (|has| |#1| (-1018)))) (-3939 (($ $) 225 (|has| |#1| (-541)))) (-1403 (((-1092 |#1| (-592 $)) $) 224 (|has| |#1| (-541)))) (-2815 (($ $) 181 (|has| $ (-1018)))) (-2845 (((-525) $) 252 (|has| |#1| (-594 (-525)))) (($ (-411 $)) 223 (|has| |#1| (-541))) (((-863 (-372)) $) 188 (|has| |#1| (-594 (-863 (-372))))) (((-863 (-549)) $) 187 (|has| |#1| (-594 (-863 (-549)))))) (-1955 (($ $ $) 251 (|has| |#1| (-465)))) (-3293 (($ $ $) 250 (|has| |#1| (-465)))) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63) (($ (-923 |#1|)) 247 (|has| |#1| (-1018))) (($ (-400 (-923 |#1|))) 231 (|has| |#1| (-541))) (($ (-400 (-923 (-400 |#1|)))) 229 (|has| |#1| (-541))) (($ (-923 (-400 |#1|))) 228 (|has| |#1| (-541))) (($ (-400 |#1|)) 227 (|has| |#1| (-541))) (($ (-1092 |#1| (-592 $))) 213 (|has| |#1| (-1018))) (($ |#1|) 193) (($ (-1143)) 184) (($ (-592 $)) 135)) (-2210 (((-3 $ "failed") $) 236 (|has| |#1| (-143)))) (-2082 (((-747)) 28)) (-4137 (($ (-621 $)) 153) (($ $) 152)) (-4285 (((-112) (-114)) 164)) (-1498 (((-112) $ $) 37)) (-1789 (($ (-1143) (-621 $)) 203) (($ (-1143) $ $ $ $) 202) (($ (-1143) $ $ $) 201) (($ (-1143) $ $) 200) (($ (-1143) $) 199)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ (-1143)) 242 (|has| |#1| (-1018))) (($ $ (-621 (-1143))) 241 (|has| |#1| (-1018))) (($ $ (-1143) (-747)) 240 (|has| |#1| (-1018))) (($ $ (-621 (-1143)) (-621 (-747))) 239 (|has| |#1| (-1018)))) (-2448 (((-112) $ $) 131)) (-2425 (((-112) $ $) 130)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 132)) (-2412 (((-112) $ $) 129)) (-2513 (($ $ $) 62) (($ (-1092 |#1| (-592 $)) (-1092 |#1| (-592 $))) 226 (|has| |#1| (-541)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66) (($ $ (-400 (-549))) 87)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64) (($ $ |#1|) 235 (|has| |#1| (-170))) (($ |#1| $) 234 (|has| |#1| (-170)))))
+((-2406 (*1 *1 *2) (-12 (-5 *2 (-923 *1)) (-4 *1 (-27)))) (-2406 (*1 *1 *2) (-12 (-5 *2 (-1138 *1)) (-4 *1 (-27)))) (-2406 (*1 *1 *2 *3) (-12 (-5 *2 (-1138 *1)) (-5 *3 (-1142)) (-4 *1 (-27)))) (-2798 (*1 *2 *3) (-12 (-5 *3 (-923 *1)) (-4 *1 (-27)) (-5 *2 (-621 *1)))) (-2798 (*1 *2 *3) (-12 (-5 *3 (-1138 *1)) (-4 *1 (-27)) (-5 *2 (-621 *1)))) (-2798 (*1 *2 *3 *4) (-12 (-5 *3 (-1138 *1)) (-5 *4 (-1142)) (-4 *1 (-27)) (-5 *2 (-621 *1)))) (-1566 (*1 *1 *2) (-12 (-5 *2 (-923 *1)) (-4 *1 (-27)))) (-1566 (*1 *1 *2) (-12 (-5 *2 (-1138 *1)) (-4 *1 (-27)))) (-1566 (*1 *1 *2 *3) (-12 (-5 *2 (-1138 *1)) (-5 *3 (-1142)) (-4 *1 (-27)))) (-3804 (*1 *2 *3) (-12 (-5 *3 (-923 *1)) (-4 *1 (-27)) (-5 *2 (-621 *1)))) (-3804 (*1 *2 *3) (-12 (-5 *3 (-1138 *1)) (-4 *1 (-27)) (-5 *2 (-621 *1)))) (-3804 (*1 *2 *3 *4) (-12 (-5 *3 (-1138 *1)) (-5 *4 (-1142)) (-4 *1 (-27)) (-5 *2 (-621 *1)))))
+(-13 (-356) (-973) (-10 -8 (-15 -2406 ($ (-923 $))) (-15 -2406 ($ (-1138 $))) (-15 -2406 ($ (-1138 $) (-1142))) (-15 -2798 ((-621 $) (-923 $))) (-15 -2798 ((-621 $) (-1138 $))) (-15 -2798 ((-621 $) (-1138 $) (-1142))) (-15 -1566 ($ (-923 $))) (-15 -1566 ($ (-1138 $))) (-15 -1566 ($ (-1138 $) (-1142))) (-15 -3804 ((-621 $) (-923 $))) (-15 -3804 ((-621 $) (-1138 $))) (-15 -3804 ((-621 $) (-1138 $) (-1142)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-237) . T) ((-283) . T) ((-300) . T) ((-356) . T) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 $) . T) ((-703) . T) ((-891) . T) ((-973) . T) ((-1024 #0#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1183) . T))
+((-3804 (((-621 $) (-923 $)) NIL) (((-621 $) (-1138 $)) NIL) (((-621 $) (-1138 $) (-1142)) 50) (((-621 $) $) 19) (((-621 $) $ (-1142)) 41)) (-1566 (($ (-923 $)) NIL) (($ (-1138 $)) NIL) (($ (-1138 $) (-1142)) 52) (($ $) 17) (($ $ (-1142)) 37)) (-2798 (((-621 $) (-923 $)) NIL) (((-621 $) (-1138 $)) NIL) (((-621 $) (-1138 $) (-1142)) 48) (((-621 $) $) 15) (((-621 $) $ (-1142)) 43)) (-2406 (($ (-923 $)) NIL) (($ (-1138 $)) NIL) (($ (-1138 $) (-1142)) NIL) (($ $) 12) (($ $ (-1142)) 39)))
+(((-28 |#1| |#2|) (-10 -8 (-15 -3804 ((-621 |#1|) |#1| (-1142))) (-15 -1566 (|#1| |#1| (-1142))) (-15 -3804 ((-621 |#1|) |#1|)) (-15 -1566 (|#1| |#1|)) (-15 -2798 ((-621 |#1|) |#1| (-1142))) (-15 -2406 (|#1| |#1| (-1142))) (-15 -2798 ((-621 |#1|) |#1|)) (-15 -2406 (|#1| |#1|)) (-15 -3804 ((-621 |#1|) (-1138 |#1|) (-1142))) (-15 -3804 ((-621 |#1|) (-1138 |#1|))) (-15 -3804 ((-621 |#1|) (-923 |#1|))) (-15 -1566 (|#1| (-1138 |#1|) (-1142))) (-15 -1566 (|#1| (-1138 |#1|))) (-15 -1566 (|#1| (-923 |#1|))) (-15 -2798 ((-621 |#1|) (-1138 |#1|) (-1142))) (-15 -2798 ((-621 |#1|) (-1138 |#1|))) (-15 -2798 ((-621 |#1|) (-923 |#1|))) (-15 -2406 (|#1| (-1138 |#1|) (-1142))) (-15 -2406 (|#1| (-1138 |#1|))) (-15 -2406 (|#1| (-923 |#1|)))) (-29 |#2|) (-13 (-823) (-541))) (T -28))
+NIL
+(-10 -8 (-15 -3804 ((-621 |#1|) |#1| (-1142))) (-15 -1566 (|#1| |#1| (-1142))) (-15 -3804 ((-621 |#1|) |#1|)) (-15 -1566 (|#1| |#1|)) (-15 -2798 ((-621 |#1|) |#1| (-1142))) (-15 -2406 (|#1| |#1| (-1142))) (-15 -2798 ((-621 |#1|) |#1|)) (-15 -2406 (|#1| |#1|)) (-15 -3804 ((-621 |#1|) (-1138 |#1|) (-1142))) (-15 -3804 ((-621 |#1|) (-1138 |#1|))) (-15 -3804 ((-621 |#1|) (-923 |#1|))) (-15 -1566 (|#1| (-1138 |#1|) (-1142))) (-15 -1566 (|#1| (-1138 |#1|))) (-15 -1566 (|#1| (-923 |#1|))) (-15 -2798 ((-621 |#1|) (-1138 |#1|) (-1142))) (-15 -2798 ((-621 |#1|) (-1138 |#1|))) (-15 -2798 ((-621 |#1|) (-923 |#1|))) (-15 -2406 (|#1| (-1138 |#1|) (-1142))) (-15 -2406 (|#1| (-1138 |#1|))) (-15 -2406 (|#1| (-923 |#1|))))
+((-3832 (((-112) $ $) 7)) (-3804 (((-621 $) (-923 $)) 77) (((-621 $) (-1138 $)) 76) (((-621 $) (-1138 $) (-1142)) 75) (((-621 $) $) 123) (((-621 $) $ (-1142)) 121)) (-1566 (($ (-923 $)) 80) (($ (-1138 $)) 79) (($ (-1138 $) (-1142)) 78) (($ $) 124) (($ $ (-1142)) 122)) (-3210 (((-112) $) 16)) (-2270 (((-621 (-1142)) $) 198)) (-2082 (((-400 (-1138 $)) $ (-592 $)) 230 (|has| |#1| (-541)))) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-1979 (((-621 (-592 $)) $) 161)) (-2416 (((-3 $ "failed") $ $) 19)) (-3013 (($ $ (-621 (-592 $)) (-621 $)) 151) (($ $ (-621 (-287 $))) 150) (($ $ (-287 $)) 149)) (-3239 (($ $) 70)) (-2620 (((-411 $) $) 69)) (-2132 (($ $) 89)) (-2680 (((-112) $ $) 57)) (-3034 (($) 17 T CONST)) (-2798 (((-621 $) (-923 $)) 83) (((-621 $) (-1138 $)) 82) (((-621 $) (-1138 $) (-1142)) 81) (((-621 $) $) 127) (((-621 $) $ (-1142)) 125)) (-2406 (($ (-923 $)) 86) (($ (-1138 $)) 85) (($ (-1138 $) (-1142)) 84) (($ $) 128) (($ $ (-1142)) 126)) (-2712 (((-3 (-923 |#1|) "failed") $) 248 (|has| |#1| (-1018))) (((-3 (-400 (-923 |#1|)) "failed") $) 232 (|has| |#1| (-541))) (((-3 |#1| "failed") $) 194) (((-3 (-549) "failed") $) 192 (|has| |#1| (-1009 (-549)))) (((-3 (-1142) "failed") $) 185) (((-3 (-592 $) "failed") $) 136) (((-3 (-400 (-549)) "failed") $) 120 (-1536 (-12 (|has| |#1| (-1009 (-549))) (|has| |#1| (-541))) (|has| |#1| (-1009 (-400 (-549))))))) (-2657 (((-923 |#1|) $) 249 (|has| |#1| (-1018))) (((-400 (-923 |#1|)) $) 233 (|has| |#1| (-541))) ((|#1| $) 195) (((-549) $) 191 (|has| |#1| (-1009 (-549)))) (((-1142) $) 186) (((-592 $) $) 137) (((-400 (-549)) $) 119 (-1536 (-12 (|has| |#1| (-1009 (-549))) (|has| |#1| (-541))) (|has| |#1| (-1009 (-400 (-549))))))) (-2091 (($ $ $) 53)) (-3446 (((-665 |#1|) (-665 $)) 238 (|has| |#1| (-1018))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) 237 (|has| |#1| (-1018))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 118 (-1536 (-1819 (|has| |#1| (-1018)) (|has| |#1| (-617 (-549)))) (-1819 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))))) (((-665 (-549)) (-665 $)) 117 (-1536 (-1819 (|has| |#1| (-1018)) (|has| |#1| (-617 (-549)))) (-1819 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))))) (-2612 (((-3 $ "failed") $) 32)) (-2065 (($ $ $) 54)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 49)) (-1464 (((-112) $) 68)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 190 (|has| |#1| (-857 (-372)))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 189 (|has| |#1| (-857 (-549))))) (-4158 (($ (-621 $)) 155) (($ $) 154)) (-3724 (((-621 (-114)) $) 162)) (-3500 (((-114) (-114)) 163)) (-2297 (((-112) $) 30)) (-2803 (((-112) $) 183 (|has| $ (-1009 (-549))))) (-2096 (($ $) 215 (|has| |#1| (-1018)))) (-1392 (((-1091 |#1| (-592 $)) $) 214 (|has| |#1| (-1018)))) (-3621 (($ $ (-549)) 88)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-1797 (((-1138 $) (-592 $)) 180 (|has| $ (-1018)))) (-2861 (($ $ $) 134)) (-3574 (($ $ $) 133)) (-2795 (($ (-1 $ $) (-592 $)) 169)) (-2197 (((-3 (-592 $) "failed") $) 159)) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-2059 (((-621 (-592 $)) $) 160)) (-1475 (($ (-114) (-621 $)) 168) (($ (-114) $) 167)) (-4093 (((-3 (-621 $) "failed") $) 209 (|has| |#1| (-1078)))) (-3257 (((-3 (-2 (|:| |val| $) (|:| -1714 (-549))) "failed") $) 218 (|has| |#1| (-1018)))) (-1503 (((-3 (-621 $) "failed") $) 211 (|has| |#1| (-25)))) (-3570 (((-3 (-2 (|:| -1569 (-549)) (|:| |var| (-592 $))) "failed") $) 212 (|has| |#1| (-25)))) (-1477 (((-3 (-2 (|:| |var| (-592 $)) (|:| -1714 (-549))) "failed") $ (-1142)) 217 (|has| |#1| (-1018))) (((-3 (-2 (|:| |var| (-592 $)) (|:| -1714 (-549))) "failed") $ (-114)) 216 (|has| |#1| (-1018))) (((-3 (-2 (|:| |var| (-592 $)) (|:| -1714 (-549))) "failed") $) 210 (|has| |#1| (-1078)))) (-3673 (((-112) $ (-1142)) 166) (((-112) $ (-114)) 165)) (-1990 (($ $) 67)) (-4036 (((-747) $) 158)) (-3988 (((-1086) $) 10)) (-2001 (((-112) $) 196)) (-2011 ((|#1| $) 197)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-2934 (((-112) $ (-1142)) 171) (((-112) $ $) 170)) (-2119 (((-411 $) $) 71)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2040 (((-3 $ "failed") $ $) 40)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-1980 (((-112) $) 182 (|has| $ (-1009 (-549))))) (-2684 (($ $ (-1142) (-747) (-1 $ $)) 222 (|has| |#1| (-1018))) (($ $ (-1142) (-747) (-1 $ (-621 $))) 221 (|has| |#1| (-1018))) (($ $ (-621 (-1142)) (-621 (-747)) (-621 (-1 $ (-621 $)))) 220 (|has| |#1| (-1018))) (($ $ (-621 (-1142)) (-621 (-747)) (-621 (-1 $ $))) 219 (|has| |#1| (-1018))) (($ $ (-621 (-114)) (-621 $) (-1142)) 208 (|has| |#1| (-594 (-525)))) (($ $ (-114) $ (-1142)) 207 (|has| |#1| (-594 (-525)))) (($ $) 206 (|has| |#1| (-594 (-525)))) (($ $ (-621 (-1142))) 205 (|has| |#1| (-594 (-525)))) (($ $ (-1142)) 204 (|has| |#1| (-594 (-525)))) (($ $ (-114) (-1 $ $)) 179) (($ $ (-114) (-1 $ (-621 $))) 178) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) 177) (($ $ (-621 (-114)) (-621 (-1 $ $))) 176) (($ $ (-1142) (-1 $ $)) 175) (($ $ (-1142) (-1 $ (-621 $))) 174) (($ $ (-621 (-1142)) (-621 (-1 $ (-621 $)))) 173) (($ $ (-621 (-1142)) (-621 (-1 $ $))) 172) (($ $ (-621 $) (-621 $)) 143) (($ $ $ $) 142) (($ $ (-287 $)) 141) (($ $ (-621 (-287 $))) 140) (($ $ (-621 (-592 $)) (-621 $)) 139) (($ $ (-592 $) $) 138)) (-1335 (((-747) $) 56)) (-3339 (($ (-114) (-621 $)) 148) (($ (-114) $ $ $ $) 147) (($ (-114) $ $ $) 146) (($ (-114) $ $) 145) (($ (-114) $) 144)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 55)) (-3205 (($ $ $) 157) (($ $) 156)) (-3455 (($ $ (-1142)) 246 (|has| |#1| (-1018))) (($ $ (-621 (-1142))) 245 (|has| |#1| (-1018))) (($ $ (-1142) (-747)) 244 (|has| |#1| (-1018))) (($ $ (-621 (-1142)) (-621 (-747))) 243 (|has| |#1| (-1018)))) (-4095 (($ $) 225 (|has| |#1| (-541)))) (-1404 (((-1091 |#1| (-592 $)) $) 224 (|has| |#1| (-541)))) (-1262 (($ $) 181 (|has| $ (-1018)))) (-2843 (((-525) $) 252 (|has| |#1| (-594 (-525)))) (($ (-411 $)) 223 (|has| |#1| (-541))) (((-863 (-372)) $) 188 (|has| |#1| (-594 (-863 (-372))))) (((-863 (-549)) $) 187 (|has| |#1| (-594 (-863 (-549)))))) (-1795 (($ $ $) 251 (|has| |#1| (-465)))) (-3870 (($ $ $) 250 (|has| |#1| (-465)))) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63) (($ (-923 |#1|)) 247 (|has| |#1| (-1018))) (($ (-400 (-923 |#1|))) 231 (|has| |#1| (-541))) (($ (-400 (-923 (-400 |#1|)))) 229 (|has| |#1| (-541))) (($ (-923 (-400 |#1|))) 228 (|has| |#1| (-541))) (($ (-400 |#1|)) 227 (|has| |#1| (-541))) (($ (-1091 |#1| (-592 $))) 213 (|has| |#1| (-1018))) (($ |#1|) 193) (($ (-1142)) 184) (($ (-592 $)) 135)) (-2343 (((-3 $ "failed") $) 236 (|has| |#1| (-143)))) (-2371 (((-747)) 28)) (-4136 (($ (-621 $)) 153) (($ $) 152)) (-2444 (((-112) (-114)) 164)) (-2441 (((-112) $ $) 37)) (-1787 (($ (-1142) (-621 $)) 203) (($ (-1142) $ $ $ $) 202) (($ (-1142) $ $ $) 201) (($ (-1142) $ $) 200) (($ (-1142) $) 199)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ (-1142)) 242 (|has| |#1| (-1018))) (($ $ (-621 (-1142))) 241 (|has| |#1| (-1018))) (($ $ (-1142) (-747)) 240 (|has| |#1| (-1018))) (($ $ (-621 (-1142)) (-621 (-747))) 239 (|has| |#1| (-1018)))) (-2447 (((-112) $ $) 131)) (-2423 (((-112) $ $) 130)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 132)) (-2409 (((-112) $ $) 129)) (-2511 (($ $ $) 62) (($ (-1091 |#1| (-592 $)) (-1091 |#1| (-592 $))) 226 (|has| |#1| (-541)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66) (($ $ (-400 (-549))) 87)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64) (($ $ |#1|) 235 (|has| |#1| (-170))) (($ |#1| $) 234 (|has| |#1| (-170)))))
(((-29 |#1|) (-138) (-13 (-823) (-541))) (T -29))
-((-1947 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-823) (-541))))) (-1815 (*1 *2 *1) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *2 (-621 *1)) (-4 *1 (-29 *3)))) (-1947 (*1 *1 *1 *2) (-12 (-5 *2 (-1143)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-823) (-541))))) (-1815 (*1 *2 *1 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-621 *1)) (-4 *1 (-29 *4)))) (-3289 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-823) (-541))))) (-1329 (*1 *2 *1) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *2 (-621 *1)) (-4 *1 (-29 *3)))) (-3289 (*1 *1 *1 *2) (-12 (-5 *2 (-1143)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-823) (-541))))) (-1329 (*1 *2 *1 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-621 *1)) (-4 *1 (-29 *4)))))
-(-13 (-27) (-423 |t#1|) (-10 -8 (-15 -1947 ($ $)) (-15 -1815 ((-621 $) $)) (-15 -1947 ($ $ (-1143))) (-15 -1815 ((-621 $) $ (-1143))) (-15 -3289 ($ $)) (-15 -1329 ((-621 $) $)) (-15 -3289 ($ $ (-1143))) (-15 -1329 ((-621 $) $ (-1143)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) . T) ((-27) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) |has| |#1| (-170)) ((-111 $ $) . T) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-594 (-863 (-372))) |has| |#1| (-594 (-863 (-372)))) ((-594 (-863 (-549))) |has| |#1| (-594 (-863 (-549)))) ((-237) . T) ((-283) . T) ((-300) . T) ((-302 $) . T) ((-295) . T) ((-356) . T) ((-370 |#1|) |has| |#1| (-1018)) ((-393 |#1|) . T) ((-404 |#1|) . T) ((-423 |#1|) . T) ((-444) . T) ((-465) |has| |#1| (-465)) ((-505 (-592 $) $) . T) ((-505 $ $) . T) ((-541) . T) ((-624 #0#) . T) ((-624 |#1|) |has| |#1| (-170)) ((-624 $) . T) ((-617 (-549)) -12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) ((-617 |#1|) |has| |#1| (-1018)) ((-694 #0#) . T) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) . T) ((-703) . T) ((-823) . T) ((-871 (-1143)) |has| |#1| (-1018)) ((-857 (-372)) |has| |#1| (-857 (-372))) ((-857 (-549)) |has| |#1| (-857 (-549))) ((-855 |#1|) . T) ((-891) . T) ((-973) . T) ((-1009 (-400 (-549))) -1536 (|has| |#1| (-1009 (-400 (-549)))) (-12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549))))) ((-1009 (-400 (-923 |#1|))) |has| |#1| (-541)) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 (-592 $)) . T) ((-1009 (-923 |#1|)) |has| |#1| (-1018)) ((-1009 (-1143)) . T) ((-1009 |#1|) . T) ((-1024 #0#) . T) ((-1024 |#1|) |has| |#1| (-170)) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1180) . T) ((-1184) . T))
-((-1843 (((-1061 (-219)) $) NIL)) (-1832 (((-1061 (-219)) $) NIL)) (-4166 (($ $ (-219)) 125)) (-1590 (($ (-923 (-549)) (-1143) (-1143) (-1061 (-400 (-549))) (-1061 (-400 (-549)))) 83)) (-3928 (((-621 (-621 (-914 (-219)))) $) 137)) (-3846 (((-834) $) 149)))
-(((-30) (-13 (-926) (-10 -8 (-15 -1590 ($ (-923 (-549)) (-1143) (-1143) (-1061 (-400 (-549))) (-1061 (-400 (-549))))) (-15 -4166 ($ $ (-219)))))) (T -30))
-((-1590 (*1 *1 *2 *3 *3 *4 *4) (-12 (-5 *2 (-923 (-549))) (-5 *3 (-1143)) (-5 *4 (-1061 (-400 (-549)))) (-5 *1 (-30)))) (-4166 (*1 *1 *1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-30)))))
-(-13 (-926) (-10 -8 (-15 -1590 ($ (-923 (-549)) (-1143) (-1143) (-1061 (-400 (-549))) (-1061 (-400 (-549))))) (-15 -4166 ($ $ (-219)))))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2492 (((-1148) $) 11)) (-1864 (((-1148) $) 9)) (-2389 (((-112) $ $) NIL)))
-(((-31) (-13 (-1050) (-10 -8 (-15 -1864 ((-1148) $)) (-15 -2492 ((-1148) $))))) (T -31))
-((-1864 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-31)))) (-2492 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-31)))))
-(-13 (-1050) (-10 -8 (-15 -1864 ((-1148) $)) (-15 -2492 ((-1148) $))))
-((-1947 ((|#2| (-1139 |#2|) (-1143)) 43)) (-2834 (((-114) (-114)) 56)) (-1549 (((-1139 |#2|) (-592 |#2|)) 133 (|has| |#1| (-1009 (-549))))) (-2568 ((|#2| |#1| (-549)) 122 (|has| |#1| (-1009 (-549))))) (-4065 ((|#2| (-1139 |#2|) |#2|) 30)) (-3106 (((-834) (-621 |#2|)) 85)) (-2815 ((|#2| |#2|) 129 (|has| |#1| (-1009 (-549))))) (-4285 (((-112) (-114)) 18)) (** ((|#2| |#2| (-400 (-549))) 96 (|has| |#1| (-1009 (-549))))))
-(((-32 |#1| |#2|) (-10 -7 (-15 -1947 (|#2| (-1139 |#2|) (-1143))) (-15 -2834 ((-114) (-114))) (-15 -4285 ((-112) (-114))) (-15 -4065 (|#2| (-1139 |#2|) |#2|)) (-15 -3106 ((-834) (-621 |#2|))) (IF (|has| |#1| (-1009 (-549))) (PROGN (-15 ** (|#2| |#2| (-400 (-549)))) (-15 -1549 ((-1139 |#2|) (-592 |#2|))) (-15 -2815 (|#2| |#2|)) (-15 -2568 (|#2| |#1| (-549)))) |%noBranch|)) (-13 (-823) (-541)) (-423 |#1|)) (T -32))
-((-2568 (*1 *2 *3 *4) (-12 (-5 *4 (-549)) (-4 *2 (-423 *3)) (-5 *1 (-32 *3 *2)) (-4 *3 (-1009 *4)) (-4 *3 (-13 (-823) (-541))))) (-2815 (*1 *2 *2) (-12 (-4 *3 (-1009 (-549))) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-32 *3 *2)) (-4 *2 (-423 *3)))) (-1549 (*1 *2 *3) (-12 (-5 *3 (-592 *5)) (-4 *5 (-423 *4)) (-4 *4 (-1009 (-549))) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-1139 *5)) (-5 *1 (-32 *4 *5)))) (** (*1 *2 *2 *3) (-12 (-5 *3 (-400 (-549))) (-4 *4 (-1009 (-549))) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-32 *4 *2)) (-4 *2 (-423 *4)))) (-3106 (*1 *2 *3) (-12 (-5 *3 (-621 *5)) (-4 *5 (-423 *4)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-834)) (-5 *1 (-32 *4 *5)))) (-4065 (*1 *2 *3 *2) (-12 (-5 *3 (-1139 *2)) (-4 *2 (-423 *4)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-32 *4 *2)))) (-4285 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112)) (-5 *1 (-32 *4 *5)) (-4 *5 (-423 *4)))) (-2834 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-32 *3 *4)) (-4 *4 (-423 *3)))) (-1947 (*1 *2 *3 *4) (-12 (-5 *3 (-1139 *2)) (-5 *4 (-1143)) (-4 *2 (-423 *5)) (-5 *1 (-32 *5 *2)) (-4 *5 (-13 (-823) (-541))))))
-(-10 -7 (-15 -1947 (|#2| (-1139 |#2|) (-1143))) (-15 -2834 ((-114) (-114))) (-15 -4285 ((-112) (-114))) (-15 -4065 (|#2| (-1139 |#2|) |#2|)) (-15 -3106 ((-834) (-621 |#2|))) (IF (|has| |#1| (-1009 (-549))) (PROGN (-15 ** (|#2| |#2| (-400 (-549)))) (-15 -1549 ((-1139 |#2|) (-592 |#2|))) (-15 -2815 (|#2| |#2|)) (-15 -2568 (|#2| |#1| (-549)))) |%noBranch|))
-((-1584 (((-112) $ (-747)) 16)) (-1682 (($) 10)) (-3194 (((-112) $ (-747)) 15)) (-1508 (((-112) $ (-747)) 14)) (-4144 (((-112) $ $) 8)) (-3670 (((-112) $) 13)))
-(((-33 |#1|) (-10 -8 (-15 -1682 (|#1|)) (-15 -1584 ((-112) |#1| (-747))) (-15 -3194 ((-112) |#1| (-747))) (-15 -1508 ((-112) |#1| (-747))) (-15 -3670 ((-112) |#1|)) (-15 -4144 ((-112) |#1| |#1|))) (-34)) (T -33))
-NIL
-(-10 -8 (-15 -1682 (|#1|)) (-15 -1584 ((-112) |#1| (-747))) (-15 -3194 ((-112) |#1| (-747))) (-15 -1508 ((-112) |#1| (-747))) (-15 -3670 ((-112) |#1|)) (-15 -4144 ((-112) |#1| |#1|)))
-((-1584 (((-112) $ (-747)) 8)) (-1682 (($) 7 T CONST)) (-3194 (((-112) $ (-747)) 9)) (-1508 (((-112) $ (-747)) 10)) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-2281 (($ $) 13)) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
+((-2406 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-823) (-541))))) (-2798 (*1 *2 *1) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *2 (-621 *1)) (-4 *1 (-29 *3)))) (-2406 (*1 *1 *1 *2) (-12 (-5 *2 (-1142)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-823) (-541))))) (-2798 (*1 *2 *1 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-621 *1)) (-4 *1 (-29 *4)))) (-1566 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-823) (-541))))) (-3804 (*1 *2 *1) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *2 (-621 *1)) (-4 *1 (-29 *3)))) (-1566 (*1 *1 *1 *2) (-12 (-5 *2 (-1142)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-823) (-541))))) (-3804 (*1 *2 *1 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-621 *1)) (-4 *1 (-29 *4)))))
+(-13 (-27) (-423 |t#1|) (-10 -8 (-15 -2406 ($ $)) (-15 -2798 ((-621 $) $)) (-15 -2406 ($ $ (-1142))) (-15 -2798 ((-621 $) $ (-1142))) (-15 -1566 ($ $)) (-15 -3804 ((-621 $) $)) (-15 -1566 ($ $ (-1142))) (-15 -3804 ((-621 $) $ (-1142)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) . T) ((-27) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) |has| |#1| (-170)) ((-111 $ $) . T) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-594 (-863 (-372))) |has| |#1| (-594 (-863 (-372)))) ((-594 (-863 (-549))) |has| |#1| (-594 (-863 (-549)))) ((-237) . T) ((-283) . T) ((-300) . T) ((-302 $) . T) ((-295) . T) ((-356) . T) ((-370 |#1|) |has| |#1| (-1018)) ((-393 |#1|) . T) ((-404 |#1|) . T) ((-423 |#1|) . T) ((-444) . T) ((-465) |has| |#1| (-465)) ((-505 (-592 $) $) . T) ((-505 $ $) . T) ((-541) . T) ((-624 #0#) . T) ((-624 |#1|) |has| |#1| (-170)) ((-624 $) . T) ((-617 (-549)) -12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) ((-617 |#1|) |has| |#1| (-1018)) ((-694 #0#) . T) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) . T) ((-703) . T) ((-823) . T) ((-871 (-1142)) |has| |#1| (-1018)) ((-857 (-372)) |has| |#1| (-857 (-372))) ((-857 (-549)) |has| |#1| (-857 (-549))) ((-855 |#1|) . T) ((-891) . T) ((-973) . T) ((-1009 (-400 (-549))) -1536 (|has| |#1| (-1009 (-400 (-549)))) (-12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549))))) ((-1009 (-400 (-923 |#1|))) |has| |#1| (-541)) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 (-592 $)) . T) ((-1009 (-923 |#1|)) |has| |#1| (-1018)) ((-1009 (-1142)) . T) ((-1009 |#1|) . T) ((-1024 #0#) . T) ((-1024 |#1|) |has| |#1| (-170)) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1179) . T) ((-1183) . T))
+((-1841 (((-1060 (-219)) $) NIL)) (-1830 (((-1060 (-219)) $) NIL)) (-3033 (($ $ (-219)) 125)) (-3204 (($ (-923 (-549)) (-1142) (-1142) (-1060 (-400 (-549))) (-1060 (-400 (-549)))) 83)) (-2355 (((-621 (-621 (-914 (-219)))) $) 137)) (-3845 (((-834) $) 149)))
+(((-30) (-13 (-926) (-10 -8 (-15 -3204 ($ (-923 (-549)) (-1142) (-1142) (-1060 (-400 (-549))) (-1060 (-400 (-549))))) (-15 -3033 ($ $ (-219)))))) (T -30))
+((-3204 (*1 *1 *2 *3 *3 *4 *4) (-12 (-5 *2 (-923 (-549))) (-5 *3 (-1142)) (-5 *4 (-1060 (-400 (-549)))) (-5 *1 (-30)))) (-3033 (*1 *1 *1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-30)))))
+(-13 (-926) (-10 -8 (-15 -3204 ($ (-923 (-549)) (-1142) (-1142) (-1060 (-400 (-549))) (-1060 (-400 (-549))))) (-15 -3033 ($ $ (-219)))))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 19) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2492 (((-1101) $) 11)) (-1863 (((-1101) $) 9)) (-2387 (((-112) $ $) NIL)))
+(((-31) (-13 (-1049) (-10 -8 (-15 -1863 ((-1101) $)) (-15 -2492 ((-1101) $))))) (T -31))
+((-1863 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-31)))) (-2492 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-31)))))
+(-13 (-1049) (-10 -8 (-15 -1863 ((-1101) $)) (-15 -2492 ((-1101) $))))
+((-2406 ((|#2| (-1138 |#2|) (-1142)) 43)) (-3500 (((-114) (-114)) 56)) (-1797 (((-1138 |#2|) (-592 |#2|)) 133 (|has| |#1| (-1009 (-549))))) (-3483 ((|#2| |#1| (-549)) 122 (|has| |#1| (-1009 (-549))))) (-3826 ((|#2| (-1138 |#2|) |#2|) 30)) (-2898 (((-834) (-621 |#2|)) 85)) (-1262 ((|#2| |#2|) 129 (|has| |#1| (-1009 (-549))))) (-2444 (((-112) (-114)) 18)) (** ((|#2| |#2| (-400 (-549))) 96 (|has| |#1| (-1009 (-549))))))
+(((-32 |#1| |#2|) (-10 -7 (-15 -2406 (|#2| (-1138 |#2|) (-1142))) (-15 -3500 ((-114) (-114))) (-15 -2444 ((-112) (-114))) (-15 -3826 (|#2| (-1138 |#2|) |#2|)) (-15 -2898 ((-834) (-621 |#2|))) (IF (|has| |#1| (-1009 (-549))) (PROGN (-15 ** (|#2| |#2| (-400 (-549)))) (-15 -1797 ((-1138 |#2|) (-592 |#2|))) (-15 -1262 (|#2| |#2|)) (-15 -3483 (|#2| |#1| (-549)))) |%noBranch|)) (-13 (-823) (-541)) (-423 |#1|)) (T -32))
+((-3483 (*1 *2 *3 *4) (-12 (-5 *4 (-549)) (-4 *2 (-423 *3)) (-5 *1 (-32 *3 *2)) (-4 *3 (-1009 *4)) (-4 *3 (-13 (-823) (-541))))) (-1262 (*1 *2 *2) (-12 (-4 *3 (-1009 (-549))) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-32 *3 *2)) (-4 *2 (-423 *3)))) (-1797 (*1 *2 *3) (-12 (-5 *3 (-592 *5)) (-4 *5 (-423 *4)) (-4 *4 (-1009 (-549))) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-1138 *5)) (-5 *1 (-32 *4 *5)))) (** (*1 *2 *2 *3) (-12 (-5 *3 (-400 (-549))) (-4 *4 (-1009 (-549))) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-32 *4 *2)) (-4 *2 (-423 *4)))) (-2898 (*1 *2 *3) (-12 (-5 *3 (-621 *5)) (-4 *5 (-423 *4)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-834)) (-5 *1 (-32 *4 *5)))) (-3826 (*1 *2 *3 *2) (-12 (-5 *3 (-1138 *2)) (-4 *2 (-423 *4)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-32 *4 *2)))) (-2444 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112)) (-5 *1 (-32 *4 *5)) (-4 *5 (-423 *4)))) (-3500 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-32 *3 *4)) (-4 *4 (-423 *3)))) (-2406 (*1 *2 *3 *4) (-12 (-5 *3 (-1138 *2)) (-5 *4 (-1142)) (-4 *2 (-423 *5)) (-5 *1 (-32 *5 *2)) (-4 *5 (-13 (-823) (-541))))))
+(-10 -7 (-15 -2406 (|#2| (-1138 |#2|) (-1142))) (-15 -3500 ((-114) (-114))) (-15 -2444 ((-112) (-114))) (-15 -3826 (|#2| (-1138 |#2|) |#2|)) (-15 -2898 ((-834) (-621 |#2|))) (IF (|has| |#1| (-1009 (-549))) (PROGN (-15 ** (|#2| |#2| (-400 (-549)))) (-15 -1797 ((-1138 |#2|) (-592 |#2|))) (-15 -1262 (|#2| |#2|)) (-15 -3483 (|#2| |#1| (-549)))) |%noBranch|))
+((-2850 (((-112) $ (-747)) 16)) (-3034 (($) 10)) (-1777 (((-112) $ (-747)) 15)) (-3942 (((-112) $ (-747)) 14)) (-2520 (((-112) $ $) 8)) (-2643 (((-112) $) 13)))
+(((-33 |#1|) (-10 -8 (-15 -3034 (|#1|)) (-15 -2850 ((-112) |#1| (-747))) (-15 -1777 ((-112) |#1| (-747))) (-15 -3942 ((-112) |#1| (-747))) (-15 -2643 ((-112) |#1|)) (-15 -2520 ((-112) |#1| |#1|))) (-34)) (T -33))
+NIL
+(-10 -8 (-15 -3034 (|#1|)) (-15 -2850 ((-112) |#1| (-747))) (-15 -1777 ((-112) |#1| (-747))) (-15 -3942 ((-112) |#1| (-747))) (-15 -2643 ((-112) |#1|)) (-15 -2520 ((-112) |#1| |#1|)))
+((-2850 (((-112) $ (-747)) 8)) (-3034 (($) 7 T CONST)) (-1777 (((-112) $ (-747)) 9)) (-3942 (((-112) $ (-747)) 10)) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-2279 (($ $) 13)) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
(((-34) (-138)) (T -34))
-((-4144 (*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-2281 (*1 *1 *1) (-4 *1 (-34))) (-3742 (*1 *1) (-4 *1 (-34))) (-3670 (*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-1508 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-747)) (-5 *2 (-112)))) (-3194 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-747)) (-5 *2 (-112)))) (-1584 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-747)) (-5 *2 (-112)))) (-1682 (*1 *1) (-4 *1 (-34))) (-3775 (*1 *2 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-34)) (-5 *2 (-747)))))
-(-13 (-1180) (-10 -8 (-15 -4144 ((-112) $ $)) (-15 -2281 ($ $)) (-15 -3742 ($)) (-15 -3670 ((-112) $)) (-15 -1508 ((-112) $ (-747))) (-15 -3194 ((-112) $ (-747))) (-15 -1584 ((-112) $ (-747))) (-15 -1682 ($) -2589) (IF (|has| $ (-6 -4337)) (-15 -3775 ((-747) $)) |%noBranch|)))
-(((-1180) . T))
-((-1733 (($ $) 11)) (-1710 (($ $) 10)) (-1758 (($ $) 9)) (-1934 (($ $) 8)) (-1745 (($ $) 7)) (-1722 (($ $) 6)))
+((-2520 (*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-2279 (*1 *1 *1) (-4 *1 (-34))) (-3288 (*1 *1) (-4 *1 (-34))) (-2643 (*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-3942 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-747)) (-5 *2 (-112)))) (-1777 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-747)) (-5 *2 (-112)))) (-2850 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-747)) (-5 *2 (-112)))) (-3034 (*1 *1) (-4 *1 (-34))) (-3774 (*1 *2 *1) (-12 (|has| *1 (-6 -4336)) (-4 *1 (-34)) (-5 *2 (-747)))))
+(-13 (-1179) (-10 -8 (-15 -2520 ((-112) $ $)) (-15 -2279 ($ $)) (-15 -3288 ($)) (-15 -2643 ((-112) $)) (-15 -3942 ((-112) $ (-747))) (-15 -1777 ((-112) $ (-747))) (-15 -2850 ((-112) $ (-747))) (-15 -3034 ($) -2587) (IF (|has| $ (-6 -4336)) (-15 -3774 ((-747) $)) |%noBranch|)))
+(((-1179) . T))
+((-1731 (($ $) 11)) (-1708 (($ $) 10)) (-1753 (($ $) 9)) (-1932 (($ $) 8)) (-1743 (($ $) 7)) (-1719 (($ $) 6)))
(((-35) (-138)) (T -35))
-((-1733 (*1 *1 *1) (-4 *1 (-35))) (-1710 (*1 *1 *1) (-4 *1 (-35))) (-1758 (*1 *1 *1) (-4 *1 (-35))) (-1934 (*1 *1 *1) (-4 *1 (-35))) (-1745 (*1 *1 *1) (-4 *1 (-35))) (-1722 (*1 *1 *1) (-4 *1 (-35))))
-(-13 (-10 -8 (-15 -1722 ($ $)) (-15 -1745 ($ $)) (-15 -1934 ($ $)) (-15 -1758 ($ $)) (-15 -1710 ($ $)) (-15 -1733 ($ $))))
-((-3834 (((-112) $ $) 19 (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-4161 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 125)) (-2839 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 148)) (-1343 (($ $) 146)) (-3733 (($) 72) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 71)) (-1535 (((-1231) $ |#1| |#1|) 99 (|has| $ (-6 -4338))) (((-1231) $ (-549) (-549)) 178 (|has| $ (-6 -4338)))) (-3174 (($ $ (-549)) 159 (|has| $ (-6 -4338)))) (-4142 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 209) (((-112) $) 203 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-4311 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 200 (|has| $ (-6 -4338))) (($ $) 199 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)) (|has| $ (-6 -4338))))) (-3193 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 210) (($ $) 204 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-1584 (((-112) $ (-747)) 8)) (-2838 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 134 (|has| $ (-6 -4338)))) (-4179 (($ $ $) 155 (|has| $ (-6 -4338)))) (-2780 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 157 (|has| $ (-6 -4338)))) (-4135 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 153 (|has| $ (-6 -4338)))) (-2254 ((|#2| $ |#1| |#2|) 73) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-549) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 189 (|has| $ (-6 -4338))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-1193 (-549)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 160 (|has| $ (-6 -4338))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ "last" (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 158 (|has| $ (-6 -4338))) (($ $ "rest" $) 156 (|has| $ (-6 -4338))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ "first" (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 154 (|has| $ (-6 -4338))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ "value" (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 133 (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) 132 (|has| $ (-6 -4338)))) (-1717 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 45 (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 216)) (-1489 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 55 (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 175 (|has| $ (-6 -4337)))) (-2830 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 147)) (-3490 (((-3 |#2| "failed") |#1| $) 61)) (-1682 (($) 7 T CONST)) (-1585 (($ $) 201 (|has| $ (-6 -4338)))) (-3064 (($ $) 211)) (-3657 (($ $ (-747)) 142) (($ $) 140)) (-3745 (($ $) 214 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (-3676 (($ $) 58 (-1536 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337))) (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337)))))) (-2129 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 47 (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 46 (|has| $ (-6 -4337))) (((-3 |#2| "failed") |#1| $) 62) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 220) (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 215 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (-3812 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 57 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 54 (|has| $ (-6 -4337))) (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 177 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 174 (|has| $ (-6 -4337)))) (-2557 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 56 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337)))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 53 (|has| $ (-6 -4337))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 52 (|has| $ (-6 -4337))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 176 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337)))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 173 (|has| $ (-6 -4337))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 172 (|has| $ (-6 -4337)))) (-1879 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4338))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-549) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 190 (|has| $ (-6 -4338)))) (-1809 ((|#2| $ |#1|) 88) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-549)) 188)) (-3331 (((-112) $) 192)) (-2883 (((-549) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 208) (((-549) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 207 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))) (((-549) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-549)) 206 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (-2989 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 30 (|has| $ (-6 -4337))) (((-621 |#2|) $) 79 (|has| $ (-6 -4337))) (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 114 (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) 123)) (-3895 (((-112) $ $) 131 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (-3743 (($ (-747) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 169)) (-3194 (((-112) $ (-747)) 9)) (-4031 ((|#1| $) 96 (|has| |#1| (-823))) (((-549) $) 180 (|has| (-549) (-823)))) (-2863 (($ $ $) 198 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-1303 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ $) 217) (($ $ $) 213 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-3890 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ $) 212) (($ $ $) 205 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-1562 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 29 (|has| $ (-6 -4337))) (((-621 |#2|) $) 80 (|has| $ (-6 -4337))) (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 115 (|has| $ (-6 -4337)))) (-2090 (((-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 27 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337)))) (((-112) |#2| $) 82 (-12 (|has| |#2| (-1067)) (|has| $ (-6 -4337)))) (((-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 117 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337))))) (-1569 ((|#1| $) 95 (|has| |#1| (-823))) (((-549) $) 181 (|has| (-549) (-823)))) (-3575 (($ $ $) 197 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-1868 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 34 (|has| $ (-6 -4338))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4338))) (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 110 (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70) (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ $) 166) (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 109)) (-3525 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 225)) (-1508 (((-112) $ (-747)) 10)) (-3591 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 128)) (-2076 (((-112) $) 124)) (-3851 (((-1125) $) 22 (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-3829 (($ $ (-747)) 145) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 143)) (-3449 (((-621 |#1|) $) 63)) (-2427 (((-112) |#1| $) 64)) (-3504 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 39)) (-2751 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 40) (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-549)) 219) (($ $ $ (-549)) 218)) (-2616 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-549)) 162) (($ $ $ (-549)) 161)) (-3303 (((-621 |#1|) $) 93) (((-621 (-549)) $) 183)) (-3761 (((-112) |#1| $) 92) (((-112) (-549) $) 184)) (-3990 (((-1087) $) 21 (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-3646 ((|#2| $) 97 (|has| |#1| (-823))) (($ $ (-747)) 139) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 137)) (-3779 (((-3 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) "failed") (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 51) (((-3 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) "failed") (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 171)) (-1642 (($ $ |#2|) 98 (|has| $ (-6 -4338))) (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 179 (|has| $ (-6 -4338)))) (-3325 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 41)) (-3016 (((-112) $) 191)) (-1780 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 32 (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 112 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))))) 26 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 25 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 24 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 23 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 |#2|) (-621 |#2|)) 86 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-287 |#2|)) 84 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 (-287 |#2|))) 83 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 121 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 120 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 119 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))))) 118 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-4144 (((-112) $ $) 14)) (-2265 (((-112) |#2| $) 94 (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067)))) (((-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 182 (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-2696 (((-621 |#2|) $) 91) (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 185)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-549) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 187) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-549)) 186) (($ $ (-1193 (-549))) 165) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ "last") 144) (($ $ "rest") 141) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ "first") 138) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ "value") 126)) (-3230 (((-549) $ $) 129)) (-2898 (($) 49) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 48)) (-3531 (($ $ (-549)) 222) (($ $ (-1193 (-549))) 221)) (-2167 (($ $ (-549)) 164) (($ $ (-1193 (-549))) 163)) (-3497 (((-112) $) 127)) (-1999 (($ $) 151)) (-2643 (($ $) 152 (|has| $ (-6 -4338)))) (-3798 (((-747) $) 150)) (-3612 (($ $) 149)) (-4000 (((-747) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 31 (|has| $ (-6 -4337))) (((-747) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 28 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337)))) (((-747) |#2| $) 81 (-12 (|has| |#2| (-1067)) (|has| $ (-6 -4337)))) (((-747) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4337))) (((-747) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 116 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337)))) (((-747) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 113 (|has| $ (-6 -4337)))) (-2730 (($ $ $ (-549)) 202 (|has| $ (-6 -4338)))) (-2281 (($ $) 13)) (-2845 (((-525) $) 59 (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-594 (-525))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-594 (-525)))))) (-3854 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 50) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 170)) (-3196 (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 224) (($ $ $) 223)) (-1952 (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 168) (($ (-621 $)) 167) (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 136) (($ $ $) 135)) (-3846 (((-834) $) 18 (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-593 (-834))) (|has| |#2| (-593 (-834))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-593 (-834)))))) (-2742 (((-621 $) $) 122)) (-1987 (((-112) $ $) 130 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (-3624 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 42)) (-3837 (((-3 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) "failed") |#1| $) 108)) (-3527 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 33 (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) 76 (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 111 (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) 195 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-2425 (((-112) $ $) 194 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-2389 (((-112) $ $) 20 (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-2438 (((-112) $ $) 196 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-2412 (((-112) $ $) 193 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-36 |#1| |#2|) (-138) (-1067) (-1067)) (T -36))
-((-3837 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-5 *2 (-2 (|:| -3337 *3) (|:| -1793 *4))))))
-(-13 (-1156 |t#1| |t#2|) (-642 (-2 (|:| -3337 |t#1|) (|:| -1793 |t#2|))) (-10 -8 (-15 -3837 ((-3 (-2 (|:| -3337 |t#1|) (|:| -1793 |t#2|)) "failed") |t#1| $))))
-(((-34) . T) ((-106 #0=(-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T) ((-101) -1536 (|has| |#2| (-1067)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823))) ((-593 (-834)) -1536 (|has| |#2| (-1067)) (|has| |#2| (-593 (-834))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-593 (-834)))) ((-149 #1=(-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T) ((-594 (-525)) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-594 (-525))) ((-223 #0#) . T) ((-229 #0#) . T) ((-279 #2=(-549) #1#) . T) ((-279 |#1| |#2|) . T) ((-281 #2# #1#) . T) ((-281 |#1| |#2|) . T) ((-302 #1#) -12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))) ((-302 |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) ((-275 #1#) . T) ((-366 #1#) . T) ((-481 #1#) . T) ((-481 |#2|) . T) ((-584 #2# #1#) . T) ((-584 |#1| |#2|) . T) ((-505 #1# #1#) -12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))) ((-505 |#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) ((-590 |#1| |#2|) . T) ((-627 #1#) . T) ((-642 #1#) . T) ((-823) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)) ((-981 #1#) . T) ((-1067) -1536 (|has| |#2| (-1067)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823))) ((-1116 #1#) . T) ((-1156 |#1| |#2|) . T) ((-1180) . T) ((-1214 #1#) . T))
-((-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) 10)))
-(((-37 |#1| |#2|) (-10 -8 (-15 -3846 (|#1| |#2|)) (-15 -3846 (|#1| (-549))) (-15 -3846 ((-834) |#1|))) (-38 |#2|) (-170)) (T -37))
-NIL
-(-10 -8 (-15 -3846 (|#1| |#2|)) (-15 -3846 (|#1| (-549))) (-15 -3846 ((-834) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 35)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 37) (($ |#1| $) 36)))
+((-1731 (*1 *1 *1) (-4 *1 (-35))) (-1708 (*1 *1 *1) (-4 *1 (-35))) (-1753 (*1 *1 *1) (-4 *1 (-35))) (-1932 (*1 *1 *1) (-4 *1 (-35))) (-1743 (*1 *1 *1) (-4 *1 (-35))) (-1719 (*1 *1 *1) (-4 *1 (-35))))
+(-13 (-10 -8 (-15 -1719 ($ $)) (-15 -1743 ($ $)) (-15 -1932 ($ $)) (-15 -1753 ($ $)) (-15 -1708 ($ $)) (-15 -1731 ($ $))))
+((-3832 (((-112) $ $) 19 (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-4160 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 125)) (-2837 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 148)) (-1342 (($ $) 146)) (-3732 (($) 72) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 71)) (-3659 (((-1230) $ |#1| |#1|) 99 (|has| $ (-6 -4337))) (((-1230) $ (-549) (-549)) 178 (|has| $ (-6 -4337)))) (-3327 (($ $ (-549)) 159 (|has| $ (-6 -4337)))) (-2239 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 209) (((-112) $) 203 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-2015 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 200 (|has| $ (-6 -4337))) (($ $) 199 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)) (|has| $ (-6 -4337))))) (-3191 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 210) (($ $) 204 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-2850 (((-112) $ (-747)) 8)) (-2797 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 134 (|has| $ (-6 -4337)))) (-3931 (($ $ $) 155 (|has| $ (-6 -4337)))) (-1806 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 157 (|has| $ (-6 -4337)))) (-1368 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 153 (|has| $ (-6 -4337)))) (-2250 ((|#2| $ |#1| |#2|) 73) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-549) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 189 (|has| $ (-6 -4337))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-1192 (-549)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 160 (|has| $ (-6 -4337))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ "last" (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 158 (|has| $ (-6 -4337))) (($ $ "rest" $) 156 (|has| $ (-6 -4337))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ "first" (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 154 (|has| $ (-6 -4337))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ "value" (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 133 (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) 132 (|has| $ (-6 -4337)))) (-3827 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 45 (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 216)) (-1488 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 55 (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 175 (|has| $ (-6 -4336)))) (-2827 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 147)) (-3489 (((-3 |#2| "failed") |#1| $) 61)) (-3034 (($) 7 T CONST)) (-2918 (($ $) 201 (|has| $ (-6 -4337)))) (-3062 (($ $) 211)) (-3656 (($ $ (-747)) 142) (($ $) 140)) (-3469 (($ $) 214 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (-3675 (($ $) 58 (-1536 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336))) (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336)))))) (-3546 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 47 (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 46 (|has| $ (-6 -4336))) (((-3 |#2| "failed") |#1| $) 62) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 220) (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 215 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (-3812 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 57 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 54 (|has| $ (-6 -4336))) (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 177 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 174 (|has| $ (-6 -4336)))) (-2556 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 56 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336)))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 53 (|has| $ (-6 -4336))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 52 (|has| $ (-6 -4336))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 176 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336)))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 173 (|has| $ (-6 -4336))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 172 (|has| $ (-6 -4336)))) (-1875 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4337))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-549) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 190 (|has| $ (-6 -4337)))) (-1807 ((|#2| $ |#1|) 88) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-549)) 188)) (-2897 (((-112) $) 192)) (-2881 (((-549) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 208) (((-549) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 207 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))) (((-549) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-549)) 206 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (-2987 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 30 (|has| $ (-6 -4336))) (((-621 |#2|) $) 79 (|has| $ (-6 -4336))) (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 114 (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) 123)) (-3585 (((-112) $ $) 131 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (-3743 (($ (-747) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 169)) (-1777 (((-112) $ (-747)) 9)) (-2807 ((|#1| $) 96 (|has| |#1| (-823))) (((-549) $) 180 (|has| (-549) (-823)))) (-2861 (($ $ $) 198 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-3021 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ $) 217) (($ $ $) 213 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-3050 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ $) 212) (($ $ $) 205 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-3698 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 29 (|has| $ (-6 -4336))) (((-621 |#2|) $) 80 (|has| $ (-6 -4336))) (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 115 (|has| $ (-6 -4336)))) (-1593 (((-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 27 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336)))) (((-112) |#2| $) 82 (-12 (|has| |#2| (-1066)) (|has| $ (-6 -4336)))) (((-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 117 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336))))) (-3063 ((|#1| $) 95 (|has| |#1| (-823))) (((-549) $) 181 (|has| (-549) (-823)))) (-3574 (($ $ $) 197 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-1864 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 34 (|has| $ (-6 -4337))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4337))) (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 110 (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70) (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ $) 166) (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 109)) (-3521 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 225)) (-3942 (((-112) $ (-747)) 10)) (-3590 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 128)) (-3028 (((-112) $) 124)) (-3441 (((-1124) $) 22 (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-3828 (($ $ (-747)) 145) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 143)) (-3448 (((-621 |#1|) $) 63)) (-2130 (((-112) |#1| $) 64)) (-2548 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 39)) (-1799 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 40) (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-549)) 219) (($ $ $ (-549)) 218)) (-2613 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-549)) 162) (($ $ $ (-549)) 161)) (-2296 (((-621 |#1|) $) 93) (((-621 (-549)) $) 183)) (-2284 (((-112) |#1| $) 92) (((-112) (-549) $) 184)) (-3988 (((-1086) $) 21 (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-3645 ((|#2| $) 97 (|has| |#1| (-823))) (($ $ (-747)) 139) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 137)) (-3959 (((-3 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) "failed") (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 51) (((-3 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) "failed") (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 171)) (-1943 (($ $ |#2|) 98 (|has| $ (-6 -4337))) (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 179 (|has| $ (-6 -4337)))) (-3536 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 41)) (-2791 (((-112) $) 191)) (-3360 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 32 (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 112 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))))) 26 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 25 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 24 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 23 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 |#2|) (-621 |#2|)) 86 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-287 |#2|)) 84 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 (-287 |#2|))) 83 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 121 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 120 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 119 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))))) 118 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-2520 (((-112) $ $) 14)) (-2478 (((-112) |#2| $) 94 (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066)))) (((-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 182 (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-3347 (((-621 |#2|) $) 91) (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 185)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-549) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 187) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-549)) 186) (($ $ (-1192 (-549))) 165) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ "last") 144) (($ $ "rest") 141) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ "first") 138) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ "value") 126)) (-3541 (((-549) $ $) 129)) (-3226 (($) 49) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 48)) (-2149 (($ $ (-549)) 222) (($ $ (-1192 (-549))) 221)) (-2162 (($ $ (-549)) 164) (($ $ (-1192 (-549))) 163)) (-2917 (((-112) $) 127)) (-2188 (($ $) 151)) (-1829 (($ $) 152 (|has| $ (-6 -4337)))) (-3117 (((-747) $) 150)) (-2528 (($ $) 149)) (-3997 (((-747) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 31 (|has| $ (-6 -4336))) (((-747) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 28 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336)))) (((-747) |#2| $) 81 (-12 (|has| |#2| (-1066)) (|has| $ (-6 -4336)))) (((-747) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4336))) (((-747) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 116 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336)))) (((-747) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 113 (|has| $ (-6 -4336)))) (-2049 (($ $ $ (-549)) 202 (|has| $ (-6 -4337)))) (-2279 (($ $) 13)) (-2843 (((-525) $) 59 (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-594 (-525))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-594 (-525)))))) (-3853 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 50) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 170)) (-3859 (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 224) (($ $ $) 223)) (-1950 (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 168) (($ (-621 $)) 167) (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 136) (($ $ $) 135)) (-3845 (((-834) $) 18 (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-593 (-834))) (|has| |#2| (-593 (-834))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-593 (-834)))))) (-2095 (((-621 $) $) 122)) (-3605 (((-112) $ $) 130 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (-4213 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 42)) (-3836 (((-3 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) "failed") |#1| $) 108)) (-3025 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 33 (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) 76 (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 111 (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) 195 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-2423 (((-112) $ $) 194 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-2387 (((-112) $ $) 20 (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-2436 (((-112) $ $) 196 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-2409 (((-112) $ $) 193 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-36 |#1| |#2|) (-138) (-1066) (-1066)) (T -36))
+((-3836 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-5 *2 (-2 (|:| -3336 *3) (|:| -1791 *4))))))
+(-13 (-1155 |t#1| |t#2|) (-642 (-2 (|:| -3336 |t#1|) (|:| -1791 |t#2|))) (-10 -8 (-15 -3836 ((-3 (-2 (|:| -3336 |t#1|) (|:| -1791 |t#2|)) "failed") |t#1| $))))
+(((-34) . T) ((-106 #0=(-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T) ((-101) -1536 (|has| |#2| (-1066)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823))) ((-593 (-834)) -1536 (|has| |#2| (-1066)) (|has| |#2| (-593 (-834))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-593 (-834)))) ((-149 #1=(-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T) ((-594 (-525)) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-594 (-525))) ((-223 #0#) . T) ((-229 #0#) . T) ((-279 #2=(-549) #1#) . T) ((-279 |#1| |#2|) . T) ((-281 #2# #1#) . T) ((-281 |#1| |#2|) . T) ((-302 #1#) -12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))) ((-302 |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) ((-275 #1#) . T) ((-366 #1#) . T) ((-481 #1#) . T) ((-481 |#2|) . T) ((-584 #2# #1#) . T) ((-584 |#1| |#2|) . T) ((-505 #1# #1#) -12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))) ((-505 |#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) ((-590 |#1| |#2|) . T) ((-627 #1#) . T) ((-642 #1#) . T) ((-823) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)) ((-981 #1#) . T) ((-1066) -1536 (|has| |#2| (-1066)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823))) ((-1115 #1#) . T) ((-1155 |#1| |#2|) . T) ((-1179) . T) ((-1213 #1#) . T))
+((-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) 10)))
+(((-37 |#1| |#2|) (-10 -8 (-15 -3845 (|#1| |#2|)) (-15 -3845 (|#1| (-549))) (-15 -3845 ((-834) |#1|))) (-38 |#2|) (-170)) (T -37))
+NIL
+(-10 -8 (-15 -3845 (|#1| |#2|)) (-15 -3845 (|#1| (-549))) (-15 -3845 ((-834) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 35)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 37) (($ |#1| $) 36)))
(((-38 |#1|) (-138) (-170)) (T -38))
-((-3846 (*1 *1 *2) (-12 (-4 *1 (-38 *2)) (-4 *2 (-170)))))
-(-13 (-1018) (-694 |t#1|) (-10 -8 (-15 -3846 ($ |t#1|))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 |#1|) . T) ((-703) . T) ((-1024 |#1|) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-3628 (((-411 |#1|) |#1|) 41)) (-2121 (((-411 |#1|) |#1|) 30) (((-411 |#1|) |#1| (-621 (-48))) 33)) (-3952 (((-112) |#1|) 56)))
-(((-39 |#1|) (-10 -7 (-15 -2121 ((-411 |#1|) |#1| (-621 (-48)))) (-15 -2121 ((-411 |#1|) |#1|)) (-15 -3628 ((-411 |#1|) |#1|)) (-15 -3952 ((-112) |#1|))) (-1202 (-48))) (T -39))
-((-3952 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1202 (-48))))) (-3628 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1202 (-48))))) (-2121 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1202 (-48))))) (-2121 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-48))) (-5 *2 (-411 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1202 (-48))))))
-(-10 -7 (-15 -2121 ((-411 |#1|) |#1| (-621 (-48)))) (-15 -2121 ((-411 |#1|) |#1|)) (-15 -3628 ((-411 |#1|) |#1|)) (-15 -3952 ((-112) |#1|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2724 (((-2 (|:| |num| (-1226 |#2|)) (|:| |den| |#2|)) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| (-400 |#2|) (-356)))) (-2258 (($ $) NIL (|has| (-400 |#2|) (-356)))) (-2799 (((-112) $) NIL (|has| (-400 |#2|) (-356)))) (-1738 (((-665 (-400 |#2|)) (-1226 $)) NIL) (((-665 (-400 |#2|))) NIL)) (-2906 (((-400 |#2|) $) NIL)) (-3062 (((-1153 (-892) (-747)) (-549)) NIL (|has| (-400 |#2|) (-342)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL (|has| (-400 |#2|) (-356)))) (-2402 (((-411 $) $) NIL (|has| (-400 |#2|) (-356)))) (-3866 (((-112) $ $) NIL (|has| (-400 |#2|) (-356)))) (-3614 (((-747)) NIL (|has| (-400 |#2|) (-361)))) (-1279 (((-112)) NIL)) (-1388 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL (|has| (-400 |#2|) (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-400 |#2|) (-1009 (-400 (-549))))) (((-3 (-400 |#2|) "failed") $) NIL)) (-2659 (((-549) $) NIL (|has| (-400 |#2|) (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| (-400 |#2|) (-1009 (-400 (-549))))) (((-400 |#2|) $) NIL)) (-3492 (($ (-1226 (-400 |#2|)) (-1226 $)) NIL) (($ (-1226 (-400 |#2|))) 57) (($ (-1226 |#2|) |#2|) 125)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-400 |#2|) (-342)))) (-2095 (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-3506 (((-665 (-400 |#2|)) $ (-1226 $)) NIL) (((-665 (-400 |#2|)) $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| (-400 |#2|) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| (-400 |#2|) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-400 |#2|))) (|:| |vec| (-1226 (-400 |#2|)))) (-665 $) (-1226 $)) NIL) (((-665 (-400 |#2|)) (-665 $)) NIL)) (-2263 (((-1226 $) (-1226 $)) NIL)) (-2557 (($ |#3|) NIL) (((-3 $ "failed") (-400 |#3|)) NIL (|has| (-400 |#2|) (-356)))) (-2114 (((-3 $ "failed") $) NIL)) (-3690 (((-621 (-621 |#1|))) NIL (|has| |#1| (-361)))) (-3465 (((-112) |#1| |#1|) NIL)) (-3123 (((-892)) NIL)) (-3239 (($) NIL (|has| (-400 |#2|) (-361)))) (-3031 (((-112)) NIL)) (-2941 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-2067 (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| (-400 |#2|) (-356)))) (-1285 (($ $) NIL)) (-2405 (($) NIL (|has| (-400 |#2|) (-342)))) (-2288 (((-112) $) NIL (|has| (-400 |#2|) (-342)))) (-3165 (($ $ (-747)) NIL (|has| (-400 |#2|) (-342))) (($ $) NIL (|has| (-400 |#2|) (-342)))) (-1420 (((-112) $) NIL (|has| (-400 |#2|) (-356)))) (-2088 (((-892) $) NIL (|has| (-400 |#2|) (-342))) (((-809 (-892)) $) NIL (|has| (-400 |#2|) (-342)))) (-2675 (((-112) $) NIL)) (-2609 (((-747)) NIL)) (-2453 (((-1226 $) (-1226 $)) 102)) (-3630 (((-400 |#2|) $) NIL)) (-1672 (((-621 (-923 |#1|)) (-1143)) NIL (|has| |#1| (-356)))) (-1681 (((-3 $ "failed") $) NIL (|has| (-400 |#2|) (-342)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| (-400 |#2|) (-356)))) (-3788 ((|#3| $) NIL (|has| (-400 |#2|) (-356)))) (-1881 (((-892) $) NIL (|has| (-400 |#2|) (-361)))) (-2548 ((|#3| $) NIL)) (-3697 (($ (-621 $)) NIL (|has| (-400 |#2|) (-356))) (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-3851 (((-1125) $) NIL)) (-3795 (((-1231) (-747)) 79)) (-2768 (((-665 (-400 |#2|))) 51)) (-1948 (((-665 (-400 |#2|))) 44)) (-1992 (($ $) NIL (|has| (-400 |#2|) (-356)))) (-3569 (($ (-1226 |#2|) |#2|) 126)) (-2955 (((-665 (-400 |#2|))) 45)) (-1519 (((-665 (-400 |#2|))) 43)) (-3621 (((-2 (|:| |num| (-665 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 124)) (-3581 (((-2 (|:| |num| (-1226 |#2|)) (|:| |den| |#2|)) $) 64)) (-3852 (((-1226 $)) 42)) (-1613 (((-1226 $)) 41)) (-2128 (((-112) $) NIL)) (-3710 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-3060 (($) NIL (|has| (-400 |#2|) (-342)) CONST)) (-3493 (($ (-892)) NIL (|has| (-400 |#2|) (-361)))) (-1314 (((-3 |#2| "failed")) NIL)) (-3990 (((-1087) $) NIL)) (-2118 (((-747)) NIL)) (-4248 (($) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| (-400 |#2|) (-356)))) (-3727 (($ (-621 $)) NIL (|has| (-400 |#2|) (-356))) (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) NIL (|has| (-400 |#2|) (-342)))) (-2121 (((-411 $) $) NIL (|has| (-400 |#2|) (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-400 |#2|) (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| (-400 |#2|) (-356)))) (-2042 (((-3 $ "failed") $ $) NIL (|has| (-400 |#2|) (-356)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| (-400 |#2|) (-356)))) (-3684 (((-747) $) NIL (|has| (-400 |#2|) (-356)))) (-3341 ((|#1| $ |#1| |#1|) NIL)) (-1969 (((-3 |#2| "failed")) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| (-400 |#2|) (-356)))) (-3602 (((-400 |#2|) (-1226 $)) NIL) (((-400 |#2|)) 39)) (-3914 (((-747) $) NIL (|has| (-400 |#2|) (-342))) (((-3 (-747) "failed") $ $) NIL (|has| (-400 |#2|) (-342)))) (-3456 (($ $ (-1 (-400 |#2|) (-400 |#2|)) (-747)) NIL (|has| (-400 |#2|) (-356))) (($ $ (-1 (-400 |#2|) (-400 |#2|))) NIL (|has| (-400 |#2|) (-356))) (($ $ (-1 |#2| |#2|)) 120) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143))))) (($ $ (-1143)) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143))))) (($ $ (-747)) NIL (-1536 (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342)))) (($ $) NIL (-1536 (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342))))) (-2901 (((-665 (-400 |#2|)) (-1226 $) (-1 (-400 |#2|) (-400 |#2|))) NIL (|has| (-400 |#2|) (-356)))) (-2815 ((|#3|) 50)) (-3170 (($) NIL (|has| (-400 |#2|) (-342)))) (-4263 (((-1226 (-400 |#2|)) $ (-1226 $)) NIL) (((-665 (-400 |#2|)) (-1226 $) (-1226 $)) NIL) (((-1226 (-400 |#2|)) $) 58) (((-665 (-400 |#2|)) (-1226 $)) 103)) (-2845 (((-1226 (-400 |#2|)) $) NIL) (($ (-1226 (-400 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (|has| (-400 |#2|) (-342)))) (-3339 (((-1226 $) (-1226 $)) NIL)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ (-400 |#2|)) NIL) (($ (-400 (-549))) NIL (-1536 (|has| (-400 |#2|) (-1009 (-400 (-549)))) (|has| (-400 |#2|) (-356)))) (($ $) NIL (|has| (-400 |#2|) (-356)))) (-2210 (($ $) NIL (|has| (-400 |#2|) (-342))) (((-3 $ "failed") $) NIL (|has| (-400 |#2|) (-143)))) (-4154 ((|#3| $) NIL)) (-2082 (((-747)) NIL)) (-3672 (((-112)) 37)) (-2330 (((-112) |#1|) 49) (((-112) |#2|) 132)) (-1949 (((-1226 $)) 93)) (-1498 (((-112) $ $) NIL (|has| (-400 |#2|) (-356)))) (-2033 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-2810 (((-112)) NIL)) (-3276 (($) 16 T CONST)) (-3287 (($) 26 T CONST)) (-1702 (($ $ (-1 (-400 |#2|) (-400 |#2|)) (-747)) NIL (|has| (-400 |#2|) (-356))) (($ $ (-1 (-400 |#2|) (-400 |#2|))) NIL (|has| (-400 |#2|) (-356))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143))))) (($ $ (-1143)) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143))))) (($ $ (-747)) NIL (-1536 (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342)))) (($ $) NIL (-1536 (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342))))) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| (-400 |#2|) (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 |#2|)) NIL) (($ (-400 |#2|) $) NIL) (($ (-400 (-549)) $) NIL (|has| (-400 |#2|) (-356))) (($ $ (-400 (-549))) NIL (|has| (-400 |#2|) (-356)))))
-(((-40 |#1| |#2| |#3| |#4|) (-13 (-335 |#1| |#2| |#3|) (-10 -7 (-15 -3795 ((-1231) (-747))))) (-356) (-1202 |#1|) (-1202 (-400 |#2|)) |#3|) (T -40))
-((-3795 (*1 *2 *3) (-12 (-5 *3 (-747)) (-4 *4 (-356)) (-4 *5 (-1202 *4)) (-5 *2 (-1231)) (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1202 (-400 *5))) (-14 *7 *6))))
-(-13 (-335 |#1| |#2| |#3|) (-10 -7 (-15 -3795 ((-1231) (-747)))))
-((-2409 ((|#2| |#2|) 48)) (-2379 ((|#2| |#2|) 120 (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-444)) (|has| |#1| (-823)) (|has| |#1| (-1009 (-549)))))) (-1573 ((|#2| |#2|) 87 (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-444)) (|has| |#1| (-823)) (|has| |#1| (-1009 (-549)))))) (-3749 ((|#2| |#2|) 88 (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-444)) (|has| |#1| (-823)) (|has| |#1| (-1009 (-549)))))) (-3907 ((|#2| (-114) |#2| (-747)) 116 (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-444)) (|has| |#1| (-823)) (|has| |#1| (-1009 (-549)))))) (-3763 (((-1139 |#2|) |#2|) 45)) (-1641 ((|#2| |#2| (-621 (-592 |#2|))) 18) ((|#2| |#2| (-621 |#2|)) 20) ((|#2| |#2| |#2|) 21) ((|#2| |#2|) 16)))
-(((-41 |#1| |#2|) (-10 -7 (-15 -2409 (|#2| |#2|)) (-15 -1641 (|#2| |#2|)) (-15 -1641 (|#2| |#2| |#2|)) (-15 -1641 (|#2| |#2| (-621 |#2|))) (-15 -1641 (|#2| |#2| (-621 (-592 |#2|)))) (-15 -3763 ((-1139 |#2|) |#2|)) (IF (|has| |#1| (-823)) (IF (|has| |#1| (-444)) (IF (|has| |#1| (-1009 (-549))) (IF (|has| |#2| (-423 |#1|)) (PROGN (-15 -3749 (|#2| |#2|)) (-15 -1573 (|#2| |#2|)) (-15 -2379 (|#2| |#2|)) (-15 -3907 (|#2| (-114) |#2| (-747)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-541) (-13 (-356) (-295) (-10 -8 (-15 -1394 ((-1092 |#1| (-592 $)) $)) (-15 -1403 ((-1092 |#1| (-592 $)) $)) (-15 -3846 ($ (-1092 |#1| (-592 $))))))) (T -41))
-((-3907 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-114)) (-5 *4 (-747)) (-4 *5 (-444)) (-4 *5 (-823)) (-4 *5 (-1009 (-549))) (-4 *5 (-541)) (-5 *1 (-41 *5 *2)) (-4 *2 (-423 *5)) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1394 ((-1092 *5 (-592 $)) $)) (-15 -1403 ((-1092 *5 (-592 $)) $)) (-15 -3846 ($ (-1092 *5 (-592 $))))))))) (-2379 (*1 *2 *2) (-12 (-4 *3 (-444)) (-4 *3 (-823)) (-4 *3 (-1009 (-549))) (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-423 *3)) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1394 ((-1092 *3 (-592 $)) $)) (-15 -1403 ((-1092 *3 (-592 $)) $)) (-15 -3846 ($ (-1092 *3 (-592 $))))))))) (-1573 (*1 *2 *2) (-12 (-4 *3 (-444)) (-4 *3 (-823)) (-4 *3 (-1009 (-549))) (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-423 *3)) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1394 ((-1092 *3 (-592 $)) $)) (-15 -1403 ((-1092 *3 (-592 $)) $)) (-15 -3846 ($ (-1092 *3 (-592 $))))))))) (-3749 (*1 *2 *2) (-12 (-4 *3 (-444)) (-4 *3 (-823)) (-4 *3 (-1009 (-549))) (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-423 *3)) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1394 ((-1092 *3 (-592 $)) $)) (-15 -1403 ((-1092 *3 (-592 $)) $)) (-15 -3846 ($ (-1092 *3 (-592 $))))))))) (-3763 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-1139 *3)) (-5 *1 (-41 *4 *3)) (-4 *3 (-13 (-356) (-295) (-10 -8 (-15 -1394 ((-1092 *4 (-592 $)) $)) (-15 -1403 ((-1092 *4 (-592 $)) $)) (-15 -3846 ($ (-1092 *4 (-592 $))))))))) (-1641 (*1 *2 *2 *3) (-12 (-5 *3 (-621 (-592 *2))) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1394 ((-1092 *4 (-592 $)) $)) (-15 -1403 ((-1092 *4 (-592 $)) $)) (-15 -3846 ($ (-1092 *4 (-592 $))))))) (-4 *4 (-541)) (-5 *1 (-41 *4 *2)))) (-1641 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1394 ((-1092 *4 (-592 $)) $)) (-15 -1403 ((-1092 *4 (-592 $)) $)) (-15 -3846 ($ (-1092 *4 (-592 $))))))) (-4 *4 (-541)) (-5 *1 (-41 *4 *2)))) (-1641 (*1 *2 *2 *2) (-12 (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1394 ((-1092 *3 (-592 $)) $)) (-15 -1403 ((-1092 *3 (-592 $)) $)) (-15 -3846 ($ (-1092 *3 (-592 $))))))))) (-1641 (*1 *2 *2) (-12 (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1394 ((-1092 *3 (-592 $)) $)) (-15 -1403 ((-1092 *3 (-592 $)) $)) (-15 -3846 ($ (-1092 *3 (-592 $))))))))) (-2409 (*1 *2 *2) (-12 (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1394 ((-1092 *3 (-592 $)) $)) (-15 -1403 ((-1092 *3 (-592 $)) $)) (-15 -3846 ($ (-1092 *3 (-592 $))))))))))
-(-10 -7 (-15 -2409 (|#2| |#2|)) (-15 -1641 (|#2| |#2|)) (-15 -1641 (|#2| |#2| |#2|)) (-15 -1641 (|#2| |#2| (-621 |#2|))) (-15 -1641 (|#2| |#2| (-621 (-592 |#2|)))) (-15 -3763 ((-1139 |#2|) |#2|)) (IF (|has| |#1| (-823)) (IF (|has| |#1| (-444)) (IF (|has| |#1| (-1009 (-549))) (IF (|has| |#2| (-423 |#1|)) (PROGN (-15 -3749 (|#2| |#2|)) (-15 -1573 (|#2| |#2|)) (-15 -2379 (|#2| |#2|)) (-15 -3907 (|#2| (-114) |#2| (-747)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
-((-2121 (((-411 (-1139 |#3|)) (-1139 |#3|) (-621 (-48))) 23) (((-411 |#3|) |#3| (-621 (-48))) 19)))
-(((-42 |#1| |#2| |#3|) (-10 -7 (-15 -2121 ((-411 |#3|) |#3| (-621 (-48)))) (-15 -2121 ((-411 (-1139 |#3|)) (-1139 |#3|) (-621 (-48))))) (-823) (-769) (-920 (-48) |#2| |#1|)) (T -42))
-((-2121 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-48))) (-4 *5 (-823)) (-4 *6 (-769)) (-4 *7 (-920 (-48) *6 *5)) (-5 *2 (-411 (-1139 *7))) (-5 *1 (-42 *5 *6 *7)) (-5 *3 (-1139 *7)))) (-2121 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-48))) (-4 *5 (-823)) (-4 *6 (-769)) (-5 *2 (-411 *3)) (-5 *1 (-42 *5 *6 *3)) (-4 *3 (-920 (-48) *6 *5)))))
-(-10 -7 (-15 -2121 ((-411 |#3|) |#3| (-621 (-48)))) (-15 -2121 ((-411 (-1139 |#3|)) (-1139 |#3|) (-621 (-48)))))
-((-4078 (((-747) |#2|) 65)) (-3702 (((-747) |#2|) 68)) (-2482 (((-621 |#2|)) 33)) (-3770 (((-747) |#2|) 67)) (-3065 (((-747) |#2|) 64)) (-3693 (((-747) |#2|) 66)) (-2239 (((-621 (-665 |#1|))) 60)) (-2877 (((-621 |#2|)) 55)) (-2581 (((-621 |#2|) |#2|) 43)) (-2855 (((-621 |#2|)) 57)) (-3725 (((-621 |#2|)) 56)) (-2476 (((-621 (-665 |#1|))) 48)) (-1940 (((-621 |#2|)) 54)) (-4217 (((-621 |#2|) |#2|) 42)) (-1567 (((-621 |#2|)) 50)) (-2078 (((-621 (-665 |#1|))) 61)) (-4240 (((-621 |#2|)) 59)) (-1949 (((-1226 |#2|) (-1226 |#2|)) 84 (|has| |#1| (-300)))))
-(((-43 |#1| |#2|) (-10 -7 (-15 -3770 ((-747) |#2|)) (-15 -3702 ((-747) |#2|)) (-15 -3065 ((-747) |#2|)) (-15 -4078 ((-747) |#2|)) (-15 -3693 ((-747) |#2|)) (-15 -1567 ((-621 |#2|))) (-15 -4217 ((-621 |#2|) |#2|)) (-15 -2581 ((-621 |#2|) |#2|)) (-15 -1940 ((-621 |#2|))) (-15 -2877 ((-621 |#2|))) (-15 -3725 ((-621 |#2|))) (-15 -2855 ((-621 |#2|))) (-15 -4240 ((-621 |#2|))) (-15 -2476 ((-621 (-665 |#1|)))) (-15 -2239 ((-621 (-665 |#1|)))) (-15 -2078 ((-621 (-665 |#1|)))) (-15 -2482 ((-621 |#2|))) (IF (|has| |#1| (-300)) (-15 -1949 ((-1226 |#2|) (-1226 |#2|))) |%noBranch|)) (-541) (-410 |#1|)) (T -43))
-((-1949 (*1 *2 *2) (-12 (-5 *2 (-1226 *4)) (-4 *4 (-410 *3)) (-4 *3 (-300)) (-4 *3 (-541)) (-5 *1 (-43 *3 *4)))) (-2482 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-2078 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 (-665 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-2239 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 (-665 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-2476 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 (-665 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-4240 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-2855 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-3725 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-2877 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-1940 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-2581 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-621 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-410 *4)))) (-4217 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-621 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-410 *4)))) (-1567 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-3693 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3)) (-4 *3 (-410 *4)))) (-4078 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3)) (-4 *3 (-410 *4)))) (-3065 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3)) (-4 *3 (-410 *4)))) (-3702 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3)) (-4 *3 (-410 *4)))) (-3770 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3)) (-4 *3 (-410 *4)))))
-(-10 -7 (-15 -3770 ((-747) |#2|)) (-15 -3702 ((-747) |#2|)) (-15 -3065 ((-747) |#2|)) (-15 -4078 ((-747) |#2|)) (-15 -3693 ((-747) |#2|)) (-15 -1567 ((-621 |#2|))) (-15 -4217 ((-621 |#2|) |#2|)) (-15 -2581 ((-621 |#2|) |#2|)) (-15 -1940 ((-621 |#2|))) (-15 -2877 ((-621 |#2|))) (-15 -3725 ((-621 |#2|))) (-15 -2855 ((-621 |#2|))) (-15 -4240 ((-621 |#2|))) (-15 -2476 ((-621 (-665 |#1|)))) (-15 -2239 ((-621 (-665 |#1|)))) (-15 -2078 ((-621 (-665 |#1|)))) (-15 -2482 ((-621 |#2|))) (IF (|has| |#1| (-300)) (-15 -1949 ((-1226 |#2|) (-1226 |#2|))) |%noBranch|))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2207 (((-3 $ "failed")) NIL (|has| |#1| (-541)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3277 (((-1226 (-665 |#1|)) (-1226 $)) NIL) (((-1226 (-665 |#1|))) 24)) (-3945 (((-1226 $)) 51)) (-1682 (($) NIL T CONST)) (-3219 (((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed")) NIL (|has| |#1| (-541)))) (-3550 (((-3 $ "failed")) NIL (|has| |#1| (-541)))) (-4212 (((-665 |#1|) (-1226 $)) NIL) (((-665 |#1|)) NIL)) (-2840 ((|#1| $) NIL)) (-3841 (((-665 |#1|) $ (-1226 $)) NIL) (((-665 |#1|) $) NIL)) (-3038 (((-3 $ "failed") $) NIL (|has| |#1| (-541)))) (-2478 (((-1139 (-923 |#1|))) NIL (|has| |#1| (-356)))) (-3117 (($ $ (-892)) NIL)) (-2182 ((|#1| $) NIL)) (-2289 (((-1139 |#1|) $) NIL (|has| |#1| (-541)))) (-3076 ((|#1| (-1226 $)) NIL) ((|#1|) NIL)) (-3266 (((-1139 |#1|) $) NIL)) (-1368 (((-112)) 87)) (-3492 (($ (-1226 |#1|) (-1226 $)) NIL) (($ (-1226 |#1|)) NIL)) (-2114 (((-3 $ "failed") $) 14 (|has| |#1| (-541)))) (-3123 (((-892)) 52)) (-3601 (((-112)) NIL)) (-2943 (($ $ (-892)) NIL)) (-3975 (((-112)) NIL)) (-2291 (((-112)) NIL)) (-2647 (((-112)) 89)) (-1742 (((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed")) NIL (|has| |#1| (-541)))) (-4101 (((-3 $ "failed")) NIL (|has| |#1| (-541)))) (-2870 (((-665 |#1|) (-1226 $)) NIL) (((-665 |#1|)) NIL)) (-2654 ((|#1| $) NIL)) (-2303 (((-665 |#1|) $ (-1226 $)) NIL) (((-665 |#1|) $) NIL)) (-1919 (((-3 $ "failed") $) NIL (|has| |#1| (-541)))) (-2014 (((-1139 (-923 |#1|))) NIL (|has| |#1| (-356)))) (-2884 (($ $ (-892)) NIL)) (-2248 ((|#1| $) NIL)) (-1378 (((-1139 |#1|) $) NIL (|has| |#1| (-541)))) (-2920 ((|#1| (-1226 $)) NIL) ((|#1|) NIL)) (-2443 (((-1139 |#1|) $) NIL)) (-3623 (((-112)) 86)) (-3851 (((-1125) $) NIL)) (-3260 (((-112)) 93)) (-2754 (((-112)) 92)) (-2055 (((-112)) 94)) (-3990 (((-1087) $) NIL)) (-2392 (((-112)) 88)) (-3341 ((|#1| $ (-549)) 54)) (-4263 (((-1226 |#1|) $ (-1226 $)) 48) (((-665 |#1|) (-1226 $) (-1226 $)) NIL) (((-1226 |#1|) $) 28) (((-665 |#1|) (-1226 $)) NIL)) (-2845 (((-1226 |#1|) $) NIL) (($ (-1226 |#1|)) NIL)) (-4111 (((-621 (-923 |#1|)) (-1226 $)) NIL) (((-621 (-923 |#1|))) NIL)) (-3293 (($ $ $) NIL)) (-1942 (((-112)) 84)) (-3846 (((-834) $) 69) (($ (-1226 |#1|)) 22)) (-1949 (((-1226 $)) 45)) (-4315 (((-621 (-1226 |#1|))) NIL (|has| |#1| (-541)))) (-4272 (($ $ $ $) NIL)) (-3430 (((-112)) 82)) (-3596 (($ (-665 |#1|) $) 18)) (-2174 (($ $ $) NIL)) (-2864 (((-112)) 85)) (-4257 (((-112)) 83)) (-1898 (((-112)) 81)) (-3276 (($) NIL T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 76) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-1109 |#2| |#1|) $) 19)))
-(((-44 |#1| |#2| |#3| |#4|) (-13 (-410 |#1|) (-624 (-1109 |#2| |#1|)) (-10 -8 (-15 -3846 ($ (-1226 |#1|))))) (-356) (-892) (-621 (-1143)) (-1226 (-665 |#1|))) (T -44))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1226 *3)) (-4 *3 (-356)) (-14 *6 (-1226 (-665 *3))) (-5 *1 (-44 *3 *4 *5 *6)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))))))
-(-13 (-410 |#1|) (-624 (-1109 |#2| |#1|)) (-10 -8 (-15 -3846 ($ (-1226 |#1|)))))
-((-3834 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-4161 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-2839 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-1343 (($ $) NIL)) (-3733 (($) NIL) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-1535 (((-1231) $ |#1| |#1|) NIL (|has| $ (-6 -4338))) (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-3174 (($ $ (-549)) NIL (|has| $ (-6 -4338)))) (-4142 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL) (((-112) $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-4311 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4338))) (($ $) NIL (-12 (|has| $ (-6 -4338)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823))))) (-3193 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL) (($ $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-1584 (((-112) $ (-747)) NIL)) (-2838 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (|has| $ (-6 -4338)))) (-4179 (($ $ $) 27 (|has| $ (-6 -4338)))) (-2780 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (|has| $ (-6 -4338)))) (-4135 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 29 (|has| $ (-6 -4338)))) (-2254 ((|#2| $ |#1| |#2|) 46) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-549) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (|has| $ (-6 -4338))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-1193 (-549)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (|has| $ (-6 -4338))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ "last" (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (|has| $ (-6 -4338))) (($ $ "rest" $) NIL (|has| $ (-6 -4338))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ "first" (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (|has| $ (-6 -4338))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ "value" (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) NIL (|has| $ (-6 -4338)))) (-1717 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL)) (-1489 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2830 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-3490 (((-3 |#2| "failed") |#1| $) 37)) (-1682 (($) NIL T CONST)) (-1585 (($ $) NIL (|has| $ (-6 -4338)))) (-3064 (($ $) NIL)) (-3657 (($ $ (-747)) NIL) (($ $) 24)) (-3745 (($ $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-2129 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-3 |#2| "failed") |#1| $) 48) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL) (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (-3812 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2557 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-1879 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4338))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-549) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (|has| $ (-6 -4338)))) (-1809 ((|#2| $ |#1|) NIL) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-549)) NIL)) (-3331 (((-112) $) NIL)) (-2883 (((-549) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL) (((-549) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))) (((-549) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-549)) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (-2989 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 18 (|has| $ (-6 -4337))) (((-621 |#2|) $) NIL (|has| $ (-6 -4337))) (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 18 (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) NIL)) (-3895 (((-112) $ $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (-3743 (($ (-747) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-4031 ((|#1| $) NIL (|has| |#1| (-823))) (((-549) $) 32 (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-1303 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-3890 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-1562 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-621 |#2|) $) NIL (|has| $ (-6 -4337))) (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067)))) (((-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-1569 ((|#1| $) NIL (|has| |#1| (-823))) (((-549) $) 34 (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-1868 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4338))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4338))) (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ $) NIL) (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL)) (-3525 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3591 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL)) (-2076 (((-112) $) NIL)) (-3851 (((-1125) $) 42 (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3829 (($ $ (-747)) NIL) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-3449 (((-621 |#1|) $) 20)) (-2427 (((-112) |#1| $) NIL)) (-3504 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-2751 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL) (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-2616 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-3303 (((-621 |#1|) $) NIL) (((-621 (-549)) $) NIL)) (-3761 (((-112) |#1| $) NIL) (((-112) (-549) $) NIL)) (-3990 (((-1087) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3646 ((|#2| $) NIL (|has| |#1| (-823))) (($ $ (-747)) NIL) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 23)) (-3779 (((-3 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) "failed") (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL) (((-3 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) "failed") (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL)) (-1642 (($ $ |#2|) NIL (|has| $ (-6 -4338))) (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (|has| $ (-6 -4338)))) (-3325 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-3016 (((-112) $) NIL)) (-1780 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067)))) (((-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-2696 (((-621 |#2|) $) NIL) (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 17)) (-3670 (((-112) $) 16)) (-3742 (($) 13)) (-3341 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-549) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ (-549)) NIL) (($ $ (-1193 (-549))) NIL) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ "last") NIL) (($ $ "rest") NIL) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ "first") NIL) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $ "value") NIL)) (-3230 (((-549) $ $) NIL)) (-2898 (($) 12) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-3531 (($ $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-2167 (($ $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-3497 (((-112) $) NIL)) (-1999 (($ $) NIL)) (-2643 (($ $) NIL (|has| $ (-6 -4338)))) (-3798 (((-747) $) NIL)) (-3612 (($ $) NIL)) (-4000 (((-747) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-747) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067)))) (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337))) (((-747) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-747) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2730 (($ $ $ (-549)) NIL (|has| $ (-6 -4338)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-594 (-525))))) (-3854 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-3196 (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL) (($ $ $) NIL)) (-1952 (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL) (($ (-621 $)) NIL) (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 25) (($ $ $) NIL)) (-3846 (((-834) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-593 (-834))) (|has| |#2| (-593 (-834)))))) (-2742 (((-621 $) $) NIL)) (-1987 (((-112) $ $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (-3624 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-3837 (((-3 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) "failed") |#1| $) 44)) (-3527 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-2425 (((-112) $ $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-2389 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-2438 (((-112) $ $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-2412 (((-112) $ $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-823)))) (-3775 (((-747) $) 22 (|has| $ (-6 -4337)))))
-(((-45 |#1| |#2|) (-36 |#1| |#2|) (-1067) (-1067)) (T -45))
+((-3845 (*1 *1 *2) (-12 (-4 *1 (-38 *2)) (-4 *2 (-170)))))
+(-13 (-1018) (-694 |t#1|) (-10 -8 (-15 -3845 ($ |t#1|))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 |#1|) . T) ((-703) . T) ((-1024 |#1|) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-3506 (((-411 |#1|) |#1|) 41)) (-2119 (((-411 |#1|) |#1|) 30) (((-411 |#1|) |#1| (-621 (-48))) 33)) (-2676 (((-112) |#1|) 56)))
+(((-39 |#1|) (-10 -7 (-15 -2119 ((-411 |#1|) |#1| (-621 (-48)))) (-15 -2119 ((-411 |#1|) |#1|)) (-15 -3506 ((-411 |#1|) |#1|)) (-15 -2676 ((-112) |#1|))) (-1201 (-48))) (T -39))
+((-2676 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1201 (-48))))) (-3506 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1201 (-48))))) (-2119 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1201 (-48))))) (-2119 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-48))) (-5 *2 (-411 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1201 (-48))))))
+(-10 -7 (-15 -2119 ((-411 |#1|) |#1| (-621 (-48)))) (-15 -2119 ((-411 |#1|) |#1|)) (-15 -3506 ((-411 |#1|) |#1|)) (-15 -2676 ((-112) |#1|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-1726 (((-2 (|:| |num| (-1225 |#2|)) (|:| |den| |#2|)) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| (-400 |#2|) (-356)))) (-3044 (($ $) NIL (|has| (-400 |#2|) (-356)))) (-2774 (((-112) $) NIL (|has| (-400 |#2|) (-356)))) (-1789 (((-665 (-400 |#2|)) (-1225 $)) NIL) (((-665 (-400 |#2|))) NIL)) (-2904 (((-400 |#2|) $) NIL)) (-1597 (((-1152 (-892) (-747)) (-549)) NIL (|has| (-400 |#2|) (-342)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL (|has| (-400 |#2|) (-356)))) (-2620 (((-411 $) $) NIL (|has| (-400 |#2|) (-356)))) (-2680 (((-112) $ $) NIL (|has| (-400 |#2|) (-356)))) (-3614 (((-747)) NIL (|has| (-400 |#2|) (-361)))) (-4233 (((-112)) NIL)) (-1823 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL (|has| (-400 |#2|) (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-400 |#2|) (-1009 (-400 (-549))))) (((-3 (-400 |#2|) "failed") $) NIL)) (-2657 (((-549) $) NIL (|has| (-400 |#2|) (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| (-400 |#2|) (-1009 (-400 (-549))))) (((-400 |#2|) $) NIL)) (-2397 (($ (-1225 (-400 |#2|)) (-1225 $)) NIL) (($ (-1225 (-400 |#2|))) 57) (($ (-1225 |#2|) |#2|) 125)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-400 |#2|) (-342)))) (-2091 (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-1408 (((-665 (-400 |#2|)) $ (-1225 $)) NIL) (((-665 (-400 |#2|)) $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| (-400 |#2|) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| (-400 |#2|) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-400 |#2|))) (|:| |vec| (-1225 (-400 |#2|)))) (-665 $) (-1225 $)) NIL) (((-665 (-400 |#2|)) (-665 $)) NIL)) (-2231 (((-1225 $) (-1225 $)) NIL)) (-2556 (($ |#3|) NIL) (((-3 $ "failed") (-400 |#3|)) NIL (|has| (-400 |#2|) (-356)))) (-2612 (((-3 $ "failed") $) NIL)) (-2185 (((-621 (-621 |#1|))) NIL (|has| |#1| (-361)))) (-3805 (((-112) |#1| |#1|) NIL)) (-3121 (((-892)) NIL)) (-3237 (($) NIL (|has| (-400 |#2|) (-361)))) (-2707 (((-112)) NIL)) (-3568 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-2065 (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| (-400 |#2|) (-356)))) (-3004 (($ $) NIL)) (-1545 (($) NIL (|has| (-400 |#2|) (-342)))) (-1315 (((-112) $) NIL (|has| (-400 |#2|) (-342)))) (-3517 (($ $ (-747)) NIL (|has| (-400 |#2|) (-342))) (($ $) NIL (|has| (-400 |#2|) (-342)))) (-1464 (((-112) $) NIL (|has| (-400 |#2|) (-356)))) (-2729 (((-892) $) NIL (|has| (-400 |#2|) (-342))) (((-809 (-892)) $) NIL (|has| (-400 |#2|) (-342)))) (-2297 (((-112) $) NIL)) (-1872 (((-747)) NIL)) (-3015 (((-1225 $) (-1225 $)) 102)) (-2469 (((-400 |#2|) $) NIL)) (-3355 (((-621 (-923 |#1|)) (-1142)) NIL (|has| |#1| (-356)))) (-2964 (((-3 $ "failed") $) NIL (|has| (-400 |#2|) (-342)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| (-400 |#2|) (-356)))) (-3514 ((|#3| $) NIL (|has| (-400 |#2|) (-356)))) (-3309 (((-892) $) NIL (|has| (-400 |#2|) (-361)))) (-2545 ((|#3| $) NIL)) (-3696 (($ (-621 $)) NIL (|has| (-400 |#2|) (-356))) (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-3441 (((-1124) $) NIL)) (-2896 (((-1230) (-747)) 79)) (-3089 (((-665 (-400 |#2|))) 51)) (-2518 (((-665 (-400 |#2|))) 44)) (-1990 (($ $) NIL (|has| (-400 |#2|) (-356)))) (-3415 (($ (-1225 |#2|) |#2|) 126)) (-2575 (((-665 (-400 |#2|))) 45)) (-2134 (((-665 (-400 |#2|))) 43)) (-3903 (((-2 (|:| |num| (-665 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 124)) (-1384 (((-2 (|:| |num| (-1225 |#2|)) (|:| |den| |#2|)) $) 64)) (-3555 (((-1225 $)) 42)) (-1311 (((-1225 $)) 41)) (-3411 (((-112) $) NIL)) (-3623 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-3059 (($) NIL (|has| (-400 |#2|) (-342)) CONST)) (-3494 (($ (-892)) NIL (|has| (-400 |#2|) (-361)))) (-1550 (((-3 |#2| "failed")) NIL)) (-3988 (((-1086) $) NIL)) (-1765 (((-747)) NIL)) (-4247 (($) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| (-400 |#2|) (-356)))) (-3726 (($ (-621 $)) NIL (|has| (-400 |#2|) (-356))) (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) NIL (|has| (-400 |#2|) (-342)))) (-2119 (((-411 $) $) NIL (|has| (-400 |#2|) (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-400 |#2|) (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| (-400 |#2|) (-356)))) (-2040 (((-3 $ "failed") $ $) NIL (|has| (-400 |#2|) (-356)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| (-400 |#2|) (-356)))) (-1335 (((-747) $) NIL (|has| (-400 |#2|) (-356)))) (-3339 ((|#1| $ |#1| |#1|) NIL)) (-2622 (((-3 |#2| "failed")) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| (-400 |#2|) (-356)))) (-2740 (((-400 |#2|) (-1225 $)) NIL) (((-400 |#2|)) 39)) (-3189 (((-747) $) NIL (|has| (-400 |#2|) (-342))) (((-3 (-747) "failed") $ $) NIL (|has| (-400 |#2|) (-342)))) (-3455 (($ $ (-1 (-400 |#2|) (-400 |#2|)) (-747)) NIL (|has| (-400 |#2|) (-356))) (($ $ (-1 (-400 |#2|) (-400 |#2|))) NIL (|has| (-400 |#2|) (-356))) (($ $ (-1 |#2| |#2|)) 120) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142))))) (($ $ (-1142)) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142))))) (($ $ (-747)) NIL (-1536 (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342)))) (($ $) NIL (-1536 (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342))))) (-2381 (((-665 (-400 |#2|)) (-1225 $) (-1 (-400 |#2|) (-400 |#2|))) NIL (|has| (-400 |#2|) (-356)))) (-1262 ((|#3|) 50)) (-2950 (($) NIL (|has| (-400 |#2|) (-342)))) (-1981 (((-1225 (-400 |#2|)) $ (-1225 $)) NIL) (((-665 (-400 |#2|)) (-1225 $) (-1225 $)) NIL) (((-1225 (-400 |#2|)) $) 58) (((-665 (-400 |#2|)) (-1225 $)) 103)) (-2843 (((-1225 (-400 |#2|)) $) NIL) (($ (-1225 (-400 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (|has| (-400 |#2|) (-342)))) (-2354 (((-1225 $) (-1225 $)) NIL)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ (-400 |#2|)) NIL) (($ (-400 (-549))) NIL (-1536 (|has| (-400 |#2|) (-1009 (-400 (-549)))) (|has| (-400 |#2|) (-356)))) (($ $) NIL (|has| (-400 |#2|) (-356)))) (-2343 (($ $) NIL (|has| (-400 |#2|) (-342))) (((-3 $ "failed") $) NIL (|has| (-400 |#2|) (-143)))) (-4019 ((|#3| $) NIL)) (-2371 (((-747)) NIL)) (-1479 (((-112)) 37)) (-1642 (((-112) |#1|) 49) (((-112) |#2|) 132)) (-2619 (((-1225 $)) 93)) (-2441 (((-112) $ $) NIL (|has| (-400 |#2|) (-356)))) (-3111 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-1945 (((-112)) NIL)) (-3274 (($) 16 T CONST)) (-3286 (($) 26 T CONST)) (-1699 (($ $ (-1 (-400 |#2|) (-400 |#2|)) (-747)) NIL (|has| (-400 |#2|) (-356))) (($ $ (-1 (-400 |#2|) (-400 |#2|))) NIL (|has| (-400 |#2|) (-356))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142))))) (($ $ (-1142)) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142))))) (($ $ (-747)) NIL (-1536 (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342)))) (($ $) NIL (-1536 (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342))))) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| (-400 |#2|) (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 |#2|)) NIL) (($ (-400 |#2|) $) NIL) (($ (-400 (-549)) $) NIL (|has| (-400 |#2|) (-356))) (($ $ (-400 (-549))) NIL (|has| (-400 |#2|) (-356)))))
+(((-40 |#1| |#2| |#3| |#4|) (-13 (-335 |#1| |#2| |#3|) (-10 -7 (-15 -2896 ((-1230) (-747))))) (-356) (-1201 |#1|) (-1201 (-400 |#2|)) |#3|) (T -40))
+((-2896 (*1 *2 *3) (-12 (-5 *3 (-747)) (-4 *4 (-356)) (-4 *5 (-1201 *4)) (-5 *2 (-1230)) (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1201 (-400 *5))) (-14 *7 *6))))
+(-13 (-335 |#1| |#2| |#3|) (-10 -7 (-15 -2896 ((-1230) (-747)))))
+((-1999 ((|#2| |#2|) 48)) (-4258 ((|#2| |#2|) 120 (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-444)) (|has| |#1| (-823)) (|has| |#1| (-1009 (-549)))))) (-2184 ((|#2| |#2|) 87 (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-444)) (|has| |#1| (-823)) (|has| |#1| (-1009 (-549)))))) (-3780 ((|#2| |#2|) 88 (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-444)) (|has| |#1| (-823)) (|has| |#1| (-1009 (-549)))))) (-1833 ((|#2| (-114) |#2| (-747)) 116 (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-444)) (|has| |#1| (-823)) (|has| |#1| (-1009 (-549)))))) (-2360 (((-1138 |#2|) |#2|) 45)) (-1842 ((|#2| |#2| (-621 (-592 |#2|))) 18) ((|#2| |#2| (-621 |#2|)) 20) ((|#2| |#2| |#2|) 21) ((|#2| |#2|) 16)))
+(((-41 |#1| |#2|) (-10 -7 (-15 -1999 (|#2| |#2|)) (-15 -1842 (|#2| |#2|)) (-15 -1842 (|#2| |#2| |#2|)) (-15 -1842 (|#2| |#2| (-621 |#2|))) (-15 -1842 (|#2| |#2| (-621 (-592 |#2|)))) (-15 -2360 ((-1138 |#2|) |#2|)) (IF (|has| |#1| (-823)) (IF (|has| |#1| (-444)) (IF (|has| |#1| (-1009 (-549))) (IF (|has| |#2| (-423 |#1|)) (PROGN (-15 -3780 (|#2| |#2|)) (-15 -2184 (|#2| |#2|)) (-15 -4258 (|#2| |#2|)) (-15 -1833 (|#2| (-114) |#2| (-747)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-541) (-13 (-356) (-295) (-10 -8 (-15 -1392 ((-1091 |#1| (-592 $)) $)) (-15 -1404 ((-1091 |#1| (-592 $)) $)) (-15 -3845 ($ (-1091 |#1| (-592 $))))))) (T -41))
+((-1833 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-114)) (-5 *4 (-747)) (-4 *5 (-444)) (-4 *5 (-823)) (-4 *5 (-1009 (-549))) (-4 *5 (-541)) (-5 *1 (-41 *5 *2)) (-4 *2 (-423 *5)) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1392 ((-1091 *5 (-592 $)) $)) (-15 -1404 ((-1091 *5 (-592 $)) $)) (-15 -3845 ($ (-1091 *5 (-592 $))))))))) (-4258 (*1 *2 *2) (-12 (-4 *3 (-444)) (-4 *3 (-823)) (-4 *3 (-1009 (-549))) (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-423 *3)) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1392 ((-1091 *3 (-592 $)) $)) (-15 -1404 ((-1091 *3 (-592 $)) $)) (-15 -3845 ($ (-1091 *3 (-592 $))))))))) (-2184 (*1 *2 *2) (-12 (-4 *3 (-444)) (-4 *3 (-823)) (-4 *3 (-1009 (-549))) (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-423 *3)) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1392 ((-1091 *3 (-592 $)) $)) (-15 -1404 ((-1091 *3 (-592 $)) $)) (-15 -3845 ($ (-1091 *3 (-592 $))))))))) (-3780 (*1 *2 *2) (-12 (-4 *3 (-444)) (-4 *3 (-823)) (-4 *3 (-1009 (-549))) (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-423 *3)) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1392 ((-1091 *3 (-592 $)) $)) (-15 -1404 ((-1091 *3 (-592 $)) $)) (-15 -3845 ($ (-1091 *3 (-592 $))))))))) (-2360 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-1138 *3)) (-5 *1 (-41 *4 *3)) (-4 *3 (-13 (-356) (-295) (-10 -8 (-15 -1392 ((-1091 *4 (-592 $)) $)) (-15 -1404 ((-1091 *4 (-592 $)) $)) (-15 -3845 ($ (-1091 *4 (-592 $))))))))) (-1842 (*1 *2 *2 *3) (-12 (-5 *3 (-621 (-592 *2))) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1392 ((-1091 *4 (-592 $)) $)) (-15 -1404 ((-1091 *4 (-592 $)) $)) (-15 -3845 ($ (-1091 *4 (-592 $))))))) (-4 *4 (-541)) (-5 *1 (-41 *4 *2)))) (-1842 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1392 ((-1091 *4 (-592 $)) $)) (-15 -1404 ((-1091 *4 (-592 $)) $)) (-15 -3845 ($ (-1091 *4 (-592 $))))))) (-4 *4 (-541)) (-5 *1 (-41 *4 *2)))) (-1842 (*1 *2 *2 *2) (-12 (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1392 ((-1091 *3 (-592 $)) $)) (-15 -1404 ((-1091 *3 (-592 $)) $)) (-15 -3845 ($ (-1091 *3 (-592 $))))))))) (-1842 (*1 *2 *2) (-12 (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1392 ((-1091 *3 (-592 $)) $)) (-15 -1404 ((-1091 *3 (-592 $)) $)) (-15 -3845 ($ (-1091 *3 (-592 $))))))))) (-1999 (*1 *2 *2) (-12 (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-356) (-295) (-10 -8 (-15 -1392 ((-1091 *3 (-592 $)) $)) (-15 -1404 ((-1091 *3 (-592 $)) $)) (-15 -3845 ($ (-1091 *3 (-592 $))))))))))
+(-10 -7 (-15 -1999 (|#2| |#2|)) (-15 -1842 (|#2| |#2|)) (-15 -1842 (|#2| |#2| |#2|)) (-15 -1842 (|#2| |#2| (-621 |#2|))) (-15 -1842 (|#2| |#2| (-621 (-592 |#2|)))) (-15 -2360 ((-1138 |#2|) |#2|)) (IF (|has| |#1| (-823)) (IF (|has| |#1| (-444)) (IF (|has| |#1| (-1009 (-549))) (IF (|has| |#2| (-423 |#1|)) (PROGN (-15 -3780 (|#2| |#2|)) (-15 -2184 (|#2| |#2|)) (-15 -4258 (|#2| |#2|)) (-15 -1833 (|#2| (-114) |#2| (-747)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
+((-2119 (((-411 (-1138 |#3|)) (-1138 |#3|) (-621 (-48))) 23) (((-411 |#3|) |#3| (-621 (-48))) 19)))
+(((-42 |#1| |#2| |#3|) (-10 -7 (-15 -2119 ((-411 |#3|) |#3| (-621 (-48)))) (-15 -2119 ((-411 (-1138 |#3|)) (-1138 |#3|) (-621 (-48))))) (-823) (-769) (-920 (-48) |#2| |#1|)) (T -42))
+((-2119 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-48))) (-4 *5 (-823)) (-4 *6 (-769)) (-4 *7 (-920 (-48) *6 *5)) (-5 *2 (-411 (-1138 *7))) (-5 *1 (-42 *5 *6 *7)) (-5 *3 (-1138 *7)))) (-2119 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-48))) (-4 *5 (-823)) (-4 *6 (-769)) (-5 *2 (-411 *3)) (-5 *1 (-42 *5 *6 *3)) (-4 *3 (-920 (-48) *6 *5)))))
+(-10 -7 (-15 -2119 ((-411 |#3|) |#3| (-621 (-48)))) (-15 -2119 ((-411 (-1138 |#3|)) (-1138 |#3|) (-621 (-48)))))
+((-2521 (((-747) |#2|) 65)) (-4062 (((-747) |#2|) 68)) (-2878 (((-621 |#2|)) 33)) (-1467 (((-747) |#2|) 67)) (-1811 (((-747) |#2|) 64)) (-1635 (((-747) |#2|) 66)) (-3928 (((-621 (-665 |#1|))) 60)) (-1928 (((-621 |#2|)) 55)) (-2414 (((-621 |#2|) |#2|) 43)) (-3789 (((-621 |#2|)) 57)) (-2541 (((-621 |#2|)) 56)) (-3586 (((-621 (-665 |#1|))) 48)) (-2923 (((-621 |#2|)) 54)) (-4071 (((-621 |#2|) |#2|) 42)) (-2862 (((-621 |#2|)) 50)) (-3176 (((-621 (-665 |#1|))) 61)) (-1652 (((-621 |#2|)) 59)) (-2619 (((-1225 |#2|) (-1225 |#2|)) 84 (|has| |#1| (-300)))))
+(((-43 |#1| |#2|) (-10 -7 (-15 -1467 ((-747) |#2|)) (-15 -4062 ((-747) |#2|)) (-15 -1811 ((-747) |#2|)) (-15 -2521 ((-747) |#2|)) (-15 -1635 ((-747) |#2|)) (-15 -2862 ((-621 |#2|))) (-15 -4071 ((-621 |#2|) |#2|)) (-15 -2414 ((-621 |#2|) |#2|)) (-15 -2923 ((-621 |#2|))) (-15 -1928 ((-621 |#2|))) (-15 -2541 ((-621 |#2|))) (-15 -3789 ((-621 |#2|))) (-15 -1652 ((-621 |#2|))) (-15 -3586 ((-621 (-665 |#1|)))) (-15 -3928 ((-621 (-665 |#1|)))) (-15 -3176 ((-621 (-665 |#1|)))) (-15 -2878 ((-621 |#2|))) (IF (|has| |#1| (-300)) (-15 -2619 ((-1225 |#2|) (-1225 |#2|))) |%noBranch|)) (-541) (-410 |#1|)) (T -43))
+((-2619 (*1 *2 *2) (-12 (-5 *2 (-1225 *4)) (-4 *4 (-410 *3)) (-4 *3 (-300)) (-4 *3 (-541)) (-5 *1 (-43 *3 *4)))) (-2878 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-3176 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 (-665 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-3928 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 (-665 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-3586 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 (-665 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-1652 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-3789 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-2541 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-1928 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-2923 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-2414 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-621 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-410 *4)))) (-4071 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-621 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-410 *4)))) (-2862 (*1 *2) (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-410 *3)))) (-1635 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3)) (-4 *3 (-410 *4)))) (-2521 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3)) (-4 *3 (-410 *4)))) (-1811 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3)) (-4 *3 (-410 *4)))) (-4062 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3)) (-4 *3 (-410 *4)))) (-1467 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3)) (-4 *3 (-410 *4)))))
+(-10 -7 (-15 -1467 ((-747) |#2|)) (-15 -4062 ((-747) |#2|)) (-15 -1811 ((-747) |#2|)) (-15 -2521 ((-747) |#2|)) (-15 -1635 ((-747) |#2|)) (-15 -2862 ((-621 |#2|))) (-15 -4071 ((-621 |#2|) |#2|)) (-15 -2414 ((-621 |#2|) |#2|)) (-15 -2923 ((-621 |#2|))) (-15 -1928 ((-621 |#2|))) (-15 -2541 ((-621 |#2|))) (-15 -3789 ((-621 |#2|))) (-15 -1652 ((-621 |#2|))) (-15 -3586 ((-621 (-665 |#1|)))) (-15 -3928 ((-621 (-665 |#1|)))) (-15 -3176 ((-621 (-665 |#1|)))) (-15 -2878 ((-621 |#2|))) (IF (|has| |#1| (-300)) (-15 -2619 ((-1225 |#2|) (-1225 |#2|))) |%noBranch|))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-1951 (((-3 $ "failed")) NIL (|has| |#1| (-541)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-2893 (((-1225 (-665 |#1|)) (-1225 $)) NIL) (((-1225 (-665 |#1|))) 24)) (-3349 (((-1225 $)) 51)) (-3034 (($) NIL T CONST)) (-1760 (((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed")) NIL (|has| |#1| (-541)))) (-3372 (((-3 $ "failed")) NIL (|has| |#1| (-541)))) (-1657 (((-665 |#1|) (-1225 $)) NIL) (((-665 |#1|)) NIL)) (-2872 ((|#1| $) NIL)) (-1785 (((-665 |#1|) $ (-1225 $)) NIL) (((-665 |#1|) $) NIL)) (-2013 (((-3 $ "failed") $) NIL (|has| |#1| (-541)))) (-3781 (((-1138 (-923 |#1|))) NIL (|has| |#1| (-356)))) (-2039 (($ $ (-892)) NIL)) (-4301 ((|#1| $) NIL)) (-1442 (((-1138 |#1|) $) NIL (|has| |#1| (-541)))) (-2733 ((|#1| (-1225 $)) NIL) ((|#1|) NIL)) (-3163 (((-1138 |#1|) $) NIL)) (-2634 (((-112)) 87)) (-2397 (($ (-1225 |#1|) (-1225 $)) NIL) (($ (-1225 |#1|)) NIL)) (-2612 (((-3 $ "failed") $) 14 (|has| |#1| (-541)))) (-3121 (((-892)) 52)) (-2639 (((-112)) NIL)) (-3764 (($ $ (-892)) NIL)) (-2915 (((-112)) NIL)) (-1670 (((-112)) NIL)) (-4034 (((-112)) 89)) (-4001 (((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed")) NIL (|has| |#1| (-541)))) (-3583 (((-3 $ "failed")) NIL (|has| |#1| (-541)))) (-2686 (((-665 |#1|) (-1225 $)) NIL) (((-665 |#1|)) NIL)) (-3458 ((|#1| $) NIL)) (-3364 (((-665 |#1|) $ (-1225 $)) NIL) (((-665 |#1|) $) NIL)) (-1540 (((-3 $ "failed") $) NIL (|has| |#1| (-541)))) (-4128 (((-1138 (-923 |#1|))) NIL (|has| |#1| (-356)))) (-4304 (($ $ (-892)) NIL)) (-3432 ((|#1| $) NIL)) (-2085 (((-1138 |#1|) $) NIL (|has| |#1| (-541)))) (-1405 ((|#1| (-1225 $)) NIL) ((|#1|) NIL)) (-4257 (((-1138 |#1|) $) NIL)) (-4115 (((-112)) 86)) (-3441 (((-1124) $) NIL)) (-3775 (((-112)) 93)) (-3875 (((-112)) 92)) (-4055 (((-112)) 94)) (-3988 (((-1086) $) NIL)) (-2924 (((-112)) 88)) (-3339 ((|#1| $ (-549)) 54)) (-1981 (((-1225 |#1|) $ (-1225 $)) 48) (((-665 |#1|) (-1225 $) (-1225 $)) NIL) (((-1225 |#1|) $) 28) (((-665 |#1|) (-1225 $)) NIL)) (-2843 (((-1225 |#1|) $) NIL) (($ (-1225 |#1|)) NIL)) (-3166 (((-621 (-923 |#1|)) (-1225 $)) NIL) (((-621 (-923 |#1|))) NIL)) (-3870 (($ $ $) NIL)) (-3083 (((-112)) 84)) (-3845 (((-834) $) 69) (($ (-1225 |#1|)) 22)) (-2619 (((-1225 $)) 45)) (-3445 (((-621 (-1225 |#1|))) NIL (|has| |#1| (-541)))) (-3515 (($ $ $ $) NIL)) (-3011 (((-112)) 82)) (-3593 (($ (-665 |#1|) $) 18)) (-3485 (($ $ $) NIL)) (-3338 (((-112)) 85)) (-2959 (((-112)) 83)) (-1379 (((-112)) 81)) (-3274 (($) NIL T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 76) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-1108 |#2| |#1|) $) 19)))
+(((-44 |#1| |#2| |#3| |#4|) (-13 (-410 |#1|) (-624 (-1108 |#2| |#1|)) (-10 -8 (-15 -3845 ($ (-1225 |#1|))))) (-356) (-892) (-621 (-1142)) (-1225 (-665 |#1|))) (T -44))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1225 *3)) (-4 *3 (-356)) (-14 *6 (-1225 (-665 *3))) (-5 *1 (-44 *3 *4 *5 *6)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))))))
+(-13 (-410 |#1|) (-624 (-1108 |#2| |#1|)) (-10 -8 (-15 -3845 ($ (-1225 |#1|)))))
+((-3832 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-4160 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-2837 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-1342 (($ $) NIL)) (-3732 (($) NIL) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3659 (((-1230) $ |#1| |#1|) NIL (|has| $ (-6 -4337))) (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-3327 (($ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2239 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL) (((-112) $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-2015 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4337))) (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823))))) (-3191 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL) (($ $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-2850 (((-112) $ (-747)) NIL)) (-2797 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (|has| $ (-6 -4337)))) (-3931 (($ $ $) 27 (|has| $ (-6 -4337)))) (-1806 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (|has| $ (-6 -4337)))) (-1368 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 29 (|has| $ (-6 -4337)))) (-2250 ((|#2| $ |#1| |#2|) 46) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-549) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-1192 (-549)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ "last" (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (|has| $ (-6 -4337))) (($ $ "rest" $) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ "first" (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ "value" (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) NIL (|has| $ (-6 -4337)))) (-3827 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL)) (-1488 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-2827 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-3489 (((-3 |#2| "failed") |#1| $) 37)) (-3034 (($) NIL T CONST)) (-2918 (($ $) NIL (|has| $ (-6 -4337)))) (-3062 (($ $) NIL)) (-3656 (($ $ (-747)) NIL) (($ $) 24)) (-3469 (($ $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-3546 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-3 |#2| "failed") |#1| $) 48) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL) (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (-3812 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-2556 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (|has| $ (-6 -4336))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (|has| $ (-6 -4336))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-1875 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-549) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (|has| $ (-6 -4337)))) (-1807 ((|#2| $ |#1|) NIL) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-549)) NIL)) (-2897 (((-112) $) NIL)) (-2881 (((-549) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL) (((-549) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))) (((-549) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-549)) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (-2987 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 18 (|has| $ (-6 -4336))) (((-621 |#2|) $) NIL (|has| $ (-6 -4336))) (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 18 (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) NIL)) (-3585 (((-112) $ $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (-3743 (($ (-747) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-2807 ((|#1| $) NIL (|has| |#1| (-823))) (((-549) $) 32 (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-3021 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-3050 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-3698 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-621 |#2|) $) NIL (|has| $ (-6 -4336))) (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066)))) (((-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-3063 ((|#1| $) NIL (|has| |#1| (-823))) (((-549) $) 34 (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-1864 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4337))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4337))) (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ $) NIL) (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL)) (-3521 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3590 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL)) (-3028 (((-112) $) NIL)) (-3441 (((-1124) $) 42 (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3828 (($ $ (-747)) NIL) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-3448 (((-621 |#1|) $) 20)) (-2130 (((-112) |#1| $) NIL)) (-2548 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-1799 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL) (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-2613 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-2296 (((-621 |#1|) $) NIL) (((-621 (-549)) $) NIL)) (-2284 (((-112) |#1| $) NIL) (((-112) (-549) $) NIL)) (-3988 (((-1086) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3645 ((|#2| $) NIL (|has| |#1| (-823))) (($ $ (-747)) NIL) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 23)) (-3959 (((-3 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) "failed") (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL) (((-3 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) "failed") (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL)) (-1943 (($ $ |#2|) NIL (|has| $ (-6 -4337))) (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (|has| $ (-6 -4337)))) (-3536 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-2791 (((-112) $) NIL)) (-3360 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066)))) (((-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-3347 (((-621 |#2|) $) NIL) (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 17)) (-2643 (((-112) $) 16)) (-3288 (($) 13)) (-3339 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-549) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ (-549)) NIL) (($ $ (-1192 (-549))) NIL) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ "last") NIL) (($ $ "rest") NIL) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ "first") NIL) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $ "value") NIL)) (-3541 (((-549) $ $) NIL)) (-3226 (($) 12) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-2149 (($ $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-2162 (($ $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-2917 (((-112) $) NIL)) (-2188 (($ $) NIL)) (-1829 (($ $) NIL (|has| $ (-6 -4337)))) (-3117 (((-747) $) NIL)) (-2528 (($ $) NIL)) (-3997 (((-747) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-747) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066)))) (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336))) (((-747) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-747) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-2049 (($ $ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-594 (-525))))) (-3853 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3859 (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL) (($ $ $) NIL)) (-1950 (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL) (($ (-621 $)) NIL) (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 25) (($ $ $) NIL)) (-3845 (((-834) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-593 (-834))) (|has| |#2| (-593 (-834)))))) (-2095 (((-621 $) $) NIL)) (-3605 (((-112) $ $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (-4213 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3836 (((-3 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) "failed") |#1| $) 44)) (-3025 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-2423 (((-112) $ $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-2387 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-2436 (((-112) $ $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-2409 (((-112) $ $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-823)))) (-3774 (((-747) $) 22 (|has| $ (-6 -4336)))))
+(((-45 |#1| |#2|) (-36 |#1| |#2|) (-1066) (-1066)) (T -45))
NIL
(-36 |#1| |#2|)
-((-2205 (((-112) $) 12)) (-2797 (($ (-1 |#2| |#2|) $) 21)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ (-400 (-549)) $) 25) (($ $ (-400 (-549))) NIL)))
-(((-46 |#1| |#2| |#3|) (-10 -8 (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 -2205 ((-112) |#1|)) (-15 -2797 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|))) (-47 |#2| |#3|) (-1018) (-768)) (T -46))
+((-2988 (((-112) $) 12)) (-2795 (($ (-1 |#2| |#2|) $) 21)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ (-400 (-549)) $) 25) (($ $ (-400 (-549))) NIL)))
+(((-46 |#1| |#2| |#3|) (-10 -8 (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 -2988 ((-112) |#1|)) (-15 -2795 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|))) (-47 |#2| |#3|) (-1018) (-768)) (T -46))
NIL
-(-10 -8 (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 -2205 ((-112) |#1|)) (-15 -2797 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-2258 (($ $) 50 (|has| |#1| (-541)))) (-2799 (((-112) $) 52 (|has| |#1| (-541)))) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2070 (($ $) 58)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-2205 (((-112) $) 60)) (-2246 (($ |#1| |#2|) 59)) (-2797 (($ (-1 |#1| |#1|) $) 61)) (-2028 (($ $) 63)) (-2043 ((|#1| $) 64)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-2042 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541)))) (-3701 ((|#2| $) 62)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 55 (|has| |#1| (-38 (-400 (-549))))) (($ $) 47 (|has| |#1| (-541))) (($ |#1|) 45 (|has| |#1| (-170)))) (-2152 ((|#1| $ |#2|) 57)) (-2210 (((-3 $ "failed") $) 46 (|has| |#1| (-143)))) (-2082 (((-747)) 28)) (-1498 (((-112) $ $) 51 (|has| |#1| (-541)))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2513 (($ $ |#1|) 56 (|has| |#1| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
+(-10 -8 (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 -2988 ((-112) |#1|)) (-15 -2795 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-3044 (($ $) 50 (|has| |#1| (-541)))) (-2774 (((-112) $) 52 (|has| |#1| (-541)))) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2068 (($ $) 58)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-2988 (((-112) $) 60)) (-2244 (($ |#1| |#2|) 59)) (-2795 (($ (-1 |#1| |#1|) $) 61)) (-2027 (($ $) 63)) (-2042 ((|#1| $) 64)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2040 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541)))) (-3977 ((|#2| $) 62)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 55 (|has| |#1| (-38 (-400 (-549))))) (($ $) 47 (|has| |#1| (-541))) (($ |#1|) 45 (|has| |#1| (-170)))) (-4068 ((|#1| $ |#2|) 57)) (-2343 (((-3 $ "failed") $) 46 (|has| |#1| (-143)))) (-2371 (((-747)) 28)) (-2441 (((-112) $ $) 51 (|has| |#1| (-541)))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2511 (($ $ |#1|) 56 (|has| |#1| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
(((-47 |#1| |#2|) (-138) (-1018) (-768)) (T -47))
-((-2043 (*1 *2 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018)))) (-2028 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768)))) (-3701 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))) (-2797 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-47 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)))) (-2205 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)) (-5 *2 (-112)))) (-2246 (*1 *1 *2 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768)))) (-2070 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768)))) (-2152 (*1 *2 *1 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018)))) (-2513 (*1 *1 *1 *2) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768)) (-4 *2 (-356)))))
-(-13 (-1018) (-111 |t#1| |t#1|) (-10 -8 (-15 -2043 (|t#1| $)) (-15 -2028 ($ $)) (-15 -3701 (|t#2| $)) (-15 -2797 ($ (-1 |t#1| |t#1|) $)) (-15 -2205 ((-112) $)) (-15 -2246 ($ |t#1| |t#2|)) (-15 -2070 ($ $)) (-15 -2152 (|t#1| $ |t#2|)) (IF (|has| |t#1| (-356)) (-15 -2513 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-170)) (PROGN (-6 (-170)) (-6 (-38 |t#1|))) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |t#1| (-541)) (-6 (-541)) |%noBranch|) (IF (|has| |t#1| (-38 (-400 (-549)))) (-6 (-38 (-400 (-549)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) |has| |#1| (-541)) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-283) |has| |#1| (-541)) ((-541) |has| |#1| (-541)) ((-624 #0#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #0#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) |has| |#1| (-541)) ((-703) . T) ((-1024 #0#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-1329 (((-621 $) (-1139 $) (-1143)) NIL) (((-621 $) (-1139 $)) NIL) (((-621 $) (-923 $)) NIL)) (-3289 (($ (-1139 $) (-1143)) NIL) (($ (-1139 $)) NIL) (($ (-923 $)) NIL)) (-1763 (((-112) $) 11)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-1981 (((-621 (-592 $)) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3015 (($ $ (-287 $)) NIL) (($ $ (-621 (-287 $))) NIL) (($ $ (-621 (-592 $)) (-621 $)) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-2134 (($ $) NIL)) (-3866 (((-112) $ $) NIL)) (-1682 (($) NIL T CONST)) (-1815 (((-621 $) (-1139 $) (-1143)) NIL) (((-621 $) (-1139 $)) NIL) (((-621 $) (-923 $)) NIL)) (-1947 (($ (-1139 $) (-1143)) NIL) (($ (-1139 $)) NIL) (($ (-923 $)) NIL)) (-2714 (((-3 (-592 $) "failed") $) NIL) (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL)) (-2659 (((-592 $) $) NIL) (((-549) $) NIL) (((-400 (-549)) $) NIL)) (-2095 (($ $ $) NIL)) (-3879 (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL) (((-665 (-549)) (-665 $)) NIL) (((-2 (|:| -3521 (-665 (-400 (-549)))) (|:| |vec| (-1226 (-400 (-549))))) (-665 $) (-1226 $)) NIL) (((-665 (-400 (-549))) (-665 $)) NIL)) (-2557 (($ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-3225 (($ $) NIL) (($ (-621 $)) NIL)) (-2162 (((-621 (-114)) $) NIL)) (-2834 (((-114) (-114)) NIL)) (-2675 (((-112) $) 14)) (-3559 (((-112) $) NIL (|has| $ (-1009 (-549))))) (-1394 (((-1092 (-549) (-592 $)) $) NIL)) (-4187 (($ $ (-549)) NIL)) (-3630 (((-1139 $) (-1139 $) (-592 $)) NIL) (((-1139 $) (-1139 $) (-621 (-592 $))) NIL) (($ $ (-592 $)) NIL) (($ $ (-621 (-592 $))) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1549 (((-1139 $) (-592 $)) NIL (|has| $ (-1018)))) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-2797 (($ (-1 $ $) (-592 $)) NIL)) (-2634 (((-3 (-592 $) "failed") $) NIL)) (-3697 (($ (-621 $)) NIL) (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-2071 (((-621 (-592 $)) $) NIL)) (-1476 (($ (-114) $) NIL) (($ (-114) (-621 $)) NIL)) (-3421 (((-112) $ (-114)) NIL) (((-112) $ (-1143)) NIL)) (-1992 (($ $) NIL)) (-4036 (((-747) $) NIL)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ (-621 $)) NIL) (($ $ $) NIL)) (-2979 (((-112) $ $) NIL) (((-112) $ (-1143)) NIL)) (-2121 (((-411 $) $) NIL)) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3450 (((-112) $) NIL (|has| $ (-1009 (-549))))) (-2686 (($ $ (-592 $) $) NIL) (($ $ (-621 (-592 $)) (-621 $)) NIL) (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-621 (-1143)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-1143)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-1143) (-1 $ (-621 $))) NIL) (($ $ (-1143) (-1 $ $)) NIL) (($ $ (-621 (-114)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-114) (-1 $ (-621 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-3684 (((-747) $) NIL)) (-3341 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-621 $)) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3433 (($ $) NIL) (($ $ $) NIL)) (-3456 (($ $ (-747)) NIL) (($ $) NIL)) (-1403 (((-1092 (-549) (-592 $)) $) NIL)) (-2815 (($ $) NIL (|has| $ (-1018)))) (-2845 (((-372) $) NIL) (((-219) $) NIL) (((-167 (-372)) $) NIL)) (-3846 (((-834) $) NIL) (($ (-592 $)) NIL) (($ (-400 (-549))) NIL) (($ $) NIL) (($ (-549)) NIL) (($ (-1092 (-549) (-592 $))) NIL)) (-2082 (((-747)) NIL)) (-4137 (($ $) NIL) (($ (-621 $)) NIL)) (-4285 (((-112) (-114)) NIL)) (-1498 (((-112) $ $) NIL)) (-3276 (($) 7 T CONST)) (-3287 (($) 12 T CONST)) (-1702 (($ $ (-747)) NIL) (($ $) NIL)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 16)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) NIL)) (-2513 (($ $ $) NIL)) (-2500 (($ $ $) 15) (($ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-400 (-549))) NIL) (($ $ (-549)) NIL) (($ $ (-747)) NIL) (($ $ (-892)) NIL)) (* (($ (-400 (-549)) $) NIL) (($ $ (-400 (-549))) NIL) (($ $ $) NIL) (($ (-549) $) NIL) (($ (-747) $) NIL) (($ (-892) $) NIL)))
-(((-48) (-13 (-295) (-27) (-1009 (-549)) (-1009 (-400 (-549))) (-617 (-549)) (-993) (-617 (-400 (-549))) (-145) (-594 (-167 (-372))) (-227) (-10 -8 (-15 -3846 ($ (-1092 (-549) (-592 $)))) (-15 -1394 ((-1092 (-549) (-592 $)) $)) (-15 -1403 ((-1092 (-549) (-592 $)) $)) (-15 -2557 ($ $)) (-15 -3630 ((-1139 $) (-1139 $) (-592 $))) (-15 -3630 ((-1139 $) (-1139 $) (-621 (-592 $)))) (-15 -3630 ($ $ (-592 $))) (-15 -3630 ($ $ (-621 (-592 $))))))) (T -48))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1092 (-549) (-592 (-48)))) (-5 *1 (-48)))) (-1394 (*1 *2 *1) (-12 (-5 *2 (-1092 (-549) (-592 (-48)))) (-5 *1 (-48)))) (-1403 (*1 *2 *1) (-12 (-5 *2 (-1092 (-549) (-592 (-48)))) (-5 *1 (-48)))) (-2557 (*1 *1 *1) (-5 *1 (-48))) (-3630 (*1 *2 *2 *3) (-12 (-5 *2 (-1139 (-48))) (-5 *3 (-592 (-48))) (-5 *1 (-48)))) (-3630 (*1 *2 *2 *3) (-12 (-5 *2 (-1139 (-48))) (-5 *3 (-621 (-592 (-48)))) (-5 *1 (-48)))) (-3630 (*1 *1 *1 *2) (-12 (-5 *2 (-592 (-48))) (-5 *1 (-48)))) (-3630 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-592 (-48)))) (-5 *1 (-48)))))
-(-13 (-295) (-27) (-1009 (-549)) (-1009 (-400 (-549))) (-617 (-549)) (-993) (-617 (-400 (-549))) (-145) (-594 (-167 (-372))) (-227) (-10 -8 (-15 -3846 ($ (-1092 (-549) (-592 $)))) (-15 -1394 ((-1092 (-549) (-592 $)) $)) (-15 -1403 ((-1092 (-549) (-592 $)) $)) (-15 -2557 ($ $)) (-15 -3630 ((-1139 $) (-1139 $) (-592 $))) (-15 -3630 ((-1139 $) (-1139 $) (-621 (-592 $)))) (-15 -3630 ($ $ (-592 $))) (-15 -3630 ($ $ (-621 (-592 $))))))
-((-3834 (((-112) $ $) NIL)) (-2904 (((-621 (-1143)) $) 17)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 7)) (-2492 (((-1148) $) 18)) (-2389 (((-112) $ $) NIL)))
-(((-49) (-13 (-1067) (-10 -8 (-15 -2904 ((-621 (-1143)) $)) (-15 -2492 ((-1148) $))))) (T -49))
-((-2904 (*1 *2 *1) (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-49)))) (-2492 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-49)))))
-(-13 (-1067) (-10 -8 (-15 -2904 ((-621 (-1143)) $)) (-15 -2492 ((-1148) $))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 61)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-4304 (((-112) $) 20)) (-2714 (((-3 |#1| "failed") $) 23)) (-2659 ((|#1| $) 24)) (-2070 (($ $) 28)) (-2114 (((-3 $ "failed") $) NIL)) (-2675 (((-112) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-2043 ((|#1| $) 21)) (-2928 (($ $) 50)) (-3851 (((-1125) $) NIL)) (-2156 (((-112) $) 30)) (-3990 (((-1087) $) NIL)) (-4248 (($ (-747)) 48)) (-2719 (($ (-621 (-549))) 49)) (-3701 (((-747) $) 31)) (-3846 (((-834) $) 64) (($ (-549)) 45) (($ |#1|) 43)) (-2152 ((|#1| $ $) 19)) (-2082 (((-747)) 47)) (-3276 (($) 32 T CONST)) (-3287 (($) 14 T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) 40)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 41) (($ |#1| $) 35)))
-(((-50 |#1| |#2|) (-13 (-598 |#1|) (-1009 |#1|) (-10 -8 (-15 -2043 (|#1| $)) (-15 -2928 ($ $)) (-15 -2070 ($ $)) (-15 -2152 (|#1| $ $)) (-15 -4248 ($ (-747))) (-15 -2719 ($ (-621 (-549)))) (-15 -2156 ((-112) $)) (-15 -4304 ((-112) $)) (-15 -3701 ((-747) $)) (-15 -2797 ($ (-1 |#1| |#1|) $)))) (-1018) (-621 (-1143))) (T -50))
-((-2043 (*1 *2 *1) (-12 (-4 *2 (-1018)) (-5 *1 (-50 *2 *3)) (-14 *3 (-621 (-1143))))) (-2928 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1018)) (-14 *3 (-621 (-1143))))) (-2070 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1018)) (-14 *3 (-621 (-1143))))) (-2152 (*1 *2 *1 *1) (-12 (-4 *2 (-1018)) (-5 *1 (-50 *2 *3)) (-14 *3 (-621 (-1143))))) (-4248 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018)) (-14 *4 (-621 (-1143))))) (-2719 (*1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018)) (-14 *4 (-621 (-1143))))) (-2156 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018)) (-14 *4 (-621 (-1143))))) (-4304 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018)) (-14 *4 (-621 (-1143))))) (-3701 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018)) (-14 *4 (-621 (-1143))))) (-2797 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-50 *3 *4)) (-14 *4 (-621 (-1143))))))
-(-13 (-598 |#1|) (-1009 |#1|) (-10 -8 (-15 -2043 (|#1| $)) (-15 -2928 ($ $)) (-15 -2070 ($ $)) (-15 -2152 (|#1| $ $)) (-15 -4248 ($ (-747))) (-15 -2719 ($ (-621 (-549)))) (-15 -2156 ((-112) $)) (-15 -4304 ((-112) $)) (-15 -3701 ((-747) $)) (-15 -2797 ($ (-1 |#1| |#1|) $))))
-((-4304 (((-112) (-52)) 13)) (-2714 (((-3 |#1| "failed") (-52)) 21)) (-2659 ((|#1| (-52)) 22)) (-3846 (((-52) |#1|) 18)))
-(((-51 |#1|) (-10 -7 (-15 -3846 ((-52) |#1|)) (-15 -2714 ((-3 |#1| "failed") (-52))) (-15 -4304 ((-112) (-52))) (-15 -2659 (|#1| (-52)))) (-1180)) (T -51))
-((-2659 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1180)))) (-4304 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1180)))) (-2714 (*1 *2 *3) (|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1180)))) (-3846 (*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1180)))))
-(-10 -7 (-15 -3846 ((-52) |#1|)) (-15 -2714 ((-3 |#1| "failed") (-52))) (-15 -4304 ((-112) (-52))) (-15 -2659 (|#1| (-52))))
-((-3834 (((-112) $ $) NIL)) (-4167 (((-1125) (-112)) 25)) (-2947 (((-834) $) 24)) (-1270 (((-750) $) 12)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3822 (((-834) $) 16)) (-1529 (((-1071) $) 14)) (-3846 (((-834) $) 32)) (-3376 (($ (-1071) (-750)) 33)) (-2389 (((-112) $ $) 18)))
-(((-52) (-13 (-1067) (-10 -8 (-15 -3376 ($ (-1071) (-750))) (-15 -3822 ((-834) $)) (-15 -2947 ((-834) $)) (-15 -1529 ((-1071) $)) (-15 -1270 ((-750) $)) (-15 -4167 ((-1125) (-112)))))) (T -52))
-((-3376 (*1 *1 *2 *3) (-12 (-5 *2 (-1071)) (-5 *3 (-750)) (-5 *1 (-52)))) (-3822 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-52)))) (-2947 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-52)))) (-1529 (*1 *2 *1) (-12 (-5 *2 (-1071)) (-5 *1 (-52)))) (-1270 (*1 *2 *1) (-12 (-5 *2 (-750)) (-5 *1 (-52)))) (-4167 (*1 *2 *3) (-12 (-5 *3 (-112)) (-5 *2 (-1125)) (-5 *1 (-52)))))
-(-13 (-1067) (-10 -8 (-15 -3376 ($ (-1071) (-750))) (-15 -3822 ((-834) $)) (-15 -2947 ((-834) $)) (-15 -1529 ((-1071) $)) (-15 -1270 ((-750) $)) (-15 -4167 ((-1125) (-112)))))
-((-3596 ((|#2| |#3| (-1 |#2| |#2|) |#2|) 16)))
-(((-53 |#1| |#2| |#3|) (-10 -7 (-15 -3596 (|#2| |#3| (-1 |#2| |#2|) |#2|))) (-1018) (-624 |#1|) (-825 |#1|)) (T -53))
-((-3596 (*1 *2 *3 *4 *2) (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-624 *5)) (-4 *5 (-1018)) (-5 *1 (-53 *5 *2 *3)) (-4 *3 (-825 *5)))))
-(-10 -7 (-15 -3596 (|#2| |#3| (-1 |#2| |#2|) |#2|)))
-((-3163 ((|#3| |#3| (-621 (-1143))) 35)) (-1817 ((|#3| (-621 (-1042 |#1| |#2| |#3|)) |#3| (-892)) 22) ((|#3| (-621 (-1042 |#1| |#2| |#3|)) |#3|) 20)))
-(((-54 |#1| |#2| |#3|) (-10 -7 (-15 -1817 (|#3| (-621 (-1042 |#1| |#2| |#3|)) |#3|)) (-15 -1817 (|#3| (-621 (-1042 |#1| |#2| |#3|)) |#3| (-892))) (-15 -3163 (|#3| |#3| (-621 (-1143))))) (-1067) (-13 (-1018) (-857 |#1|) (-823) (-594 (-863 |#1|))) (-13 (-423 |#2|) (-857 |#1|) (-594 (-863 |#1|)))) (T -54))
-((-3163 (*1 *2 *2 *3) (-12 (-5 *3 (-621 (-1143))) (-4 *4 (-1067)) (-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4)))) (-5 *1 (-54 *4 *5 *2)) (-4 *2 (-13 (-423 *5) (-857 *4) (-594 (-863 *4)))))) (-1817 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-621 (-1042 *5 *6 *2))) (-5 *4 (-892)) (-4 *5 (-1067)) (-4 *6 (-13 (-1018) (-857 *5) (-823) (-594 (-863 *5)))) (-4 *2 (-13 (-423 *6) (-857 *5) (-594 (-863 *5)))) (-5 *1 (-54 *5 *6 *2)))) (-1817 (*1 *2 *3 *2) (-12 (-5 *3 (-621 (-1042 *4 *5 *2))) (-4 *4 (-1067)) (-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4)))) (-4 *2 (-13 (-423 *5) (-857 *4) (-594 (-863 *4)))) (-5 *1 (-54 *4 *5 *2)))))
-(-10 -7 (-15 -1817 (|#3| (-621 (-1042 |#1| |#2| |#3|)) |#3|)) (-15 -1817 (|#3| (-621 (-1042 |#1| |#2| |#3|)) |#3| (-892))) (-15 -3163 (|#3| |#3| (-621 (-1143)))))
-((-1584 (((-112) $ (-747)) 23)) (-3537 (($ $ (-549) |#3|) 46)) (-3815 (($ $ (-549) |#4|) 50)) (-4060 ((|#3| $ (-549)) 59)) (-2989 (((-621 |#2|) $) 30)) (-3194 (((-112) $ (-747)) 25)) (-2090 (((-112) |#2| $) 54)) (-1868 (($ (-1 |#2| |#2|) $) 37)) (-2797 (($ (-1 |#2| |#2|) $) 36) (($ (-1 |#2| |#2| |#2|) $ $) 40) (($ (-1 |#2| |#2| |#2|) $ $ |#2|) 42)) (-1508 (((-112) $ (-747)) 24)) (-1642 (($ $ |#2|) 34)) (-1780 (((-112) (-1 (-112) |#2|) $) 19)) (-3341 ((|#2| $ (-549) (-549)) NIL) ((|#2| $ (-549) (-549) |#2|) 27)) (-4000 (((-747) (-1 (-112) |#2|) $) 28) (((-747) |#2| $) 56)) (-2281 (($ $) 33)) (-2851 ((|#4| $ (-549)) 62)) (-3846 (((-834) $) 68)) (-3527 (((-112) (-1 (-112) |#2|) $) 18)) (-2389 (((-112) $ $) 53)) (-3775 (((-747) $) 26)))
-(((-55 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3846 ((-834) |#1|)) (-15 -2797 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -2797 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1868 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3815 (|#1| |#1| (-549) |#4|)) (-15 -3537 (|#1| |#1| (-549) |#3|)) (-15 -2989 ((-621 |#2|) |#1|)) (-15 -2851 (|#4| |#1| (-549))) (-15 -4060 (|#3| |#1| (-549))) (-15 -3341 (|#2| |#1| (-549) (-549) |#2|)) (-15 -3341 (|#2| |#1| (-549) (-549))) (-15 -1642 (|#1| |#1| |#2|)) (-15 -2389 ((-112) |#1| |#1|)) (-15 -2090 ((-112) |#2| |#1|)) (-15 -4000 ((-747) |#2| |#1|)) (-15 -4000 ((-747) (-1 (-112) |#2|) |#1|)) (-15 -1780 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3527 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2797 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3775 ((-747) |#1|)) (-15 -1584 ((-112) |#1| (-747))) (-15 -3194 ((-112) |#1| (-747))) (-15 -1508 ((-112) |#1| (-747))) (-15 -2281 (|#1| |#1|))) (-56 |#2| |#3| |#4|) (-1180) (-366 |#2|) (-366 |#2|)) (T -55))
-NIL
-(-10 -8 (-15 -3846 ((-834) |#1|)) (-15 -2797 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -2797 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1868 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3815 (|#1| |#1| (-549) |#4|)) (-15 -3537 (|#1| |#1| (-549) |#3|)) (-15 -2989 ((-621 |#2|) |#1|)) (-15 -2851 (|#4| |#1| (-549))) (-15 -4060 (|#3| |#1| (-549))) (-15 -3341 (|#2| |#1| (-549) (-549) |#2|)) (-15 -3341 (|#2| |#1| (-549) (-549))) (-15 -1642 (|#1| |#1| |#2|)) (-15 -2389 ((-112) |#1| |#1|)) (-15 -2090 ((-112) |#2| |#1|)) (-15 -4000 ((-747) |#2| |#1|)) (-15 -4000 ((-747) (-1 (-112) |#2|) |#1|)) (-15 -1780 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3527 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2797 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3775 ((-747) |#1|)) (-15 -1584 ((-112) |#1| (-747))) (-15 -3194 ((-112) |#1| (-747))) (-15 -1508 ((-112) |#1| (-747))) (-15 -2281 (|#1| |#1|)))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-1584 (((-112) $ (-747)) 8)) (-2254 ((|#1| $ (-549) (-549) |#1|) 44)) (-3537 (($ $ (-549) |#2|) 42)) (-3815 (($ $ (-549) |#3|) 41)) (-1682 (($) 7 T CONST)) (-4060 ((|#2| $ (-549)) 46)) (-1879 ((|#1| $ (-549) (-549) |#1|) 43)) (-1809 ((|#1| $ (-549) (-549)) 48)) (-2989 (((-621 |#1|) $) 30)) (-2142 (((-747) $) 51)) (-3743 (($ (-747) (-747) |#1|) 57)) (-2155 (((-747) $) 50)) (-3194 (((-112) $ (-747)) 9)) (-1761 (((-549) $) 55)) (-2703 (((-549) $) 53)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1661 (((-549) $) 54)) (-1887 (((-549) $) 52)) (-1868 (($ (-1 |#1| |#1|) $) 34)) (-2797 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-1642 (($ $ |#1|) 56)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#1| $ (-549) (-549)) 49) ((|#1| $ (-549) (-549) |#1|) 47)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-2851 ((|#3| $ (-549)) 45)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-56 |#1| |#2| |#3|) (-138) (-1180) (-366 |t#1|) (-366 |t#1|)) (T -56))
-((-2797 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-3743 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-747)) (-4 *3 (-1180)) (-4 *1 (-56 *3 *4 *5)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-1642 (*1 *1 *1 *2) (-12 (-4 *1 (-56 *2 *3 *4)) (-4 *2 (-1180)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (-1761 (*1 *2 *1) (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-549)))) (-1661 (*1 *2 *1) (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-549)))) (-2703 (*1 *2 *1) (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-549)))) (-1887 (*1 *2 *1) (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-549)))) (-2142 (*1 *2 *1) (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-747)))) (-2155 (*1 *2 *1) (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-747)))) (-3341 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *4 (-366 *2)) (-4 *5 (-366 *2)) (-4 *2 (-1180)))) (-1809 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *4 (-366 *2)) (-4 *5 (-366 *2)) (-4 *2 (-1180)))) (-3341 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *2 (-1180)) (-4 *4 (-366 *2)) (-4 *5 (-366 *2)))) (-4060 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-56 *4 *2 *5)) (-4 *4 (-1180)) (-4 *5 (-366 *4)) (-4 *2 (-366 *4)))) (-2851 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-56 *4 *5 *2)) (-4 *4 (-1180)) (-4 *5 (-366 *4)) (-4 *2 (-366 *4)))) (-2989 (*1 *2 *1) (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-621 *3)))) (-2254 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *2 (-1180)) (-4 *4 (-366 *2)) (-4 *5 (-366 *2)))) (-1879 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *2 (-1180)) (-4 *4 (-366 *2)) (-4 *5 (-366 *2)))) (-3537 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-549)) (-4 *1 (-56 *4 *3 *5)) (-4 *4 (-1180)) (-4 *3 (-366 *4)) (-4 *5 (-366 *4)))) (-3815 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-549)) (-4 *1 (-56 *4 *5 *3)) (-4 *4 (-1180)) (-4 *5 (-366 *4)) (-4 *3 (-366 *4)))) (-1868 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2797 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2797 (*1 *1 *2 *1 *1 *3) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))))
-(-13 (-481 |t#1|) (-10 -8 (-6 -4338) (-6 -4337) (-15 -3743 ($ (-747) (-747) |t#1|)) (-15 -1642 ($ $ |t#1|)) (-15 -1761 ((-549) $)) (-15 -1661 ((-549) $)) (-15 -2703 ((-549) $)) (-15 -1887 ((-549) $)) (-15 -2142 ((-747) $)) (-15 -2155 ((-747) $)) (-15 -3341 (|t#1| $ (-549) (-549))) (-15 -1809 (|t#1| $ (-549) (-549))) (-15 -3341 (|t#1| $ (-549) (-549) |t#1|)) (-15 -4060 (|t#2| $ (-549))) (-15 -2851 (|t#3| $ (-549))) (-15 -2989 ((-621 |t#1|) $)) (-15 -2254 (|t#1| $ (-549) (-549) |t#1|)) (-15 -1879 (|t#1| $ (-549) (-549) |t#1|)) (-15 -3537 ($ $ (-549) |t#2|)) (-15 -3815 ($ $ (-549) |t#3|)) (-15 -2797 ($ (-1 |t#1| |t#1|) $)) (-15 -1868 ($ (-1 |t#1| |t#1|) $)) (-15 -2797 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -2797 ($ (-1 |t#1| |t#1| |t#1|) $ $ |t#1|))))
-(((-34) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-1067) |has| |#1| (-1067)) ((-1180) . T))
-((-3804 (((-58 |#2|) (-1 |#2| |#1| |#2|) (-58 |#1|) |#2|) 16)) (-2557 ((|#2| (-1 |#2| |#1| |#2|) (-58 |#1|) |#2|) 18)) (-2797 (((-58 |#2|) (-1 |#2| |#1|) (-58 |#1|)) 13)))
-(((-57 |#1| |#2|) (-10 -7 (-15 -3804 ((-58 |#2|) (-1 |#2| |#1| |#2|) (-58 |#1|) |#2|)) (-15 -2557 (|#2| (-1 |#2| |#1| |#2|) (-58 |#1|) |#2|)) (-15 -2797 ((-58 |#2|) (-1 |#2| |#1|) (-58 |#1|)))) (-1180) (-1180)) (T -57))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-58 *5)) (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-58 *6)) (-5 *1 (-57 *5 *6)))) (-2557 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-58 *5)) (-4 *5 (-1180)) (-4 *2 (-1180)) (-5 *1 (-57 *5 *2)))) (-3804 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-58 *6)) (-4 *6 (-1180)) (-4 *5 (-1180)) (-5 *2 (-58 *5)) (-5 *1 (-57 *6 *5)))))
-(-10 -7 (-15 -3804 ((-58 |#2|) (-1 |#2| |#1| |#2|) (-58 |#1|) |#2|)) (-15 -2557 (|#2| (-1 |#2| |#1| |#2|) (-58 |#1|) |#2|)) (-15 -2797 ((-58 |#2|) (-1 |#2| |#1|) (-58 |#1|))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-4142 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-823)))) (-4311 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4338))) (($ $) NIL (-12 (|has| $ (-6 -4338)) (|has| |#1| (-823))))) (-3193 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-823)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 ((|#1| $ (-549) |#1|) 11 (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) NIL (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-1585 (($ $) NIL (|has| $ (-6 -4338)))) (-3064 (($ $) NIL)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-1879 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) NIL)) (-2883 (((-549) (-1 (-112) |#1|) $) NIL) (((-549) |#1| $) NIL (|has| |#1| (-1067))) (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1067)))) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3891 (($ (-621 |#1|)) 13) (($ (-747) |#1|) 14)) (-3743 (($ (-747) |#1|) 9)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) NIL (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3890 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-823)))) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-2616 (($ |#1| $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-3646 ((|#1| $) NIL (|has| (-549) (-823)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1642 (($ $ |#1|) NIL (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) 7)) (-3341 ((|#1| $ (-549) |#1|) NIL) ((|#1| $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-2167 (($ $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2730 (($ $ $ (-549)) NIL (|has| $ (-6 -4338)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) NIL)) (-1952 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-58 |#1|) (-13 (-19 |#1|) (-10 -8 (-15 -3891 ($ (-621 |#1|))) (-15 -3891 ($ (-747) |#1|)))) (-1180)) (T -58))
-((-3891 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-5 *1 (-58 *3)))) (-3891 (*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *1 (-58 *3)) (-4 *3 (-1180)))))
-(-13 (-19 |#1|) (-10 -8 (-15 -3891 ($ (-621 |#1|))) (-15 -3891 ($ (-747) |#1|))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 ((|#1| $ (-549) (-549) |#1|) NIL)) (-3537 (($ $ (-549) (-58 |#1|)) NIL)) (-3815 (($ $ (-549) (-58 |#1|)) NIL)) (-1682 (($) NIL T CONST)) (-4060 (((-58 |#1|) $ (-549)) NIL)) (-1879 ((|#1| $ (-549) (-549) |#1|) NIL)) (-1809 ((|#1| $ (-549) (-549)) NIL)) (-2989 (((-621 |#1|) $) NIL)) (-2142 (((-747) $) NIL)) (-3743 (($ (-747) (-747) |#1|) NIL)) (-2155 (((-747) $) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-1761 (((-549) $) NIL)) (-2703 (((-549) $) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1661 (((-549) $) NIL)) (-1887 (((-549) $) NIL)) (-1868 (($ (-1 |#1| |#1|) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1642 (($ $ |#1|) NIL)) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#1| $ (-549) (-549)) NIL) ((|#1| $ (-549) (-549) |#1|) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) NIL)) (-2851 (((-58 |#1|) $ (-549)) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-59 |#1|) (-13 (-56 |#1| (-58 |#1|) (-58 |#1|)) (-10 -7 (-6 -4338))) (-1180)) (T -59))
-NIL
-(-13 (-56 |#1| (-58 |#1|) (-58 |#1|)) (-10 -7 (-6 -4338)))
-((-2714 (((-3 $ "failed") (-1226 (-309 (-372)))) 74) (((-3 $ "failed") (-1226 (-309 (-549)))) 63) (((-3 $ "failed") (-1226 (-923 (-372)))) 94) (((-3 $ "failed") (-1226 (-923 (-549)))) 84) (((-3 $ "failed") (-1226 (-400 (-923 (-372))))) 52) (((-3 $ "failed") (-1226 (-400 (-923 (-549))))) 39)) (-2659 (($ (-1226 (-309 (-372)))) 70) (($ (-1226 (-309 (-549)))) 59) (($ (-1226 (-923 (-372)))) 90) (($ (-1226 (-923 (-549)))) 80) (($ (-1226 (-400 (-923 (-372))))) 48) (($ (-1226 (-400 (-923 (-549))))) 32)) (-3316 (((-1231) $) 120)) (-3846 (((-834) $) 113) (($ (-621 (-323))) 103) (($ (-323)) 97) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 101) (($ (-1226 (-332 (-3854 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3854) (-675)))) 31)))
-(((-60 |#1|) (-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3854) (-675))))))) (-1143)) (T -60))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1226 (-332 (-3854 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3854) (-675)))) (-5 *1 (-60 *3)) (-14 *3 (-1143)))))
-(-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3854) (-675)))))))
-((-3316 (((-1231) $) 53) (((-1231)) 54)) (-3846 (((-834) $) 50)))
-(((-61 |#1|) (-13 (-388) (-10 -7 (-15 -3316 ((-1231))))) (-1143)) (T -61))
-((-3316 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-61 *3)) (-14 *3 (-1143)))))
-(-13 (-388) (-10 -7 (-15 -3316 ((-1231)))))
-((-2714 (((-3 $ "failed") (-1226 (-309 (-372)))) 144) (((-3 $ "failed") (-1226 (-309 (-549)))) 134) (((-3 $ "failed") (-1226 (-923 (-372)))) 164) (((-3 $ "failed") (-1226 (-923 (-549)))) 154) (((-3 $ "failed") (-1226 (-400 (-923 (-372))))) 123) (((-3 $ "failed") (-1226 (-400 (-923 (-549))))) 111)) (-2659 (($ (-1226 (-309 (-372)))) 140) (($ (-1226 (-309 (-549)))) 130) (($ (-1226 (-923 (-372)))) 160) (($ (-1226 (-923 (-549)))) 150) (($ (-1226 (-400 (-923 (-372))))) 119) (($ (-1226 (-400 (-923 (-549))))) 104)) (-3316 (((-1231) $) 97)) (-3846 (((-834) $) 91) (($ (-621 (-323))) 29) (($ (-323)) 34) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 32) (($ (-1226 (-332 (-3854) (-3854 (QUOTE XC)) (-675)))) 89)))
-(((-62 |#1|) (-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854) (-3854 (QUOTE XC)) (-675))))))) (-1143)) (T -62))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1226 (-332 (-3854) (-3854 (QUOTE XC)) (-675)))) (-5 *1 (-62 *3)) (-14 *3 (-1143)))))
-(-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854) (-3854 (QUOTE XC)) (-675)))))))
-((-2714 (((-3 $ "failed") (-309 (-372))) 41) (((-3 $ "failed") (-309 (-549))) 46) (((-3 $ "failed") (-923 (-372))) 50) (((-3 $ "failed") (-923 (-549))) 54) (((-3 $ "failed") (-400 (-923 (-372)))) 36) (((-3 $ "failed") (-400 (-923 (-549)))) 29)) (-2659 (($ (-309 (-372))) 39) (($ (-309 (-549))) 44) (($ (-923 (-372))) 48) (($ (-923 (-549))) 52) (($ (-400 (-923 (-372)))) 34) (($ (-400 (-923 (-549)))) 26)) (-3316 (((-1231) $) 76)) (-3846 (((-834) $) 69) (($ (-621 (-323))) 61) (($ (-323)) 66) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 64) (($ (-332 (-3854 (QUOTE X)) (-3854) (-675))) 25)))
-(((-63 |#1|) (-13 (-389) (-10 -8 (-15 -3846 ($ (-332 (-3854 (QUOTE X)) (-3854) (-675)))))) (-1143)) (T -63))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-332 (-3854 (QUOTE X)) (-3854) (-675))) (-5 *1 (-63 *3)) (-14 *3 (-1143)))))
-(-13 (-389) (-10 -8 (-15 -3846 ($ (-332 (-3854 (QUOTE X)) (-3854) (-675))))))
-((-2714 (((-3 $ "failed") (-665 (-309 (-372)))) 109) (((-3 $ "failed") (-665 (-309 (-549)))) 97) (((-3 $ "failed") (-665 (-923 (-372)))) 131) (((-3 $ "failed") (-665 (-923 (-549)))) 120) (((-3 $ "failed") (-665 (-400 (-923 (-372))))) 85) (((-3 $ "failed") (-665 (-400 (-923 (-549))))) 71)) (-2659 (($ (-665 (-309 (-372)))) 105) (($ (-665 (-309 (-549)))) 93) (($ (-665 (-923 (-372)))) 127) (($ (-665 (-923 (-549)))) 116) (($ (-665 (-400 (-923 (-372))))) 81) (($ (-665 (-400 (-923 (-549))))) 64)) (-3316 (((-1231) $) 139)) (-3846 (((-834) $) 133) (($ (-621 (-323))) 28) (($ (-323)) 33) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 31) (($ (-665 (-332 (-3854) (-3854 (QUOTE X) (QUOTE HESS)) (-675)))) 54)))
-(((-64 |#1|) (-13 (-377) (-10 -8 (-15 -3846 ($ (-665 (-332 (-3854) (-3854 (QUOTE X) (QUOTE HESS)) (-675))))))) (-1143)) (T -64))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-665 (-332 (-3854) (-3854 (QUOTE X) (QUOTE HESS)) (-675)))) (-5 *1 (-64 *3)) (-14 *3 (-1143)))))
-(-13 (-377) (-10 -8 (-15 -3846 ($ (-665 (-332 (-3854) (-3854 (QUOTE X) (QUOTE HESS)) (-675)))))))
-((-2714 (((-3 $ "failed") (-309 (-372))) 59) (((-3 $ "failed") (-309 (-549))) 64) (((-3 $ "failed") (-923 (-372))) 68) (((-3 $ "failed") (-923 (-549))) 72) (((-3 $ "failed") (-400 (-923 (-372)))) 54) (((-3 $ "failed") (-400 (-923 (-549)))) 47)) (-2659 (($ (-309 (-372))) 57) (($ (-309 (-549))) 62) (($ (-923 (-372))) 66) (($ (-923 (-549))) 70) (($ (-400 (-923 (-372)))) 52) (($ (-400 (-923 (-549)))) 44)) (-3316 (((-1231) $) 81)) (-3846 (((-834) $) 75) (($ (-621 (-323))) 28) (($ (-323)) 33) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 31) (($ (-332 (-3854) (-3854 (QUOTE XC)) (-675))) 39)))
-(((-65 |#1|) (-13 (-389) (-10 -8 (-15 -3846 ($ (-332 (-3854) (-3854 (QUOTE XC)) (-675)))))) (-1143)) (T -65))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-332 (-3854) (-3854 (QUOTE XC)) (-675))) (-5 *1 (-65 *3)) (-14 *3 (-1143)))))
-(-13 (-389) (-10 -8 (-15 -3846 ($ (-332 (-3854) (-3854 (QUOTE XC)) (-675))))))
-((-3316 (((-1231) $) 63)) (-3846 (((-834) $) 57) (($ (-665 (-675))) 49) (($ (-621 (-323))) 48) (($ (-323)) 55) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 53)))
-(((-66 |#1|) (-376) (-1143)) (T -66))
+((-2042 (*1 *2 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018)))) (-2027 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768)))) (-3977 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))) (-2795 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-47 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)))) (-2988 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)) (-5 *2 (-112)))) (-2244 (*1 *1 *2 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768)))) (-2068 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768)))) (-4068 (*1 *2 *1 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018)))) (-2511 (*1 *1 *1 *2) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768)) (-4 *2 (-356)))))
+(-13 (-1018) (-111 |t#1| |t#1|) (-10 -8 (-15 -2042 (|t#1| $)) (-15 -2027 ($ $)) (-15 -3977 (|t#2| $)) (-15 -2795 ($ (-1 |t#1| |t#1|) $)) (-15 -2988 ((-112) $)) (-15 -2244 ($ |t#1| |t#2|)) (-15 -2068 ($ $)) (-15 -4068 (|t#1| $ |t#2|)) (IF (|has| |t#1| (-356)) (-15 -2511 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-170)) (PROGN (-6 (-170)) (-6 (-38 |t#1|))) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |t#1| (-541)) (-6 (-541)) |%noBranch|) (IF (|has| |t#1| (-38 (-400 (-549)))) (-6 (-38 (-400 (-549)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) |has| |#1| (-541)) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-283) |has| |#1| (-541)) ((-541) |has| |#1| (-541)) ((-624 #0#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #0#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) |has| |#1| (-541)) ((-703) . T) ((-1024 #0#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-3804 (((-621 $) (-1138 $) (-1142)) NIL) (((-621 $) (-1138 $)) NIL) (((-621 $) (-923 $)) NIL)) (-1566 (($ (-1138 $) (-1142)) NIL) (($ (-1138 $)) NIL) (($ (-923 $)) NIL)) (-3210 (((-112) $) 11)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-1979 (((-621 (-592 $)) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3013 (($ $ (-287 $)) NIL) (($ $ (-621 (-287 $))) NIL) (($ $ (-621 (-592 $)) (-621 $)) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2132 (($ $) NIL)) (-2680 (((-112) $ $) NIL)) (-3034 (($) NIL T CONST)) (-2798 (((-621 $) (-1138 $) (-1142)) NIL) (((-621 $) (-1138 $)) NIL) (((-621 $) (-923 $)) NIL)) (-2406 (($ (-1138 $) (-1142)) NIL) (($ (-1138 $)) NIL) (($ (-923 $)) NIL)) (-2712 (((-3 (-592 $) "failed") $) NIL) (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL)) (-2657 (((-592 $) $) NIL) (((-549) $) NIL) (((-400 (-549)) $) NIL)) (-2091 (($ $ $) NIL)) (-3446 (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL) (((-665 (-549)) (-665 $)) NIL) (((-2 (|:| -3697 (-665 (-400 (-549)))) (|:| |vec| (-1225 (-400 (-549))))) (-665 $) (-1225 $)) NIL) (((-665 (-400 (-549))) (-665 $)) NIL)) (-2556 (($ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-4158 (($ $) NIL) (($ (-621 $)) NIL)) (-3724 (((-621 (-114)) $) NIL)) (-3500 (((-114) (-114)) NIL)) (-2297 (((-112) $) 14)) (-2803 (((-112) $) NIL (|has| $ (-1009 (-549))))) (-1392 (((-1091 (-549) (-592 $)) $) NIL)) (-3621 (($ $ (-549)) NIL)) (-2469 (((-1138 $) (-1138 $) (-592 $)) NIL) (((-1138 $) (-1138 $) (-621 (-592 $))) NIL) (($ $ (-592 $)) NIL) (($ $ (-621 (-592 $))) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1797 (((-1138 $) (-592 $)) NIL (|has| $ (-1018)))) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-2795 (($ (-1 $ $) (-592 $)) NIL)) (-2197 (((-3 (-592 $) "failed") $) NIL)) (-3696 (($ (-621 $)) NIL) (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-2059 (((-621 (-592 $)) $) NIL)) (-1475 (($ (-114) $) NIL) (($ (-114) (-621 $)) NIL)) (-3673 (((-112) $ (-114)) NIL) (((-112) $ (-1142)) NIL)) (-1990 (($ $) NIL)) (-4036 (((-747) $) NIL)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ (-621 $)) NIL) (($ $ $) NIL)) (-2934 (((-112) $ $) NIL) (((-112) $ (-1142)) NIL)) (-2119 (((-411 $) $) NIL)) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1980 (((-112) $) NIL (|has| $ (-1009 (-549))))) (-2684 (($ $ (-592 $) $) NIL) (($ $ (-621 (-592 $)) (-621 $)) NIL) (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-621 (-1142)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-1142)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-1142) (-1 $ (-621 $))) NIL) (($ $ (-1142) (-1 $ $)) NIL) (($ $ (-621 (-114)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-114) (-1 $ (-621 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-1335 (((-747) $) NIL)) (-3339 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-621 $)) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3205 (($ $) NIL) (($ $ $) NIL)) (-3455 (($ $ (-747)) NIL) (($ $) NIL)) (-1404 (((-1091 (-549) (-592 $)) $) NIL)) (-1262 (($ $) NIL (|has| $ (-1018)))) (-2843 (((-372) $) NIL) (((-219) $) NIL) (((-167 (-372)) $) NIL)) (-3845 (((-834) $) NIL) (($ (-592 $)) NIL) (($ (-400 (-549))) NIL) (($ $) NIL) (($ (-549)) NIL) (($ (-1091 (-549) (-592 $))) NIL)) (-2371 (((-747)) NIL)) (-4136 (($ $) NIL) (($ (-621 $)) NIL)) (-2444 (((-112) (-114)) NIL)) (-2441 (((-112) $ $) NIL)) (-3274 (($) 7 T CONST)) (-3286 (($) 12 T CONST)) (-1699 (($ $ (-747)) NIL) (($ $) NIL)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 16)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) NIL)) (-2511 (($ $ $) NIL)) (-2498 (($ $ $) 15) (($ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-400 (-549))) NIL) (($ $ (-549)) NIL) (($ $ (-747)) NIL) (($ $ (-892)) NIL)) (* (($ (-400 (-549)) $) NIL) (($ $ (-400 (-549))) NIL) (($ $ $) NIL) (($ (-549) $) NIL) (($ (-747) $) NIL) (($ (-892) $) NIL)))
+(((-48) (-13 (-295) (-27) (-1009 (-549)) (-1009 (-400 (-549))) (-617 (-549)) (-993) (-617 (-400 (-549))) (-145) (-594 (-167 (-372))) (-227) (-10 -8 (-15 -3845 ($ (-1091 (-549) (-592 $)))) (-15 -1392 ((-1091 (-549) (-592 $)) $)) (-15 -1404 ((-1091 (-549) (-592 $)) $)) (-15 -2556 ($ $)) (-15 -2469 ((-1138 $) (-1138 $) (-592 $))) (-15 -2469 ((-1138 $) (-1138 $) (-621 (-592 $)))) (-15 -2469 ($ $ (-592 $))) (-15 -2469 ($ $ (-621 (-592 $))))))) (T -48))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1091 (-549) (-592 (-48)))) (-5 *1 (-48)))) (-1392 (*1 *2 *1) (-12 (-5 *2 (-1091 (-549) (-592 (-48)))) (-5 *1 (-48)))) (-1404 (*1 *2 *1) (-12 (-5 *2 (-1091 (-549) (-592 (-48)))) (-5 *1 (-48)))) (-2556 (*1 *1 *1) (-5 *1 (-48))) (-2469 (*1 *2 *2 *3) (-12 (-5 *2 (-1138 (-48))) (-5 *3 (-592 (-48))) (-5 *1 (-48)))) (-2469 (*1 *2 *2 *3) (-12 (-5 *2 (-1138 (-48))) (-5 *3 (-621 (-592 (-48)))) (-5 *1 (-48)))) (-2469 (*1 *1 *1 *2) (-12 (-5 *2 (-592 (-48))) (-5 *1 (-48)))) (-2469 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-592 (-48)))) (-5 *1 (-48)))))
+(-13 (-295) (-27) (-1009 (-549)) (-1009 (-400 (-549))) (-617 (-549)) (-993) (-617 (-400 (-549))) (-145) (-594 (-167 (-372))) (-227) (-10 -8 (-15 -3845 ($ (-1091 (-549) (-592 $)))) (-15 -1392 ((-1091 (-549) (-592 $)) $)) (-15 -1404 ((-1091 (-549) (-592 $)) $)) (-15 -2556 ($ $)) (-15 -2469 ((-1138 $) (-1138 $) (-592 $))) (-15 -2469 ((-1138 $) (-1138 $) (-621 (-592 $)))) (-15 -2469 ($ $ (-592 $))) (-15 -2469 ($ $ (-621 (-592 $))))))
+((-3832 (((-112) $ $) NIL)) (-2902 (((-621 (-1142)) $) 17)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 7)) (-2492 (((-1147) $) 18)) (-2387 (((-112) $ $) NIL)))
+(((-49) (-13 (-1066) (-10 -8 (-15 -2902 ((-621 (-1142)) $)) (-15 -2492 ((-1147) $))))) (T -49))
+((-2902 (*1 *2 *1) (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-49)))) (-2492 (*1 *2 *1) (-12 (-5 *2 (-1147)) (-5 *1 (-49)))))
+(-13 (-1066) (-10 -8 (-15 -2902 ((-621 (-1142)) $)) (-15 -2492 ((-1147) $))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 61)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-1998 (((-112) $) 20)) (-2712 (((-3 |#1| "failed") $) 23)) (-2657 ((|#1| $) 24)) (-2068 (($ $) 28)) (-2612 (((-3 $ "failed") $) NIL)) (-2297 (((-112) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-2042 ((|#1| $) 21)) (-2245 (($ $) 50)) (-3441 (((-1124) $) NIL)) (-1303 (((-112) $) 30)) (-3988 (((-1086) $) NIL)) (-4247 (($ (-747)) 48)) (-2717 (($ (-621 (-549))) 49)) (-3977 (((-747) $) 31)) (-3845 (((-834) $) 64) (($ (-549)) 45) (($ |#1|) 43)) (-4068 ((|#1| $ $) 19)) (-2371 (((-747)) 47)) (-3274 (($) 32 T CONST)) (-3286 (($) 14 T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) 40)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 41) (($ |#1| $) 35)))
+(((-50 |#1| |#2|) (-13 (-598 |#1|) (-1009 |#1|) (-10 -8 (-15 -2042 (|#1| $)) (-15 -2245 ($ $)) (-15 -2068 ($ $)) (-15 -4068 (|#1| $ $)) (-15 -4247 ($ (-747))) (-15 -2717 ($ (-621 (-549)))) (-15 -1303 ((-112) $)) (-15 -1998 ((-112) $)) (-15 -3977 ((-747) $)) (-15 -2795 ($ (-1 |#1| |#1|) $)))) (-1018) (-621 (-1142))) (T -50))
+((-2042 (*1 *2 *1) (-12 (-4 *2 (-1018)) (-5 *1 (-50 *2 *3)) (-14 *3 (-621 (-1142))))) (-2245 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1018)) (-14 *3 (-621 (-1142))))) (-2068 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1018)) (-14 *3 (-621 (-1142))))) (-4068 (*1 *2 *1 *1) (-12 (-4 *2 (-1018)) (-5 *1 (-50 *2 *3)) (-14 *3 (-621 (-1142))))) (-4247 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018)) (-14 *4 (-621 (-1142))))) (-2717 (*1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018)) (-14 *4 (-621 (-1142))))) (-1303 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018)) (-14 *4 (-621 (-1142))))) (-1998 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018)) (-14 *4 (-621 (-1142))))) (-3977 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018)) (-14 *4 (-621 (-1142))))) (-2795 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-50 *3 *4)) (-14 *4 (-621 (-1142))))))
+(-13 (-598 |#1|) (-1009 |#1|) (-10 -8 (-15 -2042 (|#1| $)) (-15 -2245 ($ $)) (-15 -2068 ($ $)) (-15 -4068 (|#1| $ $)) (-15 -4247 ($ (-747))) (-15 -2717 ($ (-621 (-549)))) (-15 -1303 ((-112) $)) (-15 -1998 ((-112) $)) (-15 -3977 ((-747) $)) (-15 -2795 ($ (-1 |#1| |#1|) $))))
+((-1998 (((-112) (-52)) 13)) (-2712 (((-3 |#1| "failed") (-52)) 21)) (-2657 ((|#1| (-52)) 22)) (-3845 (((-52) |#1|) 18)))
+(((-51 |#1|) (-10 -7 (-15 -3845 ((-52) |#1|)) (-15 -2712 ((-3 |#1| "failed") (-52))) (-15 -1998 ((-112) (-52))) (-15 -2657 (|#1| (-52)))) (-1179)) (T -51))
+((-2657 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1179)))) (-1998 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1179)))) (-2712 (*1 *2 *3) (|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1179)))) (-3845 (*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1179)))))
+(-10 -7 (-15 -3845 ((-52) |#1|)) (-15 -2712 ((-3 |#1| "failed") (-52))) (-15 -1998 ((-112) (-52))) (-15 -2657 (|#1| (-52))))
+((-3832 (((-112) $ $) NIL)) (-3097 (((-1124) (-112)) 25)) (-2955 (((-834) $) 24)) (-1269 (((-750) $) 12)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2457 (((-834) $) 16)) (-1528 (((-1070) $) 14)) (-3845 (((-834) $) 32)) (-3375 (($ (-1070) (-750)) 33)) (-2387 (((-112) $ $) 18)))
+(((-52) (-13 (-1066) (-10 -8 (-15 -3375 ($ (-1070) (-750))) (-15 -2457 ((-834) $)) (-15 -2955 ((-834) $)) (-15 -1528 ((-1070) $)) (-15 -1269 ((-750) $)) (-15 -3097 ((-1124) (-112)))))) (T -52))
+((-3375 (*1 *1 *2 *3) (-12 (-5 *2 (-1070)) (-5 *3 (-750)) (-5 *1 (-52)))) (-2457 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-52)))) (-2955 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-52)))) (-1528 (*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-52)))) (-1269 (*1 *2 *1) (-12 (-5 *2 (-750)) (-5 *1 (-52)))) (-3097 (*1 *2 *3) (-12 (-5 *3 (-112)) (-5 *2 (-1124)) (-5 *1 (-52)))))
+(-13 (-1066) (-10 -8 (-15 -3375 ($ (-1070) (-750))) (-15 -2457 ((-834) $)) (-15 -2955 ((-834) $)) (-15 -1528 ((-1070) $)) (-15 -1269 ((-750) $)) (-15 -3097 ((-1124) (-112)))))
+((-3593 ((|#2| |#3| (-1 |#2| |#2|) |#2|) 16)))
+(((-53 |#1| |#2| |#3|) (-10 -7 (-15 -3593 (|#2| |#3| (-1 |#2| |#2|) |#2|))) (-1018) (-624 |#1|) (-825 |#1|)) (T -53))
+((-3593 (*1 *2 *3 *4 *2) (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-624 *5)) (-4 *5 (-1018)) (-5 *1 (-53 *5 *2 *3)) (-4 *3 (-825 *5)))))
+(-10 -7 (-15 -3593 (|#2| |#3| (-1 |#2| |#2|) |#2|)))
+((-3251 ((|#3| |#3| (-621 (-1142))) 35)) (-2997 ((|#3| (-621 (-1042 |#1| |#2| |#3|)) |#3| (-892)) 22) ((|#3| (-621 (-1042 |#1| |#2| |#3|)) |#3|) 20)))
+(((-54 |#1| |#2| |#3|) (-10 -7 (-15 -2997 (|#3| (-621 (-1042 |#1| |#2| |#3|)) |#3|)) (-15 -2997 (|#3| (-621 (-1042 |#1| |#2| |#3|)) |#3| (-892))) (-15 -3251 (|#3| |#3| (-621 (-1142))))) (-1066) (-13 (-1018) (-857 |#1|) (-823) (-594 (-863 |#1|))) (-13 (-423 |#2|) (-857 |#1|) (-594 (-863 |#1|)))) (T -54))
+((-3251 (*1 *2 *2 *3) (-12 (-5 *3 (-621 (-1142))) (-4 *4 (-1066)) (-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4)))) (-5 *1 (-54 *4 *5 *2)) (-4 *2 (-13 (-423 *5) (-857 *4) (-594 (-863 *4)))))) (-2997 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-621 (-1042 *5 *6 *2))) (-5 *4 (-892)) (-4 *5 (-1066)) (-4 *6 (-13 (-1018) (-857 *5) (-823) (-594 (-863 *5)))) (-4 *2 (-13 (-423 *6) (-857 *5) (-594 (-863 *5)))) (-5 *1 (-54 *5 *6 *2)))) (-2997 (*1 *2 *3 *2) (-12 (-5 *3 (-621 (-1042 *4 *5 *2))) (-4 *4 (-1066)) (-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4)))) (-4 *2 (-13 (-423 *5) (-857 *4) (-594 (-863 *4)))) (-5 *1 (-54 *4 *5 *2)))))
+(-10 -7 (-15 -2997 (|#3| (-621 (-1042 |#1| |#2| |#3|)) |#3|)) (-15 -2997 (|#3| (-621 (-1042 |#1| |#2| |#3|)) |#3| (-892))) (-15 -3251 (|#3| |#3| (-621 (-1142)))))
+((-2850 (((-112) $ (-747)) 23)) (-1389 (($ $ (-549) |#3|) 46)) (-1843 (($ $ (-549) |#4|) 50)) (-3437 ((|#3| $ (-549)) 59)) (-2987 (((-621 |#2|) $) 30)) (-1777 (((-112) $ (-747)) 25)) (-1593 (((-112) |#2| $) 54)) (-1864 (($ (-1 |#2| |#2|) $) 37)) (-2795 (($ (-1 |#2| |#2|) $) 36) (($ (-1 |#2| |#2| |#2|) $ $) 40) (($ (-1 |#2| |#2| |#2|) $ $ |#2|) 42)) (-3942 (((-112) $ (-747)) 24)) (-1943 (($ $ |#2|) 34)) (-3360 (((-112) (-1 (-112) |#2|) $) 19)) (-3339 ((|#2| $ (-549) (-549)) NIL) ((|#2| $ (-549) (-549) |#2|) 27)) (-3997 (((-747) (-1 (-112) |#2|) $) 28) (((-747) |#2| $) 56)) (-2279 (($ $) 33)) (-1476 ((|#4| $ (-549)) 62)) (-3845 (((-834) $) 68)) (-3025 (((-112) (-1 (-112) |#2|) $) 18)) (-2387 (((-112) $ $) 53)) (-3774 (((-747) $) 26)))
+(((-55 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3845 ((-834) |#1|)) (-15 -2795 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -2795 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1864 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1843 (|#1| |#1| (-549) |#4|)) (-15 -1389 (|#1| |#1| (-549) |#3|)) (-15 -2987 ((-621 |#2|) |#1|)) (-15 -1476 (|#4| |#1| (-549))) (-15 -3437 (|#3| |#1| (-549))) (-15 -3339 (|#2| |#1| (-549) (-549) |#2|)) (-15 -3339 (|#2| |#1| (-549) (-549))) (-15 -1943 (|#1| |#1| |#2|)) (-15 -2387 ((-112) |#1| |#1|)) (-15 -1593 ((-112) |#2| |#1|)) (-15 -3997 ((-747) |#2| |#1|)) (-15 -3997 ((-747) (-1 (-112) |#2|) |#1|)) (-15 -3360 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3025 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2795 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3774 ((-747) |#1|)) (-15 -2850 ((-112) |#1| (-747))) (-15 -1777 ((-112) |#1| (-747))) (-15 -3942 ((-112) |#1| (-747))) (-15 -2279 (|#1| |#1|))) (-56 |#2| |#3| |#4|) (-1179) (-366 |#2|) (-366 |#2|)) (T -55))
+NIL
+(-10 -8 (-15 -3845 ((-834) |#1|)) (-15 -2795 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -2795 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1864 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1843 (|#1| |#1| (-549) |#4|)) (-15 -1389 (|#1| |#1| (-549) |#3|)) (-15 -2987 ((-621 |#2|) |#1|)) (-15 -1476 (|#4| |#1| (-549))) (-15 -3437 (|#3| |#1| (-549))) (-15 -3339 (|#2| |#1| (-549) (-549) |#2|)) (-15 -3339 (|#2| |#1| (-549) (-549))) (-15 -1943 (|#1| |#1| |#2|)) (-15 -2387 ((-112) |#1| |#1|)) (-15 -1593 ((-112) |#2| |#1|)) (-15 -3997 ((-747) |#2| |#1|)) (-15 -3997 ((-747) (-1 (-112) |#2|) |#1|)) (-15 -3360 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3025 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2795 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3774 ((-747) |#1|)) (-15 -2850 ((-112) |#1| (-747))) (-15 -1777 ((-112) |#1| (-747))) (-15 -3942 ((-112) |#1| (-747))) (-15 -2279 (|#1| |#1|)))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-2850 (((-112) $ (-747)) 8)) (-2250 ((|#1| $ (-549) (-549) |#1|) 44)) (-1389 (($ $ (-549) |#2|) 42)) (-1843 (($ $ (-549) |#3|) 41)) (-3034 (($) 7 T CONST)) (-3437 ((|#2| $ (-549)) 46)) (-1875 ((|#1| $ (-549) (-549) |#1|) 43)) (-1807 ((|#1| $ (-549) (-549)) 48)) (-2987 (((-621 |#1|) $) 30)) (-2140 (((-747) $) 51)) (-3743 (($ (-747) (-747) |#1|) 57)) (-2153 (((-747) $) 50)) (-1777 (((-112) $ (-747)) 9)) (-3057 (((-549) $) 55)) (-3861 (((-549) $) 53)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1766 (((-549) $) 54)) (-2813 (((-549) $) 52)) (-1864 (($ (-1 |#1| |#1|) $) 34)) (-2795 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-1943 (($ $ |#1|) 56)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#1| $ (-549) (-549)) 49) ((|#1| $ (-549) (-549) |#1|) 47)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-1476 ((|#3| $ (-549)) 45)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-56 |#1| |#2| |#3|) (-138) (-1179) (-366 |t#1|) (-366 |t#1|)) (T -56))
+((-2795 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-3743 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-747)) (-4 *3 (-1179)) (-4 *1 (-56 *3 *4 *5)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-1943 (*1 *1 *1 *2) (-12 (-4 *1 (-56 *2 *3 *4)) (-4 *2 (-1179)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (-3057 (*1 *2 *1) (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-549)))) (-1766 (*1 *2 *1) (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-549)))) (-3861 (*1 *2 *1) (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-549)))) (-2813 (*1 *2 *1) (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-549)))) (-2140 (*1 *2 *1) (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-747)))) (-2153 (*1 *2 *1) (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-747)))) (-3339 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *4 (-366 *2)) (-4 *5 (-366 *2)) (-4 *2 (-1179)))) (-1807 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *4 (-366 *2)) (-4 *5 (-366 *2)) (-4 *2 (-1179)))) (-3339 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *2 (-1179)) (-4 *4 (-366 *2)) (-4 *5 (-366 *2)))) (-3437 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-56 *4 *2 *5)) (-4 *4 (-1179)) (-4 *5 (-366 *4)) (-4 *2 (-366 *4)))) (-1476 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-56 *4 *5 *2)) (-4 *4 (-1179)) (-4 *5 (-366 *4)) (-4 *2 (-366 *4)))) (-2987 (*1 *2 *1) (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-621 *3)))) (-2250 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *2 (-1179)) (-4 *4 (-366 *2)) (-4 *5 (-366 *2)))) (-1875 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *2 (-1179)) (-4 *4 (-366 *2)) (-4 *5 (-366 *2)))) (-1389 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-549)) (-4 *1 (-56 *4 *3 *5)) (-4 *4 (-1179)) (-4 *3 (-366 *4)) (-4 *5 (-366 *4)))) (-1843 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-549)) (-4 *1 (-56 *4 *5 *3)) (-4 *4 (-1179)) (-4 *5 (-366 *4)) (-4 *3 (-366 *4)))) (-1864 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2795 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2795 (*1 *1 *2 *1 *1 *3) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))))
+(-13 (-481 |t#1|) (-10 -8 (-6 -4337) (-6 -4336) (-15 -3743 ($ (-747) (-747) |t#1|)) (-15 -1943 ($ $ |t#1|)) (-15 -3057 ((-549) $)) (-15 -1766 ((-549) $)) (-15 -3861 ((-549) $)) (-15 -2813 ((-549) $)) (-15 -2140 ((-747) $)) (-15 -2153 ((-747) $)) (-15 -3339 (|t#1| $ (-549) (-549))) (-15 -1807 (|t#1| $ (-549) (-549))) (-15 -3339 (|t#1| $ (-549) (-549) |t#1|)) (-15 -3437 (|t#2| $ (-549))) (-15 -1476 (|t#3| $ (-549))) (-15 -2987 ((-621 |t#1|) $)) (-15 -2250 (|t#1| $ (-549) (-549) |t#1|)) (-15 -1875 (|t#1| $ (-549) (-549) |t#1|)) (-15 -1389 ($ $ (-549) |t#2|)) (-15 -1843 ($ $ (-549) |t#3|)) (-15 -2795 ($ (-1 |t#1| |t#1|) $)) (-15 -1864 ($ (-1 |t#1| |t#1|) $)) (-15 -2795 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -2795 ($ (-1 |t#1| |t#1| |t#1|) $ $ |t#1|))))
+(((-34) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-1066) |has| |#1| (-1066)) ((-1179) . T))
+((-2394 (((-58 |#2|) (-1 |#2| |#1| |#2|) (-58 |#1|) |#2|) 16)) (-2556 ((|#2| (-1 |#2| |#1| |#2|) (-58 |#1|) |#2|) 18)) (-2795 (((-58 |#2|) (-1 |#2| |#1|) (-58 |#1|)) 13)))
+(((-57 |#1| |#2|) (-10 -7 (-15 -2394 ((-58 |#2|) (-1 |#2| |#1| |#2|) (-58 |#1|) |#2|)) (-15 -2556 (|#2| (-1 |#2| |#1| |#2|) (-58 |#1|) |#2|)) (-15 -2795 ((-58 |#2|) (-1 |#2| |#1|) (-58 |#1|)))) (-1179) (-1179)) (T -57))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-58 *5)) (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-58 *6)) (-5 *1 (-57 *5 *6)))) (-2556 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-58 *5)) (-4 *5 (-1179)) (-4 *2 (-1179)) (-5 *1 (-57 *5 *2)))) (-2394 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-58 *6)) (-4 *6 (-1179)) (-4 *5 (-1179)) (-5 *2 (-58 *5)) (-5 *1 (-57 *6 *5)))))
+(-10 -7 (-15 -2394 ((-58 |#2|) (-1 |#2| |#1| |#2|) (-58 |#1|) |#2|)) (-15 -2556 (|#2| (-1 |#2| |#1| |#2|) (-58 |#1|) |#2|)) (-15 -2795 ((-58 |#2|) (-1 |#2| |#1|) (-58 |#1|))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-2239 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-823)))) (-2015 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4337))) (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-823))))) (-3191 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-823)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 ((|#1| $ (-549) |#1|) 11 (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) NIL (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-2918 (($ $) NIL (|has| $ (-6 -4337)))) (-3062 (($ $) NIL)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4336)))) (-1875 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) NIL)) (-2881 (((-549) (-1 (-112) |#1|) $) NIL) (((-549) |#1| $) NIL (|has| |#1| (-1066))) (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1066)))) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-3119 (($ (-621 |#1|)) 13) (($ (-747) |#1|) 14)) (-3743 (($ (-747) |#1|) 9)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) NIL (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3050 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-823)))) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-2613 (($ |#1| $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3645 ((|#1| $) NIL (|has| (-549) (-823)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1943 (($ $ |#1|) NIL (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) 7)) (-3339 ((|#1| $ (-549) |#1|) NIL) ((|#1| $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-2162 (($ $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2049 (($ $ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) NIL)) (-1950 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-58 |#1|) (-13 (-19 |#1|) (-10 -8 (-15 -3119 ($ (-621 |#1|))) (-15 -3119 ($ (-747) |#1|)))) (-1179)) (T -58))
+((-3119 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-5 *1 (-58 *3)))) (-3119 (*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *1 (-58 *3)) (-4 *3 (-1179)))))
+(-13 (-19 |#1|) (-10 -8 (-15 -3119 ($ (-621 |#1|))) (-15 -3119 ($ (-747) |#1|))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 ((|#1| $ (-549) (-549) |#1|) NIL)) (-1389 (($ $ (-549) (-58 |#1|)) NIL)) (-1843 (($ $ (-549) (-58 |#1|)) NIL)) (-3034 (($) NIL T CONST)) (-3437 (((-58 |#1|) $ (-549)) NIL)) (-1875 ((|#1| $ (-549) (-549) |#1|) NIL)) (-1807 ((|#1| $ (-549) (-549)) NIL)) (-2987 (((-621 |#1|) $) NIL)) (-2140 (((-747) $) NIL)) (-3743 (($ (-747) (-747) |#1|) NIL)) (-2153 (((-747) $) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-3057 (((-549) $) NIL)) (-3861 (((-549) $) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1766 (((-549) $) NIL)) (-2813 (((-549) $) NIL)) (-1864 (($ (-1 |#1| |#1|) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-1943 (($ $ |#1|) NIL)) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#1| $ (-549) (-549)) NIL) ((|#1| $ (-549) (-549) |#1|) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) NIL)) (-1476 (((-58 |#1|) $ (-549)) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-59 |#1|) (-13 (-56 |#1| (-58 |#1|) (-58 |#1|)) (-10 -7 (-6 -4337))) (-1179)) (T -59))
+NIL
+(-13 (-56 |#1| (-58 |#1|) (-58 |#1|)) (-10 -7 (-6 -4337)))
+((-2712 (((-3 $ "failed") (-1225 (-309 (-372)))) 74) (((-3 $ "failed") (-1225 (-309 (-549)))) 63) (((-3 $ "failed") (-1225 (-923 (-372)))) 94) (((-3 $ "failed") (-1225 (-923 (-549)))) 84) (((-3 $ "failed") (-1225 (-400 (-923 (-372))))) 52) (((-3 $ "failed") (-1225 (-400 (-923 (-549))))) 39)) (-2657 (($ (-1225 (-309 (-372)))) 70) (($ (-1225 (-309 (-549)))) 59) (($ (-1225 (-923 (-372)))) 90) (($ (-1225 (-923 (-549)))) 80) (($ (-1225 (-400 (-923 (-372))))) 48) (($ (-1225 (-400 (-923 (-549))))) 32)) (-3314 (((-1230) $) 120)) (-3845 (((-834) $) 113) (($ (-621 (-323))) 103) (($ (-323)) 97) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 101) (($ (-1225 (-332 (-3853 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3853) (-675)))) 31)))
+(((-60 |#1|) (-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3853) (-675))))))) (-1142)) (T -60))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1225 (-332 (-3853 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3853) (-675)))) (-5 *1 (-60 *3)) (-14 *3 (-1142)))))
+(-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3853) (-675)))))))
+((-3314 (((-1230) $) 53) (((-1230)) 54)) (-3845 (((-834) $) 50)))
+(((-61 |#1|) (-13 (-388) (-10 -7 (-15 -3314 ((-1230))))) (-1142)) (T -61))
+((-3314 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-61 *3)) (-14 *3 (-1142)))))
+(-13 (-388) (-10 -7 (-15 -3314 ((-1230)))))
+((-2712 (((-3 $ "failed") (-1225 (-309 (-372)))) 144) (((-3 $ "failed") (-1225 (-309 (-549)))) 134) (((-3 $ "failed") (-1225 (-923 (-372)))) 164) (((-3 $ "failed") (-1225 (-923 (-549)))) 154) (((-3 $ "failed") (-1225 (-400 (-923 (-372))))) 123) (((-3 $ "failed") (-1225 (-400 (-923 (-549))))) 111)) (-2657 (($ (-1225 (-309 (-372)))) 140) (($ (-1225 (-309 (-549)))) 130) (($ (-1225 (-923 (-372)))) 160) (($ (-1225 (-923 (-549)))) 150) (($ (-1225 (-400 (-923 (-372))))) 119) (($ (-1225 (-400 (-923 (-549))))) 104)) (-3314 (((-1230) $) 97)) (-3845 (((-834) $) 91) (($ (-621 (-323))) 29) (($ (-323)) 34) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 32) (($ (-1225 (-332 (-3853) (-3853 (QUOTE XC)) (-675)))) 89)))
+(((-62 |#1|) (-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853) (-3853 (QUOTE XC)) (-675))))))) (-1142)) (T -62))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1225 (-332 (-3853) (-3853 (QUOTE XC)) (-675)))) (-5 *1 (-62 *3)) (-14 *3 (-1142)))))
+(-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853) (-3853 (QUOTE XC)) (-675)))))))
+((-2712 (((-3 $ "failed") (-309 (-372))) 41) (((-3 $ "failed") (-309 (-549))) 46) (((-3 $ "failed") (-923 (-372))) 50) (((-3 $ "failed") (-923 (-549))) 54) (((-3 $ "failed") (-400 (-923 (-372)))) 36) (((-3 $ "failed") (-400 (-923 (-549)))) 29)) (-2657 (($ (-309 (-372))) 39) (($ (-309 (-549))) 44) (($ (-923 (-372))) 48) (($ (-923 (-549))) 52) (($ (-400 (-923 (-372)))) 34) (($ (-400 (-923 (-549)))) 26)) (-3314 (((-1230) $) 76)) (-3845 (((-834) $) 69) (($ (-621 (-323))) 61) (($ (-323)) 66) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 64) (($ (-332 (-3853 (QUOTE X)) (-3853) (-675))) 25)))
+(((-63 |#1|) (-13 (-389) (-10 -8 (-15 -3845 ($ (-332 (-3853 (QUOTE X)) (-3853) (-675)))))) (-1142)) (T -63))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-332 (-3853 (QUOTE X)) (-3853) (-675))) (-5 *1 (-63 *3)) (-14 *3 (-1142)))))
+(-13 (-389) (-10 -8 (-15 -3845 ($ (-332 (-3853 (QUOTE X)) (-3853) (-675))))))
+((-2712 (((-3 $ "failed") (-665 (-309 (-372)))) 109) (((-3 $ "failed") (-665 (-309 (-549)))) 97) (((-3 $ "failed") (-665 (-923 (-372)))) 131) (((-3 $ "failed") (-665 (-923 (-549)))) 120) (((-3 $ "failed") (-665 (-400 (-923 (-372))))) 85) (((-3 $ "failed") (-665 (-400 (-923 (-549))))) 71)) (-2657 (($ (-665 (-309 (-372)))) 105) (($ (-665 (-309 (-549)))) 93) (($ (-665 (-923 (-372)))) 127) (($ (-665 (-923 (-549)))) 116) (($ (-665 (-400 (-923 (-372))))) 81) (($ (-665 (-400 (-923 (-549))))) 64)) (-3314 (((-1230) $) 139)) (-3845 (((-834) $) 133) (($ (-621 (-323))) 28) (($ (-323)) 33) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 31) (($ (-665 (-332 (-3853) (-3853 (QUOTE X) (QUOTE HESS)) (-675)))) 54)))
+(((-64 |#1|) (-13 (-377) (-10 -8 (-15 -3845 ($ (-665 (-332 (-3853) (-3853 (QUOTE X) (QUOTE HESS)) (-675))))))) (-1142)) (T -64))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-665 (-332 (-3853) (-3853 (QUOTE X) (QUOTE HESS)) (-675)))) (-5 *1 (-64 *3)) (-14 *3 (-1142)))))
+(-13 (-377) (-10 -8 (-15 -3845 ($ (-665 (-332 (-3853) (-3853 (QUOTE X) (QUOTE HESS)) (-675)))))))
+((-2712 (((-3 $ "failed") (-309 (-372))) 59) (((-3 $ "failed") (-309 (-549))) 64) (((-3 $ "failed") (-923 (-372))) 68) (((-3 $ "failed") (-923 (-549))) 72) (((-3 $ "failed") (-400 (-923 (-372)))) 54) (((-3 $ "failed") (-400 (-923 (-549)))) 47)) (-2657 (($ (-309 (-372))) 57) (($ (-309 (-549))) 62) (($ (-923 (-372))) 66) (($ (-923 (-549))) 70) (($ (-400 (-923 (-372)))) 52) (($ (-400 (-923 (-549)))) 44)) (-3314 (((-1230) $) 81)) (-3845 (((-834) $) 75) (($ (-621 (-323))) 28) (($ (-323)) 33) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 31) (($ (-332 (-3853) (-3853 (QUOTE XC)) (-675))) 39)))
+(((-65 |#1|) (-13 (-389) (-10 -8 (-15 -3845 ($ (-332 (-3853) (-3853 (QUOTE XC)) (-675)))))) (-1142)) (T -65))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-332 (-3853) (-3853 (QUOTE XC)) (-675))) (-5 *1 (-65 *3)) (-14 *3 (-1142)))))
+(-13 (-389) (-10 -8 (-15 -3845 ($ (-332 (-3853) (-3853 (QUOTE XC)) (-675))))))
+((-3314 (((-1230) $) 63)) (-3845 (((-834) $) 57) (($ (-665 (-675))) 49) (($ (-621 (-323))) 48) (($ (-323)) 55) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 53)))
+(((-66 |#1|) (-376) (-1142)) (T -66))
NIL
(-376)
-((-3316 (((-1231) $) 64)) (-3846 (((-834) $) 58) (($ (-665 (-675))) 50) (($ (-621 (-323))) 49) (($ (-323)) 52) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 55)))
-(((-67 |#1|) (-376) (-1143)) (T -67))
+((-3314 (((-1230) $) 64)) (-3845 (((-834) $) 58) (($ (-665 (-675))) 50) (($ (-621 (-323))) 49) (($ (-323)) 52) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 55)))
+(((-67 |#1|) (-376) (-1142)) (T -67))
NIL
(-376)
-((-3316 (((-1231) $) NIL) (((-1231)) 32)) (-3846 (((-834) $) NIL)))
-(((-68 |#1|) (-13 (-388) (-10 -7 (-15 -3316 ((-1231))))) (-1143)) (T -68))
-((-3316 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-68 *3)) (-14 *3 (-1143)))))
-(-13 (-388) (-10 -7 (-15 -3316 ((-1231)))))
-((-3316 (((-1231) $) 73)) (-3846 (((-834) $) 67) (($ (-665 (-675))) 59) (($ (-621 (-323))) 61) (($ (-323)) 64) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 58)))
-(((-69 |#1|) (-376) (-1143)) (T -69))
+((-3314 (((-1230) $) NIL) (((-1230)) 32)) (-3845 (((-834) $) NIL)))
+(((-68 |#1|) (-13 (-388) (-10 -7 (-15 -3314 ((-1230))))) (-1142)) (T -68))
+((-3314 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-68 *3)) (-14 *3 (-1142)))))
+(-13 (-388) (-10 -7 (-15 -3314 ((-1230)))))
+((-3314 (((-1230) $) 73)) (-3845 (((-834) $) 67) (($ (-665 (-675))) 59) (($ (-621 (-323))) 61) (($ (-323)) 64) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 58)))
+(((-69 |#1|) (-376) (-1142)) (T -69))
NIL
(-376)
-((-2714 (((-3 $ "failed") (-1226 (-309 (-372)))) 103) (((-3 $ "failed") (-1226 (-309 (-549)))) 92) (((-3 $ "failed") (-1226 (-923 (-372)))) 123) (((-3 $ "failed") (-1226 (-923 (-549)))) 113) (((-3 $ "failed") (-1226 (-400 (-923 (-372))))) 81) (((-3 $ "failed") (-1226 (-400 (-923 (-549))))) 68)) (-2659 (($ (-1226 (-309 (-372)))) 99) (($ (-1226 (-309 (-549)))) 88) (($ (-1226 (-923 (-372)))) 119) (($ (-1226 (-923 (-549)))) 109) (($ (-1226 (-400 (-923 (-372))))) 77) (($ (-1226 (-400 (-923 (-549))))) 61)) (-3316 (((-1231) $) 136)) (-3846 (((-834) $) 130) (($ (-621 (-323))) 125) (($ (-323)) 128) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 53) (($ (-1226 (-332 (-3854 (QUOTE X)) (-3854 (QUOTE -2663)) (-675)))) 54)))
-(((-70 |#1|) (-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854 (QUOTE X)) (-3854 (QUOTE -2663)) (-675))))))) (-1143)) (T -70))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1226 (-332 (-3854 (QUOTE X)) (-3854 (QUOTE -2663)) (-675)))) (-5 *1 (-70 *3)) (-14 *3 (-1143)))))
-(-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854 (QUOTE X)) (-3854 (QUOTE -2663)) (-675)))))))
-((-3316 (((-1231) $) 32) (((-1231)) 31)) (-3846 (((-834) $) 35)))
-(((-71 |#1|) (-13 (-388) (-10 -7 (-15 -3316 ((-1231))))) (-1143)) (T -71))
-((-3316 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-71 *3)) (-14 *3 (-1143)))))
-(-13 (-388) (-10 -7 (-15 -3316 ((-1231)))))
-((-3316 (((-1231) $) 63)) (-3846 (((-834) $) 57) (($ (-665 (-675))) 49) (($ (-621 (-323))) 51) (($ (-323)) 54) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 48)))
-(((-72 |#1|) (-376) (-1143)) (T -72))
+((-2712 (((-3 $ "failed") (-1225 (-309 (-372)))) 103) (((-3 $ "failed") (-1225 (-309 (-549)))) 92) (((-3 $ "failed") (-1225 (-923 (-372)))) 123) (((-3 $ "failed") (-1225 (-923 (-549)))) 113) (((-3 $ "failed") (-1225 (-400 (-923 (-372))))) 81) (((-3 $ "failed") (-1225 (-400 (-923 (-549))))) 68)) (-2657 (($ (-1225 (-309 (-372)))) 99) (($ (-1225 (-309 (-549)))) 88) (($ (-1225 (-923 (-372)))) 119) (($ (-1225 (-923 (-549)))) 109) (($ (-1225 (-400 (-923 (-372))))) 77) (($ (-1225 (-400 (-923 (-549))))) 61)) (-3314 (((-1230) $) 136)) (-3845 (((-834) $) 130) (($ (-621 (-323))) 125) (($ (-323)) 128) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 53) (($ (-1225 (-332 (-3853 (QUOTE X)) (-3853 (QUOTE -2661)) (-675)))) 54)))
+(((-70 |#1|) (-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853 (QUOTE X)) (-3853 (QUOTE -2661)) (-675))))))) (-1142)) (T -70))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1225 (-332 (-3853 (QUOTE X)) (-3853 (QUOTE -2661)) (-675)))) (-5 *1 (-70 *3)) (-14 *3 (-1142)))))
+(-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853 (QUOTE X)) (-3853 (QUOTE -2661)) (-675)))))))
+((-3314 (((-1230) $) 32) (((-1230)) 31)) (-3845 (((-834) $) 35)))
+(((-71 |#1|) (-13 (-388) (-10 -7 (-15 -3314 ((-1230))))) (-1142)) (T -71))
+((-3314 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-71 *3)) (-14 *3 (-1142)))))
+(-13 (-388) (-10 -7 (-15 -3314 ((-1230)))))
+((-3314 (((-1230) $) 63)) (-3845 (((-834) $) 57) (($ (-665 (-675))) 49) (($ (-621 (-323))) 51) (($ (-323)) 54) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 48)))
+(((-72 |#1|) (-376) (-1142)) (T -72))
NIL
(-376)
-((-2714 (((-3 $ "failed") (-1226 (-309 (-372)))) 125) (((-3 $ "failed") (-1226 (-309 (-549)))) 115) (((-3 $ "failed") (-1226 (-923 (-372)))) 145) (((-3 $ "failed") (-1226 (-923 (-549)))) 135) (((-3 $ "failed") (-1226 (-400 (-923 (-372))))) 105) (((-3 $ "failed") (-1226 (-400 (-923 (-549))))) 93)) (-2659 (($ (-1226 (-309 (-372)))) 121) (($ (-1226 (-309 (-549)))) 111) (($ (-1226 (-923 (-372)))) 141) (($ (-1226 (-923 (-549)))) 131) (($ (-1226 (-400 (-923 (-372))))) 101) (($ (-1226 (-400 (-923 (-549))))) 86)) (-3316 (((-1231) $) 78)) (-3846 (((-834) $) 27) (($ (-621 (-323))) 68) (($ (-323)) 64) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 71) (($ (-1226 (-332 (-3854) (-3854 (QUOTE X)) (-675)))) 65)))
-(((-73 |#1|) (-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854) (-3854 (QUOTE X)) (-675))))))) (-1143)) (T -73))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1226 (-332 (-3854) (-3854 (QUOTE X)) (-675)))) (-5 *1 (-73 *3)) (-14 *3 (-1143)))))
-(-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854) (-3854 (QUOTE X)) (-675)))))))
-((-2714 (((-3 $ "failed") (-1226 (-309 (-372)))) 130) (((-3 $ "failed") (-1226 (-309 (-549)))) 119) (((-3 $ "failed") (-1226 (-923 (-372)))) 150) (((-3 $ "failed") (-1226 (-923 (-549)))) 140) (((-3 $ "failed") (-1226 (-400 (-923 (-372))))) 108) (((-3 $ "failed") (-1226 (-400 (-923 (-549))))) 95)) (-2659 (($ (-1226 (-309 (-372)))) 126) (($ (-1226 (-309 (-549)))) 115) (($ (-1226 (-923 (-372)))) 146) (($ (-1226 (-923 (-549)))) 136) (($ (-1226 (-400 (-923 (-372))))) 104) (($ (-1226 (-400 (-923 (-549))))) 88)) (-3316 (((-1231) $) 79)) (-3846 (((-834) $) 71) (($ (-621 (-323))) NIL) (($ (-323)) NIL) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) NIL) (($ (-1226 (-332 (-3854 (QUOTE X) (QUOTE EPS)) (-3854 (QUOTE -2663)) (-675)))) 66)))
-(((-74 |#1| |#2| |#3|) (-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854 (QUOTE X) (QUOTE EPS)) (-3854 (QUOTE -2663)) (-675))))))) (-1143) (-1143) (-1143)) (T -74))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1226 (-332 (-3854 (QUOTE X) (QUOTE EPS)) (-3854 (QUOTE -2663)) (-675)))) (-5 *1 (-74 *3 *4 *5)) (-14 *3 (-1143)) (-14 *4 (-1143)) (-14 *5 (-1143)))))
-(-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854 (QUOTE X) (QUOTE EPS)) (-3854 (QUOTE -2663)) (-675)))))))
-((-2714 (((-3 $ "failed") (-1226 (-309 (-372)))) 134) (((-3 $ "failed") (-1226 (-309 (-549)))) 123) (((-3 $ "failed") (-1226 (-923 (-372)))) 154) (((-3 $ "failed") (-1226 (-923 (-549)))) 144) (((-3 $ "failed") (-1226 (-400 (-923 (-372))))) 112) (((-3 $ "failed") (-1226 (-400 (-923 (-549))))) 99)) (-2659 (($ (-1226 (-309 (-372)))) 130) (($ (-1226 (-309 (-549)))) 119) (($ (-1226 (-923 (-372)))) 150) (($ (-1226 (-923 (-549)))) 140) (($ (-1226 (-400 (-923 (-372))))) 108) (($ (-1226 (-400 (-923 (-549))))) 92)) (-3316 (((-1231) $) 83)) (-3846 (((-834) $) 75) (($ (-621 (-323))) NIL) (($ (-323)) NIL) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) NIL) (($ (-1226 (-332 (-3854 (QUOTE EPS)) (-3854 (QUOTE YA) (QUOTE YB)) (-675)))) 70)))
-(((-75 |#1| |#2| |#3|) (-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854 (QUOTE EPS)) (-3854 (QUOTE YA) (QUOTE YB)) (-675))))))) (-1143) (-1143) (-1143)) (T -75))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1226 (-332 (-3854 (QUOTE EPS)) (-3854 (QUOTE YA) (QUOTE YB)) (-675)))) (-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1143)) (-14 *4 (-1143)) (-14 *5 (-1143)))))
-(-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854 (QUOTE EPS)) (-3854 (QUOTE YA) (QUOTE YB)) (-675)))))))
-((-2714 (((-3 $ "failed") (-309 (-372))) 82) (((-3 $ "failed") (-309 (-549))) 87) (((-3 $ "failed") (-923 (-372))) 91) (((-3 $ "failed") (-923 (-549))) 95) (((-3 $ "failed") (-400 (-923 (-372)))) 77) (((-3 $ "failed") (-400 (-923 (-549)))) 70)) (-2659 (($ (-309 (-372))) 80) (($ (-309 (-549))) 85) (($ (-923 (-372))) 89) (($ (-923 (-549))) 93) (($ (-400 (-923 (-372)))) 75) (($ (-400 (-923 (-549)))) 67)) (-3316 (((-1231) $) 62)) (-3846 (((-834) $) 50) (($ (-621 (-323))) 46) (($ (-323)) 56) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 54) (($ (-332 (-3854) (-3854 (QUOTE X)) (-675))) 47)))
-(((-76 |#1|) (-13 (-389) (-10 -8 (-15 -3846 ($ (-332 (-3854) (-3854 (QUOTE X)) (-675)))))) (-1143)) (T -76))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-332 (-3854) (-3854 (QUOTE X)) (-675))) (-5 *1 (-76 *3)) (-14 *3 (-1143)))))
-(-13 (-389) (-10 -8 (-15 -3846 ($ (-332 (-3854) (-3854 (QUOTE X)) (-675))))))
-((-2714 (((-3 $ "failed") (-309 (-372))) 46) (((-3 $ "failed") (-309 (-549))) 51) (((-3 $ "failed") (-923 (-372))) 55) (((-3 $ "failed") (-923 (-549))) 59) (((-3 $ "failed") (-400 (-923 (-372)))) 41) (((-3 $ "failed") (-400 (-923 (-549)))) 34)) (-2659 (($ (-309 (-372))) 44) (($ (-309 (-549))) 49) (($ (-923 (-372))) 53) (($ (-923 (-549))) 57) (($ (-400 (-923 (-372)))) 39) (($ (-400 (-923 (-549)))) 31)) (-3316 (((-1231) $) 80)) (-3846 (((-834) $) 74) (($ (-621 (-323))) 66) (($ (-323)) 71) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 69) (($ (-332 (-3854) (-3854 (QUOTE X)) (-675))) 30)))
-(((-77 |#1|) (-13 (-389) (-10 -8 (-15 -3846 ($ (-332 (-3854) (-3854 (QUOTE X)) (-675)))))) (-1143)) (T -77))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-332 (-3854) (-3854 (QUOTE X)) (-675))) (-5 *1 (-77 *3)) (-14 *3 (-1143)))))
-(-13 (-389) (-10 -8 (-15 -3846 ($ (-332 (-3854) (-3854 (QUOTE X)) (-675))))))
-((-2714 (((-3 $ "failed") (-1226 (-309 (-372)))) 89) (((-3 $ "failed") (-1226 (-309 (-549)))) 78) (((-3 $ "failed") (-1226 (-923 (-372)))) 109) (((-3 $ "failed") (-1226 (-923 (-549)))) 99) (((-3 $ "failed") (-1226 (-400 (-923 (-372))))) 67) (((-3 $ "failed") (-1226 (-400 (-923 (-549))))) 54)) (-2659 (($ (-1226 (-309 (-372)))) 85) (($ (-1226 (-309 (-549)))) 74) (($ (-1226 (-923 (-372)))) 105) (($ (-1226 (-923 (-549)))) 95) (($ (-1226 (-400 (-923 (-372))))) 63) (($ (-1226 (-400 (-923 (-549))))) 47)) (-3316 (((-1231) $) 125)) (-3846 (((-834) $) 119) (($ (-621 (-323))) 112) (($ (-323)) 37) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 115) (($ (-1226 (-332 (-3854) (-3854 (QUOTE XC)) (-675)))) 38)))
-(((-78 |#1|) (-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854) (-3854 (QUOTE XC)) (-675))))))) (-1143)) (T -78))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1226 (-332 (-3854) (-3854 (QUOTE XC)) (-675)))) (-5 *1 (-78 *3)) (-14 *3 (-1143)))))
-(-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854) (-3854 (QUOTE XC)) (-675)))))))
-((-2714 (((-3 $ "failed") (-1226 (-309 (-372)))) 142) (((-3 $ "failed") (-1226 (-309 (-549)))) 132) (((-3 $ "failed") (-1226 (-923 (-372)))) 162) (((-3 $ "failed") (-1226 (-923 (-549)))) 152) (((-3 $ "failed") (-1226 (-400 (-923 (-372))))) 122) (((-3 $ "failed") (-1226 (-400 (-923 (-549))))) 110)) (-2659 (($ (-1226 (-309 (-372)))) 138) (($ (-1226 (-309 (-549)))) 128) (($ (-1226 (-923 (-372)))) 158) (($ (-1226 (-923 (-549)))) 148) (($ (-1226 (-400 (-923 (-372))))) 118) (($ (-1226 (-400 (-923 (-549))))) 103)) (-3316 (((-1231) $) 96)) (-3846 (((-834) $) 90) (($ (-621 (-323))) 81) (($ (-323)) 88) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 86) (($ (-1226 (-332 (-3854) (-3854 (QUOTE X)) (-675)))) 82)))
-(((-79 |#1|) (-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854) (-3854 (QUOTE X)) (-675))))))) (-1143)) (T -79))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1226 (-332 (-3854) (-3854 (QUOTE X)) (-675)))) (-5 *1 (-79 *3)) (-14 *3 (-1143)))))
-(-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854) (-3854 (QUOTE X)) (-675)))))))
-((-2714 (((-3 $ "failed") (-1226 (-309 (-372)))) 78) (((-3 $ "failed") (-1226 (-309 (-549)))) 67) (((-3 $ "failed") (-1226 (-923 (-372)))) 98) (((-3 $ "failed") (-1226 (-923 (-549)))) 88) (((-3 $ "failed") (-1226 (-400 (-923 (-372))))) 56) (((-3 $ "failed") (-1226 (-400 (-923 (-549))))) 43)) (-2659 (($ (-1226 (-309 (-372)))) 74) (($ (-1226 (-309 (-549)))) 63) (($ (-1226 (-923 (-372)))) 94) (($ (-1226 (-923 (-549)))) 84) (($ (-1226 (-400 (-923 (-372))))) 52) (($ (-1226 (-400 (-923 (-549))))) 36)) (-3316 (((-1231) $) 124)) (-3846 (((-834) $) 118) (($ (-621 (-323))) 109) (($ (-323)) 115) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 113) (($ (-1226 (-332 (-3854) (-3854 (QUOTE X)) (-675)))) 35)))
-(((-80 |#1|) (-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854) (-3854 (QUOTE X)) (-675))))))) (-1143)) (T -80))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1226 (-332 (-3854) (-3854 (QUOTE X)) (-675)))) (-5 *1 (-80 *3)) (-14 *3 (-1143)))))
-(-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854) (-3854 (QUOTE X)) (-675)))))))
-((-2714 (((-3 $ "failed") (-1226 (-309 (-372)))) 95) (((-3 $ "failed") (-1226 (-309 (-549)))) 84) (((-3 $ "failed") (-1226 (-923 (-372)))) 115) (((-3 $ "failed") (-1226 (-923 (-549)))) 105) (((-3 $ "failed") (-1226 (-400 (-923 (-372))))) 73) (((-3 $ "failed") (-1226 (-400 (-923 (-549))))) 60)) (-2659 (($ (-1226 (-309 (-372)))) 91) (($ (-1226 (-309 (-549)))) 80) (($ (-1226 (-923 (-372)))) 111) (($ (-1226 (-923 (-549)))) 101) (($ (-1226 (-400 (-923 (-372))))) 69) (($ (-1226 (-400 (-923 (-549))))) 53)) (-3316 (((-1231) $) 45)) (-3846 (((-834) $) 39) (($ (-621 (-323))) 29) (($ (-323)) 32) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 35) (($ (-1226 (-332 (-3854 (QUOTE X) (QUOTE -2663)) (-3854) (-675)))) 30)))
-(((-81 |#1|) (-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854 (QUOTE X) (QUOTE -2663)) (-3854) (-675))))))) (-1143)) (T -81))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1226 (-332 (-3854 (QUOTE X) (QUOTE -2663)) (-3854) (-675)))) (-5 *1 (-81 *3)) (-14 *3 (-1143)))))
-(-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854 (QUOTE X) (QUOTE -2663)) (-3854) (-675)))))))
-((-2714 (((-3 $ "failed") (-665 (-309 (-372)))) 115) (((-3 $ "failed") (-665 (-309 (-549)))) 104) (((-3 $ "failed") (-665 (-923 (-372)))) 137) (((-3 $ "failed") (-665 (-923 (-549)))) 126) (((-3 $ "failed") (-665 (-400 (-923 (-372))))) 93) (((-3 $ "failed") (-665 (-400 (-923 (-549))))) 80)) (-2659 (($ (-665 (-309 (-372)))) 111) (($ (-665 (-309 (-549)))) 100) (($ (-665 (-923 (-372)))) 133) (($ (-665 (-923 (-549)))) 122) (($ (-665 (-400 (-923 (-372))))) 89) (($ (-665 (-400 (-923 (-549))))) 73)) (-3316 (((-1231) $) 63)) (-3846 (((-834) $) 50) (($ (-621 (-323))) 57) (($ (-323)) 46) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 55) (($ (-665 (-332 (-3854 (QUOTE X) (QUOTE -2663)) (-3854) (-675)))) 47)))
-(((-82 |#1|) (-13 (-377) (-10 -8 (-15 -3846 ($ (-665 (-332 (-3854 (QUOTE X) (QUOTE -2663)) (-3854) (-675))))))) (-1143)) (T -82))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-665 (-332 (-3854 (QUOTE X) (QUOTE -2663)) (-3854) (-675)))) (-5 *1 (-82 *3)) (-14 *3 (-1143)))))
-(-13 (-377) (-10 -8 (-15 -3846 ($ (-665 (-332 (-3854 (QUOTE X) (QUOTE -2663)) (-3854) (-675)))))))
-((-2714 (((-3 $ "failed") (-665 (-309 (-372)))) 112) (((-3 $ "failed") (-665 (-309 (-549)))) 100) (((-3 $ "failed") (-665 (-923 (-372)))) 134) (((-3 $ "failed") (-665 (-923 (-549)))) 123) (((-3 $ "failed") (-665 (-400 (-923 (-372))))) 88) (((-3 $ "failed") (-665 (-400 (-923 (-549))))) 74)) (-2659 (($ (-665 (-309 (-372)))) 108) (($ (-665 (-309 (-549)))) 96) (($ (-665 (-923 (-372)))) 130) (($ (-665 (-923 (-549)))) 119) (($ (-665 (-400 (-923 (-372))))) 84) (($ (-665 (-400 (-923 (-549))))) 67)) (-3316 (((-1231) $) 59)) (-3846 (((-834) $) 53) (($ (-621 (-323))) 47) (($ (-323)) 50) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 44) (($ (-665 (-332 (-3854 (QUOTE X)) (-3854) (-675)))) 45)))
-(((-83 |#1|) (-13 (-377) (-10 -8 (-15 -3846 ($ (-665 (-332 (-3854 (QUOTE X)) (-3854) (-675))))))) (-1143)) (T -83))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-665 (-332 (-3854 (QUOTE X)) (-3854) (-675)))) (-5 *1 (-83 *3)) (-14 *3 (-1143)))))
-(-13 (-377) (-10 -8 (-15 -3846 ($ (-665 (-332 (-3854 (QUOTE X)) (-3854) (-675)))))))
-((-2714 (((-3 $ "failed") (-1226 (-309 (-372)))) 104) (((-3 $ "failed") (-1226 (-309 (-549)))) 93) (((-3 $ "failed") (-1226 (-923 (-372)))) 124) (((-3 $ "failed") (-1226 (-923 (-549)))) 114) (((-3 $ "failed") (-1226 (-400 (-923 (-372))))) 82) (((-3 $ "failed") (-1226 (-400 (-923 (-549))))) 69)) (-2659 (($ (-1226 (-309 (-372)))) 100) (($ (-1226 (-309 (-549)))) 89) (($ (-1226 (-923 (-372)))) 120) (($ (-1226 (-923 (-549)))) 110) (($ (-1226 (-400 (-923 (-372))))) 78) (($ (-1226 (-400 (-923 (-549))))) 62)) (-3316 (((-1231) $) 46)) (-3846 (((-834) $) 40) (($ (-621 (-323))) 49) (($ (-323)) 36) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 52) (($ (-1226 (-332 (-3854 (QUOTE X)) (-3854) (-675)))) 37)))
-(((-84 |#1|) (-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854 (QUOTE X)) (-3854) (-675))))))) (-1143)) (T -84))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1226 (-332 (-3854 (QUOTE X)) (-3854) (-675)))) (-5 *1 (-84 *3)) (-14 *3 (-1143)))))
-(-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854 (QUOTE X)) (-3854) (-675)))))))
-((-2714 (((-3 $ "failed") (-1226 (-309 (-372)))) 79) (((-3 $ "failed") (-1226 (-309 (-549)))) 68) (((-3 $ "failed") (-1226 (-923 (-372)))) 99) (((-3 $ "failed") (-1226 (-923 (-549)))) 89) (((-3 $ "failed") (-1226 (-400 (-923 (-372))))) 57) (((-3 $ "failed") (-1226 (-400 (-923 (-549))))) 44)) (-2659 (($ (-1226 (-309 (-372)))) 75) (($ (-1226 (-309 (-549)))) 64) (($ (-1226 (-923 (-372)))) 95) (($ (-1226 (-923 (-549)))) 85) (($ (-1226 (-400 (-923 (-372))))) 53) (($ (-1226 (-400 (-923 (-549))))) 37)) (-3316 (((-1231) $) 125)) (-3846 (((-834) $) 119) (($ (-621 (-323))) 110) (($ (-323)) 116) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 114) (($ (-1226 (-332 (-3854 (QUOTE X)) (-3854 (QUOTE -2663)) (-675)))) 36)))
-(((-85 |#1|) (-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854 (QUOTE X)) (-3854 (QUOTE -2663)) (-675))))))) (-1143)) (T -85))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1226 (-332 (-3854 (QUOTE X)) (-3854 (QUOTE -2663)) (-675)))) (-5 *1 (-85 *3)) (-14 *3 (-1143)))))
-(-13 (-433) (-10 -8 (-15 -3846 ($ (-1226 (-332 (-3854 (QUOTE X)) (-3854 (QUOTE -2663)) (-675)))))))
-((-2714 (((-3 $ "failed") (-665 (-309 (-372)))) 113) (((-3 $ "failed") (-665 (-309 (-549)))) 101) (((-3 $ "failed") (-665 (-923 (-372)))) 135) (((-3 $ "failed") (-665 (-923 (-549)))) 124) (((-3 $ "failed") (-665 (-400 (-923 (-372))))) 89) (((-3 $ "failed") (-665 (-400 (-923 (-549))))) 75)) (-2659 (($ (-665 (-309 (-372)))) 109) (($ (-665 (-309 (-549)))) 97) (($ (-665 (-923 (-372)))) 131) (($ (-665 (-923 (-549)))) 120) (($ (-665 (-400 (-923 (-372))))) 85) (($ (-665 (-400 (-923 (-549))))) 68)) (-3316 (((-1231) $) 59)) (-3846 (((-834) $) 53) (($ (-621 (-323))) 43) (($ (-323)) 50) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 48) (($ (-665 (-332 (-3854 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3854) (-675)))) 44)))
-(((-86 |#1|) (-13 (-377) (-10 -8 (-15 -3846 ($ (-665 (-332 (-3854 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3854) (-675))))))) (-1143)) (T -86))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-665 (-332 (-3854 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3854) (-675)))) (-5 *1 (-86 *3)) (-14 *3 (-1143)))))
-(-13 (-377) (-10 -8 (-15 -3846 ($ (-665 (-332 (-3854 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3854) (-675)))))))
-((-3316 (((-1231) $) 44)) (-3846 (((-834) $) 38) (($ (-1226 (-675))) 92) (($ (-621 (-323))) 30) (($ (-323)) 35) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 33)))
-(((-87 |#1|) (-432) (-1143)) (T -87))
+((-2712 (((-3 $ "failed") (-1225 (-309 (-372)))) 125) (((-3 $ "failed") (-1225 (-309 (-549)))) 115) (((-3 $ "failed") (-1225 (-923 (-372)))) 145) (((-3 $ "failed") (-1225 (-923 (-549)))) 135) (((-3 $ "failed") (-1225 (-400 (-923 (-372))))) 105) (((-3 $ "failed") (-1225 (-400 (-923 (-549))))) 93)) (-2657 (($ (-1225 (-309 (-372)))) 121) (($ (-1225 (-309 (-549)))) 111) (($ (-1225 (-923 (-372)))) 141) (($ (-1225 (-923 (-549)))) 131) (($ (-1225 (-400 (-923 (-372))))) 101) (($ (-1225 (-400 (-923 (-549))))) 86)) (-3314 (((-1230) $) 78)) (-3845 (((-834) $) 27) (($ (-621 (-323))) 68) (($ (-323)) 64) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 71) (($ (-1225 (-332 (-3853) (-3853 (QUOTE X)) (-675)))) 65)))
+(((-73 |#1|) (-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853) (-3853 (QUOTE X)) (-675))))))) (-1142)) (T -73))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1225 (-332 (-3853) (-3853 (QUOTE X)) (-675)))) (-5 *1 (-73 *3)) (-14 *3 (-1142)))))
+(-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853) (-3853 (QUOTE X)) (-675)))))))
+((-2712 (((-3 $ "failed") (-1225 (-309 (-372)))) 130) (((-3 $ "failed") (-1225 (-309 (-549)))) 119) (((-3 $ "failed") (-1225 (-923 (-372)))) 150) (((-3 $ "failed") (-1225 (-923 (-549)))) 140) (((-3 $ "failed") (-1225 (-400 (-923 (-372))))) 108) (((-3 $ "failed") (-1225 (-400 (-923 (-549))))) 95)) (-2657 (($ (-1225 (-309 (-372)))) 126) (($ (-1225 (-309 (-549)))) 115) (($ (-1225 (-923 (-372)))) 146) (($ (-1225 (-923 (-549)))) 136) (($ (-1225 (-400 (-923 (-372))))) 104) (($ (-1225 (-400 (-923 (-549))))) 88)) (-3314 (((-1230) $) 79)) (-3845 (((-834) $) 71) (($ (-621 (-323))) NIL) (($ (-323)) NIL) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) NIL) (($ (-1225 (-332 (-3853 (QUOTE X) (QUOTE EPS)) (-3853 (QUOTE -2661)) (-675)))) 66)))
+(((-74 |#1| |#2| |#3|) (-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853 (QUOTE X) (QUOTE EPS)) (-3853 (QUOTE -2661)) (-675))))))) (-1142) (-1142) (-1142)) (T -74))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1225 (-332 (-3853 (QUOTE X) (QUOTE EPS)) (-3853 (QUOTE -2661)) (-675)))) (-5 *1 (-74 *3 *4 *5)) (-14 *3 (-1142)) (-14 *4 (-1142)) (-14 *5 (-1142)))))
+(-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853 (QUOTE X) (QUOTE EPS)) (-3853 (QUOTE -2661)) (-675)))))))
+((-2712 (((-3 $ "failed") (-1225 (-309 (-372)))) 134) (((-3 $ "failed") (-1225 (-309 (-549)))) 123) (((-3 $ "failed") (-1225 (-923 (-372)))) 154) (((-3 $ "failed") (-1225 (-923 (-549)))) 144) (((-3 $ "failed") (-1225 (-400 (-923 (-372))))) 112) (((-3 $ "failed") (-1225 (-400 (-923 (-549))))) 99)) (-2657 (($ (-1225 (-309 (-372)))) 130) (($ (-1225 (-309 (-549)))) 119) (($ (-1225 (-923 (-372)))) 150) (($ (-1225 (-923 (-549)))) 140) (($ (-1225 (-400 (-923 (-372))))) 108) (($ (-1225 (-400 (-923 (-549))))) 92)) (-3314 (((-1230) $) 83)) (-3845 (((-834) $) 75) (($ (-621 (-323))) NIL) (($ (-323)) NIL) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) NIL) (($ (-1225 (-332 (-3853 (QUOTE EPS)) (-3853 (QUOTE YA) (QUOTE YB)) (-675)))) 70)))
+(((-75 |#1| |#2| |#3|) (-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853 (QUOTE EPS)) (-3853 (QUOTE YA) (QUOTE YB)) (-675))))))) (-1142) (-1142) (-1142)) (T -75))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1225 (-332 (-3853 (QUOTE EPS)) (-3853 (QUOTE YA) (QUOTE YB)) (-675)))) (-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1142)) (-14 *4 (-1142)) (-14 *5 (-1142)))))
+(-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853 (QUOTE EPS)) (-3853 (QUOTE YA) (QUOTE YB)) (-675)))))))
+((-2712 (((-3 $ "failed") (-309 (-372))) 82) (((-3 $ "failed") (-309 (-549))) 87) (((-3 $ "failed") (-923 (-372))) 91) (((-3 $ "failed") (-923 (-549))) 95) (((-3 $ "failed") (-400 (-923 (-372)))) 77) (((-3 $ "failed") (-400 (-923 (-549)))) 70)) (-2657 (($ (-309 (-372))) 80) (($ (-309 (-549))) 85) (($ (-923 (-372))) 89) (($ (-923 (-549))) 93) (($ (-400 (-923 (-372)))) 75) (($ (-400 (-923 (-549)))) 67)) (-3314 (((-1230) $) 62)) (-3845 (((-834) $) 50) (($ (-621 (-323))) 46) (($ (-323)) 56) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 54) (($ (-332 (-3853) (-3853 (QUOTE X)) (-675))) 47)))
+(((-76 |#1|) (-13 (-389) (-10 -8 (-15 -3845 ($ (-332 (-3853) (-3853 (QUOTE X)) (-675)))))) (-1142)) (T -76))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-332 (-3853) (-3853 (QUOTE X)) (-675))) (-5 *1 (-76 *3)) (-14 *3 (-1142)))))
+(-13 (-389) (-10 -8 (-15 -3845 ($ (-332 (-3853) (-3853 (QUOTE X)) (-675))))))
+((-2712 (((-3 $ "failed") (-309 (-372))) 46) (((-3 $ "failed") (-309 (-549))) 51) (((-3 $ "failed") (-923 (-372))) 55) (((-3 $ "failed") (-923 (-549))) 59) (((-3 $ "failed") (-400 (-923 (-372)))) 41) (((-3 $ "failed") (-400 (-923 (-549)))) 34)) (-2657 (($ (-309 (-372))) 44) (($ (-309 (-549))) 49) (($ (-923 (-372))) 53) (($ (-923 (-549))) 57) (($ (-400 (-923 (-372)))) 39) (($ (-400 (-923 (-549)))) 31)) (-3314 (((-1230) $) 80)) (-3845 (((-834) $) 74) (($ (-621 (-323))) 66) (($ (-323)) 71) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 69) (($ (-332 (-3853) (-3853 (QUOTE X)) (-675))) 30)))
+(((-77 |#1|) (-13 (-389) (-10 -8 (-15 -3845 ($ (-332 (-3853) (-3853 (QUOTE X)) (-675)))))) (-1142)) (T -77))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-332 (-3853) (-3853 (QUOTE X)) (-675))) (-5 *1 (-77 *3)) (-14 *3 (-1142)))))
+(-13 (-389) (-10 -8 (-15 -3845 ($ (-332 (-3853) (-3853 (QUOTE X)) (-675))))))
+((-2712 (((-3 $ "failed") (-1225 (-309 (-372)))) 89) (((-3 $ "failed") (-1225 (-309 (-549)))) 78) (((-3 $ "failed") (-1225 (-923 (-372)))) 109) (((-3 $ "failed") (-1225 (-923 (-549)))) 99) (((-3 $ "failed") (-1225 (-400 (-923 (-372))))) 67) (((-3 $ "failed") (-1225 (-400 (-923 (-549))))) 54)) (-2657 (($ (-1225 (-309 (-372)))) 85) (($ (-1225 (-309 (-549)))) 74) (($ (-1225 (-923 (-372)))) 105) (($ (-1225 (-923 (-549)))) 95) (($ (-1225 (-400 (-923 (-372))))) 63) (($ (-1225 (-400 (-923 (-549))))) 47)) (-3314 (((-1230) $) 125)) (-3845 (((-834) $) 119) (($ (-621 (-323))) 112) (($ (-323)) 37) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 115) (($ (-1225 (-332 (-3853) (-3853 (QUOTE XC)) (-675)))) 38)))
+(((-78 |#1|) (-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853) (-3853 (QUOTE XC)) (-675))))))) (-1142)) (T -78))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1225 (-332 (-3853) (-3853 (QUOTE XC)) (-675)))) (-5 *1 (-78 *3)) (-14 *3 (-1142)))))
+(-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853) (-3853 (QUOTE XC)) (-675)))))))
+((-2712 (((-3 $ "failed") (-1225 (-309 (-372)))) 142) (((-3 $ "failed") (-1225 (-309 (-549)))) 132) (((-3 $ "failed") (-1225 (-923 (-372)))) 162) (((-3 $ "failed") (-1225 (-923 (-549)))) 152) (((-3 $ "failed") (-1225 (-400 (-923 (-372))))) 122) (((-3 $ "failed") (-1225 (-400 (-923 (-549))))) 110)) (-2657 (($ (-1225 (-309 (-372)))) 138) (($ (-1225 (-309 (-549)))) 128) (($ (-1225 (-923 (-372)))) 158) (($ (-1225 (-923 (-549)))) 148) (($ (-1225 (-400 (-923 (-372))))) 118) (($ (-1225 (-400 (-923 (-549))))) 103)) (-3314 (((-1230) $) 96)) (-3845 (((-834) $) 90) (($ (-621 (-323))) 81) (($ (-323)) 88) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 86) (($ (-1225 (-332 (-3853) (-3853 (QUOTE X)) (-675)))) 82)))
+(((-79 |#1|) (-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853) (-3853 (QUOTE X)) (-675))))))) (-1142)) (T -79))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1225 (-332 (-3853) (-3853 (QUOTE X)) (-675)))) (-5 *1 (-79 *3)) (-14 *3 (-1142)))))
+(-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853) (-3853 (QUOTE X)) (-675)))))))
+((-2712 (((-3 $ "failed") (-1225 (-309 (-372)))) 78) (((-3 $ "failed") (-1225 (-309 (-549)))) 67) (((-3 $ "failed") (-1225 (-923 (-372)))) 98) (((-3 $ "failed") (-1225 (-923 (-549)))) 88) (((-3 $ "failed") (-1225 (-400 (-923 (-372))))) 56) (((-3 $ "failed") (-1225 (-400 (-923 (-549))))) 43)) (-2657 (($ (-1225 (-309 (-372)))) 74) (($ (-1225 (-309 (-549)))) 63) (($ (-1225 (-923 (-372)))) 94) (($ (-1225 (-923 (-549)))) 84) (($ (-1225 (-400 (-923 (-372))))) 52) (($ (-1225 (-400 (-923 (-549))))) 36)) (-3314 (((-1230) $) 124)) (-3845 (((-834) $) 118) (($ (-621 (-323))) 109) (($ (-323)) 115) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 113) (($ (-1225 (-332 (-3853) (-3853 (QUOTE X)) (-675)))) 35)))
+(((-80 |#1|) (-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853) (-3853 (QUOTE X)) (-675))))))) (-1142)) (T -80))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1225 (-332 (-3853) (-3853 (QUOTE X)) (-675)))) (-5 *1 (-80 *3)) (-14 *3 (-1142)))))
+(-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853) (-3853 (QUOTE X)) (-675)))))))
+((-2712 (((-3 $ "failed") (-1225 (-309 (-372)))) 95) (((-3 $ "failed") (-1225 (-309 (-549)))) 84) (((-3 $ "failed") (-1225 (-923 (-372)))) 115) (((-3 $ "failed") (-1225 (-923 (-549)))) 105) (((-3 $ "failed") (-1225 (-400 (-923 (-372))))) 73) (((-3 $ "failed") (-1225 (-400 (-923 (-549))))) 60)) (-2657 (($ (-1225 (-309 (-372)))) 91) (($ (-1225 (-309 (-549)))) 80) (($ (-1225 (-923 (-372)))) 111) (($ (-1225 (-923 (-549)))) 101) (($ (-1225 (-400 (-923 (-372))))) 69) (($ (-1225 (-400 (-923 (-549))))) 53)) (-3314 (((-1230) $) 45)) (-3845 (((-834) $) 39) (($ (-621 (-323))) 29) (($ (-323)) 32) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 35) (($ (-1225 (-332 (-3853 (QUOTE X) (QUOTE -2661)) (-3853) (-675)))) 30)))
+(((-81 |#1|) (-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853 (QUOTE X) (QUOTE -2661)) (-3853) (-675))))))) (-1142)) (T -81))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1225 (-332 (-3853 (QUOTE X) (QUOTE -2661)) (-3853) (-675)))) (-5 *1 (-81 *3)) (-14 *3 (-1142)))))
+(-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853 (QUOTE X) (QUOTE -2661)) (-3853) (-675)))))))
+((-2712 (((-3 $ "failed") (-665 (-309 (-372)))) 115) (((-3 $ "failed") (-665 (-309 (-549)))) 104) (((-3 $ "failed") (-665 (-923 (-372)))) 137) (((-3 $ "failed") (-665 (-923 (-549)))) 126) (((-3 $ "failed") (-665 (-400 (-923 (-372))))) 93) (((-3 $ "failed") (-665 (-400 (-923 (-549))))) 80)) (-2657 (($ (-665 (-309 (-372)))) 111) (($ (-665 (-309 (-549)))) 100) (($ (-665 (-923 (-372)))) 133) (($ (-665 (-923 (-549)))) 122) (($ (-665 (-400 (-923 (-372))))) 89) (($ (-665 (-400 (-923 (-549))))) 73)) (-3314 (((-1230) $) 63)) (-3845 (((-834) $) 50) (($ (-621 (-323))) 57) (($ (-323)) 46) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 55) (($ (-665 (-332 (-3853 (QUOTE X) (QUOTE -2661)) (-3853) (-675)))) 47)))
+(((-82 |#1|) (-13 (-377) (-10 -8 (-15 -3845 ($ (-665 (-332 (-3853 (QUOTE X) (QUOTE -2661)) (-3853) (-675))))))) (-1142)) (T -82))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-665 (-332 (-3853 (QUOTE X) (QUOTE -2661)) (-3853) (-675)))) (-5 *1 (-82 *3)) (-14 *3 (-1142)))))
+(-13 (-377) (-10 -8 (-15 -3845 ($ (-665 (-332 (-3853 (QUOTE X) (QUOTE -2661)) (-3853) (-675)))))))
+((-2712 (((-3 $ "failed") (-665 (-309 (-372)))) 112) (((-3 $ "failed") (-665 (-309 (-549)))) 100) (((-3 $ "failed") (-665 (-923 (-372)))) 134) (((-3 $ "failed") (-665 (-923 (-549)))) 123) (((-3 $ "failed") (-665 (-400 (-923 (-372))))) 88) (((-3 $ "failed") (-665 (-400 (-923 (-549))))) 74)) (-2657 (($ (-665 (-309 (-372)))) 108) (($ (-665 (-309 (-549)))) 96) (($ (-665 (-923 (-372)))) 130) (($ (-665 (-923 (-549)))) 119) (($ (-665 (-400 (-923 (-372))))) 84) (($ (-665 (-400 (-923 (-549))))) 67)) (-3314 (((-1230) $) 59)) (-3845 (((-834) $) 53) (($ (-621 (-323))) 47) (($ (-323)) 50) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 44) (($ (-665 (-332 (-3853 (QUOTE X)) (-3853) (-675)))) 45)))
+(((-83 |#1|) (-13 (-377) (-10 -8 (-15 -3845 ($ (-665 (-332 (-3853 (QUOTE X)) (-3853) (-675))))))) (-1142)) (T -83))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-665 (-332 (-3853 (QUOTE X)) (-3853) (-675)))) (-5 *1 (-83 *3)) (-14 *3 (-1142)))))
+(-13 (-377) (-10 -8 (-15 -3845 ($ (-665 (-332 (-3853 (QUOTE X)) (-3853) (-675)))))))
+((-2712 (((-3 $ "failed") (-1225 (-309 (-372)))) 104) (((-3 $ "failed") (-1225 (-309 (-549)))) 93) (((-3 $ "failed") (-1225 (-923 (-372)))) 124) (((-3 $ "failed") (-1225 (-923 (-549)))) 114) (((-3 $ "failed") (-1225 (-400 (-923 (-372))))) 82) (((-3 $ "failed") (-1225 (-400 (-923 (-549))))) 69)) (-2657 (($ (-1225 (-309 (-372)))) 100) (($ (-1225 (-309 (-549)))) 89) (($ (-1225 (-923 (-372)))) 120) (($ (-1225 (-923 (-549)))) 110) (($ (-1225 (-400 (-923 (-372))))) 78) (($ (-1225 (-400 (-923 (-549))))) 62)) (-3314 (((-1230) $) 46)) (-3845 (((-834) $) 40) (($ (-621 (-323))) 49) (($ (-323)) 36) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 52) (($ (-1225 (-332 (-3853 (QUOTE X)) (-3853) (-675)))) 37)))
+(((-84 |#1|) (-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853 (QUOTE X)) (-3853) (-675))))))) (-1142)) (T -84))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1225 (-332 (-3853 (QUOTE X)) (-3853) (-675)))) (-5 *1 (-84 *3)) (-14 *3 (-1142)))))
+(-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853 (QUOTE X)) (-3853) (-675)))))))
+((-2712 (((-3 $ "failed") (-1225 (-309 (-372)))) 79) (((-3 $ "failed") (-1225 (-309 (-549)))) 68) (((-3 $ "failed") (-1225 (-923 (-372)))) 99) (((-3 $ "failed") (-1225 (-923 (-549)))) 89) (((-3 $ "failed") (-1225 (-400 (-923 (-372))))) 57) (((-3 $ "failed") (-1225 (-400 (-923 (-549))))) 44)) (-2657 (($ (-1225 (-309 (-372)))) 75) (($ (-1225 (-309 (-549)))) 64) (($ (-1225 (-923 (-372)))) 95) (($ (-1225 (-923 (-549)))) 85) (($ (-1225 (-400 (-923 (-372))))) 53) (($ (-1225 (-400 (-923 (-549))))) 37)) (-3314 (((-1230) $) 125)) (-3845 (((-834) $) 119) (($ (-621 (-323))) 110) (($ (-323)) 116) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 114) (($ (-1225 (-332 (-3853 (QUOTE X)) (-3853 (QUOTE -2661)) (-675)))) 36)))
+(((-85 |#1|) (-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853 (QUOTE X)) (-3853 (QUOTE -2661)) (-675))))))) (-1142)) (T -85))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1225 (-332 (-3853 (QUOTE X)) (-3853 (QUOTE -2661)) (-675)))) (-5 *1 (-85 *3)) (-14 *3 (-1142)))))
+(-13 (-433) (-10 -8 (-15 -3845 ($ (-1225 (-332 (-3853 (QUOTE X)) (-3853 (QUOTE -2661)) (-675)))))))
+((-2712 (((-3 $ "failed") (-665 (-309 (-372)))) 113) (((-3 $ "failed") (-665 (-309 (-549)))) 101) (((-3 $ "failed") (-665 (-923 (-372)))) 135) (((-3 $ "failed") (-665 (-923 (-549)))) 124) (((-3 $ "failed") (-665 (-400 (-923 (-372))))) 89) (((-3 $ "failed") (-665 (-400 (-923 (-549))))) 75)) (-2657 (($ (-665 (-309 (-372)))) 109) (($ (-665 (-309 (-549)))) 97) (($ (-665 (-923 (-372)))) 131) (($ (-665 (-923 (-549)))) 120) (($ (-665 (-400 (-923 (-372))))) 85) (($ (-665 (-400 (-923 (-549))))) 68)) (-3314 (((-1230) $) 59)) (-3845 (((-834) $) 53) (($ (-621 (-323))) 43) (($ (-323)) 50) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 48) (($ (-665 (-332 (-3853 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3853) (-675)))) 44)))
+(((-86 |#1|) (-13 (-377) (-10 -8 (-15 -3845 ($ (-665 (-332 (-3853 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3853) (-675))))))) (-1142)) (T -86))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-665 (-332 (-3853 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3853) (-675)))) (-5 *1 (-86 *3)) (-14 *3 (-1142)))))
+(-13 (-377) (-10 -8 (-15 -3845 ($ (-665 (-332 (-3853 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3853) (-675)))))))
+((-3314 (((-1230) $) 44)) (-3845 (((-834) $) 38) (($ (-1225 (-675))) 92) (($ (-621 (-323))) 30) (($ (-323)) 35) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 33)))
+(((-87 |#1|) (-432) (-1142)) (T -87))
NIL
(-432)
-((-2714 (((-3 $ "failed") (-309 (-372))) 47) (((-3 $ "failed") (-309 (-549))) 52) (((-3 $ "failed") (-923 (-372))) 56) (((-3 $ "failed") (-923 (-549))) 60) (((-3 $ "failed") (-400 (-923 (-372)))) 42) (((-3 $ "failed") (-400 (-923 (-549)))) 35)) (-2659 (($ (-309 (-372))) 45) (($ (-309 (-549))) 50) (($ (-923 (-372))) 54) (($ (-923 (-549))) 58) (($ (-400 (-923 (-372)))) 40) (($ (-400 (-923 (-549)))) 32)) (-3316 (((-1231) $) 90)) (-3846 (((-834) $) 84) (($ (-621 (-323))) 78) (($ (-323)) 81) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 76) (($ (-332 (-3854 (QUOTE X)) (-3854 (QUOTE -2663)) (-675))) 31)))
-(((-88 |#1|) (-13 (-389) (-10 -8 (-15 -3846 ($ (-332 (-3854 (QUOTE X)) (-3854 (QUOTE -2663)) (-675)))))) (-1143)) (T -88))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-332 (-3854 (QUOTE X)) (-3854 (QUOTE -2663)) (-675))) (-5 *1 (-88 *3)) (-14 *3 (-1143)))))
-(-13 (-389) (-10 -8 (-15 -3846 ($ (-332 (-3854 (QUOTE X)) (-3854 (QUOTE -2663)) (-675))))))
-((-3027 (((-1226 (-665 |#1|)) (-665 |#1|)) 54)) (-3079 (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 (-621 (-892))))) |#2| (-892)) 44)) (-3365 (((-2 (|:| |minor| (-621 (-892))) (|:| -2652 |#2|) (|:| |minors| (-621 (-621 (-892)))) (|:| |ops| (-621 |#2|))) |#2| (-892)) 65 (|has| |#1| (-356)))))
-(((-89 |#1| |#2|) (-10 -7 (-15 -3079 ((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 (-621 (-892))))) |#2| (-892))) (-15 -3027 ((-1226 (-665 |#1|)) (-665 |#1|))) (IF (|has| |#1| (-356)) (-15 -3365 ((-2 (|:| |minor| (-621 (-892))) (|:| -2652 |#2|) (|:| |minors| (-621 (-621 (-892)))) (|:| |ops| (-621 |#2|))) |#2| (-892))) |%noBranch|)) (-541) (-632 |#1|)) (T -89))
-((-3365 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-4 *5 (-541)) (-5 *2 (-2 (|:| |minor| (-621 (-892))) (|:| -2652 *3) (|:| |minors| (-621 (-621 (-892)))) (|:| |ops| (-621 *3)))) (-5 *1 (-89 *5 *3)) (-5 *4 (-892)) (-4 *3 (-632 *5)))) (-3027 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-1226 (-665 *4))) (-5 *1 (-89 *4 *5)) (-5 *3 (-665 *4)) (-4 *5 (-632 *4)))) (-3079 (*1 *2 *3 *4) (-12 (-4 *5 (-541)) (-5 *2 (-2 (|:| -3521 (-665 *5)) (|:| |vec| (-1226 (-621 (-892)))))) (-5 *1 (-89 *5 *3)) (-5 *4 (-892)) (-4 *3 (-632 *5)))))
-(-10 -7 (-15 -3079 ((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 (-621 (-892))))) |#2| (-892))) (-15 -3027 ((-1226 (-665 |#1|)) (-665 |#1|))) (IF (|has| |#1| (-356)) (-15 -3365 ((-2 (|:| |minor| (-621 (-892))) (|:| -2652 |#2|) (|:| |minors| (-621 (-621 (-892)))) (|:| |ops| (-621 |#2|))) |#2| (-892))) |%noBranch|))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2317 ((|#1| $) 35)) (-1584 (((-112) $ (-747)) NIL)) (-1682 (($) NIL T CONST)) (-3204 ((|#1| |#1| $) 30)) (-1350 ((|#1| $) 28)) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3504 ((|#1| $) NIL)) (-2751 (($ |#1| $) 31)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-3325 ((|#1| $) 29)) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) 16)) (-3742 (($) 39)) (-1321 (((-747) $) 26)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) 15)) (-3846 (((-834) $) 25 (|has| |#1| (-593 (-834))))) (-3624 (($ (-621 |#1|)) NIL)) (-3580 (($ (-621 |#1|)) 37)) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 13 (|has| |#1| (-1067)))) (-3775 (((-747) $) 10 (|has| $ (-6 -4337)))))
-(((-90 |#1|) (-13 (-1088 |#1|) (-10 -8 (-15 -3580 ($ (-621 |#1|))))) (-1067)) (T -90))
-((-3580 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-5 *1 (-90 *3)))))
-(-13 (-1088 |#1|) (-10 -8 (-15 -3580 ($ (-621 |#1|)))))
-((-3846 (((-834) $) 12) (((-1148) $) 8)))
-(((-91 |#1|) (-10 -8 (-15 -3846 ((-1148) |#1|)) (-15 -3846 ((-834) |#1|))) (-92)) (T -91))
-NIL
-(-10 -8 (-15 -3846 ((-1148) |#1|)) (-15 -3846 ((-834) |#1|)))
-((-3834 (((-112) $ $) 7)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11) (((-1148) $) 14)) (-2389 (((-112) $ $) 6)))
+((-2712 (((-3 $ "failed") (-309 (-372))) 47) (((-3 $ "failed") (-309 (-549))) 52) (((-3 $ "failed") (-923 (-372))) 56) (((-3 $ "failed") (-923 (-549))) 60) (((-3 $ "failed") (-400 (-923 (-372)))) 42) (((-3 $ "failed") (-400 (-923 (-549)))) 35)) (-2657 (($ (-309 (-372))) 45) (($ (-309 (-549))) 50) (($ (-923 (-372))) 54) (($ (-923 (-549))) 58) (($ (-400 (-923 (-372)))) 40) (($ (-400 (-923 (-549)))) 32)) (-3314 (((-1230) $) 90)) (-3845 (((-834) $) 84) (($ (-621 (-323))) 78) (($ (-323)) 81) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 76) (($ (-332 (-3853 (QUOTE X)) (-3853 (QUOTE -2661)) (-675))) 31)))
+(((-88 |#1|) (-13 (-389) (-10 -8 (-15 -3845 ($ (-332 (-3853 (QUOTE X)) (-3853 (QUOTE -2661)) (-675)))))) (-1142)) (T -88))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-332 (-3853 (QUOTE X)) (-3853 (QUOTE -2661)) (-675))) (-5 *1 (-88 *3)) (-14 *3 (-1142)))))
+(-13 (-389) (-10 -8 (-15 -3845 ($ (-332 (-3853 (QUOTE X)) (-3853 (QUOTE -2661)) (-675))))))
+((-2341 (((-1225 (-665 |#1|)) (-665 |#1|)) 54)) (-3005 (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 (-621 (-892))))) |#2| (-892)) 44)) (-1416 (((-2 (|:| |minor| (-621 (-892))) (|:| -2649 |#2|) (|:| |minors| (-621 (-621 (-892)))) (|:| |ops| (-621 |#2|))) |#2| (-892)) 65 (|has| |#1| (-356)))))
+(((-89 |#1| |#2|) (-10 -7 (-15 -3005 ((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 (-621 (-892))))) |#2| (-892))) (-15 -2341 ((-1225 (-665 |#1|)) (-665 |#1|))) (IF (|has| |#1| (-356)) (-15 -1416 ((-2 (|:| |minor| (-621 (-892))) (|:| -2649 |#2|) (|:| |minors| (-621 (-621 (-892)))) (|:| |ops| (-621 |#2|))) |#2| (-892))) |%noBranch|)) (-541) (-632 |#1|)) (T -89))
+((-1416 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-4 *5 (-541)) (-5 *2 (-2 (|:| |minor| (-621 (-892))) (|:| -2649 *3) (|:| |minors| (-621 (-621 (-892)))) (|:| |ops| (-621 *3)))) (-5 *1 (-89 *5 *3)) (-5 *4 (-892)) (-4 *3 (-632 *5)))) (-2341 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-1225 (-665 *4))) (-5 *1 (-89 *4 *5)) (-5 *3 (-665 *4)) (-4 *5 (-632 *4)))) (-3005 (*1 *2 *3 *4) (-12 (-4 *5 (-541)) (-5 *2 (-2 (|:| -3697 (-665 *5)) (|:| |vec| (-1225 (-621 (-892)))))) (-5 *1 (-89 *5 *3)) (-5 *4 (-892)) (-4 *3 (-632 *5)))))
+(-10 -7 (-15 -3005 ((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 (-621 (-892))))) |#2| (-892))) (-15 -2341 ((-1225 (-665 |#1|)) (-665 |#1|))) (IF (|has| |#1| (-356)) (-15 -1416 ((-2 (|:| |minor| (-621 (-892))) (|:| -2649 |#2|) (|:| |minors| (-621 (-621 (-892)))) (|:| |ops| (-621 |#2|))) |#2| (-892))) |%noBranch|))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2316 ((|#1| $) 35)) (-2850 (((-112) $ (-747)) NIL)) (-3034 (($) NIL T CONST)) (-3677 ((|#1| |#1| $) 30)) (-1794 ((|#1| $) 28)) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-2548 ((|#1| $) NIL)) (-1799 (($ |#1| $) 31)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3536 ((|#1| $) 29)) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) 16)) (-3288 (($) 39)) (-1319 (((-747) $) 26)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) 15)) (-3845 (((-834) $) 25 (|has| |#1| (-593 (-834))))) (-4213 (($ (-621 |#1|)) NIL)) (-1273 (($ (-621 |#1|)) 37)) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 13 (|has| |#1| (-1066)))) (-3774 (((-747) $) 10 (|has| $ (-6 -4336)))))
+(((-90 |#1|) (-13 (-1087 |#1|) (-10 -8 (-15 -1273 ($ (-621 |#1|))))) (-1066)) (T -90))
+((-1273 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-5 *1 (-90 *3)))))
+(-13 (-1087 |#1|) (-10 -8 (-15 -1273 ($ (-621 |#1|)))))
+((-3845 (((-834) $) 13) (((-1147) $) 8) (($ (-1147)) 9)))
+(((-91 |#1|) (-10 -8 (-15 -3845 (|#1| (-1147))) (-15 -3845 ((-1147) |#1|)) (-15 -3845 ((-834) |#1|))) (-92)) (T -91))
+NIL
+(-10 -8 (-15 -3845 (|#1| (-1147))) (-15 -3845 ((-1147) |#1|)) (-15 -3845 ((-834) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11) (((-1147) $) 15) (($ (-1147)) 14)) (-2387 (((-112) $ $) 6)))
(((-92) (-138)) (T -92))
-NIL
-(-13 (-1067) (-593 (-1148)))
-(((-101) . T) ((-593 (-834)) . T) ((-593 (-1148)) . T) ((-1067) . T))
-((-1612 (($ $) 10)) (-1627 (($ $) 12)))
-(((-93 |#1|) (-10 -8 (-15 -1627 (|#1| |#1|)) (-15 -1612 (|#1| |#1|))) (-94)) (T -93))
-NIL
-(-10 -8 (-15 -1627 (|#1| |#1|)) (-15 -1612 (|#1| |#1|)))
-((-1587 (($ $) 11)) (-1564 (($ $) 10)) (-1612 (($ $) 9)) (-1627 (($ $) 8)) (-1600 (($ $) 7)) (-1576 (($ $) 6)))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1147)) (-4 *1 (-92)))))
+(-13 (-1066) (-593 (-1147)) (-10 -8 (-15 -3845 ($ (-1147)))))
+(((-101) . T) ((-593 (-834)) . T) ((-593 (-1147)) . T) ((-1066) . T))
+((-1611 (($ $) 10)) (-1625 (($ $) 12)))
+(((-93 |#1|) (-10 -8 (-15 -1625 (|#1| |#1|)) (-15 -1611 (|#1| |#1|))) (-94)) (T -93))
+NIL
+(-10 -8 (-15 -1625 (|#1| |#1|)) (-15 -1611 (|#1| |#1|)))
+((-1585 (($ $) 11)) (-1562 (($ $) 10)) (-1611 (($ $) 9)) (-1625 (($ $) 8)) (-1598 (($ $) 7)) (-1575 (($ $) 6)))
(((-94) (-138)) (T -94))
-((-1587 (*1 *1 *1) (-4 *1 (-94))) (-1564 (*1 *1 *1) (-4 *1 (-94))) (-1612 (*1 *1 *1) (-4 *1 (-94))) (-1627 (*1 *1 *1) (-4 *1 (-94))) (-1600 (*1 *1 *1) (-4 *1 (-94))) (-1576 (*1 *1 *1) (-4 *1 (-94))))
-(-13 (-10 -8 (-15 -1576 ($ $)) (-15 -1600 ($ $)) (-15 -1627 ($ $)) (-15 -1612 ($ $)) (-15 -1564 ($ $)) (-15 -1587 ($ $))))
-((-3834 (((-112) $ $) NIL)) (-2481 (((-1148) $) 9)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-95) (-13 (-1050) (-10 -8 (-15 -2481 ((-1148) $))))) (T -95))
-((-2481 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-95)))))
-(-13 (-1050) (-10 -8 (-15 -2481 ((-1148) $))))
-((-3834 (((-112) $ $) NIL)) (-3095 (((-372) (-1125) (-372)) 42) (((-372) (-1125) (-1125) (-372)) 41)) (-2554 (((-372) (-372)) 33)) (-3997 (((-1231)) 36)) (-3851 (((-1125) $) NIL)) (-3529 (((-372) (-1125) (-1125)) 46) (((-372) (-1125)) 48)) (-3990 (((-1087) $) NIL)) (-3103 (((-372) (-1125) (-1125)) 47)) (-3144 (((-372) (-1125) (-1125)) 49) (((-372) (-1125)) 50)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-96) (-13 (-1067) (-10 -7 (-15 -3529 ((-372) (-1125) (-1125))) (-15 -3529 ((-372) (-1125))) (-15 -3144 ((-372) (-1125) (-1125))) (-15 -3144 ((-372) (-1125))) (-15 -3103 ((-372) (-1125) (-1125))) (-15 -3997 ((-1231))) (-15 -2554 ((-372) (-372))) (-15 -3095 ((-372) (-1125) (-372))) (-15 -3095 ((-372) (-1125) (-1125) (-372))) (-6 -4337)))) (T -96))
-((-3529 (*1 *2 *3 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-372)) (-5 *1 (-96)))) (-3529 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-372)) (-5 *1 (-96)))) (-3144 (*1 *2 *3 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-372)) (-5 *1 (-96)))) (-3144 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-372)) (-5 *1 (-96)))) (-3103 (*1 *2 *3 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-372)) (-5 *1 (-96)))) (-3997 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-96)))) (-2554 (*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-96)))) (-3095 (*1 *2 *3 *2) (-12 (-5 *2 (-372)) (-5 *3 (-1125)) (-5 *1 (-96)))) (-3095 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-372)) (-5 *3 (-1125)) (-5 *1 (-96)))))
-(-13 (-1067) (-10 -7 (-15 -3529 ((-372) (-1125) (-1125))) (-15 -3529 ((-372) (-1125))) (-15 -3144 ((-372) (-1125) (-1125))) (-15 -3144 ((-372) (-1125))) (-15 -3103 ((-372) (-1125) (-1125))) (-15 -3997 ((-1231))) (-15 -2554 ((-372) (-372))) (-15 -3095 ((-372) (-1125) (-372))) (-15 -3095 ((-372) (-1125) (-1125) (-372))) (-6 -4337)))
+((-1585 (*1 *1 *1) (-4 *1 (-94))) (-1562 (*1 *1 *1) (-4 *1 (-94))) (-1611 (*1 *1 *1) (-4 *1 (-94))) (-1625 (*1 *1 *1) (-4 *1 (-94))) (-1598 (*1 *1 *1) (-4 *1 (-94))) (-1575 (*1 *1 *1) (-4 *1 (-94))))
+(-13 (-10 -8 (-15 -1575 ($ $)) (-15 -1598 ($ $)) (-15 -1625 ($ $)) (-15 -1611 ($ $)) (-15 -1562 ($ $)) (-15 -1585 ($ $))))
+((-3832 (((-112) $ $) NIL)) (-2479 (((-1101) $) 9)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 17) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-95) (-13 (-1049) (-10 -8 (-15 -2479 ((-1101) $))))) (T -95))
+((-2479 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-95)))))
+(-13 (-1049) (-10 -8 (-15 -2479 ((-1101) $))))
+((-3832 (((-112) $ $) NIL)) (-4127 (((-372) (-1124) (-372)) 42) (((-372) (-1124) (-1124) (-372)) 41)) (-1552 (((-372) (-372)) 33)) (-4108 (((-1230)) 36)) (-3441 (((-1124) $) NIL)) (-3114 (((-372) (-1124) (-1124)) 46) (((-372) (-1124)) 48)) (-3988 (((-1086) $) NIL)) (-3790 (((-372) (-1124) (-1124)) 47)) (-3041 (((-372) (-1124) (-1124)) 49) (((-372) (-1124)) 50)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-96) (-13 (-1066) (-10 -7 (-15 -3114 ((-372) (-1124) (-1124))) (-15 -3114 ((-372) (-1124))) (-15 -3041 ((-372) (-1124) (-1124))) (-15 -3041 ((-372) (-1124))) (-15 -3790 ((-372) (-1124) (-1124))) (-15 -4108 ((-1230))) (-15 -1552 ((-372) (-372))) (-15 -4127 ((-372) (-1124) (-372))) (-15 -4127 ((-372) (-1124) (-1124) (-372))) (-6 -4336)))) (T -96))
+((-3114 (*1 *2 *3 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-372)) (-5 *1 (-96)))) (-3114 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-372)) (-5 *1 (-96)))) (-3041 (*1 *2 *3 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-372)) (-5 *1 (-96)))) (-3041 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-372)) (-5 *1 (-96)))) (-3790 (*1 *2 *3 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-372)) (-5 *1 (-96)))) (-4108 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-96)))) (-1552 (*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-96)))) (-4127 (*1 *2 *3 *2) (-12 (-5 *2 (-372)) (-5 *3 (-1124)) (-5 *1 (-96)))) (-4127 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-372)) (-5 *3 (-1124)) (-5 *1 (-96)))))
+(-13 (-1066) (-10 -7 (-15 -3114 ((-372) (-1124) (-1124))) (-15 -3114 ((-372) (-1124))) (-15 -3041 ((-372) (-1124) (-1124))) (-15 -3041 ((-372) (-1124))) (-15 -3790 ((-372) (-1124) (-1124))) (-15 -4108 ((-1230))) (-15 -1552 ((-372) (-372))) (-15 -4127 ((-372) (-1124) (-372))) (-15 -4127 ((-372) (-1124) (-1124) (-372))) (-6 -4336)))
NIL
(((-97) (-138)) (T -97))
NIL
-(-13 (-10 -7 (-6 -4337) (-6 (-4339 "*")) (-6 -4338) (-6 -4334) (-6 -4332) (-6 -4331) (-6 -4330) (-6 -4335) (-6 -4329) (-6 -4328) (-6 -4327) (-6 -4326) (-6 -4325) (-6 -4333) (-6 -4336) (-6 |NullSquare|) (-6 |JacobiIdentity|) (-6 -4324)))
-((-3834 (((-112) $ $) NIL)) (-1682 (($) NIL T CONST)) (-2114 (((-3 $ "failed") $) NIL)) (-2675 (((-112) $) NIL)) (-1311 (($ (-1 |#1| |#1|)) 25) (($ (-1 |#1| |#1|) (-1 |#1| |#1|)) 24) (($ (-1 |#1| |#1| (-549))) 22)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 14)) (-3990 (((-1087) $) NIL)) (-3341 ((|#1| $ |#1|) 11)) (-1955 (($ $ $) NIL)) (-3293 (($ $ $) NIL)) (-3846 (((-834) $) 20)) (-3287 (($) 8 T CONST)) (-2389 (((-112) $ $) 10)) (-2513 (($ $ $) NIL)) (** (($ $ (-892)) 27) (($ $ (-747)) NIL) (($ $ (-549)) 16)) (* (($ $ $) 28)))
-(((-98 |#1|) (-13 (-465) (-279 |#1| |#1|) (-10 -8 (-15 -1311 ($ (-1 |#1| |#1|))) (-15 -1311 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -1311 ($ (-1 |#1| |#1| (-549)))))) (-1018)) (T -98))
-((-1311 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-98 *3)))) (-1311 (*1 *1 *2 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-98 *3)))) (-1311 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3 (-549))) (-4 *3 (-1018)) (-5 *1 (-98 *3)))))
-(-13 (-465) (-279 |#1| |#1|) (-10 -8 (-15 -1311 ($ (-1 |#1| |#1|))) (-15 -1311 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -1311 ($ (-1 |#1| |#1| (-549))))))
-((-3155 (((-411 |#2|) |#2| (-621 |#2|)) 10) (((-411 |#2|) |#2| |#2|) 11)))
-(((-99 |#1| |#2|) (-10 -7 (-15 -3155 ((-411 |#2|) |#2| |#2|)) (-15 -3155 ((-411 |#2|) |#2| (-621 |#2|)))) (-13 (-444) (-145)) (-1202 |#1|)) (T -99))
-((-3155 (*1 *2 *3 *4) (-12 (-5 *4 (-621 *3)) (-4 *3 (-1202 *5)) (-4 *5 (-13 (-444) (-145))) (-5 *2 (-411 *3)) (-5 *1 (-99 *5 *3)))) (-3155 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-444) (-145))) (-5 *2 (-411 *3)) (-5 *1 (-99 *4 *3)) (-4 *3 (-1202 *4)))))
-(-10 -7 (-15 -3155 ((-411 |#2|) |#2| |#2|)) (-15 -3155 ((-411 |#2|) |#2| (-621 |#2|))))
-((-3834 (((-112) $ $) 10)))
-(((-100 |#1|) (-10 -8 (-15 -3834 ((-112) |#1| |#1|))) (-101)) (T -100))
-NIL
-(-10 -8 (-15 -3834 ((-112) |#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-2389 (((-112) $ $) 6)))
+(-13 (-10 -7 (-6 -4336) (-6 (-4338 "*")) (-6 -4337) (-6 -4333) (-6 -4331) (-6 -4330) (-6 -4329) (-6 -4334) (-6 -4328) (-6 -4327) (-6 -4326) (-6 -4325) (-6 -4324) (-6 -4332) (-6 -4335) (-6 |NullSquare|) (-6 |JacobiIdentity|) (-6 -4323)))
+((-3832 (((-112) $ $) NIL)) (-3034 (($) NIL T CONST)) (-2612 (((-3 $ "failed") $) NIL)) (-2297 (((-112) $) NIL)) (-2569 (($ (-1 |#1| |#1|)) 25) (($ (-1 |#1| |#1|) (-1 |#1| |#1|)) 24) (($ (-1 |#1| |#1| (-549))) 22)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 14)) (-3988 (((-1086) $) NIL)) (-3339 ((|#1| $ |#1|) 11)) (-1795 (($ $ $) NIL)) (-3870 (($ $ $) NIL)) (-3845 (((-834) $) 20)) (-3286 (($) 8 T CONST)) (-2387 (((-112) $ $) 10)) (-2511 (($ $ $) NIL)) (** (($ $ (-892)) 27) (($ $ (-747)) NIL) (($ $ (-549)) 16)) (* (($ $ $) 28)))
+(((-98 |#1|) (-13 (-465) (-279 |#1| |#1|) (-10 -8 (-15 -2569 ($ (-1 |#1| |#1|))) (-15 -2569 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -2569 ($ (-1 |#1| |#1| (-549)))))) (-1018)) (T -98))
+((-2569 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-98 *3)))) (-2569 (*1 *1 *2 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-98 *3)))) (-2569 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3 (-549))) (-4 *3 (-1018)) (-5 *1 (-98 *3)))))
+(-13 (-465) (-279 |#1| |#1|) (-10 -8 (-15 -2569 ($ (-1 |#1| |#1|))) (-15 -2569 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -2569 ($ (-1 |#1| |#1| (-549))))))
+((-1769 (((-411 |#2|) |#2| (-621 |#2|)) 10) (((-411 |#2|) |#2| |#2|) 11)))
+(((-99 |#1| |#2|) (-10 -7 (-15 -1769 ((-411 |#2|) |#2| |#2|)) (-15 -1769 ((-411 |#2|) |#2| (-621 |#2|)))) (-13 (-444) (-145)) (-1201 |#1|)) (T -99))
+((-1769 (*1 *2 *3 *4) (-12 (-5 *4 (-621 *3)) (-4 *3 (-1201 *5)) (-4 *5 (-13 (-444) (-145))) (-5 *2 (-411 *3)) (-5 *1 (-99 *5 *3)))) (-1769 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-444) (-145))) (-5 *2 (-411 *3)) (-5 *1 (-99 *4 *3)) (-4 *3 (-1201 *4)))))
+(-10 -7 (-15 -1769 ((-411 |#2|) |#2| |#2|)) (-15 -1769 ((-411 |#2|) |#2| (-621 |#2|))))
+((-3832 (((-112) $ $) 10)))
+(((-100 |#1|) (-10 -8 (-15 -3832 ((-112) |#1| |#1|))) (-101)) (T -100))
+NIL
+(-10 -8 (-15 -3832 ((-112) |#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-2387 (((-112) $ $) 6)))
(((-101) (-138)) (T -101))
-((-3834 (*1 *2 *1 *1) (-12 (-4 *1 (-101)) (-5 *2 (-112)))) (-2389 (*1 *2 *1 *1) (-12 (-4 *1 (-101)) (-5 *2 (-112)))))
-(-13 (-10 -8 (-15 -2389 ((-112) $ $)) (-15 -3834 ((-112) $ $))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-4161 ((|#1| $) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-2838 ((|#1| $ |#1|) 13 (|has| $ (-6 -4338)))) (-3869 (($ $ $) NIL (|has| $ (-6 -4338)))) (-3811 (($ $ $) NIL (|has| $ (-6 -4338)))) (-2956 (($ $ (-621 |#1|)) 15)) (-2254 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4338))) (($ $ "left" $) NIL (|has| $ (-6 -4338))) (($ $ "right" $) NIL (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) NIL (|has| $ (-6 -4338)))) (-1682 (($) NIL T CONST)) (-3848 (($ $) 11)) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) NIL)) (-3895 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2243 (($ $ |#1| $) 17)) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1621 ((|#1| $ (-1 |#1| |#1| |#1|)) 25) (($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|)) 30)) (-1475 (($ $ |#1| (-1 |#1| |#1| |#1|)) 31) (($ $ |#1| (-1 (-621 |#1|) |#1| |#1| |#1|)) 35)) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3838 (($ $) 10)) (-3591 (((-621 |#1|) $) NIL)) (-2076 (((-112) $) 12)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) 9)) (-3742 (($) 16)) (-3341 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3230 (((-549) $ $) NIL)) (-3497 (((-112) $) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) NIL)) (-1987 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-1275 (($ (-747) |#1|) 19)) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-102 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4337) (-6 -4338) (-15 -1275 ($ (-747) |#1|)) (-15 -2956 ($ $ (-621 |#1|))) (-15 -1621 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -1621 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -1475 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -1475 ($ $ |#1| (-1 (-621 |#1|) |#1| |#1| |#1|))))) (-1067)) (T -102))
-((-1275 (*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *1 (-102 *3)) (-4 *3 (-1067)))) (-2956 (*1 *1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-5 *1 (-102 *3)))) (-1621 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-102 *2)) (-4 *2 (-1067)))) (-1621 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1067)) (-5 *1 (-102 *3)))) (-1475 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1067)) (-5 *1 (-102 *2)))) (-1475 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 (-621 *2) *2 *2 *2)) (-4 *2 (-1067)) (-5 *1 (-102 *2)))))
-(-13 (-125 |#1|) (-10 -8 (-6 -4337) (-6 -4338) (-15 -1275 ($ (-747) |#1|)) (-15 -2956 ($ $ (-621 |#1|))) (-15 -1621 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -1621 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -1475 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -1475 ($ $ |#1| (-1 (-621 |#1|) |#1| |#1| |#1|)))))
-((-3292 ((|#3| |#2| |#2|) 29)) (-2775 ((|#1| |#2| |#2|) 39 (|has| |#1| (-6 (-4339 "*"))))) (-2307 ((|#3| |#2| |#2|) 30)) (-1527 ((|#1| |#2|) 42 (|has| |#1| (-6 (-4339 "*"))))))
-(((-103 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3292 (|#3| |#2| |#2|)) (-15 -2307 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4339 "*"))) (PROGN (-15 -2775 (|#1| |#2| |#2|)) (-15 -1527 (|#1| |#2|))) |%noBranch|)) (-1018) (-1202 |#1|) (-663 |#1| |#4| |#5|) (-366 |#1|) (-366 |#1|)) (T -103))
-((-1527 (*1 *2 *3) (-12 (|has| *2 (-6 (-4339 "*"))) (-4 *5 (-366 *2)) (-4 *6 (-366 *2)) (-4 *2 (-1018)) (-5 *1 (-103 *2 *3 *4 *5 *6)) (-4 *3 (-1202 *2)) (-4 *4 (-663 *2 *5 *6)))) (-2775 (*1 *2 *3 *3) (-12 (|has| *2 (-6 (-4339 "*"))) (-4 *5 (-366 *2)) (-4 *6 (-366 *2)) (-4 *2 (-1018)) (-5 *1 (-103 *2 *3 *4 *5 *6)) (-4 *3 (-1202 *2)) (-4 *4 (-663 *2 *5 *6)))) (-2307 (*1 *2 *3 *3) (-12 (-4 *4 (-1018)) (-4 *2 (-663 *4 *5 *6)) (-5 *1 (-103 *4 *3 *2 *5 *6)) (-4 *3 (-1202 *4)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)))) (-3292 (*1 *2 *3 *3) (-12 (-4 *4 (-1018)) (-4 *2 (-663 *4 *5 *6)) (-5 *1 (-103 *4 *3 *2 *5 *6)) (-4 *3 (-1202 *4)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)))))
-(-10 -7 (-15 -3292 (|#3| |#2| |#2|)) (-15 -2307 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4339 "*"))) (PROGN (-15 -2775 (|#1| |#2| |#2|)) (-15 -1527 (|#1| |#2|))) |%noBranch|))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-1304 (((-621 (-1143))) 33)) (-1752 (((-2 (|:| |zeros| (-1123 (-219))) (|:| |ones| (-1123 (-219))) (|:| |singularities| (-1123 (-219)))) (-1143)) 35)) (-2389 (((-112) $ $) NIL)))
-(((-104) (-13 (-1067) (-10 -7 (-15 -1304 ((-621 (-1143)))) (-15 -1752 ((-2 (|:| |zeros| (-1123 (-219))) (|:| |ones| (-1123 (-219))) (|:| |singularities| (-1123 (-219)))) (-1143))) (-6 -4337)))) (T -104))
-((-1304 (*1 *2) (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-104)))) (-1752 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-2 (|:| |zeros| (-1123 (-219))) (|:| |ones| (-1123 (-219))) (|:| |singularities| (-1123 (-219))))) (-5 *1 (-104)))))
-(-13 (-1067) (-10 -7 (-15 -1304 ((-621 (-1143)))) (-15 -1752 ((-2 (|:| |zeros| (-1123 (-219))) (|:| |ones| (-1123 (-219))) (|:| |singularities| (-1123 (-219)))) (-1143))) (-6 -4337)))
-((-3624 (($ (-621 |#2|)) 11)))
-(((-105 |#1| |#2|) (-10 -8 (-15 -3624 (|#1| (-621 |#2|)))) (-106 |#2|) (-1180)) (T -105))
-NIL
-(-10 -8 (-15 -3624 (|#1| (-621 |#2|))))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-1584 (((-112) $ (-747)) 8)) (-1682 (($) 7 T CONST)) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) 9)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3504 ((|#1| $) 39)) (-2751 (($ |#1| $) 40)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-3325 ((|#1| $) 41)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3624 (($ (-621 |#1|)) 42)) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-106 |#1|) (-138) (-1180)) (T -106))
-((-3624 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-4 *1 (-106 *3)))) (-3325 (*1 *2 *1) (-12 (-4 *1 (-106 *2)) (-4 *2 (-1180)))) (-2751 (*1 *1 *2 *1) (-12 (-4 *1 (-106 *2)) (-4 *2 (-1180)))) (-3504 (*1 *2 *1) (-12 (-4 *1 (-106 *2)) (-4 *2 (-1180)))))
-(-13 (-481 |t#1|) (-10 -8 (-6 -4338) (-15 -3624 ($ (-621 |t#1|))) (-15 -3325 (|t#1| $)) (-15 -2751 ($ |t#1| $)) (-15 -3504 (|t#1| $))))
-(((-34) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-1067) |has| |#1| (-1067)) ((-1180) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3329 (((-549) $) NIL (|has| (-549) (-300)))) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-549) (-880)))) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| (-549) (-880)))) (-3866 (((-112) $ $) NIL)) (-1872 (((-549) $) NIL (|has| (-549) (-796)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL) (((-3 (-1143) "failed") $) NIL (|has| (-549) (-1009 (-1143)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-549) (-1009 (-549)))) (((-3 (-549) "failed") $) NIL (|has| (-549) (-1009 (-549))))) (-2659 (((-549) $) NIL) (((-1143) $) NIL (|has| (-549) (-1009 (-1143)))) (((-400 (-549)) $) NIL (|has| (-549) (-1009 (-549)))) (((-549) $) NIL (|has| (-549) (-1009 (-549))))) (-2095 (($ $ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| (-549) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| (-549) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL) (((-665 (-549)) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) NIL (|has| (-549) (-534)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-2772 (((-112) $) NIL (|has| (-549) (-796)))) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| (-549) (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| (-549) (-857 (-372))))) (-2675 (((-112) $) NIL)) (-1726 (($ $) NIL)) (-1394 (((-549) $) NIL)) (-1681 (((-3 $ "failed") $) NIL (|has| (-549) (-1118)))) (-2374 (((-112) $) NIL (|has| (-549) (-796)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2863 (($ $ $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| (-549) (-823)))) (-2797 (($ (-1 (-549) (-549)) $) NIL)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL (|has| (-549) (-1118)) CONST)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2873 (($ $) NIL (|has| (-549) (-300))) (((-400 (-549)) $) NIL)) (-3967 (((-549) $) NIL (|has| (-549) (-534)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-549) (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-549) (-880)))) (-2121 (((-411 $) $) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2686 (($ $ (-621 (-549)) (-621 (-549))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-549) (-549)) NIL (|has| (-549) (-302 (-549)))) (($ $ (-287 (-549))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-621 (-287 (-549)))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-621 (-1143)) (-621 (-549))) NIL (|has| (-549) (-505 (-1143) (-549)))) (($ $ (-1143) (-549)) NIL (|has| (-549) (-505 (-1143) (-549))))) (-3684 (((-747) $) NIL)) (-3341 (($ $ (-549)) NIL (|has| (-549) (-279 (-549) (-549))))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3456 (($ $) NIL (|has| (-549) (-227))) (($ $ (-747)) NIL (|has| (-549) (-227))) (($ $ (-1143)) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-1 (-549) (-549)) (-747)) NIL) (($ $ (-1 (-549) (-549))) NIL)) (-3939 (($ $) NIL)) (-1403 (((-549) $) NIL)) (-2845 (((-863 (-549)) $) NIL (|has| (-549) (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| (-549) (-594 (-863 (-372))))) (((-525) $) NIL (|has| (-549) (-594 (-525)))) (((-372) $) NIL (|has| (-549) (-993))) (((-219) $) NIL (|has| (-549) (-993)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-549) (-880))))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) 8) (($ (-549)) NIL) (($ (-1143)) NIL (|has| (-549) (-1009 (-1143)))) (((-400 (-549)) $) NIL) (((-975 2) $) 10)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-549) (-880))) (|has| (-549) (-143))))) (-2082 (((-747)) NIL)) (-2546 (((-549) $) NIL (|has| (-549) (-534)))) (-2144 (($ (-400 (-549))) 9)) (-1498 (((-112) $ $) NIL)) (-3212 (($ $) NIL (|has| (-549) (-796)))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $) NIL (|has| (-549) (-227))) (($ $ (-747)) NIL (|has| (-549) (-227))) (($ $ (-1143)) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-1 (-549) (-549)) (-747)) NIL) (($ $ (-1 (-549) (-549))) NIL)) (-2448 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2425 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2412 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2513 (($ $ $) NIL) (($ (-549) (-549)) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ (-549) $) NIL) (($ $ (-549)) NIL)))
-(((-107) (-13 (-963 (-549)) (-10 -8 (-15 -3846 ((-400 (-549)) $)) (-15 -3846 ((-975 2) $)) (-15 -2873 ((-400 (-549)) $)) (-15 -2144 ($ (-400 (-549))))))) (T -107))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-107)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-975 2)) (-5 *1 (-107)))) (-2873 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-107)))) (-2144 (*1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-107)))))
-(-13 (-963 (-549)) (-10 -8 (-15 -3846 ((-400 (-549)) $)) (-15 -3846 ((-975 2) $)) (-15 -2873 ((-400 (-549)) $)) (-15 -2144 ($ (-400 (-549))))))
-((-2773 (((-621 (-936)) $) 14)) (-2481 (((-1143) $) 10)) (-3846 (((-834) $) 23)) (-1560 (($ (-1143) (-621 (-936))) 15)))
-(((-108) (-13 (-593 (-834)) (-10 -8 (-15 -2481 ((-1143) $)) (-15 -2773 ((-621 (-936)) $)) (-15 -1560 ($ (-1143) (-621 (-936))))))) (T -108))
-((-2481 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-108)))) (-2773 (*1 *2 *1) (-12 (-5 *2 (-621 (-936))) (-5 *1 (-108)))) (-1560 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-936))) (-5 *1 (-108)))))
-(-13 (-593 (-834)) (-10 -8 (-15 -2481 ((-1143) $)) (-15 -2773 ((-621 (-936)) $)) (-15 -1560 ($ (-1143) (-621 (-936))))))
-((-3834 (((-112) $ $) NIL)) (-3113 (((-1087) $ (-1087)) 24)) (-2060 (($ $ (-1125)) 17)) (-2023 (((-3 (-1087) "failed") $) 23)) (-3001 (((-1087) $) 21)) (-2849 (((-1087) $ (-1087)) 26)) (-2883 (((-1087) $) 25)) (-1359 (($ (-381)) NIL) (($ (-381) (-1125)) 16)) (-2481 (((-381) $) NIL)) (-3851 (((-1125) $) NIL)) (-2646 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-3578 (($ $) 18)) (-2389 (((-112) $ $) NIL)))
-(((-109) (-13 (-357 (-381) (-1087)) (-10 -8 (-15 -2023 ((-3 (-1087) "failed") $)) (-15 -2883 ((-1087) $)) (-15 -2849 ((-1087) $ (-1087)))))) (T -109))
-((-2023 (*1 *2 *1) (|partial| -12 (-5 *2 (-1087)) (-5 *1 (-109)))) (-2883 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-109)))) (-2849 (*1 *2 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-109)))))
-(-13 (-357 (-381) (-1087)) (-10 -8 (-15 -2023 ((-3 (-1087) "failed") $)) (-15 -2883 ((-1087) $)) (-15 -2849 ((-1087) $ (-1087)))))
-((-3834 (((-112) $ $) NIL)) (-1340 (($ $) NIL)) (-2464 (($ $ $) NIL)) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-4142 (((-112) $) NIL (|has| (-112) (-823))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-4311 (($ $) NIL (-12 (|has| $ (-6 -4338)) (|has| (-112) (-823)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4338)))) (-3193 (($ $) NIL (|has| (-112) (-823))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-2254 (((-112) $ (-1193 (-549)) (-112)) NIL (|has| $ (-6 -4338))) (((-112) $ (-549) (-112)) NIL (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-1585 (($ $) NIL (|has| $ (-6 -4338)))) (-3064 (($ $) NIL)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-112) (-1067))))) (-3812 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4337))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-112) (-1067))))) (-2557 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4337)) (|has| (-112) (-1067))))) (-1879 (((-112) $ (-549) (-112)) NIL (|has| $ (-6 -4338)))) (-1809 (((-112) $ (-549)) NIL)) (-2883 (((-549) (-112) $ (-549)) NIL (|has| (-112) (-1067))) (((-549) (-112) $) NIL (|has| (-112) (-1067))) (((-549) (-1 (-112) (-112)) $) NIL)) (-2989 (((-621 (-112)) $) NIL (|has| $ (-6 -4337)))) (-4207 (($ $ $) NIL)) (-4008 (($ $) NIL)) (-1396 (($ $ $) NIL)) (-3743 (($ (-747) (-112)) 8)) (-4276 (($ $ $) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) NIL (|has| (-549) (-823)))) (-2863 (($ $ $) NIL)) (-3890 (($ $ $) NIL (|has| (-112) (-823))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-1562 (((-621 (-112)) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-112) (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL)) (-1868 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-112) (-112) (-112)) $ $) NIL) (($ (-1 (-112) (-112)) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL)) (-2616 (($ $ $ (-549)) NIL) (($ (-112) $ (-549)) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3990 (((-1087) $) NIL)) (-3646 (((-112) $) NIL (|has| (-549) (-823)))) (-3779 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-1642 (($ $ (-112)) NIL (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-112)) (-621 (-112))) NIL (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1067)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1067)))) (($ $ (-287 (-112))) NIL (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1067)))) (($ $ (-621 (-287 (-112)))) NIL (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-112) (-1067))))) (-2696 (((-621 (-112)) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 (($ $ (-1193 (-549))) NIL) (((-112) $ (-549)) NIL) (((-112) $ (-549) (-112)) NIL)) (-2167 (($ $ (-1193 (-549))) NIL) (($ $ (-549)) NIL)) (-4000 (((-747) (-112) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-112) (-1067)))) (((-747) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4337)))) (-2730 (($ $ $ (-549)) NIL (|has| $ (-6 -4338)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| (-112) (-594 (-525))))) (-3854 (($ (-621 (-112))) NIL)) (-1952 (($ (-621 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-3846 (((-834) $) NIL)) (-1502 (($ (-747) (-112)) 9)) (-3527 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4337)))) (-1821 (($ $ $) NIL)) (-3708 (($ $ $) NIL)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) NIL)) (-3695 (($ $ $) NIL)) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-110) (-13 (-123) (-10 -8 (-15 -1502 ($ (-747) (-112)))))) (T -110))
-((-1502 (*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *3 (-112)) (-5 *1 (-110)))))
-(-13 (-123) (-10 -8 (-15 -1502 ($ (-747) (-112)))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ |#1| $) 23) (($ $ |#2|) 26)))
+((-3832 (*1 *2 *1 *1) (-12 (-4 *1 (-101)) (-5 *2 (-112)))) (-2387 (*1 *2 *1 *1) (-12 (-4 *1 (-101)) (-5 *2 (-112)))))
+(-13 (-10 -8 (-15 -2387 ((-112) $ $)) (-15 -3832 ((-112) $ $))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-4160 ((|#1| $) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-2797 ((|#1| $ |#1|) 13 (|has| $ (-6 -4337)))) (-1735 (($ $ $) NIL (|has| $ (-6 -4337)))) (-1605 (($ $ $) NIL (|has| $ (-6 -4337)))) (-2689 (($ $ (-621 |#1|)) 15)) (-2250 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4337))) (($ $ "left" $) NIL (|has| $ (-6 -4337))) (($ $ "right" $) NIL (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) NIL (|has| $ (-6 -4337)))) (-3034 (($) NIL T CONST)) (-3847 (($ $) 11)) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) NIL)) (-3585 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2237 (($ $ |#1| $) 17)) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2790 ((|#1| $ (-1 |#1| |#1| |#1|)) 25) (($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|)) 30)) (-4081 (($ $ |#1| (-1 |#1| |#1| |#1|)) 31) (($ $ |#1| (-1 (-621 |#1|) |#1| |#1| |#1|)) 35)) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3837 (($ $) 10)) (-3590 (((-621 |#1|) $) NIL)) (-3028 (((-112) $) 12)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) 9)) (-3288 (($) 16)) (-3339 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3541 (((-549) $ $) NIL)) (-2917 (((-112) $) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) NIL)) (-3605 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2480 (($ (-747) |#1|) 19)) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-102 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4336) (-6 -4337) (-15 -2480 ($ (-747) |#1|)) (-15 -2689 ($ $ (-621 |#1|))) (-15 -2790 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -2790 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -4081 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -4081 ($ $ |#1| (-1 (-621 |#1|) |#1| |#1| |#1|))))) (-1066)) (T -102))
+((-2480 (*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *1 (-102 *3)) (-4 *3 (-1066)))) (-2689 (*1 *1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-5 *1 (-102 *3)))) (-2790 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-102 *2)) (-4 *2 (-1066)))) (-2790 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1066)) (-5 *1 (-102 *3)))) (-4081 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1066)) (-5 *1 (-102 *2)))) (-4081 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 (-621 *2) *2 *2 *2)) (-4 *2 (-1066)) (-5 *1 (-102 *2)))))
+(-13 (-125 |#1|) (-10 -8 (-6 -4336) (-6 -4337) (-15 -2480 ($ (-747) |#1|)) (-15 -2689 ($ $ (-621 |#1|))) (-15 -2790 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -2790 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -4081 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -4081 ($ $ |#1| (-1 (-621 |#1|) |#1| |#1| |#1|)))))
+((-1907 ((|#3| |#2| |#2|) 29)) (-2564 ((|#1| |#2| |#2|) 39 (|has| |#1| (-6 (-4338 "*"))))) (-3738 ((|#3| |#2| |#2|) 30)) (-1371 ((|#1| |#2|) 42 (|has| |#1| (-6 (-4338 "*"))))))
+(((-103 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1907 (|#3| |#2| |#2|)) (-15 -3738 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4338 "*"))) (PROGN (-15 -2564 (|#1| |#2| |#2|)) (-15 -1371 (|#1| |#2|))) |%noBranch|)) (-1018) (-1201 |#1|) (-663 |#1| |#4| |#5|) (-366 |#1|) (-366 |#1|)) (T -103))
+((-1371 (*1 *2 *3) (-12 (|has| *2 (-6 (-4338 "*"))) (-4 *5 (-366 *2)) (-4 *6 (-366 *2)) (-4 *2 (-1018)) (-5 *1 (-103 *2 *3 *4 *5 *6)) (-4 *3 (-1201 *2)) (-4 *4 (-663 *2 *5 *6)))) (-2564 (*1 *2 *3 *3) (-12 (|has| *2 (-6 (-4338 "*"))) (-4 *5 (-366 *2)) (-4 *6 (-366 *2)) (-4 *2 (-1018)) (-5 *1 (-103 *2 *3 *4 *5 *6)) (-4 *3 (-1201 *2)) (-4 *4 (-663 *2 *5 *6)))) (-3738 (*1 *2 *3 *3) (-12 (-4 *4 (-1018)) (-4 *2 (-663 *4 *5 *6)) (-5 *1 (-103 *4 *3 *2 *5 *6)) (-4 *3 (-1201 *4)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)))) (-1907 (*1 *2 *3 *3) (-12 (-4 *4 (-1018)) (-4 *2 (-663 *4 *5 *6)) (-5 *1 (-103 *4 *3 *2 *5 *6)) (-4 *3 (-1201 *4)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)))))
+(-10 -7 (-15 -1907 (|#3| |#2| |#2|)) (-15 -3738 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4338 "*"))) (PROGN (-15 -2564 (|#1| |#2| |#2|)) (-15 -1371 (|#1| |#2|))) |%noBranch|))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-3093 (((-621 (-1142))) 33)) (-3542 (((-2 (|:| |zeros| (-1122 (-219))) (|:| |ones| (-1122 (-219))) (|:| |singularities| (-1122 (-219)))) (-1142)) 35)) (-2387 (((-112) $ $) NIL)))
+(((-104) (-13 (-1066) (-10 -7 (-15 -3093 ((-621 (-1142)))) (-15 -3542 ((-2 (|:| |zeros| (-1122 (-219))) (|:| |ones| (-1122 (-219))) (|:| |singularities| (-1122 (-219)))) (-1142))) (-6 -4336)))) (T -104))
+((-3093 (*1 *2) (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-104)))) (-3542 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-2 (|:| |zeros| (-1122 (-219))) (|:| |ones| (-1122 (-219))) (|:| |singularities| (-1122 (-219))))) (-5 *1 (-104)))))
+(-13 (-1066) (-10 -7 (-15 -3093 ((-621 (-1142)))) (-15 -3542 ((-2 (|:| |zeros| (-1122 (-219))) (|:| |ones| (-1122 (-219))) (|:| |singularities| (-1122 (-219)))) (-1142))) (-6 -4336)))
+((-4213 (($ (-621 |#2|)) 11)))
+(((-105 |#1| |#2|) (-10 -8 (-15 -4213 (|#1| (-621 |#2|)))) (-106 |#2|) (-1179)) (T -105))
+NIL
+(-10 -8 (-15 -4213 (|#1| (-621 |#2|))))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-2850 (((-112) $ (-747)) 8)) (-3034 (($) 7 T CONST)) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) 9)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-2548 ((|#1| $) 39)) (-1799 (($ |#1| $) 40)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3536 ((|#1| $) 41)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-4213 (($ (-621 |#1|)) 42)) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-106 |#1|) (-138) (-1179)) (T -106))
+((-4213 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-4 *1 (-106 *3)))) (-3536 (*1 *2 *1) (-12 (-4 *1 (-106 *2)) (-4 *2 (-1179)))) (-1799 (*1 *1 *2 *1) (-12 (-4 *1 (-106 *2)) (-4 *2 (-1179)))) (-2548 (*1 *2 *1) (-12 (-4 *1 (-106 *2)) (-4 *2 (-1179)))))
+(-13 (-481 |t#1|) (-10 -8 (-6 -4337) (-15 -4213 ($ (-621 |t#1|))) (-15 -3536 (|t#1| $)) (-15 -1799 ($ |t#1| $)) (-15 -2548 (|t#1| $))))
+(((-34) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-1066) |has| |#1| (-1066)) ((-1179) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3833 (((-549) $) NIL (|has| (-549) (-300)))) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-549) (-880)))) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| (-549) (-880)))) (-2680 (((-112) $ $) NIL)) (-1741 (((-549) $) NIL (|has| (-549) (-796)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL) (((-3 (-1142) "failed") $) NIL (|has| (-549) (-1009 (-1142)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-549) (-1009 (-549)))) (((-3 (-549) "failed") $) NIL (|has| (-549) (-1009 (-549))))) (-2657 (((-549) $) NIL) (((-1142) $) NIL (|has| (-549) (-1009 (-1142)))) (((-400 (-549)) $) NIL (|has| (-549) (-1009 (-549)))) (((-549) $) NIL (|has| (-549) (-1009 (-549))))) (-2091 (($ $ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| (-549) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| (-549) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL) (((-665 (-549)) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) NIL (|has| (-549) (-534)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-2357 (((-112) $) NIL (|has| (-549) (-796)))) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| (-549) (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| (-549) (-857 (-372))))) (-2297 (((-112) $) NIL)) (-2096 (($ $) NIL)) (-1392 (((-549) $) NIL)) (-2964 (((-3 $ "failed") $) NIL (|has| (-549) (-1117)))) (-1992 (((-112) $) NIL (|has| (-549) (-796)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2861 (($ $ $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| (-549) (-823)))) (-2795 (($ (-1 (-549) (-549)) $) NIL)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL (|has| (-549) (-1117)) CONST)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1512 (($ $) NIL (|has| (-549) (-300))) (((-400 (-549)) $) NIL)) (-1349 (((-549) $) NIL (|has| (-549) (-534)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-549) (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-549) (-880)))) (-2119 (((-411 $) $) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2684 (($ $ (-621 (-549)) (-621 (-549))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-549) (-549)) NIL (|has| (-549) (-302 (-549)))) (($ $ (-287 (-549))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-621 (-287 (-549)))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-621 (-1142)) (-621 (-549))) NIL (|has| (-549) (-505 (-1142) (-549)))) (($ $ (-1142) (-549)) NIL (|has| (-549) (-505 (-1142) (-549))))) (-1335 (((-747) $) NIL)) (-3339 (($ $ (-549)) NIL (|has| (-549) (-279 (-549) (-549))))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3455 (($ $) NIL (|has| (-549) (-227))) (($ $ (-747)) NIL (|has| (-549) (-227))) (($ $ (-1142)) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-1 (-549) (-549)) (-747)) NIL) (($ $ (-1 (-549) (-549))) NIL)) (-4095 (($ $) NIL)) (-1404 (((-549) $) NIL)) (-2843 (((-863 (-549)) $) NIL (|has| (-549) (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| (-549) (-594 (-863 (-372))))) (((-525) $) NIL (|has| (-549) (-594 (-525)))) (((-372) $) NIL (|has| (-549) (-993))) (((-219) $) NIL (|has| (-549) (-993)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-549) (-880))))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) 8) (($ (-549)) NIL) (($ (-1142)) NIL (|has| (-549) (-1009 (-1142)))) (((-400 (-549)) $) NIL) (((-975 2) $) 10)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-549) (-880))) (|has| (-549) (-143))))) (-2371 (((-747)) NIL)) (-3497 (((-549) $) NIL (|has| (-549) (-534)))) (-1351 (($ (-400 (-549))) 9)) (-2441 (((-112) $ $) NIL)) (-2199 (($ $) NIL (|has| (-549) (-796)))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $) NIL (|has| (-549) (-227))) (($ $ (-747)) NIL (|has| (-549) (-227))) (($ $ (-1142)) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-1 (-549) (-549)) (-747)) NIL) (($ $ (-1 (-549) (-549))) NIL)) (-2447 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2423 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2409 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2511 (($ $ $) NIL) (($ (-549) (-549)) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ (-549) $) NIL) (($ $ (-549)) NIL)))
+(((-107) (-13 (-963 (-549)) (-10 -8 (-15 -3845 ((-400 (-549)) $)) (-15 -3845 ((-975 2) $)) (-15 -1512 ((-400 (-549)) $)) (-15 -1351 ($ (-400 (-549))))))) (T -107))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-107)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-975 2)) (-5 *1 (-107)))) (-1512 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-107)))) (-1351 (*1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-107)))))
+(-13 (-963 (-549)) (-10 -8 (-15 -3845 ((-400 (-549)) $)) (-15 -3845 ((-975 2) $)) (-15 -1512 ((-400 (-549)) $)) (-15 -1351 ($ (-400 (-549))))))
+((-2771 (((-621 (-936)) $) 14)) (-2479 (((-1142) $) 10)) (-3845 (((-834) $) 23)) (-3470 (($ (-1142) (-621 (-936))) 15)))
+(((-108) (-13 (-593 (-834)) (-10 -8 (-15 -2479 ((-1142) $)) (-15 -2771 ((-621 (-936)) $)) (-15 -3470 ($ (-1142) (-621 (-936))))))) (T -108))
+((-2479 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-108)))) (-2771 (*1 *2 *1) (-12 (-5 *2 (-621 (-936))) (-5 *1 (-108)))) (-3470 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-936))) (-5 *1 (-108)))))
+(-13 (-593 (-834)) (-10 -8 (-15 -2479 ((-1142) $)) (-15 -2771 ((-621 (-936)) $)) (-15 -3470 ($ (-1142) (-621 (-936))))))
+((-3832 (((-112) $ $) NIL)) (-2145 (((-1086) $ (-1086)) 24)) (-4295 (($ $ (-1124)) 17)) (-3706 (((-3 (-1086) "failed") $) 23)) (-3937 (((-1086) $) 21)) (-2594 (((-1086) $ (-1086)) 26)) (-2881 (((-1086) $) 25)) (-1358 (($ (-381)) NIL) (($ (-381) (-1124)) 16)) (-2479 (((-381) $) NIL)) (-3441 (((-1124) $) NIL)) (-3939 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2384 (($ $) 18)) (-2387 (((-112) $ $) NIL)))
+(((-109) (-13 (-357 (-381) (-1086)) (-10 -8 (-15 -3706 ((-3 (-1086) "failed") $)) (-15 -2881 ((-1086) $)) (-15 -2594 ((-1086) $ (-1086)))))) (T -109))
+((-3706 (*1 *2 *1) (|partial| -12 (-5 *2 (-1086)) (-5 *1 (-109)))) (-2881 (*1 *2 *1) (-12 (-5 *2 (-1086)) (-5 *1 (-109)))) (-2594 (*1 *2 *1 *2) (-12 (-5 *2 (-1086)) (-5 *1 (-109)))))
+(-13 (-357 (-381) (-1086)) (-10 -8 (-15 -3706 ((-3 (-1086) "failed") $)) (-15 -2881 ((-1086) $)) (-15 -2594 ((-1086) $ (-1086)))))
+((-3832 (((-112) $ $) NIL)) (-1339 (($ $) NIL)) (-2461 (($ $ $) NIL)) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-2239 (((-112) $) NIL (|has| (-112) (-823))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-2015 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-112) (-823)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4337)))) (-3191 (($ $) NIL (|has| (-112) (-823))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-2250 (((-112) $ (-1192 (-549)) (-112)) NIL (|has| $ (-6 -4337))) (((-112) $ (-549) (-112)) NIL (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-2918 (($ $) NIL (|has| $ (-6 -4337)))) (-3062 (($ $) NIL)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-112) (-1066))))) (-3812 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4336))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-112) (-1066))))) (-2556 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4336)) (|has| (-112) (-1066))))) (-1875 (((-112) $ (-549) (-112)) NIL (|has| $ (-6 -4337)))) (-1807 (((-112) $ (-549)) NIL)) (-2881 (((-549) (-112) $ (-549)) NIL (|has| (-112) (-1066))) (((-549) (-112) $) NIL (|has| (-112) (-1066))) (((-549) (-1 (-112) (-112)) $) NIL)) (-2987 (((-621 (-112)) $) NIL (|has| $ (-6 -4336)))) (-4206 (($ $ $) NIL)) (-4007 (($ $) NIL)) (-4245 (($ $ $) NIL)) (-3743 (($ (-747) (-112)) 8)) (-2779 (($ $ $) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) NIL (|has| (-549) (-823)))) (-2861 (($ $ $) NIL)) (-3050 (($ $ $) NIL (|has| (-112) (-823))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-3698 (((-621 (-112)) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-112) (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL)) (-1864 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-112) (-112) (-112)) $ $) NIL) (($ (-1 (-112) (-112)) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL)) (-2613 (($ $ $ (-549)) NIL) (($ (-112) $ (-549)) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3988 (((-1086) $) NIL)) (-3645 (((-112) $) NIL (|has| (-549) (-823)))) (-3959 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-1943 (($ $ (-112)) NIL (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-112)) (-621 (-112))) NIL (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1066)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1066)))) (($ $ (-287 (-112))) NIL (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1066)))) (($ $ (-621 (-287 (-112)))) NIL (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-112) (-1066))))) (-3347 (((-621 (-112)) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 (($ $ (-1192 (-549))) NIL) (((-112) $ (-549)) NIL) (((-112) $ (-549) (-112)) NIL)) (-2162 (($ $ (-1192 (-549))) NIL) (($ $ (-549)) NIL)) (-3997 (((-747) (-112) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-112) (-1066)))) (((-747) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4336)))) (-2049 (($ $ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| (-112) (-594 (-525))))) (-3853 (($ (-621 (-112))) NIL)) (-1950 (($ (-621 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-3845 (((-834) $) NIL)) (-2690 (($ (-747) (-112)) 9)) (-3025 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4336)))) (-1819 (($ $ $) NIL)) (-3707 (($ $ $) NIL)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) NIL)) (-3694 (($ $ $) NIL)) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-110) (-13 (-123) (-10 -8 (-15 -2690 ($ (-747) (-112)))))) (T -110))
+((-2690 (*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *3 (-112)) (-5 *1 (-110)))))
+(-13 (-123) (-10 -8 (-15 -2690 ($ (-747) (-112)))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ |#1| $) 23) (($ $ |#2|) 26)))
(((-111 |#1| |#2|) (-138) (-1018) (-1018)) (T -111))
NIL
-(-13 (-624 |t#1|) (-1024 |t#2|) (-10 -7 (-6 -4332) (-6 -4331)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-1024 |#2|) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-1340 (($ $) 10)) (-2464 (($ $ $) 15)) (-1805 (($) 7 T CONST)) (-3764 (($ $) 6)) (-3614 (((-747)) 24)) (-3239 (($) 30)) (-4207 (($ $ $) 13)) (-4008 (($ $) 9)) (-1396 (($ $ $) 16)) (-4276 (($ $ $) 17)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-1881 (((-892) $) 29)) (-3851 (((-1125) $) NIL)) (-3493 (($ (-892)) 28)) (-2442 (($ $ $) 20)) (-3990 (((-1087) $) NIL)) (-3737 (($) 8 T CONST)) (-1583 (($ $ $) 21)) (-2845 (((-525) $) 36)) (-3846 (((-834) $) 39)) (-1821 (($ $ $) 11)) (-3708 (($ $ $) 14)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 19)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 22)) (-3695 (($ $ $) 12)))
-(((-112) (-13 (-817) (-637) (-938) (-594 (-525)) (-10 -8 (-15 -1805 ($) -2589) (-15 -3737 ($) -2589) (-15 -2464 ($ $ $)) (-15 -4276 ($ $ $)) (-15 -1396 ($ $ $)) (-15 -3764 ($ $))))) (T -112))
-((-1805 (*1 *1) (-5 *1 (-112))) (-3737 (*1 *1) (-5 *1 (-112))) (-2464 (*1 *1 *1 *1) (-5 *1 (-112))) (-4276 (*1 *1 *1 *1) (-5 *1 (-112))) (-1396 (*1 *1 *1 *1) (-5 *1 (-112))) (-3764 (*1 *1 *1) (-5 *1 (-112))))
-(-13 (-817) (-637) (-938) (-594 (-525)) (-10 -8 (-15 -1805 ($) -2589) (-15 -3737 ($) -2589) (-15 -2464 ($ $ $)) (-15 -4276 ($ $ $)) (-15 -1396 ($ $ $)) (-15 -3764 ($ $))))
-((-3686 (((-3 (-1 |#1| (-621 |#1|)) "failed") (-114)) 19) (((-114) (-114) (-1 |#1| |#1|)) 13) (((-114) (-114) (-1 |#1| (-621 |#1|))) 11) (((-3 |#1| "failed") (-114) (-621 |#1|)) 21)) (-2101 (((-3 (-621 (-1 |#1| (-621 |#1|))) "failed") (-114)) 25) (((-114) (-114) (-1 |#1| |#1|)) 30) (((-114) (-114) (-621 (-1 |#1| (-621 |#1|)))) 26)) (-3839 (((-114) |#1|) 56 (|has| |#1| (-823)))) (-1676 (((-3 |#1| "failed") (-114)) 50 (|has| |#1| (-823)))))
-(((-113 |#1|) (-10 -7 (-15 -3686 ((-3 |#1| "failed") (-114) (-621 |#1|))) (-15 -3686 ((-114) (-114) (-1 |#1| (-621 |#1|)))) (-15 -3686 ((-114) (-114) (-1 |#1| |#1|))) (-15 -3686 ((-3 (-1 |#1| (-621 |#1|)) "failed") (-114))) (-15 -2101 ((-114) (-114) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2101 ((-114) (-114) (-1 |#1| |#1|))) (-15 -2101 ((-3 (-621 (-1 |#1| (-621 |#1|))) "failed") (-114))) (IF (|has| |#1| (-823)) (PROGN (-15 -3839 ((-114) |#1|)) (-15 -1676 ((-3 |#1| "failed") (-114)))) |%noBranch|)) (-1067)) (T -113))
-((-1676 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-4 *2 (-1067)) (-4 *2 (-823)) (-5 *1 (-113 *2)))) (-3839 (*1 *2 *3) (-12 (-5 *2 (-114)) (-5 *1 (-113 *3)) (-4 *3 (-823)) (-4 *3 (-1067)))) (-2101 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-621 (-1 *4 (-621 *4)))) (-5 *1 (-113 *4)) (-4 *4 (-1067)))) (-2101 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1067)) (-5 *1 (-113 *4)))) (-2101 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-621 (-1 *4 (-621 *4)))) (-4 *4 (-1067)) (-5 *1 (-113 *4)))) (-3686 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-1 *4 (-621 *4))) (-5 *1 (-113 *4)) (-4 *4 (-1067)))) (-3686 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1067)) (-5 *1 (-113 *4)))) (-3686 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 (-621 *4))) (-4 *4 (-1067)) (-5 *1 (-113 *4)))) (-3686 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-621 *2)) (-5 *1 (-113 *2)) (-4 *2 (-1067)))))
-(-10 -7 (-15 -3686 ((-3 |#1| "failed") (-114) (-621 |#1|))) (-15 -3686 ((-114) (-114) (-1 |#1| (-621 |#1|)))) (-15 -3686 ((-114) (-114) (-1 |#1| |#1|))) (-15 -3686 ((-3 (-1 |#1| (-621 |#1|)) "failed") (-114))) (-15 -2101 ((-114) (-114) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2101 ((-114) (-114) (-1 |#1| |#1|))) (-15 -2101 ((-3 (-621 (-1 |#1| (-621 |#1|))) "failed") (-114))) (IF (|has| |#1| (-823)) (PROGN (-15 -3839 ((-114) |#1|)) (-15 -1676 ((-3 |#1| "failed") (-114)))) |%noBranch|))
-((-3834 (((-112) $ $) NIL)) (-1637 (((-747) $) 72) (($ $ (-747)) 30)) (-1776 (((-112) $) 32)) (-4174 (($ $ (-1125) (-750)) 26)) (-2456 (($ $ (-45 (-1125) (-750))) 15)) (-1997 (((-3 (-750) "failed") $ (-1125)) 25)) (-2773 (((-45 (-1125) (-750)) $) 14)) (-2834 (($ (-1143)) 17) (($ (-1143) (-747)) 22)) (-2596 (((-112) $) 31)) (-3203 (((-112) $) 33)) (-2481 (((-1143) $) 8)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3421 (((-112) $ (-1143)) 10)) (-2741 (($ $ (-1 (-525) (-621 (-525)))) 52) (((-3 (-1 (-525) (-621 (-525))) "failed") $) 56)) (-3990 (((-1087) $) NIL)) (-3366 (((-112) $ (-1125)) 29)) (-3765 (($ $ (-1 (-112) $ $)) 35)) (-2699 (((-3 (-1 (-834) (-621 (-834))) "failed") $) 54) (($ $ (-1 (-834) (-621 (-834)))) 41) (($ $ (-1 (-834) (-834))) 43)) (-3412 (($ $ (-1125)) 45)) (-2281 (($ $) 63)) (-4084 (($ $ (-1 (-112) $ $)) 36)) (-3846 (((-834) $) 48)) (-3053 (($ $ (-1125)) 27)) (-2286 (((-3 (-747) "failed") $) 58)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 71)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 79)))
-(((-114) (-13 (-823) (-10 -8 (-15 -2481 ((-1143) $)) (-15 -2773 ((-45 (-1125) (-750)) $)) (-15 -2281 ($ $)) (-15 -2834 ($ (-1143))) (-15 -2834 ($ (-1143) (-747))) (-15 -2286 ((-3 (-747) "failed") $)) (-15 -2596 ((-112) $)) (-15 -1776 ((-112) $)) (-15 -3203 ((-112) $)) (-15 -1637 ((-747) $)) (-15 -1637 ($ $ (-747))) (-15 -3765 ($ $ (-1 (-112) $ $))) (-15 -4084 ($ $ (-1 (-112) $ $))) (-15 -2699 ((-3 (-1 (-834) (-621 (-834))) "failed") $)) (-15 -2699 ($ $ (-1 (-834) (-621 (-834))))) (-15 -2699 ($ $ (-1 (-834) (-834)))) (-15 -2741 ($ $ (-1 (-525) (-621 (-525))))) (-15 -2741 ((-3 (-1 (-525) (-621 (-525))) "failed") $)) (-15 -3421 ((-112) $ (-1143))) (-15 -3366 ((-112) $ (-1125))) (-15 -3053 ($ $ (-1125))) (-15 -3412 ($ $ (-1125))) (-15 -1997 ((-3 (-750) "failed") $ (-1125))) (-15 -4174 ($ $ (-1125) (-750))) (-15 -2456 ($ $ (-45 (-1125) (-750))))))) (T -114))
-((-2481 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-114)))) (-2773 (*1 *2 *1) (-12 (-5 *2 (-45 (-1125) (-750))) (-5 *1 (-114)))) (-2281 (*1 *1 *1) (-5 *1 (-114))) (-2834 (*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-114)))) (-2834 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-747)) (-5 *1 (-114)))) (-2286 (*1 *2 *1) (|partial| -12 (-5 *2 (-747)) (-5 *1 (-114)))) (-2596 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-1776 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-3203 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-1637 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-114)))) (-1637 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-114)))) (-3765 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))) (-4084 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))) (-2699 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-834) (-621 (-834)))) (-5 *1 (-114)))) (-2699 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-834) (-621 (-834)))) (-5 *1 (-114)))) (-2699 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-834) (-834))) (-5 *1 (-114)))) (-2741 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-525) (-621 (-525)))) (-5 *1 (-114)))) (-2741 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-525) (-621 (-525)))) (-5 *1 (-114)))) (-3421 (*1 *2 *1 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-112)) (-5 *1 (-114)))) (-3366 (*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-112)) (-5 *1 (-114)))) (-3053 (*1 *1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-114)))) (-3412 (*1 *1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-114)))) (-1997 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1125)) (-5 *2 (-750)) (-5 *1 (-114)))) (-4174 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1125)) (-5 *3 (-750)) (-5 *1 (-114)))) (-2456 (*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1125) (-750))) (-5 *1 (-114)))))
-(-13 (-823) (-10 -8 (-15 -2481 ((-1143) $)) (-15 -2773 ((-45 (-1125) (-750)) $)) (-15 -2281 ($ $)) (-15 -2834 ($ (-1143))) (-15 -2834 ($ (-1143) (-747))) (-15 -2286 ((-3 (-747) "failed") $)) (-15 -2596 ((-112) $)) (-15 -1776 ((-112) $)) (-15 -3203 ((-112) $)) (-15 -1637 ((-747) $)) (-15 -1637 ($ $ (-747))) (-15 -3765 ($ $ (-1 (-112) $ $))) (-15 -4084 ($ $ (-1 (-112) $ $))) (-15 -2699 ((-3 (-1 (-834) (-621 (-834))) "failed") $)) (-15 -2699 ($ $ (-1 (-834) (-621 (-834))))) (-15 -2699 ($ $ (-1 (-834) (-834)))) (-15 -2741 ($ $ (-1 (-525) (-621 (-525))))) (-15 -2741 ((-3 (-1 (-525) (-621 (-525))) "failed") $)) (-15 -3421 ((-112) $ (-1143))) (-15 -3366 ((-112) $ (-1125))) (-15 -3053 ($ $ (-1125))) (-15 -3412 ($ $ (-1125))) (-15 -1997 ((-3 (-750) "failed") $ (-1125))) (-15 -4174 ($ $ (-1125) (-750))) (-15 -2456 ($ $ (-45 (-1125) (-750))))))
-((-4253 (((-549) |#2|) 37)))
-(((-115 |#1| |#2|) (-10 -7 (-15 -4253 ((-549) |#2|))) (-13 (-356) (-1009 (-400 (-549)))) (-1202 |#1|)) (T -115))
-((-4253 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-1009 (-400 *2)))) (-5 *2 (-549)) (-5 *1 (-115 *4 *3)) (-4 *3 (-1202 *4)))))
-(-10 -7 (-15 -4253 ((-549) |#2|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-2134 (($ $ (-549)) NIL)) (-3866 (((-112) $ $) NIL)) (-1682 (($) NIL T CONST)) (-1885 (($ (-1139 (-549)) (-549)) NIL)) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1538 (($ $) NIL)) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-2088 (((-747) $) NIL)) (-2675 (((-112) $) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1591 (((-549)) NIL)) (-3246 (((-549) $) NIL)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2763 (($ $ (-549)) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3862 (((-1123 (-549)) $) NIL)) (-1977 (($ $) NIL)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL)) (-2082 (((-747)) NIL)) (-1498 (((-112) $ $) NIL)) (-2661 (((-549) $ (-549)) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL)))
+(-13 (-624 |t#1|) (-1024 |t#2|) (-10 -7 (-6 -4331) (-6 -4330)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-1024 |#2|) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-1339 (($ $) 10)) (-2461 (($ $ $) 15)) (-1808 (($) 7 T CONST)) (-3762 (($ $) 6)) (-3614 (((-747)) 24)) (-3237 (($) 30)) (-4206 (($ $ $) 13)) (-4007 (($ $) 9)) (-4245 (($ $ $) 16)) (-2779 (($ $ $) 17)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-3309 (((-892) $) 29)) (-3441 (((-1124) $) NIL)) (-3494 (($ (-892)) 28)) (-2440 (($ $ $) 20)) (-3988 (((-1086) $) NIL)) (-3736 (($) 8 T CONST)) (-2765 (($ $ $) 21)) (-2843 (((-525) $) 36)) (-3845 (((-834) $) 39)) (-1819 (($ $ $) 11)) (-3707 (($ $ $) 14)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 19)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 22)) (-3694 (($ $ $) 12)))
+(((-112) (-13 (-817) (-637) (-938) (-594 (-525)) (-10 -8 (-15 -1808 ($) -2587) (-15 -3736 ($) -2587) (-15 -2461 ($ $ $)) (-15 -2779 ($ $ $)) (-15 -4245 ($ $ $)) (-15 -3762 ($ $))))) (T -112))
+((-1808 (*1 *1) (-5 *1 (-112))) (-3736 (*1 *1) (-5 *1 (-112))) (-2461 (*1 *1 *1 *1) (-5 *1 (-112))) (-2779 (*1 *1 *1 *1) (-5 *1 (-112))) (-4245 (*1 *1 *1 *1) (-5 *1 (-112))) (-3762 (*1 *1 *1) (-5 *1 (-112))))
+(-13 (-817) (-637) (-938) (-594 (-525)) (-10 -8 (-15 -1808 ($) -2587) (-15 -3736 ($) -2587) (-15 -2461 ($ $ $)) (-15 -2779 ($ $ $)) (-15 -4245 ($ $ $)) (-15 -3762 ($ $))))
+((-3295 (((-3 (-1 |#1| (-621 |#1|)) "failed") (-114)) 19) (((-114) (-114) (-1 |#1| |#1|)) 13) (((-114) (-114) (-1 |#1| (-621 |#1|))) 11) (((-3 |#1| "failed") (-114) (-621 |#1|)) 21)) (-3539 (((-3 (-621 (-1 |#1| (-621 |#1|))) "failed") (-114)) 25) (((-114) (-114) (-1 |#1| |#1|)) 30) (((-114) (-114) (-621 (-1 |#1| (-621 |#1|)))) 26)) (-1520 (((-114) |#1|) 56 (|has| |#1| (-823)))) (-3632 (((-3 |#1| "failed") (-114)) 50 (|has| |#1| (-823)))))
+(((-113 |#1|) (-10 -7 (-15 -3295 ((-3 |#1| "failed") (-114) (-621 |#1|))) (-15 -3295 ((-114) (-114) (-1 |#1| (-621 |#1|)))) (-15 -3295 ((-114) (-114) (-1 |#1| |#1|))) (-15 -3295 ((-3 (-1 |#1| (-621 |#1|)) "failed") (-114))) (-15 -3539 ((-114) (-114) (-621 (-1 |#1| (-621 |#1|))))) (-15 -3539 ((-114) (-114) (-1 |#1| |#1|))) (-15 -3539 ((-3 (-621 (-1 |#1| (-621 |#1|))) "failed") (-114))) (IF (|has| |#1| (-823)) (PROGN (-15 -1520 ((-114) |#1|)) (-15 -3632 ((-3 |#1| "failed") (-114)))) |%noBranch|)) (-1066)) (T -113))
+((-3632 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-4 *2 (-1066)) (-4 *2 (-823)) (-5 *1 (-113 *2)))) (-1520 (*1 *2 *3) (-12 (-5 *2 (-114)) (-5 *1 (-113 *3)) (-4 *3 (-823)) (-4 *3 (-1066)))) (-3539 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-621 (-1 *4 (-621 *4)))) (-5 *1 (-113 *4)) (-4 *4 (-1066)))) (-3539 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1066)) (-5 *1 (-113 *4)))) (-3539 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-621 (-1 *4 (-621 *4)))) (-4 *4 (-1066)) (-5 *1 (-113 *4)))) (-3295 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-1 *4 (-621 *4))) (-5 *1 (-113 *4)) (-4 *4 (-1066)))) (-3295 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1066)) (-5 *1 (-113 *4)))) (-3295 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 (-621 *4))) (-4 *4 (-1066)) (-5 *1 (-113 *4)))) (-3295 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-621 *2)) (-5 *1 (-113 *2)) (-4 *2 (-1066)))))
+(-10 -7 (-15 -3295 ((-3 |#1| "failed") (-114) (-621 |#1|))) (-15 -3295 ((-114) (-114) (-1 |#1| (-621 |#1|)))) (-15 -3295 ((-114) (-114) (-1 |#1| |#1|))) (-15 -3295 ((-3 (-1 |#1| (-621 |#1|)) "failed") (-114))) (-15 -3539 ((-114) (-114) (-621 (-1 |#1| (-621 |#1|))))) (-15 -3539 ((-114) (-114) (-1 |#1| |#1|))) (-15 -3539 ((-3 (-621 (-1 |#1| (-621 |#1|))) "failed") (-114))) (IF (|has| |#1| (-823)) (PROGN (-15 -1520 ((-114) |#1|)) (-15 -3632 ((-3 |#1| "failed") (-114)))) |%noBranch|))
+((-3832 (((-112) $ $) NIL)) (-1518 (((-747) $) 72) (($ $ (-747)) 30)) (-4202 (((-112) $) 32)) (-1414 (($ $ (-1124) (-750)) 26)) (-2122 (($ $ (-45 (-1124) (-750))) 15)) (-1996 (((-3 (-750) "failed") $ (-1124)) 25)) (-2771 (((-45 (-1124) (-750)) $) 14)) (-3500 (($ (-1142)) 17) (($ (-1142) (-747)) 22)) (-4300 (((-112) $) 31)) (-3532 (((-112) $) 33)) (-2479 (((-1142) $) 8)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3673 (((-112) $ (-1142)) 10)) (-2739 (($ $ (-1 (-525) (-621 (-525)))) 52) (((-3 (-1 (-525) (-621 (-525))) "failed") $) 56)) (-3988 (((-1086) $) NIL)) (-1547 (((-112) $ (-1124)) 29)) (-2459 (($ $ (-1 (-112) $ $)) 35)) (-2697 (((-3 (-1 (-834) (-621 (-834))) "failed") $) 54) (($ $ (-1 (-834) (-621 (-834)))) 41) (($ $ (-1 (-834) (-834))) 43)) (-3961 (($ $ (-1124)) 45)) (-2279 (($ $) 63)) (-1539 (($ $ (-1 (-112) $ $)) 36)) (-3845 (((-834) $) 48)) (-3051 (($ $ (-1124)) 27)) (-2021 (((-3 (-747) "failed") $) 58)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 71)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 79)))
+(((-114) (-13 (-823) (-10 -8 (-15 -2479 ((-1142) $)) (-15 -2771 ((-45 (-1124) (-750)) $)) (-15 -2279 ($ $)) (-15 -3500 ($ (-1142))) (-15 -3500 ($ (-1142) (-747))) (-15 -2021 ((-3 (-747) "failed") $)) (-15 -4300 ((-112) $)) (-15 -4202 ((-112) $)) (-15 -3532 ((-112) $)) (-15 -1518 ((-747) $)) (-15 -1518 ($ $ (-747))) (-15 -2459 ($ $ (-1 (-112) $ $))) (-15 -1539 ($ $ (-1 (-112) $ $))) (-15 -2697 ((-3 (-1 (-834) (-621 (-834))) "failed") $)) (-15 -2697 ($ $ (-1 (-834) (-621 (-834))))) (-15 -2697 ($ $ (-1 (-834) (-834)))) (-15 -2739 ($ $ (-1 (-525) (-621 (-525))))) (-15 -2739 ((-3 (-1 (-525) (-621 (-525))) "failed") $)) (-15 -3673 ((-112) $ (-1142))) (-15 -1547 ((-112) $ (-1124))) (-15 -3051 ($ $ (-1124))) (-15 -3961 ($ $ (-1124))) (-15 -1996 ((-3 (-750) "failed") $ (-1124))) (-15 -1414 ($ $ (-1124) (-750))) (-15 -2122 ($ $ (-45 (-1124) (-750))))))) (T -114))
+((-2479 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-114)))) (-2771 (*1 *2 *1) (-12 (-5 *2 (-45 (-1124) (-750))) (-5 *1 (-114)))) (-2279 (*1 *1 *1) (-5 *1 (-114))) (-3500 (*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-114)))) (-3500 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-747)) (-5 *1 (-114)))) (-2021 (*1 *2 *1) (|partial| -12 (-5 *2 (-747)) (-5 *1 (-114)))) (-4300 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-4202 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-3532 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-1518 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-114)))) (-1518 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-114)))) (-2459 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))) (-1539 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))) (-2697 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-834) (-621 (-834)))) (-5 *1 (-114)))) (-2697 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-834) (-621 (-834)))) (-5 *1 (-114)))) (-2697 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-834) (-834))) (-5 *1 (-114)))) (-2739 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-525) (-621 (-525)))) (-5 *1 (-114)))) (-2739 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-525) (-621 (-525)))) (-5 *1 (-114)))) (-3673 (*1 *2 *1 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-112)) (-5 *1 (-114)))) (-1547 (*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-112)) (-5 *1 (-114)))) (-3051 (*1 *1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-114)))) (-3961 (*1 *1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-114)))) (-1996 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1124)) (-5 *2 (-750)) (-5 *1 (-114)))) (-1414 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1124)) (-5 *3 (-750)) (-5 *1 (-114)))) (-2122 (*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1124) (-750))) (-5 *1 (-114)))))
+(-13 (-823) (-10 -8 (-15 -2479 ((-1142) $)) (-15 -2771 ((-45 (-1124) (-750)) $)) (-15 -2279 ($ $)) (-15 -3500 ($ (-1142))) (-15 -3500 ($ (-1142) (-747))) (-15 -2021 ((-3 (-747) "failed") $)) (-15 -4300 ((-112) $)) (-15 -4202 ((-112) $)) (-15 -3532 ((-112) $)) (-15 -1518 ((-747) $)) (-15 -1518 ($ $ (-747))) (-15 -2459 ($ $ (-1 (-112) $ $))) (-15 -1539 ($ $ (-1 (-112) $ $))) (-15 -2697 ((-3 (-1 (-834) (-621 (-834))) "failed") $)) (-15 -2697 ($ $ (-1 (-834) (-621 (-834))))) (-15 -2697 ($ $ (-1 (-834) (-834)))) (-15 -2739 ($ $ (-1 (-525) (-621 (-525))))) (-15 -2739 ((-3 (-1 (-525) (-621 (-525))) "failed") $)) (-15 -3673 ((-112) $ (-1142))) (-15 -1547 ((-112) $ (-1124))) (-15 -3051 ($ $ (-1124))) (-15 -3961 ($ $ (-1124))) (-15 -1996 ((-3 (-750) "failed") $ (-1124))) (-15 -1414 ($ $ (-1124) (-750))) (-15 -2122 ($ $ (-45 (-1124) (-750))))))
+((-3619 (((-549) |#2|) 37)))
+(((-115 |#1| |#2|) (-10 -7 (-15 -3619 ((-549) |#2|))) (-13 (-356) (-1009 (-400 (-549)))) (-1201 |#1|)) (T -115))
+((-3619 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-1009 (-400 *2)))) (-5 *2 (-549)) (-5 *1 (-115 *4 *3)) (-4 *3 (-1201 *4)))))
+(-10 -7 (-15 -3619 ((-549) |#2|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-2132 (($ $ (-549)) NIL)) (-2680 (((-112) $ $) NIL)) (-3034 (($) NIL T CONST)) (-3737 (($ (-1138 (-549)) (-549)) NIL)) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-2066 (($ $) NIL)) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-2729 (((-747) $) NIL)) (-2297 (((-112) $) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2107 (((-549)) NIL)) (-3575 (((-549) $) NIL)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3796 (($ $ (-549)) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-2234 (((-1122 (-549)) $) NIL)) (-3958 (($ $) NIL)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL)) (-2371 (((-747)) NIL)) (-2441 (((-112) $ $) NIL)) (-2659 (((-549) $ (-549)) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL)))
(((-116 |#1|) (-840 |#1|) (-549)) (T -116))
NIL
(-840 |#1|)
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3329 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-300)))) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-116 |#1|) (-880)))) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| (-116 |#1|) (-880)))) (-3866 (((-112) $ $) NIL)) (-1872 (((-549) $) NIL (|has| (-116 |#1|) (-796)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-116 |#1|) "failed") $) NIL) (((-3 (-1143) "failed") $) NIL (|has| (-116 |#1|) (-1009 (-1143)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-116 |#1|) (-1009 (-549)))) (((-3 (-549) "failed") $) NIL (|has| (-116 |#1|) (-1009 (-549))))) (-2659 (((-116 |#1|) $) NIL) (((-1143) $) NIL (|has| (-116 |#1|) (-1009 (-1143)))) (((-400 (-549)) $) NIL (|has| (-116 |#1|) (-1009 (-549)))) (((-549) $) NIL (|has| (-116 |#1|) (-1009 (-549))))) (-2294 (($ $) NIL) (($ (-549) $) NIL)) (-2095 (($ $ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| (-116 |#1|) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| (-116 |#1|) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-116 |#1|))) (|:| |vec| (-1226 (-116 |#1|)))) (-665 $) (-1226 $)) NIL) (((-665 (-116 |#1|)) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) NIL (|has| (-116 |#1|) (-534)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-2772 (((-112) $) NIL (|has| (-116 |#1|) (-796)))) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| (-116 |#1|) (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| (-116 |#1|) (-857 (-372))))) (-2675 (((-112) $) NIL)) (-1726 (($ $) NIL)) (-1394 (((-116 |#1|) $) NIL)) (-1681 (((-3 $ "failed") $) NIL (|has| (-116 |#1|) (-1118)))) (-2374 (((-112) $) NIL (|has| (-116 |#1|) (-796)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2863 (($ $ $) NIL (|has| (-116 |#1|) (-823)))) (-3575 (($ $ $) NIL (|has| (-116 |#1|) (-823)))) (-2797 (($ (-1 (-116 |#1|) (-116 |#1|)) $) NIL)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL (|has| (-116 |#1|) (-1118)) CONST)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2873 (($ $) NIL (|has| (-116 |#1|) (-300)))) (-3967 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-534)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-116 |#1|) (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-116 |#1|) (-880)))) (-2121 (((-411 $) $) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2686 (($ $ (-621 (-116 |#1|)) (-621 (-116 |#1|))) NIL (|has| (-116 |#1|) (-302 (-116 |#1|)))) (($ $ (-116 |#1|) (-116 |#1|)) NIL (|has| (-116 |#1|) (-302 (-116 |#1|)))) (($ $ (-287 (-116 |#1|))) NIL (|has| (-116 |#1|) (-302 (-116 |#1|)))) (($ $ (-621 (-287 (-116 |#1|)))) NIL (|has| (-116 |#1|) (-302 (-116 |#1|)))) (($ $ (-621 (-1143)) (-621 (-116 |#1|))) NIL (|has| (-116 |#1|) (-505 (-1143) (-116 |#1|)))) (($ $ (-1143) (-116 |#1|)) NIL (|has| (-116 |#1|) (-505 (-1143) (-116 |#1|))))) (-3684 (((-747) $) NIL)) (-3341 (($ $ (-116 |#1|)) NIL (|has| (-116 |#1|) (-279 (-116 |#1|) (-116 |#1|))))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3456 (($ $) NIL (|has| (-116 |#1|) (-227))) (($ $ (-747)) NIL (|has| (-116 |#1|) (-227))) (($ $ (-1143)) NIL (|has| (-116 |#1|) (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| (-116 |#1|) (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| (-116 |#1|) (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| (-116 |#1|) (-871 (-1143)))) (($ $ (-1 (-116 |#1|) (-116 |#1|)) (-747)) NIL) (($ $ (-1 (-116 |#1|) (-116 |#1|))) NIL)) (-3939 (($ $) NIL)) (-1403 (((-116 |#1|) $) NIL)) (-2845 (((-863 (-549)) $) NIL (|has| (-116 |#1|) (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| (-116 |#1|) (-594 (-863 (-372))))) (((-525) $) NIL (|has| (-116 |#1|) (-594 (-525)))) (((-372) $) NIL (|has| (-116 |#1|) (-993))) (((-219) $) NIL (|has| (-116 |#1|) (-993)))) (-4116 (((-172 (-400 (-549))) $) NIL)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-116 |#1|) (-880))))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-116 |#1|)) NIL) (($ (-1143)) NIL (|has| (-116 |#1|) (-1009 (-1143))))) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-116 |#1|) (-880))) (|has| (-116 |#1|) (-143))))) (-2082 (((-747)) NIL)) (-2546 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-534)))) (-1498 (((-112) $ $) NIL)) (-2661 (((-400 (-549)) $ (-549)) NIL)) (-3212 (($ $) NIL (|has| (-116 |#1|) (-796)))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $) NIL (|has| (-116 |#1|) (-227))) (($ $ (-747)) NIL (|has| (-116 |#1|) (-227))) (($ $ (-1143)) NIL (|has| (-116 |#1|) (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| (-116 |#1|) (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| (-116 |#1|) (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| (-116 |#1|) (-871 (-1143)))) (($ $ (-1 (-116 |#1|) (-116 |#1|)) (-747)) NIL) (($ $ (-1 (-116 |#1|) (-116 |#1|))) NIL)) (-2448 (((-112) $ $) NIL (|has| (-116 |#1|) (-823)))) (-2425 (((-112) $ $) NIL (|has| (-116 |#1|) (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| (-116 |#1|) (-823)))) (-2412 (((-112) $ $) NIL (|has| (-116 |#1|) (-823)))) (-2513 (($ $ $) NIL) (($ (-116 |#1|) (-116 |#1|)) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ (-116 |#1|) $) NIL) (($ $ (-116 |#1|)) NIL)))
-(((-117 |#1|) (-13 (-963 (-116 |#1|)) (-10 -8 (-15 -2661 ((-400 (-549)) $ (-549))) (-15 -4116 ((-172 (-400 (-549))) $)) (-15 -2294 ($ $)) (-15 -2294 ($ (-549) $)))) (-549)) (T -117))
-((-2661 (*1 *2 *1 *3) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-117 *4)) (-14 *4 *3) (-5 *3 (-549)))) (-4116 (*1 *2 *1) (-12 (-5 *2 (-172 (-400 (-549)))) (-5 *1 (-117 *3)) (-14 *3 (-549)))) (-2294 (*1 *1 *1) (-12 (-5 *1 (-117 *2)) (-14 *2 (-549)))) (-2294 (*1 *1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-117 *3)) (-14 *3 *2))))
-(-13 (-963 (-116 |#1|)) (-10 -8 (-15 -2661 ((-400 (-549)) $ (-549))) (-15 -4116 ((-172 (-400 (-549))) $)) (-15 -2294 ($ $)) (-15 -2294 ($ (-549) $))))
-((-2254 ((|#2| $ "value" |#2|) NIL) (($ $ "left" $) 49) (($ $ "right" $) 51)) (-3075 (((-621 $) $) 27)) (-3895 (((-112) $ $) 32)) (-2090 (((-112) |#2| $) 36)) (-3591 (((-621 |#2|) $) 22)) (-2076 (((-112) $) 16)) (-3341 ((|#2| $ "value") NIL) (($ $ "left") 10) (($ $ "right") 13)) (-3497 (((-112) $) 45)) (-3846 (((-834) $) 41)) (-2742 (((-621 $) $) 28)) (-2389 (((-112) $ $) 34)) (-3775 (((-747) $) 43)))
-(((-118 |#1| |#2|) (-10 -8 (-15 -3846 ((-834) |#1|)) (-15 -2254 (|#1| |#1| "right" |#1|)) (-15 -2254 (|#1| |#1| "left" |#1|)) (-15 -3341 (|#1| |#1| "right")) (-15 -3341 (|#1| |#1| "left")) (-15 -2254 (|#2| |#1| "value" |#2|)) (-15 -3895 ((-112) |#1| |#1|)) (-15 -3591 ((-621 |#2|) |#1|)) (-15 -3497 ((-112) |#1|)) (-15 -3341 (|#2| |#1| "value")) (-15 -2076 ((-112) |#1|)) (-15 -3075 ((-621 |#1|) |#1|)) (-15 -2742 ((-621 |#1|) |#1|)) (-15 -2389 ((-112) |#1| |#1|)) (-15 -2090 ((-112) |#2| |#1|)) (-15 -3775 ((-747) |#1|))) (-119 |#2|) (-1180)) (T -118))
-NIL
-(-10 -8 (-15 -3846 ((-834) |#1|)) (-15 -2254 (|#1| |#1| "right" |#1|)) (-15 -2254 (|#1| |#1| "left" |#1|)) (-15 -3341 (|#1| |#1| "right")) (-15 -3341 (|#1| |#1| "left")) (-15 -2254 (|#2| |#1| "value" |#2|)) (-15 -3895 ((-112) |#1| |#1|)) (-15 -3591 ((-621 |#2|) |#1|)) (-15 -3497 ((-112) |#1|)) (-15 -3341 (|#2| |#1| "value")) (-15 -2076 ((-112) |#1|)) (-15 -3075 ((-621 |#1|) |#1|)) (-15 -2742 ((-621 |#1|) |#1|)) (-15 -2389 ((-112) |#1| |#1|)) (-15 -2090 ((-112) |#2| |#1|)) (-15 -3775 ((-747) |#1|)))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-4161 ((|#1| $) 48)) (-1584 (((-112) $ (-747)) 8)) (-2838 ((|#1| $ |#1|) 39 (|has| $ (-6 -4338)))) (-3869 (($ $ $) 52 (|has| $ (-6 -4338)))) (-3811 (($ $ $) 54 (|has| $ (-6 -4338)))) (-2254 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4338))) (($ $ "left" $) 55 (|has| $ (-6 -4338))) (($ $ "right" $) 53 (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) 41 (|has| $ (-6 -4338)))) (-1682 (($) 7 T CONST)) (-3848 (($ $) 57)) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) 50)) (-3895 (((-112) $ $) 42 (|has| |#1| (-1067)))) (-3194 (((-112) $ (-747)) 9)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-3838 (($ $) 59)) (-3591 (((-621 |#1|) $) 45)) (-2076 (((-112) $) 49)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-3230 (((-549) $ $) 44)) (-3497 (((-112) $) 46)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) 51)) (-1987 (((-112) $ $) 43 (|has| |#1| (-1067)))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-119 |#1|) (-138) (-1180)) (T -119))
-((-3838 (*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1180)))) (-3341 (*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-119 *3)) (-4 *3 (-1180)))) (-3848 (*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1180)))) (-3341 (*1 *1 *1 *2) (-12 (-5 *2 "right") (-4 *1 (-119 *3)) (-4 *3 (-1180)))) (-2254 (*1 *1 *1 *2 *1) (-12 (-5 *2 "left") (|has| *1 (-6 -4338)) (-4 *1 (-119 *3)) (-4 *3 (-1180)))) (-3811 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-119 *2)) (-4 *2 (-1180)))) (-2254 (*1 *1 *1 *2 *1) (-12 (-5 *2 "right") (|has| *1 (-6 -4338)) (-4 *1 (-119 *3)) (-4 *3 (-1180)))) (-3869 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-119 *2)) (-4 *2 (-1180)))))
-(-13 (-981 |t#1|) (-10 -8 (-15 -3838 ($ $)) (-15 -3341 ($ $ "left")) (-15 -3848 ($ $)) (-15 -3341 ($ $ "right")) (IF (|has| $ (-6 -4338)) (PROGN (-15 -2254 ($ $ "left" $)) (-15 -3811 ($ $ $)) (-15 -2254 ($ $ "right" $)) (-15 -3869 ($ $ $))) |%noBranch|)))
-(((-34) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-981 |#1|) . T) ((-1067) |has| |#1| (-1067)) ((-1180) . T))
-((-4190 (((-112) |#1|) 24)) (-2241 (((-747) (-747)) 23) (((-747)) 22)) (-3499 (((-112) |#1| (-112)) 25) (((-112) |#1|) 26)))
-(((-120 |#1|) (-10 -7 (-15 -3499 ((-112) |#1|)) (-15 -3499 ((-112) |#1| (-112))) (-15 -2241 ((-747))) (-15 -2241 ((-747) (-747))) (-15 -4190 ((-112) |#1|))) (-1202 (-549))) (T -120))
-((-4190 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1202 (-549))))) (-2241 (*1 *2 *2) (-12 (-5 *2 (-747)) (-5 *1 (-120 *3)) (-4 *3 (-1202 (-549))))) (-2241 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-120 *3)) (-4 *3 (-1202 (-549))))) (-3499 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1202 (-549))))) (-3499 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1202 (-549))))))
-(-10 -7 (-15 -3499 ((-112) |#1|)) (-15 -3499 ((-112) |#1| (-112))) (-15 -2241 ((-747))) (-15 -2241 ((-747) (-747))) (-15 -4190 ((-112) |#1|)))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-4161 ((|#1| $) 15)) (-3628 (((-2 (|:| |less| $) (|:| |greater| $)) |#1| $) 22)) (-1584 (((-112) $ (-747)) NIL)) (-2838 ((|#1| $ |#1|) NIL (|has| $ (-6 -4338)))) (-3869 (($ $ $) 18 (|has| $ (-6 -4338)))) (-3811 (($ $ $) 20 (|has| $ (-6 -4338)))) (-2254 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4338))) (($ $ "left" $) NIL (|has| $ (-6 -4338))) (($ $ "right" $) NIL (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) NIL (|has| $ (-6 -4338)))) (-1682 (($) NIL T CONST)) (-3848 (($ $) 17)) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) NIL)) (-3895 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2243 (($ $ |#1| $) 23)) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3838 (($ $) 19)) (-3591 (((-621 |#1|) $) NIL)) (-2076 (((-112) $) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3360 (($ |#1| $) 24)) (-2751 (($ |#1| $) 10)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) 14)) (-3742 (($) 8)) (-3341 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3230 (((-549) $ $) NIL)) (-3497 (((-112) $) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) NIL)) (-1987 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-1548 (($ (-621 |#1|)) 12)) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-121 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4338) (-6 -4337) (-15 -1548 ($ (-621 |#1|))) (-15 -2751 ($ |#1| $)) (-15 -3360 ($ |#1| $)) (-15 -3628 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $)))) (-823)) (T -121))
-((-1548 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-121 *3)))) (-2751 (*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-823)))) (-3360 (*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-823)))) (-3628 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |less| (-121 *3)) (|:| |greater| (-121 *3)))) (-5 *1 (-121 *3)) (-4 *3 (-823)))))
-(-13 (-125 |#1|) (-10 -8 (-6 -4338) (-6 -4337) (-15 -1548 ($ (-621 |#1|))) (-15 -2751 ($ |#1| $)) (-15 -3360 ($ |#1| $)) (-15 -3628 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $))))
-((-1340 (($ $) 13)) (-4008 (($ $) 11)) (-1396 (($ $ $) 23)) (-4276 (($ $ $) 21)) (-3708 (($ $ $) 19)) (-3695 (($ $ $) 17)))
-(((-122 |#1|) (-10 -8 (-15 -1396 (|#1| |#1| |#1|)) (-15 -4276 (|#1| |#1| |#1|)) (-15 -4008 (|#1| |#1|)) (-15 -1340 (|#1| |#1|)) (-15 -3695 (|#1| |#1| |#1|)) (-15 -3708 (|#1| |#1| |#1|))) (-123)) (T -122))
-NIL
-(-10 -8 (-15 -1396 (|#1| |#1| |#1|)) (-15 -4276 (|#1| |#1| |#1|)) (-15 -4008 (|#1| |#1|)) (-15 -1340 (|#1| |#1|)) (-15 -3695 (|#1| |#1| |#1|)) (-15 -3708 (|#1| |#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-1340 (($ $) 103)) (-2464 (($ $ $) 25)) (-1535 (((-1231) $ (-549) (-549)) 66 (|has| $ (-6 -4338)))) (-4142 (((-112) $) 98 (|has| (-112) (-823))) (((-112) (-1 (-112) (-112) (-112)) $) 92)) (-4311 (($ $) 102 (-12 (|has| (-112) (-823)) (|has| $ (-6 -4338)))) (($ (-1 (-112) (-112) (-112)) $) 101 (|has| $ (-6 -4338)))) (-3193 (($ $) 97 (|has| (-112) (-823))) (($ (-1 (-112) (-112) (-112)) $) 91)) (-1584 (((-112) $ (-747)) 37)) (-2254 (((-112) $ (-1193 (-549)) (-112)) 88 (|has| $ (-6 -4338))) (((-112) $ (-549) (-112)) 54 (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) (-112)) $) 71 (|has| $ (-6 -4337)))) (-1682 (($) 38 T CONST)) (-1585 (($ $) 100 (|has| $ (-6 -4338)))) (-3064 (($ $) 90)) (-3676 (($ $) 68 (-12 (|has| (-112) (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ (-1 (-112) (-112)) $) 72 (|has| $ (-6 -4337))) (($ (-112) $) 69 (-12 (|has| (-112) (-1067)) (|has| $ (-6 -4337))))) (-2557 (((-112) (-1 (-112) (-112) (-112)) $) 74 (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) 73 (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) 70 (-12 (|has| (-112) (-1067)) (|has| $ (-6 -4337))))) (-1879 (((-112) $ (-549) (-112)) 53 (|has| $ (-6 -4338)))) (-1809 (((-112) $ (-549)) 55)) (-2883 (((-549) (-112) $ (-549)) 95 (|has| (-112) (-1067))) (((-549) (-112) $) 94 (|has| (-112) (-1067))) (((-549) (-1 (-112) (-112)) $) 93)) (-2989 (((-621 (-112)) $) 45 (|has| $ (-6 -4337)))) (-4207 (($ $ $) 26)) (-4008 (($ $) 30)) (-1396 (($ $ $) 28)) (-3743 (($ (-747) (-112)) 77)) (-4276 (($ $ $) 29)) (-3194 (((-112) $ (-747)) 36)) (-4031 (((-549) $) 63 (|has| (-549) (-823)))) (-2863 (($ $ $) 13)) (-3890 (($ $ $) 96 (|has| (-112) (-823))) (($ (-1 (-112) (-112) (-112)) $ $) 89)) (-1562 (((-621 (-112)) $) 46 (|has| $ (-6 -4337)))) (-2090 (((-112) (-112) $) 48 (-12 (|has| (-112) (-1067)) (|has| $ (-6 -4337))))) (-1569 (((-549) $) 62 (|has| (-549) (-823)))) (-3575 (($ $ $) 14)) (-1868 (($ (-1 (-112) (-112)) $) 41 (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-112) (-112) (-112)) $ $) 82) (($ (-1 (-112) (-112)) $) 40)) (-1508 (((-112) $ (-747)) 35)) (-3851 (((-1125) $) 9)) (-2616 (($ $ $ (-549)) 87) (($ (-112) $ (-549)) 86)) (-3303 (((-621 (-549)) $) 60)) (-3761 (((-112) (-549) $) 59)) (-3990 (((-1087) $) 10)) (-3646 (((-112) $) 64 (|has| (-549) (-823)))) (-3779 (((-3 (-112) "failed") (-1 (-112) (-112)) $) 75)) (-1642 (($ $ (-112)) 65 (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) (-112)) $) 43 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-112)) (-621 (-112))) 52 (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1067)))) (($ $ (-112) (-112)) 51 (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1067)))) (($ $ (-287 (-112))) 50 (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1067)))) (($ $ (-621 (-287 (-112)))) 49 (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1067))))) (-4144 (((-112) $ $) 31)) (-2265 (((-112) (-112) $) 61 (-12 (|has| $ (-6 -4337)) (|has| (-112) (-1067))))) (-2696 (((-621 (-112)) $) 58)) (-3670 (((-112) $) 34)) (-3742 (($) 33)) (-3341 (($ $ (-1193 (-549))) 83) (((-112) $ (-549)) 57) (((-112) $ (-549) (-112)) 56)) (-2167 (($ $ (-1193 (-549))) 85) (($ $ (-549)) 84)) (-4000 (((-747) (-112) $) 47 (-12 (|has| (-112) (-1067)) (|has| $ (-6 -4337)))) (((-747) (-1 (-112) (-112)) $) 44 (|has| $ (-6 -4337)))) (-2730 (($ $ $ (-549)) 99 (|has| $ (-6 -4338)))) (-2281 (($ $) 32)) (-2845 (((-525) $) 67 (|has| (-112) (-594 (-525))))) (-3854 (($ (-621 (-112))) 76)) (-1952 (($ (-621 $)) 81) (($ $ $) 80) (($ (-112) $) 79) (($ $ (-112)) 78)) (-3846 (((-834) $) 11)) (-3527 (((-112) (-1 (-112) (-112)) $) 42 (|has| $ (-6 -4337)))) (-1821 (($ $ $) 27)) (-3708 (($ $ $) 105)) (-2448 (((-112) $ $) 16)) (-2425 (((-112) $ $) 17)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 15)) (-2412 (((-112) $ $) 18)) (-3695 (($ $ $) 104)) (-3775 (((-747) $) 39 (|has| $ (-6 -4337)))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3833 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-300)))) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-116 |#1|) (-880)))) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| (-116 |#1|) (-880)))) (-2680 (((-112) $ $) NIL)) (-1741 (((-549) $) NIL (|has| (-116 |#1|) (-796)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-116 |#1|) "failed") $) NIL) (((-3 (-1142) "failed") $) NIL (|has| (-116 |#1|) (-1009 (-1142)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-116 |#1|) (-1009 (-549)))) (((-3 (-549) "failed") $) NIL (|has| (-116 |#1|) (-1009 (-549))))) (-2657 (((-116 |#1|) $) NIL) (((-1142) $) NIL (|has| (-116 |#1|) (-1009 (-1142)))) (((-400 (-549)) $) NIL (|has| (-116 |#1|) (-1009 (-549)))) (((-549) $) NIL (|has| (-116 |#1|) (-1009 (-549))))) (-1904 (($ $) NIL) (($ (-549) $) NIL)) (-2091 (($ $ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| (-116 |#1|) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| (-116 |#1|) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-116 |#1|))) (|:| |vec| (-1225 (-116 |#1|)))) (-665 $) (-1225 $)) NIL) (((-665 (-116 |#1|)) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) NIL (|has| (-116 |#1|) (-534)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-2357 (((-112) $) NIL (|has| (-116 |#1|) (-796)))) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| (-116 |#1|) (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| (-116 |#1|) (-857 (-372))))) (-2297 (((-112) $) NIL)) (-2096 (($ $) NIL)) (-1392 (((-116 |#1|) $) NIL)) (-2964 (((-3 $ "failed") $) NIL (|has| (-116 |#1|) (-1117)))) (-1992 (((-112) $) NIL (|has| (-116 |#1|) (-796)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2861 (($ $ $) NIL (|has| (-116 |#1|) (-823)))) (-3574 (($ $ $) NIL (|has| (-116 |#1|) (-823)))) (-2795 (($ (-1 (-116 |#1|) (-116 |#1|)) $) NIL)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL (|has| (-116 |#1|) (-1117)) CONST)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1512 (($ $) NIL (|has| (-116 |#1|) (-300)))) (-1349 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-534)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-116 |#1|) (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-116 |#1|) (-880)))) (-2119 (((-411 $) $) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2684 (($ $ (-621 (-116 |#1|)) (-621 (-116 |#1|))) NIL (|has| (-116 |#1|) (-302 (-116 |#1|)))) (($ $ (-116 |#1|) (-116 |#1|)) NIL (|has| (-116 |#1|) (-302 (-116 |#1|)))) (($ $ (-287 (-116 |#1|))) NIL (|has| (-116 |#1|) (-302 (-116 |#1|)))) (($ $ (-621 (-287 (-116 |#1|)))) NIL (|has| (-116 |#1|) (-302 (-116 |#1|)))) (($ $ (-621 (-1142)) (-621 (-116 |#1|))) NIL (|has| (-116 |#1|) (-505 (-1142) (-116 |#1|)))) (($ $ (-1142) (-116 |#1|)) NIL (|has| (-116 |#1|) (-505 (-1142) (-116 |#1|))))) (-1335 (((-747) $) NIL)) (-3339 (($ $ (-116 |#1|)) NIL (|has| (-116 |#1|) (-279 (-116 |#1|) (-116 |#1|))))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3455 (($ $) NIL (|has| (-116 |#1|) (-227))) (($ $ (-747)) NIL (|has| (-116 |#1|) (-227))) (($ $ (-1142)) NIL (|has| (-116 |#1|) (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| (-116 |#1|) (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| (-116 |#1|) (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| (-116 |#1|) (-871 (-1142)))) (($ $ (-1 (-116 |#1|) (-116 |#1|)) (-747)) NIL) (($ $ (-1 (-116 |#1|) (-116 |#1|))) NIL)) (-4095 (($ $) NIL)) (-1404 (((-116 |#1|) $) NIL)) (-2843 (((-863 (-549)) $) NIL (|has| (-116 |#1|) (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| (-116 |#1|) (-594 (-863 (-372))))) (((-525) $) NIL (|has| (-116 |#1|) (-594 (-525)))) (((-372) $) NIL (|has| (-116 |#1|) (-993))) (((-219) $) NIL (|has| (-116 |#1|) (-993)))) (-2455 (((-172 (-400 (-549))) $) NIL)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-116 |#1|) (-880))))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-116 |#1|)) NIL) (($ (-1142)) NIL (|has| (-116 |#1|) (-1009 (-1142))))) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-116 |#1|) (-880))) (|has| (-116 |#1|) (-143))))) (-2371 (((-747)) NIL)) (-3497 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-534)))) (-2441 (((-112) $ $) NIL)) (-2659 (((-400 (-549)) $ (-549)) NIL)) (-2199 (($ $) NIL (|has| (-116 |#1|) (-796)))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $) NIL (|has| (-116 |#1|) (-227))) (($ $ (-747)) NIL (|has| (-116 |#1|) (-227))) (($ $ (-1142)) NIL (|has| (-116 |#1|) (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| (-116 |#1|) (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| (-116 |#1|) (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| (-116 |#1|) (-871 (-1142)))) (($ $ (-1 (-116 |#1|) (-116 |#1|)) (-747)) NIL) (($ $ (-1 (-116 |#1|) (-116 |#1|))) NIL)) (-2447 (((-112) $ $) NIL (|has| (-116 |#1|) (-823)))) (-2423 (((-112) $ $) NIL (|has| (-116 |#1|) (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| (-116 |#1|) (-823)))) (-2409 (((-112) $ $) NIL (|has| (-116 |#1|) (-823)))) (-2511 (($ $ $) NIL) (($ (-116 |#1|) (-116 |#1|)) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ (-116 |#1|) $) NIL) (($ $ (-116 |#1|)) NIL)))
+(((-117 |#1|) (-13 (-963 (-116 |#1|)) (-10 -8 (-15 -2659 ((-400 (-549)) $ (-549))) (-15 -2455 ((-172 (-400 (-549))) $)) (-15 -1904 ($ $)) (-15 -1904 ($ (-549) $)))) (-549)) (T -117))
+((-2659 (*1 *2 *1 *3) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-117 *4)) (-14 *4 *3) (-5 *3 (-549)))) (-2455 (*1 *2 *1) (-12 (-5 *2 (-172 (-400 (-549)))) (-5 *1 (-117 *3)) (-14 *3 (-549)))) (-1904 (*1 *1 *1) (-12 (-5 *1 (-117 *2)) (-14 *2 (-549)))) (-1904 (*1 *1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-117 *3)) (-14 *3 *2))))
+(-13 (-963 (-116 |#1|)) (-10 -8 (-15 -2659 ((-400 (-549)) $ (-549))) (-15 -2455 ((-172 (-400 (-549))) $)) (-15 -1904 ($ $)) (-15 -1904 ($ (-549) $))))
+((-2250 ((|#2| $ "value" |#2|) NIL) (($ $ "left" $) 49) (($ $ "right" $) 51)) (-3747 (((-621 $) $) 27)) (-3585 (((-112) $ $) 32)) (-1593 (((-112) |#2| $) 36)) (-3590 (((-621 |#2|) $) 22)) (-3028 (((-112) $) 16)) (-3339 ((|#2| $ "value") NIL) (($ $ "left") 10) (($ $ "right") 13)) (-2917 (((-112) $) 45)) (-3845 (((-834) $) 41)) (-2095 (((-621 $) $) 28)) (-2387 (((-112) $ $) 34)) (-3774 (((-747) $) 43)))
+(((-118 |#1| |#2|) (-10 -8 (-15 -3845 ((-834) |#1|)) (-15 -2250 (|#1| |#1| "right" |#1|)) (-15 -2250 (|#1| |#1| "left" |#1|)) (-15 -3339 (|#1| |#1| "right")) (-15 -3339 (|#1| |#1| "left")) (-15 -2250 (|#2| |#1| "value" |#2|)) (-15 -3585 ((-112) |#1| |#1|)) (-15 -3590 ((-621 |#2|) |#1|)) (-15 -2917 ((-112) |#1|)) (-15 -3339 (|#2| |#1| "value")) (-15 -3028 ((-112) |#1|)) (-15 -3747 ((-621 |#1|) |#1|)) (-15 -2095 ((-621 |#1|) |#1|)) (-15 -2387 ((-112) |#1| |#1|)) (-15 -1593 ((-112) |#2| |#1|)) (-15 -3774 ((-747) |#1|))) (-119 |#2|) (-1179)) (T -118))
+NIL
+(-10 -8 (-15 -3845 ((-834) |#1|)) (-15 -2250 (|#1| |#1| "right" |#1|)) (-15 -2250 (|#1| |#1| "left" |#1|)) (-15 -3339 (|#1| |#1| "right")) (-15 -3339 (|#1| |#1| "left")) (-15 -2250 (|#2| |#1| "value" |#2|)) (-15 -3585 ((-112) |#1| |#1|)) (-15 -3590 ((-621 |#2|) |#1|)) (-15 -2917 ((-112) |#1|)) (-15 -3339 (|#2| |#1| "value")) (-15 -3028 ((-112) |#1|)) (-15 -3747 ((-621 |#1|) |#1|)) (-15 -2095 ((-621 |#1|) |#1|)) (-15 -2387 ((-112) |#1| |#1|)) (-15 -1593 ((-112) |#2| |#1|)) (-15 -3774 ((-747) |#1|)))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-4160 ((|#1| $) 48)) (-2850 (((-112) $ (-747)) 8)) (-2797 ((|#1| $ |#1|) 39 (|has| $ (-6 -4337)))) (-1735 (($ $ $) 52 (|has| $ (-6 -4337)))) (-1605 (($ $ $) 54 (|has| $ (-6 -4337)))) (-2250 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4337))) (($ $ "left" $) 55 (|has| $ (-6 -4337))) (($ $ "right" $) 53 (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) 41 (|has| $ (-6 -4337)))) (-3034 (($) 7 T CONST)) (-3847 (($ $) 57)) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) 50)) (-3585 (((-112) $ $) 42 (|has| |#1| (-1066)))) (-1777 (((-112) $ (-747)) 9)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-3837 (($ $) 59)) (-3590 (((-621 |#1|) $) 45)) (-3028 (((-112) $) 49)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-3541 (((-549) $ $) 44)) (-2917 (((-112) $) 46)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) 51)) (-3605 (((-112) $ $) 43 (|has| |#1| (-1066)))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-119 |#1|) (-138) (-1179)) (T -119))
+((-3837 (*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1179)))) (-3339 (*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-119 *3)) (-4 *3 (-1179)))) (-3847 (*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1179)))) (-3339 (*1 *1 *1 *2) (-12 (-5 *2 "right") (-4 *1 (-119 *3)) (-4 *3 (-1179)))) (-2250 (*1 *1 *1 *2 *1) (-12 (-5 *2 "left") (|has| *1 (-6 -4337)) (-4 *1 (-119 *3)) (-4 *3 (-1179)))) (-1605 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-119 *2)) (-4 *2 (-1179)))) (-2250 (*1 *1 *1 *2 *1) (-12 (-5 *2 "right") (|has| *1 (-6 -4337)) (-4 *1 (-119 *3)) (-4 *3 (-1179)))) (-1735 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-119 *2)) (-4 *2 (-1179)))))
+(-13 (-981 |t#1|) (-10 -8 (-15 -3837 ($ $)) (-15 -3339 ($ $ "left")) (-15 -3847 ($ $)) (-15 -3339 ($ $ "right")) (IF (|has| $ (-6 -4337)) (PROGN (-15 -2250 ($ $ "left" $)) (-15 -1605 ($ $ $)) (-15 -2250 ($ $ "right" $)) (-15 -1735 ($ $ $))) |%noBranch|)))
+(((-34) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-981 |#1|) . T) ((-1066) |has| |#1| (-1066)) ((-1179) . T))
+((-2745 (((-112) |#1|) 24)) (-4113 (((-747) (-747)) 23) (((-747)) 22)) (-3101 (((-112) |#1| (-112)) 25) (((-112) |#1|) 26)))
+(((-120 |#1|) (-10 -7 (-15 -3101 ((-112) |#1|)) (-15 -3101 ((-112) |#1| (-112))) (-15 -4113 ((-747))) (-15 -4113 ((-747) (-747))) (-15 -2745 ((-112) |#1|))) (-1201 (-549))) (T -120))
+((-2745 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1201 (-549))))) (-4113 (*1 *2 *2) (-12 (-5 *2 (-747)) (-5 *1 (-120 *3)) (-4 *3 (-1201 (-549))))) (-4113 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-120 *3)) (-4 *3 (-1201 (-549))))) (-3101 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1201 (-549))))) (-3101 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1201 (-549))))))
+(-10 -7 (-15 -3101 ((-112) |#1|)) (-15 -3101 ((-112) |#1| (-112))) (-15 -4113 ((-747))) (-15 -4113 ((-747) (-747))) (-15 -2745 ((-112) |#1|)))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-4160 ((|#1| $) 15)) (-3506 (((-2 (|:| |less| $) (|:| |greater| $)) |#1| $) 22)) (-2850 (((-112) $ (-747)) NIL)) (-2797 ((|#1| $ |#1|) NIL (|has| $ (-6 -4337)))) (-1735 (($ $ $) 18 (|has| $ (-6 -4337)))) (-1605 (($ $ $) 20 (|has| $ (-6 -4337)))) (-2250 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4337))) (($ $ "left" $) NIL (|has| $ (-6 -4337))) (($ $ "right" $) NIL (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) NIL (|has| $ (-6 -4337)))) (-3034 (($) NIL T CONST)) (-3847 (($ $) 17)) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) NIL)) (-3585 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2237 (($ $ |#1| $) 23)) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3837 (($ $) 19)) (-3590 (((-621 |#1|) $) NIL)) (-3028 (((-112) $) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-2493 (($ |#1| $) 24)) (-1799 (($ |#1| $) 10)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) 14)) (-3288 (($) 8)) (-3339 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3541 (((-549) $ $) NIL)) (-2917 (((-112) $) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) NIL)) (-3605 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-1681 (($ (-621 |#1|)) 12)) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-121 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4337) (-6 -4336) (-15 -1681 ($ (-621 |#1|))) (-15 -1799 ($ |#1| $)) (-15 -2493 ($ |#1| $)) (-15 -3506 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $)))) (-823)) (T -121))
+((-1681 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-121 *3)))) (-1799 (*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-823)))) (-2493 (*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-823)))) (-3506 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |less| (-121 *3)) (|:| |greater| (-121 *3)))) (-5 *1 (-121 *3)) (-4 *3 (-823)))))
+(-13 (-125 |#1|) (-10 -8 (-6 -4337) (-6 -4336) (-15 -1681 ($ (-621 |#1|))) (-15 -1799 ($ |#1| $)) (-15 -2493 ($ |#1| $)) (-15 -3506 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $))))
+((-1339 (($ $) 13)) (-4007 (($ $) 11)) (-4245 (($ $ $) 23)) (-2779 (($ $ $) 21)) (-3707 (($ $ $) 19)) (-3694 (($ $ $) 17)))
+(((-122 |#1|) (-10 -8 (-15 -4245 (|#1| |#1| |#1|)) (-15 -2779 (|#1| |#1| |#1|)) (-15 -4007 (|#1| |#1|)) (-15 -1339 (|#1| |#1|)) (-15 -3694 (|#1| |#1| |#1|)) (-15 -3707 (|#1| |#1| |#1|))) (-123)) (T -122))
+NIL
+(-10 -8 (-15 -4245 (|#1| |#1| |#1|)) (-15 -2779 (|#1| |#1| |#1|)) (-15 -4007 (|#1| |#1|)) (-15 -1339 (|#1| |#1|)) (-15 -3694 (|#1| |#1| |#1|)) (-15 -3707 (|#1| |#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-1339 (($ $) 103)) (-2461 (($ $ $) 25)) (-3659 (((-1230) $ (-549) (-549)) 66 (|has| $ (-6 -4337)))) (-2239 (((-112) $) 98 (|has| (-112) (-823))) (((-112) (-1 (-112) (-112) (-112)) $) 92)) (-2015 (($ $) 102 (-12 (|has| (-112) (-823)) (|has| $ (-6 -4337)))) (($ (-1 (-112) (-112) (-112)) $) 101 (|has| $ (-6 -4337)))) (-3191 (($ $) 97 (|has| (-112) (-823))) (($ (-1 (-112) (-112) (-112)) $) 91)) (-2850 (((-112) $ (-747)) 37)) (-2250 (((-112) $ (-1192 (-549)) (-112)) 88 (|has| $ (-6 -4337))) (((-112) $ (-549) (-112)) 54 (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) (-112)) $) 71 (|has| $ (-6 -4336)))) (-3034 (($) 38 T CONST)) (-2918 (($ $) 100 (|has| $ (-6 -4337)))) (-3062 (($ $) 90)) (-3675 (($ $) 68 (-12 (|has| (-112) (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ (-1 (-112) (-112)) $) 72 (|has| $ (-6 -4336))) (($ (-112) $) 69 (-12 (|has| (-112) (-1066)) (|has| $ (-6 -4336))))) (-2556 (((-112) (-1 (-112) (-112) (-112)) $) 74 (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) 73 (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) 70 (-12 (|has| (-112) (-1066)) (|has| $ (-6 -4336))))) (-1875 (((-112) $ (-549) (-112)) 53 (|has| $ (-6 -4337)))) (-1807 (((-112) $ (-549)) 55)) (-2881 (((-549) (-112) $ (-549)) 95 (|has| (-112) (-1066))) (((-549) (-112) $) 94 (|has| (-112) (-1066))) (((-549) (-1 (-112) (-112)) $) 93)) (-2987 (((-621 (-112)) $) 45 (|has| $ (-6 -4336)))) (-4206 (($ $ $) 26)) (-4007 (($ $) 30)) (-4245 (($ $ $) 28)) (-3743 (($ (-747) (-112)) 77)) (-2779 (($ $ $) 29)) (-1777 (((-112) $ (-747)) 36)) (-2807 (((-549) $) 63 (|has| (-549) (-823)))) (-2861 (($ $ $) 13)) (-3050 (($ $ $) 96 (|has| (-112) (-823))) (($ (-1 (-112) (-112) (-112)) $ $) 89)) (-3698 (((-621 (-112)) $) 46 (|has| $ (-6 -4336)))) (-1593 (((-112) (-112) $) 48 (-12 (|has| (-112) (-1066)) (|has| $ (-6 -4336))))) (-3063 (((-549) $) 62 (|has| (-549) (-823)))) (-3574 (($ $ $) 14)) (-1864 (($ (-1 (-112) (-112)) $) 41 (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-112) (-112) (-112)) $ $) 82) (($ (-1 (-112) (-112)) $) 40)) (-3942 (((-112) $ (-747)) 35)) (-3441 (((-1124) $) 9)) (-2613 (($ $ $ (-549)) 87) (($ (-112) $ (-549)) 86)) (-2296 (((-621 (-549)) $) 60)) (-2284 (((-112) (-549) $) 59)) (-3988 (((-1086) $) 10)) (-3645 (((-112) $) 64 (|has| (-549) (-823)))) (-3959 (((-3 (-112) "failed") (-1 (-112) (-112)) $) 75)) (-1943 (($ $ (-112)) 65 (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) (-112)) $) 43 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-112)) (-621 (-112))) 52 (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1066)))) (($ $ (-112) (-112)) 51 (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1066)))) (($ $ (-287 (-112))) 50 (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1066)))) (($ $ (-621 (-287 (-112)))) 49 (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1066))))) (-2520 (((-112) $ $) 31)) (-2478 (((-112) (-112) $) 61 (-12 (|has| $ (-6 -4336)) (|has| (-112) (-1066))))) (-3347 (((-621 (-112)) $) 58)) (-2643 (((-112) $) 34)) (-3288 (($) 33)) (-3339 (($ $ (-1192 (-549))) 83) (((-112) $ (-549)) 57) (((-112) $ (-549) (-112)) 56)) (-2162 (($ $ (-1192 (-549))) 85) (($ $ (-549)) 84)) (-3997 (((-747) (-112) $) 47 (-12 (|has| (-112) (-1066)) (|has| $ (-6 -4336)))) (((-747) (-1 (-112) (-112)) $) 44 (|has| $ (-6 -4336)))) (-2049 (($ $ $ (-549)) 99 (|has| $ (-6 -4337)))) (-2279 (($ $) 32)) (-2843 (((-525) $) 67 (|has| (-112) (-594 (-525))))) (-3853 (($ (-621 (-112))) 76)) (-1950 (($ (-621 $)) 81) (($ $ $) 80) (($ (-112) $) 79) (($ $ (-112)) 78)) (-3845 (((-834) $) 11)) (-3025 (((-112) (-1 (-112) (-112)) $) 42 (|has| $ (-6 -4336)))) (-1819 (($ $ $) 27)) (-3707 (($ $ $) 105)) (-2447 (((-112) $ $) 16)) (-2423 (((-112) $ $) 17)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 15)) (-2409 (((-112) $ $) 18)) (-3694 (($ $ $) 104)) (-3774 (((-747) $) 39 (|has| $ (-6 -4336)))))
(((-123) (-138)) (T -123))
-((-4008 (*1 *1 *1) (-4 *1 (-123))) (-4276 (*1 *1 *1 *1) (-4 *1 (-123))) (-1396 (*1 *1 *1 *1) (-4 *1 (-123))) (-1821 (*1 *1 *1 *1) (-4 *1 (-123))) (-4207 (*1 *1 *1 *1) (-4 *1 (-123))) (-2464 (*1 *1 *1 *1) (-4 *1 (-123))))
-(-13 (-823) (-637) (-19 (-112)) (-10 -8 (-15 -4008 ($ $)) (-15 -4276 ($ $ $)) (-15 -1396 ($ $ $)) (-15 -1821 ($ $ $)) (-15 -4207 ($ $ $)) (-15 -2464 ($ $ $))))
-(((-34) . T) ((-101) . T) ((-593 (-834)) . T) ((-149 #0=(-112)) . T) ((-594 (-525)) |has| (-112) (-594 (-525))) ((-279 #1=(-549) #0#) . T) ((-281 #1# #0#) . T) ((-302 #0#) -12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1067))) ((-366 #0#) . T) ((-481 #0#) . T) ((-584 #1# #0#) . T) ((-505 #0# #0#) -12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1067))) ((-627 #0#) . T) ((-637) . T) ((-19 #0#) . T) ((-823) . T) ((-1067) . T) ((-1180) . T))
-((-1868 (($ (-1 |#2| |#2|) $) 22)) (-2281 (($ $) 16)) (-3775 (((-747) $) 24)))
-(((-124 |#1| |#2|) (-10 -8 (-15 -1868 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3775 ((-747) |#1|)) (-15 -2281 (|#1| |#1|))) (-125 |#2|) (-1067)) (T -124))
-NIL
-(-10 -8 (-15 -1868 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3775 ((-747) |#1|)) (-15 -2281 (|#1| |#1|)))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-4161 ((|#1| $) 48)) (-1584 (((-112) $ (-747)) 8)) (-2838 ((|#1| $ |#1|) 39 (|has| $ (-6 -4338)))) (-3869 (($ $ $) 52 (|has| $ (-6 -4338)))) (-3811 (($ $ $) 54 (|has| $ (-6 -4338)))) (-2254 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4338))) (($ $ "left" $) 55 (|has| $ (-6 -4338))) (($ $ "right" $) 53 (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) 41 (|has| $ (-6 -4338)))) (-1682 (($) 7 T CONST)) (-3848 (($ $) 57)) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) 50)) (-3895 (((-112) $ $) 42 (|has| |#1| (-1067)))) (-2243 (($ $ |#1| $) 60)) (-3194 (((-112) $ (-747)) 9)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-3838 (($ $) 59)) (-3591 (((-621 |#1|) $) 45)) (-2076 (((-112) $) 49)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-3230 (((-549) $ $) 44)) (-3497 (((-112) $) 46)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) 51)) (-1987 (((-112) $ $) 43 (|has| |#1| (-1067)))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-125 |#1|) (-138) (-1067)) (T -125))
-((-2243 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-125 *2)) (-4 *2 (-1067)))))
-(-13 (-119 |t#1|) (-10 -8 (-6 -4338) (-6 -4337) (-15 -2243 ($ $ |t#1| $))))
-(((-34) . T) ((-101) |has| |#1| (-1067)) ((-119 |#1|) . T) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-981 |#1|) . T) ((-1067) |has| |#1| (-1067)) ((-1180) . T))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-4161 ((|#1| $) 15)) (-1584 (((-112) $ (-747)) NIL)) (-2838 ((|#1| $ |#1|) 19 (|has| $ (-6 -4338)))) (-3869 (($ $ $) 20 (|has| $ (-6 -4338)))) (-3811 (($ $ $) 18 (|has| $ (-6 -4338)))) (-2254 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4338))) (($ $ "left" $) NIL (|has| $ (-6 -4338))) (($ $ "right" $) NIL (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) NIL (|has| $ (-6 -4338)))) (-1682 (($) NIL T CONST)) (-3848 (($ $) 21)) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) NIL)) (-3895 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2243 (($ $ |#1| $) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3838 (($ $) NIL)) (-3591 (((-621 |#1|) $) NIL)) (-2076 (((-112) $) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-2751 (($ |#1| $) 10)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) 14)) (-3742 (($) 8)) (-3341 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3230 (((-549) $ $) NIL)) (-3497 (((-112) $) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) 17)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) NIL)) (-1987 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3152 (($ (-621 |#1|)) 12)) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-126 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4338) (-15 -3152 ($ (-621 |#1|))) (-15 -2751 ($ |#1| $)))) (-823)) (T -126))
-((-3152 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-126 *3)))) (-2751 (*1 *1 *2 *1) (-12 (-5 *1 (-126 *2)) (-4 *2 (-823)))))
-(-13 (-125 |#1|) (-10 -8 (-6 -4338) (-15 -3152 ($ (-621 |#1|))) (-15 -2751 ($ |#1| $))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-4161 ((|#1| $) 24)) (-1584 (((-112) $ (-747)) NIL)) (-2838 ((|#1| $ |#1|) 26 (|has| $ (-6 -4338)))) (-3869 (($ $ $) 30 (|has| $ (-6 -4338)))) (-3811 (($ $ $) 28 (|has| $ (-6 -4338)))) (-2254 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4338))) (($ $ "left" $) NIL (|has| $ (-6 -4338))) (($ $ "right" $) NIL (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) NIL (|has| $ (-6 -4338)))) (-1682 (($) NIL T CONST)) (-3848 (($ $) 20)) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) NIL)) (-3895 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2243 (($ $ |#1| $) 15)) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3838 (($ $) 19)) (-3591 (((-621 |#1|) $) NIL)) (-2076 (((-112) $) 21)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) 18)) (-3742 (($) 11)) (-3341 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3230 (((-549) $ $) NIL)) (-3497 (((-112) $) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) NIL)) (-1987 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2199 (($ |#1|) 17) (($ $ |#1| $) 16)) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 10 (|has| |#1| (-1067)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-127 |#1|) (-13 (-125 |#1|) (-10 -8 (-15 -2199 ($ |#1|)) (-15 -2199 ($ $ |#1| $)))) (-1067)) (T -127))
-((-2199 (*1 *1 *2) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1067)))) (-2199 (*1 *1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1067)))))
-(-13 (-125 |#1|) (-10 -8 (-15 -2199 ($ |#1|)) (-15 -2199 ($ $ |#1| $))))
-((-3834 (((-112) $ $) NIL (|has| (-129) (-1067)))) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-4142 (((-112) (-1 (-112) (-129) (-129)) $) NIL) (((-112) $) NIL (|has| (-129) (-823)))) (-4311 (($ (-1 (-112) (-129) (-129)) $) NIL (|has| $ (-6 -4338))) (($ $) NIL (-12 (|has| $ (-6 -4338)) (|has| (-129) (-823))))) (-3193 (($ (-1 (-112) (-129) (-129)) $) NIL) (($ $) NIL (|has| (-129) (-823)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 (((-129) $ (-549) (-129)) NIL (|has| $ (-6 -4338))) (((-129) $ (-1193 (-549)) (-129)) NIL (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-1585 (($ $) NIL (|has| $ (-6 -4338)))) (-3064 (($ $) NIL)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-129) (-1067))))) (-3812 (($ (-129) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-129) (-1067)))) (($ (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4337)))) (-2557 (((-129) (-1 (-129) (-129) (-129)) $ (-129) (-129)) NIL (-12 (|has| $ (-6 -4337)) (|has| (-129) (-1067)))) (((-129) (-1 (-129) (-129) (-129)) $ (-129)) NIL (|has| $ (-6 -4337))) (((-129) (-1 (-129) (-129) (-129)) $) NIL (|has| $ (-6 -4337)))) (-1879 (((-129) $ (-549) (-129)) NIL (|has| $ (-6 -4338)))) (-1809 (((-129) $ (-549)) NIL)) (-2883 (((-549) (-1 (-112) (-129)) $) NIL) (((-549) (-129) $) NIL (|has| (-129) (-1067))) (((-549) (-129) $ (-549)) NIL (|has| (-129) (-1067)))) (-2989 (((-621 (-129)) $) NIL (|has| $ (-6 -4337)))) (-3743 (($ (-747) (-129)) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) NIL (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (|has| (-129) (-823)))) (-3890 (($ (-1 (-112) (-129) (-129)) $ $) NIL) (($ $ $) NIL (|has| (-129) (-823)))) (-1562 (((-621 (-129)) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-129) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-129) (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| (-129) (-823)))) (-1868 (($ (-1 (-129) (-129)) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-129) (-129)) $) NIL) (($ (-1 (-129) (-129) (-129)) $ $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| (-129) (-1067)))) (-2616 (($ (-129) $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3990 (((-1087) $) NIL (|has| (-129) (-1067)))) (-3646 (((-129) $) NIL (|has| (-549) (-823)))) (-3779 (((-3 (-129) "failed") (-1 (-112) (-129)) $) NIL)) (-1642 (($ $ (-129)) NIL (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-129)))) NIL (-12 (|has| (-129) (-302 (-129))) (|has| (-129) (-1067)))) (($ $ (-287 (-129))) NIL (-12 (|has| (-129) (-302 (-129))) (|has| (-129) (-1067)))) (($ $ (-129) (-129)) NIL (-12 (|has| (-129) (-302 (-129))) (|has| (-129) (-1067)))) (($ $ (-621 (-129)) (-621 (-129))) NIL (-12 (|has| (-129) (-302 (-129))) (|has| (-129) (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) (-129) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-129) (-1067))))) (-2696 (((-621 (-129)) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 (((-129) $ (-549) (-129)) NIL) (((-129) $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-2167 (($ $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-4000 (((-747) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4337))) (((-747) (-129) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-129) (-1067))))) (-2730 (($ $ $ (-549)) NIL (|has| $ (-6 -4338)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| (-129) (-594 (-525))))) (-3854 (($ (-621 (-129))) NIL)) (-1952 (($ $ (-129)) NIL) (($ (-129) $) NIL) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3846 (((-834) $) NIL (|has| (-129) (-593 (-834))))) (-3527 (((-112) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) NIL (|has| (-129) (-823)))) (-2425 (((-112) $ $) NIL (|has| (-129) (-823)))) (-2389 (((-112) $ $) NIL (|has| (-129) (-1067)))) (-2438 (((-112) $ $) NIL (|has| (-129) (-823)))) (-2412 (((-112) $ $) NIL (|has| (-129) (-823)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
+((-4007 (*1 *1 *1) (-4 *1 (-123))) (-2779 (*1 *1 *1 *1) (-4 *1 (-123))) (-4245 (*1 *1 *1 *1) (-4 *1 (-123))) (-1819 (*1 *1 *1 *1) (-4 *1 (-123))) (-4206 (*1 *1 *1 *1) (-4 *1 (-123))) (-2461 (*1 *1 *1 *1) (-4 *1 (-123))))
+(-13 (-823) (-637) (-19 (-112)) (-10 -8 (-15 -4007 ($ $)) (-15 -2779 ($ $ $)) (-15 -4245 ($ $ $)) (-15 -1819 ($ $ $)) (-15 -4206 ($ $ $)) (-15 -2461 ($ $ $))))
+(((-34) . T) ((-101) . T) ((-593 (-834)) . T) ((-149 #0=(-112)) . T) ((-594 (-525)) |has| (-112) (-594 (-525))) ((-279 #1=(-549) #0#) . T) ((-281 #1# #0#) . T) ((-302 #0#) -12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1066))) ((-366 #0#) . T) ((-481 #0#) . T) ((-584 #1# #0#) . T) ((-505 #0# #0#) -12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1066))) ((-627 #0#) . T) ((-637) . T) ((-19 #0#) . T) ((-823) . T) ((-1066) . T) ((-1179) . T))
+((-1864 (($ (-1 |#2| |#2|) $) 22)) (-2279 (($ $) 16)) (-3774 (((-747) $) 24)))
+(((-124 |#1| |#2|) (-10 -8 (-15 -1864 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3774 ((-747) |#1|)) (-15 -2279 (|#1| |#1|))) (-125 |#2|) (-1066)) (T -124))
+NIL
+(-10 -8 (-15 -1864 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3774 ((-747) |#1|)) (-15 -2279 (|#1| |#1|)))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-4160 ((|#1| $) 48)) (-2850 (((-112) $ (-747)) 8)) (-2797 ((|#1| $ |#1|) 39 (|has| $ (-6 -4337)))) (-1735 (($ $ $) 52 (|has| $ (-6 -4337)))) (-1605 (($ $ $) 54 (|has| $ (-6 -4337)))) (-2250 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4337))) (($ $ "left" $) 55 (|has| $ (-6 -4337))) (($ $ "right" $) 53 (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) 41 (|has| $ (-6 -4337)))) (-3034 (($) 7 T CONST)) (-3847 (($ $) 57)) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) 50)) (-3585 (((-112) $ $) 42 (|has| |#1| (-1066)))) (-2237 (($ $ |#1| $) 60)) (-1777 (((-112) $ (-747)) 9)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-3837 (($ $) 59)) (-3590 (((-621 |#1|) $) 45)) (-3028 (((-112) $) 49)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-3541 (((-549) $ $) 44)) (-2917 (((-112) $) 46)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) 51)) (-3605 (((-112) $ $) 43 (|has| |#1| (-1066)))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-125 |#1|) (-138) (-1066)) (T -125))
+((-2237 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-125 *2)) (-4 *2 (-1066)))))
+(-13 (-119 |t#1|) (-10 -8 (-6 -4337) (-6 -4336) (-15 -2237 ($ $ |t#1| $))))
+(((-34) . T) ((-101) |has| |#1| (-1066)) ((-119 |#1|) . T) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-981 |#1|) . T) ((-1066) |has| |#1| (-1066)) ((-1179) . T))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-4160 ((|#1| $) 15)) (-2850 (((-112) $ (-747)) NIL)) (-2797 ((|#1| $ |#1|) 19 (|has| $ (-6 -4337)))) (-1735 (($ $ $) 20 (|has| $ (-6 -4337)))) (-1605 (($ $ $) 18 (|has| $ (-6 -4337)))) (-2250 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4337))) (($ $ "left" $) NIL (|has| $ (-6 -4337))) (($ $ "right" $) NIL (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) NIL (|has| $ (-6 -4337)))) (-3034 (($) NIL T CONST)) (-3847 (($ $) 21)) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) NIL)) (-3585 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2237 (($ $ |#1| $) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3837 (($ $) NIL)) (-3590 (((-621 |#1|) $) NIL)) (-3028 (((-112) $) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-1799 (($ |#1| $) 10)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) 14)) (-3288 (($) 8)) (-3339 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3541 (((-549) $ $) NIL)) (-2917 (((-112) $) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) 17)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) NIL)) (-3605 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-1372 (($ (-621 |#1|)) 12)) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-126 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4337) (-15 -1372 ($ (-621 |#1|))) (-15 -1799 ($ |#1| $)))) (-823)) (T -126))
+((-1372 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-126 *3)))) (-1799 (*1 *1 *2 *1) (-12 (-5 *1 (-126 *2)) (-4 *2 (-823)))))
+(-13 (-125 |#1|) (-10 -8 (-6 -4337) (-15 -1372 ($ (-621 |#1|))) (-15 -1799 ($ |#1| $))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-4160 ((|#1| $) 24)) (-2850 (((-112) $ (-747)) NIL)) (-2797 ((|#1| $ |#1|) 26 (|has| $ (-6 -4337)))) (-1735 (($ $ $) 30 (|has| $ (-6 -4337)))) (-1605 (($ $ $) 28 (|has| $ (-6 -4337)))) (-2250 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4337))) (($ $ "left" $) NIL (|has| $ (-6 -4337))) (($ $ "right" $) NIL (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) NIL (|has| $ (-6 -4337)))) (-3034 (($) NIL T CONST)) (-3847 (($ $) 20)) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) NIL)) (-3585 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2237 (($ $ |#1| $) 15)) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3837 (($ $) 19)) (-3590 (((-621 |#1|) $) NIL)) (-3028 (((-112) $) 21)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) 18)) (-3288 (($) 11)) (-3339 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3541 (((-549) $ $) NIL)) (-2917 (((-112) $) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) NIL)) (-3605 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3579 (($ |#1|) 17) (($ $ |#1| $) 16)) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 10 (|has| |#1| (-1066)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-127 |#1|) (-13 (-125 |#1|) (-10 -8 (-15 -3579 ($ |#1|)) (-15 -3579 ($ $ |#1| $)))) (-1066)) (T -127))
+((-3579 (*1 *1 *2) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1066)))) (-3579 (*1 *1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1066)))))
+(-13 (-125 |#1|) (-10 -8 (-15 -3579 ($ |#1|)) (-15 -3579 ($ $ |#1| $))))
+((-3832 (((-112) $ $) NIL (|has| (-129) (-1066)))) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-2239 (((-112) (-1 (-112) (-129) (-129)) $) NIL) (((-112) $) NIL (|has| (-129) (-823)))) (-2015 (($ (-1 (-112) (-129) (-129)) $) NIL (|has| $ (-6 -4337))) (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-129) (-823))))) (-3191 (($ (-1 (-112) (-129) (-129)) $) NIL) (($ $) NIL (|has| (-129) (-823)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 (((-129) $ (-549) (-129)) NIL (|has| $ (-6 -4337))) (((-129) $ (-1192 (-549)) (-129)) NIL (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-2918 (($ $) NIL (|has| $ (-6 -4337)))) (-3062 (($ $) NIL)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-129) (-1066))))) (-3812 (($ (-129) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-129) (-1066)))) (($ (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4336)))) (-2556 (((-129) (-1 (-129) (-129) (-129)) $ (-129) (-129)) NIL (-12 (|has| $ (-6 -4336)) (|has| (-129) (-1066)))) (((-129) (-1 (-129) (-129) (-129)) $ (-129)) NIL (|has| $ (-6 -4336))) (((-129) (-1 (-129) (-129) (-129)) $) NIL (|has| $ (-6 -4336)))) (-1875 (((-129) $ (-549) (-129)) NIL (|has| $ (-6 -4337)))) (-1807 (((-129) $ (-549)) NIL)) (-2881 (((-549) (-1 (-112) (-129)) $) NIL) (((-549) (-129) $) NIL (|has| (-129) (-1066))) (((-549) (-129) $ (-549)) NIL (|has| (-129) (-1066)))) (-2987 (((-621 (-129)) $) NIL (|has| $ (-6 -4336)))) (-3743 (($ (-747) (-129)) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) NIL (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (|has| (-129) (-823)))) (-3050 (($ (-1 (-112) (-129) (-129)) $ $) NIL) (($ $ $) NIL (|has| (-129) (-823)))) (-3698 (((-621 (-129)) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-129) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-129) (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| (-129) (-823)))) (-1864 (($ (-1 (-129) (-129)) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-129) (-129)) $) NIL) (($ (-1 (-129) (-129) (-129)) $ $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| (-129) (-1066)))) (-2613 (($ (-129) $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3988 (((-1086) $) NIL (|has| (-129) (-1066)))) (-3645 (((-129) $) NIL (|has| (-549) (-823)))) (-3959 (((-3 (-129) "failed") (-1 (-112) (-129)) $) NIL)) (-1943 (($ $ (-129)) NIL (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-129)))) NIL (-12 (|has| (-129) (-302 (-129))) (|has| (-129) (-1066)))) (($ $ (-287 (-129))) NIL (-12 (|has| (-129) (-302 (-129))) (|has| (-129) (-1066)))) (($ $ (-129) (-129)) NIL (-12 (|has| (-129) (-302 (-129))) (|has| (-129) (-1066)))) (($ $ (-621 (-129)) (-621 (-129))) NIL (-12 (|has| (-129) (-302 (-129))) (|has| (-129) (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) (-129) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-129) (-1066))))) (-3347 (((-621 (-129)) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 (((-129) $ (-549) (-129)) NIL) (((-129) $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-2162 (($ $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-3997 (((-747) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4336))) (((-747) (-129) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-129) (-1066))))) (-2049 (($ $ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| (-129) (-594 (-525))))) (-3853 (($ (-621 (-129))) NIL)) (-1950 (($ $ (-129)) NIL) (($ (-129) $) NIL) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3845 (((-834) $) NIL (|has| (-129) (-593 (-834))))) (-3025 (((-112) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) NIL (|has| (-129) (-823)))) (-2423 (((-112) $ $) NIL (|has| (-129) (-823)))) (-2387 (((-112) $ $) NIL (|has| (-129) (-1066)))) (-2436 (((-112) $ $) NIL (|has| (-129) (-823)))) (-2409 (((-112) $ $) NIL (|has| (-129) (-823)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
(((-128) (-19 (-129))) (T -128))
NIL
(-19 (-129))
-((-3834 (((-112) $ $) NIL)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 12) (((-747) $) 9) (($ (-747)) 8)) (-2276 (($ (-747)) 7)) (-2328 (($ $ $) 17)) (-2313 (($ $ $) 16)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 14)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 15)))
-(((-129) (-13 (-823) (-593 (-747)) (-10 -8 (-15 -2276 ($ (-747))) (-15 -3846 ($ (-747))) (-15 -2313 ($ $ $)) (-15 -2328 ($ $ $))))) (T -129))
-((-2276 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-129)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-129)))) (-2313 (*1 *1 *1 *1) (-5 *1 (-129))) (-2328 (*1 *1 *1 *1) (-5 *1 (-129))))
-(-13 (-823) (-593 (-747)) (-10 -8 (-15 -2276 ($ (-747))) (-15 -3846 ($ (-747))) (-15 -2313 ($ $ $)) (-15 -2328 ($ $ $))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2486 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15)))
+((-3832 (((-112) $ $) NIL)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 12) (((-747) $) 9) (($ (-747)) 8)) (-3984 (($ (-747)) 7)) (-2326 (($ $ $) 17)) (-2311 (($ $ $) 16)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 14)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 15)))
+(((-129) (-13 (-823) (-593 (-747)) (-10 -8 (-15 -3984 ($ (-747))) (-15 -3845 ($ (-747))) (-15 -2311 ($ $ $)) (-15 -2326 ($ $ $))))) (T -129))
+((-3984 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-129)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-129)))) (-2311 (*1 *1 *1 *1) (-5 *1 (-129))) (-2326 (*1 *1 *1 *1) (-5 *1 (-129))))
+(-13 (-823) (-593 (-747)) (-10 -8 (-15 -3984 ($ (-747))) (-15 -3845 ($ (-747))) (-15 -2311 ($ $ $)) (-15 -2326 ($ $ $))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2484 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15)))
(((-130) (-138)) (T -130))
-((-2001 (*1 *1 *1 *1) (|partial| -4 *1 (-130))))
-(-13 (-23) (-10 -8 (-15 -2001 ((-3 $ "failed") $ $))))
-(((-23) . T) ((-25) . T) ((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-3834 (((-112) $ $) 7)) (-3309 (((-1231) $ (-747)) 19)) (-2883 (((-747) $) 20)) (-2863 (($ $ $) 13)) (-3575 (($ $ $) 14)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-2448 (((-112) $ $) 16)) (-2425 (((-112) $ $) 17)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 15)) (-2412 (((-112) $ $) 18)))
+((-2416 (*1 *1 *1 *1) (|partial| -4 *1 (-130))))
+(-13 (-23) (-10 -8 (-15 -2416 ((-3 $ "failed") $ $))))
+(((-23) . T) ((-25) . T) ((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-3832 (((-112) $ $) 7)) (-1387 (((-1230) $ (-747)) 19)) (-2881 (((-747) $) 20)) (-2861 (($ $ $) 13)) (-3574 (($ $ $) 14)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-2447 (((-112) $ $) 16)) (-2423 (((-112) $ $) 17)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 15)) (-2409 (((-112) $ $) 18)))
(((-131) (-138)) (T -131))
-((-2883 (*1 *2 *1) (-12 (-4 *1 (-131)) (-5 *2 (-747)))) (-3309 (*1 *2 *1 *3) (-12 (-4 *1 (-131)) (-5 *3 (-747)) (-5 *2 (-1231)))))
-(-13 (-823) (-10 -8 (-15 -2883 ((-747) $)) (-15 -3309 ((-1231) $ (-747)))))
-(((-101) . T) ((-593 (-834)) . T) ((-823) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2492 (((-621 (-1148)) $) 10)) (-2389 (((-112) $ $) NIL)))
-(((-132) (-13 (-1050) (-10 -8 (-15 -2492 ((-621 (-1148)) $))))) (T -132))
-((-2492 (*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-132)))))
-(-13 (-1050) (-10 -8 (-15 -2492 ((-621 (-1148)) $))))
-((-3834 (((-112) $ $) 34)) (-1763 (((-112) $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-747) "failed") $) 40)) (-2659 (((-747) $) 38)) (-2114 (((-3 $ "failed") $) NIL)) (-2675 (((-112) $) NIL)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) 27)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2007 (((-112)) 41)) (-2550 (((-112) (-112)) 43)) (-3195 (((-112) $) 24)) (-2682 (((-112) $) 37)) (-3846 (((-834) $) 22) (($ (-747)) 14)) (-3276 (($) 11 T CONST)) (-3287 (($) 12 T CONST)) (-3054 (($ (-747)) 15)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 25)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 26)) (-2500 (((-3 $ "failed") $ $) 30)) (-2486 (($ $ $) 28)) (** (($ $ (-747)) NIL) (($ $ (-892)) NIL) (($ $ $) 36)) (* (($ (-747) $) 33) (($ (-892) $) NIL) (($ $ $) 31)))
-(((-133) (-13 (-823) (-23) (-703) (-1009 (-747)) (-10 -8 (-6 (-4339 "*")) (-15 -2500 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -3054 ($ (-747))) (-15 -3195 ((-112) $)) (-15 -2682 ((-112) $)) (-15 -2007 ((-112))) (-15 -2550 ((-112) (-112)))))) (T -133))
-((-2500 (*1 *1 *1 *1) (|partial| -5 *1 (-133))) (** (*1 *1 *1 *1) (-5 *1 (-133))) (-3054 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-133)))) (-3195 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-133)))) (-2682 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-133)))) (-2007 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-133)))) (-2550 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-133)))))
-(-13 (-823) (-23) (-703) (-1009 (-747)) (-10 -8 (-6 (-4339 "*")) (-15 -2500 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -3054 ($ (-747))) (-15 -3195 ((-112) $)) (-15 -2682 ((-112) $)) (-15 -2007 ((-112))) (-15 -2550 ((-112) (-112)))))
-((-3881 (((-135 |#1| |#2| |#4|) (-621 |#4|) (-135 |#1| |#2| |#3|)) 14)) (-2797 (((-135 |#1| |#2| |#4|) (-1 |#4| |#3|) (-135 |#1| |#2| |#3|)) 18)))
-(((-134 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3881 ((-135 |#1| |#2| |#4|) (-621 |#4|) (-135 |#1| |#2| |#3|))) (-15 -2797 ((-135 |#1| |#2| |#4|) (-1 |#4| |#3|) (-135 |#1| |#2| |#3|)))) (-549) (-747) (-170) (-170)) (T -134))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-135 *5 *6 *7)) (-14 *5 (-549)) (-14 *6 (-747)) (-4 *7 (-170)) (-4 *8 (-170)) (-5 *2 (-135 *5 *6 *8)) (-5 *1 (-134 *5 *6 *7 *8)))) (-3881 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-135 *5 *6 *7)) (-14 *5 (-549)) (-14 *6 (-747)) (-4 *7 (-170)) (-4 *8 (-170)) (-5 *2 (-135 *5 *6 *8)) (-5 *1 (-134 *5 *6 *7 *8)))))
-(-10 -7 (-15 -3881 ((-135 |#1| |#2| |#4|) (-621 |#4|) (-135 |#1| |#2| |#3|))) (-15 -2797 ((-135 |#1| |#2| |#4|) (-1 |#4| |#3|) (-135 |#1| |#2| |#3|))))
-((-3834 (((-112) $ $) NIL)) (-1316 (($ (-621 |#3|)) 40)) (-3682 (($ $) 99) (($ $ (-549) (-549)) 98)) (-1682 (($) 17)) (-2714 (((-3 |#3| "failed") $) 60)) (-2659 ((|#3| $) NIL)) (-3641 (($ $ (-621 (-549))) 100)) (-3874 (((-621 |#3|) $) 36)) (-3123 (((-747) $) 44)) (-1747 (($ $ $) 93)) (-2999 (($) 43)) (-3851 (((-1125) $) NIL)) (-3346 (($) 16)) (-3990 (((-1087) $) NIL)) (-3341 ((|#3| $) 46) ((|#3| $ (-549)) 47) ((|#3| $ (-549) (-549)) 48) ((|#3| $ (-549) (-549) (-549)) 49) ((|#3| $ (-549) (-549) (-549) (-549)) 50) ((|#3| $ (-621 (-549))) 52)) (-3701 (((-747) $) 45)) (-3414 (($ $ (-549) $ (-549)) 94) (($ $ (-549) (-549)) 96)) (-3846 (((-834) $) 67) (($ |#3|) 68) (($ (-234 |#2| |#3|)) 75) (($ (-1109 |#2| |#3|)) 78) (($ (-621 |#3|)) 53) (($ (-621 $)) 58)) (-3276 (($) 69 T CONST)) (-3287 (($) 70 T CONST)) (-2389 (((-112) $ $) 80)) (-2500 (($ $) 86) (($ $ $) 84)) (-2486 (($ $ $) 82)) (* (($ |#3| $) 91) (($ $ |#3|) 92) (($ $ (-549)) 89) (($ (-549) $) 88) (($ $ $) 95)))
-(((-135 |#1| |#2| |#3|) (-13 (-457 |#3| (-747)) (-462 (-549) (-747)) (-10 -8 (-15 -3846 ($ (-234 |#2| |#3|))) (-15 -3846 ($ (-1109 |#2| |#3|))) (-15 -3846 ($ (-621 |#3|))) (-15 -3846 ($ (-621 $))) (-15 -3123 ((-747) $)) (-15 -3341 (|#3| $)) (-15 -3341 (|#3| $ (-549))) (-15 -3341 (|#3| $ (-549) (-549))) (-15 -3341 (|#3| $ (-549) (-549) (-549))) (-15 -3341 (|#3| $ (-549) (-549) (-549) (-549))) (-15 -3341 (|#3| $ (-621 (-549)))) (-15 -1747 ($ $ $)) (-15 * ($ $ $)) (-15 -3414 ($ $ (-549) $ (-549))) (-15 -3414 ($ $ (-549) (-549))) (-15 -3682 ($ $)) (-15 -3682 ($ $ (-549) (-549))) (-15 -3641 ($ $ (-621 (-549)))) (-15 -3346 ($)) (-15 -2999 ($)) (-15 -3874 ((-621 |#3|) $)) (-15 -1316 ($ (-621 |#3|))) (-15 -1682 ($)))) (-549) (-747) (-170)) (T -135))
-((-1747 (*1 *1 *1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747)) (-4 *4 (-170)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-234 *4 *5)) (-14 *4 (-747)) (-4 *5 (-170)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-1109 *4 *5)) (-14 *4 (-747)) (-4 *5 (-170)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-621 *5)) (-4 *5 (-170)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549)) (-14 *4 (-747)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-621 (-135 *3 *4 *5))) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549)) (-14 *4 (-747)) (-4 *5 (-170)))) (-3123 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549)) (-14 *4 *2) (-4 *5 (-170)))) (-3341 (*1 *2 *1) (-12 (-4 *2 (-170)) (-5 *1 (-135 *3 *4 *2)) (-14 *3 (-549)) (-14 *4 (-747)))) (-3341 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *2 (-170)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-747)))) (-3341 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-549)) (-4 *2 (-170)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-747)))) (-3341 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-549)) (-4 *2 (-170)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-747)))) (-3341 (*1 *2 *1 *3 *3 *3 *3) (-12 (-5 *3 (-549)) (-4 *2 (-170)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-747)))) (-3341 (*1 *2 *1 *3) (-12 (-5 *3 (-621 (-549))) (-4 *2 (-170)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 (-549)) (-14 *5 (-747)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747)) (-4 *4 (-170)))) (-3414 (*1 *1 *1 *2 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-747)) (-4 *5 (-170)))) (-3414 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-747)) (-4 *5 (-170)))) (-3682 (*1 *1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747)) (-4 *4 (-170)))) (-3682 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-747)) (-4 *5 (-170)))) (-3641 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549)) (-14 *4 (-747)) (-4 *5 (-170)))) (-3346 (*1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747)) (-4 *4 (-170)))) (-2999 (*1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747)) (-4 *4 (-170)))) (-3874 (*1 *2 *1) (-12 (-5 *2 (-621 *5)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549)) (-14 *4 (-747)) (-4 *5 (-170)))) (-1316 (*1 *1 *2) (-12 (-5 *2 (-621 *5)) (-4 *5 (-170)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549)) (-14 *4 (-747)))) (-1682 (*1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747)) (-4 *4 (-170)))))
-(-13 (-457 |#3| (-747)) (-462 (-549) (-747)) (-10 -8 (-15 -3846 ($ (-234 |#2| |#3|))) (-15 -3846 ($ (-1109 |#2| |#3|))) (-15 -3846 ($ (-621 |#3|))) (-15 -3846 ($ (-621 $))) (-15 -3123 ((-747) $)) (-15 -3341 (|#3| $)) (-15 -3341 (|#3| $ (-549))) (-15 -3341 (|#3| $ (-549) (-549))) (-15 -3341 (|#3| $ (-549) (-549) (-549))) (-15 -3341 (|#3| $ (-549) (-549) (-549) (-549))) (-15 -3341 (|#3| $ (-621 (-549)))) (-15 -1747 ($ $ $)) (-15 * ($ $ $)) (-15 -3414 ($ $ (-549) $ (-549))) (-15 -3414 ($ $ (-549) (-549))) (-15 -3682 ($ $)) (-15 -3682 ($ $ (-549) (-549))) (-15 -3641 ($ $ (-621 (-549)))) (-15 -3346 ($)) (-15 -2999 ($)) (-15 -3874 ((-621 |#3|) $)) (-15 -1316 ($ (-621 |#3|))) (-15 -1682 ($))))
-((-3834 (((-112) $ $) NIL)) (-2203 (((-1148) $) 11)) (-2190 (((-1148) $) 9)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-136) (-13 (-1050) (-10 -8 (-15 -2190 ((-1148) $)) (-15 -2203 ((-1148) $))))) (T -136))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-136)))) (-2203 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-136)))))
-(-13 (-1050) (-10 -8 (-15 -2190 ((-1148) $)) (-15 -2203 ((-1148) $))))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-2708 (((-1143) $) 11)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2492 (((-621 (-1148)) $) 13)) (-2389 (((-112) $ $) NIL)))
-(((-137) (-13 (-1050) (-10 -8 (-15 -2708 ((-1143) $)) (-15 -2492 ((-621 (-1148)) $))))) (T -137))
-((-2708 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-137)))) (-2492 (*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-137)))))
-(-13 (-1050) (-10 -8 (-15 -2708 ((-1143) $)) (-15 -2492 ((-621 (-1148)) $))))
-((-3846 (((-834) $) 7)))
+((-2881 (*1 *2 *1) (-12 (-4 *1 (-131)) (-5 *2 (-747)))) (-1387 (*1 *2 *1 *3) (-12 (-4 *1 (-131)) (-5 *3 (-747)) (-5 *2 (-1230)))))
+(-13 (-823) (-10 -8 (-15 -2881 ((-747) $)) (-15 -1387 ((-1230) $ (-747)))))
+(((-101) . T) ((-593 (-834)) . T) ((-823) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 18) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2492 (((-621 (-1101)) $) 10)) (-2387 (((-112) $ $) NIL)))
+(((-132) (-13 (-1049) (-10 -8 (-15 -2492 ((-621 (-1101)) $))))) (T -132))
+((-2492 (*1 *2 *1) (-12 (-5 *2 (-621 (-1101))) (-5 *1 (-132)))))
+(-13 (-1049) (-10 -8 (-15 -2492 ((-621 (-1101)) $))))
+((-3832 (((-112) $ $) 34)) (-3210 (((-112) $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-747) "failed") $) 40)) (-2657 (((-747) $) 38)) (-2612 (((-3 $ "failed") $) NIL)) (-2297 (((-112) $) NIL)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) 27)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-1589 (((-112)) 41)) (-2561 (((-112) (-112)) 43)) (-1903 (((-112) $) 24)) (-1474 (((-112) $) 37)) (-3845 (((-834) $) 22) (($ (-747)) 14)) (-3274 (($) 11 T CONST)) (-3286 (($) 12 T CONST)) (-2105 (($ (-747)) 15)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 25)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 26)) (-2498 (((-3 $ "failed") $ $) 30)) (-2484 (($ $ $) 28)) (** (($ $ (-747)) NIL) (($ $ (-892)) NIL) (($ $ $) 36)) (* (($ (-747) $) 33) (($ (-892) $) NIL) (($ $ $) 31)))
+(((-133) (-13 (-823) (-23) (-703) (-1009 (-747)) (-10 -8 (-6 (-4338 "*")) (-15 -2498 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -2105 ($ (-747))) (-15 -1903 ((-112) $)) (-15 -1474 ((-112) $)) (-15 -1589 ((-112))) (-15 -2561 ((-112) (-112)))))) (T -133))
+((-2498 (*1 *1 *1 *1) (|partial| -5 *1 (-133))) (** (*1 *1 *1 *1) (-5 *1 (-133))) (-2105 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-133)))) (-1903 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-133)))) (-1474 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-133)))) (-1589 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-133)))) (-2561 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-133)))))
+(-13 (-823) (-23) (-703) (-1009 (-747)) (-10 -8 (-6 (-4338 "*")) (-15 -2498 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -2105 ($ (-747))) (-15 -1903 ((-112) $)) (-15 -1474 ((-112) $)) (-15 -1589 ((-112))) (-15 -2561 ((-112) (-112)))))
+((-3880 (((-135 |#1| |#2| |#4|) (-621 |#4|) (-135 |#1| |#2| |#3|)) 14)) (-2795 (((-135 |#1| |#2| |#4|) (-1 |#4| |#3|) (-135 |#1| |#2| |#3|)) 18)))
+(((-134 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3880 ((-135 |#1| |#2| |#4|) (-621 |#4|) (-135 |#1| |#2| |#3|))) (-15 -2795 ((-135 |#1| |#2| |#4|) (-1 |#4| |#3|) (-135 |#1| |#2| |#3|)))) (-549) (-747) (-170) (-170)) (T -134))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-135 *5 *6 *7)) (-14 *5 (-549)) (-14 *6 (-747)) (-4 *7 (-170)) (-4 *8 (-170)) (-5 *2 (-135 *5 *6 *8)) (-5 *1 (-134 *5 *6 *7 *8)))) (-3880 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-135 *5 *6 *7)) (-14 *5 (-549)) (-14 *6 (-747)) (-4 *7 (-170)) (-4 *8 (-170)) (-5 *2 (-135 *5 *6 *8)) (-5 *1 (-134 *5 *6 *7 *8)))))
+(-10 -7 (-15 -3880 ((-135 |#1| |#2| |#4|) (-621 |#4|) (-135 |#1| |#2| |#3|))) (-15 -2795 ((-135 |#1| |#2| |#4|) (-1 |#4| |#3|) (-135 |#1| |#2| |#3|))))
+((-3832 (((-112) $ $) NIL)) (-1857 (($ (-621 |#3|)) 40)) (-4235 (($ $) 99) (($ $ (-549) (-549)) 98)) (-3034 (($) 17)) (-2712 (((-3 |#3| "failed") $) 60)) (-2657 ((|#3| $) NIL)) (-1946 (($ $ (-621 (-549))) 100)) (-3873 (((-621 |#3|) $) 36)) (-3121 (((-747) $) 44)) (-1268 (($ $ $) 93)) (-1916 (($) 43)) (-3441 (((-1124) $) NIL)) (-1628 (($) 16)) (-3988 (((-1086) $) NIL)) (-3339 ((|#3| $) 46) ((|#3| $ (-549)) 47) ((|#3| $ (-549) (-549)) 48) ((|#3| $ (-549) (-549) (-549)) 49) ((|#3| $ (-549) (-549) (-549) (-549)) 50) ((|#3| $ (-621 (-549))) 52)) (-3977 (((-747) $) 45)) (-4146 (($ $ (-549) $ (-549)) 94) (($ $ (-549) (-549)) 96)) (-3845 (((-834) $) 67) (($ |#3|) 68) (($ (-234 |#2| |#3|)) 75) (($ (-1108 |#2| |#3|)) 78) (($ (-621 |#3|)) 53) (($ (-621 $)) 58)) (-3274 (($) 69 T CONST)) (-3286 (($) 70 T CONST)) (-2387 (((-112) $ $) 80)) (-2498 (($ $) 86) (($ $ $) 84)) (-2484 (($ $ $) 82)) (* (($ |#3| $) 91) (($ $ |#3|) 92) (($ $ (-549)) 89) (($ (-549) $) 88) (($ $ $) 95)))
+(((-135 |#1| |#2| |#3|) (-13 (-457 |#3| (-747)) (-462 (-549) (-747)) (-10 -8 (-15 -3845 ($ (-234 |#2| |#3|))) (-15 -3845 ($ (-1108 |#2| |#3|))) (-15 -3845 ($ (-621 |#3|))) (-15 -3845 ($ (-621 $))) (-15 -3121 ((-747) $)) (-15 -3339 (|#3| $)) (-15 -3339 (|#3| $ (-549))) (-15 -3339 (|#3| $ (-549) (-549))) (-15 -3339 (|#3| $ (-549) (-549) (-549))) (-15 -3339 (|#3| $ (-549) (-549) (-549) (-549))) (-15 -3339 (|#3| $ (-621 (-549)))) (-15 -1268 ($ $ $)) (-15 * ($ $ $)) (-15 -4146 ($ $ (-549) $ (-549))) (-15 -4146 ($ $ (-549) (-549))) (-15 -4235 ($ $)) (-15 -4235 ($ $ (-549) (-549))) (-15 -1946 ($ $ (-621 (-549)))) (-15 -1628 ($)) (-15 -1916 ($)) (-15 -3873 ((-621 |#3|) $)) (-15 -1857 ($ (-621 |#3|))) (-15 -3034 ($)))) (-549) (-747) (-170)) (T -135))
+((-1268 (*1 *1 *1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747)) (-4 *4 (-170)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-234 *4 *5)) (-14 *4 (-747)) (-4 *5 (-170)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-1108 *4 *5)) (-14 *4 (-747)) (-4 *5 (-170)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-621 *5)) (-4 *5 (-170)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549)) (-14 *4 (-747)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-621 (-135 *3 *4 *5))) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549)) (-14 *4 (-747)) (-4 *5 (-170)))) (-3121 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549)) (-14 *4 *2) (-4 *5 (-170)))) (-3339 (*1 *2 *1) (-12 (-4 *2 (-170)) (-5 *1 (-135 *3 *4 *2)) (-14 *3 (-549)) (-14 *4 (-747)))) (-3339 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *2 (-170)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-747)))) (-3339 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-549)) (-4 *2 (-170)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-747)))) (-3339 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-549)) (-4 *2 (-170)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-747)))) (-3339 (*1 *2 *1 *3 *3 *3 *3) (-12 (-5 *3 (-549)) (-4 *2 (-170)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-747)))) (-3339 (*1 *2 *1 *3) (-12 (-5 *3 (-621 (-549))) (-4 *2 (-170)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 (-549)) (-14 *5 (-747)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747)) (-4 *4 (-170)))) (-4146 (*1 *1 *1 *2 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-747)) (-4 *5 (-170)))) (-4146 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-747)) (-4 *5 (-170)))) (-4235 (*1 *1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747)) (-4 *4 (-170)))) (-4235 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-747)) (-4 *5 (-170)))) (-1946 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549)) (-14 *4 (-747)) (-4 *5 (-170)))) (-1628 (*1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747)) (-4 *4 (-170)))) (-1916 (*1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747)) (-4 *4 (-170)))) (-3873 (*1 *2 *1) (-12 (-5 *2 (-621 *5)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549)) (-14 *4 (-747)) (-4 *5 (-170)))) (-1857 (*1 *1 *2) (-12 (-5 *2 (-621 *5)) (-4 *5 (-170)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549)) (-14 *4 (-747)))) (-3034 (*1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747)) (-4 *4 (-170)))))
+(-13 (-457 |#3| (-747)) (-462 (-549) (-747)) (-10 -8 (-15 -3845 ($ (-234 |#2| |#3|))) (-15 -3845 ($ (-1108 |#2| |#3|))) (-15 -3845 ($ (-621 |#3|))) (-15 -3845 ($ (-621 $))) (-15 -3121 ((-747) $)) (-15 -3339 (|#3| $)) (-15 -3339 (|#3| $ (-549))) (-15 -3339 (|#3| $ (-549) (-549))) (-15 -3339 (|#3| $ (-549) (-549) (-549))) (-15 -3339 (|#3| $ (-549) (-549) (-549) (-549))) (-15 -3339 (|#3| $ (-621 (-549)))) (-15 -1268 ($ $ $)) (-15 * ($ $ $)) (-15 -4146 ($ $ (-549) $ (-549))) (-15 -4146 ($ $ (-549) (-549))) (-15 -4235 ($ $)) (-15 -4235 ($ $ (-549) (-549))) (-15 -1946 ($ $ (-621 (-549)))) (-15 -1628 ($)) (-15 -1916 ($)) (-15 -3873 ((-621 |#3|) $)) (-15 -1857 ($ (-621 |#3|))) (-15 -3034 ($))))
+((-3832 (((-112) $ $) NIL)) (-2200 (((-1101) $) 11)) (-2187 (((-1101) $) 9)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 19) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-136) (-13 (-1049) (-10 -8 (-15 -2187 ((-1101) $)) (-15 -2200 ((-1101) $))))) (T -136))
+((-2187 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-136)))) (-2200 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-136)))))
+(-13 (-1049) (-10 -8 (-15 -2187 ((-1101) $)) (-15 -2200 ((-1101) $))))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-2706 (((-1142) $) 10)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 19) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2492 (((-621 (-1101)) $) 12)) (-2387 (((-112) $ $) NIL)))
+(((-137) (-13 (-1049) (-10 -8 (-15 -2706 ((-1142) $)) (-15 -2492 ((-621 (-1101)) $))))) (T -137))
+((-2706 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-137)))) (-2492 (*1 *2 *1) (-12 (-5 *2 (-621 (-1101))) (-5 *1 (-137)))))
+(-13 (-1049) (-10 -8 (-15 -2706 ((-1142) $)) (-15 -2492 ((-621 (-1101)) $))))
+((-3845 (((-834) $) 7)))
(((-138) (-593 (-834))) (T -138))
NIL
(-593 (-834))
-((-3834 (((-112) $ $) NIL)) (-2946 (($) 15 T CONST)) (-2664 (($) NIL (|has| (-142) (-361)))) (-1442 (($ $ $) 17) (($ $ (-142)) NIL) (($ (-142) $) NIL)) (-2440 (($ $ $) NIL)) (-2695 (((-112) $ $) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-3614 (((-747)) NIL (|has| (-142) (-361)))) (-2787 (($) NIL) (($ (-621 (-142))) NIL)) (-1717 (($ (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067))))) (-2129 (($ (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4337))) (($ (-142) $) 51 (|has| $ (-6 -4337)))) (-3812 (($ (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4337))) (($ (-142) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067))))) (-2557 (((-142) (-1 (-142) (-142) (-142)) $) NIL (|has| $ (-6 -4337))) (((-142) (-1 (-142) (-142) (-142)) $ (-142)) NIL (|has| $ (-6 -4337))) (((-142) (-1 (-142) (-142) (-142)) $ (-142) (-142)) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067))))) (-3239 (($) NIL (|has| (-142) (-361)))) (-2989 (((-621 (-142)) $) 60 (|has| $ (-6 -4337)))) (-2369 (((-112) $ $) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-2863 (((-142) $) NIL (|has| (-142) (-823)))) (-1562 (((-621 (-142)) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-142) $) 26 (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067))))) (-3575 (((-142) $) NIL (|has| (-142) (-823)))) (-1868 (($ (-1 (-142) (-142)) $) 59 (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-142) (-142)) $) 55)) (-3408 (($) 16 T CONST)) (-1881 (((-892) $) NIL (|has| (-142) (-361)))) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL)) (-3655 (($ $ $) 29)) (-3504 (((-142) $) 52)) (-2751 (($ (-142) $) 50)) (-3493 (($ (-892)) NIL (|has| (-142) (-361)))) (-3819 (($) 14 T CONST)) (-3990 (((-1087) $) NIL)) (-3779 (((-3 (-142) "failed") (-1 (-112) (-142)) $) NIL)) (-3325 (((-142) $) 53)) (-1780 (((-112) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-142)) (-621 (-142))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067)))) (($ $ (-142) (-142)) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067)))) (($ $ (-287 (-142))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067)))) (($ $ (-621 (-287 (-142)))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) 48)) (-4310 (($) 13 T CONST)) (-1334 (($ $ $) 31) (($ $ (-142)) NIL)) (-2898 (($ (-621 (-142))) NIL) (($) NIL)) (-4000 (((-747) (-142) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067)))) (((-747) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) NIL)) (-2845 (((-1125) $) 36) (((-525) $) NIL (|has| (-142) (-594 (-525)))) (((-621 (-142)) $) 34)) (-3854 (($ (-621 (-142))) NIL)) (-1417 (($ $) 32 (|has| (-142) (-361)))) (-3846 (((-834) $) 46)) (-1918 (($ (-1125)) 12) (($ (-621 (-142))) 43)) (-3916 (((-747) $) NIL)) (-4120 (($) 49) (($ (-621 (-142))) NIL)) (-3624 (($ (-621 (-142))) NIL)) (-3527 (((-112) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4337)))) (-2117 (($) 19 T CONST)) (-3923 (($) 18 T CONST)) (-2389 (((-112) $ $) 22)) (-3775 (((-747) $) 47 (|has| $ (-6 -4337)))))
-(((-139) (-13 (-1067) (-594 (-1125)) (-418 (-142)) (-594 (-621 (-142))) (-10 -8 (-15 -1918 ($ (-1125))) (-15 -1918 ($ (-621 (-142)))) (-15 -4310 ($) -2589) (-15 -3819 ($) -2589) (-15 -2946 ($) -2589) (-15 -3408 ($) -2589) (-15 -3923 ($) -2589) (-15 -2117 ($) -2589)))) (T -139))
-((-1918 (*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-139)))) (-1918 (*1 *1 *2) (-12 (-5 *2 (-621 (-142))) (-5 *1 (-139)))) (-4310 (*1 *1) (-5 *1 (-139))) (-3819 (*1 *1) (-5 *1 (-139))) (-2946 (*1 *1) (-5 *1 (-139))) (-3408 (*1 *1) (-5 *1 (-139))) (-3923 (*1 *1) (-5 *1 (-139))) (-2117 (*1 *1) (-5 *1 (-139))))
-(-13 (-1067) (-594 (-1125)) (-418 (-142)) (-594 (-621 (-142))) (-10 -8 (-15 -1918 ($ (-1125))) (-15 -1918 ($ (-621 (-142)))) (-15 -4310 ($) -2589) (-15 -3819 ($) -2589) (-15 -2946 ($) -2589) (-15 -3408 ($) -2589) (-15 -3923 ($) -2589) (-15 -2117 ($) -2589)))
-((-2050 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 17)) (-2836 ((|#1| |#3|) 9)) (-1308 ((|#3| |#3|) 15)))
-(((-140 |#1| |#2| |#3|) (-10 -7 (-15 -2836 (|#1| |#3|)) (-15 -1308 (|#3| |#3|)) (-15 -2050 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-541) (-963 |#1|) (-366 |#2|)) (T -140))
-((-2050 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-963 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-140 *4 *5 *3)) (-4 *3 (-366 *5)))) (-1308 (*1 *2 *2) (-12 (-4 *3 (-541)) (-4 *4 (-963 *3)) (-5 *1 (-140 *3 *4 *2)) (-4 *2 (-366 *4)))) (-2836 (*1 *2 *3) (-12 (-4 *4 (-963 *2)) (-4 *2 (-541)) (-5 *1 (-140 *2 *4 *3)) (-4 *3 (-366 *4)))))
-(-10 -7 (-15 -2836 (|#1| |#3|)) (-15 -1308 (|#3| |#3|)) (-15 -2050 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
-((-1271 (($ $ $) 8)) (-4005 (($ $) 7)) (-3179 (($ $ $) 6)))
+((-3832 (((-112) $ $) NIL)) (-2913 (($) 15 T CONST)) (-2832 (($) NIL (|has| (-142) (-361)))) (-1441 (($ $ $) 17) (($ $ (-142)) NIL) (($ (-142) $) NIL)) (-4029 (($ $ $) NIL)) (-1341 (((-112) $ $) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-3614 (((-747)) NIL (|has| (-142) (-361)))) (-2787 (($) NIL) (($ (-621 (-142))) NIL)) (-3827 (($ (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066))))) (-3546 (($ (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4336))) (($ (-142) $) 51 (|has| $ (-6 -4336)))) (-3812 (($ (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4336))) (($ (-142) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066))))) (-2556 (((-142) (-1 (-142) (-142) (-142)) $) NIL (|has| $ (-6 -4336))) (((-142) (-1 (-142) (-142) (-142)) $ (-142)) NIL (|has| $ (-6 -4336))) (((-142) (-1 (-142) (-142) (-142)) $ (-142) (-142)) NIL (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066))))) (-3237 (($) NIL (|has| (-142) (-361)))) (-2987 (((-621 (-142)) $) 60 (|has| $ (-6 -4336)))) (-1513 (((-112) $ $) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-2861 (((-142) $) NIL (|has| (-142) (-823)))) (-3698 (((-621 (-142)) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-142) $) 26 (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066))))) (-3574 (((-142) $) NIL (|has| (-142) (-823)))) (-1864 (($ (-1 (-142) (-142)) $) 59 (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-142) (-142)) $) 55)) (-1867 (($) 16 T CONST)) (-3309 (((-892) $) NIL (|has| (-142) (-361)))) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL)) (-3869 (($ $ $) 29)) (-2548 (((-142) $) 52)) (-1799 (($ (-142) $) 50)) (-3494 (($ (-892)) NIL (|has| (-142) (-361)))) (-2141 (($) 14 T CONST)) (-3988 (((-1086) $) NIL)) (-3959 (((-3 (-142) "failed") (-1 (-112) (-142)) $) NIL)) (-3536 (((-142) $) 53)) (-3360 (((-112) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-142)) (-621 (-142))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066)))) (($ $ (-142) (-142)) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066)))) (($ $ (-287 (-142))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066)))) (($ $ (-621 (-287 (-142)))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) 48)) (-1361 (($) 13 T CONST)) (-4020 (($ $ $) 31) (($ $ (-142)) NIL)) (-3226 (($ (-621 (-142))) NIL) (($) NIL)) (-3997 (((-747) (-142) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066)))) (((-747) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) NIL)) (-2843 (((-1124) $) 36) (((-525) $) NIL (|has| (-142) (-594 (-525)))) (((-621 (-142)) $) 34)) (-3853 (($ (-621 (-142))) NIL)) (-2517 (($ $) 32 (|has| (-142) (-361)))) (-3845 (((-834) $) 46)) (-1428 (($ (-1124)) 12) (($ (-621 (-142))) 43)) (-3398 (((-747) $) NIL)) (-4119 (($) 49) (($ (-621 (-142))) NIL)) (-4213 (($ (-621 (-142))) NIL)) (-3025 (((-112) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4336)))) (-1621 (($) 19 T CONST)) (-2962 (($) 18 T CONST)) (-2387 (((-112) $ $) 22)) (-3774 (((-747) $) 47 (|has| $ (-6 -4336)))))
+(((-139) (-13 (-1066) (-594 (-1124)) (-418 (-142)) (-594 (-621 (-142))) (-10 -8 (-15 -1428 ($ (-1124))) (-15 -1428 ($ (-621 (-142)))) (-15 -1361 ($) -2587) (-15 -2141 ($) -2587) (-15 -2913 ($) -2587) (-15 -1867 ($) -2587) (-15 -2962 ($) -2587) (-15 -1621 ($) -2587)))) (T -139))
+((-1428 (*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-139)))) (-1428 (*1 *1 *2) (-12 (-5 *2 (-621 (-142))) (-5 *1 (-139)))) (-1361 (*1 *1) (-5 *1 (-139))) (-2141 (*1 *1) (-5 *1 (-139))) (-2913 (*1 *1) (-5 *1 (-139))) (-1867 (*1 *1) (-5 *1 (-139))) (-2962 (*1 *1) (-5 *1 (-139))) (-1621 (*1 *1) (-5 *1 (-139))))
+(-13 (-1066) (-594 (-1124)) (-418 (-142)) (-594 (-621 (-142))) (-10 -8 (-15 -1428 ($ (-1124))) (-15 -1428 ($ (-621 (-142)))) (-15 -1361 ($) -2587) (-15 -2141 ($) -2587) (-15 -2913 ($) -2587) (-15 -1867 ($) -2587) (-15 -2962 ($) -2587) (-15 -1621 ($) -2587)))
+((-1758 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 17)) (-3727 ((|#1| |#3|) 9)) (-2308 ((|#3| |#3|) 15)))
+(((-140 |#1| |#2| |#3|) (-10 -7 (-15 -3727 (|#1| |#3|)) (-15 -2308 (|#3| |#3|)) (-15 -1758 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-541) (-963 |#1|) (-366 |#2|)) (T -140))
+((-1758 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-963 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-140 *4 *5 *3)) (-4 *3 (-366 *5)))) (-2308 (*1 *2 *2) (-12 (-4 *3 (-541)) (-4 *4 (-963 *3)) (-5 *1 (-140 *3 *4 *2)) (-4 *2 (-366 *4)))) (-3727 (*1 *2 *3) (-12 (-4 *4 (-963 *2)) (-4 *2 (-541)) (-5 *1 (-140 *2 *4 *3)) (-4 *3 (-366 *4)))))
+(-10 -7 (-15 -3727 (|#1| |#3|)) (-15 -2308 (|#3| |#3|)) (-15 -1758 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
+((-1926 (($ $ $) 8)) (-3674 (($ $) 7)) (-2772 (($ $ $) 6)))
(((-141) (-138)) (T -141))
-((-1271 (*1 *1 *1 *1) (-4 *1 (-141))) (-4005 (*1 *1 *1) (-4 *1 (-141))) (-3179 (*1 *1 *1 *1) (-4 *1 (-141))))
-(-13 (-10 -8 (-15 -3179 ($ $ $)) (-15 -4005 ($ $)) (-15 -1271 ($ $ $))))
-((-3834 (((-112) $ $) NIL)) (-2900 (((-112) $) 30)) (-2946 (($ $) 43)) (-3192 (($) 17)) (-3614 (((-747)) 10)) (-3239 (($) 16)) (-4145 (($) 18)) (-2003 (((-747) $) 14)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-2416 (((-112) $) 32)) (-3408 (($ $) 44)) (-1881 (((-892) $) 15)) (-3851 (((-1125) $) 38)) (-3493 (($ (-892)) 13)) (-2962 (((-112) $) 28)) (-3990 (((-1087) $) NIL)) (-2051 (($) 19)) (-3429 (((-112) $) 26)) (-3846 (((-834) $) 21)) (-1307 (($ (-747)) 11) (($ (-1125)) 42)) (-3206 (((-112) $) 36)) (-1305 (((-112) $) 34)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 7)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 8)))
-(((-142) (-13 (-817) (-10 -8 (-15 -2003 ((-747) $)) (-15 -1307 ($ (-747))) (-15 -1307 ($ (-1125))) (-15 -3192 ($)) (-15 -4145 ($)) (-15 -2051 ($)) (-15 -2946 ($ $)) (-15 -3408 ($ $)) (-15 -3429 ((-112) $)) (-15 -2962 ((-112) $)) (-15 -1305 ((-112) $)) (-15 -2900 ((-112) $)) (-15 -2416 ((-112) $)) (-15 -3206 ((-112) $))))) (T -142))
-((-2003 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-142)))) (-1307 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-142)))) (-1307 (*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-142)))) (-3192 (*1 *1) (-5 *1 (-142))) (-4145 (*1 *1) (-5 *1 (-142))) (-2051 (*1 *1) (-5 *1 (-142))) (-2946 (*1 *1 *1) (-5 *1 (-142))) (-3408 (*1 *1 *1) (-5 *1 (-142))) (-3429 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))) (-2962 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))) (-1305 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))) (-2900 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))) (-2416 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))) (-3206 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))))
-(-13 (-817) (-10 -8 (-15 -2003 ((-747) $)) (-15 -1307 ($ (-747))) (-15 -1307 ($ (-1125))) (-15 -3192 ($)) (-15 -4145 ($)) (-15 -2051 ($)) (-15 -2946 ($ $)) (-15 -3408 ($ $)) (-15 -3429 ((-112) $)) (-15 -2962 ((-112) $)) (-15 -1305 ((-112) $)) (-15 -2900 ((-112) $)) (-15 -2416 ((-112) $)) (-15 -3206 ((-112) $))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11) (($ (-549)) 27)) (-2210 (((-3 $ "failed") $) 33)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+((-1926 (*1 *1 *1 *1) (-4 *1 (-141))) (-3674 (*1 *1 *1) (-4 *1 (-141))) (-2772 (*1 *1 *1 *1) (-4 *1 (-141))))
+(-13 (-10 -8 (-15 -2772 ($ $ $)) (-15 -3674 ($ $)) (-15 -1926 ($ $ $))))
+((-3832 (((-112) $ $) NIL)) (-2261 (((-112) $) 30)) (-2913 (($ $) 43)) (-1646 (($) 17)) (-3614 (((-747)) 10)) (-3237 (($) 16)) (-1337 (($) 18)) (-2628 (((-747) $) 14)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-2383 (((-112) $) 32)) (-1867 (($ $) 44)) (-3309 (((-892) $) 15)) (-3441 (((-1124) $) 38)) (-3494 (($ (-892)) 13)) (-1970 (((-112) $) 28)) (-3988 (((-1086) $) NIL)) (-1844 (($) 19)) (-3428 (((-112) $) 26)) (-3845 (((-834) $) 21)) (-1306 (($ (-747)) 11) (($ (-1124)) 42)) (-2752 (((-112) $) 36)) (-2024 (((-112) $) 34)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 7)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 8)))
+(((-142) (-13 (-817) (-10 -8 (-15 -2628 ((-747) $)) (-15 -1306 ($ (-747))) (-15 -1306 ($ (-1124))) (-15 -1646 ($)) (-15 -1337 ($)) (-15 -1844 ($)) (-15 -2913 ($ $)) (-15 -1867 ($ $)) (-15 -3428 ((-112) $)) (-15 -1970 ((-112) $)) (-15 -2024 ((-112) $)) (-15 -2261 ((-112) $)) (-15 -2383 ((-112) $)) (-15 -2752 ((-112) $))))) (T -142))
+((-2628 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-142)))) (-1306 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-142)))) (-1306 (*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-142)))) (-1646 (*1 *1) (-5 *1 (-142))) (-1337 (*1 *1) (-5 *1 (-142))) (-1844 (*1 *1) (-5 *1 (-142))) (-2913 (*1 *1 *1) (-5 *1 (-142))) (-1867 (*1 *1 *1) (-5 *1 (-142))) (-3428 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))) (-1970 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))) (-2024 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))) (-2261 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))) (-2383 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))) (-2752 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))))
+(-13 (-817) (-10 -8 (-15 -2628 ((-747) $)) (-15 -1306 ($ (-747))) (-15 -1306 ($ (-1124))) (-15 -1646 ($)) (-15 -1337 ($)) (-15 -1844 ($)) (-15 -2913 ($ $)) (-15 -1867 ($ $)) (-15 -3428 ((-112) $)) (-15 -1970 ((-112) $)) (-15 -2024 ((-112) $)) (-15 -2261 ((-112) $)) (-15 -2383 ((-112) $)) (-15 -2752 ((-112) $))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11) (($ (-549)) 27)) (-2343 (((-3 $ "failed") $) 33)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-143) (-138)) (T -143))
-((-2210 (*1 *1 *1) (|partial| -4 *1 (-143))))
-(-13 (-1018) (-10 -8 (-15 -2210 ((-3 $ "failed") $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-4154 ((|#1| (-665 |#1|) |#1|) 19)))
-(((-144 |#1|) (-10 -7 (-15 -4154 (|#1| (-665 |#1|) |#1|))) (-170)) (T -144))
-((-4154 (*1 *2 *3 *2) (-12 (-5 *3 (-665 *2)) (-4 *2 (-170)) (-5 *1 (-144 *2)))))
-(-10 -7 (-15 -4154 (|#1| (-665 |#1|) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11) (($ (-549)) 27)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+((-2343 (*1 *1 *1) (|partial| -4 *1 (-143))))
+(-13 (-1018) (-10 -8 (-15 -2343 ((-3 $ "failed") $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-4019 ((|#1| (-665 |#1|) |#1|) 19)))
+(((-144 |#1|) (-10 -7 (-15 -4019 (|#1| (-665 |#1|) |#1|))) (-170)) (T -144))
+((-4019 (*1 *2 *3 *2) (-12 (-5 *3 (-665 *2)) (-4 *2 (-170)) (-5 *1 (-144 *2)))))
+(-10 -7 (-15 -4019 (|#1| (-665 |#1|) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11) (($ (-549)) 27)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-145) (-138)) (T -145))
NIL
(-13 (-1018))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-1787 (((-2 (|:| -3731 (-747)) (|:| -1570 (-400 |#2|)) (|:| |radicand| |#2|)) (-400 |#2|) (-747)) 70)) (-2852 (((-3 (-2 (|:| |radicand| (-400 |#2|)) (|:| |deg| (-747))) "failed") |#3|) 52)) (-3321 (((-2 (|:| -1570 (-400 |#2|)) (|:| |poly| |#3|)) |#3|) 37)) (-3107 ((|#1| |#3| |#3|) 40)) (-2686 ((|#3| |#3| (-400 |#2|) (-400 |#2|)) 19)) (-4029 (((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-400 |#2|)) (|:| |c2| (-400 |#2|)) (|:| |deg| (-747))) |#3| |#3|) 49)))
-(((-146 |#1| |#2| |#3|) (-10 -7 (-15 -3321 ((-2 (|:| -1570 (-400 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -2852 ((-3 (-2 (|:| |radicand| (-400 |#2|)) (|:| |deg| (-747))) "failed") |#3|)) (-15 -1787 ((-2 (|:| -3731 (-747)) (|:| -1570 (-400 |#2|)) (|:| |radicand| |#2|)) (-400 |#2|) (-747))) (-15 -3107 (|#1| |#3| |#3|)) (-15 -2686 (|#3| |#3| (-400 |#2|) (-400 |#2|))) (-15 -4029 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-400 |#2|)) (|:| |c2| (-400 |#2|)) (|:| |deg| (-747))) |#3| |#3|))) (-1184) (-1202 |#1|) (-1202 (-400 |#2|))) (T -146))
-((-4029 (*1 *2 *3 *3) (-12 (-4 *4 (-1184)) (-4 *5 (-1202 *4)) (-5 *2 (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-400 *5)) (|:| |c2| (-400 *5)) (|:| |deg| (-747)))) (-5 *1 (-146 *4 *5 *3)) (-4 *3 (-1202 (-400 *5))))) (-2686 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-400 *5)) (-4 *4 (-1184)) (-4 *5 (-1202 *4)) (-5 *1 (-146 *4 *5 *2)) (-4 *2 (-1202 *3)))) (-3107 (*1 *2 *3 *3) (-12 (-4 *4 (-1202 *2)) (-4 *2 (-1184)) (-5 *1 (-146 *2 *4 *3)) (-4 *3 (-1202 (-400 *4))))) (-1787 (*1 *2 *3 *4) (-12 (-5 *3 (-400 *6)) (-4 *5 (-1184)) (-4 *6 (-1202 *5)) (-5 *2 (-2 (|:| -3731 (-747)) (|:| -1570 *3) (|:| |radicand| *6))) (-5 *1 (-146 *5 *6 *7)) (-5 *4 (-747)) (-4 *7 (-1202 *3)))) (-2852 (*1 *2 *3) (|partial| -12 (-4 *4 (-1184)) (-4 *5 (-1202 *4)) (-5 *2 (-2 (|:| |radicand| (-400 *5)) (|:| |deg| (-747)))) (-5 *1 (-146 *4 *5 *3)) (-4 *3 (-1202 (-400 *5))))) (-3321 (*1 *2 *3) (-12 (-4 *4 (-1184)) (-4 *5 (-1202 *4)) (-5 *2 (-2 (|:| -1570 (-400 *5)) (|:| |poly| *3))) (-5 *1 (-146 *4 *5 *3)) (-4 *3 (-1202 (-400 *5))))))
-(-10 -7 (-15 -3321 ((-2 (|:| -1570 (-400 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -2852 ((-3 (-2 (|:| |radicand| (-400 |#2|)) (|:| |deg| (-747))) "failed") |#3|)) (-15 -1787 ((-2 (|:| -3731 (-747)) (|:| -1570 (-400 |#2|)) (|:| |radicand| |#2|)) (-400 |#2|) (-747))) (-15 -3107 (|#1| |#3| |#3|)) (-15 -2686 (|#3| |#3| (-400 |#2|) (-400 |#2|))) (-15 -4029 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-400 |#2|)) (|:| |c2| (-400 |#2|)) (|:| |deg| (-747))) |#3| |#3|)))
-((-1348 (((-3 (-621 (-1139 |#2|)) "failed") (-621 (-1139 |#2|)) (-1139 |#2|)) 32)))
-(((-147 |#1| |#2|) (-10 -7 (-15 -1348 ((-3 (-621 (-1139 |#2|)) "failed") (-621 (-1139 |#2|)) (-1139 |#2|)))) (-534) (-164 |#1|)) (T -147))
-((-1348 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-621 (-1139 *5))) (-5 *3 (-1139 *5)) (-4 *5 (-164 *4)) (-4 *4 (-534)) (-5 *1 (-147 *4 *5)))))
-(-10 -7 (-15 -1348 ((-3 (-621 (-1139 |#2|)) "failed") (-621 (-1139 |#2|)) (-1139 |#2|))))
-((-1489 (($ (-1 (-112) |#2|) $) 29)) (-3676 (($ $) 36)) (-3812 (($ (-1 (-112) |#2|) $) 27) (($ |#2| $) 32)) (-2557 ((|#2| (-1 |#2| |#2| |#2|) $) 22) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 24) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 34)) (-3779 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 19)) (-1780 (((-112) (-1 (-112) |#2|) $) 16)) (-4000 (((-747) (-1 (-112) |#2|) $) 14) (((-747) |#2| $) NIL)) (-3527 (((-112) (-1 (-112) |#2|) $) 15)) (-3775 (((-747) $) 11)))
-(((-148 |#1| |#2|) (-10 -8 (-15 -3676 (|#1| |#1|)) (-15 -3812 (|#1| |#2| |#1|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1489 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3812 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3779 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4000 ((-747) |#2| |#1|)) (-15 -4000 ((-747) (-1 (-112) |#2|) |#1|)) (-15 -1780 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3527 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3775 ((-747) |#1|))) (-149 |#2|) (-1180)) (T -148))
-NIL
-(-10 -8 (-15 -3676 (|#1| |#1|)) (-15 -3812 (|#1| |#2| |#1|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1489 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3812 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3779 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4000 ((-747) |#2| |#1|)) (-15 -4000 ((-747) (-1 (-112) |#2|) |#1|)) (-15 -1780 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3527 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3775 ((-747) |#1|)))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-1584 (((-112) $ (-747)) 8)) (-1489 (($ (-1 (-112) |#1|) $) 44 (|has| $ (-6 -4337)))) (-1682 (($) 7 T CONST)) (-3676 (($ $) 41 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4337))) (($ |#1| $) 42 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $) 47 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 46 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) 9)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 48)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-2845 (((-525) $) 40 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 49)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-149 |#1|) (-138) (-1180)) (T -149))
-((-3854 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-4 *1 (-149 *3)))) (-3779 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-149 *2)) (-4 *2 (-1180)))) (-2557 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4337)) (-4 *1 (-149 *2)) (-4 *2 (-1180)))) (-2557 (*1 *2 *3 *1 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4337)) (-4 *1 (-149 *2)) (-4 *2 (-1180)))) (-3812 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4337)) (-4 *1 (-149 *3)) (-4 *3 (-1180)))) (-1489 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4337)) (-4 *1 (-149 *3)) (-4 *3 (-1180)))) (-2557 (*1 *2 *3 *1 *2 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1067)) (|has| *1 (-6 -4337)) (-4 *1 (-149 *2)) (-4 *2 (-1180)))) (-3812 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-149 *2)) (-4 *2 (-1180)) (-4 *2 (-1067)))) (-3676 (*1 *1 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-149 *2)) (-4 *2 (-1180)) (-4 *2 (-1067)))))
-(-13 (-481 |t#1|) (-10 -8 (-15 -3854 ($ (-621 |t#1|))) (-15 -3779 ((-3 |t#1| "failed") (-1 (-112) |t#1|) $)) (IF (|has| $ (-6 -4337)) (PROGN (-15 -2557 (|t#1| (-1 |t#1| |t#1| |t#1|) $)) (-15 -2557 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1|)) (-15 -3812 ($ (-1 (-112) |t#1|) $)) (-15 -1489 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1067)) (PROGN (-15 -2557 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1| |t#1|)) (-15 -3812 ($ |t#1| $)) (-15 -3676 ($ $))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|)))
-(((-34) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-1067) |has| |#1| (-1067)) ((-1180) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2114 (((-3 $ "failed") $) 86)) (-2675 (((-112) $) NIL)) (-2246 (($ |#2| (-621 (-892))) 56)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-1630 (($ (-892)) 47)) (-2985 (((-133)) 23)) (-3846 (((-834) $) 69) (($ (-549)) 45) (($ |#2|) 46)) (-2152 ((|#2| $ (-621 (-892))) 59)) (-2082 (((-747)) 20)) (-3276 (($) 40 T CONST)) (-3287 (($) 43 T CONST)) (-2389 (((-112) $ $) 26)) (-2513 (($ $ |#2|) NIL)) (-2500 (($ $) 34) (($ $ $) 32)) (-2486 (($ $ $) 30)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 37) (($ $ $) 51) (($ |#2| $) 39) (($ $ |#2|) NIL)))
-(((-150 |#1| |#2| |#3|) (-13 (-1018) (-38 |#2|) (-1233 |#2|) (-10 -8 (-15 -1630 ($ (-892))) (-15 -2246 ($ |#2| (-621 (-892)))) (-15 -2152 (|#2| $ (-621 (-892)))) (-15 -2114 ((-3 $ "failed") $)))) (-892) (-356) (-964 |#1| |#2|)) (T -150))
-((-2114 (*1 *1 *1) (|partial| -12 (-5 *1 (-150 *2 *3 *4)) (-14 *2 (-892)) (-4 *3 (-356)) (-14 *4 (-964 *2 *3)))) (-1630 (*1 *1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-150 *3 *4 *5)) (-14 *3 *2) (-4 *4 (-356)) (-14 *5 (-964 *3 *4)))) (-2246 (*1 *1 *2 *3) (-12 (-5 *3 (-621 (-892))) (-5 *1 (-150 *4 *2 *5)) (-14 *4 (-892)) (-4 *2 (-356)) (-14 *5 (-964 *4 *2)))) (-2152 (*1 *2 *1 *3) (-12 (-5 *3 (-621 (-892))) (-4 *2 (-356)) (-5 *1 (-150 *4 *2 *5)) (-14 *4 (-892)) (-14 *5 (-964 *4 *2)))))
-(-13 (-1018) (-38 |#2|) (-1233 |#2|) (-10 -8 (-15 -1630 ($ (-892))) (-15 -2246 ($ |#2| (-621 (-892)))) (-15 -2152 (|#2| $ (-621 (-892)))) (-15 -2114 ((-3 $ "failed") $))))
-((-2543 (((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-621 (-621 (-914 (-219)))) (-219) (-219) (-219) (-219)) 38)) (-1390 (((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-898) (-400 (-549)) (-400 (-549))) 63) (((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-898)) 64)) (-3198 (((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-621 (-621 (-914 (-219))))) 67) (((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-621 (-914 (-219)))) 66) (((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-898) (-400 (-549)) (-400 (-549))) 58) (((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-898)) 59)))
-(((-151) (-10 -7 (-15 -3198 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-898))) (-15 -3198 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-898) (-400 (-549)) (-400 (-549)))) (-15 -1390 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-898))) (-15 -1390 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-898) (-400 (-549)) (-400 (-549)))) (-15 -2543 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-621 (-621 (-914 (-219)))) (-219) (-219) (-219) (-219))) (-15 -3198 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-621 (-914 (-219))))) (-15 -3198 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-621 (-621 (-914 (-219)))))))) (T -151))
-((-3198 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219))))) (-5 *1 (-151)) (-5 *3 (-621 (-621 (-914 (-219))))))) (-3198 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219))))) (-5 *1 (-151)) (-5 *3 (-621 (-914 (-219)))))) (-2543 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *4 (-219)) (-5 *2 (-2 (|:| |brans| (-621 (-621 (-914 *4)))) (|:| |xValues| (-1061 *4)) (|:| |yValues| (-1061 *4)))) (-5 *1 (-151)) (-5 *3 (-621 (-621 (-914 *4)))))) (-1390 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-898)) (-5 *4 (-400 (-549))) (-5 *2 (-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219))))) (-5 *1 (-151)))) (-1390 (*1 *2 *3) (-12 (-5 *3 (-898)) (-5 *2 (-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219))))) (-5 *1 (-151)))) (-3198 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-898)) (-5 *4 (-400 (-549))) (-5 *2 (-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219))))) (-5 *1 (-151)))) (-3198 (*1 *2 *3) (-12 (-5 *3 (-898)) (-5 *2 (-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219))))) (-5 *1 (-151)))))
-(-10 -7 (-15 -3198 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-898))) (-15 -3198 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-898) (-400 (-549)) (-400 (-549)))) (-15 -1390 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-898))) (-15 -1390 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-898) (-400 (-549)) (-400 (-549)))) (-15 -2543 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-621 (-621 (-914 (-219)))) (-219) (-219) (-219) (-219))) (-15 -3198 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-621 (-914 (-219))))) (-15 -3198 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))) (-621 (-621 (-914 (-219)))))))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3022 (((-621 (-1148)) $) 15)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2492 (((-1148) $) 9)) (-2389 (((-112) $ $) NIL)))
-(((-152) (-13 (-1050) (-10 -8 (-15 -3022 ((-621 (-1148)) $)) (-15 -2492 ((-1148) $))))) (T -152))
-((-3022 (*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-152)))) (-2492 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-152)))))
-(-13 (-1050) (-10 -8 (-15 -3022 ((-621 (-1148)) $)) (-15 -2492 ((-1148) $))))
-((-2792 (((-621 (-167 |#2|)) |#1| |#2|) 45)))
-(((-153 |#1| |#2|) (-10 -7 (-15 -2792 ((-621 (-167 |#2|)) |#1| |#2|))) (-1202 (-167 (-549))) (-13 (-356) (-821))) (T -153))
-((-2792 (*1 *2 *3 *4) (-12 (-5 *2 (-621 (-167 *4))) (-5 *1 (-153 *3 *4)) (-4 *3 (-1202 (-167 (-549)))) (-4 *4 (-13 (-356) (-821))))))
-(-10 -7 (-15 -2792 ((-621 (-167 |#2|)) |#1| |#2|)))
-((-3834 (((-112) $ $) NIL)) (-2203 (((-1179) $) 12)) (-2190 (((-1148) $) 9)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-154) (-13 (-1050) (-10 -8 (-15 -2190 ((-1148) $)) (-15 -2203 ((-1179) $))))) (T -154))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-154)))) (-2203 (*1 *2 *1) (-12 (-5 *2 (-1179)) (-5 *1 (-154)))))
-(-13 (-1050) (-10 -8 (-15 -2190 ((-1148) $)) (-15 -2203 ((-1179) $))))
-((-3834 (((-112) $ $) NIL)) (-1395 (($) 15)) (-3377 (($) 14)) (-2368 (((-892)) 22)) (-3851 (((-1125) $) NIL)) (-1886 (((-549) $) 19)) (-3990 (((-1087) $) NIL)) (-2996 (($) 16)) (-3288 (($ (-549)) 23)) (-3846 (((-834) $) 29)) (-3539 (($) 17)) (-2389 (((-112) $ $) 13)) (-2486 (($ $ $) 11)) (* (($ (-892) $) 21) (($ (-219) $) 8)))
-(((-155) (-13 (-25) (-10 -8 (-15 * ($ (-892) $)) (-15 * ($ (-219) $)) (-15 -2486 ($ $ $)) (-15 -3377 ($)) (-15 -1395 ($)) (-15 -2996 ($)) (-15 -3539 ($)) (-15 -1886 ((-549) $)) (-15 -2368 ((-892))) (-15 -3288 ($ (-549)))))) (T -155))
-((-2486 (*1 *1 *1 *1) (-5 *1 (-155))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-892)) (-5 *1 (-155)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-219)) (-5 *1 (-155)))) (-3377 (*1 *1) (-5 *1 (-155))) (-1395 (*1 *1) (-5 *1 (-155))) (-2996 (*1 *1) (-5 *1 (-155))) (-3539 (*1 *1) (-5 *1 (-155))) (-1886 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-155)))) (-2368 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-155)))) (-3288 (*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-155)))))
-(-13 (-25) (-10 -8 (-15 * ($ (-892) $)) (-15 * ($ (-219) $)) (-15 -2486 ($ $ $)) (-15 -3377 ($)) (-15 -1395 ($)) (-15 -2996 ($)) (-15 -3539 ($)) (-15 -1886 ((-549) $)) (-15 -2368 ((-892))) (-15 -3288 ($ (-549)))))
-((-2441 ((|#2| |#2| (-1059 |#2|)) 88) ((|#2| |#2| (-1143)) 68)) (-1747 ((|#2| |#2| (-1059 |#2|)) 87) ((|#2| |#2| (-1143)) 67)) (-1271 ((|#2| |#2| |#2|) 27)) (-2834 (((-114) (-114)) 99)) (-3698 ((|#2| (-621 |#2|)) 117)) (-4302 ((|#2| (-621 |#2|)) 135)) (-2229 ((|#2| (-621 |#2|)) 125)) (-3643 ((|#2| |#2|) 123)) (-1866 ((|#2| (-621 |#2|)) 111)) (-3226 ((|#2| (-621 |#2|)) 112)) (-4080 ((|#2| (-621 |#2|)) 133)) (-3251 ((|#2| |#2| (-1143)) 56) ((|#2| |#2|) 55)) (-4005 ((|#2| |#2|) 23)) (-3179 ((|#2| |#2| |#2|) 26)) (-4285 (((-112) (-114)) 49)) (** ((|#2| |#2| |#2|) 41)))
-(((-156 |#1| |#2|) (-10 -7 (-15 -4285 ((-112) (-114))) (-15 -2834 ((-114) (-114))) (-15 ** (|#2| |#2| |#2|)) (-15 -3179 (|#2| |#2| |#2|)) (-15 -1271 (|#2| |#2| |#2|)) (-15 -4005 (|#2| |#2|)) (-15 -3251 (|#2| |#2|)) (-15 -3251 (|#2| |#2| (-1143))) (-15 -2441 (|#2| |#2| (-1143))) (-15 -2441 (|#2| |#2| (-1059 |#2|))) (-15 -1747 (|#2| |#2| (-1143))) (-15 -1747 (|#2| |#2| (-1059 |#2|))) (-15 -3643 (|#2| |#2|)) (-15 -4080 (|#2| (-621 |#2|))) (-15 -2229 (|#2| (-621 |#2|))) (-15 -4302 (|#2| (-621 |#2|))) (-15 -1866 (|#2| (-621 |#2|))) (-15 -3226 (|#2| (-621 |#2|))) (-15 -3698 (|#2| (-621 |#2|)))) (-13 (-823) (-541)) (-423 |#1|)) (T -156))
-((-3698 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2)) (-4 *4 (-13 (-823) (-541))))) (-3226 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2)) (-4 *4 (-13 (-823) (-541))))) (-1866 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2)) (-4 *4 (-13 (-823) (-541))))) (-4302 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2)) (-4 *4 (-13 (-823) (-541))))) (-2229 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2)) (-4 *4 (-13 (-823) (-541))))) (-4080 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2)) (-4 *4 (-13 (-823) (-541))))) (-3643 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2)) (-4 *2 (-423 *3)))) (-1747 (*1 *2 *2 *3) (-12 (-5 *3 (-1059 *2)) (-4 *2 (-423 *4)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-156 *4 *2)))) (-1747 (*1 *2 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-156 *4 *2)) (-4 *2 (-423 *4)))) (-2441 (*1 *2 *2 *3) (-12 (-5 *3 (-1059 *2)) (-4 *2 (-423 *4)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-156 *4 *2)))) (-2441 (*1 *2 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-156 *4 *2)) (-4 *2 (-423 *4)))) (-3251 (*1 *2 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-156 *4 *2)) (-4 *2 (-423 *4)))) (-3251 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2)) (-4 *2 (-423 *3)))) (-4005 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2)) (-4 *2 (-423 *3)))) (-1271 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2)) (-4 *2 (-423 *3)))) (-3179 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2)) (-4 *2 (-423 *3)))) (** (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2)) (-4 *2 (-423 *3)))) (-2834 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *4)) (-4 *4 (-423 *3)))) (-4285 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112)) (-5 *1 (-156 *4 *5)) (-4 *5 (-423 *4)))))
-(-10 -7 (-15 -4285 ((-112) (-114))) (-15 -2834 ((-114) (-114))) (-15 ** (|#2| |#2| |#2|)) (-15 -3179 (|#2| |#2| |#2|)) (-15 -1271 (|#2| |#2| |#2|)) (-15 -4005 (|#2| |#2|)) (-15 -3251 (|#2| |#2|)) (-15 -3251 (|#2| |#2| (-1143))) (-15 -2441 (|#2| |#2| (-1143))) (-15 -2441 (|#2| |#2| (-1059 |#2|))) (-15 -1747 (|#2| |#2| (-1143))) (-15 -1747 (|#2| |#2| (-1059 |#2|))) (-15 -3643 (|#2| |#2|)) (-15 -4080 (|#2| (-621 |#2|))) (-15 -2229 (|#2| (-621 |#2|))) (-15 -4302 (|#2| (-621 |#2|))) (-15 -1866 (|#2| (-621 |#2|))) (-15 -3226 (|#2| (-621 |#2|))) (-15 -3698 (|#2| (-621 |#2|))))
-((-3586 ((|#1| |#1| |#1|) 53)) (-2610 ((|#1| |#1| |#1|) 50)) (-1271 ((|#1| |#1| |#1|) 44)) (-3457 ((|#1| |#1|) 35)) (-3446 ((|#1| |#1| (-621 |#1|)) 43)) (-4005 ((|#1| |#1|) 37)) (-3179 ((|#1| |#1| |#1|) 40)))
-(((-157 |#1|) (-10 -7 (-15 -3179 (|#1| |#1| |#1|)) (-15 -4005 (|#1| |#1|)) (-15 -3446 (|#1| |#1| (-621 |#1|))) (-15 -3457 (|#1| |#1|)) (-15 -1271 (|#1| |#1| |#1|)) (-15 -2610 (|#1| |#1| |#1|)) (-15 -3586 (|#1| |#1| |#1|))) (-534)) (T -157))
-((-3586 (*1 *2 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))) (-2610 (*1 *2 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))) (-1271 (*1 *2 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))) (-3457 (*1 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))) (-3446 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-534)) (-5 *1 (-157 *2)))) (-4005 (*1 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))) (-3179 (*1 *2 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))))
-(-10 -7 (-15 -3179 (|#1| |#1| |#1|)) (-15 -4005 (|#1| |#1|)) (-15 -3446 (|#1| |#1| (-621 |#1|))) (-15 -3457 (|#1| |#1|)) (-15 -1271 (|#1| |#1| |#1|)) (-15 -2610 (|#1| |#1| |#1|)) (-15 -3586 (|#1| |#1| |#1|)))
-((-2441 (($ $ (-1143)) 12) (($ $ (-1059 $)) 11)) (-1747 (($ $ (-1143)) 10) (($ $ (-1059 $)) 9)) (-1271 (($ $ $) 8)) (-3251 (($ $) 14) (($ $ (-1143)) 13)) (-4005 (($ $) 7)) (-3179 (($ $ $) 6)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-2993 (((-2 (|:| -1714 (-747)) (|:| -1569 (-400 |#2|)) (|:| |radicand| |#2|)) (-400 |#2|) (-747)) 70)) (-1590 (((-3 (-2 (|:| |radicand| (-400 |#2|)) (|:| |deg| (-747))) "failed") |#3|) 52)) (-4278 (((-2 (|:| -1569 (-400 |#2|)) (|:| |poly| |#3|)) |#3|) 37)) (-2951 ((|#1| |#3| |#3|) 40)) (-2684 ((|#3| |#3| (-400 |#2|) (-400 |#2|)) 19)) (-3754 (((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-400 |#2|)) (|:| |c2| (-400 |#2|)) (|:| |deg| (-747))) |#3| |#3|) 49)))
+(((-146 |#1| |#2| |#3|) (-10 -7 (-15 -4278 ((-2 (|:| -1569 (-400 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -1590 ((-3 (-2 (|:| |radicand| (-400 |#2|)) (|:| |deg| (-747))) "failed") |#3|)) (-15 -2993 ((-2 (|:| -1714 (-747)) (|:| -1569 (-400 |#2|)) (|:| |radicand| |#2|)) (-400 |#2|) (-747))) (-15 -2951 (|#1| |#3| |#3|)) (-15 -2684 (|#3| |#3| (-400 |#2|) (-400 |#2|))) (-15 -3754 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-400 |#2|)) (|:| |c2| (-400 |#2|)) (|:| |deg| (-747))) |#3| |#3|))) (-1183) (-1201 |#1|) (-1201 (-400 |#2|))) (T -146))
+((-3754 (*1 *2 *3 *3) (-12 (-4 *4 (-1183)) (-4 *5 (-1201 *4)) (-5 *2 (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-400 *5)) (|:| |c2| (-400 *5)) (|:| |deg| (-747)))) (-5 *1 (-146 *4 *5 *3)) (-4 *3 (-1201 (-400 *5))))) (-2684 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-400 *5)) (-4 *4 (-1183)) (-4 *5 (-1201 *4)) (-5 *1 (-146 *4 *5 *2)) (-4 *2 (-1201 *3)))) (-2951 (*1 *2 *3 *3) (-12 (-4 *4 (-1201 *2)) (-4 *2 (-1183)) (-5 *1 (-146 *2 *4 *3)) (-4 *3 (-1201 (-400 *4))))) (-2993 (*1 *2 *3 *4) (-12 (-5 *3 (-400 *6)) (-4 *5 (-1183)) (-4 *6 (-1201 *5)) (-5 *2 (-2 (|:| -1714 (-747)) (|:| -1569 *3) (|:| |radicand| *6))) (-5 *1 (-146 *5 *6 *7)) (-5 *4 (-747)) (-4 *7 (-1201 *3)))) (-1590 (*1 *2 *3) (|partial| -12 (-4 *4 (-1183)) (-4 *5 (-1201 *4)) (-5 *2 (-2 (|:| |radicand| (-400 *5)) (|:| |deg| (-747)))) (-5 *1 (-146 *4 *5 *3)) (-4 *3 (-1201 (-400 *5))))) (-4278 (*1 *2 *3) (-12 (-4 *4 (-1183)) (-4 *5 (-1201 *4)) (-5 *2 (-2 (|:| -1569 (-400 *5)) (|:| |poly| *3))) (-5 *1 (-146 *4 *5 *3)) (-4 *3 (-1201 (-400 *5))))))
+(-10 -7 (-15 -4278 ((-2 (|:| -1569 (-400 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -1590 ((-3 (-2 (|:| |radicand| (-400 |#2|)) (|:| |deg| (-747))) "failed") |#3|)) (-15 -2993 ((-2 (|:| -1714 (-747)) (|:| -1569 (-400 |#2|)) (|:| |radicand| |#2|)) (-400 |#2|) (-747))) (-15 -2951 (|#1| |#3| |#3|)) (-15 -2684 (|#3| |#3| (-400 |#2|) (-400 |#2|))) (-15 -3754 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-400 |#2|)) (|:| |c2| (-400 |#2|)) (|:| |deg| (-747))) |#3| |#3|)))
+((-3955 (((-3 (-621 (-1138 |#2|)) "failed") (-621 (-1138 |#2|)) (-1138 |#2|)) 32)))
+(((-147 |#1| |#2|) (-10 -7 (-15 -3955 ((-3 (-621 (-1138 |#2|)) "failed") (-621 (-1138 |#2|)) (-1138 |#2|)))) (-534) (-164 |#1|)) (T -147))
+((-3955 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-621 (-1138 *5))) (-5 *3 (-1138 *5)) (-4 *5 (-164 *4)) (-4 *4 (-534)) (-5 *1 (-147 *4 *5)))))
+(-10 -7 (-15 -3955 ((-3 (-621 (-1138 |#2|)) "failed") (-621 (-1138 |#2|)) (-1138 |#2|))))
+((-1488 (($ (-1 (-112) |#2|) $) 29)) (-3675 (($ $) 36)) (-3812 (($ (-1 (-112) |#2|) $) 27) (($ |#2| $) 32)) (-2556 ((|#2| (-1 |#2| |#2| |#2|) $) 22) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 24) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 34)) (-3959 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 19)) (-3360 (((-112) (-1 (-112) |#2|) $) 16)) (-3997 (((-747) (-1 (-112) |#2|) $) 14) (((-747) |#2| $) NIL)) (-3025 (((-112) (-1 (-112) |#2|) $) 15)) (-3774 (((-747) $) 11)))
+(((-148 |#1| |#2|) (-10 -8 (-15 -3675 (|#1| |#1|)) (-15 -3812 (|#1| |#2| |#1|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1488 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3812 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3959 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3997 ((-747) |#2| |#1|)) (-15 -3997 ((-747) (-1 (-112) |#2|) |#1|)) (-15 -3360 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3025 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3774 ((-747) |#1|))) (-149 |#2|) (-1179)) (T -148))
+NIL
+(-10 -8 (-15 -3675 (|#1| |#1|)) (-15 -3812 (|#1| |#2| |#1|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1488 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3812 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3959 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3997 ((-747) |#2| |#1|)) (-15 -3997 ((-747) (-1 (-112) |#2|) |#1|)) (-15 -3360 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3025 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3774 ((-747) |#1|)))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-2850 (((-112) $ (-747)) 8)) (-1488 (($ (-1 (-112) |#1|) $) 44 (|has| $ (-6 -4336)))) (-3034 (($) 7 T CONST)) (-3675 (($ $) 41 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4336))) (($ |#1| $) 42 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $) 47 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 46 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) 9)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 48)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-2843 (((-525) $) 40 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 49)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-149 |#1|) (-138) (-1179)) (T -149))
+((-3853 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-4 *1 (-149 *3)))) (-3959 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-149 *2)) (-4 *2 (-1179)))) (-2556 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4336)) (-4 *1 (-149 *2)) (-4 *2 (-1179)))) (-2556 (*1 *2 *3 *1 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4336)) (-4 *1 (-149 *2)) (-4 *2 (-1179)))) (-3812 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4336)) (-4 *1 (-149 *3)) (-4 *3 (-1179)))) (-1488 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4336)) (-4 *1 (-149 *3)) (-4 *3 (-1179)))) (-2556 (*1 *2 *3 *1 *2 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1066)) (|has| *1 (-6 -4336)) (-4 *1 (-149 *2)) (-4 *2 (-1179)))) (-3812 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4336)) (-4 *1 (-149 *2)) (-4 *2 (-1179)) (-4 *2 (-1066)))) (-3675 (*1 *1 *1) (-12 (|has| *1 (-6 -4336)) (-4 *1 (-149 *2)) (-4 *2 (-1179)) (-4 *2 (-1066)))))
+(-13 (-481 |t#1|) (-10 -8 (-15 -3853 ($ (-621 |t#1|))) (-15 -3959 ((-3 |t#1| "failed") (-1 (-112) |t#1|) $)) (IF (|has| $ (-6 -4336)) (PROGN (-15 -2556 (|t#1| (-1 |t#1| |t#1| |t#1|) $)) (-15 -2556 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1|)) (-15 -3812 ($ (-1 (-112) |t#1|) $)) (-15 -1488 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1066)) (PROGN (-15 -2556 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1| |t#1|)) (-15 -3812 ($ |t#1| $)) (-15 -3675 ($ $))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|)))
+(((-34) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-1066) |has| |#1| (-1066)) ((-1179) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2612 (((-3 $ "failed") $) 86)) (-2297 (((-112) $) NIL)) (-2244 (($ |#2| (-621 (-892))) 56)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-1633 (($ (-892)) 47)) (-2260 (((-133)) 23)) (-3845 (((-834) $) 69) (($ (-549)) 45) (($ |#2|) 46)) (-4068 ((|#2| $ (-621 (-892))) 59)) (-2371 (((-747)) 20)) (-3274 (($) 40 T CONST)) (-3286 (($) 43 T CONST)) (-2387 (((-112) $ $) 26)) (-2511 (($ $ |#2|) NIL)) (-2498 (($ $) 34) (($ $ $) 32)) (-2484 (($ $ $) 30)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 37) (($ $ $) 51) (($ |#2| $) 39) (($ $ |#2|) NIL)))
+(((-150 |#1| |#2| |#3|) (-13 (-1018) (-38 |#2|) (-1232 |#2|) (-10 -8 (-15 -1633 ($ (-892))) (-15 -2244 ($ |#2| (-621 (-892)))) (-15 -4068 (|#2| $ (-621 (-892)))) (-15 -2612 ((-3 $ "failed") $)))) (-892) (-356) (-964 |#1| |#2|)) (T -150))
+((-2612 (*1 *1 *1) (|partial| -12 (-5 *1 (-150 *2 *3 *4)) (-14 *2 (-892)) (-4 *3 (-356)) (-14 *4 (-964 *2 *3)))) (-1633 (*1 *1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-150 *3 *4 *5)) (-14 *3 *2) (-4 *4 (-356)) (-14 *5 (-964 *3 *4)))) (-2244 (*1 *1 *2 *3) (-12 (-5 *3 (-621 (-892))) (-5 *1 (-150 *4 *2 *5)) (-14 *4 (-892)) (-4 *2 (-356)) (-14 *5 (-964 *4 *2)))) (-4068 (*1 *2 *1 *3) (-12 (-5 *3 (-621 (-892))) (-4 *2 (-356)) (-5 *1 (-150 *4 *2 *5)) (-14 *4 (-892)) (-14 *5 (-964 *4 *2)))))
+(-13 (-1018) (-38 |#2|) (-1232 |#2|) (-10 -8 (-15 -1633 ($ (-892))) (-15 -2244 ($ |#2| (-621 (-892)))) (-15 -4068 (|#2| $ (-621 (-892)))) (-15 -2612 ((-3 $ "failed") $))))
+((-4306 (((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-621 (-621 (-914 (-219)))) (-219) (-219) (-219) (-219)) 38)) (-3866 (((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-898) (-400 (-549)) (-400 (-549))) 63) (((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-898)) 64)) (-4111 (((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-621 (-621 (-914 (-219))))) 67) (((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-621 (-914 (-219)))) 66) (((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-898) (-400 (-549)) (-400 (-549))) 58) (((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-898)) 59)))
+(((-151) (-10 -7 (-15 -4111 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-898))) (-15 -4111 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-898) (-400 (-549)) (-400 (-549)))) (-15 -3866 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-898))) (-15 -3866 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-898) (-400 (-549)) (-400 (-549)))) (-15 -4306 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-621 (-621 (-914 (-219)))) (-219) (-219) (-219) (-219))) (-15 -4111 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-621 (-914 (-219))))) (-15 -4111 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-621 (-621 (-914 (-219)))))))) (T -151))
+((-4111 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219))))) (-5 *1 (-151)) (-5 *3 (-621 (-621 (-914 (-219))))))) (-4111 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219))))) (-5 *1 (-151)) (-5 *3 (-621 (-914 (-219)))))) (-4306 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *4 (-219)) (-5 *2 (-2 (|:| |brans| (-621 (-621 (-914 *4)))) (|:| |xValues| (-1060 *4)) (|:| |yValues| (-1060 *4)))) (-5 *1 (-151)) (-5 *3 (-621 (-621 (-914 *4)))))) (-3866 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-898)) (-5 *4 (-400 (-549))) (-5 *2 (-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219))))) (-5 *1 (-151)))) (-3866 (*1 *2 *3) (-12 (-5 *3 (-898)) (-5 *2 (-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219))))) (-5 *1 (-151)))) (-4111 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-898)) (-5 *4 (-400 (-549))) (-5 *2 (-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219))))) (-5 *1 (-151)))) (-4111 (*1 *2 *3) (-12 (-5 *3 (-898)) (-5 *2 (-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219))))) (-5 *1 (-151)))))
+(-10 -7 (-15 -4111 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-898))) (-15 -4111 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-898) (-400 (-549)) (-400 (-549)))) (-15 -3866 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-898))) (-15 -3866 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-898) (-400 (-549)) (-400 (-549)))) (-15 -4306 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-621 (-621 (-914 (-219)))) (-219) (-219) (-219) (-219))) (-15 -4111 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-621 (-914 (-219))))) (-15 -4111 ((-2 (|:| |brans| (-621 (-621 (-914 (-219))))) (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))) (-621 (-621 (-914 (-219)))))))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3020 (((-621 (-1101)) $) 15)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 24) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2492 (((-1101) $) 9)) (-2387 (((-112) $ $) NIL)))
+(((-152) (-13 (-1049) (-10 -8 (-15 -3020 ((-621 (-1101)) $)) (-15 -2492 ((-1101) $))))) (T -152))
+((-3020 (*1 *2 *1) (-12 (-5 *2 (-621 (-1101))) (-5 *1 (-152)))) (-2492 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-152)))))
+(-13 (-1049) (-10 -8 (-15 -3020 ((-621 (-1101)) $)) (-15 -2492 ((-1101) $))))
+((-3417 (((-621 (-167 |#2|)) |#1| |#2|) 45)))
+(((-153 |#1| |#2|) (-10 -7 (-15 -3417 ((-621 (-167 |#2|)) |#1| |#2|))) (-1201 (-167 (-549))) (-13 (-356) (-821))) (T -153))
+((-3417 (*1 *2 *3 *4) (-12 (-5 *2 (-621 (-167 *4))) (-5 *1 (-153 *3 *4)) (-4 *3 (-1201 (-167 (-549)))) (-4 *4 (-13 (-356) (-821))))))
+(-10 -7 (-15 -3417 ((-621 (-167 |#2|)) |#1| |#2|)))
+((-3832 (((-112) $ $) NIL)) (-2200 (((-1178) $) 12)) (-2187 (((-1101) $) 9)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 21) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-154) (-13 (-1049) (-10 -8 (-15 -2187 ((-1101) $)) (-15 -2200 ((-1178) $))))) (T -154))
+((-2187 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-154)))) (-2200 (*1 *2 *1) (-12 (-5 *2 (-1178)) (-5 *1 (-154)))))
+(-13 (-1049) (-10 -8 (-15 -2187 ((-1101) $)) (-15 -2200 ((-1178) $))))
+((-3832 (((-112) $ $) NIL)) (-4152 (($) 15)) (-4207 (($) 14)) (-1406 (((-892)) 22)) (-3441 (((-1124) $) NIL)) (-2725 (((-549) $) 19)) (-3988 (((-1086) $) NIL)) (-1639 (($) 16)) (-1437 (($ (-549)) 23)) (-3845 (((-834) $) 29)) (-1689 (($) 17)) (-2387 (((-112) $ $) 13)) (-2484 (($ $ $) 11)) (* (($ (-892) $) 21) (($ (-219) $) 8)))
+(((-155) (-13 (-25) (-10 -8 (-15 * ($ (-892) $)) (-15 * ($ (-219) $)) (-15 -2484 ($ $ $)) (-15 -4207 ($)) (-15 -4152 ($)) (-15 -1639 ($)) (-15 -1689 ($)) (-15 -2725 ((-549) $)) (-15 -1406 ((-892))) (-15 -1437 ($ (-549)))))) (T -155))
+((-2484 (*1 *1 *1 *1) (-5 *1 (-155))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-892)) (-5 *1 (-155)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-219)) (-5 *1 (-155)))) (-4207 (*1 *1) (-5 *1 (-155))) (-4152 (*1 *1) (-5 *1 (-155))) (-1639 (*1 *1) (-5 *1 (-155))) (-1689 (*1 *1) (-5 *1 (-155))) (-2725 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-155)))) (-1406 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-155)))) (-1437 (*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-155)))))
+(-13 (-25) (-10 -8 (-15 * ($ (-892) $)) (-15 * ($ (-219) $)) (-15 -2484 ($ $ $)) (-15 -4207 ($)) (-15 -4152 ($)) (-15 -1639 ($)) (-15 -1689 ($)) (-15 -2725 ((-549) $)) (-15 -1406 ((-892))) (-15 -1437 ($ (-549)))))
+((-4141 ((|#2| |#2| (-1058 |#2|)) 88) ((|#2| |#2| (-1142)) 68)) (-1268 ((|#2| |#2| (-1058 |#2|)) 87) ((|#2| |#2| (-1142)) 67)) (-1926 ((|#2| |#2| |#2|) 27)) (-3500 (((-114) (-114)) 99)) (-1947 ((|#2| (-621 |#2|)) 117)) (-1261 ((|#2| (-621 |#2|)) 135)) (-2499 ((|#2| (-621 |#2|)) 125)) (-3969 ((|#2| |#2|) 123)) (-2506 ((|#2| (-621 |#2|)) 111)) (-4252 ((|#2| (-621 |#2|)) 112)) (-2524 ((|#2| (-621 |#2|)) 133)) (-2253 ((|#2| |#2| (-1142)) 56) ((|#2| |#2|) 55)) (-3674 ((|#2| |#2|) 23)) (-2772 ((|#2| |#2| |#2|) 26)) (-2444 (((-112) (-114)) 49)) (** ((|#2| |#2| |#2|) 41)))
+(((-156 |#1| |#2|) (-10 -7 (-15 -2444 ((-112) (-114))) (-15 -3500 ((-114) (-114))) (-15 ** (|#2| |#2| |#2|)) (-15 -2772 (|#2| |#2| |#2|)) (-15 -1926 (|#2| |#2| |#2|)) (-15 -3674 (|#2| |#2|)) (-15 -2253 (|#2| |#2|)) (-15 -2253 (|#2| |#2| (-1142))) (-15 -4141 (|#2| |#2| (-1142))) (-15 -4141 (|#2| |#2| (-1058 |#2|))) (-15 -1268 (|#2| |#2| (-1142))) (-15 -1268 (|#2| |#2| (-1058 |#2|))) (-15 -3969 (|#2| |#2|)) (-15 -2524 (|#2| (-621 |#2|))) (-15 -2499 (|#2| (-621 |#2|))) (-15 -1261 (|#2| (-621 |#2|))) (-15 -2506 (|#2| (-621 |#2|))) (-15 -4252 (|#2| (-621 |#2|))) (-15 -1947 (|#2| (-621 |#2|)))) (-13 (-823) (-541)) (-423 |#1|)) (T -156))
+((-1947 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2)) (-4 *4 (-13 (-823) (-541))))) (-4252 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2)) (-4 *4 (-13 (-823) (-541))))) (-2506 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2)) (-4 *4 (-13 (-823) (-541))))) (-1261 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2)) (-4 *4 (-13 (-823) (-541))))) (-2499 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2)) (-4 *4 (-13 (-823) (-541))))) (-2524 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2)) (-4 *4 (-13 (-823) (-541))))) (-3969 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2)) (-4 *2 (-423 *3)))) (-1268 (*1 *2 *2 *3) (-12 (-5 *3 (-1058 *2)) (-4 *2 (-423 *4)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-156 *4 *2)))) (-1268 (*1 *2 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-156 *4 *2)) (-4 *2 (-423 *4)))) (-4141 (*1 *2 *2 *3) (-12 (-5 *3 (-1058 *2)) (-4 *2 (-423 *4)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-156 *4 *2)))) (-4141 (*1 *2 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-156 *4 *2)) (-4 *2 (-423 *4)))) (-2253 (*1 *2 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-156 *4 *2)) (-4 *2 (-423 *4)))) (-2253 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2)) (-4 *2 (-423 *3)))) (-3674 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2)) (-4 *2 (-423 *3)))) (-1926 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2)) (-4 *2 (-423 *3)))) (-2772 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2)) (-4 *2 (-423 *3)))) (** (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2)) (-4 *2 (-423 *3)))) (-3500 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *4)) (-4 *4 (-423 *3)))) (-2444 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112)) (-5 *1 (-156 *4 *5)) (-4 *5 (-423 *4)))))
+(-10 -7 (-15 -2444 ((-112) (-114))) (-15 -3500 ((-114) (-114))) (-15 ** (|#2| |#2| |#2|)) (-15 -2772 (|#2| |#2| |#2|)) (-15 -1926 (|#2| |#2| |#2|)) (-15 -3674 (|#2| |#2|)) (-15 -2253 (|#2| |#2|)) (-15 -2253 (|#2| |#2| (-1142))) (-15 -4141 (|#2| |#2| (-1142))) (-15 -4141 (|#2| |#2| (-1058 |#2|))) (-15 -1268 (|#2| |#2| (-1142))) (-15 -1268 (|#2| |#2| (-1058 |#2|))) (-15 -3969 (|#2| |#2|)) (-15 -2524 (|#2| (-621 |#2|))) (-15 -2499 (|#2| (-621 |#2|))) (-15 -1261 (|#2| (-621 |#2|))) (-15 -2506 (|#2| (-621 |#2|))) (-15 -4252 (|#2| (-621 |#2|))) (-15 -1947 (|#2| (-621 |#2|))))
+((-1870 ((|#1| |#1| |#1|) 53)) (-1957 ((|#1| |#1| |#1|) 50)) (-1926 ((|#1| |#1| |#1|) 44)) (-1291 ((|#1| |#1|) 35)) (-1697 ((|#1| |#1| (-621 |#1|)) 43)) (-3674 ((|#1| |#1|) 37)) (-2772 ((|#1| |#1| |#1|) 40)))
+(((-157 |#1|) (-10 -7 (-15 -2772 (|#1| |#1| |#1|)) (-15 -3674 (|#1| |#1|)) (-15 -1697 (|#1| |#1| (-621 |#1|))) (-15 -1291 (|#1| |#1|)) (-15 -1926 (|#1| |#1| |#1|)) (-15 -1957 (|#1| |#1| |#1|)) (-15 -1870 (|#1| |#1| |#1|))) (-534)) (T -157))
+((-1870 (*1 *2 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))) (-1957 (*1 *2 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))) (-1926 (*1 *2 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))) (-1291 (*1 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))) (-1697 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-534)) (-5 *1 (-157 *2)))) (-3674 (*1 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))) (-2772 (*1 *2 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))))
+(-10 -7 (-15 -2772 (|#1| |#1| |#1|)) (-15 -3674 (|#1| |#1|)) (-15 -1697 (|#1| |#1| (-621 |#1|))) (-15 -1291 (|#1| |#1|)) (-15 -1926 (|#1| |#1| |#1|)) (-15 -1957 (|#1| |#1| |#1|)) (-15 -1870 (|#1| |#1| |#1|)))
+((-4141 (($ $ (-1142)) 12) (($ $ (-1058 $)) 11)) (-1268 (($ $ (-1142)) 10) (($ $ (-1058 $)) 9)) (-1926 (($ $ $) 8)) (-2253 (($ $) 14) (($ $ (-1142)) 13)) (-3674 (($ $) 7)) (-2772 (($ $ $) 6)))
(((-158) (-138)) (T -158))
-((-3251 (*1 *1 *1) (-4 *1 (-158))) (-3251 (*1 *1 *1 *2) (-12 (-4 *1 (-158)) (-5 *2 (-1143)))) (-2441 (*1 *1 *1 *2) (-12 (-4 *1 (-158)) (-5 *2 (-1143)))) (-2441 (*1 *1 *1 *2) (-12 (-5 *2 (-1059 *1)) (-4 *1 (-158)))) (-1747 (*1 *1 *1 *2) (-12 (-4 *1 (-158)) (-5 *2 (-1143)))) (-1747 (*1 *1 *1 *2) (-12 (-5 *2 (-1059 *1)) (-4 *1 (-158)))))
-(-13 (-141) (-10 -8 (-15 -3251 ($ $)) (-15 -3251 ($ $ (-1143))) (-15 -2441 ($ $ (-1143))) (-15 -2441 ($ $ (-1059 $))) (-15 -1747 ($ $ (-1143))) (-15 -1747 ($ $ (-1059 $)))))
+((-2253 (*1 *1 *1) (-4 *1 (-158))) (-2253 (*1 *1 *1 *2) (-12 (-4 *1 (-158)) (-5 *2 (-1142)))) (-4141 (*1 *1 *1 *2) (-12 (-4 *1 (-158)) (-5 *2 (-1142)))) (-4141 (*1 *1 *1 *2) (-12 (-5 *2 (-1058 *1)) (-4 *1 (-158)))) (-1268 (*1 *1 *1 *2) (-12 (-4 *1 (-158)) (-5 *2 (-1142)))) (-1268 (*1 *1 *1 *2) (-12 (-5 *2 (-1058 *1)) (-4 *1 (-158)))))
+(-13 (-141) (-10 -8 (-15 -2253 ($ $)) (-15 -2253 ($ $ (-1142))) (-15 -4141 ($ $ (-1142))) (-15 -4141 ($ $ (-1058 $))) (-15 -1268 ($ $ (-1142))) (-15 -1268 ($ $ (-1058 $)))))
(((-141) . T))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2492 (((-621 (-1148)) $) 9)) (-2389 (((-112) $ $) NIL)))
-(((-159) (-13 (-1050) (-10 -8 (-15 -2492 ((-621 (-1148)) $))))) (T -159))
-((-2492 (*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-159)))))
-(-13 (-1050) (-10 -8 (-15 -2492 ((-621 (-1148)) $))))
-((-3834 (((-112) $ $) NIL)) (-2545 (($ (-549)) 13) (($ $ $) 14)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 17)) (-2389 (((-112) $ $) 9)))
-(((-160) (-13 (-1067) (-10 -8 (-15 -2545 ($ (-549))) (-15 -2545 ($ $ $))))) (T -160))
-((-2545 (*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-160)))) (-2545 (*1 *1 *1 *1) (-5 *1 (-160))))
-(-13 (-1067) (-10 -8 (-15 -2545 ($ (-549))) (-15 -2545 ($ $ $))))
-((-2834 (((-114) (-1143)) 97)))
-(((-161) (-10 -7 (-15 -2834 ((-114) (-1143))))) (T -161))
-((-2834 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-114)) (-5 *1 (-161)))))
-(-10 -7 (-15 -2834 ((-114) (-1143))))
-((-2053 ((|#3| |#3|) 19)))
-(((-162 |#1| |#2| |#3|) (-10 -7 (-15 -2053 (|#3| |#3|))) (-1018) (-1202 |#1|) (-1202 |#2|)) (T -162))
-((-2053 (*1 *2 *2) (-12 (-4 *3 (-1018)) (-4 *4 (-1202 *3)) (-5 *1 (-162 *3 *4 *2)) (-4 *2 (-1202 *4)))))
-(-10 -7 (-15 -2053 (|#3| |#3|)))
-((-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 217)) (-2906 ((|#2| $) 96)) (-1664 (($ $) 247)) (-1512 (($ $) 241)) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) 40)) (-1640 (($ $) 245)) (-1486 (($ $) 239)) (-2714 (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 |#2| "failed") $) 141)) (-2659 (((-549) $) NIL) (((-400 (-549)) $) NIL) ((|#2| $) 139)) (-2095 (($ $ $) 222)) (-3879 (((-665 (-549)) (-665 $)) NIL) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) 155) (((-665 |#2|) (-665 $)) 149)) (-2557 (($ (-1139 |#2|)) 119) (((-3 $ "failed") (-400 (-1139 |#2|))) NIL)) (-2114 (((-3 $ "failed") $) 209)) (-3405 (((-3 (-400 (-549)) "failed") $) 199)) (-3679 (((-112) $) 194)) (-2532 (((-400 (-549)) $) 197)) (-3123 (((-892)) 89)) (-2067 (($ $ $) 224)) (-2467 (((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) $) 261)) (-1425 (($) 236)) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 186) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 191)) (-3630 ((|#2| $) 94)) (-3788 (((-1139 |#2|) $) 121)) (-2797 (($ (-1 |#2| |#2|) $) 102)) (-3632 (($ $) 238)) (-2548 (((-1139 |#2|) $) 120)) (-1992 (($ $) 202)) (-1429 (($) 97)) (-2905 (((-411 (-1139 $)) (-1139 $)) 88)) (-2413 (((-411 (-1139 $)) (-1139 $)) 57)) (-2042 (((-3 $ "failed") $ |#2|) 204) (((-3 $ "failed") $ $) 207)) (-2719 (($ $) 237)) (-3684 (((-747) $) 219)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 229)) (-3602 ((|#2| (-1226 $)) NIL) ((|#2|) 91)) (-3456 (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) 113) (($ $ (-621 (-1143)) (-621 (-747))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143)) NIL) (($ $ (-747)) NIL) (($ $) NIL)) (-2815 (((-1139 |#2|)) 114)) (-1651 (($ $) 246)) (-1501 (($ $) 240)) (-4263 (((-1226 |#2|) $ (-1226 $)) 128) (((-665 |#2|) (-1226 $) (-1226 $)) NIL) (((-1226 |#2|) $) 110) (((-665 |#2|) (-1226 $)) NIL)) (-2845 (((-1226 |#2|) $) NIL) (($ (-1226 |#2|)) NIL) (((-1139 |#2|) $) NIL) (($ (-1139 |#2|)) NIL) (((-863 (-549)) $) 177) (((-863 (-372)) $) 181) (((-167 (-372)) $) 167) (((-167 (-219)) $) 162) (((-525) $) 173)) (-1955 (($ $) 98)) (-3846 (((-834) $) 138) (($ (-549)) NIL) (($ |#2|) NIL) (($ (-400 (-549))) NIL) (($ $) NIL)) (-4154 (((-1139 |#2|) $) 23)) (-2082 (((-747)) 100)) (-1733 (($ $) 250)) (-1587 (($ $) 244)) (-1710 (($ $) 248)) (-1564 (($ $) 242)) (-1572 ((|#2| $) 233)) (-1722 (($ $) 249)) (-1576 (($ $) 243)) (-3212 (($ $) 157)) (-2389 (((-112) $ $) 104)) (-2412 (((-112) $ $) 193)) (-2500 (($ $) 106) (($ $ $) NIL)) (-2486 (($ $ $) 105)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-400 (-549))) 267) (($ $ $) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 112) (($ $ $) 142) (($ $ |#2|) NIL) (($ |#2| $) 108) (($ (-400 (-549)) $) NIL) (($ $ (-400 (-549))) NIL)))
-(((-163 |#1| |#2|) (-10 -8 (-15 -3456 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -3846 (|#1| |#1|)) (-15 -2042 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2297 ((-2 (|:| -2207 |#1|) (|:| -4324 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3684 ((-747) |#1|)) (-15 -3148 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|)) (-15 -2067 (|#1| |#1| |#1|)) (-15 -2095 (|#1| |#1| |#1|)) (-15 -1992 (|#1| |#1|)) (-15 ** (|#1| |#1| (-549))) (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -2412 ((-112) |#1| |#1|)) (-15 -2845 ((-525) |#1|)) (-15 -2845 ((-167 (-219)) |#1|)) (-15 -2845 ((-167 (-372)) |#1|)) (-15 -1512 (|#1| |#1|)) (-15 -1486 (|#1| |#1|)) (-15 -1501 (|#1| |#1|)) (-15 -1576 (|#1| |#1|)) (-15 -1564 (|#1| |#1|)) (-15 -1587 (|#1| |#1|)) (-15 -1651 (|#1| |#1|)) (-15 -1640 (|#1| |#1|)) (-15 -1664 (|#1| |#1|)) (-15 -1722 (|#1| |#1|)) (-15 -1710 (|#1| |#1|)) (-15 -1733 (|#1| |#1|)) (-15 -3632 (|#1| |#1|)) (-15 -2719 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -1425 (|#1|)) (-15 ** (|#1| |#1| (-400 (-549)))) (-15 -2413 ((-411 (-1139 |#1|)) (-1139 |#1|))) (-15 -2905 ((-411 (-1139 |#1|)) (-1139 |#1|))) (-15 -1348 ((-3 (-621 (-1139 |#1|)) "failed") (-621 (-1139 |#1|)) (-1139 |#1|))) (-15 -3405 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2532 ((-400 (-549)) |#1|)) (-15 -3679 ((-112) |#1|)) (-15 -2467 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -1572 (|#2| |#1|)) (-15 -3212 (|#1| |#1|)) (-15 -2042 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1955 (|#1| |#1|)) (-15 -1429 (|#1|)) (-15 -2845 ((-863 (-372)) |#1|)) (-15 -2845 ((-863 (-549)) |#1|)) (-15 -2932 ((-860 (-372) |#1|) |#1| (-863 (-372)) (-860 (-372) |#1|))) (-15 -2932 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))) (-15 -2797 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -2557 ((-3 |#1| "failed") (-400 (-1139 |#2|)))) (-15 -2548 ((-1139 |#2|) |#1|)) (-15 -2845 (|#1| (-1139 |#2|))) (-15 -2557 (|#1| (-1139 |#2|))) (-15 -2815 ((-1139 |#2|))) (-15 -3879 ((-665 |#2|) (-665 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-665 (-549)) (-665 |#1|))) (-15 -2659 (|#2| |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -2845 ((-1139 |#2|) |#1|)) (-15 -3602 (|#2|)) (-15 -2845 (|#1| (-1226 |#2|))) (-15 -2845 ((-1226 |#2|) |#1|)) (-15 -4263 ((-665 |#2|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1|)) (-15 -3788 ((-1139 |#2|) |#1|)) (-15 -4154 ((-1139 |#2|) |#1|)) (-15 -3602 (|#2| (-1226 |#1|))) (-15 -4263 ((-665 |#2|) (-1226 |#1|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1| (-1226 |#1|))) (-15 -3630 (|#2| |#1|)) (-15 -2906 (|#2| |#1|)) (-15 -3123 ((-892))) (-15 -3846 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3846 (|#1| (-549))) (-15 -2082 ((-747))) (-15 ** (|#1| |#1| (-747))) (-15 -2114 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-892))) (-15 * (|#1| (-549) |#1|)) (-15 -2500 (|#1| |#1| |#1|)) (-15 -2500 (|#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|)) (-15 -2486 (|#1| |#1| |#1|)) (-15 -3846 ((-834) |#1|)) (-15 -2389 ((-112) |#1| |#1|))) (-164 |#2|) (-170)) (T -163))
-((-2082 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-747)) (-5 *1 (-163 *3 *4)) (-4 *3 (-164 *4)))) (-3123 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-892)) (-5 *1 (-163 *3 *4)) (-4 *3 (-164 *4)))) (-3602 (*1 *2) (-12 (-4 *2 (-170)) (-5 *1 (-163 *3 *2)) (-4 *3 (-164 *2)))) (-2815 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-1139 *4)) (-5 *1 (-163 *3 *4)) (-4 *3 (-164 *4)))))
-(-10 -8 (-15 -3456 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -3846 (|#1| |#1|)) (-15 -2042 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2297 ((-2 (|:| -2207 |#1|) (|:| -4324 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3684 ((-747) |#1|)) (-15 -3148 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|)) (-15 -2067 (|#1| |#1| |#1|)) (-15 -2095 (|#1| |#1| |#1|)) (-15 -1992 (|#1| |#1|)) (-15 ** (|#1| |#1| (-549))) (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -2412 ((-112) |#1| |#1|)) (-15 -2845 ((-525) |#1|)) (-15 -2845 ((-167 (-219)) |#1|)) (-15 -2845 ((-167 (-372)) |#1|)) (-15 -1512 (|#1| |#1|)) (-15 -1486 (|#1| |#1|)) (-15 -1501 (|#1| |#1|)) (-15 -1576 (|#1| |#1|)) (-15 -1564 (|#1| |#1|)) (-15 -1587 (|#1| |#1|)) (-15 -1651 (|#1| |#1|)) (-15 -1640 (|#1| |#1|)) (-15 -1664 (|#1| |#1|)) (-15 -1722 (|#1| |#1|)) (-15 -1710 (|#1| |#1|)) (-15 -1733 (|#1| |#1|)) (-15 -3632 (|#1| |#1|)) (-15 -2719 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -1425 (|#1|)) (-15 ** (|#1| |#1| (-400 (-549)))) (-15 -2413 ((-411 (-1139 |#1|)) (-1139 |#1|))) (-15 -2905 ((-411 (-1139 |#1|)) (-1139 |#1|))) (-15 -1348 ((-3 (-621 (-1139 |#1|)) "failed") (-621 (-1139 |#1|)) (-1139 |#1|))) (-15 -3405 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2532 ((-400 (-549)) |#1|)) (-15 -3679 ((-112) |#1|)) (-15 -2467 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -1572 (|#2| |#1|)) (-15 -3212 (|#1| |#1|)) (-15 -2042 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1955 (|#1| |#1|)) (-15 -1429 (|#1|)) (-15 -2845 ((-863 (-372)) |#1|)) (-15 -2845 ((-863 (-549)) |#1|)) (-15 -2932 ((-860 (-372) |#1|) |#1| (-863 (-372)) (-860 (-372) |#1|))) (-15 -2932 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))) (-15 -2797 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -2557 ((-3 |#1| "failed") (-400 (-1139 |#2|)))) (-15 -2548 ((-1139 |#2|) |#1|)) (-15 -2845 (|#1| (-1139 |#2|))) (-15 -2557 (|#1| (-1139 |#2|))) (-15 -2815 ((-1139 |#2|))) (-15 -3879 ((-665 |#2|) (-665 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-665 (-549)) (-665 |#1|))) (-15 -2659 (|#2| |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -2845 ((-1139 |#2|) |#1|)) (-15 -3602 (|#2|)) (-15 -2845 (|#1| (-1226 |#2|))) (-15 -2845 ((-1226 |#2|) |#1|)) (-15 -4263 ((-665 |#2|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1|)) (-15 -3788 ((-1139 |#2|) |#1|)) (-15 -4154 ((-1139 |#2|) |#1|)) (-15 -3602 (|#2| (-1226 |#1|))) (-15 -4263 ((-665 |#2|) (-1226 |#1|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1| (-1226 |#1|))) (-15 -3630 (|#2| |#1|)) (-15 -2906 (|#2| |#1|)) (-15 -3123 ((-892))) (-15 -3846 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3846 (|#1| (-549))) (-15 -2082 ((-747))) (-15 ** (|#1| |#1| (-747))) (-15 -2114 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-892))) (-15 * (|#1| (-549) |#1|)) (-15 -2500 (|#1| |#1| |#1|)) (-15 -2500 (|#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|)) (-15 -2486 (|#1| |#1| |#1|)) (-15 -3846 ((-834) |#1|)) (-15 -2389 ((-112) |#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 91 (-1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-2258 (($ $) 92 (-1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-2799 (((-112) $) 94 (-1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-1738 (((-665 |#1|) (-1226 $)) 44) (((-665 |#1|)) 59)) (-2906 ((|#1| $) 50)) (-1664 (($ $) 225 (|has| |#1| (-1165)))) (-1512 (($ $) 208 (|has| |#1| (-1165)))) (-3062 (((-1153 (-892) (-747)) (-549)) 144 (|has| |#1| (-342)))) (-2001 (((-3 $ "failed") $ $) 19)) (-3231 (((-411 (-1139 $)) (-1139 $)) 239 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (-3979 (($ $) 111 (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-356))))) (-2402 (((-411 $) $) 112 (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-356))))) (-2134 (($ $) 238 (-12 (|has| |#1| (-973)) (|has| |#1| (-1165))))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) 242 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (-3866 (((-112) $ $) 102 (|has| |#1| (-300)))) (-3614 (((-747)) 85 (|has| |#1| (-361)))) (-1640 (($ $) 224 (|has| |#1| (-1165)))) (-1486 (($ $) 209 (|has| |#1| (-1165)))) (-1685 (($ $) 223 (|has| |#1| (-1165)))) (-1539 (($ $) 210 (|has| |#1| (-1165)))) (-1682 (($) 17 T CONST)) (-2714 (((-3 (-549) "failed") $) 166 (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 164 (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 163)) (-2659 (((-549) $) 167 (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) 165 (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 162)) (-3492 (($ (-1226 |#1|) (-1226 $)) 46) (($ (-1226 |#1|)) 62)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) 150 (|has| |#1| (-342)))) (-2095 (($ $ $) 106 (|has| |#1| (-300)))) (-3506 (((-665 |#1|) $ (-1226 $)) 51) (((-665 |#1|) $) 57)) (-3879 (((-665 (-549)) (-665 $)) 161 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 160 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) 159) (((-665 |#1|) (-665 $)) 158)) (-2557 (($ (-1139 |#1|)) 155) (((-3 $ "failed") (-400 (-1139 |#1|))) 152 (|has| |#1| (-356)))) (-2114 (((-3 $ "failed") $) 32)) (-2145 ((|#1| $) 250)) (-3405 (((-3 (-400 (-549)) "failed") $) 243 (|has| |#1| (-534)))) (-3679 (((-112) $) 245 (|has| |#1| (-534)))) (-2532 (((-400 (-549)) $) 244 (|has| |#1| (-534)))) (-3123 (((-892)) 52)) (-3239 (($) 88 (|has| |#1| (-361)))) (-2067 (($ $ $) 105 (|has| |#1| (-300)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 100 (|has| |#1| (-300)))) (-2405 (($) 146 (|has| |#1| (-342)))) (-2288 (((-112) $) 147 (|has| |#1| (-342)))) (-3165 (($ $ (-747)) 138 (|has| |#1| (-342))) (($ $) 137 (|has| |#1| (-342)))) (-1420 (((-112) $) 113 (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-356))))) (-2467 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) 246 (-12 (|has| |#1| (-1027)) (|has| |#1| (-1165))))) (-1425 (($) 235 (|has| |#1| (-1165)))) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 258 (|has| |#1| (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 257 (|has| |#1| (-857 (-372))))) (-2088 (((-892) $) 149 (|has| |#1| (-342))) (((-809 (-892)) $) 135 (|has| |#1| (-342)))) (-2675 (((-112) $) 30)) (-4187 (($ $ (-549)) 237 (-12 (|has| |#1| (-973)) (|has| |#1| (-1165))))) (-3630 ((|#1| $) 49)) (-1681 (((-3 $ "failed") $) 139 (|has| |#1| (-342)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 109 (|has| |#1| (-300)))) (-3788 (((-1139 |#1|) $) 42 (|has| |#1| (-356)))) (-2863 (($ $ $) 204 (|has| |#1| (-823)))) (-3575 (($ $ $) 203 (|has| |#1| (-823)))) (-2797 (($ (-1 |#1| |#1|) $) 259)) (-1881 (((-892) $) 87 (|has| |#1| (-361)))) (-3632 (($ $) 232 (|has| |#1| (-1165)))) (-2548 (((-1139 |#1|) $) 153)) (-3697 (($ (-621 $)) 98 (-1536 (|has| |#1| (-300)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (($ $ $) 97 (-1536 (|has| |#1| (-300)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-3851 (((-1125) $) 9)) (-1992 (($ $) 114 (|has| |#1| (-356)))) (-3060 (($) 140 (|has| |#1| (-342)) CONST)) (-3493 (($ (-892)) 86 (|has| |#1| (-361)))) (-1429 (($) 254)) (-2160 ((|#1| $) 251)) (-3990 (((-1087) $) 10)) (-4248 (($) 157)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 99 (-1536 (|has| |#1| (-300)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-3727 (($ (-621 $)) 96 (-1536 (|has| |#1| (-300)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (($ $ $) 95 (-1536 (|has| |#1| (-300)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) 143 (|has| |#1| (-342)))) (-2905 (((-411 (-1139 $)) (-1139 $)) 241 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (-2413 (((-411 (-1139 $)) (-1139 $)) 240 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (-2121 (((-411 $) $) 110 (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-356))))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 108 (|has| |#1| (-300))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 107 (|has| |#1| (-300)))) (-2042 (((-3 $ "failed") $ |#1|) 249 (|has| |#1| (-541))) (((-3 $ "failed") $ $) 90 (-1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 101 (|has| |#1| (-300)))) (-2719 (($ $) 233 (|has| |#1| (-1165)))) (-2686 (($ $ (-621 |#1|) (-621 |#1|)) 265 (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) 264 (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) 263 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) 262 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1143)) (-621 |#1|)) 261 (|has| |#1| (-505 (-1143) |#1|))) (($ $ (-1143) |#1|) 260 (|has| |#1| (-505 (-1143) |#1|)))) (-3684 (((-747) $) 103 (|has| |#1| (-300)))) (-3341 (($ $ |#1|) 266 (|has| |#1| (-279 |#1| |#1|)))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 104 (|has| |#1| (-300)))) (-3602 ((|#1| (-1226 $)) 45) ((|#1|) 58)) (-3914 (((-747) $) 148 (|has| |#1| (-342))) (((-3 (-747) "failed") $ $) 136 (|has| |#1| (-342)))) (-3456 (($ $ (-1 |#1| |#1|) (-747)) 120) (($ $ (-1 |#1| |#1|)) 119) (($ $ (-621 (-1143)) (-621 (-747))) 127 (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) 128 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) 129 (|has| |#1| (-871 (-1143)))) (($ $ (-1143)) 130 (|has| |#1| (-871 (-1143)))) (($ $ (-747)) 132 (-1536 (-1821 (|has| |#1| (-356)) (|has| |#1| (-227))) (|has| |#1| (-227)) (-1821 (|has| |#1| (-227)) (|has| |#1| (-356))))) (($ $) 134 (-1536 (-1821 (|has| |#1| (-356)) (|has| |#1| (-227))) (|has| |#1| (-227)) (-1821 (|has| |#1| (-227)) (|has| |#1| (-356)))))) (-2901 (((-665 |#1|) (-1226 $) (-1 |#1| |#1|)) 151 (|has| |#1| (-356)))) (-2815 (((-1139 |#1|)) 156)) (-1698 (($ $) 222 (|has| |#1| (-1165)))) (-1552 (($ $) 211 (|has| |#1| (-1165)))) (-3170 (($) 145 (|has| |#1| (-342)))) (-1675 (($ $) 221 (|has| |#1| (-1165)))) (-1526 (($ $) 212 (|has| |#1| (-1165)))) (-1651 (($ $) 220 (|has| |#1| (-1165)))) (-1501 (($ $) 213 (|has| |#1| (-1165)))) (-4263 (((-1226 |#1|) $ (-1226 $)) 48) (((-665 |#1|) (-1226 $) (-1226 $)) 47) (((-1226 |#1|) $) 64) (((-665 |#1|) (-1226 $)) 63)) (-2845 (((-1226 |#1|) $) 61) (($ (-1226 |#1|)) 60) (((-1139 |#1|) $) 168) (($ (-1139 |#1|)) 154) (((-863 (-549)) $) 256 (|has| |#1| (-594 (-863 (-549))))) (((-863 (-372)) $) 255 (|has| |#1| (-594 (-863 (-372))))) (((-167 (-372)) $) 207 (|has| |#1| (-993))) (((-167 (-219)) $) 206 (|has| |#1| (-993))) (((-525) $) 205 (|has| |#1| (-594 (-525))))) (-1955 (($ $) 253)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) 142 (-1536 (-1821 (|has| $ (-143)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))) (|has| |#1| (-342))))) (-3410 (($ |#1| |#1|) 252)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 35) (($ (-400 (-549))) 84 (-1536 (|has| |#1| (-356)) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) 89 (-1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-2210 (($ $) 141 (|has| |#1| (-342))) (((-3 $ "failed") $) 41 (-1536 (-1821 (|has| $ (-143)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))) (|has| |#1| (-143))))) (-4154 (((-1139 |#1|) $) 43)) (-2082 (((-747)) 28)) (-1949 (((-1226 $)) 65)) (-1733 (($ $) 231 (|has| |#1| (-1165)))) (-1587 (($ $) 219 (|has| |#1| (-1165)))) (-1498 (((-112) $ $) 93 (-1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-1710 (($ $) 230 (|has| |#1| (-1165)))) (-1564 (($ $) 218 (|has| |#1| (-1165)))) (-1758 (($ $) 229 (|has| |#1| (-1165)))) (-1612 (($ $) 217 (|has| |#1| (-1165)))) (-1572 ((|#1| $) 247 (|has| |#1| (-1165)))) (-1934 (($ $) 228 (|has| |#1| (-1165)))) (-1627 (($ $) 216 (|has| |#1| (-1165)))) (-1745 (($ $) 227 (|has| |#1| (-1165)))) (-1600 (($ $) 215 (|has| |#1| (-1165)))) (-1722 (($ $) 226 (|has| |#1| (-1165)))) (-1576 (($ $) 214 (|has| |#1| (-1165)))) (-3212 (($ $) 248 (|has| |#1| (-1027)))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ (-1 |#1| |#1|) (-747)) 122) (($ $ (-1 |#1| |#1|)) 121) (($ $ (-621 (-1143)) (-621 (-747))) 123 (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) 124 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) 125 (|has| |#1| (-871 (-1143)))) (($ $ (-1143)) 126 (|has| |#1| (-871 (-1143)))) (($ $ (-747)) 131 (-1536 (-1821 (|has| |#1| (-356)) (|has| |#1| (-227))) (|has| |#1| (-227)) (-1821 (|has| |#1| (-227)) (|has| |#1| (-356))))) (($ $) 133 (-1536 (-1821 (|has| |#1| (-356)) (|has| |#1| (-227))) (|has| |#1| (-227)) (-1821 (|has| |#1| (-227)) (|has| |#1| (-356)))))) (-2448 (((-112) $ $) 201 (|has| |#1| (-823)))) (-2425 (((-112) $ $) 200 (|has| |#1| (-823)))) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 202 (|has| |#1| (-823)))) (-2412 (((-112) $ $) 199 (|has| |#1| (-823)))) (-2513 (($ $ $) 118 (|has| |#1| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-400 (-549))) 236 (-12 (|has| |#1| (-973)) (|has| |#1| (-1165)))) (($ $ $) 234 (|has| |#1| (-1165))) (($ $ (-549)) 115 (|has| |#1| (-356)))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 37) (($ |#1| $) 36) (($ (-400 (-549)) $) 117 (|has| |#1| (-356))) (($ $ (-400 (-549))) 116 (|has| |#1| (-356)))))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 17) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2492 (((-621 (-1101)) $) 9)) (-2387 (((-112) $ $) NIL)))
+(((-159) (-13 (-1049) (-10 -8 (-15 -2492 ((-621 (-1101)) $))))) (T -159))
+((-2492 (*1 *2 *1) (-12 (-5 *2 (-621 (-1101))) (-5 *1 (-159)))))
+(-13 (-1049) (-10 -8 (-15 -2492 ((-621 (-1101)) $))))
+((-3832 (((-112) $ $) NIL)) (-3371 (($ (-549)) 13) (($ $ $) 14)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 17)) (-2387 (((-112) $ $) 9)))
+(((-160) (-13 (-1066) (-10 -8 (-15 -3371 ($ (-549))) (-15 -3371 ($ $ $))))) (T -160))
+((-3371 (*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-160)))) (-3371 (*1 *1 *1 *1) (-5 *1 (-160))))
+(-13 (-1066) (-10 -8 (-15 -3371 ($ (-549))) (-15 -3371 ($ $ $))))
+((-3500 (((-114) (-1142)) 97)))
+(((-161) (-10 -7 (-15 -3500 ((-114) (-1142))))) (T -161))
+((-3500 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-114)) (-5 *1 (-161)))))
+(-10 -7 (-15 -3500 ((-114) (-1142))))
+((-2028 ((|#3| |#3|) 19)))
+(((-162 |#1| |#2| |#3|) (-10 -7 (-15 -2028 (|#3| |#3|))) (-1018) (-1201 |#1|) (-1201 |#2|)) (T -162))
+((-2028 (*1 *2 *2) (-12 (-4 *3 (-1018)) (-4 *4 (-1201 *3)) (-5 *1 (-162 *3 *4 *2)) (-4 *2 (-1201 *4)))))
+(-10 -7 (-15 -2028 (|#3| |#3|)))
+((-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 217)) (-2904 ((|#2| $) 96)) (-1662 (($ $) 247)) (-1510 (($ $) 241)) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) 40)) (-1638 (($ $) 245)) (-1483 (($ $) 239)) (-2712 (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 |#2| "failed") $) 141)) (-2657 (((-549) $) NIL) (((-400 (-549)) $) NIL) ((|#2| $) 139)) (-2091 (($ $ $) 222)) (-3446 (((-665 (-549)) (-665 $)) NIL) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) 155) (((-665 |#2|) (-665 $)) 149)) (-2556 (($ (-1138 |#2|)) 119) (((-3 $ "failed") (-400 (-1138 |#2|))) NIL)) (-2612 (((-3 $ "failed") $) 209)) (-1531 (((-3 (-400 (-549)) "failed") $) 199)) (-3945 (((-112) $) 194)) (-1390 (((-400 (-549)) $) 197)) (-3121 (((-892)) 89)) (-2065 (($ $ $) 224)) (-3896 (((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) $) 261)) (-1425 (($) 236)) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 186) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 191)) (-2469 ((|#2| $) 94)) (-3514 (((-1138 |#2|) $) 121)) (-2795 (($ (-1 |#2| |#2|) $) 102)) (-3631 (($ $) 238)) (-2545 (((-1138 |#2|) $) 120)) (-1990 (($ $) 202)) (-4015 (($) 97)) (-2609 (((-411 (-1138 $)) (-1138 $)) 88)) (-2193 (((-411 (-1138 $)) (-1138 $)) 57)) (-2040 (((-3 $ "failed") $ |#2|) 204) (((-3 $ "failed") $ $) 207)) (-2717 (($ $) 237)) (-1335 (((-747) $) 219)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 229)) (-2740 ((|#2| (-1225 $)) NIL) ((|#2|) 91)) (-3455 (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) 113) (($ $ (-621 (-1142)) (-621 (-747))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142)) NIL) (($ $ (-747)) NIL) (($ $) NIL)) (-1262 (((-1138 |#2|)) 114)) (-1648 (($ $) 246)) (-1500 (($ $) 240)) (-1981 (((-1225 |#2|) $ (-1225 $)) 128) (((-665 |#2|) (-1225 $) (-1225 $)) NIL) (((-1225 |#2|) $) 110) (((-665 |#2|) (-1225 $)) NIL)) (-2843 (((-1225 |#2|) $) NIL) (($ (-1225 |#2|)) NIL) (((-1138 |#2|) $) NIL) (($ (-1138 |#2|)) NIL) (((-863 (-549)) $) 177) (((-863 (-372)) $) 181) (((-167 (-372)) $) 167) (((-167 (-219)) $) 162) (((-525) $) 173)) (-1795 (($ $) 98)) (-3845 (((-834) $) 138) (($ (-549)) NIL) (($ |#2|) NIL) (($ (-400 (-549))) NIL) (($ $) NIL)) (-4019 (((-1138 |#2|) $) 23)) (-2371 (((-747)) 100)) (-1731 (($ $) 250)) (-1585 (($ $) 244)) (-1708 (($ $) 248)) (-1562 (($ $) 242)) (-2058 ((|#2| $) 233)) (-1719 (($ $) 249)) (-1575 (($ $) 243)) (-2199 (($ $) 157)) (-2387 (((-112) $ $) 104)) (-2409 (((-112) $ $) 193)) (-2498 (($ $) 106) (($ $ $) NIL)) (-2484 (($ $ $) 105)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-400 (-549))) 267) (($ $ $) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 112) (($ $ $) 142) (($ $ |#2|) NIL) (($ |#2| $) 108) (($ (-400 (-549)) $) NIL) (($ $ (-400 (-549))) NIL)))
+(((-163 |#1| |#2|) (-10 -8 (-15 -3455 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -3845 (|#1| |#1|)) (-15 -2040 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4010 ((-2 (|:| -1951 |#1|) (|:| -4323 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -1335 ((-747) |#1|)) (-15 -2288 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|)) (-15 -2065 (|#1| |#1| |#1|)) (-15 -2091 (|#1| |#1| |#1|)) (-15 -1990 (|#1| |#1|)) (-15 ** (|#1| |#1| (-549))) (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -2409 ((-112) |#1| |#1|)) (-15 -2843 ((-525) |#1|)) (-15 -2843 ((-167 (-219)) |#1|)) (-15 -2843 ((-167 (-372)) |#1|)) (-15 -1510 (|#1| |#1|)) (-15 -1483 (|#1| |#1|)) (-15 -1500 (|#1| |#1|)) (-15 -1575 (|#1| |#1|)) (-15 -1562 (|#1| |#1|)) (-15 -1585 (|#1| |#1|)) (-15 -1648 (|#1| |#1|)) (-15 -1638 (|#1| |#1|)) (-15 -1662 (|#1| |#1|)) (-15 -1719 (|#1| |#1|)) (-15 -1708 (|#1| |#1|)) (-15 -1731 (|#1| |#1|)) (-15 -3631 (|#1| |#1|)) (-15 -2717 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -1425 (|#1|)) (-15 ** (|#1| |#1| (-400 (-549)))) (-15 -2193 ((-411 (-1138 |#1|)) (-1138 |#1|))) (-15 -2609 ((-411 (-1138 |#1|)) (-1138 |#1|))) (-15 -3955 ((-3 (-621 (-1138 |#1|)) "failed") (-621 (-1138 |#1|)) (-1138 |#1|))) (-15 -1531 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -1390 ((-400 (-549)) |#1|)) (-15 -3945 ((-112) |#1|)) (-15 -3896 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2199 (|#1| |#1|)) (-15 -2040 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1795 (|#1| |#1|)) (-15 -4015 (|#1|)) (-15 -2843 ((-863 (-372)) |#1|)) (-15 -2843 ((-863 (-549)) |#1|)) (-15 -3849 ((-860 (-372) |#1|) |#1| (-863 (-372)) (-860 (-372) |#1|))) (-15 -3849 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))) (-15 -2795 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -2556 ((-3 |#1| "failed") (-400 (-1138 |#2|)))) (-15 -2545 ((-1138 |#2|) |#1|)) (-15 -2843 (|#1| (-1138 |#2|))) (-15 -2556 (|#1| (-1138 |#2|))) (-15 -1262 ((-1138 |#2|))) (-15 -3446 ((-665 |#2|) (-665 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-665 (-549)) (-665 |#1|))) (-15 -2657 (|#2| |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -2843 ((-1138 |#2|) |#1|)) (-15 -2740 (|#2|)) (-15 -2843 (|#1| (-1225 |#2|))) (-15 -2843 ((-1225 |#2|) |#1|)) (-15 -1981 ((-665 |#2|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1|)) (-15 -3514 ((-1138 |#2|) |#1|)) (-15 -4019 ((-1138 |#2|) |#1|)) (-15 -2740 (|#2| (-1225 |#1|))) (-15 -1981 ((-665 |#2|) (-1225 |#1|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1| (-1225 |#1|))) (-15 -2469 (|#2| |#1|)) (-15 -2904 (|#2| |#1|)) (-15 -3121 ((-892))) (-15 -3845 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3845 (|#1| (-549))) (-15 -2371 ((-747))) (-15 ** (|#1| |#1| (-747))) (-15 -2612 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-892))) (-15 * (|#1| (-549) |#1|)) (-15 -2498 (|#1| |#1| |#1|)) (-15 -2498 (|#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|)) (-15 -2484 (|#1| |#1| |#1|)) (-15 -3845 ((-834) |#1|)) (-15 -2387 ((-112) |#1| |#1|))) (-164 |#2|) (-170)) (T -163))
+((-2371 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-747)) (-5 *1 (-163 *3 *4)) (-4 *3 (-164 *4)))) (-3121 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-892)) (-5 *1 (-163 *3 *4)) (-4 *3 (-164 *4)))) (-2740 (*1 *2) (-12 (-4 *2 (-170)) (-5 *1 (-163 *3 *2)) (-4 *3 (-164 *2)))) (-1262 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-1138 *4)) (-5 *1 (-163 *3 *4)) (-4 *3 (-164 *4)))))
+(-10 -8 (-15 -3455 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -3845 (|#1| |#1|)) (-15 -2040 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4010 ((-2 (|:| -1951 |#1|) (|:| -4323 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -1335 ((-747) |#1|)) (-15 -2288 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|)) (-15 -2065 (|#1| |#1| |#1|)) (-15 -2091 (|#1| |#1| |#1|)) (-15 -1990 (|#1| |#1|)) (-15 ** (|#1| |#1| (-549))) (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -2409 ((-112) |#1| |#1|)) (-15 -2843 ((-525) |#1|)) (-15 -2843 ((-167 (-219)) |#1|)) (-15 -2843 ((-167 (-372)) |#1|)) (-15 -1510 (|#1| |#1|)) (-15 -1483 (|#1| |#1|)) (-15 -1500 (|#1| |#1|)) (-15 -1575 (|#1| |#1|)) (-15 -1562 (|#1| |#1|)) (-15 -1585 (|#1| |#1|)) (-15 -1648 (|#1| |#1|)) (-15 -1638 (|#1| |#1|)) (-15 -1662 (|#1| |#1|)) (-15 -1719 (|#1| |#1|)) (-15 -1708 (|#1| |#1|)) (-15 -1731 (|#1| |#1|)) (-15 -3631 (|#1| |#1|)) (-15 -2717 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -1425 (|#1|)) (-15 ** (|#1| |#1| (-400 (-549)))) (-15 -2193 ((-411 (-1138 |#1|)) (-1138 |#1|))) (-15 -2609 ((-411 (-1138 |#1|)) (-1138 |#1|))) (-15 -3955 ((-3 (-621 (-1138 |#1|)) "failed") (-621 (-1138 |#1|)) (-1138 |#1|))) (-15 -1531 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -1390 ((-400 (-549)) |#1|)) (-15 -3945 ((-112) |#1|)) (-15 -3896 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2058 (|#2| |#1|)) (-15 -2199 (|#1| |#1|)) (-15 -2040 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1795 (|#1| |#1|)) (-15 -4015 (|#1|)) (-15 -2843 ((-863 (-372)) |#1|)) (-15 -2843 ((-863 (-549)) |#1|)) (-15 -3849 ((-860 (-372) |#1|) |#1| (-863 (-372)) (-860 (-372) |#1|))) (-15 -3849 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))) (-15 -2795 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -2556 ((-3 |#1| "failed") (-400 (-1138 |#2|)))) (-15 -2545 ((-1138 |#2|) |#1|)) (-15 -2843 (|#1| (-1138 |#2|))) (-15 -2556 (|#1| (-1138 |#2|))) (-15 -1262 ((-1138 |#2|))) (-15 -3446 ((-665 |#2|) (-665 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-665 (-549)) (-665 |#1|))) (-15 -2657 (|#2| |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -2843 ((-1138 |#2|) |#1|)) (-15 -2740 (|#2|)) (-15 -2843 (|#1| (-1225 |#2|))) (-15 -2843 ((-1225 |#2|) |#1|)) (-15 -1981 ((-665 |#2|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1|)) (-15 -3514 ((-1138 |#2|) |#1|)) (-15 -4019 ((-1138 |#2|) |#1|)) (-15 -2740 (|#2| (-1225 |#1|))) (-15 -1981 ((-665 |#2|) (-1225 |#1|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1| (-1225 |#1|))) (-15 -2469 (|#2| |#1|)) (-15 -2904 (|#2| |#1|)) (-15 -3121 ((-892))) (-15 -3845 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3845 (|#1| (-549))) (-15 -2371 ((-747))) (-15 ** (|#1| |#1| (-747))) (-15 -2612 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-892))) (-15 * (|#1| (-549) |#1|)) (-15 -2498 (|#1| |#1| |#1|)) (-15 -2498 (|#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|)) (-15 -2484 (|#1| |#1| |#1|)) (-15 -3845 ((-834) |#1|)) (-15 -2387 ((-112) |#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 91 (-1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-3044 (($ $) 92 (-1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-2774 (((-112) $) 94 (-1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-1789 (((-665 |#1|) (-1225 $)) 44) (((-665 |#1|)) 59)) (-2904 ((|#1| $) 50)) (-1662 (($ $) 225 (|has| |#1| (-1164)))) (-1510 (($ $) 208 (|has| |#1| (-1164)))) (-1597 (((-1152 (-892) (-747)) (-549)) 144 (|has| |#1| (-342)))) (-2416 (((-3 $ "failed") $ $) 19)) (-3630 (((-411 (-1138 $)) (-1138 $)) 239 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (-3239 (($ $) 111 (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-356))))) (-2620 (((-411 $) $) 112 (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-356))))) (-2132 (($ $) 238 (-12 (|has| |#1| (-973)) (|has| |#1| (-1164))))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) 242 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (-2680 (((-112) $ $) 102 (|has| |#1| (-300)))) (-3614 (((-747)) 85 (|has| |#1| (-361)))) (-1638 (($ $) 224 (|has| |#1| (-1164)))) (-1483 (($ $) 209 (|has| |#1| (-1164)))) (-1684 (($ $) 223 (|has| |#1| (-1164)))) (-1538 (($ $) 210 (|has| |#1| (-1164)))) (-3034 (($) 17 T CONST)) (-2712 (((-3 (-549) "failed") $) 166 (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 164 (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 163)) (-2657 (((-549) $) 167 (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) 165 (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 162)) (-2397 (($ (-1225 |#1|) (-1225 $)) 46) (($ (-1225 |#1|)) 62)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) 150 (|has| |#1| (-342)))) (-2091 (($ $ $) 106 (|has| |#1| (-300)))) (-1408 (((-665 |#1|) $ (-1225 $)) 51) (((-665 |#1|) $) 57)) (-3446 (((-665 (-549)) (-665 $)) 161 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 160 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) 159) (((-665 |#1|) (-665 $)) 158)) (-2556 (($ (-1138 |#1|)) 155) (((-3 $ "failed") (-400 (-1138 |#1|))) 152 (|has| |#1| (-356)))) (-2612 (((-3 $ "failed") $) 32)) (-2146 ((|#1| $) 250)) (-1531 (((-3 (-400 (-549)) "failed") $) 243 (|has| |#1| (-534)))) (-3945 (((-112) $) 245 (|has| |#1| (-534)))) (-1390 (((-400 (-549)) $) 244 (|has| |#1| (-534)))) (-3121 (((-892)) 52)) (-3237 (($) 88 (|has| |#1| (-361)))) (-2065 (($ $ $) 105 (|has| |#1| (-300)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 100 (|has| |#1| (-300)))) (-1545 (($) 146 (|has| |#1| (-342)))) (-1315 (((-112) $) 147 (|has| |#1| (-342)))) (-3517 (($ $ (-747)) 138 (|has| |#1| (-342))) (($ $) 137 (|has| |#1| (-342)))) (-1464 (((-112) $) 113 (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-356))))) (-3896 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) 246 (-12 (|has| |#1| (-1027)) (|has| |#1| (-1164))))) (-1425 (($) 235 (|has| |#1| (-1164)))) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 258 (|has| |#1| (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 257 (|has| |#1| (-857 (-372))))) (-2729 (((-892) $) 149 (|has| |#1| (-342))) (((-809 (-892)) $) 135 (|has| |#1| (-342)))) (-2297 (((-112) $) 30)) (-3621 (($ $ (-549)) 237 (-12 (|has| |#1| (-973)) (|has| |#1| (-1164))))) (-2469 ((|#1| $) 49)) (-2964 (((-3 $ "failed") $) 139 (|has| |#1| (-342)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 109 (|has| |#1| (-300)))) (-3514 (((-1138 |#1|) $) 42 (|has| |#1| (-356)))) (-2861 (($ $ $) 204 (|has| |#1| (-823)))) (-3574 (($ $ $) 203 (|has| |#1| (-823)))) (-2795 (($ (-1 |#1| |#1|) $) 259)) (-3309 (((-892) $) 87 (|has| |#1| (-361)))) (-3631 (($ $) 232 (|has| |#1| (-1164)))) (-2545 (((-1138 |#1|) $) 153)) (-3696 (($ (-621 $)) 98 (-1536 (|has| |#1| (-300)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (($ $ $) 97 (-1536 (|has| |#1| (-300)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-3441 (((-1124) $) 9)) (-1990 (($ $) 114 (|has| |#1| (-356)))) (-3059 (($) 140 (|has| |#1| (-342)) CONST)) (-3494 (($ (-892)) 86 (|has| |#1| (-361)))) (-4015 (($) 254)) (-2158 ((|#1| $) 251)) (-3988 (((-1086) $) 10)) (-4247 (($) 157)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 99 (-1536 (|has| |#1| (-300)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-3726 (($ (-621 $)) 96 (-1536 (|has| |#1| (-300)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (($ $ $) 95 (-1536 (|has| |#1| (-300)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) 143 (|has| |#1| (-342)))) (-2609 (((-411 (-1138 $)) (-1138 $)) 241 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (-2193 (((-411 (-1138 $)) (-1138 $)) 240 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (-2119 (((-411 $) $) 110 (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-356))))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 108 (|has| |#1| (-300))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 107 (|has| |#1| (-300)))) (-2040 (((-3 $ "failed") $ |#1|) 249 (|has| |#1| (-541))) (((-3 $ "failed") $ $) 90 (-1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 101 (|has| |#1| (-300)))) (-2717 (($ $) 233 (|has| |#1| (-1164)))) (-2684 (($ $ (-621 |#1|) (-621 |#1|)) 265 (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) 264 (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) 263 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) 262 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1142)) (-621 |#1|)) 261 (|has| |#1| (-505 (-1142) |#1|))) (($ $ (-1142) |#1|) 260 (|has| |#1| (-505 (-1142) |#1|)))) (-1335 (((-747) $) 103 (|has| |#1| (-300)))) (-3339 (($ $ |#1|) 266 (|has| |#1| (-279 |#1| |#1|)))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 104 (|has| |#1| (-300)))) (-2740 ((|#1| (-1225 $)) 45) ((|#1|) 58)) (-3189 (((-747) $) 148 (|has| |#1| (-342))) (((-3 (-747) "failed") $ $) 136 (|has| |#1| (-342)))) (-3455 (($ $ (-1 |#1| |#1|) (-747)) 120) (($ $ (-1 |#1| |#1|)) 119) (($ $ (-621 (-1142)) (-621 (-747))) 127 (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) 128 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) 129 (|has| |#1| (-871 (-1142)))) (($ $ (-1142)) 130 (|has| |#1| (-871 (-1142)))) (($ $ (-747)) 132 (-1536 (-1819 (|has| |#1| (-356)) (|has| |#1| (-227))) (|has| |#1| (-227)) (-1819 (|has| |#1| (-227)) (|has| |#1| (-356))))) (($ $) 134 (-1536 (-1819 (|has| |#1| (-356)) (|has| |#1| (-227))) (|has| |#1| (-227)) (-1819 (|has| |#1| (-227)) (|has| |#1| (-356)))))) (-2381 (((-665 |#1|) (-1225 $) (-1 |#1| |#1|)) 151 (|has| |#1| (-356)))) (-1262 (((-1138 |#1|)) 156)) (-1696 (($ $) 222 (|has| |#1| (-1164)))) (-1551 (($ $) 211 (|has| |#1| (-1164)))) (-2950 (($) 145 (|has| |#1| (-342)))) (-1673 (($ $) 221 (|has| |#1| (-1164)))) (-1525 (($ $) 212 (|has| |#1| (-1164)))) (-1648 (($ $) 220 (|has| |#1| (-1164)))) (-1500 (($ $) 213 (|has| |#1| (-1164)))) (-1981 (((-1225 |#1|) $ (-1225 $)) 48) (((-665 |#1|) (-1225 $) (-1225 $)) 47) (((-1225 |#1|) $) 64) (((-665 |#1|) (-1225 $)) 63)) (-2843 (((-1225 |#1|) $) 61) (($ (-1225 |#1|)) 60) (((-1138 |#1|) $) 168) (($ (-1138 |#1|)) 154) (((-863 (-549)) $) 256 (|has| |#1| (-594 (-863 (-549))))) (((-863 (-372)) $) 255 (|has| |#1| (-594 (-863 (-372))))) (((-167 (-372)) $) 207 (|has| |#1| (-993))) (((-167 (-219)) $) 206 (|has| |#1| (-993))) (((-525) $) 205 (|has| |#1| (-594 (-525))))) (-1795 (($ $) 253)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) 142 (-1536 (-1819 (|has| $ (-143)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))) (|has| |#1| (-342))))) (-3409 (($ |#1| |#1|) 252)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 35) (($ (-400 (-549))) 84 (-1536 (|has| |#1| (-356)) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) 89 (-1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-2343 (($ $) 141 (|has| |#1| (-342))) (((-3 $ "failed") $) 41 (-1536 (-1819 (|has| $ (-143)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))) (|has| |#1| (-143))))) (-4019 (((-1138 |#1|) $) 43)) (-2371 (((-747)) 28)) (-2619 (((-1225 $)) 65)) (-1731 (($ $) 231 (|has| |#1| (-1164)))) (-1585 (($ $) 219 (|has| |#1| (-1164)))) (-2441 (((-112) $ $) 93 (-1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))) (-1708 (($ $) 230 (|has| |#1| (-1164)))) (-1562 (($ $) 218 (|has| |#1| (-1164)))) (-1753 (($ $) 229 (|has| |#1| (-1164)))) (-1611 (($ $) 217 (|has| |#1| (-1164)))) (-2058 ((|#1| $) 247 (|has| |#1| (-1164)))) (-1932 (($ $) 228 (|has| |#1| (-1164)))) (-1625 (($ $) 216 (|has| |#1| (-1164)))) (-1743 (($ $) 227 (|has| |#1| (-1164)))) (-1598 (($ $) 215 (|has| |#1| (-1164)))) (-1719 (($ $) 226 (|has| |#1| (-1164)))) (-1575 (($ $) 214 (|has| |#1| (-1164)))) (-2199 (($ $) 248 (|has| |#1| (-1027)))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ (-1 |#1| |#1|) (-747)) 122) (($ $ (-1 |#1| |#1|)) 121) (($ $ (-621 (-1142)) (-621 (-747))) 123 (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) 124 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) 125 (|has| |#1| (-871 (-1142)))) (($ $ (-1142)) 126 (|has| |#1| (-871 (-1142)))) (($ $ (-747)) 131 (-1536 (-1819 (|has| |#1| (-356)) (|has| |#1| (-227))) (|has| |#1| (-227)) (-1819 (|has| |#1| (-227)) (|has| |#1| (-356))))) (($ $) 133 (-1536 (-1819 (|has| |#1| (-356)) (|has| |#1| (-227))) (|has| |#1| (-227)) (-1819 (|has| |#1| (-227)) (|has| |#1| (-356)))))) (-2447 (((-112) $ $) 201 (|has| |#1| (-823)))) (-2423 (((-112) $ $) 200 (|has| |#1| (-823)))) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 202 (|has| |#1| (-823)))) (-2409 (((-112) $ $) 199 (|has| |#1| (-823)))) (-2511 (($ $ $) 118 (|has| |#1| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-400 (-549))) 236 (-12 (|has| |#1| (-973)) (|has| |#1| (-1164)))) (($ $ $) 234 (|has| |#1| (-1164))) (($ $ (-549)) 115 (|has| |#1| (-356)))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 37) (($ |#1| $) 36) (($ (-400 (-549)) $) 117 (|has| |#1| (-356))) (($ $ (-400 (-549))) 116 (|has| |#1| (-356)))))
(((-164 |#1|) (-138) (-170)) (T -164))
-((-3630 (*1 *2 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)))) (-1429 (*1 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)))) (-1955 (*1 *1 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)))) (-3410 (*1 *1 *2 *2) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)))) (-2160 (*1 *2 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)))) (-2145 (*1 *2 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)))) (-2042 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-164 *2)) (-4 *2 (-170)) (-4 *2 (-541)))) (-3212 (*1 *1 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)) (-4 *2 (-1027)))) (-1572 (*1 *2 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)) (-4 *2 (-1165)))) (-2467 (*1 *2 *1) (-12 (-4 *1 (-164 *3)) (-4 *3 (-170)) (-4 *3 (-1027)) (-4 *3 (-1165)) (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))) (-3679 (*1 *2 *1) (-12 (-4 *1 (-164 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-112)))) (-2532 (*1 *2 *1) (-12 (-4 *1 (-164 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-400 (-549))))) (-3405 (*1 *2 *1) (|partial| -12 (-4 *1 (-164 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-400 (-549))))))
-(-13 (-701 |t#1| (-1139 |t#1|)) (-404 |t#1|) (-225 |t#1|) (-331 |t#1|) (-393 |t#1|) (-855 |t#1|) (-370 |t#1|) (-170) (-10 -8 (-6 -3410) (-15 -1429 ($)) (-15 -1955 ($ $)) (-15 -3410 ($ |t#1| |t#1|)) (-15 -2160 (|t#1| $)) (-15 -2145 (|t#1| $)) (-15 -3630 (|t#1| $)) (IF (|has| |t#1| (-823)) (-6 (-823)) |%noBranch|) (IF (|has| |t#1| (-541)) (PROGN (-6 (-541)) (-15 -2042 ((-3 $ "failed") $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-300)) (-6 (-300)) |%noBranch|) (IF (|has| |t#1| (-6 -4336)) (-6 -4336) |%noBranch|) (IF (|has| |t#1| (-6 -4333)) (-6 -4333) |%noBranch|) (IF (|has| |t#1| (-356)) (-6 (-356)) |%noBranch|) (IF (|has| |t#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |t#1| (-993)) (PROGN (-6 (-594 (-167 (-219)))) (-6 (-594 (-167 (-372))))) |%noBranch|) (IF (|has| |t#1| (-1027)) (-15 -3212 ($ $)) |%noBranch|) (IF (|has| |t#1| (-1165)) (PROGN (-6 (-1165)) (-15 -1572 (|t#1| $)) (IF (|has| |t#1| (-973)) (-6 (-973)) |%noBranch|) (IF (|has| |t#1| (-1027)) (-15 -2467 ((-2 (|:| |r| |t#1|) (|:| |phi| |t#1|)) $)) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-534)) (PROGN (-15 -3679 ((-112) $)) (-15 -2532 ((-400 (-549)) $)) (-15 -3405 ((-3 (-400 (-549)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-880)) (IF (|has| |t#1| (-300)) (-6 (-880)) |%noBranch|) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-38 |#1|) . T) ((-38 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-342)) (|has| |#1| (-356)) (|has| |#1| (-300))) ((-35) |has| |#1| (-1165)) ((-94) |has| |#1| (-1165)) ((-101) . T) ((-111 #0# #0#) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-130) . T) ((-143) -1536 (|has| |#1| (-342)) (|has| |#1| (-143))) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) . T) ((-594 (-167 (-219))) |has| |#1| (-993)) ((-594 (-167 (-372))) |has| |#1| (-993)) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-594 (-863 (-372))) |has| |#1| (-594 (-863 (-372)))) ((-594 (-863 (-549))) |has| |#1| (-594 (-863 (-549)))) ((-594 #1=(-1139 |#1|)) . T) ((-225 |#1|) . T) ((-227) -1536 (|has| |#1| (-342)) (|has| |#1| (-227))) ((-237) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-277) |has| |#1| (-1165)) ((-279 |#1| $) |has| |#1| (-279 |#1| |#1|)) ((-283) -1536 (|has| |#1| (-541)) (|has| |#1| (-342)) (|has| |#1| (-356)) (|has| |#1| (-300))) ((-300) -1536 (|has| |#1| (-342)) (|has| |#1| (-356)) (|has| |#1| (-300))) ((-302 |#1|) |has| |#1| (-302 |#1|)) ((-356) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-395) |has| |#1| (-342)) ((-361) -1536 (|has| |#1| (-361)) (|has| |#1| (-342))) ((-342) |has| |#1| (-342)) ((-363 |#1| #1#) . T) ((-402 |#1| #1#) . T) ((-331 |#1|) . T) ((-370 |#1|) . T) ((-393 |#1|) . T) ((-404 |#1|) . T) ((-444) -1536 (|has| |#1| (-342)) (|has| |#1| (-356)) (|has| |#1| (-300))) ((-484) |has| |#1| (-1165)) ((-505 (-1143) |#1|) |has| |#1| (-505 (-1143) |#1|)) ((-505 |#1| |#1|) |has| |#1| (-302 |#1|)) ((-541) -1536 (|has| |#1| (-541)) (|has| |#1| (-342)) (|has| |#1| (-356)) (|has| |#1| (-300))) ((-624 #0#) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-624 |#1|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-694 #0#) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-694 |#1|) . T) ((-694 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-342)) (|has| |#1| (-356)) (|has| |#1| (-300))) ((-701 |#1| #1#) . T) ((-703) . T) ((-823) |has| |#1| (-823)) ((-871 (-1143)) |has| |#1| (-871 (-1143))) ((-857 (-372)) |has| |#1| (-857 (-372))) ((-857 (-549)) |has| |#1| (-857 (-549))) ((-855 |#1|) . T) ((-880) -12 (|has| |#1| (-300)) (|has| |#1| (-880))) ((-891) -1536 (|has| |#1| (-342)) (|has| |#1| (-356)) (|has| |#1| (-300))) ((-973) -12 (|has| |#1| (-973)) (|has| |#1| (-1165))) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1024 #0#) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-1024 |#1|) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1118) |has| |#1| (-342)) ((-1165) |has| |#1| (-1165)) ((-1168) |has| |#1| (-1165)) ((-1180) . T) ((-1184) -1536 (|has| |#1| (-342)) (|has| |#1| (-356)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))
-((-2121 (((-411 |#2|) |#2|) 63)))
-(((-165 |#1| |#2|) (-10 -7 (-15 -2121 ((-411 |#2|) |#2|))) (-300) (-1202 (-167 |#1|))) (T -165))
-((-2121 (*1 *2 *3) (-12 (-4 *4 (-300)) (-5 *2 (-411 *3)) (-5 *1 (-165 *4 *3)) (-4 *3 (-1202 (-167 *4))))))
-(-10 -7 (-15 -2121 ((-411 |#2|) |#2|)))
-((-2797 (((-167 |#2|) (-1 |#2| |#1|) (-167 |#1|)) 14)))
-(((-166 |#1| |#2|) (-10 -7 (-15 -2797 ((-167 |#2|) (-1 |#2| |#1|) (-167 |#1|)))) (-170) (-170)) (T -166))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-167 *5)) (-4 *5 (-170)) (-4 *6 (-170)) (-5 *2 (-167 *6)) (-5 *1 (-166 *5 *6)))))
-(-10 -7 (-15 -2797 ((-167 |#2|) (-1 |#2| |#1|) (-167 |#1|))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 33)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-541))))) (-2258 (($ $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-541))))) (-2799 (((-112) $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-541))))) (-1738 (((-665 |#1|) (-1226 $)) NIL) (((-665 |#1|)) NIL)) (-2906 ((|#1| $) NIL)) (-1664 (($ $) NIL (|has| |#1| (-1165)))) (-1512 (($ $) NIL (|has| |#1| (-1165)))) (-3062 (((-1153 (-892) (-747)) (-549)) NIL (|has| |#1| (-342)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (-3979 (($ $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-356))))) (-2402 (((-411 $) $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-356))))) (-2134 (($ $) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1165))))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-300)))) (-3614 (((-747)) NIL (|has| |#1| (-361)))) (-1640 (($ $) NIL (|has| |#1| (-1165)))) (-1486 (($ $) NIL (|has| |#1| (-1165)))) (-1685 (($ $) NIL (|has| |#1| (-1165)))) (-1539 (($ $) NIL (|has| |#1| (-1165)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) NIL)) (-2659 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-3492 (($ (-1226 |#1|) (-1226 $)) NIL) (($ (-1226 |#1|)) NIL)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-342)))) (-2095 (($ $ $) NIL (|has| |#1| (-300)))) (-3506 (((-665 |#1|) $ (-1226 $)) NIL) (((-665 |#1|) $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2557 (($ (-1139 |#1|)) NIL) (((-3 $ "failed") (-400 (-1139 |#1|))) NIL (|has| |#1| (-356)))) (-2114 (((-3 $ "failed") $) NIL)) (-2145 ((|#1| $) 13)) (-3405 (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-534)))) (-3679 (((-112) $) NIL (|has| |#1| (-534)))) (-2532 (((-400 (-549)) $) NIL (|has| |#1| (-534)))) (-3123 (((-892)) NIL)) (-3239 (($) NIL (|has| |#1| (-361)))) (-2067 (($ $ $) NIL (|has| |#1| (-300)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| |#1| (-300)))) (-2405 (($) NIL (|has| |#1| (-342)))) (-2288 (((-112) $) NIL (|has| |#1| (-342)))) (-3165 (($ $ (-747)) NIL (|has| |#1| (-342))) (($ $) NIL (|has| |#1| (-342)))) (-1420 (((-112) $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-356))))) (-2467 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) NIL (-12 (|has| |#1| (-1027)) (|has| |#1| (-1165))))) (-1425 (($) NIL (|has| |#1| (-1165)))) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| |#1| (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| |#1| (-857 (-372))))) (-2088 (((-892) $) NIL (|has| |#1| (-342))) (((-809 (-892)) $) NIL (|has| |#1| (-342)))) (-2675 (((-112) $) 35)) (-4187 (($ $ (-549)) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1165))))) (-3630 ((|#1| $) 46)) (-1681 (((-3 $ "failed") $) NIL (|has| |#1| (-342)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-300)))) (-3788 (((-1139 |#1|) $) NIL (|has| |#1| (-356)))) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1881 (((-892) $) NIL (|has| |#1| (-361)))) (-3632 (($ $) NIL (|has| |#1| (-1165)))) (-2548 (((-1139 |#1|) $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-300))) (($ $ $) NIL (|has| |#1| (-300)))) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL (|has| |#1| (-356)))) (-3060 (($) NIL (|has| |#1| (-342)) CONST)) (-3493 (($ (-892)) NIL (|has| |#1| (-361)))) (-1429 (($) NIL)) (-2160 ((|#1| $) 15)) (-3990 (((-1087) $) NIL)) (-4248 (($) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-300)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-300))) (($ $ $) NIL (|has| |#1| (-300)))) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) NIL (|has| |#1| (-342)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (-2121 (((-411 $) $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-356))))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-300))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-300)))) (-2042 (((-3 $ "failed") $ |#1|) 44 (|has| |#1| (-541))) (((-3 $ "failed") $ $) 47 (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-541))))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-300)))) (-2719 (($ $) NIL (|has| |#1| (-1165)))) (-2686 (($ $ (-621 |#1|) (-621 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1143)) (-621 |#1|)) NIL (|has| |#1| (-505 (-1143) |#1|))) (($ $ (-1143) |#1|) NIL (|has| |#1| (-505 (-1143) |#1|)))) (-3684 (((-747) $) NIL (|has| |#1| (-300)))) (-3341 (($ $ |#1|) NIL (|has| |#1| (-279 |#1| |#1|)))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-300)))) (-3602 ((|#1| (-1226 $)) NIL) ((|#1|) NIL)) (-3914 (((-747) $) NIL (|has| |#1| (-342))) (((-3 (-747) "failed") $ $) NIL (|has| |#1| (-342)))) (-3456 (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $) NIL (|has| |#1| (-227)))) (-2901 (((-665 |#1|) (-1226 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-356)))) (-2815 (((-1139 |#1|)) NIL)) (-1698 (($ $) NIL (|has| |#1| (-1165)))) (-1552 (($ $) NIL (|has| |#1| (-1165)))) (-3170 (($) NIL (|has| |#1| (-342)))) (-1675 (($ $) NIL (|has| |#1| (-1165)))) (-1526 (($ $) NIL (|has| |#1| (-1165)))) (-1651 (($ $) NIL (|has| |#1| (-1165)))) (-1501 (($ $) NIL (|has| |#1| (-1165)))) (-4263 (((-1226 |#1|) $ (-1226 $)) NIL) (((-665 |#1|) (-1226 $) (-1226 $)) NIL) (((-1226 |#1|) $) NIL) (((-665 |#1|) (-1226 $)) NIL)) (-2845 (((-1226 |#1|) $) NIL) (($ (-1226 |#1|)) NIL) (((-1139 |#1|) $) NIL) (($ (-1139 |#1|)) NIL) (((-863 (-549)) $) NIL (|has| |#1| (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| |#1| (-594 (-863 (-372))))) (((-167 (-372)) $) NIL (|has| |#1| (-993))) (((-167 (-219)) $) NIL (|has| |#1| (-993))) (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-1955 (($ $) 45)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-342))))) (-3410 (($ |#1| |#1|) 37)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) 36) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-356)) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-541))))) (-2210 (($ $) NIL (|has| |#1| (-342))) (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-4154 (((-1139 |#1|) $) NIL)) (-2082 (((-747)) NIL)) (-1949 (((-1226 $)) NIL)) (-1733 (($ $) NIL (|has| |#1| (-1165)))) (-1587 (($ $) NIL (|has| |#1| (-1165)))) (-1498 (((-112) $ $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-541))))) (-1710 (($ $) NIL (|has| |#1| (-1165)))) (-1564 (($ $) NIL (|has| |#1| (-1165)))) (-1758 (($ $) NIL (|has| |#1| (-1165)))) (-1612 (($ $) NIL (|has| |#1| (-1165)))) (-1572 ((|#1| $) NIL (|has| |#1| (-1165)))) (-1934 (($ $) NIL (|has| |#1| (-1165)))) (-1627 (($ $) NIL (|has| |#1| (-1165)))) (-1745 (($ $) NIL (|has| |#1| (-1165)))) (-1600 (($ $) NIL (|has| |#1| (-1165)))) (-1722 (($ $) NIL (|has| |#1| (-1165)))) (-1576 (($ $) NIL (|has| |#1| (-1165)))) (-3212 (($ $) NIL (|has| |#1| (-1027)))) (-3276 (($) 28 T CONST)) (-3287 (($) 30 T CONST)) (-4245 (((-1125) $) 23 (|has| |#1| (-804))) (((-1125) $ (-112)) 25 (|has| |#1| (-804))) (((-1231) (-798) $) 26 (|has| |#1| (-804))) (((-1231) (-798) $ (-112)) 27 (|has| |#1| (-804)))) (-1702 (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $) NIL (|has| |#1| (-227)))) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2513 (($ $ $) NIL (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) 39)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-400 (-549))) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1165)))) (($ $ $) NIL (|has| |#1| (-1165))) (($ $ (-549)) NIL (|has| |#1| (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 42) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-400 (-549)) $) NIL (|has| |#1| (-356))) (($ $ (-400 (-549))) NIL (|has| |#1| (-356)))))
+((-2469 (*1 *2 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)))) (-4015 (*1 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)))) (-1795 (*1 *1 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)))) (-3409 (*1 *1 *2 *2) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)))) (-2158 (*1 *2 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)))) (-2146 (*1 *2 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)))) (-2040 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-164 *2)) (-4 *2 (-170)) (-4 *2 (-541)))) (-2199 (*1 *1 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)) (-4 *2 (-1027)))) (-2058 (*1 *2 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)) (-4 *2 (-1164)))) (-3896 (*1 *2 *1) (-12 (-4 *1 (-164 *3)) (-4 *3 (-170)) (-4 *3 (-1027)) (-4 *3 (-1164)) (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))) (-3945 (*1 *2 *1) (-12 (-4 *1 (-164 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-112)))) (-1390 (*1 *2 *1) (-12 (-4 *1 (-164 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-400 (-549))))) (-1531 (*1 *2 *1) (|partial| -12 (-4 *1 (-164 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-400 (-549))))))
+(-13 (-701 |t#1| (-1138 |t#1|)) (-404 |t#1|) (-225 |t#1|) (-331 |t#1|) (-393 |t#1|) (-855 |t#1|) (-370 |t#1|) (-170) (-10 -8 (-6 -3409) (-15 -4015 ($)) (-15 -1795 ($ $)) (-15 -3409 ($ |t#1| |t#1|)) (-15 -2158 (|t#1| $)) (-15 -2146 (|t#1| $)) (-15 -2469 (|t#1| $)) (IF (|has| |t#1| (-823)) (-6 (-823)) |%noBranch|) (IF (|has| |t#1| (-541)) (PROGN (-6 (-541)) (-15 -2040 ((-3 $ "failed") $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-300)) (-6 (-300)) |%noBranch|) (IF (|has| |t#1| (-6 -4335)) (-6 -4335) |%noBranch|) (IF (|has| |t#1| (-6 -4332)) (-6 -4332) |%noBranch|) (IF (|has| |t#1| (-356)) (-6 (-356)) |%noBranch|) (IF (|has| |t#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |t#1| (-993)) (PROGN (-6 (-594 (-167 (-219)))) (-6 (-594 (-167 (-372))))) |%noBranch|) (IF (|has| |t#1| (-1027)) (-15 -2199 ($ $)) |%noBranch|) (IF (|has| |t#1| (-1164)) (PROGN (-6 (-1164)) (-15 -2058 (|t#1| $)) (IF (|has| |t#1| (-973)) (-6 (-973)) |%noBranch|) (IF (|has| |t#1| (-1027)) (-15 -3896 ((-2 (|:| |r| |t#1|) (|:| |phi| |t#1|)) $)) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-534)) (PROGN (-15 -3945 ((-112) $)) (-15 -1390 ((-400 (-549)) $)) (-15 -1531 ((-3 (-400 (-549)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-880)) (IF (|has| |t#1| (-300)) (-6 (-880)) |%noBranch|) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-38 |#1|) . T) ((-38 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-342)) (|has| |#1| (-356)) (|has| |#1| (-300))) ((-35) |has| |#1| (-1164)) ((-94) |has| |#1| (-1164)) ((-101) . T) ((-111 #0# #0#) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-130) . T) ((-143) -1536 (|has| |#1| (-342)) (|has| |#1| (-143))) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) . T) ((-594 (-167 (-219))) |has| |#1| (-993)) ((-594 (-167 (-372))) |has| |#1| (-993)) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-594 (-863 (-372))) |has| |#1| (-594 (-863 (-372)))) ((-594 (-863 (-549))) |has| |#1| (-594 (-863 (-549)))) ((-594 #1=(-1138 |#1|)) . T) ((-225 |#1|) . T) ((-227) -1536 (|has| |#1| (-342)) (|has| |#1| (-227))) ((-237) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-277) |has| |#1| (-1164)) ((-279 |#1| $) |has| |#1| (-279 |#1| |#1|)) ((-283) -1536 (|has| |#1| (-541)) (|has| |#1| (-342)) (|has| |#1| (-356)) (|has| |#1| (-300))) ((-300) -1536 (|has| |#1| (-342)) (|has| |#1| (-356)) (|has| |#1| (-300))) ((-302 |#1|) |has| |#1| (-302 |#1|)) ((-356) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-395) |has| |#1| (-342)) ((-361) -1536 (|has| |#1| (-361)) (|has| |#1| (-342))) ((-342) |has| |#1| (-342)) ((-363 |#1| #1#) . T) ((-402 |#1| #1#) . T) ((-331 |#1|) . T) ((-370 |#1|) . T) ((-393 |#1|) . T) ((-404 |#1|) . T) ((-444) -1536 (|has| |#1| (-342)) (|has| |#1| (-356)) (|has| |#1| (-300))) ((-484) |has| |#1| (-1164)) ((-505 (-1142) |#1|) |has| |#1| (-505 (-1142) |#1|)) ((-505 |#1| |#1|) |has| |#1| (-302 |#1|)) ((-541) -1536 (|has| |#1| (-541)) (|has| |#1| (-342)) (|has| |#1| (-356)) (|has| |#1| (-300))) ((-624 #0#) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-624 |#1|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-694 #0#) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-694 |#1|) . T) ((-694 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-342)) (|has| |#1| (-356)) (|has| |#1| (-300))) ((-701 |#1| #1#) . T) ((-703) . T) ((-823) |has| |#1| (-823)) ((-871 (-1142)) |has| |#1| (-871 (-1142))) ((-857 (-372)) |has| |#1| (-857 (-372))) ((-857 (-549)) |has| |#1| (-857 (-549))) ((-855 |#1|) . T) ((-880) -12 (|has| |#1| (-300)) (|has| |#1| (-880))) ((-891) -1536 (|has| |#1| (-342)) (|has| |#1| (-356)) (|has| |#1| (-300))) ((-973) -12 (|has| |#1| (-973)) (|has| |#1| (-1164))) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1024 #0#) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-1024 |#1|) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1117) |has| |#1| (-342)) ((-1164) |has| |#1| (-1164)) ((-1167) |has| |#1| (-1164)) ((-1179) . T) ((-1183) -1536 (|has| |#1| (-342)) (|has| |#1| (-356)) (-12 (|has| |#1| (-300)) (|has| |#1| (-880)))))
+((-2119 (((-411 |#2|) |#2|) 63)))
+(((-165 |#1| |#2|) (-10 -7 (-15 -2119 ((-411 |#2|) |#2|))) (-300) (-1201 (-167 |#1|))) (T -165))
+((-2119 (*1 *2 *3) (-12 (-4 *4 (-300)) (-5 *2 (-411 *3)) (-5 *1 (-165 *4 *3)) (-4 *3 (-1201 (-167 *4))))))
+(-10 -7 (-15 -2119 ((-411 |#2|) |#2|)))
+((-2795 (((-167 |#2|) (-1 |#2| |#1|) (-167 |#1|)) 14)))
+(((-166 |#1| |#2|) (-10 -7 (-15 -2795 ((-167 |#2|) (-1 |#2| |#1|) (-167 |#1|)))) (-170) (-170)) (T -166))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-167 *5)) (-4 *5 (-170)) (-4 *6 (-170)) (-5 *2 (-167 *6)) (-5 *1 (-166 *5 *6)))))
+(-10 -7 (-15 -2795 ((-167 |#2|) (-1 |#2| |#1|) (-167 |#1|))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 33)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-541))))) (-3044 (($ $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-541))))) (-2774 (((-112) $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-541))))) (-1789 (((-665 |#1|) (-1225 $)) NIL) (((-665 |#1|)) NIL)) (-2904 ((|#1| $) NIL)) (-1662 (($ $) NIL (|has| |#1| (-1164)))) (-1510 (($ $) NIL (|has| |#1| (-1164)))) (-1597 (((-1152 (-892) (-747)) (-549)) NIL (|has| |#1| (-342)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (-3239 (($ $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-356))))) (-2620 (((-411 $) $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-356))))) (-2132 (($ $) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1164))))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (-2680 (((-112) $ $) NIL (|has| |#1| (-300)))) (-3614 (((-747)) NIL (|has| |#1| (-361)))) (-1638 (($ $) NIL (|has| |#1| (-1164)))) (-1483 (($ $) NIL (|has| |#1| (-1164)))) (-1684 (($ $) NIL (|has| |#1| (-1164)))) (-1538 (($ $) NIL (|has| |#1| (-1164)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) NIL)) (-2657 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-2397 (($ (-1225 |#1|) (-1225 $)) NIL) (($ (-1225 |#1|)) NIL)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-342)))) (-2091 (($ $ $) NIL (|has| |#1| (-300)))) (-1408 (((-665 |#1|) $ (-1225 $)) NIL) (((-665 |#1|) $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2556 (($ (-1138 |#1|)) NIL) (((-3 $ "failed") (-400 (-1138 |#1|))) NIL (|has| |#1| (-356)))) (-2612 (((-3 $ "failed") $) NIL)) (-2146 ((|#1| $) 13)) (-1531 (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-534)))) (-3945 (((-112) $) NIL (|has| |#1| (-534)))) (-1390 (((-400 (-549)) $) NIL (|has| |#1| (-534)))) (-3121 (((-892)) NIL)) (-3237 (($) NIL (|has| |#1| (-361)))) (-2065 (($ $ $) NIL (|has| |#1| (-300)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| |#1| (-300)))) (-1545 (($) NIL (|has| |#1| (-342)))) (-1315 (((-112) $) NIL (|has| |#1| (-342)))) (-3517 (($ $ (-747)) NIL (|has| |#1| (-342))) (($ $) NIL (|has| |#1| (-342)))) (-1464 (((-112) $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-356))))) (-3896 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) NIL (-12 (|has| |#1| (-1027)) (|has| |#1| (-1164))))) (-1425 (($) NIL (|has| |#1| (-1164)))) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| |#1| (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| |#1| (-857 (-372))))) (-2729 (((-892) $) NIL (|has| |#1| (-342))) (((-809 (-892)) $) NIL (|has| |#1| (-342)))) (-2297 (((-112) $) 35)) (-3621 (($ $ (-549)) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1164))))) (-2469 ((|#1| $) 46)) (-2964 (((-3 $ "failed") $) NIL (|has| |#1| (-342)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-300)))) (-3514 (((-1138 |#1|) $) NIL (|has| |#1| (-356)))) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3309 (((-892) $) NIL (|has| |#1| (-361)))) (-3631 (($ $) NIL (|has| |#1| (-1164)))) (-2545 (((-1138 |#1|) $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-300))) (($ $ $) NIL (|has| |#1| (-300)))) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL (|has| |#1| (-356)))) (-3059 (($) NIL (|has| |#1| (-342)) CONST)) (-3494 (($ (-892)) NIL (|has| |#1| (-361)))) (-4015 (($) NIL)) (-2158 ((|#1| $) 15)) (-3988 (((-1086) $) NIL)) (-4247 (($) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-300)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-300))) (($ $ $) NIL (|has| |#1| (-300)))) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) NIL (|has| |#1| (-342)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (-12 (|has| |#1| (-300)) (|has| |#1| (-880))))) (-2119 (((-411 $) $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-356))))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-300))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-300)))) (-2040 (((-3 $ "failed") $ |#1|) 44 (|has| |#1| (-541))) (((-3 $ "failed") $ $) 47 (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-541))))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-300)))) (-2717 (($ $) NIL (|has| |#1| (-1164)))) (-2684 (($ $ (-621 |#1|) (-621 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1142)) (-621 |#1|)) NIL (|has| |#1| (-505 (-1142) |#1|))) (($ $ (-1142) |#1|) NIL (|has| |#1| (-505 (-1142) |#1|)))) (-1335 (((-747) $) NIL (|has| |#1| (-300)))) (-3339 (($ $ |#1|) NIL (|has| |#1| (-279 |#1| |#1|)))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-300)))) (-2740 ((|#1| (-1225 $)) NIL) ((|#1|) NIL)) (-3189 (((-747) $) NIL (|has| |#1| (-342))) (((-3 (-747) "failed") $ $) NIL (|has| |#1| (-342)))) (-3455 (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $) NIL (|has| |#1| (-227)))) (-2381 (((-665 |#1|) (-1225 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-356)))) (-1262 (((-1138 |#1|)) NIL)) (-1696 (($ $) NIL (|has| |#1| (-1164)))) (-1551 (($ $) NIL (|has| |#1| (-1164)))) (-2950 (($) NIL (|has| |#1| (-342)))) (-1673 (($ $) NIL (|has| |#1| (-1164)))) (-1525 (($ $) NIL (|has| |#1| (-1164)))) (-1648 (($ $) NIL (|has| |#1| (-1164)))) (-1500 (($ $) NIL (|has| |#1| (-1164)))) (-1981 (((-1225 |#1|) $ (-1225 $)) NIL) (((-665 |#1|) (-1225 $) (-1225 $)) NIL) (((-1225 |#1|) $) NIL) (((-665 |#1|) (-1225 $)) NIL)) (-2843 (((-1225 |#1|) $) NIL) (($ (-1225 |#1|)) NIL) (((-1138 |#1|) $) NIL) (($ (-1138 |#1|)) NIL) (((-863 (-549)) $) NIL (|has| |#1| (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| |#1| (-594 (-863 (-372))))) (((-167 (-372)) $) NIL (|has| |#1| (-993))) (((-167 (-219)) $) NIL (|has| |#1| (-993))) (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-1795 (($ $) 45)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-342))))) (-3409 (($ |#1| |#1|) 37)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) 36) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-356)) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-541))))) (-2343 (($ $) NIL (|has| |#1| (-342))) (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-4019 (((-1138 |#1|) $) NIL)) (-2371 (((-747)) NIL)) (-2619 (((-1225 $)) NIL)) (-1731 (($ $) NIL (|has| |#1| (-1164)))) (-1585 (($ $) NIL (|has| |#1| (-1164)))) (-2441 (((-112) $ $) NIL (-1536 (-12 (|has| |#1| (-300)) (|has| |#1| (-880))) (|has| |#1| (-541))))) (-1708 (($ $) NIL (|has| |#1| (-1164)))) (-1562 (($ $) NIL (|has| |#1| (-1164)))) (-1753 (($ $) NIL (|has| |#1| (-1164)))) (-1611 (($ $) NIL (|has| |#1| (-1164)))) (-2058 ((|#1| $) NIL (|has| |#1| (-1164)))) (-1932 (($ $) NIL (|has| |#1| (-1164)))) (-1625 (($ $) NIL (|has| |#1| (-1164)))) (-1743 (($ $) NIL (|has| |#1| (-1164)))) (-1598 (($ $) NIL (|has| |#1| (-1164)))) (-1719 (($ $) NIL (|has| |#1| (-1164)))) (-1575 (($ $) NIL (|has| |#1| (-1164)))) (-2199 (($ $) NIL (|has| |#1| (-1027)))) (-3274 (($) 28 T CONST)) (-3286 (($) 30 T CONST)) (-4035 (((-1124) $) 23 (|has| |#1| (-804))) (((-1124) $ (-112)) 25 (|has| |#1| (-804))) (((-1230) (-798) $) 26 (|has| |#1| (-804))) (((-1230) (-798) $ (-112)) 27 (|has| |#1| (-804)))) (-1699 (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $) NIL (|has| |#1| (-227)))) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2511 (($ $ $) NIL (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) 39)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-400 (-549))) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1164)))) (($ $ $) NIL (|has| |#1| (-1164))) (($ $ (-549)) NIL (|has| |#1| (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 42) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-400 (-549)) $) NIL (|has| |#1| (-356))) (($ $ (-400 (-549))) NIL (|has| |#1| (-356)))))
(((-167 |#1|) (-13 (-164 |#1|) (-10 -7 (IF (|has| |#1| (-804)) (-6 (-804)) |%noBranch|))) (-170)) (T -167))
NIL
(-13 (-164 |#1|) (-10 -7 (IF (|has| |#1| (-804)) (-6 (-804)) |%noBranch|)))
-((-2845 (((-863 |#1|) |#3|) 22)))
-(((-168 |#1| |#2| |#3|) (-10 -7 (-15 -2845 ((-863 |#1|) |#3|))) (-1067) (-13 (-594 (-863 |#1|)) (-170)) (-164 |#2|)) (T -168))
-((-2845 (*1 *2 *3) (-12 (-4 *5 (-13 (-594 *2) (-170))) (-5 *2 (-863 *4)) (-5 *1 (-168 *4 *5 *3)) (-4 *4 (-1067)) (-4 *3 (-164 *5)))))
-(-10 -7 (-15 -2845 ((-863 |#1|) |#3|)))
-((-3834 (((-112) $ $) NIL)) (-1909 (((-112) $) 9)) (-3831 (((-112) $ (-112)) 11)) (-3743 (($) 12)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2281 (($ $) 13)) (-3846 (((-834) $) 17)) (-2757 (((-112) $) 8)) (-2681 (((-112) $ (-112)) 10)) (-2389 (((-112) $ $) NIL)))
-(((-169) (-13 (-1067) (-10 -8 (-15 -3743 ($)) (-15 -2757 ((-112) $)) (-15 -1909 ((-112) $)) (-15 -2681 ((-112) $ (-112))) (-15 -3831 ((-112) $ (-112))) (-15 -2281 ($ $))))) (T -169))
-((-3743 (*1 *1) (-5 *1 (-169))) (-2757 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-169)))) (-1909 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-169)))) (-2681 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-169)))) (-3831 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-169)))) (-2281 (*1 *1 *1) (-5 *1 (-169))))
-(-13 (-1067) (-10 -8 (-15 -3743 ($)) (-15 -2757 ((-112) $)) (-15 -1909 ((-112) $)) (-15 -2681 ((-112) $ (-112))) (-15 -3831 ((-112) $ (-112))) (-15 -2281 ($ $))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11) (($ (-549)) 27)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+((-2843 (((-863 |#1|) |#3|) 22)))
+(((-168 |#1| |#2| |#3|) (-10 -7 (-15 -2843 ((-863 |#1|) |#3|))) (-1066) (-13 (-594 (-863 |#1|)) (-170)) (-164 |#2|)) (T -168))
+((-2843 (*1 *2 *3) (-12 (-4 *5 (-13 (-594 *2) (-170))) (-5 *2 (-863 *4)) (-5 *1 (-168 *4 *5 *3)) (-4 *4 (-1066)) (-4 *3 (-164 *5)))))
+(-10 -7 (-15 -2843 ((-863 |#1|) |#3|)))
+((-3832 (((-112) $ $) NIL)) (-3179 (((-112) $) 9)) (-2180 (((-112) $ (-112)) 11)) (-3743 (($) 12)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2279 (($ $) 13)) (-3845 (((-834) $) 17)) (-4248 (((-112) $) 8)) (-2679 (((-112) $ (-112)) 10)) (-2387 (((-112) $ $) NIL)))
+(((-169) (-13 (-1066) (-10 -8 (-15 -3743 ($)) (-15 -4248 ((-112) $)) (-15 -3179 ((-112) $)) (-15 -2679 ((-112) $ (-112))) (-15 -2180 ((-112) $ (-112))) (-15 -2279 ($ $))))) (T -169))
+((-3743 (*1 *1) (-5 *1 (-169))) (-4248 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-169)))) (-3179 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-169)))) (-2679 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-169)))) (-2180 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-169)))) (-2279 (*1 *1 *1) (-5 *1 (-169))))
+(-13 (-1066) (-10 -8 (-15 -3743 ($)) (-15 -4248 ((-112) $)) (-15 -3179 ((-112) $)) (-15 -2679 ((-112) $ (-112))) (-15 -2180 ((-112) $ (-112))) (-15 -2279 ($ $))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11) (($ (-549)) 27)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-170) (-138)) (T -170))
NIL
-(-13 (-1018) (-111 $ $) (-10 -7 (-6 (-4339 "*"))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-3578 (($ $) 6)))
+(-13 (-1018) (-111 $ $) (-10 -7 (-6 (-4338 "*"))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-2384 (($ $) 6)))
(((-171) (-138)) (T -171))
-((-3578 (*1 *1 *1) (-4 *1 (-171))))
-(-13 (-10 -8 (-15 -3578 ($ $))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3329 ((|#1| $) 75)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1682 (($) NIL T CONST)) (-2095 (($ $ $) NIL)) (-2842 (($ $) 19)) (-1691 (($ |#1| (-1123 |#1|)) 48)) (-2114 (((-3 $ "failed") $) 117)) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-2907 (((-1123 |#1|) $) 82)) (-3972 (((-1123 |#1|) $) 79)) (-1468 (((-1123 |#1|) $) 80)) (-2675 (((-112) $) NIL)) (-1990 (((-1123 |#1|) $) 88)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3697 (($ (-621 $)) NIL) (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ (-621 $)) NIL) (($ $ $) NIL)) (-2121 (((-411 $) $) NIL)) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL)) (-2763 (($ $ (-549)) 91)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-4067 (((-1123 |#1|) $) 89)) (-3587 (((-1123 (-400 |#1|)) $) 14)) (-4116 (($ (-400 |#1|)) 17) (($ |#1| (-1123 |#1|) (-1123 |#1|)) 38)) (-1977 (($ $) 93)) (-3846 (((-834) $) 127) (($ (-549)) 51) (($ |#1|) 52) (($ (-400 |#1|)) 36) (($ (-400 (-549))) NIL) (($ $) NIL)) (-2082 (((-747)) 64)) (-1498 (((-112) $ $) NIL)) (-1941 (((-1123 (-400 |#1|)) $) 18)) (-3276 (($) 25 T CONST)) (-3287 (($) 28 T CONST)) (-2389 (((-112) $ $) 35)) (-2513 (($ $ $) 115)) (-2500 (($ $) 106) (($ $ $) 103)) (-2486 (($ $ $) 101)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 113) (($ $ $) 108) (($ $ |#1|) NIL) (($ |#1| $) 110) (($ (-400 |#1|) $) 111) (($ $ (-400 |#1|)) NIL) (($ (-400 (-549)) $) NIL) (($ $ (-400 (-549))) NIL)))
-(((-172 |#1|) (-13 (-38 |#1|) (-38 (-400 |#1|)) (-356) (-10 -8 (-15 -4116 ($ (-400 |#1|))) (-15 -4116 ($ |#1| (-1123 |#1|) (-1123 |#1|))) (-15 -1691 ($ |#1| (-1123 |#1|))) (-15 -3972 ((-1123 |#1|) $)) (-15 -1468 ((-1123 |#1|) $)) (-15 -2907 ((-1123 |#1|) $)) (-15 -3329 (|#1| $)) (-15 -2842 ($ $)) (-15 -1941 ((-1123 (-400 |#1|)) $)) (-15 -3587 ((-1123 (-400 |#1|)) $)) (-15 -1990 ((-1123 |#1|) $)) (-15 -4067 ((-1123 |#1|) $)) (-15 -2763 ($ $ (-549))) (-15 -1977 ($ $)))) (-300)) (T -172))
-((-4116 (*1 *1 *2) (-12 (-5 *2 (-400 *3)) (-4 *3 (-300)) (-5 *1 (-172 *3)))) (-4116 (*1 *1 *2 *3 *3) (-12 (-5 *3 (-1123 *2)) (-4 *2 (-300)) (-5 *1 (-172 *2)))) (-1691 (*1 *1 *2 *3) (-12 (-5 *3 (-1123 *2)) (-4 *2 (-300)) (-5 *1 (-172 *2)))) (-3972 (*1 *2 *1) (-12 (-5 *2 (-1123 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))) (-1468 (*1 *2 *1) (-12 (-5 *2 (-1123 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))) (-2907 (*1 *2 *1) (-12 (-5 *2 (-1123 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))) (-3329 (*1 *2 *1) (-12 (-5 *1 (-172 *2)) (-4 *2 (-300)))) (-2842 (*1 *1 *1) (-12 (-5 *1 (-172 *2)) (-4 *2 (-300)))) (-1941 (*1 *2 *1) (-12 (-5 *2 (-1123 (-400 *3))) (-5 *1 (-172 *3)) (-4 *3 (-300)))) (-3587 (*1 *2 *1) (-12 (-5 *2 (-1123 (-400 *3))) (-5 *1 (-172 *3)) (-4 *3 (-300)))) (-1990 (*1 *2 *1) (-12 (-5 *2 (-1123 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))) (-4067 (*1 *2 *1) (-12 (-5 *2 (-1123 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))) (-2763 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-172 *3)) (-4 *3 (-300)))) (-1977 (*1 *1 *1) (-12 (-5 *1 (-172 *2)) (-4 *2 (-300)))))
-(-13 (-38 |#1|) (-38 (-400 |#1|)) (-356) (-10 -8 (-15 -4116 ($ (-400 |#1|))) (-15 -4116 ($ |#1| (-1123 |#1|) (-1123 |#1|))) (-15 -1691 ($ |#1| (-1123 |#1|))) (-15 -3972 ((-1123 |#1|) $)) (-15 -1468 ((-1123 |#1|) $)) (-15 -2907 ((-1123 |#1|) $)) (-15 -3329 (|#1| $)) (-15 -2842 ($ $)) (-15 -1941 ((-1123 (-400 |#1|)) $)) (-15 -3587 ((-1123 (-400 |#1|)) $)) (-15 -1990 ((-1123 |#1|) $)) (-15 -4067 ((-1123 |#1|) $)) (-15 -2763 ($ $ (-549))) (-15 -1977 ($ $))))
-((-2503 (($ (-108) $) 13)) (-1292 (((-3 (-108) "failed") (-1143) $) 12)) (-3846 (((-834) $) 16)) (-3426 (((-621 (-108)) $) 8)))
-(((-173) (-13 (-593 (-834)) (-10 -8 (-15 -3426 ((-621 (-108)) $)) (-15 -2503 ($ (-108) $)) (-15 -1292 ((-3 (-108) "failed") (-1143) $))))) (T -173))
-((-3426 (*1 *2 *1) (-12 (-5 *2 (-621 (-108))) (-5 *1 (-173)))) (-2503 (*1 *1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-173)))) (-1292 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1143)) (-5 *2 (-108)) (-5 *1 (-173)))))
-(-13 (-593 (-834)) (-10 -8 (-15 -3426 ((-621 (-108)) $)) (-15 -2503 ($ (-108) $)) (-15 -1292 ((-3 (-108) "failed") (-1143) $))))
-((-2723 (((-1 (-914 |#1|) (-914 |#1|)) |#1|) 40)) (-4170 (((-914 |#1|) (-914 |#1|)) 19)) (-2997 (((-1 (-914 |#1|) (-914 |#1|)) |#1|) 36)) (-3540 (((-914 |#1|) (-914 |#1|)) 17)) (-2300 (((-914 |#1|) (-914 |#1|)) 25)) (-3958 (((-914 |#1|) (-914 |#1|)) 24)) (-2566 (((-914 |#1|) (-914 |#1|)) 23)) (-1713 (((-1 (-914 |#1|) (-914 |#1|)) |#1|) 37)) (-3577 (((-1 (-914 |#1|) (-914 |#1|)) |#1|) 35)) (-1969 (((-1 (-914 |#1|) (-914 |#1|)) |#1|) 34)) (-4208 (((-914 |#1|) (-914 |#1|)) 18)) (-3981 (((-1 (-914 |#1|) (-914 |#1|)) |#1| |#1|) 43)) (-1616 (((-914 |#1|) (-914 |#1|)) 8)) (-2469 (((-1 (-914 |#1|) (-914 |#1|)) |#1|) 39)) (-4243 (((-1 (-914 |#1|) (-914 |#1|)) |#1|) 38)))
-(((-174 |#1|) (-10 -7 (-15 -1616 ((-914 |#1|) (-914 |#1|))) (-15 -3540 ((-914 |#1|) (-914 |#1|))) (-15 -4208 ((-914 |#1|) (-914 |#1|))) (-15 -4170 ((-914 |#1|) (-914 |#1|))) (-15 -2566 ((-914 |#1|) (-914 |#1|))) (-15 -3958 ((-914 |#1|) (-914 |#1|))) (-15 -2300 ((-914 |#1|) (-914 |#1|))) (-15 -1969 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -3577 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -2997 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -1713 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -4243 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -2469 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -2723 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -3981 ((-1 (-914 |#1|) (-914 |#1|)) |#1| |#1|))) (-13 (-356) (-1165) (-973))) (T -174))
-((-3981 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3)) (-4 *3 (-13 (-356) (-1165) (-973))))) (-2723 (*1 *2 *3) (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3)) (-4 *3 (-13 (-356) (-1165) (-973))))) (-2469 (*1 *2 *3) (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3)) (-4 *3 (-13 (-356) (-1165) (-973))))) (-4243 (*1 *2 *3) (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3)) (-4 *3 (-13 (-356) (-1165) (-973))))) (-1713 (*1 *2 *3) (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3)) (-4 *3 (-13 (-356) (-1165) (-973))))) (-2997 (*1 *2 *3) (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3)) (-4 *3 (-13 (-356) (-1165) (-973))))) (-3577 (*1 *2 *3) (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3)) (-4 *3 (-13 (-356) (-1165) (-973))))) (-1969 (*1 *2 *3) (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3)) (-4 *3 (-13 (-356) (-1165) (-973))))) (-2300 (*1 *2 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1165) (-973))) (-5 *1 (-174 *3)))) (-3958 (*1 *2 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1165) (-973))) (-5 *1 (-174 *3)))) (-2566 (*1 *2 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1165) (-973))) (-5 *1 (-174 *3)))) (-4170 (*1 *2 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1165) (-973))) (-5 *1 (-174 *3)))) (-4208 (*1 *2 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1165) (-973))) (-5 *1 (-174 *3)))) (-3540 (*1 *2 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1165) (-973))) (-5 *1 (-174 *3)))) (-1616 (*1 *2 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1165) (-973))) (-5 *1 (-174 *3)))))
-(-10 -7 (-15 -1616 ((-914 |#1|) (-914 |#1|))) (-15 -3540 ((-914 |#1|) (-914 |#1|))) (-15 -4208 ((-914 |#1|) (-914 |#1|))) (-15 -4170 ((-914 |#1|) (-914 |#1|))) (-15 -2566 ((-914 |#1|) (-914 |#1|))) (-15 -3958 ((-914 |#1|) (-914 |#1|))) (-15 -2300 ((-914 |#1|) (-914 |#1|))) (-15 -1969 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -3577 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -2997 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -1713 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -4243 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -2469 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -2723 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -3981 ((-1 (-914 |#1|) (-914 |#1|)) |#1| |#1|)))
-((-4154 ((|#2| |#3|) 27)))
-(((-175 |#1| |#2| |#3|) (-10 -7 (-15 -4154 (|#2| |#3|))) (-170) (-1202 |#1|) (-701 |#1| |#2|)) (T -175))
-((-4154 (*1 *2 *3) (-12 (-4 *4 (-170)) (-4 *2 (-1202 *4)) (-5 *1 (-175 *4 *2 *3)) (-4 *3 (-701 *4 *2)))))
-(-10 -7 (-15 -4154 (|#2| |#3|)))
-((-2932 (((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|)) 47 (|has| (-923 |#2|) (-857 |#1|)))))
-(((-176 |#1| |#2| |#3|) (-10 -7 (IF (|has| (-923 |#2|) (-857 |#1|)) (-15 -2932 ((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|))) |%noBranch|)) (-1067) (-13 (-857 |#1|) (-170)) (-164 |#2|)) (T -176))
-((-2932 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-860 *5 *3)) (-5 *4 (-863 *5)) (-4 *5 (-1067)) (-4 *3 (-164 *6)) (-4 (-923 *6) (-857 *5)) (-4 *6 (-13 (-857 *5) (-170))) (-5 *1 (-176 *5 *6 *3)))))
-(-10 -7 (IF (|has| (-923 |#2|) (-857 |#1|)) (-15 -2932 ((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|))) |%noBranch|))
-((-2738 (((-621 |#1|) (-621 |#1|) |#1|) 38)) (-1317 (((-621 |#1|) |#1| (-621 |#1|)) 19)) (-2264 (((-621 |#1|) (-621 (-621 |#1|)) (-621 |#1|)) 33) ((|#1| (-621 |#1|) (-621 |#1|)) 31)))
-(((-177 |#1|) (-10 -7 (-15 -1317 ((-621 |#1|) |#1| (-621 |#1|))) (-15 -2264 (|#1| (-621 |#1|) (-621 |#1|))) (-15 -2264 ((-621 |#1|) (-621 (-621 |#1|)) (-621 |#1|))) (-15 -2738 ((-621 |#1|) (-621 |#1|) |#1|))) (-300)) (T -177))
-((-2738 (*1 *2 *2 *3) (-12 (-5 *2 (-621 *3)) (-4 *3 (-300)) (-5 *1 (-177 *3)))) (-2264 (*1 *2 *3 *2) (-12 (-5 *3 (-621 (-621 *4))) (-5 *2 (-621 *4)) (-4 *4 (-300)) (-5 *1 (-177 *4)))) (-2264 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *2)) (-5 *1 (-177 *2)) (-4 *2 (-300)))) (-1317 (*1 *2 *3 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-300)) (-5 *1 (-177 *3)))))
-(-10 -7 (-15 -1317 ((-621 |#1|) |#1| (-621 |#1|))) (-15 -2264 (|#1| (-621 |#1|) (-621 |#1|))) (-15 -2264 ((-621 |#1|) (-621 (-621 |#1|)) (-621 |#1|))) (-15 -2738 ((-621 |#1|) (-621 |#1|) |#1|)))
-((-3834 (((-112) $ $) NIL)) (-2100 (((-1179) $) 12)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3955 (((-1148) $) 9)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-178) (-13 (-1050) (-10 -8 (-15 -3955 ((-1148) $)) (-15 -2100 ((-1179) $))))) (T -178))
-((-3955 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-178)))) (-2100 (*1 *2 *1) (-12 (-5 *2 (-1179)) (-5 *1 (-178)))))
-(-13 (-1050) (-10 -8 (-15 -3955 ((-1148) $)) (-15 -2100 ((-1179) $))))
-((-4214 (((-2 (|:| |start| |#2|) (|:| -4024 (-411 |#2|))) |#2|) 61)) (-1571 ((|#1| |#1|) 54)) (-2508 (((-167 |#1|) |#2|) 84)) (-2013 ((|#1| |#2|) 123) ((|#1| |#2| |#1|) 82)) (-3227 ((|#2| |#2|) 83)) (-1482 (((-411 |#2|) |#2| |#1|) 113) (((-411 |#2|) |#2| |#1| (-112)) 81)) (-3630 ((|#1| |#2|) 112)) (-2578 ((|#2| |#2|) 119)) (-2121 (((-411 |#2|) |#2|) 134) (((-411 |#2|) |#2| |#1|) 32) (((-411 |#2|) |#2| |#1| (-112)) 133)) (-3418 (((-621 (-2 (|:| -4024 (-621 |#2|)) (|:| -3042 |#1|))) |#2| |#2|) 132) (((-621 (-2 (|:| -4024 (-621 |#2|)) (|:| -3042 |#1|))) |#2| |#2| (-112)) 76)) (-2792 (((-621 (-167 |#1|)) |#2| |#1|) 40) (((-621 (-167 |#1|)) |#2|) 41)))
-(((-179 |#1| |#2|) (-10 -7 (-15 -2792 ((-621 (-167 |#1|)) |#2|)) (-15 -2792 ((-621 (-167 |#1|)) |#2| |#1|)) (-15 -3418 ((-621 (-2 (|:| -4024 (-621 |#2|)) (|:| -3042 |#1|))) |#2| |#2| (-112))) (-15 -3418 ((-621 (-2 (|:| -4024 (-621 |#2|)) (|:| -3042 |#1|))) |#2| |#2|)) (-15 -2121 ((-411 |#2|) |#2| |#1| (-112))) (-15 -2121 ((-411 |#2|) |#2| |#1|)) (-15 -2121 ((-411 |#2|) |#2|)) (-15 -2578 (|#2| |#2|)) (-15 -3630 (|#1| |#2|)) (-15 -1482 ((-411 |#2|) |#2| |#1| (-112))) (-15 -1482 ((-411 |#2|) |#2| |#1|)) (-15 -3227 (|#2| |#2|)) (-15 -2013 (|#1| |#2| |#1|)) (-15 -2013 (|#1| |#2|)) (-15 -2508 ((-167 |#1|) |#2|)) (-15 -1571 (|#1| |#1|)) (-15 -4214 ((-2 (|:| |start| |#2|) (|:| -4024 (-411 |#2|))) |#2|))) (-13 (-356) (-821)) (-1202 (-167 |#1|))) (T -179))
-((-4214 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-2 (|:| |start| *3) (|:| -4024 (-411 *3)))) (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4))))) (-1571 (*1 *2 *2) (-12 (-4 *2 (-13 (-356) (-821))) (-5 *1 (-179 *2 *3)) (-4 *3 (-1202 (-167 *2))))) (-2508 (*1 *2 *3) (-12 (-5 *2 (-167 *4)) (-5 *1 (-179 *4 *3)) (-4 *4 (-13 (-356) (-821))) (-4 *3 (-1202 *2)))) (-2013 (*1 *2 *3) (-12 (-4 *2 (-13 (-356) (-821))) (-5 *1 (-179 *2 *3)) (-4 *3 (-1202 (-167 *2))))) (-2013 (*1 *2 *3 *2) (-12 (-4 *2 (-13 (-356) (-821))) (-5 *1 (-179 *2 *3)) (-4 *3 (-1202 (-167 *2))))) (-3227 (*1 *2 *2) (-12 (-4 *3 (-13 (-356) (-821))) (-5 *1 (-179 *3 *2)) (-4 *2 (-1202 (-167 *3))))) (-1482 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-411 *3)) (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4))))) (-1482 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-356) (-821))) (-5 *2 (-411 *3)) (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4))))) (-3630 (*1 *2 *3) (-12 (-4 *2 (-13 (-356) (-821))) (-5 *1 (-179 *2 *3)) (-4 *3 (-1202 (-167 *2))))) (-2578 (*1 *2 *2) (-12 (-4 *3 (-13 (-356) (-821))) (-5 *1 (-179 *3 *2)) (-4 *2 (-1202 (-167 *3))))) (-2121 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-411 *3)) (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4))))) (-2121 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-411 *3)) (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4))))) (-2121 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-356) (-821))) (-5 *2 (-411 *3)) (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4))))) (-3418 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-621 (-2 (|:| -4024 (-621 *3)) (|:| -3042 *4)))) (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4))))) (-3418 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-356) (-821))) (-5 *2 (-621 (-2 (|:| -4024 (-621 *3)) (|:| -3042 *5)))) (-5 *1 (-179 *5 *3)) (-4 *3 (-1202 (-167 *5))))) (-2792 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-621 (-167 *4))) (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4))))) (-2792 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-621 (-167 *4))) (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4))))))
-(-10 -7 (-15 -2792 ((-621 (-167 |#1|)) |#2|)) (-15 -2792 ((-621 (-167 |#1|)) |#2| |#1|)) (-15 -3418 ((-621 (-2 (|:| -4024 (-621 |#2|)) (|:| -3042 |#1|))) |#2| |#2| (-112))) (-15 -3418 ((-621 (-2 (|:| -4024 (-621 |#2|)) (|:| -3042 |#1|))) |#2| |#2|)) (-15 -2121 ((-411 |#2|) |#2| |#1| (-112))) (-15 -2121 ((-411 |#2|) |#2| |#1|)) (-15 -2121 ((-411 |#2|) |#2|)) (-15 -2578 (|#2| |#2|)) (-15 -3630 (|#1| |#2|)) (-15 -1482 ((-411 |#2|) |#2| |#1| (-112))) (-15 -1482 ((-411 |#2|) |#2| |#1|)) (-15 -3227 (|#2| |#2|)) (-15 -2013 (|#1| |#2| |#1|)) (-15 -2013 (|#1| |#2|)) (-15 -2508 ((-167 |#1|) |#2|)) (-15 -1571 (|#1| |#1|)) (-15 -4214 ((-2 (|:| |start| |#2|) (|:| -4024 (-411 |#2|))) |#2|)))
-((-1601 (((-3 |#2| "failed") |#2|) 14)) (-4107 (((-747) |#2|) 16)) (-1318 ((|#2| |#2| |#2|) 18)))
-(((-180 |#1| |#2|) (-10 -7 (-15 -1601 ((-3 |#2| "failed") |#2|)) (-15 -4107 ((-747) |#2|)) (-15 -1318 (|#2| |#2| |#2|))) (-1180) (-650 |#1|)) (T -180))
-((-1318 (*1 *2 *2 *2) (-12 (-4 *3 (-1180)) (-5 *1 (-180 *3 *2)) (-4 *2 (-650 *3)))) (-4107 (*1 *2 *3) (-12 (-4 *4 (-1180)) (-5 *2 (-747)) (-5 *1 (-180 *4 *3)) (-4 *3 (-650 *4)))) (-1601 (*1 *2 *2) (|partial| -12 (-4 *3 (-1180)) (-5 *1 (-180 *3 *2)) (-4 *2 (-650 *3)))))
-(-10 -7 (-15 -1601 ((-3 |#2| "failed") |#2|)) (-15 -4107 ((-747) |#2|)) (-15 -1318 (|#2| |#2| |#2|)))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2516 (((-1143) $) 10)) (-3846 (((-834) $) 17)) (-2872 (((-621 (-1148)) $) 12)) (-2389 (((-112) $ $) 15)))
-(((-181) (-13 (-1067) (-10 -8 (-15 -2516 ((-1143) $)) (-15 -2872 ((-621 (-1148)) $))))) (T -181))
-((-2516 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-181)))) (-2872 (*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-181)))))
-(-13 (-1067) (-10 -8 (-15 -2516 ((-1143) $)) (-15 -2872 ((-621 (-1148)) $))))
-((-3694 ((|#2| |#2|) 28)) (-3530 (((-112) |#2|) 19)) (-2145 (((-309 |#1|) |#2|) 12)) (-2160 (((-309 |#1|) |#2|) 14)) (-3953 ((|#2| |#2| (-1143)) 68) ((|#2| |#2|) 69)) (-3886 (((-167 (-309 |#1|)) |#2|) 10)) (-2602 ((|#2| |#2| (-1143)) 65) ((|#2| |#2|) 59)))
-(((-182 |#1| |#2|) (-10 -7 (-15 -3953 (|#2| |#2|)) (-15 -3953 (|#2| |#2| (-1143))) (-15 -2602 (|#2| |#2|)) (-15 -2602 (|#2| |#2| (-1143))) (-15 -2145 ((-309 |#1|) |#2|)) (-15 -2160 ((-309 |#1|) |#2|)) (-15 -3530 ((-112) |#2|)) (-15 -3694 (|#2| |#2|)) (-15 -3886 ((-167 (-309 |#1|)) |#2|))) (-13 (-541) (-823) (-1009 (-549))) (-13 (-27) (-1165) (-423 (-167 |#1|)))) (T -182))
-((-3886 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-167 (-309 *4))) (-5 *1 (-182 *4 *3)) (-4 *3 (-13 (-27) (-1165) (-423 (-167 *4)))))) (-3694 (*1 *2 *2) (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)))) (-5 *1 (-182 *3 *2)) (-4 *2 (-13 (-27) (-1165) (-423 (-167 *3)))))) (-3530 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-112)) (-5 *1 (-182 *4 *3)) (-4 *3 (-13 (-27) (-1165) (-423 (-167 *4)))))) (-2160 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-309 *4)) (-5 *1 (-182 *4 *3)) (-4 *3 (-13 (-27) (-1165) (-423 (-167 *4)))))) (-2145 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-309 *4)) (-5 *1 (-182 *4 *3)) (-4 *3 (-13 (-27) (-1165) (-423 (-167 *4)))))) (-2602 (*1 *2 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-5 *1 (-182 *4 *2)) (-4 *2 (-13 (-27) (-1165) (-423 (-167 *4)))))) (-2602 (*1 *2 *2) (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)))) (-5 *1 (-182 *3 *2)) (-4 *2 (-13 (-27) (-1165) (-423 (-167 *3)))))) (-3953 (*1 *2 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-5 *1 (-182 *4 *2)) (-4 *2 (-13 (-27) (-1165) (-423 (-167 *4)))))) (-3953 (*1 *2 *2) (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)))) (-5 *1 (-182 *3 *2)) (-4 *2 (-13 (-27) (-1165) (-423 (-167 *3)))))))
-(-10 -7 (-15 -3953 (|#2| |#2|)) (-15 -3953 (|#2| |#2| (-1143))) (-15 -2602 (|#2| |#2|)) (-15 -2602 (|#2| |#2| (-1143))) (-15 -2145 ((-309 |#1|) |#2|)) (-15 -2160 ((-309 |#1|) |#2|)) (-15 -3530 ((-112) |#2|)) (-15 -3694 (|#2| |#2|)) (-15 -3886 ((-167 (-309 |#1|)) |#2|)))
-((-2522 (((-1226 (-665 (-923 |#1|))) (-1226 (-665 |#1|))) 24)) (-3846 (((-1226 (-665 (-400 (-923 |#1|)))) (-1226 (-665 |#1|))) 33)))
-(((-183 |#1|) (-10 -7 (-15 -2522 ((-1226 (-665 (-923 |#1|))) (-1226 (-665 |#1|)))) (-15 -3846 ((-1226 (-665 (-400 (-923 |#1|)))) (-1226 (-665 |#1|))))) (-170)) (T -183))
-((-3846 (*1 *2 *3) (-12 (-5 *3 (-1226 (-665 *4))) (-4 *4 (-170)) (-5 *2 (-1226 (-665 (-400 (-923 *4))))) (-5 *1 (-183 *4)))) (-2522 (*1 *2 *3) (-12 (-5 *3 (-1226 (-665 *4))) (-4 *4 (-170)) (-5 *2 (-1226 (-665 (-923 *4)))) (-5 *1 (-183 *4)))))
-(-10 -7 (-15 -2522 ((-1226 (-665 (-923 |#1|))) (-1226 (-665 |#1|)))) (-15 -3846 ((-1226 (-665 (-400 (-923 |#1|)))) (-1226 (-665 |#1|)))))
-((-2915 (((-1145 (-400 (-549))) (-1145 (-400 (-549))) (-1145 (-400 (-549)))) 66)) (-3629 (((-1145 (-400 (-549))) (-621 (-549)) (-621 (-549))) 75)) (-2766 (((-1145 (-400 (-549))) (-549)) 40)) (-1857 (((-1145 (-400 (-549))) (-549)) 52)) (-2686 (((-400 (-549)) (-1145 (-400 (-549)))) 62)) (-2435 (((-1145 (-400 (-549))) (-549)) 32)) (-2350 (((-1145 (-400 (-549))) (-549)) 48)) (-1877 (((-1145 (-400 (-549))) (-549)) 46)) (-1507 (((-1145 (-400 (-549))) (-1145 (-400 (-549))) (-1145 (-400 (-549)))) 60)) (-1977 (((-1145 (-400 (-549))) (-549)) 25)) (-4228 (((-400 (-549)) (-1145 (-400 (-549))) (-1145 (-400 (-549)))) 64)) (-1689 (((-1145 (-400 (-549))) (-549)) 30)) (-1966 (((-1145 (-400 (-549))) (-621 (-549))) 72)))
-(((-184) (-10 -7 (-15 -1977 ((-1145 (-400 (-549))) (-549))) (-15 -2766 ((-1145 (-400 (-549))) (-549))) (-15 -2435 ((-1145 (-400 (-549))) (-549))) (-15 -1689 ((-1145 (-400 (-549))) (-549))) (-15 -1877 ((-1145 (-400 (-549))) (-549))) (-15 -2350 ((-1145 (-400 (-549))) (-549))) (-15 -1857 ((-1145 (-400 (-549))) (-549))) (-15 -4228 ((-400 (-549)) (-1145 (-400 (-549))) (-1145 (-400 (-549))))) (-15 -1507 ((-1145 (-400 (-549))) (-1145 (-400 (-549))) (-1145 (-400 (-549))))) (-15 -2686 ((-400 (-549)) (-1145 (-400 (-549))))) (-15 -2915 ((-1145 (-400 (-549))) (-1145 (-400 (-549))) (-1145 (-400 (-549))))) (-15 -1966 ((-1145 (-400 (-549))) (-621 (-549)))) (-15 -3629 ((-1145 (-400 (-549))) (-621 (-549)) (-621 (-549)))))) (T -184))
-((-3629 (*1 *2 *3 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)))) (-1966 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)))) (-2915 (*1 *2 *2 *2) (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)))) (-2686 (*1 *2 *3) (-12 (-5 *3 (-1145 (-400 (-549)))) (-5 *2 (-400 (-549))) (-5 *1 (-184)))) (-1507 (*1 *2 *2 *2) (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)))) (-4228 (*1 *2 *3 *3) (-12 (-5 *3 (-1145 (-400 (-549)))) (-5 *2 (-400 (-549))) (-5 *1 (-184)))) (-1857 (*1 *2 *3) (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))) (-2350 (*1 *2 *3) (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))) (-1877 (*1 *2 *3) (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))) (-1689 (*1 *2 *3) (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))) (-2435 (*1 *2 *3) (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))) (-2766 (*1 *2 *3) (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))) (-1977 (*1 *2 *3) (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))))
-(-10 -7 (-15 -1977 ((-1145 (-400 (-549))) (-549))) (-15 -2766 ((-1145 (-400 (-549))) (-549))) (-15 -2435 ((-1145 (-400 (-549))) (-549))) (-15 -1689 ((-1145 (-400 (-549))) (-549))) (-15 -1877 ((-1145 (-400 (-549))) (-549))) (-15 -2350 ((-1145 (-400 (-549))) (-549))) (-15 -1857 ((-1145 (-400 (-549))) (-549))) (-15 -4228 ((-400 (-549)) (-1145 (-400 (-549))) (-1145 (-400 (-549))))) (-15 -1507 ((-1145 (-400 (-549))) (-1145 (-400 (-549))) (-1145 (-400 (-549))))) (-15 -2686 ((-400 (-549)) (-1145 (-400 (-549))))) (-15 -2915 ((-1145 (-400 (-549))) (-1145 (-400 (-549))) (-1145 (-400 (-549))))) (-15 -1966 ((-1145 (-400 (-549))) (-621 (-549)))) (-15 -3629 ((-1145 (-400 (-549))) (-621 (-549)) (-621 (-549)))))
-((-1495 (((-411 (-1139 (-549))) (-549)) 28)) (-1725 (((-621 (-1139 (-549))) (-549)) 23)) (-2856 (((-1139 (-549)) (-549)) 21)))
-(((-185) (-10 -7 (-15 -1725 ((-621 (-1139 (-549))) (-549))) (-15 -2856 ((-1139 (-549)) (-549))) (-15 -1495 ((-411 (-1139 (-549))) (-549))))) (T -185))
-((-1495 (*1 *2 *3) (-12 (-5 *2 (-411 (-1139 (-549)))) (-5 *1 (-185)) (-5 *3 (-549)))) (-2856 (*1 *2 *3) (-12 (-5 *2 (-1139 (-549))) (-5 *1 (-185)) (-5 *3 (-549)))) (-1725 (*1 *2 *3) (-12 (-5 *2 (-621 (-1139 (-549)))) (-5 *1 (-185)) (-5 *3 (-549)))))
-(-10 -7 (-15 -1725 ((-621 (-1139 (-549))) (-549))) (-15 -2856 ((-1139 (-549)) (-549))) (-15 -1495 ((-411 (-1139 (-549))) (-549))))
-((-3639 (((-1123 (-219)) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 105)) (-1972 (((-621 (-1125)) (-1123 (-219))) NIL)) (-4149 (((-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| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 81)) (-4117 (((-621 (-219)) (-309 (-219)) (-1143) (-1061 (-816 (-219)))) NIL)) (-2965 (((-621 (-1125)) (-621 (-219))) NIL)) (-2980 (((-219) (-1061 (-816 (-219)))) 24)) (-3431 (((-219) (-1061 (-816 (-219)))) 25)) (-2843 (((-372) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 98)) (-3088 (((-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| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 42)) (-2649 (((-1125) (-219)) NIL)) (-4280 (((-1125) (-621 (-1125))) 20)) (-3642 (((-1006) (-1143) (-1143) (-1006)) 13)))
-(((-186) (-10 -7 (-15 -4149 ((-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| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3088 ((-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| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2980 ((-219) (-1061 (-816 (-219))))) (-15 -3431 ((-219) (-1061 (-816 (-219))))) (-15 -2843 ((-372) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -4117 ((-621 (-219)) (-309 (-219)) (-1143) (-1061 (-816 (-219))))) (-15 -3639 ((-1123 (-219)) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2649 ((-1125) (-219))) (-15 -2965 ((-621 (-1125)) (-621 (-219)))) (-15 -1972 ((-621 (-1125)) (-1123 (-219)))) (-15 -4280 ((-1125) (-621 (-1125)))) (-15 -3642 ((-1006) (-1143) (-1143) (-1006))))) (T -186))
-((-3642 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1006)) (-5 *3 (-1143)) (-5 *1 (-186)))) (-4280 (*1 *2 *3) (-12 (-5 *3 (-621 (-1125))) (-5 *2 (-1125)) (-5 *1 (-186)))) (-1972 (*1 *2 *3) (-12 (-5 *3 (-1123 (-219))) (-5 *2 (-621 (-1125))) (-5 *1 (-186)))) (-2965 (*1 *2 *3) (-12 (-5 *3 (-621 (-219))) (-5 *2 (-621 (-1125))) (-5 *1 (-186)))) (-2649 (*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-1125)) (-5 *1 (-186)))) (-3639 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-1123 (-219))) (-5 *1 (-186)))) (-4117 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-309 (-219))) (-5 *4 (-1143)) (-5 *5 (-1061 (-816 (-219)))) (-5 *2 (-621 (-219))) (-5 *1 (-186)))) (-2843 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-372)) (-5 *1 (-186)))) (-3431 (*1 *2 *3) (-12 (-5 *3 (-1061 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-186)))) (-2980 (*1 *2 *3) (-12 (-5 *3 (-1061 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-186)))) (-3088 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-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 (-186)))) (-4149 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-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 (-186)))))
-(-10 -7 (-15 -4149 ((-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| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3088 ((-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| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2980 ((-219) (-1061 (-816 (-219))))) (-15 -3431 ((-219) (-1061 (-816 (-219))))) (-15 -2843 ((-372) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -4117 ((-621 (-219)) (-309 (-219)) (-1143) (-1061 (-816 (-219))))) (-15 -3639 ((-1123 (-219)) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2649 ((-1125) (-219))) (-15 -2965 ((-621 (-1125)) (-621 (-219)))) (-15 -1972 ((-621 (-1125)) (-1123 (-219)))) (-15 -4280 ((-1125) (-621 (-1125)))) (-15 -3642 ((-1006) (-1143) (-1143) (-1006))))
-((-3834 (((-112) $ $) NIL)) (-3868 (((-1006) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 55) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 32) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-2384 (*1 *1 *1) (-4 *1 (-171))))
+(-13 (-10 -8 (-15 -2384 ($ $))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3833 ((|#1| $) 75)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2680 (((-112) $ $) NIL)) (-3034 (($) NIL T CONST)) (-2091 (($ $ $) NIL)) (-3088 (($ $) 19)) (-2565 (($ |#1| (-1122 |#1|)) 48)) (-2612 (((-3 $ "failed") $) 117)) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-2691 (((-1122 |#1|) $) 82)) (-3756 (((-1122 |#1|) $) 79)) (-1637 (((-1122 |#1|) $) 80)) (-2297 (((-112) $) NIL)) (-2760 (((-1122 |#1|) $) 88)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3696 (($ (-621 $)) NIL) (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ (-621 $)) NIL) (($ $ $) NIL)) (-2119 (((-411 $) $) NIL)) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL)) (-3796 (($ $ (-549)) 91)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-2879 (((-1122 |#1|) $) 89)) (-3820 (((-1122 (-400 |#1|)) $) 14)) (-2455 (($ (-400 |#1|)) 17) (($ |#1| (-1122 |#1|) (-1122 |#1|)) 38)) (-3958 (($ $) 93)) (-3845 (((-834) $) 127) (($ (-549)) 51) (($ |#1|) 52) (($ (-400 |#1|)) 36) (($ (-400 (-549))) NIL) (($ $) NIL)) (-2371 (((-747)) 64)) (-2441 (((-112) $ $) NIL)) (-2999 (((-1122 (-400 |#1|)) $) 18)) (-3274 (($) 25 T CONST)) (-3286 (($) 28 T CONST)) (-2387 (((-112) $ $) 35)) (-2511 (($ $ $) 115)) (-2498 (($ $) 106) (($ $ $) 103)) (-2484 (($ $ $) 101)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 113) (($ $ $) 108) (($ $ |#1|) NIL) (($ |#1| $) 110) (($ (-400 |#1|) $) 111) (($ $ (-400 |#1|)) NIL) (($ (-400 (-549)) $) NIL) (($ $ (-400 (-549))) NIL)))
+(((-172 |#1|) (-13 (-38 |#1|) (-38 (-400 |#1|)) (-356) (-10 -8 (-15 -2455 ($ (-400 |#1|))) (-15 -2455 ($ |#1| (-1122 |#1|) (-1122 |#1|))) (-15 -2565 ($ |#1| (-1122 |#1|))) (-15 -3756 ((-1122 |#1|) $)) (-15 -1637 ((-1122 |#1|) $)) (-15 -2691 ((-1122 |#1|) $)) (-15 -3833 (|#1| $)) (-15 -3088 ($ $)) (-15 -2999 ((-1122 (-400 |#1|)) $)) (-15 -3820 ((-1122 (-400 |#1|)) $)) (-15 -2760 ((-1122 |#1|) $)) (-15 -2879 ((-1122 |#1|) $)) (-15 -3796 ($ $ (-549))) (-15 -3958 ($ $)))) (-300)) (T -172))
+((-2455 (*1 *1 *2) (-12 (-5 *2 (-400 *3)) (-4 *3 (-300)) (-5 *1 (-172 *3)))) (-2455 (*1 *1 *2 *3 *3) (-12 (-5 *3 (-1122 *2)) (-4 *2 (-300)) (-5 *1 (-172 *2)))) (-2565 (*1 *1 *2 *3) (-12 (-5 *3 (-1122 *2)) (-4 *2 (-300)) (-5 *1 (-172 *2)))) (-3756 (*1 *2 *1) (-12 (-5 *2 (-1122 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))) (-1637 (*1 *2 *1) (-12 (-5 *2 (-1122 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))) (-2691 (*1 *2 *1) (-12 (-5 *2 (-1122 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))) (-3833 (*1 *2 *1) (-12 (-5 *1 (-172 *2)) (-4 *2 (-300)))) (-3088 (*1 *1 *1) (-12 (-5 *1 (-172 *2)) (-4 *2 (-300)))) (-2999 (*1 *2 *1) (-12 (-5 *2 (-1122 (-400 *3))) (-5 *1 (-172 *3)) (-4 *3 (-300)))) (-3820 (*1 *2 *1) (-12 (-5 *2 (-1122 (-400 *3))) (-5 *1 (-172 *3)) (-4 *3 (-300)))) (-2760 (*1 *2 *1) (-12 (-5 *2 (-1122 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))) (-2879 (*1 *2 *1) (-12 (-5 *2 (-1122 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))) (-3796 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-172 *3)) (-4 *3 (-300)))) (-3958 (*1 *1 *1) (-12 (-5 *1 (-172 *2)) (-4 *2 (-300)))))
+(-13 (-38 |#1|) (-38 (-400 |#1|)) (-356) (-10 -8 (-15 -2455 ($ (-400 |#1|))) (-15 -2455 ($ |#1| (-1122 |#1|) (-1122 |#1|))) (-15 -2565 ($ |#1| (-1122 |#1|))) (-15 -3756 ((-1122 |#1|) $)) (-15 -1637 ((-1122 |#1|) $)) (-15 -2691 ((-1122 |#1|) $)) (-15 -3833 (|#1| $)) (-15 -3088 ($ $)) (-15 -2999 ((-1122 (-400 |#1|)) $)) (-15 -3820 ((-1122 (-400 |#1|)) $)) (-15 -2760 ((-1122 |#1|) $)) (-15 -2879 ((-1122 |#1|) $)) (-15 -3796 ($ $ (-549))) (-15 -3958 ($ $))))
+((-1496 (($ (-108) $) 13)) (-1942 (((-3 (-108) "failed") (-1142) $) 12)) (-3845 (((-834) $) 16)) (-2926 (((-621 (-108)) $) 8)))
+(((-173) (-13 (-593 (-834)) (-10 -8 (-15 -2926 ((-621 (-108)) $)) (-15 -1496 ($ (-108) $)) (-15 -1942 ((-3 (-108) "failed") (-1142) $))))) (T -173))
+((-2926 (*1 *2 *1) (-12 (-5 *2 (-621 (-108))) (-5 *1 (-173)))) (-1496 (*1 *1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-173)))) (-1942 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1142)) (-5 *2 (-108)) (-5 *1 (-173)))))
+(-13 (-593 (-834)) (-10 -8 (-15 -2926 ((-621 (-108)) $)) (-15 -1496 ($ (-108) $)) (-15 -1942 ((-3 (-108) "failed") (-1142) $))))
+((-1619 (((-1 (-914 |#1|) (-914 |#1|)) |#1|) 40)) (-2286 (((-914 |#1|) (-914 |#1|)) 19)) (-1732 (((-1 (-914 |#1|) (-914 |#1|)) |#1|) 36)) (-1827 (((-914 |#1|) (-914 |#1|)) 17)) (-4293 (((-914 |#1|) (-914 |#1|)) 25)) (-1825 (((-914 |#1|) (-914 |#1|)) 24)) (-1369 (((-914 |#1|) (-914 |#1|)) 23)) (-3577 (((-1 (-914 |#1|) (-914 |#1|)) |#1|) 37)) (-2268 (((-1 (-914 |#1|) (-914 |#1|)) |#1|) 35)) (-2622 (((-1 (-914 |#1|) (-914 |#1|)) |#1|) 34)) (-1308 (((-914 |#1|) (-914 |#1|)) 18)) (-2274 (((-1 (-914 |#1|) (-914 |#1|)) |#1| |#1|) 43)) (-3520 (((-914 |#1|) (-914 |#1|)) 8)) (-4106 (((-1 (-914 |#1|) (-914 |#1|)) |#1|) 39)) (-3809 (((-1 (-914 |#1|) (-914 |#1|)) |#1|) 38)))
+(((-174 |#1|) (-10 -7 (-15 -3520 ((-914 |#1|) (-914 |#1|))) (-15 -1827 ((-914 |#1|) (-914 |#1|))) (-15 -1308 ((-914 |#1|) (-914 |#1|))) (-15 -2286 ((-914 |#1|) (-914 |#1|))) (-15 -1369 ((-914 |#1|) (-914 |#1|))) (-15 -1825 ((-914 |#1|) (-914 |#1|))) (-15 -4293 ((-914 |#1|) (-914 |#1|))) (-15 -2622 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -2268 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -1732 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -3577 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -3809 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -4106 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -1619 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -2274 ((-1 (-914 |#1|) (-914 |#1|)) |#1| |#1|))) (-13 (-356) (-1164) (-973))) (T -174))
+((-2274 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3)) (-4 *3 (-13 (-356) (-1164) (-973))))) (-1619 (*1 *2 *3) (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3)) (-4 *3 (-13 (-356) (-1164) (-973))))) (-4106 (*1 *2 *3) (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3)) (-4 *3 (-13 (-356) (-1164) (-973))))) (-3809 (*1 *2 *3) (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3)) (-4 *3 (-13 (-356) (-1164) (-973))))) (-3577 (*1 *2 *3) (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3)) (-4 *3 (-13 (-356) (-1164) (-973))))) (-1732 (*1 *2 *3) (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3)) (-4 *3 (-13 (-356) (-1164) (-973))))) (-2268 (*1 *2 *3) (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3)) (-4 *3 (-13 (-356) (-1164) (-973))))) (-2622 (*1 *2 *3) (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3)) (-4 *3 (-13 (-356) (-1164) (-973))))) (-4293 (*1 *2 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1164) (-973))) (-5 *1 (-174 *3)))) (-1825 (*1 *2 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1164) (-973))) (-5 *1 (-174 *3)))) (-1369 (*1 *2 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1164) (-973))) (-5 *1 (-174 *3)))) (-2286 (*1 *2 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1164) (-973))) (-5 *1 (-174 *3)))) (-1308 (*1 *2 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1164) (-973))) (-5 *1 (-174 *3)))) (-1827 (*1 *2 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1164) (-973))) (-5 *1 (-174 *3)))) (-3520 (*1 *2 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1164) (-973))) (-5 *1 (-174 *3)))))
+(-10 -7 (-15 -3520 ((-914 |#1|) (-914 |#1|))) (-15 -1827 ((-914 |#1|) (-914 |#1|))) (-15 -1308 ((-914 |#1|) (-914 |#1|))) (-15 -2286 ((-914 |#1|) (-914 |#1|))) (-15 -1369 ((-914 |#1|) (-914 |#1|))) (-15 -1825 ((-914 |#1|) (-914 |#1|))) (-15 -4293 ((-914 |#1|) (-914 |#1|))) (-15 -2622 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -2268 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -1732 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -3577 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -3809 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -4106 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -1619 ((-1 (-914 |#1|) (-914 |#1|)) |#1|)) (-15 -2274 ((-1 (-914 |#1|) (-914 |#1|)) |#1| |#1|)))
+((-4019 ((|#2| |#3|) 27)))
+(((-175 |#1| |#2| |#3|) (-10 -7 (-15 -4019 (|#2| |#3|))) (-170) (-1201 |#1|) (-701 |#1| |#2|)) (T -175))
+((-4019 (*1 *2 *3) (-12 (-4 *4 (-170)) (-4 *2 (-1201 *4)) (-5 *1 (-175 *4 *2 *3)) (-4 *3 (-701 *4 *2)))))
+(-10 -7 (-15 -4019 (|#2| |#3|)))
+((-3849 (((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|)) 47 (|has| (-923 |#2|) (-857 |#1|)))))
+(((-176 |#1| |#2| |#3|) (-10 -7 (IF (|has| (-923 |#2|) (-857 |#1|)) (-15 -3849 ((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|))) |%noBranch|)) (-1066) (-13 (-857 |#1|) (-170)) (-164 |#2|)) (T -176))
+((-3849 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-860 *5 *3)) (-5 *4 (-863 *5)) (-4 *5 (-1066)) (-4 *3 (-164 *6)) (-4 (-923 *6) (-857 *5)) (-4 *6 (-13 (-857 *5) (-170))) (-5 *1 (-176 *5 *6 *3)))))
+(-10 -7 (IF (|has| (-923 |#2|) (-857 |#1|)) (-15 -3849 ((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|))) |%noBranch|))
+((-2899 (((-621 |#1|) (-621 |#1|) |#1|) 38)) (-1936 (((-621 |#1|) |#1| (-621 |#1|)) 19)) (-2366 (((-621 |#1|) (-621 (-621 |#1|)) (-621 |#1|)) 33) ((|#1| (-621 |#1|) (-621 |#1|)) 31)))
+(((-177 |#1|) (-10 -7 (-15 -1936 ((-621 |#1|) |#1| (-621 |#1|))) (-15 -2366 (|#1| (-621 |#1|) (-621 |#1|))) (-15 -2366 ((-621 |#1|) (-621 (-621 |#1|)) (-621 |#1|))) (-15 -2899 ((-621 |#1|) (-621 |#1|) |#1|))) (-300)) (T -177))
+((-2899 (*1 *2 *2 *3) (-12 (-5 *2 (-621 *3)) (-4 *3 (-300)) (-5 *1 (-177 *3)))) (-2366 (*1 *2 *3 *2) (-12 (-5 *3 (-621 (-621 *4))) (-5 *2 (-621 *4)) (-4 *4 (-300)) (-5 *1 (-177 *4)))) (-2366 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *2)) (-5 *1 (-177 *2)) (-4 *2 (-300)))) (-1936 (*1 *2 *3 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-300)) (-5 *1 (-177 *3)))))
+(-10 -7 (-15 -1936 ((-621 |#1|) |#1| (-621 |#1|))) (-15 -2366 (|#1| (-621 |#1|) (-621 |#1|))) (-15 -2366 ((-621 |#1|) (-621 (-621 |#1|)) (-621 |#1|))) (-15 -2899 ((-621 |#1|) (-621 |#1|) |#1|)))
+((-3832 (((-112) $ $) NIL)) (-2098 (((-1178) $) 13)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3954 (((-1101) $) 10)) (-3845 (((-834) $) 22) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-178) (-13 (-1049) (-10 -8 (-15 -3954 ((-1101) $)) (-15 -2098 ((-1178) $))))) (T -178))
+((-3954 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-178)))) (-2098 (*1 *2 *1) (-12 (-5 *2 (-1178)) (-5 *1 (-178)))))
+(-13 (-1049) (-10 -8 (-15 -3954 ((-1101) $)) (-15 -2098 ((-1178) $))))
+((-3753 (((-2 (|:| |start| |#2|) (|:| -3390 (-411 |#2|))) |#2|) 61)) (-1940 ((|#1| |#1|) 54)) (-3906 (((-167 |#1|) |#2|) 84)) (-4024 ((|#1| |#2|) 123) ((|#1| |#2| |#1|) 82)) (-1293 ((|#2| |#2|) 83)) (-3642 (((-411 |#2|) |#2| |#1|) 113) (((-411 |#2|) |#2| |#1| (-112)) 81)) (-2469 ((|#1| |#2|) 112)) (-3258 ((|#2| |#2|) 119)) (-2119 (((-411 |#2|) |#2|) 134) (((-411 |#2|) |#2| |#1|) 32) (((-411 |#2|) |#2| |#1| (-112)) 133)) (-3407 (((-621 (-2 (|:| -3390 (-621 |#2|)) (|:| -3040 |#1|))) |#2| |#2|) 132) (((-621 (-2 (|:| -3390 (-621 |#2|)) (|:| -3040 |#1|))) |#2| |#2| (-112)) 76)) (-3417 (((-621 (-167 |#1|)) |#2| |#1|) 40) (((-621 (-167 |#1|)) |#2|) 41)))
+(((-179 |#1| |#2|) (-10 -7 (-15 -3417 ((-621 (-167 |#1|)) |#2|)) (-15 -3417 ((-621 (-167 |#1|)) |#2| |#1|)) (-15 -3407 ((-621 (-2 (|:| -3390 (-621 |#2|)) (|:| -3040 |#1|))) |#2| |#2| (-112))) (-15 -3407 ((-621 (-2 (|:| -3390 (-621 |#2|)) (|:| -3040 |#1|))) |#2| |#2|)) (-15 -2119 ((-411 |#2|) |#2| |#1| (-112))) (-15 -2119 ((-411 |#2|) |#2| |#1|)) (-15 -2119 ((-411 |#2|) |#2|)) (-15 -3258 (|#2| |#2|)) (-15 -2469 (|#1| |#2|)) (-15 -3642 ((-411 |#2|) |#2| |#1| (-112))) (-15 -3642 ((-411 |#2|) |#2| |#1|)) (-15 -1293 (|#2| |#2|)) (-15 -4024 (|#1| |#2| |#1|)) (-15 -4024 (|#1| |#2|)) (-15 -3906 ((-167 |#1|) |#2|)) (-15 -1940 (|#1| |#1|)) (-15 -3753 ((-2 (|:| |start| |#2|) (|:| -3390 (-411 |#2|))) |#2|))) (-13 (-356) (-821)) (-1201 (-167 |#1|))) (T -179))
+((-3753 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-2 (|:| |start| *3) (|:| -3390 (-411 *3)))) (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4))))) (-1940 (*1 *2 *2) (-12 (-4 *2 (-13 (-356) (-821))) (-5 *1 (-179 *2 *3)) (-4 *3 (-1201 (-167 *2))))) (-3906 (*1 *2 *3) (-12 (-5 *2 (-167 *4)) (-5 *1 (-179 *4 *3)) (-4 *4 (-13 (-356) (-821))) (-4 *3 (-1201 *2)))) (-4024 (*1 *2 *3) (-12 (-4 *2 (-13 (-356) (-821))) (-5 *1 (-179 *2 *3)) (-4 *3 (-1201 (-167 *2))))) (-4024 (*1 *2 *3 *2) (-12 (-4 *2 (-13 (-356) (-821))) (-5 *1 (-179 *2 *3)) (-4 *3 (-1201 (-167 *2))))) (-1293 (*1 *2 *2) (-12 (-4 *3 (-13 (-356) (-821))) (-5 *1 (-179 *3 *2)) (-4 *2 (-1201 (-167 *3))))) (-3642 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-411 *3)) (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4))))) (-3642 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-356) (-821))) (-5 *2 (-411 *3)) (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4))))) (-2469 (*1 *2 *3) (-12 (-4 *2 (-13 (-356) (-821))) (-5 *1 (-179 *2 *3)) (-4 *3 (-1201 (-167 *2))))) (-3258 (*1 *2 *2) (-12 (-4 *3 (-13 (-356) (-821))) (-5 *1 (-179 *3 *2)) (-4 *2 (-1201 (-167 *3))))) (-2119 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-411 *3)) (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4))))) (-2119 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-411 *3)) (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4))))) (-2119 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-356) (-821))) (-5 *2 (-411 *3)) (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4))))) (-3407 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-621 (-2 (|:| -3390 (-621 *3)) (|:| -3040 *4)))) (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4))))) (-3407 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-356) (-821))) (-5 *2 (-621 (-2 (|:| -3390 (-621 *3)) (|:| -3040 *5)))) (-5 *1 (-179 *5 *3)) (-4 *3 (-1201 (-167 *5))))) (-3417 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-621 (-167 *4))) (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4))))) (-3417 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-621 (-167 *4))) (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4))))))
+(-10 -7 (-15 -3417 ((-621 (-167 |#1|)) |#2|)) (-15 -3417 ((-621 (-167 |#1|)) |#2| |#1|)) (-15 -3407 ((-621 (-2 (|:| -3390 (-621 |#2|)) (|:| -3040 |#1|))) |#2| |#2| (-112))) (-15 -3407 ((-621 (-2 (|:| -3390 (-621 |#2|)) (|:| -3040 |#1|))) |#2| |#2|)) (-15 -2119 ((-411 |#2|) |#2| |#1| (-112))) (-15 -2119 ((-411 |#2|) |#2| |#1|)) (-15 -2119 ((-411 |#2|) |#2|)) (-15 -3258 (|#2| |#2|)) (-15 -2469 (|#1| |#2|)) (-15 -3642 ((-411 |#2|) |#2| |#1| (-112))) (-15 -3642 ((-411 |#2|) |#2| |#1|)) (-15 -1293 (|#2| |#2|)) (-15 -4024 (|#1| |#2| |#1|)) (-15 -4024 (|#1| |#2|)) (-15 -3906 ((-167 |#1|) |#2|)) (-15 -1940 (|#1| |#1|)) (-15 -3753 ((-2 (|:| |start| |#2|) (|:| -3390 (-411 |#2|))) |#2|)))
+((-1472 (((-3 |#2| "failed") |#2|) 14)) (-2939 (((-747) |#2|) 16)) (-3891 ((|#2| |#2| |#2|) 18)))
+(((-180 |#1| |#2|) (-10 -7 (-15 -1472 ((-3 |#2| "failed") |#2|)) (-15 -2939 ((-747) |#2|)) (-15 -3891 (|#2| |#2| |#2|))) (-1179) (-650 |#1|)) (T -180))
+((-3891 (*1 *2 *2 *2) (-12 (-4 *3 (-1179)) (-5 *1 (-180 *3 *2)) (-4 *2 (-650 *3)))) (-2939 (*1 *2 *3) (-12 (-4 *4 (-1179)) (-5 *2 (-747)) (-5 *1 (-180 *4 *3)) (-4 *3 (-650 *4)))) (-1472 (*1 *2 *2) (|partial| -12 (-4 *3 (-1179)) (-5 *1 (-180 *3 *2)) (-4 *2 (-650 *3)))))
+(-10 -7 (-15 -1472 ((-3 |#2| "failed") |#2|)) (-15 -2939 ((-747) |#2|)) (-15 -3891 (|#2| |#2| |#2|)))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2514 (((-1142) $) 10)) (-3845 (((-834) $) 17)) (-2870 (((-621 (-1147)) $) 12)) (-2387 (((-112) $ $) 15)))
+(((-181) (-13 (-1066) (-10 -8 (-15 -2514 ((-1142) $)) (-15 -2870 ((-621 (-1147)) $))))) (T -181))
+((-2514 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-181)))) (-2870 (*1 *2 *1) (-12 (-5 *2 (-621 (-1147))) (-5 *1 (-181)))))
+(-13 (-1066) (-10 -8 (-15 -2514 ((-1142) $)) (-15 -2870 ((-621 (-1147)) $))))
+((-1755 ((|#2| |#2|) 28)) (-2033 (((-112) |#2|) 19)) (-2146 (((-309 |#1|) |#2|) 12)) (-2158 (((-309 |#1|) |#2|) 14)) (-1420 ((|#2| |#2| (-1142)) 68) ((|#2| |#2|) 69)) (-2860 (((-167 (-309 |#1|)) |#2|) 10)) (-2880 ((|#2| |#2| (-1142)) 65) ((|#2| |#2|) 59)))
+(((-182 |#1| |#2|) (-10 -7 (-15 -1420 (|#2| |#2|)) (-15 -1420 (|#2| |#2| (-1142))) (-15 -2880 (|#2| |#2|)) (-15 -2880 (|#2| |#2| (-1142))) (-15 -2146 ((-309 |#1|) |#2|)) (-15 -2158 ((-309 |#1|) |#2|)) (-15 -2033 ((-112) |#2|)) (-15 -1755 (|#2| |#2|)) (-15 -2860 ((-167 (-309 |#1|)) |#2|))) (-13 (-541) (-823) (-1009 (-549))) (-13 (-27) (-1164) (-423 (-167 |#1|)))) (T -182))
+((-2860 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-167 (-309 *4))) (-5 *1 (-182 *4 *3)) (-4 *3 (-13 (-27) (-1164) (-423 (-167 *4)))))) (-1755 (*1 *2 *2) (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)))) (-5 *1 (-182 *3 *2)) (-4 *2 (-13 (-27) (-1164) (-423 (-167 *3)))))) (-2033 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-112)) (-5 *1 (-182 *4 *3)) (-4 *3 (-13 (-27) (-1164) (-423 (-167 *4)))))) (-2158 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-309 *4)) (-5 *1 (-182 *4 *3)) (-4 *3 (-13 (-27) (-1164) (-423 (-167 *4)))))) (-2146 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-309 *4)) (-5 *1 (-182 *4 *3)) (-4 *3 (-13 (-27) (-1164) (-423 (-167 *4)))))) (-2880 (*1 *2 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-5 *1 (-182 *4 *2)) (-4 *2 (-13 (-27) (-1164) (-423 (-167 *4)))))) (-2880 (*1 *2 *2) (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)))) (-5 *1 (-182 *3 *2)) (-4 *2 (-13 (-27) (-1164) (-423 (-167 *3)))))) (-1420 (*1 *2 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-5 *1 (-182 *4 *2)) (-4 *2 (-13 (-27) (-1164) (-423 (-167 *4)))))) (-1420 (*1 *2 *2) (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)))) (-5 *1 (-182 *3 *2)) (-4 *2 (-13 (-27) (-1164) (-423 (-167 *3)))))))
+(-10 -7 (-15 -1420 (|#2| |#2|)) (-15 -1420 (|#2| |#2| (-1142))) (-15 -2880 (|#2| |#2|)) (-15 -2880 (|#2| |#2| (-1142))) (-15 -2146 ((-309 |#1|) |#2|)) (-15 -2158 ((-309 |#1|) |#2|)) (-15 -2033 ((-112) |#2|)) (-15 -1755 (|#2| |#2|)) (-15 -2860 ((-167 (-309 |#1|)) |#2|)))
+((-2920 (((-1225 (-665 (-923 |#1|))) (-1225 (-665 |#1|))) 24)) (-3845 (((-1225 (-665 (-400 (-923 |#1|)))) (-1225 (-665 |#1|))) 33)))
+(((-183 |#1|) (-10 -7 (-15 -2920 ((-1225 (-665 (-923 |#1|))) (-1225 (-665 |#1|)))) (-15 -3845 ((-1225 (-665 (-400 (-923 |#1|)))) (-1225 (-665 |#1|))))) (-170)) (T -183))
+((-3845 (*1 *2 *3) (-12 (-5 *3 (-1225 (-665 *4))) (-4 *4 (-170)) (-5 *2 (-1225 (-665 (-400 (-923 *4))))) (-5 *1 (-183 *4)))) (-2920 (*1 *2 *3) (-12 (-5 *3 (-1225 (-665 *4))) (-4 *4 (-170)) (-5 *2 (-1225 (-665 (-923 *4)))) (-5 *1 (-183 *4)))))
+(-10 -7 (-15 -2920 ((-1225 (-665 (-923 |#1|))) (-1225 (-665 |#1|)))) (-15 -3845 ((-1225 (-665 (-400 (-923 |#1|)))) (-1225 (-665 |#1|)))))
+((-4006 (((-1144 (-400 (-549))) (-1144 (-400 (-549))) (-1144 (-400 (-549)))) 66)) (-2364 (((-1144 (-400 (-549))) (-621 (-549)) (-621 (-549))) 75)) (-2882 (((-1144 (-400 (-549))) (-549)) 40)) (-3505 (((-1144 (-400 (-549))) (-549)) 52)) (-2684 (((-400 (-549)) (-1144 (-400 (-549)))) 62)) (-1682 (((-1144 (-400 (-549))) (-549)) 32)) (-2773 (((-1144 (-400 (-549))) (-549)) 48)) (-4151 (((-1144 (-400 (-549))) (-549)) 46)) (-3855 (((-1144 (-400 (-549))) (-1144 (-400 (-549))) (-1144 (-400 (-549)))) 60)) (-3958 (((-1144 (-400 (-549))) (-549)) 25)) (-2844 (((-400 (-549)) (-1144 (-400 (-549))) (-1144 (-400 (-549)))) 64)) (-2452 (((-1144 (-400 (-549))) (-549)) 30)) (-2334 (((-1144 (-400 (-549))) (-621 (-549))) 72)))
+(((-184) (-10 -7 (-15 -3958 ((-1144 (-400 (-549))) (-549))) (-15 -2882 ((-1144 (-400 (-549))) (-549))) (-15 -1682 ((-1144 (-400 (-549))) (-549))) (-15 -2452 ((-1144 (-400 (-549))) (-549))) (-15 -4151 ((-1144 (-400 (-549))) (-549))) (-15 -2773 ((-1144 (-400 (-549))) (-549))) (-15 -3505 ((-1144 (-400 (-549))) (-549))) (-15 -2844 ((-400 (-549)) (-1144 (-400 (-549))) (-1144 (-400 (-549))))) (-15 -3855 ((-1144 (-400 (-549))) (-1144 (-400 (-549))) (-1144 (-400 (-549))))) (-15 -2684 ((-400 (-549)) (-1144 (-400 (-549))))) (-15 -4006 ((-1144 (-400 (-549))) (-1144 (-400 (-549))) (-1144 (-400 (-549))))) (-15 -2334 ((-1144 (-400 (-549))) (-621 (-549)))) (-15 -2364 ((-1144 (-400 (-549))) (-621 (-549)) (-621 (-549)))))) (T -184))
+((-2364 (*1 *2 *3 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)))) (-2334 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)))) (-4006 (*1 *2 *2 *2) (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)))) (-2684 (*1 *2 *3) (-12 (-5 *3 (-1144 (-400 (-549)))) (-5 *2 (-400 (-549))) (-5 *1 (-184)))) (-3855 (*1 *2 *2 *2) (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)))) (-2844 (*1 *2 *3 *3) (-12 (-5 *3 (-1144 (-400 (-549)))) (-5 *2 (-400 (-549))) (-5 *1 (-184)))) (-3505 (*1 *2 *3) (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))) (-2773 (*1 *2 *3) (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))) (-4151 (*1 *2 *3) (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))) (-2452 (*1 *2 *3) (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))) (-1682 (*1 *2 *3) (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))) (-2882 (*1 *2 *3) (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))) (-3958 (*1 *2 *3) (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))))
+(-10 -7 (-15 -3958 ((-1144 (-400 (-549))) (-549))) (-15 -2882 ((-1144 (-400 (-549))) (-549))) (-15 -1682 ((-1144 (-400 (-549))) (-549))) (-15 -2452 ((-1144 (-400 (-549))) (-549))) (-15 -4151 ((-1144 (-400 (-549))) (-549))) (-15 -2773 ((-1144 (-400 (-549))) (-549))) (-15 -3505 ((-1144 (-400 (-549))) (-549))) (-15 -2844 ((-400 (-549)) (-1144 (-400 (-549))) (-1144 (-400 (-549))))) (-15 -3855 ((-1144 (-400 (-549))) (-1144 (-400 (-549))) (-1144 (-400 (-549))))) (-15 -2684 ((-400 (-549)) (-1144 (-400 (-549))))) (-15 -4006 ((-1144 (-400 (-549))) (-1144 (-400 (-549))) (-1144 (-400 (-549))))) (-15 -2334 ((-1144 (-400 (-549))) (-621 (-549)))) (-15 -2364 ((-1144 (-400 (-549))) (-621 (-549)) (-621 (-549)))))
+((-2057 (((-411 (-1138 (-549))) (-549)) 28)) (-3196 (((-621 (-1138 (-549))) (-549)) 23)) (-3895 (((-1138 (-549)) (-549)) 21)))
+(((-185) (-10 -7 (-15 -3196 ((-621 (-1138 (-549))) (-549))) (-15 -3895 ((-1138 (-549)) (-549))) (-15 -2057 ((-411 (-1138 (-549))) (-549))))) (T -185))
+((-2057 (*1 *2 *3) (-12 (-5 *2 (-411 (-1138 (-549)))) (-5 *1 (-185)) (-5 *3 (-549)))) (-3895 (*1 *2 *3) (-12 (-5 *2 (-1138 (-549))) (-5 *1 (-185)) (-5 *3 (-549)))) (-3196 (*1 *2 *3) (-12 (-5 *2 (-621 (-1138 (-549)))) (-5 *1 (-185)) (-5 *3 (-549)))))
+(-10 -7 (-15 -3196 ((-621 (-1138 (-549))) (-549))) (-15 -3895 ((-1138 (-549)) (-549))) (-15 -2057 ((-411 (-1138 (-549))) (-549))))
+((-1752 (((-1122 (-219)) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 105)) (-1595 (((-621 (-1124)) (-1122 (-219))) NIL)) (-1871 (((-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| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 81)) (-2543 (((-621 (-219)) (-309 (-219)) (-1142) (-1060 (-816 (-219)))) NIL)) (-4086 (((-621 (-1124)) (-621 (-219))) NIL)) (-3003 (((-219) (-1060 (-816 (-219)))) 24)) (-3077 (((-219) (-1060 (-816 (-219)))) 25)) (-1969 (((-372) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 98)) (-1435 (((-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| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 42)) (-4214 (((-1124) (-219)) NIL)) (-3109 (((-1124) (-621 (-1124))) 20)) (-3884 (((-1006) (-1142) (-1142) (-1006)) 13)))
+(((-186) (-10 -7 (-15 -1871 ((-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| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -1435 ((-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| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3003 ((-219) (-1060 (-816 (-219))))) (-15 -3077 ((-219) (-1060 (-816 (-219))))) (-15 -1969 ((-372) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2543 ((-621 (-219)) (-309 (-219)) (-1142) (-1060 (-816 (-219))))) (-15 -1752 ((-1122 (-219)) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -4214 ((-1124) (-219))) (-15 -4086 ((-621 (-1124)) (-621 (-219)))) (-15 -1595 ((-621 (-1124)) (-1122 (-219)))) (-15 -3109 ((-1124) (-621 (-1124)))) (-15 -3884 ((-1006) (-1142) (-1142) (-1006))))) (T -186))
+((-3884 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1006)) (-5 *3 (-1142)) (-5 *1 (-186)))) (-3109 (*1 *2 *3) (-12 (-5 *3 (-621 (-1124))) (-5 *2 (-1124)) (-5 *1 (-186)))) (-1595 (*1 *2 *3) (-12 (-5 *3 (-1122 (-219))) (-5 *2 (-621 (-1124))) (-5 *1 (-186)))) (-4086 (*1 *2 *3) (-12 (-5 *3 (-621 (-219))) (-5 *2 (-621 (-1124))) (-5 *1 (-186)))) (-4214 (*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-1124)) (-5 *1 (-186)))) (-1752 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-1122 (-219))) (-5 *1 (-186)))) (-2543 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-309 (-219))) (-5 *4 (-1142)) (-5 *5 (-1060 (-816 (-219)))) (-5 *2 (-621 (-219))) (-5 *1 (-186)))) (-1969 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-372)) (-5 *1 (-186)))) (-3077 (*1 *2 *3) (-12 (-5 *3 (-1060 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-186)))) (-3003 (*1 *2 *3) (-12 (-5 *3 (-1060 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-186)))) (-1435 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-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 (-186)))) (-1871 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-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 (-186)))))
+(-10 -7 (-15 -1871 ((-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| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -1435 ((-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| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3003 ((-219) (-1060 (-816 (-219))))) (-15 -3077 ((-219) (-1060 (-816 (-219))))) (-15 -1969 ((-372) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2543 ((-621 (-219)) (-309 (-219)) (-1142) (-1060 (-816 (-219))))) (-15 -1752 ((-1122 (-219)) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -4214 ((-1124) (-219))) (-15 -4086 ((-621 (-1124)) (-621 (-219)))) (-15 -1595 ((-621 (-1124)) (-1122 (-219)))) (-15 -3109 ((-1124) (-621 (-1124)))) (-15 -3884 ((-1006) (-1142) (-1142) (-1006))))
+((-3832 (((-112) $ $) NIL)) (-1617 (((-1006) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 55) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 32) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-187) (-763)) (T -187))
NIL
(-763)
-((-3834 (((-112) $ $) NIL)) (-3868 (((-1006) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 60) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 41) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-1617 (((-1006) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 60) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 41) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-188) (-763)) (T -188))
NIL
(-763)
-((-3834 (((-112) $ $) NIL)) (-3868 (((-1006) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 69) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 40) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-1617 (((-1006) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 69) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 40) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-189) (-763)) (T -189))
NIL
(-763)
-((-3834 (((-112) $ $) NIL)) (-3868 (((-1006) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 56) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 34) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-1617 (((-1006) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 56) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 34) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-190) (-763)) (T -190))
NIL
(-763)
-((-3834 (((-112) $ $) NIL)) (-3868 (((-1006) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 67) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 38) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-1617 (((-1006) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 67) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 38) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-191) (-763)) (T -191))
NIL
(-763)
-((-3834 (((-112) $ $) NIL)) (-3868 (((-1006) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 73) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 36) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-1617 (((-1006) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 73) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 36) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-192) (-763)) (T -192))
NIL
(-763)
-((-3834 (((-112) $ $) NIL)) (-3868 (((-1006) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 80) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 44) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-1617 (((-1006) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 80) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 44) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-193) (-763)) (T -193))
NIL
(-763)
-((-3834 (((-112) $ $) NIL)) (-3868 (((-1006) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 70) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 40) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-1617 (((-1006) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 70) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 40) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-194) (-763)) (T -194))
NIL
(-763)
-((-3834 (((-112) $ $) NIL)) (-3868 (((-1006) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 66)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 32)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-1617 (((-1006) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 66)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 32)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-195) (-763)) (T -195))
NIL
(-763)
-((-3834 (((-112) $ $) NIL)) (-3868 (((-1006) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 63)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 34)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-1617 (((-1006) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 63)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 34)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-196) (-763)) (T -196))
NIL
(-763)
-((-3834 (((-112) $ $) NIL)) (-3868 (((-1006) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 90) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 78) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-1617 (((-1006) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 90) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) NIL)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 78) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-197) (-763)) (T -197))
NIL
(-763)
-((-2894 (((-3 (-2 (|:| -2721 (-114)) (|:| |w| (-219))) "failed") (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 85)) (-2733 (((-549) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 42)) (-1577 (((-3 (-621 (-219)) "failed") (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 73)))
-(((-198) (-10 -7 (-15 -2894 ((-3 (-2 (|:| -2721 (-114)) (|:| |w| (-219))) "failed") (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -1577 ((-3 (-621 (-219)) "failed") (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2733 ((-549) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))) (T -198))
-((-2733 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-549)) (-5 *1 (-198)))) (-1577 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-621 (-219))) (-5 *1 (-198)))) (-2894 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-2 (|:| -2721 (-114)) (|:| |w| (-219)))) (-5 *1 (-198)))))
-(-10 -7 (-15 -2894 ((-3 (-2 (|:| -2721 (-114)) (|:| |w| (-219))) "failed") (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -1577 ((-3 (-621 (-219)) "failed") (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2733 ((-549) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))
-((-3973 (((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 39)) (-1497 (((-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372))) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 130)) (-1728 (((-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372))) (-665 (-309 (-219)))) 89)) (-3735 (((-372) (-665 (-309 (-219)))) 113)) (-4204 (((-665 (-309 (-219))) (-1226 (-309 (-219))) (-621 (-1143))) 110)) (-1683 (((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 30)) (-2410 (((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 43)) (-2686 (((-665 (-309 (-219))) (-665 (-309 (-219))) (-621 (-1143)) (-1226 (-309 (-219)))) 102)) (-4030 (((-372) (-372) (-621 (-372))) 107) (((-372) (-372) (-372)) 105)) (-3222 (((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 36)))
-(((-199) (-10 -7 (-15 -4030 ((-372) (-372) (-372))) (-15 -4030 ((-372) (-372) (-621 (-372)))) (-15 -3735 ((-372) (-665 (-309 (-219))))) (-15 -4204 ((-665 (-309 (-219))) (-1226 (-309 (-219))) (-621 (-1143)))) (-15 -2686 ((-665 (-309 (-219))) (-665 (-309 (-219))) (-621 (-1143)) (-1226 (-309 (-219))))) (-15 -1728 ((-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372))) (-665 (-309 (-219))))) (-15 -1497 ((-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372))) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3973 ((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2410 ((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3222 ((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -1683 ((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))) (T -199))
-((-1683 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-372)) (-5 *1 (-199)))) (-3222 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-372)) (-5 *1 (-199)))) (-2410 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-372)) (-5 *1 (-199)))) (-3973 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-372)) (-5 *1 (-199)))) (-1497 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372)))) (-5 *1 (-199)))) (-1728 (*1 *2 *3) (-12 (-5 *3 (-665 (-309 (-219)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372)))) (-5 *1 (-199)))) (-2686 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-665 (-309 (-219)))) (-5 *3 (-621 (-1143))) (-5 *4 (-1226 (-309 (-219)))) (-5 *1 (-199)))) (-4204 (*1 *2 *3 *4) (-12 (-5 *3 (-1226 (-309 (-219)))) (-5 *4 (-621 (-1143))) (-5 *2 (-665 (-309 (-219)))) (-5 *1 (-199)))) (-3735 (*1 *2 *3) (-12 (-5 *3 (-665 (-309 (-219)))) (-5 *2 (-372)) (-5 *1 (-199)))) (-4030 (*1 *2 *2 *3) (-12 (-5 *3 (-621 (-372))) (-5 *2 (-372)) (-5 *1 (-199)))) (-4030 (*1 *2 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-199)))))
-(-10 -7 (-15 -4030 ((-372) (-372) (-372))) (-15 -4030 ((-372) (-372) (-621 (-372)))) (-15 -3735 ((-372) (-665 (-309 (-219))))) (-15 -4204 ((-665 (-309 (-219))) (-1226 (-309 (-219))) (-621 (-1143)))) (-15 -2686 ((-665 (-309 (-219))) (-665 (-309 (-219))) (-621 (-1143)) (-1226 (-309 (-219))))) (-15 -1728 ((-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372))) (-665 (-309 (-219))))) (-15 -1497 ((-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372))) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3973 ((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2410 ((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3222 ((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -1683 ((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))
-((-3834 (((-112) $ $) NIL)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 41)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-3919 (((-1006) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 64)) (-2389 (((-112) $ $) NIL)))
+((-2907 (((-3 (-2 (|:| -2718 (-114)) (|:| |w| (-219))) "failed") (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 85)) (-2348 (((-549) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 42)) (-2563 (((-3 (-621 (-219)) "failed") (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 73)))
+(((-198) (-10 -7 (-15 -2907 ((-3 (-2 (|:| -2718 (-114)) (|:| |w| (-219))) "failed") (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2563 ((-3 (-621 (-219)) "failed") (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2348 ((-549) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))) (T -198))
+((-2348 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-549)) (-5 *1 (-198)))) (-2563 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-621 (-219))) (-5 *1 (-198)))) (-2907 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-2 (|:| -2718 (-114)) (|:| |w| (-219)))) (-5 *1 (-198)))))
+(-10 -7 (-15 -2907 ((-3 (-2 (|:| -2718 (-114)) (|:| |w| (-219))) "failed") (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2563 ((-3 (-621 (-219)) "failed") (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2348 ((-549) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))
+((-3843 (((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 39)) (-2312 (((-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372))) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 130)) (-2305 (((-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372))) (-665 (-309 (-219)))) 89)) (-3856 (((-372) (-665 (-309 (-219)))) 113)) (-2306 (((-665 (-309 (-219))) (-1225 (-309 (-219))) (-621 (-1142))) 110)) (-3115 (((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 30)) (-1988 (((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 43)) (-2684 (((-665 (-309 (-219))) (-665 (-309 (-219))) (-621 (-1142)) (-1225 (-309 (-219)))) 102)) (-2732 (((-372) (-372) (-621 (-372))) 107) (((-372) (-372) (-372)) 105)) (-3951 (((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 36)))
+(((-199) (-10 -7 (-15 -2732 ((-372) (-372) (-372))) (-15 -2732 ((-372) (-372) (-621 (-372)))) (-15 -3856 ((-372) (-665 (-309 (-219))))) (-15 -2306 ((-665 (-309 (-219))) (-1225 (-309 (-219))) (-621 (-1142)))) (-15 -2684 ((-665 (-309 (-219))) (-665 (-309 (-219))) (-621 (-1142)) (-1225 (-309 (-219))))) (-15 -2305 ((-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372))) (-665 (-309 (-219))))) (-15 -2312 ((-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372))) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3843 ((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -1988 ((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3951 ((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3115 ((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))) (T -199))
+((-3115 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-372)) (-5 *1 (-199)))) (-3951 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-372)) (-5 *1 (-199)))) (-1988 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-372)) (-5 *1 (-199)))) (-3843 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-372)) (-5 *1 (-199)))) (-2312 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372)))) (-5 *1 (-199)))) (-2305 (*1 *2 *3) (-12 (-5 *3 (-665 (-309 (-219)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372)))) (-5 *1 (-199)))) (-2684 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-665 (-309 (-219)))) (-5 *3 (-621 (-1142))) (-5 *4 (-1225 (-309 (-219)))) (-5 *1 (-199)))) (-2306 (*1 *2 *3 *4) (-12 (-5 *3 (-1225 (-309 (-219)))) (-5 *4 (-621 (-1142))) (-5 *2 (-665 (-309 (-219)))) (-5 *1 (-199)))) (-3856 (*1 *2 *3) (-12 (-5 *3 (-665 (-309 (-219)))) (-5 *2 (-372)) (-5 *1 (-199)))) (-2732 (*1 *2 *2 *3) (-12 (-5 *3 (-621 (-372))) (-5 *2 (-372)) (-5 *1 (-199)))) (-2732 (*1 *2 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-199)))))
+(-10 -7 (-15 -2732 ((-372) (-372) (-372))) (-15 -2732 ((-372) (-372) (-621 (-372)))) (-15 -3856 ((-372) (-665 (-309 (-219))))) (-15 -2306 ((-665 (-309 (-219))) (-1225 (-309 (-219))) (-621 (-1142)))) (-15 -2684 ((-665 (-309 (-219))) (-665 (-309 (-219))) (-621 (-1142)) (-1225 (-309 (-219))))) (-15 -2305 ((-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372))) (-665 (-309 (-219))))) (-15 -2312 ((-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372))) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3843 ((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -1988 ((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3951 ((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3115 ((-372) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))
+((-3832 (((-112) $ $) NIL)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 41)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-3718 (((-1006) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 64)) (-2387 (((-112) $ $) NIL)))
(((-200) (-776)) (T -200))
NIL
(-776)
-((-3834 (((-112) $ $) NIL)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 41)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-3919 (((-1006) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 62)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 41)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-3718 (((-1006) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 62)) (-2387 (((-112) $ $) NIL)))
(((-201) (-776)) (T -201))
NIL
(-776)
-((-3834 (((-112) $ $) NIL)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 40)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-3919 (((-1006) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 66)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 40)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-3718 (((-1006) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 66)) (-2387 (((-112) $ $) NIL)))
(((-202) (-776)) (T -202))
NIL
(-776)
-((-3834 (((-112) $ $) NIL)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 46)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-3919 (((-1006) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 75)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 46)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-3718 (((-1006) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 75)) (-2387 (((-112) $ $) NIL)))
(((-203) (-776)) (T -203))
NIL
(-776)
-((-3304 (((-621 (-1143)) (-1143) (-747)) 23)) (-2362 (((-309 (-219)) (-309 (-219))) 31)) (-1531 (((-112) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219)))) 74)) (-3451 (((-112) (-219) (-219) (-621 (-309 (-219)))) 45)))
-(((-204) (-10 -7 (-15 -3304 ((-621 (-1143)) (-1143) (-747))) (-15 -2362 ((-309 (-219)) (-309 (-219)))) (-15 -3451 ((-112) (-219) (-219) (-621 (-309 (-219))))) (-15 -1531 ((-112) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219))))))) (T -204))
-((-1531 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219)))) (-5 *2 (-112)) (-5 *1 (-204)))) (-3451 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-621 (-309 (-219)))) (-5 *3 (-219)) (-5 *2 (-112)) (-5 *1 (-204)))) (-2362 (*1 *2 *2) (-12 (-5 *2 (-309 (-219))) (-5 *1 (-204)))) (-3304 (*1 *2 *3 *4) (-12 (-5 *4 (-747)) (-5 *2 (-621 (-1143))) (-5 *1 (-204)) (-5 *3 (-1143)))))
-(-10 -7 (-15 -3304 ((-621 (-1143)) (-1143) (-747))) (-15 -2362 ((-309 (-219)) (-309 (-219)))) (-15 -3451 ((-112) (-219) (-219) (-621 (-309 (-219))))) (-15 -1531 ((-112) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219))))))
-((-3834 (((-112) $ $) NIL)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219)))) 26)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2531 (((-1006) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219)))) 57)) (-2389 (((-112) $ $) NIL)))
+((-3302 (((-621 (-1142)) (-1142) (-747)) 23)) (-2324 (((-309 (-219)) (-309 (-219))) 31)) (-3252 (((-112) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219)))) 74)) (-3910 (((-112) (-219) (-219) (-621 (-309 (-219)))) 45)))
+(((-204) (-10 -7 (-15 -3302 ((-621 (-1142)) (-1142) (-747))) (-15 -2324 ((-309 (-219)) (-309 (-219)))) (-15 -3910 ((-112) (-219) (-219) (-621 (-309 (-219))))) (-15 -3252 ((-112) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219))))))) (T -204))
+((-3252 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219)))) (-5 *2 (-112)) (-5 *1 (-204)))) (-3910 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-621 (-309 (-219)))) (-5 *3 (-219)) (-5 *2 (-112)) (-5 *1 (-204)))) (-2324 (*1 *2 *2) (-12 (-5 *2 (-309 (-219))) (-5 *1 (-204)))) (-3302 (*1 *2 *3 *4) (-12 (-5 *4 (-747)) (-5 *2 (-621 (-1142))) (-5 *1 (-204)) (-5 *3 (-1142)))))
+(-10 -7 (-15 -3302 ((-621 (-1142)) (-1142) (-747))) (-15 -2324 ((-309 (-219)) (-309 (-219)))) (-15 -3910 ((-112) (-219) (-219) (-621 (-309 (-219))))) (-15 -3252 ((-112) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219))))))
+((-3832 (((-112) $ $) NIL)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219)))) 26)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-1292 (((-1006) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219)))) 57)) (-2387 (((-112) $ $) NIL)))
(((-205) (-866)) (T -205))
NIL
(-866)
-((-3834 (((-112) $ $) NIL)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219)))) 21)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2531 (((-1006) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219)))) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219)))) 21)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-1292 (((-1006) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219)))) NIL)) (-2387 (((-112) $ $) NIL)))
(((-206) (-866)) (T -206))
NIL
(-866)
-((-3834 (((-112) $ $) NIL)) (-2254 ((|#2| $ (-747) |#2|) 11)) (-3743 (($) 8)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3341 ((|#2| $ (-747)) 10)) (-3846 (((-834) $) 18)) (-2389 (((-112) $ $) 13)))
-(((-207 |#1| |#2|) (-13 (-1067) (-10 -8 (-15 -3743 ($)) (-15 -3341 (|#2| $ (-747))) (-15 -2254 (|#2| $ (-747) |#2|)))) (-892) (-1067)) (T -207))
-((-3743 (*1 *1) (-12 (-5 *1 (-207 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1067)))) (-3341 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *2 (-1067)) (-5 *1 (-207 *4 *2)) (-14 *4 (-892)))) (-2254 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-207 *4 *2)) (-14 *4 (-892)) (-4 *2 (-1067)))))
-(-13 (-1067) (-10 -8 (-15 -3743 ($)) (-15 -3341 (|#2| $ (-747))) (-15 -2254 (|#2| $ (-747) |#2|))))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2684 (((-1231) $) 36) (((-1231) $ (-892) (-892)) 38)) (-3341 (($ $ (-960)) 19) (((-239 (-1125)) $ (-1143)) 15)) (-2699 (((-1231) $) 34)) (-3846 (((-834) $) 31) (($ (-621 |#1|)) 8)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $ $) 27)) (-2486 (($ $ $) 22)))
-(((-208 |#1|) (-13 (-1067) (-10 -8 (-15 -3341 ($ $ (-960))) (-15 -3341 ((-239 (-1125)) $ (-1143))) (-15 -2486 ($ $ $)) (-15 -2500 ($ $ $)) (-15 -3846 ($ (-621 |#1|))) (-15 -2699 ((-1231) $)) (-15 -2684 ((-1231) $)) (-15 -2684 ((-1231) $ (-892) (-892))))) (-13 (-823) (-10 -8 (-15 -3341 ((-1125) $ (-1143))) (-15 -2699 ((-1231) $)) (-15 -2684 ((-1231) $))))) (T -208))
-((-3341 (*1 *1 *1 *2) (-12 (-5 *2 (-960)) (-5 *1 (-208 *3)) (-4 *3 (-13 (-823) (-10 -8 (-15 -3341 ((-1125) $ (-1143))) (-15 -2699 ((-1231) $)) (-15 -2684 ((-1231) $))))))) (-3341 (*1 *2 *1 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-239 (-1125))) (-5 *1 (-208 *4)) (-4 *4 (-13 (-823) (-10 -8 (-15 -3341 ((-1125) $ *3)) (-15 -2699 ((-1231) $)) (-15 -2684 ((-1231) $))))))) (-2486 (*1 *1 *1 *1) (-12 (-5 *1 (-208 *2)) (-4 *2 (-13 (-823) (-10 -8 (-15 -3341 ((-1125) $ (-1143))) (-15 -2699 ((-1231) $)) (-15 -2684 ((-1231) $))))))) (-2500 (*1 *1 *1 *1) (-12 (-5 *1 (-208 *2)) (-4 *2 (-13 (-823) (-10 -8 (-15 -3341 ((-1125) $ (-1143))) (-15 -2699 ((-1231) $)) (-15 -2684 ((-1231) $))))))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-13 (-823) (-10 -8 (-15 -3341 ((-1125) $ (-1143))) (-15 -2699 ((-1231) $)) (-15 -2684 ((-1231) $))))) (-5 *1 (-208 *3)))) (-2699 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-208 *3)) (-4 *3 (-13 (-823) (-10 -8 (-15 -3341 ((-1125) $ (-1143))) (-15 -2699 (*2 $)) (-15 -2684 (*2 $))))))) (-2684 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-208 *3)) (-4 *3 (-13 (-823) (-10 -8 (-15 -3341 ((-1125) $ (-1143))) (-15 -2699 (*2 $)) (-15 -2684 (*2 $))))))) (-2684 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1231)) (-5 *1 (-208 *4)) (-4 *4 (-13 (-823) (-10 -8 (-15 -3341 ((-1125) $ (-1143))) (-15 -2699 (*2 $)) (-15 -2684 (*2 $))))))))
-(-13 (-1067) (-10 -8 (-15 -3341 ($ $ (-960))) (-15 -3341 ((-239 (-1125)) $ (-1143))) (-15 -2486 ($ $ $)) (-15 -2500 ($ $ $)) (-15 -3846 ($ (-621 |#1|))) (-15 -2699 ((-1231) $)) (-15 -2684 ((-1231) $)) (-15 -2684 ((-1231) $ (-892) (-892)))))
-((-2706 ((|#2| |#4| (-1 |#2| |#2|)) 46)))
-(((-209 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2706 (|#2| |#4| (-1 |#2| |#2|)))) (-356) (-1202 |#1|) (-1202 (-400 |#2|)) (-335 |#1| |#2| |#3|)) (T -209))
-((-2706 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-356)) (-4 *6 (-1202 (-400 *2))) (-4 *2 (-1202 *5)) (-5 *1 (-209 *5 *2 *6 *3)) (-4 *3 (-335 *5 *2 *6)))))
-(-10 -7 (-15 -2706 (|#2| |#4| (-1 |#2| |#2|))))
-((-2385 ((|#2| |#2| (-747) |#2|) 42)) (-1739 ((|#2| |#2| (-747) |#2|) 38)) (-3369 (((-621 |#2|) (-621 (-2 (|:| |deg| (-747)) (|:| -1968 |#2|)))) 57)) (-3142 (((-621 (-2 (|:| |deg| (-747)) (|:| -1968 |#2|))) |#2|) 53)) (-2816 (((-112) |#2|) 50)) (-2131 (((-411 |#2|) |#2|) 77)) (-2121 (((-411 |#2|) |#2|) 76)) (-3003 ((|#2| |#2| (-747) |#2|) 36)) (-2648 (((-2 (|:| |cont| |#1|) (|:| -4024 (-621 (-2 (|:| |irr| |#2|) (|:| -2495 (-549)))))) |#2| (-112)) 69)))
-(((-210 |#1| |#2|) (-10 -7 (-15 -2121 ((-411 |#2|) |#2|)) (-15 -2131 ((-411 |#2|) |#2|)) (-15 -2648 ((-2 (|:| |cont| |#1|) (|:| -4024 (-621 (-2 (|:| |irr| |#2|) (|:| -2495 (-549)))))) |#2| (-112))) (-15 -3142 ((-621 (-2 (|:| |deg| (-747)) (|:| -1968 |#2|))) |#2|)) (-15 -3369 ((-621 |#2|) (-621 (-2 (|:| |deg| (-747)) (|:| -1968 |#2|))))) (-15 -3003 (|#2| |#2| (-747) |#2|)) (-15 -1739 (|#2| |#2| (-747) |#2|)) (-15 -2385 (|#2| |#2| (-747) |#2|)) (-15 -2816 ((-112) |#2|))) (-342) (-1202 |#1|)) (T -210))
-((-2816 (*1 *2 *3) (-12 (-4 *4 (-342)) (-5 *2 (-112)) (-5 *1 (-210 *4 *3)) (-4 *3 (-1202 *4)))) (-2385 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-747)) (-4 *4 (-342)) (-5 *1 (-210 *4 *2)) (-4 *2 (-1202 *4)))) (-1739 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-747)) (-4 *4 (-342)) (-5 *1 (-210 *4 *2)) (-4 *2 (-1202 *4)))) (-3003 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-747)) (-4 *4 (-342)) (-5 *1 (-210 *4 *2)) (-4 *2 (-1202 *4)))) (-3369 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| |deg| (-747)) (|:| -1968 *5)))) (-4 *5 (-1202 *4)) (-4 *4 (-342)) (-5 *2 (-621 *5)) (-5 *1 (-210 *4 *5)))) (-3142 (*1 *2 *3) (-12 (-4 *4 (-342)) (-5 *2 (-621 (-2 (|:| |deg| (-747)) (|:| -1968 *3)))) (-5 *1 (-210 *4 *3)) (-4 *3 (-1202 *4)))) (-2648 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-342)) (-5 *2 (-2 (|:| |cont| *5) (|:| -4024 (-621 (-2 (|:| |irr| *3) (|:| -2495 (-549))))))) (-5 *1 (-210 *5 *3)) (-4 *3 (-1202 *5)))) (-2131 (*1 *2 *3) (-12 (-4 *4 (-342)) (-5 *2 (-411 *3)) (-5 *1 (-210 *4 *3)) (-4 *3 (-1202 *4)))) (-2121 (*1 *2 *3) (-12 (-4 *4 (-342)) (-5 *2 (-411 *3)) (-5 *1 (-210 *4 *3)) (-4 *3 (-1202 *4)))))
-(-10 -7 (-15 -2121 ((-411 |#2|) |#2|)) (-15 -2131 ((-411 |#2|) |#2|)) (-15 -2648 ((-2 (|:| |cont| |#1|) (|:| -4024 (-621 (-2 (|:| |irr| |#2|) (|:| -2495 (-549)))))) |#2| (-112))) (-15 -3142 ((-621 (-2 (|:| |deg| (-747)) (|:| -1968 |#2|))) |#2|)) (-15 -3369 ((-621 |#2|) (-621 (-2 (|:| |deg| (-747)) (|:| -1968 |#2|))))) (-15 -3003 (|#2| |#2| (-747) |#2|)) (-15 -1739 (|#2| |#2| (-747) |#2|)) (-15 -2385 (|#2| |#2| (-747) |#2|)) (-15 -2816 ((-112) |#2|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3329 (((-549) $) NIL (|has| (-549) (-300)))) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-549) (-880)))) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| (-549) (-880)))) (-3866 (((-112) $ $) NIL)) (-1872 (((-549) $) NIL (|has| (-549) (-796)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL) (((-3 (-1143) "failed") $) NIL (|has| (-549) (-1009 (-1143)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-549) (-1009 (-549)))) (((-3 (-549) "failed") $) NIL (|has| (-549) (-1009 (-549))))) (-2659 (((-549) $) NIL) (((-1143) $) NIL (|has| (-549) (-1009 (-1143)))) (((-400 (-549)) $) NIL (|has| (-549) (-1009 (-549)))) (((-549) $) NIL (|has| (-549) (-1009 (-549))))) (-2095 (($ $ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| (-549) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| (-549) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL) (((-665 (-549)) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) NIL (|has| (-549) (-534)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-2772 (((-112) $) NIL (|has| (-549) (-796)))) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| (-549) (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| (-549) (-857 (-372))))) (-2675 (((-112) $) NIL)) (-1726 (($ $) NIL)) (-1394 (((-549) $) NIL)) (-1681 (((-3 $ "failed") $) NIL (|has| (-549) (-1118)))) (-2374 (((-112) $) NIL (|has| (-549) (-796)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2863 (($ $ $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| (-549) (-823)))) (-2797 (($ (-1 (-549) (-549)) $) NIL)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL (|has| (-549) (-1118)) CONST)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2873 (($ $) NIL (|has| (-549) (-300))) (((-400 (-549)) $) NIL)) (-3967 (((-549) $) NIL (|has| (-549) (-534)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-549) (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-549) (-880)))) (-2121 (((-411 $) $) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2686 (($ $ (-621 (-549)) (-621 (-549))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-549) (-549)) NIL (|has| (-549) (-302 (-549)))) (($ $ (-287 (-549))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-621 (-287 (-549)))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-621 (-1143)) (-621 (-549))) NIL (|has| (-549) (-505 (-1143) (-549)))) (($ $ (-1143) (-549)) NIL (|has| (-549) (-505 (-1143) (-549))))) (-3684 (((-747) $) NIL)) (-3341 (($ $ (-549)) NIL (|has| (-549) (-279 (-549) (-549))))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3456 (($ $) NIL (|has| (-549) (-227))) (($ $ (-747)) NIL (|has| (-549) (-227))) (($ $ (-1143)) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-1 (-549) (-549)) (-747)) NIL) (($ $ (-1 (-549) (-549))) NIL)) (-3939 (($ $) NIL)) (-1403 (((-549) $) NIL)) (-3121 (($ (-400 (-549))) 9)) (-2845 (((-863 (-549)) $) NIL (|has| (-549) (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| (-549) (-594 (-863 (-372))))) (((-525) $) NIL (|has| (-549) (-594 (-525)))) (((-372) $) NIL (|has| (-549) (-993))) (((-219) $) NIL (|has| (-549) (-993)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-549) (-880))))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) 8) (($ (-549)) NIL) (($ (-1143)) NIL (|has| (-549) (-1009 (-1143)))) (((-400 (-549)) $) NIL) (((-975 10) $) 10)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-549) (-880))) (|has| (-549) (-143))))) (-2082 (((-747)) NIL)) (-2546 (((-549) $) NIL (|has| (-549) (-534)))) (-1498 (((-112) $ $) NIL)) (-3212 (($ $) NIL (|has| (-549) (-796)))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $) NIL (|has| (-549) (-227))) (($ $ (-747)) NIL (|has| (-549) (-227))) (($ $ (-1143)) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-1 (-549) (-549)) (-747)) NIL) (($ $ (-1 (-549) (-549))) NIL)) (-2448 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2425 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2412 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2513 (($ $ $) NIL) (($ (-549) (-549)) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ (-549) $) NIL) (($ $ (-549)) NIL)))
-(((-211) (-13 (-963 (-549)) (-10 -8 (-15 -3846 ((-400 (-549)) $)) (-15 -3846 ((-975 10) $)) (-15 -2873 ((-400 (-549)) $)) (-15 -3121 ($ (-400 (-549))))))) (T -211))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-211)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-975 10)) (-5 *1 (-211)))) (-2873 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-211)))) (-3121 (*1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-211)))))
-(-13 (-963 (-549)) (-10 -8 (-15 -3846 ((-400 (-549)) $)) (-15 -3846 ((-975 10) $)) (-15 -2873 ((-400 (-549)) $)) (-15 -3121 ($ (-400 (-549))))))
-((-3834 (((-112) $ $) NIL)) (-3986 (((-1085) $) 14)) (-3851 (((-1125) $) NIL)) (-3477 (((-621 (-497)) $) 11)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2492 (((-1148) $) 16)) (-2389 (((-112) $ $) NIL)))
-(((-212) (-13 (-1050) (-10 -8 (-15 -3477 ((-621 (-497)) $)) (-15 -3986 ((-1085) $)) (-15 -2492 ((-1148) $))))) (T -212))
-((-3477 (*1 *2 *1) (-12 (-5 *2 (-621 (-497))) (-5 *1 (-212)))) (-3986 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-212)))) (-2492 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-212)))))
-(-13 (-1050) (-10 -8 (-15 -3477 ((-621 (-497)) $)) (-15 -3986 ((-1085) $)) (-15 -2492 ((-1148) $))))
-((-3893 (((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1059 (-816 |#2|)) (-1125)) 28) (((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1059 (-816 |#2|))) 24)) (-4040 (((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1143) (-816 |#2|) (-816 |#2|) (-112)) 17)))
-(((-213 |#1| |#2|) (-10 -7 (-15 -3893 ((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1059 (-816 |#2|)))) (-15 -3893 ((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1059 (-816 |#2|)) (-1125))) (-15 -4040 ((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1143) (-816 |#2|) (-816 |#2|) (-112)))) (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))) (-13 (-1165) (-930) (-29 |#1|))) (T -213))
-((-4040 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-1143)) (-5 *6 (-112)) (-4 *7 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-4 *3 (-13 (-1165) (-930) (-29 *7))) (-5 *2 (-3 (|:| |f1| (-816 *3)) (|:| |f2| (-621 (-816 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-213 *7 *3)) (-5 *5 (-816 *3)))) (-3893 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1059 (-816 *3))) (-5 *5 (-1125)) (-4 *3 (-13 (-1165) (-930) (-29 *6))) (-4 *6 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 (|:| |f1| (-816 *3)) (|:| |f2| (-621 (-816 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-213 *6 *3)))) (-3893 (*1 *2 *3 *4) (-12 (-5 *4 (-1059 (-816 *3))) (-4 *3 (-13 (-1165) (-930) (-29 *5))) (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 (|:| |f1| (-816 *3)) (|:| |f2| (-621 (-816 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-213 *5 *3)))))
-(-10 -7 (-15 -3893 ((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1059 (-816 |#2|)))) (-15 -3893 ((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1059 (-816 |#2|)) (-1125))) (-15 -4040 ((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1143) (-816 |#2|) (-816 |#2|) (-112))))
-((-3893 (((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1059 (-816 (-400 (-923 |#1|)))) (-1125)) 46) (((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1059 (-816 (-400 (-923 |#1|))))) 43) (((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1059 (-816 (-309 |#1|))) (-1125)) 47) (((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1059 (-816 (-309 |#1|)))) 20)))
-(((-214 |#1|) (-10 -7 (-15 -3893 ((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1059 (-816 (-309 |#1|))))) (-15 -3893 ((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1059 (-816 (-309 |#1|))) (-1125))) (-15 -3893 ((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1059 (-816 (-400 (-923 |#1|)))))) (-15 -3893 ((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1059 (-816 (-400 (-923 |#1|)))) (-1125)))) (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (T -214))
-((-3893 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1059 (-816 (-400 (-923 *6))))) (-5 *5 (-1125)) (-5 *3 (-400 (-923 *6))) (-4 *6 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 (|:| |f1| (-816 (-309 *6))) (|:| |f2| (-621 (-816 (-309 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-214 *6)))) (-3893 (*1 *2 *3 *4) (-12 (-5 *4 (-1059 (-816 (-400 (-923 *5))))) (-5 *3 (-400 (-923 *5))) (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 (|:| |f1| (-816 (-309 *5))) (|:| |f2| (-621 (-816 (-309 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-214 *5)))) (-3893 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-400 (-923 *6))) (-5 *4 (-1059 (-816 (-309 *6)))) (-5 *5 (-1125)) (-4 *6 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 (|:| |f1| (-816 (-309 *6))) (|:| |f2| (-621 (-816 (-309 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-214 *6)))) (-3893 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1059 (-816 (-309 *5)))) (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 (|:| |f1| (-816 (-309 *5))) (|:| |f2| (-621 (-816 (-309 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-214 *5)))))
-(-10 -7 (-15 -3893 ((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1059 (-816 (-309 |#1|))))) (-15 -3893 ((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1059 (-816 (-309 |#1|))) (-1125))) (-15 -3893 ((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1059 (-816 (-400 (-923 |#1|)))))) (-15 -3893 ((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1059 (-816 (-400 (-923 |#1|)))) (-1125))))
-((-2557 (((-2 (|:| -3028 (-1139 |#1|)) (|:| |deg| (-892))) (-1139 |#1|)) 21)) (-1449 (((-621 (-309 |#2|)) (-309 |#2|) (-892)) 42)))
-(((-215 |#1| |#2|) (-10 -7 (-15 -2557 ((-2 (|:| -3028 (-1139 |#1|)) (|:| |deg| (-892))) (-1139 |#1|))) (-15 -1449 ((-621 (-309 |#2|)) (-309 |#2|) (-892)))) (-1018) (-13 (-541) (-823))) (T -215))
-((-1449 (*1 *2 *3 *4) (-12 (-5 *4 (-892)) (-4 *6 (-13 (-541) (-823))) (-5 *2 (-621 (-309 *6))) (-5 *1 (-215 *5 *6)) (-5 *3 (-309 *6)) (-4 *5 (-1018)))) (-2557 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-5 *2 (-2 (|:| -3028 (-1139 *4)) (|:| |deg| (-892)))) (-5 *1 (-215 *4 *5)) (-5 *3 (-1139 *4)) (-4 *5 (-13 (-541) (-823))))))
-(-10 -7 (-15 -2557 ((-2 (|:| -3028 (-1139 |#1|)) (|:| |deg| (-892))) (-1139 |#1|))) (-15 -1449 ((-621 (-309 |#2|)) (-309 |#2|) (-892))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-1785 ((|#1| $) NIL)) (-2317 ((|#1| $) 25)) (-1584 (((-112) $ (-747)) NIL)) (-1682 (($) NIL T CONST)) (-4194 (($ $) NIL)) (-1585 (($ $) 31)) (-3204 ((|#1| |#1| $) NIL)) (-1350 ((|#1| $) NIL)) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-4210 (((-747) $) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3504 ((|#1| $) NIL)) (-2454 ((|#1| |#1| $) 28)) (-3218 ((|#1| |#1| $) 30)) (-2751 (($ |#1| $) NIL)) (-4036 (((-747) $) 27)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1409 ((|#1| $) NIL)) (-3993 ((|#1| $) 26)) (-3850 ((|#1| $) 24)) (-3325 ((|#1| $) NIL)) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2502 ((|#1| |#1| $) NIL)) (-3670 (((-112) $) 9)) (-3742 (($) NIL)) (-3912 ((|#1| $) NIL)) (-2171 (($) NIL) (($ (-621 |#1|)) 16)) (-1321 (((-747) $) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3720 ((|#1| $) 13)) (-3624 (($ (-621 |#1|)) NIL)) (-1410 ((|#1| $) NIL)) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-216 |#1|) (-13 (-247 |#1|) (-10 -8 (-15 -2171 ($ (-621 |#1|))))) (-1067)) (T -216))
-((-2171 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-5 *1 (-216 *3)))))
-(-13 (-247 |#1|) (-10 -8 (-15 -2171 ($ (-621 |#1|)))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2560 (($ (-309 |#1|)) 23)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-4304 (((-112) $) NIL)) (-2714 (((-3 (-309 |#1|) "failed") $) NIL)) (-2659 (((-309 |#1|) $) NIL)) (-2070 (($ $) 31)) (-2114 (((-3 $ "failed") $) NIL)) (-2675 (((-112) $) NIL)) (-2797 (($ (-1 (-309 |#1|) (-309 |#1|)) $) NIL)) (-2043 (((-309 |#1|) $) NIL)) (-2928 (($ $) 30)) (-3851 (((-1125) $) NIL)) (-2156 (((-112) $) NIL)) (-3990 (((-1087) $) NIL)) (-4248 (($ (-747)) NIL)) (-4183 (($ $) 32)) (-3701 (((-549) $) NIL)) (-3846 (((-834) $) 57) (($ (-549)) NIL) (($ (-309 |#1|)) NIL)) (-2152 (((-309 |#1|) $ $) NIL)) (-2082 (((-747)) NIL)) (-3276 (($) 25 T CONST)) (-3287 (($) 50 T CONST)) (-2389 (((-112) $ $) 28)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) 19)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 24) (($ (-309 |#1|) $) 18)))
-(((-217 |#1| |#2|) (-13 (-598 (-309 |#1|)) (-1009 (-309 |#1|)) (-10 -8 (-15 -2043 ((-309 |#1|) $)) (-15 -2928 ($ $)) (-15 -2070 ($ $)) (-15 -2152 ((-309 |#1|) $ $)) (-15 -4248 ($ (-747))) (-15 -2156 ((-112) $)) (-15 -4304 ((-112) $)) (-15 -3701 ((-549) $)) (-15 -2797 ($ (-1 (-309 |#1|) (-309 |#1|)) $)) (-15 -2560 ($ (-309 |#1|))) (-15 -4183 ($ $)))) (-13 (-1018) (-823)) (-621 (-1143))) (T -217))
-((-2043 (*1 *2 *1) (-12 (-5 *2 (-309 *3)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823))) (-14 *4 (-621 (-1143))))) (-2928 (*1 *1 *1) (-12 (-5 *1 (-217 *2 *3)) (-4 *2 (-13 (-1018) (-823))) (-14 *3 (-621 (-1143))))) (-2070 (*1 *1 *1) (-12 (-5 *1 (-217 *2 *3)) (-4 *2 (-13 (-1018) (-823))) (-14 *3 (-621 (-1143))))) (-2152 (*1 *2 *1 *1) (-12 (-5 *2 (-309 *3)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823))) (-14 *4 (-621 (-1143))))) (-4248 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823))) (-14 *4 (-621 (-1143))))) (-2156 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823))) (-14 *4 (-621 (-1143))))) (-4304 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823))) (-14 *4 (-621 (-1143))))) (-3701 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823))) (-14 *4 (-621 (-1143))))) (-2797 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-309 *3) (-309 *3))) (-4 *3 (-13 (-1018) (-823))) (-5 *1 (-217 *3 *4)) (-14 *4 (-621 (-1143))))) (-2560 (*1 *1 *2) (-12 (-5 *2 (-309 *3)) (-4 *3 (-13 (-1018) (-823))) (-5 *1 (-217 *3 *4)) (-14 *4 (-621 (-1143))))) (-4183 (*1 *1 *1) (-12 (-5 *1 (-217 *2 *3)) (-4 *2 (-13 (-1018) (-823))) (-14 *3 (-621 (-1143))))))
-(-13 (-598 (-309 |#1|)) (-1009 (-309 |#1|)) (-10 -8 (-15 -2043 ((-309 |#1|) $)) (-15 -2928 ($ $)) (-15 -2070 ($ $)) (-15 -2152 ((-309 |#1|) $ $)) (-15 -4248 ($ (-747))) (-15 -2156 ((-112) $)) (-15 -4304 ((-112) $)) (-15 -3701 ((-549) $)) (-15 -2797 ($ (-1 (-309 |#1|) (-309 |#1|)) $)) (-15 -2560 ($ (-309 |#1|))) (-15 -4183 ($ $))))
-((-2756 (((-112) (-1125)) 22)) (-2356 (((-3 (-816 |#2|) "failed") (-592 |#2|) |#2| (-816 |#2|) (-816 |#2|) (-112)) 32)) (-2200 (((-3 (-112) "failed") (-1139 |#2|) (-816 |#2|) (-816 |#2|) (-112)) 73) (((-3 (-112) "failed") (-923 |#1|) (-1143) (-816 |#2|) (-816 |#2|) (-112)) 74)))
-(((-218 |#1| |#2|) (-10 -7 (-15 -2756 ((-112) (-1125))) (-15 -2356 ((-3 (-816 |#2|) "failed") (-592 |#2|) |#2| (-816 |#2|) (-816 |#2|) (-112))) (-15 -2200 ((-3 (-112) "failed") (-923 |#1|) (-1143) (-816 |#2|) (-816 |#2|) (-112))) (-15 -2200 ((-3 (-112) "failed") (-1139 |#2|) (-816 |#2|) (-816 |#2|) (-112)))) (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-1165) (-29 |#1|))) (T -218))
-((-2200 (*1 *2 *3 *4 *4 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1139 *6)) (-5 *4 (-816 *6)) (-4 *6 (-13 (-1165) (-29 *5))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-218 *5 *6)))) (-2200 (*1 *2 *3 *4 *5 *5 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-923 *6)) (-5 *4 (-1143)) (-5 *5 (-816 *7)) (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-4 *7 (-13 (-1165) (-29 *6))) (-5 *1 (-218 *6 *7)))) (-2356 (*1 *2 *3 *4 *2 *2 *5) (|partial| -12 (-5 *2 (-816 *4)) (-5 *3 (-592 *4)) (-5 *5 (-112)) (-4 *4 (-13 (-1165) (-29 *6))) (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-218 *6 *4)))) (-2756 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-112)) (-5 *1 (-218 *4 *5)) (-4 *5 (-13 (-1165) (-29 *4))))))
-(-10 -7 (-15 -2756 ((-112) (-1125))) (-15 -2356 ((-3 (-816 |#2|) "failed") (-592 |#2|) |#2| (-816 |#2|) (-816 |#2|) (-112))) (-15 -2200 ((-3 (-112) "failed") (-923 |#1|) (-1143) (-816 |#2|) (-816 |#2|) (-112))) (-15 -2200 ((-3 (-112) "failed") (-1139 |#2|) (-816 |#2|) (-816 |#2|) (-112))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 89)) (-3329 (((-549) $) 100)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-3896 (($ $) NIL)) (-1664 (($ $) 77)) (-1512 (($ $) 65)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-2134 (($ $) 56)) (-3866 (((-112) $ $) NIL)) (-1640 (($ $) 75)) (-1486 (($ $) 63)) (-1872 (((-549) $) 117)) (-1685 (($ $) 80)) (-1539 (($ $) 67)) (-1682 (($) NIL T CONST)) (-3252 (($ $) NIL)) (-2714 (((-3 (-549) "failed") $) 116) (((-3 (-400 (-549)) "failed") $) 113)) (-2659 (((-549) $) 114) (((-400 (-549)) $) 111)) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) 93)) (-2393 (((-400 (-549)) $ (-747)) 109) (((-400 (-549)) $ (-747) (-747)) 108)) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-3236 (((-892)) 29) (((-892) (-892)) NIL (|has| $ (-6 -4328)))) (-2772 (((-112) $) NIL)) (-1425 (($) 39)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL)) (-2088 (((-549) $) 35)) (-2675 (((-112) $) NIL)) (-4187 (($ $ (-549)) NIL)) (-3630 (($ $) NIL)) (-2374 (((-112) $) 88)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2863 (($ $ $) 53) (($) 34 (-12 (-4008 (|has| $ (-6 -4320))) (-4008 (|has| $ (-6 -4328)))))) (-3575 (($ $ $) 52) (($) 33 (-12 (-4008 (|has| $ (-6 -4320))) (-4008 (|has| $ (-6 -4328)))))) (-1461 (((-549) $) 27)) (-1393 (($ $) 30)) (-2301 (($ $) 57)) (-3632 (($ $) 62)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-2429 (((-892) (-549)) NIL (|has| $ (-6 -4328)))) (-3990 (((-1087) $) 91)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2873 (($ $) NIL)) (-3967 (($ $) NIL)) (-1355 (($ (-549) (-549)) NIL) (($ (-549) (-549) (-892)) 101)) (-2121 (((-411 $) $) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3731 (((-549) $) 28)) (-3716 (($) 38)) (-2719 (($ $) 61)) (-3684 (((-747) $) NIL)) (-3326 (((-1125) (-1125)) 8)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3862 (((-892)) NIL) (((-892) (-892)) NIL (|has| $ (-6 -4328)))) (-3456 (($ $ (-747)) NIL) (($ $) 94)) (-2324 (((-892) (-549)) NIL (|has| $ (-6 -4328)))) (-1698 (($ $) 78)) (-1552 (($ $) 68)) (-1675 (($ $) 79)) (-1526 (($ $) 66)) (-1651 (($ $) 76)) (-1501 (($ $) 64)) (-2845 (((-372) $) 105) (((-219) $) 102) (((-863 (-372)) $) NIL) (((-525) $) 45)) (-3846 (((-834) $) 42) (($ (-549)) 60) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-549)) 60) (($ (-400 (-549))) NIL)) (-2082 (((-747)) NIL)) (-2546 (($ $) NIL)) (-1502 (((-892)) 32) (((-892) (-892)) NIL (|has| $ (-6 -4328)))) (-1864 (((-892)) 25)) (-1733 (($ $) 83)) (-1587 (($ $) 71) (($ $ $) 110)) (-1498 (((-112) $ $) NIL)) (-1710 (($ $) 81)) (-1564 (($ $) 69)) (-1758 (($ $) 86)) (-1612 (($ $) 74)) (-1934 (($ $) 84)) (-1627 (($ $) 72)) (-1745 (($ $) 85)) (-1600 (($ $) 73)) (-1722 (($ $) 82)) (-1576 (($ $) 70)) (-3212 (($ $) 118)) (-3276 (($) 36 T CONST)) (-3287 (($) 37 T CONST)) (-4245 (((-1125) $) 19) (((-1125) $ (-112)) 21) (((-1231) (-798) $) 22) (((-1231) (-798) $ (-112)) 23)) (-3553 (($ $) 97)) (-1702 (($ $ (-747)) NIL) (($ $) NIL)) (-2096 (($ $ $) 99)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 54)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 46)) (-2513 (($ $ $) 87) (($ $ (-549)) 55)) (-2500 (($ $) 47) (($ $ $) 49)) (-2486 (($ $ $) 48)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) 58) (($ $ (-400 (-549))) 130) (($ $ $) 59)) (* (($ (-892) $) 31) (($ (-747) $) NIL) (($ (-549) $) 51) (($ $ $) 50) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL)))
-(((-219) (-13 (-397) (-227) (-804) (-1165) (-594 (-525)) (-10 -8 (-15 -2513 ($ $ (-549))) (-15 ** ($ $ $)) (-15 -3716 ($)) (-15 -1393 ($ $)) (-15 -2301 ($ $)) (-15 -1587 ($ $ $)) (-15 -3553 ($ $)) (-15 -2096 ($ $ $)) (-15 -3326 ((-1125) (-1125))) (-15 -2393 ((-400 (-549)) $ (-747))) (-15 -2393 ((-400 (-549)) $ (-747) (-747)))))) (T -219))
-((** (*1 *1 *1 *1) (-5 *1 (-219))) (-2513 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-219)))) (-3716 (*1 *1) (-5 *1 (-219))) (-1393 (*1 *1 *1) (-5 *1 (-219))) (-2301 (*1 *1 *1) (-5 *1 (-219))) (-1587 (*1 *1 *1 *1) (-5 *1 (-219))) (-3553 (*1 *1 *1) (-5 *1 (-219))) (-2096 (*1 *1 *1 *1) (-5 *1 (-219))) (-3326 (*1 *2 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-219)))) (-2393 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *2 (-400 (-549))) (-5 *1 (-219)))) (-2393 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-747)) (-5 *2 (-400 (-549))) (-5 *1 (-219)))))
-(-13 (-397) (-227) (-804) (-1165) (-594 (-525)) (-10 -8 (-15 -2513 ($ $ (-549))) (-15 ** ($ $ $)) (-15 -3716 ($)) (-15 -1393 ($ $)) (-15 -2301 ($ $)) (-15 -1587 ($ $ $)) (-15 -3553 ($ $)) (-15 -2096 ($ $ $)) (-15 -3326 ((-1125) (-1125))) (-15 -2393 ((-400 (-549)) $ (-747))) (-15 -2393 ((-400 (-549)) $ (-747) (-747)))))
-((-3796 (((-167 (-219)) (-747) (-167 (-219))) 11) (((-219) (-747) (-219)) 12)) (-3673 (((-167 (-219)) (-167 (-219))) 13) (((-219) (-219)) 14)) (-3938 (((-167 (-219)) (-167 (-219)) (-167 (-219))) 19) (((-219) (-219) (-219)) 22)) (-3634 (((-167 (-219)) (-167 (-219))) 25) (((-219) (-219)) 24)) (-1370 (((-167 (-219)) (-167 (-219)) (-167 (-219))) 43) (((-219) (-219) (-219)) 35)) (-1611 (((-167 (-219)) (-167 (-219)) (-167 (-219))) 48) (((-219) (-219) (-219)) 45)) (-2981 (((-167 (-219)) (-167 (-219)) (-167 (-219))) 15) (((-219) (-219) (-219)) 16)) (-1643 (((-167 (-219)) (-167 (-219)) (-167 (-219))) 17) (((-219) (-219) (-219)) 18)) (-1273 (((-167 (-219)) (-167 (-219))) 60) (((-219) (-219)) 59)) (-3000 (((-219) (-219)) 54) (((-167 (-219)) (-167 (-219))) 58)) (-3553 (((-167 (-219)) (-167 (-219))) 8) (((-219) (-219)) 9)) (-2096 (((-167 (-219)) (-167 (-219)) (-167 (-219))) 30) (((-219) (-219) (-219)) 26)))
-(((-220) (-10 -7 (-15 -3553 ((-219) (-219))) (-15 -3553 ((-167 (-219)) (-167 (-219)))) (-15 -2096 ((-219) (-219) (-219))) (-15 -2096 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -3673 ((-219) (-219))) (-15 -3673 ((-167 (-219)) (-167 (-219)))) (-15 -3634 ((-219) (-219))) (-15 -3634 ((-167 (-219)) (-167 (-219)))) (-15 -3796 ((-219) (-747) (-219))) (-15 -3796 ((-167 (-219)) (-747) (-167 (-219)))) (-15 -2981 ((-219) (-219) (-219))) (-15 -2981 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -1370 ((-219) (-219) (-219))) (-15 -1370 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -1643 ((-219) (-219) (-219))) (-15 -1643 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -1611 ((-219) (-219) (-219))) (-15 -1611 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -3000 ((-167 (-219)) (-167 (-219)))) (-15 -3000 ((-219) (-219))) (-15 -1273 ((-219) (-219))) (-15 -1273 ((-167 (-219)) (-167 (-219)))) (-15 -3938 ((-219) (-219) (-219))) (-15 -3938 ((-167 (-219)) (-167 (-219)) (-167 (-219)))))) (T -220))
-((-3938 (*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-3938 (*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-1273 (*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-1273 (*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-3000 (*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-3000 (*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-1611 (*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-1611 (*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-1643 (*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-1643 (*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-1370 (*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-1370 (*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-2981 (*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-2981 (*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-3796 (*1 *2 *3 *2) (-12 (-5 *2 (-167 (-219))) (-5 *3 (-747)) (-5 *1 (-220)))) (-3796 (*1 *2 *3 *2) (-12 (-5 *2 (-219)) (-5 *3 (-747)) (-5 *1 (-220)))) (-3634 (*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-3634 (*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-3673 (*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-3673 (*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-2096 (*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-2096 (*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-3553 (*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-3553 (*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))))
-(-10 -7 (-15 -3553 ((-219) (-219))) (-15 -3553 ((-167 (-219)) (-167 (-219)))) (-15 -2096 ((-219) (-219) (-219))) (-15 -2096 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -3673 ((-219) (-219))) (-15 -3673 ((-167 (-219)) (-167 (-219)))) (-15 -3634 ((-219) (-219))) (-15 -3634 ((-167 (-219)) (-167 (-219)))) (-15 -3796 ((-219) (-747) (-219))) (-15 -3796 ((-167 (-219)) (-747) (-167 (-219)))) (-15 -2981 ((-219) (-219) (-219))) (-15 -2981 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -1370 ((-219) (-219) (-219))) (-15 -1370 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -1643 ((-219) (-219) (-219))) (-15 -1643 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -1611 ((-219) (-219) (-219))) (-15 -1611 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -3000 ((-167 (-219)) (-167 (-219)))) (-15 -3000 ((-219) (-219))) (-15 -1273 ((-219) (-219))) (-15 -1273 ((-167 (-219)) (-167 (-219)))) (-15 -3938 ((-219) (-219) (-219))) (-15 -3938 ((-167 (-219)) (-167 (-219)) (-167 (-219)))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3769 (($ (-747) (-747)) NIL)) (-1648 (($ $ $) NIL)) (-3682 (($ (-1226 |#1|)) NIL) (($ $) NIL)) (-2783 (($ |#1| |#1| |#1|) 32)) (-2092 (((-112) $) NIL)) (-4206 (($ $ (-549) (-549)) NIL)) (-1769 (($ $ (-549) (-549)) NIL)) (-1624 (($ $ (-549) (-549) (-549) (-549)) NIL)) (-4218 (($ $) NIL)) (-2340 (((-112) $) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-1756 (($ $ (-549) (-549) $) NIL)) (-2254 ((|#1| $ (-549) (-549) |#1|) NIL) (($ $ (-621 (-549)) (-621 (-549)) $) NIL)) (-3537 (($ $ (-549) (-1226 |#1|)) NIL)) (-3815 (($ $ (-549) (-1226 |#1|)) NIL)) (-2945 (($ |#1| |#1| |#1|) 31)) (-2228 (($ (-747) |#1|) NIL)) (-1682 (($) NIL T CONST)) (-3460 (($ $) NIL (|has| |#1| (-300)))) (-4060 (((-1226 |#1|) $ (-549)) NIL)) (-2136 (($ |#1|) 30)) (-3872 (($ |#1|) 29)) (-4097 (($ |#1|) 28)) (-3123 (((-747) $) NIL (|has| |#1| (-541)))) (-1879 ((|#1| $ (-549) (-549) |#1|) NIL)) (-1809 ((|#1| $ (-549) (-549)) NIL)) (-2989 (((-621 |#1|) $) NIL)) (-1323 (((-747) $) NIL (|has| |#1| (-541)))) (-1479 (((-621 (-1226 |#1|)) $) NIL (|has| |#1| (-541)))) (-2142 (((-747) $) NIL)) (-3743 (($ (-747) (-747) |#1|) NIL)) (-2155 (((-747) $) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-1929 ((|#1| $) NIL (|has| |#1| (-6 (-4339 "*"))))) (-1761 (((-549) $) NIL)) (-2703 (((-549) $) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1661 (((-549) $) NIL)) (-1887 (((-549) $) NIL)) (-3946 (($ (-621 (-621 |#1|))) 11)) (-1868 (($ (-1 |#1| |#1|) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2913 (((-621 (-621 |#1|)) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3849 (((-3 $ "failed") $) NIL (|has| |#1| (-356)))) (-2459 (($) 12)) (-3571 (($ $ $) NIL)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1642 (($ $ |#1|) NIL)) (-2042 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541)))) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#1| $ (-549) (-549)) NIL) ((|#1| $ (-549) (-549) |#1|) NIL) (($ $ (-621 (-549)) (-621 (-549))) NIL)) (-2133 (($ (-621 |#1|)) NIL) (($ (-621 $)) NIL)) (-1757 (((-112) $) NIL)) (-2029 ((|#1| $) NIL (|has| |#1| (-6 (-4339 "*"))))) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) NIL)) (-2851 (((-1226 |#1|) $ (-549)) NIL)) (-3846 (($ (-1226 |#1|)) NIL) (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2974 (((-112) $) NIL)) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2500 (($ $ $) NIL) (($ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-549) $) NIL) (((-1226 |#1|) $ (-1226 |#1|)) 15) (((-1226 |#1|) (-1226 |#1|) $) NIL) (((-914 |#1|) $ (-914 |#1|)) 20)) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-221 |#1|) (-13 (-663 |#1| (-1226 |#1|) (-1226 |#1|)) (-10 -8 (-15 * ((-914 |#1|) $ (-914 |#1|))) (-15 -2459 ($)) (-15 -4097 ($ |#1|)) (-15 -3872 ($ |#1|)) (-15 -2136 ($ |#1|)) (-15 -2945 ($ |#1| |#1| |#1|)) (-15 -2783 ($ |#1| |#1| |#1|)))) (-13 (-356) (-1165))) (T -221))
-((* (*1 *2 *1 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1165))) (-5 *1 (-221 *3)))) (-2459 (*1 *1) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1165))))) (-4097 (*1 *1 *2) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1165))))) (-3872 (*1 *1 *2) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1165))))) (-2136 (*1 *1 *2) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1165))))) (-2945 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1165))))) (-2783 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1165))))))
-(-13 (-663 |#1| (-1226 |#1|) (-1226 |#1|)) (-10 -8 (-15 * ((-914 |#1|) $ (-914 |#1|))) (-15 -2459 ($)) (-15 -4097 ($ |#1|)) (-15 -3872 ($ |#1|)) (-15 -2136 ($ |#1|)) (-15 -2945 ($ |#1| |#1| |#1|)) (-15 -2783 ($ |#1| |#1| |#1|))))
-((-1717 (($ (-1 (-112) |#2|) $) 16)) (-2129 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 25)) (-2898 (($) NIL) (($ (-621 |#2|)) 11)) (-2389 (((-112) $ $) 23)))
-(((-222 |#1| |#2|) (-10 -8 (-15 -1717 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2129 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2129 (|#1| |#2| |#1|)) (-15 -2898 (|#1| (-621 |#2|))) (-15 -2898 (|#1|)) (-15 -2389 ((-112) |#1| |#1|))) (-223 |#2|) (-1067)) (T -222))
-NIL
-(-10 -8 (-15 -1717 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2129 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2129 (|#1| |#2| |#1|)) (-15 -2898 (|#1| (-621 |#2|))) (-15 -2898 (|#1|)) (-15 -2389 ((-112) |#1| |#1|)))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-1584 (((-112) $ (-747)) 8)) (-1717 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4337)))) (-1682 (($) 7 T CONST)) (-3676 (($ $) 58 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2129 (($ |#1| $) 47 (|has| $ (-6 -4337))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4337)))) (-3812 (($ |#1| $) 57 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4337)))) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) 9)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3504 ((|#1| $) 39)) (-2751 (($ |#1| $) 40)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3325 ((|#1| $) 41)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-2898 (($) 49) (($ (-621 |#1|)) 48)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-2845 (((-525) $) 59 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 50)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3624 (($ (-621 |#1|)) 42)) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-223 |#1|) (-138) (-1067)) (T -223))
+((-3832 (((-112) $ $) NIL)) (-2250 ((|#2| $ (-747) |#2|) 11)) (-3743 (($) 8)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3339 ((|#2| $ (-747)) 10)) (-3845 (((-834) $) 18)) (-2387 (((-112) $ $) 13)))
+(((-207 |#1| |#2|) (-13 (-1066) (-10 -8 (-15 -3743 ($)) (-15 -3339 (|#2| $ (-747))) (-15 -2250 (|#2| $ (-747) |#2|)))) (-892) (-1066)) (T -207))
+((-3743 (*1 *1) (-12 (-5 *1 (-207 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1066)))) (-3339 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *2 (-1066)) (-5 *1 (-207 *4 *2)) (-14 *4 (-892)))) (-2250 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-207 *4 *2)) (-14 *4 (-892)) (-4 *2 (-1066)))))
+(-13 (-1066) (-10 -8 (-15 -3743 ($)) (-15 -3339 (|#2| $ (-747))) (-15 -2250 (|#2| $ (-747) |#2|))))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-1674 (((-1230) $) 36) (((-1230) $ (-892) (-892)) 38)) (-3339 (($ $ (-960)) 19) (((-239 (-1124)) $ (-1142)) 15)) (-2697 (((-1230) $) 34)) (-3845 (((-834) $) 31) (($ (-621 |#1|)) 8)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $ $) 27)) (-2484 (($ $ $) 22)))
+(((-208 |#1|) (-13 (-1066) (-10 -8 (-15 -3339 ($ $ (-960))) (-15 -3339 ((-239 (-1124)) $ (-1142))) (-15 -2484 ($ $ $)) (-15 -2498 ($ $ $)) (-15 -3845 ($ (-621 |#1|))) (-15 -2697 ((-1230) $)) (-15 -1674 ((-1230) $)) (-15 -1674 ((-1230) $ (-892) (-892))))) (-13 (-823) (-10 -8 (-15 -3339 ((-1124) $ (-1142))) (-15 -2697 ((-1230) $)) (-15 -1674 ((-1230) $))))) (T -208))
+((-3339 (*1 *1 *1 *2) (-12 (-5 *2 (-960)) (-5 *1 (-208 *3)) (-4 *3 (-13 (-823) (-10 -8 (-15 -3339 ((-1124) $ (-1142))) (-15 -2697 ((-1230) $)) (-15 -1674 ((-1230) $))))))) (-3339 (*1 *2 *1 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-239 (-1124))) (-5 *1 (-208 *4)) (-4 *4 (-13 (-823) (-10 -8 (-15 -3339 ((-1124) $ *3)) (-15 -2697 ((-1230) $)) (-15 -1674 ((-1230) $))))))) (-2484 (*1 *1 *1 *1) (-12 (-5 *1 (-208 *2)) (-4 *2 (-13 (-823) (-10 -8 (-15 -3339 ((-1124) $ (-1142))) (-15 -2697 ((-1230) $)) (-15 -1674 ((-1230) $))))))) (-2498 (*1 *1 *1 *1) (-12 (-5 *1 (-208 *2)) (-4 *2 (-13 (-823) (-10 -8 (-15 -3339 ((-1124) $ (-1142))) (-15 -2697 ((-1230) $)) (-15 -1674 ((-1230) $))))))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-13 (-823) (-10 -8 (-15 -3339 ((-1124) $ (-1142))) (-15 -2697 ((-1230) $)) (-15 -1674 ((-1230) $))))) (-5 *1 (-208 *3)))) (-2697 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-208 *3)) (-4 *3 (-13 (-823) (-10 -8 (-15 -3339 ((-1124) $ (-1142))) (-15 -2697 (*2 $)) (-15 -1674 (*2 $))))))) (-1674 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-208 *3)) (-4 *3 (-13 (-823) (-10 -8 (-15 -3339 ((-1124) $ (-1142))) (-15 -2697 (*2 $)) (-15 -1674 (*2 $))))))) (-1674 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1230)) (-5 *1 (-208 *4)) (-4 *4 (-13 (-823) (-10 -8 (-15 -3339 ((-1124) $ (-1142))) (-15 -2697 (*2 $)) (-15 -1674 (*2 $))))))))
+(-13 (-1066) (-10 -8 (-15 -3339 ($ $ (-960))) (-15 -3339 ((-239 (-1124)) $ (-1142))) (-15 -2484 ($ $ $)) (-15 -2498 ($ $ $)) (-15 -3845 ($ (-621 |#1|))) (-15 -2697 ((-1230) $)) (-15 -1674 ((-1230) $)) (-15 -1674 ((-1230) $ (-892) (-892)))))
+((-2965 ((|#2| |#4| (-1 |#2| |#2|)) 46)))
+(((-209 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2965 (|#2| |#4| (-1 |#2| |#2|)))) (-356) (-1201 |#1|) (-1201 (-400 |#2|)) (-335 |#1| |#2| |#3|)) (T -209))
+((-2965 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-356)) (-4 *6 (-1201 (-400 *2))) (-4 *2 (-1201 *5)) (-5 *1 (-209 *5 *2 *6 *3)) (-4 *3 (-335 *5 *2 *6)))))
+(-10 -7 (-15 -2965 (|#2| |#4| (-1 |#2| |#2|))))
+((-3646 ((|#2| |#2| (-747) |#2|) 42)) (-1884 ((|#2| |#2| (-747) |#2|) 38)) (-1892 (((-621 |#2|) (-621 (-2 (|:| |deg| (-747)) (|:| -2538 |#2|)))) 57)) (-2852 (((-621 (-2 (|:| |deg| (-747)) (|:| -2538 |#2|))) |#2|) 53)) (-1355 (((-112) |#2|) 50)) (-3777 (((-411 |#2|) |#2|) 77)) (-2119 (((-411 |#2|) |#2|) 76)) (-4133 ((|#2| |#2| (-747) |#2|) 36)) (-4116 (((-2 (|:| |cont| |#1|) (|:| -3390 (-621 (-2 (|:| |irr| |#2|) (|:| -2129 (-549)))))) |#2| (-112)) 69)))
+(((-210 |#1| |#2|) (-10 -7 (-15 -2119 ((-411 |#2|) |#2|)) (-15 -3777 ((-411 |#2|) |#2|)) (-15 -4116 ((-2 (|:| |cont| |#1|) (|:| -3390 (-621 (-2 (|:| |irr| |#2|) (|:| -2129 (-549)))))) |#2| (-112))) (-15 -2852 ((-621 (-2 (|:| |deg| (-747)) (|:| -2538 |#2|))) |#2|)) (-15 -1892 ((-621 |#2|) (-621 (-2 (|:| |deg| (-747)) (|:| -2538 |#2|))))) (-15 -4133 (|#2| |#2| (-747) |#2|)) (-15 -1884 (|#2| |#2| (-747) |#2|)) (-15 -3646 (|#2| |#2| (-747) |#2|)) (-15 -1355 ((-112) |#2|))) (-342) (-1201 |#1|)) (T -210))
+((-1355 (*1 *2 *3) (-12 (-4 *4 (-342)) (-5 *2 (-112)) (-5 *1 (-210 *4 *3)) (-4 *3 (-1201 *4)))) (-3646 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-747)) (-4 *4 (-342)) (-5 *1 (-210 *4 *2)) (-4 *2 (-1201 *4)))) (-1884 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-747)) (-4 *4 (-342)) (-5 *1 (-210 *4 *2)) (-4 *2 (-1201 *4)))) (-4133 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-747)) (-4 *4 (-342)) (-5 *1 (-210 *4 *2)) (-4 *2 (-1201 *4)))) (-1892 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| |deg| (-747)) (|:| -2538 *5)))) (-4 *5 (-1201 *4)) (-4 *4 (-342)) (-5 *2 (-621 *5)) (-5 *1 (-210 *4 *5)))) (-2852 (*1 *2 *3) (-12 (-4 *4 (-342)) (-5 *2 (-621 (-2 (|:| |deg| (-747)) (|:| -2538 *3)))) (-5 *1 (-210 *4 *3)) (-4 *3 (-1201 *4)))) (-4116 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-342)) (-5 *2 (-2 (|:| |cont| *5) (|:| -3390 (-621 (-2 (|:| |irr| *3) (|:| -2129 (-549))))))) (-5 *1 (-210 *5 *3)) (-4 *3 (-1201 *5)))) (-3777 (*1 *2 *3) (-12 (-4 *4 (-342)) (-5 *2 (-411 *3)) (-5 *1 (-210 *4 *3)) (-4 *3 (-1201 *4)))) (-2119 (*1 *2 *3) (-12 (-4 *4 (-342)) (-5 *2 (-411 *3)) (-5 *1 (-210 *4 *3)) (-4 *3 (-1201 *4)))))
+(-10 -7 (-15 -2119 ((-411 |#2|) |#2|)) (-15 -3777 ((-411 |#2|) |#2|)) (-15 -4116 ((-2 (|:| |cont| |#1|) (|:| -3390 (-621 (-2 (|:| |irr| |#2|) (|:| -2129 (-549)))))) |#2| (-112))) (-15 -2852 ((-621 (-2 (|:| |deg| (-747)) (|:| -2538 |#2|))) |#2|)) (-15 -1892 ((-621 |#2|) (-621 (-2 (|:| |deg| (-747)) (|:| -2538 |#2|))))) (-15 -4133 (|#2| |#2| (-747) |#2|)) (-15 -1884 (|#2| |#2| (-747) |#2|)) (-15 -3646 (|#2| |#2| (-747) |#2|)) (-15 -1355 ((-112) |#2|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3833 (((-549) $) NIL (|has| (-549) (-300)))) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-549) (-880)))) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| (-549) (-880)))) (-2680 (((-112) $ $) NIL)) (-1741 (((-549) $) NIL (|has| (-549) (-796)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL) (((-3 (-1142) "failed") $) NIL (|has| (-549) (-1009 (-1142)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-549) (-1009 (-549)))) (((-3 (-549) "failed") $) NIL (|has| (-549) (-1009 (-549))))) (-2657 (((-549) $) NIL) (((-1142) $) NIL (|has| (-549) (-1009 (-1142)))) (((-400 (-549)) $) NIL (|has| (-549) (-1009 (-549)))) (((-549) $) NIL (|has| (-549) (-1009 (-549))))) (-2091 (($ $ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| (-549) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| (-549) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL) (((-665 (-549)) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) NIL (|has| (-549) (-534)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-2357 (((-112) $) NIL (|has| (-549) (-796)))) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| (-549) (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| (-549) (-857 (-372))))) (-2297 (((-112) $) NIL)) (-2096 (($ $) NIL)) (-1392 (((-549) $) NIL)) (-2964 (((-3 $ "failed") $) NIL (|has| (-549) (-1117)))) (-1992 (((-112) $) NIL (|has| (-549) (-796)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2861 (($ $ $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| (-549) (-823)))) (-2795 (($ (-1 (-549) (-549)) $) NIL)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL (|has| (-549) (-1117)) CONST)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1512 (($ $) NIL (|has| (-549) (-300))) (((-400 (-549)) $) NIL)) (-1349 (((-549) $) NIL (|has| (-549) (-534)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-549) (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-549) (-880)))) (-2119 (((-411 $) $) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2684 (($ $ (-621 (-549)) (-621 (-549))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-549) (-549)) NIL (|has| (-549) (-302 (-549)))) (($ $ (-287 (-549))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-621 (-287 (-549)))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-621 (-1142)) (-621 (-549))) NIL (|has| (-549) (-505 (-1142) (-549)))) (($ $ (-1142) (-549)) NIL (|has| (-549) (-505 (-1142) (-549))))) (-1335 (((-747) $) NIL)) (-3339 (($ $ (-549)) NIL (|has| (-549) (-279 (-549) (-549))))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3455 (($ $) NIL (|has| (-549) (-227))) (($ $ (-747)) NIL (|has| (-549) (-227))) (($ $ (-1142)) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-1 (-549) (-549)) (-747)) NIL) (($ $ (-1 (-549) (-549))) NIL)) (-4095 (($ $) NIL)) (-1404 (((-549) $) NIL)) (-2547 (($ (-400 (-549))) 9)) (-2843 (((-863 (-549)) $) NIL (|has| (-549) (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| (-549) (-594 (-863 (-372))))) (((-525) $) NIL (|has| (-549) (-594 (-525)))) (((-372) $) NIL (|has| (-549) (-993))) (((-219) $) NIL (|has| (-549) (-993)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-549) (-880))))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) 8) (($ (-549)) NIL) (($ (-1142)) NIL (|has| (-549) (-1009 (-1142)))) (((-400 (-549)) $) NIL) (((-975 10) $) 10)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-549) (-880))) (|has| (-549) (-143))))) (-2371 (((-747)) NIL)) (-3497 (((-549) $) NIL (|has| (-549) (-534)))) (-2441 (((-112) $ $) NIL)) (-2199 (($ $) NIL (|has| (-549) (-796)))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $) NIL (|has| (-549) (-227))) (($ $ (-747)) NIL (|has| (-549) (-227))) (($ $ (-1142)) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-1 (-549) (-549)) (-747)) NIL) (($ $ (-1 (-549) (-549))) NIL)) (-2447 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2423 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2409 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2511 (($ $ $) NIL) (($ (-549) (-549)) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ (-549) $) NIL) (($ $ (-549)) NIL)))
+(((-211) (-13 (-963 (-549)) (-10 -8 (-15 -3845 ((-400 (-549)) $)) (-15 -3845 ((-975 10) $)) (-15 -1512 ((-400 (-549)) $)) (-15 -2547 ($ (-400 (-549))))))) (T -211))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-211)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-975 10)) (-5 *1 (-211)))) (-1512 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-211)))) (-2547 (*1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-211)))))
+(-13 (-963 (-549)) (-10 -8 (-15 -3845 ((-400 (-549)) $)) (-15 -3845 ((-975 10) $)) (-15 -1512 ((-400 (-549)) $)) (-15 -2547 ($ (-400 (-549))))))
+((-3832 (((-112) $ $) NIL)) (-3985 (((-1084) $) 13)) (-3441 (((-1124) $) NIL)) (-2532 (((-475) $) 10)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 25) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2492 (((-1101) $) 15)) (-2387 (((-112) $ $) NIL)))
+(((-212) (-13 (-1049) (-10 -8 (-15 -2532 ((-475) $)) (-15 -3985 ((-1084) $)) (-15 -2492 ((-1101) $))))) (T -212))
+((-2532 (*1 *2 *1) (-12 (-5 *2 (-475)) (-5 *1 (-212)))) (-3985 (*1 *2 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-212)))) (-2492 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-212)))))
+(-13 (-1049) (-10 -8 (-15 -2532 ((-475) $)) (-15 -3985 ((-1084) $)) (-15 -2492 ((-1101) $))))
+((-3405 (((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1058 (-816 |#2|)) (-1124)) 28) (((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1058 (-816 |#2|))) 24)) (-2342 (((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1142) (-816 |#2|) (-816 |#2|) (-112)) 17)))
+(((-213 |#1| |#2|) (-10 -7 (-15 -3405 ((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1058 (-816 |#2|)))) (-15 -3405 ((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1058 (-816 |#2|)) (-1124))) (-15 -2342 ((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1142) (-816 |#2|) (-816 |#2|) (-112)))) (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))) (-13 (-1164) (-930) (-29 |#1|))) (T -213))
+((-2342 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-1142)) (-5 *6 (-112)) (-4 *7 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-4 *3 (-13 (-1164) (-930) (-29 *7))) (-5 *2 (-3 (|:| |f1| (-816 *3)) (|:| |f2| (-621 (-816 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-213 *7 *3)) (-5 *5 (-816 *3)))) (-3405 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1058 (-816 *3))) (-5 *5 (-1124)) (-4 *3 (-13 (-1164) (-930) (-29 *6))) (-4 *6 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 (|:| |f1| (-816 *3)) (|:| |f2| (-621 (-816 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-213 *6 *3)))) (-3405 (*1 *2 *3 *4) (-12 (-5 *4 (-1058 (-816 *3))) (-4 *3 (-13 (-1164) (-930) (-29 *5))) (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 (|:| |f1| (-816 *3)) (|:| |f2| (-621 (-816 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-213 *5 *3)))))
+(-10 -7 (-15 -3405 ((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1058 (-816 |#2|)))) (-15 -3405 ((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1058 (-816 |#2|)) (-1124))) (-15 -2342 ((-3 (|:| |f1| (-816 |#2|)) (|:| |f2| (-621 (-816 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1142) (-816 |#2|) (-816 |#2|) (-112))))
+((-3405 (((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1058 (-816 (-400 (-923 |#1|)))) (-1124)) 46) (((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1058 (-816 (-400 (-923 |#1|))))) 43) (((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1058 (-816 (-309 |#1|))) (-1124)) 47) (((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1058 (-816 (-309 |#1|)))) 20)))
+(((-214 |#1|) (-10 -7 (-15 -3405 ((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1058 (-816 (-309 |#1|))))) (-15 -3405 ((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1058 (-816 (-309 |#1|))) (-1124))) (-15 -3405 ((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1058 (-816 (-400 (-923 |#1|)))))) (-15 -3405 ((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1058 (-816 (-400 (-923 |#1|)))) (-1124)))) (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (T -214))
+((-3405 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1058 (-816 (-400 (-923 *6))))) (-5 *5 (-1124)) (-5 *3 (-400 (-923 *6))) (-4 *6 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 (|:| |f1| (-816 (-309 *6))) (|:| |f2| (-621 (-816 (-309 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-214 *6)))) (-3405 (*1 *2 *3 *4) (-12 (-5 *4 (-1058 (-816 (-400 (-923 *5))))) (-5 *3 (-400 (-923 *5))) (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 (|:| |f1| (-816 (-309 *5))) (|:| |f2| (-621 (-816 (-309 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-214 *5)))) (-3405 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-400 (-923 *6))) (-5 *4 (-1058 (-816 (-309 *6)))) (-5 *5 (-1124)) (-4 *6 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 (|:| |f1| (-816 (-309 *6))) (|:| |f2| (-621 (-816 (-309 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-214 *6)))) (-3405 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1058 (-816 (-309 *5)))) (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 (|:| |f1| (-816 (-309 *5))) (|:| |f2| (-621 (-816 (-309 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-214 *5)))))
+(-10 -7 (-15 -3405 ((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1058 (-816 (-309 |#1|))))) (-15 -3405 ((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1058 (-816 (-309 |#1|))) (-1124))) (-15 -3405 ((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1058 (-816 (-400 (-923 |#1|)))))) (-15 -3405 ((-3 (|:| |f1| (-816 (-309 |#1|))) (|:| |f2| (-621 (-816 (-309 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-400 (-923 |#1|)) (-1058 (-816 (-400 (-923 |#1|)))) (-1124))))
+((-2556 (((-2 (|:| -2443 (-1138 |#1|)) (|:| |deg| (-892))) (-1138 |#1|)) 21)) (-1448 (((-621 (-309 |#2|)) (-309 |#2|) (-892)) 42)))
+(((-215 |#1| |#2|) (-10 -7 (-15 -2556 ((-2 (|:| -2443 (-1138 |#1|)) (|:| |deg| (-892))) (-1138 |#1|))) (-15 -1448 ((-621 (-309 |#2|)) (-309 |#2|) (-892)))) (-1018) (-13 (-541) (-823))) (T -215))
+((-1448 (*1 *2 *3 *4) (-12 (-5 *4 (-892)) (-4 *6 (-13 (-541) (-823))) (-5 *2 (-621 (-309 *6))) (-5 *1 (-215 *5 *6)) (-5 *3 (-309 *6)) (-4 *5 (-1018)))) (-2556 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-5 *2 (-2 (|:| -2443 (-1138 *4)) (|:| |deg| (-892)))) (-5 *1 (-215 *4 *5)) (-5 *3 (-1138 *4)) (-4 *5 (-13 (-541) (-823))))))
+(-10 -7 (-15 -2556 ((-2 (|:| -2443 (-1138 |#1|)) (|:| |deg| (-892))) (-1138 |#1|))) (-15 -1448 ((-621 (-309 |#2|)) (-309 |#2|) (-892))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2810 ((|#1| $) NIL)) (-2316 ((|#1| $) 25)) (-2850 (((-112) $ (-747)) NIL)) (-3034 (($) NIL T CONST)) (-3030 (($ $) NIL)) (-2918 (($ $) 31)) (-3677 ((|#1| |#1| $) NIL)) (-1794 ((|#1| $) NIL)) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-4210 (((-747) $) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-2548 ((|#1| $) NIL)) (-3122 ((|#1| |#1| $) 28)) (-1592 ((|#1| |#1| $) 30)) (-1799 (($ |#1| $) NIL)) (-4036 (((-747) $) 27)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3082 ((|#1| $) NIL)) (-1879 ((|#1| $) 26)) (-3319 ((|#1| $) 24)) (-3536 ((|#1| $) NIL)) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-1396 ((|#1| |#1| $) NIL)) (-2643 (((-112) $) 9)) (-3288 (($) NIL)) (-4140 ((|#1| $) NIL)) (-3172 (($) NIL) (($ (-621 |#1|)) 16)) (-1319 (((-747) $) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3183 ((|#1| $) 13)) (-4213 (($ (-621 |#1|)) NIL)) (-3165 ((|#1| $) NIL)) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-216 |#1|) (-13 (-247 |#1|) (-10 -8 (-15 -3172 ($ (-621 |#1|))))) (-1066)) (T -216))
+((-3172 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-5 *1 (-216 *3)))))
+(-13 (-247 |#1|) (-10 -8 (-15 -3172 ($ (-621 |#1|)))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3901 (($ (-309 |#1|)) 23)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-1998 (((-112) $) NIL)) (-2712 (((-3 (-309 |#1|) "failed") $) NIL)) (-2657 (((-309 |#1|) $) NIL)) (-2068 (($ $) 31)) (-2612 (((-3 $ "failed") $) NIL)) (-2297 (((-112) $) NIL)) (-2795 (($ (-1 (-309 |#1|) (-309 |#1|)) $) NIL)) (-2042 (((-309 |#1|) $) NIL)) (-2245 (($ $) 30)) (-3441 (((-1124) $) NIL)) (-1303 (((-112) $) NIL)) (-3988 (((-1086) $) NIL)) (-4247 (($ (-747)) NIL)) (-1270 (($ $) 32)) (-3977 (((-549) $) NIL)) (-3845 (((-834) $) 57) (($ (-549)) NIL) (($ (-309 |#1|)) NIL)) (-4068 (((-309 |#1|) $ $) NIL)) (-2371 (((-747)) NIL)) (-3274 (($) 25 T CONST)) (-3286 (($) 50 T CONST)) (-2387 (((-112) $ $) 28)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) 19)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 24) (($ (-309 |#1|) $) 18)))
+(((-217 |#1| |#2|) (-13 (-598 (-309 |#1|)) (-1009 (-309 |#1|)) (-10 -8 (-15 -2042 ((-309 |#1|) $)) (-15 -2245 ($ $)) (-15 -2068 ($ $)) (-15 -4068 ((-309 |#1|) $ $)) (-15 -4247 ($ (-747))) (-15 -1303 ((-112) $)) (-15 -1998 ((-112) $)) (-15 -3977 ((-549) $)) (-15 -2795 ($ (-1 (-309 |#1|) (-309 |#1|)) $)) (-15 -3901 ($ (-309 |#1|))) (-15 -1270 ($ $)))) (-13 (-1018) (-823)) (-621 (-1142))) (T -217))
+((-2042 (*1 *2 *1) (-12 (-5 *2 (-309 *3)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823))) (-14 *4 (-621 (-1142))))) (-2245 (*1 *1 *1) (-12 (-5 *1 (-217 *2 *3)) (-4 *2 (-13 (-1018) (-823))) (-14 *3 (-621 (-1142))))) (-2068 (*1 *1 *1) (-12 (-5 *1 (-217 *2 *3)) (-4 *2 (-13 (-1018) (-823))) (-14 *3 (-621 (-1142))))) (-4068 (*1 *2 *1 *1) (-12 (-5 *2 (-309 *3)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823))) (-14 *4 (-621 (-1142))))) (-4247 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823))) (-14 *4 (-621 (-1142))))) (-1303 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823))) (-14 *4 (-621 (-1142))))) (-1998 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823))) (-14 *4 (-621 (-1142))))) (-3977 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823))) (-14 *4 (-621 (-1142))))) (-2795 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-309 *3) (-309 *3))) (-4 *3 (-13 (-1018) (-823))) (-5 *1 (-217 *3 *4)) (-14 *4 (-621 (-1142))))) (-3901 (*1 *1 *2) (-12 (-5 *2 (-309 *3)) (-4 *3 (-13 (-1018) (-823))) (-5 *1 (-217 *3 *4)) (-14 *4 (-621 (-1142))))) (-1270 (*1 *1 *1) (-12 (-5 *1 (-217 *2 *3)) (-4 *2 (-13 (-1018) (-823))) (-14 *3 (-621 (-1142))))))
+(-13 (-598 (-309 |#1|)) (-1009 (-309 |#1|)) (-10 -8 (-15 -2042 ((-309 |#1|) $)) (-15 -2245 ($ $)) (-15 -2068 ($ $)) (-15 -4068 ((-309 |#1|) $ $)) (-15 -4247 ($ (-747))) (-15 -1303 ((-112) $)) (-15 -1998 ((-112) $)) (-15 -3977 ((-549) $)) (-15 -2795 ($ (-1 (-309 |#1|) (-309 |#1|)) $)) (-15 -3901 ($ (-309 |#1|))) (-15 -1270 ($ $))))
+((-4101 (((-112) (-1124)) 22)) (-3002 (((-3 (-816 |#2|) "failed") (-592 |#2|) |#2| (-816 |#2|) (-816 |#2|) (-112)) 32)) (-3686 (((-3 (-112) "failed") (-1138 |#2|) (-816 |#2|) (-816 |#2|) (-112)) 73) (((-3 (-112) "failed") (-923 |#1|) (-1142) (-816 |#2|) (-816 |#2|) (-112)) 74)))
+(((-218 |#1| |#2|) (-10 -7 (-15 -4101 ((-112) (-1124))) (-15 -3002 ((-3 (-816 |#2|) "failed") (-592 |#2|) |#2| (-816 |#2|) (-816 |#2|) (-112))) (-15 -3686 ((-3 (-112) "failed") (-923 |#1|) (-1142) (-816 |#2|) (-816 |#2|) (-112))) (-15 -3686 ((-3 (-112) "failed") (-1138 |#2|) (-816 |#2|) (-816 |#2|) (-112)))) (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-1164) (-29 |#1|))) (T -218))
+((-3686 (*1 *2 *3 *4 *4 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1138 *6)) (-5 *4 (-816 *6)) (-4 *6 (-13 (-1164) (-29 *5))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-218 *5 *6)))) (-3686 (*1 *2 *3 *4 *5 *5 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-923 *6)) (-5 *4 (-1142)) (-5 *5 (-816 *7)) (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-4 *7 (-13 (-1164) (-29 *6))) (-5 *1 (-218 *6 *7)))) (-3002 (*1 *2 *3 *4 *2 *2 *5) (|partial| -12 (-5 *2 (-816 *4)) (-5 *3 (-592 *4)) (-5 *5 (-112)) (-4 *4 (-13 (-1164) (-29 *6))) (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-218 *6 *4)))) (-4101 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-112)) (-5 *1 (-218 *4 *5)) (-4 *5 (-13 (-1164) (-29 *4))))))
+(-10 -7 (-15 -4101 ((-112) (-1124))) (-15 -3002 ((-3 (-816 |#2|) "failed") (-592 |#2|) |#2| (-816 |#2|) (-816 |#2|) (-112))) (-15 -3686 ((-3 (-112) "failed") (-923 |#1|) (-1142) (-816 |#2|) (-816 |#2|) (-112))) (-15 -3686 ((-3 (-112) "failed") (-1138 |#2|) (-816 |#2|) (-816 |#2|) (-112))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 89)) (-3833 (((-549) $) 100)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-3691 (($ $) NIL)) (-1662 (($ $) 77)) (-1510 (($ $) 65)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2132 (($ $) 56)) (-2680 (((-112) $ $) NIL)) (-1638 (($ $) 75)) (-1483 (($ $) 63)) (-1741 (((-549) $) 117)) (-1684 (($ $) 80)) (-1538 (($ $) 67)) (-3034 (($) NIL T CONST)) (-2468 (($ $) NIL)) (-2712 (((-3 (-549) "failed") $) 116) (((-3 (-400 (-549)) "failed") $) 113)) (-2657 (((-549) $) 114) (((-400 (-549)) $) 111)) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) 93)) (-2991 (((-400 (-549)) $ (-747)) 109) (((-400 (-549)) $ (-747) (-747)) 108)) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-3234 (((-892)) 29) (((-892) (-892)) NIL (|has| $ (-6 -4327)))) (-2357 (((-112) $) NIL)) (-1425 (($) 39)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL)) (-2729 (((-549) $) 35)) (-2297 (((-112) $) NIL)) (-3621 (($ $ (-549)) NIL)) (-2469 (($ $) NIL)) (-1992 (((-112) $) 88)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2861 (($ $ $) 53) (($) 34 (-12 (-4007 (|has| $ (-6 -4319))) (-4007 (|has| $ (-6 -4327)))))) (-3574 (($ $ $) 52) (($) 33 (-12 (-4007 (|has| $ (-6 -4319))) (-4007 (|has| $ (-6 -4327)))))) (-1460 (((-549) $) 27)) (-4053 (($ $) 30)) (-2298 (($ $) 57)) (-3631 (($ $) 62)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-2385 (((-892) (-549)) NIL (|has| $ (-6 -4327)))) (-3988 (((-1086) $) 91)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1512 (($ $) NIL)) (-1349 (($ $) NIL)) (-1354 (($ (-549) (-549)) NIL) (($ (-549) (-549) (-892)) 101)) (-2119 (((-411 $) $) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1714 (((-549) $) 28)) (-2937 (($) 38)) (-2717 (($ $) 61)) (-1335 (((-747) $) NIL)) (-3647 (((-1124) (-1124)) 8)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-2234 (((-892)) NIL) (((-892) (-892)) NIL (|has| $ (-6 -4327)))) (-3455 (($ $ (-747)) NIL) (($ $) 94)) (-2584 (((-892) (-549)) NIL (|has| $ (-6 -4327)))) (-1696 (($ $) 78)) (-1551 (($ $) 68)) (-1673 (($ $) 79)) (-1525 (($ $) 66)) (-1648 (($ $) 76)) (-1500 (($ $) 64)) (-2843 (((-372) $) 105) (((-219) $) 102) (((-863 (-372)) $) NIL) (((-525) $) 45)) (-3845 (((-834) $) 42) (($ (-549)) 60) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-549)) 60) (($ (-400 (-549))) NIL)) (-2371 (((-747)) NIL)) (-3497 (($ $) NIL)) (-2690 (((-892)) 32) (((-892) (-892)) NIL (|has| $ (-6 -4327)))) (-1863 (((-892)) 25)) (-1731 (($ $) 83)) (-1585 (($ $) 71) (($ $ $) 110)) (-2441 (((-112) $ $) NIL)) (-1708 (($ $) 81)) (-1562 (($ $) 69)) (-1753 (($ $) 86)) (-1611 (($ $) 74)) (-1932 (($ $) 84)) (-1625 (($ $) 72)) (-1743 (($ $) 85)) (-1598 (($ $) 73)) (-1719 (($ $) 82)) (-1575 (($ $) 70)) (-2199 (($ $) 118)) (-3274 (($) 36 T CONST)) (-3286 (($) 37 T CONST)) (-4035 (((-1124) $) 19) (((-1124) $ (-112)) 21) (((-1230) (-798) $) 22) (((-1230) (-798) $ (-112)) 23)) (-3695 (($ $) 97)) (-1699 (($ $ (-747)) NIL) (($ $) NIL)) (-2051 (($ $ $) 99)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 54)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 46)) (-2511 (($ $ $) 87) (($ $ (-549)) 55)) (-2498 (($ $) 47) (($ $ $) 49)) (-2484 (($ $ $) 48)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) 58) (($ $ (-400 (-549))) 130) (($ $ $) 59)) (* (($ (-892) $) 31) (($ (-747) $) NIL) (($ (-549) $) 51) (($ $ $) 50) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL)))
+(((-219) (-13 (-397) (-227) (-804) (-1164) (-594 (-525)) (-10 -8 (-15 -2511 ($ $ (-549))) (-15 ** ($ $ $)) (-15 -2937 ($)) (-15 -4053 ($ $)) (-15 -2298 ($ $)) (-15 -1585 ($ $ $)) (-15 -3695 ($ $)) (-15 -2051 ($ $ $)) (-15 -3647 ((-1124) (-1124))) (-15 -2991 ((-400 (-549)) $ (-747))) (-15 -2991 ((-400 (-549)) $ (-747) (-747)))))) (T -219))
+((** (*1 *1 *1 *1) (-5 *1 (-219))) (-2511 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-219)))) (-2937 (*1 *1) (-5 *1 (-219))) (-4053 (*1 *1 *1) (-5 *1 (-219))) (-2298 (*1 *1 *1) (-5 *1 (-219))) (-1585 (*1 *1 *1 *1) (-5 *1 (-219))) (-3695 (*1 *1 *1) (-5 *1 (-219))) (-2051 (*1 *1 *1 *1) (-5 *1 (-219))) (-3647 (*1 *2 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-219)))) (-2991 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *2 (-400 (-549))) (-5 *1 (-219)))) (-2991 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-747)) (-5 *2 (-400 (-549))) (-5 *1 (-219)))))
+(-13 (-397) (-227) (-804) (-1164) (-594 (-525)) (-10 -8 (-15 -2511 ($ $ (-549))) (-15 ** ($ $ $)) (-15 -2937 ($)) (-15 -4053 ($ $)) (-15 -2298 ($ $)) (-15 -1585 ($ $ $)) (-15 -3695 ($ $)) (-15 -2051 ($ $ $)) (-15 -3647 ((-1124) (-1124))) (-15 -2991 ((-400 (-549)) $ (-747))) (-15 -2991 ((-400 (-549)) $ (-747) (-747)))))
+((-2974 (((-167 (-219)) (-747) (-167 (-219))) 11) (((-219) (-747) (-219)) 12)) (-1591 (((-167 (-219)) (-167 (-219))) 13) (((-219) (-219)) 14)) (-3992 (((-167 (-219)) (-167 (-219)) (-167 (-219))) 19) (((-219) (-219) (-219)) 22)) (-2711 (((-167 (-219)) (-167 (-219))) 25) (((-219) (-219)) 24)) (-3146 (((-167 (-219)) (-167 (-219)) (-167 (-219))) 43) (((-219) (-219) (-219)) 35)) (-4288 (((-167 (-219)) (-167 (-219)) (-167 (-219))) 48) (((-219) (-219) (-219)) 45)) (-3112 (((-167 (-219)) (-167 (-219)) (-167 (-219))) 15) (((-219) (-219) (-219)) 16)) (-2052 (((-167 (-219)) (-167 (-219)) (-167 (-219))) 17) (((-219) (-219) (-219)) 18)) (-3241 (((-167 (-219)) (-167 (-219))) 60) (((-219) (-219)) 59)) (-2016 (((-219) (-219)) 54) (((-167 (-219)) (-167 (-219))) 58)) (-3695 (((-167 (-219)) (-167 (-219))) 8) (((-219) (-219)) 9)) (-2051 (((-167 (-219)) (-167 (-219)) (-167 (-219))) 30) (((-219) (-219) (-219)) 26)))
+(((-220) (-10 -7 (-15 -3695 ((-219) (-219))) (-15 -3695 ((-167 (-219)) (-167 (-219)))) (-15 -2051 ((-219) (-219) (-219))) (-15 -2051 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -1591 ((-219) (-219))) (-15 -1591 ((-167 (-219)) (-167 (-219)))) (-15 -2711 ((-219) (-219))) (-15 -2711 ((-167 (-219)) (-167 (-219)))) (-15 -2974 ((-219) (-747) (-219))) (-15 -2974 ((-167 (-219)) (-747) (-167 (-219)))) (-15 -3112 ((-219) (-219) (-219))) (-15 -3112 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -3146 ((-219) (-219) (-219))) (-15 -3146 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -2052 ((-219) (-219) (-219))) (-15 -2052 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -4288 ((-219) (-219) (-219))) (-15 -4288 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -2016 ((-167 (-219)) (-167 (-219)))) (-15 -2016 ((-219) (-219))) (-15 -3241 ((-219) (-219))) (-15 -3241 ((-167 (-219)) (-167 (-219)))) (-15 -3992 ((-219) (-219) (-219))) (-15 -3992 ((-167 (-219)) (-167 (-219)) (-167 (-219)))))) (T -220))
+((-3992 (*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-3992 (*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-3241 (*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-3241 (*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-2016 (*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-2016 (*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-4288 (*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-4288 (*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-2052 (*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-2052 (*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-3146 (*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-3146 (*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-3112 (*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-3112 (*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-2974 (*1 *2 *3 *2) (-12 (-5 *2 (-167 (-219))) (-5 *3 (-747)) (-5 *1 (-220)))) (-2974 (*1 *2 *3 *2) (-12 (-5 *2 (-219)) (-5 *3 (-747)) (-5 *1 (-220)))) (-2711 (*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-2711 (*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-1591 (*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-1591 (*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-2051 (*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-2051 (*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))) (-3695 (*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))) (-3695 (*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220)))))
+(-10 -7 (-15 -3695 ((-219) (-219))) (-15 -3695 ((-167 (-219)) (-167 (-219)))) (-15 -2051 ((-219) (-219) (-219))) (-15 -2051 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -1591 ((-219) (-219))) (-15 -1591 ((-167 (-219)) (-167 (-219)))) (-15 -2711 ((-219) (-219))) (-15 -2711 ((-167 (-219)) (-167 (-219)))) (-15 -2974 ((-219) (-747) (-219))) (-15 -2974 ((-167 (-219)) (-747) (-167 (-219)))) (-15 -3112 ((-219) (-219) (-219))) (-15 -3112 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -3146 ((-219) (-219) (-219))) (-15 -3146 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -2052 ((-219) (-219) (-219))) (-15 -2052 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -4288 ((-219) (-219) (-219))) (-15 -4288 ((-167 (-219)) (-167 (-219)) (-167 (-219)))) (-15 -2016 ((-167 (-219)) (-167 (-219)))) (-15 -2016 ((-219) (-219))) (-15 -3241 ((-219) (-219))) (-15 -3241 ((-167 (-219)) (-167 (-219)))) (-15 -3992 ((-219) (-219) (-219))) (-15 -3992 ((-167 (-219)) (-167 (-219)) (-167 (-219)))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3768 (($ (-747) (-747)) NIL)) (-1976 (($ $ $) NIL)) (-4235 (($ (-1225 |#1|)) NIL) (($ $) NIL)) (-2781 (($ |#1| |#1| |#1|) 32)) (-1831 (((-112) $) NIL)) (-2558 (($ $ (-549) (-549)) NIL)) (-2600 (($ $ (-549) (-549)) NIL)) (-3036 (($ $ (-549) (-549) (-549) (-549)) NIL)) (-4179 (($ $) NIL)) (-1295 (((-112) $) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-3868 (($ $ (-549) (-549) $) NIL)) (-2250 ((|#1| $ (-549) (-549) |#1|) NIL) (($ $ (-621 (-549)) (-621 (-549)) $) NIL)) (-1389 (($ $ (-549) (-1225 |#1|)) NIL)) (-1843 (($ $ (-549) (-1225 |#1|)) NIL)) (-2828 (($ |#1| |#1| |#1|) 31)) (-2411 (($ (-747) |#1|) NIL)) (-3034 (($) NIL T CONST)) (-3474 (($ $) NIL (|has| |#1| (-300)))) (-3437 (((-1225 |#1|) $ (-549)) NIL)) (-3064 (($ |#1|) 30)) (-3972 (($ |#1|) 29)) (-3298 (($ |#1|) 28)) (-3121 (((-747) $) NIL (|has| |#1| (-541)))) (-1875 ((|#1| $ (-549) (-549) |#1|) NIL)) (-1807 ((|#1| $ (-549) (-549)) NIL)) (-2987 (((-621 |#1|) $) NIL)) (-4303 (((-747) $) NIL (|has| |#1| (-541)))) (-3290 (((-621 (-1225 |#1|)) $) NIL (|has| |#1| (-541)))) (-2140 (((-747) $) NIL)) (-3743 (($ (-747) (-747) |#1|) NIL)) (-2153 (((-747) $) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-4239 ((|#1| $) NIL (|has| |#1| (-6 (-4338 "*"))))) (-3057 (((-549) $) NIL)) (-3861 (((-549) $) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1766 (((-549) $) NIL)) (-2813 (((-549) $) NIL)) (-3944 (($ (-621 (-621 |#1|))) 11)) (-1864 (($ (-1 |#1| |#1|) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-1987 (((-621 (-621 |#1|)) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-1299 (((-3 $ "failed") $) NIL (|has| |#1| (-356)))) (-2516 (($) 12)) (-3516 (($ $ $) NIL)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-1943 (($ $ |#1|) NIL)) (-2040 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541)))) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#1| $ (-549) (-549)) NIL) ((|#1| $ (-549) (-549) |#1|) NIL) (($ $ (-621 (-549)) (-621 (-549))) NIL)) (-2874 (($ (-621 |#1|)) NIL) (($ (-621 $)) NIL)) (-2839 (((-112) $) NIL)) (-2842 ((|#1| $) NIL (|has| |#1| (-6 (-4338 "*"))))) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) NIL)) (-1476 (((-1225 |#1|) $ (-549)) NIL)) (-3845 (($ (-1225 |#1|)) NIL) (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-3752 (((-112) $) NIL)) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2498 (($ $ $) NIL) (($ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-549) $) NIL) (((-1225 |#1|) $ (-1225 |#1|)) 15) (((-1225 |#1|) (-1225 |#1|) $) NIL) (((-914 |#1|) $ (-914 |#1|)) 20)) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-221 |#1|) (-13 (-663 |#1| (-1225 |#1|) (-1225 |#1|)) (-10 -8 (-15 * ((-914 |#1|) $ (-914 |#1|))) (-15 -2516 ($)) (-15 -3298 ($ |#1|)) (-15 -3972 ($ |#1|)) (-15 -3064 ($ |#1|)) (-15 -2828 ($ |#1| |#1| |#1|)) (-15 -2781 ($ |#1| |#1| |#1|)))) (-13 (-356) (-1164))) (T -221))
+((* (*1 *2 *1 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1164))) (-5 *1 (-221 *3)))) (-2516 (*1 *1) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1164))))) (-3298 (*1 *1 *2) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1164))))) (-3972 (*1 *1 *2) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1164))))) (-3064 (*1 *1 *2) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1164))))) (-2828 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1164))))) (-2781 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1164))))))
+(-13 (-663 |#1| (-1225 |#1|) (-1225 |#1|)) (-10 -8 (-15 * ((-914 |#1|) $ (-914 |#1|))) (-15 -2516 ($)) (-15 -3298 ($ |#1|)) (-15 -3972 ($ |#1|)) (-15 -3064 ($ |#1|)) (-15 -2828 ($ |#1| |#1| |#1|)) (-15 -2781 ($ |#1| |#1| |#1|))))
+((-3827 (($ (-1 (-112) |#2|) $) 16)) (-3546 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 25)) (-3226 (($) NIL) (($ (-621 |#2|)) 11)) (-2387 (((-112) $ $) 23)))
+(((-222 |#1| |#2|) (-10 -8 (-15 -3827 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3546 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3546 (|#1| |#2| |#1|)) (-15 -3226 (|#1| (-621 |#2|))) (-15 -3226 (|#1|)) (-15 -2387 ((-112) |#1| |#1|))) (-223 |#2|) (-1066)) (T -222))
+NIL
+(-10 -8 (-15 -3827 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3546 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3546 (|#1| |#2| |#1|)) (-15 -3226 (|#1| (-621 |#2|))) (-15 -3226 (|#1|)) (-15 -2387 ((-112) |#1| |#1|)))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-2850 (((-112) $ (-747)) 8)) (-3827 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4336)))) (-3034 (($) 7 T CONST)) (-3675 (($ $) 58 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3546 (($ |#1| $) 47 (|has| $ (-6 -4336))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4336)))) (-3812 (($ |#1| $) 57 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4336)))) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) 9)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-2548 ((|#1| $) 39)) (-1799 (($ |#1| $) 40)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3536 ((|#1| $) 41)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3226 (($) 49) (($ (-621 |#1|)) 48)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-2843 (((-525) $) 59 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 50)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-4213 (($ (-621 |#1|)) 42)) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-223 |#1|) (-138) (-1066)) (T -223))
NIL
(-13 (-229 |t#1|))
-(((-34) . T) ((-106 |#1|) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-229 |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-1067) |has| |#1| (-1067)) ((-1180) . T))
-((-3456 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-747)) 11) (($ $ (-621 (-1143)) (-621 (-747))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143)) 19) (($ $ (-747)) NIL) (($ $) 16)) (-1702 (($ $ (-1 |#2| |#2|)) 12) (($ $ (-1 |#2| |#2|) (-747)) 14) (($ $ (-621 (-1143)) (-621 (-747))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143)) NIL) (($ $ (-747)) NIL) (($ $) NIL)))
-(((-224 |#1| |#2|) (-10 -8 (-15 -3456 (|#1| |#1|)) (-15 -1702 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -1702 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -1702 (|#1| |#1| (-1143))) (-15 -1702 (|#1| |#1| (-621 (-1143)))) (-15 -1702 (|#1| |#1| (-1143) (-747))) (-15 -1702 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -1702 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -1702 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|)))) (-225 |#2|) (-1018)) (T -224))
+(((-34) . T) ((-106 |#1|) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-229 |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-1066) |has| |#1| (-1066)) ((-1179) . T))
+((-3455 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-747)) 11) (($ $ (-621 (-1142)) (-621 (-747))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142)) 19) (($ $ (-747)) NIL) (($ $) 16)) (-1699 (($ $ (-1 |#2| |#2|)) 12) (($ $ (-1 |#2| |#2|) (-747)) 14) (($ $ (-621 (-1142)) (-621 (-747))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142)) NIL) (($ $ (-747)) NIL) (($ $) NIL)))
+(((-224 |#1| |#2|) (-10 -8 (-15 -3455 (|#1| |#1|)) (-15 -1699 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -1699 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -1699 (|#1| |#1| (-1142))) (-15 -1699 (|#1| |#1| (-621 (-1142)))) (-15 -1699 (|#1| |#1| (-1142) (-747))) (-15 -1699 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -1699 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -1699 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|)))) (-225 |#2|) (-1018)) (T -224))
NIL
-(-10 -8 (-15 -3456 (|#1| |#1|)) (-15 -1702 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -1702 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -1702 (|#1| |#1| (-1143))) (-15 -1702 (|#1| |#1| (-621 (-1143)))) (-15 -1702 (|#1| |#1| (-1143) (-747))) (-15 -1702 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -1702 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -1702 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3456 (($ $ (-1 |#1| |#1|)) 50) (($ $ (-1 |#1| |#1|) (-747)) 49) (($ $ (-621 (-1143)) (-621 (-747))) 42 (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) 41 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) 40 (|has| |#1| (-871 (-1143)))) (($ $ (-1143)) 39 (|has| |#1| (-871 (-1143)))) (($ $ (-747)) 37 (|has| |#1| (-227))) (($ $) 35 (|has| |#1| (-227)))) (-3846 (((-834) $) 11) (($ (-549)) 27)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ (-1 |#1| |#1|)) 48) (($ $ (-1 |#1| |#1|) (-747)) 47) (($ $ (-621 (-1143)) (-621 (-747))) 46 (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) 45 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) 44 (|has| |#1| (-871 (-1143)))) (($ $ (-1143)) 43 (|has| |#1| (-871 (-1143)))) (($ $ (-747)) 38 (|has| |#1| (-227))) (($ $) 36 (|has| |#1| (-227)))) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+(-10 -8 (-15 -3455 (|#1| |#1|)) (-15 -1699 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -1699 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -1699 (|#1| |#1| (-1142))) (-15 -1699 (|#1| |#1| (-621 (-1142)))) (-15 -1699 (|#1| |#1| (-1142) (-747))) (-15 -1699 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -1699 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -1699 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3455 (($ $ (-1 |#1| |#1|)) 50) (($ $ (-1 |#1| |#1|) (-747)) 49) (($ $ (-621 (-1142)) (-621 (-747))) 42 (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) 41 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) 40 (|has| |#1| (-871 (-1142)))) (($ $ (-1142)) 39 (|has| |#1| (-871 (-1142)))) (($ $ (-747)) 37 (|has| |#1| (-227))) (($ $) 35 (|has| |#1| (-227)))) (-3845 (((-834) $) 11) (($ (-549)) 27)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ (-1 |#1| |#1|)) 48) (($ $ (-1 |#1| |#1|) (-747)) 47) (($ $ (-621 (-1142)) (-621 (-747))) 46 (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) 45 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) 44 (|has| |#1| (-871 (-1142)))) (($ $ (-1142)) 43 (|has| |#1| (-871 (-1142)))) (($ $ (-747)) 38 (|has| |#1| (-227))) (($ $) 36 (|has| |#1| (-227)))) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-225 |#1|) (-138) (-1018)) (T -225))
-((-3456 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-225 *3)) (-4 *3 (-1018)))) (-3456 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-747)) (-4 *1 (-225 *4)) (-4 *4 (-1018)))) (-1702 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-225 *3)) (-4 *3 (-1018)))) (-1702 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-747)) (-4 *1 (-225 *4)) (-4 *4 (-1018)))))
-(-13 (-1018) (-10 -8 (-15 -3456 ($ $ (-1 |t#1| |t#1|))) (-15 -3456 ($ $ (-1 |t#1| |t#1|) (-747))) (-15 -1702 ($ $ (-1 |t#1| |t#1|))) (-15 -1702 ($ $ (-1 |t#1| |t#1|) (-747))) (IF (|has| |t#1| (-227)) (-6 (-227)) |%noBranch|) (IF (|has| |t#1| (-871 (-1143))) (-6 (-871 (-1143))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-227) |has| |#1| (-227)) ((-624 $) . T) ((-703) . T) ((-871 (-1143)) |has| |#1| (-871 (-1143))) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-3456 (($ $) NIL) (($ $ (-747)) 10)) (-1702 (($ $) 8) (($ $ (-747)) 12)))
-(((-226 |#1|) (-10 -8 (-15 -1702 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1| (-747))) (-15 -1702 (|#1| |#1|)) (-15 -3456 (|#1| |#1|))) (-227)) (T -226))
-NIL
-(-10 -8 (-15 -1702 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1| (-747))) (-15 -1702 (|#1| |#1|)) (-15 -3456 (|#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3456 (($ $) 36) (($ $ (-747)) 34)) (-3846 (((-834) $) 11) (($ (-549)) 27)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $) 35) (($ $ (-747)) 33)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+((-3455 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-225 *3)) (-4 *3 (-1018)))) (-3455 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-747)) (-4 *1 (-225 *4)) (-4 *4 (-1018)))) (-1699 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-225 *3)) (-4 *3 (-1018)))) (-1699 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-747)) (-4 *1 (-225 *4)) (-4 *4 (-1018)))))
+(-13 (-1018) (-10 -8 (-15 -3455 ($ $ (-1 |t#1| |t#1|))) (-15 -3455 ($ $ (-1 |t#1| |t#1|) (-747))) (-15 -1699 ($ $ (-1 |t#1| |t#1|))) (-15 -1699 ($ $ (-1 |t#1| |t#1|) (-747))) (IF (|has| |t#1| (-227)) (-6 (-227)) |%noBranch|) (IF (|has| |t#1| (-871 (-1142))) (-6 (-871 (-1142))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-227) |has| |#1| (-227)) ((-624 $) . T) ((-703) . T) ((-871 (-1142)) |has| |#1| (-871 (-1142))) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-3455 (($ $) NIL) (($ $ (-747)) 10)) (-1699 (($ $) 8) (($ $ (-747)) 12)))
+(((-226 |#1|) (-10 -8 (-15 -1699 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1| (-747))) (-15 -1699 (|#1| |#1|)) (-15 -3455 (|#1| |#1|))) (-227)) (T -226))
+NIL
+(-10 -8 (-15 -1699 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1| (-747))) (-15 -1699 (|#1| |#1|)) (-15 -3455 (|#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3455 (($ $) 36) (($ $ (-747)) 34)) (-3845 (((-834) $) 11) (($ (-549)) 27)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $) 35) (($ $ (-747)) 33)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-227) (-138)) (T -227))
-((-3456 (*1 *1 *1) (-4 *1 (-227))) (-1702 (*1 *1 *1) (-4 *1 (-227))) (-3456 (*1 *1 *1 *2) (-12 (-4 *1 (-227)) (-5 *2 (-747)))) (-1702 (*1 *1 *1 *2) (-12 (-4 *1 (-227)) (-5 *2 (-747)))))
-(-13 (-1018) (-10 -8 (-15 -3456 ($ $)) (-15 -1702 ($ $)) (-15 -3456 ($ $ (-747))) (-15 -1702 ($ $ (-747)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-2898 (($) 12) (($ (-621 |#2|)) NIL)) (-2281 (($ $) 14)) (-3854 (($ (-621 |#2|)) 10)) (-3846 (((-834) $) 21)))
-(((-228 |#1| |#2|) (-10 -8 (-15 -3846 ((-834) |#1|)) (-15 -2898 (|#1| (-621 |#2|))) (-15 -2898 (|#1|)) (-15 -3854 (|#1| (-621 |#2|))) (-15 -2281 (|#1| |#1|))) (-229 |#2|) (-1067)) (T -228))
-NIL
-(-10 -8 (-15 -3846 ((-834) |#1|)) (-15 -2898 (|#1| (-621 |#2|))) (-15 -2898 (|#1|)) (-15 -3854 (|#1| (-621 |#2|))) (-15 -2281 (|#1| |#1|)))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-1584 (((-112) $ (-747)) 8)) (-1717 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4337)))) (-1682 (($) 7 T CONST)) (-3676 (($ $) 58 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2129 (($ |#1| $) 47 (|has| $ (-6 -4337))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4337)))) (-3812 (($ |#1| $) 57 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4337)))) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) 9)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3504 ((|#1| $) 39)) (-2751 (($ |#1| $) 40)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3325 ((|#1| $) 41)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-2898 (($) 49) (($ (-621 |#1|)) 48)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-2845 (((-525) $) 59 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 50)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3624 (($ (-621 |#1|)) 42)) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-229 |#1|) (-138) (-1067)) (T -229))
-((-2898 (*1 *1) (-12 (-4 *1 (-229 *2)) (-4 *2 (-1067)))) (-2898 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-4 *1 (-229 *3)))) (-2129 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-229 *2)) (-4 *2 (-1067)))) (-2129 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4337)) (-4 *1 (-229 *3)) (-4 *3 (-1067)))) (-1717 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4337)) (-4 *1 (-229 *3)) (-4 *3 (-1067)))))
-(-13 (-106 |t#1|) (-149 |t#1|) (-10 -8 (-15 -2898 ($)) (-15 -2898 ($ (-621 |t#1|))) (IF (|has| $ (-6 -4337)) (PROGN (-15 -2129 ($ |t#1| $)) (-15 -2129 ($ (-1 (-112) |t#1|) $)) (-15 -1717 ($ (-1 (-112) |t#1|) $))) |%noBranch|)))
-(((-34) . T) ((-106 |#1|) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-1067) |has| |#1| (-1067)) ((-1180) . T))
-((-4195 (((-2 (|:| |varOrder| (-621 (-1143))) (|:| |inhom| (-3 (-621 (-1226 (-747))) "failed")) (|:| |hom| (-621 (-1226 (-747))))) (-287 (-923 (-549)))) 27)))
-(((-230) (-10 -7 (-15 -4195 ((-2 (|:| |varOrder| (-621 (-1143))) (|:| |inhom| (-3 (-621 (-1226 (-747))) "failed")) (|:| |hom| (-621 (-1226 (-747))))) (-287 (-923 (-549))))))) (T -230))
-((-4195 (*1 *2 *3) (-12 (-5 *3 (-287 (-923 (-549)))) (-5 *2 (-2 (|:| |varOrder| (-621 (-1143))) (|:| |inhom| (-3 (-621 (-1226 (-747))) "failed")) (|:| |hom| (-621 (-1226 (-747)))))) (-5 *1 (-230)))))
-(-10 -7 (-15 -4195 ((-2 (|:| |varOrder| (-621 (-1143))) (|:| |inhom| (-3 (-621 (-1226 (-747))) "failed")) (|:| |hom| (-621 (-1226 (-747))))) (-287 (-923 (-549))))))
-((-3614 (((-747)) 51)) (-3879 (((-2 (|:| -3521 (-665 |#3|)) (|:| |vec| (-1226 |#3|))) (-665 $) (-1226 $)) 49) (((-665 |#3|) (-665 $)) 41) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL) (((-665 (-549)) (-665 $)) NIL)) (-2985 (((-133)) 57)) (-3456 (($ $ (-1 |#3| |#3|) (-747)) NIL) (($ $ (-1 |#3| |#3|)) 18) (($ $ (-621 (-1143)) (-621 (-747))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143)) NIL) (($ $ (-747)) NIL) (($ $) NIL)) (-3846 (((-1226 |#3|) $) NIL) (($ |#3|) NIL) (((-834) $) NIL) (($ (-549)) 12) (($ (-400 (-549))) NIL)) (-2082 (((-747)) 15)) (-2513 (($ $ |#3|) 54)))
-(((-231 |#1| |#2| |#3|) (-10 -8 (-15 -3846 (|#1| (-400 (-549)))) (-15 -3846 (|#1| (-549))) (-15 -3846 ((-834) |#1|)) (-15 -2082 ((-747))) (-15 -3456 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3879 ((-665 (-549)) (-665 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 |#1|) (-1226 |#1|))) (-15 -3846 (|#1| |#3|)) (-15 -3456 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3456 (|#1| |#1| (-1 |#3| |#3|) (-747))) (-15 -3879 ((-665 |#3|) (-665 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 |#3|)) (|:| |vec| (-1226 |#3|))) (-665 |#1|) (-1226 |#1|))) (-15 -3614 ((-747))) (-15 -2513 (|#1| |#1| |#3|)) (-15 -2985 ((-133))) (-15 -3846 ((-1226 |#3|) |#1|))) (-232 |#2| |#3|) (-747) (-1180)) (T -231))
-((-2985 (*1 *2) (-12 (-14 *4 (-747)) (-4 *5 (-1180)) (-5 *2 (-133)) (-5 *1 (-231 *3 *4 *5)) (-4 *3 (-232 *4 *5)))) (-3614 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1180)) (-5 *2 (-747)) (-5 *1 (-231 *3 *4 *5)) (-4 *3 (-232 *4 *5)))) (-2082 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1180)) (-5 *2 (-747)) (-5 *1 (-231 *3 *4 *5)) (-4 *3 (-232 *4 *5)))))
-(-10 -8 (-15 -3846 (|#1| (-400 (-549)))) (-15 -3846 (|#1| (-549))) (-15 -3846 ((-834) |#1|)) (-15 -2082 ((-747))) (-15 -3456 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3879 ((-665 (-549)) (-665 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 |#1|) (-1226 |#1|))) (-15 -3846 (|#1| |#3|)) (-15 -3456 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3456 (|#1| |#1| (-1 |#3| |#3|) (-747))) (-15 -3879 ((-665 |#3|) (-665 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 |#3|)) (|:| |vec| (-1226 |#3|))) (-665 |#1|) (-1226 |#1|))) (-15 -3614 ((-747))) (-15 -2513 (|#1| |#1| |#3|)) (-15 -2985 ((-133))) (-15 -3846 ((-1226 |#3|) |#1|)))
-((-3834 (((-112) $ $) 19 (|has| |#2| (-1067)))) (-1763 (((-112) $) 72 (|has| |#2| (-130)))) (-3956 (($ (-892)) 125 (|has| |#2| (-1018)))) (-1535 (((-1231) $ (-549) (-549)) 40 (|has| $ (-6 -4338)))) (-2861 (($ $ $) 121 (|has| |#2| (-769)))) (-2001 (((-3 $ "failed") $ $) 74 (|has| |#2| (-130)))) (-1584 (((-112) $ (-747)) 8)) (-3614 (((-747)) 107 (|has| |#2| (-361)))) (-1872 (((-549) $) 119 (|has| |#2| (-821)))) (-2254 ((|#2| $ (-549) |#2|) 52 (|has| $ (-6 -4338)))) (-1682 (($) 7 T CONST)) (-2714 (((-3 (-549) "failed") $) 67 (-1821 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1067)))) (((-3 (-400 (-549)) "failed") $) 64 (-1821 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1067)))) (((-3 |#2| "failed") $) 61 (|has| |#2| (-1067)))) (-2659 (((-549) $) 68 (-1821 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1067)))) (((-400 (-549)) $) 65 (-1821 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1067)))) ((|#2| $) 60 (|has| |#2| (-1067)))) (-3879 (((-665 (-549)) (-665 $)) 106 (-1821 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 105 (-1821 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018)))) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) 104 (|has| |#2| (-1018))) (((-665 |#2|) (-665 $)) 103 (|has| |#2| (-1018)))) (-2114 (((-3 $ "failed") $) 79 (|has| |#2| (-703)))) (-3239 (($) 110 (|has| |#2| (-361)))) (-1879 ((|#2| $ (-549) |#2|) 53 (|has| $ (-6 -4338)))) (-1809 ((|#2| $ (-549)) 51)) (-2772 (((-112) $) 117 (|has| |#2| (-821)))) (-2989 (((-621 |#2|) $) 30 (|has| $ (-6 -4337)))) (-2675 (((-112) $) 81 (|has| |#2| (-703)))) (-2374 (((-112) $) 118 (|has| |#2| (-821)))) (-3194 (((-112) $ (-747)) 9)) (-4031 (((-549) $) 43 (|has| (-549) (-823)))) (-2863 (($ $ $) 116 (-1536 (|has| |#2| (-821)) (|has| |#2| (-769))))) (-1562 (((-621 |#2|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#2| $) 27 (-12 (|has| |#2| (-1067)) (|has| $ (-6 -4337))))) (-1569 (((-549) $) 44 (|has| (-549) (-823)))) (-3575 (($ $ $) 115 (-1536 (|has| |#2| (-821)) (|has| |#2| (-769))))) (-1868 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#2| |#2|) $) 35)) (-1881 (((-892) $) 109 (|has| |#2| (-361)))) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (|has| |#2| (-1067)))) (-3303 (((-621 (-549)) $) 46)) (-3761 (((-112) (-549) $) 47)) (-3493 (($ (-892)) 108 (|has| |#2| (-361)))) (-3990 (((-1087) $) 21 (|has| |#2| (-1067)))) (-3646 ((|#2| $) 42 (|has| (-549) (-823)))) (-1642 (($ $ |#2|) 41 (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#2|))) 26 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-287 |#2|)) 25 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 |#2|) (-621 |#2|)) 23 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))) (-4144 (((-112) $ $) 14)) (-2265 (((-112) |#2| $) 45 (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-2696 (((-621 |#2|) $) 48)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#2| $ (-549) |#2|) 50) ((|#2| $ (-549)) 49)) (-1706 ((|#2| $ $) 124 (|has| |#2| (-1018)))) (-2169 (($ (-1226 |#2|)) 126)) (-2985 (((-133)) 123 (|has| |#2| (-356)))) (-3456 (($ $) 98 (-1821 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-747)) 96 (-1821 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-1143)) 94 (-1821 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-621 (-1143))) 93 (-1821 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-1143) (-747)) 92 (-1821 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-621 (-1143)) (-621 (-747))) 91 (-1821 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-1 |#2| |#2|) (-747)) 84 (|has| |#2| (-1018))) (($ $ (-1 |#2| |#2|)) 83 (|has| |#2| (-1018)))) (-4000 (((-747) (-1 (-112) |#2|) $) 31 (|has| $ (-6 -4337))) (((-747) |#2| $) 28 (-12 (|has| |#2| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-3846 (((-1226 |#2|) $) 127) (($ (-549)) 66 (-1536 (-1821 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1067))) (|has| |#2| (-1018)))) (($ (-400 (-549))) 63 (-1821 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1067)))) (($ |#2|) 62 (|has| |#2| (-1067))) (((-834) $) 18 (|has| |#2| (-593 (-834))))) (-2082 (((-747)) 102 (|has| |#2| (-1018)))) (-3527 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4337)))) (-3212 (($ $) 120 (|has| |#2| (-821)))) (-3276 (($) 71 (|has| |#2| (-130)) CONST)) (-3287 (($) 82 (|has| |#2| (-703)) CONST)) (-1702 (($ $) 97 (-1821 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-747)) 95 (-1821 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-1143)) 90 (-1821 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-621 (-1143))) 89 (-1821 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-1143) (-747)) 88 (-1821 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-621 (-1143)) (-621 (-747))) 87 (-1821 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-1 |#2| |#2|) (-747)) 86 (|has| |#2| (-1018))) (($ $ (-1 |#2| |#2|)) 85 (|has| |#2| (-1018)))) (-2448 (((-112) $ $) 113 (-1536 (|has| |#2| (-821)) (|has| |#2| (-769))))) (-2425 (((-112) $ $) 112 (-1536 (|has| |#2| (-821)) (|has| |#2| (-769))))) (-2389 (((-112) $ $) 20 (|has| |#2| (-1067)))) (-2438 (((-112) $ $) 114 (-1536 (|has| |#2| (-821)) (|has| |#2| (-769))))) (-2412 (((-112) $ $) 111 (-1536 (|has| |#2| (-821)) (|has| |#2| (-769))))) (-2513 (($ $ |#2|) 122 (|has| |#2| (-356)))) (-2500 (($ $ $) 100 (|has| |#2| (-1018))) (($ $) 99 (|has| |#2| (-1018)))) (-2486 (($ $ $) 69 (|has| |#2| (-25)))) (** (($ $ (-747)) 80 (|has| |#2| (-703))) (($ $ (-892)) 77 (|has| |#2| (-703)))) (* (($ (-549) $) 101 (|has| |#2| (-1018))) (($ $ $) 78 (|has| |#2| (-703))) (($ $ |#2|) 76 (|has| |#2| (-703))) (($ |#2| $) 75 (|has| |#2| (-703))) (($ (-747) $) 73 (|has| |#2| (-130))) (($ (-892) $) 70 (|has| |#2| (-25)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-232 |#1| |#2|) (-138) (-747) (-1180)) (T -232))
-((-2169 (*1 *1 *2) (-12 (-5 *2 (-1226 *4)) (-4 *4 (-1180)) (-4 *1 (-232 *3 *4)))) (-3956 (*1 *1 *2) (-12 (-5 *2 (-892)) (-4 *1 (-232 *3 *4)) (-4 *4 (-1018)) (-4 *4 (-1180)))) (-1706 (*1 *2 *1 *1) (-12 (-4 *1 (-232 *3 *2)) (-4 *2 (-1180)) (-4 *2 (-1018)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-232 *3 *2)) (-4 *2 (-1180)) (-4 *2 (-703)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-232 *3 *2)) (-4 *2 (-1180)) (-4 *2 (-703)))))
-(-13 (-584 (-549) |t#2|) (-593 (-1226 |t#2|)) (-10 -8 (-6 -4337) (-15 -2169 ($ (-1226 |t#2|))) (IF (|has| |t#2| (-1067)) (-6 (-404 |t#2|)) |%noBranch|) (IF (|has| |t#2| (-1018)) (PROGN (-6 (-111 |t#2| |t#2|)) (-6 (-225 |t#2|)) (-6 (-370 |t#2|)) (-15 -3956 ($ (-892))) (-15 -1706 (|t#2| $ $))) |%noBranch|) (IF (|has| |t#2| (-25)) (-6 (-25)) |%noBranch|) (IF (|has| |t#2| (-130)) (-6 (-130)) |%noBranch|) (IF (|has| |t#2| (-703)) (PROGN (-6 (-703)) (-15 * ($ |t#2| $)) (-15 * ($ $ |t#2|))) |%noBranch|) (IF (|has| |t#2| (-361)) (-6 (-361)) |%noBranch|) (IF (|has| |t#2| (-170)) (PROGN (-6 (-38 |t#2|)) (-6 (-170))) |%noBranch|) (IF (|has| |t#2| (-6 -4334)) (-6 -4334) |%noBranch|) (IF (|has| |t#2| (-821)) (-6 (-821)) |%noBranch|) (IF (|has| |t#2| (-769)) (-6 (-769)) |%noBranch|) (IF (|has| |t#2| (-356)) (-6 (-1233 |t#2|)) |%noBranch|)))
-(((-21) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-356)) (|has| |#2| (-170))) ((-23) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-769)) (|has| |#2| (-356)) (|has| |#2| (-170)) (|has| |#2| (-130))) ((-25) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-769)) (|has| |#2| (-356)) (|has| |#2| (-170)) (|has| |#2| (-130)) (|has| |#2| (-25))) ((-34) . T) ((-38 |#2|) |has| |#2| (-170)) ((-101) -1536 (|has| |#2| (-1067)) (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-769)) (|has| |#2| (-703)) (|has| |#2| (-361)) (|has| |#2| (-356)) (|has| |#2| (-170)) (|has| |#2| (-130)) (|has| |#2| (-25))) ((-111 |#2| |#2|) -1536 (|has| |#2| (-1018)) (|has| |#2| (-356)) (|has| |#2| (-170))) ((-111 $ $) |has| |#2| (-170)) ((-130) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-769)) (|has| |#2| (-356)) (|has| |#2| (-170)) (|has| |#2| (-130))) ((-593 (-834)) -1536 (|has| |#2| (-1067)) (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-769)) (|has| |#2| (-703)) (|has| |#2| (-361)) (|has| |#2| (-356)) (|has| |#2| (-170)) (|has| |#2| (-593 (-834))) (|has| |#2| (-130)) (|has| |#2| (-25))) ((-593 (-1226 |#2|)) . T) ((-170) |has| |#2| (-170)) ((-225 |#2|) |has| |#2| (-1018)) ((-227) -12 (|has| |#2| (-227)) (|has| |#2| (-1018))) ((-279 #0=(-549) |#2|) . T) ((-281 #0# |#2|) . T) ((-302 |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) ((-361) |has| |#2| (-361)) ((-370 |#2|) |has| |#2| (-1018)) ((-404 |#2|) |has| |#2| (-1067)) ((-481 |#2|) . T) ((-584 #0# |#2|) . T) ((-505 |#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) ((-624 |#2|) -1536 (|has| |#2| (-1018)) (|has| |#2| (-356)) (|has| |#2| (-170))) ((-624 $) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-170))) ((-617 (-549)) -12 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018))) ((-617 |#2|) |has| |#2| (-1018)) ((-694 |#2|) -1536 (|has| |#2| (-356)) (|has| |#2| (-170))) ((-703) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-703)) (|has| |#2| (-170))) ((-767) |has| |#2| (-821)) ((-768) -1536 (|has| |#2| (-821)) (|has| |#2| (-769))) ((-769) |has| |#2| (-769)) ((-770) -1536 (|has| |#2| (-821)) (|has| |#2| (-769))) ((-771) -1536 (|has| |#2| (-821)) (|has| |#2| (-769))) ((-821) |has| |#2| (-821)) ((-823) -1536 (|has| |#2| (-821)) (|has| |#2| (-769))) ((-871 (-1143)) -12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018))) ((-1009 (-400 (-549))) -12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1067))) ((-1009 (-549)) -12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1067))) ((-1009 |#2|) |has| |#2| (-1067)) ((-1024 |#2|) -1536 (|has| |#2| (-1018)) (|has| |#2| (-356)) (|has| |#2| (-170))) ((-1024 $) |has| |#2| (-170)) ((-1018) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-170))) ((-1025) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-170))) ((-1079) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-703)) (|has| |#2| (-170))) ((-1067) -1536 (|has| |#2| (-1067)) (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-769)) (|has| |#2| (-703)) (|has| |#2| (-361)) (|has| |#2| (-356)) (|has| |#2| (-170)) (|has| |#2| (-130)) (|has| |#2| (-25))) ((-1180) . T) ((-1233 |#2|) |has| |#2| (-356)))
-((-3804 (((-234 |#1| |#3|) (-1 |#3| |#2| |#3|) (-234 |#1| |#2|) |#3|) 21)) (-2557 ((|#3| (-1 |#3| |#2| |#3|) (-234 |#1| |#2|) |#3|) 23)) (-2797 (((-234 |#1| |#3|) (-1 |#3| |#2|) (-234 |#1| |#2|)) 18)))
-(((-233 |#1| |#2| |#3|) (-10 -7 (-15 -3804 ((-234 |#1| |#3|) (-1 |#3| |#2| |#3|) (-234 |#1| |#2|) |#3|)) (-15 -2557 (|#3| (-1 |#3| |#2| |#3|) (-234 |#1| |#2|) |#3|)) (-15 -2797 ((-234 |#1| |#3|) (-1 |#3| |#2|) (-234 |#1| |#2|)))) (-747) (-1180) (-1180)) (T -233))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-234 *5 *6)) (-14 *5 (-747)) (-4 *6 (-1180)) (-4 *7 (-1180)) (-5 *2 (-234 *5 *7)) (-5 *1 (-233 *5 *6 *7)))) (-2557 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-234 *5 *6)) (-14 *5 (-747)) (-4 *6 (-1180)) (-4 *2 (-1180)) (-5 *1 (-233 *5 *6 *2)))) (-3804 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-234 *6 *7)) (-14 *6 (-747)) (-4 *7 (-1180)) (-4 *5 (-1180)) (-5 *2 (-234 *6 *5)) (-5 *1 (-233 *6 *7 *5)))))
-(-10 -7 (-15 -3804 ((-234 |#1| |#3|) (-1 |#3| |#2| |#3|) (-234 |#1| |#2|) |#3|)) (-15 -2557 (|#3| (-1 |#3| |#2| |#3|) (-234 |#1| |#2|) |#3|)) (-15 -2797 ((-234 |#1| |#3|) (-1 |#3| |#2|) (-234 |#1| |#2|))))
-((-3834 (((-112) $ $) NIL (|has| |#2| (-1067)))) (-1763 (((-112) $) NIL (|has| |#2| (-130)))) (-3956 (($ (-892)) 56 (|has| |#2| (-1018)))) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-2861 (($ $ $) 60 (|has| |#2| (-769)))) (-2001 (((-3 $ "failed") $ $) 49 (|has| |#2| (-130)))) (-1584 (((-112) $ (-747)) 17)) (-3614 (((-747)) NIL (|has| |#2| (-361)))) (-1872 (((-549) $) NIL (|has| |#2| (-821)))) (-2254 ((|#2| $ (-549) |#2|) NIL (|has| $ (-6 -4338)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1067)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1067)))) (((-3 |#2| "failed") $) 29 (|has| |#2| (-1067)))) (-2659 (((-549) $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1067)))) (((-400 (-549)) $) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1067)))) ((|#2| $) 27 (|has| |#2| (-1067)))) (-3879 (((-665 (-549)) (-665 $)) NIL (-12 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (-12 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018)))) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) NIL (|has| |#2| (-1018))) (((-665 |#2|) (-665 $)) NIL (|has| |#2| (-1018)))) (-2114 (((-3 $ "failed") $) 53 (|has| |#2| (-703)))) (-3239 (($) NIL (|has| |#2| (-361)))) (-1879 ((|#2| $ (-549) |#2|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#2| $ (-549)) 51)) (-2772 (((-112) $) NIL (|has| |#2| (-821)))) (-2989 (((-621 |#2|) $) 15 (|has| $ (-6 -4337)))) (-2675 (((-112) $) NIL (|has| |#2| (-703)))) (-2374 (((-112) $) NIL (|has| |#2| (-821)))) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) 20 (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-1562 (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-1569 (((-549) $) 50 (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-1868 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#2| |#2|) $) 41)) (-1881 (((-892) $) NIL (|has| |#2| (-361)))) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#2| (-1067)))) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3493 (($ (-892)) NIL (|has| |#2| (-361)))) (-3990 (((-1087) $) NIL (|has| |#2| (-1067)))) (-3646 ((|#2| $) NIL (|has| (-549) (-823)))) (-1642 (($ $ |#2|) NIL (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#2|) $) 24 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-2696 (((-621 |#2|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#2| $ (-549) |#2|) NIL) ((|#2| $ (-549)) 21)) (-1706 ((|#2| $ $) NIL (|has| |#2| (-1018)))) (-2169 (($ (-1226 |#2|)) 18)) (-2985 (((-133)) NIL (|has| |#2| (-356)))) (-3456 (($ $) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-1143)) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-1 |#2| |#2|) (-747)) NIL (|has| |#2| (-1018))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1018)))) (-4000 (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-2281 (($ $) NIL)) (-3846 (((-1226 |#2|) $) 10) (($ (-549)) NIL (-1536 (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1067))) (|has| |#2| (-1018)))) (($ (-400 (-549))) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1067)))) (($ |#2|) 13 (|has| |#2| (-1067))) (((-834) $) NIL (|has| |#2| (-593 (-834))))) (-2082 (((-747)) NIL (|has| |#2| (-1018)))) (-3527 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-3212 (($ $) NIL (|has| |#2| (-821)))) (-3276 (($) 35 (|has| |#2| (-130)) CONST)) (-3287 (($) 38 (|has| |#2| (-703)) CONST)) (-1702 (($ $) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-1143)) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-1 |#2| |#2|) (-747)) NIL (|has| |#2| (-1018))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1018)))) (-2448 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2425 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2389 (((-112) $ $) 26 (|has| |#2| (-1067)))) (-2438 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2412 (((-112) $ $) 58 (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2513 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2500 (($ $ $) NIL (|has| |#2| (-1018))) (($ $) NIL (|has| |#2| (-1018)))) (-2486 (($ $ $) 33 (|has| |#2| (-25)))) (** (($ $ (-747)) NIL (|has| |#2| (-703))) (($ $ (-892)) NIL (|has| |#2| (-703)))) (* (($ (-549) $) NIL (|has| |#2| (-1018))) (($ $ $) 44 (|has| |#2| (-703))) (($ $ |#2|) 42 (|has| |#2| (-703))) (($ |#2| $) 43 (|has| |#2| (-703))) (($ (-747) $) NIL (|has| |#2| (-130))) (($ (-892) $) NIL (|has| |#2| (-25)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-234 |#1| |#2|) (-232 |#1| |#2|) (-747) (-1180)) (T -234))
+((-3455 (*1 *1 *1) (-4 *1 (-227))) (-1699 (*1 *1 *1) (-4 *1 (-227))) (-3455 (*1 *1 *1 *2) (-12 (-4 *1 (-227)) (-5 *2 (-747)))) (-1699 (*1 *1 *1 *2) (-12 (-4 *1 (-227)) (-5 *2 (-747)))))
+(-13 (-1018) (-10 -8 (-15 -3455 ($ $)) (-15 -1699 ($ $)) (-15 -3455 ($ $ (-747))) (-15 -1699 ($ $ (-747)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-3226 (($) 12) (($ (-621 |#2|)) NIL)) (-2279 (($ $) 14)) (-3853 (($ (-621 |#2|)) 10)) (-3845 (((-834) $) 21)))
+(((-228 |#1| |#2|) (-10 -8 (-15 -3845 ((-834) |#1|)) (-15 -3226 (|#1| (-621 |#2|))) (-15 -3226 (|#1|)) (-15 -3853 (|#1| (-621 |#2|))) (-15 -2279 (|#1| |#1|))) (-229 |#2|) (-1066)) (T -228))
+NIL
+(-10 -8 (-15 -3845 ((-834) |#1|)) (-15 -3226 (|#1| (-621 |#2|))) (-15 -3226 (|#1|)) (-15 -3853 (|#1| (-621 |#2|))) (-15 -2279 (|#1| |#1|)))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-2850 (((-112) $ (-747)) 8)) (-3827 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4336)))) (-3034 (($) 7 T CONST)) (-3675 (($ $) 58 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3546 (($ |#1| $) 47 (|has| $ (-6 -4336))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4336)))) (-3812 (($ |#1| $) 57 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4336)))) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) 9)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-2548 ((|#1| $) 39)) (-1799 (($ |#1| $) 40)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3536 ((|#1| $) 41)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3226 (($) 49) (($ (-621 |#1|)) 48)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-2843 (((-525) $) 59 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 50)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-4213 (($ (-621 |#1|)) 42)) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-229 |#1|) (-138) (-1066)) (T -229))
+((-3226 (*1 *1) (-12 (-4 *1 (-229 *2)) (-4 *2 (-1066)))) (-3226 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-4 *1 (-229 *3)))) (-3546 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4336)) (-4 *1 (-229 *2)) (-4 *2 (-1066)))) (-3546 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4336)) (-4 *1 (-229 *3)) (-4 *3 (-1066)))) (-3827 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4336)) (-4 *1 (-229 *3)) (-4 *3 (-1066)))))
+(-13 (-106 |t#1|) (-149 |t#1|) (-10 -8 (-15 -3226 ($)) (-15 -3226 ($ (-621 |t#1|))) (IF (|has| $ (-6 -4336)) (PROGN (-15 -3546 ($ |t#1| $)) (-15 -3546 ($ (-1 (-112) |t#1|) $)) (-15 -3827 ($ (-1 (-112) |t#1|) $))) |%noBranch|)))
+(((-34) . T) ((-106 |#1|) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-1066) |has| |#1| (-1066)) ((-1179) . T))
+((-3094 (((-2 (|:| |varOrder| (-621 (-1142))) (|:| |inhom| (-3 (-621 (-1225 (-747))) "failed")) (|:| |hom| (-621 (-1225 (-747))))) (-287 (-923 (-549)))) 27)))
+(((-230) (-10 -7 (-15 -3094 ((-2 (|:| |varOrder| (-621 (-1142))) (|:| |inhom| (-3 (-621 (-1225 (-747))) "failed")) (|:| |hom| (-621 (-1225 (-747))))) (-287 (-923 (-549))))))) (T -230))
+((-3094 (*1 *2 *3) (-12 (-5 *3 (-287 (-923 (-549)))) (-5 *2 (-2 (|:| |varOrder| (-621 (-1142))) (|:| |inhom| (-3 (-621 (-1225 (-747))) "failed")) (|:| |hom| (-621 (-1225 (-747)))))) (-5 *1 (-230)))))
+(-10 -7 (-15 -3094 ((-2 (|:| |varOrder| (-621 (-1142))) (|:| |inhom| (-3 (-621 (-1225 (-747))) "failed")) (|:| |hom| (-621 (-1225 (-747))))) (-287 (-923 (-549))))))
+((-3614 (((-747)) 51)) (-3446 (((-2 (|:| -3697 (-665 |#3|)) (|:| |vec| (-1225 |#3|))) (-665 $) (-1225 $)) 49) (((-665 |#3|) (-665 $)) 41) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL) (((-665 (-549)) (-665 $)) NIL)) (-2260 (((-133)) 57)) (-3455 (($ $ (-1 |#3| |#3|) (-747)) NIL) (($ $ (-1 |#3| |#3|)) 18) (($ $ (-621 (-1142)) (-621 (-747))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142)) NIL) (($ $ (-747)) NIL) (($ $) NIL)) (-3845 (((-1225 |#3|) $) NIL) (($ |#3|) NIL) (((-834) $) NIL) (($ (-549)) 12) (($ (-400 (-549))) NIL)) (-2371 (((-747)) 15)) (-2511 (($ $ |#3|) 54)))
+(((-231 |#1| |#2| |#3|) (-10 -8 (-15 -3845 (|#1| (-400 (-549)))) (-15 -3845 (|#1| (-549))) (-15 -3845 ((-834) |#1|)) (-15 -2371 ((-747))) (-15 -3455 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -3446 ((-665 (-549)) (-665 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 |#1|) (-1225 |#1|))) (-15 -3845 (|#1| |#3|)) (-15 -3455 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3455 (|#1| |#1| (-1 |#3| |#3|) (-747))) (-15 -3446 ((-665 |#3|) (-665 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 |#3|)) (|:| |vec| (-1225 |#3|))) (-665 |#1|) (-1225 |#1|))) (-15 -3614 ((-747))) (-15 -2511 (|#1| |#1| |#3|)) (-15 -2260 ((-133))) (-15 -3845 ((-1225 |#3|) |#1|))) (-232 |#2| |#3|) (-747) (-1179)) (T -231))
+((-2260 (*1 *2) (-12 (-14 *4 (-747)) (-4 *5 (-1179)) (-5 *2 (-133)) (-5 *1 (-231 *3 *4 *5)) (-4 *3 (-232 *4 *5)))) (-3614 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1179)) (-5 *2 (-747)) (-5 *1 (-231 *3 *4 *5)) (-4 *3 (-232 *4 *5)))) (-2371 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1179)) (-5 *2 (-747)) (-5 *1 (-231 *3 *4 *5)) (-4 *3 (-232 *4 *5)))))
+(-10 -8 (-15 -3845 (|#1| (-400 (-549)))) (-15 -3845 (|#1| (-549))) (-15 -3845 ((-834) |#1|)) (-15 -2371 ((-747))) (-15 -3455 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -3446 ((-665 (-549)) (-665 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 |#1|) (-1225 |#1|))) (-15 -3845 (|#1| |#3|)) (-15 -3455 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3455 (|#1| |#1| (-1 |#3| |#3|) (-747))) (-15 -3446 ((-665 |#3|) (-665 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 |#3|)) (|:| |vec| (-1225 |#3|))) (-665 |#1|) (-1225 |#1|))) (-15 -3614 ((-747))) (-15 -2511 (|#1| |#1| |#3|)) (-15 -2260 ((-133))) (-15 -3845 ((-1225 |#3|) |#1|)))
+((-3832 (((-112) $ $) 19 (|has| |#2| (-1066)))) (-3210 (((-112) $) 72 (|has| |#2| (-130)))) (-1627 (($ (-892)) 125 (|has| |#2| (-1018)))) (-3659 (((-1230) $ (-549) (-549)) 40 (|has| $ (-6 -4337)))) (-4280 (($ $ $) 121 (|has| |#2| (-769)))) (-2416 (((-3 $ "failed") $ $) 74 (|has| |#2| (-130)))) (-2850 (((-112) $ (-747)) 8)) (-3614 (((-747)) 107 (|has| |#2| (-361)))) (-1741 (((-549) $) 119 (|has| |#2| (-821)))) (-2250 ((|#2| $ (-549) |#2|) 52 (|has| $ (-6 -4337)))) (-3034 (($) 7 T CONST)) (-2712 (((-3 (-549) "failed") $) 67 (-1819 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1066)))) (((-3 (-400 (-549)) "failed") $) 64 (-1819 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1066)))) (((-3 |#2| "failed") $) 61 (|has| |#2| (-1066)))) (-2657 (((-549) $) 68 (-1819 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1066)))) (((-400 (-549)) $) 65 (-1819 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1066)))) ((|#2| $) 60 (|has| |#2| (-1066)))) (-3446 (((-665 (-549)) (-665 $)) 106 (-1819 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 105 (-1819 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018)))) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) 104 (|has| |#2| (-1018))) (((-665 |#2|) (-665 $)) 103 (|has| |#2| (-1018)))) (-2612 (((-3 $ "failed") $) 79 (|has| |#2| (-703)))) (-3237 (($) 110 (|has| |#2| (-361)))) (-1875 ((|#2| $ (-549) |#2|) 53 (|has| $ (-6 -4337)))) (-1807 ((|#2| $ (-549)) 51)) (-2357 (((-112) $) 117 (|has| |#2| (-821)))) (-2987 (((-621 |#2|) $) 30 (|has| $ (-6 -4336)))) (-2297 (((-112) $) 81 (|has| |#2| (-703)))) (-1992 (((-112) $) 118 (|has| |#2| (-821)))) (-1777 (((-112) $ (-747)) 9)) (-2807 (((-549) $) 43 (|has| (-549) (-823)))) (-2861 (($ $ $) 116 (-1536 (|has| |#2| (-821)) (|has| |#2| (-769))))) (-3698 (((-621 |#2|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#2| $) 27 (-12 (|has| |#2| (-1066)) (|has| $ (-6 -4336))))) (-3063 (((-549) $) 44 (|has| (-549) (-823)))) (-3574 (($ $ $) 115 (-1536 (|has| |#2| (-821)) (|has| |#2| (-769))))) (-1864 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#2| |#2|) $) 35)) (-3309 (((-892) $) 109 (|has| |#2| (-361)))) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (|has| |#2| (-1066)))) (-2296 (((-621 (-549)) $) 46)) (-2284 (((-112) (-549) $) 47)) (-3494 (($ (-892)) 108 (|has| |#2| (-361)))) (-3988 (((-1086) $) 21 (|has| |#2| (-1066)))) (-3645 ((|#2| $) 42 (|has| (-549) (-823)))) (-1943 (($ $ |#2|) 41 (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#2|))) 26 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-287 |#2|)) 25 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 |#2|) (-621 |#2|)) 23 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))) (-2520 (((-112) $ $) 14)) (-2478 (((-112) |#2| $) 45 (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3347 (((-621 |#2|) $) 48)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#2| $ (-549) |#2|) 50) ((|#2| $ (-549)) 49)) (-1283 ((|#2| $ $) 124 (|has| |#2| (-1018)))) (-2167 (($ (-1225 |#2|)) 126)) (-2260 (((-133)) 123 (|has| |#2| (-356)))) (-3455 (($ $) 98 (-1819 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-747)) 96 (-1819 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-1142)) 94 (-1819 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-621 (-1142))) 93 (-1819 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-1142) (-747)) 92 (-1819 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-621 (-1142)) (-621 (-747))) 91 (-1819 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-1 |#2| |#2|) (-747)) 84 (|has| |#2| (-1018))) (($ $ (-1 |#2| |#2|)) 83 (|has| |#2| (-1018)))) (-3997 (((-747) (-1 (-112) |#2|) $) 31 (|has| $ (-6 -4336))) (((-747) |#2| $) 28 (-12 (|has| |#2| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-3845 (((-1225 |#2|) $) 127) (($ (-549)) 66 (-1536 (-1819 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1066))) (|has| |#2| (-1018)))) (($ (-400 (-549))) 63 (-1819 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1066)))) (($ |#2|) 62 (|has| |#2| (-1066))) (((-834) $) 18 (|has| |#2| (-593 (-834))))) (-2371 (((-747)) 102 (|has| |#2| (-1018)))) (-3025 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4336)))) (-2199 (($ $) 120 (|has| |#2| (-821)))) (-3274 (($) 71 (|has| |#2| (-130)) CONST)) (-3286 (($) 82 (|has| |#2| (-703)) CONST)) (-1699 (($ $) 97 (-1819 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-747)) 95 (-1819 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-1142)) 90 (-1819 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-621 (-1142))) 89 (-1819 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-1142) (-747)) 88 (-1819 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-621 (-1142)) (-621 (-747))) 87 (-1819 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-1 |#2| |#2|) (-747)) 86 (|has| |#2| (-1018))) (($ $ (-1 |#2| |#2|)) 85 (|has| |#2| (-1018)))) (-2447 (((-112) $ $) 113 (-1536 (|has| |#2| (-821)) (|has| |#2| (-769))))) (-2423 (((-112) $ $) 112 (-1536 (|has| |#2| (-821)) (|has| |#2| (-769))))) (-2387 (((-112) $ $) 20 (|has| |#2| (-1066)))) (-2436 (((-112) $ $) 114 (-1536 (|has| |#2| (-821)) (|has| |#2| (-769))))) (-2409 (((-112) $ $) 111 (-1536 (|has| |#2| (-821)) (|has| |#2| (-769))))) (-2511 (($ $ |#2|) 122 (|has| |#2| (-356)))) (-2498 (($ $ $) 100 (|has| |#2| (-1018))) (($ $) 99 (|has| |#2| (-1018)))) (-2484 (($ $ $) 69 (|has| |#2| (-25)))) (** (($ $ (-747)) 80 (|has| |#2| (-703))) (($ $ (-892)) 77 (|has| |#2| (-703)))) (* (($ (-549) $) 101 (|has| |#2| (-1018))) (($ $ $) 78 (|has| |#2| (-703))) (($ $ |#2|) 76 (|has| |#2| (-703))) (($ |#2| $) 75 (|has| |#2| (-703))) (($ (-747) $) 73 (|has| |#2| (-130))) (($ (-892) $) 70 (|has| |#2| (-25)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-232 |#1| |#2|) (-138) (-747) (-1179)) (T -232))
+((-2167 (*1 *1 *2) (-12 (-5 *2 (-1225 *4)) (-4 *4 (-1179)) (-4 *1 (-232 *3 *4)))) (-1627 (*1 *1 *2) (-12 (-5 *2 (-892)) (-4 *1 (-232 *3 *4)) (-4 *4 (-1018)) (-4 *4 (-1179)))) (-1283 (*1 *2 *1 *1) (-12 (-4 *1 (-232 *3 *2)) (-4 *2 (-1179)) (-4 *2 (-1018)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-232 *3 *2)) (-4 *2 (-1179)) (-4 *2 (-703)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-232 *3 *2)) (-4 *2 (-1179)) (-4 *2 (-703)))))
+(-13 (-584 (-549) |t#2|) (-593 (-1225 |t#2|)) (-10 -8 (-6 -4336) (-15 -2167 ($ (-1225 |t#2|))) (IF (|has| |t#2| (-1066)) (-6 (-404 |t#2|)) |%noBranch|) (IF (|has| |t#2| (-1018)) (PROGN (-6 (-111 |t#2| |t#2|)) (-6 (-225 |t#2|)) (-6 (-370 |t#2|)) (-15 -1627 ($ (-892))) (-15 -1283 (|t#2| $ $))) |%noBranch|) (IF (|has| |t#2| (-25)) (-6 (-25)) |%noBranch|) (IF (|has| |t#2| (-130)) (-6 (-130)) |%noBranch|) (IF (|has| |t#2| (-703)) (PROGN (-6 (-703)) (-15 * ($ |t#2| $)) (-15 * ($ $ |t#2|))) |%noBranch|) (IF (|has| |t#2| (-361)) (-6 (-361)) |%noBranch|) (IF (|has| |t#2| (-170)) (PROGN (-6 (-38 |t#2|)) (-6 (-170))) |%noBranch|) (IF (|has| |t#2| (-6 -4333)) (-6 -4333) |%noBranch|) (IF (|has| |t#2| (-821)) (-6 (-821)) |%noBranch|) (IF (|has| |t#2| (-769)) (-6 (-769)) |%noBranch|) (IF (|has| |t#2| (-356)) (-6 (-1232 |t#2|)) |%noBranch|)))
+(((-21) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-356)) (|has| |#2| (-170))) ((-23) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-769)) (|has| |#2| (-356)) (|has| |#2| (-170)) (|has| |#2| (-130))) ((-25) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-769)) (|has| |#2| (-356)) (|has| |#2| (-170)) (|has| |#2| (-130)) (|has| |#2| (-25))) ((-34) . T) ((-38 |#2|) |has| |#2| (-170)) ((-101) -1536 (|has| |#2| (-1066)) (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-769)) (|has| |#2| (-703)) (|has| |#2| (-361)) (|has| |#2| (-356)) (|has| |#2| (-170)) (|has| |#2| (-130)) (|has| |#2| (-25))) ((-111 |#2| |#2|) -1536 (|has| |#2| (-1018)) (|has| |#2| (-356)) (|has| |#2| (-170))) ((-111 $ $) |has| |#2| (-170)) ((-130) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-769)) (|has| |#2| (-356)) (|has| |#2| (-170)) (|has| |#2| (-130))) ((-593 (-834)) -1536 (|has| |#2| (-1066)) (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-769)) (|has| |#2| (-703)) (|has| |#2| (-361)) (|has| |#2| (-356)) (|has| |#2| (-170)) (|has| |#2| (-593 (-834))) (|has| |#2| (-130)) (|has| |#2| (-25))) ((-593 (-1225 |#2|)) . T) ((-170) |has| |#2| (-170)) ((-225 |#2|) |has| |#2| (-1018)) ((-227) -12 (|has| |#2| (-227)) (|has| |#2| (-1018))) ((-279 #0=(-549) |#2|) . T) ((-281 #0# |#2|) . T) ((-302 |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) ((-361) |has| |#2| (-361)) ((-370 |#2|) |has| |#2| (-1018)) ((-404 |#2|) |has| |#2| (-1066)) ((-481 |#2|) . T) ((-584 #0# |#2|) . T) ((-505 |#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) ((-624 |#2|) -1536 (|has| |#2| (-1018)) (|has| |#2| (-356)) (|has| |#2| (-170))) ((-624 $) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-170))) ((-617 (-549)) -12 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018))) ((-617 |#2|) |has| |#2| (-1018)) ((-694 |#2|) -1536 (|has| |#2| (-356)) (|has| |#2| (-170))) ((-703) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-703)) (|has| |#2| (-170))) ((-767) |has| |#2| (-821)) ((-768) -1536 (|has| |#2| (-821)) (|has| |#2| (-769))) ((-769) |has| |#2| (-769)) ((-770) -1536 (|has| |#2| (-821)) (|has| |#2| (-769))) ((-771) -1536 (|has| |#2| (-821)) (|has| |#2| (-769))) ((-821) |has| |#2| (-821)) ((-823) -1536 (|has| |#2| (-821)) (|has| |#2| (-769))) ((-871 (-1142)) -12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018))) ((-1009 (-400 (-549))) -12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1066))) ((-1009 (-549)) -12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1066))) ((-1009 |#2|) |has| |#2| (-1066)) ((-1024 |#2|) -1536 (|has| |#2| (-1018)) (|has| |#2| (-356)) (|has| |#2| (-170))) ((-1024 $) |has| |#2| (-170)) ((-1018) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-170))) ((-1025) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-170))) ((-1078) -1536 (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-703)) (|has| |#2| (-170))) ((-1066) -1536 (|has| |#2| (-1066)) (|has| |#2| (-1018)) (|has| |#2| (-821)) (|has| |#2| (-769)) (|has| |#2| (-703)) (|has| |#2| (-361)) (|has| |#2| (-356)) (|has| |#2| (-170)) (|has| |#2| (-130)) (|has| |#2| (-25))) ((-1179) . T) ((-1232 |#2|) |has| |#2| (-356)))
+((-2394 (((-234 |#1| |#3|) (-1 |#3| |#2| |#3|) (-234 |#1| |#2|) |#3|) 21)) (-2556 ((|#3| (-1 |#3| |#2| |#3|) (-234 |#1| |#2|) |#3|) 23)) (-2795 (((-234 |#1| |#3|) (-1 |#3| |#2|) (-234 |#1| |#2|)) 18)))
+(((-233 |#1| |#2| |#3|) (-10 -7 (-15 -2394 ((-234 |#1| |#3|) (-1 |#3| |#2| |#3|) (-234 |#1| |#2|) |#3|)) (-15 -2556 (|#3| (-1 |#3| |#2| |#3|) (-234 |#1| |#2|) |#3|)) (-15 -2795 ((-234 |#1| |#3|) (-1 |#3| |#2|) (-234 |#1| |#2|)))) (-747) (-1179) (-1179)) (T -233))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-234 *5 *6)) (-14 *5 (-747)) (-4 *6 (-1179)) (-4 *7 (-1179)) (-5 *2 (-234 *5 *7)) (-5 *1 (-233 *5 *6 *7)))) (-2556 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-234 *5 *6)) (-14 *5 (-747)) (-4 *6 (-1179)) (-4 *2 (-1179)) (-5 *1 (-233 *5 *6 *2)))) (-2394 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-234 *6 *7)) (-14 *6 (-747)) (-4 *7 (-1179)) (-4 *5 (-1179)) (-5 *2 (-234 *6 *5)) (-5 *1 (-233 *6 *7 *5)))))
+(-10 -7 (-15 -2394 ((-234 |#1| |#3|) (-1 |#3| |#2| |#3|) (-234 |#1| |#2|) |#3|)) (-15 -2556 (|#3| (-1 |#3| |#2| |#3|) (-234 |#1| |#2|) |#3|)) (-15 -2795 ((-234 |#1| |#3|) (-1 |#3| |#2|) (-234 |#1| |#2|))))
+((-3832 (((-112) $ $) NIL (|has| |#2| (-1066)))) (-3210 (((-112) $) NIL (|has| |#2| (-130)))) (-1627 (($ (-892)) 56 (|has| |#2| (-1018)))) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-4280 (($ $ $) 60 (|has| |#2| (-769)))) (-2416 (((-3 $ "failed") $ $) 49 (|has| |#2| (-130)))) (-2850 (((-112) $ (-747)) 17)) (-3614 (((-747)) NIL (|has| |#2| (-361)))) (-1741 (((-549) $) NIL (|has| |#2| (-821)))) (-2250 ((|#2| $ (-549) |#2|) NIL (|has| $ (-6 -4337)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1066)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1066)))) (((-3 |#2| "failed") $) 29 (|has| |#2| (-1066)))) (-2657 (((-549) $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1066)))) (((-400 (-549)) $) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1066)))) ((|#2| $) 27 (|has| |#2| (-1066)))) (-3446 (((-665 (-549)) (-665 $)) NIL (-12 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (-12 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018)))) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) NIL (|has| |#2| (-1018))) (((-665 |#2|) (-665 $)) NIL (|has| |#2| (-1018)))) (-2612 (((-3 $ "failed") $) 53 (|has| |#2| (-703)))) (-3237 (($) NIL (|has| |#2| (-361)))) (-1875 ((|#2| $ (-549) |#2|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#2| $ (-549)) 51)) (-2357 (((-112) $) NIL (|has| |#2| (-821)))) (-2987 (((-621 |#2|) $) 15 (|has| $ (-6 -4336)))) (-2297 (((-112) $) NIL (|has| |#2| (-703)))) (-1992 (((-112) $) NIL (|has| |#2| (-821)))) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) 20 (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-3698 (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3063 (((-549) $) 50 (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-1864 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#2| |#2|) $) 41)) (-3309 (((-892) $) NIL (|has| |#2| (-361)))) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#2| (-1066)))) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3494 (($ (-892)) NIL (|has| |#2| (-361)))) (-3988 (((-1086) $) NIL (|has| |#2| (-1066)))) (-3645 ((|#2| $) NIL (|has| (-549) (-823)))) (-1943 (($ $ |#2|) NIL (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#2|) $) 24 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3347 (((-621 |#2|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#2| $ (-549) |#2|) NIL) ((|#2| $ (-549)) 21)) (-1283 ((|#2| $ $) NIL (|has| |#2| (-1018)))) (-2167 (($ (-1225 |#2|)) 18)) (-2260 (((-133)) NIL (|has| |#2| (-356)))) (-3455 (($ $) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-1142)) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-1 |#2| |#2|) (-747)) NIL (|has| |#2| (-1018))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1018)))) (-3997 (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-2279 (($ $) NIL)) (-3845 (((-1225 |#2|) $) 10) (($ (-549)) NIL (-1536 (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1066))) (|has| |#2| (-1018)))) (($ (-400 (-549))) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1066)))) (($ |#2|) 13 (|has| |#2| (-1066))) (((-834) $) NIL (|has| |#2| (-593 (-834))))) (-2371 (((-747)) NIL (|has| |#2| (-1018)))) (-3025 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2199 (($ $) NIL (|has| |#2| (-821)))) (-3274 (($) 35 (|has| |#2| (-130)) CONST)) (-3286 (($) 38 (|has| |#2| (-703)) CONST)) (-1699 (($ $) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-1142)) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-1 |#2| |#2|) (-747)) NIL (|has| |#2| (-1018))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1018)))) (-2447 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2423 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2387 (((-112) $ $) 26 (|has| |#2| (-1066)))) (-2436 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2409 (((-112) $ $) 58 (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2511 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2498 (($ $ $) NIL (|has| |#2| (-1018))) (($ $) NIL (|has| |#2| (-1018)))) (-2484 (($ $ $) 33 (|has| |#2| (-25)))) (** (($ $ (-747)) NIL (|has| |#2| (-703))) (($ $ (-892)) NIL (|has| |#2| (-703)))) (* (($ (-549) $) NIL (|has| |#2| (-1018))) (($ $ $) 44 (|has| |#2| (-703))) (($ $ |#2|) 42 (|has| |#2| (-703))) (($ |#2| $) 43 (|has| |#2| (-703))) (($ (-747) $) NIL (|has| |#2| (-130))) (($ (-892) $) NIL (|has| |#2| (-25)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-234 |#1| |#2|) (-232 |#1| |#2|) (-747) (-1179)) (T -234))
NIL
(-232 |#1| |#2|)
-((-2603 (((-549) (-621 (-1125))) 24) (((-549) (-1125)) 19)) (-2422 (((-1231) (-621 (-1125))) 29) (((-1231) (-1125)) 28)) (-1521 (((-1125)) 14)) (-3461 (((-1125) (-549) (-1125)) 16)) (-2597 (((-621 (-1125)) (-621 (-1125)) (-549) (-1125)) 25) (((-1125) (-1125) (-549) (-1125)) 23)) (-3274 (((-621 (-1125)) (-621 (-1125))) 13) (((-621 (-1125)) (-1125)) 11)))
-(((-235) (-10 -7 (-15 -3274 ((-621 (-1125)) (-1125))) (-15 -3274 ((-621 (-1125)) (-621 (-1125)))) (-15 -1521 ((-1125))) (-15 -3461 ((-1125) (-549) (-1125))) (-15 -2597 ((-1125) (-1125) (-549) (-1125))) (-15 -2597 ((-621 (-1125)) (-621 (-1125)) (-549) (-1125))) (-15 -2422 ((-1231) (-1125))) (-15 -2422 ((-1231) (-621 (-1125)))) (-15 -2603 ((-549) (-1125))) (-15 -2603 ((-549) (-621 (-1125)))))) (T -235))
-((-2603 (*1 *2 *3) (-12 (-5 *3 (-621 (-1125))) (-5 *2 (-549)) (-5 *1 (-235)))) (-2603 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-549)) (-5 *1 (-235)))) (-2422 (*1 *2 *3) (-12 (-5 *3 (-621 (-1125))) (-5 *2 (-1231)) (-5 *1 (-235)))) (-2422 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-235)))) (-2597 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-621 (-1125))) (-5 *3 (-549)) (-5 *4 (-1125)) (-5 *1 (-235)))) (-2597 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-1125)) (-5 *3 (-549)) (-5 *1 (-235)))) (-3461 (*1 *2 *3 *2) (-12 (-5 *2 (-1125)) (-5 *3 (-549)) (-5 *1 (-235)))) (-1521 (*1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-235)))) (-3274 (*1 *2 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-235)))) (-3274 (*1 *2 *3) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-235)) (-5 *3 (-1125)))))
-(-10 -7 (-15 -3274 ((-621 (-1125)) (-1125))) (-15 -3274 ((-621 (-1125)) (-621 (-1125)))) (-15 -1521 ((-1125))) (-15 -3461 ((-1125) (-549) (-1125))) (-15 -2597 ((-1125) (-1125) (-549) (-1125))) (-15 -2597 ((-621 (-1125)) (-621 (-1125)) (-549) (-1125))) (-15 -2422 ((-1231) (-1125))) (-15 -2422 ((-1231) (-621 (-1125)))) (-15 -2603 ((-549) (-1125))) (-15 -2603 ((-549) (-621 (-1125)))))
+((-2084 (((-549) (-621 (-1124))) 24) (((-549) (-1124)) 19)) (-2420 (((-1230) (-621 (-1124))) 29) (((-1230) (-1124)) 28)) (-2344 (((-1124)) 14)) (-3559 (((-1124) (-549) (-1124)) 16)) (-2596 (((-621 (-1124)) (-621 (-1124)) (-549) (-1124)) 25) (((-1124) (-1124) (-549) (-1124)) 23)) (-3271 (((-621 (-1124)) (-621 (-1124))) 13) (((-621 (-1124)) (-1124)) 11)))
+(((-235) (-10 -7 (-15 -3271 ((-621 (-1124)) (-1124))) (-15 -3271 ((-621 (-1124)) (-621 (-1124)))) (-15 -2344 ((-1124))) (-15 -3559 ((-1124) (-549) (-1124))) (-15 -2596 ((-1124) (-1124) (-549) (-1124))) (-15 -2596 ((-621 (-1124)) (-621 (-1124)) (-549) (-1124))) (-15 -2420 ((-1230) (-1124))) (-15 -2420 ((-1230) (-621 (-1124)))) (-15 -2084 ((-549) (-1124))) (-15 -2084 ((-549) (-621 (-1124)))))) (T -235))
+((-2084 (*1 *2 *3) (-12 (-5 *3 (-621 (-1124))) (-5 *2 (-549)) (-5 *1 (-235)))) (-2084 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-549)) (-5 *1 (-235)))) (-2420 (*1 *2 *3) (-12 (-5 *3 (-621 (-1124))) (-5 *2 (-1230)) (-5 *1 (-235)))) (-2420 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-235)))) (-2596 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-621 (-1124))) (-5 *3 (-549)) (-5 *4 (-1124)) (-5 *1 (-235)))) (-2596 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-1124)) (-5 *3 (-549)) (-5 *1 (-235)))) (-3559 (*1 *2 *3 *2) (-12 (-5 *2 (-1124)) (-5 *3 (-549)) (-5 *1 (-235)))) (-2344 (*1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-235)))) (-3271 (*1 *2 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-235)))) (-3271 (*1 *2 *3) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-235)) (-5 *3 (-1124)))))
+(-10 -7 (-15 -3271 ((-621 (-1124)) (-1124))) (-15 -3271 ((-621 (-1124)) (-621 (-1124)))) (-15 -2344 ((-1124))) (-15 -3559 ((-1124) (-549) (-1124))) (-15 -2596 ((-1124) (-1124) (-549) (-1124))) (-15 -2596 ((-621 (-1124)) (-621 (-1124)) (-549) (-1124))) (-15 -2420 ((-1230) (-1124))) (-15 -2420 ((-1230) (-621 (-1124)))) (-15 -2084 ((-549) (-1124))) (-15 -2084 ((-549) (-621 (-1124)))))
((** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) 16)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ (-400 (-549)) $) 23) (($ $ (-400 (-549))) NIL)))
(((-236 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-549))) (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 ** (|#1| |#1| (-747))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-892))) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|))) (-237)) (T -236))
NIL
(-10 -8 (-15 ** (|#1| |#1| (-549))) (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 ** (|#1| |#1| (-747))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-892))) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-3851 (((-1125) $) 9)) (-1992 (($ $) 37)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 41)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 38)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ (-400 (-549)) $) 40) (($ $ (-400 (-549))) 39)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-3441 (((-1124) $) 9)) (-1990 (($ $) 37)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 41)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 38)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ (-400 (-549)) $) 40) (($ $ (-400 (-549))) 39)))
(((-237) (-138)) (T -237))
-((** (*1 *1 *1 *2) (-12 (-4 *1 (-237)) (-5 *2 (-549)))) (-1992 (*1 *1 *1) (-4 *1 (-237))))
-(-13 (-283) (-38 (-400 (-549))) (-10 -8 (-15 ** ($ $ (-549))) (-15 -1992 ($ $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-283) . T) ((-624 #0#) . T) ((-624 $) . T) ((-694 #0#) . T) ((-703) . T) ((-1024 #0#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-4161 ((|#1| $) 48)) (-1343 (($ $) 57)) (-1584 (((-112) $ (-747)) 8)) (-2838 ((|#1| $ |#1|) 39 (|has| $ (-6 -4338)))) (-3208 (($ $ $) 53 (|has| $ (-6 -4338)))) (-1505 (($ $ $) 52 (|has| $ (-6 -4338)))) (-2254 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) 41 (|has| $ (-6 -4338)))) (-1682 (($) 7 T CONST)) (-1980 (($ $) 56)) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) 50)) (-3895 (((-112) $ $) 42 (|has| |#1| (-1067)))) (-3043 (($ $) 55)) (-3194 (((-112) $ (-747)) 9)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-3591 (((-621 |#1|) $) 45)) (-2076 (((-112) $) 49)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3829 ((|#1| $) 59)) (-3477 (($ $) 58)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#1| $ "value") 47)) (-3230 (((-549) $ $) 44)) (-3497 (((-112) $) 46)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-3196 (($ $ $) 54 (|has| $ (-6 -4338)))) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) 51)) (-1987 (((-112) $ $) 43 (|has| |#1| (-1067)))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-238 |#1|) (-138) (-1180)) (T -238))
-((-3829 (*1 *2 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1180)))) (-3477 (*1 *1 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1180)))) (-1343 (*1 *1 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1180)))) (-1980 (*1 *1 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1180)))) (-3043 (*1 *1 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1180)))) (-3196 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-238 *2)) (-4 *2 (-1180)))) (-3208 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-238 *2)) (-4 *2 (-1180)))) (-1505 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-238 *2)) (-4 *2 (-1180)))))
-(-13 (-981 |t#1|) (-10 -8 (-15 -3829 (|t#1| $)) (-15 -3477 ($ $)) (-15 -1343 ($ $)) (-15 -1980 ($ $)) (-15 -3043 ($ $)) (IF (|has| $ (-6 -4338)) (PROGN (-15 -3196 ($ $ $)) (-15 -3208 ($ $ $)) (-15 -1505 ($ $ $))) |%noBranch|)))
-(((-34) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-981 |#1|) . T) ((-1067) |has| |#1| (-1067)) ((-1180) . T))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-4161 ((|#1| $) NIL)) (-2839 ((|#1| $) NIL)) (-1343 (($ $) NIL)) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-3174 (($ $ (-549)) NIL (|has| $ (-6 -4338)))) (-4142 (((-112) $) NIL (|has| |#1| (-823))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-4311 (($ $) NIL (-12 (|has| $ (-6 -4338)) (|has| |#1| (-823)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-3193 (($ $) 10 (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-2838 ((|#1| $ |#1|) NIL (|has| $ (-6 -4338)))) (-4179 (($ $ $) NIL (|has| $ (-6 -4338)))) (-2780 ((|#1| $ |#1|) NIL (|has| $ (-6 -4338)))) (-4135 ((|#1| $ |#1|) NIL (|has| $ (-6 -4338)))) (-2254 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4338))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4338))) (($ $ "rest" $) NIL (|has| $ (-6 -4338))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) NIL (|has| $ (-6 -4338))) ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) NIL (|has| $ (-6 -4338)))) (-1717 (($ (-1 (-112) |#1|) $) NIL)) (-1489 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2830 ((|#1| $) NIL)) (-1682 (($) NIL T CONST)) (-1585 (($ $) NIL (|has| $ (-6 -4338)))) (-3064 (($ $) NIL)) (-3657 (($ $) NIL) (($ $ (-747)) NIL)) (-3745 (($ $) NIL (|has| |#1| (-1067)))) (-3676 (($ $) 7 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2129 (($ |#1| $) NIL (|has| |#1| (-1067))) (($ (-1 (-112) |#1|) $) NIL)) (-3812 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1879 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) NIL)) (-3331 (((-112) $) NIL)) (-2883 (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1067))) (((-549) |#1| $) NIL (|has| |#1| (-1067))) (((-549) (-1 (-112) |#1|) $) NIL)) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) NIL)) (-3895 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3743 (($ (-747) |#1|) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) NIL (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-1303 (($ $ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3890 (($ $ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3525 (($ |#1|) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3591 (((-621 |#1|) $) NIL)) (-2076 (((-112) $) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3829 ((|#1| $) NIL) (($ $ (-747)) NIL)) (-2751 (($ $ $ (-549)) NIL) (($ |#1| $ (-549)) NIL)) (-2616 (($ $ $ (-549)) NIL) (($ |#1| $ (-549)) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-3646 ((|#1| $) NIL) (($ $ (-747)) NIL)) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1642 (($ $ |#1|) NIL (|has| $ (-6 -4338)))) (-3016 (((-112) $) NIL)) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1193 (-549))) NIL) ((|#1| $ (-549)) NIL) ((|#1| $ (-549) |#1|) NIL) (($ $ "unique") 9) (($ $ "sort") 12) (((-747) $ "count") 16)) (-3230 (((-549) $ $) NIL)) (-3531 (($ $ (-1193 (-549))) NIL) (($ $ (-549)) NIL)) (-2167 (($ $ (-1193 (-549))) NIL) (($ $ (-549)) NIL)) (-3081 (($ (-621 |#1|)) 22)) (-3497 (((-112) $) NIL)) (-1999 (($ $) NIL)) (-2643 (($ $) NIL (|has| $ (-6 -4338)))) (-3798 (((-747) $) NIL)) (-3612 (($ $) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2730 (($ $ $ (-549)) NIL (|has| $ (-6 -4338)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) NIL)) (-3196 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1952 (($ $ $) NIL) (($ |#1| $) NIL) (($ (-621 $)) NIL) (($ $ |#1|) NIL)) (-3846 (($ (-621 |#1|)) 17) (((-621 |#1|) $) 18) (((-834) $) 21 (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) NIL)) (-1987 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-3775 (((-747) $) 14 (|has| $ (-6 -4337)))))
-(((-239 |#1|) (-13 (-642 |#1|) (-10 -8 (-15 -3846 ($ (-621 |#1|))) (-15 -3846 ((-621 |#1|) $)) (-15 -3081 ($ (-621 |#1|))) (-15 -3341 ($ $ "unique")) (-15 -3341 ($ $ "sort")) (-15 -3341 ((-747) $ "count")))) (-823)) (T -239))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-239 *3)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-239 *3)) (-4 *3 (-823)))) (-3081 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-239 *3)))) (-3341 (*1 *1 *1 *2) (-12 (-5 *2 "unique") (-5 *1 (-239 *3)) (-4 *3 (-823)))) (-3341 (*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-239 *3)) (-4 *3 (-823)))) (-3341 (*1 *2 *1 *3) (-12 (-5 *3 "count") (-5 *2 (-747)) (-5 *1 (-239 *4)) (-4 *4 (-823)))))
-(-13 (-642 |#1|) (-10 -8 (-15 -3846 ($ (-621 |#1|))) (-15 -3846 ((-621 |#1|) $)) (-15 -3081 ($ (-621 |#1|))) (-15 -3341 ($ $ "unique")) (-15 -3341 ($ $ "sort")) (-15 -3341 ((-747) $ "count"))))
-((-4090 (((-3 (-747) "failed") |#1| |#1| (-747)) 27)))
-(((-240 |#1|) (-10 -7 (-15 -4090 ((-3 (-747) "failed") |#1| |#1| (-747)))) (-13 (-703) (-361) (-10 -7 (-15 ** (|#1| |#1| (-549)))))) (T -240))
-((-4090 (*1 *2 *3 *3 *2) (|partial| -12 (-5 *2 (-747)) (-4 *3 (-13 (-703) (-361) (-10 -7 (-15 ** (*3 *3 (-549)))))) (-5 *1 (-240 *3)))))
-(-10 -7 (-15 -4090 ((-3 (-747) "failed") |#1| |#1| (-747))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2272 (((-621 (-836 |#1|)) $) NIL)) (-2084 (((-1139 $) $ (-836 |#1|)) NIL) (((-1139 |#2|) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#2| (-541)))) (-2258 (($ $) NIL (|has| |#2| (-541)))) (-2799 (((-112) $) NIL (|has| |#2| (-541)))) (-3186 (((-747) $) NIL) (((-747) $ (-621 (-836 |#1|))) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-3979 (($ $) NIL (|has| |#2| (-444)))) (-2402 (((-411 $) $) NIL (|has| |#2| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#2| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-836 |#1|) "failed") $) NIL)) (-2659 ((|#2| $) NIL) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#2| (-1009 (-549)))) (((-836 |#1|) $) NIL)) (-1353 (($ $ $ (-836 |#1|)) NIL (|has| |#2| (-170)))) (-1457 (($ $ (-621 (-549))) NIL)) (-2070 (($ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) NIL) (((-665 |#2|) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1285 (($ $) NIL (|has| |#2| (-444))) (($ $ (-836 |#1|)) NIL (|has| |#2| (-444)))) (-2058 (((-621 $) $) NIL)) (-1420 (((-112) $) NIL (|has| |#2| (-880)))) (-2691 (($ $ |#2| (-234 (-3775 |#1|) (-747)) $) NIL)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-836 |#1|) (-857 (-372))) (|has| |#2| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-836 |#1|) (-857 (-549))) (|has| |#2| (-857 (-549)))))) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) NIL)) (-2261 (($ (-1139 |#2|) (-836 |#1|)) NIL) (($ (-1139 $) (-836 |#1|)) NIL)) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) NIL)) (-2246 (($ |#2| (-234 (-3775 |#1|) (-747))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ (-836 |#1|)) NIL)) (-3611 (((-234 (-3775 |#1|) (-747)) $) NIL) (((-747) $ (-836 |#1|)) NIL) (((-621 (-747)) $ (-621 (-836 |#1|))) NIL)) (-2863 (($ $ $) NIL (|has| |#2| (-823)))) (-3575 (($ $ $) NIL (|has| |#2| (-823)))) (-3705 (($ (-1 (-234 (-3775 |#1|) (-747)) (-234 (-3775 |#1|) (-747))) $) NIL)) (-2797 (($ (-1 |#2| |#2|) $) NIL)) (-1520 (((-3 (-836 |#1|) "failed") $) NIL)) (-2028 (($ $) NIL)) (-2043 ((|#2| $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-3851 (((-1125) $) NIL)) (-4266 (((-3 (-621 $) "failed") $) NIL)) (-2533 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-2 (|:| |var| (-836 |#1|)) (|:| -3731 (-747))) "failed") $) NIL)) (-3990 (((-1087) $) NIL)) (-2004 (((-112) $) NIL)) (-2016 ((|#2| $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#2| (-444)))) (-3727 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-2121 (((-411 $) $) NIL (|has| |#2| (-880)))) (-2042 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-541)))) (-2686 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-836 |#1|) |#2|) NIL) (($ $ (-621 (-836 |#1|)) (-621 |#2|)) NIL) (($ $ (-836 |#1|) $) NIL) (($ $ (-621 (-836 |#1|)) (-621 $)) NIL)) (-3602 (($ $ (-836 |#1|)) NIL (|has| |#2| (-170)))) (-3456 (($ $ (-836 |#1|)) NIL) (($ $ (-621 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-3701 (((-234 (-3775 |#1|) (-747)) $) NIL) (((-747) $ (-836 |#1|)) NIL) (((-621 (-747)) $ (-621 (-836 |#1|))) NIL)) (-2845 (((-863 (-372)) $) NIL (-12 (|has| (-836 |#1|) (-594 (-863 (-372)))) (|has| |#2| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-836 |#1|) (-594 (-863 (-549)))) (|has| |#2| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-836 |#1|) (-594 (-525))) (|has| |#2| (-594 (-525)))))) (-2216 ((|#2| $) NIL (|has| |#2| (-444))) (($ $ (-836 |#1|)) NIL (|has| |#2| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#2| (-880))))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) NIL) (($ (-836 |#1|)) NIL) (($ (-400 (-549))) NIL (-1536 (|has| |#2| (-38 (-400 (-549)))) (|has| |#2| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#2| (-541)))) (-4141 (((-621 |#2|) $) NIL)) (-2152 ((|#2| $ (-234 (-3775 |#1|) (-747))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#2| (-880))) (|has| |#2| (-143))))) (-2082 (((-747)) NIL)) (-1509 (($ $ $ (-747)) NIL (|has| |#2| (-170)))) (-1498 (((-112) $ $) NIL (|has| |#2| (-541)))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $ (-836 |#1|)) NIL) (($ $ (-621 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-2448 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2513 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#2| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#2| (-38 (-400 (-549))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-241 |#1| |#2|) (-13 (-920 |#2| (-234 (-3775 |#1|) (-747)) (-836 |#1|)) (-10 -8 (-15 -1457 ($ $ (-621 (-549)))))) (-621 (-1143)) (-1018)) (T -241))
-((-1457 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-241 *3 *4)) (-14 *3 (-621 (-1143))) (-4 *4 (-1018)))))
-(-13 (-920 |#2| (-234 (-3775 |#1|) (-747)) (-836 |#1|)) (-10 -8 (-15 -1457 ($ $ (-621 (-549))))))
-((-3834 (((-112) $ $) NIL)) (-2747 (((-1231) $) 15)) (-1827 (((-181) $) 9)) (-1764 (($ (-181)) 10)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 7)) (-2389 (((-112) $ $) 13)))
-(((-242) (-13 (-1067) (-10 -8 (-15 -1827 ((-181) $)) (-15 -1764 ($ (-181))) (-15 -2747 ((-1231) $))))) (T -242))
-((-1827 (*1 *2 *1) (-12 (-5 *2 (-181)) (-5 *1 (-242)))) (-1764 (*1 *1 *2) (-12 (-5 *2 (-181)) (-5 *1 (-242)))) (-2747 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-242)))))
-(-13 (-1067) (-10 -8 (-15 -1827 ((-181) $)) (-15 -1764 ($ (-181))) (-15 -2747 ((-1231) $))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3956 (($ (-892)) NIL (|has| |#4| (-1018)))) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-2861 (($ $ $) NIL (|has| |#4| (-769)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-3614 (((-747)) NIL (|has| |#4| (-361)))) (-1872 (((-549) $) NIL (|has| |#4| (-821)))) (-2254 ((|#4| $ (-549) |#4|) NIL (|has| $ (-6 -4338)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#4| "failed") $) NIL (|has| |#4| (-1067))) (((-3 (-549) "failed") $) NIL (-12 (|has| |#4| (-1009 (-549))) (|has| |#4| (-1067)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| |#4| (-1009 (-400 (-549)))) (|has| |#4| (-1067))))) (-2659 ((|#4| $) NIL (|has| |#4| (-1067))) (((-549) $) NIL (-12 (|has| |#4| (-1009 (-549))) (|has| |#4| (-1067)))) (((-400 (-549)) $) NIL (-12 (|has| |#4| (-1009 (-400 (-549)))) (|has| |#4| (-1067))))) (-3879 (((-2 (|:| -3521 (-665 |#4|)) (|:| |vec| (-1226 |#4|))) (-665 $) (-1226 $)) NIL (|has| |#4| (-1018))) (((-665 |#4|) (-665 $)) NIL (|has| |#4| (-1018))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (-12 (|has| |#4| (-617 (-549))) (|has| |#4| (-1018)))) (((-665 (-549)) (-665 $)) NIL (-12 (|has| |#4| (-617 (-549))) (|has| |#4| (-1018))))) (-2114 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#4| (-227)) (|has| |#4| (-1018))) (-12 (|has| |#4| (-617 (-549))) (|has| |#4| (-1018))) (|has| |#4| (-703)) (-12 (|has| |#4| (-871 (-1143))) (|has| |#4| (-1018)))))) (-3239 (($) NIL (|has| |#4| (-361)))) (-1879 ((|#4| $ (-549) |#4|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#4| $ (-549)) NIL)) (-2772 (((-112) $) NIL (|has| |#4| (-821)))) (-2989 (((-621 |#4|) $) NIL (|has| $ (-6 -4337)))) (-2675 (((-112) $) NIL (-1536 (-12 (|has| |#4| (-227)) (|has| |#4| (-1018))) (-12 (|has| |#4| (-617 (-549))) (|has| |#4| (-1018))) (|has| |#4| (-703)) (-12 (|has| |#4| (-871 (-1143))) (|has| |#4| (-1018)))))) (-2374 (((-112) $) NIL (|has| |#4| (-821)))) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) NIL (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (-1536 (|has| |#4| (-769)) (|has| |#4| (-821))))) (-1562 (((-621 |#4|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (-1536 (|has| |#4| (-769)) (|has| |#4| (-821))))) (-1868 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#4| |#4|) $) NIL)) (-1881 (((-892) $) NIL (|has| |#4| (-361)))) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3493 (($ (-892)) NIL (|has| |#4| (-361)))) (-3990 (((-1087) $) NIL)) (-3646 ((|#4| $) NIL (|has| (-549) (-823)))) (-1642 (($ $ |#4|) NIL (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#4|))) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-287 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-621 |#4|) (-621 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067))))) (-2696 (((-621 |#4|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#4| $ (-549) |#4|) NIL) ((|#4| $ (-549)) 12)) (-1706 ((|#4| $ $) NIL (|has| |#4| (-1018)))) (-2169 (($ (-1226 |#4|)) NIL)) (-2985 (((-133)) NIL (|has| |#4| (-356)))) (-3456 (($ $ (-1 |#4| |#4|) (-747)) NIL (|has| |#4| (-1018))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1018))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#4| (-871 (-1143))) (|has| |#4| (-1018)))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#4| (-871 (-1143))) (|has| |#4| (-1018)))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#4| (-871 (-1143))) (|has| |#4| (-1018)))) (($ $ (-1143)) NIL (-12 (|has| |#4| (-871 (-1143))) (|has| |#4| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#4| (-227)) (|has| |#4| (-1018)))) (($ $) NIL (-12 (|has| |#4| (-227)) (|has| |#4| (-1018))))) (-4000 (((-747) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337))) (((-747) |#4| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067))))) (-2281 (($ $) NIL)) (-3846 (((-1226 |#4|) $) NIL) (((-834) $) NIL) (($ |#4|) NIL (|has| |#4| (-1067))) (($ (-549)) NIL (-1536 (-12 (|has| |#4| (-1009 (-549))) (|has| |#4| (-1067))) (|has| |#4| (-1018)))) (($ (-400 (-549))) NIL (-12 (|has| |#4| (-1009 (-400 (-549)))) (|has| |#4| (-1067))))) (-2082 (((-747)) NIL (|has| |#4| (-1018)))) (-3527 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-3212 (($ $) NIL (|has| |#4| (-821)))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL (-1536 (-12 (|has| |#4| (-227)) (|has| |#4| (-1018))) (-12 (|has| |#4| (-617 (-549))) (|has| |#4| (-1018))) (|has| |#4| (-703)) (-12 (|has| |#4| (-871 (-1143))) (|has| |#4| (-1018)))) CONST)) (-1702 (($ $ (-1 |#4| |#4|) (-747)) NIL (|has| |#4| (-1018))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1018))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#4| (-871 (-1143))) (|has| |#4| (-1018)))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#4| (-871 (-1143))) (|has| |#4| (-1018)))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#4| (-871 (-1143))) (|has| |#4| (-1018)))) (($ $ (-1143)) NIL (-12 (|has| |#4| (-871 (-1143))) (|has| |#4| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#4| (-227)) (|has| |#4| (-1018)))) (($ $) NIL (-12 (|has| |#4| (-227)) (|has| |#4| (-1018))))) (-2448 (((-112) $ $) NIL (-1536 (|has| |#4| (-769)) (|has| |#4| (-821))))) (-2425 (((-112) $ $) NIL (-1536 (|has| |#4| (-769)) (|has| |#4| (-821))))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (-1536 (|has| |#4| (-769)) (|has| |#4| (-821))))) (-2412 (((-112) $ $) NIL (-1536 (|has| |#4| (-769)) (|has| |#4| (-821))))) (-2513 (($ $ |#4|) NIL (|has| |#4| (-356)))) (-2500 (($ $ $) NIL) (($ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-747)) NIL (-1536 (-12 (|has| |#4| (-227)) (|has| |#4| (-1018))) (-12 (|has| |#4| (-617 (-549))) (|has| |#4| (-1018))) (|has| |#4| (-703)) (-12 (|has| |#4| (-871 (-1143))) (|has| |#4| (-1018))))) (($ $ (-892)) NIL (-1536 (-12 (|has| |#4| (-227)) (|has| |#4| (-1018))) (-12 (|has| |#4| (-617 (-549))) (|has| |#4| (-1018))) (|has| |#4| (-703)) (-12 (|has| |#4| (-871 (-1143))) (|has| |#4| (-1018)))))) (* (($ |#2| $) 14) (($ (-549) $) NIL) (($ (-747) $) NIL) (($ (-892) $) NIL) (($ |#3| $) 18) (($ $ |#4|) NIL (|has| |#4| (-703))) (($ |#4| $) NIL (|has| |#4| (-703))) (($ $ $) NIL (-1536 (-12 (|has| |#4| (-227)) (|has| |#4| (-1018))) (-12 (|has| |#4| (-617 (-549))) (|has| |#4| (-1018))) (|has| |#4| (-703)) (-12 (|has| |#4| (-871 (-1143))) (|has| |#4| (-1018)))))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-243 |#1| |#2| |#3| |#4|) (-13 (-232 |#1| |#4|) (-624 |#2|) (-624 |#3|)) (-892) (-1018) (-1090 |#1| |#2| (-234 |#1| |#2|) (-234 |#1| |#2|)) (-624 |#2|)) (T -243))
+((** (*1 *1 *1 *2) (-12 (-4 *1 (-237)) (-5 *2 (-549)))) (-1990 (*1 *1 *1) (-4 *1 (-237))))
+(-13 (-283) (-38 (-400 (-549))) (-10 -8 (-15 ** ($ $ (-549))) (-15 -1990 ($ $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-283) . T) ((-624 #0#) . T) ((-624 $) . T) ((-694 #0#) . T) ((-703) . T) ((-1024 #0#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-4160 ((|#1| $) 48)) (-1342 (($ $) 57)) (-2850 (((-112) $ (-747)) 8)) (-2797 ((|#1| $ |#1|) 39 (|has| $ (-6 -4337)))) (-2956 (($ $ $) 53 (|has| $ (-6 -4337)))) (-1746 (($ $ $) 52 (|has| $ (-6 -4337)))) (-2250 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) 41 (|has| $ (-6 -4337)))) (-3034 (($) 7 T CONST)) (-1978 (($ $) 56)) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) 50)) (-3585 (((-112) $ $) 42 (|has| |#1| (-1066)))) (-3042 (($ $) 55)) (-1777 (((-112) $ (-747)) 9)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-3590 (((-621 |#1|) $) 45)) (-3028 (((-112) $) 49)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-3828 ((|#1| $) 59)) (-2532 (($ $) 58)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#1| $ "value") 47)) (-3541 (((-549) $ $) 44)) (-2917 (((-112) $) 46)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-3859 (($ $ $) 54 (|has| $ (-6 -4337)))) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) 51)) (-3605 (((-112) $ $) 43 (|has| |#1| (-1066)))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-238 |#1|) (-138) (-1179)) (T -238))
+((-3828 (*1 *2 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1179)))) (-2532 (*1 *1 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1179)))) (-1342 (*1 *1 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1179)))) (-1978 (*1 *1 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1179)))) (-3042 (*1 *1 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1179)))) (-3859 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-238 *2)) (-4 *2 (-1179)))) (-2956 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-238 *2)) (-4 *2 (-1179)))) (-1746 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-238 *2)) (-4 *2 (-1179)))))
+(-13 (-981 |t#1|) (-10 -8 (-15 -3828 (|t#1| $)) (-15 -2532 ($ $)) (-15 -1342 ($ $)) (-15 -1978 ($ $)) (-15 -3042 ($ $)) (IF (|has| $ (-6 -4337)) (PROGN (-15 -3859 ($ $ $)) (-15 -2956 ($ $ $)) (-15 -1746 ($ $ $))) |%noBranch|)))
+(((-34) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-981 |#1|) . T) ((-1066) |has| |#1| (-1066)) ((-1179) . T))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-4160 ((|#1| $) NIL)) (-2837 ((|#1| $) NIL)) (-1342 (($ $) NIL)) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-3327 (($ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2239 (((-112) $) NIL (|has| |#1| (-823))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-2015 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-823)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-3191 (($ $) 10 (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-2797 ((|#1| $ |#1|) NIL (|has| $ (-6 -4337)))) (-3931 (($ $ $) NIL (|has| $ (-6 -4337)))) (-1806 ((|#1| $ |#1|) NIL (|has| $ (-6 -4337)))) (-1368 ((|#1| $ |#1|) NIL (|has| $ (-6 -4337)))) (-2250 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4337))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4337))) (($ $ "rest" $) NIL (|has| $ (-6 -4337))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) NIL (|has| $ (-6 -4337))) ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) NIL (|has| $ (-6 -4337)))) (-3827 (($ (-1 (-112) |#1|) $) NIL)) (-1488 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2827 ((|#1| $) NIL)) (-3034 (($) NIL T CONST)) (-2918 (($ $) NIL (|has| $ (-6 -4337)))) (-3062 (($ $) NIL)) (-3656 (($ $) NIL) (($ $ (-747)) NIL)) (-3469 (($ $) NIL (|has| |#1| (-1066)))) (-3675 (($ $) 7 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3546 (($ |#1| $) NIL (|has| |#1| (-1066))) (($ (-1 (-112) |#1|) $) NIL)) (-3812 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1875 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) NIL)) (-2897 (((-112) $) NIL)) (-2881 (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1066))) (((-549) |#1| $) NIL (|has| |#1| (-1066))) (((-549) (-1 (-112) |#1|) $) NIL)) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) NIL)) (-3585 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3743 (($ (-747) |#1|) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) NIL (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3021 (($ $ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3050 (($ $ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3521 (($ |#1|) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3590 (((-621 |#1|) $) NIL)) (-3028 (((-112) $) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-3828 ((|#1| $) NIL) (($ $ (-747)) NIL)) (-1799 (($ $ $ (-549)) NIL) (($ |#1| $ (-549)) NIL)) (-2613 (($ $ $ (-549)) NIL) (($ |#1| $ (-549)) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3645 ((|#1| $) NIL) (($ $ (-747)) NIL)) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1943 (($ $ |#1|) NIL (|has| $ (-6 -4337)))) (-2791 (((-112) $) NIL)) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1192 (-549))) NIL) ((|#1| $ (-549)) NIL) ((|#1| $ (-549) |#1|) NIL) (($ $ "unique") 9) (($ $ "sort") 12) (((-747) $ "count") 16)) (-3541 (((-549) $ $) NIL)) (-2149 (($ $ (-1192 (-549))) NIL) (($ $ (-549)) NIL)) (-2162 (($ $ (-1192 (-549))) NIL) (($ $ (-549)) NIL)) (-3079 (($ (-621 |#1|)) 22)) (-2917 (((-112) $) NIL)) (-2188 (($ $) NIL)) (-1829 (($ $) NIL (|has| $ (-6 -4337)))) (-3117 (((-747) $) NIL)) (-2528 (($ $) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2049 (($ $ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) NIL)) (-3859 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1950 (($ $ $) NIL) (($ |#1| $) NIL) (($ (-621 $)) NIL) (($ $ |#1|) NIL)) (-3845 (($ (-621 |#1|)) 17) (((-621 |#1|) $) 18) (((-834) $) 21 (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) NIL)) (-3605 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-3774 (((-747) $) 14 (|has| $ (-6 -4336)))))
+(((-239 |#1|) (-13 (-642 |#1|) (-10 -8 (-15 -3845 ($ (-621 |#1|))) (-15 -3845 ((-621 |#1|) $)) (-15 -3079 ($ (-621 |#1|))) (-15 -3339 ($ $ "unique")) (-15 -3339 ($ $ "sort")) (-15 -3339 ((-747) $ "count")))) (-823)) (T -239))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-239 *3)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-239 *3)) (-4 *3 (-823)))) (-3079 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-239 *3)))) (-3339 (*1 *1 *1 *2) (-12 (-5 *2 "unique") (-5 *1 (-239 *3)) (-4 *3 (-823)))) (-3339 (*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-239 *3)) (-4 *3 (-823)))) (-3339 (*1 *2 *1 *3) (-12 (-5 *3 "count") (-5 *2 (-747)) (-5 *1 (-239 *4)) (-4 *4 (-823)))))
+(-13 (-642 |#1|) (-10 -8 (-15 -3845 ($ (-621 |#1|))) (-15 -3845 ((-621 |#1|) $)) (-15 -3079 ($ (-621 |#1|))) (-15 -3339 ($ $ "unique")) (-15 -3339 ($ $ "sort")) (-15 -3339 ((-747) $ "count"))))
+((-3929 (((-3 (-747) "failed") |#1| |#1| (-747)) 27)))
+(((-240 |#1|) (-10 -7 (-15 -3929 ((-3 (-747) "failed") |#1| |#1| (-747)))) (-13 (-703) (-361) (-10 -7 (-15 ** (|#1| |#1| (-549)))))) (T -240))
+((-3929 (*1 *2 *3 *3 *2) (|partial| -12 (-5 *2 (-747)) (-4 *3 (-13 (-703) (-361) (-10 -7 (-15 ** (*3 *3 (-549)))))) (-5 *1 (-240 *3)))))
+(-10 -7 (-15 -3929 ((-3 (-747) "failed") |#1| |#1| (-747))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2270 (((-621 (-836 |#1|)) $) NIL)) (-2082 (((-1138 $) $ (-836 |#1|)) NIL) (((-1138 |#2|) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#2| (-541)))) (-3044 (($ $) NIL (|has| |#2| (-541)))) (-2774 (((-112) $) NIL (|has| |#2| (-541)))) (-2216 (((-747) $) NIL) (((-747) $ (-621 (-836 |#1|))) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-3239 (($ $) NIL (|has| |#2| (-444)))) (-2620 (((-411 $) $) NIL (|has| |#2| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#2| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-836 |#1|) "failed") $) NIL)) (-2657 ((|#2| $) NIL) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#2| (-1009 (-549)))) (((-836 |#1|) $) NIL)) (-4114 (($ $ $ (-836 |#1|)) NIL (|has| |#2| (-170)))) (-3139 (($ $ (-621 (-549))) NIL)) (-2068 (($ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) NIL) (((-665 |#2|) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3004 (($ $) NIL (|has| |#2| (-444))) (($ $ (-836 |#1|)) NIL (|has| |#2| (-444)))) (-2056 (((-621 $) $) NIL)) (-1464 (((-112) $) NIL (|has| |#2| (-880)))) (-4064 (($ $ |#2| (-234 (-3774 |#1|) (-747)) $) NIL)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-836 |#1|) (-857 (-372))) (|has| |#2| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-836 |#1|) (-857 (-549))) (|has| |#2| (-857 (-549)))))) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) NIL)) (-2259 (($ (-1138 |#2|) (-836 |#1|)) NIL) (($ (-1138 $) (-836 |#1|)) NIL)) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) NIL)) (-2244 (($ |#2| (-234 (-3774 |#1|) (-747))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ (-836 |#1|)) NIL)) (-2391 (((-234 (-3774 |#1|) (-747)) $) NIL) (((-747) $ (-836 |#1|)) NIL) (((-621 (-747)) $ (-621 (-836 |#1|))) NIL)) (-2861 (($ $ $) NIL (|has| |#2| (-823)))) (-3574 (($ $ $) NIL (|has| |#2| (-823)))) (-3224 (($ (-1 (-234 (-3774 |#1|) (-747)) (-234 (-3774 |#1|) (-747))) $) NIL)) (-2795 (($ (-1 |#2| |#2|) $) NIL)) (-2236 (((-3 (-836 |#1|) "failed") $) NIL)) (-2027 (($ $) NIL)) (-2042 ((|#2| $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-3441 (((-1124) $) NIL)) (-4093 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-621 $) "failed") $) NIL)) (-1477 (((-3 (-2 (|:| |var| (-836 |#1|)) (|:| -1714 (-747))) "failed") $) NIL)) (-3988 (((-1086) $) NIL)) (-2001 (((-112) $) NIL)) (-2011 ((|#2| $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#2| (-444)))) (-3726 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-2119 (((-411 $) $) NIL (|has| |#2| (-880)))) (-2040 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-541)))) (-2684 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-836 |#1|) |#2|) NIL) (($ $ (-621 (-836 |#1|)) (-621 |#2|)) NIL) (($ $ (-836 |#1|) $) NIL) (($ $ (-621 (-836 |#1|)) (-621 $)) NIL)) (-2740 (($ $ (-836 |#1|)) NIL (|has| |#2| (-170)))) (-3455 (($ $ (-836 |#1|)) NIL) (($ $ (-621 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-3977 (((-234 (-3774 |#1|) (-747)) $) NIL) (((-747) $ (-836 |#1|)) NIL) (((-621 (-747)) $ (-621 (-836 |#1|))) NIL)) (-2843 (((-863 (-372)) $) NIL (-12 (|has| (-836 |#1|) (-594 (-863 (-372)))) (|has| |#2| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-836 |#1|) (-594 (-863 (-549)))) (|has| |#2| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-836 |#1|) (-594 (-525))) (|has| |#2| (-594 (-525)))))) (-1700 ((|#2| $) NIL (|has| |#2| (-444))) (($ $ (-836 |#1|)) NIL (|has| |#2| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#2| (-880))))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) NIL) (($ (-836 |#1|)) NIL) (($ (-400 (-549))) NIL (-1536 (|has| |#2| (-38 (-400 (-549)))) (|has| |#2| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#2| (-541)))) (-2157 (((-621 |#2|) $) NIL)) (-4068 ((|#2| $ (-234 (-3774 |#1|) (-747))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#2| (-880))) (|has| |#2| (-143))))) (-2371 (((-747)) NIL)) (-4046 (($ $ $ (-747)) NIL (|has| |#2| (-170)))) (-2441 (((-112) $ $) NIL (|has| |#2| (-541)))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $ (-836 |#1|)) NIL) (($ $ (-621 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-2447 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2511 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#2| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#2| (-38 (-400 (-549))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-241 |#1| |#2|) (-13 (-920 |#2| (-234 (-3774 |#1|) (-747)) (-836 |#1|)) (-10 -8 (-15 -3139 ($ $ (-621 (-549)))))) (-621 (-1142)) (-1018)) (T -241))
+((-3139 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-241 *3 *4)) (-14 *3 (-621 (-1142))) (-4 *4 (-1018)))))
+(-13 (-920 |#2| (-234 (-3774 |#1|) (-747)) (-836 |#1|)) (-10 -8 (-15 -3139 ($ $ (-621 (-549))))))
+((-3832 (((-112) $ $) NIL)) (-2746 (((-1230) $) 15)) (-1401 (((-181) $) 9)) (-3281 (($ (-181)) 10)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 7)) (-2387 (((-112) $ $) 13)))
+(((-242) (-13 (-1066) (-10 -8 (-15 -1401 ((-181) $)) (-15 -3281 ($ (-181))) (-15 -2746 ((-1230) $))))) (T -242))
+((-1401 (*1 *2 *1) (-12 (-5 *2 (-181)) (-5 *1 (-242)))) (-3281 (*1 *1 *2) (-12 (-5 *2 (-181)) (-5 *1 (-242)))) (-2746 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-242)))))
+(-13 (-1066) (-10 -8 (-15 -1401 ((-181) $)) (-15 -3281 ($ (-181))) (-15 -2746 ((-1230) $))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-1627 (($ (-892)) NIL (|has| |#4| (-1018)))) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-4280 (($ $ $) NIL (|has| |#4| (-769)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-3614 (((-747)) NIL (|has| |#4| (-361)))) (-1741 (((-549) $) NIL (|has| |#4| (-821)))) (-2250 ((|#4| $ (-549) |#4|) NIL (|has| $ (-6 -4337)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#4| "failed") $) NIL (|has| |#4| (-1066))) (((-3 (-549) "failed") $) NIL (-12 (|has| |#4| (-1009 (-549))) (|has| |#4| (-1066)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| |#4| (-1009 (-400 (-549)))) (|has| |#4| (-1066))))) (-2657 ((|#4| $) NIL (|has| |#4| (-1066))) (((-549) $) NIL (-12 (|has| |#4| (-1009 (-549))) (|has| |#4| (-1066)))) (((-400 (-549)) $) NIL (-12 (|has| |#4| (-1009 (-400 (-549)))) (|has| |#4| (-1066))))) (-3446 (((-2 (|:| -3697 (-665 |#4|)) (|:| |vec| (-1225 |#4|))) (-665 $) (-1225 $)) NIL (|has| |#4| (-1018))) (((-665 |#4|) (-665 $)) NIL (|has| |#4| (-1018))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (-12 (|has| |#4| (-617 (-549))) (|has| |#4| (-1018)))) (((-665 (-549)) (-665 $)) NIL (-12 (|has| |#4| (-617 (-549))) (|has| |#4| (-1018))))) (-2612 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#4| (-227)) (|has| |#4| (-1018))) (-12 (|has| |#4| (-617 (-549))) (|has| |#4| (-1018))) (|has| |#4| (-703)) (-12 (|has| |#4| (-871 (-1142))) (|has| |#4| (-1018)))))) (-3237 (($) NIL (|has| |#4| (-361)))) (-1875 ((|#4| $ (-549) |#4|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#4| $ (-549)) NIL)) (-2357 (((-112) $) NIL (|has| |#4| (-821)))) (-2987 (((-621 |#4|) $) NIL (|has| $ (-6 -4336)))) (-2297 (((-112) $) NIL (-1536 (-12 (|has| |#4| (-227)) (|has| |#4| (-1018))) (-12 (|has| |#4| (-617 (-549))) (|has| |#4| (-1018))) (|has| |#4| (-703)) (-12 (|has| |#4| (-871 (-1142))) (|has| |#4| (-1018)))))) (-1992 (((-112) $) NIL (|has| |#4| (-821)))) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) NIL (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (-1536 (|has| |#4| (-769)) (|has| |#4| (-821))))) (-3698 (((-621 |#4|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (-1536 (|has| |#4| (-769)) (|has| |#4| (-821))))) (-1864 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#4| |#4|) $) NIL)) (-3309 (((-892) $) NIL (|has| |#4| (-361)))) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3494 (($ (-892)) NIL (|has| |#4| (-361)))) (-3988 (((-1086) $) NIL)) (-3645 ((|#4| $) NIL (|has| (-549) (-823)))) (-1943 (($ $ |#4|) NIL (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#4|))) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-287 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-621 |#4|) (-621 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066))))) (-3347 (((-621 |#4|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#4| $ (-549) |#4|) NIL) ((|#4| $ (-549)) 12)) (-1283 ((|#4| $ $) NIL (|has| |#4| (-1018)))) (-2167 (($ (-1225 |#4|)) NIL)) (-2260 (((-133)) NIL (|has| |#4| (-356)))) (-3455 (($ $ (-1 |#4| |#4|) (-747)) NIL (|has| |#4| (-1018))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1018))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#4| (-871 (-1142))) (|has| |#4| (-1018)))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#4| (-871 (-1142))) (|has| |#4| (-1018)))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#4| (-871 (-1142))) (|has| |#4| (-1018)))) (($ $ (-1142)) NIL (-12 (|has| |#4| (-871 (-1142))) (|has| |#4| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#4| (-227)) (|has| |#4| (-1018)))) (($ $) NIL (-12 (|has| |#4| (-227)) (|has| |#4| (-1018))))) (-3997 (((-747) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336))) (((-747) |#4| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066))))) (-2279 (($ $) NIL)) (-3845 (((-1225 |#4|) $) NIL) (((-834) $) NIL) (($ |#4|) NIL (|has| |#4| (-1066))) (($ (-549)) NIL (-1536 (-12 (|has| |#4| (-1009 (-549))) (|has| |#4| (-1066))) (|has| |#4| (-1018)))) (($ (-400 (-549))) NIL (-12 (|has| |#4| (-1009 (-400 (-549)))) (|has| |#4| (-1066))))) (-2371 (((-747)) NIL (|has| |#4| (-1018)))) (-3025 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-2199 (($ $) NIL (|has| |#4| (-821)))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL (-1536 (-12 (|has| |#4| (-227)) (|has| |#4| (-1018))) (-12 (|has| |#4| (-617 (-549))) (|has| |#4| (-1018))) (|has| |#4| (-703)) (-12 (|has| |#4| (-871 (-1142))) (|has| |#4| (-1018)))) CONST)) (-1699 (($ $ (-1 |#4| |#4|) (-747)) NIL (|has| |#4| (-1018))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1018))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#4| (-871 (-1142))) (|has| |#4| (-1018)))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#4| (-871 (-1142))) (|has| |#4| (-1018)))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#4| (-871 (-1142))) (|has| |#4| (-1018)))) (($ $ (-1142)) NIL (-12 (|has| |#4| (-871 (-1142))) (|has| |#4| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#4| (-227)) (|has| |#4| (-1018)))) (($ $) NIL (-12 (|has| |#4| (-227)) (|has| |#4| (-1018))))) (-2447 (((-112) $ $) NIL (-1536 (|has| |#4| (-769)) (|has| |#4| (-821))))) (-2423 (((-112) $ $) NIL (-1536 (|has| |#4| (-769)) (|has| |#4| (-821))))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (-1536 (|has| |#4| (-769)) (|has| |#4| (-821))))) (-2409 (((-112) $ $) NIL (-1536 (|has| |#4| (-769)) (|has| |#4| (-821))))) (-2511 (($ $ |#4|) NIL (|has| |#4| (-356)))) (-2498 (($ $ $) NIL) (($ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-747)) NIL (-1536 (-12 (|has| |#4| (-227)) (|has| |#4| (-1018))) (-12 (|has| |#4| (-617 (-549))) (|has| |#4| (-1018))) (|has| |#4| (-703)) (-12 (|has| |#4| (-871 (-1142))) (|has| |#4| (-1018))))) (($ $ (-892)) NIL (-1536 (-12 (|has| |#4| (-227)) (|has| |#4| (-1018))) (-12 (|has| |#4| (-617 (-549))) (|has| |#4| (-1018))) (|has| |#4| (-703)) (-12 (|has| |#4| (-871 (-1142))) (|has| |#4| (-1018)))))) (* (($ |#2| $) 14) (($ (-549) $) NIL) (($ (-747) $) NIL) (($ (-892) $) NIL) (($ |#3| $) 18) (($ $ |#4|) NIL (|has| |#4| (-703))) (($ |#4| $) NIL (|has| |#4| (-703))) (($ $ $) NIL (-1536 (-12 (|has| |#4| (-227)) (|has| |#4| (-1018))) (-12 (|has| |#4| (-617 (-549))) (|has| |#4| (-1018))) (|has| |#4| (-703)) (-12 (|has| |#4| (-871 (-1142))) (|has| |#4| (-1018)))))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-243 |#1| |#2| |#3| |#4|) (-13 (-232 |#1| |#4|) (-624 |#2|) (-624 |#3|)) (-892) (-1018) (-1089 |#1| |#2| (-234 |#1| |#2|) (-234 |#1| |#2|)) (-624 |#2|)) (T -243))
NIL
(-13 (-232 |#1| |#4|) (-624 |#2|) (-624 |#3|))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3956 (($ (-892)) NIL (|has| |#3| (-1018)))) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-2861 (($ $ $) NIL (|has| |#3| (-769)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-3614 (((-747)) NIL (|has| |#3| (-361)))) (-1872 (((-549) $) NIL (|has| |#3| (-821)))) (-2254 ((|#3| $ (-549) |#3|) NIL (|has| $ (-6 -4338)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#3| "failed") $) NIL (|has| |#3| (-1067))) (((-3 (-549) "failed") $) NIL (-12 (|has| |#3| (-1009 (-549))) (|has| |#3| (-1067)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| |#3| (-1009 (-400 (-549)))) (|has| |#3| (-1067))))) (-2659 ((|#3| $) NIL (|has| |#3| (-1067))) (((-549) $) NIL (-12 (|has| |#3| (-1009 (-549))) (|has| |#3| (-1067)))) (((-400 (-549)) $) NIL (-12 (|has| |#3| (-1009 (-400 (-549)))) (|has| |#3| (-1067))))) (-3879 (((-2 (|:| -3521 (-665 |#3|)) (|:| |vec| (-1226 |#3|))) (-665 $) (-1226 $)) NIL (|has| |#3| (-1018))) (((-665 |#3|) (-665 $)) NIL (|has| |#3| (-1018))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018)))) (((-665 (-549)) (-665 $)) NIL (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018))))) (-2114 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#3| (-227)) (|has| |#3| (-1018))) (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018))) (|has| |#3| (-703)) (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))))) (-3239 (($) NIL (|has| |#3| (-361)))) (-1879 ((|#3| $ (-549) |#3|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#3| $ (-549)) NIL)) (-2772 (((-112) $) NIL (|has| |#3| (-821)))) (-2989 (((-621 |#3|) $) NIL (|has| $ (-6 -4337)))) (-2675 (((-112) $) NIL (-1536 (-12 (|has| |#3| (-227)) (|has| |#3| (-1018))) (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018))) (|has| |#3| (-703)) (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))))) (-2374 (((-112) $) NIL (|has| |#3| (-821)))) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) NIL (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-1562 (((-621 |#3|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#3| (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-1868 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#3| |#3|) $) NIL)) (-1881 (((-892) $) NIL (|has| |#3| (-361)))) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3493 (($ (-892)) NIL (|has| |#3| (-361)))) (-3990 (((-1087) $) NIL)) (-3646 ((|#3| $) NIL (|has| (-549) (-823)))) (-1642 (($ $ |#3|) NIL (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#3|))) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067)))) (($ $ (-287 |#3|)) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067)))) (($ $ (-621 |#3|) (-621 |#3|)) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#3| (-1067))))) (-2696 (((-621 |#3|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#3| $ (-549) |#3|) NIL) ((|#3| $ (-549)) 11)) (-1706 ((|#3| $ $) NIL (|has| |#3| (-1018)))) (-2169 (($ (-1226 |#3|)) NIL)) (-2985 (((-133)) NIL (|has| |#3| (-356)))) (-3456 (($ $ (-1 |#3| |#3|) (-747)) NIL (|has| |#3| (-1018))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1018))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))) (($ $ (-1143)) NIL (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#3| (-227)) (|has| |#3| (-1018)))) (($ $) NIL (-12 (|has| |#3| (-227)) (|has| |#3| (-1018))))) (-4000 (((-747) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4337))) (((-747) |#3| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#3| (-1067))))) (-2281 (($ $) NIL)) (-3846 (((-1226 |#3|) $) NIL) (((-834) $) NIL) (($ |#3|) NIL (|has| |#3| (-1067))) (($ (-549)) NIL (-1536 (-12 (|has| |#3| (-1009 (-549))) (|has| |#3| (-1067))) (|has| |#3| (-1018)))) (($ (-400 (-549))) NIL (-12 (|has| |#3| (-1009 (-400 (-549)))) (|has| |#3| (-1067))))) (-2082 (((-747)) NIL (|has| |#3| (-1018)))) (-3527 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4337)))) (-3212 (($ $) NIL (|has| |#3| (-821)))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL (-1536 (-12 (|has| |#3| (-227)) (|has| |#3| (-1018))) (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018))) (|has| |#3| (-703)) (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))) CONST)) (-1702 (($ $ (-1 |#3| |#3|) (-747)) NIL (|has| |#3| (-1018))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1018))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))) (($ $ (-1143)) NIL (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#3| (-227)) (|has| |#3| (-1018)))) (($ $) NIL (-12 (|has| |#3| (-227)) (|has| |#3| (-1018))))) (-2448 (((-112) $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-2425 (((-112) $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-2412 (((-112) $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-2513 (($ $ |#3|) NIL (|has| |#3| (-356)))) (-2500 (($ $ $) NIL) (($ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-747)) NIL (-1536 (-12 (|has| |#3| (-227)) (|has| |#3| (-1018))) (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018))) (|has| |#3| (-703)) (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018))))) (($ $ (-892)) NIL (-1536 (-12 (|has| |#3| (-227)) (|has| |#3| (-1018))) (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018))) (|has| |#3| (-703)) (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))))) (* (($ |#2| $) 13) (($ (-549) $) NIL) (($ (-747) $) NIL) (($ (-892) $) NIL) (($ $ |#3|) NIL (|has| |#3| (-703))) (($ |#3| $) NIL (|has| |#3| (-703))) (($ $ $) NIL (-1536 (-12 (|has| |#3| (-227)) (|has| |#3| (-1018))) (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018))) (|has| |#3| (-703)) (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-1627 (($ (-892)) NIL (|has| |#3| (-1018)))) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-4280 (($ $ $) NIL (|has| |#3| (-769)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-3614 (((-747)) NIL (|has| |#3| (-361)))) (-1741 (((-549) $) NIL (|has| |#3| (-821)))) (-2250 ((|#3| $ (-549) |#3|) NIL (|has| $ (-6 -4337)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#3| "failed") $) NIL (|has| |#3| (-1066))) (((-3 (-549) "failed") $) NIL (-12 (|has| |#3| (-1009 (-549))) (|has| |#3| (-1066)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| |#3| (-1009 (-400 (-549)))) (|has| |#3| (-1066))))) (-2657 ((|#3| $) NIL (|has| |#3| (-1066))) (((-549) $) NIL (-12 (|has| |#3| (-1009 (-549))) (|has| |#3| (-1066)))) (((-400 (-549)) $) NIL (-12 (|has| |#3| (-1009 (-400 (-549)))) (|has| |#3| (-1066))))) (-3446 (((-2 (|:| -3697 (-665 |#3|)) (|:| |vec| (-1225 |#3|))) (-665 $) (-1225 $)) NIL (|has| |#3| (-1018))) (((-665 |#3|) (-665 $)) NIL (|has| |#3| (-1018))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018)))) (((-665 (-549)) (-665 $)) NIL (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018))))) (-2612 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#3| (-227)) (|has| |#3| (-1018))) (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018))) (|has| |#3| (-703)) (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))))) (-3237 (($) NIL (|has| |#3| (-361)))) (-1875 ((|#3| $ (-549) |#3|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#3| $ (-549)) NIL)) (-2357 (((-112) $) NIL (|has| |#3| (-821)))) (-2987 (((-621 |#3|) $) NIL (|has| $ (-6 -4336)))) (-2297 (((-112) $) NIL (-1536 (-12 (|has| |#3| (-227)) (|has| |#3| (-1018))) (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018))) (|has| |#3| (-703)) (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))))) (-1992 (((-112) $) NIL (|has| |#3| (-821)))) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) NIL (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-3698 (((-621 |#3|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#3| (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-1864 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#3| |#3|) $) NIL)) (-3309 (((-892) $) NIL (|has| |#3| (-361)))) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3494 (($ (-892)) NIL (|has| |#3| (-361)))) (-3988 (((-1086) $) NIL)) (-3645 ((|#3| $) NIL (|has| (-549) (-823)))) (-1943 (($ $ |#3|) NIL (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#3|))) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066)))) (($ $ (-287 |#3|)) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066)))) (($ $ (-621 |#3|) (-621 |#3|)) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#3| (-1066))))) (-3347 (((-621 |#3|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#3| $ (-549) |#3|) NIL) ((|#3| $ (-549)) 11)) (-1283 ((|#3| $ $) NIL (|has| |#3| (-1018)))) (-2167 (($ (-1225 |#3|)) NIL)) (-2260 (((-133)) NIL (|has| |#3| (-356)))) (-3455 (($ $ (-1 |#3| |#3|) (-747)) NIL (|has| |#3| (-1018))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1018))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))) (($ $ (-1142)) NIL (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#3| (-227)) (|has| |#3| (-1018)))) (($ $) NIL (-12 (|has| |#3| (-227)) (|has| |#3| (-1018))))) (-3997 (((-747) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4336))) (((-747) |#3| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#3| (-1066))))) (-2279 (($ $) NIL)) (-3845 (((-1225 |#3|) $) NIL) (((-834) $) NIL) (($ |#3|) NIL (|has| |#3| (-1066))) (($ (-549)) NIL (-1536 (-12 (|has| |#3| (-1009 (-549))) (|has| |#3| (-1066))) (|has| |#3| (-1018)))) (($ (-400 (-549))) NIL (-12 (|has| |#3| (-1009 (-400 (-549)))) (|has| |#3| (-1066))))) (-2371 (((-747)) NIL (|has| |#3| (-1018)))) (-3025 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4336)))) (-2199 (($ $) NIL (|has| |#3| (-821)))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL (-1536 (-12 (|has| |#3| (-227)) (|has| |#3| (-1018))) (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018))) (|has| |#3| (-703)) (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))) CONST)) (-1699 (($ $ (-1 |#3| |#3|) (-747)) NIL (|has| |#3| (-1018))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1018))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))) (($ $ (-1142)) NIL (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#3| (-227)) (|has| |#3| (-1018)))) (($ $) NIL (-12 (|has| |#3| (-227)) (|has| |#3| (-1018))))) (-2447 (((-112) $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-2423 (((-112) $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-2409 (((-112) $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-2511 (($ $ |#3|) NIL (|has| |#3| (-356)))) (-2498 (($ $ $) NIL) (($ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-747)) NIL (-1536 (-12 (|has| |#3| (-227)) (|has| |#3| (-1018))) (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018))) (|has| |#3| (-703)) (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018))))) (($ $ (-892)) NIL (-1536 (-12 (|has| |#3| (-227)) (|has| |#3| (-1018))) (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018))) (|has| |#3| (-703)) (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))))) (* (($ |#2| $) 13) (($ (-549) $) NIL) (($ (-747) $) NIL) (($ (-892) $) NIL) (($ $ |#3|) NIL (|has| |#3| (-703))) (($ |#3| $) NIL (|has| |#3| (-703))) (($ $ $) NIL (-1536 (-12 (|has| |#3| (-227)) (|has| |#3| (-1018))) (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018))) (|has| |#3| (-703)) (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
(((-244 |#1| |#2| |#3|) (-13 (-232 |#1| |#3|) (-624 |#2|)) (-747) (-1018) (-624 |#2|)) (T -244))
NIL
(-13 (-232 |#1| |#3|) (-624 |#2|))
-((-3977 (((-621 (-747)) $) 47) (((-621 (-747)) $ |#3|) 50)) (-1637 (((-747) $) 49) (((-747) $ |#3|) 52)) (-3920 (($ $) 65)) (-2714 (((-3 |#2| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 (-549) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 |#3| "failed") $) 72)) (-2088 (((-747) $ |#3|) 39) (((-747) $) 36)) (-3040 (((-1 $ (-747)) |#3|) 15) (((-1 $ (-747)) $) 77)) (-4052 ((|#4| $) 58)) (-2709 (((-112) $) 56)) (-2255 (($ $) 64)) (-2686 (($ $ (-621 (-287 $))) 97) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-621 |#4|) (-621 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-621 |#4|) (-621 $)) NIL) (($ $ |#3| $) NIL) (($ $ (-621 |#3|) (-621 $)) 89) (($ $ |#3| |#2|) NIL) (($ $ (-621 |#3|) (-621 |#2|)) 84)) (-3456 (($ $ |#4|) NIL) (($ $ (-621 |#4|)) NIL) (($ $ |#4| (-747)) NIL) (($ $ (-621 |#4|) (-621 (-747))) NIL) (($ $) NIL) (($ $ (-747)) NIL) (($ $ (-1143)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) 32)) (-1920 (((-621 |#3|) $) 75)) (-3701 ((|#5| $) NIL) (((-747) $ |#4|) NIL) (((-621 (-747)) $ (-621 |#4|)) NIL) (((-747) $ |#3|) 44)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (($ |#3|) 67) (($ (-400 (-549))) NIL) (($ $) NIL)))
-(((-245 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3846 (|#1| |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -2686 (|#1| |#1| (-621 |#3|) (-621 |#2|))) (-15 -2686 (|#1| |#1| |#3| |#2|)) (-15 -2686 (|#1| |#1| (-621 |#3|) (-621 |#1|))) (-15 -2686 (|#1| |#1| |#3| |#1|)) (-15 -3040 ((-1 |#1| (-747)) |#1|)) (-15 -3920 (|#1| |#1|)) (-15 -2255 (|#1| |#1|)) (-15 -4052 (|#4| |#1|)) (-15 -2709 ((-112) |#1|)) (-15 -1637 ((-747) |#1| |#3|)) (-15 -3977 ((-621 (-747)) |#1| |#3|)) (-15 -1637 ((-747) |#1|)) (-15 -3977 ((-621 (-747)) |#1|)) (-15 -3701 ((-747) |#1| |#3|)) (-15 -2088 ((-747) |#1|)) (-15 -2088 ((-747) |#1| |#3|)) (-15 -1920 ((-621 |#3|) |#1|)) (-15 -3040 ((-1 |#1| (-747)) |#3|)) (-15 -2714 ((-3 |#3| "failed") |#1|)) (-15 -3846 (|#1| |#3|)) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1|)) (-15 -3701 ((-621 (-747)) |#1| (-621 |#4|))) (-15 -3701 ((-747) |#1| |#4|)) (-15 -2714 ((-3 |#4| "failed") |#1|)) (-15 -3846 (|#1| |#4|)) (-15 -2686 (|#1| |#1| (-621 |#4|) (-621 |#1|))) (-15 -2686 (|#1| |#1| |#4| |#1|)) (-15 -2686 (|#1| |#1| (-621 |#4|) (-621 |#2|))) (-15 -2686 (|#1| |#1| |#4| |#2|)) (-15 -2686 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2686 (|#1| |#1| |#1| |#1|)) (-15 -2686 (|#1| |#1| (-287 |#1|))) (-15 -2686 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -3701 (|#5| |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3846 (|#1| |#2|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -3456 (|#1| |#1| (-621 |#4|) (-621 (-747)))) (-15 -3456 (|#1| |#1| |#4| (-747))) (-15 -3456 (|#1| |#1| (-621 |#4|))) (-15 -3456 (|#1| |#1| |#4|)) (-15 -3846 (|#1| (-549))) (-15 -3846 ((-834) |#1|))) (-246 |#2| |#3| |#4| |#5|) (-1018) (-823) (-259 |#3|) (-769)) (T -245))
+((-3066 (((-621 (-747)) $) 47) (((-621 (-747)) $ |#3|) 50)) (-1518 (((-747) $) 49) (((-747) $ |#3|) 52)) (-2703 (($ $) 65)) (-2712 (((-3 |#2| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 (-549) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 |#3| "failed") $) 72)) (-2729 (((-747) $ |#3|) 39) (((-747) $) 36)) (-2205 (((-1 $ (-747)) |#3|) 15) (((-1 $ (-747)) $) 77)) (-4051 ((|#4| $) 58)) (-3104 (((-112) $) 56)) (-2255 (($ $) 64)) (-2684 (($ $ (-621 (-287 $))) 97) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-621 |#4|) (-621 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-621 |#4|) (-621 $)) NIL) (($ $ |#3| $) NIL) (($ $ (-621 |#3|) (-621 $)) 89) (($ $ |#3| |#2|) NIL) (($ $ (-621 |#3|) (-621 |#2|)) 84)) (-3455 (($ $ |#4|) NIL) (($ $ (-621 |#4|)) NIL) (($ $ |#4| (-747)) NIL) (($ $ (-621 |#4|) (-621 (-747))) NIL) (($ $) NIL) (($ $ (-747)) NIL) (($ $ (-1142)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) 32)) (-1640 (((-621 |#3|) $) 75)) (-3977 ((|#5| $) NIL) (((-747) $ |#4|) NIL) (((-621 (-747)) $ (-621 |#4|)) NIL) (((-747) $ |#3|) 44)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (($ |#3|) 67) (($ (-400 (-549))) NIL) (($ $) NIL)))
+(((-245 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3845 (|#1| |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -2684 (|#1| |#1| (-621 |#3|) (-621 |#2|))) (-15 -2684 (|#1| |#1| |#3| |#2|)) (-15 -2684 (|#1| |#1| (-621 |#3|) (-621 |#1|))) (-15 -2684 (|#1| |#1| |#3| |#1|)) (-15 -2205 ((-1 |#1| (-747)) |#1|)) (-15 -2703 (|#1| |#1|)) (-15 -2255 (|#1| |#1|)) (-15 -4051 (|#4| |#1|)) (-15 -3104 ((-112) |#1|)) (-15 -1518 ((-747) |#1| |#3|)) (-15 -3066 ((-621 (-747)) |#1| |#3|)) (-15 -1518 ((-747) |#1|)) (-15 -3066 ((-621 (-747)) |#1|)) (-15 -3977 ((-747) |#1| |#3|)) (-15 -2729 ((-747) |#1|)) (-15 -2729 ((-747) |#1| |#3|)) (-15 -1640 ((-621 |#3|) |#1|)) (-15 -2205 ((-1 |#1| (-747)) |#3|)) (-15 -2712 ((-3 |#3| "failed") |#1|)) (-15 -3845 (|#1| |#3|)) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1|)) (-15 -3977 ((-621 (-747)) |#1| (-621 |#4|))) (-15 -3977 ((-747) |#1| |#4|)) (-15 -2712 ((-3 |#4| "failed") |#1|)) (-15 -3845 (|#1| |#4|)) (-15 -2684 (|#1| |#1| (-621 |#4|) (-621 |#1|))) (-15 -2684 (|#1| |#1| |#4| |#1|)) (-15 -2684 (|#1| |#1| (-621 |#4|) (-621 |#2|))) (-15 -2684 (|#1| |#1| |#4| |#2|)) (-15 -2684 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2684 (|#1| |#1| |#1| |#1|)) (-15 -2684 (|#1| |#1| (-287 |#1|))) (-15 -2684 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -3977 (|#5| |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3845 (|#1| |#2|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -3455 (|#1| |#1| (-621 |#4|) (-621 (-747)))) (-15 -3455 (|#1| |#1| |#4| (-747))) (-15 -3455 (|#1| |#1| (-621 |#4|))) (-15 -3455 (|#1| |#1| |#4|)) (-15 -3845 (|#1| (-549))) (-15 -3845 ((-834) |#1|))) (-246 |#2| |#3| |#4| |#5|) (-1018) (-823) (-259 |#3|) (-769)) (T -245))
NIL
-(-10 -8 (-15 -3846 (|#1| |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -2686 (|#1| |#1| (-621 |#3|) (-621 |#2|))) (-15 -2686 (|#1| |#1| |#3| |#2|)) (-15 -2686 (|#1| |#1| (-621 |#3|) (-621 |#1|))) (-15 -2686 (|#1| |#1| |#3| |#1|)) (-15 -3040 ((-1 |#1| (-747)) |#1|)) (-15 -3920 (|#1| |#1|)) (-15 -2255 (|#1| |#1|)) (-15 -4052 (|#4| |#1|)) (-15 -2709 ((-112) |#1|)) (-15 -1637 ((-747) |#1| |#3|)) (-15 -3977 ((-621 (-747)) |#1| |#3|)) (-15 -1637 ((-747) |#1|)) (-15 -3977 ((-621 (-747)) |#1|)) (-15 -3701 ((-747) |#1| |#3|)) (-15 -2088 ((-747) |#1|)) (-15 -2088 ((-747) |#1| |#3|)) (-15 -1920 ((-621 |#3|) |#1|)) (-15 -3040 ((-1 |#1| (-747)) |#3|)) (-15 -2714 ((-3 |#3| "failed") |#1|)) (-15 -3846 (|#1| |#3|)) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1|)) (-15 -3701 ((-621 (-747)) |#1| (-621 |#4|))) (-15 -3701 ((-747) |#1| |#4|)) (-15 -2714 ((-3 |#4| "failed") |#1|)) (-15 -3846 (|#1| |#4|)) (-15 -2686 (|#1| |#1| (-621 |#4|) (-621 |#1|))) (-15 -2686 (|#1| |#1| |#4| |#1|)) (-15 -2686 (|#1| |#1| (-621 |#4|) (-621 |#2|))) (-15 -2686 (|#1| |#1| |#4| |#2|)) (-15 -2686 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2686 (|#1| |#1| |#1| |#1|)) (-15 -2686 (|#1| |#1| (-287 |#1|))) (-15 -2686 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -3701 (|#5| |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3846 (|#1| |#2|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -3456 (|#1| |#1| (-621 |#4|) (-621 (-747)))) (-15 -3456 (|#1| |#1| |#4| (-747))) (-15 -3456 (|#1| |#1| (-621 |#4|))) (-15 -3456 (|#1| |#1| |#4|)) (-15 -3846 (|#1| (-549))) (-15 -3846 ((-834) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-3977 (((-621 (-747)) $) 212) (((-621 (-747)) $ |#2|) 210)) (-1637 (((-747) $) 211) (((-747) $ |#2|) 209)) (-2272 (((-621 |#3|) $) 108)) (-2084 (((-1139 $) $ |#3|) 123) (((-1139 |#1|) $) 122)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 85 (|has| |#1| (-541)))) (-2258 (($ $) 86 (|has| |#1| (-541)))) (-2799 (((-112) $) 88 (|has| |#1| (-541)))) (-3186 (((-747) $) 110) (((-747) $ (-621 |#3|)) 109)) (-2001 (((-3 $ "failed") $ $) 19)) (-3231 (((-411 (-1139 $)) (-1139 $)) 98 (|has| |#1| (-880)))) (-3979 (($ $) 96 (|has| |#1| (-444)))) (-2402 (((-411 $) $) 95 (|has| |#1| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) 101 (|has| |#1| (-880)))) (-3920 (($ $) 205)) (-1682 (($) 17 T CONST)) (-2714 (((-3 |#1| "failed") $) 162) (((-3 (-400 (-549)) "failed") $) 160 (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) 158 (|has| |#1| (-1009 (-549)))) (((-3 |#3| "failed") $) 134) (((-3 |#2| "failed") $) 219)) (-2659 ((|#1| $) 163) (((-400 (-549)) $) 159 (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) 157 (|has| |#1| (-1009 (-549)))) ((|#3| $) 133) ((|#2| $) 218)) (-1353 (($ $ $ |#3|) 106 (|has| |#1| (-170)))) (-2070 (($ $) 152)) (-3879 (((-665 (-549)) (-665 $)) 132 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 131 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) 130) (((-665 |#1|) (-665 $)) 129)) (-2114 (((-3 $ "failed") $) 32)) (-1285 (($ $) 174 (|has| |#1| (-444))) (($ $ |#3|) 103 (|has| |#1| (-444)))) (-2058 (((-621 $) $) 107)) (-1420 (((-112) $) 94 (|has| |#1| (-880)))) (-2691 (($ $ |#1| |#4| $) 170)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 82 (-12 (|has| |#3| (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 81 (-12 (|has| |#3| (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2088 (((-747) $ |#2|) 215) (((-747) $) 214)) (-2675 (((-112) $) 30)) (-3347 (((-747) $) 167)) (-2261 (($ (-1139 |#1|) |#3|) 115) (($ (-1139 $) |#3|) 114)) (-3750 (((-621 $) $) 124)) (-2205 (((-112) $) 150)) (-2246 (($ |#1| |#4|) 151) (($ $ |#3| (-747)) 117) (($ $ (-621 |#3|) (-621 (-747))) 116)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ |#3|) 118)) (-3611 ((|#4| $) 168) (((-747) $ |#3|) 120) (((-621 (-747)) $ (-621 |#3|)) 119)) (-2863 (($ $ $) 77 (|has| |#1| (-823)))) (-3575 (($ $ $) 76 (|has| |#1| (-823)))) (-3705 (($ (-1 |#4| |#4|) $) 169)) (-2797 (($ (-1 |#1| |#1|) $) 149)) (-3040 (((-1 $ (-747)) |#2|) 217) (((-1 $ (-747)) $) 204 (|has| |#1| (-227)))) (-1520 (((-3 |#3| "failed") $) 121)) (-2028 (($ $) 147)) (-2043 ((|#1| $) 146)) (-4052 ((|#3| $) 207)) (-3697 (($ (-621 $)) 92 (|has| |#1| (-444))) (($ $ $) 91 (|has| |#1| (-444)))) (-3851 (((-1125) $) 9)) (-2709 (((-112) $) 208)) (-4266 (((-3 (-621 $) "failed") $) 112)) (-2533 (((-3 (-621 $) "failed") $) 113)) (-1503 (((-3 (-2 (|:| |var| |#3|) (|:| -3731 (-747))) "failed") $) 111)) (-2255 (($ $) 206)) (-3990 (((-1087) $) 10)) (-2004 (((-112) $) 164)) (-2016 ((|#1| $) 165)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 93 (|has| |#1| (-444)))) (-3727 (($ (-621 $)) 90 (|has| |#1| (-444))) (($ $ $) 89 (|has| |#1| (-444)))) (-2905 (((-411 (-1139 $)) (-1139 $)) 100 (|has| |#1| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) 99 (|has| |#1| (-880)))) (-2121 (((-411 $) $) 97 (|has| |#1| (-880)))) (-2042 (((-3 $ "failed") $ |#1|) 172 (|has| |#1| (-541))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-541)))) (-2686 (($ $ (-621 (-287 $))) 143) (($ $ (-287 $)) 142) (($ $ $ $) 141) (($ $ (-621 $) (-621 $)) 140) (($ $ |#3| |#1|) 139) (($ $ (-621 |#3|) (-621 |#1|)) 138) (($ $ |#3| $) 137) (($ $ (-621 |#3|) (-621 $)) 136) (($ $ |#2| $) 203 (|has| |#1| (-227))) (($ $ (-621 |#2|) (-621 $)) 202 (|has| |#1| (-227))) (($ $ |#2| |#1|) 201 (|has| |#1| (-227))) (($ $ (-621 |#2|) (-621 |#1|)) 200 (|has| |#1| (-227)))) (-3602 (($ $ |#3|) 105 (|has| |#1| (-170)))) (-3456 (($ $ |#3|) 40) (($ $ (-621 |#3|)) 39) (($ $ |#3| (-747)) 38) (($ $ (-621 |#3|) (-621 (-747))) 37) (($ $) 236 (|has| |#1| (-227))) (($ $ (-747)) 234 (|has| |#1| (-227))) (($ $ (-1143)) 232 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) 231 (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) 230 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) 229 (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) 222) (($ $ (-1 |#1| |#1|)) 221)) (-1920 (((-621 |#2|) $) 216)) (-3701 ((|#4| $) 148) (((-747) $ |#3|) 128) (((-621 (-747)) $ (-621 |#3|)) 127) (((-747) $ |#2|) 213)) (-2845 (((-863 (-372)) $) 80 (-12 (|has| |#3| (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) 79 (-12 (|has| |#3| (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) 78 (-12 (|has| |#3| (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-2216 ((|#1| $) 173 (|has| |#1| (-444))) (($ $ |#3|) 104 (|has| |#1| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) 102 (-1821 (|has| $ (-143)) (|has| |#1| (-880))))) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 161) (($ |#3|) 135) (($ |#2|) 220) (($ (-400 (-549))) 70 (-1536 (|has| |#1| (-1009 (-400 (-549)))) (|has| |#1| (-38 (-400 (-549)))))) (($ $) 83 (|has| |#1| (-541)))) (-4141 (((-621 |#1|) $) 166)) (-2152 ((|#1| $ |#4|) 153) (($ $ |#3| (-747)) 126) (($ $ (-621 |#3|) (-621 (-747))) 125)) (-2210 (((-3 $ "failed") $) 71 (-1536 (-1821 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2082 (((-747)) 28)) (-1509 (($ $ $ (-747)) 171 (|has| |#1| (-170)))) (-1498 (((-112) $ $) 87 (|has| |#1| (-541)))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ |#3|) 36) (($ $ (-621 |#3|)) 35) (($ $ |#3| (-747)) 34) (($ $ (-621 |#3|) (-621 (-747))) 33) (($ $) 235 (|has| |#1| (-227))) (($ $ (-747)) 233 (|has| |#1| (-227))) (($ $ (-1143)) 228 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) 227 (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) 226 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) 225 (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) 224) (($ $ (-1 |#1| |#1|)) 223)) (-2448 (((-112) $ $) 74 (|has| |#1| (-823)))) (-2425 (((-112) $ $) 73 (|has| |#1| (-823)))) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 75 (|has| |#1| (-823)))) (-2412 (((-112) $ $) 72 (|has| |#1| (-823)))) (-2513 (($ $ |#1|) 154 (|has| |#1| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 156 (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) 155 (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 145) (($ $ |#1|) 144)))
+(-10 -8 (-15 -3845 (|#1| |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -2684 (|#1| |#1| (-621 |#3|) (-621 |#2|))) (-15 -2684 (|#1| |#1| |#3| |#2|)) (-15 -2684 (|#1| |#1| (-621 |#3|) (-621 |#1|))) (-15 -2684 (|#1| |#1| |#3| |#1|)) (-15 -2205 ((-1 |#1| (-747)) |#1|)) (-15 -2703 (|#1| |#1|)) (-15 -2255 (|#1| |#1|)) (-15 -4051 (|#4| |#1|)) (-15 -3104 ((-112) |#1|)) (-15 -1518 ((-747) |#1| |#3|)) (-15 -3066 ((-621 (-747)) |#1| |#3|)) (-15 -1518 ((-747) |#1|)) (-15 -3066 ((-621 (-747)) |#1|)) (-15 -3977 ((-747) |#1| |#3|)) (-15 -2729 ((-747) |#1|)) (-15 -2729 ((-747) |#1| |#3|)) (-15 -1640 ((-621 |#3|) |#1|)) (-15 -2205 ((-1 |#1| (-747)) |#3|)) (-15 -2712 ((-3 |#3| "failed") |#1|)) (-15 -3845 (|#1| |#3|)) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1|)) (-15 -3977 ((-621 (-747)) |#1| (-621 |#4|))) (-15 -3977 ((-747) |#1| |#4|)) (-15 -2712 ((-3 |#4| "failed") |#1|)) (-15 -3845 (|#1| |#4|)) (-15 -2684 (|#1| |#1| (-621 |#4|) (-621 |#1|))) (-15 -2684 (|#1| |#1| |#4| |#1|)) (-15 -2684 (|#1| |#1| (-621 |#4|) (-621 |#2|))) (-15 -2684 (|#1| |#1| |#4| |#2|)) (-15 -2684 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2684 (|#1| |#1| |#1| |#1|)) (-15 -2684 (|#1| |#1| (-287 |#1|))) (-15 -2684 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -3977 (|#5| |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3845 (|#1| |#2|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -3455 (|#1| |#1| (-621 |#4|) (-621 (-747)))) (-15 -3455 (|#1| |#1| |#4| (-747))) (-15 -3455 (|#1| |#1| (-621 |#4|))) (-15 -3455 (|#1| |#1| |#4|)) (-15 -3845 (|#1| (-549))) (-15 -3845 ((-834) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-3066 (((-621 (-747)) $) 212) (((-621 (-747)) $ |#2|) 210)) (-1518 (((-747) $) 211) (((-747) $ |#2|) 209)) (-2270 (((-621 |#3|) $) 108)) (-2082 (((-1138 $) $ |#3|) 123) (((-1138 |#1|) $) 122)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 85 (|has| |#1| (-541)))) (-3044 (($ $) 86 (|has| |#1| (-541)))) (-2774 (((-112) $) 88 (|has| |#1| (-541)))) (-2216 (((-747) $) 110) (((-747) $ (-621 |#3|)) 109)) (-2416 (((-3 $ "failed") $ $) 19)) (-3630 (((-411 (-1138 $)) (-1138 $)) 98 (|has| |#1| (-880)))) (-3239 (($ $) 96 (|has| |#1| (-444)))) (-2620 (((-411 $) $) 95 (|has| |#1| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) 101 (|has| |#1| (-880)))) (-2703 (($ $) 205)) (-3034 (($) 17 T CONST)) (-2712 (((-3 |#1| "failed") $) 162) (((-3 (-400 (-549)) "failed") $) 160 (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) 158 (|has| |#1| (-1009 (-549)))) (((-3 |#3| "failed") $) 134) (((-3 |#2| "failed") $) 219)) (-2657 ((|#1| $) 163) (((-400 (-549)) $) 159 (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) 157 (|has| |#1| (-1009 (-549)))) ((|#3| $) 133) ((|#2| $) 218)) (-4114 (($ $ $ |#3|) 106 (|has| |#1| (-170)))) (-2068 (($ $) 152)) (-3446 (((-665 (-549)) (-665 $)) 132 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 131 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) 130) (((-665 |#1|) (-665 $)) 129)) (-2612 (((-3 $ "failed") $) 32)) (-3004 (($ $) 174 (|has| |#1| (-444))) (($ $ |#3|) 103 (|has| |#1| (-444)))) (-2056 (((-621 $) $) 107)) (-1464 (((-112) $) 94 (|has| |#1| (-880)))) (-4064 (($ $ |#1| |#4| $) 170)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 82 (-12 (|has| |#3| (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 81 (-12 (|has| |#3| (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2729 (((-747) $ |#2|) 215) (((-747) $) 214)) (-2297 (((-112) $) 30)) (-1751 (((-747) $) 167)) (-2259 (($ (-1138 |#1|) |#3|) 115) (($ (-1138 $) |#3|) 114)) (-2758 (((-621 $) $) 124)) (-2988 (((-112) $) 150)) (-2244 (($ |#1| |#4|) 151) (($ $ |#3| (-747)) 117) (($ $ (-621 |#3|) (-621 (-747))) 116)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ |#3|) 118)) (-2391 ((|#4| $) 168) (((-747) $ |#3|) 120) (((-621 (-747)) $ (-621 |#3|)) 119)) (-2861 (($ $ $) 77 (|has| |#1| (-823)))) (-3574 (($ $ $) 76 (|has| |#1| (-823)))) (-3224 (($ (-1 |#4| |#4|) $) 169)) (-2795 (($ (-1 |#1| |#1|) $) 149)) (-2205 (((-1 $ (-747)) |#2|) 217) (((-1 $ (-747)) $) 204 (|has| |#1| (-227)))) (-2236 (((-3 |#3| "failed") $) 121)) (-2027 (($ $) 147)) (-2042 ((|#1| $) 146)) (-4051 ((|#3| $) 207)) (-3696 (($ (-621 $)) 92 (|has| |#1| (-444))) (($ $ $) 91 (|has| |#1| (-444)))) (-3441 (((-1124) $) 9)) (-3104 (((-112) $) 208)) (-4093 (((-3 (-621 $) "failed") $) 112)) (-1503 (((-3 (-621 $) "failed") $) 113)) (-1477 (((-3 (-2 (|:| |var| |#3|) (|:| -1714 (-747))) "failed") $) 111)) (-2255 (($ $) 206)) (-3988 (((-1086) $) 10)) (-2001 (((-112) $) 164)) (-2011 ((|#1| $) 165)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 93 (|has| |#1| (-444)))) (-3726 (($ (-621 $)) 90 (|has| |#1| (-444))) (($ $ $) 89 (|has| |#1| (-444)))) (-2609 (((-411 (-1138 $)) (-1138 $)) 100 (|has| |#1| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) 99 (|has| |#1| (-880)))) (-2119 (((-411 $) $) 97 (|has| |#1| (-880)))) (-2040 (((-3 $ "failed") $ |#1|) 172 (|has| |#1| (-541))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-541)))) (-2684 (($ $ (-621 (-287 $))) 143) (($ $ (-287 $)) 142) (($ $ $ $) 141) (($ $ (-621 $) (-621 $)) 140) (($ $ |#3| |#1|) 139) (($ $ (-621 |#3|) (-621 |#1|)) 138) (($ $ |#3| $) 137) (($ $ (-621 |#3|) (-621 $)) 136) (($ $ |#2| $) 203 (|has| |#1| (-227))) (($ $ (-621 |#2|) (-621 $)) 202 (|has| |#1| (-227))) (($ $ |#2| |#1|) 201 (|has| |#1| (-227))) (($ $ (-621 |#2|) (-621 |#1|)) 200 (|has| |#1| (-227)))) (-2740 (($ $ |#3|) 105 (|has| |#1| (-170)))) (-3455 (($ $ |#3|) 40) (($ $ (-621 |#3|)) 39) (($ $ |#3| (-747)) 38) (($ $ (-621 |#3|) (-621 (-747))) 37) (($ $) 236 (|has| |#1| (-227))) (($ $ (-747)) 234 (|has| |#1| (-227))) (($ $ (-1142)) 232 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) 231 (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) 230 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) 229 (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) 222) (($ $ (-1 |#1| |#1|)) 221)) (-1640 (((-621 |#2|) $) 216)) (-3977 ((|#4| $) 148) (((-747) $ |#3|) 128) (((-621 (-747)) $ (-621 |#3|)) 127) (((-747) $ |#2|) 213)) (-2843 (((-863 (-372)) $) 80 (-12 (|has| |#3| (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) 79 (-12 (|has| |#3| (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) 78 (-12 (|has| |#3| (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-1700 ((|#1| $) 173 (|has| |#1| (-444))) (($ $ |#3|) 104 (|has| |#1| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) 102 (-1819 (|has| $ (-143)) (|has| |#1| (-880))))) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 161) (($ |#3|) 135) (($ |#2|) 220) (($ (-400 (-549))) 70 (-1536 (|has| |#1| (-1009 (-400 (-549)))) (|has| |#1| (-38 (-400 (-549)))))) (($ $) 83 (|has| |#1| (-541)))) (-2157 (((-621 |#1|) $) 166)) (-4068 ((|#1| $ |#4|) 153) (($ $ |#3| (-747)) 126) (($ $ (-621 |#3|) (-621 (-747))) 125)) (-2343 (((-3 $ "failed") $) 71 (-1536 (-1819 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2371 (((-747)) 28)) (-4046 (($ $ $ (-747)) 171 (|has| |#1| (-170)))) (-2441 (((-112) $ $) 87 (|has| |#1| (-541)))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ |#3|) 36) (($ $ (-621 |#3|)) 35) (($ $ |#3| (-747)) 34) (($ $ (-621 |#3|) (-621 (-747))) 33) (($ $) 235 (|has| |#1| (-227))) (($ $ (-747)) 233 (|has| |#1| (-227))) (($ $ (-1142)) 228 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) 227 (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) 226 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) 225 (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) 224) (($ $ (-1 |#1| |#1|)) 223)) (-2447 (((-112) $ $) 74 (|has| |#1| (-823)))) (-2423 (((-112) $ $) 73 (|has| |#1| (-823)))) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 75 (|has| |#1| (-823)))) (-2409 (((-112) $ $) 72 (|has| |#1| (-823)))) (-2511 (($ $ |#1|) 154 (|has| |#1| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 156 (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) 155 (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 145) (($ $ |#1|) 144)))
(((-246 |#1| |#2| |#3| |#4|) (-138) (-1018) (-823) (-259 |t#2|) (-769)) (T -246))
-((-3040 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-4 *3 (-823)) (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-1 *1 (-747))) (-4 *1 (-246 *4 *3 *5 *6)))) (-1920 (*1 *2 *1) (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-621 *4)))) (-2088 (*1 *2 *1 *3) (-12 (-4 *1 (-246 *4 *3 *5 *6)) (-4 *4 (-1018)) (-4 *3 (-823)) (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-747)))) (-2088 (*1 *2 *1) (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-747)))) (-3701 (*1 *2 *1 *3) (-12 (-4 *1 (-246 *4 *3 *5 *6)) (-4 *4 (-1018)) (-4 *3 (-823)) (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-747)))) (-3977 (*1 *2 *1) (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-621 (-747))))) (-1637 (*1 *2 *1) (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-747)))) (-3977 (*1 *2 *1 *3) (-12 (-4 *1 (-246 *4 *3 *5 *6)) (-4 *4 (-1018)) (-4 *3 (-823)) (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-621 (-747))))) (-1637 (*1 *2 *1 *3) (-12 (-4 *1 (-246 *4 *3 *5 *6)) (-4 *4 (-1018)) (-4 *3 (-823)) (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-747)))) (-2709 (*1 *2 *1) (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-112)))) (-4052 (*1 *2 *1) (-12 (-4 *1 (-246 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-769)) (-4 *2 (-259 *4)))) (-2255 (*1 *1 *1) (-12 (-4 *1 (-246 *2 *3 *4 *5)) (-4 *2 (-1018)) (-4 *3 (-823)) (-4 *4 (-259 *3)) (-4 *5 (-769)))) (-3920 (*1 *1 *1) (-12 (-4 *1 (-246 *2 *3 *4 *5)) (-4 *2 (-1018)) (-4 *3 (-823)) (-4 *4 (-259 *3)) (-4 *5 (-769)))) (-3040 (*1 *2 *1) (-12 (-4 *3 (-227)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-1 *1 (-747))) (-4 *1 (-246 *3 *4 *5 *6)))))
-(-13 (-920 |t#1| |t#4| |t#3|) (-225 |t#1|) (-1009 |t#2|) (-10 -8 (-15 -3040 ((-1 $ (-747)) |t#2|)) (-15 -1920 ((-621 |t#2|) $)) (-15 -2088 ((-747) $ |t#2|)) (-15 -2088 ((-747) $)) (-15 -3701 ((-747) $ |t#2|)) (-15 -3977 ((-621 (-747)) $)) (-15 -1637 ((-747) $)) (-15 -3977 ((-621 (-747)) $ |t#2|)) (-15 -1637 ((-747) $ |t#2|)) (-15 -2709 ((-112) $)) (-15 -4052 (|t#3| $)) (-15 -2255 ($ $)) (-15 -3920 ($ $)) (IF (|has| |t#1| (-227)) (PROGN (-6 (-505 |t#2| |t#1|)) (-6 (-505 |t#2| $)) (-6 (-302 $)) (-15 -3040 ((-1 $ (-747)) $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| |#4|) . T) ((-25) . T) ((-38 #0=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-594 (-525)) -12 (|has| |#1| (-594 (-525))) (|has| |#3| (-594 (-525)))) ((-594 (-863 (-372))) -12 (|has| |#1| (-594 (-863 (-372)))) (|has| |#3| (-594 (-863 (-372))))) ((-594 (-863 (-549))) -12 (|has| |#1| (-594 (-863 (-549)))) (|has| |#3| (-594 (-863 (-549))))) ((-225 |#1|) . T) ((-227) |has| |#1| (-227)) ((-283) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-302 $) . T) ((-319 |#1| |#4|) . T) ((-370 |#1|) . T) ((-404 |#1|) . T) ((-444) -1536 (|has| |#1| (-880)) (|has| |#1| (-444))) ((-505 |#2| |#1|) |has| |#1| (-227)) ((-505 |#2| $) |has| |#1| (-227)) ((-505 |#3| |#1|) . T) ((-505 |#3| $) . T) ((-505 $ $) . T) ((-541) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-624 #0#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-694 #0#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-703) . T) ((-823) |has| |#1| (-823)) ((-871 (-1143)) |has| |#1| (-871 (-1143))) ((-871 |#3|) . T) ((-857 (-372)) -12 (|has| |#1| (-857 (-372))) (|has| |#3| (-857 (-372)))) ((-857 (-549)) -12 (|has| |#1| (-857 (-549))) (|has| |#3| (-857 (-549)))) ((-920 |#1| |#4| |#3|) . T) ((-880) |has| |#1| (-880)) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1009 |#2|) . T) ((-1009 |#3|) . T) ((-1024 #0#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1184) |has| |#1| (-880)))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-1785 ((|#1| $) 54)) (-2317 ((|#1| $) 44)) (-1584 (((-112) $ (-747)) 8)) (-1682 (($) 7 T CONST)) (-4194 (($ $) 60)) (-1585 (($ $) 48)) (-3204 ((|#1| |#1| $) 46)) (-1350 ((|#1| $) 45)) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) 9)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-4210 (((-747) $) 61)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3504 ((|#1| $) 39)) (-2454 ((|#1| |#1| $) 52)) (-3218 ((|#1| |#1| $) 51)) (-2751 (($ |#1| $) 40)) (-4036 (((-747) $) 55)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-1409 ((|#1| $) 62)) (-3993 ((|#1| $) 50)) (-3850 ((|#1| $) 49)) (-3325 ((|#1| $) 41)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-2502 ((|#1| |#1| $) 58)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3912 ((|#1| $) 59)) (-2171 (($) 57) (($ (-621 |#1|)) 56)) (-1321 (((-747) $) 43)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3720 ((|#1| $) 53)) (-3624 (($ (-621 |#1|)) 42)) (-1410 ((|#1| $) 63)) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-247 |#1|) (-138) (-1180)) (T -247))
-((-2171 (*1 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1180)))) (-2171 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-4 *1 (-247 *3)))) (-4036 (*1 *2 *1) (-12 (-4 *1 (-247 *3)) (-4 *3 (-1180)) (-5 *2 (-747)))) (-1785 (*1 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1180)))) (-3720 (*1 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1180)))) (-2454 (*1 *2 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1180)))) (-3218 (*1 *2 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1180)))) (-3993 (*1 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1180)))) (-3850 (*1 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1180)))) (-1585 (*1 *1 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1180)))))
-(-13 (-1088 |t#1|) (-966 |t#1|) (-10 -8 (-15 -2171 ($)) (-15 -2171 ($ (-621 |t#1|))) (-15 -4036 ((-747) $)) (-15 -1785 (|t#1| $)) (-15 -3720 (|t#1| $)) (-15 -2454 (|t#1| |t#1| $)) (-15 -3218 (|t#1| |t#1| $)) (-15 -3993 (|t#1| $)) (-15 -3850 (|t#1| $)) (-15 -1585 ($ $))))
-(((-34) . T) ((-106 |#1|) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-966 |#1|) . T) ((-1067) |has| |#1| (-1067)) ((-1088 |#1|) . T) ((-1180) . T))
-((-2173 (((-1 (-914 (-219)) (-219) (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1 (-219) (-219) (-219) (-219))) 139)) (-1542 (((-1100 (-219)) (-853 (-1 (-219) (-219) (-219))) (-1061 (-372)) (-1061 (-372))) 160) (((-1100 (-219)) (-853 (-1 (-219) (-219) (-219))) (-1061 (-372)) (-1061 (-372)) (-621 (-256))) 158) (((-1100 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-372)) (-1061 (-372))) 163) (((-1100 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-372)) (-1061 (-372)) (-621 (-256))) 159) (((-1100 (-219)) (-1 (-219) (-219) (-219)) (-1061 (-372)) (-1061 (-372))) 150) (((-1100 (-219)) (-1 (-219) (-219) (-219)) (-1061 (-372)) (-1061 (-372)) (-621 (-256))) 149) (((-1100 (-219)) (-1 (-914 (-219)) (-219)) (-1061 (-372))) 129) (((-1100 (-219)) (-1 (-914 (-219)) (-219)) (-1061 (-372)) (-621 (-256))) 127) (((-1100 (-219)) (-850 (-1 (-219) (-219))) (-1061 (-372))) 128) (((-1100 (-219)) (-850 (-1 (-219) (-219))) (-1061 (-372)) (-621 (-256))) 125)) (-1490 (((-1228) (-853 (-1 (-219) (-219) (-219))) (-1061 (-372)) (-1061 (-372))) 162) (((-1228) (-853 (-1 (-219) (-219) (-219))) (-1061 (-372)) (-1061 (-372)) (-621 (-256))) 161) (((-1228) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-372)) (-1061 (-372))) 165) (((-1228) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-372)) (-1061 (-372)) (-621 (-256))) 164) (((-1228) (-1 (-219) (-219) (-219)) (-1061 (-372)) (-1061 (-372))) 152) (((-1228) (-1 (-219) (-219) (-219)) (-1061 (-372)) (-1061 (-372)) (-621 (-256))) 151) (((-1228) (-1 (-914 (-219)) (-219)) (-1061 (-372))) 135) (((-1228) (-1 (-914 (-219)) (-219)) (-1061 (-372)) (-621 (-256))) 134) (((-1228) (-850 (-1 (-219) (-219))) (-1061 (-372))) 133) (((-1228) (-850 (-1 (-219) (-219))) (-1061 (-372)) (-621 (-256))) 132) (((-1227) (-848 (-1 (-219) (-219))) (-1061 (-372))) 100) (((-1227) (-848 (-1 (-219) (-219))) (-1061 (-372)) (-621 (-256))) 99) (((-1227) (-1 (-219) (-219)) (-1061 (-372))) 96) (((-1227) (-1 (-219) (-219)) (-1061 (-372)) (-621 (-256))) 95)))
-(((-248) (-10 -7 (-15 -1490 ((-1227) (-1 (-219) (-219)) (-1061 (-372)) (-621 (-256)))) (-15 -1490 ((-1227) (-1 (-219) (-219)) (-1061 (-372)))) (-15 -1490 ((-1227) (-848 (-1 (-219) (-219))) (-1061 (-372)) (-621 (-256)))) (-15 -1490 ((-1227) (-848 (-1 (-219) (-219))) (-1061 (-372)))) (-15 -1490 ((-1228) (-850 (-1 (-219) (-219))) (-1061 (-372)) (-621 (-256)))) (-15 -1490 ((-1228) (-850 (-1 (-219) (-219))) (-1061 (-372)))) (-15 -1490 ((-1228) (-1 (-914 (-219)) (-219)) (-1061 (-372)) (-621 (-256)))) (-15 -1490 ((-1228) (-1 (-914 (-219)) (-219)) (-1061 (-372)))) (-15 -1542 ((-1100 (-219)) (-850 (-1 (-219) (-219))) (-1061 (-372)) (-621 (-256)))) (-15 -1542 ((-1100 (-219)) (-850 (-1 (-219) (-219))) (-1061 (-372)))) (-15 -1542 ((-1100 (-219)) (-1 (-914 (-219)) (-219)) (-1061 (-372)) (-621 (-256)))) (-15 -1542 ((-1100 (-219)) (-1 (-914 (-219)) (-219)) (-1061 (-372)))) (-15 -1490 ((-1228) (-1 (-219) (-219) (-219)) (-1061 (-372)) (-1061 (-372)) (-621 (-256)))) (-15 -1490 ((-1228) (-1 (-219) (-219) (-219)) (-1061 (-372)) (-1061 (-372)))) (-15 -1542 ((-1100 (-219)) (-1 (-219) (-219) (-219)) (-1061 (-372)) (-1061 (-372)) (-621 (-256)))) (-15 -1542 ((-1100 (-219)) (-1 (-219) (-219) (-219)) (-1061 (-372)) (-1061 (-372)))) (-15 -1490 ((-1228) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-372)) (-1061 (-372)) (-621 (-256)))) (-15 -1490 ((-1228) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-372)) (-1061 (-372)))) (-15 -1542 ((-1100 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-372)) (-1061 (-372)) (-621 (-256)))) (-15 -1542 ((-1100 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-372)) (-1061 (-372)))) (-15 -1490 ((-1228) (-853 (-1 (-219) (-219) (-219))) (-1061 (-372)) (-1061 (-372)) (-621 (-256)))) (-15 -1490 ((-1228) (-853 (-1 (-219) (-219) (-219))) (-1061 (-372)) (-1061 (-372)))) (-15 -1542 ((-1100 (-219)) (-853 (-1 (-219) (-219) (-219))) (-1061 (-372)) (-1061 (-372)) (-621 (-256)))) (-15 -1542 ((-1100 (-219)) (-853 (-1 (-219) (-219) (-219))) (-1061 (-372)) (-1061 (-372)))) (-15 -2173 ((-1 (-914 (-219)) (-219) (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1 (-219) (-219) (-219) (-219)))))) (T -248))
-((-2173 (*1 *2 *2 *3) (-12 (-5 *2 (-1 (-914 (-219)) (-219) (-219))) (-5 *3 (-1 (-219) (-219) (-219) (-219))) (-5 *1 (-248)))) (-1542 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-853 (-1 (-219) (-219) (-219)))) (-5 *4 (-1061 (-372))) (-5 *2 (-1100 (-219))) (-5 *1 (-248)))) (-1542 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-853 (-1 (-219) (-219) (-219)))) (-5 *4 (-1061 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-248)))) (-1490 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-853 (-1 (-219) (-219) (-219)))) (-5 *4 (-1061 (-372))) (-5 *2 (-1228)) (-5 *1 (-248)))) (-1490 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-853 (-1 (-219) (-219) (-219)))) (-5 *4 (-1061 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1228)) (-5 *1 (-248)))) (-1542 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1061 (-372))) (-5 *2 (-1100 (-219))) (-5 *1 (-248)))) (-1542 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1061 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-248)))) (-1490 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1061 (-372))) (-5 *2 (-1228)) (-5 *1 (-248)))) (-1490 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1061 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1228)) (-5 *1 (-248)))) (-1542 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1061 (-372))) (-5 *2 (-1100 (-219))) (-5 *1 (-248)))) (-1542 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1061 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-248)))) (-1490 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1061 (-372))) (-5 *2 (-1228)) (-5 *1 (-248)))) (-1490 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1061 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1228)) (-5 *1 (-248)))) (-1542 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-914 (-219)) (-219))) (-5 *4 (-1061 (-372))) (-5 *2 (-1100 (-219))) (-5 *1 (-248)))) (-1542 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-914 (-219)) (-219))) (-5 *4 (-1061 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-248)))) (-1542 (*1 *2 *3 *4) (-12 (-5 *3 (-850 (-1 (-219) (-219)))) (-5 *4 (-1061 (-372))) (-5 *2 (-1100 (-219))) (-5 *1 (-248)))) (-1542 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-850 (-1 (-219) (-219)))) (-5 *4 (-1061 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-248)))) (-1490 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-914 (-219)) (-219))) (-5 *4 (-1061 (-372))) (-5 *2 (-1228)) (-5 *1 (-248)))) (-1490 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-914 (-219)) (-219))) (-5 *4 (-1061 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1228)) (-5 *1 (-248)))) (-1490 (*1 *2 *3 *4) (-12 (-5 *3 (-850 (-1 (-219) (-219)))) (-5 *4 (-1061 (-372))) (-5 *2 (-1228)) (-5 *1 (-248)))) (-1490 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-850 (-1 (-219) (-219)))) (-5 *4 (-1061 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1228)) (-5 *1 (-248)))) (-1490 (*1 *2 *3 *4) (-12 (-5 *3 (-848 (-1 (-219) (-219)))) (-5 *4 (-1061 (-372))) (-5 *2 (-1227)) (-5 *1 (-248)))) (-1490 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-848 (-1 (-219) (-219)))) (-5 *4 (-1061 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-248)))) (-1490 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-219) (-219))) (-5 *4 (-1061 (-372))) (-5 *2 (-1227)) (-5 *1 (-248)))) (-1490 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-219) (-219))) (-5 *4 (-1061 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-248)))))
-(-10 -7 (-15 -1490 ((-1227) (-1 (-219) (-219)) (-1061 (-372)) (-621 (-256)))) (-15 -1490 ((-1227) (-1 (-219) (-219)) (-1061 (-372)))) (-15 -1490 ((-1227) (-848 (-1 (-219) (-219))) (-1061 (-372)) (-621 (-256)))) (-15 -1490 ((-1227) (-848 (-1 (-219) (-219))) (-1061 (-372)))) (-15 -1490 ((-1228) (-850 (-1 (-219) (-219))) (-1061 (-372)) (-621 (-256)))) (-15 -1490 ((-1228) (-850 (-1 (-219) (-219))) (-1061 (-372)))) (-15 -1490 ((-1228) (-1 (-914 (-219)) (-219)) (-1061 (-372)) (-621 (-256)))) (-15 -1490 ((-1228) (-1 (-914 (-219)) (-219)) (-1061 (-372)))) (-15 -1542 ((-1100 (-219)) (-850 (-1 (-219) (-219))) (-1061 (-372)) (-621 (-256)))) (-15 -1542 ((-1100 (-219)) (-850 (-1 (-219) (-219))) (-1061 (-372)))) (-15 -1542 ((-1100 (-219)) (-1 (-914 (-219)) (-219)) (-1061 (-372)) (-621 (-256)))) (-15 -1542 ((-1100 (-219)) (-1 (-914 (-219)) (-219)) (-1061 (-372)))) (-15 -1490 ((-1228) (-1 (-219) (-219) (-219)) (-1061 (-372)) (-1061 (-372)) (-621 (-256)))) (-15 -1490 ((-1228) (-1 (-219) (-219) (-219)) (-1061 (-372)) (-1061 (-372)))) (-15 -1542 ((-1100 (-219)) (-1 (-219) (-219) (-219)) (-1061 (-372)) (-1061 (-372)) (-621 (-256)))) (-15 -1542 ((-1100 (-219)) (-1 (-219) (-219) (-219)) (-1061 (-372)) (-1061 (-372)))) (-15 -1490 ((-1228) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-372)) (-1061 (-372)) (-621 (-256)))) (-15 -1490 ((-1228) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-372)) (-1061 (-372)))) (-15 -1542 ((-1100 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-372)) (-1061 (-372)) (-621 (-256)))) (-15 -1542 ((-1100 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-372)) (-1061 (-372)))) (-15 -1490 ((-1228) (-853 (-1 (-219) (-219) (-219))) (-1061 (-372)) (-1061 (-372)) (-621 (-256)))) (-15 -1490 ((-1228) (-853 (-1 (-219) (-219) (-219))) (-1061 (-372)) (-1061 (-372)))) (-15 -1542 ((-1100 (-219)) (-853 (-1 (-219) (-219) (-219))) (-1061 (-372)) (-1061 (-372)) (-621 (-256)))) (-15 -1542 ((-1100 (-219)) (-853 (-1 (-219) (-219) (-219))) (-1061 (-372)) (-1061 (-372)))) (-15 -2173 ((-1 (-914 (-219)) (-219) (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1 (-219) (-219) (-219) (-219)))))
-((-1490 (((-1227) (-287 |#2|) (-1143) (-1143) (-621 (-256))) 96)))
-(((-249 |#1| |#2|) (-10 -7 (-15 -1490 ((-1227) (-287 |#2|) (-1143) (-1143) (-621 (-256))))) (-13 (-541) (-823) (-1009 (-549))) (-423 |#1|)) (T -249))
-((-1490 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-287 *7)) (-5 *4 (-1143)) (-5 *5 (-621 (-256))) (-4 *7 (-423 *6)) (-4 *6 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-1227)) (-5 *1 (-249 *6 *7)))))
-(-10 -7 (-15 -1490 ((-1227) (-287 |#2|) (-1143) (-1143) (-621 (-256)))))
-((-3844 (((-549) (-549)) 50)) (-2752 (((-549) (-549)) 51)) (-4261 (((-219) (-219)) 52)) (-2314 (((-1228) (-1 (-167 (-219)) (-167 (-219))) (-1061 (-219)) (-1061 (-219))) 49)) (-2231 (((-1228) (-1 (-167 (-219)) (-167 (-219))) (-1061 (-219)) (-1061 (-219)) (-112)) 47)))
-(((-250) (-10 -7 (-15 -2231 ((-1228) (-1 (-167 (-219)) (-167 (-219))) (-1061 (-219)) (-1061 (-219)) (-112))) (-15 -2314 ((-1228) (-1 (-167 (-219)) (-167 (-219))) (-1061 (-219)) (-1061 (-219)))) (-15 -3844 ((-549) (-549))) (-15 -2752 ((-549) (-549))) (-15 -4261 ((-219) (-219))))) (T -250))
-((-4261 (*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-250)))) (-2752 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-250)))) (-3844 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-250)))) (-2314 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-167 (-219)) (-167 (-219)))) (-5 *4 (-1061 (-219))) (-5 *2 (-1228)) (-5 *1 (-250)))) (-2231 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-167 (-219)) (-167 (-219)))) (-5 *4 (-1061 (-219))) (-5 *5 (-112)) (-5 *2 (-1228)) (-5 *1 (-250)))))
-(-10 -7 (-15 -2231 ((-1228) (-1 (-167 (-219)) (-167 (-219))) (-1061 (-219)) (-1061 (-219)) (-112))) (-15 -2314 ((-1228) (-1 (-167 (-219)) (-167 (-219))) (-1061 (-219)) (-1061 (-219)))) (-15 -3844 ((-549) (-549))) (-15 -2752 ((-549) (-549))) (-15 -4261 ((-219) (-219))))
-((-3846 (((-1059 (-372)) (-1059 (-309 |#1|))) 16)))
-(((-251 |#1|) (-10 -7 (-15 -3846 ((-1059 (-372)) (-1059 (-309 |#1|))))) (-13 (-823) (-541) (-594 (-372)))) (T -251))
-((-3846 (*1 *2 *3) (-12 (-5 *3 (-1059 (-309 *4))) (-4 *4 (-13 (-823) (-541) (-594 (-372)))) (-5 *2 (-1059 (-372))) (-5 *1 (-251 *4)))))
-(-10 -7 (-15 -3846 ((-1059 (-372)) (-1059 (-309 |#1|)))))
-((-1542 (((-1100 (-219)) (-853 |#1|) (-1059 (-372)) (-1059 (-372))) 71) (((-1100 (-219)) (-853 |#1|) (-1059 (-372)) (-1059 (-372)) (-621 (-256))) 70) (((-1100 (-219)) |#1| (-1059 (-372)) (-1059 (-372))) 61) (((-1100 (-219)) |#1| (-1059 (-372)) (-1059 (-372)) (-621 (-256))) 60) (((-1100 (-219)) (-850 |#1|) (-1059 (-372))) 52) (((-1100 (-219)) (-850 |#1|) (-1059 (-372)) (-621 (-256))) 51)) (-1490 (((-1228) (-853 |#1|) (-1059 (-372)) (-1059 (-372))) 74) (((-1228) (-853 |#1|) (-1059 (-372)) (-1059 (-372)) (-621 (-256))) 73) (((-1228) |#1| (-1059 (-372)) (-1059 (-372))) 64) (((-1228) |#1| (-1059 (-372)) (-1059 (-372)) (-621 (-256))) 63) (((-1228) (-850 |#1|) (-1059 (-372))) 56) (((-1228) (-850 |#1|) (-1059 (-372)) (-621 (-256))) 55) (((-1227) (-848 |#1|) (-1059 (-372))) 43) (((-1227) (-848 |#1|) (-1059 (-372)) (-621 (-256))) 42) (((-1227) |#1| (-1059 (-372))) 35) (((-1227) |#1| (-1059 (-372)) (-621 (-256))) 34)))
-(((-252 |#1|) (-10 -7 (-15 -1490 ((-1227) |#1| (-1059 (-372)) (-621 (-256)))) (-15 -1490 ((-1227) |#1| (-1059 (-372)))) (-15 -1490 ((-1227) (-848 |#1|) (-1059 (-372)) (-621 (-256)))) (-15 -1490 ((-1227) (-848 |#1|) (-1059 (-372)))) (-15 -1490 ((-1228) (-850 |#1|) (-1059 (-372)) (-621 (-256)))) (-15 -1490 ((-1228) (-850 |#1|) (-1059 (-372)))) (-15 -1542 ((-1100 (-219)) (-850 |#1|) (-1059 (-372)) (-621 (-256)))) (-15 -1542 ((-1100 (-219)) (-850 |#1|) (-1059 (-372)))) (-15 -1490 ((-1228) |#1| (-1059 (-372)) (-1059 (-372)) (-621 (-256)))) (-15 -1490 ((-1228) |#1| (-1059 (-372)) (-1059 (-372)))) (-15 -1542 ((-1100 (-219)) |#1| (-1059 (-372)) (-1059 (-372)) (-621 (-256)))) (-15 -1542 ((-1100 (-219)) |#1| (-1059 (-372)) (-1059 (-372)))) (-15 -1490 ((-1228) (-853 |#1|) (-1059 (-372)) (-1059 (-372)) (-621 (-256)))) (-15 -1490 ((-1228) (-853 |#1|) (-1059 (-372)) (-1059 (-372)))) (-15 -1542 ((-1100 (-219)) (-853 |#1|) (-1059 (-372)) (-1059 (-372)) (-621 (-256)))) (-15 -1542 ((-1100 (-219)) (-853 |#1|) (-1059 (-372)) (-1059 (-372))))) (-13 (-594 (-525)) (-1067))) (T -252))
-((-1542 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-853 *5)) (-5 *4 (-1059 (-372))) (-4 *5 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1100 (-219))) (-5 *1 (-252 *5)))) (-1542 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-853 *6)) (-5 *4 (-1059 (-372))) (-5 *5 (-621 (-256))) (-4 *6 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1100 (-219))) (-5 *1 (-252 *6)))) (-1490 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-853 *5)) (-5 *4 (-1059 (-372))) (-4 *5 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1228)) (-5 *1 (-252 *5)))) (-1490 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-853 *6)) (-5 *4 (-1059 (-372))) (-5 *5 (-621 (-256))) (-4 *6 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1228)) (-5 *1 (-252 *6)))) (-1542 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1059 (-372))) (-5 *2 (-1100 (-219))) (-5 *1 (-252 *3)) (-4 *3 (-13 (-594 (-525)) (-1067))))) (-1542 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1059 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-252 *3)) (-4 *3 (-13 (-594 (-525)) (-1067))))) (-1490 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1059 (-372))) (-5 *2 (-1228)) (-5 *1 (-252 *3)) (-4 *3 (-13 (-594 (-525)) (-1067))))) (-1490 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1059 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1228)) (-5 *1 (-252 *3)) (-4 *3 (-13 (-594 (-525)) (-1067))))) (-1542 (*1 *2 *3 *4) (-12 (-5 *3 (-850 *5)) (-5 *4 (-1059 (-372))) (-4 *5 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1100 (-219))) (-5 *1 (-252 *5)))) (-1542 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-850 *6)) (-5 *4 (-1059 (-372))) (-5 *5 (-621 (-256))) (-4 *6 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1100 (-219))) (-5 *1 (-252 *6)))) (-1490 (*1 *2 *3 *4) (-12 (-5 *3 (-850 *5)) (-5 *4 (-1059 (-372))) (-4 *5 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1228)) (-5 *1 (-252 *5)))) (-1490 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-850 *6)) (-5 *4 (-1059 (-372))) (-5 *5 (-621 (-256))) (-4 *6 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1228)) (-5 *1 (-252 *6)))) (-1490 (*1 *2 *3 *4) (-12 (-5 *3 (-848 *5)) (-5 *4 (-1059 (-372))) (-4 *5 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1227)) (-5 *1 (-252 *5)))) (-1490 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-848 *6)) (-5 *4 (-1059 (-372))) (-5 *5 (-621 (-256))) (-4 *6 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1227)) (-5 *1 (-252 *6)))) (-1490 (*1 *2 *3 *4) (-12 (-5 *4 (-1059 (-372))) (-5 *2 (-1227)) (-5 *1 (-252 *3)) (-4 *3 (-13 (-594 (-525)) (-1067))))) (-1490 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1059 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-252 *3)) (-4 *3 (-13 (-594 (-525)) (-1067))))))
-(-10 -7 (-15 -1490 ((-1227) |#1| (-1059 (-372)) (-621 (-256)))) (-15 -1490 ((-1227) |#1| (-1059 (-372)))) (-15 -1490 ((-1227) (-848 |#1|) (-1059 (-372)) (-621 (-256)))) (-15 -1490 ((-1227) (-848 |#1|) (-1059 (-372)))) (-15 -1490 ((-1228) (-850 |#1|) (-1059 (-372)) (-621 (-256)))) (-15 -1490 ((-1228) (-850 |#1|) (-1059 (-372)))) (-15 -1542 ((-1100 (-219)) (-850 |#1|) (-1059 (-372)) (-621 (-256)))) (-15 -1542 ((-1100 (-219)) (-850 |#1|) (-1059 (-372)))) (-15 -1490 ((-1228) |#1| (-1059 (-372)) (-1059 (-372)) (-621 (-256)))) (-15 -1490 ((-1228) |#1| (-1059 (-372)) (-1059 (-372)))) (-15 -1542 ((-1100 (-219)) |#1| (-1059 (-372)) (-1059 (-372)) (-621 (-256)))) (-15 -1542 ((-1100 (-219)) |#1| (-1059 (-372)) (-1059 (-372)))) (-15 -1490 ((-1228) (-853 |#1|) (-1059 (-372)) (-1059 (-372)) (-621 (-256)))) (-15 -1490 ((-1228) (-853 |#1|) (-1059 (-372)) (-1059 (-372)))) (-15 -1542 ((-1100 (-219)) (-853 |#1|) (-1059 (-372)) (-1059 (-372)) (-621 (-256)))) (-15 -1542 ((-1100 (-219)) (-853 |#1|) (-1059 (-372)) (-1059 (-372)))))
-((-1490 (((-1228) (-621 (-219)) (-621 (-219)) (-621 (-219)) (-621 (-256))) 23) (((-1228) (-621 (-219)) (-621 (-219)) (-621 (-219))) 24) (((-1227) (-621 (-914 (-219))) (-621 (-256))) 16) (((-1227) (-621 (-914 (-219)))) 17) (((-1227) (-621 (-219)) (-621 (-219)) (-621 (-256))) 20) (((-1227) (-621 (-219)) (-621 (-219))) 21)))
-(((-253) (-10 -7 (-15 -1490 ((-1227) (-621 (-219)) (-621 (-219)))) (-15 -1490 ((-1227) (-621 (-219)) (-621 (-219)) (-621 (-256)))) (-15 -1490 ((-1227) (-621 (-914 (-219))))) (-15 -1490 ((-1227) (-621 (-914 (-219))) (-621 (-256)))) (-15 -1490 ((-1228) (-621 (-219)) (-621 (-219)) (-621 (-219)))) (-15 -1490 ((-1228) (-621 (-219)) (-621 (-219)) (-621 (-219)) (-621 (-256)))))) (T -253))
-((-1490 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-621 (-219))) (-5 *4 (-621 (-256))) (-5 *2 (-1228)) (-5 *1 (-253)))) (-1490 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-621 (-219))) (-5 *2 (-1228)) (-5 *1 (-253)))) (-1490 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-914 (-219)))) (-5 *4 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-253)))) (-1490 (*1 *2 *3) (-12 (-5 *3 (-621 (-914 (-219)))) (-5 *2 (-1227)) (-5 *1 (-253)))) (-1490 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-621 (-219))) (-5 *4 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-253)))) (-1490 (*1 *2 *3 *3) (-12 (-5 *3 (-621 (-219))) (-5 *2 (-1227)) (-5 *1 (-253)))))
-(-10 -7 (-15 -1490 ((-1227) (-621 (-219)) (-621 (-219)))) (-15 -1490 ((-1227) (-621 (-219)) (-621 (-219)) (-621 (-256)))) (-15 -1490 ((-1227) (-621 (-914 (-219))))) (-15 -1490 ((-1227) (-621 (-914 (-219))) (-621 (-256)))) (-15 -1490 ((-1228) (-621 (-219)) (-621 (-219)) (-621 (-219)))) (-15 -1490 ((-1228) (-621 (-219)) (-621 (-219)) (-621 (-219)) (-621 (-256)))))
-((-1491 (((-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))) (-621 (-256)) (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)))) 26)) (-3560 (((-892) (-621 (-256)) (-892)) 53)) (-3471 (((-892) (-621 (-256)) (-892)) 52)) (-2036 (((-621 (-372)) (-621 (-256)) (-621 (-372))) 69)) (-2211 (((-372) (-621 (-256)) (-372)) 58)) (-2017 (((-892) (-621 (-256)) (-892)) 54)) (-2959 (((-112) (-621 (-256)) (-112)) 28)) (-1596 (((-1125) (-621 (-256)) (-1125)) 20)) (-1741 (((-1125) (-621 (-256)) (-1125)) 27)) (-3192 (((-1100 (-219)) (-621 (-256))) 47)) (-2734 (((-621 (-1061 (-372))) (-621 (-256)) (-621 (-1061 (-372)))) 41)) (-3859 (((-845) (-621 (-256)) (-845)) 33)) (-3467 (((-845) (-621 (-256)) (-845)) 34)) (-1994 (((-1 (-914 (-219)) (-914 (-219))) (-621 (-256)) (-1 (-914 (-219)) (-914 (-219)))) 64)) (-3892 (((-112) (-621 (-256)) (-112)) 16)) (-2424 (((-112) (-621 (-256)) (-112)) 15)))
-(((-254) (-10 -7 (-15 -2424 ((-112) (-621 (-256)) (-112))) (-15 -3892 ((-112) (-621 (-256)) (-112))) (-15 -1491 ((-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))) (-621 (-256)) (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))) (-15 -1596 ((-1125) (-621 (-256)) (-1125))) (-15 -1741 ((-1125) (-621 (-256)) (-1125))) (-15 -2959 ((-112) (-621 (-256)) (-112))) (-15 -3859 ((-845) (-621 (-256)) (-845))) (-15 -3467 ((-845) (-621 (-256)) (-845))) (-15 -2734 ((-621 (-1061 (-372))) (-621 (-256)) (-621 (-1061 (-372))))) (-15 -3471 ((-892) (-621 (-256)) (-892))) (-15 -3560 ((-892) (-621 (-256)) (-892))) (-15 -3192 ((-1100 (-219)) (-621 (-256)))) (-15 -2017 ((-892) (-621 (-256)) (-892))) (-15 -2211 ((-372) (-621 (-256)) (-372))) (-15 -1994 ((-1 (-914 (-219)) (-914 (-219))) (-621 (-256)) (-1 (-914 (-219)) (-914 (-219))))) (-15 -2036 ((-621 (-372)) (-621 (-256)) (-621 (-372)))))) (T -254))
-((-2036 (*1 *2 *3 *2) (-12 (-5 *2 (-621 (-372))) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-1994 (*1 *2 *3 *2) (-12 (-5 *2 (-1 (-914 (-219)) (-914 (-219)))) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-2211 (*1 *2 *3 *2) (-12 (-5 *2 (-372)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-2017 (*1 *2 *3 *2) (-12 (-5 *2 (-892)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-3192 (*1 *2 *3) (-12 (-5 *3 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-254)))) (-3560 (*1 *2 *3 *2) (-12 (-5 *2 (-892)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-3471 (*1 *2 *3 *2) (-12 (-5 *2 (-892)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-2734 (*1 *2 *3 *2) (-12 (-5 *2 (-621 (-1061 (-372)))) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-3467 (*1 *2 *3 *2) (-12 (-5 *2 (-845)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-3859 (*1 *2 *3 *2) (-12 (-5 *2 (-845)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-2959 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-1741 (*1 *2 *3 *2) (-12 (-5 *2 (-1125)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-1596 (*1 *2 *3 *2) (-12 (-5 *2 (-1125)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-1491 (*1 *2 *3 *2) (-12 (-5 *2 (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)))) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-3892 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-2424 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))))
-(-10 -7 (-15 -2424 ((-112) (-621 (-256)) (-112))) (-15 -3892 ((-112) (-621 (-256)) (-112))) (-15 -1491 ((-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))) (-621 (-256)) (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))) (-15 -1596 ((-1125) (-621 (-256)) (-1125))) (-15 -1741 ((-1125) (-621 (-256)) (-1125))) (-15 -2959 ((-112) (-621 (-256)) (-112))) (-15 -3859 ((-845) (-621 (-256)) (-845))) (-15 -3467 ((-845) (-621 (-256)) (-845))) (-15 -2734 ((-621 (-1061 (-372))) (-621 (-256)) (-621 (-1061 (-372))))) (-15 -3471 ((-892) (-621 (-256)) (-892))) (-15 -3560 ((-892) (-621 (-256)) (-892))) (-15 -3192 ((-1100 (-219)) (-621 (-256)))) (-15 -2017 ((-892) (-621 (-256)) (-892))) (-15 -2211 ((-372) (-621 (-256)) (-372))) (-15 -1994 ((-1 (-914 (-219)) (-914 (-219))) (-621 (-256)) (-1 (-914 (-219)) (-914 (-219))))) (-15 -2036 ((-621 (-372)) (-621 (-256)) (-621 (-372)))))
-((-3510 (((-3 |#1| "failed") (-621 (-256)) (-1143)) 17)))
-(((-255 |#1|) (-10 -7 (-15 -3510 ((-3 |#1| "failed") (-621 (-256)) (-1143)))) (-1180)) (T -255))
-((-3510 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-621 (-256))) (-5 *4 (-1143)) (-5 *1 (-255 *2)) (-4 *2 (-1180)))))
-(-10 -7 (-15 -3510 ((-3 |#1| "failed") (-621 (-256)) (-1143))))
-((-3834 (((-112) $ $) NIL)) (-1491 (($ (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)))) 15)) (-3560 (($ (-892)) 76)) (-3471 (($ (-892)) 75)) (-2207 (($ (-621 (-372))) 82)) (-2211 (($ (-372)) 58)) (-2017 (($ (-892)) 77)) (-2959 (($ (-112)) 23)) (-1596 (($ (-1125)) 18)) (-1741 (($ (-1125)) 19)) (-3192 (($ (-1100 (-219))) 71)) (-2734 (($ (-621 (-1061 (-372)))) 67)) (-1372 (($ (-621 (-1061 (-372)))) 59) (($ (-621 (-1061 (-400 (-549))))) 66)) (-2919 (($ (-372)) 29) (($ (-845)) 33)) (-3271 (((-112) (-621 $) (-1143)) 91)) (-3510 (((-3 (-52) "failed") (-621 $) (-1143)) 93)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3871 (($ (-372)) 34) (($ (-845)) 35)) (-4263 (($ (-1 (-914 (-219)) (-914 (-219)))) 57)) (-1994 (($ (-1 (-914 (-219)) (-914 (-219)))) 78)) (-1262 (($ (-1 (-219) (-219))) 39) (($ (-1 (-219) (-219) (-219))) 43) (($ (-1 (-219) (-219) (-219) (-219))) 47)) (-3846 (((-834) $) 87)) (-3198 (($ (-112)) 24) (($ (-621 (-1061 (-372)))) 52)) (-2424 (($ (-112)) 25)) (-2389 (((-112) $ $) 89)))
-(((-256) (-13 (-1067) (-10 -8 (-15 -2424 ($ (-112))) (-15 -3198 ($ (-112))) (-15 -1491 ($ (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))) (-15 -1596 ($ (-1125))) (-15 -1741 ($ (-1125))) (-15 -2959 ($ (-112))) (-15 -3198 ($ (-621 (-1061 (-372))))) (-15 -4263 ($ (-1 (-914 (-219)) (-914 (-219))))) (-15 -2919 ($ (-372))) (-15 -2919 ($ (-845))) (-15 -3871 ($ (-372))) (-15 -3871 ($ (-845))) (-15 -1262 ($ (-1 (-219) (-219)))) (-15 -1262 ($ (-1 (-219) (-219) (-219)))) (-15 -1262 ($ (-1 (-219) (-219) (-219) (-219)))) (-15 -2211 ($ (-372))) (-15 -1372 ($ (-621 (-1061 (-372))))) (-15 -1372 ($ (-621 (-1061 (-400 (-549)))))) (-15 -2734 ($ (-621 (-1061 (-372))))) (-15 -3192 ($ (-1100 (-219)))) (-15 -3471 ($ (-892))) (-15 -3560 ($ (-892))) (-15 -2017 ($ (-892))) (-15 -1994 ($ (-1 (-914 (-219)) (-914 (-219))))) (-15 -2207 ($ (-621 (-372)))) (-15 -3510 ((-3 (-52) "failed") (-621 $) (-1143))) (-15 -3271 ((-112) (-621 $) (-1143)))))) (T -256))
-((-2424 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-256)))) (-3198 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-256)))) (-1491 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)))) (-5 *1 (-256)))) (-1596 (*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-256)))) (-1741 (*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-256)))) (-2959 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-256)))) (-3198 (*1 *1 *2) (-12 (-5 *2 (-621 (-1061 (-372)))) (-5 *1 (-256)))) (-4263 (*1 *1 *2) (-12 (-5 *2 (-1 (-914 (-219)) (-914 (-219)))) (-5 *1 (-256)))) (-2919 (*1 *1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-256)))) (-2919 (*1 *1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-256)))) (-3871 (*1 *1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-256)))) (-3871 (*1 *1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-256)))) (-1262 (*1 *1 *2) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *1 (-256)))) (-1262 (*1 *1 *2) (-12 (-5 *2 (-1 (-219) (-219) (-219))) (-5 *1 (-256)))) (-1262 (*1 *1 *2) (-12 (-5 *2 (-1 (-219) (-219) (-219) (-219))) (-5 *1 (-256)))) (-2211 (*1 *1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-256)))) (-1372 (*1 *1 *2) (-12 (-5 *2 (-621 (-1061 (-372)))) (-5 *1 (-256)))) (-1372 (*1 *1 *2) (-12 (-5 *2 (-621 (-1061 (-400 (-549))))) (-5 *1 (-256)))) (-2734 (*1 *1 *2) (-12 (-5 *2 (-621 (-1061 (-372)))) (-5 *1 (-256)))) (-3192 (*1 *1 *2) (-12 (-5 *2 (-1100 (-219))) (-5 *1 (-256)))) (-3471 (*1 *1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-256)))) (-3560 (*1 *1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-256)))) (-2017 (*1 *1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-256)))) (-1994 (*1 *1 *2) (-12 (-5 *2 (-1 (-914 (-219)) (-914 (-219)))) (-5 *1 (-256)))) (-2207 (*1 *1 *2) (-12 (-5 *2 (-621 (-372))) (-5 *1 (-256)))) (-3510 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-621 (-256))) (-5 *4 (-1143)) (-5 *2 (-52)) (-5 *1 (-256)))) (-3271 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-256))) (-5 *4 (-1143)) (-5 *2 (-112)) (-5 *1 (-256)))))
-(-13 (-1067) (-10 -8 (-15 -2424 ($ (-112))) (-15 -3198 ($ (-112))) (-15 -1491 ($ (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))) (-15 -1596 ($ (-1125))) (-15 -1741 ($ (-1125))) (-15 -2959 ($ (-112))) (-15 -3198 ($ (-621 (-1061 (-372))))) (-15 -4263 ($ (-1 (-914 (-219)) (-914 (-219))))) (-15 -2919 ($ (-372))) (-15 -2919 ($ (-845))) (-15 -3871 ($ (-372))) (-15 -3871 ($ (-845))) (-15 -1262 ($ (-1 (-219) (-219)))) (-15 -1262 ($ (-1 (-219) (-219) (-219)))) (-15 -1262 ($ (-1 (-219) (-219) (-219) (-219)))) (-15 -2211 ($ (-372))) (-15 -1372 ($ (-621 (-1061 (-372))))) (-15 -1372 ($ (-621 (-1061 (-400 (-549)))))) (-15 -2734 ($ (-621 (-1061 (-372))))) (-15 -3192 ($ (-1100 (-219)))) (-15 -3471 ($ (-892))) (-15 -3560 ($ (-892))) (-15 -2017 ($ (-892))) (-15 -1994 ($ (-1 (-914 (-219)) (-914 (-219))))) (-15 -2207 ($ (-621 (-372)))) (-15 -3510 ((-3 (-52) "failed") (-621 $) (-1143))) (-15 -3271 ((-112) (-621 $) (-1143)))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3977 (((-621 (-747)) $) NIL) (((-621 (-747)) $ |#2|) NIL)) (-1637 (((-747) $) NIL) (((-747) $ |#2|) NIL)) (-2272 (((-621 |#3|) $) NIL)) (-2084 (((-1139 $) $ |#3|) NIL) (((-1139 |#1|) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-3186 (((-747) $) NIL) (((-747) $ (-621 |#3|)) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-3979 (($ $) NIL (|has| |#1| (-444)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-3920 (($ $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 |#3| "failed") $) NIL) (((-3 |#2| "failed") $) NIL) (((-3 (-1092 |#1| |#2|) "failed") $) 21)) (-2659 ((|#1| $) NIL) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) ((|#3| $) NIL) ((|#2| $) NIL) (((-1092 |#1| |#2|) $) NIL)) (-1353 (($ $ $ |#3|) NIL (|has| |#1| (-170)))) (-2070 (($ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1285 (($ $) NIL (|has| |#1| (-444))) (($ $ |#3|) NIL (|has| |#1| (-444)))) (-2058 (((-621 $) $) NIL)) (-1420 (((-112) $) NIL (|has| |#1| (-880)))) (-2691 (($ $ |#1| (-521 |#3|) $) NIL)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| |#1| (-857 (-372))) (|has| |#3| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| |#1| (-857 (-549))) (|has| |#3| (-857 (-549)))))) (-2088 (((-747) $ |#2|) NIL) (((-747) $) 10)) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) NIL)) (-2261 (($ (-1139 |#1|) |#3|) NIL) (($ (-1139 $) |#3|) NIL)) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-521 |#3|)) NIL) (($ $ |#3| (-747)) NIL) (($ $ (-621 |#3|) (-621 (-747))) NIL)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ |#3|) NIL)) (-3611 (((-521 |#3|) $) NIL) (((-747) $ |#3|) NIL) (((-621 (-747)) $ (-621 |#3|)) NIL)) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-3705 (($ (-1 (-521 |#3|) (-521 |#3|)) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-3040 (((-1 $ (-747)) |#2|) NIL) (((-1 $ (-747)) $) NIL (|has| |#1| (-227)))) (-1520 (((-3 |#3| "failed") $) NIL)) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-4052 ((|#3| $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-3851 (((-1125) $) NIL)) (-2709 (((-112) $) NIL)) (-4266 (((-3 (-621 $) "failed") $) NIL)) (-2533 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-2 (|:| |var| |#3|) (|:| -3731 (-747))) "failed") $) NIL)) (-2255 (($ $) NIL)) (-3990 (((-1087) $) NIL)) (-2004 (((-112) $) NIL)) (-2016 ((|#1| $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-444)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-2121 (((-411 $) $) NIL (|has| |#1| (-880)))) (-2042 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-2686 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ |#3| |#1|) NIL) (($ $ (-621 |#3|) (-621 |#1|)) NIL) (($ $ |#3| $) NIL) (($ $ (-621 |#3|) (-621 $)) NIL) (($ $ |#2| $) NIL (|has| |#1| (-227))) (($ $ (-621 |#2|) (-621 $)) NIL (|has| |#1| (-227))) (($ $ |#2| |#1|) NIL (|has| |#1| (-227))) (($ $ (-621 |#2|) (-621 |#1|)) NIL (|has| |#1| (-227)))) (-3602 (($ $ |#3|) NIL (|has| |#1| (-170)))) (-3456 (($ $ |#3|) NIL) (($ $ (-621 |#3|)) NIL) (($ $ |#3| (-747)) NIL) (($ $ (-621 |#3|) (-621 (-747))) NIL) (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1920 (((-621 |#2|) $) NIL)) (-3701 (((-521 |#3|) $) NIL) (((-747) $ |#3|) NIL) (((-621 (-747)) $ (-621 |#3|)) NIL) (((-747) $ |#2|) NIL)) (-2845 (((-863 (-372)) $) NIL (-12 (|has| |#1| (-594 (-863 (-372)))) (|has| |#3| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| |#1| (-594 (-863 (-549)))) (|has| |#3| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| |#1| (-594 (-525))) (|has| |#3| (-594 (-525)))))) (-2216 ((|#1| $) NIL (|has| |#1| (-444))) (($ $ |#3|) NIL (|has| |#1| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) 24) (($ |#3|) 23) (($ |#2|) NIL) (($ (-1092 |#1| |#2|)) 30) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#1| (-541)))) (-4141 (((-621 |#1|) $) NIL)) (-2152 ((|#1| $ (-521 |#3|)) NIL) (($ $ |#3| (-747)) NIL) (($ $ (-621 |#3|) (-621 (-747))) NIL)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2082 (((-747)) NIL)) (-1509 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $ |#3|) NIL) (($ $ (-621 |#3|)) NIL) (($ $ |#3| (-747)) NIL) (($ $ (-621 |#3|) (-621 (-747))) NIL) (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-257 |#1| |#2| |#3|) (-13 (-246 |#1| |#2| |#3| (-521 |#3|)) (-1009 (-1092 |#1| |#2|))) (-1018) (-823) (-259 |#2|)) (T -257))
-NIL
-(-13 (-246 |#1| |#2| |#3| (-521 |#3|)) (-1009 (-1092 |#1| |#2|)))
-((-1637 (((-747) $) 30)) (-2714 (((-3 |#2| "failed") $) 17)) (-2659 ((|#2| $) 27)) (-3456 (($ $) 12) (($ $ (-747)) 15)) (-3846 (((-834) $) 26) (($ |#2|) 10)) (-2389 (((-112) $ $) 20)) (-2412 (((-112) $ $) 29)))
-(((-258 |#1| |#2|) (-10 -8 (-15 -3456 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1|)) (-15 -1637 ((-747) |#1|)) (-15 -2659 (|#2| |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -3846 (|#1| |#2|)) (-15 -2412 ((-112) |#1| |#1|)) (-15 -3846 ((-834) |#1|)) (-15 -2389 ((-112) |#1| |#1|))) (-259 |#2|) (-823)) (T -258))
-NIL
-(-10 -8 (-15 -3456 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1|)) (-15 -1637 ((-747) |#1|)) (-15 -2659 (|#2| |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -3846 (|#1| |#2|)) (-15 -2412 ((-112) |#1| |#1|)) (-15 -3846 ((-834) |#1|)) (-15 -2389 ((-112) |#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-1637 (((-747) $) 22)) (-3011 ((|#1| $) 23)) (-2714 (((-3 |#1| "failed") $) 27)) (-2659 ((|#1| $) 26)) (-2088 (((-747) $) 24)) (-2863 (($ $ $) 13)) (-3575 (($ $ $) 14)) (-3040 (($ |#1| (-747)) 25)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3456 (($ $) 21) (($ $ (-747)) 20)) (-3846 (((-834) $) 11) (($ |#1|) 28)) (-2448 (((-112) $ $) 16)) (-2425 (((-112) $ $) 17)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 15)) (-2412 (((-112) $ $) 18)))
+((-2205 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-4 *3 (-823)) (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-1 *1 (-747))) (-4 *1 (-246 *4 *3 *5 *6)))) (-1640 (*1 *2 *1) (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-621 *4)))) (-2729 (*1 *2 *1 *3) (-12 (-4 *1 (-246 *4 *3 *5 *6)) (-4 *4 (-1018)) (-4 *3 (-823)) (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-747)))) (-2729 (*1 *2 *1) (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-747)))) (-3977 (*1 *2 *1 *3) (-12 (-4 *1 (-246 *4 *3 *5 *6)) (-4 *4 (-1018)) (-4 *3 (-823)) (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-747)))) (-3066 (*1 *2 *1) (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-621 (-747))))) (-1518 (*1 *2 *1) (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-747)))) (-3066 (*1 *2 *1 *3) (-12 (-4 *1 (-246 *4 *3 *5 *6)) (-4 *4 (-1018)) (-4 *3 (-823)) (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-621 (-747))))) (-1518 (*1 *2 *1 *3) (-12 (-4 *1 (-246 *4 *3 *5 *6)) (-4 *4 (-1018)) (-4 *3 (-823)) (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-747)))) (-3104 (*1 *2 *1) (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-112)))) (-4051 (*1 *2 *1) (-12 (-4 *1 (-246 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-769)) (-4 *2 (-259 *4)))) (-2255 (*1 *1 *1) (-12 (-4 *1 (-246 *2 *3 *4 *5)) (-4 *2 (-1018)) (-4 *3 (-823)) (-4 *4 (-259 *3)) (-4 *5 (-769)))) (-2703 (*1 *1 *1) (-12 (-4 *1 (-246 *2 *3 *4 *5)) (-4 *2 (-1018)) (-4 *3 (-823)) (-4 *4 (-259 *3)) (-4 *5 (-769)))) (-2205 (*1 *2 *1) (-12 (-4 *3 (-227)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-1 *1 (-747))) (-4 *1 (-246 *3 *4 *5 *6)))))
+(-13 (-920 |t#1| |t#4| |t#3|) (-225 |t#1|) (-1009 |t#2|) (-10 -8 (-15 -2205 ((-1 $ (-747)) |t#2|)) (-15 -1640 ((-621 |t#2|) $)) (-15 -2729 ((-747) $ |t#2|)) (-15 -2729 ((-747) $)) (-15 -3977 ((-747) $ |t#2|)) (-15 -3066 ((-621 (-747)) $)) (-15 -1518 ((-747) $)) (-15 -3066 ((-621 (-747)) $ |t#2|)) (-15 -1518 ((-747) $ |t#2|)) (-15 -3104 ((-112) $)) (-15 -4051 (|t#3| $)) (-15 -2255 ($ $)) (-15 -2703 ($ $)) (IF (|has| |t#1| (-227)) (PROGN (-6 (-505 |t#2| |t#1|)) (-6 (-505 |t#2| $)) (-6 (-302 $)) (-15 -2205 ((-1 $ (-747)) $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| |#4|) . T) ((-25) . T) ((-38 #0=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-594 (-525)) -12 (|has| |#1| (-594 (-525))) (|has| |#3| (-594 (-525)))) ((-594 (-863 (-372))) -12 (|has| |#1| (-594 (-863 (-372)))) (|has| |#3| (-594 (-863 (-372))))) ((-594 (-863 (-549))) -12 (|has| |#1| (-594 (-863 (-549)))) (|has| |#3| (-594 (-863 (-549))))) ((-225 |#1|) . T) ((-227) |has| |#1| (-227)) ((-283) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-302 $) . T) ((-319 |#1| |#4|) . T) ((-370 |#1|) . T) ((-404 |#1|) . T) ((-444) -1536 (|has| |#1| (-880)) (|has| |#1| (-444))) ((-505 |#2| |#1|) |has| |#1| (-227)) ((-505 |#2| $) |has| |#1| (-227)) ((-505 |#3| |#1|) . T) ((-505 |#3| $) . T) ((-505 $ $) . T) ((-541) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-624 #0#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-694 #0#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-703) . T) ((-823) |has| |#1| (-823)) ((-871 (-1142)) |has| |#1| (-871 (-1142))) ((-871 |#3|) . T) ((-857 (-372)) -12 (|has| |#1| (-857 (-372))) (|has| |#3| (-857 (-372)))) ((-857 (-549)) -12 (|has| |#1| (-857 (-549))) (|has| |#3| (-857 (-549)))) ((-920 |#1| |#4| |#3|) . T) ((-880) |has| |#1| (-880)) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1009 |#2|) . T) ((-1009 |#3|) . T) ((-1024 #0#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1183) |has| |#1| (-880)))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-2810 ((|#1| $) 54)) (-2316 ((|#1| $) 44)) (-2850 (((-112) $ (-747)) 8)) (-3034 (($) 7 T CONST)) (-3030 (($ $) 60)) (-2918 (($ $) 48)) (-3677 ((|#1| |#1| $) 46)) (-1794 ((|#1| $) 45)) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) 9)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-4210 (((-747) $) 61)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-2548 ((|#1| $) 39)) (-3122 ((|#1| |#1| $) 52)) (-1592 ((|#1| |#1| $) 51)) (-1799 (($ |#1| $) 40)) (-4036 (((-747) $) 55)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3082 ((|#1| $) 62)) (-1879 ((|#1| $) 50)) (-3319 ((|#1| $) 49)) (-3536 ((|#1| $) 41)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-1396 ((|#1| |#1| $) 58)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-4140 ((|#1| $) 59)) (-3172 (($) 57) (($ (-621 |#1|)) 56)) (-1319 (((-747) $) 43)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3183 ((|#1| $) 53)) (-4213 (($ (-621 |#1|)) 42)) (-3165 ((|#1| $) 63)) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-247 |#1|) (-138) (-1179)) (T -247))
+((-3172 (*1 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1179)))) (-3172 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-4 *1 (-247 *3)))) (-4036 (*1 *2 *1) (-12 (-4 *1 (-247 *3)) (-4 *3 (-1179)) (-5 *2 (-747)))) (-2810 (*1 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1179)))) (-3183 (*1 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1179)))) (-3122 (*1 *2 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1179)))) (-1592 (*1 *2 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1179)))) (-1879 (*1 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1179)))) (-3319 (*1 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1179)))) (-2918 (*1 *1 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1179)))))
+(-13 (-1087 |t#1|) (-966 |t#1|) (-10 -8 (-15 -3172 ($)) (-15 -3172 ($ (-621 |t#1|))) (-15 -4036 ((-747) $)) (-15 -2810 (|t#1| $)) (-15 -3183 (|t#1| $)) (-15 -3122 (|t#1| |t#1| $)) (-15 -1592 (|t#1| |t#1| $)) (-15 -1879 (|t#1| $)) (-15 -3319 (|t#1| $)) (-15 -2918 ($ $))))
+(((-34) . T) ((-106 |#1|) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-966 |#1|) . T) ((-1066) |has| |#1| (-1066)) ((-1087 |#1|) . T) ((-1179) . T))
+((-3370 (((-1 (-914 (-219)) (-219) (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1 (-219) (-219) (-219) (-219))) 139)) (-1541 (((-1099 (-219)) (-853 (-1 (-219) (-219) (-219))) (-1060 (-372)) (-1060 (-372))) 160) (((-1099 (-219)) (-853 (-1 (-219) (-219) (-219))) (-1060 (-372)) (-1060 (-372)) (-621 (-256))) 158) (((-1099 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-372)) (-1060 (-372))) 163) (((-1099 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-372)) (-1060 (-372)) (-621 (-256))) 159) (((-1099 (-219)) (-1 (-219) (-219) (-219)) (-1060 (-372)) (-1060 (-372))) 150) (((-1099 (-219)) (-1 (-219) (-219) (-219)) (-1060 (-372)) (-1060 (-372)) (-621 (-256))) 149) (((-1099 (-219)) (-1 (-914 (-219)) (-219)) (-1060 (-372))) 129) (((-1099 (-219)) (-1 (-914 (-219)) (-219)) (-1060 (-372)) (-621 (-256))) 127) (((-1099 (-219)) (-850 (-1 (-219) (-219))) (-1060 (-372))) 128) (((-1099 (-219)) (-850 (-1 (-219) (-219))) (-1060 (-372)) (-621 (-256))) 125)) (-1489 (((-1227) (-853 (-1 (-219) (-219) (-219))) (-1060 (-372)) (-1060 (-372))) 162) (((-1227) (-853 (-1 (-219) (-219) (-219))) (-1060 (-372)) (-1060 (-372)) (-621 (-256))) 161) (((-1227) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-372)) (-1060 (-372))) 165) (((-1227) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-372)) (-1060 (-372)) (-621 (-256))) 164) (((-1227) (-1 (-219) (-219) (-219)) (-1060 (-372)) (-1060 (-372))) 152) (((-1227) (-1 (-219) (-219) (-219)) (-1060 (-372)) (-1060 (-372)) (-621 (-256))) 151) (((-1227) (-1 (-914 (-219)) (-219)) (-1060 (-372))) 135) (((-1227) (-1 (-914 (-219)) (-219)) (-1060 (-372)) (-621 (-256))) 134) (((-1227) (-850 (-1 (-219) (-219))) (-1060 (-372))) 133) (((-1227) (-850 (-1 (-219) (-219))) (-1060 (-372)) (-621 (-256))) 132) (((-1226) (-848 (-1 (-219) (-219))) (-1060 (-372))) 100) (((-1226) (-848 (-1 (-219) (-219))) (-1060 (-372)) (-621 (-256))) 99) (((-1226) (-1 (-219) (-219)) (-1060 (-372))) 96) (((-1226) (-1 (-219) (-219)) (-1060 (-372)) (-621 (-256))) 95)))
+(((-248) (-10 -7 (-15 -1489 ((-1226) (-1 (-219) (-219)) (-1060 (-372)) (-621 (-256)))) (-15 -1489 ((-1226) (-1 (-219) (-219)) (-1060 (-372)))) (-15 -1489 ((-1226) (-848 (-1 (-219) (-219))) (-1060 (-372)) (-621 (-256)))) (-15 -1489 ((-1226) (-848 (-1 (-219) (-219))) (-1060 (-372)))) (-15 -1489 ((-1227) (-850 (-1 (-219) (-219))) (-1060 (-372)) (-621 (-256)))) (-15 -1489 ((-1227) (-850 (-1 (-219) (-219))) (-1060 (-372)))) (-15 -1489 ((-1227) (-1 (-914 (-219)) (-219)) (-1060 (-372)) (-621 (-256)))) (-15 -1489 ((-1227) (-1 (-914 (-219)) (-219)) (-1060 (-372)))) (-15 -1541 ((-1099 (-219)) (-850 (-1 (-219) (-219))) (-1060 (-372)) (-621 (-256)))) (-15 -1541 ((-1099 (-219)) (-850 (-1 (-219) (-219))) (-1060 (-372)))) (-15 -1541 ((-1099 (-219)) (-1 (-914 (-219)) (-219)) (-1060 (-372)) (-621 (-256)))) (-15 -1541 ((-1099 (-219)) (-1 (-914 (-219)) (-219)) (-1060 (-372)))) (-15 -1489 ((-1227) (-1 (-219) (-219) (-219)) (-1060 (-372)) (-1060 (-372)) (-621 (-256)))) (-15 -1489 ((-1227) (-1 (-219) (-219) (-219)) (-1060 (-372)) (-1060 (-372)))) (-15 -1541 ((-1099 (-219)) (-1 (-219) (-219) (-219)) (-1060 (-372)) (-1060 (-372)) (-621 (-256)))) (-15 -1541 ((-1099 (-219)) (-1 (-219) (-219) (-219)) (-1060 (-372)) (-1060 (-372)))) (-15 -1489 ((-1227) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-372)) (-1060 (-372)) (-621 (-256)))) (-15 -1489 ((-1227) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-372)) (-1060 (-372)))) (-15 -1541 ((-1099 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-372)) (-1060 (-372)) (-621 (-256)))) (-15 -1541 ((-1099 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-372)) (-1060 (-372)))) (-15 -1489 ((-1227) (-853 (-1 (-219) (-219) (-219))) (-1060 (-372)) (-1060 (-372)) (-621 (-256)))) (-15 -1489 ((-1227) (-853 (-1 (-219) (-219) (-219))) (-1060 (-372)) (-1060 (-372)))) (-15 -1541 ((-1099 (-219)) (-853 (-1 (-219) (-219) (-219))) (-1060 (-372)) (-1060 (-372)) (-621 (-256)))) (-15 -1541 ((-1099 (-219)) (-853 (-1 (-219) (-219) (-219))) (-1060 (-372)) (-1060 (-372)))) (-15 -3370 ((-1 (-914 (-219)) (-219) (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1 (-219) (-219) (-219) (-219)))))) (T -248))
+((-3370 (*1 *2 *2 *3) (-12 (-5 *2 (-1 (-914 (-219)) (-219) (-219))) (-5 *3 (-1 (-219) (-219) (-219) (-219))) (-5 *1 (-248)))) (-1541 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-853 (-1 (-219) (-219) (-219)))) (-5 *4 (-1060 (-372))) (-5 *2 (-1099 (-219))) (-5 *1 (-248)))) (-1541 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-853 (-1 (-219) (-219) (-219)))) (-5 *4 (-1060 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-248)))) (-1489 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-853 (-1 (-219) (-219) (-219)))) (-5 *4 (-1060 (-372))) (-5 *2 (-1227)) (-5 *1 (-248)))) (-1489 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-853 (-1 (-219) (-219) (-219)))) (-5 *4 (-1060 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-248)))) (-1541 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1060 (-372))) (-5 *2 (-1099 (-219))) (-5 *1 (-248)))) (-1541 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1060 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-248)))) (-1489 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1060 (-372))) (-5 *2 (-1227)) (-5 *1 (-248)))) (-1489 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1060 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-248)))) (-1541 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1060 (-372))) (-5 *2 (-1099 (-219))) (-5 *1 (-248)))) (-1541 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1060 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-248)))) (-1489 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1060 (-372))) (-5 *2 (-1227)) (-5 *1 (-248)))) (-1489 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1060 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-248)))) (-1541 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-914 (-219)) (-219))) (-5 *4 (-1060 (-372))) (-5 *2 (-1099 (-219))) (-5 *1 (-248)))) (-1541 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-914 (-219)) (-219))) (-5 *4 (-1060 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-248)))) (-1541 (*1 *2 *3 *4) (-12 (-5 *3 (-850 (-1 (-219) (-219)))) (-5 *4 (-1060 (-372))) (-5 *2 (-1099 (-219))) (-5 *1 (-248)))) (-1541 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-850 (-1 (-219) (-219)))) (-5 *4 (-1060 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-248)))) (-1489 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-914 (-219)) (-219))) (-5 *4 (-1060 (-372))) (-5 *2 (-1227)) (-5 *1 (-248)))) (-1489 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-914 (-219)) (-219))) (-5 *4 (-1060 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-248)))) (-1489 (*1 *2 *3 *4) (-12 (-5 *3 (-850 (-1 (-219) (-219)))) (-5 *4 (-1060 (-372))) (-5 *2 (-1227)) (-5 *1 (-248)))) (-1489 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-850 (-1 (-219) (-219)))) (-5 *4 (-1060 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-248)))) (-1489 (*1 *2 *3 *4) (-12 (-5 *3 (-848 (-1 (-219) (-219)))) (-5 *4 (-1060 (-372))) (-5 *2 (-1226)) (-5 *1 (-248)))) (-1489 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-848 (-1 (-219) (-219)))) (-5 *4 (-1060 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1226)) (-5 *1 (-248)))) (-1489 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-219) (-219))) (-5 *4 (-1060 (-372))) (-5 *2 (-1226)) (-5 *1 (-248)))) (-1489 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-219) (-219))) (-5 *4 (-1060 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1226)) (-5 *1 (-248)))))
+(-10 -7 (-15 -1489 ((-1226) (-1 (-219) (-219)) (-1060 (-372)) (-621 (-256)))) (-15 -1489 ((-1226) (-1 (-219) (-219)) (-1060 (-372)))) (-15 -1489 ((-1226) (-848 (-1 (-219) (-219))) (-1060 (-372)) (-621 (-256)))) (-15 -1489 ((-1226) (-848 (-1 (-219) (-219))) (-1060 (-372)))) (-15 -1489 ((-1227) (-850 (-1 (-219) (-219))) (-1060 (-372)) (-621 (-256)))) (-15 -1489 ((-1227) (-850 (-1 (-219) (-219))) (-1060 (-372)))) (-15 -1489 ((-1227) (-1 (-914 (-219)) (-219)) (-1060 (-372)) (-621 (-256)))) (-15 -1489 ((-1227) (-1 (-914 (-219)) (-219)) (-1060 (-372)))) (-15 -1541 ((-1099 (-219)) (-850 (-1 (-219) (-219))) (-1060 (-372)) (-621 (-256)))) (-15 -1541 ((-1099 (-219)) (-850 (-1 (-219) (-219))) (-1060 (-372)))) (-15 -1541 ((-1099 (-219)) (-1 (-914 (-219)) (-219)) (-1060 (-372)) (-621 (-256)))) (-15 -1541 ((-1099 (-219)) (-1 (-914 (-219)) (-219)) (-1060 (-372)))) (-15 -1489 ((-1227) (-1 (-219) (-219) (-219)) (-1060 (-372)) (-1060 (-372)) (-621 (-256)))) (-15 -1489 ((-1227) (-1 (-219) (-219) (-219)) (-1060 (-372)) (-1060 (-372)))) (-15 -1541 ((-1099 (-219)) (-1 (-219) (-219) (-219)) (-1060 (-372)) (-1060 (-372)) (-621 (-256)))) (-15 -1541 ((-1099 (-219)) (-1 (-219) (-219) (-219)) (-1060 (-372)) (-1060 (-372)))) (-15 -1489 ((-1227) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-372)) (-1060 (-372)) (-621 (-256)))) (-15 -1489 ((-1227) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-372)) (-1060 (-372)))) (-15 -1541 ((-1099 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-372)) (-1060 (-372)) (-621 (-256)))) (-15 -1541 ((-1099 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-372)) (-1060 (-372)))) (-15 -1489 ((-1227) (-853 (-1 (-219) (-219) (-219))) (-1060 (-372)) (-1060 (-372)) (-621 (-256)))) (-15 -1489 ((-1227) (-853 (-1 (-219) (-219) (-219))) (-1060 (-372)) (-1060 (-372)))) (-15 -1541 ((-1099 (-219)) (-853 (-1 (-219) (-219) (-219))) (-1060 (-372)) (-1060 (-372)) (-621 (-256)))) (-15 -1541 ((-1099 (-219)) (-853 (-1 (-219) (-219) (-219))) (-1060 (-372)) (-1060 (-372)))) (-15 -3370 ((-1 (-914 (-219)) (-219) (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1 (-219) (-219) (-219) (-219)))))
+((-1489 (((-1226) (-287 |#2|) (-1142) (-1142) (-621 (-256))) 96)))
+(((-249 |#1| |#2|) (-10 -7 (-15 -1489 ((-1226) (-287 |#2|) (-1142) (-1142) (-621 (-256))))) (-13 (-541) (-823) (-1009 (-549))) (-423 |#1|)) (T -249))
+((-1489 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-287 *7)) (-5 *4 (-1142)) (-5 *5 (-621 (-256))) (-4 *7 (-423 *6)) (-4 *6 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-1226)) (-5 *1 (-249 *6 *7)))))
+(-10 -7 (-15 -1489 ((-1226) (-287 |#2|) (-1142) (-1142) (-621 (-256)))))
+((-3957 (((-549) (-549)) 50)) (-1914 (((-549) (-549)) 51)) (-1778 (((-219) (-219)) 52)) (-3043 (((-1227) (-1 (-167 (-219)) (-167 (-219))) (-1060 (-219)) (-1060 (-219))) 49)) (-2654 (((-1227) (-1 (-167 (-219)) (-167 (-219))) (-1060 (-219)) (-1060 (-219)) (-112)) 47)))
+(((-250) (-10 -7 (-15 -2654 ((-1227) (-1 (-167 (-219)) (-167 (-219))) (-1060 (-219)) (-1060 (-219)) (-112))) (-15 -3043 ((-1227) (-1 (-167 (-219)) (-167 (-219))) (-1060 (-219)) (-1060 (-219)))) (-15 -3957 ((-549) (-549))) (-15 -1914 ((-549) (-549))) (-15 -1778 ((-219) (-219))))) (T -250))
+((-1778 (*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-250)))) (-1914 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-250)))) (-3957 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-250)))) (-3043 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-167 (-219)) (-167 (-219)))) (-5 *4 (-1060 (-219))) (-5 *2 (-1227)) (-5 *1 (-250)))) (-2654 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-167 (-219)) (-167 (-219)))) (-5 *4 (-1060 (-219))) (-5 *5 (-112)) (-5 *2 (-1227)) (-5 *1 (-250)))))
+(-10 -7 (-15 -2654 ((-1227) (-1 (-167 (-219)) (-167 (-219))) (-1060 (-219)) (-1060 (-219)) (-112))) (-15 -3043 ((-1227) (-1 (-167 (-219)) (-167 (-219))) (-1060 (-219)) (-1060 (-219)))) (-15 -3957 ((-549) (-549))) (-15 -1914 ((-549) (-549))) (-15 -1778 ((-219) (-219))))
+((-3845 (((-1058 (-372)) (-1058 (-309 |#1|))) 16)))
+(((-251 |#1|) (-10 -7 (-15 -3845 ((-1058 (-372)) (-1058 (-309 |#1|))))) (-13 (-823) (-541) (-594 (-372)))) (T -251))
+((-3845 (*1 *2 *3) (-12 (-5 *3 (-1058 (-309 *4))) (-4 *4 (-13 (-823) (-541) (-594 (-372)))) (-5 *2 (-1058 (-372))) (-5 *1 (-251 *4)))))
+(-10 -7 (-15 -3845 ((-1058 (-372)) (-1058 (-309 |#1|)))))
+((-1541 (((-1099 (-219)) (-853 |#1|) (-1058 (-372)) (-1058 (-372))) 71) (((-1099 (-219)) (-853 |#1|) (-1058 (-372)) (-1058 (-372)) (-621 (-256))) 70) (((-1099 (-219)) |#1| (-1058 (-372)) (-1058 (-372))) 61) (((-1099 (-219)) |#1| (-1058 (-372)) (-1058 (-372)) (-621 (-256))) 60) (((-1099 (-219)) (-850 |#1|) (-1058 (-372))) 52) (((-1099 (-219)) (-850 |#1|) (-1058 (-372)) (-621 (-256))) 51)) (-1489 (((-1227) (-853 |#1|) (-1058 (-372)) (-1058 (-372))) 74) (((-1227) (-853 |#1|) (-1058 (-372)) (-1058 (-372)) (-621 (-256))) 73) (((-1227) |#1| (-1058 (-372)) (-1058 (-372))) 64) (((-1227) |#1| (-1058 (-372)) (-1058 (-372)) (-621 (-256))) 63) (((-1227) (-850 |#1|) (-1058 (-372))) 56) (((-1227) (-850 |#1|) (-1058 (-372)) (-621 (-256))) 55) (((-1226) (-848 |#1|) (-1058 (-372))) 43) (((-1226) (-848 |#1|) (-1058 (-372)) (-621 (-256))) 42) (((-1226) |#1| (-1058 (-372))) 35) (((-1226) |#1| (-1058 (-372)) (-621 (-256))) 34)))
+(((-252 |#1|) (-10 -7 (-15 -1489 ((-1226) |#1| (-1058 (-372)) (-621 (-256)))) (-15 -1489 ((-1226) |#1| (-1058 (-372)))) (-15 -1489 ((-1226) (-848 |#1|) (-1058 (-372)) (-621 (-256)))) (-15 -1489 ((-1226) (-848 |#1|) (-1058 (-372)))) (-15 -1489 ((-1227) (-850 |#1|) (-1058 (-372)) (-621 (-256)))) (-15 -1489 ((-1227) (-850 |#1|) (-1058 (-372)))) (-15 -1541 ((-1099 (-219)) (-850 |#1|) (-1058 (-372)) (-621 (-256)))) (-15 -1541 ((-1099 (-219)) (-850 |#1|) (-1058 (-372)))) (-15 -1489 ((-1227) |#1| (-1058 (-372)) (-1058 (-372)) (-621 (-256)))) (-15 -1489 ((-1227) |#1| (-1058 (-372)) (-1058 (-372)))) (-15 -1541 ((-1099 (-219)) |#1| (-1058 (-372)) (-1058 (-372)) (-621 (-256)))) (-15 -1541 ((-1099 (-219)) |#1| (-1058 (-372)) (-1058 (-372)))) (-15 -1489 ((-1227) (-853 |#1|) (-1058 (-372)) (-1058 (-372)) (-621 (-256)))) (-15 -1489 ((-1227) (-853 |#1|) (-1058 (-372)) (-1058 (-372)))) (-15 -1541 ((-1099 (-219)) (-853 |#1|) (-1058 (-372)) (-1058 (-372)) (-621 (-256)))) (-15 -1541 ((-1099 (-219)) (-853 |#1|) (-1058 (-372)) (-1058 (-372))))) (-13 (-594 (-525)) (-1066))) (T -252))
+((-1541 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-853 *5)) (-5 *4 (-1058 (-372))) (-4 *5 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1099 (-219))) (-5 *1 (-252 *5)))) (-1541 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-853 *6)) (-5 *4 (-1058 (-372))) (-5 *5 (-621 (-256))) (-4 *6 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1099 (-219))) (-5 *1 (-252 *6)))) (-1489 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-853 *5)) (-5 *4 (-1058 (-372))) (-4 *5 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1227)) (-5 *1 (-252 *5)))) (-1489 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-853 *6)) (-5 *4 (-1058 (-372))) (-5 *5 (-621 (-256))) (-4 *6 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1227)) (-5 *1 (-252 *6)))) (-1541 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1058 (-372))) (-5 *2 (-1099 (-219))) (-5 *1 (-252 *3)) (-4 *3 (-13 (-594 (-525)) (-1066))))) (-1541 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1058 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-252 *3)) (-4 *3 (-13 (-594 (-525)) (-1066))))) (-1489 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1058 (-372))) (-5 *2 (-1227)) (-5 *1 (-252 *3)) (-4 *3 (-13 (-594 (-525)) (-1066))))) (-1489 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1058 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-252 *3)) (-4 *3 (-13 (-594 (-525)) (-1066))))) (-1541 (*1 *2 *3 *4) (-12 (-5 *3 (-850 *5)) (-5 *4 (-1058 (-372))) (-4 *5 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1099 (-219))) (-5 *1 (-252 *5)))) (-1541 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-850 *6)) (-5 *4 (-1058 (-372))) (-5 *5 (-621 (-256))) (-4 *6 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1099 (-219))) (-5 *1 (-252 *6)))) (-1489 (*1 *2 *3 *4) (-12 (-5 *3 (-850 *5)) (-5 *4 (-1058 (-372))) (-4 *5 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1227)) (-5 *1 (-252 *5)))) (-1489 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-850 *6)) (-5 *4 (-1058 (-372))) (-5 *5 (-621 (-256))) (-4 *6 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1227)) (-5 *1 (-252 *6)))) (-1489 (*1 *2 *3 *4) (-12 (-5 *3 (-848 *5)) (-5 *4 (-1058 (-372))) (-4 *5 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1226)) (-5 *1 (-252 *5)))) (-1489 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-848 *6)) (-5 *4 (-1058 (-372))) (-5 *5 (-621 (-256))) (-4 *6 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1226)) (-5 *1 (-252 *6)))) (-1489 (*1 *2 *3 *4) (-12 (-5 *4 (-1058 (-372))) (-5 *2 (-1226)) (-5 *1 (-252 *3)) (-4 *3 (-13 (-594 (-525)) (-1066))))) (-1489 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1058 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1226)) (-5 *1 (-252 *3)) (-4 *3 (-13 (-594 (-525)) (-1066))))))
+(-10 -7 (-15 -1489 ((-1226) |#1| (-1058 (-372)) (-621 (-256)))) (-15 -1489 ((-1226) |#1| (-1058 (-372)))) (-15 -1489 ((-1226) (-848 |#1|) (-1058 (-372)) (-621 (-256)))) (-15 -1489 ((-1226) (-848 |#1|) (-1058 (-372)))) (-15 -1489 ((-1227) (-850 |#1|) (-1058 (-372)) (-621 (-256)))) (-15 -1489 ((-1227) (-850 |#1|) (-1058 (-372)))) (-15 -1541 ((-1099 (-219)) (-850 |#1|) (-1058 (-372)) (-621 (-256)))) (-15 -1541 ((-1099 (-219)) (-850 |#1|) (-1058 (-372)))) (-15 -1489 ((-1227) |#1| (-1058 (-372)) (-1058 (-372)) (-621 (-256)))) (-15 -1489 ((-1227) |#1| (-1058 (-372)) (-1058 (-372)))) (-15 -1541 ((-1099 (-219)) |#1| (-1058 (-372)) (-1058 (-372)) (-621 (-256)))) (-15 -1541 ((-1099 (-219)) |#1| (-1058 (-372)) (-1058 (-372)))) (-15 -1489 ((-1227) (-853 |#1|) (-1058 (-372)) (-1058 (-372)) (-621 (-256)))) (-15 -1489 ((-1227) (-853 |#1|) (-1058 (-372)) (-1058 (-372)))) (-15 -1541 ((-1099 (-219)) (-853 |#1|) (-1058 (-372)) (-1058 (-372)) (-621 (-256)))) (-15 -1541 ((-1099 (-219)) (-853 |#1|) (-1058 (-372)) (-1058 (-372)))))
+((-1489 (((-1227) (-621 (-219)) (-621 (-219)) (-621 (-219)) (-621 (-256))) 23) (((-1227) (-621 (-219)) (-621 (-219)) (-621 (-219))) 24) (((-1226) (-621 (-914 (-219))) (-621 (-256))) 16) (((-1226) (-621 (-914 (-219)))) 17) (((-1226) (-621 (-219)) (-621 (-219)) (-621 (-256))) 20) (((-1226) (-621 (-219)) (-621 (-219))) 21)))
+(((-253) (-10 -7 (-15 -1489 ((-1226) (-621 (-219)) (-621 (-219)))) (-15 -1489 ((-1226) (-621 (-219)) (-621 (-219)) (-621 (-256)))) (-15 -1489 ((-1226) (-621 (-914 (-219))))) (-15 -1489 ((-1226) (-621 (-914 (-219))) (-621 (-256)))) (-15 -1489 ((-1227) (-621 (-219)) (-621 (-219)) (-621 (-219)))) (-15 -1489 ((-1227) (-621 (-219)) (-621 (-219)) (-621 (-219)) (-621 (-256)))))) (T -253))
+((-1489 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-621 (-219))) (-5 *4 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-253)))) (-1489 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-621 (-219))) (-5 *2 (-1227)) (-5 *1 (-253)))) (-1489 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-914 (-219)))) (-5 *4 (-621 (-256))) (-5 *2 (-1226)) (-5 *1 (-253)))) (-1489 (*1 *2 *3) (-12 (-5 *3 (-621 (-914 (-219)))) (-5 *2 (-1226)) (-5 *1 (-253)))) (-1489 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-621 (-219))) (-5 *4 (-621 (-256))) (-5 *2 (-1226)) (-5 *1 (-253)))) (-1489 (*1 *2 *3 *3) (-12 (-5 *3 (-621 (-219))) (-5 *2 (-1226)) (-5 *1 (-253)))))
+(-10 -7 (-15 -1489 ((-1226) (-621 (-219)) (-621 (-219)))) (-15 -1489 ((-1226) (-621 (-219)) (-621 (-219)) (-621 (-256)))) (-15 -1489 ((-1226) (-621 (-914 (-219))))) (-15 -1489 ((-1226) (-621 (-914 (-219))) (-621 (-256)))) (-15 -1489 ((-1227) (-621 (-219)) (-621 (-219)) (-621 (-219)))) (-15 -1489 ((-1227) (-621 (-219)) (-621 (-219)) (-621 (-219)) (-621 (-256)))))
+((-2972 (((-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))) (-621 (-256)) (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)))) 26)) (-2890 (((-892) (-621 (-256)) (-892)) 53)) (-3137 (((-892) (-621 (-256)) (-892)) 52)) (-2034 (((-621 (-372)) (-621 (-256)) (-621 (-372))) 69)) (-2439 (((-372) (-621 (-256)) (-372)) 58)) (-4298 (((-892) (-621 (-256)) (-892)) 54)) (-1666 (((-112) (-621 (-256)) (-112)) 28)) (-1594 (((-1124) (-621 (-256)) (-1124)) 20)) (-3902 (((-1124) (-621 (-256)) (-1124)) 27)) (-1646 (((-1099 (-219)) (-621 (-256))) 47)) (-2467 (((-621 (-1060 (-372))) (-621 (-256)) (-621 (-1060 (-372)))) 41)) (-3081 (((-845) (-621 (-256)) (-845)) 33)) (-2847 (((-845) (-621 (-256)) (-845)) 34)) (-3006 (((-1 (-914 (-219)) (-914 (-219))) (-621 (-256)) (-1 (-914 (-219)) (-914 (-219)))) 64)) (-3283 (((-112) (-621 (-256)) (-112)) 16)) (-3118 (((-112) (-621 (-256)) (-112)) 15)))
+(((-254) (-10 -7 (-15 -3118 ((-112) (-621 (-256)) (-112))) (-15 -3283 ((-112) (-621 (-256)) (-112))) (-15 -2972 ((-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))) (-621 (-256)) (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))) (-15 -1594 ((-1124) (-621 (-256)) (-1124))) (-15 -3902 ((-1124) (-621 (-256)) (-1124))) (-15 -1666 ((-112) (-621 (-256)) (-112))) (-15 -3081 ((-845) (-621 (-256)) (-845))) (-15 -2847 ((-845) (-621 (-256)) (-845))) (-15 -2467 ((-621 (-1060 (-372))) (-621 (-256)) (-621 (-1060 (-372))))) (-15 -3137 ((-892) (-621 (-256)) (-892))) (-15 -2890 ((-892) (-621 (-256)) (-892))) (-15 -1646 ((-1099 (-219)) (-621 (-256)))) (-15 -4298 ((-892) (-621 (-256)) (-892))) (-15 -2439 ((-372) (-621 (-256)) (-372))) (-15 -3006 ((-1 (-914 (-219)) (-914 (-219))) (-621 (-256)) (-1 (-914 (-219)) (-914 (-219))))) (-15 -2034 ((-621 (-372)) (-621 (-256)) (-621 (-372)))))) (T -254))
+((-2034 (*1 *2 *3 *2) (-12 (-5 *2 (-621 (-372))) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-3006 (*1 *2 *3 *2) (-12 (-5 *2 (-1 (-914 (-219)) (-914 (-219)))) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-2439 (*1 *2 *3 *2) (-12 (-5 *2 (-372)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-4298 (*1 *2 *3 *2) (-12 (-5 *2 (-892)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-1646 (*1 *2 *3) (-12 (-5 *3 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-254)))) (-2890 (*1 *2 *3 *2) (-12 (-5 *2 (-892)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-3137 (*1 *2 *3 *2) (-12 (-5 *2 (-892)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-2467 (*1 *2 *3 *2) (-12 (-5 *2 (-621 (-1060 (-372)))) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-2847 (*1 *2 *3 *2) (-12 (-5 *2 (-845)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-3081 (*1 *2 *3 *2) (-12 (-5 *2 (-845)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-1666 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-3902 (*1 *2 *3 *2) (-12 (-5 *2 (-1124)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-1594 (*1 *2 *3 *2) (-12 (-5 *2 (-1124)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-2972 (*1 *2 *3 *2) (-12 (-5 *2 (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)))) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-3283 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))) (-3118 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))))
+(-10 -7 (-15 -3118 ((-112) (-621 (-256)) (-112))) (-15 -3283 ((-112) (-621 (-256)) (-112))) (-15 -2972 ((-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))) (-621 (-256)) (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))) (-15 -1594 ((-1124) (-621 (-256)) (-1124))) (-15 -3902 ((-1124) (-621 (-256)) (-1124))) (-15 -1666 ((-112) (-621 (-256)) (-112))) (-15 -3081 ((-845) (-621 (-256)) (-845))) (-15 -2847 ((-845) (-621 (-256)) (-845))) (-15 -2467 ((-621 (-1060 (-372))) (-621 (-256)) (-621 (-1060 (-372))))) (-15 -3137 ((-892) (-621 (-256)) (-892))) (-15 -2890 ((-892) (-621 (-256)) (-892))) (-15 -1646 ((-1099 (-219)) (-621 (-256)))) (-15 -4298 ((-892) (-621 (-256)) (-892))) (-15 -2439 ((-372) (-621 (-256)) (-372))) (-15 -3006 ((-1 (-914 (-219)) (-914 (-219))) (-621 (-256)) (-1 (-914 (-219)) (-914 (-219))))) (-15 -2034 ((-621 (-372)) (-621 (-256)) (-621 (-372)))))
+((-3509 (((-3 |#1| "failed") (-621 (-256)) (-1142)) 17)))
+(((-255 |#1|) (-10 -7 (-15 -3509 ((-3 |#1| "failed") (-621 (-256)) (-1142)))) (-1179)) (T -255))
+((-3509 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-621 (-256))) (-5 *4 (-1142)) (-5 *1 (-255 *2)) (-4 *2 (-1179)))))
+(-10 -7 (-15 -3509 ((-3 |#1| "failed") (-621 (-256)) (-1142))))
+((-3832 (((-112) $ $) NIL)) (-2972 (($ (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)))) 15)) (-2890 (($ (-892)) 76)) (-3137 (($ (-892)) 75)) (-1951 (($ (-621 (-372))) 82)) (-2439 (($ (-372)) 58)) (-4298 (($ (-892)) 77)) (-1666 (($ (-112)) 23)) (-1594 (($ (-1124)) 18)) (-3902 (($ (-1124)) 19)) (-1646 (($ (-1099 (-219))) 71)) (-2467 (($ (-621 (-1060 (-372)))) 67)) (-2811 (($ (-621 (-1060 (-372)))) 59) (($ (-621 (-1060 (-400 (-549))))) 66)) (-1307 (($ (-372)) 29) (($ (-845)) 33)) (-3708 (((-112) (-621 $) (-1142)) 91)) (-3509 (((-3 (-52) "failed") (-621 $) (-1142)) 93)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3878 (($ (-372)) 34) (($ (-845)) 35)) (-1981 (($ (-1 (-914 (-219)) (-914 (-219)))) 57)) (-3006 (($ (-1 (-914 (-219)) (-914 (-219)))) 78)) (-2525 (($ (-1 (-219) (-219))) 39) (($ (-1 (-219) (-219) (-219))) 43) (($ (-1 (-219) (-219) (-219) (-219))) 47)) (-3845 (((-834) $) 87)) (-4111 (($ (-112)) 24) (($ (-621 (-1060 (-372)))) 52)) (-3118 (($ (-112)) 25)) (-2387 (((-112) $ $) 89)))
+(((-256) (-13 (-1066) (-10 -8 (-15 -3118 ($ (-112))) (-15 -4111 ($ (-112))) (-15 -2972 ($ (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))) (-15 -1594 ($ (-1124))) (-15 -3902 ($ (-1124))) (-15 -1666 ($ (-112))) (-15 -4111 ($ (-621 (-1060 (-372))))) (-15 -1981 ($ (-1 (-914 (-219)) (-914 (-219))))) (-15 -1307 ($ (-372))) (-15 -1307 ($ (-845))) (-15 -3878 ($ (-372))) (-15 -3878 ($ (-845))) (-15 -2525 ($ (-1 (-219) (-219)))) (-15 -2525 ($ (-1 (-219) (-219) (-219)))) (-15 -2525 ($ (-1 (-219) (-219) (-219) (-219)))) (-15 -2439 ($ (-372))) (-15 -2811 ($ (-621 (-1060 (-372))))) (-15 -2811 ($ (-621 (-1060 (-400 (-549)))))) (-15 -2467 ($ (-621 (-1060 (-372))))) (-15 -1646 ($ (-1099 (-219)))) (-15 -3137 ($ (-892))) (-15 -2890 ($ (-892))) (-15 -4298 ($ (-892))) (-15 -3006 ($ (-1 (-914 (-219)) (-914 (-219))))) (-15 -1951 ($ (-621 (-372)))) (-15 -3509 ((-3 (-52) "failed") (-621 $) (-1142))) (-15 -3708 ((-112) (-621 $) (-1142)))))) (T -256))
+((-3118 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-256)))) (-4111 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-256)))) (-2972 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)))) (-5 *1 (-256)))) (-1594 (*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-256)))) (-3902 (*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-256)))) (-1666 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-256)))) (-4111 (*1 *1 *2) (-12 (-5 *2 (-621 (-1060 (-372)))) (-5 *1 (-256)))) (-1981 (*1 *1 *2) (-12 (-5 *2 (-1 (-914 (-219)) (-914 (-219)))) (-5 *1 (-256)))) (-1307 (*1 *1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-256)))) (-1307 (*1 *1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-256)))) (-3878 (*1 *1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-256)))) (-3878 (*1 *1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-256)))) (-2525 (*1 *1 *2) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *1 (-256)))) (-2525 (*1 *1 *2) (-12 (-5 *2 (-1 (-219) (-219) (-219))) (-5 *1 (-256)))) (-2525 (*1 *1 *2) (-12 (-5 *2 (-1 (-219) (-219) (-219) (-219))) (-5 *1 (-256)))) (-2439 (*1 *1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-256)))) (-2811 (*1 *1 *2) (-12 (-5 *2 (-621 (-1060 (-372)))) (-5 *1 (-256)))) (-2811 (*1 *1 *2) (-12 (-5 *2 (-621 (-1060 (-400 (-549))))) (-5 *1 (-256)))) (-2467 (*1 *1 *2) (-12 (-5 *2 (-621 (-1060 (-372)))) (-5 *1 (-256)))) (-1646 (*1 *1 *2) (-12 (-5 *2 (-1099 (-219))) (-5 *1 (-256)))) (-3137 (*1 *1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-256)))) (-2890 (*1 *1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-256)))) (-4298 (*1 *1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-256)))) (-3006 (*1 *1 *2) (-12 (-5 *2 (-1 (-914 (-219)) (-914 (-219)))) (-5 *1 (-256)))) (-1951 (*1 *1 *2) (-12 (-5 *2 (-621 (-372))) (-5 *1 (-256)))) (-3509 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-621 (-256))) (-5 *4 (-1142)) (-5 *2 (-52)) (-5 *1 (-256)))) (-3708 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-256))) (-5 *4 (-1142)) (-5 *2 (-112)) (-5 *1 (-256)))))
+(-13 (-1066) (-10 -8 (-15 -3118 ($ (-112))) (-15 -4111 ($ (-112))) (-15 -2972 ($ (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))) (-15 -1594 ($ (-1124))) (-15 -3902 ($ (-1124))) (-15 -1666 ($ (-112))) (-15 -4111 ($ (-621 (-1060 (-372))))) (-15 -1981 ($ (-1 (-914 (-219)) (-914 (-219))))) (-15 -1307 ($ (-372))) (-15 -1307 ($ (-845))) (-15 -3878 ($ (-372))) (-15 -3878 ($ (-845))) (-15 -2525 ($ (-1 (-219) (-219)))) (-15 -2525 ($ (-1 (-219) (-219) (-219)))) (-15 -2525 ($ (-1 (-219) (-219) (-219) (-219)))) (-15 -2439 ($ (-372))) (-15 -2811 ($ (-621 (-1060 (-372))))) (-15 -2811 ($ (-621 (-1060 (-400 (-549)))))) (-15 -2467 ($ (-621 (-1060 (-372))))) (-15 -1646 ($ (-1099 (-219)))) (-15 -3137 ($ (-892))) (-15 -2890 ($ (-892))) (-15 -4298 ($ (-892))) (-15 -3006 ($ (-1 (-914 (-219)) (-914 (-219))))) (-15 -1951 ($ (-621 (-372)))) (-15 -3509 ((-3 (-52) "failed") (-621 $) (-1142))) (-15 -3708 ((-112) (-621 $) (-1142)))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3066 (((-621 (-747)) $) NIL) (((-621 (-747)) $ |#2|) NIL)) (-1518 (((-747) $) NIL) (((-747) $ |#2|) NIL)) (-2270 (((-621 |#3|) $) NIL)) (-2082 (((-1138 $) $ |#3|) NIL) (((-1138 |#1|) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-2216 (((-747) $) NIL) (((-747) $ (-621 |#3|)) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-3239 (($ $) NIL (|has| |#1| (-444)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2703 (($ $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 |#3| "failed") $) NIL) (((-3 |#2| "failed") $) NIL) (((-3 (-1091 |#1| |#2|) "failed") $) 21)) (-2657 ((|#1| $) NIL) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) ((|#3| $) NIL) ((|#2| $) NIL) (((-1091 |#1| |#2|) $) NIL)) (-4114 (($ $ $ |#3|) NIL (|has| |#1| (-170)))) (-2068 (($ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3004 (($ $) NIL (|has| |#1| (-444))) (($ $ |#3|) NIL (|has| |#1| (-444)))) (-2056 (((-621 $) $) NIL)) (-1464 (((-112) $) NIL (|has| |#1| (-880)))) (-4064 (($ $ |#1| (-521 |#3|) $) NIL)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| |#1| (-857 (-372))) (|has| |#3| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| |#1| (-857 (-549))) (|has| |#3| (-857 (-549)))))) (-2729 (((-747) $ |#2|) NIL) (((-747) $) 10)) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) NIL)) (-2259 (($ (-1138 |#1|) |#3|) NIL) (($ (-1138 $) |#3|) NIL)) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-521 |#3|)) NIL) (($ $ |#3| (-747)) NIL) (($ $ (-621 |#3|) (-621 (-747))) NIL)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ |#3|) NIL)) (-2391 (((-521 |#3|) $) NIL) (((-747) $ |#3|) NIL) (((-621 (-747)) $ (-621 |#3|)) NIL)) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-3224 (($ (-1 (-521 |#3|) (-521 |#3|)) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-2205 (((-1 $ (-747)) |#2|) NIL) (((-1 $ (-747)) $) NIL (|has| |#1| (-227)))) (-2236 (((-3 |#3| "failed") $) NIL)) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-4051 ((|#3| $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-3441 (((-1124) $) NIL)) (-3104 (((-112) $) NIL)) (-4093 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-621 $) "failed") $) NIL)) (-1477 (((-3 (-2 (|:| |var| |#3|) (|:| -1714 (-747))) "failed") $) NIL)) (-2255 (($ $) NIL)) (-3988 (((-1086) $) NIL)) (-2001 (((-112) $) NIL)) (-2011 ((|#1| $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-444)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2119 (((-411 $) $) NIL (|has| |#1| (-880)))) (-2040 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-2684 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ |#3| |#1|) NIL) (($ $ (-621 |#3|) (-621 |#1|)) NIL) (($ $ |#3| $) NIL) (($ $ (-621 |#3|) (-621 $)) NIL) (($ $ |#2| $) NIL (|has| |#1| (-227))) (($ $ (-621 |#2|) (-621 $)) NIL (|has| |#1| (-227))) (($ $ |#2| |#1|) NIL (|has| |#1| (-227))) (($ $ (-621 |#2|) (-621 |#1|)) NIL (|has| |#1| (-227)))) (-2740 (($ $ |#3|) NIL (|has| |#1| (-170)))) (-3455 (($ $ |#3|) NIL) (($ $ (-621 |#3|)) NIL) (($ $ |#3| (-747)) NIL) (($ $ (-621 |#3|) (-621 (-747))) NIL) (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1640 (((-621 |#2|) $) NIL)) (-3977 (((-521 |#3|) $) NIL) (((-747) $ |#3|) NIL) (((-621 (-747)) $ (-621 |#3|)) NIL) (((-747) $ |#2|) NIL)) (-2843 (((-863 (-372)) $) NIL (-12 (|has| |#1| (-594 (-863 (-372)))) (|has| |#3| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| |#1| (-594 (-863 (-549)))) (|has| |#3| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| |#1| (-594 (-525))) (|has| |#3| (-594 (-525)))))) (-1700 ((|#1| $) NIL (|has| |#1| (-444))) (($ $ |#3|) NIL (|has| |#1| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) 24) (($ |#3|) 23) (($ |#2|) NIL) (($ (-1091 |#1| |#2|)) 30) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#1| (-541)))) (-2157 (((-621 |#1|) $) NIL)) (-4068 ((|#1| $ (-521 |#3|)) NIL) (($ $ |#3| (-747)) NIL) (($ $ (-621 |#3|) (-621 (-747))) NIL)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2371 (((-747)) NIL)) (-4046 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $ |#3|) NIL) (($ $ (-621 |#3|)) NIL) (($ $ |#3| (-747)) NIL) (($ $ (-621 |#3|) (-621 (-747))) NIL) (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-257 |#1| |#2| |#3|) (-13 (-246 |#1| |#2| |#3| (-521 |#3|)) (-1009 (-1091 |#1| |#2|))) (-1018) (-823) (-259 |#2|)) (T -257))
+NIL
+(-13 (-246 |#1| |#2| |#3| (-521 |#3|)) (-1009 (-1091 |#1| |#2|)))
+((-1518 (((-747) $) 30)) (-2712 (((-3 |#2| "failed") $) 17)) (-2657 ((|#2| $) 27)) (-3455 (($ $) 12) (($ $ (-747)) 15)) (-3845 (((-834) $) 26) (($ |#2|) 10)) (-2387 (((-112) $ $) 20)) (-2409 (((-112) $ $) 29)))
+(((-258 |#1| |#2|) (-10 -8 (-15 -3455 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1|)) (-15 -1518 ((-747) |#1|)) (-15 -2657 (|#2| |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -3845 (|#1| |#2|)) (-15 -2409 ((-112) |#1| |#1|)) (-15 -3845 ((-834) |#1|)) (-15 -2387 ((-112) |#1| |#1|))) (-259 |#2|) (-823)) (T -258))
+NIL
+(-10 -8 (-15 -3455 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1|)) (-15 -1518 ((-747) |#1|)) (-15 -2657 (|#2| |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -3845 (|#1| |#2|)) (-15 -2409 ((-112) |#1| |#1|)) (-15 -3845 ((-834) |#1|)) (-15 -2387 ((-112) |#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-1518 (((-747) $) 22)) (-3009 ((|#1| $) 23)) (-2712 (((-3 |#1| "failed") $) 27)) (-2657 ((|#1| $) 26)) (-2729 (((-747) $) 24)) (-2861 (($ $ $) 13)) (-3574 (($ $ $) 14)) (-2205 (($ |#1| (-747)) 25)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3455 (($ $) 21) (($ $ (-747)) 20)) (-3845 (((-834) $) 11) (($ |#1|) 28)) (-2447 (((-112) $ $) 16)) (-2423 (((-112) $ $) 17)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 15)) (-2409 (((-112) $ $) 18)))
(((-259 |#1|) (-138) (-823)) (T -259))
-((-3846 (*1 *1 *2) (-12 (-4 *1 (-259 *2)) (-4 *2 (-823)))) (-3040 (*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-259 *2)) (-4 *2 (-823)))) (-2088 (*1 *2 *1) (-12 (-4 *1 (-259 *3)) (-4 *3 (-823)) (-5 *2 (-747)))) (-3011 (*1 *2 *1) (-12 (-4 *1 (-259 *2)) (-4 *2 (-823)))) (-1637 (*1 *2 *1) (-12 (-4 *1 (-259 *3)) (-4 *3 (-823)) (-5 *2 (-747)))) (-3456 (*1 *1 *1) (-12 (-4 *1 (-259 *2)) (-4 *2 (-823)))) (-3456 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-259 *3)) (-4 *3 (-823)))))
-(-13 (-823) (-1009 |t#1|) (-10 -8 (-15 -3040 ($ |t#1| (-747))) (-15 -2088 ((-747) $)) (-15 -3011 (|t#1| $)) (-15 -1637 ((-747) $)) (-15 -3456 ($ $)) (-15 -3456 ($ $ (-747))) (-15 -3846 ($ |t#1|))))
-(((-101) . T) ((-593 (-834)) . T) ((-823) . T) ((-1009 |#1|) . T) ((-1067) . T))
-((-2272 (((-621 (-1143)) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) 41)) (-3304 (((-621 (-1143)) (-309 (-219)) (-747)) 80)) (-2592 (((-3 (-309 (-219)) "failed") (-309 (-219))) 51)) (-1540 (((-309 (-219)) (-309 (-219))) 67)) (-3437 (((-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219))))) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 26)) (-2867 (((-112) (-621 (-309 (-219)))) 84)) (-2984 (((-112) (-309 (-219))) 24)) (-2309 (((-621 (-1125)) (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))))) 106)) (-1617 (((-621 (-309 (-219))) (-621 (-309 (-219)))) 88)) (-1938 (((-621 (-309 (-219))) (-621 (-309 (-219)))) 86)) (-3319 (((-665 (-219)) (-621 (-309 (-219))) (-747)) 95)) (-2604 (((-112) (-309 (-219))) 20) (((-112) (-621 (-309 (-219)))) 85)) (-3900 (((-621 (-219)) (-621 (-816 (-219))) (-219)) 14)) (-2143 (((-372) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) 101)) (-1695 (((-1006) (-1143) (-1006)) 34)))
-(((-260) (-10 -7 (-15 -3900 ((-621 (-219)) (-621 (-816 (-219))) (-219))) (-15 -3437 ((-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219))))) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219))))))) (-15 -2592 ((-3 (-309 (-219)) "failed") (-309 (-219)))) (-15 -1540 ((-309 (-219)) (-309 (-219)))) (-15 -2867 ((-112) (-621 (-309 (-219))))) (-15 -2604 ((-112) (-621 (-309 (-219))))) (-15 -2604 ((-112) (-309 (-219)))) (-15 -3319 ((-665 (-219)) (-621 (-309 (-219))) (-747))) (-15 -1938 ((-621 (-309 (-219))) (-621 (-309 (-219))))) (-15 -1617 ((-621 (-309 (-219))) (-621 (-309 (-219))))) (-15 -2984 ((-112) (-309 (-219)))) (-15 -2272 ((-621 (-1143)) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))) (-15 -3304 ((-621 (-1143)) (-309 (-219)) (-747))) (-15 -1695 ((-1006) (-1143) (-1006))) (-15 -2143 ((-372) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))) (-15 -2309 ((-621 (-1125)) (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))))))) (T -260))
-((-2309 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))))) (-5 *2 (-621 (-1125))) (-5 *1 (-260)))) (-2143 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) (-5 *2 (-372)) (-5 *1 (-260)))) (-1695 (*1 *2 *3 *2) (-12 (-5 *2 (-1006)) (-5 *3 (-1143)) (-5 *1 (-260)))) (-3304 (*1 *2 *3 *4) (-12 (-5 *3 (-309 (-219))) (-5 *4 (-747)) (-5 *2 (-621 (-1143))) (-5 *1 (-260)))) (-2272 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) (-5 *2 (-621 (-1143))) (-5 *1 (-260)))) (-2984 (*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-112)) (-5 *1 (-260)))) (-1617 (*1 *2 *2) (-12 (-5 *2 (-621 (-309 (-219)))) (-5 *1 (-260)))) (-1938 (*1 *2 *2) (-12 (-5 *2 (-621 (-309 (-219)))) (-5 *1 (-260)))) (-3319 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-309 (-219)))) (-5 *4 (-747)) (-5 *2 (-665 (-219))) (-5 *1 (-260)))) (-2604 (*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-112)) (-5 *1 (-260)))) (-2604 (*1 *2 *3) (-12 (-5 *3 (-621 (-309 (-219)))) (-5 *2 (-112)) (-5 *1 (-260)))) (-2867 (*1 *2 *3) (-12 (-5 *3 (-621 (-309 (-219)))) (-5 *2 (-112)) (-5 *1 (-260)))) (-1540 (*1 *2 *2) (-12 (-5 *2 (-309 (-219))) (-5 *1 (-260)))) (-2592 (*1 *2 *2) (|partial| -12 (-5 *2 (-309 (-219))) (-5 *1 (-260)))) (-3437 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (-5 *1 (-260)))) (-3900 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-816 (-219)))) (-5 *4 (-219)) (-5 *2 (-621 *4)) (-5 *1 (-260)))))
-(-10 -7 (-15 -3900 ((-621 (-219)) (-621 (-816 (-219))) (-219))) (-15 -3437 ((-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219))))) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219))))))) (-15 -2592 ((-3 (-309 (-219)) "failed") (-309 (-219)))) (-15 -1540 ((-309 (-219)) (-309 (-219)))) (-15 -2867 ((-112) (-621 (-309 (-219))))) (-15 -2604 ((-112) (-621 (-309 (-219))))) (-15 -2604 ((-112) (-309 (-219)))) (-15 -3319 ((-665 (-219)) (-621 (-309 (-219))) (-747))) (-15 -1938 ((-621 (-309 (-219))) (-621 (-309 (-219))))) (-15 -1617 ((-621 (-309 (-219))) (-621 (-309 (-219))))) (-15 -2984 ((-112) (-309 (-219)))) (-15 -2272 ((-621 (-1143)) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))) (-15 -3304 ((-621 (-1143)) (-309 (-219)) (-747))) (-15 -1695 ((-1006) (-1143) (-1006))) (-15 -2143 ((-372) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))) (-15 -2309 ((-621 (-1125)) (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))))))
-((-3834 (((-112) $ $) NIL)) (-2850 (((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) NIL) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 44)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 26) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3845 (*1 *1 *2) (-12 (-4 *1 (-259 *2)) (-4 *2 (-823)))) (-2205 (*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-259 *2)) (-4 *2 (-823)))) (-2729 (*1 *2 *1) (-12 (-4 *1 (-259 *3)) (-4 *3 (-823)) (-5 *2 (-747)))) (-3009 (*1 *2 *1) (-12 (-4 *1 (-259 *2)) (-4 *2 (-823)))) (-1518 (*1 *2 *1) (-12 (-4 *1 (-259 *3)) (-4 *3 (-823)) (-5 *2 (-747)))) (-3455 (*1 *1 *1) (-12 (-4 *1 (-259 *2)) (-4 *2 (-823)))) (-3455 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-259 *3)) (-4 *3 (-823)))))
+(-13 (-823) (-1009 |t#1|) (-10 -8 (-15 -2205 ($ |t#1| (-747))) (-15 -2729 ((-747) $)) (-15 -3009 (|t#1| $)) (-15 -1518 ((-747) $)) (-15 -3455 ($ $)) (-15 -3455 ($ $ (-747))) (-15 -3845 ($ |t#1|))))
+(((-101) . T) ((-593 (-834)) . T) ((-823) . T) ((-1009 |#1|) . T) ((-1066) . T))
+((-2270 (((-621 (-1142)) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) 41)) (-3302 (((-621 (-1142)) (-309 (-219)) (-747)) 80)) (-3933 (((-3 (-309 (-219)) "failed") (-309 (-219))) 51)) (-2191 (((-309 (-219)) (-309 (-219))) 67)) (-2399 (((-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219))))) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 26)) (-3671 (((-112) (-621 (-309 (-219)))) 84)) (-2143 (((-112) (-309 (-219))) 24)) (-2785 (((-621 (-1124)) (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))))) 106)) (-3634 (((-621 (-309 (-219))) (-621 (-309 (-219)))) 88)) (-3860 (((-621 (-309 (-219))) (-621 (-309 (-219)))) 86)) (-4123 (((-665 (-219)) (-621 (-309 (-219))) (-747)) 95)) (-2203 (((-112) (-309 (-219))) 20) (((-112) (-621 (-309 (-219)))) 85)) (-2335 (((-621 (-219)) (-621 (-816 (-219))) (-219)) 14)) (-2574 (((-372) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) 101)) (-1631 (((-1006) (-1142) (-1006)) 34)))
+(((-260) (-10 -7 (-15 -2335 ((-621 (-219)) (-621 (-816 (-219))) (-219))) (-15 -2399 ((-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219))))) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219))))))) (-15 -3933 ((-3 (-309 (-219)) "failed") (-309 (-219)))) (-15 -2191 ((-309 (-219)) (-309 (-219)))) (-15 -3671 ((-112) (-621 (-309 (-219))))) (-15 -2203 ((-112) (-621 (-309 (-219))))) (-15 -2203 ((-112) (-309 (-219)))) (-15 -4123 ((-665 (-219)) (-621 (-309 (-219))) (-747))) (-15 -3860 ((-621 (-309 (-219))) (-621 (-309 (-219))))) (-15 -3634 ((-621 (-309 (-219))) (-621 (-309 (-219))))) (-15 -2143 ((-112) (-309 (-219)))) (-15 -2270 ((-621 (-1142)) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))) (-15 -3302 ((-621 (-1142)) (-309 (-219)) (-747))) (-15 -1631 ((-1006) (-1142) (-1006))) (-15 -2574 ((-372) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))) (-15 -2785 ((-621 (-1124)) (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))))))) (T -260))
+((-2785 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))))) (-5 *2 (-621 (-1124))) (-5 *1 (-260)))) (-2574 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) (-5 *2 (-372)) (-5 *1 (-260)))) (-1631 (*1 *2 *3 *2) (-12 (-5 *2 (-1006)) (-5 *3 (-1142)) (-5 *1 (-260)))) (-3302 (*1 *2 *3 *4) (-12 (-5 *3 (-309 (-219))) (-5 *4 (-747)) (-5 *2 (-621 (-1142))) (-5 *1 (-260)))) (-2270 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) (-5 *2 (-621 (-1142))) (-5 *1 (-260)))) (-2143 (*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-112)) (-5 *1 (-260)))) (-3634 (*1 *2 *2) (-12 (-5 *2 (-621 (-309 (-219)))) (-5 *1 (-260)))) (-3860 (*1 *2 *2) (-12 (-5 *2 (-621 (-309 (-219)))) (-5 *1 (-260)))) (-4123 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-309 (-219)))) (-5 *4 (-747)) (-5 *2 (-665 (-219))) (-5 *1 (-260)))) (-2203 (*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-112)) (-5 *1 (-260)))) (-2203 (*1 *2 *3) (-12 (-5 *3 (-621 (-309 (-219)))) (-5 *2 (-112)) (-5 *1 (-260)))) (-3671 (*1 *2 *3) (-12 (-5 *3 (-621 (-309 (-219)))) (-5 *2 (-112)) (-5 *1 (-260)))) (-2191 (*1 *2 *2) (-12 (-5 *2 (-309 (-219))) (-5 *1 (-260)))) (-3933 (*1 *2 *2) (|partial| -12 (-5 *2 (-309 (-219))) (-5 *1 (-260)))) (-2399 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (-5 *1 (-260)))) (-2335 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-816 (-219)))) (-5 *4 (-219)) (-5 *2 (-621 *4)) (-5 *1 (-260)))))
+(-10 -7 (-15 -2335 ((-621 (-219)) (-621 (-816 (-219))) (-219))) (-15 -2399 ((-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219))))) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219))))))) (-15 -3933 ((-3 (-309 (-219)) "failed") (-309 (-219)))) (-15 -2191 ((-309 (-219)) (-309 (-219)))) (-15 -3671 ((-112) (-621 (-309 (-219))))) (-15 -2203 ((-112) (-621 (-309 (-219))))) (-15 -2203 ((-112) (-309 (-219)))) (-15 -4123 ((-665 (-219)) (-621 (-309 (-219))) (-747))) (-15 -3860 ((-621 (-309 (-219))) (-621 (-309 (-219))))) (-15 -3634 ((-621 (-309 (-219))) (-621 (-309 (-219))))) (-15 -2143 ((-112) (-309 (-219)))) (-15 -2270 ((-621 (-1142)) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))) (-15 -3302 ((-621 (-1142)) (-309 (-219)) (-747))) (-15 -1631 ((-1006) (-1142) (-1006))) (-15 -2574 ((-372) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))) (-15 -2785 ((-621 (-1124)) (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))))))
+((-3832 (((-112) $ $) NIL)) (-1362 (((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) NIL) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 44)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 26) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-261) (-812)) (T -261))
NIL
(-812)
-((-3834 (((-112) $ $) NIL)) (-2850 (((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) 58) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 54)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 34) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) 36)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-1362 (((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) 58) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 54)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 34) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) 36)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-262) (-812)) (T -262))
NIL
(-812)
-((-3834 (((-112) $ $) NIL)) (-2850 (((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) 76) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 73)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 44) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) 55)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-1362 (((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) 76) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 73)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 44) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) 55)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-263) (-812)) (T -263))
NIL
(-812)
-((-3834 (((-112) $ $) NIL)) (-2850 (((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) NIL) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 50)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 31) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-1362 (((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) NIL) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 50)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 31) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-264) (-812)) (T -264))
NIL
(-812)
-((-3834 (((-112) $ $) NIL)) (-2850 (((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) NIL) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 50)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 28) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-1362 (((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) NIL) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 50)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 28) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-265) (-812)) (T -265))
NIL
(-812)
-((-3834 (((-112) $ $) NIL)) (-2850 (((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) NIL) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 73)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 28) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-1362 (((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) NIL) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 73)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 28) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-266) (-812)) (T -266))
NIL
(-812)
-((-3834 (((-112) $ $) NIL)) (-2850 (((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) NIL) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 77)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 25) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-2389 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-1362 (((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) NIL) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 77)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 25) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2387 (((-112) $ $) NIL)))
(((-267) (-812)) (T -267))
NIL
(-812)
-((-3834 (((-112) $ $) NIL)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3452 (((-621 (-549)) $) 19)) (-3701 (((-747) $) 17)) (-3846 (((-834) $) 23) (($ (-621 (-549))) 15)) (-3423 (($ (-747)) 20)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 9)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 11)))
-(((-268) (-13 (-823) (-10 -8 (-15 -3846 ($ (-621 (-549)))) (-15 -3701 ((-747) $)) (-15 -3452 ((-621 (-549)) $)) (-15 -3423 ($ (-747)))))) (T -268))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-268)))) (-3701 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-268)))) (-3452 (*1 *2 *1) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-268)))) (-3423 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-268)))))
-(-13 (-823) (-10 -8 (-15 -3846 ($ (-621 (-549)))) (-15 -3701 ((-747) $)) (-15 -3452 ((-621 (-549)) $)) (-15 -3423 ($ (-747)))))
-((-1664 ((|#2| |#2|) 77)) (-1512 ((|#2| |#2|) 65)) (-1407 (((-3 |#2| "failed") |#2| (-621 (-2 (|:| |func| |#2|) (|:| |pole| (-112))))) 116)) (-1640 ((|#2| |#2|) 75)) (-1486 ((|#2| |#2|) 63)) (-1685 ((|#2| |#2|) 79)) (-1539 ((|#2| |#2|) 67)) (-1425 ((|#2|) 46)) (-2834 (((-114) (-114)) 95)) (-3632 ((|#2| |#2|) 61)) (-1436 (((-112) |#2|) 134)) (-3968 ((|#2| |#2|) 181)) (-3821 ((|#2| |#2|) 157)) (-1964 ((|#2|) 59)) (-1623 ((|#2|) 58)) (-3378 ((|#2| |#2|) 177)) (-2583 ((|#2| |#2|) 153)) (-3669 ((|#2| |#2|) 185)) (-2535 ((|#2| |#2|) 161)) (-2925 ((|#2| |#2|) 149)) (-2939 ((|#2| |#2|) 151)) (-2002 ((|#2| |#2|) 187)) (-4233 ((|#2| |#2|) 163)) (-3613 ((|#2| |#2|) 183)) (-2059 ((|#2| |#2|) 159)) (-3120 ((|#2| |#2|) 179)) (-3390 ((|#2| |#2|) 155)) (-3687 ((|#2| |#2|) 193)) (-2111 ((|#2| |#2|) 169)) (-2451 ((|#2| |#2|) 189)) (-3051 ((|#2| |#2|) 165)) (-3555 ((|#2| |#2|) 197)) (-4262 ((|#2| |#2|) 173)) (-1427 ((|#2| |#2|) 199)) (-3519 ((|#2| |#2|) 175)) (-2461 ((|#2| |#2|) 195)) (-4256 ((|#2| |#2|) 171)) (-3633 ((|#2| |#2|) 191)) (-4277 ((|#2| |#2|) 167)) (-2719 ((|#2| |#2|) 62)) (-1698 ((|#2| |#2|) 80)) (-1552 ((|#2| |#2|) 68)) (-1675 ((|#2| |#2|) 78)) (-1526 ((|#2| |#2|) 66)) (-1651 ((|#2| |#2|) 76)) (-1501 ((|#2| |#2|) 64)) (-4285 (((-112) (-114)) 93)) (-1733 ((|#2| |#2|) 83)) (-1587 ((|#2| |#2|) 71)) (-1710 ((|#2| |#2|) 81)) (-1564 ((|#2| |#2|) 69)) (-1758 ((|#2| |#2|) 85)) (-1612 ((|#2| |#2|) 73)) (-1934 ((|#2| |#2|) 86)) (-1627 ((|#2| |#2|) 74)) (-1745 ((|#2| |#2|) 84)) (-1600 ((|#2| |#2|) 72)) (-1722 ((|#2| |#2|) 82)) (-1576 ((|#2| |#2|) 70)))
-(((-269 |#1| |#2|) (-10 -7 (-15 -2719 (|#2| |#2|)) (-15 -3632 (|#2| |#2|)) (-15 -1486 (|#2| |#2|)) (-15 -1501 (|#2| |#2|)) (-15 -1512 (|#2| |#2|)) (-15 -1526 (|#2| |#2|)) (-15 -1539 (|#2| |#2|)) (-15 -1552 (|#2| |#2|)) (-15 -1564 (|#2| |#2|)) (-15 -1576 (|#2| |#2|)) (-15 -1587 (|#2| |#2|)) (-15 -1600 (|#2| |#2|)) (-15 -1612 (|#2| |#2|)) (-15 -1627 (|#2| |#2|)) (-15 -1640 (|#2| |#2|)) (-15 -1651 (|#2| |#2|)) (-15 -1664 (|#2| |#2|)) (-15 -1675 (|#2| |#2|)) (-15 -1685 (|#2| |#2|)) (-15 -1698 (|#2| |#2|)) (-15 -1710 (|#2| |#2|)) (-15 -1722 (|#2| |#2|)) (-15 -1733 (|#2| |#2|)) (-15 -1745 (|#2| |#2|)) (-15 -1758 (|#2| |#2|)) (-15 -1934 (|#2| |#2|)) (-15 -1425 (|#2|)) (-15 -4285 ((-112) (-114))) (-15 -2834 ((-114) (-114))) (-15 -1623 (|#2|)) (-15 -1964 (|#2|)) (-15 -2939 (|#2| |#2|)) (-15 -2925 (|#2| |#2|)) (-15 -2583 (|#2| |#2|)) (-15 -3390 (|#2| |#2|)) (-15 -3821 (|#2| |#2|)) (-15 -2059 (|#2| |#2|)) (-15 -2535 (|#2| |#2|)) (-15 -4233 (|#2| |#2|)) (-15 -3051 (|#2| |#2|)) (-15 -4277 (|#2| |#2|)) (-15 -2111 (|#2| |#2|)) (-15 -4256 (|#2| |#2|)) (-15 -4262 (|#2| |#2|)) (-15 -3519 (|#2| |#2|)) (-15 -3378 (|#2| |#2|)) (-15 -3120 (|#2| |#2|)) (-15 -3968 (|#2| |#2|)) (-15 -3613 (|#2| |#2|)) (-15 -3669 (|#2| |#2|)) (-15 -2002 (|#2| |#2|)) (-15 -2451 (|#2| |#2|)) (-15 -3633 (|#2| |#2|)) (-15 -3687 (|#2| |#2|)) (-15 -2461 (|#2| |#2|)) (-15 -3555 (|#2| |#2|)) (-15 -1427 (|#2| |#2|)) (-15 -1407 ((-3 |#2| "failed") |#2| (-621 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -1436 ((-112) |#2|))) (-13 (-823) (-541)) (-13 (-423 |#1|) (-973))) (T -269))
-((-1436 (*1 *2 *3) (-12 (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112)) (-5 *1 (-269 *4 *3)) (-4 *3 (-13 (-423 *4) (-973))))) (-1407 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-621 (-2 (|:| |func| *2) (|:| |pole| (-112))))) (-4 *2 (-13 (-423 *4) (-973))) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-269 *4 *2)))) (-1427 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3555 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2461 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3687 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3633 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2451 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2002 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3669 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3613 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3968 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3120 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3378 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3519 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-4262 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-4256 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2111 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-4277 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3051 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-4233 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2535 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2059 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3821 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3390 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2583 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2925 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2939 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1964 (*1 *2) (-12 (-4 *2 (-13 (-423 *3) (-973))) (-5 *1 (-269 *3 *2)) (-4 *3 (-13 (-823) (-541))))) (-1623 (*1 *2) (-12 (-4 *2 (-13 (-423 *3) (-973))) (-5 *1 (-269 *3 *2)) (-4 *3 (-13 (-823) (-541))))) (-2834 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *4)) (-4 *4 (-13 (-423 *3) (-973))))) (-4285 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112)) (-5 *1 (-269 *4 *5)) (-4 *5 (-13 (-423 *4) (-973))))) (-1425 (*1 *2) (-12 (-4 *2 (-13 (-423 *3) (-973))) (-5 *1 (-269 *3 *2)) (-4 *3 (-13 (-823) (-541))))) (-1934 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1758 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1745 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1733 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1722 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1710 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1698 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1685 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1675 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1664 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1651 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1640 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1627 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1612 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1600 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1587 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1576 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1564 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1552 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1539 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1526 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1512 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1501 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1486 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3632 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2719 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))))
-(-10 -7 (-15 -2719 (|#2| |#2|)) (-15 -3632 (|#2| |#2|)) (-15 -1486 (|#2| |#2|)) (-15 -1501 (|#2| |#2|)) (-15 -1512 (|#2| |#2|)) (-15 -1526 (|#2| |#2|)) (-15 -1539 (|#2| |#2|)) (-15 -1552 (|#2| |#2|)) (-15 -1564 (|#2| |#2|)) (-15 -1576 (|#2| |#2|)) (-15 -1587 (|#2| |#2|)) (-15 -1600 (|#2| |#2|)) (-15 -1612 (|#2| |#2|)) (-15 -1627 (|#2| |#2|)) (-15 -1640 (|#2| |#2|)) (-15 -1651 (|#2| |#2|)) (-15 -1664 (|#2| |#2|)) (-15 -1675 (|#2| |#2|)) (-15 -1685 (|#2| |#2|)) (-15 -1698 (|#2| |#2|)) (-15 -1710 (|#2| |#2|)) (-15 -1722 (|#2| |#2|)) (-15 -1733 (|#2| |#2|)) (-15 -1745 (|#2| |#2|)) (-15 -1758 (|#2| |#2|)) (-15 -1934 (|#2| |#2|)) (-15 -1425 (|#2|)) (-15 -4285 ((-112) (-114))) (-15 -2834 ((-114) (-114))) (-15 -1623 (|#2|)) (-15 -1964 (|#2|)) (-15 -2939 (|#2| |#2|)) (-15 -2925 (|#2| |#2|)) (-15 -2583 (|#2| |#2|)) (-15 -3390 (|#2| |#2|)) (-15 -3821 (|#2| |#2|)) (-15 -2059 (|#2| |#2|)) (-15 -2535 (|#2| |#2|)) (-15 -4233 (|#2| |#2|)) (-15 -3051 (|#2| |#2|)) (-15 -4277 (|#2| |#2|)) (-15 -2111 (|#2| |#2|)) (-15 -4256 (|#2| |#2|)) (-15 -4262 (|#2| |#2|)) (-15 -3519 (|#2| |#2|)) (-15 -3378 (|#2| |#2|)) (-15 -3120 (|#2| |#2|)) (-15 -3968 (|#2| |#2|)) (-15 -3613 (|#2| |#2|)) (-15 -3669 (|#2| |#2|)) (-15 -2002 (|#2| |#2|)) (-15 -2451 (|#2| |#2|)) (-15 -3633 (|#2| |#2|)) (-15 -3687 (|#2| |#2|)) (-15 -2461 (|#2| |#2|)) (-15 -3555 (|#2| |#2|)) (-15 -1427 (|#2| |#2|)) (-15 -1407 ((-3 |#2| "failed") |#2| (-621 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -1436 ((-112) |#2|)))
-((-2933 (((-3 |#2| "failed") (-621 (-592 |#2|)) |#2| (-1143)) 135)) (-2805 ((|#2| (-400 (-549)) |#2|) 51)) (-1967 ((|#2| |#2| (-592 |#2|)) 128)) (-1703 (((-2 (|:| |func| |#2|) (|:| |kers| (-621 (-592 |#2|))) (|:| |vals| (-621 |#2|))) |#2| (-1143)) 127)) (-1730 ((|#2| |#2| (-1143)) 20) ((|#2| |#2|) 23)) (-1322 ((|#2| |#2| (-1143)) 141) ((|#2| |#2|) 139)))
-(((-270 |#1| |#2|) (-10 -7 (-15 -1322 (|#2| |#2|)) (-15 -1322 (|#2| |#2| (-1143))) (-15 -1703 ((-2 (|:| |func| |#2|) (|:| |kers| (-621 (-592 |#2|))) (|:| |vals| (-621 |#2|))) |#2| (-1143))) (-15 -1730 (|#2| |#2|)) (-15 -1730 (|#2| |#2| (-1143))) (-15 -2933 ((-3 |#2| "failed") (-621 (-592 |#2|)) |#2| (-1143))) (-15 -1967 (|#2| |#2| (-592 |#2|))) (-15 -2805 (|#2| (-400 (-549)) |#2|))) (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-27) (-1165) (-423 |#1|))) (T -270))
-((-2805 (*1 *2 *3 *2) (-12 (-5 *3 (-400 (-549))) (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-270 *4 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *4))))) (-1967 (*1 *2 *2 *3) (-12 (-5 *3 (-592 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *4))) (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-270 *4 *2)))) (-2933 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-621 (-592 *2))) (-5 *4 (-1143)) (-4 *2 (-13 (-27) (-1165) (-423 *5))) (-4 *5 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-270 *5 *2)))) (-1730 (*1 *2 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-270 *4 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *4))))) (-1730 (*1 *2 *2) (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-270 *3 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *3))))) (-1703 (*1 *2 *3 *4) (-12 (-5 *4 (-1143)) (-4 *5 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-2 (|:| |func| *3) (|:| |kers| (-621 (-592 *3))) (|:| |vals| (-621 *3)))) (-5 *1 (-270 *5 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5))))) (-1322 (*1 *2 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-270 *4 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *4))))) (-1322 (*1 *2 *2) (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-270 *3 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *3))))))
-(-10 -7 (-15 -1322 (|#2| |#2|)) (-15 -1322 (|#2| |#2| (-1143))) (-15 -1703 ((-2 (|:| |func| |#2|) (|:| |kers| (-621 (-592 |#2|))) (|:| |vals| (-621 |#2|))) |#2| (-1143))) (-15 -1730 (|#2| |#2|)) (-15 -1730 (|#2| |#2| (-1143))) (-15 -2933 ((-3 |#2| "failed") (-621 (-592 |#2|)) |#2| (-1143))) (-15 -1967 (|#2| |#2| (-592 |#2|))) (-15 -2805 (|#2| (-400 (-549)) |#2|)))
-((-1263 (((-3 |#3| "failed") |#3|) 110)) (-1664 ((|#3| |#3|) 131)) (-3164 (((-3 |#3| "failed") |#3|) 82)) (-1512 ((|#3| |#3|) 121)) (-2278 (((-3 |#3| "failed") |#3|) 58)) (-1640 ((|#3| |#3|) 129)) (-3310 (((-3 |#3| "failed") |#3|) 46)) (-1486 ((|#3| |#3|) 119)) (-2685 (((-3 |#3| "failed") |#3|) 112)) (-1685 ((|#3| |#3|) 133)) (-2141 (((-3 |#3| "failed") |#3|) 84)) (-1539 ((|#3| |#3|) 123)) (-2022 (((-3 |#3| "failed") |#3| (-747)) 36)) (-3284 (((-3 |#3| "failed") |#3|) 74)) (-3632 ((|#3| |#3|) 118)) (-1556 (((-3 |#3| "failed") |#3|) 44)) (-2719 ((|#3| |#3|) 117)) (-2426 (((-3 |#3| "failed") |#3|) 113)) (-1698 ((|#3| |#3|) 134)) (-2639 (((-3 |#3| "failed") |#3|) 85)) (-1552 ((|#3| |#3|) 124)) (-1736 (((-3 |#3| "failed") |#3|) 111)) (-1675 ((|#3| |#3|) 132)) (-2252 (((-3 |#3| "failed") |#3|) 83)) (-1526 ((|#3| |#3|) 122)) (-4178 (((-3 |#3| "failed") |#3|) 60)) (-1651 ((|#3| |#3|) 130)) (-3311 (((-3 |#3| "failed") |#3|) 48)) (-1501 ((|#3| |#3|) 120)) (-3696 (((-3 |#3| "failed") |#3|) 66)) (-1733 ((|#3| |#3|) 137)) (-1871 (((-3 |#3| "failed") |#3|) 104)) (-1587 ((|#3| |#3|) 142)) (-2540 (((-3 |#3| "failed") |#3|) 62)) (-1710 ((|#3| |#3|) 135)) (-1781 (((-3 |#3| "failed") |#3|) 50)) (-1564 ((|#3| |#3|) 125)) (-1528 (((-3 |#3| "failed") |#3|) 70)) (-1758 ((|#3| |#3|) 139)) (-2273 (((-3 |#3| "failed") |#3|) 54)) (-1612 ((|#3| |#3|) 127)) (-2376 (((-3 |#3| "failed") |#3|) 72)) (-1934 ((|#3| |#3|) 140)) (-4219 (((-3 |#3| "failed") |#3|) 56)) (-1627 ((|#3| |#3|) 128)) (-3943 (((-3 |#3| "failed") |#3|) 68)) (-1745 ((|#3| |#3|) 138)) (-3069 (((-3 |#3| "failed") |#3|) 107)) (-1600 ((|#3| |#3|) 143)) (-2767 (((-3 |#3| "failed") |#3|) 64)) (-1722 ((|#3| |#3|) 136)) (-1598 (((-3 |#3| "failed") |#3|) 52)) (-1576 ((|#3| |#3|) 126)) (** ((|#3| |#3| (-400 (-549))) 40 (|has| |#1| (-356)))))
-(((-271 |#1| |#2| |#3|) (-13 (-954 |#3|) (-10 -7 (IF (|has| |#1| (-356)) (-15 ** (|#3| |#3| (-400 (-549)))) |%noBranch|) (-15 -2719 (|#3| |#3|)) (-15 -3632 (|#3| |#3|)) (-15 -1486 (|#3| |#3|)) (-15 -1501 (|#3| |#3|)) (-15 -1512 (|#3| |#3|)) (-15 -1526 (|#3| |#3|)) (-15 -1539 (|#3| |#3|)) (-15 -1552 (|#3| |#3|)) (-15 -1564 (|#3| |#3|)) (-15 -1576 (|#3| |#3|)) (-15 -1587 (|#3| |#3|)) (-15 -1600 (|#3| |#3|)) (-15 -1612 (|#3| |#3|)) (-15 -1627 (|#3| |#3|)) (-15 -1640 (|#3| |#3|)) (-15 -1651 (|#3| |#3|)) (-15 -1664 (|#3| |#3|)) (-15 -1675 (|#3| |#3|)) (-15 -1685 (|#3| |#3|)) (-15 -1698 (|#3| |#3|)) (-15 -1710 (|#3| |#3|)) (-15 -1722 (|#3| |#3|)) (-15 -1733 (|#3| |#3|)) (-15 -1745 (|#3| |#3|)) (-15 -1758 (|#3| |#3|)) (-15 -1934 (|#3| |#3|)))) (-38 (-400 (-549))) (-1217 |#1|) (-1188 |#1| |#2|)) (T -271))
-((** (*1 *2 *2 *3) (-12 (-5 *3 (-400 (-549))) (-4 *4 (-356)) (-4 *4 (-38 *3)) (-4 *5 (-1217 *4)) (-5 *1 (-271 *4 *5 *2)) (-4 *2 (-1188 *4 *5)))) (-2719 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-3632 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1486 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1501 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1512 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1526 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1539 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1552 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1564 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1576 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1587 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1600 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1612 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1627 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1640 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1651 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1664 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1675 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1685 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1698 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1710 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1722 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1733 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1745 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1758 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))) (-1934 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4)))))
-(-13 (-954 |#3|) (-10 -7 (IF (|has| |#1| (-356)) (-15 ** (|#3| |#3| (-400 (-549)))) |%noBranch|) (-15 -2719 (|#3| |#3|)) (-15 -3632 (|#3| |#3|)) (-15 -1486 (|#3| |#3|)) (-15 -1501 (|#3| |#3|)) (-15 -1512 (|#3| |#3|)) (-15 -1526 (|#3| |#3|)) (-15 -1539 (|#3| |#3|)) (-15 -1552 (|#3| |#3|)) (-15 -1564 (|#3| |#3|)) (-15 -1576 (|#3| |#3|)) (-15 -1587 (|#3| |#3|)) (-15 -1600 (|#3| |#3|)) (-15 -1612 (|#3| |#3|)) (-15 -1627 (|#3| |#3|)) (-15 -1640 (|#3| |#3|)) (-15 -1651 (|#3| |#3|)) (-15 -1664 (|#3| |#3|)) (-15 -1675 (|#3| |#3|)) (-15 -1685 (|#3| |#3|)) (-15 -1698 (|#3| |#3|)) (-15 -1710 (|#3| |#3|)) (-15 -1722 (|#3| |#3|)) (-15 -1733 (|#3| |#3|)) (-15 -1745 (|#3| |#3|)) (-15 -1758 (|#3| |#3|)) (-15 -1934 (|#3| |#3|))))
-((-1263 (((-3 |#3| "failed") |#3|) 66)) (-1664 ((|#3| |#3|) 129)) (-3164 (((-3 |#3| "failed") |#3|) 50)) (-1512 ((|#3| |#3|) 117)) (-2278 (((-3 |#3| "failed") |#3|) 62)) (-1640 ((|#3| |#3|) 127)) (-3310 (((-3 |#3| "failed") |#3|) 46)) (-1486 ((|#3| |#3|) 115)) (-2685 (((-3 |#3| "failed") |#3|) 70)) (-1685 ((|#3| |#3|) 131)) (-2141 (((-3 |#3| "failed") |#3|) 54)) (-1539 ((|#3| |#3|) 119)) (-2022 (((-3 |#3| "failed") |#3| (-747)) 35)) (-3284 (((-3 |#3| "failed") |#3|) 44)) (-3632 ((|#3| |#3|) 104)) (-1556 (((-3 |#3| "failed") |#3|) 42)) (-2719 ((|#3| |#3|) 114)) (-2426 (((-3 |#3| "failed") |#3|) 72)) (-1698 ((|#3| |#3|) 132)) (-2639 (((-3 |#3| "failed") |#3|) 56)) (-1552 ((|#3| |#3|) 120)) (-1736 (((-3 |#3| "failed") |#3|) 68)) (-1675 ((|#3| |#3|) 130)) (-2252 (((-3 |#3| "failed") |#3|) 52)) (-1526 ((|#3| |#3|) 118)) (-4178 (((-3 |#3| "failed") |#3|) 64)) (-1651 ((|#3| |#3|) 128)) (-3311 (((-3 |#3| "failed") |#3|) 48)) (-1501 ((|#3| |#3|) 116)) (-3696 (((-3 |#3| "failed") |#3|) 74)) (-1733 ((|#3| |#3|) 135)) (-1871 (((-3 |#3| "failed") |#3|) 58)) (-1587 ((|#3| |#3|) 123)) (-2540 (((-3 |#3| "failed") |#3|) 105)) (-1710 ((|#3| |#3|) 133)) (-1781 (((-3 |#3| "failed") |#3|) 94)) (-1564 ((|#3| |#3|) 121)) (-1528 (((-3 |#3| "failed") |#3|) 109)) (-1758 ((|#3| |#3|) 137)) (-2273 (((-3 |#3| "failed") |#3|) 101)) (-1612 ((|#3| |#3|) 125)) (-2376 (((-3 |#3| "failed") |#3|) 110)) (-1934 ((|#3| |#3|) 138)) (-4219 (((-3 |#3| "failed") |#3|) 103)) (-1627 ((|#3| |#3|) 126)) (-3943 (((-3 |#3| "failed") |#3|) 76)) (-1745 ((|#3| |#3|) 136)) (-3069 (((-3 |#3| "failed") |#3|) 60)) (-1600 ((|#3| |#3|) 124)) (-2767 (((-3 |#3| "failed") |#3|) 106)) (-1722 ((|#3| |#3|) 134)) (-1598 (((-3 |#3| "failed") |#3|) 97)) (-1576 ((|#3| |#3|) 122)) (** ((|#3| |#3| (-400 (-549))) 40 (|has| |#1| (-356)))))
-(((-272 |#1| |#2| |#3| |#4|) (-13 (-954 |#3|) (-10 -7 (IF (|has| |#1| (-356)) (-15 ** (|#3| |#3| (-400 (-549)))) |%noBranch|) (-15 -2719 (|#3| |#3|)) (-15 -3632 (|#3| |#3|)) (-15 -1486 (|#3| |#3|)) (-15 -1501 (|#3| |#3|)) (-15 -1512 (|#3| |#3|)) (-15 -1526 (|#3| |#3|)) (-15 -1539 (|#3| |#3|)) (-15 -1552 (|#3| |#3|)) (-15 -1564 (|#3| |#3|)) (-15 -1576 (|#3| |#3|)) (-15 -1587 (|#3| |#3|)) (-15 -1600 (|#3| |#3|)) (-15 -1612 (|#3| |#3|)) (-15 -1627 (|#3| |#3|)) (-15 -1640 (|#3| |#3|)) (-15 -1651 (|#3| |#3|)) (-15 -1664 (|#3| |#3|)) (-15 -1675 (|#3| |#3|)) (-15 -1685 (|#3| |#3|)) (-15 -1698 (|#3| |#3|)) (-15 -1710 (|#3| |#3|)) (-15 -1722 (|#3| |#3|)) (-15 -1733 (|#3| |#3|)) (-15 -1745 (|#3| |#3|)) (-15 -1758 (|#3| |#3|)) (-15 -1934 (|#3| |#3|)))) (-38 (-400 (-549))) (-1186 |#1|) (-1209 |#1| |#2|) (-954 |#2|)) (T -272))
-((** (*1 *2 *2 *3) (-12 (-5 *3 (-400 (-549))) (-4 *4 (-356)) (-4 *4 (-38 *3)) (-4 *5 (-1186 *4)) (-5 *1 (-272 *4 *5 *2 *6)) (-4 *2 (-1209 *4 *5)) (-4 *6 (-954 *5)))) (-2719 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-3632 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1486 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1501 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1512 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1526 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1539 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1552 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1564 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1576 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1587 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1600 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1612 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1627 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1640 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1651 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1664 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1675 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1685 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1698 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1710 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1722 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1733 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1745 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1758 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))) (-1934 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4)))))
-(-13 (-954 |#3|) (-10 -7 (IF (|has| |#1| (-356)) (-15 ** (|#3| |#3| (-400 (-549)))) |%noBranch|) (-15 -2719 (|#3| |#3|)) (-15 -3632 (|#3| |#3|)) (-15 -1486 (|#3| |#3|)) (-15 -1501 (|#3| |#3|)) (-15 -1512 (|#3| |#3|)) (-15 -1526 (|#3| |#3|)) (-15 -1539 (|#3| |#3|)) (-15 -1552 (|#3| |#3|)) (-15 -1564 (|#3| |#3|)) (-15 -1576 (|#3| |#3|)) (-15 -1587 (|#3| |#3|)) (-15 -1600 (|#3| |#3|)) (-15 -1612 (|#3| |#3|)) (-15 -1627 (|#3| |#3|)) (-15 -1640 (|#3| |#3|)) (-15 -1651 (|#3| |#3|)) (-15 -1664 (|#3| |#3|)) (-15 -1675 (|#3| |#3|)) (-15 -1685 (|#3| |#3|)) (-15 -1698 (|#3| |#3|)) (-15 -1710 (|#3| |#3|)) (-15 -1722 (|#3| |#3|)) (-15 -1733 (|#3| |#3|)) (-15 -1745 (|#3| |#3|)) (-15 -1758 (|#3| |#3|)) (-15 -1934 (|#3| |#3|))))
-((-1945 (((-112) $) 19)) (-3110 (((-181) $) 7)) (-1783 (((-3 (-1143) "failed") $) 14)) (-4284 (((-3 (-621 $) "failed") $) NIL)) (-3888 (((-3 (-1143) "failed") $) 21)) (-3505 (((-3 (-1071) "failed") $) 17)) (-2645 (((-112) $) 15)) (-3846 (((-834) $) NIL)) (-1602 (((-112) $) 9)))
-(((-273) (-13 (-593 (-834)) (-10 -8 (-15 -3110 ((-181) $)) (-15 -2645 ((-112) $)) (-15 -3505 ((-3 (-1071) "failed") $)) (-15 -1945 ((-112) $)) (-15 -3888 ((-3 (-1143) "failed") $)) (-15 -1602 ((-112) $)) (-15 -1783 ((-3 (-1143) "failed") $)) (-15 -4284 ((-3 (-621 $) "failed") $))))) (T -273))
-((-3110 (*1 *2 *1) (-12 (-5 *2 (-181)) (-5 *1 (-273)))) (-2645 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-273)))) (-3505 (*1 *2 *1) (|partial| -12 (-5 *2 (-1071)) (-5 *1 (-273)))) (-1945 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-273)))) (-3888 (*1 *2 *1) (|partial| -12 (-5 *2 (-1143)) (-5 *1 (-273)))) (-1602 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-273)))) (-1783 (*1 *2 *1) (|partial| -12 (-5 *2 (-1143)) (-5 *1 (-273)))) (-4284 (*1 *2 *1) (|partial| -12 (-5 *2 (-621 (-273))) (-5 *1 (-273)))))
-(-13 (-593 (-834)) (-10 -8 (-15 -3110 ((-181) $)) (-15 -2645 ((-112) $)) (-15 -3505 ((-3 (-1071) "failed") $)) (-15 -1945 ((-112) $)) (-15 -3888 ((-3 (-1143) "failed") $)) (-15 -1602 ((-112) $)) (-15 -1783 ((-3 (-1143) "failed") $)) (-15 -4284 ((-3 (-621 $) "failed") $))))
-((-1489 (($ (-1 (-112) |#2|) $) 24)) (-3676 (($ $) 36)) (-2129 (($ (-1 (-112) |#2|) $) NIL) (($ |#2| $) 34)) (-3812 (($ |#2| $) 32) (($ (-1 (-112) |#2|) $) 18)) (-1303 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 40)) (-2616 (($ |#2| $ (-549)) 20) (($ $ $ (-549)) 22)) (-2167 (($ $ (-549)) 11) (($ $ (-1193 (-549))) 14)) (-3196 (($ $ |#2|) 30) (($ $ $) NIL)) (-1952 (($ $ |#2|) 29) (($ |#2| $) NIL) (($ $ $) 26) (($ (-621 $)) NIL)))
-(((-274 |#1| |#2|) (-10 -8 (-15 -1303 (|#1| |#1| |#1|)) (-15 -2129 (|#1| |#2| |#1|)) (-15 -1303 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2129 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3196 (|#1| |#1| |#1|)) (-15 -3196 (|#1| |#1| |#2|)) (-15 -2616 (|#1| |#1| |#1| (-549))) (-15 -2616 (|#1| |#2| |#1| (-549))) (-15 -2167 (|#1| |#1| (-1193 (-549)))) (-15 -2167 (|#1| |#1| (-549))) (-15 -1952 (|#1| (-621 |#1|))) (-15 -1952 (|#1| |#1| |#1|)) (-15 -1952 (|#1| |#2| |#1|)) (-15 -1952 (|#1| |#1| |#2|)) (-15 -3812 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1489 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3812 (|#1| |#2| |#1|)) (-15 -3676 (|#1| |#1|))) (-275 |#2|) (-1180)) (T -274))
-NIL
-(-10 -8 (-15 -1303 (|#1| |#1| |#1|)) (-15 -2129 (|#1| |#2| |#1|)) (-15 -1303 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2129 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3196 (|#1| |#1| |#1|)) (-15 -3196 (|#1| |#1| |#2|)) (-15 -2616 (|#1| |#1| |#1| (-549))) (-15 -2616 (|#1| |#2| |#1| (-549))) (-15 -2167 (|#1| |#1| (-1193 (-549)))) (-15 -2167 (|#1| |#1| (-549))) (-15 -1952 (|#1| (-621 |#1|))) (-15 -1952 (|#1| |#1| |#1|)) (-15 -1952 (|#1| |#2| |#1|)) (-15 -1952 (|#1| |#1| |#2|)) (-15 -3812 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1489 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3812 (|#1| |#2| |#1|)) (-15 -3676 (|#1| |#1|)))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-1535 (((-1231) $ (-549) (-549)) 40 (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) 8)) (-2254 ((|#1| $ (-549) |#1|) 52 (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) 58 (|has| $ (-6 -4338)))) (-1717 (($ (-1 (-112) |#1|) $) 85)) (-1489 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4337)))) (-1682 (($) 7 T CONST)) (-3745 (($ $) 83 (|has| |#1| (-1067)))) (-3676 (($ $) 78 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2129 (($ (-1 (-112) |#1|) $) 89) (($ |#1| $) 84 (|has| |#1| (-1067)))) (-3812 (($ |#1| $) 77 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4337)))) (-1879 ((|#1| $ (-549) |#1|) 53 (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) 51)) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3743 (($ (-747) |#1|) 69)) (-3194 (((-112) $ (-747)) 9)) (-4031 (((-549) $) 43 (|has| (-549) (-823)))) (-1303 (($ (-1 (-112) |#1| |#1|) $ $) 86) (($ $ $) 82 (|has| |#1| (-823)))) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1569 (((-549) $) 44 (|has| (-549) (-823)))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-2751 (($ |#1| $ (-549)) 88) (($ $ $ (-549)) 87)) (-2616 (($ |#1| $ (-549)) 60) (($ $ $ (-549)) 59)) (-3303 (((-621 (-549)) $) 46)) (-3761 (((-112) (-549) $) 47)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-3646 ((|#1| $) 42 (|has| (-549) (-823)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-1642 (($ $ |#1|) 41 (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-2265 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) 48)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#1| $ (-549) |#1|) 50) ((|#1| $ (-549)) 49) (($ $ (-1193 (-549))) 63)) (-3531 (($ $ (-549)) 91) (($ $ (-1193 (-549))) 90)) (-2167 (($ $ (-549)) 62) (($ $ (-1193 (-549))) 61)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-2845 (((-525) $) 79 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 70)) (-3196 (($ $ |#1|) 93) (($ $ $) 92)) (-1952 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-621 $)) 65)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-275 |#1|) (-138) (-1180)) (T -275))
-((-3196 (*1 *1 *1 *2) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1180)))) (-3196 (*1 *1 *1 *1) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1180)))) (-3531 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-275 *3)) (-4 *3 (-1180)))) (-3531 (*1 *1 *1 *2) (-12 (-5 *2 (-1193 (-549))) (-4 *1 (-275 *3)) (-4 *3 (-1180)))) (-2129 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-275 *3)) (-4 *3 (-1180)))) (-2751 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-275 *2)) (-4 *2 (-1180)))) (-2751 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-275 *3)) (-4 *3 (-1180)))) (-1303 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-275 *3)) (-4 *3 (-1180)))) (-1717 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-275 *3)) (-4 *3 (-1180)))) (-2129 (*1 *1 *2 *1) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1180)) (-4 *2 (-1067)))) (-3745 (*1 *1 *1) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1180)) (-4 *2 (-1067)))) (-1303 (*1 *1 *1 *1) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1180)) (-4 *2 (-823)))))
-(-13 (-627 |t#1|) (-10 -8 (-6 -4338) (-15 -3196 ($ $ |t#1|)) (-15 -3196 ($ $ $)) (-15 -3531 ($ $ (-549))) (-15 -3531 ($ $ (-1193 (-549)))) (-15 -2129 ($ (-1 (-112) |t#1|) $)) (-15 -2751 ($ |t#1| $ (-549))) (-15 -2751 ($ $ $ (-549))) (-15 -1303 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -1717 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1067)) (PROGN (-15 -2129 ($ |t#1| $)) (-15 -3745 ($ $))) |%noBranch|) (IF (|has| |t#1| (-823)) (-15 -1303 ($ $ $)) |%noBranch|)))
-(((-34) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-627 |#1|) . T) ((-1067) |has| |#1| (-1067)) ((-1180) . T))
+((-3832 (((-112) $ $) NIL)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3990 (((-621 (-549)) $) 19)) (-3977 (((-747) $) 17)) (-3845 (((-834) $) 23) (($ (-621 (-549))) 15)) (-3810 (($ (-747)) 20)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 9)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 11)))
+(((-268) (-13 (-823) (-10 -8 (-15 -3845 ($ (-621 (-549)))) (-15 -3977 ((-747) $)) (-15 -3990 ((-621 (-549)) $)) (-15 -3810 ($ (-747)))))) (T -268))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-268)))) (-3977 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-268)))) (-3990 (*1 *2 *1) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-268)))) (-3810 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-268)))))
+(-13 (-823) (-10 -8 (-15 -3845 ($ (-621 (-549)))) (-15 -3977 ((-747) $)) (-15 -3990 ((-621 (-549)) $)) (-15 -3810 ($ (-747)))))
+((-1662 ((|#2| |#2|) 77)) (-1510 ((|#2| |#2|) 65)) (-2921 (((-3 |#2| "failed") |#2| (-621 (-2 (|:| |func| |#2|) (|:| |pole| (-112))))) 116)) (-1638 ((|#2| |#2|) 75)) (-1483 ((|#2| |#2|) 63)) (-1684 ((|#2| |#2|) 79)) (-1538 ((|#2| |#2|) 67)) (-1425 ((|#2|) 46)) (-3500 (((-114) (-114)) 95)) (-3631 ((|#2| |#2|) 61)) (-3350 (((-112) |#2|) 134)) (-3353 ((|#2| |#2|) 181)) (-2362 ((|#2| |#2|) 157)) (-3352 ((|#2|) 59)) (-2957 ((|#2|) 58)) (-4311 ((|#2| |#2|) 177)) (-2632 ((|#2| |#2|) 153)) (-2531 ((|#2| |#2|) 185)) (-1747 ((|#2| |#2|) 161)) (-2147 ((|#2| |#2|) 149)) (-3344 ((|#2| |#2|) 151)) (-2529 ((|#2| |#2|) 187)) (-2160 ((|#2| |#2|) 163)) (-2616 ((|#2| |#2|) 183)) (-4221 ((|#2| |#2|) 159)) (-2421 ((|#2| |#2|) 179)) (-2873 ((|#2| |#2|) 155)) (-1622 ((|#2| |#2|) 193)) (-2206 ((|#2| |#2|) 169)) (-2806 ((|#2| |#2|) 189)) (-1693 ((|#2| |#2|) 165)) (-3769 ((|#2| |#2|) 197)) (-1885 ((|#2| |#2|) 173)) (-1995 ((|#2| |#2|) 199)) (-3460 ((|#2| |#2|) 175)) (-1422 ((|#2| |#2|) 195)) (-2840 ((|#2| |#2|) 171)) (-2621 ((|#2| |#2|) 191)) (-2865 ((|#2| |#2|) 167)) (-2717 ((|#2| |#2|) 62)) (-1696 ((|#2| |#2|) 80)) (-1551 ((|#2| |#2|) 68)) (-1673 ((|#2| |#2|) 78)) (-1525 ((|#2| |#2|) 66)) (-1648 ((|#2| |#2|) 76)) (-1500 ((|#2| |#2|) 64)) (-2444 (((-112) (-114)) 93)) (-1731 ((|#2| |#2|) 83)) (-1585 ((|#2| |#2|) 71)) (-1708 ((|#2| |#2|) 81)) (-1562 ((|#2| |#2|) 69)) (-1753 ((|#2| |#2|) 85)) (-1611 ((|#2| |#2|) 73)) (-1932 ((|#2| |#2|) 86)) (-1625 ((|#2| |#2|) 74)) (-1743 ((|#2| |#2|) 84)) (-1598 ((|#2| |#2|) 72)) (-1719 ((|#2| |#2|) 82)) (-1575 ((|#2| |#2|) 70)))
+(((-269 |#1| |#2|) (-10 -7 (-15 -2717 (|#2| |#2|)) (-15 -3631 (|#2| |#2|)) (-15 -1483 (|#2| |#2|)) (-15 -1500 (|#2| |#2|)) (-15 -1510 (|#2| |#2|)) (-15 -1525 (|#2| |#2|)) (-15 -1538 (|#2| |#2|)) (-15 -1551 (|#2| |#2|)) (-15 -1562 (|#2| |#2|)) (-15 -1575 (|#2| |#2|)) (-15 -1585 (|#2| |#2|)) (-15 -1598 (|#2| |#2|)) (-15 -1611 (|#2| |#2|)) (-15 -1625 (|#2| |#2|)) (-15 -1638 (|#2| |#2|)) (-15 -1648 (|#2| |#2|)) (-15 -1662 (|#2| |#2|)) (-15 -1673 (|#2| |#2|)) (-15 -1684 (|#2| |#2|)) (-15 -1696 (|#2| |#2|)) (-15 -1708 (|#2| |#2|)) (-15 -1719 (|#2| |#2|)) (-15 -1731 (|#2| |#2|)) (-15 -1743 (|#2| |#2|)) (-15 -1753 (|#2| |#2|)) (-15 -1932 (|#2| |#2|)) (-15 -1425 (|#2|)) (-15 -2444 ((-112) (-114))) (-15 -3500 ((-114) (-114))) (-15 -2957 (|#2|)) (-15 -3352 (|#2|)) (-15 -3344 (|#2| |#2|)) (-15 -2147 (|#2| |#2|)) (-15 -2632 (|#2| |#2|)) (-15 -2873 (|#2| |#2|)) (-15 -2362 (|#2| |#2|)) (-15 -4221 (|#2| |#2|)) (-15 -1747 (|#2| |#2|)) (-15 -2160 (|#2| |#2|)) (-15 -1693 (|#2| |#2|)) (-15 -2865 (|#2| |#2|)) (-15 -2206 (|#2| |#2|)) (-15 -2840 (|#2| |#2|)) (-15 -1885 (|#2| |#2|)) (-15 -3460 (|#2| |#2|)) (-15 -4311 (|#2| |#2|)) (-15 -2421 (|#2| |#2|)) (-15 -3353 (|#2| |#2|)) (-15 -2616 (|#2| |#2|)) (-15 -2531 (|#2| |#2|)) (-15 -2529 (|#2| |#2|)) (-15 -2806 (|#2| |#2|)) (-15 -2621 (|#2| |#2|)) (-15 -1622 (|#2| |#2|)) (-15 -1422 (|#2| |#2|)) (-15 -3769 (|#2| |#2|)) (-15 -1995 (|#2| |#2|)) (-15 -2921 ((-3 |#2| "failed") |#2| (-621 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -3350 ((-112) |#2|))) (-13 (-823) (-541)) (-13 (-423 |#1|) (-973))) (T -269))
+((-3350 (*1 *2 *3) (-12 (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112)) (-5 *1 (-269 *4 *3)) (-4 *3 (-13 (-423 *4) (-973))))) (-2921 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-621 (-2 (|:| |func| *2) (|:| |pole| (-112))))) (-4 *2 (-13 (-423 *4) (-973))) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-269 *4 *2)))) (-1995 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3769 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1422 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1622 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2621 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2806 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2529 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2531 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2616 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3353 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2421 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-4311 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3460 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1885 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2840 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2206 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2865 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1693 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2160 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1747 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-4221 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2362 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2873 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2632 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2147 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3344 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3352 (*1 *2) (-12 (-4 *2 (-13 (-423 *3) (-973))) (-5 *1 (-269 *3 *2)) (-4 *3 (-13 (-823) (-541))))) (-2957 (*1 *2) (-12 (-4 *2 (-13 (-423 *3) (-973))) (-5 *1 (-269 *3 *2)) (-4 *3 (-13 (-823) (-541))))) (-3500 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *4)) (-4 *4 (-13 (-423 *3) (-973))))) (-2444 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112)) (-5 *1 (-269 *4 *5)) (-4 *5 (-13 (-423 *4) (-973))))) (-1425 (*1 *2) (-12 (-4 *2 (-13 (-423 *3) (-973))) (-5 *1 (-269 *3 *2)) (-4 *3 (-13 (-823) (-541))))) (-1932 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1753 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1743 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1731 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1719 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1708 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1696 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1684 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1673 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1662 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1648 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1638 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1625 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1611 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1598 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1585 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1575 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1562 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1551 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1538 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1525 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1510 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1500 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-1483 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-3631 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))) (-2717 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2)) (-4 *2 (-13 (-423 *3) (-973))))))
+(-10 -7 (-15 -2717 (|#2| |#2|)) (-15 -3631 (|#2| |#2|)) (-15 -1483 (|#2| |#2|)) (-15 -1500 (|#2| |#2|)) (-15 -1510 (|#2| |#2|)) (-15 -1525 (|#2| |#2|)) (-15 -1538 (|#2| |#2|)) (-15 -1551 (|#2| |#2|)) (-15 -1562 (|#2| |#2|)) (-15 -1575 (|#2| |#2|)) (-15 -1585 (|#2| |#2|)) (-15 -1598 (|#2| |#2|)) (-15 -1611 (|#2| |#2|)) (-15 -1625 (|#2| |#2|)) (-15 -1638 (|#2| |#2|)) (-15 -1648 (|#2| |#2|)) (-15 -1662 (|#2| |#2|)) (-15 -1673 (|#2| |#2|)) (-15 -1684 (|#2| |#2|)) (-15 -1696 (|#2| |#2|)) (-15 -1708 (|#2| |#2|)) (-15 -1719 (|#2| |#2|)) (-15 -1731 (|#2| |#2|)) (-15 -1743 (|#2| |#2|)) (-15 -1753 (|#2| |#2|)) (-15 -1932 (|#2| |#2|)) (-15 -1425 (|#2|)) (-15 -2444 ((-112) (-114))) (-15 -3500 ((-114) (-114))) (-15 -2957 (|#2|)) (-15 -3352 (|#2|)) (-15 -3344 (|#2| |#2|)) (-15 -2147 (|#2| |#2|)) (-15 -2632 (|#2| |#2|)) (-15 -2873 (|#2| |#2|)) (-15 -2362 (|#2| |#2|)) (-15 -4221 (|#2| |#2|)) (-15 -1747 (|#2| |#2|)) (-15 -2160 (|#2| |#2|)) (-15 -1693 (|#2| |#2|)) (-15 -2865 (|#2| |#2|)) (-15 -2206 (|#2| |#2|)) (-15 -2840 (|#2| |#2|)) (-15 -1885 (|#2| |#2|)) (-15 -3460 (|#2| |#2|)) (-15 -4311 (|#2| |#2|)) (-15 -2421 (|#2| |#2|)) (-15 -3353 (|#2| |#2|)) (-15 -2616 (|#2| |#2|)) (-15 -2531 (|#2| |#2|)) (-15 -2529 (|#2| |#2|)) (-15 -2806 (|#2| |#2|)) (-15 -2621 (|#2| |#2|)) (-15 -1622 (|#2| |#2|)) (-15 -1422 (|#2| |#2|)) (-15 -3769 (|#2| |#2|)) (-15 -1995 (|#2| |#2|)) (-15 -2921 ((-3 |#2| "failed") |#2| (-621 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -3350 ((-112) |#2|)))
+((-3899 (((-3 |#2| "failed") (-621 (-592 |#2|)) |#2| (-1142)) 135)) (-3293 ((|#2| (-400 (-549)) |#2|) 51)) (-2433 ((|#2| |#2| (-592 |#2|)) 128)) (-4058 (((-2 (|:| |func| |#2|) (|:| |kers| (-621 (-592 |#2|))) (|:| |vals| (-621 |#2|))) |#2| (-1142)) 127)) (-2485 ((|#2| |#2| (-1142)) 20) ((|#2| |#2|) 23)) (-4190 ((|#2| |#2| (-1142)) 141) ((|#2| |#2|) 139)))
+(((-270 |#1| |#2|) (-10 -7 (-15 -4190 (|#2| |#2|)) (-15 -4190 (|#2| |#2| (-1142))) (-15 -4058 ((-2 (|:| |func| |#2|) (|:| |kers| (-621 (-592 |#2|))) (|:| |vals| (-621 |#2|))) |#2| (-1142))) (-15 -2485 (|#2| |#2|)) (-15 -2485 (|#2| |#2| (-1142))) (-15 -3899 ((-3 |#2| "failed") (-621 (-592 |#2|)) |#2| (-1142))) (-15 -2433 (|#2| |#2| (-592 |#2|))) (-15 -3293 (|#2| (-400 (-549)) |#2|))) (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-27) (-1164) (-423 |#1|))) (T -270))
+((-3293 (*1 *2 *3 *2) (-12 (-5 *3 (-400 (-549))) (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-270 *4 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *4))))) (-2433 (*1 *2 *2 *3) (-12 (-5 *3 (-592 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *4))) (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-270 *4 *2)))) (-3899 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-621 (-592 *2))) (-5 *4 (-1142)) (-4 *2 (-13 (-27) (-1164) (-423 *5))) (-4 *5 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-270 *5 *2)))) (-2485 (*1 *2 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-270 *4 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *4))))) (-2485 (*1 *2 *2) (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-270 *3 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *3))))) (-4058 (*1 *2 *3 *4) (-12 (-5 *4 (-1142)) (-4 *5 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-2 (|:| |func| *3) (|:| |kers| (-621 (-592 *3))) (|:| |vals| (-621 *3)))) (-5 *1 (-270 *5 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5))))) (-4190 (*1 *2 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-270 *4 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *4))))) (-4190 (*1 *2 *2) (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-270 *3 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *3))))))
+(-10 -7 (-15 -4190 (|#2| |#2|)) (-15 -4190 (|#2| |#2| (-1142))) (-15 -4058 ((-2 (|:| |func| |#2|) (|:| |kers| (-621 (-592 |#2|))) (|:| |vals| (-621 |#2|))) |#2| (-1142))) (-15 -2485 (|#2| |#2|)) (-15 -2485 (|#2| |#2| (-1142))) (-15 -3899 ((-3 |#2| "failed") (-621 (-592 |#2|)) |#2| (-1142))) (-15 -2433 (|#2| |#2| (-592 |#2|))) (-15 -3293 (|#2| (-400 (-549)) |#2|)))
+((-2635 (((-3 |#3| "failed") |#3|) 110)) (-1662 ((|#3| |#3|) 131)) (-3406 (((-3 |#3| "failed") |#3|) 82)) (-1510 ((|#3| |#3|) 121)) (-4178 (((-3 |#3| "failed") |#3|) 58)) (-1638 ((|#3| |#3|) 129)) (-1501 (((-3 |#3| "failed") |#3|) 46)) (-1483 ((|#3| |#3|) 119)) (-1779 (((-3 |#3| "failed") |#3|) 112)) (-1684 ((|#3| |#3|) 133)) (-2453 (((-3 |#3| "failed") |#3|) 84)) (-1538 ((|#3| |#3|) 123)) (-3620 (((-3 |#3| "failed") |#3| (-747)) 36)) (-2462 (((-3 |#3| "failed") |#3|) 74)) (-3631 ((|#3| |#3|) 118)) (-4208 (((-3 |#3| "failed") |#3|) 44)) (-2717 ((|#3| |#3|) 117)) (-2014 (((-3 |#3| "failed") |#3|) 113)) (-1696 ((|#3| |#3|) 134)) (-1381 (((-3 |#3| "failed") |#3|) 85)) (-1551 ((|#3| |#3|) 124)) (-1613 (((-3 |#3| "failed") |#3|) 111)) (-1673 ((|#3| |#3|) 132)) (-3824 (((-3 |#3| "failed") |#3|) 83)) (-1525 ((|#3| |#3|) 122)) (-1997 (((-3 |#3| "failed") |#3|) 60)) (-1648 ((|#3| |#3|) 130)) (-1600 (((-3 |#3| "failed") |#3|) 48)) (-1500 ((|#3| |#3|) 120)) (-1860 (((-3 |#3| "failed") |#3|) 66)) (-1731 ((|#3| |#3|) 137)) (-1623 (((-3 |#3| "failed") |#3|) 104)) (-1585 ((|#3| |#3|) 142)) (-4014 (((-3 |#3| "failed") |#3|) 62)) (-1708 ((|#3| |#3|) 135)) (-3476 (((-3 |#3| "failed") |#3|) 50)) (-1562 ((|#3| |#3|) 125)) (-2030 (((-3 |#3| "failed") |#3|) 70)) (-1753 ((|#3| |#3|) 139)) (-1869 (((-3 |#3| "failed") |#3|) 54)) (-1611 ((|#3| |#3|) 127)) (-4022 (((-3 |#3| "failed") |#3|) 72)) (-1932 ((|#3| |#3|) 140)) (-4284 (((-3 |#3| "failed") |#3|) 56)) (-1625 ((|#3| |#3|) 128)) (-3218 (((-3 |#3| "failed") |#3|) 68)) (-1743 ((|#3| |#3|) 138)) (-4198 (((-3 |#3| "failed") |#3|) 107)) (-1598 ((|#3| |#3|) 143)) (-2980 (((-3 |#3| "failed") |#3|) 64)) (-1719 ((|#3| |#3|) 136)) (-2646 (((-3 |#3| "failed") |#3|) 52)) (-1575 ((|#3| |#3|) 126)) (** ((|#3| |#3| (-400 (-549))) 40 (|has| |#1| (-356)))))
+(((-271 |#1| |#2| |#3|) (-13 (-954 |#3|) (-10 -7 (IF (|has| |#1| (-356)) (-15 ** (|#3| |#3| (-400 (-549)))) |%noBranch|) (-15 -2717 (|#3| |#3|)) (-15 -3631 (|#3| |#3|)) (-15 -1483 (|#3| |#3|)) (-15 -1500 (|#3| |#3|)) (-15 -1510 (|#3| |#3|)) (-15 -1525 (|#3| |#3|)) (-15 -1538 (|#3| |#3|)) (-15 -1551 (|#3| |#3|)) (-15 -1562 (|#3| |#3|)) (-15 -1575 (|#3| |#3|)) (-15 -1585 (|#3| |#3|)) (-15 -1598 (|#3| |#3|)) (-15 -1611 (|#3| |#3|)) (-15 -1625 (|#3| |#3|)) (-15 -1638 (|#3| |#3|)) (-15 -1648 (|#3| |#3|)) (-15 -1662 (|#3| |#3|)) (-15 -1673 (|#3| |#3|)) (-15 -1684 (|#3| |#3|)) (-15 -1696 (|#3| |#3|)) (-15 -1708 (|#3| |#3|)) (-15 -1719 (|#3| |#3|)) (-15 -1731 (|#3| |#3|)) (-15 -1743 (|#3| |#3|)) (-15 -1753 (|#3| |#3|)) (-15 -1932 (|#3| |#3|)))) (-38 (-400 (-549))) (-1216 |#1|) (-1187 |#1| |#2|)) (T -271))
+((** (*1 *2 *2 *3) (-12 (-5 *3 (-400 (-549))) (-4 *4 (-356)) (-4 *4 (-38 *3)) (-4 *5 (-1216 *4)) (-5 *1 (-271 *4 *5 *2)) (-4 *2 (-1187 *4 *5)))) (-2717 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-3631 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1483 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1500 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1510 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1525 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1538 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1551 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1562 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1575 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1585 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1598 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1611 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1625 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1638 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1648 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1662 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1673 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1684 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1696 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1708 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1719 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1731 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1743 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1753 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))) (-1932 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3)) (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4)))))
+(-13 (-954 |#3|) (-10 -7 (IF (|has| |#1| (-356)) (-15 ** (|#3| |#3| (-400 (-549)))) |%noBranch|) (-15 -2717 (|#3| |#3|)) (-15 -3631 (|#3| |#3|)) (-15 -1483 (|#3| |#3|)) (-15 -1500 (|#3| |#3|)) (-15 -1510 (|#3| |#3|)) (-15 -1525 (|#3| |#3|)) (-15 -1538 (|#3| |#3|)) (-15 -1551 (|#3| |#3|)) (-15 -1562 (|#3| |#3|)) (-15 -1575 (|#3| |#3|)) (-15 -1585 (|#3| |#3|)) (-15 -1598 (|#3| |#3|)) (-15 -1611 (|#3| |#3|)) (-15 -1625 (|#3| |#3|)) (-15 -1638 (|#3| |#3|)) (-15 -1648 (|#3| |#3|)) (-15 -1662 (|#3| |#3|)) (-15 -1673 (|#3| |#3|)) (-15 -1684 (|#3| |#3|)) (-15 -1696 (|#3| |#3|)) (-15 -1708 (|#3| |#3|)) (-15 -1719 (|#3| |#3|)) (-15 -1731 (|#3| |#3|)) (-15 -1743 (|#3| |#3|)) (-15 -1753 (|#3| |#3|)) (-15 -1932 (|#3| |#3|))))
+((-2635 (((-3 |#3| "failed") |#3|) 66)) (-1662 ((|#3| |#3|) 129)) (-3406 (((-3 |#3| "failed") |#3|) 50)) (-1510 ((|#3| |#3|) 117)) (-4178 (((-3 |#3| "failed") |#3|) 62)) (-1638 ((|#3| |#3|) 127)) (-1501 (((-3 |#3| "failed") |#3|) 46)) (-1483 ((|#3| |#3|) 115)) (-1779 (((-3 |#3| "failed") |#3|) 70)) (-1684 ((|#3| |#3|) 131)) (-2453 (((-3 |#3| "failed") |#3|) 54)) (-1538 ((|#3| |#3|) 119)) (-3620 (((-3 |#3| "failed") |#3| (-747)) 35)) (-2462 (((-3 |#3| "failed") |#3|) 44)) (-3631 ((|#3| |#3|) 104)) (-4208 (((-3 |#3| "failed") |#3|) 42)) (-2717 ((|#3| |#3|) 114)) (-2014 (((-3 |#3| "failed") |#3|) 72)) (-1696 ((|#3| |#3|) 132)) (-1381 (((-3 |#3| "failed") |#3|) 56)) (-1551 ((|#3| |#3|) 120)) (-1613 (((-3 |#3| "failed") |#3|) 68)) (-1673 ((|#3| |#3|) 130)) (-3824 (((-3 |#3| "failed") |#3|) 52)) (-1525 ((|#3| |#3|) 118)) (-1997 (((-3 |#3| "failed") |#3|) 64)) (-1648 ((|#3| |#3|) 128)) (-1600 (((-3 |#3| "failed") |#3|) 48)) (-1500 ((|#3| |#3|) 116)) (-1860 (((-3 |#3| "failed") |#3|) 74)) (-1731 ((|#3| |#3|) 135)) (-1623 (((-3 |#3| "failed") |#3|) 58)) (-1585 ((|#3| |#3|) 123)) (-4014 (((-3 |#3| "failed") |#3|) 105)) (-1708 ((|#3| |#3|) 133)) (-3476 (((-3 |#3| "failed") |#3|) 94)) (-1562 ((|#3| |#3|) 121)) (-2030 (((-3 |#3| "failed") |#3|) 109)) (-1753 ((|#3| |#3|) 137)) (-1869 (((-3 |#3| "failed") |#3|) 101)) (-1611 ((|#3| |#3|) 125)) (-4022 (((-3 |#3| "failed") |#3|) 110)) (-1932 ((|#3| |#3|) 138)) (-4284 (((-3 |#3| "failed") |#3|) 103)) (-1625 ((|#3| |#3|) 126)) (-3218 (((-3 |#3| "failed") |#3|) 76)) (-1743 ((|#3| |#3|) 136)) (-4198 (((-3 |#3| "failed") |#3|) 60)) (-1598 ((|#3| |#3|) 124)) (-2980 (((-3 |#3| "failed") |#3|) 106)) (-1719 ((|#3| |#3|) 134)) (-2646 (((-3 |#3| "failed") |#3|) 97)) (-1575 ((|#3| |#3|) 122)) (** ((|#3| |#3| (-400 (-549))) 40 (|has| |#1| (-356)))))
+(((-272 |#1| |#2| |#3| |#4|) (-13 (-954 |#3|) (-10 -7 (IF (|has| |#1| (-356)) (-15 ** (|#3| |#3| (-400 (-549)))) |%noBranch|) (-15 -2717 (|#3| |#3|)) (-15 -3631 (|#3| |#3|)) (-15 -1483 (|#3| |#3|)) (-15 -1500 (|#3| |#3|)) (-15 -1510 (|#3| |#3|)) (-15 -1525 (|#3| |#3|)) (-15 -1538 (|#3| |#3|)) (-15 -1551 (|#3| |#3|)) (-15 -1562 (|#3| |#3|)) (-15 -1575 (|#3| |#3|)) (-15 -1585 (|#3| |#3|)) (-15 -1598 (|#3| |#3|)) (-15 -1611 (|#3| |#3|)) (-15 -1625 (|#3| |#3|)) (-15 -1638 (|#3| |#3|)) (-15 -1648 (|#3| |#3|)) (-15 -1662 (|#3| |#3|)) (-15 -1673 (|#3| |#3|)) (-15 -1684 (|#3| |#3|)) (-15 -1696 (|#3| |#3|)) (-15 -1708 (|#3| |#3|)) (-15 -1719 (|#3| |#3|)) (-15 -1731 (|#3| |#3|)) (-15 -1743 (|#3| |#3|)) (-15 -1753 (|#3| |#3|)) (-15 -1932 (|#3| |#3|)))) (-38 (-400 (-549))) (-1185 |#1|) (-1208 |#1| |#2|) (-954 |#2|)) (T -272))
+((** (*1 *2 *2 *3) (-12 (-5 *3 (-400 (-549))) (-4 *4 (-356)) (-4 *4 (-38 *3)) (-4 *5 (-1185 *4)) (-5 *1 (-272 *4 *5 *2 *6)) (-4 *2 (-1208 *4 *5)) (-4 *6 (-954 *5)))) (-2717 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-3631 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1483 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1500 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1510 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1525 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1538 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1551 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1562 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1575 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1585 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1598 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1611 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1625 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1638 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1648 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1662 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1673 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1684 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1696 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1708 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1719 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1731 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1743 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1753 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))) (-1932 (*1 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3)) (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4)))))
+(-13 (-954 |#3|) (-10 -7 (IF (|has| |#1| (-356)) (-15 ** (|#3| |#3| (-400 (-549)))) |%noBranch|) (-15 -2717 (|#3| |#3|)) (-15 -3631 (|#3| |#3|)) (-15 -1483 (|#3| |#3|)) (-15 -1500 (|#3| |#3|)) (-15 -1510 (|#3| |#3|)) (-15 -1525 (|#3| |#3|)) (-15 -1538 (|#3| |#3|)) (-15 -1551 (|#3| |#3|)) (-15 -1562 (|#3| |#3|)) (-15 -1575 (|#3| |#3|)) (-15 -1585 (|#3| |#3|)) (-15 -1598 (|#3| |#3|)) (-15 -1611 (|#3| |#3|)) (-15 -1625 (|#3| |#3|)) (-15 -1638 (|#3| |#3|)) (-15 -1648 (|#3| |#3|)) (-15 -1662 (|#3| |#3|)) (-15 -1673 (|#3| |#3|)) (-15 -1684 (|#3| |#3|)) (-15 -1696 (|#3| |#3|)) (-15 -1708 (|#3| |#3|)) (-15 -1719 (|#3| |#3|)) (-15 -1731 (|#3| |#3|)) (-15 -1743 (|#3| |#3|)) (-15 -1753 (|#3| |#3|)) (-15 -1932 (|#3| |#3|))))
+((-2178 (((-112) $) 19)) (-3108 (((-181) $) 7)) (-3705 (((-3 (-1142) "failed") $) 14)) (-2332 (((-3 (-621 $) "failed") $) NIL)) (-2927 (((-3 (-1142) "failed") $) 21)) (-2644 (((-3 (-1070) "failed") $) 17)) (-3872 (((-112) $) 15)) (-3845 (((-834) $) NIL)) (-1576 (((-112) $) 9)))
+(((-273) (-13 (-593 (-834)) (-10 -8 (-15 -3108 ((-181) $)) (-15 -3872 ((-112) $)) (-15 -2644 ((-3 (-1070) "failed") $)) (-15 -2178 ((-112) $)) (-15 -2927 ((-3 (-1142) "failed") $)) (-15 -1576 ((-112) $)) (-15 -3705 ((-3 (-1142) "failed") $)) (-15 -2332 ((-3 (-621 $) "failed") $))))) (T -273))
+((-3108 (*1 *2 *1) (-12 (-5 *2 (-181)) (-5 *1 (-273)))) (-3872 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-273)))) (-2644 (*1 *2 *1) (|partial| -12 (-5 *2 (-1070)) (-5 *1 (-273)))) (-2178 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-273)))) (-2927 (*1 *2 *1) (|partial| -12 (-5 *2 (-1142)) (-5 *1 (-273)))) (-1576 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-273)))) (-3705 (*1 *2 *1) (|partial| -12 (-5 *2 (-1142)) (-5 *1 (-273)))) (-2332 (*1 *2 *1) (|partial| -12 (-5 *2 (-621 (-273))) (-5 *1 (-273)))))
+(-13 (-593 (-834)) (-10 -8 (-15 -3108 ((-181) $)) (-15 -3872 ((-112) $)) (-15 -2644 ((-3 (-1070) "failed") $)) (-15 -2178 ((-112) $)) (-15 -2927 ((-3 (-1142) "failed") $)) (-15 -1576 ((-112) $)) (-15 -3705 ((-3 (-1142) "failed") $)) (-15 -2332 ((-3 (-621 $) "failed") $))))
+((-1488 (($ (-1 (-112) |#2|) $) 24)) (-3675 (($ $) 36)) (-3546 (($ (-1 (-112) |#2|) $) NIL) (($ |#2| $) 34)) (-3812 (($ |#2| $) 32) (($ (-1 (-112) |#2|) $) 18)) (-3021 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 40)) (-2613 (($ |#2| $ (-549)) 20) (($ $ $ (-549)) 22)) (-2162 (($ $ (-549)) 11) (($ $ (-1192 (-549))) 14)) (-3859 (($ $ |#2|) 30) (($ $ $) NIL)) (-1950 (($ $ |#2|) 29) (($ |#2| $) NIL) (($ $ $) 26) (($ (-621 $)) NIL)))
+(((-274 |#1| |#2|) (-10 -8 (-15 -3021 (|#1| |#1| |#1|)) (-15 -3546 (|#1| |#2| |#1|)) (-15 -3021 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3546 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3859 (|#1| |#1| |#1|)) (-15 -3859 (|#1| |#1| |#2|)) (-15 -2613 (|#1| |#1| |#1| (-549))) (-15 -2613 (|#1| |#2| |#1| (-549))) (-15 -2162 (|#1| |#1| (-1192 (-549)))) (-15 -2162 (|#1| |#1| (-549))) (-15 -1950 (|#1| (-621 |#1|))) (-15 -1950 (|#1| |#1| |#1|)) (-15 -1950 (|#1| |#2| |#1|)) (-15 -1950 (|#1| |#1| |#2|)) (-15 -3812 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1488 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3812 (|#1| |#2| |#1|)) (-15 -3675 (|#1| |#1|))) (-275 |#2|) (-1179)) (T -274))
+NIL
+(-10 -8 (-15 -3021 (|#1| |#1| |#1|)) (-15 -3546 (|#1| |#2| |#1|)) (-15 -3021 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3546 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3859 (|#1| |#1| |#1|)) (-15 -3859 (|#1| |#1| |#2|)) (-15 -2613 (|#1| |#1| |#1| (-549))) (-15 -2613 (|#1| |#2| |#1| (-549))) (-15 -2162 (|#1| |#1| (-1192 (-549)))) (-15 -2162 (|#1| |#1| (-549))) (-15 -1950 (|#1| (-621 |#1|))) (-15 -1950 (|#1| |#1| |#1|)) (-15 -1950 (|#1| |#2| |#1|)) (-15 -1950 (|#1| |#1| |#2|)) (-15 -3812 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1488 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3812 (|#1| |#2| |#1|)) (-15 -3675 (|#1| |#1|)))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-3659 (((-1230) $ (-549) (-549)) 40 (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) 8)) (-2250 ((|#1| $ (-549) |#1|) 52 (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) 58 (|has| $ (-6 -4337)))) (-3827 (($ (-1 (-112) |#1|) $) 85)) (-1488 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4336)))) (-3034 (($) 7 T CONST)) (-3469 (($ $) 83 (|has| |#1| (-1066)))) (-3675 (($ $) 78 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3546 (($ (-1 (-112) |#1|) $) 89) (($ |#1| $) 84 (|has| |#1| (-1066)))) (-3812 (($ |#1| $) 77 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4336)))) (-1875 ((|#1| $ (-549) |#1|) 53 (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) 51)) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-3743 (($ (-747) |#1|) 69)) (-1777 (((-112) $ (-747)) 9)) (-2807 (((-549) $) 43 (|has| (-549) (-823)))) (-3021 (($ (-1 (-112) |#1| |#1|) $ $) 86) (($ $ $) 82 (|has| |#1| (-823)))) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3063 (((-549) $) 44 (|has| (-549) (-823)))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-1799 (($ |#1| $ (-549)) 88) (($ $ $ (-549)) 87)) (-2613 (($ |#1| $ (-549)) 60) (($ $ $ (-549)) 59)) (-2296 (((-621 (-549)) $) 46)) (-2284 (((-112) (-549) $) 47)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3645 ((|#1| $) 42 (|has| (-549) (-823)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-1943 (($ $ |#1|) 41 (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2478 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) 48)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#1| $ (-549) |#1|) 50) ((|#1| $ (-549)) 49) (($ $ (-1192 (-549))) 63)) (-2149 (($ $ (-549)) 91) (($ $ (-1192 (-549))) 90)) (-2162 (($ $ (-549)) 62) (($ $ (-1192 (-549))) 61)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-2843 (((-525) $) 79 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 70)) (-3859 (($ $ |#1|) 93) (($ $ $) 92)) (-1950 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-621 $)) 65)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-275 |#1|) (-138) (-1179)) (T -275))
+((-3859 (*1 *1 *1 *2) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1179)))) (-3859 (*1 *1 *1 *1) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1179)))) (-2149 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-275 *3)) (-4 *3 (-1179)))) (-2149 (*1 *1 *1 *2) (-12 (-5 *2 (-1192 (-549))) (-4 *1 (-275 *3)) (-4 *3 (-1179)))) (-3546 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-275 *3)) (-4 *3 (-1179)))) (-1799 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-275 *2)) (-4 *2 (-1179)))) (-1799 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-275 *3)) (-4 *3 (-1179)))) (-3021 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-275 *3)) (-4 *3 (-1179)))) (-3827 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-275 *3)) (-4 *3 (-1179)))) (-3546 (*1 *1 *2 *1) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1179)) (-4 *2 (-1066)))) (-3469 (*1 *1 *1) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1179)) (-4 *2 (-1066)))) (-3021 (*1 *1 *1 *1) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1179)) (-4 *2 (-823)))))
+(-13 (-627 |t#1|) (-10 -8 (-6 -4337) (-15 -3859 ($ $ |t#1|)) (-15 -3859 ($ $ $)) (-15 -2149 ($ $ (-549))) (-15 -2149 ($ $ (-1192 (-549)))) (-15 -3546 ($ (-1 (-112) |t#1|) $)) (-15 -1799 ($ |t#1| $ (-549))) (-15 -1799 ($ $ $ (-549))) (-15 -3021 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -3827 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1066)) (PROGN (-15 -3546 ($ |t#1| $)) (-15 -3469 ($ $))) |%noBranch|) (IF (|has| |t#1| (-823)) (-15 -3021 ($ $ $)) |%noBranch|)))
+(((-34) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-627 |#1|) . T) ((-1066) |has| |#1| (-1066)) ((-1179) . T))
((** (($ $ $) 10)))
(((-276 |#1|) (-10 -8 (-15 ** (|#1| |#1| |#1|))) (-277)) (T -276))
NIL
(-10 -8 (-15 ** (|#1| |#1| |#1|)))
-((-3632 (($ $) 6)) (-2719 (($ $) 7)) (** (($ $ $) 8)))
+((-3631 (($ $) 6)) (-2717 (($ $) 7)) (** (($ $ $) 8)))
(((-277) (-138)) (T -277))
-((** (*1 *1 *1 *1) (-4 *1 (-277))) (-2719 (*1 *1 *1) (-4 *1 (-277))) (-3632 (*1 *1 *1) (-4 *1 (-277))))
-(-13 (-10 -8 (-15 -3632 ($ $)) (-15 -2719 ($ $)) (-15 ** ($ $ $))))
-((-2124 (((-621 (-1123 |#1|)) (-1123 |#1|) |#1|) 35)) (-1748 ((|#2| |#2| |#1|) 38)) (-1786 ((|#2| |#2| |#1|) 40)) (-4002 ((|#2| |#2| |#1|) 39)))
-(((-278 |#1| |#2|) (-10 -7 (-15 -1748 (|#2| |#2| |#1|)) (-15 -4002 (|#2| |#2| |#1|)) (-15 -1786 (|#2| |#2| |#1|)) (-15 -2124 ((-621 (-1123 |#1|)) (-1123 |#1|) |#1|))) (-356) (-1217 |#1|)) (T -278))
-((-2124 (*1 *2 *3 *4) (-12 (-4 *4 (-356)) (-5 *2 (-621 (-1123 *4))) (-5 *1 (-278 *4 *5)) (-5 *3 (-1123 *4)) (-4 *5 (-1217 *4)))) (-1786 (*1 *2 *2 *3) (-12 (-4 *3 (-356)) (-5 *1 (-278 *3 *2)) (-4 *2 (-1217 *3)))) (-4002 (*1 *2 *2 *3) (-12 (-4 *3 (-356)) (-5 *1 (-278 *3 *2)) (-4 *2 (-1217 *3)))) (-1748 (*1 *2 *2 *3) (-12 (-4 *3 (-356)) (-5 *1 (-278 *3 *2)) (-4 *2 (-1217 *3)))))
-(-10 -7 (-15 -1748 (|#2| |#2| |#1|)) (-15 -4002 (|#2| |#2| |#1|)) (-15 -1786 (|#2| |#2| |#1|)) (-15 -2124 ((-621 (-1123 |#1|)) (-1123 |#1|) |#1|)))
-((-3341 ((|#2| $ |#1|) 6)))
-(((-279 |#1| |#2|) (-138) (-1067) (-1180)) (T -279))
-((-3341 (*1 *2 *1 *3) (-12 (-4 *1 (-279 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1180)))))
-(-13 (-10 -8 (-15 -3341 (|t#2| $ |t#1|))))
-((-1879 ((|#3| $ |#2| |#3|) 12)) (-1809 ((|#3| $ |#2|) 10)))
-(((-280 |#1| |#2| |#3|) (-10 -8 (-15 -1879 (|#3| |#1| |#2| |#3|)) (-15 -1809 (|#3| |#1| |#2|))) (-281 |#2| |#3|) (-1067) (-1180)) (T -280))
-NIL
-(-10 -8 (-15 -1879 (|#3| |#1| |#2| |#3|)) (-15 -1809 (|#3| |#1| |#2|)))
-((-2254 ((|#2| $ |#1| |#2|) 10 (|has| $ (-6 -4338)))) (-1879 ((|#2| $ |#1| |#2|) 9 (|has| $ (-6 -4338)))) (-1809 ((|#2| $ |#1|) 11)) (-3341 ((|#2| $ |#1|) 6) ((|#2| $ |#1| |#2|) 12)))
-(((-281 |#1| |#2|) (-138) (-1067) (-1180)) (T -281))
-((-3341 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-281 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1180)))) (-1809 (*1 *2 *1 *3) (-12 (-4 *1 (-281 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1180)))) (-2254 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-281 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1180)))) (-1879 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-281 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1180)))))
-(-13 (-279 |t#1| |t#2|) (-10 -8 (-15 -3341 (|t#2| $ |t#1| |t#2|)) (-15 -1809 (|t#2| $ |t#1|)) (IF (|has| $ (-6 -4338)) (PROGN (-15 -2254 (|t#2| $ |t#1| |t#2|)) (-15 -1879 (|t#2| $ |t#1| |t#2|))) |%noBranch|)))
+((** (*1 *1 *1 *1) (-4 *1 (-277))) (-2717 (*1 *1 *1) (-4 *1 (-277))) (-3631 (*1 *1 *1) (-4 *1 (-277))))
+(-13 (-10 -8 (-15 -3631 ($ $)) (-15 -2717 ($ $)) (-15 ** ($ $ $))))
+((-4121 (((-621 (-1122 |#1|)) (-1122 |#1|) |#1|) 35)) (-1348 ((|#2| |#2| |#1|) 38)) (-2909 ((|#2| |#2| |#1|) 40)) (-3996 ((|#2| |#2| |#1|) 39)))
+(((-278 |#1| |#2|) (-10 -7 (-15 -1348 (|#2| |#2| |#1|)) (-15 -3996 (|#2| |#2| |#1|)) (-15 -2909 (|#2| |#2| |#1|)) (-15 -4121 ((-621 (-1122 |#1|)) (-1122 |#1|) |#1|))) (-356) (-1216 |#1|)) (T -278))
+((-4121 (*1 *2 *3 *4) (-12 (-4 *4 (-356)) (-5 *2 (-621 (-1122 *4))) (-5 *1 (-278 *4 *5)) (-5 *3 (-1122 *4)) (-4 *5 (-1216 *4)))) (-2909 (*1 *2 *2 *3) (-12 (-4 *3 (-356)) (-5 *1 (-278 *3 *2)) (-4 *2 (-1216 *3)))) (-3996 (*1 *2 *2 *3) (-12 (-4 *3 (-356)) (-5 *1 (-278 *3 *2)) (-4 *2 (-1216 *3)))) (-1348 (*1 *2 *2 *3) (-12 (-4 *3 (-356)) (-5 *1 (-278 *3 *2)) (-4 *2 (-1216 *3)))))
+(-10 -7 (-15 -1348 (|#2| |#2| |#1|)) (-15 -3996 (|#2| |#2| |#1|)) (-15 -2909 (|#2| |#2| |#1|)) (-15 -4121 ((-621 (-1122 |#1|)) (-1122 |#1|) |#1|)))
+((-3339 ((|#2| $ |#1|) 6)))
+(((-279 |#1| |#2|) (-138) (-1066) (-1179)) (T -279))
+((-3339 (*1 *2 *1 *3) (-12 (-4 *1 (-279 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1179)))))
+(-13 (-10 -8 (-15 -3339 (|t#2| $ |t#1|))))
+((-1875 ((|#3| $ |#2| |#3|) 12)) (-1807 ((|#3| $ |#2|) 10)))
+(((-280 |#1| |#2| |#3|) (-10 -8 (-15 -1875 (|#3| |#1| |#2| |#3|)) (-15 -1807 (|#3| |#1| |#2|))) (-281 |#2| |#3|) (-1066) (-1179)) (T -280))
+NIL
+(-10 -8 (-15 -1875 (|#3| |#1| |#2| |#3|)) (-15 -1807 (|#3| |#1| |#2|)))
+((-2250 ((|#2| $ |#1| |#2|) 10 (|has| $ (-6 -4337)))) (-1875 ((|#2| $ |#1| |#2|) 9 (|has| $ (-6 -4337)))) (-1807 ((|#2| $ |#1|) 11)) (-3339 ((|#2| $ |#1|) 6) ((|#2| $ |#1| |#2|) 12)))
+(((-281 |#1| |#2|) (-138) (-1066) (-1179)) (T -281))
+((-3339 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-281 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1179)))) (-1807 (*1 *2 *1 *3) (-12 (-4 *1 (-281 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1179)))) (-2250 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-281 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1179)))) (-1875 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-281 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1179)))))
+(-13 (-279 |t#1| |t#2|) (-10 -8 (-15 -3339 (|t#2| $ |t#1| |t#2|)) (-15 -1807 (|t#2| $ |t#1|)) (IF (|has| $ (-6 -4337)) (PROGN (-15 -2250 (|t#2| $ |t#1| |t#2|)) (-15 -1875 (|t#2| $ |t#1| |t#2|))) |%noBranch|)))
(((-279 |#1| |#2|) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 35)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 40)) (-2258 (($ $) 38)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3866 (((-112) $ $) NIL)) (-1682 (($) NIL T CONST)) (-2095 (($ $ $) 33)) (-2557 (($ |#2| |#3|) 19)) (-2114 (((-3 $ "failed") $) NIL)) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-2675 (((-112) $) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1591 ((|#3| $) NIL)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 20)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3147 (((-3 $ "failed") $ $) NIL)) (-3684 (((-747) $) 34)) (-3341 ((|#2| $ |#2|) 42)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 24)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) ((|#2| $) NIL)) (-2082 (((-747)) NIL)) (-1498 (((-112) $ $) NIL)) (-3276 (($) 29 T CONST)) (-3287 (($) 36 T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 37)))
-(((-282 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-300) (-10 -8 (-15 -1591 (|#3| $)) (-15 -3846 (|#2| $)) (-15 -2557 ($ |#2| |#3|)) (-15 -3147 ((-3 $ "failed") $ $)) (-15 -2114 ((-3 $ "failed") $)) (-15 -1992 ($ $)) (-15 -3341 (|#2| $ |#2|)))) (-170) (-1202 |#1|) (-23) (-1 |#2| |#2| |#3|) (-1 (-3 |#3| "failed") |#3| |#3|) (-1 (-3 |#2| "failed") |#2| |#2| |#3|)) (T -282))
-((-2114 (*1 *1 *1) (|partial| -12 (-4 *2 (-170)) (-5 *1 (-282 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1202 *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)))) (-1591 (*1 *2 *1) (-12 (-4 *3 (-170)) (-4 *2 (-23)) (-5 *1 (-282 *3 *4 *2 *5 *6 *7)) (-4 *4 (-1202 *3)) (-14 *5 (-1 *4 *4 *2)) (-14 *6 (-1 (-3 *2 "failed") *2 *2)) (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2)))) (-3846 (*1 *2 *1) (-12 (-4 *2 (-1202 *3)) (-5 *1 (-282 *3 *2 *4 *5 *6 *7)) (-4 *3 (-170)) (-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)))) (-2557 (*1 *1 *2 *3) (-12 (-4 *4 (-170)) (-5 *1 (-282 *4 *2 *3 *5 *6 *7)) (-4 *2 (-1202 *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)))) (-3147 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-170)) (-5 *1 (-282 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1202 *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)))) (-1992 (*1 *1 *1) (-12 (-4 *2 (-170)) (-5 *1 (-282 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1202 *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)))) (-3341 (*1 *2 *1 *2) (-12 (-4 *3 (-170)) (-5 *1 (-282 *3 *2 *4 *5 *6 *7)) (-4 *2 (-1202 *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 (-300) (-10 -8 (-15 -1591 (|#3| $)) (-15 -3846 (|#2| $)) (-15 -2557 ($ |#2| |#3|)) (-15 -3147 ((-3 $ "failed") $ $)) (-15 -2114 ((-3 $ "failed") $)) (-15 -1992 ($ $)) (-15 -3341 (|#2| $ |#2|))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11) (($ (-549)) 27)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 35)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 40)) (-3044 (($ $) 38)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-2680 (((-112) $ $) NIL)) (-3034 (($) NIL T CONST)) (-2091 (($ $ $) 33)) (-2556 (($ |#2| |#3|) 19)) (-2612 (((-3 $ "failed") $) NIL)) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-2297 (((-112) $) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2107 ((|#3| $) NIL)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 20)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2173 (((-3 $ "failed") $ $) NIL)) (-1335 (((-747) $) 34)) (-3339 ((|#2| $ |#2|) 42)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 24)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) ((|#2| $) NIL)) (-2371 (((-747)) NIL)) (-2441 (((-112) $ $) NIL)) (-3274 (($) 29 T CONST)) (-3286 (($) 36 T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 37)))
+(((-282 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-300) (-10 -8 (-15 -2107 (|#3| $)) (-15 -3845 (|#2| $)) (-15 -2556 ($ |#2| |#3|)) (-15 -2173 ((-3 $ "failed") $ $)) (-15 -2612 ((-3 $ "failed") $)) (-15 -1990 ($ $)) (-15 -3339 (|#2| $ |#2|)))) (-170) (-1201 |#1|) (-23) (-1 |#2| |#2| |#3|) (-1 (-3 |#3| "failed") |#3| |#3|) (-1 (-3 |#2| "failed") |#2| |#2| |#3|)) (T -282))
+((-2612 (*1 *1 *1) (|partial| -12 (-4 *2 (-170)) (-5 *1 (-282 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1201 *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)))) (-2107 (*1 *2 *1) (-12 (-4 *3 (-170)) (-4 *2 (-23)) (-5 *1 (-282 *3 *4 *2 *5 *6 *7)) (-4 *4 (-1201 *3)) (-14 *5 (-1 *4 *4 *2)) (-14 *6 (-1 (-3 *2 "failed") *2 *2)) (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2)))) (-3845 (*1 *2 *1) (-12 (-4 *2 (-1201 *3)) (-5 *1 (-282 *3 *2 *4 *5 *6 *7)) (-4 *3 (-170)) (-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)))) (-2556 (*1 *1 *2 *3) (-12 (-4 *4 (-170)) (-5 *1 (-282 *4 *2 *3 *5 *6 *7)) (-4 *2 (-1201 *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)))) (-2173 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-170)) (-5 *1 (-282 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1201 *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)))) (-1990 (*1 *1 *1) (-12 (-4 *2 (-170)) (-5 *1 (-282 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1201 *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)))) (-3339 (*1 *2 *1 *2) (-12 (-4 *3 (-170)) (-5 *1 (-282 *3 *2 *4 *5 *6 *7)) (-4 *2 (-1201 *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 (-300) (-10 -8 (-15 -2107 (|#3| $)) (-15 -3845 (|#2| $)) (-15 -2556 ($ |#2| |#3|)) (-15 -2173 ((-3 $ "failed") $ $)) (-15 -2612 ((-3 $ "failed") $)) (-15 -1990 ($ $)) (-15 -3339 (|#2| $ |#2|))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11) (($ (-549)) 27)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-283) (-138)) (T -283))
NIL
-(-13 (-1018) (-111 $ $) (-10 -7 (-6 -4330)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-3354 (($ (-1143) (-1143) (-1071) $) 17)) (-4198 (($ (-1143) (-621 (-936)) $) 22)) (-3692 (((-621 (-1052)) $) 10)) (-4305 (((-3 (-1071) "failed") (-1143) (-1143) $) 16)) (-2710 (((-3 (-621 (-936)) "failed") (-1143) $) 21)) (-3742 (($) 7)) (-3463 (($) 23)) (-3846 (((-834) $) 27)) (-4168 (($) 24)))
-(((-284) (-13 (-593 (-834)) (-10 -8 (-15 -3742 ($)) (-15 -3692 ((-621 (-1052)) $)) (-15 -4305 ((-3 (-1071) "failed") (-1143) (-1143) $)) (-15 -3354 ($ (-1143) (-1143) (-1071) $)) (-15 -2710 ((-3 (-621 (-936)) "failed") (-1143) $)) (-15 -4198 ($ (-1143) (-621 (-936)) $)) (-15 -3463 ($)) (-15 -4168 ($))))) (T -284))
-((-3742 (*1 *1) (-5 *1 (-284))) (-3692 (*1 *2 *1) (-12 (-5 *2 (-621 (-1052))) (-5 *1 (-284)))) (-4305 (*1 *2 *3 *3 *1) (|partial| -12 (-5 *3 (-1143)) (-5 *2 (-1071)) (-5 *1 (-284)))) (-3354 (*1 *1 *2 *2 *3 *1) (-12 (-5 *2 (-1143)) (-5 *3 (-1071)) (-5 *1 (-284)))) (-2710 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1143)) (-5 *2 (-621 (-936))) (-5 *1 (-284)))) (-4198 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-936))) (-5 *1 (-284)))) (-3463 (*1 *1) (-5 *1 (-284))) (-4168 (*1 *1) (-5 *1 (-284))))
-(-13 (-593 (-834)) (-10 -8 (-15 -3742 ($)) (-15 -3692 ((-621 (-1052)) $)) (-15 -4305 ((-3 (-1071) "failed") (-1143) (-1143) $)) (-15 -3354 ($ (-1143) (-1143) (-1071) $)) (-15 -2710 ((-3 (-621 (-936)) "failed") (-1143) $)) (-15 -4198 ($ (-1143) (-621 (-936)) $)) (-15 -3463 ($)) (-15 -4168 ($))))
-((-2957 (((-621 (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|)))) (|:| |geneigvec| (-621 (-665 (-400 (-923 |#1|))))))) (-665 (-400 (-923 |#1|)))) 85)) (-2390 (((-621 (-665 (-400 (-923 |#1|)))) (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|)))) (|:| |eigmult| (-747)) (|:| |eigvec| (-621 (-665 (-400 (-923 |#1|)))))) (-665 (-400 (-923 |#1|)))) 80) (((-621 (-665 (-400 (-923 |#1|)))) (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|))) (-665 (-400 (-923 |#1|))) (-747) (-747)) 38)) (-2222 (((-621 (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|)))) (|:| |eigmult| (-747)) (|:| |eigvec| (-621 (-665 (-400 (-923 |#1|))))))) (-665 (-400 (-923 |#1|)))) 82)) (-3739 (((-621 (-665 (-400 (-923 |#1|)))) (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|))) (-665 (-400 (-923 |#1|)))) 62)) (-2247 (((-621 (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|)))) (-665 (-400 (-923 |#1|)))) 61)) (-4154 (((-923 |#1|) (-665 (-400 (-923 |#1|)))) 50) (((-923 |#1|) (-665 (-400 (-923 |#1|))) (-1143)) 51)))
-(((-285 |#1|) (-10 -7 (-15 -4154 ((-923 |#1|) (-665 (-400 (-923 |#1|))) (-1143))) (-15 -4154 ((-923 |#1|) (-665 (-400 (-923 |#1|))))) (-15 -2247 ((-621 (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|)))) (-665 (-400 (-923 |#1|))))) (-15 -3739 ((-621 (-665 (-400 (-923 |#1|)))) (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|))) (-665 (-400 (-923 |#1|))))) (-15 -2390 ((-621 (-665 (-400 (-923 |#1|)))) (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|))) (-665 (-400 (-923 |#1|))) (-747) (-747))) (-15 -2390 ((-621 (-665 (-400 (-923 |#1|)))) (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|)))) (|:| |eigmult| (-747)) (|:| |eigvec| (-621 (-665 (-400 (-923 |#1|)))))) (-665 (-400 (-923 |#1|))))) (-15 -2957 ((-621 (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|)))) (|:| |geneigvec| (-621 (-665 (-400 (-923 |#1|))))))) (-665 (-400 (-923 |#1|))))) (-15 -2222 ((-621 (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|)))) (|:| |eigmult| (-747)) (|:| |eigvec| (-621 (-665 (-400 (-923 |#1|))))))) (-665 (-400 (-923 |#1|)))))) (-444)) (T -285))
-((-2222 (*1 *2 *3) (-12 (-4 *4 (-444)) (-5 *2 (-621 (-2 (|:| |eigval| (-3 (-400 (-923 *4)) (-1132 (-1143) (-923 *4)))) (|:| |eigmult| (-747)) (|:| |eigvec| (-621 (-665 (-400 (-923 *4)))))))) (-5 *1 (-285 *4)) (-5 *3 (-665 (-400 (-923 *4)))))) (-2957 (*1 *2 *3) (-12 (-4 *4 (-444)) (-5 *2 (-621 (-2 (|:| |eigval| (-3 (-400 (-923 *4)) (-1132 (-1143) (-923 *4)))) (|:| |geneigvec| (-621 (-665 (-400 (-923 *4)))))))) (-5 *1 (-285 *4)) (-5 *3 (-665 (-400 (-923 *4)))))) (-2390 (*1 *2 *3 *4) (-12 (-5 *3 (-2 (|:| |eigval| (-3 (-400 (-923 *5)) (-1132 (-1143) (-923 *5)))) (|:| |eigmult| (-747)) (|:| |eigvec| (-621 *4)))) (-4 *5 (-444)) (-5 *2 (-621 (-665 (-400 (-923 *5))))) (-5 *1 (-285 *5)) (-5 *4 (-665 (-400 (-923 *5)))))) (-2390 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-3 (-400 (-923 *6)) (-1132 (-1143) (-923 *6)))) (-5 *5 (-747)) (-4 *6 (-444)) (-5 *2 (-621 (-665 (-400 (-923 *6))))) (-5 *1 (-285 *6)) (-5 *4 (-665 (-400 (-923 *6)))))) (-3739 (*1 *2 *3 *4) (-12 (-5 *3 (-3 (-400 (-923 *5)) (-1132 (-1143) (-923 *5)))) (-4 *5 (-444)) (-5 *2 (-621 (-665 (-400 (-923 *5))))) (-5 *1 (-285 *5)) (-5 *4 (-665 (-400 (-923 *5)))))) (-2247 (*1 *2 *3) (-12 (-5 *3 (-665 (-400 (-923 *4)))) (-4 *4 (-444)) (-5 *2 (-621 (-3 (-400 (-923 *4)) (-1132 (-1143) (-923 *4))))) (-5 *1 (-285 *4)))) (-4154 (*1 *2 *3) (-12 (-5 *3 (-665 (-400 (-923 *4)))) (-5 *2 (-923 *4)) (-5 *1 (-285 *4)) (-4 *4 (-444)))) (-4154 (*1 *2 *3 *4) (-12 (-5 *3 (-665 (-400 (-923 *5)))) (-5 *4 (-1143)) (-5 *2 (-923 *5)) (-5 *1 (-285 *5)) (-4 *5 (-444)))))
-(-10 -7 (-15 -4154 ((-923 |#1|) (-665 (-400 (-923 |#1|))) (-1143))) (-15 -4154 ((-923 |#1|) (-665 (-400 (-923 |#1|))))) (-15 -2247 ((-621 (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|)))) (-665 (-400 (-923 |#1|))))) (-15 -3739 ((-621 (-665 (-400 (-923 |#1|)))) (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|))) (-665 (-400 (-923 |#1|))))) (-15 -2390 ((-621 (-665 (-400 (-923 |#1|)))) (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|))) (-665 (-400 (-923 |#1|))) (-747) (-747))) (-15 -2390 ((-621 (-665 (-400 (-923 |#1|)))) (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|)))) (|:| |eigmult| (-747)) (|:| |eigvec| (-621 (-665 (-400 (-923 |#1|)))))) (-665 (-400 (-923 |#1|))))) (-15 -2957 ((-621 (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|)))) (|:| |geneigvec| (-621 (-665 (-400 (-923 |#1|))))))) (-665 (-400 (-923 |#1|))))) (-15 -2222 ((-621 (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1132 (-1143) (-923 |#1|)))) (|:| |eigmult| (-747)) (|:| |eigvec| (-621 (-665 (-400 (-923 |#1|))))))) (-665 (-400 (-923 |#1|))))))
-((-2797 (((-287 |#2|) (-1 |#2| |#1|) (-287 |#1|)) 14)))
-(((-286 |#1| |#2|) (-10 -7 (-15 -2797 ((-287 |#2|) (-1 |#2| |#1|) (-287 |#1|)))) (-1180) (-1180)) (T -286))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-287 *5)) (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-287 *6)) (-5 *1 (-286 *5 *6)))))
-(-10 -7 (-15 -2797 ((-287 |#2|) (-1 |#2| |#1|) (-287 |#1|))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-1763 (((-112) $) NIL (|has| |#1| (-21)))) (-2053 (($ $) 12)) (-2001 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-3015 (($ $ $) 94 (|has| |#1| (-295)))) (-1682 (($) NIL (-1536 (|has| |#1| (-21)) (|has| |#1| (-703))) CONST)) (-3384 (($ $) 50 (|has| |#1| (-21)))) (-1357 (((-3 $ "failed") $) 61 (|has| |#1| (-703)))) (-2203 ((|#1| $) 11)) (-2114 (((-3 $ "failed") $) 59 (|has| |#1| (-703)))) (-2675 (((-112) $) NIL (|has| |#1| (-703)))) (-2797 (($ (-1 |#1| |#1|) $) 14)) (-2190 ((|#1| $) 10)) (-1852 (($ $) 49 (|has| |#1| (-21)))) (-2386 (((-3 $ "failed") $) 60 (|has| |#1| (-703)))) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-1992 (($ $) 63 (-1536 (|has| |#1| (-356)) (|has| |#1| (-465))))) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-3478 (((-621 $) $) 84 (|has| |#1| (-541)))) (-2686 (($ $ $) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 $)) 28 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-1143) |#1|) 17 (|has| |#1| (-505 (-1143) |#1|))) (($ $ (-621 (-1143)) (-621 |#1|)) 21 (|has| |#1| (-505 (-1143) |#1|)))) (-2391 (($ |#1| |#1|) 9)) (-2985 (((-133)) 89 (|has| |#1| (-356)))) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143)) 86 (|has| |#1| (-871 (-1143))))) (-1955 (($ $ $) NIL (|has| |#1| (-465)))) (-3293 (($ $ $) NIL (|has| |#1| (-465)))) (-3846 (($ (-549)) NIL (|has| |#1| (-1018))) (((-112) $) 36 (|has| |#1| (-1067))) (((-834) $) 35 (|has| |#1| (-1067)))) (-2082 (((-747)) 66 (|has| |#1| (-1018)))) (-3276 (($) 46 (|has| |#1| (-21)) CONST)) (-3287 (($) 56 (|has| |#1| (-703)) CONST)) (-1702 (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143))))) (-2389 (($ |#1| |#1|) 8) (((-112) $ $) 31 (|has| |#1| (-1067)))) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) 91 (-1536 (|has| |#1| (-356)) (|has| |#1| (-465))))) (-2500 (($ |#1| $) 44 (|has| |#1| (-21))) (($ $ |#1|) 45 (|has| |#1| (-21))) (($ $ $) 43 (|has| |#1| (-21))) (($ $) 42 (|has| |#1| (-21)))) (-2486 (($ |#1| $) 39 (|has| |#1| (-25))) (($ $ |#1|) 40 (|has| |#1| (-25))) (($ $ $) 38 (|has| |#1| (-25)))) (** (($ $ (-549)) NIL (|has| |#1| (-465))) (($ $ (-747)) NIL (|has| |#1| (-703))) (($ $ (-892)) NIL (|has| |#1| (-1079)))) (* (($ $ |#1|) 54 (|has| |#1| (-1079))) (($ |#1| $) 53 (|has| |#1| (-1079))) (($ $ $) 52 (|has| |#1| (-1079))) (($ (-549) $) 69 (|has| |#1| (-21))) (($ (-747) $) NIL (|has| |#1| (-21))) (($ (-892) $) NIL (|has| |#1| (-25)))))
-(((-287 |#1|) (-13 (-1180) (-10 -8 (-15 -2389 ($ |#1| |#1|)) (-15 -2391 ($ |#1| |#1|)) (-15 -2053 ($ $)) (-15 -2190 (|#1| $)) (-15 -2203 (|#1| $)) (-15 -2797 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-505 (-1143) |#1|)) (-6 (-505 (-1143) |#1|)) |%noBranch|) (IF (|has| |#1| (-1067)) (PROGN (-6 (-1067)) (-6 (-593 (-112))) (IF (|has| |#1| (-302 |#1|)) (PROGN (-15 -2686 ($ $ $)) (-15 -2686 ($ $ (-621 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -2486 ($ |#1| $)) (-15 -2486 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -1852 ($ $)) (-15 -3384 ($ $)) (-15 -2500 ($ |#1| $)) (-15 -2500 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1079)) (PROGN (-6 (-1079)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-703)) (PROGN (-6 (-703)) (-15 -2386 ((-3 $ "failed") $)) (-15 -1357 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-465)) (PROGN (-6 (-465)) (-15 -2386 ((-3 $ "failed") $)) (-15 -1357 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1018)) (PROGN (-6 (-1018)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-170)) (-6 (-694 |#1|)) |%noBranch|) (IF (|has| |#1| (-541)) (-15 -3478 ((-621 $) $)) |%noBranch|) (IF (|has| |#1| (-871 (-1143))) (-6 (-871 (-1143))) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-6 (-1233 |#1|)) (-15 -2513 ($ $ $)) (-15 -1992 ($ $))) |%noBranch|) (IF (|has| |#1| (-295)) (-15 -3015 ($ $ $)) |%noBranch|))) (-1180)) (T -287))
-((-2389 (*1 *1 *2 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1180)))) (-2391 (*1 *1 *2 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1180)))) (-2053 (*1 *1 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1180)))) (-2190 (*1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1180)))) (-2203 (*1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1180)))) (-2797 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1180)) (-5 *1 (-287 *3)))) (-2686 (*1 *1 *1 *1) (-12 (-4 *2 (-302 *2)) (-4 *2 (-1067)) (-4 *2 (-1180)) (-5 *1 (-287 *2)))) (-2686 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-287 *3))) (-4 *3 (-302 *3)) (-4 *3 (-1067)) (-4 *3 (-1180)) (-5 *1 (-287 *3)))) (-2486 (*1 *1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-25)) (-4 *2 (-1180)))) (-2486 (*1 *1 *1 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-25)) (-4 *2 (-1180)))) (-1852 (*1 *1 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-21)) (-4 *2 (-1180)))) (-3384 (*1 *1 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-21)) (-4 *2 (-1180)))) (-2500 (*1 *1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-21)) (-4 *2 (-1180)))) (-2500 (*1 *1 *1 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-21)) (-4 *2 (-1180)))) (-2386 (*1 *1 *1) (|partial| -12 (-5 *1 (-287 *2)) (-4 *2 (-703)) (-4 *2 (-1180)))) (-1357 (*1 *1 *1) (|partial| -12 (-5 *1 (-287 *2)) (-4 *2 (-703)) (-4 *2 (-1180)))) (-3478 (*1 *2 *1) (-12 (-5 *2 (-621 (-287 *3))) (-5 *1 (-287 *3)) (-4 *3 (-541)) (-4 *3 (-1180)))) (-3015 (*1 *1 *1 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-295)) (-4 *2 (-1180)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1079)) (-4 *2 (-1180)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1079)) (-4 *2 (-1180)))) (-2513 (*1 *1 *1 *1) (-1536 (-12 (-5 *1 (-287 *2)) (-4 *2 (-356)) (-4 *2 (-1180))) (-12 (-5 *1 (-287 *2)) (-4 *2 (-465)) (-4 *2 (-1180))))) (-1992 (*1 *1 *1) (-1536 (-12 (-5 *1 (-287 *2)) (-4 *2 (-356)) (-4 *2 (-1180))) (-12 (-5 *1 (-287 *2)) (-4 *2 (-465)) (-4 *2 (-1180))))))
-(-13 (-1180) (-10 -8 (-15 -2389 ($ |#1| |#1|)) (-15 -2391 ($ |#1| |#1|)) (-15 -2053 ($ $)) (-15 -2190 (|#1| $)) (-15 -2203 (|#1| $)) (-15 -2797 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-505 (-1143) |#1|)) (-6 (-505 (-1143) |#1|)) |%noBranch|) (IF (|has| |#1| (-1067)) (PROGN (-6 (-1067)) (-6 (-593 (-112))) (IF (|has| |#1| (-302 |#1|)) (PROGN (-15 -2686 ($ $ $)) (-15 -2686 ($ $ (-621 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -2486 ($ |#1| $)) (-15 -2486 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -1852 ($ $)) (-15 -3384 ($ $)) (-15 -2500 ($ |#1| $)) (-15 -2500 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1079)) (PROGN (-6 (-1079)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-703)) (PROGN (-6 (-703)) (-15 -2386 ((-3 $ "failed") $)) (-15 -1357 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-465)) (PROGN (-6 (-465)) (-15 -2386 ((-3 $ "failed") $)) (-15 -1357 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1018)) (PROGN (-6 (-1018)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-170)) (-6 (-694 |#1|)) |%noBranch|) (IF (|has| |#1| (-541)) (-15 -3478 ((-621 $) $)) |%noBranch|) (IF (|has| |#1| (-871 (-1143))) (-6 (-871 (-1143))) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-6 (-1233 |#1|)) (-15 -2513 ($ $ $)) (-15 -1992 ($ $))) |%noBranch|) (IF (|has| |#1| (-295)) (-15 -3015 ($ $ $)) |%noBranch|)))
-((-3834 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3733 (($) NIL) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-1535 (((-1231) $ |#1| |#1|) NIL (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 ((|#2| $ |#1| |#2|) NIL)) (-1717 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-3490 (((-3 |#2| "failed") |#1| $) NIL)) (-1682 (($) NIL T CONST)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-2129 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-3 |#2| "failed") |#1| $) NIL)) (-3812 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2557 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-1879 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#2| $ |#1|) NIL)) (-2989 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) NIL)) (-4031 ((|#1| $) NIL (|has| |#1| (-823)))) (-1562 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-1569 ((|#1| $) NIL (|has| |#1| (-823)))) (-1868 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4338))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3449 (((-621 |#1|) $) NIL)) (-2427 (((-112) |#1| $) NIL)) (-3504 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-2751 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-3303 (((-621 |#1|) $) NIL)) (-3761 (((-112) |#1| $) NIL)) (-3990 (((-1087) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3646 ((|#2| $) NIL (|has| |#1| (-823)))) (-3779 (((-3 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) "failed") (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL)) (-1642 (($ $ |#2|) NIL (|has| $ (-6 -4338)))) (-3325 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-1780 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-2696 (((-621 |#2|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2898 (($) NIL) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-4000 (((-747) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-747) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067)))) (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-594 (-525))))) (-3854 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-3846 (((-834) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-593 (-834))) (|has| |#2| (-593 (-834)))))) (-3624 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-3527 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-288 |#1| |#2|) (-13 (-1156 |#1| |#2|) (-10 -7 (-6 -4337))) (-1067) (-1067)) (T -288))
-NIL
-(-13 (-1156 |#1| |#2|) (-10 -7 (-6 -4337)))
-((-3042 (((-305) (-1125) (-621 (-1125))) 16) (((-305) (-1125) (-1125)) 15) (((-305) (-621 (-1125))) 14) (((-305) (-1125)) 12)))
-(((-289) (-10 -7 (-15 -3042 ((-305) (-1125))) (-15 -3042 ((-305) (-621 (-1125)))) (-15 -3042 ((-305) (-1125) (-1125))) (-15 -3042 ((-305) (-1125) (-621 (-1125)))))) (T -289))
-((-3042 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-1125))) (-5 *3 (-1125)) (-5 *2 (-305)) (-5 *1 (-289)))) (-3042 (*1 *2 *3 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-305)) (-5 *1 (-289)))) (-3042 (*1 *2 *3) (-12 (-5 *3 (-621 (-1125))) (-5 *2 (-305)) (-5 *1 (-289)))) (-3042 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-305)) (-5 *1 (-289)))))
-(-10 -7 (-15 -3042 ((-305) (-1125))) (-15 -3042 ((-305) (-621 (-1125)))) (-15 -3042 ((-305) (-1125) (-1125))) (-15 -3042 ((-305) (-1125) (-621 (-1125)))))
-((-2797 ((|#2| (-1 |#2| |#1|) (-1125) (-592 |#1|)) 18)))
-(((-290 |#1| |#2|) (-10 -7 (-15 -2797 (|#2| (-1 |#2| |#1|) (-1125) (-592 |#1|)))) (-295) (-1180)) (T -290))
-((-2797 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1125)) (-5 *5 (-592 *6)) (-4 *6 (-295)) (-4 *2 (-1180)) (-5 *1 (-290 *6 *2)))))
-(-10 -7 (-15 -2797 (|#2| (-1 |#2| |#1|) (-1125) (-592 |#1|))))
-((-2797 ((|#2| (-1 |#2| |#1|) (-592 |#1|)) 17)))
-(((-291 |#1| |#2|) (-10 -7 (-15 -2797 (|#2| (-1 |#2| |#1|) (-592 |#1|)))) (-295) (-295)) (T -291))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-592 *5)) (-4 *5 (-295)) (-4 *2 (-295)) (-5 *1 (-291 *5 *2)))))
-(-10 -7 (-15 -2797 (|#2| (-1 |#2| |#1|) (-592 |#1|))))
-((-1818 (((-112) (-219)) 10)))
-(((-292 |#1| |#2|) (-10 -7 (-15 -1818 ((-112) (-219)))) (-219) (-219)) (T -292))
-((-1818 (*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-112)) (-5 *1 (-292 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
-(-10 -7 (-15 -1818 ((-112) (-219))))
-((-1329 (((-1123 (-219)) (-309 (-219)) (-621 (-1143)) (-1061 (-816 (-219)))) 93)) (-3639 (((-1123 (-219)) (-1226 (-309 (-219))) (-621 (-1143)) (-1061 (-816 (-219)))) 107) (((-1123 (-219)) (-309 (-219)) (-621 (-1143)) (-1061 (-816 (-219)))) 61)) (-1972 (((-621 (-1125)) (-1123 (-219))) NIL)) (-4117 (((-621 (-219)) (-309 (-219)) (-1143) (-1061 (-816 (-219)))) 58)) (-3552 (((-621 (-219)) (-923 (-400 (-549))) (-1143) (-1061 (-816 (-219)))) 49)) (-2965 (((-621 (-1125)) (-621 (-219))) NIL)) (-2980 (((-219) (-1061 (-816 (-219)))) 25)) (-3431 (((-219) (-1061 (-816 (-219)))) 26)) (-3323 (((-112) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 54)) (-2649 (((-1125) (-219)) NIL)))
-(((-293) (-10 -7 (-15 -2980 ((-219) (-1061 (-816 (-219))))) (-15 -3431 ((-219) (-1061 (-816 (-219))))) (-15 -3323 ((-112) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -4117 ((-621 (-219)) (-309 (-219)) (-1143) (-1061 (-816 (-219))))) (-15 -1329 ((-1123 (-219)) (-309 (-219)) (-621 (-1143)) (-1061 (-816 (-219))))) (-15 -3639 ((-1123 (-219)) (-309 (-219)) (-621 (-1143)) (-1061 (-816 (-219))))) (-15 -3639 ((-1123 (-219)) (-1226 (-309 (-219))) (-621 (-1143)) (-1061 (-816 (-219))))) (-15 -3552 ((-621 (-219)) (-923 (-400 (-549))) (-1143) (-1061 (-816 (-219))))) (-15 -2649 ((-1125) (-219))) (-15 -2965 ((-621 (-1125)) (-621 (-219)))) (-15 -1972 ((-621 (-1125)) (-1123 (-219)))))) (T -293))
-((-1972 (*1 *2 *3) (-12 (-5 *3 (-1123 (-219))) (-5 *2 (-621 (-1125))) (-5 *1 (-293)))) (-2965 (*1 *2 *3) (-12 (-5 *3 (-621 (-219))) (-5 *2 (-621 (-1125))) (-5 *1 (-293)))) (-2649 (*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-1125)) (-5 *1 (-293)))) (-3552 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-923 (-400 (-549)))) (-5 *4 (-1143)) (-5 *5 (-1061 (-816 (-219)))) (-5 *2 (-621 (-219))) (-5 *1 (-293)))) (-3639 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1226 (-309 (-219)))) (-5 *4 (-621 (-1143))) (-5 *5 (-1061 (-816 (-219)))) (-5 *2 (-1123 (-219))) (-5 *1 (-293)))) (-3639 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-309 (-219))) (-5 *4 (-621 (-1143))) (-5 *5 (-1061 (-816 (-219)))) (-5 *2 (-1123 (-219))) (-5 *1 (-293)))) (-1329 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-309 (-219))) (-5 *4 (-621 (-1143))) (-5 *5 (-1061 (-816 (-219)))) (-5 *2 (-1123 (-219))) (-5 *1 (-293)))) (-4117 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-309 (-219))) (-5 *4 (-1143)) (-5 *5 (-1061 (-816 (-219)))) (-5 *2 (-621 (-219))) (-5 *1 (-293)))) (-3323 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-112)) (-5 *1 (-293)))) (-3431 (*1 *2 *3) (-12 (-5 *3 (-1061 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-293)))) (-2980 (*1 *2 *3) (-12 (-5 *3 (-1061 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-293)))))
-(-10 -7 (-15 -2980 ((-219) (-1061 (-816 (-219))))) (-15 -3431 ((-219) (-1061 (-816 (-219))))) (-15 -3323 ((-112) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -4117 ((-621 (-219)) (-309 (-219)) (-1143) (-1061 (-816 (-219))))) (-15 -1329 ((-1123 (-219)) (-309 (-219)) (-621 (-1143)) (-1061 (-816 (-219))))) (-15 -3639 ((-1123 (-219)) (-309 (-219)) (-621 (-1143)) (-1061 (-816 (-219))))) (-15 -3639 ((-1123 (-219)) (-1226 (-309 (-219))) (-621 (-1143)) (-1061 (-816 (-219))))) (-15 -3552 ((-621 (-219)) (-923 (-400 (-549))) (-1143) (-1061 (-816 (-219))))) (-15 -2649 ((-1125) (-219))) (-15 -2965 ((-621 (-1125)) (-621 (-219)))) (-15 -1972 ((-621 (-1125)) (-1123 (-219)))))
-((-1981 (((-621 (-592 $)) $) 30)) (-3015 (($ $ (-287 $)) 81) (($ $ (-621 (-287 $))) 123) (($ $ (-621 (-592 $)) (-621 $)) NIL)) (-2714 (((-3 (-592 $) "failed") $) 113)) (-2659 (((-592 $) $) 112)) (-3225 (($ $) 19) (($ (-621 $)) 56)) (-2162 (((-621 (-114)) $) 38)) (-2834 (((-114) (-114)) 91)) (-3559 (((-112) $) 131)) (-2797 (($ (-1 $ $) (-592 $)) 89)) (-2634 (((-3 (-592 $) "failed") $) 93)) (-1476 (($ (-114) $) 61) (($ (-114) (-621 $)) 100)) (-3421 (((-112) $ (-114)) 117) (((-112) $ (-1143)) 116)) (-4036 (((-747) $) 46)) (-2979 (((-112) $ $) 59) (((-112) $ (-1143)) 51)) (-3450 (((-112) $) 129)) (-2686 (($ $ (-592 $) $) NIL) (($ $ (-621 (-592 $)) (-621 $)) NIL) (($ $ (-621 (-287 $))) 121) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-621 (-1143)) (-621 (-1 $ $))) 84) (($ $ (-621 (-1143)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-1143) (-1 $ (-621 $))) 69) (($ $ (-1143) (-1 $ $)) 75) (($ $ (-621 (-114)) (-621 (-1 $ $))) 83) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) 85) (($ $ (-114) (-1 $ (-621 $))) 71) (($ $ (-114) (-1 $ $)) 77)) (-3341 (($ (-114) $) 62) (($ (-114) $ $) 63) (($ (-114) $ $ $) 64) (($ (-114) $ $ $ $) 65) (($ (-114) (-621 $)) 109)) (-3433 (($ $) 53) (($ $ $) 119)) (-4137 (($ $) 17) (($ (-621 $)) 55)) (-4285 (((-112) (-114)) 22)))
-(((-294 |#1|) (-10 -8 (-15 -3559 ((-112) |#1|)) (-15 -3450 ((-112) |#1|)) (-15 -2686 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -2686 (|#1| |#1| (-114) (-1 |#1| (-621 |#1|)))) (-15 -2686 (|#1| |#1| (-621 (-114)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2686 (|#1| |#1| (-621 (-114)) (-621 (-1 |#1| |#1|)))) (-15 -2686 (|#1| |#1| (-1143) (-1 |#1| |#1|))) (-15 -2686 (|#1| |#1| (-1143) (-1 |#1| (-621 |#1|)))) (-15 -2686 (|#1| |#1| (-621 (-1143)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2686 (|#1| |#1| (-621 (-1143)) (-621 (-1 |#1| |#1|)))) (-15 -2979 ((-112) |#1| (-1143))) (-15 -2979 ((-112) |#1| |#1|)) (-15 -2797 (|#1| (-1 |#1| |#1|) (-592 |#1|))) (-15 -1476 (|#1| (-114) (-621 |#1|))) (-15 -1476 (|#1| (-114) |#1|)) (-15 -3421 ((-112) |#1| (-1143))) (-15 -3421 ((-112) |#1| (-114))) (-15 -4285 ((-112) (-114))) (-15 -2834 ((-114) (-114))) (-15 -2162 ((-621 (-114)) |#1|)) (-15 -1981 ((-621 (-592 |#1|)) |#1|)) (-15 -2634 ((-3 (-592 |#1|) "failed") |#1|)) (-15 -4036 ((-747) |#1|)) (-15 -3433 (|#1| |#1| |#1|)) (-15 -3433 (|#1| |#1|)) (-15 -3225 (|#1| (-621 |#1|))) (-15 -3225 (|#1| |#1|)) (-15 -4137 (|#1| (-621 |#1|))) (-15 -4137 (|#1| |#1|)) (-15 -3015 (|#1| |#1| (-621 (-592 |#1|)) (-621 |#1|))) (-15 -3015 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -3015 (|#1| |#1| (-287 |#1|))) (-15 -3341 (|#1| (-114) (-621 |#1|))) (-15 -3341 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -3341 (|#1| (-114) |#1| |#1| |#1|)) (-15 -3341 (|#1| (-114) |#1| |#1|)) (-15 -3341 (|#1| (-114) |#1|)) (-15 -2686 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2686 (|#1| |#1| |#1| |#1|)) (-15 -2686 (|#1| |#1| (-287 |#1|))) (-15 -2686 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -2686 (|#1| |#1| (-621 (-592 |#1|)) (-621 |#1|))) (-15 -2686 (|#1| |#1| (-592 |#1|) |#1|)) (-15 -2659 ((-592 |#1|) |#1|)) (-15 -2714 ((-3 (-592 |#1|) "failed") |#1|))) (-295)) (T -294))
-((-2834 (*1 *2 *2) (-12 (-5 *2 (-114)) (-5 *1 (-294 *3)) (-4 *3 (-295)))) (-4285 (*1 *2 *3) (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-294 *4)) (-4 *4 (-295)))))
-(-10 -8 (-15 -3559 ((-112) |#1|)) (-15 -3450 ((-112) |#1|)) (-15 -2686 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -2686 (|#1| |#1| (-114) (-1 |#1| (-621 |#1|)))) (-15 -2686 (|#1| |#1| (-621 (-114)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2686 (|#1| |#1| (-621 (-114)) (-621 (-1 |#1| |#1|)))) (-15 -2686 (|#1| |#1| (-1143) (-1 |#1| |#1|))) (-15 -2686 (|#1| |#1| (-1143) (-1 |#1| (-621 |#1|)))) (-15 -2686 (|#1| |#1| (-621 (-1143)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2686 (|#1| |#1| (-621 (-1143)) (-621 (-1 |#1| |#1|)))) (-15 -2979 ((-112) |#1| (-1143))) (-15 -2979 ((-112) |#1| |#1|)) (-15 -2797 (|#1| (-1 |#1| |#1|) (-592 |#1|))) (-15 -1476 (|#1| (-114) (-621 |#1|))) (-15 -1476 (|#1| (-114) |#1|)) (-15 -3421 ((-112) |#1| (-1143))) (-15 -3421 ((-112) |#1| (-114))) (-15 -4285 ((-112) (-114))) (-15 -2834 ((-114) (-114))) (-15 -2162 ((-621 (-114)) |#1|)) (-15 -1981 ((-621 (-592 |#1|)) |#1|)) (-15 -2634 ((-3 (-592 |#1|) "failed") |#1|)) (-15 -4036 ((-747) |#1|)) (-15 -3433 (|#1| |#1| |#1|)) (-15 -3433 (|#1| |#1|)) (-15 -3225 (|#1| (-621 |#1|))) (-15 -3225 (|#1| |#1|)) (-15 -4137 (|#1| (-621 |#1|))) (-15 -4137 (|#1| |#1|)) (-15 -3015 (|#1| |#1| (-621 (-592 |#1|)) (-621 |#1|))) (-15 -3015 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -3015 (|#1| |#1| (-287 |#1|))) (-15 -3341 (|#1| (-114) (-621 |#1|))) (-15 -3341 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -3341 (|#1| (-114) |#1| |#1| |#1|)) (-15 -3341 (|#1| (-114) |#1| |#1|)) (-15 -3341 (|#1| (-114) |#1|)) (-15 -2686 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2686 (|#1| |#1| |#1| |#1|)) (-15 -2686 (|#1| |#1| (-287 |#1|))) (-15 -2686 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -2686 (|#1| |#1| (-621 (-592 |#1|)) (-621 |#1|))) (-15 -2686 (|#1| |#1| (-592 |#1|) |#1|)) (-15 -2659 ((-592 |#1|) |#1|)) (-15 -2714 ((-3 (-592 |#1|) "failed") |#1|)))
-((-3834 (((-112) $ $) 7)) (-1981 (((-621 (-592 $)) $) 44)) (-3015 (($ $ (-287 $)) 56) (($ $ (-621 (-287 $))) 55) (($ $ (-621 (-592 $)) (-621 $)) 54)) (-2714 (((-3 (-592 $) "failed") $) 69)) (-2659 (((-592 $) $) 68)) (-3225 (($ $) 51) (($ (-621 $)) 50)) (-2162 (((-621 (-114)) $) 43)) (-2834 (((-114) (-114)) 42)) (-3559 (((-112) $) 22 (|has| $ (-1009 (-549))))) (-1549 (((-1139 $) (-592 $)) 25 (|has| $ (-1018)))) (-2863 (($ $ $) 13)) (-3575 (($ $ $) 14)) (-2797 (($ (-1 $ $) (-592 $)) 36)) (-2634 (((-3 (-592 $) "failed") $) 46)) (-3851 (((-1125) $) 9)) (-2071 (((-621 (-592 $)) $) 45)) (-1476 (($ (-114) $) 38) (($ (-114) (-621 $)) 37)) (-3421 (((-112) $ (-114)) 40) (((-112) $ (-1143)) 39)) (-4036 (((-747) $) 47)) (-3990 (((-1087) $) 10)) (-2979 (((-112) $ $) 35) (((-112) $ (-1143)) 34)) (-3450 (((-112) $) 23 (|has| $ (-1009 (-549))))) (-2686 (($ $ (-592 $) $) 67) (($ $ (-621 (-592 $)) (-621 $)) 66) (($ $ (-621 (-287 $))) 65) (($ $ (-287 $)) 64) (($ $ $ $) 63) (($ $ (-621 $) (-621 $)) 62) (($ $ (-621 (-1143)) (-621 (-1 $ $))) 33) (($ $ (-621 (-1143)) (-621 (-1 $ (-621 $)))) 32) (($ $ (-1143) (-1 $ (-621 $))) 31) (($ $ (-1143) (-1 $ $)) 30) (($ $ (-621 (-114)) (-621 (-1 $ $))) 29) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) 28) (($ $ (-114) (-1 $ (-621 $))) 27) (($ $ (-114) (-1 $ $)) 26)) (-3341 (($ (-114) $) 61) (($ (-114) $ $) 60) (($ (-114) $ $ $) 59) (($ (-114) $ $ $ $) 58) (($ (-114) (-621 $)) 57)) (-3433 (($ $) 49) (($ $ $) 48)) (-2815 (($ $) 24 (|has| $ (-1018)))) (-3846 (((-834) $) 11) (($ (-592 $)) 70)) (-4137 (($ $) 53) (($ (-621 $)) 52)) (-4285 (((-112) (-114)) 41)) (-2448 (((-112) $ $) 16)) (-2425 (((-112) $ $) 17)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 15)) (-2412 (((-112) $ $) 18)))
+(-13 (-1018) (-111 $ $) (-10 -7 (-6 -4329)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-4254 (($ (-1142) (-1142) (-1070) $) 17)) (-2128 (($ (-1142) (-621 (-936)) $) 22)) (-3321 (((-621 (-1051)) $) 10)) (-2124 (((-3 (-1070) "failed") (-1142) (-1142) $) 16)) (-3185 (((-3 (-621 (-936)) "failed") (-1142) $) 21)) (-3288 (($) 7)) (-3462 (($) 23)) (-3845 (((-834) $) 27)) (-3199 (($) 24)))
+(((-284) (-13 (-593 (-834)) (-10 -8 (-15 -3288 ($)) (-15 -3321 ((-621 (-1051)) $)) (-15 -2124 ((-3 (-1070) "failed") (-1142) (-1142) $)) (-15 -4254 ($ (-1142) (-1142) (-1070) $)) (-15 -3185 ((-3 (-621 (-936)) "failed") (-1142) $)) (-15 -2128 ($ (-1142) (-621 (-936)) $)) (-15 -3462 ($)) (-15 -3199 ($))))) (T -284))
+((-3288 (*1 *1) (-5 *1 (-284))) (-3321 (*1 *2 *1) (-12 (-5 *2 (-621 (-1051))) (-5 *1 (-284)))) (-2124 (*1 *2 *3 *3 *1) (|partial| -12 (-5 *3 (-1142)) (-5 *2 (-1070)) (-5 *1 (-284)))) (-4254 (*1 *1 *2 *2 *3 *1) (-12 (-5 *2 (-1142)) (-5 *3 (-1070)) (-5 *1 (-284)))) (-3185 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1142)) (-5 *2 (-621 (-936))) (-5 *1 (-284)))) (-2128 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-936))) (-5 *1 (-284)))) (-3462 (*1 *1) (-5 *1 (-284))) (-3199 (*1 *1) (-5 *1 (-284))))
+(-13 (-593 (-834)) (-10 -8 (-15 -3288 ($)) (-15 -3321 ((-621 (-1051)) $)) (-15 -2124 ((-3 (-1070) "failed") (-1142) (-1142) $)) (-15 -4254 ($ (-1142) (-1142) (-1070) $)) (-15 -3185 ((-3 (-621 (-936)) "failed") (-1142) $)) (-15 -2128 ($ (-1142) (-621 (-936)) $)) (-15 -3462 ($)) (-15 -3199 ($))))
+((-1436 (((-621 (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|)))) (|:| |geneigvec| (-621 (-665 (-400 (-923 |#1|))))))) (-665 (-400 (-923 |#1|)))) 85)) (-2855 (((-621 (-665 (-400 (-923 |#1|)))) (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|)))) (|:| |eigmult| (-747)) (|:| |eigvec| (-621 (-665 (-400 (-923 |#1|)))))) (-665 (-400 (-923 |#1|)))) 80) (((-621 (-665 (-400 (-923 |#1|)))) (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|))) (-665 (-400 (-923 |#1|))) (-747) (-747)) 38)) (-4166 (((-621 (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|)))) (|:| |eigmult| (-747)) (|:| |eigvec| (-621 (-665 (-400 (-923 |#1|))))))) (-665 (-400 (-923 |#1|)))) 82)) (-4137 (((-621 (-665 (-400 (-923 |#1|)))) (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|))) (-665 (-400 (-923 |#1|)))) 62)) (-3330 (((-621 (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|)))) (-665 (-400 (-923 |#1|)))) 61)) (-4019 (((-923 |#1|) (-665 (-400 (-923 |#1|)))) 50) (((-923 |#1|) (-665 (-400 (-923 |#1|))) (-1142)) 51)))
+(((-285 |#1|) (-10 -7 (-15 -4019 ((-923 |#1|) (-665 (-400 (-923 |#1|))) (-1142))) (-15 -4019 ((-923 |#1|) (-665 (-400 (-923 |#1|))))) (-15 -3330 ((-621 (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|)))) (-665 (-400 (-923 |#1|))))) (-15 -4137 ((-621 (-665 (-400 (-923 |#1|)))) (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|))) (-665 (-400 (-923 |#1|))))) (-15 -2855 ((-621 (-665 (-400 (-923 |#1|)))) (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|))) (-665 (-400 (-923 |#1|))) (-747) (-747))) (-15 -2855 ((-621 (-665 (-400 (-923 |#1|)))) (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|)))) (|:| |eigmult| (-747)) (|:| |eigvec| (-621 (-665 (-400 (-923 |#1|)))))) (-665 (-400 (-923 |#1|))))) (-15 -1436 ((-621 (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|)))) (|:| |geneigvec| (-621 (-665 (-400 (-923 |#1|))))))) (-665 (-400 (-923 |#1|))))) (-15 -4166 ((-621 (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|)))) (|:| |eigmult| (-747)) (|:| |eigvec| (-621 (-665 (-400 (-923 |#1|))))))) (-665 (-400 (-923 |#1|)))))) (-444)) (T -285))
+((-4166 (*1 *2 *3) (-12 (-4 *4 (-444)) (-5 *2 (-621 (-2 (|:| |eigval| (-3 (-400 (-923 *4)) (-1131 (-1142) (-923 *4)))) (|:| |eigmult| (-747)) (|:| |eigvec| (-621 (-665 (-400 (-923 *4)))))))) (-5 *1 (-285 *4)) (-5 *3 (-665 (-400 (-923 *4)))))) (-1436 (*1 *2 *3) (-12 (-4 *4 (-444)) (-5 *2 (-621 (-2 (|:| |eigval| (-3 (-400 (-923 *4)) (-1131 (-1142) (-923 *4)))) (|:| |geneigvec| (-621 (-665 (-400 (-923 *4)))))))) (-5 *1 (-285 *4)) (-5 *3 (-665 (-400 (-923 *4)))))) (-2855 (*1 *2 *3 *4) (-12 (-5 *3 (-2 (|:| |eigval| (-3 (-400 (-923 *5)) (-1131 (-1142) (-923 *5)))) (|:| |eigmult| (-747)) (|:| |eigvec| (-621 *4)))) (-4 *5 (-444)) (-5 *2 (-621 (-665 (-400 (-923 *5))))) (-5 *1 (-285 *5)) (-5 *4 (-665 (-400 (-923 *5)))))) (-2855 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-3 (-400 (-923 *6)) (-1131 (-1142) (-923 *6)))) (-5 *5 (-747)) (-4 *6 (-444)) (-5 *2 (-621 (-665 (-400 (-923 *6))))) (-5 *1 (-285 *6)) (-5 *4 (-665 (-400 (-923 *6)))))) (-4137 (*1 *2 *3 *4) (-12 (-5 *3 (-3 (-400 (-923 *5)) (-1131 (-1142) (-923 *5)))) (-4 *5 (-444)) (-5 *2 (-621 (-665 (-400 (-923 *5))))) (-5 *1 (-285 *5)) (-5 *4 (-665 (-400 (-923 *5)))))) (-3330 (*1 *2 *3) (-12 (-5 *3 (-665 (-400 (-923 *4)))) (-4 *4 (-444)) (-5 *2 (-621 (-3 (-400 (-923 *4)) (-1131 (-1142) (-923 *4))))) (-5 *1 (-285 *4)))) (-4019 (*1 *2 *3) (-12 (-5 *3 (-665 (-400 (-923 *4)))) (-5 *2 (-923 *4)) (-5 *1 (-285 *4)) (-4 *4 (-444)))) (-4019 (*1 *2 *3 *4) (-12 (-5 *3 (-665 (-400 (-923 *5)))) (-5 *4 (-1142)) (-5 *2 (-923 *5)) (-5 *1 (-285 *5)) (-4 *5 (-444)))))
+(-10 -7 (-15 -4019 ((-923 |#1|) (-665 (-400 (-923 |#1|))) (-1142))) (-15 -4019 ((-923 |#1|) (-665 (-400 (-923 |#1|))))) (-15 -3330 ((-621 (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|)))) (-665 (-400 (-923 |#1|))))) (-15 -4137 ((-621 (-665 (-400 (-923 |#1|)))) (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|))) (-665 (-400 (-923 |#1|))))) (-15 -2855 ((-621 (-665 (-400 (-923 |#1|)))) (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|))) (-665 (-400 (-923 |#1|))) (-747) (-747))) (-15 -2855 ((-621 (-665 (-400 (-923 |#1|)))) (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|)))) (|:| |eigmult| (-747)) (|:| |eigvec| (-621 (-665 (-400 (-923 |#1|)))))) (-665 (-400 (-923 |#1|))))) (-15 -1436 ((-621 (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|)))) (|:| |geneigvec| (-621 (-665 (-400 (-923 |#1|))))))) (-665 (-400 (-923 |#1|))))) (-15 -4166 ((-621 (-2 (|:| |eigval| (-3 (-400 (-923 |#1|)) (-1131 (-1142) (-923 |#1|)))) (|:| |eigmult| (-747)) (|:| |eigvec| (-621 (-665 (-400 (-923 |#1|))))))) (-665 (-400 (-923 |#1|))))))
+((-2795 (((-287 |#2|) (-1 |#2| |#1|) (-287 |#1|)) 14)))
+(((-286 |#1| |#2|) (-10 -7 (-15 -2795 ((-287 |#2|) (-1 |#2| |#1|) (-287 |#1|)))) (-1179) (-1179)) (T -286))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-287 *5)) (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-287 *6)) (-5 *1 (-286 *5 *6)))))
+(-10 -7 (-15 -2795 ((-287 |#2|) (-1 |#2| |#1|) (-287 |#1|))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3210 (((-112) $) NIL (|has| |#1| (-21)))) (-2028 (($ $) 12)) (-2416 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-3013 (($ $ $) 94 (|has| |#1| (-295)))) (-3034 (($) NIL (-1536 (|has| |#1| (-21)) (|has| |#1| (-703))) CONST)) (-3534 (($ $) 50 (|has| |#1| (-21)))) (-3846 (((-3 $ "failed") $) 61 (|has| |#1| (-703)))) (-2200 ((|#1| $) 11)) (-2612 (((-3 $ "failed") $) 59 (|has| |#1| (-703)))) (-2297 (((-112) $) NIL (|has| |#1| (-703)))) (-2795 (($ (-1 |#1| |#1|) $) 14)) (-2187 ((|#1| $) 10)) (-2748 (($ $) 49 (|has| |#1| (-21)))) (-3730 (((-3 $ "failed") $) 60 (|has| |#1| (-703)))) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-1990 (($ $) 63 (-1536 (|has| |#1| (-356)) (|has| |#1| (-465))))) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-2608 (((-621 $) $) 84 (|has| |#1| (-541)))) (-2684 (($ $ $) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 $)) 28 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-1142) |#1|) 17 (|has| |#1| (-505 (-1142) |#1|))) (($ $ (-621 (-1142)) (-621 |#1|)) 21 (|has| |#1| (-505 (-1142) |#1|)))) (-2388 (($ |#1| |#1|) 9)) (-2260 (((-133)) 89 (|has| |#1| (-356)))) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142)) 86 (|has| |#1| (-871 (-1142))))) (-1795 (($ $ $) NIL (|has| |#1| (-465)))) (-3870 (($ $ $) NIL (|has| |#1| (-465)))) (-3845 (($ (-549)) NIL (|has| |#1| (-1018))) (((-112) $) 36 (|has| |#1| (-1066))) (((-834) $) 35 (|has| |#1| (-1066)))) (-2371 (((-747)) 66 (|has| |#1| (-1018)))) (-3274 (($) 46 (|has| |#1| (-21)) CONST)) (-3286 (($) 56 (|has| |#1| (-703)) CONST)) (-1699 (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142))))) (-2387 (($ |#1| |#1|) 8) (((-112) $ $) 31 (|has| |#1| (-1066)))) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) 91 (-1536 (|has| |#1| (-356)) (|has| |#1| (-465))))) (-2498 (($ |#1| $) 44 (|has| |#1| (-21))) (($ $ |#1|) 45 (|has| |#1| (-21))) (($ $ $) 43 (|has| |#1| (-21))) (($ $) 42 (|has| |#1| (-21)))) (-2484 (($ |#1| $) 39 (|has| |#1| (-25))) (($ $ |#1|) 40 (|has| |#1| (-25))) (($ $ $) 38 (|has| |#1| (-25)))) (** (($ $ (-549)) NIL (|has| |#1| (-465))) (($ $ (-747)) NIL (|has| |#1| (-703))) (($ $ (-892)) NIL (|has| |#1| (-1078)))) (* (($ $ |#1|) 54 (|has| |#1| (-1078))) (($ |#1| $) 53 (|has| |#1| (-1078))) (($ $ $) 52 (|has| |#1| (-1078))) (($ (-549) $) 69 (|has| |#1| (-21))) (($ (-747) $) NIL (|has| |#1| (-21))) (($ (-892) $) NIL (|has| |#1| (-25)))))
+(((-287 |#1|) (-13 (-1179) (-10 -8 (-15 -2387 ($ |#1| |#1|)) (-15 -2388 ($ |#1| |#1|)) (-15 -2028 ($ $)) (-15 -2187 (|#1| $)) (-15 -2200 (|#1| $)) (-15 -2795 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-505 (-1142) |#1|)) (-6 (-505 (-1142) |#1|)) |%noBranch|) (IF (|has| |#1| (-1066)) (PROGN (-6 (-1066)) (-6 (-593 (-112))) (IF (|has| |#1| (-302 |#1|)) (PROGN (-15 -2684 ($ $ $)) (-15 -2684 ($ $ (-621 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -2484 ($ |#1| $)) (-15 -2484 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -2748 ($ $)) (-15 -3534 ($ $)) (-15 -2498 ($ |#1| $)) (-15 -2498 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1078)) (PROGN (-6 (-1078)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-703)) (PROGN (-6 (-703)) (-15 -3730 ((-3 $ "failed") $)) (-15 -3846 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-465)) (PROGN (-6 (-465)) (-15 -3730 ((-3 $ "failed") $)) (-15 -3846 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1018)) (PROGN (-6 (-1018)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-170)) (-6 (-694 |#1|)) |%noBranch|) (IF (|has| |#1| (-541)) (-15 -2608 ((-621 $) $)) |%noBranch|) (IF (|has| |#1| (-871 (-1142))) (-6 (-871 (-1142))) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-6 (-1232 |#1|)) (-15 -2511 ($ $ $)) (-15 -1990 ($ $))) |%noBranch|) (IF (|has| |#1| (-295)) (-15 -3013 ($ $ $)) |%noBranch|))) (-1179)) (T -287))
+((-2387 (*1 *1 *2 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1179)))) (-2388 (*1 *1 *2 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1179)))) (-2028 (*1 *1 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1179)))) (-2187 (*1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1179)))) (-2200 (*1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1179)))) (-2795 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1179)) (-5 *1 (-287 *3)))) (-2684 (*1 *1 *1 *1) (-12 (-4 *2 (-302 *2)) (-4 *2 (-1066)) (-4 *2 (-1179)) (-5 *1 (-287 *2)))) (-2684 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-287 *3))) (-4 *3 (-302 *3)) (-4 *3 (-1066)) (-4 *3 (-1179)) (-5 *1 (-287 *3)))) (-2484 (*1 *1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-25)) (-4 *2 (-1179)))) (-2484 (*1 *1 *1 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-25)) (-4 *2 (-1179)))) (-2748 (*1 *1 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-21)) (-4 *2 (-1179)))) (-3534 (*1 *1 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-21)) (-4 *2 (-1179)))) (-2498 (*1 *1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-21)) (-4 *2 (-1179)))) (-2498 (*1 *1 *1 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-21)) (-4 *2 (-1179)))) (-3730 (*1 *1 *1) (|partial| -12 (-5 *1 (-287 *2)) (-4 *2 (-703)) (-4 *2 (-1179)))) (-3846 (*1 *1 *1) (|partial| -12 (-5 *1 (-287 *2)) (-4 *2 (-703)) (-4 *2 (-1179)))) (-2608 (*1 *2 *1) (-12 (-5 *2 (-621 (-287 *3))) (-5 *1 (-287 *3)) (-4 *3 (-541)) (-4 *3 (-1179)))) (-3013 (*1 *1 *1 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-295)) (-4 *2 (-1179)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1078)) (-4 *2 (-1179)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1078)) (-4 *2 (-1179)))) (-2511 (*1 *1 *1 *1) (-1536 (-12 (-5 *1 (-287 *2)) (-4 *2 (-356)) (-4 *2 (-1179))) (-12 (-5 *1 (-287 *2)) (-4 *2 (-465)) (-4 *2 (-1179))))) (-1990 (*1 *1 *1) (-1536 (-12 (-5 *1 (-287 *2)) (-4 *2 (-356)) (-4 *2 (-1179))) (-12 (-5 *1 (-287 *2)) (-4 *2 (-465)) (-4 *2 (-1179))))))
+(-13 (-1179) (-10 -8 (-15 -2387 ($ |#1| |#1|)) (-15 -2388 ($ |#1| |#1|)) (-15 -2028 ($ $)) (-15 -2187 (|#1| $)) (-15 -2200 (|#1| $)) (-15 -2795 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-505 (-1142) |#1|)) (-6 (-505 (-1142) |#1|)) |%noBranch|) (IF (|has| |#1| (-1066)) (PROGN (-6 (-1066)) (-6 (-593 (-112))) (IF (|has| |#1| (-302 |#1|)) (PROGN (-15 -2684 ($ $ $)) (-15 -2684 ($ $ (-621 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -2484 ($ |#1| $)) (-15 -2484 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -2748 ($ $)) (-15 -3534 ($ $)) (-15 -2498 ($ |#1| $)) (-15 -2498 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1078)) (PROGN (-6 (-1078)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-703)) (PROGN (-6 (-703)) (-15 -3730 ((-3 $ "failed") $)) (-15 -3846 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-465)) (PROGN (-6 (-465)) (-15 -3730 ((-3 $ "failed") $)) (-15 -3846 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1018)) (PROGN (-6 (-1018)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-170)) (-6 (-694 |#1|)) |%noBranch|) (IF (|has| |#1| (-541)) (-15 -2608 ((-621 $) $)) |%noBranch|) (IF (|has| |#1| (-871 (-1142))) (-6 (-871 (-1142))) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-6 (-1232 |#1|)) (-15 -2511 ($ $ $)) (-15 -1990 ($ $))) |%noBranch|) (IF (|has| |#1| (-295)) (-15 -3013 ($ $ $)) |%noBranch|)))
+((-3832 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3732 (($) NIL) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3659 (((-1230) $ |#1| |#1|) NIL (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 ((|#2| $ |#1| |#2|) NIL)) (-3827 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-3489 (((-3 |#2| "failed") |#1| $) NIL)) (-3034 (($) NIL T CONST)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-3546 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-3 |#2| "failed") |#1| $) NIL)) (-3812 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-2556 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (|has| $ (-6 -4336))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-1875 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#2| $ |#1|) NIL)) (-2987 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) NIL)) (-2807 ((|#1| $) NIL (|has| |#1| (-823)))) (-3698 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3063 ((|#1| $) NIL (|has| |#1| (-823)))) (-1864 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4337))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3448 (((-621 |#1|) $) NIL)) (-2130 (((-112) |#1| $) NIL)) (-2548 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-1799 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-2296 (((-621 |#1|) $) NIL)) (-2284 (((-112) |#1| $) NIL)) (-3988 (((-1086) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3645 ((|#2| $) NIL (|has| |#1| (-823)))) (-3959 (((-3 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) "failed") (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL)) (-1943 (($ $ |#2|) NIL (|has| $ (-6 -4337)))) (-3536 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-3360 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3347 (((-621 |#2|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3226 (($) NIL) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3997 (((-747) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-747) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066)))) (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-594 (-525))))) (-3853 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3845 (((-834) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-593 (-834))) (|has| |#2| (-593 (-834)))))) (-4213 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3025 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-288 |#1| |#2|) (-13 (-1155 |#1| |#2|) (-10 -7 (-6 -4336))) (-1066) (-1066)) (T -288))
+NIL
+(-13 (-1155 |#1| |#2|) (-10 -7 (-6 -4336)))
+((-3040 (((-305) (-1124) (-621 (-1124))) 16) (((-305) (-1124) (-1124)) 15) (((-305) (-621 (-1124))) 14) (((-305) (-1124)) 12)))
+(((-289) (-10 -7 (-15 -3040 ((-305) (-1124))) (-15 -3040 ((-305) (-621 (-1124)))) (-15 -3040 ((-305) (-1124) (-1124))) (-15 -3040 ((-305) (-1124) (-621 (-1124)))))) (T -289))
+((-3040 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-1124))) (-5 *3 (-1124)) (-5 *2 (-305)) (-5 *1 (-289)))) (-3040 (*1 *2 *3 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-305)) (-5 *1 (-289)))) (-3040 (*1 *2 *3) (-12 (-5 *3 (-621 (-1124))) (-5 *2 (-305)) (-5 *1 (-289)))) (-3040 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-305)) (-5 *1 (-289)))))
+(-10 -7 (-15 -3040 ((-305) (-1124))) (-15 -3040 ((-305) (-621 (-1124)))) (-15 -3040 ((-305) (-1124) (-1124))) (-15 -3040 ((-305) (-1124) (-621 (-1124)))))
+((-2795 ((|#2| (-1 |#2| |#1|) (-1124) (-592 |#1|)) 18)))
+(((-290 |#1| |#2|) (-10 -7 (-15 -2795 (|#2| (-1 |#2| |#1|) (-1124) (-592 |#1|)))) (-295) (-1179)) (T -290))
+((-2795 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1124)) (-5 *5 (-592 *6)) (-4 *6 (-295)) (-4 *2 (-1179)) (-5 *1 (-290 *6 *2)))))
+(-10 -7 (-15 -2795 (|#2| (-1 |#2| |#1|) (-1124) (-592 |#1|))))
+((-2795 ((|#2| (-1 |#2| |#1|) (-592 |#1|)) 17)))
+(((-291 |#1| |#2|) (-10 -7 (-15 -2795 (|#2| (-1 |#2| |#1|) (-592 |#1|)))) (-295) (-295)) (T -291))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-592 *5)) (-4 *5 (-295)) (-4 *2 (-295)) (-5 *1 (-291 *5 *2)))))
+(-10 -7 (-15 -2795 (|#2| (-1 |#2| |#1|) (-592 |#1|))))
+((-3106 (((-112) (-219)) 10)))
+(((-292 |#1| |#2|) (-10 -7 (-15 -3106 ((-112) (-219)))) (-219) (-219)) (T -292))
+((-3106 (*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-112)) (-5 *1 (-292 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
+(-10 -7 (-15 -3106 ((-112) (-219))))
+((-3804 (((-1122 (-219)) (-309 (-219)) (-621 (-1142)) (-1060 (-816 (-219)))) 93)) (-1752 (((-1122 (-219)) (-1225 (-309 (-219))) (-621 (-1142)) (-1060 (-816 (-219)))) 107) (((-1122 (-219)) (-309 (-219)) (-621 (-1142)) (-1060 (-816 (-219)))) 61)) (-1595 (((-621 (-1124)) (-1122 (-219))) NIL)) (-2543 (((-621 (-219)) (-309 (-219)) (-1142) (-1060 (-816 (-219)))) 58)) (-3600 (((-621 (-219)) (-923 (-400 (-549))) (-1142) (-1060 (-816 (-219)))) 49)) (-4086 (((-621 (-1124)) (-621 (-219))) NIL)) (-3003 (((-219) (-1060 (-816 (-219)))) 25)) (-3077 (((-219) (-1060 (-816 (-219)))) 26)) (-3346 (((-112) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 54)) (-4214 (((-1124) (-219)) NIL)))
+(((-293) (-10 -7 (-15 -3003 ((-219) (-1060 (-816 (-219))))) (-15 -3077 ((-219) (-1060 (-816 (-219))))) (-15 -3346 ((-112) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2543 ((-621 (-219)) (-309 (-219)) (-1142) (-1060 (-816 (-219))))) (-15 -3804 ((-1122 (-219)) (-309 (-219)) (-621 (-1142)) (-1060 (-816 (-219))))) (-15 -1752 ((-1122 (-219)) (-309 (-219)) (-621 (-1142)) (-1060 (-816 (-219))))) (-15 -1752 ((-1122 (-219)) (-1225 (-309 (-219))) (-621 (-1142)) (-1060 (-816 (-219))))) (-15 -3600 ((-621 (-219)) (-923 (-400 (-549))) (-1142) (-1060 (-816 (-219))))) (-15 -4214 ((-1124) (-219))) (-15 -4086 ((-621 (-1124)) (-621 (-219)))) (-15 -1595 ((-621 (-1124)) (-1122 (-219)))))) (T -293))
+((-1595 (*1 *2 *3) (-12 (-5 *3 (-1122 (-219))) (-5 *2 (-621 (-1124))) (-5 *1 (-293)))) (-4086 (*1 *2 *3) (-12 (-5 *3 (-621 (-219))) (-5 *2 (-621 (-1124))) (-5 *1 (-293)))) (-4214 (*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-1124)) (-5 *1 (-293)))) (-3600 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-923 (-400 (-549)))) (-5 *4 (-1142)) (-5 *5 (-1060 (-816 (-219)))) (-5 *2 (-621 (-219))) (-5 *1 (-293)))) (-1752 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1225 (-309 (-219)))) (-5 *4 (-621 (-1142))) (-5 *5 (-1060 (-816 (-219)))) (-5 *2 (-1122 (-219))) (-5 *1 (-293)))) (-1752 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-309 (-219))) (-5 *4 (-621 (-1142))) (-5 *5 (-1060 (-816 (-219)))) (-5 *2 (-1122 (-219))) (-5 *1 (-293)))) (-3804 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-309 (-219))) (-5 *4 (-621 (-1142))) (-5 *5 (-1060 (-816 (-219)))) (-5 *2 (-1122 (-219))) (-5 *1 (-293)))) (-2543 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-309 (-219))) (-5 *4 (-1142)) (-5 *5 (-1060 (-816 (-219)))) (-5 *2 (-621 (-219))) (-5 *1 (-293)))) (-3346 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-112)) (-5 *1 (-293)))) (-3077 (*1 *2 *3) (-12 (-5 *3 (-1060 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-293)))) (-3003 (*1 *2 *3) (-12 (-5 *3 (-1060 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-293)))))
+(-10 -7 (-15 -3003 ((-219) (-1060 (-816 (-219))))) (-15 -3077 ((-219) (-1060 (-816 (-219))))) (-15 -3346 ((-112) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2543 ((-621 (-219)) (-309 (-219)) (-1142) (-1060 (-816 (-219))))) (-15 -3804 ((-1122 (-219)) (-309 (-219)) (-621 (-1142)) (-1060 (-816 (-219))))) (-15 -1752 ((-1122 (-219)) (-309 (-219)) (-621 (-1142)) (-1060 (-816 (-219))))) (-15 -1752 ((-1122 (-219)) (-1225 (-309 (-219))) (-621 (-1142)) (-1060 (-816 (-219))))) (-15 -3600 ((-621 (-219)) (-923 (-400 (-549))) (-1142) (-1060 (-816 (-219))))) (-15 -4214 ((-1124) (-219))) (-15 -4086 ((-621 (-1124)) (-621 (-219)))) (-15 -1595 ((-621 (-1124)) (-1122 (-219)))))
+((-1979 (((-621 (-592 $)) $) 30)) (-3013 (($ $ (-287 $)) 81) (($ $ (-621 (-287 $))) 123) (($ $ (-621 (-592 $)) (-621 $)) NIL)) (-2712 (((-3 (-592 $) "failed") $) 113)) (-2657 (((-592 $) $) 112)) (-4158 (($ $) 19) (($ (-621 $)) 56)) (-3724 (((-621 (-114)) $) 38)) (-3500 (((-114) (-114)) 91)) (-2803 (((-112) $) 131)) (-2795 (($ (-1 $ $) (-592 $)) 89)) (-2197 (((-3 (-592 $) "failed") $) 93)) (-1475 (($ (-114) $) 61) (($ (-114) (-621 $)) 100)) (-3673 (((-112) $ (-114)) 117) (((-112) $ (-1142)) 116)) (-4036 (((-747) $) 46)) (-2934 (((-112) $ $) 59) (((-112) $ (-1142)) 51)) (-1980 (((-112) $) 129)) (-2684 (($ $ (-592 $) $) NIL) (($ $ (-621 (-592 $)) (-621 $)) NIL) (($ $ (-621 (-287 $))) 121) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-621 (-1142)) (-621 (-1 $ $))) 84) (($ $ (-621 (-1142)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-1142) (-1 $ (-621 $))) 69) (($ $ (-1142) (-1 $ $)) 75) (($ $ (-621 (-114)) (-621 (-1 $ $))) 83) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) 85) (($ $ (-114) (-1 $ (-621 $))) 71) (($ $ (-114) (-1 $ $)) 77)) (-3339 (($ (-114) $) 62) (($ (-114) $ $) 63) (($ (-114) $ $ $) 64) (($ (-114) $ $ $ $) 65) (($ (-114) (-621 $)) 109)) (-3205 (($ $) 53) (($ $ $) 119)) (-4136 (($ $) 17) (($ (-621 $)) 55)) (-2444 (((-112) (-114)) 22)))
+(((-294 |#1|) (-10 -8 (-15 -2803 ((-112) |#1|)) (-15 -1980 ((-112) |#1|)) (-15 -2684 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -2684 (|#1| |#1| (-114) (-1 |#1| (-621 |#1|)))) (-15 -2684 (|#1| |#1| (-621 (-114)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2684 (|#1| |#1| (-621 (-114)) (-621 (-1 |#1| |#1|)))) (-15 -2684 (|#1| |#1| (-1142) (-1 |#1| |#1|))) (-15 -2684 (|#1| |#1| (-1142) (-1 |#1| (-621 |#1|)))) (-15 -2684 (|#1| |#1| (-621 (-1142)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2684 (|#1| |#1| (-621 (-1142)) (-621 (-1 |#1| |#1|)))) (-15 -2934 ((-112) |#1| (-1142))) (-15 -2934 ((-112) |#1| |#1|)) (-15 -2795 (|#1| (-1 |#1| |#1|) (-592 |#1|))) (-15 -1475 (|#1| (-114) (-621 |#1|))) (-15 -1475 (|#1| (-114) |#1|)) (-15 -3673 ((-112) |#1| (-1142))) (-15 -3673 ((-112) |#1| (-114))) (-15 -2444 ((-112) (-114))) (-15 -3500 ((-114) (-114))) (-15 -3724 ((-621 (-114)) |#1|)) (-15 -1979 ((-621 (-592 |#1|)) |#1|)) (-15 -2197 ((-3 (-592 |#1|) "failed") |#1|)) (-15 -4036 ((-747) |#1|)) (-15 -3205 (|#1| |#1| |#1|)) (-15 -3205 (|#1| |#1|)) (-15 -4158 (|#1| (-621 |#1|))) (-15 -4158 (|#1| |#1|)) (-15 -4136 (|#1| (-621 |#1|))) (-15 -4136 (|#1| |#1|)) (-15 -3013 (|#1| |#1| (-621 (-592 |#1|)) (-621 |#1|))) (-15 -3013 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -3013 (|#1| |#1| (-287 |#1|))) (-15 -3339 (|#1| (-114) (-621 |#1|))) (-15 -3339 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -3339 (|#1| (-114) |#1| |#1| |#1|)) (-15 -3339 (|#1| (-114) |#1| |#1|)) (-15 -3339 (|#1| (-114) |#1|)) (-15 -2684 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2684 (|#1| |#1| |#1| |#1|)) (-15 -2684 (|#1| |#1| (-287 |#1|))) (-15 -2684 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -2684 (|#1| |#1| (-621 (-592 |#1|)) (-621 |#1|))) (-15 -2684 (|#1| |#1| (-592 |#1|) |#1|)) (-15 -2657 ((-592 |#1|) |#1|)) (-15 -2712 ((-3 (-592 |#1|) "failed") |#1|))) (-295)) (T -294))
+((-3500 (*1 *2 *2) (-12 (-5 *2 (-114)) (-5 *1 (-294 *3)) (-4 *3 (-295)))) (-2444 (*1 *2 *3) (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-294 *4)) (-4 *4 (-295)))))
+(-10 -8 (-15 -2803 ((-112) |#1|)) (-15 -1980 ((-112) |#1|)) (-15 -2684 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -2684 (|#1| |#1| (-114) (-1 |#1| (-621 |#1|)))) (-15 -2684 (|#1| |#1| (-621 (-114)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2684 (|#1| |#1| (-621 (-114)) (-621 (-1 |#1| |#1|)))) (-15 -2684 (|#1| |#1| (-1142) (-1 |#1| |#1|))) (-15 -2684 (|#1| |#1| (-1142) (-1 |#1| (-621 |#1|)))) (-15 -2684 (|#1| |#1| (-621 (-1142)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2684 (|#1| |#1| (-621 (-1142)) (-621 (-1 |#1| |#1|)))) (-15 -2934 ((-112) |#1| (-1142))) (-15 -2934 ((-112) |#1| |#1|)) (-15 -2795 (|#1| (-1 |#1| |#1|) (-592 |#1|))) (-15 -1475 (|#1| (-114) (-621 |#1|))) (-15 -1475 (|#1| (-114) |#1|)) (-15 -3673 ((-112) |#1| (-1142))) (-15 -3673 ((-112) |#1| (-114))) (-15 -2444 ((-112) (-114))) (-15 -3500 ((-114) (-114))) (-15 -3724 ((-621 (-114)) |#1|)) (-15 -1979 ((-621 (-592 |#1|)) |#1|)) (-15 -2197 ((-3 (-592 |#1|) "failed") |#1|)) (-15 -4036 ((-747) |#1|)) (-15 -3205 (|#1| |#1| |#1|)) (-15 -3205 (|#1| |#1|)) (-15 -4158 (|#1| (-621 |#1|))) (-15 -4158 (|#1| |#1|)) (-15 -4136 (|#1| (-621 |#1|))) (-15 -4136 (|#1| |#1|)) (-15 -3013 (|#1| |#1| (-621 (-592 |#1|)) (-621 |#1|))) (-15 -3013 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -3013 (|#1| |#1| (-287 |#1|))) (-15 -3339 (|#1| (-114) (-621 |#1|))) (-15 -3339 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -3339 (|#1| (-114) |#1| |#1| |#1|)) (-15 -3339 (|#1| (-114) |#1| |#1|)) (-15 -3339 (|#1| (-114) |#1|)) (-15 -2684 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2684 (|#1| |#1| |#1| |#1|)) (-15 -2684 (|#1| |#1| (-287 |#1|))) (-15 -2684 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -2684 (|#1| |#1| (-621 (-592 |#1|)) (-621 |#1|))) (-15 -2684 (|#1| |#1| (-592 |#1|) |#1|)) (-15 -2657 ((-592 |#1|) |#1|)) (-15 -2712 ((-3 (-592 |#1|) "failed") |#1|)))
+((-3832 (((-112) $ $) 7)) (-1979 (((-621 (-592 $)) $) 44)) (-3013 (($ $ (-287 $)) 56) (($ $ (-621 (-287 $))) 55) (($ $ (-621 (-592 $)) (-621 $)) 54)) (-2712 (((-3 (-592 $) "failed") $) 69)) (-2657 (((-592 $) $) 68)) (-4158 (($ $) 51) (($ (-621 $)) 50)) (-3724 (((-621 (-114)) $) 43)) (-3500 (((-114) (-114)) 42)) (-2803 (((-112) $) 22 (|has| $ (-1009 (-549))))) (-1797 (((-1138 $) (-592 $)) 25 (|has| $ (-1018)))) (-2861 (($ $ $) 13)) (-3574 (($ $ $) 14)) (-2795 (($ (-1 $ $) (-592 $)) 36)) (-2197 (((-3 (-592 $) "failed") $) 46)) (-3441 (((-1124) $) 9)) (-2059 (((-621 (-592 $)) $) 45)) (-1475 (($ (-114) $) 38) (($ (-114) (-621 $)) 37)) (-3673 (((-112) $ (-114)) 40) (((-112) $ (-1142)) 39)) (-4036 (((-747) $) 47)) (-3988 (((-1086) $) 10)) (-2934 (((-112) $ $) 35) (((-112) $ (-1142)) 34)) (-1980 (((-112) $) 23 (|has| $ (-1009 (-549))))) (-2684 (($ $ (-592 $) $) 67) (($ $ (-621 (-592 $)) (-621 $)) 66) (($ $ (-621 (-287 $))) 65) (($ $ (-287 $)) 64) (($ $ $ $) 63) (($ $ (-621 $) (-621 $)) 62) (($ $ (-621 (-1142)) (-621 (-1 $ $))) 33) (($ $ (-621 (-1142)) (-621 (-1 $ (-621 $)))) 32) (($ $ (-1142) (-1 $ (-621 $))) 31) (($ $ (-1142) (-1 $ $)) 30) (($ $ (-621 (-114)) (-621 (-1 $ $))) 29) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) 28) (($ $ (-114) (-1 $ (-621 $))) 27) (($ $ (-114) (-1 $ $)) 26)) (-3339 (($ (-114) $) 61) (($ (-114) $ $) 60) (($ (-114) $ $ $) 59) (($ (-114) $ $ $ $) 58) (($ (-114) (-621 $)) 57)) (-3205 (($ $) 49) (($ $ $) 48)) (-1262 (($ $) 24 (|has| $ (-1018)))) (-3845 (((-834) $) 11) (($ (-592 $)) 70)) (-4136 (($ $) 53) (($ (-621 $)) 52)) (-2444 (((-112) (-114)) 41)) (-2447 (((-112) $ $) 16)) (-2423 (((-112) $ $) 17)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 15)) (-2409 (((-112) $ $) 18)))
(((-295) (-138)) (T -295))
-((-3341 (*1 *1 *2 *1) (-12 (-4 *1 (-295)) (-5 *2 (-114)))) (-3341 (*1 *1 *2 *1 *1) (-12 (-4 *1 (-295)) (-5 *2 (-114)))) (-3341 (*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-295)) (-5 *2 (-114)))) (-3341 (*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-295)) (-5 *2 (-114)))) (-3341 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-621 *1)) (-4 *1 (-295)))) (-3015 (*1 *1 *1 *2) (-12 (-5 *2 (-287 *1)) (-4 *1 (-295)))) (-3015 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-287 *1))) (-4 *1 (-295)))) (-3015 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-592 *1))) (-5 *3 (-621 *1)) (-4 *1 (-295)))) (-4137 (*1 *1 *1) (-4 *1 (-295))) (-4137 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-295)))) (-3225 (*1 *1 *1) (-4 *1 (-295))) (-3225 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-295)))) (-3433 (*1 *1 *1) (-4 *1 (-295))) (-3433 (*1 *1 *1 *1) (-4 *1 (-295))) (-4036 (*1 *2 *1) (-12 (-4 *1 (-295)) (-5 *2 (-747)))) (-2634 (*1 *2 *1) (|partial| -12 (-5 *2 (-592 *1)) (-4 *1 (-295)))) (-2071 (*1 *2 *1) (-12 (-5 *2 (-621 (-592 *1))) (-4 *1 (-295)))) (-1981 (*1 *2 *1) (-12 (-5 *2 (-621 (-592 *1))) (-4 *1 (-295)))) (-2162 (*1 *2 *1) (-12 (-4 *1 (-295)) (-5 *2 (-621 (-114))))) (-2834 (*1 *2 *2) (-12 (-4 *1 (-295)) (-5 *2 (-114)))) (-4285 (*1 *2 *3) (-12 (-4 *1 (-295)) (-5 *3 (-114)) (-5 *2 (-112)))) (-3421 (*1 *2 *1 *3) (-12 (-4 *1 (-295)) (-5 *3 (-114)) (-5 *2 (-112)))) (-3421 (*1 *2 *1 *3) (-12 (-4 *1 (-295)) (-5 *3 (-1143)) (-5 *2 (-112)))) (-1476 (*1 *1 *2 *1) (-12 (-4 *1 (-295)) (-5 *2 (-114)))) (-1476 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-621 *1)) (-4 *1 (-295)))) (-2797 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-592 *1)) (-4 *1 (-295)))) (-2979 (*1 *2 *1 *1) (-12 (-4 *1 (-295)) (-5 *2 (-112)))) (-2979 (*1 *2 *1 *3) (-12 (-4 *1 (-295)) (-5 *3 (-1143)) (-5 *2 (-112)))) (-2686 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-1143))) (-5 *3 (-621 (-1 *1 *1))) (-4 *1 (-295)))) (-2686 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-1143))) (-5 *3 (-621 (-1 *1 (-621 *1)))) (-4 *1 (-295)))) (-2686 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1 *1 (-621 *1))) (-4 *1 (-295)))) (-2686 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1 *1 *1)) (-4 *1 (-295)))) (-2686 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-114))) (-5 *3 (-621 (-1 *1 *1))) (-4 *1 (-295)))) (-2686 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-114))) (-5 *3 (-621 (-1 *1 (-621 *1)))) (-4 *1 (-295)))) (-2686 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *1 (-621 *1))) (-4 *1 (-295)))) (-2686 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *1 *1)) (-4 *1 (-295)))) (-1549 (*1 *2 *3) (-12 (-5 *3 (-592 *1)) (-4 *1 (-1018)) (-4 *1 (-295)) (-5 *2 (-1139 *1)))) (-2815 (*1 *1 *1) (-12 (-4 *1 (-1018)) (-4 *1 (-295)))) (-3450 (*1 *2 *1) (-12 (-4 *1 (-1009 (-549))) (-4 *1 (-295)) (-5 *2 (-112)))) (-3559 (*1 *2 *1) (-12 (-4 *1 (-1009 (-549))) (-4 *1 (-295)) (-5 *2 (-112)))))
-(-13 (-823) (-1009 (-592 $)) (-505 (-592 $) $) (-302 $) (-10 -8 (-15 -3341 ($ (-114) $)) (-15 -3341 ($ (-114) $ $)) (-15 -3341 ($ (-114) $ $ $)) (-15 -3341 ($ (-114) $ $ $ $)) (-15 -3341 ($ (-114) (-621 $))) (-15 -3015 ($ $ (-287 $))) (-15 -3015 ($ $ (-621 (-287 $)))) (-15 -3015 ($ $ (-621 (-592 $)) (-621 $))) (-15 -4137 ($ $)) (-15 -4137 ($ (-621 $))) (-15 -3225 ($ $)) (-15 -3225 ($ (-621 $))) (-15 -3433 ($ $)) (-15 -3433 ($ $ $)) (-15 -4036 ((-747) $)) (-15 -2634 ((-3 (-592 $) "failed") $)) (-15 -2071 ((-621 (-592 $)) $)) (-15 -1981 ((-621 (-592 $)) $)) (-15 -2162 ((-621 (-114)) $)) (-15 -2834 ((-114) (-114))) (-15 -4285 ((-112) (-114))) (-15 -3421 ((-112) $ (-114))) (-15 -3421 ((-112) $ (-1143))) (-15 -1476 ($ (-114) $)) (-15 -1476 ($ (-114) (-621 $))) (-15 -2797 ($ (-1 $ $) (-592 $))) (-15 -2979 ((-112) $ $)) (-15 -2979 ((-112) $ (-1143))) (-15 -2686 ($ $ (-621 (-1143)) (-621 (-1 $ $)))) (-15 -2686 ($ $ (-621 (-1143)) (-621 (-1 $ (-621 $))))) (-15 -2686 ($ $ (-1143) (-1 $ (-621 $)))) (-15 -2686 ($ $ (-1143) (-1 $ $))) (-15 -2686 ($ $ (-621 (-114)) (-621 (-1 $ $)))) (-15 -2686 ($ $ (-621 (-114)) (-621 (-1 $ (-621 $))))) (-15 -2686 ($ $ (-114) (-1 $ (-621 $)))) (-15 -2686 ($ $ (-114) (-1 $ $))) (IF (|has| $ (-1018)) (PROGN (-15 -1549 ((-1139 $) (-592 $))) (-15 -2815 ($ $))) |%noBranch|) (IF (|has| $ (-1009 (-549))) (PROGN (-15 -3450 ((-112) $)) (-15 -3559 ((-112) $))) |%noBranch|)))
-(((-101) . T) ((-593 (-834)) . T) ((-302 $) . T) ((-505 (-592 $) $) . T) ((-505 $ $) . T) ((-823) . T) ((-1009 (-592 $)) . T) ((-1067) . T))
-((-3435 (((-621 |#1|) (-621 |#1|)) 10)))
-(((-296 |#1|) (-10 -7 (-15 -3435 ((-621 |#1|) (-621 |#1|)))) (-821)) (T -296))
-((-3435 (*1 *2 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-821)) (-5 *1 (-296 *3)))))
-(-10 -7 (-15 -3435 ((-621 |#1|) (-621 |#1|))))
-((-2797 (((-665 |#2|) (-1 |#2| |#1|) (-665 |#1|)) 17)))
-(((-297 |#1| |#2|) (-10 -7 (-15 -2797 ((-665 |#2|) (-1 |#2| |#1|) (-665 |#1|)))) (-1018) (-1018)) (T -297))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-665 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *2 (-665 *6)) (-5 *1 (-297 *5 *6)))))
-(-10 -7 (-15 -2797 ((-665 |#2|) (-1 |#2| |#1|) (-665 |#1|))))
-((-1749 (((-1226 (-309 (-372))) (-1226 (-309 (-219)))) 105)) (-2284 (((-1061 (-816 (-219))) (-1061 (-816 (-372)))) 40)) (-1972 (((-621 (-1125)) (-1123 (-219))) 87)) (-1890 (((-309 (-372)) (-923 (-219))) 50)) (-3253 (((-219) (-923 (-219))) 46)) (-2793 (((-1125) (-372)) 169)) (-2621 (((-816 (-219)) (-816 (-372))) 34)) (-2054 (((-2 (|:| |additions| (-549)) (|:| |multiplications| (-549)) (|:| |exponentiations| (-549)) (|:| |functionCalls| (-549))) (-1226 (-309 (-219)))) 143)) (-1772 (((-1006) (-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))) (|:| |extra| (-1006)))) 181) (((-1006) (-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))))) 179)) (-3521 (((-665 (-219)) (-621 (-219)) (-747)) 14)) (-4201 (((-1226 (-675)) (-621 (-219))) 94)) (-2965 (((-621 (-1125)) (-621 (-219))) 75)) (-3984 (((-3 (-309 (-219)) "failed") (-309 (-219))) 120)) (-1818 (((-112) (-219) (-1061 (-816 (-219)))) 109)) (-3810 (((-1006) (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372)))) 198)) (-2980 (((-219) (-1061 (-816 (-219)))) 107)) (-3431 (((-219) (-1061 (-816 (-219)))) 108)) (-3262 (((-219) (-400 (-549))) 27)) (-1829 (((-1125) (-372)) 73)) (-1982 (((-219) (-372)) 17)) (-2143 (((-372) (-1226 (-309 (-219)))) 154)) (-1737 (((-309 (-219)) (-309 (-372))) 23)) (-2993 (((-400 (-549)) (-309 (-219))) 53)) (-1804 (((-309 (-400 (-549))) (-309 (-219))) 69)) (-2086 (((-309 (-372)) (-309 (-219))) 98)) (-2026 (((-219) (-309 (-219))) 54)) (-4231 (((-621 (-219)) (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))) 64)) (-4136 (((-1061 (-816 (-219))) (-1061 (-816 (-219)))) 61)) (-2649 (((-1125) (-219)) 72)) (-2678 (((-675) (-219)) 90)) (-2163 (((-400 (-549)) (-219)) 55)) (-3714 (((-309 (-372)) (-219)) 49)) (-2845 (((-621 (-1061 (-816 (-219)))) (-621 (-1061 (-816 (-372))))) 43)) (-1952 (((-1006) (-621 (-1006))) 165) (((-1006) (-1006) (-1006)) 162)) (-3399 (((-1006) (-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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)))
-(((-298) (-10 -7 (-15 -1982 ((-219) (-372))) (-15 -1737 ((-309 (-219)) (-309 (-372)))) (-15 -2621 ((-816 (-219)) (-816 (-372)))) (-15 -2284 ((-1061 (-816 (-219))) (-1061 (-816 (-372))))) (-15 -2845 ((-621 (-1061 (-816 (-219)))) (-621 (-1061 (-816 (-372)))))) (-15 -2163 ((-400 (-549)) (-219))) (-15 -2993 ((-400 (-549)) (-309 (-219)))) (-15 -2026 ((-219) (-309 (-219)))) (-15 -3984 ((-3 (-309 (-219)) "failed") (-309 (-219)))) (-15 -2143 ((-372) (-1226 (-309 (-219))))) (-15 -2054 ((-2 (|:| |additions| (-549)) (|:| |multiplications| (-549)) (|:| |exponentiations| (-549)) (|:| |functionCalls| (-549))) (-1226 (-309 (-219))))) (-15 -1804 ((-309 (-400 (-549))) (-309 (-219)))) (-15 -4136 ((-1061 (-816 (-219))) (-1061 (-816 (-219))))) (-15 -4231 ((-621 (-219)) (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))))) (-15 -2678 ((-675) (-219))) (-15 -4201 ((-1226 (-675)) (-621 (-219)))) (-15 -2086 ((-309 (-372)) (-309 (-219)))) (-15 -1749 ((-1226 (-309 (-372))) (-1226 (-309 (-219))))) (-15 -1818 ((-112) (-219) (-1061 (-816 (-219))))) (-15 -2649 ((-1125) (-219))) (-15 -1829 ((-1125) (-372))) (-15 -2965 ((-621 (-1125)) (-621 (-219)))) (-15 -1972 ((-621 (-1125)) (-1123 (-219)))) (-15 -2980 ((-219) (-1061 (-816 (-219))))) (-15 -3431 ((-219) (-1061 (-816 (-219))))) (-15 -1952 ((-1006) (-1006) (-1006))) (-15 -1952 ((-1006) (-621 (-1006)))) (-15 -2793 ((-1125) (-372))) (-15 -1772 ((-1006) (-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))))) (-15 -1772 ((-1006) (-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))) (|:| |extra| (-1006))))) (-15 -3399 ((-1006) (-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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 -3810 ((-1006) (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))))) (-15 -1890 ((-309 (-372)) (-923 (-219)))) (-15 -3253 ((-219) (-923 (-219)))) (-15 -3714 ((-309 (-372)) (-219))) (-15 -3262 ((-219) (-400 (-549)))) (-15 -3521 ((-665 (-219)) (-621 (-219)) (-747))))) (T -298))
-((-3521 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-219))) (-5 *4 (-747)) (-5 *2 (-665 (-219))) (-5 *1 (-298)))) (-3262 (*1 *2 *3) (-12 (-5 *3 (-400 (-549))) (-5 *2 (-219)) (-5 *1 (-298)))) (-3714 (*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-309 (-372))) (-5 *1 (-298)))) (-3253 (*1 *2 *3) (-12 (-5 *3 (-923 (-219))) (-5 *2 (-219)) (-5 *1 (-298)))) (-1890 (*1 *2 *3) (-12 (-5 *3 (-923 (-219))) (-5 *2 (-309 (-372))) (-5 *1 (-298)))) (-3810 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372)))) (-5 *2 (-1006)) (-5 *1 (-298)))) (-3399 (*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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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 (-1006)) (-5 *1 (-298)))) (-1772 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))) (|:| |extra| (-1006)))) (-5 *2 (-1006)) (-5 *1 (-298)))) (-1772 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))))) (-5 *2 (-1006)) (-5 *1 (-298)))) (-2793 (*1 *2 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1125)) (-5 *1 (-298)))) (-1952 (*1 *2 *3) (-12 (-5 *3 (-621 (-1006))) (-5 *2 (-1006)) (-5 *1 (-298)))) (-1952 (*1 *2 *2 *2) (-12 (-5 *2 (-1006)) (-5 *1 (-298)))) (-3431 (*1 *2 *3) (-12 (-5 *3 (-1061 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-298)))) (-2980 (*1 *2 *3) (-12 (-5 *3 (-1061 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-298)))) (-1972 (*1 *2 *3) (-12 (-5 *3 (-1123 (-219))) (-5 *2 (-621 (-1125))) (-5 *1 (-298)))) (-2965 (*1 *2 *3) (-12 (-5 *3 (-621 (-219))) (-5 *2 (-621 (-1125))) (-5 *1 (-298)))) (-1829 (*1 *2 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1125)) (-5 *1 (-298)))) (-2649 (*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-1125)) (-5 *1 (-298)))) (-1818 (*1 *2 *3 *4) (-12 (-5 *4 (-1061 (-816 (-219)))) (-5 *3 (-219)) (-5 *2 (-112)) (-5 *1 (-298)))) (-1749 (*1 *2 *3) (-12 (-5 *3 (-1226 (-309 (-219)))) (-5 *2 (-1226 (-309 (-372)))) (-5 *1 (-298)))) (-2086 (*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-309 (-372))) (-5 *1 (-298)))) (-4201 (*1 *2 *3) (-12 (-5 *3 (-621 (-219))) (-5 *2 (-1226 (-675))) (-5 *1 (-298)))) (-2678 (*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-675)) (-5 *1 (-298)))) (-4231 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))) (-5 *2 (-621 (-219))) (-5 *1 (-298)))) (-4136 (*1 *2 *2) (-12 (-5 *2 (-1061 (-816 (-219)))) (-5 *1 (-298)))) (-1804 (*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-309 (-400 (-549)))) (-5 *1 (-298)))) (-2054 (*1 *2 *3) (-12 (-5 *3 (-1226 (-309 (-219)))) (-5 *2 (-2 (|:| |additions| (-549)) (|:| |multiplications| (-549)) (|:| |exponentiations| (-549)) (|:| |functionCalls| (-549)))) (-5 *1 (-298)))) (-2143 (*1 *2 *3) (-12 (-5 *3 (-1226 (-309 (-219)))) (-5 *2 (-372)) (-5 *1 (-298)))) (-3984 (*1 *2 *2) (|partial| -12 (-5 *2 (-309 (-219))) (-5 *1 (-298)))) (-2026 (*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-219)) (-5 *1 (-298)))) (-2993 (*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-400 (-549))) (-5 *1 (-298)))) (-2163 (*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-400 (-549))) (-5 *1 (-298)))) (-2845 (*1 *2 *3) (-12 (-5 *3 (-621 (-1061 (-816 (-372))))) (-5 *2 (-621 (-1061 (-816 (-219))))) (-5 *1 (-298)))) (-2284 (*1 *2 *3) (-12 (-5 *3 (-1061 (-816 (-372)))) (-5 *2 (-1061 (-816 (-219)))) (-5 *1 (-298)))) (-2621 (*1 *2 *3) (-12 (-5 *3 (-816 (-372))) (-5 *2 (-816 (-219))) (-5 *1 (-298)))) (-1737 (*1 *2 *3) (-12 (-5 *3 (-309 (-372))) (-5 *2 (-309 (-219))) (-5 *1 (-298)))) (-1982 (*1 *2 *3) (-12 (-5 *3 (-372)) (-5 *2 (-219)) (-5 *1 (-298)))))
-(-10 -7 (-15 -1982 ((-219) (-372))) (-15 -1737 ((-309 (-219)) (-309 (-372)))) (-15 -2621 ((-816 (-219)) (-816 (-372)))) (-15 -2284 ((-1061 (-816 (-219))) (-1061 (-816 (-372))))) (-15 -2845 ((-621 (-1061 (-816 (-219)))) (-621 (-1061 (-816 (-372)))))) (-15 -2163 ((-400 (-549)) (-219))) (-15 -2993 ((-400 (-549)) (-309 (-219)))) (-15 -2026 ((-219) (-309 (-219)))) (-15 -3984 ((-3 (-309 (-219)) "failed") (-309 (-219)))) (-15 -2143 ((-372) (-1226 (-309 (-219))))) (-15 -2054 ((-2 (|:| |additions| (-549)) (|:| |multiplications| (-549)) (|:| |exponentiations| (-549)) (|:| |functionCalls| (-549))) (-1226 (-309 (-219))))) (-15 -1804 ((-309 (-400 (-549))) (-309 (-219)))) (-15 -4136 ((-1061 (-816 (-219))) (-1061 (-816 (-219))))) (-15 -4231 ((-621 (-219)) (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))))) (-15 -2678 ((-675) (-219))) (-15 -4201 ((-1226 (-675)) (-621 (-219)))) (-15 -2086 ((-309 (-372)) (-309 (-219)))) (-15 -1749 ((-1226 (-309 (-372))) (-1226 (-309 (-219))))) (-15 -1818 ((-112) (-219) (-1061 (-816 (-219))))) (-15 -2649 ((-1125) (-219))) (-15 -1829 ((-1125) (-372))) (-15 -2965 ((-621 (-1125)) (-621 (-219)))) (-15 -1972 ((-621 (-1125)) (-1123 (-219)))) (-15 -2980 ((-219) (-1061 (-816 (-219))))) (-15 -3431 ((-219) (-1061 (-816 (-219))))) (-15 -1952 ((-1006) (-1006) (-1006))) (-15 -1952 ((-1006) (-621 (-1006)))) (-15 -2793 ((-1125) (-372))) (-15 -1772 ((-1006) (-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))))) (-15 -1772 ((-1006) (-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))) (|:| |extra| (-1006))))) (-15 -3399 ((-1006) (-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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 -3810 ((-1006) (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))))) (-15 -1890 ((-309 (-372)) (-923 (-219)))) (-15 -3253 ((-219) (-923 (-219)))) (-15 -3714 ((-309 (-372)) (-219))) (-15 -3262 ((-219) (-400 (-549)))) (-15 -3521 ((-665 (-219)) (-621 (-219)) (-747))))
-((-3866 (((-112) $ $) 11)) (-2095 (($ $ $) 15)) (-2067 (($ $ $) 14)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 44)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 53)) (-3727 (($ $ $) 21) (($ (-621 $)) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 32) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 37)) (-2042 (((-3 $ "failed") $ $) 17)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 46)))
-(((-299 |#1|) (-10 -8 (-15 -2748 ((-3 (-621 |#1|) "failed") (-621 |#1|) |#1|)) (-15 -3083 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -3083 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4248 |#1|)) |#1| |#1|)) (-15 -2095 (|#1| |#1| |#1|)) (-15 -2067 (|#1| |#1| |#1|)) (-15 -3866 ((-112) |#1| |#1|)) (-15 -3644 ((-3 (-621 |#1|) "failed") (-621 |#1|) |#1|)) (-15 -1309 ((-2 (|:| -1570 (-621 |#1|)) (|:| -4248 |#1|)) (-621 |#1|))) (-15 -3727 (|#1| (-621 |#1|))) (-15 -3727 (|#1| |#1| |#1|)) (-15 -2042 ((-3 |#1| "failed") |#1| |#1|))) (-300)) (T -299))
-NIL
-(-10 -8 (-15 -2748 ((-3 (-621 |#1|) "failed") (-621 |#1|) |#1|)) (-15 -3083 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -3083 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4248 |#1|)) |#1| |#1|)) (-15 -2095 (|#1| |#1| |#1|)) (-15 -2067 (|#1| |#1| |#1|)) (-15 -3866 ((-112) |#1| |#1|)) (-15 -3644 ((-3 (-621 |#1|) "failed") (-621 |#1|) |#1|)) (-15 -1309 ((-2 (|:| -1570 (-621 |#1|)) (|:| -4248 |#1|)) (-621 |#1|))) (-15 -3727 (|#1| (-621 |#1|))) (-15 -3727 (|#1| |#1| |#1|)) (-15 -2042 ((-3 |#1| "failed") |#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-2001 (((-3 $ "failed") $ $) 19)) (-3866 (((-112) $ $) 57)) (-1682 (($) 17 T CONST)) (-2095 (($ $ $) 53)) (-2114 (((-3 $ "failed") $) 32)) (-2067 (($ $ $) 54)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 49)) (-2675 (((-112) $) 30)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2042 (((-3 $ "failed") $ $) 40)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-3684 (((-747) $) 56)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 55)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41)) (-2082 (((-747)) 28)) (-1498 (((-112) $ $) 37)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+((-3339 (*1 *1 *2 *1) (-12 (-4 *1 (-295)) (-5 *2 (-114)))) (-3339 (*1 *1 *2 *1 *1) (-12 (-4 *1 (-295)) (-5 *2 (-114)))) (-3339 (*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-295)) (-5 *2 (-114)))) (-3339 (*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-295)) (-5 *2 (-114)))) (-3339 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-621 *1)) (-4 *1 (-295)))) (-3013 (*1 *1 *1 *2) (-12 (-5 *2 (-287 *1)) (-4 *1 (-295)))) (-3013 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-287 *1))) (-4 *1 (-295)))) (-3013 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-592 *1))) (-5 *3 (-621 *1)) (-4 *1 (-295)))) (-4136 (*1 *1 *1) (-4 *1 (-295))) (-4136 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-295)))) (-4158 (*1 *1 *1) (-4 *1 (-295))) (-4158 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-295)))) (-3205 (*1 *1 *1) (-4 *1 (-295))) (-3205 (*1 *1 *1 *1) (-4 *1 (-295))) (-4036 (*1 *2 *1) (-12 (-4 *1 (-295)) (-5 *2 (-747)))) (-2197 (*1 *2 *1) (|partial| -12 (-5 *2 (-592 *1)) (-4 *1 (-295)))) (-2059 (*1 *2 *1) (-12 (-5 *2 (-621 (-592 *1))) (-4 *1 (-295)))) (-1979 (*1 *2 *1) (-12 (-5 *2 (-621 (-592 *1))) (-4 *1 (-295)))) (-3724 (*1 *2 *1) (-12 (-4 *1 (-295)) (-5 *2 (-621 (-114))))) (-3500 (*1 *2 *2) (-12 (-4 *1 (-295)) (-5 *2 (-114)))) (-2444 (*1 *2 *3) (-12 (-4 *1 (-295)) (-5 *3 (-114)) (-5 *2 (-112)))) (-3673 (*1 *2 *1 *3) (-12 (-4 *1 (-295)) (-5 *3 (-114)) (-5 *2 (-112)))) (-3673 (*1 *2 *1 *3) (-12 (-4 *1 (-295)) (-5 *3 (-1142)) (-5 *2 (-112)))) (-1475 (*1 *1 *2 *1) (-12 (-4 *1 (-295)) (-5 *2 (-114)))) (-1475 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-621 *1)) (-4 *1 (-295)))) (-2795 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-592 *1)) (-4 *1 (-295)))) (-2934 (*1 *2 *1 *1) (-12 (-4 *1 (-295)) (-5 *2 (-112)))) (-2934 (*1 *2 *1 *3) (-12 (-4 *1 (-295)) (-5 *3 (-1142)) (-5 *2 (-112)))) (-2684 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-1142))) (-5 *3 (-621 (-1 *1 *1))) (-4 *1 (-295)))) (-2684 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-1142))) (-5 *3 (-621 (-1 *1 (-621 *1)))) (-4 *1 (-295)))) (-2684 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1 *1 (-621 *1))) (-4 *1 (-295)))) (-2684 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1 *1 *1)) (-4 *1 (-295)))) (-2684 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-114))) (-5 *3 (-621 (-1 *1 *1))) (-4 *1 (-295)))) (-2684 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-114))) (-5 *3 (-621 (-1 *1 (-621 *1)))) (-4 *1 (-295)))) (-2684 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *1 (-621 *1))) (-4 *1 (-295)))) (-2684 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *1 *1)) (-4 *1 (-295)))) (-1797 (*1 *2 *3) (-12 (-5 *3 (-592 *1)) (-4 *1 (-1018)) (-4 *1 (-295)) (-5 *2 (-1138 *1)))) (-1262 (*1 *1 *1) (-12 (-4 *1 (-1018)) (-4 *1 (-295)))) (-1980 (*1 *2 *1) (-12 (-4 *1 (-1009 (-549))) (-4 *1 (-295)) (-5 *2 (-112)))) (-2803 (*1 *2 *1) (-12 (-4 *1 (-1009 (-549))) (-4 *1 (-295)) (-5 *2 (-112)))))
+(-13 (-823) (-1009 (-592 $)) (-505 (-592 $) $) (-302 $) (-10 -8 (-15 -3339 ($ (-114) $)) (-15 -3339 ($ (-114) $ $)) (-15 -3339 ($ (-114) $ $ $)) (-15 -3339 ($ (-114) $ $ $ $)) (-15 -3339 ($ (-114) (-621 $))) (-15 -3013 ($ $ (-287 $))) (-15 -3013 ($ $ (-621 (-287 $)))) (-15 -3013 ($ $ (-621 (-592 $)) (-621 $))) (-15 -4136 ($ $)) (-15 -4136 ($ (-621 $))) (-15 -4158 ($ $)) (-15 -4158 ($ (-621 $))) (-15 -3205 ($ $)) (-15 -3205 ($ $ $)) (-15 -4036 ((-747) $)) (-15 -2197 ((-3 (-592 $) "failed") $)) (-15 -2059 ((-621 (-592 $)) $)) (-15 -1979 ((-621 (-592 $)) $)) (-15 -3724 ((-621 (-114)) $)) (-15 -3500 ((-114) (-114))) (-15 -2444 ((-112) (-114))) (-15 -3673 ((-112) $ (-114))) (-15 -3673 ((-112) $ (-1142))) (-15 -1475 ($ (-114) $)) (-15 -1475 ($ (-114) (-621 $))) (-15 -2795 ($ (-1 $ $) (-592 $))) (-15 -2934 ((-112) $ $)) (-15 -2934 ((-112) $ (-1142))) (-15 -2684 ($ $ (-621 (-1142)) (-621 (-1 $ $)))) (-15 -2684 ($ $ (-621 (-1142)) (-621 (-1 $ (-621 $))))) (-15 -2684 ($ $ (-1142) (-1 $ (-621 $)))) (-15 -2684 ($ $ (-1142) (-1 $ $))) (-15 -2684 ($ $ (-621 (-114)) (-621 (-1 $ $)))) (-15 -2684 ($ $ (-621 (-114)) (-621 (-1 $ (-621 $))))) (-15 -2684 ($ $ (-114) (-1 $ (-621 $)))) (-15 -2684 ($ $ (-114) (-1 $ $))) (IF (|has| $ (-1018)) (PROGN (-15 -1797 ((-1138 $) (-592 $))) (-15 -1262 ($ $))) |%noBranch|) (IF (|has| $ (-1009 (-549))) (PROGN (-15 -1980 ((-112) $)) (-15 -2803 ((-112) $))) |%noBranch|)))
+(((-101) . T) ((-593 (-834)) . T) ((-302 $) . T) ((-505 (-592 $) $) . T) ((-505 $ $) . T) ((-823) . T) ((-1009 (-592 $)) . T) ((-1066) . T))
+((-2218 (((-621 |#1|) (-621 |#1|)) 10)))
+(((-296 |#1|) (-10 -7 (-15 -2218 ((-621 |#1|) (-621 |#1|)))) (-821)) (T -296))
+((-2218 (*1 *2 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-821)) (-5 *1 (-296 *3)))))
+(-10 -7 (-15 -2218 ((-621 |#1|) (-621 |#1|))))
+((-2795 (((-665 |#2|) (-1 |#2| |#1|) (-665 |#1|)) 17)))
+(((-297 |#1| |#2|) (-10 -7 (-15 -2795 ((-665 |#2|) (-1 |#2| |#1|) (-665 |#1|)))) (-1018) (-1018)) (T -297))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-665 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *2 (-665 *6)) (-5 *1 (-297 *5 *6)))))
+(-10 -7 (-15 -2795 ((-665 |#2|) (-1 |#2| |#1|) (-665 |#1|))))
+((-3357 (((-1225 (-309 (-372))) (-1225 (-309 (-219)))) 105)) (-1286 (((-1060 (-816 (-219))) (-1060 (-816 (-372)))) 40)) (-1595 (((-621 (-1124)) (-1122 (-219))) 87)) (-3014 (((-309 (-372)) (-923 (-219))) 50)) (-2568 (((-219) (-923 (-219))) 46)) (-3518 (((-1124) (-372)) 169)) (-3612 (((-816 (-219)) (-816 (-372))) 34)) (-3949 (((-2 (|:| |additions| (-549)) (|:| |multiplications| (-549)) (|:| |exponentiations| (-549)) (|:| |functionCalls| (-549))) (-1225 (-309 (-219)))) 143)) (-1519 (((-1006) (-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))) (|:| |extra| (-1006)))) 181) (((-1006) (-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))))) 179)) (-3697 (((-665 (-219)) (-621 (-219)) (-747)) 14)) (-3703 (((-1225 (-675)) (-621 (-219))) 94)) (-4086 (((-621 (-1124)) (-621 (-219))) 75)) (-3982 (((-3 (-309 (-219)) "failed") (-309 (-219))) 120)) (-3106 (((-112) (-219) (-1060 (-816 (-219)))) 109)) (-1494 (((-1006) (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372)))) 198)) (-3003 (((-219) (-1060 (-816 (-219)))) 107)) (-3077 (((-219) (-1060 (-816 (-219)))) 108)) (-3966 (((-219) (-400 (-549))) 27)) (-1677 (((-1124) (-372)) 73)) (-4256 (((-219) (-372)) 17)) (-2574 (((-372) (-1225 (-309 (-219)))) 154)) (-1709 (((-309 (-219)) (-309 (-372))) 23)) (-2694 (((-400 (-549)) (-309 (-219))) 53)) (-4153 (((-309 (-400 (-549))) (-309 (-219))) 69)) (-2652 (((-309 (-372)) (-309 (-219))) 98)) (-2820 (((-219) (-309 (-219))) 54)) (-3132 (((-621 (-219)) (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))) 64)) (-1468 (((-1060 (-816 (-219))) (-1060 (-816 (-219)))) 61)) (-4214 (((-1124) (-219)) 72)) (-2562 (((-675) (-219)) 90)) (-2209 (((-400 (-549)) (-219)) 55)) (-2845 (((-309 (-372)) (-219)) 49)) (-2843 (((-621 (-1060 (-816 (-219)))) (-621 (-1060 (-816 (-372))))) 43)) (-1950 (((-1006) (-621 (-1006))) 165) (((-1006) (-1006) (-1006)) 162)) (-2463 (((-1006) (-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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)))
+(((-298) (-10 -7 (-15 -4256 ((-219) (-372))) (-15 -1709 ((-309 (-219)) (-309 (-372)))) (-15 -3612 ((-816 (-219)) (-816 (-372)))) (-15 -1286 ((-1060 (-816 (-219))) (-1060 (-816 (-372))))) (-15 -2843 ((-621 (-1060 (-816 (-219)))) (-621 (-1060 (-816 (-372)))))) (-15 -2209 ((-400 (-549)) (-219))) (-15 -2694 ((-400 (-549)) (-309 (-219)))) (-15 -2820 ((-219) (-309 (-219)))) (-15 -3982 ((-3 (-309 (-219)) "failed") (-309 (-219)))) (-15 -2574 ((-372) (-1225 (-309 (-219))))) (-15 -3949 ((-2 (|:| |additions| (-549)) (|:| |multiplications| (-549)) (|:| |exponentiations| (-549)) (|:| |functionCalls| (-549))) (-1225 (-309 (-219))))) (-15 -4153 ((-309 (-400 (-549))) (-309 (-219)))) (-15 -1468 ((-1060 (-816 (-219))) (-1060 (-816 (-219))))) (-15 -3132 ((-621 (-219)) (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))))) (-15 -2562 ((-675) (-219))) (-15 -3703 ((-1225 (-675)) (-621 (-219)))) (-15 -2652 ((-309 (-372)) (-309 (-219)))) (-15 -3357 ((-1225 (-309 (-372))) (-1225 (-309 (-219))))) (-15 -3106 ((-112) (-219) (-1060 (-816 (-219))))) (-15 -4214 ((-1124) (-219))) (-15 -1677 ((-1124) (-372))) (-15 -4086 ((-621 (-1124)) (-621 (-219)))) (-15 -1595 ((-621 (-1124)) (-1122 (-219)))) (-15 -3003 ((-219) (-1060 (-816 (-219))))) (-15 -3077 ((-219) (-1060 (-816 (-219))))) (-15 -1950 ((-1006) (-1006) (-1006))) (-15 -1950 ((-1006) (-621 (-1006)))) (-15 -3518 ((-1124) (-372))) (-15 -1519 ((-1006) (-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))))) (-15 -1519 ((-1006) (-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))) (|:| |extra| (-1006))))) (-15 -2463 ((-1006) (-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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 -1494 ((-1006) (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))))) (-15 -3014 ((-309 (-372)) (-923 (-219)))) (-15 -2568 ((-219) (-923 (-219)))) (-15 -2845 ((-309 (-372)) (-219))) (-15 -3966 ((-219) (-400 (-549)))) (-15 -3697 ((-665 (-219)) (-621 (-219)) (-747))))) (T -298))
+((-3697 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-219))) (-5 *4 (-747)) (-5 *2 (-665 (-219))) (-5 *1 (-298)))) (-3966 (*1 *2 *3) (-12 (-5 *3 (-400 (-549))) (-5 *2 (-219)) (-5 *1 (-298)))) (-2845 (*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-309 (-372))) (-5 *1 (-298)))) (-2568 (*1 *2 *3) (-12 (-5 *3 (-923 (-219))) (-5 *2 (-219)) (-5 *1 (-298)))) (-3014 (*1 *2 *3) (-12 (-5 *3 (-923 (-219))) (-5 *2 (-309 (-372))) (-5 *1 (-298)))) (-1494 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372)))) (-5 *2 (-1006)) (-5 *1 (-298)))) (-2463 (*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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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 (-1006)) (-5 *1 (-298)))) (-1519 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))) (|:| |extra| (-1006)))) (-5 *2 (-1006)) (-5 *1 (-298)))) (-1519 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))))) (-5 *2 (-1006)) (-5 *1 (-298)))) (-3518 (*1 *2 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1124)) (-5 *1 (-298)))) (-1950 (*1 *2 *3) (-12 (-5 *3 (-621 (-1006))) (-5 *2 (-1006)) (-5 *1 (-298)))) (-1950 (*1 *2 *2 *2) (-12 (-5 *2 (-1006)) (-5 *1 (-298)))) (-3077 (*1 *2 *3) (-12 (-5 *3 (-1060 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-298)))) (-3003 (*1 *2 *3) (-12 (-5 *3 (-1060 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-298)))) (-1595 (*1 *2 *3) (-12 (-5 *3 (-1122 (-219))) (-5 *2 (-621 (-1124))) (-5 *1 (-298)))) (-4086 (*1 *2 *3) (-12 (-5 *3 (-621 (-219))) (-5 *2 (-621 (-1124))) (-5 *1 (-298)))) (-1677 (*1 *2 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1124)) (-5 *1 (-298)))) (-4214 (*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-1124)) (-5 *1 (-298)))) (-3106 (*1 *2 *3 *4) (-12 (-5 *4 (-1060 (-816 (-219)))) (-5 *3 (-219)) (-5 *2 (-112)) (-5 *1 (-298)))) (-3357 (*1 *2 *3) (-12 (-5 *3 (-1225 (-309 (-219)))) (-5 *2 (-1225 (-309 (-372)))) (-5 *1 (-298)))) (-2652 (*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-309 (-372))) (-5 *1 (-298)))) (-3703 (*1 *2 *3) (-12 (-5 *3 (-621 (-219))) (-5 *2 (-1225 (-675))) (-5 *1 (-298)))) (-2562 (*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-675)) (-5 *1 (-298)))) (-3132 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))) (-5 *2 (-621 (-219))) (-5 *1 (-298)))) (-1468 (*1 *2 *2) (-12 (-5 *2 (-1060 (-816 (-219)))) (-5 *1 (-298)))) (-4153 (*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-309 (-400 (-549)))) (-5 *1 (-298)))) (-3949 (*1 *2 *3) (-12 (-5 *3 (-1225 (-309 (-219)))) (-5 *2 (-2 (|:| |additions| (-549)) (|:| |multiplications| (-549)) (|:| |exponentiations| (-549)) (|:| |functionCalls| (-549)))) (-5 *1 (-298)))) (-2574 (*1 *2 *3) (-12 (-5 *3 (-1225 (-309 (-219)))) (-5 *2 (-372)) (-5 *1 (-298)))) (-3982 (*1 *2 *2) (|partial| -12 (-5 *2 (-309 (-219))) (-5 *1 (-298)))) (-2820 (*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-219)) (-5 *1 (-298)))) (-2694 (*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-400 (-549))) (-5 *1 (-298)))) (-2209 (*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-400 (-549))) (-5 *1 (-298)))) (-2843 (*1 *2 *3) (-12 (-5 *3 (-621 (-1060 (-816 (-372))))) (-5 *2 (-621 (-1060 (-816 (-219))))) (-5 *1 (-298)))) (-1286 (*1 *2 *3) (-12 (-5 *3 (-1060 (-816 (-372)))) (-5 *2 (-1060 (-816 (-219)))) (-5 *1 (-298)))) (-3612 (*1 *2 *3) (-12 (-5 *3 (-816 (-372))) (-5 *2 (-816 (-219))) (-5 *1 (-298)))) (-1709 (*1 *2 *3) (-12 (-5 *3 (-309 (-372))) (-5 *2 (-309 (-219))) (-5 *1 (-298)))) (-4256 (*1 *2 *3) (-12 (-5 *3 (-372)) (-5 *2 (-219)) (-5 *1 (-298)))))
+(-10 -7 (-15 -4256 ((-219) (-372))) (-15 -1709 ((-309 (-219)) (-309 (-372)))) (-15 -3612 ((-816 (-219)) (-816 (-372)))) (-15 -1286 ((-1060 (-816 (-219))) (-1060 (-816 (-372))))) (-15 -2843 ((-621 (-1060 (-816 (-219)))) (-621 (-1060 (-816 (-372)))))) (-15 -2209 ((-400 (-549)) (-219))) (-15 -2694 ((-400 (-549)) (-309 (-219)))) (-15 -2820 ((-219) (-309 (-219)))) (-15 -3982 ((-3 (-309 (-219)) "failed") (-309 (-219)))) (-15 -2574 ((-372) (-1225 (-309 (-219))))) (-15 -3949 ((-2 (|:| |additions| (-549)) (|:| |multiplications| (-549)) (|:| |exponentiations| (-549)) (|:| |functionCalls| (-549))) (-1225 (-309 (-219))))) (-15 -4153 ((-309 (-400 (-549))) (-309 (-219)))) (-15 -1468 ((-1060 (-816 (-219))) (-1060 (-816 (-219))))) (-15 -3132 ((-621 (-219)) (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))))) (-15 -2562 ((-675) (-219))) (-15 -3703 ((-1225 (-675)) (-621 (-219)))) (-15 -2652 ((-309 (-372)) (-309 (-219)))) (-15 -3357 ((-1225 (-309 (-372))) (-1225 (-309 (-219))))) (-15 -3106 ((-112) (-219) (-1060 (-816 (-219))))) (-15 -4214 ((-1124) (-219))) (-15 -1677 ((-1124) (-372))) (-15 -4086 ((-621 (-1124)) (-621 (-219)))) (-15 -1595 ((-621 (-1124)) (-1122 (-219)))) (-15 -3003 ((-219) (-1060 (-816 (-219))))) (-15 -3077 ((-219) (-1060 (-816 (-219))))) (-15 -1950 ((-1006) (-1006) (-1006))) (-15 -1950 ((-1006) (-621 (-1006)))) (-15 -3518 ((-1124) (-372))) (-15 -1519 ((-1006) (-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))))) (-15 -1519 ((-1006) (-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))) (|:| |extra| (-1006))))) (-15 -2463 ((-1006) (-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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 -1494 ((-1006) (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))))) (-15 -3014 ((-309 (-372)) (-923 (-219)))) (-15 -2568 ((-219) (-923 (-219)))) (-15 -2845 ((-309 (-372)) (-219))) (-15 -3966 ((-219) (-400 (-549)))) (-15 -3697 ((-665 (-219)) (-621 (-219)) (-747))))
+((-2680 (((-112) $ $) 11)) (-2091 (($ $ $) 15)) (-2065 (($ $ $) 14)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 44)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 53)) (-3726 (($ $ $) 21) (($ (-621 $)) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 32) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 37)) (-2040 (((-3 $ "failed") $ $) 17)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 46)))
+(((-299 |#1|) (-10 -8 (-15 -1385 ((-3 (-621 |#1|) "failed") (-621 |#1|) |#1|)) (-15 -2161 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -2161 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4247 |#1|)) |#1| |#1|)) (-15 -2091 (|#1| |#1| |#1|)) (-15 -2065 (|#1| |#1| |#1|)) (-15 -2680 ((-112) |#1| |#1|)) (-15 -4075 ((-3 (-621 |#1|) "failed") (-621 |#1|) |#1|)) (-15 -2448 ((-2 (|:| -1569 (-621 |#1|)) (|:| -4247 |#1|)) (-621 |#1|))) (-15 -3726 (|#1| (-621 |#1|))) (-15 -3726 (|#1| |#1| |#1|)) (-15 -2040 ((-3 |#1| "failed") |#1| |#1|))) (-300)) (T -299))
+NIL
+(-10 -8 (-15 -1385 ((-3 (-621 |#1|) "failed") (-621 |#1|) |#1|)) (-15 -2161 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -2161 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4247 |#1|)) |#1| |#1|)) (-15 -2091 (|#1| |#1| |#1|)) (-15 -2065 (|#1| |#1| |#1|)) (-15 -2680 ((-112) |#1| |#1|)) (-15 -4075 ((-3 (-621 |#1|) "failed") (-621 |#1|) |#1|)) (-15 -2448 ((-2 (|:| -1569 (-621 |#1|)) (|:| -4247 |#1|)) (-621 |#1|))) (-15 -3726 (|#1| (-621 |#1|))) (-15 -3726 (|#1| |#1| |#1|)) (-15 -2040 ((-3 |#1| "failed") |#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-2416 (((-3 $ "failed") $ $) 19)) (-2680 (((-112) $ $) 57)) (-3034 (($) 17 T CONST)) (-2091 (($ $ $) 53)) (-2612 (((-3 $ "failed") $) 32)) (-2065 (($ $ $) 54)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 49)) (-2297 (((-112) $) 30)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2040 (((-3 $ "failed") $ $) 40)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-1335 (((-747) $) 56)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 55)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41)) (-2371 (((-747)) 28)) (-2441 (((-112) $ $) 37)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-300) (-138)) (T -300))
-((-3866 (*1 *2 *1 *1) (-12 (-4 *1 (-300)) (-5 *2 (-112)))) (-3684 (*1 *2 *1) (-12 (-4 *1 (-300)) (-5 *2 (-747)))) (-3148 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-300)))) (-2067 (*1 *1 *1 *1) (-4 *1 (-300))) (-2095 (*1 *1 *1 *1) (-4 *1 (-300))) (-3083 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4248 *1))) (-4 *1 (-300)))) (-3083 (*1 *2 *1 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-300)))) (-2748 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-621 *1)) (-4 *1 (-300)))))
-(-13 (-891) (-10 -8 (-15 -3866 ((-112) $ $)) (-15 -3684 ((-747) $)) (-15 -3148 ((-2 (|:| -4013 $) (|:| -3675 $)) $ $)) (-15 -2067 ($ $ $)) (-15 -2095 ($ $ $)) (-15 -3083 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $)) (-15 -3083 ((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $)) (-15 -2748 ((-3 (-621 $) "failed") (-621 $) $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-444) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-891) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-2686 (($ $ (-621 |#2|) (-621 |#2|)) 14) (($ $ |#2| |#2|) NIL) (($ $ (-287 |#2|)) 11) (($ $ (-621 (-287 |#2|))) NIL)))
-(((-301 |#1| |#2|) (-10 -8 (-15 -2686 (|#1| |#1| (-621 (-287 |#2|)))) (-15 -2686 (|#1| |#1| (-287 |#2|))) (-15 -2686 (|#1| |#1| |#2| |#2|)) (-15 -2686 (|#1| |#1| (-621 |#2|) (-621 |#2|)))) (-302 |#2|) (-1067)) (T -301))
-NIL
-(-10 -8 (-15 -2686 (|#1| |#1| (-621 (-287 |#2|)))) (-15 -2686 (|#1| |#1| (-287 |#2|))) (-15 -2686 (|#1| |#1| |#2| |#2|)) (-15 -2686 (|#1| |#1| (-621 |#2|) (-621 |#2|))))
-((-2686 (($ $ (-621 |#1|) (-621 |#1|)) 7) (($ $ |#1| |#1|) 6) (($ $ (-287 |#1|)) 11) (($ $ (-621 (-287 |#1|))) 10)))
-(((-302 |#1|) (-138) (-1067)) (T -302))
-((-2686 (*1 *1 *1 *2) (-12 (-5 *2 (-287 *3)) (-4 *1 (-302 *3)) (-4 *3 (-1067)))) (-2686 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-287 *3))) (-4 *1 (-302 *3)) (-4 *3 (-1067)))))
-(-13 (-505 |t#1| |t#1|) (-10 -8 (-15 -2686 ($ $ (-287 |t#1|))) (-15 -2686 ($ $ (-621 (-287 |t#1|))))))
+((-2680 (*1 *2 *1 *1) (-12 (-4 *1 (-300)) (-5 *2 (-112)))) (-1335 (*1 *2 *1) (-12 (-4 *1 (-300)) (-5 *2 (-747)))) (-2288 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-300)))) (-2065 (*1 *1 *1 *1) (-4 *1 (-300))) (-2091 (*1 *1 *1 *1) (-4 *1 (-300))) (-2161 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4247 *1))) (-4 *1 (-300)))) (-2161 (*1 *2 *1 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-300)))) (-1385 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-621 *1)) (-4 *1 (-300)))))
+(-13 (-891) (-10 -8 (-15 -2680 ((-112) $ $)) (-15 -1335 ((-747) $)) (-15 -2288 ((-2 (|:| -2262 $) (|:| -1809 $)) $ $)) (-15 -2065 ($ $ $)) (-15 -2091 ($ $ $)) (-15 -2161 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $)) (-15 -2161 ((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $)) (-15 -1385 ((-3 (-621 $) "failed") (-621 $) $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-444) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-891) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-2684 (($ $ (-621 |#2|) (-621 |#2|)) 14) (($ $ |#2| |#2|) NIL) (($ $ (-287 |#2|)) 11) (($ $ (-621 (-287 |#2|))) NIL)))
+(((-301 |#1| |#2|) (-10 -8 (-15 -2684 (|#1| |#1| (-621 (-287 |#2|)))) (-15 -2684 (|#1| |#1| (-287 |#2|))) (-15 -2684 (|#1| |#1| |#2| |#2|)) (-15 -2684 (|#1| |#1| (-621 |#2|) (-621 |#2|)))) (-302 |#2|) (-1066)) (T -301))
+NIL
+(-10 -8 (-15 -2684 (|#1| |#1| (-621 (-287 |#2|)))) (-15 -2684 (|#1| |#1| (-287 |#2|))) (-15 -2684 (|#1| |#1| |#2| |#2|)) (-15 -2684 (|#1| |#1| (-621 |#2|) (-621 |#2|))))
+((-2684 (($ $ (-621 |#1|) (-621 |#1|)) 7) (($ $ |#1| |#1|) 6) (($ $ (-287 |#1|)) 11) (($ $ (-621 (-287 |#1|))) 10)))
+(((-302 |#1|) (-138) (-1066)) (T -302))
+((-2684 (*1 *1 *1 *2) (-12 (-5 *2 (-287 *3)) (-4 *1 (-302 *3)) (-4 *3 (-1066)))) (-2684 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-287 *3))) (-4 *1 (-302 *3)) (-4 *3 (-1066)))))
+(-13 (-505 |t#1| |t#1|) (-10 -8 (-15 -2684 ($ $ (-287 |t#1|))) (-15 -2684 ($ $ (-621 (-287 |t#1|))))))
(((-505 |#1| |#1|) . T))
-((-2686 ((|#1| (-1 |#1| (-549)) (-1145 (-400 (-549)))) 25)))
-(((-303 |#1|) (-10 -7 (-15 -2686 (|#1| (-1 |#1| (-549)) (-1145 (-400 (-549)))))) (-38 (-400 (-549)))) (T -303))
-((-2686 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-549))) (-5 *4 (-1145 (-400 (-549)))) (-5 *1 (-303 *2)) (-4 *2 (-38 (-400 (-549)))))))
-(-10 -7 (-15 -2686 (|#1| (-1 |#1| (-549)) (-1145 (-400 (-549))))))
-((-3834 (((-112) $ $) NIL)) (-1494 (((-549) $) 12)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3955 (((-1148) $) 9)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-304) (-13 (-1050) (-10 -8 (-15 -3955 ((-1148) $)) (-15 -1494 ((-549) $))))) (T -304))
-((-3955 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-304)))) (-1494 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-304)))))
-(-13 (-1050) (-10 -8 (-15 -3955 ((-1148) $)) (-15 -1494 ((-549) $))))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 7)) (-2389 (((-112) $ $) 9)))
-(((-305) (-1067)) (T -305))
-NIL
-(-1067)
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 62)) (-3329 (((-1212 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-300)))) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-880)))) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-880)))) (-3866 (((-112) $ $) NIL)) (-1872 (((-549) $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-796)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-1212 |#1| |#2| |#3| |#4|) "failed") $) NIL) (((-3 (-1143) "failed") $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-1009 (-1143)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-1009 (-549)))) (((-3 (-549) "failed") $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-1009 (-549)))) (((-3 (-1211 |#2| |#3| |#4|) "failed") $) 25)) (-2659 (((-1212 |#1| |#2| |#3| |#4|) $) NIL) (((-1143) $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-1009 (-1143)))) (((-400 (-549)) $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-1009 (-549)))) (((-549) $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-1009 (-549)))) (((-1211 |#2| |#3| |#4|) $) NIL)) (-2095 (($ $ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-1212 |#1| |#2| |#3| |#4|))) (|:| |vec| (-1226 (-1212 |#1| |#2| |#3| |#4|)))) (-665 $) (-1226 $)) NIL) (((-665 (-1212 |#1| |#2| |#3| |#4|)) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-534)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-2772 (((-112) $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-796)))) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-857 (-372))))) (-2675 (((-112) $) NIL)) (-1726 (($ $) NIL)) (-1394 (((-1212 |#1| |#2| |#3| |#4|) $) 21)) (-1681 (((-3 $ "failed") $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-1118)))) (-2374 (((-112) $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-796)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2863 (($ $ $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-823)))) (-3575 (($ $ $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-823)))) (-2797 (($ (-1 (-1212 |#1| |#2| |#3| |#4|) (-1212 |#1| |#2| |#3| |#4|)) $) NIL)) (-1914 (((-3 (-816 |#2|) "failed") $) 78)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-1118)) CONST)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2873 (($ $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-300)))) (-3967 (((-1212 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-534)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-880)))) (-2121 (((-411 $) $) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2686 (($ $ (-621 (-1212 |#1| |#2| |#3| |#4|)) (-621 (-1212 |#1| |#2| |#3| |#4|))) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-302 (-1212 |#1| |#2| |#3| |#4|)))) (($ $ (-1212 |#1| |#2| |#3| |#4|) (-1212 |#1| |#2| |#3| |#4|)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-302 (-1212 |#1| |#2| |#3| |#4|)))) (($ $ (-287 (-1212 |#1| |#2| |#3| |#4|))) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-302 (-1212 |#1| |#2| |#3| |#4|)))) (($ $ (-621 (-287 (-1212 |#1| |#2| |#3| |#4|)))) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-302 (-1212 |#1| |#2| |#3| |#4|)))) (($ $ (-621 (-1143)) (-621 (-1212 |#1| |#2| |#3| |#4|))) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-505 (-1143) (-1212 |#1| |#2| |#3| |#4|)))) (($ $ (-1143) (-1212 |#1| |#2| |#3| |#4|)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-505 (-1143) (-1212 |#1| |#2| |#3| |#4|))))) (-3684 (((-747) $) NIL)) (-3341 (($ $ (-1212 |#1| |#2| |#3| |#4|)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-279 (-1212 |#1| |#2| |#3| |#4|) (-1212 |#1| |#2| |#3| |#4|))))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3456 (($ $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-227))) (($ $ (-747)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-227))) (($ $ (-1143)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-871 (-1143)))) (($ $ (-1 (-1212 |#1| |#2| |#3| |#4|) (-1212 |#1| |#2| |#3| |#4|)) (-747)) NIL) (($ $ (-1 (-1212 |#1| |#2| |#3| |#4|) (-1212 |#1| |#2| |#3| |#4|))) NIL)) (-3939 (($ $) NIL)) (-1403 (((-1212 |#1| |#2| |#3| |#4|) $) 17)) (-2845 (((-863 (-549)) $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-594 (-863 (-372))))) (((-525) $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-594 (-525)))) (((-372) $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-993))) (((-219) $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-993)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-1212 |#1| |#2| |#3| |#4|) (-880))))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-1212 |#1| |#2| |#3| |#4|)) 29) (($ (-1143)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-1009 (-1143)))) (($ (-1211 |#2| |#3| |#4|)) 36)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-1212 |#1| |#2| |#3| |#4|) (-880))) (|has| (-1212 |#1| |#2| |#3| |#4|) (-143))))) (-2082 (((-747)) NIL)) (-2546 (((-1212 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-534)))) (-1498 (((-112) $ $) NIL)) (-3212 (($ $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-796)))) (-3276 (($) 41 T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-227))) (($ $ (-747)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-227))) (($ $ (-1143)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-871 (-1143)))) (($ $ (-1 (-1212 |#1| |#2| |#3| |#4|) (-1212 |#1| |#2| |#3| |#4|)) (-747)) NIL) (($ $ (-1 (-1212 |#1| |#2| |#3| |#4|) (-1212 |#1| |#2| |#3| |#4|))) NIL)) (-2448 (((-112) $ $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-823)))) (-2425 (((-112) $ $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-823)))) (-2412 (((-112) $ $) NIL (|has| (-1212 |#1| |#2| |#3| |#4|) (-823)))) (-2513 (($ $ $) 34) (($ (-1212 |#1| |#2| |#3| |#4|) (-1212 |#1| |#2| |#3| |#4|)) 31)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ (-1212 |#1| |#2| |#3| |#4|) $) 30) (($ $ (-1212 |#1| |#2| |#3| |#4|)) NIL)))
-(((-306 |#1| |#2| |#3| |#4|) (-13 (-963 (-1212 |#1| |#2| |#3| |#4|)) (-1009 (-1211 |#2| |#3| |#4|)) (-10 -8 (-15 -1914 ((-3 (-816 |#2|) "failed") $)) (-15 -3846 ($ (-1211 |#2| |#3| |#4|))))) (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444)) (-13 (-27) (-1165) (-423 |#1|)) (-1143) |#2|) (T -306))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1211 *4 *5 *6)) (-4 *4 (-13 (-27) (-1165) (-423 *3))) (-14 *5 (-1143)) (-14 *6 *4) (-4 *3 (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444))) (-5 *1 (-306 *3 *4 *5 *6)))) (-1914 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444))) (-5 *2 (-816 *4)) (-5 *1 (-306 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1165) (-423 *3))) (-14 *5 (-1143)) (-14 *6 *4))))
-(-13 (-963 (-1212 |#1| |#2| |#3| |#4|)) (-1009 (-1211 |#2| |#3| |#4|)) (-10 -8 (-15 -1914 ((-3 (-816 |#2|) "failed") $)) (-15 -3846 ($ (-1211 |#2| |#3| |#4|)))))
-((-2797 (((-309 |#2|) (-1 |#2| |#1|) (-309 |#1|)) 13)))
-(((-307 |#1| |#2|) (-10 -7 (-15 -2797 ((-309 |#2|) (-1 |#2| |#1|) (-309 |#1|)))) (-823) (-823)) (T -307))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-309 *5)) (-4 *5 (-823)) (-4 *6 (-823)) (-5 *2 (-309 *6)) (-5 *1 (-307 *5 *6)))))
-(-10 -7 (-15 -2797 ((-309 |#2|) (-1 |#2| |#1|) (-309 |#1|))))
-((-2336 (((-52) |#2| (-287 |#2|) (-747)) 33) (((-52) |#2| (-287 |#2|)) 24) (((-52) |#2| (-747)) 28) (((-52) |#2|) 25) (((-52) (-1143)) 21)) (-2826 (((-52) |#2| (-287 |#2|) (-400 (-549))) 51) (((-52) |#2| (-287 |#2|)) 48) (((-52) |#2| (-400 (-549))) 50) (((-52) |#2|) 49) (((-52) (-1143)) 47)) (-2366 (((-52) |#2| (-287 |#2|) (-400 (-549))) 46) (((-52) |#2| (-287 |#2|)) 43) (((-52) |#2| (-400 (-549))) 45) (((-52) |#2|) 44) (((-52) (-1143)) 42)) (-2352 (((-52) |#2| (-287 |#2|) (-549)) 39) (((-52) |#2| (-287 |#2|)) 35) (((-52) |#2| (-549)) 38) (((-52) |#2|) 36) (((-52) (-1143)) 34)))
-(((-308 |#1| |#2|) (-10 -7 (-15 -2336 ((-52) (-1143))) (-15 -2336 ((-52) |#2|)) (-15 -2336 ((-52) |#2| (-747))) (-15 -2336 ((-52) |#2| (-287 |#2|))) (-15 -2336 ((-52) |#2| (-287 |#2|) (-747))) (-15 -2352 ((-52) (-1143))) (-15 -2352 ((-52) |#2|)) (-15 -2352 ((-52) |#2| (-549))) (-15 -2352 ((-52) |#2| (-287 |#2|))) (-15 -2352 ((-52) |#2| (-287 |#2|) (-549))) (-15 -2366 ((-52) (-1143))) (-15 -2366 ((-52) |#2|)) (-15 -2366 ((-52) |#2| (-400 (-549)))) (-15 -2366 ((-52) |#2| (-287 |#2|))) (-15 -2366 ((-52) |#2| (-287 |#2|) (-400 (-549)))) (-15 -2826 ((-52) (-1143))) (-15 -2826 ((-52) |#2|)) (-15 -2826 ((-52) |#2| (-400 (-549)))) (-15 -2826 ((-52) |#2| (-287 |#2|))) (-15 -2826 ((-52) |#2| (-287 |#2|) (-400 (-549))))) (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-27) (-1165) (-423 |#1|))) (T -308))
-((-2826 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-287 *3)) (-5 *5 (-400 (-549))) (-4 *3 (-13 (-27) (-1165) (-423 *6))) (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *6 *3)))) (-2826 (*1 *2 *3 *4) (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *5 *3)))) (-2826 (*1 *2 *3 *4) (-12 (-5 *4 (-400 (-549))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *5 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5))))) (-2826 (*1 *2 *3) (-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *4 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *4))))) (-2826 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *4 *5)) (-4 *5 (-13 (-27) (-1165) (-423 *4))))) (-2366 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-287 *3)) (-5 *5 (-400 (-549))) (-4 *3 (-13 (-27) (-1165) (-423 *6))) (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *6 *3)))) (-2366 (*1 *2 *3 *4) (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *5 *3)))) (-2366 (*1 *2 *3 *4) (-12 (-5 *4 (-400 (-549))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *5 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5))))) (-2366 (*1 *2 *3) (-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *4 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *4))))) (-2366 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *4 *5)) (-4 *5 (-13 (-27) (-1165) (-423 *4))))) (-2352 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *6))) (-4 *6 (-13 (-444) (-823) (-1009 *5) (-617 *5))) (-5 *5 (-549)) (-5 *2 (-52)) (-5 *1 (-308 *6 *3)))) (-2352 (*1 *2 *3 *4) (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *5 *3)))) (-2352 (*1 *2 *3 *4) (-12 (-5 *4 (-549)) (-4 *5 (-13 (-444) (-823) (-1009 *4) (-617 *4))) (-5 *2 (-52)) (-5 *1 (-308 *5 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5))))) (-2352 (*1 *2 *3) (-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *4 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *4))))) (-2352 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *4 *5)) (-4 *5 (-13 (-27) (-1165) (-423 *4))))) (-2336 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-287 *3)) (-5 *5 (-747)) (-4 *3 (-13 (-27) (-1165) (-423 *6))) (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *6 *3)))) (-2336 (*1 *2 *3 *4) (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *5 *3)))) (-2336 (*1 *2 *3 *4) (-12 (-5 *4 (-747)) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *5 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5))))) (-2336 (*1 *2 *3) (-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *4 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *4))))) (-2336 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *4 *5)) (-4 *5 (-13 (-27) (-1165) (-423 *4))))))
-(-10 -7 (-15 -2336 ((-52) (-1143))) (-15 -2336 ((-52) |#2|)) (-15 -2336 ((-52) |#2| (-747))) (-15 -2336 ((-52) |#2| (-287 |#2|))) (-15 -2336 ((-52) |#2| (-287 |#2|) (-747))) (-15 -2352 ((-52) (-1143))) (-15 -2352 ((-52) |#2|)) (-15 -2352 ((-52) |#2| (-549))) (-15 -2352 ((-52) |#2| (-287 |#2|))) (-15 -2352 ((-52) |#2| (-287 |#2|) (-549))) (-15 -2366 ((-52) (-1143))) (-15 -2366 ((-52) |#2|)) (-15 -2366 ((-52) |#2| (-400 (-549)))) (-15 -2366 ((-52) |#2| (-287 |#2|))) (-15 -2366 ((-52) |#2| (-287 |#2|) (-400 (-549)))) (-15 -2826 ((-52) (-1143))) (-15 -2826 ((-52) |#2|)) (-15 -2826 ((-52) |#2| (-400 (-549)))) (-15 -2826 ((-52) |#2| (-287 |#2|))) (-15 -2826 ((-52) |#2| (-287 |#2|) (-400 (-549)))))
-((-3834 (((-112) $ $) NIL)) (-1329 (((-621 $) $ (-1143)) NIL (|has| |#1| (-541))) (((-621 $) $) NIL (|has| |#1| (-541))) (((-621 $) (-1139 $) (-1143)) NIL (|has| |#1| (-541))) (((-621 $) (-1139 $)) NIL (|has| |#1| (-541))) (((-621 $) (-923 $)) NIL (|has| |#1| (-541)))) (-3289 (($ $ (-1143)) NIL (|has| |#1| (-541))) (($ $) NIL (|has| |#1| (-541))) (($ (-1139 $) (-1143)) NIL (|has| |#1| (-541))) (($ (-1139 $)) NIL (|has| |#1| (-541))) (($ (-923 $)) NIL (|has| |#1| (-541)))) (-1763 (((-112) $) 27 (-1536 (|has| |#1| (-25)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))))) (-2272 (((-621 (-1143)) $) 351)) (-2084 (((-400 (-1139 $)) $ (-592 $)) NIL (|has| |#1| (-541)))) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-1981 (((-621 (-592 $)) $) NIL)) (-1664 (($ $) 161 (|has| |#1| (-541)))) (-1512 (($ $) 137 (|has| |#1| (-541)))) (-2441 (($ $ (-1059 $)) 222 (|has| |#1| (-541))) (($ $ (-1143)) 218 (|has| |#1| (-541)))) (-2001 (((-3 $ "failed") $ $) NIL (-1536 (|has| |#1| (-21)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))))) (-3015 (($ $ (-287 $)) NIL) (($ $ (-621 (-287 $))) 368) (($ $ (-621 (-592 $)) (-621 $)) 412)) (-3231 (((-411 (-1139 $)) (-1139 $)) 295 (-12 (|has| |#1| (-444)) (|has| |#1| (-541))))) (-3979 (($ $) NIL (|has| |#1| (-541)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-541)))) (-2134 (($ $) NIL (|has| |#1| (-541)))) (-3866 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1640 (($ $) 157 (|has| |#1| (-541)))) (-1486 (($ $) 133 (|has| |#1| (-541)))) (-2223 (($ $ (-549)) 72 (|has| |#1| (-541)))) (-1685 (($ $) 165 (|has| |#1| (-541)))) (-1539 (($ $) 141 (|has| |#1| (-541)))) (-1682 (($) NIL (-1536 (|has| |#1| (-25)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) (|has| |#1| (-1079))) CONST)) (-1815 (((-621 $) $ (-1143)) NIL (|has| |#1| (-541))) (((-621 $) $) NIL (|has| |#1| (-541))) (((-621 $) (-1139 $) (-1143)) NIL (|has| |#1| (-541))) (((-621 $) (-1139 $)) NIL (|has| |#1| (-541))) (((-621 $) (-923 $)) NIL (|has| |#1| (-541)))) (-1947 (($ $ (-1143)) NIL (|has| |#1| (-541))) (($ $) NIL (|has| |#1| (-541))) (($ (-1139 $) (-1143)) 124 (|has| |#1| (-541))) (($ (-1139 $)) NIL (|has| |#1| (-541))) (($ (-923 $)) NIL (|has| |#1| (-541)))) (-2714 (((-3 (-592 $) "failed") $) 17) (((-3 (-1143) "failed") $) NIL) (((-3 |#1| "failed") $) 421) (((-3 (-48) "failed") $) 323 (-12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-923 |#1|)) "failed") $) NIL (|has| |#1| (-541))) (((-3 (-923 |#1|) "failed") $) NIL (|has| |#1| (-1018))) (((-3 (-400 (-549)) "failed") $) 46 (-1536 (-12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549)))) (|has| |#1| (-1009 (-400 (-549))))))) (-2659 (((-592 $) $) 11) (((-1143) $) NIL) ((|#1| $) 403) (((-48) $) NIL (-12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-923 |#1|)) $) NIL (|has| |#1| (-541))) (((-923 |#1|) $) NIL (|has| |#1| (-1018))) (((-400 (-549)) $) 306 (-1536 (-12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549)))) (|has| |#1| (-1009 (-400 (-549))))))) (-2095 (($ $ $) NIL (|has| |#1| (-541)))) (-3879 (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) 117 (|has| |#1| (-1018))) (((-665 |#1|) (-665 $)) 107 (|has| |#1| (-1018))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))) (((-665 (-549)) (-665 $)) NIL (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))))) (-2557 (($ $) 89 (|has| |#1| (-541)))) (-2114 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) (|has| |#1| (-1079))))) (-2067 (($ $ $) NIL (|has| |#1| (-541)))) (-1747 (($ $ (-1059 $)) 226 (|has| |#1| (-541))) (($ $ (-1143)) 224 (|has| |#1| (-541)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| |#1| (-541)))) (-1420 (((-112) $) NIL (|has| |#1| (-541)))) (-3796 (($ $ $) 192 (|has| |#1| (-541)))) (-1425 (($) 127 (|has| |#1| (-541)))) (-1271 (($ $ $) 212 (|has| |#1| (-541)))) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 374 (|has| |#1| (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 381 (|has| |#1| (-857 (-372))))) (-3225 (($ $) NIL) (($ (-621 $)) NIL)) (-2162 (((-621 (-114)) $) NIL)) (-2834 (((-114) (-114)) 267)) (-2675 (((-112) $) 25 (-1536 (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) (|has| |#1| (-1079))))) (-3559 (((-112) $) NIL (|has| $ (-1009 (-549))))) (-1726 (($ $) 71 (|has| |#1| (-1018)))) (-1394 (((-1092 |#1| (-592 $)) $) 84 (|has| |#1| (-1018)))) (-3240 (((-112) $) 64 (|has| |#1| (-541)))) (-4187 (($ $ (-549)) NIL (|has| |#1| (-541)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-541)))) (-1549 (((-1139 $) (-592 $)) 268 (|has| $ (-1018)))) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-2797 (($ (-1 $ $) (-592 $)) 408)) (-2634 (((-3 (-592 $) "failed") $) NIL)) (-3632 (($ $) 131 (|has| |#1| (-541)))) (-1714 (($ $) 237 (|has| |#1| (-541)))) (-3697 (($ (-621 $)) NIL (|has| |#1| (-541))) (($ $ $) NIL (|has| |#1| (-541)))) (-3851 (((-1125) $) NIL)) (-2071 (((-621 (-592 $)) $) 49)) (-1476 (($ (-114) $) NIL) (($ (-114) (-621 $)) 413)) (-4266 (((-3 (-621 $) "failed") $) NIL (|has| |#1| (-1079)))) (-1671 (((-3 (-2 (|:| |val| $) (|:| -3731 (-549))) "failed") $) NIL (|has| |#1| (-1018)))) (-2533 (((-3 (-621 $) "failed") $) 416 (|has| |#1| (-25)))) (-2761 (((-3 (-2 (|:| -1570 (-549)) (|:| |var| (-592 $))) "failed") $) 420 (|has| |#1| (-25)))) (-1503 (((-3 (-2 (|:| |var| (-592 $)) (|:| -3731 (-549))) "failed") $) NIL (|has| |#1| (-1079))) (((-3 (-2 (|:| |var| (-592 $)) (|:| -3731 (-549))) "failed") $ (-114)) NIL (|has| |#1| (-1018))) (((-3 (-2 (|:| |var| (-592 $)) (|:| -3731 (-549))) "failed") $ (-1143)) NIL (|has| |#1| (-1018)))) (-3421 (((-112) $ (-114)) NIL) (((-112) $ (-1143)) 53)) (-1992 (($ $) NIL (-1536 (|has| |#1| (-465)) (|has| |#1| (-541))))) (-2204 (($ $ (-1143)) 241 (|has| |#1| (-541))) (($ $ (-1059 $)) 243 (|has| |#1| (-541)))) (-4036 (((-747) $) NIL)) (-3990 (((-1087) $) NIL)) (-2004 (((-112) $) 43)) (-2016 ((|#1| $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 288 (|has| |#1| (-541)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-541))) (($ $ $) NIL (|has| |#1| (-541)))) (-2979 (((-112) $ $) NIL) (((-112) $ (-1143)) NIL)) (-3251 (($ $ (-1143)) 216 (|has| |#1| (-541))) (($ $) 214 (|has| |#1| (-541)))) (-4005 (($ $) 208 (|has| |#1| (-541)))) (-2413 (((-411 (-1139 $)) (-1139 $)) 293 (-12 (|has| |#1| (-444)) (|has| |#1| (-541))))) (-2121 (((-411 $) $) NIL (|has| |#1| (-541)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-541))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-541)))) (-2042 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-541)))) (-2719 (($ $) 129 (|has| |#1| (-541)))) (-3450 (((-112) $) NIL (|has| $ (-1009 (-549))))) (-2686 (($ $ (-592 $) $) NIL) (($ $ (-621 (-592 $)) (-621 $)) 407) (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-621 (-1143)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-1143)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-1143) (-1 $ (-621 $))) NIL) (($ $ (-1143) (-1 $ $)) NIL) (($ $ (-621 (-114)) (-621 (-1 $ $))) 361) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-114) (-1 $ (-621 $))) NIL) (($ $ (-114) (-1 $ $)) NIL) (($ $ (-1143)) NIL (|has| |#1| (-594 (-525)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-594 (-525)))) (($ $) NIL (|has| |#1| (-594 (-525)))) (($ $ (-114) $ (-1143)) 349 (|has| |#1| (-594 (-525)))) (($ $ (-621 (-114)) (-621 $) (-1143)) 348 (|has| |#1| (-594 (-525)))) (($ $ (-621 (-1143)) (-621 (-747)) (-621 (-1 $ $))) NIL (|has| |#1| (-1018))) (($ $ (-621 (-1143)) (-621 (-747)) (-621 (-1 $ (-621 $)))) NIL (|has| |#1| (-1018))) (($ $ (-1143) (-747) (-1 $ (-621 $))) NIL (|has| |#1| (-1018))) (($ $ (-1143) (-747) (-1 $ $)) NIL (|has| |#1| (-1018)))) (-3684 (((-747) $) NIL (|has| |#1| (-541)))) (-1430 (($ $) 229 (|has| |#1| (-541)))) (-3341 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-621 $)) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-541)))) (-3433 (($ $) NIL) (($ $ $) NIL)) (-1469 (($ $) 239 (|has| |#1| (-541)))) (-3634 (($ $) 190 (|has| |#1| (-541)))) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-1018))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-1018))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-1018))) (($ $ (-1143)) NIL (|has| |#1| (-1018)))) (-3939 (($ $) 73 (|has| |#1| (-541)))) (-1403 (((-1092 |#1| (-592 $)) $) 86 (|has| |#1| (-541)))) (-2815 (($ $) 304 (|has| $ (-1018)))) (-1698 (($ $) 167 (|has| |#1| (-541)))) (-1552 (($ $) 143 (|has| |#1| (-541)))) (-1675 (($ $) 163 (|has| |#1| (-541)))) (-1526 (($ $) 139 (|has| |#1| (-541)))) (-1651 (($ $) 159 (|has| |#1| (-541)))) (-1501 (($ $) 135 (|has| |#1| (-541)))) (-2845 (((-863 (-549)) $) NIL (|has| |#1| (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| |#1| (-594 (-863 (-372))))) (($ (-411 $)) NIL (|has| |#1| (-541))) (((-525) $) 346 (|has| |#1| (-594 (-525))))) (-1955 (($ $ $) NIL (|has| |#1| (-465)))) (-3293 (($ $ $) NIL (|has| |#1| (-465)))) (-3846 (((-834) $) 406) (($ (-592 $)) 397) (($ (-1143)) 363) (($ |#1|) 324) (($ $) NIL (|has| |#1| (-541))) (($ (-48)) 299 (-12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549))))) (($ (-1092 |#1| (-592 $))) 88 (|has| |#1| (-1018))) (($ (-400 |#1|)) NIL (|has| |#1| (-541))) (($ (-923 (-400 |#1|))) NIL (|has| |#1| (-541))) (($ (-400 (-923 (-400 |#1|)))) NIL (|has| |#1| (-541))) (($ (-400 (-923 |#1|))) NIL (|has| |#1| (-541))) (($ (-923 |#1|)) NIL (|has| |#1| (-1018))) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-541)) (|has| |#1| (-1009 (-400 (-549)))))) (($ (-549)) 34 (-1536 (|has| |#1| (-1009 (-549))) (|has| |#1| (-1018))))) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) NIL (|has| |#1| (-1018)))) (-4137 (($ $) NIL) (($ (-621 $)) NIL)) (-3179 (($ $ $) 210 (|has| |#1| (-541)))) (-1370 (($ $ $) 196 (|has| |#1| (-541)))) (-1611 (($ $ $) 200 (|has| |#1| (-541)))) (-2981 (($ $ $) 194 (|has| |#1| (-541)))) (-1643 (($ $ $) 198 (|has| |#1| (-541)))) (-4285 (((-112) (-114)) 9)) (-1733 (($ $) 173 (|has| |#1| (-541)))) (-1587 (($ $) 149 (|has| |#1| (-541)))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1710 (($ $) 169 (|has| |#1| (-541)))) (-1564 (($ $) 145 (|has| |#1| (-541)))) (-1758 (($ $) 177 (|has| |#1| (-541)))) (-1612 (($ $) 153 (|has| |#1| (-541)))) (-1789 (($ (-1143) $) NIL) (($ (-1143) $ $) NIL) (($ (-1143) $ $ $) NIL) (($ (-1143) $ $ $ $) NIL) (($ (-1143) (-621 $)) NIL)) (-1273 (($ $) 204 (|has| |#1| (-541)))) (-3000 (($ $) 202 (|has| |#1| (-541)))) (-1934 (($ $) 179 (|has| |#1| (-541)))) (-1627 (($ $) 155 (|has| |#1| (-541)))) (-1745 (($ $) 175 (|has| |#1| (-541)))) (-1600 (($ $) 151 (|has| |#1| (-541)))) (-1722 (($ $) 171 (|has| |#1| (-541)))) (-1576 (($ $) 147 (|has| |#1| (-541)))) (-3212 (($ $) 182 (|has| |#1| (-541)))) (-3276 (($) 20 (-1536 (|has| |#1| (-25)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))) CONST)) (-2024 (($ $) 233 (|has| |#1| (-541)))) (-3287 (($) 22 (-1536 (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) (|has| |#1| (-1079))) CONST)) (-3553 (($ $) 184 (|has| |#1| (-541))) (($ $ $) 186 (|has| |#1| (-541)))) (-3320 (($ $) 231 (|has| |#1| (-541)))) (-1702 (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-1018))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-1018))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-1018))) (($ $ (-1143)) NIL (|has| |#1| (-1018)))) (-1846 (($ $) 235 (|has| |#1| (-541)))) (-2096 (($ $ $) 188 (|has| |#1| (-541)))) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 81)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 80)) (-2513 (($ (-1092 |#1| (-592 $)) (-1092 |#1| (-592 $))) 98 (|has| |#1| (-541))) (($ $ $) 42 (-1536 (|has| |#1| (-465)) (|has| |#1| (-541))))) (-2500 (($ $ $) 40 (-1536 (|has| |#1| (-21)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))))) (($ $) 29 (-1536 (|has| |#1| (-21)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))))) (-2486 (($ $ $) 38 (-1536 (|has| |#1| (-25)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))))) (** (($ $ $) 66 (|has| |#1| (-541))) (($ $ (-400 (-549))) 301 (|has| |#1| (-541))) (($ $ (-549)) 76 (-1536 (|has| |#1| (-465)) (|has| |#1| (-541)))) (($ $ (-747)) 74 (-1536 (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) (|has| |#1| (-1079)))) (($ $ (-892)) 78 (-1536 (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) (|has| |#1| (-1079))))) (* (($ (-400 (-549)) $) NIL (|has| |#1| (-541))) (($ $ (-400 (-549))) NIL (|has| |#1| (-541))) (($ |#1| $) NIL (|has| |#1| (-170))) (($ $ |#1|) NIL (|has| |#1| (-170))) (($ $ $) 36 (-1536 (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) (|has| |#1| (-1079)))) (($ (-549) $) 32 (-1536 (|has| |#1| (-21)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))))) (($ (-747) $) NIL (-1536 (|has| |#1| (-25)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))))) (($ (-892) $) NIL (-1536 (|has| |#1| (-25)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))))))
-(((-309 |#1|) (-13 (-423 |#1|) (-10 -8 (IF (|has| |#1| (-541)) (PROGN (-6 (-29 |#1|)) (-6 (-1165)) (-6 (-158)) (-6 (-607)) (-6 (-1106)) (-15 -2557 ($ $)) (-15 -3240 ((-112) $)) (-15 -2223 ($ $ (-549))) (IF (|has| |#1| (-444)) (PROGN (-15 -2413 ((-411 (-1139 $)) (-1139 $))) (-15 -3231 ((-411 (-1139 $)) (-1139 $)))) |%noBranch|) (IF (|has| |#1| (-1009 (-549))) (-6 (-1009 (-48))) |%noBranch|)) |%noBranch|))) (-823)) (T -309))
-((-2557 (*1 *1 *1) (-12 (-5 *1 (-309 *2)) (-4 *2 (-541)) (-4 *2 (-823)))) (-3240 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-309 *3)) (-4 *3 (-541)) (-4 *3 (-823)))) (-2223 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-309 *3)) (-4 *3 (-541)) (-4 *3 (-823)))) (-2413 (*1 *2 *3) (-12 (-5 *2 (-411 (-1139 *1))) (-5 *1 (-309 *4)) (-5 *3 (-1139 *1)) (-4 *4 (-444)) (-4 *4 (-541)) (-4 *4 (-823)))) (-3231 (*1 *2 *3) (-12 (-5 *2 (-411 (-1139 *1))) (-5 *1 (-309 *4)) (-5 *3 (-1139 *1)) (-4 *4 (-444)) (-4 *4 (-541)) (-4 *4 (-823)))))
-(-13 (-423 |#1|) (-10 -8 (IF (|has| |#1| (-541)) (PROGN (-6 (-29 |#1|)) (-6 (-1165)) (-6 (-158)) (-6 (-607)) (-6 (-1106)) (-15 -2557 ($ $)) (-15 -3240 ((-112) $)) (-15 -2223 ($ $ (-549))) (IF (|has| |#1| (-444)) (PROGN (-15 -2413 ((-411 (-1139 $)) (-1139 $))) (-15 -3231 ((-411 (-1139 $)) (-1139 $)))) |%noBranch|) (IF (|has| |#1| (-1009 (-549))) (-6 (-1009 (-48))) |%noBranch|)) |%noBranch|)))
-((-3099 (((-52) |#2| (-114) (-287 |#2|) (-621 |#2|)) 88) (((-52) |#2| (-114) (-287 |#2|) (-287 |#2|)) 84) (((-52) |#2| (-114) (-287 |#2|) |#2|) 86) (((-52) (-287 |#2|) (-114) (-287 |#2|) |#2|) 87) (((-52) (-621 |#2|) (-621 (-114)) (-287 |#2|) (-621 (-287 |#2|))) 80) (((-52) (-621 |#2|) (-621 (-114)) (-287 |#2|) (-621 |#2|)) 82) (((-52) (-621 (-287 |#2|)) (-621 (-114)) (-287 |#2|) (-621 |#2|)) 83) (((-52) (-621 (-287 |#2|)) (-621 (-114)) (-287 |#2|) (-621 (-287 |#2|))) 81) (((-52) (-287 |#2|) (-114) (-287 |#2|) (-621 |#2|)) 89) (((-52) (-287 |#2|) (-114) (-287 |#2|) (-287 |#2|)) 85)))
-(((-310 |#1| |#2|) (-10 -7 (-15 -3099 ((-52) (-287 |#2|) (-114) (-287 |#2|) (-287 |#2|))) (-15 -3099 ((-52) (-287 |#2|) (-114) (-287 |#2|) (-621 |#2|))) (-15 -3099 ((-52) (-621 (-287 |#2|)) (-621 (-114)) (-287 |#2|) (-621 (-287 |#2|)))) (-15 -3099 ((-52) (-621 (-287 |#2|)) (-621 (-114)) (-287 |#2|) (-621 |#2|))) (-15 -3099 ((-52) (-621 |#2|) (-621 (-114)) (-287 |#2|) (-621 |#2|))) (-15 -3099 ((-52) (-621 |#2|) (-621 (-114)) (-287 |#2|) (-621 (-287 |#2|)))) (-15 -3099 ((-52) (-287 |#2|) (-114) (-287 |#2|) |#2|)) (-15 -3099 ((-52) |#2| (-114) (-287 |#2|) |#2|)) (-15 -3099 ((-52) |#2| (-114) (-287 |#2|) (-287 |#2|))) (-15 -3099 ((-52) |#2| (-114) (-287 |#2|) (-621 |#2|)))) (-13 (-823) (-541) (-594 (-525))) (-423 |#1|)) (T -310))
-((-3099 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-114)) (-5 *5 (-287 *3)) (-5 *6 (-621 *3)) (-4 *3 (-423 *7)) (-4 *7 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *7 *3)))) (-3099 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-114)) (-5 *5 (-287 *3)) (-4 *3 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *6 *3)))) (-3099 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-114)) (-5 *5 (-287 *3)) (-4 *3 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *6 *3)))) (-3099 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-287 *5)) (-5 *4 (-114)) (-4 *5 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *6 *5)))) (-3099 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 (-114))) (-5 *6 (-621 (-287 *8))) (-4 *8 (-423 *7)) (-5 *5 (-287 *8)) (-4 *7 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *7 *8)))) (-3099 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-621 *7)) (-5 *4 (-621 (-114))) (-5 *5 (-287 *7)) (-4 *7 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *6 *7)))) (-3099 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-621 (-287 *8))) (-5 *4 (-621 (-114))) (-5 *5 (-287 *8)) (-5 *6 (-621 *8)) (-4 *8 (-423 *7)) (-4 *7 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *7 *8)))) (-3099 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-621 (-287 *7))) (-5 *4 (-621 (-114))) (-5 *5 (-287 *7)) (-4 *7 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *6 *7)))) (-3099 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-287 *7)) (-5 *4 (-114)) (-5 *5 (-621 *7)) (-4 *7 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *6 *7)))) (-3099 (*1 *2 *3 *4 *3 *3) (-12 (-5 *3 (-287 *6)) (-5 *4 (-114)) (-4 *6 (-423 *5)) (-4 *5 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *5 *6)))))
-(-10 -7 (-15 -3099 ((-52) (-287 |#2|) (-114) (-287 |#2|) (-287 |#2|))) (-15 -3099 ((-52) (-287 |#2|) (-114) (-287 |#2|) (-621 |#2|))) (-15 -3099 ((-52) (-621 (-287 |#2|)) (-621 (-114)) (-287 |#2|) (-621 (-287 |#2|)))) (-15 -3099 ((-52) (-621 (-287 |#2|)) (-621 (-114)) (-287 |#2|) (-621 |#2|))) (-15 -3099 ((-52) (-621 |#2|) (-621 (-114)) (-287 |#2|) (-621 |#2|))) (-15 -3099 ((-52) (-621 |#2|) (-621 (-114)) (-287 |#2|) (-621 (-287 |#2|)))) (-15 -3099 ((-52) (-287 |#2|) (-114) (-287 |#2|) |#2|)) (-15 -3099 ((-52) |#2| (-114) (-287 |#2|) |#2|)) (-15 -3099 ((-52) |#2| (-114) (-287 |#2|) (-287 |#2|))) (-15 -3099 ((-52) |#2| (-114) (-287 |#2|) (-621 |#2|))))
-((-3213 (((-1175 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1061 (-219)) (-219) (-549) (-1125)) 46) (((-1175 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1061 (-219)) (-219) (-549)) 47) (((-1175 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1061 (-219)) (-1 (-219) (-219)) (-549) (-1125)) 43) (((-1175 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1061 (-219)) (-1 (-219) (-219)) (-549)) 44)) (-4011 (((-1 (-219) (-219)) (-219)) 45)))
-(((-311) (-10 -7 (-15 -4011 ((-1 (-219) (-219)) (-219))) (-15 -3213 ((-1175 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1061 (-219)) (-1 (-219) (-219)) (-549))) (-15 -3213 ((-1175 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1061 (-219)) (-1 (-219) (-219)) (-549) (-1125))) (-15 -3213 ((-1175 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1061 (-219)) (-219) (-549))) (-15 -3213 ((-1175 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1061 (-219)) (-219) (-549) (-1125))))) (T -311))
-((-3213 (*1 *2 *3 *3 *3 *4 *5 *6 *7 *8) (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219))) (-5 *5 (-1061 (-219))) (-5 *6 (-219)) (-5 *7 (-549)) (-5 *8 (-1125)) (-5 *2 (-1175 (-897))) (-5 *1 (-311)))) (-3213 (*1 *2 *3 *3 *3 *4 *5 *6 *7) (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219))) (-5 *5 (-1061 (-219))) (-5 *6 (-219)) (-5 *7 (-549)) (-5 *2 (-1175 (-897))) (-5 *1 (-311)))) (-3213 (*1 *2 *3 *3 *3 *4 *5 *4 *6 *7) (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219))) (-5 *5 (-1061 (-219))) (-5 *6 (-549)) (-5 *7 (-1125)) (-5 *2 (-1175 (-897))) (-5 *1 (-311)))) (-3213 (*1 *2 *3 *3 *3 *4 *5 *4 *6) (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219))) (-5 *5 (-1061 (-219))) (-5 *6 (-549)) (-5 *2 (-1175 (-897))) (-5 *1 (-311)))) (-4011 (*1 *2 *3) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *1 (-311)) (-5 *3 (-219)))))
-(-10 -7 (-15 -4011 ((-1 (-219) (-219)) (-219))) (-15 -3213 ((-1175 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1061 (-219)) (-1 (-219) (-219)) (-549))) (-15 -3213 ((-1175 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1061 (-219)) (-1 (-219) (-219)) (-549) (-1125))) (-15 -3213 ((-1175 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1061 (-219)) (-219) (-549))) (-15 -3213 ((-1175 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1061 (-219)) (-219) (-549) (-1125))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 25)) (-2272 (((-621 (-1048)) $) NIL)) (-3011 (((-1143) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-3896 (($ $ (-400 (-549))) NIL) (($ $ (-400 (-549)) (-400 (-549))) NIL)) (-2212 (((-1123 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|))) $) 20)) (-1664 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL (|has| |#1| (-356)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2134 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1640 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2826 (($ (-747) (-1123 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|)))) NIL)) (-1685 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) NIL T CONST)) (-2095 (($ $ $) NIL (|has| |#1| (-356)))) (-2070 (($ $) 32)) (-2114 (((-3 $ "failed") $) NIL)) (-2067 (($ $ $) NIL (|has| |#1| (-356)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1420 (((-112) $) NIL (|has| |#1| (-356)))) (-2871 (((-112) $) NIL)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2088 (((-400 (-549)) $) NIL) (((-400 (-549)) $ (-400 (-549))) 16)) (-2675 (((-112) $) NIL)) (-4187 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2992 (($ $ (-892)) NIL) (($ $ (-400 (-549))) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-400 (-549))) NIL) (($ $ (-1048) (-400 (-549))) NIL) (($ $ (-621 (-1048)) (-621 (-400 (-549)))) NIL)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-3632 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL (|has| |#1| (-356)))) (-3893 (($ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1143)) NIL (-1536 (-12 (|has| |#1| (-15 -3893 (|#1| |#1| (-1143)))) (|has| |#1| (-15 -2272 ((-621 (-1143)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1165)))))) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-356)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2121 (((-411 $) $) NIL (|has| |#1| (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-2763 (($ $ (-400 (-549))) NIL)) (-2042 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-3244 (((-400 (-549)) $) 17)) (-1374 (($ (-1211 |#1| |#2| |#3|)) 11)) (-3731 (((-1211 |#1| |#2| |#3|) $) 12)) (-2719 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2686 (((-1123 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))))) (-3684 (((-747) $) NIL (|has| |#1| (-356)))) (-3341 ((|#1| $ (-400 (-549))) NIL) (($ $ $) NIL (|has| (-400 (-549)) (-1079)))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-356)))) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-3701 (((-400 (-549)) $) NIL)) (-1698 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1977 (($ $) 10)) (-3846 (((-834) $) 38) (($ (-549)) NIL) (($ |#1|) NIL (|has| |#1| (-170))) (($ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541)))) (-2152 ((|#1| $ (-400 (-549))) 30)) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) NIL)) (-2597 ((|#1| $) NIL)) (-1733 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1710 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2661 ((|#1| $ (-400 (-549))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))) (|has| |#1| (-15 -3846 (|#1| (-1143))))))) (-1934 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 27)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 33)) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
-(((-312 |#1| |#2| |#3|) (-13 (-1207 |#1|) (-768) (-10 -8 (-15 -1374 ($ (-1211 |#1| |#2| |#3|))) (-15 -3731 ((-1211 |#1| |#2| |#3|) $)) (-15 -3244 ((-400 (-549)) $)))) (-13 (-356) (-823)) (-1143) |#1|) (T -312))
-((-1374 (*1 *1 *2) (-12 (-5 *2 (-1211 *3 *4 *5)) (-4 *3 (-13 (-356) (-823))) (-14 *4 (-1143)) (-14 *5 *3) (-5 *1 (-312 *3 *4 *5)))) (-3731 (*1 *2 *1) (-12 (-5 *2 (-1211 *3 *4 *5)) (-5 *1 (-312 *3 *4 *5)) (-4 *3 (-13 (-356) (-823))) (-14 *4 (-1143)) (-14 *5 *3))) (-3244 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-312 *3 *4 *5)) (-4 *3 (-13 (-356) (-823))) (-14 *4 (-1143)) (-14 *5 *3))))
-(-13 (-1207 |#1|) (-768) (-10 -8 (-15 -1374 ($ (-1211 |#1| |#2| |#3|))) (-15 -3731 ((-1211 |#1| |#2| |#3|) $)) (-15 -3244 ((-400 (-549)) $))))
-((-4187 (((-2 (|:| -3731 (-747)) (|:| -1570 |#1|) (|:| |radicand| (-621 |#1|))) (-411 |#1|) (-747)) 24)) (-3632 (((-621 (-2 (|:| -1570 (-747)) (|:| |logand| |#1|))) (-411 |#1|)) 28)))
-(((-313 |#1|) (-10 -7 (-15 -4187 ((-2 (|:| -3731 (-747)) (|:| -1570 |#1|) (|:| |radicand| (-621 |#1|))) (-411 |#1|) (-747))) (-15 -3632 ((-621 (-2 (|:| -1570 (-747)) (|:| |logand| |#1|))) (-411 |#1|)))) (-541)) (T -313))
-((-3632 (*1 *2 *3) (-12 (-5 *3 (-411 *4)) (-4 *4 (-541)) (-5 *2 (-621 (-2 (|:| -1570 (-747)) (|:| |logand| *4)))) (-5 *1 (-313 *4)))) (-4187 (*1 *2 *3 *4) (-12 (-5 *3 (-411 *5)) (-4 *5 (-541)) (-5 *2 (-2 (|:| -3731 (-747)) (|:| -1570 *5) (|:| |radicand| (-621 *5)))) (-5 *1 (-313 *5)) (-5 *4 (-747)))))
-(-10 -7 (-15 -4187 ((-2 (|:| -3731 (-747)) (|:| -1570 |#1|) (|:| |radicand| (-621 |#1|))) (-411 |#1|) (-747))) (-15 -3632 ((-621 (-2 (|:| -1570 (-747)) (|:| |logand| |#1|))) (-411 |#1|))))
-((-2272 (((-621 |#2|) (-1139 |#4|)) 43)) (-1349 ((|#3| (-549)) 46)) (-1800 (((-1139 |#4|) (-1139 |#3|)) 30)) (-2298 (((-1139 |#4|) (-1139 |#4|) (-549)) 56)) (-1693 (((-1139 |#3|) (-1139 |#4|)) 21)) (-3701 (((-621 (-747)) (-1139 |#4|) (-621 |#2|)) 40)) (-2270 (((-1139 |#3|) (-1139 |#4|) (-621 |#2|) (-621 |#3|)) 35)))
-(((-314 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2270 ((-1139 |#3|) (-1139 |#4|) (-621 |#2|) (-621 |#3|))) (-15 -3701 ((-621 (-747)) (-1139 |#4|) (-621 |#2|))) (-15 -2272 ((-621 |#2|) (-1139 |#4|))) (-15 -1693 ((-1139 |#3|) (-1139 |#4|))) (-15 -1800 ((-1139 |#4|) (-1139 |#3|))) (-15 -2298 ((-1139 |#4|) (-1139 |#4|) (-549))) (-15 -1349 (|#3| (-549)))) (-769) (-823) (-1018) (-920 |#3| |#1| |#2|)) (T -314))
-((-1349 (*1 *2 *3) (-12 (-5 *3 (-549)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1018)) (-5 *1 (-314 *4 *5 *2 *6)) (-4 *6 (-920 *2 *4 *5)))) (-2298 (*1 *2 *2 *3) (-12 (-5 *2 (-1139 *7)) (-5 *3 (-549)) (-4 *7 (-920 *6 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018)) (-5 *1 (-314 *4 *5 *6 *7)))) (-1800 (*1 *2 *3) (-12 (-5 *3 (-1139 *6)) (-4 *6 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-1139 *7)) (-5 *1 (-314 *4 *5 *6 *7)) (-4 *7 (-920 *6 *4 *5)))) (-1693 (*1 *2 *3) (-12 (-5 *3 (-1139 *7)) (-4 *7 (-920 *6 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018)) (-5 *2 (-1139 *6)) (-5 *1 (-314 *4 *5 *6 *7)))) (-2272 (*1 *2 *3) (-12 (-5 *3 (-1139 *7)) (-4 *7 (-920 *6 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018)) (-5 *2 (-621 *5)) (-5 *1 (-314 *4 *5 *6 *7)))) (-3701 (*1 *2 *3 *4) (-12 (-5 *3 (-1139 *8)) (-5 *4 (-621 *6)) (-4 *6 (-823)) (-4 *8 (-920 *7 *5 *6)) (-4 *5 (-769)) (-4 *7 (-1018)) (-5 *2 (-621 (-747))) (-5 *1 (-314 *5 *6 *7 *8)))) (-2270 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1139 *9)) (-5 *4 (-621 *7)) (-5 *5 (-621 *8)) (-4 *7 (-823)) (-4 *8 (-1018)) (-4 *9 (-920 *8 *6 *7)) (-4 *6 (-769)) (-5 *2 (-1139 *8)) (-5 *1 (-314 *6 *7 *8 *9)))))
-(-10 -7 (-15 -2270 ((-1139 |#3|) (-1139 |#4|) (-621 |#2|) (-621 |#3|))) (-15 -3701 ((-621 (-747)) (-1139 |#4|) (-621 |#2|))) (-15 -2272 ((-621 |#2|) (-1139 |#4|))) (-15 -1693 ((-1139 |#3|) (-1139 |#4|))) (-15 -1800 ((-1139 |#4|) (-1139 |#3|))) (-15 -2298 ((-1139 |#4|) (-1139 |#4|) (-549))) (-15 -1349 (|#3| (-549))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 14)) (-2212 (((-621 (-2 (|:| |gen| |#1|) (|:| -2719 (-549)))) $) 18)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3614 (((-747) $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) NIL)) (-2659 ((|#1| $) NIL)) (-1302 ((|#1| $ (-549)) NIL)) (-3472 (((-549) $ (-549)) NIL)) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-3482 (($ (-1 |#1| |#1|) $) NIL)) (-3904 (($ (-1 (-549) (-549)) $) 10)) (-3851 (((-1125) $) NIL)) (-2958 (($ $ $) NIL (|has| (-549) (-768)))) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (($ |#1|) NIL)) (-2152 (((-549) |#1| $) NIL)) (-3276 (($) 15 T CONST)) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) 21 (|has| |#1| (-823)))) (-2500 (($ $) 11) (($ $ $) 20)) (-2486 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ (-549)) NIL) (($ (-549) |#1|) 19)))
-(((-315 |#1|) (-13 (-21) (-694 (-549)) (-316 |#1| (-549)) (-10 -7 (IF (|has| |#1| (-823)) (-6 (-823)) |%noBranch|))) (-1067)) (T -315))
+((-2684 ((|#1| (-1 |#1| (-549)) (-1144 (-400 (-549)))) 25)))
+(((-303 |#1|) (-10 -7 (-15 -2684 (|#1| (-1 |#1| (-549)) (-1144 (-400 (-549)))))) (-38 (-400 (-549)))) (T -303))
+((-2684 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-549))) (-5 *4 (-1144 (-400 (-549)))) (-5 *1 (-303 *2)) (-4 *2 (-38 (-400 (-549)))))))
+(-10 -7 (-15 -2684 (|#1| (-1 |#1| (-549)) (-1144 (-400 (-549))))))
+((-3832 (((-112) $ $) NIL)) (-1493 (((-549) $) 12)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3954 (((-1101) $) 9)) (-3845 (((-834) $) 21) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-304) (-13 (-1049) (-10 -8 (-15 -3954 ((-1101) $)) (-15 -1493 ((-549) $))))) (T -304))
+((-3954 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-304)))) (-1493 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-304)))))
+(-13 (-1049) (-10 -8 (-15 -3954 ((-1101) $)) (-15 -1493 ((-549) $))))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 7)) (-2387 (((-112) $ $) 9)))
+(((-305) (-1066)) (T -305))
+NIL
+(-1066)
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 62)) (-3833 (((-1211 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-300)))) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-880)))) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-880)))) (-2680 (((-112) $ $) NIL)) (-1741 (((-549) $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-796)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-1211 |#1| |#2| |#3| |#4|) "failed") $) NIL) (((-3 (-1142) "failed") $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-1009 (-1142)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-1009 (-549)))) (((-3 (-549) "failed") $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-1009 (-549)))) (((-3 (-1210 |#2| |#3| |#4|) "failed") $) 25)) (-2657 (((-1211 |#1| |#2| |#3| |#4|) $) NIL) (((-1142) $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-1009 (-1142)))) (((-400 (-549)) $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-1009 (-549)))) (((-549) $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-1009 (-549)))) (((-1210 |#2| |#3| |#4|) $) NIL)) (-2091 (($ $ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-1211 |#1| |#2| |#3| |#4|))) (|:| |vec| (-1225 (-1211 |#1| |#2| |#3| |#4|)))) (-665 $) (-1225 $)) NIL) (((-665 (-1211 |#1| |#2| |#3| |#4|)) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-534)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-2357 (((-112) $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-796)))) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-857 (-372))))) (-2297 (((-112) $) NIL)) (-2096 (($ $) NIL)) (-1392 (((-1211 |#1| |#2| |#3| |#4|) $) 21)) (-2964 (((-3 $ "failed") $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-1117)))) (-1992 (((-112) $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-796)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2861 (($ $ $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-823)))) (-3574 (($ $ $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-823)))) (-2795 (($ (-1 (-1211 |#1| |#2| |#3| |#4|) (-1211 |#1| |#2| |#3| |#4|)) $) NIL)) (-2450 (((-3 (-816 |#2|) "failed") $) 78)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-1117)) CONST)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1512 (($ $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-300)))) (-1349 (((-1211 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-534)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-880)))) (-2119 (((-411 $) $) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2684 (($ $ (-621 (-1211 |#1| |#2| |#3| |#4|)) (-621 (-1211 |#1| |#2| |#3| |#4|))) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-302 (-1211 |#1| |#2| |#3| |#4|)))) (($ $ (-1211 |#1| |#2| |#3| |#4|) (-1211 |#1| |#2| |#3| |#4|)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-302 (-1211 |#1| |#2| |#3| |#4|)))) (($ $ (-287 (-1211 |#1| |#2| |#3| |#4|))) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-302 (-1211 |#1| |#2| |#3| |#4|)))) (($ $ (-621 (-287 (-1211 |#1| |#2| |#3| |#4|)))) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-302 (-1211 |#1| |#2| |#3| |#4|)))) (($ $ (-621 (-1142)) (-621 (-1211 |#1| |#2| |#3| |#4|))) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-505 (-1142) (-1211 |#1| |#2| |#3| |#4|)))) (($ $ (-1142) (-1211 |#1| |#2| |#3| |#4|)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-505 (-1142) (-1211 |#1| |#2| |#3| |#4|))))) (-1335 (((-747) $) NIL)) (-3339 (($ $ (-1211 |#1| |#2| |#3| |#4|)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-279 (-1211 |#1| |#2| |#3| |#4|) (-1211 |#1| |#2| |#3| |#4|))))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3455 (($ $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-227))) (($ $ (-747)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-227))) (($ $ (-1142)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-871 (-1142)))) (($ $ (-1 (-1211 |#1| |#2| |#3| |#4|) (-1211 |#1| |#2| |#3| |#4|)) (-747)) NIL) (($ $ (-1 (-1211 |#1| |#2| |#3| |#4|) (-1211 |#1| |#2| |#3| |#4|))) NIL)) (-4095 (($ $) NIL)) (-1404 (((-1211 |#1| |#2| |#3| |#4|) $) 17)) (-2843 (((-863 (-549)) $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-594 (-863 (-372))))) (((-525) $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-594 (-525)))) (((-372) $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-993))) (((-219) $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-993)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-1211 |#1| |#2| |#3| |#4|) (-880))))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-1211 |#1| |#2| |#3| |#4|)) 29) (($ (-1142)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-1009 (-1142)))) (($ (-1210 |#2| |#3| |#4|)) 36)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-1211 |#1| |#2| |#3| |#4|) (-880))) (|has| (-1211 |#1| |#2| |#3| |#4|) (-143))))) (-2371 (((-747)) NIL)) (-3497 (((-1211 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-534)))) (-2441 (((-112) $ $) NIL)) (-2199 (($ $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-796)))) (-3274 (($) 41 T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-227))) (($ $ (-747)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-227))) (($ $ (-1142)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-871 (-1142)))) (($ $ (-1 (-1211 |#1| |#2| |#3| |#4|) (-1211 |#1| |#2| |#3| |#4|)) (-747)) NIL) (($ $ (-1 (-1211 |#1| |#2| |#3| |#4|) (-1211 |#1| |#2| |#3| |#4|))) NIL)) (-2447 (((-112) $ $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-823)))) (-2423 (((-112) $ $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-823)))) (-2409 (((-112) $ $) NIL (|has| (-1211 |#1| |#2| |#3| |#4|) (-823)))) (-2511 (($ $ $) 34) (($ (-1211 |#1| |#2| |#3| |#4|) (-1211 |#1| |#2| |#3| |#4|)) 31)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ (-1211 |#1| |#2| |#3| |#4|) $) 30) (($ $ (-1211 |#1| |#2| |#3| |#4|)) NIL)))
+(((-306 |#1| |#2| |#3| |#4|) (-13 (-963 (-1211 |#1| |#2| |#3| |#4|)) (-1009 (-1210 |#2| |#3| |#4|)) (-10 -8 (-15 -2450 ((-3 (-816 |#2|) "failed") $)) (-15 -3845 ($ (-1210 |#2| |#3| |#4|))))) (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444)) (-13 (-27) (-1164) (-423 |#1|)) (-1142) |#2|) (T -306))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1210 *4 *5 *6)) (-4 *4 (-13 (-27) (-1164) (-423 *3))) (-14 *5 (-1142)) (-14 *6 *4) (-4 *3 (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444))) (-5 *1 (-306 *3 *4 *5 *6)))) (-2450 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444))) (-5 *2 (-816 *4)) (-5 *1 (-306 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1164) (-423 *3))) (-14 *5 (-1142)) (-14 *6 *4))))
+(-13 (-963 (-1211 |#1| |#2| |#3| |#4|)) (-1009 (-1210 |#2| |#3| |#4|)) (-10 -8 (-15 -2450 ((-3 (-816 |#2|) "failed") $)) (-15 -3845 ($ (-1210 |#2| |#3| |#4|)))))
+((-2795 (((-309 |#2|) (-1 |#2| |#1|) (-309 |#1|)) 13)))
+(((-307 |#1| |#2|) (-10 -7 (-15 -2795 ((-309 |#2|) (-1 |#2| |#1|) (-309 |#1|)))) (-823) (-823)) (T -307))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-309 *5)) (-4 *5 (-823)) (-4 *6 (-823)) (-5 *2 (-309 *6)) (-5 *1 (-307 *5 *6)))))
+(-10 -7 (-15 -2795 ((-309 |#2|) (-1 |#2| |#1|) (-309 |#1|))))
+((-2337 (((-52) |#2| (-287 |#2|) (-747)) 33) (((-52) |#2| (-287 |#2|)) 24) (((-52) |#2| (-747)) 28) (((-52) |#2|) 25) (((-52) (-1142)) 21)) (-2824 (((-52) |#2| (-287 |#2|) (-400 (-549))) 51) (((-52) |#2| (-287 |#2|)) 48) (((-52) |#2| (-400 (-549))) 50) (((-52) |#2|) 49) (((-52) (-1142)) 47)) (-2365 (((-52) |#2| (-287 |#2|) (-400 (-549))) 46) (((-52) |#2| (-287 |#2|)) 43) (((-52) |#2| (-400 (-549))) 45) (((-52) |#2|) 44) (((-52) (-1142)) 42)) (-2352 (((-52) |#2| (-287 |#2|) (-549)) 39) (((-52) |#2| (-287 |#2|)) 35) (((-52) |#2| (-549)) 38) (((-52) |#2|) 36) (((-52) (-1142)) 34)))
+(((-308 |#1| |#2|) (-10 -7 (-15 -2337 ((-52) (-1142))) (-15 -2337 ((-52) |#2|)) (-15 -2337 ((-52) |#2| (-747))) (-15 -2337 ((-52) |#2| (-287 |#2|))) (-15 -2337 ((-52) |#2| (-287 |#2|) (-747))) (-15 -2352 ((-52) (-1142))) (-15 -2352 ((-52) |#2|)) (-15 -2352 ((-52) |#2| (-549))) (-15 -2352 ((-52) |#2| (-287 |#2|))) (-15 -2352 ((-52) |#2| (-287 |#2|) (-549))) (-15 -2365 ((-52) (-1142))) (-15 -2365 ((-52) |#2|)) (-15 -2365 ((-52) |#2| (-400 (-549)))) (-15 -2365 ((-52) |#2| (-287 |#2|))) (-15 -2365 ((-52) |#2| (-287 |#2|) (-400 (-549)))) (-15 -2824 ((-52) (-1142))) (-15 -2824 ((-52) |#2|)) (-15 -2824 ((-52) |#2| (-400 (-549)))) (-15 -2824 ((-52) |#2| (-287 |#2|))) (-15 -2824 ((-52) |#2| (-287 |#2|) (-400 (-549))))) (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-27) (-1164) (-423 |#1|))) (T -308))
+((-2824 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-287 *3)) (-5 *5 (-400 (-549))) (-4 *3 (-13 (-27) (-1164) (-423 *6))) (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *6 *3)))) (-2824 (*1 *2 *3 *4) (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *5 *3)))) (-2824 (*1 *2 *3 *4) (-12 (-5 *4 (-400 (-549))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *5 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5))))) (-2824 (*1 *2 *3) (-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *4 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *4))))) (-2824 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *4 *5)) (-4 *5 (-13 (-27) (-1164) (-423 *4))))) (-2365 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-287 *3)) (-5 *5 (-400 (-549))) (-4 *3 (-13 (-27) (-1164) (-423 *6))) (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *6 *3)))) (-2365 (*1 *2 *3 *4) (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *5 *3)))) (-2365 (*1 *2 *3 *4) (-12 (-5 *4 (-400 (-549))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *5 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5))))) (-2365 (*1 *2 *3) (-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *4 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *4))))) (-2365 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *4 *5)) (-4 *5 (-13 (-27) (-1164) (-423 *4))))) (-2352 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *6))) (-4 *6 (-13 (-444) (-823) (-1009 *5) (-617 *5))) (-5 *5 (-549)) (-5 *2 (-52)) (-5 *1 (-308 *6 *3)))) (-2352 (*1 *2 *3 *4) (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *5 *3)))) (-2352 (*1 *2 *3 *4) (-12 (-5 *4 (-549)) (-4 *5 (-13 (-444) (-823) (-1009 *4) (-617 *4))) (-5 *2 (-52)) (-5 *1 (-308 *5 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5))))) (-2352 (*1 *2 *3) (-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *4 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *4))))) (-2352 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *4 *5)) (-4 *5 (-13 (-27) (-1164) (-423 *4))))) (-2337 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-287 *3)) (-5 *5 (-747)) (-4 *3 (-13 (-27) (-1164) (-423 *6))) (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *6 *3)))) (-2337 (*1 *2 *3 *4) (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *5 *3)))) (-2337 (*1 *2 *3 *4) (-12 (-5 *4 (-747)) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *5 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5))))) (-2337 (*1 *2 *3) (-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *4 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *4))))) (-2337 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-308 *4 *5)) (-4 *5 (-13 (-27) (-1164) (-423 *4))))))
+(-10 -7 (-15 -2337 ((-52) (-1142))) (-15 -2337 ((-52) |#2|)) (-15 -2337 ((-52) |#2| (-747))) (-15 -2337 ((-52) |#2| (-287 |#2|))) (-15 -2337 ((-52) |#2| (-287 |#2|) (-747))) (-15 -2352 ((-52) (-1142))) (-15 -2352 ((-52) |#2|)) (-15 -2352 ((-52) |#2| (-549))) (-15 -2352 ((-52) |#2| (-287 |#2|))) (-15 -2352 ((-52) |#2| (-287 |#2|) (-549))) (-15 -2365 ((-52) (-1142))) (-15 -2365 ((-52) |#2|)) (-15 -2365 ((-52) |#2| (-400 (-549)))) (-15 -2365 ((-52) |#2| (-287 |#2|))) (-15 -2365 ((-52) |#2| (-287 |#2|) (-400 (-549)))) (-15 -2824 ((-52) (-1142))) (-15 -2824 ((-52) |#2|)) (-15 -2824 ((-52) |#2| (-400 (-549)))) (-15 -2824 ((-52) |#2| (-287 |#2|))) (-15 -2824 ((-52) |#2| (-287 |#2|) (-400 (-549)))))
+((-3832 (((-112) $ $) NIL)) (-3804 (((-621 $) $ (-1142)) NIL (|has| |#1| (-541))) (((-621 $) $) NIL (|has| |#1| (-541))) (((-621 $) (-1138 $) (-1142)) NIL (|has| |#1| (-541))) (((-621 $) (-1138 $)) NIL (|has| |#1| (-541))) (((-621 $) (-923 $)) NIL (|has| |#1| (-541)))) (-1566 (($ $ (-1142)) NIL (|has| |#1| (-541))) (($ $) NIL (|has| |#1| (-541))) (($ (-1138 $) (-1142)) NIL (|has| |#1| (-541))) (($ (-1138 $)) NIL (|has| |#1| (-541))) (($ (-923 $)) NIL (|has| |#1| (-541)))) (-3210 (((-112) $) 27 (-1536 (|has| |#1| (-25)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))))) (-2270 (((-621 (-1142)) $) 351)) (-2082 (((-400 (-1138 $)) $ (-592 $)) NIL (|has| |#1| (-541)))) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-1979 (((-621 (-592 $)) $) NIL)) (-1662 (($ $) 161 (|has| |#1| (-541)))) (-1510 (($ $) 137 (|has| |#1| (-541)))) (-4141 (($ $ (-1058 $)) 222 (|has| |#1| (-541))) (($ $ (-1142)) 218 (|has| |#1| (-541)))) (-2416 (((-3 $ "failed") $ $) NIL (-1536 (|has| |#1| (-21)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))))) (-3013 (($ $ (-287 $)) NIL) (($ $ (-621 (-287 $))) 368) (($ $ (-621 (-592 $)) (-621 $)) 412)) (-3630 (((-411 (-1138 $)) (-1138 $)) 295 (-12 (|has| |#1| (-444)) (|has| |#1| (-541))))) (-3239 (($ $) NIL (|has| |#1| (-541)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-541)))) (-2132 (($ $) NIL (|has| |#1| (-541)))) (-2680 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1638 (($ $) 157 (|has| |#1| (-541)))) (-1483 (($ $) 133 (|has| |#1| (-541)))) (-4260 (($ $ (-549)) 72 (|has| |#1| (-541)))) (-1684 (($ $) 165 (|has| |#1| (-541)))) (-1538 (($ $) 141 (|has| |#1| (-541)))) (-3034 (($) NIL (-1536 (|has| |#1| (-25)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) (|has| |#1| (-1078))) CONST)) (-2798 (((-621 $) $ (-1142)) NIL (|has| |#1| (-541))) (((-621 $) $) NIL (|has| |#1| (-541))) (((-621 $) (-1138 $) (-1142)) NIL (|has| |#1| (-541))) (((-621 $) (-1138 $)) NIL (|has| |#1| (-541))) (((-621 $) (-923 $)) NIL (|has| |#1| (-541)))) (-2406 (($ $ (-1142)) NIL (|has| |#1| (-541))) (($ $) NIL (|has| |#1| (-541))) (($ (-1138 $) (-1142)) 124 (|has| |#1| (-541))) (($ (-1138 $)) NIL (|has| |#1| (-541))) (($ (-923 $)) NIL (|has| |#1| (-541)))) (-2712 (((-3 (-592 $) "failed") $) 17) (((-3 (-1142) "failed") $) NIL) (((-3 |#1| "failed") $) 421) (((-3 (-48) "failed") $) 323 (-12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-923 |#1|)) "failed") $) NIL (|has| |#1| (-541))) (((-3 (-923 |#1|) "failed") $) NIL (|has| |#1| (-1018))) (((-3 (-400 (-549)) "failed") $) 46 (-1536 (-12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549)))) (|has| |#1| (-1009 (-400 (-549))))))) (-2657 (((-592 $) $) 11) (((-1142) $) NIL) ((|#1| $) 403) (((-48) $) NIL (-12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-923 |#1|)) $) NIL (|has| |#1| (-541))) (((-923 |#1|) $) NIL (|has| |#1| (-1018))) (((-400 (-549)) $) 306 (-1536 (-12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549)))) (|has| |#1| (-1009 (-400 (-549))))))) (-2091 (($ $ $) NIL (|has| |#1| (-541)))) (-3446 (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) 117 (|has| |#1| (-1018))) (((-665 |#1|) (-665 $)) 107 (|has| |#1| (-1018))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))) (((-665 (-549)) (-665 $)) NIL (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))))) (-2556 (($ $) 89 (|has| |#1| (-541)))) (-2612 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) (|has| |#1| (-1078))))) (-2065 (($ $ $) NIL (|has| |#1| (-541)))) (-1268 (($ $ (-1058 $)) 226 (|has| |#1| (-541))) (($ $ (-1142)) 224 (|has| |#1| (-541)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| |#1| (-541)))) (-1464 (((-112) $) NIL (|has| |#1| (-541)))) (-2974 (($ $ $) 192 (|has| |#1| (-541)))) (-1425 (($) 127 (|has| |#1| (-541)))) (-1926 (($ $ $) 212 (|has| |#1| (-541)))) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 374 (|has| |#1| (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 381 (|has| |#1| (-857 (-372))))) (-4158 (($ $) NIL) (($ (-621 $)) NIL)) (-3724 (((-621 (-114)) $) NIL)) (-3500 (((-114) (-114)) 267)) (-2297 (((-112) $) 25 (-1536 (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) (|has| |#1| (-1078))))) (-2803 (((-112) $) NIL (|has| $ (-1009 (-549))))) (-2096 (($ $) 71 (|has| |#1| (-1018)))) (-1392 (((-1091 |#1| (-592 $)) $) 84 (|has| |#1| (-1018)))) (-1294 (((-112) $) 64 (|has| |#1| (-541)))) (-3621 (($ $ (-549)) NIL (|has| |#1| (-541)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-541)))) (-1797 (((-1138 $) (-592 $)) 268 (|has| $ (-1018)))) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-2795 (($ (-1 $ $) (-592 $)) 408)) (-2197 (((-3 (-592 $) "failed") $) NIL)) (-3631 (($ $) 131 (|has| |#1| (-541)))) (-1712 (($ $) 237 (|has| |#1| (-541)))) (-3696 (($ (-621 $)) NIL (|has| |#1| (-541))) (($ $ $) NIL (|has| |#1| (-541)))) (-3441 (((-1124) $) NIL)) (-2059 (((-621 (-592 $)) $) 49)) (-1475 (($ (-114) $) NIL) (($ (-114) (-621 $)) 413)) (-4093 (((-3 (-621 $) "failed") $) NIL (|has| |#1| (-1078)))) (-3257 (((-3 (-2 (|:| |val| $) (|:| -1714 (-549))) "failed") $) NIL (|has| |#1| (-1018)))) (-1503 (((-3 (-621 $) "failed") $) 416 (|has| |#1| (-25)))) (-3570 (((-3 (-2 (|:| -1569 (-549)) (|:| |var| (-592 $))) "failed") $) 420 (|has| |#1| (-25)))) (-1477 (((-3 (-2 (|:| |var| (-592 $)) (|:| -1714 (-549))) "failed") $) NIL (|has| |#1| (-1078))) (((-3 (-2 (|:| |var| (-592 $)) (|:| -1714 (-549))) "failed") $ (-114)) NIL (|has| |#1| (-1018))) (((-3 (-2 (|:| |var| (-592 $)) (|:| -1714 (-549))) "failed") $ (-1142)) NIL (|has| |#1| (-1018)))) (-3673 (((-112) $ (-114)) NIL) (((-112) $ (-1142)) 53)) (-1990 (($ $) NIL (-1536 (|has| |#1| (-465)) (|has| |#1| (-541))))) (-2883 (($ $ (-1142)) 241 (|has| |#1| (-541))) (($ $ (-1058 $)) 243 (|has| |#1| (-541)))) (-4036 (((-747) $) NIL)) (-3988 (((-1086) $) NIL)) (-2001 (((-112) $) 43)) (-2011 ((|#1| $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 288 (|has| |#1| (-541)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-541))) (($ $ $) NIL (|has| |#1| (-541)))) (-2934 (((-112) $ $) NIL) (((-112) $ (-1142)) NIL)) (-2253 (($ $ (-1142)) 216 (|has| |#1| (-541))) (($ $) 214 (|has| |#1| (-541)))) (-3674 (($ $) 208 (|has| |#1| (-541)))) (-2193 (((-411 (-1138 $)) (-1138 $)) 293 (-12 (|has| |#1| (-444)) (|has| |#1| (-541))))) (-2119 (((-411 $) $) NIL (|has| |#1| (-541)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-541))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-541)))) (-2040 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-541)))) (-2717 (($ $) 129 (|has| |#1| (-541)))) (-1980 (((-112) $) NIL (|has| $ (-1009 (-549))))) (-2684 (($ $ (-592 $) $) NIL) (($ $ (-621 (-592 $)) (-621 $)) 407) (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-621 (-1142)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-1142)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-1142) (-1 $ (-621 $))) NIL) (($ $ (-1142) (-1 $ $)) NIL) (($ $ (-621 (-114)) (-621 (-1 $ $))) 361) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-114) (-1 $ (-621 $))) NIL) (($ $ (-114) (-1 $ $)) NIL) (($ $ (-1142)) NIL (|has| |#1| (-594 (-525)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-594 (-525)))) (($ $) NIL (|has| |#1| (-594 (-525)))) (($ $ (-114) $ (-1142)) 349 (|has| |#1| (-594 (-525)))) (($ $ (-621 (-114)) (-621 $) (-1142)) 348 (|has| |#1| (-594 (-525)))) (($ $ (-621 (-1142)) (-621 (-747)) (-621 (-1 $ $))) NIL (|has| |#1| (-1018))) (($ $ (-621 (-1142)) (-621 (-747)) (-621 (-1 $ (-621 $)))) NIL (|has| |#1| (-1018))) (($ $ (-1142) (-747) (-1 $ (-621 $))) NIL (|has| |#1| (-1018))) (($ $ (-1142) (-747) (-1 $ $)) NIL (|has| |#1| (-1018)))) (-1335 (((-747) $) NIL (|has| |#1| (-541)))) (-1431 (($ $) 229 (|has| |#1| (-541)))) (-3339 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-621 $)) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-541)))) (-3205 (($ $) NIL) (($ $ $) NIL)) (-1470 (($ $) 239 (|has| |#1| (-541)))) (-2711 (($ $) 190 (|has| |#1| (-541)))) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-1018))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-1018))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-1018))) (($ $ (-1142)) NIL (|has| |#1| (-1018)))) (-4095 (($ $) 73 (|has| |#1| (-541)))) (-1404 (((-1091 |#1| (-592 $)) $) 86 (|has| |#1| (-541)))) (-1262 (($ $) 304 (|has| $ (-1018)))) (-1696 (($ $) 167 (|has| |#1| (-541)))) (-1551 (($ $) 143 (|has| |#1| (-541)))) (-1673 (($ $) 163 (|has| |#1| (-541)))) (-1525 (($ $) 139 (|has| |#1| (-541)))) (-1648 (($ $) 159 (|has| |#1| (-541)))) (-1500 (($ $) 135 (|has| |#1| (-541)))) (-2843 (((-863 (-549)) $) NIL (|has| |#1| (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| |#1| (-594 (-863 (-372))))) (($ (-411 $)) NIL (|has| |#1| (-541))) (((-525) $) 346 (|has| |#1| (-594 (-525))))) (-1795 (($ $ $) NIL (|has| |#1| (-465)))) (-3870 (($ $ $) NIL (|has| |#1| (-465)))) (-3845 (((-834) $) 406) (($ (-592 $)) 397) (($ (-1142)) 363) (($ |#1|) 324) (($ $) NIL (|has| |#1| (-541))) (($ (-48)) 299 (-12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549))))) (($ (-1091 |#1| (-592 $))) 88 (|has| |#1| (-1018))) (($ (-400 |#1|)) NIL (|has| |#1| (-541))) (($ (-923 (-400 |#1|))) NIL (|has| |#1| (-541))) (($ (-400 (-923 (-400 |#1|)))) NIL (|has| |#1| (-541))) (($ (-400 (-923 |#1|))) NIL (|has| |#1| (-541))) (($ (-923 |#1|)) NIL (|has| |#1| (-1018))) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-541)) (|has| |#1| (-1009 (-400 (-549)))))) (($ (-549)) 34 (-1536 (|has| |#1| (-1009 (-549))) (|has| |#1| (-1018))))) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) NIL (|has| |#1| (-1018)))) (-4136 (($ $) NIL) (($ (-621 $)) NIL)) (-2772 (($ $ $) 210 (|has| |#1| (-541)))) (-3146 (($ $ $) 196 (|has| |#1| (-541)))) (-4288 (($ $ $) 200 (|has| |#1| (-541)))) (-3112 (($ $ $) 194 (|has| |#1| (-541)))) (-2052 (($ $ $) 198 (|has| |#1| (-541)))) (-2444 (((-112) (-114)) 9)) (-1731 (($ $) 173 (|has| |#1| (-541)))) (-1585 (($ $) 149 (|has| |#1| (-541)))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1708 (($ $) 169 (|has| |#1| (-541)))) (-1562 (($ $) 145 (|has| |#1| (-541)))) (-1753 (($ $) 177 (|has| |#1| (-541)))) (-1611 (($ $) 153 (|has| |#1| (-541)))) (-1787 (($ (-1142) $) NIL) (($ (-1142) $ $) NIL) (($ (-1142) $ $ $) NIL) (($ (-1142) $ $ $ $) NIL) (($ (-1142) (-621 $)) NIL)) (-3241 (($ $) 204 (|has| |#1| (-541)))) (-2016 (($ $) 202 (|has| |#1| (-541)))) (-1932 (($ $) 179 (|has| |#1| (-541)))) (-1625 (($ $) 155 (|has| |#1| (-541)))) (-1743 (($ $) 175 (|has| |#1| (-541)))) (-1598 (($ $) 151 (|has| |#1| (-541)))) (-1719 (($ $) 171 (|has| |#1| (-541)))) (-1575 (($ $) 147 (|has| |#1| (-541)))) (-2199 (($ $) 182 (|has| |#1| (-541)))) (-3274 (($) 20 (-1536 (|has| |#1| (-25)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))) CONST)) (-3771 (($ $) 233 (|has| |#1| (-541)))) (-3286 (($) 22 (-1536 (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) (|has| |#1| (-1078))) CONST)) (-3695 (($ $) 184 (|has| |#1| (-541))) (($ $ $) 186 (|has| |#1| (-541)))) (-4212 (($ $) 231 (|has| |#1| (-541)))) (-1699 (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-1018))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-1018))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-1018))) (($ $ (-1142)) NIL (|has| |#1| (-1018)))) (-2405 (($ $) 235 (|has| |#1| (-541)))) (-2051 (($ $ $) 188 (|has| |#1| (-541)))) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 81)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 80)) (-2511 (($ (-1091 |#1| (-592 $)) (-1091 |#1| (-592 $))) 98 (|has| |#1| (-541))) (($ $ $) 42 (-1536 (|has| |#1| (-465)) (|has| |#1| (-541))))) (-2498 (($ $ $) 40 (-1536 (|has| |#1| (-21)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))))) (($ $) 29 (-1536 (|has| |#1| (-21)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))))) (-2484 (($ $ $) 38 (-1536 (|has| |#1| (-25)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))))) (** (($ $ $) 66 (|has| |#1| (-541))) (($ $ (-400 (-549))) 301 (|has| |#1| (-541))) (($ $ (-549)) 76 (-1536 (|has| |#1| (-465)) (|has| |#1| (-541)))) (($ $ (-747)) 74 (-1536 (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) (|has| |#1| (-1078)))) (($ $ (-892)) 78 (-1536 (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) (|has| |#1| (-1078))))) (* (($ (-400 (-549)) $) NIL (|has| |#1| (-541))) (($ $ (-400 (-549))) NIL (|has| |#1| (-541))) (($ |#1| $) NIL (|has| |#1| (-170))) (($ $ |#1|) NIL (|has| |#1| (-170))) (($ $ $) 36 (-1536 (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) (|has| |#1| (-1078)))) (($ (-549) $) 32 (-1536 (|has| |#1| (-21)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))))) (($ (-747) $) NIL (-1536 (|has| |#1| (-25)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))))) (($ (-892) $) NIL (-1536 (|has| |#1| (-25)) (-12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))))))
+(((-309 |#1|) (-13 (-423 |#1|) (-10 -8 (IF (|has| |#1| (-541)) (PROGN (-6 (-29 |#1|)) (-6 (-1164)) (-6 (-158)) (-6 (-607)) (-6 (-1105)) (-15 -2556 ($ $)) (-15 -1294 ((-112) $)) (-15 -4260 ($ $ (-549))) (IF (|has| |#1| (-444)) (PROGN (-15 -2193 ((-411 (-1138 $)) (-1138 $))) (-15 -3630 ((-411 (-1138 $)) (-1138 $)))) |%noBranch|) (IF (|has| |#1| (-1009 (-549))) (-6 (-1009 (-48))) |%noBranch|)) |%noBranch|))) (-823)) (T -309))
+((-2556 (*1 *1 *1) (-12 (-5 *1 (-309 *2)) (-4 *2 (-541)) (-4 *2 (-823)))) (-1294 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-309 *3)) (-4 *3 (-541)) (-4 *3 (-823)))) (-4260 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-309 *3)) (-4 *3 (-541)) (-4 *3 (-823)))) (-2193 (*1 *2 *3) (-12 (-5 *2 (-411 (-1138 *1))) (-5 *1 (-309 *4)) (-5 *3 (-1138 *1)) (-4 *4 (-444)) (-4 *4 (-541)) (-4 *4 (-823)))) (-3630 (*1 *2 *3) (-12 (-5 *2 (-411 (-1138 *1))) (-5 *1 (-309 *4)) (-5 *3 (-1138 *1)) (-4 *4 (-444)) (-4 *4 (-541)) (-4 *4 (-823)))))
+(-13 (-423 |#1|) (-10 -8 (IF (|has| |#1| (-541)) (PROGN (-6 (-29 |#1|)) (-6 (-1164)) (-6 (-158)) (-6 (-607)) (-6 (-1105)) (-15 -2556 ($ $)) (-15 -1294 ((-112) $)) (-15 -4260 ($ $ (-549))) (IF (|has| |#1| (-444)) (PROGN (-15 -2193 ((-411 (-1138 $)) (-1138 $))) (-15 -3630 ((-411 (-1138 $)) (-1138 $)))) |%noBranch|) (IF (|has| |#1| (-1009 (-549))) (-6 (-1009 (-48))) |%noBranch|)) |%noBranch|)))
+((-3395 (((-52) |#2| (-114) (-287 |#2|) (-621 |#2|)) 88) (((-52) |#2| (-114) (-287 |#2|) (-287 |#2|)) 84) (((-52) |#2| (-114) (-287 |#2|) |#2|) 86) (((-52) (-287 |#2|) (-114) (-287 |#2|) |#2|) 87) (((-52) (-621 |#2|) (-621 (-114)) (-287 |#2|) (-621 (-287 |#2|))) 80) (((-52) (-621 |#2|) (-621 (-114)) (-287 |#2|) (-621 |#2|)) 82) (((-52) (-621 (-287 |#2|)) (-621 (-114)) (-287 |#2|) (-621 |#2|)) 83) (((-52) (-621 (-287 |#2|)) (-621 (-114)) (-287 |#2|) (-621 (-287 |#2|))) 81) (((-52) (-287 |#2|) (-114) (-287 |#2|) (-621 |#2|)) 89) (((-52) (-287 |#2|) (-114) (-287 |#2|) (-287 |#2|)) 85)))
+(((-310 |#1| |#2|) (-10 -7 (-15 -3395 ((-52) (-287 |#2|) (-114) (-287 |#2|) (-287 |#2|))) (-15 -3395 ((-52) (-287 |#2|) (-114) (-287 |#2|) (-621 |#2|))) (-15 -3395 ((-52) (-621 (-287 |#2|)) (-621 (-114)) (-287 |#2|) (-621 (-287 |#2|)))) (-15 -3395 ((-52) (-621 (-287 |#2|)) (-621 (-114)) (-287 |#2|) (-621 |#2|))) (-15 -3395 ((-52) (-621 |#2|) (-621 (-114)) (-287 |#2|) (-621 |#2|))) (-15 -3395 ((-52) (-621 |#2|) (-621 (-114)) (-287 |#2|) (-621 (-287 |#2|)))) (-15 -3395 ((-52) (-287 |#2|) (-114) (-287 |#2|) |#2|)) (-15 -3395 ((-52) |#2| (-114) (-287 |#2|) |#2|)) (-15 -3395 ((-52) |#2| (-114) (-287 |#2|) (-287 |#2|))) (-15 -3395 ((-52) |#2| (-114) (-287 |#2|) (-621 |#2|)))) (-13 (-823) (-541) (-594 (-525))) (-423 |#1|)) (T -310))
+((-3395 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-114)) (-5 *5 (-287 *3)) (-5 *6 (-621 *3)) (-4 *3 (-423 *7)) (-4 *7 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *7 *3)))) (-3395 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-114)) (-5 *5 (-287 *3)) (-4 *3 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *6 *3)))) (-3395 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-114)) (-5 *5 (-287 *3)) (-4 *3 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *6 *3)))) (-3395 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-287 *5)) (-5 *4 (-114)) (-4 *5 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *6 *5)))) (-3395 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 (-114))) (-5 *6 (-621 (-287 *8))) (-4 *8 (-423 *7)) (-5 *5 (-287 *8)) (-4 *7 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *7 *8)))) (-3395 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-621 *7)) (-5 *4 (-621 (-114))) (-5 *5 (-287 *7)) (-4 *7 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *6 *7)))) (-3395 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-621 (-287 *8))) (-5 *4 (-621 (-114))) (-5 *5 (-287 *8)) (-5 *6 (-621 *8)) (-4 *8 (-423 *7)) (-4 *7 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *7 *8)))) (-3395 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-621 (-287 *7))) (-5 *4 (-621 (-114))) (-5 *5 (-287 *7)) (-4 *7 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *6 *7)))) (-3395 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-287 *7)) (-5 *4 (-114)) (-5 *5 (-621 *7)) (-4 *7 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *6 *7)))) (-3395 (*1 *2 *3 *4 *3 *3) (-12 (-5 *3 (-287 *6)) (-5 *4 (-114)) (-4 *6 (-423 *5)) (-4 *5 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52)) (-5 *1 (-310 *5 *6)))))
+(-10 -7 (-15 -3395 ((-52) (-287 |#2|) (-114) (-287 |#2|) (-287 |#2|))) (-15 -3395 ((-52) (-287 |#2|) (-114) (-287 |#2|) (-621 |#2|))) (-15 -3395 ((-52) (-621 (-287 |#2|)) (-621 (-114)) (-287 |#2|) (-621 (-287 |#2|)))) (-15 -3395 ((-52) (-621 (-287 |#2|)) (-621 (-114)) (-287 |#2|) (-621 |#2|))) (-15 -3395 ((-52) (-621 |#2|) (-621 (-114)) (-287 |#2|) (-621 |#2|))) (-15 -3395 ((-52) (-621 |#2|) (-621 (-114)) (-287 |#2|) (-621 (-287 |#2|)))) (-15 -3395 ((-52) (-287 |#2|) (-114) (-287 |#2|) |#2|)) (-15 -3395 ((-52) |#2| (-114) (-287 |#2|) |#2|)) (-15 -3395 ((-52) |#2| (-114) (-287 |#2|) (-287 |#2|))) (-15 -3395 ((-52) |#2| (-114) (-287 |#2|) (-621 |#2|))))
+((-2327 (((-1174 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1060 (-219)) (-219) (-549) (-1124)) 46) (((-1174 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1060 (-219)) (-219) (-549)) 47) (((-1174 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1060 (-219)) (-1 (-219) (-219)) (-549) (-1124)) 43) (((-1174 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1060 (-219)) (-1 (-219) (-219)) (-549)) 44)) (-2266 (((-1 (-219) (-219)) (-219)) 45)))
+(((-311) (-10 -7 (-15 -2266 ((-1 (-219) (-219)) (-219))) (-15 -2327 ((-1174 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1060 (-219)) (-1 (-219) (-219)) (-549))) (-15 -2327 ((-1174 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1060 (-219)) (-1 (-219) (-219)) (-549) (-1124))) (-15 -2327 ((-1174 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1060 (-219)) (-219) (-549))) (-15 -2327 ((-1174 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1060 (-219)) (-219) (-549) (-1124))))) (T -311))
+((-2327 (*1 *2 *3 *3 *3 *4 *5 *6 *7 *8) (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219))) (-5 *5 (-1060 (-219))) (-5 *6 (-219)) (-5 *7 (-549)) (-5 *8 (-1124)) (-5 *2 (-1174 (-897))) (-5 *1 (-311)))) (-2327 (*1 *2 *3 *3 *3 *4 *5 *6 *7) (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219))) (-5 *5 (-1060 (-219))) (-5 *6 (-219)) (-5 *7 (-549)) (-5 *2 (-1174 (-897))) (-5 *1 (-311)))) (-2327 (*1 *2 *3 *3 *3 *4 *5 *4 *6 *7) (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219))) (-5 *5 (-1060 (-219))) (-5 *6 (-549)) (-5 *7 (-1124)) (-5 *2 (-1174 (-897))) (-5 *1 (-311)))) (-2327 (*1 *2 *3 *3 *3 *4 *5 *4 *6) (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219))) (-5 *5 (-1060 (-219))) (-5 *6 (-549)) (-5 *2 (-1174 (-897))) (-5 *1 (-311)))) (-2266 (*1 *2 *3) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *1 (-311)) (-5 *3 (-219)))))
+(-10 -7 (-15 -2266 ((-1 (-219) (-219)) (-219))) (-15 -2327 ((-1174 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1060 (-219)) (-1 (-219) (-219)) (-549))) (-15 -2327 ((-1174 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1060 (-219)) (-1 (-219) (-219)) (-549) (-1124))) (-15 -2327 ((-1174 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1060 (-219)) (-219) (-549))) (-15 -2327 ((-1174 (-897)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1060 (-219)) (-219) (-549) (-1124))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 25)) (-2270 (((-621 (-1048)) $) NIL)) (-3009 (((-1142) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-3691 (($ $ (-400 (-549))) NIL) (($ $ (-400 (-549)) (-400 (-549))) NIL)) (-2585 (((-1122 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|))) $) 20)) (-1662 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL (|has| |#1| (-356)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2132 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2680 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1638 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2824 (($ (-747) (-1122 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|)))) NIL)) (-1684 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) NIL T CONST)) (-2091 (($ $ $) NIL (|has| |#1| (-356)))) (-2068 (($ $) 32)) (-2612 (((-3 $ "failed") $) NIL)) (-2065 (($ $ $) NIL (|has| |#1| (-356)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1464 (((-112) $) NIL (|has| |#1| (-356)))) (-1410 (((-112) $) NIL)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2729 (((-400 (-549)) $) NIL) (((-400 (-549)) $ (-400 (-549))) 16)) (-2297 (((-112) $) NIL)) (-3621 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2625 (($ $ (-892)) NIL) (($ $ (-400 (-549))) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-400 (-549))) NIL) (($ $ (-1048) (-400 (-549))) NIL) (($ $ (-621 (-1048)) (-621 (-400 (-549)))) NIL)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3631 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL (|has| |#1| (-356)))) (-3405 (($ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1142)) NIL (-1536 (-12 (|has| |#1| (-15 -3405 (|#1| |#1| (-1142)))) (|has| |#1| (-15 -2270 ((-621 (-1142)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1164)))))) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-356)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2119 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-3796 (($ $ (-400 (-549))) NIL)) (-2040 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-3456 (((-400 (-549)) $) 17)) (-3069 (($ (-1210 |#1| |#2| |#3|)) 11)) (-1714 (((-1210 |#1| |#2| |#3|) $) 12)) (-2717 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2684 (((-1122 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))))) (-1335 (((-747) $) NIL (|has| |#1| (-356)))) (-3339 ((|#1| $ (-400 (-549))) NIL) (($ $ $) NIL (|has| (-400 (-549)) (-1078)))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-356)))) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-3977 (((-400 (-549)) $) NIL)) (-1696 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3958 (($ $) 10)) (-3845 (((-834) $) 38) (($ (-549)) NIL) (($ |#1|) NIL (|has| |#1| (-170))) (($ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541)))) (-4068 ((|#1| $ (-400 (-549))) 30)) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) NIL)) (-2596 ((|#1| $) NIL)) (-1731 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1708 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2659 ((|#1| $ (-400 (-549))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))) (|has| |#1| (-15 -3845 (|#1| (-1142))))))) (-1932 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 27)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 33)) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
+(((-312 |#1| |#2| |#3|) (-13 (-1206 |#1|) (-768) (-10 -8 (-15 -3069 ($ (-1210 |#1| |#2| |#3|))) (-15 -1714 ((-1210 |#1| |#2| |#3|) $)) (-15 -3456 ((-400 (-549)) $)))) (-13 (-356) (-823)) (-1142) |#1|) (T -312))
+((-3069 (*1 *1 *2) (-12 (-5 *2 (-1210 *3 *4 *5)) (-4 *3 (-13 (-356) (-823))) (-14 *4 (-1142)) (-14 *5 *3) (-5 *1 (-312 *3 *4 *5)))) (-1714 (*1 *2 *1) (-12 (-5 *2 (-1210 *3 *4 *5)) (-5 *1 (-312 *3 *4 *5)) (-4 *3 (-13 (-356) (-823))) (-14 *4 (-1142)) (-14 *5 *3))) (-3456 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-312 *3 *4 *5)) (-4 *3 (-13 (-356) (-823))) (-14 *4 (-1142)) (-14 *5 *3))))
+(-13 (-1206 |#1|) (-768) (-10 -8 (-15 -3069 ($ (-1210 |#1| |#2| |#3|))) (-15 -1714 ((-1210 |#1| |#2| |#3|) $)) (-15 -3456 ((-400 (-549)) $))))
+((-3621 (((-2 (|:| -1714 (-747)) (|:| -1569 |#1|) (|:| |radicand| (-621 |#1|))) (-411 |#1|) (-747)) 24)) (-3631 (((-621 (-2 (|:| -1569 (-747)) (|:| |logand| |#1|))) (-411 |#1|)) 28)))
+(((-313 |#1|) (-10 -7 (-15 -3621 ((-2 (|:| -1714 (-747)) (|:| -1569 |#1|) (|:| |radicand| (-621 |#1|))) (-411 |#1|) (-747))) (-15 -3631 ((-621 (-2 (|:| -1569 (-747)) (|:| |logand| |#1|))) (-411 |#1|)))) (-541)) (T -313))
+((-3631 (*1 *2 *3) (-12 (-5 *3 (-411 *4)) (-4 *4 (-541)) (-5 *2 (-621 (-2 (|:| -1569 (-747)) (|:| |logand| *4)))) (-5 *1 (-313 *4)))) (-3621 (*1 *2 *3 *4) (-12 (-5 *3 (-411 *5)) (-4 *5 (-541)) (-5 *2 (-2 (|:| -1714 (-747)) (|:| -1569 *5) (|:| |radicand| (-621 *5)))) (-5 *1 (-313 *5)) (-5 *4 (-747)))))
+(-10 -7 (-15 -3621 ((-2 (|:| -1714 (-747)) (|:| -1569 |#1|) (|:| |radicand| (-621 |#1|))) (-411 |#1|) (-747))) (-15 -3631 ((-621 (-2 (|:| -1569 (-747)) (|:| |logand| |#1|))) (-411 |#1|))))
+((-2270 (((-621 |#2|) (-1138 |#4|)) 43)) (-4060 ((|#3| (-549)) 46)) (-1821 (((-1138 |#4|) (-1138 |#3|)) 30)) (-4090 (((-1138 |#4|) (-1138 |#4|) (-549)) 56)) (-1403 (((-1138 |#3|) (-1138 |#4|)) 21)) (-3977 (((-621 (-747)) (-1138 |#4|) (-621 |#2|)) 40)) (-1655 (((-1138 |#3|) (-1138 |#4|) (-621 |#2|) (-621 |#3|)) 35)))
+(((-314 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1655 ((-1138 |#3|) (-1138 |#4|) (-621 |#2|) (-621 |#3|))) (-15 -3977 ((-621 (-747)) (-1138 |#4|) (-621 |#2|))) (-15 -2270 ((-621 |#2|) (-1138 |#4|))) (-15 -1403 ((-1138 |#3|) (-1138 |#4|))) (-15 -1821 ((-1138 |#4|) (-1138 |#3|))) (-15 -4090 ((-1138 |#4|) (-1138 |#4|) (-549))) (-15 -4060 (|#3| (-549)))) (-769) (-823) (-1018) (-920 |#3| |#1| |#2|)) (T -314))
+((-4060 (*1 *2 *3) (-12 (-5 *3 (-549)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1018)) (-5 *1 (-314 *4 *5 *2 *6)) (-4 *6 (-920 *2 *4 *5)))) (-4090 (*1 *2 *2 *3) (-12 (-5 *2 (-1138 *7)) (-5 *3 (-549)) (-4 *7 (-920 *6 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018)) (-5 *1 (-314 *4 *5 *6 *7)))) (-1821 (*1 *2 *3) (-12 (-5 *3 (-1138 *6)) (-4 *6 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-1138 *7)) (-5 *1 (-314 *4 *5 *6 *7)) (-4 *7 (-920 *6 *4 *5)))) (-1403 (*1 *2 *3) (-12 (-5 *3 (-1138 *7)) (-4 *7 (-920 *6 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018)) (-5 *2 (-1138 *6)) (-5 *1 (-314 *4 *5 *6 *7)))) (-2270 (*1 *2 *3) (-12 (-5 *3 (-1138 *7)) (-4 *7 (-920 *6 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018)) (-5 *2 (-621 *5)) (-5 *1 (-314 *4 *5 *6 *7)))) (-3977 (*1 *2 *3 *4) (-12 (-5 *3 (-1138 *8)) (-5 *4 (-621 *6)) (-4 *6 (-823)) (-4 *8 (-920 *7 *5 *6)) (-4 *5 (-769)) (-4 *7 (-1018)) (-5 *2 (-621 (-747))) (-5 *1 (-314 *5 *6 *7 *8)))) (-1655 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1138 *9)) (-5 *4 (-621 *7)) (-5 *5 (-621 *8)) (-4 *7 (-823)) (-4 *8 (-1018)) (-4 *9 (-920 *8 *6 *7)) (-4 *6 (-769)) (-5 *2 (-1138 *8)) (-5 *1 (-314 *6 *7 *8 *9)))))
+(-10 -7 (-15 -1655 ((-1138 |#3|) (-1138 |#4|) (-621 |#2|) (-621 |#3|))) (-15 -3977 ((-621 (-747)) (-1138 |#4|) (-621 |#2|))) (-15 -2270 ((-621 |#2|) (-1138 |#4|))) (-15 -1403 ((-1138 |#3|) (-1138 |#4|))) (-15 -1821 ((-1138 |#4|) (-1138 |#3|))) (-15 -4090 ((-1138 |#4|) (-1138 |#4|) (-549))) (-15 -4060 (|#3| (-549))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 14)) (-2585 (((-621 (-2 (|:| |gen| |#1|) (|:| -2717 (-549)))) $) 18)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3614 (((-747) $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) NIL)) (-2657 ((|#1| $) NIL)) (-2941 ((|#1| $ (-549)) NIL)) (-3201 (((-549) $ (-549)) NIL)) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-1634 (($ (-1 |#1| |#1|) $) NIL)) (-1469 (($ (-1 (-549) (-549)) $) 10)) (-3441 (((-1124) $) NIL)) (-1555 (($ $ $) NIL (|has| (-549) (-768)))) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL) (($ |#1|) NIL)) (-4068 (((-549) |#1| $) NIL)) (-3274 (($) 15 T CONST)) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) 21 (|has| |#1| (-823)))) (-2498 (($ $) 11) (($ $ $) 20)) (-2484 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ (-549)) NIL) (($ (-549) |#1|) 19)))
+(((-315 |#1|) (-13 (-21) (-694 (-549)) (-316 |#1| (-549)) (-10 -7 (IF (|has| |#1| (-823)) (-6 (-823)) |%noBranch|))) (-1066)) (T -315))
NIL
(-13 (-21) (-694 (-549)) (-316 |#1| (-549)) (-10 -7 (IF (|has| |#1| (-823)) (-6 (-823)) |%noBranch|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2212 (((-621 (-2 (|:| |gen| |#1|) (|:| -2719 |#2|))) $) 27)) (-2001 (((-3 $ "failed") $ $) 19)) (-3614 (((-747) $) 28)) (-1682 (($) 17 T CONST)) (-2714 (((-3 |#1| "failed") $) 32)) (-2659 ((|#1| $) 31)) (-1302 ((|#1| $ (-549)) 25)) (-3472 ((|#2| $ (-549)) 26)) (-3482 (($ (-1 |#1| |#1|) $) 22)) (-3904 (($ (-1 |#2| |#2|) $) 23)) (-3851 (((-1125) $) 9)) (-2958 (($ $ $) 21 (|has| |#2| (-768)))) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11) (($ |#1|) 33)) (-2152 ((|#2| |#1| $) 24)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2486 (($ $ $) 14) (($ |#1| $) 30)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ |#2| |#1|) 29)))
-(((-316 |#1| |#2|) (-138) (-1067) (-130)) (T -316))
-((-2486 (*1 *1 *2 *1) (-12 (-4 *1 (-316 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-130)))) (* (*1 *1 *2 *3) (-12 (-4 *1 (-316 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-130)))) (-3614 (*1 *2 *1) (-12 (-4 *1 (-316 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-130)) (-5 *2 (-747)))) (-2212 (*1 *2 *1) (-12 (-4 *1 (-316 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-130)) (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2719 *4)))))) (-3472 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-316 *4 *2)) (-4 *4 (-1067)) (-4 *2 (-130)))) (-1302 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-316 *2 *4)) (-4 *4 (-130)) (-4 *2 (-1067)))) (-2152 (*1 *2 *3 *1) (-12 (-4 *1 (-316 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-130)))) (-3904 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-316 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-130)))) (-3482 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-316 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-130)))) (-2958 (*1 *1 *1 *1) (-12 (-4 *1 (-316 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-130)) (-4 *3 (-768)))))
-(-13 (-130) (-1009 |t#1|) (-10 -8 (-15 -2486 ($ |t#1| $)) (-15 * ($ |t#2| |t#1|)) (-15 -3614 ((-747) $)) (-15 -2212 ((-621 (-2 (|:| |gen| |t#1|) (|:| -2719 |t#2|))) $)) (-15 -3472 (|t#2| $ (-549))) (-15 -1302 (|t#1| $ (-549))) (-15 -2152 (|t#2| |t#1| $)) (-15 -3904 ($ (-1 |t#2| |t#2|) $)) (-15 -3482 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#2| (-768)) (-15 -2958 ($ $ $)) |%noBranch|)))
-(((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-1009 |#1|) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2212 (((-621 (-2 (|:| |gen| |#1|) (|:| -2719 (-747)))) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3614 (((-747) $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) NIL)) (-2659 ((|#1| $) NIL)) (-1302 ((|#1| $ (-549)) NIL)) (-3472 (((-747) $ (-549)) NIL)) (-3482 (($ (-1 |#1| |#1|) $) NIL)) (-3904 (($ (-1 (-747) (-747)) $) NIL)) (-3851 (((-1125) $) NIL)) (-2958 (($ $ $) NIL (|has| (-747) (-768)))) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (($ |#1|) NIL)) (-2152 (((-747) |#1| $) NIL)) (-3276 (($) NIL T CONST)) (-2389 (((-112) $ $) NIL)) (-2486 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-747) |#1|) NIL)))
-(((-317 |#1|) (-316 |#1| (-747)) (-1067)) (T -317))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2585 (((-621 (-2 (|:| |gen| |#1|) (|:| -2717 |#2|))) $) 27)) (-2416 (((-3 $ "failed") $ $) 19)) (-3614 (((-747) $) 28)) (-3034 (($) 17 T CONST)) (-2712 (((-3 |#1| "failed") $) 32)) (-2657 ((|#1| $) 31)) (-2941 ((|#1| $ (-549)) 25)) (-3201 ((|#2| $ (-549)) 26)) (-1634 (($ (-1 |#1| |#1|) $) 22)) (-1469 (($ (-1 |#2| |#2|) $) 23)) (-3441 (((-1124) $) 9)) (-1555 (($ $ $) 21 (|has| |#2| (-768)))) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11) (($ |#1|) 33)) (-4068 ((|#2| |#1| $) 24)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2484 (($ $ $) 14) (($ |#1| $) 30)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ |#2| |#1|) 29)))
+(((-316 |#1| |#2|) (-138) (-1066) (-130)) (T -316))
+((-2484 (*1 *1 *2 *1) (-12 (-4 *1 (-316 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-130)))) (* (*1 *1 *2 *3) (-12 (-4 *1 (-316 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-130)))) (-3614 (*1 *2 *1) (-12 (-4 *1 (-316 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-130)) (-5 *2 (-747)))) (-2585 (*1 *2 *1) (-12 (-4 *1 (-316 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-130)) (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2717 *4)))))) (-3201 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-316 *4 *2)) (-4 *4 (-1066)) (-4 *2 (-130)))) (-2941 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-316 *2 *4)) (-4 *4 (-130)) (-4 *2 (-1066)))) (-4068 (*1 *2 *3 *1) (-12 (-4 *1 (-316 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-130)))) (-1469 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-316 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-130)))) (-1634 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-316 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-130)))) (-1555 (*1 *1 *1 *1) (-12 (-4 *1 (-316 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-130)) (-4 *3 (-768)))))
+(-13 (-130) (-1009 |t#1|) (-10 -8 (-15 -2484 ($ |t#1| $)) (-15 * ($ |t#2| |t#1|)) (-15 -3614 ((-747) $)) (-15 -2585 ((-621 (-2 (|:| |gen| |t#1|) (|:| -2717 |t#2|))) $)) (-15 -3201 (|t#2| $ (-549))) (-15 -2941 (|t#1| $ (-549))) (-15 -4068 (|t#2| |t#1| $)) (-15 -1469 ($ (-1 |t#2| |t#2|) $)) (-15 -1634 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#2| (-768)) (-15 -1555 ($ $ $)) |%noBranch|)))
+(((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-1009 |#1|) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2585 (((-621 (-2 (|:| |gen| |#1|) (|:| -2717 (-747)))) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3614 (((-747) $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) NIL)) (-2657 ((|#1| $) NIL)) (-2941 ((|#1| $ (-549)) NIL)) (-3201 (((-747) $ (-549)) NIL)) (-1634 (($ (-1 |#1| |#1|) $) NIL)) (-1469 (($ (-1 (-747) (-747)) $) NIL)) (-3441 (((-1124) $) NIL)) (-1555 (($ $ $) NIL (|has| (-747) (-768)))) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL) (($ |#1|) NIL)) (-4068 (((-747) |#1| $) NIL)) (-3274 (($) NIL T CONST)) (-2387 (((-112) $ $) NIL)) (-2484 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-747) |#1|) NIL)))
+(((-317 |#1|) (-316 |#1| (-747)) (-1066)) (T -317))
NIL
(-316 |#1| (-747))
-((-1285 (($ $) 53)) (-2691 (($ $ |#2| |#3| $) 14)) (-3705 (($ (-1 |#3| |#3|) $) 33)) (-2004 (((-112) $) 24)) (-2016 ((|#2| $) 26)) (-2042 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#2|) 44)) (-2216 ((|#2| $) 49)) (-4141 (((-621 |#2|) $) 36)) (-1509 (($ $ $ (-747)) 20)) (-2513 (($ $ |#2|) 40)))
-(((-318 |#1| |#2| |#3|) (-10 -8 (-15 -1285 (|#1| |#1|)) (-15 -2216 (|#2| |#1|)) (-15 -2042 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1509 (|#1| |#1| |#1| (-747))) (-15 -2691 (|#1| |#1| |#2| |#3| |#1|)) (-15 -3705 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4141 ((-621 |#2|) |#1|)) (-15 -2016 (|#2| |#1|)) (-15 -2004 ((-112) |#1|)) (-15 -2042 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2513 (|#1| |#1| |#2|))) (-319 |#2| |#3|) (-1018) (-768)) (T -318))
+((-3004 (($ $) 53)) (-4064 (($ $ |#2| |#3| $) 14)) (-3224 (($ (-1 |#3| |#3|) $) 33)) (-2001 (((-112) $) 24)) (-2011 ((|#2| $) 26)) (-2040 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#2|) 44)) (-1700 ((|#2| $) 49)) (-2157 (((-621 |#2|) $) 36)) (-4046 (($ $ $ (-747)) 20)) (-2511 (($ $ |#2|) 40)))
+(((-318 |#1| |#2| |#3|) (-10 -8 (-15 -3004 (|#1| |#1|)) (-15 -1700 (|#2| |#1|)) (-15 -2040 ((-3 |#1| "failed") |#1| |#2|)) (-15 -4046 (|#1| |#1| |#1| (-747))) (-15 -4064 (|#1| |#1| |#2| |#3| |#1|)) (-15 -3224 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2157 ((-621 |#2|) |#1|)) (-15 -2011 (|#2| |#1|)) (-15 -2001 ((-112) |#1|)) (-15 -2040 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2511 (|#1| |#1| |#2|))) (-319 |#2| |#3|) (-1018) (-768)) (T -318))
NIL
-(-10 -8 (-15 -1285 (|#1| |#1|)) (-15 -2216 (|#2| |#1|)) (-15 -2042 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1509 (|#1| |#1| |#1| (-747))) (-15 -2691 (|#1| |#1| |#2| |#3| |#1|)) (-15 -3705 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4141 ((-621 |#2|) |#1|)) (-15 -2016 (|#2| |#1|)) (-15 -2004 ((-112) |#1|)) (-15 -2042 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2513 (|#1| |#1| |#2|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-2258 (($ $) 50 (|has| |#1| (-541)))) (-2799 (((-112) $) 52 (|has| |#1| (-541)))) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2714 (((-3 (-549) "failed") $) 88 (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 86 (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 85)) (-2659 (((-549) $) 89 (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) 87 (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 84)) (-2070 (($ $) 58)) (-2114 (((-3 $ "failed") $) 32)) (-1285 (($ $) 73 (|has| |#1| (-444)))) (-2691 (($ $ |#1| |#2| $) 77)) (-2675 (((-112) $) 30)) (-3347 (((-747) $) 80)) (-2205 (((-112) $) 60)) (-2246 (($ |#1| |#2|) 59)) (-3611 ((|#2| $) 79)) (-3705 (($ (-1 |#2| |#2|) $) 78)) (-2797 (($ (-1 |#1| |#1|) $) 61)) (-2028 (($ $) 63)) (-2043 ((|#1| $) 64)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-2004 (((-112) $) 83)) (-2016 ((|#1| $) 82)) (-2042 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541))) (((-3 $ "failed") $ |#1|) 75 (|has| |#1| (-541)))) (-3701 ((|#2| $) 62)) (-2216 ((|#1| $) 74 (|has| |#1| (-444)))) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 47 (|has| |#1| (-541))) (($ |#1|) 45) (($ (-400 (-549))) 55 (-1536 (|has| |#1| (-1009 (-400 (-549)))) (|has| |#1| (-38 (-400 (-549))))))) (-4141 (((-621 |#1|) $) 81)) (-2152 ((|#1| $ |#2|) 57)) (-2210 (((-3 $ "failed") $) 46 (|has| |#1| (-143)))) (-2082 (((-747)) 28)) (-1509 (($ $ $ (-747)) 76 (|has| |#1| (-170)))) (-1498 (((-112) $ $) 51 (|has| |#1| (-541)))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2513 (($ $ |#1|) 56 (|has| |#1| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
+(-10 -8 (-15 -3004 (|#1| |#1|)) (-15 -1700 (|#2| |#1|)) (-15 -2040 ((-3 |#1| "failed") |#1| |#2|)) (-15 -4046 (|#1| |#1| |#1| (-747))) (-15 -4064 (|#1| |#1| |#2| |#3| |#1|)) (-15 -3224 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2157 ((-621 |#2|) |#1|)) (-15 -2011 (|#2| |#1|)) (-15 -2001 ((-112) |#1|)) (-15 -2040 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2511 (|#1| |#1| |#2|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-3044 (($ $) 50 (|has| |#1| (-541)))) (-2774 (((-112) $) 52 (|has| |#1| (-541)))) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2712 (((-3 (-549) "failed") $) 88 (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 86 (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 85)) (-2657 (((-549) $) 89 (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) 87 (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 84)) (-2068 (($ $) 58)) (-2612 (((-3 $ "failed") $) 32)) (-3004 (($ $) 73 (|has| |#1| (-444)))) (-4064 (($ $ |#1| |#2| $) 77)) (-2297 (((-112) $) 30)) (-1751 (((-747) $) 80)) (-2988 (((-112) $) 60)) (-2244 (($ |#1| |#2|) 59)) (-2391 ((|#2| $) 79)) (-3224 (($ (-1 |#2| |#2|) $) 78)) (-2795 (($ (-1 |#1| |#1|) $) 61)) (-2027 (($ $) 63)) (-2042 ((|#1| $) 64)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2001 (((-112) $) 83)) (-2011 ((|#1| $) 82)) (-2040 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541))) (((-3 $ "failed") $ |#1|) 75 (|has| |#1| (-541)))) (-3977 ((|#2| $) 62)) (-1700 ((|#1| $) 74 (|has| |#1| (-444)))) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 47 (|has| |#1| (-541))) (($ |#1|) 45) (($ (-400 (-549))) 55 (-1536 (|has| |#1| (-1009 (-400 (-549)))) (|has| |#1| (-38 (-400 (-549))))))) (-2157 (((-621 |#1|) $) 81)) (-4068 ((|#1| $ |#2|) 57)) (-2343 (((-3 $ "failed") $) 46 (|has| |#1| (-143)))) (-2371 (((-747)) 28)) (-4046 (($ $ $ (-747)) 76 (|has| |#1| (-170)))) (-2441 (((-112) $ $) 51 (|has| |#1| (-541)))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2511 (($ $ |#1|) 56 (|has| |#1| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
(((-319 |#1| |#2|) (-138) (-1018) (-768)) (T -319))
-((-2004 (*1 *2 *1) (-12 (-4 *1 (-319 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)) (-5 *2 (-112)))) (-2016 (*1 *2 *1) (-12 (-4 *1 (-319 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018)))) (-4141 (*1 *2 *1) (-12 (-4 *1 (-319 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)) (-5 *2 (-621 *3)))) (-3347 (*1 *2 *1) (-12 (-4 *1 (-319 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)) (-5 *2 (-747)))) (-3611 (*1 *2 *1) (-12 (-4 *1 (-319 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))) (-3705 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-319 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)))) (-2691 (*1 *1 *1 *2 *3 *1) (-12 (-4 *1 (-319 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768)))) (-1509 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-319 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)) (-4 *3 (-170)))) (-2042 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-319 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768)) (-4 *2 (-541)))) (-2216 (*1 *2 *1) (-12 (-4 *1 (-319 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018)) (-4 *2 (-444)))) (-1285 (*1 *1 *1) (-12 (-4 *1 (-319 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768)) (-4 *2 (-444)))))
-(-13 (-47 |t#1| |t#2|) (-404 |t#1|) (-10 -8 (-15 -2004 ((-112) $)) (-15 -2016 (|t#1| $)) (-15 -4141 ((-621 |t#1|) $)) (-15 -3347 ((-747) $)) (-15 -3611 (|t#2| $)) (-15 -3705 ($ (-1 |t#2| |t#2|) $)) (-15 -2691 ($ $ |t#1| |t#2| $)) (IF (|has| |t#1| (-170)) (-15 -1509 ($ $ $ (-747))) |%noBranch|) (IF (|has| |t#1| (-541)) (-15 -2042 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-444)) (PROGN (-15 -2216 (|t#1| $)) (-15 -1285 ($ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) |has| |#1| (-541)) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-283) |has| |#1| (-541)) ((-404 |#1|) . T) ((-541) |has| |#1| (-541)) ((-624 #0#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #0#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) |has| |#1| (-541)) ((-703) . T) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1024 #0#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-4142 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-823)))) (-4311 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4338))) (($ $) NIL (-12 (|has| $ (-6 -4338)) (|has| |#1| (-823))))) (-3193 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-823)))) (-1584 (((-112) $ (-747)) NIL)) (-2927 (((-112) (-112)) NIL)) (-2254 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) NIL (|has| $ (-6 -4338)))) (-1717 (($ (-1 (-112) |#1|) $) NIL)) (-1489 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-1585 (($ $) NIL (|has| $ (-6 -4338)))) (-3064 (($ $) NIL)) (-3745 (($ $) NIL (|has| |#1| (-1067)))) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2129 (($ |#1| $) NIL (|has| |#1| (-1067))) (($ (-1 (-112) |#1|) $) NIL)) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-1879 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) NIL)) (-2883 (((-549) (-1 (-112) |#1|) $) NIL) (((-549) |#1| $) NIL (|has| |#1| (-1067))) (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1067)))) (-1337 (($ $ (-549)) NIL)) (-2399 (((-747) $) NIL)) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3743 (($ (-747) |#1|) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) NIL (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-1303 (($ $ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3890 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-823)))) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-2751 (($ $ $ (-549)) NIL) (($ |#1| $ (-549)) NIL)) (-2616 (($ |#1| $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-2208 (($ (-621 |#1|)) NIL)) (-3646 ((|#1| $) NIL (|has| (-549) (-823)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1642 (($ $ |#1|) NIL (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#1| $ (-549) |#1|) NIL) ((|#1| $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-3531 (($ $ (-1193 (-549))) NIL) (($ $ (-549)) NIL)) (-2167 (($ $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2730 (($ $ $ (-549)) NIL (|has| $ (-6 -4338)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) NIL)) (-3196 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1952 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-320 |#1|) (-13 (-19 |#1|) (-275 |#1|) (-10 -8 (-15 -2208 ($ (-621 |#1|))) (-15 -2399 ((-747) $)) (-15 -1337 ($ $ (-549))) (-15 -2927 ((-112) (-112))))) (-1180)) (T -320))
-((-2208 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-5 *1 (-320 *3)))) (-2399 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-320 *3)) (-4 *3 (-1180)))) (-1337 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-320 *3)) (-4 *3 (-1180)))) (-2927 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-320 *3)) (-4 *3 (-1180)))))
-(-13 (-19 |#1|) (-275 |#1|) (-10 -8 (-15 -2208 ($ (-621 |#1|))) (-15 -2399 ((-747) $)) (-15 -1337 ($ $ (-549))) (-15 -2927 ((-112) (-112)))))
-((-2044 (((-112) $) 42)) (-3214 (((-747)) 22)) (-2906 ((|#2| $) 46) (($ $ (-892)) 101)) (-3614 (((-747)) 102)) (-3492 (($ (-1226 |#2|)) 20)) (-4091 (((-112) $) 115)) (-3630 ((|#2| $) 48) (($ $ (-892)) 99)) (-3788 (((-1139 |#2|) $) NIL) (((-1139 $) $ (-892)) 95)) (-3318 (((-1139 |#2|) $) 82)) (-1983 (((-1139 |#2|) $) 79) (((-3 (-1139 |#2|) "failed") $ $) 76)) (-3719 (($ $ (-1139 |#2|)) 53)) (-3049 (((-809 (-892))) 28) (((-892)) 43)) (-2985 (((-133)) 25)) (-3701 (((-809 (-892)) $) 30) (((-892) $) 117)) (-1544 (($) 108)) (-4263 (((-1226 |#2|) $) NIL) (((-665 |#2|) (-1226 $)) 39)) (-2210 (($ $) NIL) (((-3 $ "failed") $) 85)) (-1606 (((-112) $) 41)))
-(((-321 |#1| |#2|) (-10 -8 (-15 -2210 ((-3 |#1| "failed") |#1|)) (-15 -3614 ((-747))) (-15 -2210 (|#1| |#1|)) (-15 -1983 ((-3 (-1139 |#2|) "failed") |#1| |#1|)) (-15 -1983 ((-1139 |#2|) |#1|)) (-15 -3318 ((-1139 |#2|) |#1|)) (-15 -3719 (|#1| |#1| (-1139 |#2|))) (-15 -4091 ((-112) |#1|)) (-15 -1544 (|#1|)) (-15 -2906 (|#1| |#1| (-892))) (-15 -3630 (|#1| |#1| (-892))) (-15 -3788 ((-1139 |#1|) |#1| (-892))) (-15 -2906 (|#2| |#1|)) (-15 -3630 (|#2| |#1|)) (-15 -3701 ((-892) |#1|)) (-15 -3049 ((-892))) (-15 -3788 ((-1139 |#2|) |#1|)) (-15 -3492 (|#1| (-1226 |#2|))) (-15 -4263 ((-665 |#2|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1|)) (-15 -3214 ((-747))) (-15 -3049 ((-809 (-892)))) (-15 -3701 ((-809 (-892)) |#1|)) (-15 -2044 ((-112) |#1|)) (-15 -1606 ((-112) |#1|)) (-15 -2985 ((-133)))) (-322 |#2|) (-356)) (T -321))
-((-2985 (*1 *2) (-12 (-4 *4 (-356)) (-5 *2 (-133)) (-5 *1 (-321 *3 *4)) (-4 *3 (-322 *4)))) (-3049 (*1 *2) (-12 (-4 *4 (-356)) (-5 *2 (-809 (-892))) (-5 *1 (-321 *3 *4)) (-4 *3 (-322 *4)))) (-3214 (*1 *2) (-12 (-4 *4 (-356)) (-5 *2 (-747)) (-5 *1 (-321 *3 *4)) (-4 *3 (-322 *4)))) (-3049 (*1 *2) (-12 (-4 *4 (-356)) (-5 *2 (-892)) (-5 *1 (-321 *3 *4)) (-4 *3 (-322 *4)))) (-3614 (*1 *2) (-12 (-4 *4 (-356)) (-5 *2 (-747)) (-5 *1 (-321 *3 *4)) (-4 *3 (-322 *4)))))
-(-10 -8 (-15 -2210 ((-3 |#1| "failed") |#1|)) (-15 -3614 ((-747))) (-15 -2210 (|#1| |#1|)) (-15 -1983 ((-3 (-1139 |#2|) "failed") |#1| |#1|)) (-15 -1983 ((-1139 |#2|) |#1|)) (-15 -3318 ((-1139 |#2|) |#1|)) (-15 -3719 (|#1| |#1| (-1139 |#2|))) (-15 -4091 ((-112) |#1|)) (-15 -1544 (|#1|)) (-15 -2906 (|#1| |#1| (-892))) (-15 -3630 (|#1| |#1| (-892))) (-15 -3788 ((-1139 |#1|) |#1| (-892))) (-15 -2906 (|#2| |#1|)) (-15 -3630 (|#2| |#1|)) (-15 -3701 ((-892) |#1|)) (-15 -3049 ((-892))) (-15 -3788 ((-1139 |#2|) |#1|)) (-15 -3492 (|#1| (-1226 |#2|))) (-15 -4263 ((-665 |#2|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1|)) (-15 -3214 ((-747))) (-15 -3049 ((-809 (-892)))) (-15 -3701 ((-809 (-892)) |#1|)) (-15 -2044 ((-112) |#1|)) (-15 -1606 ((-112) |#1|)) (-15 -2985 ((-133))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-2044 (((-112) $) 91)) (-3214 (((-747)) 87)) (-2906 ((|#1| $) 137) (($ $ (-892)) 134 (|has| |#1| (-361)))) (-3062 (((-1153 (-892) (-747)) (-549)) 119 (|has| |#1| (-361)))) (-2001 (((-3 $ "failed") $ $) 19)) (-3979 (($ $) 70)) (-2402 (((-411 $) $) 69)) (-3866 (((-112) $ $) 57)) (-3614 (((-747)) 109 (|has| |#1| (-361)))) (-1682 (($) 17 T CONST)) (-2714 (((-3 |#1| "failed") $) 98)) (-2659 ((|#1| $) 97)) (-3492 (($ (-1226 |#1|)) 143)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) 125 (|has| |#1| (-361)))) (-2095 (($ $ $) 53)) (-2114 (((-3 $ "failed") $) 32)) (-3239 (($) 106 (|has| |#1| (-361)))) (-2067 (($ $ $) 54)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 49)) (-2405 (($) 121 (|has| |#1| (-361)))) (-2288 (((-112) $) 122 (|has| |#1| (-361)))) (-3165 (($ $ (-747)) 84 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))) (($ $) 83 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-1420 (((-112) $) 68)) (-2088 (((-892) $) 124 (|has| |#1| (-361))) (((-809 (-892)) $) 81 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2675 (((-112) $) 30)) (-1973 (($) 132 (|has| |#1| (-361)))) (-4091 (((-112) $) 131 (|has| |#1| (-361)))) (-3630 ((|#1| $) 138) (($ $ (-892)) 135 (|has| |#1| (-361)))) (-1681 (((-3 $ "failed") $) 110 (|has| |#1| (-361)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-3788 (((-1139 |#1|) $) 142) (((-1139 $) $ (-892)) 136 (|has| |#1| (-361)))) (-1881 (((-892) $) 107 (|has| |#1| (-361)))) (-3318 (((-1139 |#1|) $) 128 (|has| |#1| (-361)))) (-1983 (((-1139 |#1|) $) 127 (|has| |#1| (-361))) (((-3 (-1139 |#1|) "failed") $ $) 126 (|has| |#1| (-361)))) (-3719 (($ $ (-1139 |#1|)) 129 (|has| |#1| (-361)))) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-1992 (($ $) 67)) (-3060 (($) 111 (|has| |#1| (-361)) CONST)) (-3493 (($ (-892)) 108 (|has| |#1| (-361)))) (-3980 (((-112) $) 90)) (-3990 (((-1087) $) 10)) (-4248 (($) 130 (|has| |#1| (-361)))) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) 118 (|has| |#1| (-361)))) (-2121 (((-411 $) $) 71)) (-3049 (((-809 (-892))) 88) (((-892)) 140)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2042 (((-3 $ "failed") $ $) 40)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-3684 (((-747) $) 56)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 55)) (-3914 (((-747) $) 123 (|has| |#1| (-361))) (((-3 (-747) "failed") $ $) 82 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2985 (((-133)) 96)) (-3456 (($ $) 115 (|has| |#1| (-361))) (($ $ (-747)) 113 (|has| |#1| (-361)))) (-3701 (((-809 (-892)) $) 89) (((-892) $) 139)) (-2815 (((-1139 |#1|)) 141)) (-3170 (($) 120 (|has| |#1| (-361)))) (-1544 (($) 133 (|has| |#1| (-361)))) (-4263 (((-1226 |#1|) $) 145) (((-665 |#1|) (-1226 $)) 144)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) 117 (|has| |#1| (-361)))) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63) (($ |#1|) 99)) (-2210 (($ $) 116 (|has| |#1| (-361))) (((-3 $ "failed") $) 80 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2082 (((-747)) 28)) (-1949 (((-1226 $)) 147) (((-1226 $) (-892)) 146)) (-1498 (((-112) $ $) 37)) (-1606 (((-112) $) 92)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1933 (($ $) 86 (|has| |#1| (-361))) (($ $ (-747)) 85 (|has| |#1| (-361)))) (-1702 (($ $) 114 (|has| |#1| (-361))) (($ $ (-747)) 112 (|has| |#1| (-361)))) (-2389 (((-112) $ $) 6)) (-2513 (($ $ $) 62) (($ $ |#1|) 95)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64) (($ $ |#1|) 94) (($ |#1| $) 93)))
+((-2001 (*1 *2 *1) (-12 (-4 *1 (-319 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)) (-5 *2 (-112)))) (-2011 (*1 *2 *1) (-12 (-4 *1 (-319 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018)))) (-2157 (*1 *2 *1) (-12 (-4 *1 (-319 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)) (-5 *2 (-621 *3)))) (-1751 (*1 *2 *1) (-12 (-4 *1 (-319 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)) (-5 *2 (-747)))) (-2391 (*1 *2 *1) (-12 (-4 *1 (-319 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))) (-3224 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-319 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)))) (-4064 (*1 *1 *1 *2 *3 *1) (-12 (-4 *1 (-319 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768)))) (-4046 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-319 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)) (-4 *3 (-170)))) (-2040 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-319 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768)) (-4 *2 (-541)))) (-1700 (*1 *2 *1) (-12 (-4 *1 (-319 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018)) (-4 *2 (-444)))) (-3004 (*1 *1 *1) (-12 (-4 *1 (-319 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768)) (-4 *2 (-444)))))
+(-13 (-47 |t#1| |t#2|) (-404 |t#1|) (-10 -8 (-15 -2001 ((-112) $)) (-15 -2011 (|t#1| $)) (-15 -2157 ((-621 |t#1|) $)) (-15 -1751 ((-747) $)) (-15 -2391 (|t#2| $)) (-15 -3224 ($ (-1 |t#2| |t#2|) $)) (-15 -4064 ($ $ |t#1| |t#2| $)) (IF (|has| |t#1| (-170)) (-15 -4046 ($ $ $ (-747))) |%noBranch|) (IF (|has| |t#1| (-541)) (-15 -2040 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-444)) (PROGN (-15 -1700 (|t#1| $)) (-15 -3004 ($ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) |has| |#1| (-541)) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-283) |has| |#1| (-541)) ((-404 |#1|) . T) ((-541) |has| |#1| (-541)) ((-624 #0#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #0#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) |has| |#1| (-541)) ((-703) . T) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1024 #0#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-2239 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-823)))) (-2015 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4337))) (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-823))))) (-3191 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-823)))) (-2850 (((-112) $ (-747)) NIL)) (-2379 (((-112) (-112)) NIL)) (-2250 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) NIL (|has| $ (-6 -4337)))) (-3827 (($ (-1 (-112) |#1|) $) NIL)) (-1488 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-2918 (($ $) NIL (|has| $ (-6 -4337)))) (-3062 (($ $) NIL)) (-3469 (($ $) NIL (|has| |#1| (-1066)))) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3546 (($ |#1| $) NIL (|has| |#1| (-1066))) (($ (-1 (-112) |#1|) $) NIL)) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4336)))) (-1875 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) NIL)) (-2881 (((-549) (-1 (-112) |#1|) $) NIL) (((-549) |#1| $) NIL (|has| |#1| (-1066))) (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1066)))) (-3468 (($ $ (-549)) NIL)) (-2313 (((-747) $) NIL)) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-3743 (($ (-747) |#1|) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) NIL (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3021 (($ $ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3050 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-823)))) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-1799 (($ $ $ (-549)) NIL) (($ |#1| $ (-549)) NIL)) (-2613 (($ |#1| $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-2086 (($ (-621 |#1|)) NIL)) (-3645 ((|#1| $) NIL (|has| (-549) (-823)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1943 (($ $ |#1|) NIL (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#1| $ (-549) |#1|) NIL) ((|#1| $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-2149 (($ $ (-1192 (-549))) NIL) (($ $ (-549)) NIL)) (-2162 (($ $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2049 (($ $ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) NIL)) (-3859 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1950 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-320 |#1|) (-13 (-19 |#1|) (-275 |#1|) (-10 -8 (-15 -2086 ($ (-621 |#1|))) (-15 -2313 ((-747) $)) (-15 -3468 ($ $ (-549))) (-15 -2379 ((-112) (-112))))) (-1179)) (T -320))
+((-2086 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-5 *1 (-320 *3)))) (-2313 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-320 *3)) (-4 *3 (-1179)))) (-3468 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-320 *3)) (-4 *3 (-1179)))) (-2379 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-320 *3)) (-4 *3 (-1179)))))
+(-13 (-19 |#1|) (-275 |#1|) (-10 -8 (-15 -2086 ($ (-621 |#1|))) (-15 -2313 ((-747) $)) (-15 -3468 ($ $ (-549))) (-15 -2379 ((-112) (-112)))))
+((-2638 (((-112) $) 42)) (-2464 (((-747)) 22)) (-2904 ((|#2| $) 46) (($ $ (-892)) 101)) (-3614 (((-747)) 102)) (-2397 (($ (-1225 |#2|)) 20)) (-4031 (((-112) $) 115)) (-2469 ((|#2| $) 48) (($ $ (-892)) 99)) (-3514 (((-1138 |#2|) $) NIL) (((-1138 $) $ (-892)) 95)) (-4021 (((-1138 |#2|) $) 82)) (-1298 (((-1138 |#2|) $) 79) (((-3 (-1138 |#2|) "failed") $ $) 76)) (-3098 (($ $ (-1138 |#2|)) 53)) (-1485 (((-809 (-892))) 28) (((-892)) 43)) (-2260 (((-133)) 25)) (-3977 (((-809 (-892)) $) 30) (((-892) $) 117)) (-2578 (($) 108)) (-1981 (((-1225 |#2|) $) NIL) (((-665 |#2|) (-1225 $)) 39)) (-2343 (($ $) NIL) (((-3 $ "failed") $) 85)) (-1993 (((-112) $) 41)))
+(((-321 |#1| |#2|) (-10 -8 (-15 -2343 ((-3 |#1| "failed") |#1|)) (-15 -3614 ((-747))) (-15 -2343 (|#1| |#1|)) (-15 -1298 ((-3 (-1138 |#2|) "failed") |#1| |#1|)) (-15 -1298 ((-1138 |#2|) |#1|)) (-15 -4021 ((-1138 |#2|) |#1|)) (-15 -3098 (|#1| |#1| (-1138 |#2|))) (-15 -4031 ((-112) |#1|)) (-15 -2578 (|#1|)) (-15 -2904 (|#1| |#1| (-892))) (-15 -2469 (|#1| |#1| (-892))) (-15 -3514 ((-1138 |#1|) |#1| (-892))) (-15 -2904 (|#2| |#1|)) (-15 -2469 (|#2| |#1|)) (-15 -3977 ((-892) |#1|)) (-15 -1485 ((-892))) (-15 -3514 ((-1138 |#2|) |#1|)) (-15 -2397 (|#1| (-1225 |#2|))) (-15 -1981 ((-665 |#2|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1|)) (-15 -2464 ((-747))) (-15 -1485 ((-809 (-892)))) (-15 -3977 ((-809 (-892)) |#1|)) (-15 -2638 ((-112) |#1|)) (-15 -1993 ((-112) |#1|)) (-15 -2260 ((-133)))) (-322 |#2|) (-356)) (T -321))
+((-2260 (*1 *2) (-12 (-4 *4 (-356)) (-5 *2 (-133)) (-5 *1 (-321 *3 *4)) (-4 *3 (-322 *4)))) (-1485 (*1 *2) (-12 (-4 *4 (-356)) (-5 *2 (-809 (-892))) (-5 *1 (-321 *3 *4)) (-4 *3 (-322 *4)))) (-2464 (*1 *2) (-12 (-4 *4 (-356)) (-5 *2 (-747)) (-5 *1 (-321 *3 *4)) (-4 *3 (-322 *4)))) (-1485 (*1 *2) (-12 (-4 *4 (-356)) (-5 *2 (-892)) (-5 *1 (-321 *3 *4)) (-4 *3 (-322 *4)))) (-3614 (*1 *2) (-12 (-4 *4 (-356)) (-5 *2 (-747)) (-5 *1 (-321 *3 *4)) (-4 *3 (-322 *4)))))
+(-10 -8 (-15 -2343 ((-3 |#1| "failed") |#1|)) (-15 -3614 ((-747))) (-15 -2343 (|#1| |#1|)) (-15 -1298 ((-3 (-1138 |#2|) "failed") |#1| |#1|)) (-15 -1298 ((-1138 |#2|) |#1|)) (-15 -4021 ((-1138 |#2|) |#1|)) (-15 -3098 (|#1| |#1| (-1138 |#2|))) (-15 -4031 ((-112) |#1|)) (-15 -2578 (|#1|)) (-15 -2904 (|#1| |#1| (-892))) (-15 -2469 (|#1| |#1| (-892))) (-15 -3514 ((-1138 |#1|) |#1| (-892))) (-15 -2904 (|#2| |#1|)) (-15 -2469 (|#2| |#1|)) (-15 -3977 ((-892) |#1|)) (-15 -1485 ((-892))) (-15 -3514 ((-1138 |#2|) |#1|)) (-15 -2397 (|#1| (-1225 |#2|))) (-15 -1981 ((-665 |#2|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1|)) (-15 -2464 ((-747))) (-15 -1485 ((-809 (-892)))) (-15 -3977 ((-809 (-892)) |#1|)) (-15 -2638 ((-112) |#1|)) (-15 -1993 ((-112) |#1|)) (-15 -2260 ((-133))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-2638 (((-112) $) 91)) (-2464 (((-747)) 87)) (-2904 ((|#1| $) 137) (($ $ (-892)) 134 (|has| |#1| (-361)))) (-1597 (((-1152 (-892) (-747)) (-549)) 119 (|has| |#1| (-361)))) (-2416 (((-3 $ "failed") $ $) 19)) (-3239 (($ $) 70)) (-2620 (((-411 $) $) 69)) (-2680 (((-112) $ $) 57)) (-3614 (((-747)) 109 (|has| |#1| (-361)))) (-3034 (($) 17 T CONST)) (-2712 (((-3 |#1| "failed") $) 98)) (-2657 ((|#1| $) 97)) (-2397 (($ (-1225 |#1|)) 143)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) 125 (|has| |#1| (-361)))) (-2091 (($ $ $) 53)) (-2612 (((-3 $ "failed") $) 32)) (-3237 (($) 106 (|has| |#1| (-361)))) (-2065 (($ $ $) 54)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 49)) (-1545 (($) 121 (|has| |#1| (-361)))) (-1315 (((-112) $) 122 (|has| |#1| (-361)))) (-3517 (($ $ (-747)) 84 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))) (($ $) 83 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-1464 (((-112) $) 68)) (-2729 (((-892) $) 124 (|has| |#1| (-361))) (((-809 (-892)) $) 81 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2297 (((-112) $) 30)) (-1728 (($) 132 (|has| |#1| (-361)))) (-4031 (((-112) $) 131 (|has| |#1| (-361)))) (-2469 ((|#1| $) 138) (($ $ (-892)) 135 (|has| |#1| (-361)))) (-2964 (((-3 $ "failed") $) 110 (|has| |#1| (-361)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-3514 (((-1138 |#1|) $) 142) (((-1138 $) $ (-892)) 136 (|has| |#1| (-361)))) (-3309 (((-892) $) 107 (|has| |#1| (-361)))) (-4021 (((-1138 |#1|) $) 128 (|has| |#1| (-361)))) (-1298 (((-1138 |#1|) $) 127 (|has| |#1| (-361))) (((-3 (-1138 |#1|) "failed") $ $) 126 (|has| |#1| (-361)))) (-3098 (($ $ (-1138 |#1|)) 129 (|has| |#1| (-361)))) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-1990 (($ $) 67)) (-3059 (($) 111 (|has| |#1| (-361)) CONST)) (-3494 (($ (-892)) 108 (|has| |#1| (-361)))) (-2165 (((-112) $) 90)) (-3988 (((-1086) $) 10)) (-4247 (($) 130 (|has| |#1| (-361)))) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) 118 (|has| |#1| (-361)))) (-2119 (((-411 $) $) 71)) (-1485 (((-809 (-892))) 88) (((-892)) 140)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2040 (((-3 $ "failed") $ $) 40)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-1335 (((-747) $) 56)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 55)) (-3189 (((-747) $) 123 (|has| |#1| (-361))) (((-3 (-747) "failed") $ $) 82 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2260 (((-133)) 96)) (-3455 (($ $) 115 (|has| |#1| (-361))) (($ $ (-747)) 113 (|has| |#1| (-361)))) (-3977 (((-809 (-892)) $) 89) (((-892) $) 139)) (-1262 (((-1138 |#1|)) 141)) (-2950 (($) 120 (|has| |#1| (-361)))) (-2578 (($) 133 (|has| |#1| (-361)))) (-1981 (((-1225 |#1|) $) 145) (((-665 |#1|) (-1225 $)) 144)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) 117 (|has| |#1| (-361)))) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63) (($ |#1|) 99)) (-2343 (($ $) 116 (|has| |#1| (-361))) (((-3 $ "failed") $) 80 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2371 (((-747)) 28)) (-2619 (((-1225 $)) 147) (((-1225 $) (-892)) 146)) (-2441 (((-112) $ $) 37)) (-1993 (((-112) $) 92)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-3495 (($ $) 86 (|has| |#1| (-361))) (($ $ (-747)) 85 (|has| |#1| (-361)))) (-1699 (($ $) 114 (|has| |#1| (-361))) (($ $ (-747)) 112 (|has| |#1| (-361)))) (-2387 (((-112) $ $) 6)) (-2511 (($ $ $) 62) (($ $ |#1|) 95)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64) (($ $ |#1|) 94) (($ |#1| $) 93)))
(((-322 |#1|) (-138) (-356)) (T -322))
-((-1949 (*1 *2) (-12 (-4 *3 (-356)) (-5 *2 (-1226 *1)) (-4 *1 (-322 *3)))) (-1949 (*1 *2 *3) (-12 (-5 *3 (-892)) (-4 *4 (-356)) (-5 *2 (-1226 *1)) (-4 *1 (-322 *4)))) (-4263 (*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-1226 *3)))) (-4263 (*1 *2 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-322 *4)) (-4 *4 (-356)) (-5 *2 (-665 *4)))) (-3492 (*1 *1 *2) (-12 (-5 *2 (-1226 *3)) (-4 *3 (-356)) (-4 *1 (-322 *3)))) (-3788 (*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-1139 *3)))) (-2815 (*1 *2) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-1139 *3)))) (-3049 (*1 *2) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-892)))) (-3701 (*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-892)))) (-3630 (*1 *2 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-356)))) (-2906 (*1 *2 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-356)))) (-3788 (*1 *2 *1 *3) (-12 (-5 *3 (-892)) (-4 *4 (-361)) (-4 *4 (-356)) (-5 *2 (-1139 *1)) (-4 *1 (-322 *4)))) (-3630 (*1 *1 *1 *2) (-12 (-5 *2 (-892)) (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361)))) (-2906 (*1 *1 *1 *2) (-12 (-5 *2 (-892)) (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361)))) (-1544 (*1 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-361)) (-4 *2 (-356)))) (-1973 (*1 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-361)) (-4 *2 (-356)))) (-4091 (*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361)) (-5 *2 (-112)))) (-4248 (*1 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-361)) (-4 *2 (-356)))) (-3719 (*1 *1 *1 *2) (-12 (-5 *2 (-1139 *3)) (-4 *3 (-361)) (-4 *1 (-322 *3)) (-4 *3 (-356)))) (-3318 (*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361)) (-5 *2 (-1139 *3)))) (-1983 (*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361)) (-5 *2 (-1139 *3)))) (-1983 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361)) (-5 *2 (-1139 *3)))))
-(-13 (-1245 |t#1|) (-1009 |t#1|) (-10 -8 (-15 -1949 ((-1226 $))) (-15 -1949 ((-1226 $) (-892))) (-15 -4263 ((-1226 |t#1|) $)) (-15 -4263 ((-665 |t#1|) (-1226 $))) (-15 -3492 ($ (-1226 |t#1|))) (-15 -3788 ((-1139 |t#1|) $)) (-15 -2815 ((-1139 |t#1|))) (-15 -3049 ((-892))) (-15 -3701 ((-892) $)) (-15 -3630 (|t#1| $)) (-15 -2906 (|t#1| $)) (IF (|has| |t#1| (-361)) (PROGN (-6 (-342)) (-15 -3788 ((-1139 $) $ (-892))) (-15 -3630 ($ $ (-892))) (-15 -2906 ($ $ (-892))) (-15 -1544 ($)) (-15 -1973 ($)) (-15 -4091 ((-112) $)) (-15 -4248 ($)) (-15 -3719 ($ $ (-1139 |t#1|))) (-15 -3318 ((-1139 |t#1|) $)) (-15 -1983 ((-1139 |t#1|) $)) (-15 -1983 ((-3 (-1139 |t#1|) "failed") $ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-130) . T) ((-143) -1536 (|has| |#1| (-361)) (|has| |#1| (-143))) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) . T) ((-227) |has| |#1| (-361)) ((-237) . T) ((-283) . T) ((-300) . T) ((-1245 |#1|) . T) ((-356) . T) ((-395) -1536 (|has| |#1| (-361)) (|has| |#1| (-143))) ((-361) |has| |#1| (-361)) ((-342) |has| |#1| (-361)) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 |#1|) . T) ((-694 $) . T) ((-703) . T) ((-891) . T) ((-1009 |#1|) . T) ((-1024 #0#) . T) ((-1024 |#1|) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1118) |has| |#1| (-361)) ((-1184) . T) ((-1233 |#1|) . T))
-((-3834 (((-112) $ $) NIL)) (-2186 (($ (-1142) $) 88)) (-4150 (($) 77)) (-3295 (((-1087) (-1087)) 11)) (-2536 (($) 78)) (-3029 (($) 90) (($ (-309 (-675))) 98) (($ (-309 (-677))) 94) (($ (-309 (-670))) 102) (($ (-309 (-372))) 109) (($ (-309 (-549))) 105) (($ (-309 (-167 (-372)))) 113)) (-2795 (($ (-1142) $) 89)) (-3987 (($ (-621 (-834))) 79)) (-1268 (((-1231) $) 75)) (-3379 (((-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")) $) 27)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3145 (($ (-1087)) 51)) (-2889 (((-1071) $) 25)) (-2718 (($ (-1059 (-923 (-549))) $) 85) (($ (-1059 (-923 (-549))) (-923 (-549)) $) 86)) (-2329 (($ (-1087)) 87)) (-4109 (($ (-1142) $) 115) (($ (-1142) $ $) 116)) (-3556 (($ (-1143) (-621 (-1143))) 76)) (-1264 (($ (-1125)) 82) (($ (-621 (-1125))) 80)) (-3846 (((-834) $) 118)) (-2103 (((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1143)) (|:| |arrayIndex| (-621 (-923 (-549)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2977 (-834)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1143)) (|:| |rand| (-834)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1142)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3670 (-112)) (|:| -4161 (-2 (|:| |ints2Floats?| (-112)) (|:| -2977 (-834)))))) (|:| |blockBranch| (-621 $)) (|:| |commentBranch| (-621 (-1125))) (|:| |callBranch| (-1125)) (|:| |forBranch| (-2 (|:| -1372 (-1059 (-923 (-549)))) (|:| |span| (-923 (-549))) (|:| -2492 $))) (|:| |labelBranch| (-1087)) (|:| |loopBranch| (-2 (|:| |switch| (-1142)) (|:| -2492 $))) (|:| |commonBranch| (-2 (|:| -2481 (-1143)) (|:| |contents| (-621 (-1143))))) (|:| |printBranch| (-621 (-834)))) $) 44)) (-3511 (($ (-1125)) 187)) (-1795 (($ (-621 $)) 114)) (-2712 (($ (-1143) (-1125)) 120) (($ (-1143) (-309 (-677))) 160) (($ (-1143) (-309 (-675))) 161) (($ (-1143) (-309 (-670))) 162) (($ (-1143) (-665 (-677))) 123) (($ (-1143) (-665 (-675))) 126) (($ (-1143) (-665 (-670))) 129) (($ (-1143) (-1226 (-677))) 132) (($ (-1143) (-1226 (-675))) 135) (($ (-1143) (-1226 (-670))) 138) (($ (-1143) (-665 (-309 (-677)))) 141) (($ (-1143) (-665 (-309 (-675)))) 144) (($ (-1143) (-665 (-309 (-670)))) 147) (($ (-1143) (-1226 (-309 (-677)))) 150) (($ (-1143) (-1226 (-309 (-675)))) 153) (($ (-1143) (-1226 (-309 (-670)))) 156) (($ (-1143) (-621 (-923 (-549))) (-309 (-677))) 157) (($ (-1143) (-621 (-923 (-549))) (-309 (-675))) 158) (($ (-1143) (-621 (-923 (-549))) (-309 (-670))) 159) (($ (-1143) (-309 (-549))) 184) (($ (-1143) (-309 (-372))) 185) (($ (-1143) (-309 (-167 (-372)))) 186) (($ (-1143) (-665 (-309 (-549)))) 165) (($ (-1143) (-665 (-309 (-372)))) 168) (($ (-1143) (-665 (-309 (-167 (-372))))) 171) (($ (-1143) (-1226 (-309 (-549)))) 174) (($ (-1143) (-1226 (-309 (-372)))) 177) (($ (-1143) (-1226 (-309 (-167 (-372))))) 180) (($ (-1143) (-621 (-923 (-549))) (-309 (-549))) 181) (($ (-1143) (-621 (-923 (-549))) (-309 (-372))) 182) (($ (-1143) (-621 (-923 (-549))) (-309 (-167 (-372)))) 183)) (-2389 (((-112) $ $) NIL)))
-(((-323) (-13 (-1067) (-10 -8 (-15 -3846 ((-834) $)) (-15 -2718 ($ (-1059 (-923 (-549))) $)) (-15 -2718 ($ (-1059 (-923 (-549))) (-923 (-549)) $)) (-15 -2186 ($ (-1142) $)) (-15 -2795 ($ (-1142) $)) (-15 -3145 ($ (-1087))) (-15 -2329 ($ (-1087))) (-15 -1264 ($ (-1125))) (-15 -1264 ($ (-621 (-1125)))) (-15 -3511 ($ (-1125))) (-15 -3029 ($)) (-15 -3029 ($ (-309 (-675)))) (-15 -3029 ($ (-309 (-677)))) (-15 -3029 ($ (-309 (-670)))) (-15 -3029 ($ (-309 (-372)))) (-15 -3029 ($ (-309 (-549)))) (-15 -3029 ($ (-309 (-167 (-372))))) (-15 -4109 ($ (-1142) $)) (-15 -4109 ($ (-1142) $ $)) (-15 -2712 ($ (-1143) (-1125))) (-15 -2712 ($ (-1143) (-309 (-677)))) (-15 -2712 ($ (-1143) (-309 (-675)))) (-15 -2712 ($ (-1143) (-309 (-670)))) (-15 -2712 ($ (-1143) (-665 (-677)))) (-15 -2712 ($ (-1143) (-665 (-675)))) (-15 -2712 ($ (-1143) (-665 (-670)))) (-15 -2712 ($ (-1143) (-1226 (-677)))) (-15 -2712 ($ (-1143) (-1226 (-675)))) (-15 -2712 ($ (-1143) (-1226 (-670)))) (-15 -2712 ($ (-1143) (-665 (-309 (-677))))) (-15 -2712 ($ (-1143) (-665 (-309 (-675))))) (-15 -2712 ($ (-1143) (-665 (-309 (-670))))) (-15 -2712 ($ (-1143) (-1226 (-309 (-677))))) (-15 -2712 ($ (-1143) (-1226 (-309 (-675))))) (-15 -2712 ($ (-1143) (-1226 (-309 (-670))))) (-15 -2712 ($ (-1143) (-621 (-923 (-549))) (-309 (-677)))) (-15 -2712 ($ (-1143) (-621 (-923 (-549))) (-309 (-675)))) (-15 -2712 ($ (-1143) (-621 (-923 (-549))) (-309 (-670)))) (-15 -2712 ($ (-1143) (-309 (-549)))) (-15 -2712 ($ (-1143) (-309 (-372)))) (-15 -2712 ($ (-1143) (-309 (-167 (-372))))) (-15 -2712 ($ (-1143) (-665 (-309 (-549))))) (-15 -2712 ($ (-1143) (-665 (-309 (-372))))) (-15 -2712 ($ (-1143) (-665 (-309 (-167 (-372)))))) (-15 -2712 ($ (-1143) (-1226 (-309 (-549))))) (-15 -2712 ($ (-1143) (-1226 (-309 (-372))))) (-15 -2712 ($ (-1143) (-1226 (-309 (-167 (-372)))))) (-15 -2712 ($ (-1143) (-621 (-923 (-549))) (-309 (-549)))) (-15 -2712 ($ (-1143) (-621 (-923 (-549))) (-309 (-372)))) (-15 -2712 ($ (-1143) (-621 (-923 (-549))) (-309 (-167 (-372))))) (-15 -1795 ($ (-621 $))) (-15 -4150 ($)) (-15 -2536 ($)) (-15 -3987 ($ (-621 (-834)))) (-15 -3556 ($ (-1143) (-621 (-1143)))) (-15 -3379 ((-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 -2103 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1143)) (|:| |arrayIndex| (-621 (-923 (-549)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2977 (-834)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1143)) (|:| |rand| (-834)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1142)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3670 (-112)) (|:| -4161 (-2 (|:| |ints2Floats?| (-112)) (|:| -2977 (-834)))))) (|:| |blockBranch| (-621 $)) (|:| |commentBranch| (-621 (-1125))) (|:| |callBranch| (-1125)) (|:| |forBranch| (-2 (|:| -1372 (-1059 (-923 (-549)))) (|:| |span| (-923 (-549))) (|:| -2492 $))) (|:| |labelBranch| (-1087)) (|:| |loopBranch| (-2 (|:| |switch| (-1142)) (|:| -2492 $))) (|:| |commonBranch| (-2 (|:| -2481 (-1143)) (|:| |contents| (-621 (-1143))))) (|:| |printBranch| (-621 (-834)))) $)) (-15 -1268 ((-1231) $)) (-15 -2889 ((-1071) $)) (-15 -3295 ((-1087) (-1087)))))) (T -323))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-323)))) (-2718 (*1 *1 *2 *1) (-12 (-5 *2 (-1059 (-923 (-549)))) (-5 *1 (-323)))) (-2718 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1059 (-923 (-549)))) (-5 *3 (-923 (-549))) (-5 *1 (-323)))) (-2186 (*1 *1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-323)))) (-2795 (*1 *1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-323)))) (-3145 (*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-323)))) (-2329 (*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-323)))) (-1264 (*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-323)))) (-1264 (*1 *1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-323)))) (-3511 (*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-323)))) (-3029 (*1 *1) (-5 *1 (-323))) (-3029 (*1 *1 *2) (-12 (-5 *2 (-309 (-675))) (-5 *1 (-323)))) (-3029 (*1 *1 *2) (-12 (-5 *2 (-309 (-677))) (-5 *1 (-323)))) (-3029 (*1 *1 *2) (-12 (-5 *2 (-309 (-670))) (-5 *1 (-323)))) (-3029 (*1 *1 *2) (-12 (-5 *2 (-309 (-372))) (-5 *1 (-323)))) (-3029 (*1 *1 *2) (-12 (-5 *2 (-309 (-549))) (-5 *1 (-323)))) (-3029 (*1 *1 *2) (-12 (-5 *2 (-309 (-167 (-372)))) (-5 *1 (-323)))) (-4109 (*1 *1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-323)))) (-4109 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1125)) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-309 (-677))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-309 (-675))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-309 (-670))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-677))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-675))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-670))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-677))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-675))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-670))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-309 (-677)))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-309 (-675)))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-309 (-670)))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-309 (-677)))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-309 (-675)))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-309 (-670)))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-309 (-677))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-309 (-675))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-309 (-670))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-309 (-549))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-309 (-372))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-309 (-167 (-372)))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-309 (-549)))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-309 (-372)))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-309 (-167 (-372))))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-309 (-549)))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-309 (-372)))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-309 (-167 (-372))))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-309 (-549))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-309 (-372))) (-5 *1 (-323)))) (-2712 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-309 (-167 (-372)))) (-5 *1 (-323)))) (-1795 (*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-5 *1 (-323)))) (-4150 (*1 *1) (-5 *1 (-323))) (-2536 (*1 *1) (-5 *1 (-323))) (-3987 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-323)))) (-3556 (*1 *1 *2 *3) (-12 (-5 *3 (-621 (-1143))) (-5 *2 (-1143)) (-5 *1 (-323)))) (-3379 (*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 (-323)))) (-2103 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1143)) (|:| |arrayIndex| (-621 (-923 (-549)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2977 (-834)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1143)) (|:| |rand| (-834)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1142)) (|:| |thenClause| (-323)) (|:| |elseClause| (-323)))) (|:| |returnBranch| (-2 (|:| -3670 (-112)) (|:| -4161 (-2 (|:| |ints2Floats?| (-112)) (|:| -2977 (-834)))))) (|:| |blockBranch| (-621 (-323))) (|:| |commentBranch| (-621 (-1125))) (|:| |callBranch| (-1125)) (|:| |forBranch| (-2 (|:| -1372 (-1059 (-923 (-549)))) (|:| |span| (-923 (-549))) (|:| -2492 (-323)))) (|:| |labelBranch| (-1087)) (|:| |loopBranch| (-2 (|:| |switch| (-1142)) (|:| -2492 (-323)))) (|:| |commonBranch| (-2 (|:| -2481 (-1143)) (|:| |contents| (-621 (-1143))))) (|:| |printBranch| (-621 (-834))))) (-5 *1 (-323)))) (-1268 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-323)))) (-2889 (*1 *2 *1) (-12 (-5 *2 (-1071)) (-5 *1 (-323)))) (-3295 (*1 *2 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-323)))))
-(-13 (-1067) (-10 -8 (-15 -3846 ((-834) $)) (-15 -2718 ($ (-1059 (-923 (-549))) $)) (-15 -2718 ($ (-1059 (-923 (-549))) (-923 (-549)) $)) (-15 -2186 ($ (-1142) $)) (-15 -2795 ($ (-1142) $)) (-15 -3145 ($ (-1087))) (-15 -2329 ($ (-1087))) (-15 -1264 ($ (-1125))) (-15 -1264 ($ (-621 (-1125)))) (-15 -3511 ($ (-1125))) (-15 -3029 ($)) (-15 -3029 ($ (-309 (-675)))) (-15 -3029 ($ (-309 (-677)))) (-15 -3029 ($ (-309 (-670)))) (-15 -3029 ($ (-309 (-372)))) (-15 -3029 ($ (-309 (-549)))) (-15 -3029 ($ (-309 (-167 (-372))))) (-15 -4109 ($ (-1142) $)) (-15 -4109 ($ (-1142) $ $)) (-15 -2712 ($ (-1143) (-1125))) (-15 -2712 ($ (-1143) (-309 (-677)))) (-15 -2712 ($ (-1143) (-309 (-675)))) (-15 -2712 ($ (-1143) (-309 (-670)))) (-15 -2712 ($ (-1143) (-665 (-677)))) (-15 -2712 ($ (-1143) (-665 (-675)))) (-15 -2712 ($ (-1143) (-665 (-670)))) (-15 -2712 ($ (-1143) (-1226 (-677)))) (-15 -2712 ($ (-1143) (-1226 (-675)))) (-15 -2712 ($ (-1143) (-1226 (-670)))) (-15 -2712 ($ (-1143) (-665 (-309 (-677))))) (-15 -2712 ($ (-1143) (-665 (-309 (-675))))) (-15 -2712 ($ (-1143) (-665 (-309 (-670))))) (-15 -2712 ($ (-1143) (-1226 (-309 (-677))))) (-15 -2712 ($ (-1143) (-1226 (-309 (-675))))) (-15 -2712 ($ (-1143) (-1226 (-309 (-670))))) (-15 -2712 ($ (-1143) (-621 (-923 (-549))) (-309 (-677)))) (-15 -2712 ($ (-1143) (-621 (-923 (-549))) (-309 (-675)))) (-15 -2712 ($ (-1143) (-621 (-923 (-549))) (-309 (-670)))) (-15 -2712 ($ (-1143) (-309 (-549)))) (-15 -2712 ($ (-1143) (-309 (-372)))) (-15 -2712 ($ (-1143) (-309 (-167 (-372))))) (-15 -2712 ($ (-1143) (-665 (-309 (-549))))) (-15 -2712 ($ (-1143) (-665 (-309 (-372))))) (-15 -2712 ($ (-1143) (-665 (-309 (-167 (-372)))))) (-15 -2712 ($ (-1143) (-1226 (-309 (-549))))) (-15 -2712 ($ (-1143) (-1226 (-309 (-372))))) (-15 -2712 ($ (-1143) (-1226 (-309 (-167 (-372)))))) (-15 -2712 ($ (-1143) (-621 (-923 (-549))) (-309 (-549)))) (-15 -2712 ($ (-1143) (-621 (-923 (-549))) (-309 (-372)))) (-15 -2712 ($ (-1143) (-621 (-923 (-549))) (-309 (-167 (-372))))) (-15 -1795 ($ (-621 $))) (-15 -4150 ($)) (-15 -2536 ($)) (-15 -3987 ($ (-621 (-834)))) (-15 -3556 ($ (-1143) (-621 (-1143)))) (-15 -3379 ((-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 -2103 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1143)) (|:| |arrayIndex| (-621 (-923 (-549)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2977 (-834)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1143)) (|:| |rand| (-834)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1142)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3670 (-112)) (|:| -4161 (-2 (|:| |ints2Floats?| (-112)) (|:| -2977 (-834)))))) (|:| |blockBranch| (-621 $)) (|:| |commentBranch| (-621 (-1125))) (|:| |callBranch| (-1125)) (|:| |forBranch| (-2 (|:| -1372 (-1059 (-923 (-549)))) (|:| |span| (-923 (-549))) (|:| -2492 $))) (|:| |labelBranch| (-1087)) (|:| |loopBranch| (-2 (|:| |switch| (-1142)) (|:| -2492 $))) (|:| |commonBranch| (-2 (|:| -2481 (-1143)) (|:| |contents| (-621 (-1143))))) (|:| |printBranch| (-621 (-834)))) $)) (-15 -1268 ((-1231) $)) (-15 -2889 ((-1071) $)) (-15 -3295 ((-1087) (-1087)))))
-((-3834 (((-112) $ $) NIL)) (-4238 (((-112) $) 11)) (-1486 (($ |#1|) 8)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-1501 (($ |#1|) 9)) (-3846 (((-834) $) 17)) (-1572 ((|#1| $) 12)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 19)))
-(((-324 |#1|) (-13 (-823) (-10 -8 (-15 -1486 ($ |#1|)) (-15 -1501 ($ |#1|)) (-15 -4238 ((-112) $)) (-15 -1572 (|#1| $)))) (-823)) (T -324))
-((-1486 (*1 *1 *2) (-12 (-5 *1 (-324 *2)) (-4 *2 (-823)))) (-1501 (*1 *1 *2) (-12 (-5 *1 (-324 *2)) (-4 *2 (-823)))) (-4238 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-324 *3)) (-4 *3 (-823)))) (-1572 (*1 *2 *1) (-12 (-5 *1 (-324 *2)) (-4 *2 (-823)))))
-(-13 (-823) (-10 -8 (-15 -1486 ($ |#1|)) (-15 -1501 ($ |#1|)) (-15 -4238 ((-112) $)) (-15 -1572 (|#1| $))))
-((-2165 (((-323) (-1143) (-923 (-549))) 23)) (-1261 (((-323) (-1143) (-923 (-549))) 27)) (-3985 (((-323) (-1143) (-1059 (-923 (-549))) (-1059 (-923 (-549)))) 26) (((-323) (-1143) (-923 (-549)) (-923 (-549))) 24)) (-3640 (((-323) (-1143) (-923 (-549))) 31)))
-(((-325) (-10 -7 (-15 -2165 ((-323) (-1143) (-923 (-549)))) (-15 -3985 ((-323) (-1143) (-923 (-549)) (-923 (-549)))) (-15 -3985 ((-323) (-1143) (-1059 (-923 (-549))) (-1059 (-923 (-549))))) (-15 -1261 ((-323) (-1143) (-923 (-549)))) (-15 -3640 ((-323) (-1143) (-923 (-549)))))) (T -325))
-((-3640 (*1 *2 *3 *4) (-12 (-5 *3 (-1143)) (-5 *4 (-923 (-549))) (-5 *2 (-323)) (-5 *1 (-325)))) (-1261 (*1 *2 *3 *4) (-12 (-5 *3 (-1143)) (-5 *4 (-923 (-549))) (-5 *2 (-323)) (-5 *1 (-325)))) (-3985 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1143)) (-5 *4 (-1059 (-923 (-549)))) (-5 *2 (-323)) (-5 *1 (-325)))) (-3985 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1143)) (-5 *4 (-923 (-549))) (-5 *2 (-323)) (-5 *1 (-325)))) (-2165 (*1 *2 *3 *4) (-12 (-5 *3 (-1143)) (-5 *4 (-923 (-549))) (-5 *2 (-323)) (-5 *1 (-325)))))
-(-10 -7 (-15 -2165 ((-323) (-1143) (-923 (-549)))) (-15 -3985 ((-323) (-1143) (-923 (-549)) (-923 (-549)))) (-15 -3985 ((-323) (-1143) (-1059 (-923 (-549))) (-1059 (-923 (-549))))) (-15 -1261 ((-323) (-1143) (-923 (-549)))) (-15 -3640 ((-323) (-1143) (-923 (-549)))))
-((-2797 (((-329 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-329 |#1| |#2| |#3| |#4|)) 33)))
-(((-326 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2797 ((-329 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-329 |#1| |#2| |#3| |#4|)))) (-356) (-1202 |#1|) (-1202 (-400 |#2|)) (-335 |#1| |#2| |#3|) (-356) (-1202 |#5|) (-1202 (-400 |#6|)) (-335 |#5| |#6| |#7|)) (T -326))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-329 *5 *6 *7 *8)) (-4 *5 (-356)) (-4 *6 (-1202 *5)) (-4 *7 (-1202 (-400 *6))) (-4 *8 (-335 *5 *6 *7)) (-4 *9 (-356)) (-4 *10 (-1202 *9)) (-4 *11 (-1202 (-400 *10))) (-5 *2 (-329 *9 *10 *11 *12)) (-5 *1 (-326 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-335 *9 *10 *11)))))
-(-10 -7 (-15 -2797 ((-329 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-329 |#1| |#2| |#3| |#4|))))
-((-1607 (((-112) $) 14)))
-(((-327 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -1607 ((-112) |#1|))) (-328 |#2| |#3| |#4| |#5|) (-356) (-1202 |#2|) (-1202 (-400 |#3|)) (-335 |#2| |#3| |#4|)) (T -327))
-NIL
-(-10 -8 (-15 -1607 ((-112) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2557 (($ $) 26)) (-1607 (((-112) $) 25)) (-3851 (((-1125) $) 9)) (-3818 (((-406 |#2| (-400 |#2|) |#3| |#4|) $) 32)) (-3990 (((-1087) $) 10)) (-4248 (((-3 |#4| "failed") $) 24)) (-3533 (($ (-406 |#2| (-400 |#2|) |#3| |#4|)) 31) (($ |#4|) 30) (($ |#1| |#1|) 29) (($ |#1| |#1| (-549)) 28) (($ |#4| |#2| |#2| |#2| |#1|) 23)) (-1655 (((-2 (|:| -3715 (-406 |#2| (-400 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 27)) (-3846 (((-834) $) 11)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20)))
-(((-328 |#1| |#2| |#3| |#4|) (-138) (-356) (-1202 |t#1|) (-1202 (-400 |t#2|)) (-335 |t#1| |t#2| |t#3|)) (T -328))
-((-3818 (*1 *2 *1) (-12 (-4 *1 (-328 *3 *4 *5 *6)) (-4 *3 (-356)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-4 *6 (-335 *3 *4 *5)) (-5 *2 (-406 *4 (-400 *4) *5 *6)))) (-3533 (*1 *1 *2) (-12 (-5 *2 (-406 *4 (-400 *4) *5 *6)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-4 *6 (-335 *3 *4 *5)) (-4 *3 (-356)) (-4 *1 (-328 *3 *4 *5 *6)))) (-3533 (*1 *1 *2) (-12 (-4 *3 (-356)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-4 *1 (-328 *3 *4 *5 *2)) (-4 *2 (-335 *3 *4 *5)))) (-3533 (*1 *1 *2 *2) (-12 (-4 *2 (-356)) (-4 *3 (-1202 *2)) (-4 *4 (-1202 (-400 *3))) (-4 *1 (-328 *2 *3 *4 *5)) (-4 *5 (-335 *2 *3 *4)))) (-3533 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-549)) (-4 *2 (-356)) (-4 *4 (-1202 *2)) (-4 *5 (-1202 (-400 *4))) (-4 *1 (-328 *2 *4 *5 *6)) (-4 *6 (-335 *2 *4 *5)))) (-1655 (*1 *2 *1) (-12 (-4 *1 (-328 *3 *4 *5 *6)) (-4 *3 (-356)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-4 *6 (-335 *3 *4 *5)) (-5 *2 (-2 (|:| -3715 (-406 *4 (-400 *4) *5 *6)) (|:| |principalPart| *6))))) (-2557 (*1 *1 *1) (-12 (-4 *1 (-328 *2 *3 *4 *5)) (-4 *2 (-356)) (-4 *3 (-1202 *2)) (-4 *4 (-1202 (-400 *3))) (-4 *5 (-335 *2 *3 *4)))) (-1607 (*1 *2 *1) (-12 (-4 *1 (-328 *3 *4 *5 *6)) (-4 *3 (-356)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-4 *6 (-335 *3 *4 *5)) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (|partial| -12 (-4 *1 (-328 *3 *4 *5 *2)) (-4 *3 (-356)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-4 *2 (-335 *3 *4 *5)))) (-3533 (*1 *1 *2 *3 *3 *3 *4) (-12 (-4 *4 (-356)) (-4 *3 (-1202 *4)) (-4 *5 (-1202 (-400 *3))) (-4 *1 (-328 *4 *3 *5 *2)) (-4 *2 (-335 *4 *3 *5)))))
-(-13 (-21) (-10 -8 (-15 -3818 ((-406 |t#2| (-400 |t#2|) |t#3| |t#4|) $)) (-15 -3533 ($ (-406 |t#2| (-400 |t#2|) |t#3| |t#4|))) (-15 -3533 ($ |t#4|)) (-15 -3533 ($ |t#1| |t#1|)) (-15 -3533 ($ |t#1| |t#1| (-549))) (-15 -1655 ((-2 (|:| -3715 (-406 |t#2| (-400 |t#2|) |t#3| |t#4|)) (|:| |principalPart| |t#4|)) $)) (-15 -2557 ($ $)) (-15 -1607 ((-112) $)) (-15 -4248 ((-3 |t#4| "failed") $)) (-15 -3533 ($ |t#4| |t#2| |t#2| |t#2| |t#1|))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2557 (($ $) 33)) (-1607 (((-112) $) NIL)) (-3851 (((-1125) $) NIL)) (-2987 (((-1226 |#4|) $) 125)) (-3818 (((-406 |#2| (-400 |#2|) |#3| |#4|) $) 31)) (-3990 (((-1087) $) NIL)) (-4248 (((-3 |#4| "failed") $) 36)) (-3283 (((-1226 |#4|) $) 118)) (-3533 (($ (-406 |#2| (-400 |#2|) |#3| |#4|)) 41) (($ |#4|) 43) (($ |#1| |#1|) 45) (($ |#1| |#1| (-549)) 47) (($ |#4| |#2| |#2| |#2| |#1|) 49)) (-1655 (((-2 (|:| -3715 (-406 |#2| (-400 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 39)) (-3846 (((-834) $) 17)) (-3276 (($) 14 T CONST)) (-2389 (((-112) $ $) 20)) (-2500 (($ $) 27) (($ $ $) NIL)) (-2486 (($ $ $) 25)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 23)))
-(((-329 |#1| |#2| |#3| |#4|) (-13 (-328 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3283 ((-1226 |#4|) $)) (-15 -2987 ((-1226 |#4|) $)))) (-356) (-1202 |#1|) (-1202 (-400 |#2|)) (-335 |#1| |#2| |#3|)) (T -329))
-((-3283 (*1 *2 *1) (-12 (-4 *3 (-356)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-1226 *6)) (-5 *1 (-329 *3 *4 *5 *6)) (-4 *6 (-335 *3 *4 *5)))) (-2987 (*1 *2 *1) (-12 (-4 *3 (-356)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-1226 *6)) (-5 *1 (-329 *3 *4 *5 *6)) (-4 *6 (-335 *3 *4 *5)))))
-(-13 (-328 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3283 ((-1226 |#4|) $)) (-15 -2987 ((-1226 |#4|) $))))
-((-2686 (($ $ (-1143) |#2|) NIL) (($ $ (-621 (-1143)) (-621 |#2|)) 20) (($ $ (-621 (-287 |#2|))) 15) (($ $ (-287 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-621 |#2|) (-621 |#2|)) NIL)) (-3341 (($ $ |#2|) 11)))
-(((-330 |#1| |#2|) (-10 -8 (-15 -3341 (|#1| |#1| |#2|)) (-15 -2686 (|#1| |#1| (-621 |#2|) (-621 |#2|))) (-15 -2686 (|#1| |#1| |#2| |#2|)) (-15 -2686 (|#1| |#1| (-287 |#2|))) (-15 -2686 (|#1| |#1| (-621 (-287 |#2|)))) (-15 -2686 (|#1| |#1| (-621 (-1143)) (-621 |#2|))) (-15 -2686 (|#1| |#1| (-1143) |#2|))) (-331 |#2|) (-1067)) (T -330))
-NIL
-(-10 -8 (-15 -3341 (|#1| |#1| |#2|)) (-15 -2686 (|#1| |#1| (-621 |#2|) (-621 |#2|))) (-15 -2686 (|#1| |#1| |#2| |#2|)) (-15 -2686 (|#1| |#1| (-287 |#2|))) (-15 -2686 (|#1| |#1| (-621 (-287 |#2|)))) (-15 -2686 (|#1| |#1| (-621 (-1143)) (-621 |#2|))) (-15 -2686 (|#1| |#1| (-1143) |#2|)))
-((-2797 (($ (-1 |#1| |#1|) $) 6)) (-2686 (($ $ (-1143) |#1|) 17 (|has| |#1| (-505 (-1143) |#1|))) (($ $ (-621 (-1143)) (-621 |#1|)) 16 (|has| |#1| (-505 (-1143) |#1|))) (($ $ (-621 (-287 |#1|))) 15 (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) 14 (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) 13 (|has| |#1| (-302 |#1|))) (($ $ (-621 |#1|) (-621 |#1|)) 12 (|has| |#1| (-302 |#1|)))) (-3341 (($ $ |#1|) 11 (|has| |#1| (-279 |#1| |#1|)))))
-(((-331 |#1|) (-138) (-1067)) (T -331))
-((-2797 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-331 *3)) (-4 *3 (-1067)))))
-(-13 (-10 -8 (-15 -2797 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-279 |t#1| |t#1|)) (-6 (-279 |t#1| $)) |%noBranch|) (IF (|has| |t#1| (-302 |t#1|)) (-6 (-302 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-505 (-1143) |t#1|)) (-6 (-505 (-1143) |t#1|)) |%noBranch|)))
-(((-279 |#1| $) |has| |#1| (-279 |#1| |#1|)) ((-302 |#1|) |has| |#1| (-302 |#1|)) ((-505 (-1143) |#1|) |has| |#1| (-505 (-1143) |#1|)) ((-505 |#1| |#1|) |has| |#1| (-302 |#1|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2272 (((-621 (-1143)) $) NIL)) (-2107 (((-112)) 91) (((-112) (-112)) 92)) (-1981 (((-621 (-592 $)) $) NIL)) (-1664 (($ $) NIL)) (-1512 (($ $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3015 (($ $ (-287 $)) NIL) (($ $ (-621 (-287 $))) NIL) (($ $ (-621 (-592 $)) (-621 $)) NIL)) (-2134 (($ $) NIL)) (-1640 (($ $) NIL)) (-1486 (($ $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-592 $) "failed") $) NIL) (((-3 |#3| "failed") $) NIL) (((-3 $ "failed") (-309 |#3|)) 71) (((-3 $ "failed") (-1143)) 97) (((-3 $ "failed") (-309 (-549))) 59 (|has| |#3| (-1009 (-549)))) (((-3 $ "failed") (-400 (-923 (-549)))) 65 (|has| |#3| (-1009 (-549)))) (((-3 $ "failed") (-923 (-549))) 60 (|has| |#3| (-1009 (-549)))) (((-3 $ "failed") (-309 (-372))) 89 (|has| |#3| (-1009 (-372)))) (((-3 $ "failed") (-400 (-923 (-372)))) 83 (|has| |#3| (-1009 (-372)))) (((-3 $ "failed") (-923 (-372))) 78 (|has| |#3| (-1009 (-372))))) (-2659 (((-592 $) $) NIL) ((|#3| $) NIL) (($ (-309 |#3|)) 72) (($ (-1143)) 98) (($ (-309 (-549))) 61 (|has| |#3| (-1009 (-549)))) (($ (-400 (-923 (-549)))) 66 (|has| |#3| (-1009 (-549)))) (($ (-923 (-549))) 62 (|has| |#3| (-1009 (-549)))) (($ (-309 (-372))) 90 (|has| |#3| (-1009 (-372)))) (($ (-400 (-923 (-372)))) 84 (|has| |#3| (-1009 (-372)))) (($ (-923 (-372))) 80 (|has| |#3| (-1009 (-372))))) (-2114 (((-3 $ "failed") $) NIL)) (-1425 (($) 10)) (-3225 (($ $) NIL) (($ (-621 $)) NIL)) (-2162 (((-621 (-114)) $) NIL)) (-2834 (((-114) (-114)) NIL)) (-2675 (((-112) $) NIL)) (-3559 (((-112) $) NIL (|has| $ (-1009 (-549))))) (-1549 (((-1139 $) (-592 $)) NIL (|has| $ (-1018)))) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-2797 (($ (-1 $ $) (-592 $)) NIL)) (-2634 (((-3 (-592 $) "failed") $) NIL)) (-2301 (($ $) 94)) (-3632 (($ $) NIL)) (-3851 (((-1125) $) NIL)) (-2071 (((-621 (-592 $)) $) NIL)) (-1476 (($ (-114) $) 93) (($ (-114) (-621 $)) NIL)) (-3421 (((-112) $ (-114)) NIL) (((-112) $ (-1143)) NIL)) (-4036 (((-747) $) NIL)) (-3990 (((-1087) $) NIL)) (-2979 (((-112) $ $) NIL) (((-112) $ (-1143)) NIL)) (-2719 (($ $) NIL)) (-3450 (((-112) $) NIL (|has| $ (-1009 (-549))))) (-2686 (($ $ (-592 $) $) NIL) (($ $ (-621 (-592 $)) (-621 $)) NIL) (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-621 (-1143)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-1143)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-1143) (-1 $ (-621 $))) NIL) (($ $ (-1143) (-1 $ $)) NIL) (($ $ (-621 (-114)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-114) (-1 $ (-621 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-3341 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-621 $)) NIL)) (-3433 (($ $) NIL) (($ $ $) NIL)) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143)) NIL)) (-2815 (($ $) NIL (|has| $ (-1018)))) (-1651 (($ $) NIL)) (-1501 (($ $) NIL)) (-3846 (((-834) $) NIL) (($ (-592 $)) NIL) (($ |#3|) NIL) (($ (-549)) NIL) (((-309 |#3|) $) 96)) (-2082 (((-747)) NIL)) (-4137 (($ $) NIL) (($ (-621 $)) NIL)) (-4285 (((-112) (-114)) NIL)) (-1587 (($ $) NIL)) (-1564 (($ $) NIL)) (-1576 (($ $) NIL)) (-3212 (($ $) NIL)) (-3276 (($) 95 T CONST)) (-3287 (($) 24 T CONST)) (-1702 (($ $ (-621 (-1143)) (-621 (-747))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143)) NIL)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) NIL)) (-2500 (($ $ $) NIL) (($ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-747)) NIL) (($ $ (-892)) NIL)) (* (($ |#3| $) NIL) (($ $ |#3|) NIL) (($ $ $) NIL) (($ (-549) $) NIL) (($ (-747) $) NIL) (($ (-892) $) NIL)))
-(((-332 |#1| |#2| |#3|) (-13 (-295) (-38 |#3|) (-1009 |#3|) (-871 (-1143)) (-10 -8 (-15 -2659 ($ (-309 |#3|))) (-15 -2714 ((-3 $ "failed") (-309 |#3|))) (-15 -2659 ($ (-1143))) (-15 -2714 ((-3 $ "failed") (-1143))) (-15 -3846 ((-309 |#3|) $)) (IF (|has| |#3| (-1009 (-549))) (PROGN (-15 -2659 ($ (-309 (-549)))) (-15 -2714 ((-3 $ "failed") (-309 (-549)))) (-15 -2659 ($ (-400 (-923 (-549))))) (-15 -2714 ((-3 $ "failed") (-400 (-923 (-549))))) (-15 -2659 ($ (-923 (-549)))) (-15 -2714 ((-3 $ "failed") (-923 (-549))))) |%noBranch|) (IF (|has| |#3| (-1009 (-372))) (PROGN (-15 -2659 ($ (-309 (-372)))) (-15 -2714 ((-3 $ "failed") (-309 (-372)))) (-15 -2659 ($ (-400 (-923 (-372))))) (-15 -2714 ((-3 $ "failed") (-400 (-923 (-372))))) (-15 -2659 ($ (-923 (-372)))) (-15 -2714 ((-3 $ "failed") (-923 (-372))))) |%noBranch|) (-15 -3212 ($ $)) (-15 -2134 ($ $)) (-15 -2719 ($ $)) (-15 -3632 ($ $)) (-15 -2301 ($ $)) (-15 -1486 ($ $)) (-15 -1501 ($ $)) (-15 -1512 ($ $)) (-15 -1564 ($ $)) (-15 -1576 ($ $)) (-15 -1587 ($ $)) (-15 -1640 ($ $)) (-15 -1651 ($ $)) (-15 -1664 ($ $)) (-15 -1425 ($)) (-15 -2272 ((-621 (-1143)) $)) (-15 -2107 ((-112))) (-15 -2107 ((-112) (-112))))) (-621 (-1143)) (-621 (-1143)) (-380)) (T -332))
-((-2659 (*1 *1 *2) (-12 (-5 *2 (-309 *5)) (-4 *5 (-380)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-309 *5)) (-4 *5 (-380)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 *2)) (-14 *4 (-621 *2)) (-4 *5 (-380)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-1143)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 *2)) (-14 *4 (-621 *2)) (-4 *5 (-380)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-309 *5)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))) (-4 *5 (-380)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-309 (-549))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))) (-4 *5 (-380)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-309 (-549))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))) (-4 *5 (-380)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-400 (-923 (-549)))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))) (-4 *5 (-380)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-400 (-923 (-549)))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))) (-4 *5 (-380)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-923 (-549))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))) (-4 *5 (-380)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-923 (-549))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))) (-4 *5 (-380)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-309 (-372))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))) (-4 *5 (-380)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-309 (-372))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))) (-4 *5 (-380)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-400 (-923 (-372)))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))) (-4 *5 (-380)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-400 (-923 (-372)))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))) (-4 *5 (-380)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-923 (-372))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))) (-4 *5 (-380)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-923 (-372))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))) (-4 *5 (-380)))) (-3212 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143))) (-14 *3 (-621 (-1143))) (-4 *4 (-380)))) (-2134 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143))) (-14 *3 (-621 (-1143))) (-4 *4 (-380)))) (-2719 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143))) (-14 *3 (-621 (-1143))) (-4 *4 (-380)))) (-3632 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143))) (-14 *3 (-621 (-1143))) (-4 *4 (-380)))) (-2301 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143))) (-14 *3 (-621 (-1143))) (-4 *4 (-380)))) (-1486 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143))) (-14 *3 (-621 (-1143))) (-4 *4 (-380)))) (-1501 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143))) (-14 *3 (-621 (-1143))) (-4 *4 (-380)))) (-1512 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143))) (-14 *3 (-621 (-1143))) (-4 *4 (-380)))) (-1564 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143))) (-14 *3 (-621 (-1143))) (-4 *4 (-380)))) (-1576 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143))) (-14 *3 (-621 (-1143))) (-4 *4 (-380)))) (-1587 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143))) (-14 *3 (-621 (-1143))) (-4 *4 (-380)))) (-1640 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143))) (-14 *3 (-621 (-1143))) (-4 *4 (-380)))) (-1651 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143))) (-14 *3 (-621 (-1143))) (-4 *4 (-380)))) (-1664 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143))) (-14 *3 (-621 (-1143))) (-4 *4 (-380)))) (-1425 (*1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143))) (-14 *3 (-621 (-1143))) (-4 *4 (-380)))) (-2272 (*1 *2 *1) (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-332 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-380)))) (-2107 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))) (-4 *5 (-380)))) (-2107 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))) (-4 *5 (-380)))))
-(-13 (-295) (-38 |#3|) (-1009 |#3|) (-871 (-1143)) (-10 -8 (-15 -2659 ($ (-309 |#3|))) (-15 -2714 ((-3 $ "failed") (-309 |#3|))) (-15 -2659 ($ (-1143))) (-15 -2714 ((-3 $ "failed") (-1143))) (-15 -3846 ((-309 |#3|) $)) (IF (|has| |#3| (-1009 (-549))) (PROGN (-15 -2659 ($ (-309 (-549)))) (-15 -2714 ((-3 $ "failed") (-309 (-549)))) (-15 -2659 ($ (-400 (-923 (-549))))) (-15 -2714 ((-3 $ "failed") (-400 (-923 (-549))))) (-15 -2659 ($ (-923 (-549)))) (-15 -2714 ((-3 $ "failed") (-923 (-549))))) |%noBranch|) (IF (|has| |#3| (-1009 (-372))) (PROGN (-15 -2659 ($ (-309 (-372)))) (-15 -2714 ((-3 $ "failed") (-309 (-372)))) (-15 -2659 ($ (-400 (-923 (-372))))) (-15 -2714 ((-3 $ "failed") (-400 (-923 (-372))))) (-15 -2659 ($ (-923 (-372)))) (-15 -2714 ((-3 $ "failed") (-923 (-372))))) |%noBranch|) (-15 -3212 ($ $)) (-15 -2134 ($ $)) (-15 -2719 ($ $)) (-15 -3632 ($ $)) (-15 -2301 ($ $)) (-15 -1486 ($ $)) (-15 -1501 ($ $)) (-15 -1512 ($ $)) (-15 -1564 ($ $)) (-15 -1576 ($ $)) (-15 -1587 ($ $)) (-15 -1640 ($ $)) (-15 -1651 ($ $)) (-15 -1664 ($ $)) (-15 -1425 ($)) (-15 -2272 ((-621 (-1143)) $)) (-15 -2107 ((-112))) (-15 -2107 ((-112) (-112)))))
-((-2797 ((|#8| (-1 |#5| |#1|) |#4|) 19)))
-(((-333 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2797 (|#8| (-1 |#5| |#1|) |#4|))) (-1184) (-1202 |#1|) (-1202 (-400 |#2|)) (-335 |#1| |#2| |#3|) (-1184) (-1202 |#5|) (-1202 (-400 |#6|)) (-335 |#5| |#6| |#7|)) (T -333))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1184)) (-4 *8 (-1184)) (-4 *6 (-1202 *5)) (-4 *7 (-1202 (-400 *6))) (-4 *9 (-1202 *8)) (-4 *2 (-335 *8 *9 *10)) (-5 *1 (-333 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-335 *5 *6 *7)) (-4 *10 (-1202 (-400 *9))))))
-(-10 -7 (-15 -2797 (|#8| (-1 |#5| |#1|) |#4|)))
-((-2724 (((-2 (|:| |num| (-1226 |#3|)) (|:| |den| |#3|)) $) 38)) (-3492 (($ (-1226 (-400 |#3|)) (-1226 $)) NIL) (($ (-1226 (-400 |#3|))) NIL) (($ (-1226 |#3|) |#3|) 161)) (-2263 (((-1226 $) (-1226 $)) 145)) (-3690 (((-621 (-621 |#2|))) 119)) (-3465 (((-112) |#2| |#2|) 73)) (-1285 (($ $) 139)) (-2609 (((-747)) 31)) (-2453 (((-1226 $) (-1226 $)) 198)) (-1672 (((-621 (-923 |#2|)) (-1143)) 110)) (-2128 (((-112) $) 158)) (-3710 (((-112) $) 25) (((-112) $ |#2|) 29) (((-112) $ |#3|) 202)) (-1314 (((-3 |#3| "failed")) 50)) (-2118 (((-747)) 170)) (-3341 ((|#2| $ |#2| |#2|) 132)) (-1969 (((-3 |#3| "failed")) 68)) (-3456 (($ $ (-1 (-400 |#3|) (-400 |#3|)) (-747)) NIL) (($ $ (-1 (-400 |#3|) (-400 |#3|))) NIL) (($ $ (-1 |#3| |#3|)) 206) (($ $ (-621 (-1143)) (-621 (-747))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143)) NIL) (($ $ (-747)) NIL) (($ $) NIL)) (-3339 (((-1226 $) (-1226 $)) 151)) (-2033 (((-2 (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (-1 |#3| |#3|)) 66)) (-2810 (((-112)) 33)))
-(((-334 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3456 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3690 ((-621 (-621 |#2|)))) (-15 -1672 ((-621 (-923 |#2|)) (-1143))) (-15 -2033 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -1314 ((-3 |#3| "failed"))) (-15 -1969 ((-3 |#3| "failed"))) (-15 -3341 (|#2| |#1| |#2| |#2|)) (-15 -1285 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3710 ((-112) |#1| |#3|)) (-15 -3710 ((-112) |#1| |#2|)) (-15 -3492 (|#1| (-1226 |#3|) |#3|)) (-15 -2724 ((-2 (|:| |num| (-1226 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -2263 ((-1226 |#1|) (-1226 |#1|))) (-15 -2453 ((-1226 |#1|) (-1226 |#1|))) (-15 -3339 ((-1226 |#1|) (-1226 |#1|))) (-15 -3710 ((-112) |#1|)) (-15 -2128 ((-112) |#1|)) (-15 -3465 ((-112) |#2| |#2|)) (-15 -2810 ((-112))) (-15 -2118 ((-747))) (-15 -2609 ((-747))) (-15 -3456 (|#1| |#1| (-1 (-400 |#3|) (-400 |#3|)))) (-15 -3456 (|#1| |#1| (-1 (-400 |#3|) (-400 |#3|)) (-747))) (-15 -3492 (|#1| (-1226 (-400 |#3|)))) (-15 -3492 (|#1| (-1226 (-400 |#3|)) (-1226 |#1|)))) (-335 |#2| |#3| |#4|) (-1184) (-1202 |#2|) (-1202 (-400 |#3|))) (T -334))
-((-2609 (*1 *2) (-12 (-4 *4 (-1184)) (-4 *5 (-1202 *4)) (-4 *6 (-1202 (-400 *5))) (-5 *2 (-747)) (-5 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-335 *4 *5 *6)))) (-2118 (*1 *2) (-12 (-4 *4 (-1184)) (-4 *5 (-1202 *4)) (-4 *6 (-1202 (-400 *5))) (-5 *2 (-747)) (-5 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-335 *4 *5 *6)))) (-2810 (*1 *2) (-12 (-4 *4 (-1184)) (-4 *5 (-1202 *4)) (-4 *6 (-1202 (-400 *5))) (-5 *2 (-112)) (-5 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-335 *4 *5 *6)))) (-3465 (*1 *2 *3 *3) (-12 (-4 *3 (-1184)) (-4 *5 (-1202 *3)) (-4 *6 (-1202 (-400 *5))) (-5 *2 (-112)) (-5 *1 (-334 *4 *3 *5 *6)) (-4 *4 (-335 *3 *5 *6)))) (-1969 (*1 *2) (|partial| -12 (-4 *4 (-1184)) (-4 *5 (-1202 (-400 *2))) (-4 *2 (-1202 *4)) (-5 *1 (-334 *3 *4 *2 *5)) (-4 *3 (-335 *4 *2 *5)))) (-1314 (*1 *2) (|partial| -12 (-4 *4 (-1184)) (-4 *5 (-1202 (-400 *2))) (-4 *2 (-1202 *4)) (-5 *1 (-334 *3 *4 *2 *5)) (-4 *3 (-335 *4 *2 *5)))) (-1672 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-4 *5 (-1184)) (-4 *6 (-1202 *5)) (-4 *7 (-1202 (-400 *6))) (-5 *2 (-621 (-923 *5))) (-5 *1 (-334 *4 *5 *6 *7)) (-4 *4 (-335 *5 *6 *7)))) (-3690 (*1 *2) (-12 (-4 *4 (-1184)) (-4 *5 (-1202 *4)) (-4 *6 (-1202 (-400 *5))) (-5 *2 (-621 (-621 *4))) (-5 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-335 *4 *5 *6)))))
-(-10 -8 (-15 -3456 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3690 ((-621 (-621 |#2|)))) (-15 -1672 ((-621 (-923 |#2|)) (-1143))) (-15 -2033 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -1314 ((-3 |#3| "failed"))) (-15 -1969 ((-3 |#3| "failed"))) (-15 -3341 (|#2| |#1| |#2| |#2|)) (-15 -1285 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3710 ((-112) |#1| |#3|)) (-15 -3710 ((-112) |#1| |#2|)) (-15 -3492 (|#1| (-1226 |#3|) |#3|)) (-15 -2724 ((-2 (|:| |num| (-1226 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -2263 ((-1226 |#1|) (-1226 |#1|))) (-15 -2453 ((-1226 |#1|) (-1226 |#1|))) (-15 -3339 ((-1226 |#1|) (-1226 |#1|))) (-15 -3710 ((-112) |#1|)) (-15 -2128 ((-112) |#1|)) (-15 -3465 ((-112) |#2| |#2|)) (-15 -2810 ((-112))) (-15 -2118 ((-747))) (-15 -2609 ((-747))) (-15 -3456 (|#1| |#1| (-1 (-400 |#3|) (-400 |#3|)))) (-15 -3456 (|#1| |#1| (-1 (-400 |#3|) (-400 |#3|)) (-747))) (-15 -3492 (|#1| (-1226 (-400 |#3|)))) (-15 -3492 (|#1| (-1226 (-400 |#3|)) (-1226 |#1|))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2724 (((-2 (|:| |num| (-1226 |#2|)) (|:| |den| |#2|)) $) 193)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 91 (|has| (-400 |#2|) (-356)))) (-2258 (($ $) 92 (|has| (-400 |#2|) (-356)))) (-2799 (((-112) $) 94 (|has| (-400 |#2|) (-356)))) (-1738 (((-665 (-400 |#2|)) (-1226 $)) 44) (((-665 (-400 |#2|))) 59)) (-2906 (((-400 |#2|) $) 50)) (-3062 (((-1153 (-892) (-747)) (-549)) 144 (|has| (-400 |#2|) (-342)))) (-2001 (((-3 $ "failed") $ $) 19)) (-3979 (($ $) 111 (|has| (-400 |#2|) (-356)))) (-2402 (((-411 $) $) 112 (|has| (-400 |#2|) (-356)))) (-3866 (((-112) $ $) 102 (|has| (-400 |#2|) (-356)))) (-3614 (((-747)) 85 (|has| (-400 |#2|) (-361)))) (-1279 (((-112)) 210)) (-1388 (((-112) |#1|) 209) (((-112) |#2|) 208)) (-1682 (($) 17 T CONST)) (-2714 (((-3 (-549) "failed") $) 166 (|has| (-400 |#2|) (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 164 (|has| (-400 |#2|) (-1009 (-400 (-549))))) (((-3 (-400 |#2|) "failed") $) 163)) (-2659 (((-549) $) 167 (|has| (-400 |#2|) (-1009 (-549)))) (((-400 (-549)) $) 165 (|has| (-400 |#2|) (-1009 (-400 (-549))))) (((-400 |#2|) $) 162)) (-3492 (($ (-1226 (-400 |#2|)) (-1226 $)) 46) (($ (-1226 (-400 |#2|))) 62) (($ (-1226 |#2|) |#2|) 192)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) 150 (|has| (-400 |#2|) (-342)))) (-2095 (($ $ $) 106 (|has| (-400 |#2|) (-356)))) (-3506 (((-665 (-400 |#2|)) $ (-1226 $)) 51) (((-665 (-400 |#2|)) $) 57)) (-3879 (((-665 (-549)) (-665 $)) 161 (|has| (-400 |#2|) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 160 (|has| (-400 |#2|) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-400 |#2|))) (|:| |vec| (-1226 (-400 |#2|)))) (-665 $) (-1226 $)) 159) (((-665 (-400 |#2|)) (-665 $)) 158)) (-2263 (((-1226 $) (-1226 $)) 198)) (-2557 (($ |#3|) 155) (((-3 $ "failed") (-400 |#3|)) 152 (|has| (-400 |#2|) (-356)))) (-2114 (((-3 $ "failed") $) 32)) (-3690 (((-621 (-621 |#1|))) 179 (|has| |#1| (-361)))) (-3465 (((-112) |#1| |#1|) 214)) (-3123 (((-892)) 52)) (-3239 (($) 88 (|has| (-400 |#2|) (-361)))) (-3031 (((-112)) 207)) (-2941 (((-112) |#1|) 206) (((-112) |#2|) 205)) (-2067 (($ $ $) 105 (|has| (-400 |#2|) (-356)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 100 (|has| (-400 |#2|) (-356)))) (-1285 (($ $) 185)) (-2405 (($) 146 (|has| (-400 |#2|) (-342)))) (-2288 (((-112) $) 147 (|has| (-400 |#2|) (-342)))) (-3165 (($ $ (-747)) 138 (|has| (-400 |#2|) (-342))) (($ $) 137 (|has| (-400 |#2|) (-342)))) (-1420 (((-112) $) 113 (|has| (-400 |#2|) (-356)))) (-2088 (((-892) $) 149 (|has| (-400 |#2|) (-342))) (((-809 (-892)) $) 135 (|has| (-400 |#2|) (-342)))) (-2675 (((-112) $) 30)) (-2609 (((-747)) 217)) (-2453 (((-1226 $) (-1226 $)) 199)) (-3630 (((-400 |#2|) $) 49)) (-1672 (((-621 (-923 |#1|)) (-1143)) 180 (|has| |#1| (-356)))) (-1681 (((-3 $ "failed") $) 139 (|has| (-400 |#2|) (-342)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 109 (|has| (-400 |#2|) (-356)))) (-3788 ((|#3| $) 42 (|has| (-400 |#2|) (-356)))) (-1881 (((-892) $) 87 (|has| (-400 |#2|) (-361)))) (-2548 ((|#3| $) 153)) (-3697 (($ (-621 $)) 98 (|has| (-400 |#2|) (-356))) (($ $ $) 97 (|has| (-400 |#2|) (-356)))) (-3851 (((-1125) $) 9)) (-2768 (((-665 (-400 |#2|))) 194)) (-1948 (((-665 (-400 |#2|))) 196)) (-1992 (($ $) 114 (|has| (-400 |#2|) (-356)))) (-3569 (($ (-1226 |#2|) |#2|) 190)) (-2955 (((-665 (-400 |#2|))) 195)) (-1519 (((-665 (-400 |#2|))) 197)) (-3621 (((-2 (|:| |num| (-665 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 189)) (-3581 (((-2 (|:| |num| (-1226 |#2|)) (|:| |den| |#2|)) $) 191)) (-3852 (((-1226 $)) 203)) (-1613 (((-1226 $)) 204)) (-2128 (((-112) $) 202)) (-3710 (((-112) $) 201) (((-112) $ |#1|) 188) (((-112) $ |#2|) 187)) (-3060 (($) 140 (|has| (-400 |#2|) (-342)) CONST)) (-3493 (($ (-892)) 86 (|has| (-400 |#2|) (-361)))) (-1314 (((-3 |#2| "failed")) 182)) (-3990 (((-1087) $) 10)) (-2118 (((-747)) 216)) (-4248 (($) 157)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 99 (|has| (-400 |#2|) (-356)))) (-3727 (($ (-621 $)) 96 (|has| (-400 |#2|) (-356))) (($ $ $) 95 (|has| (-400 |#2|) (-356)))) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) 143 (|has| (-400 |#2|) (-342)))) (-2121 (((-411 $) $) 110 (|has| (-400 |#2|) (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 108 (|has| (-400 |#2|) (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 107 (|has| (-400 |#2|) (-356)))) (-2042 (((-3 $ "failed") $ $) 90 (|has| (-400 |#2|) (-356)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 101 (|has| (-400 |#2|) (-356)))) (-3684 (((-747) $) 103 (|has| (-400 |#2|) (-356)))) (-3341 ((|#1| $ |#1| |#1|) 184)) (-1969 (((-3 |#2| "failed")) 183)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 104 (|has| (-400 |#2|) (-356)))) (-3602 (((-400 |#2|) (-1226 $)) 45) (((-400 |#2|)) 58)) (-3914 (((-747) $) 148 (|has| (-400 |#2|) (-342))) (((-3 (-747) "failed") $ $) 136 (|has| (-400 |#2|) (-342)))) (-3456 (($ $ (-1 (-400 |#2|) (-400 |#2|)) (-747)) 120 (|has| (-400 |#2|) (-356))) (($ $ (-1 (-400 |#2|) (-400 |#2|))) 119 (|has| (-400 |#2|) (-356))) (($ $ (-1 |#2| |#2|)) 186) (($ $ (-621 (-1143)) (-621 (-747))) 127 (-1536 (-1821 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143)))) (-1821 (|has| (-400 |#2|) (-871 (-1143))) (|has| (-400 |#2|) (-356))))) (($ $ (-1143) (-747)) 128 (-1536 (-1821 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143)))) (-1821 (|has| (-400 |#2|) (-871 (-1143))) (|has| (-400 |#2|) (-356))))) (($ $ (-621 (-1143))) 129 (-1536 (-1821 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143)))) (-1821 (|has| (-400 |#2|) (-871 (-1143))) (|has| (-400 |#2|) (-356))))) (($ $ (-1143)) 130 (-1536 (-1821 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143)))) (-1821 (|has| (-400 |#2|) (-871 (-1143))) (|has| (-400 |#2|) (-356))))) (($ $ (-747)) 132 (-1536 (-1821 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-227))) (-1821 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342)))) (($ $) 134 (-1536 (-1821 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-227))) (-1821 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342))))) (-2901 (((-665 (-400 |#2|)) (-1226 $) (-1 (-400 |#2|) (-400 |#2|))) 151 (|has| (-400 |#2|) (-356)))) (-2815 ((|#3|) 156)) (-3170 (($) 145 (|has| (-400 |#2|) (-342)))) (-4263 (((-1226 (-400 |#2|)) $ (-1226 $)) 48) (((-665 (-400 |#2|)) (-1226 $) (-1226 $)) 47) (((-1226 (-400 |#2|)) $) 64) (((-665 (-400 |#2|)) (-1226 $)) 63)) (-2845 (((-1226 (-400 |#2|)) $) 61) (($ (-1226 (-400 |#2|))) 60) ((|#3| $) 168) (($ |#3|) 154)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) 142 (|has| (-400 |#2|) (-342)))) (-3339 (((-1226 $) (-1226 $)) 200)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ (-400 |#2|)) 35) (($ (-400 (-549))) 84 (-1536 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-1009 (-400 (-549)))))) (($ $) 89 (|has| (-400 |#2|) (-356)))) (-2210 (($ $) 141 (|has| (-400 |#2|) (-342))) (((-3 $ "failed") $) 41 (|has| (-400 |#2|) (-143)))) (-4154 ((|#3| $) 43)) (-2082 (((-747)) 28)) (-3672 (((-112)) 213)) (-2330 (((-112) |#1|) 212) (((-112) |#2|) 211)) (-1949 (((-1226 $)) 65)) (-1498 (((-112) $ $) 93 (|has| (-400 |#2|) (-356)))) (-2033 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) 181)) (-2810 (((-112)) 215)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ (-1 (-400 |#2|) (-400 |#2|)) (-747)) 122 (|has| (-400 |#2|) (-356))) (($ $ (-1 (-400 |#2|) (-400 |#2|))) 121 (|has| (-400 |#2|) (-356))) (($ $ (-621 (-1143)) (-621 (-747))) 123 (-1536 (-1821 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143)))) (-1821 (|has| (-400 |#2|) (-871 (-1143))) (|has| (-400 |#2|) (-356))))) (($ $ (-1143) (-747)) 124 (-1536 (-1821 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143)))) (-1821 (|has| (-400 |#2|) (-871 (-1143))) (|has| (-400 |#2|) (-356))))) (($ $ (-621 (-1143))) 125 (-1536 (-1821 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143)))) (-1821 (|has| (-400 |#2|) (-871 (-1143))) (|has| (-400 |#2|) (-356))))) (($ $ (-1143)) 126 (-1536 (-1821 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143)))) (-1821 (|has| (-400 |#2|) (-871 (-1143))) (|has| (-400 |#2|) (-356))))) (($ $ (-747)) 131 (-1536 (-1821 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-227))) (-1821 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342)))) (($ $) 133 (-1536 (-1821 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-227))) (-1821 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342))))) (-2389 (((-112) $ $) 6)) (-2513 (($ $ $) 118 (|has| (-400 |#2|) (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 115 (|has| (-400 |#2|) (-356)))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 |#2|)) 37) (($ (-400 |#2|) $) 36) (($ (-400 (-549)) $) 117 (|has| (-400 |#2|) (-356))) (($ $ (-400 (-549))) 116 (|has| (-400 |#2|) (-356)))))
-(((-335 |#1| |#2| |#3|) (-138) (-1184) (-1202 |t#1|) (-1202 (-400 |t#2|))) (T -335))
-((-2609 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-747)))) (-2118 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-747)))) (-2810 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))) (-3465 (*1 *2 *3 *3) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))) (-3672 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))) (-2330 (*1 *2 *3) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))) (-2330 (*1 *2 *3) (-12 (-4 *1 (-335 *4 *3 *5)) (-4 *4 (-1184)) (-4 *3 (-1202 *4)) (-4 *5 (-1202 (-400 *3))) (-5 *2 (-112)))) (-1279 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))) (-1388 (*1 *2 *3) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))) (-1388 (*1 *2 *3) (-12 (-4 *1 (-335 *4 *3 *5)) (-4 *4 (-1184)) (-4 *3 (-1202 *4)) (-4 *5 (-1202 (-400 *3))) (-5 *2 (-112)))) (-3031 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))) (-2941 (*1 *2 *3) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))) (-2941 (*1 *2 *3) (-12 (-4 *1 (-335 *4 *3 *5)) (-4 *4 (-1184)) (-4 *3 (-1202 *4)) (-4 *5 (-1202 (-400 *3))) (-5 *2 (-112)))) (-1613 (*1 *2) (-12 (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-1226 *1)) (-4 *1 (-335 *3 *4 *5)))) (-3852 (*1 *2) (-12 (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-1226 *1)) (-4 *1 (-335 *3 *4 *5)))) (-2128 (*1 *2 *1) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))) (-3710 (*1 *2 *1) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))) (-3339 (*1 *2 *2) (-12 (-5 *2 (-1226 *1)) (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))))) (-2453 (*1 *2 *2) (-12 (-5 *2 (-1226 *1)) (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))))) (-2263 (*1 *2 *2) (-12 (-5 *2 (-1226 *1)) (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))))) (-1519 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-665 (-400 *4))))) (-1948 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-665 (-400 *4))))) (-2955 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-665 (-400 *4))))) (-2768 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-665 (-400 *4))))) (-2724 (*1 *2 *1) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-2 (|:| |num| (-1226 *4)) (|:| |den| *4))))) (-3492 (*1 *1 *2 *3) (-12 (-5 *2 (-1226 *3)) (-4 *3 (-1202 *4)) (-4 *4 (-1184)) (-4 *1 (-335 *4 *3 *5)) (-4 *5 (-1202 (-400 *3))))) (-3581 (*1 *2 *1) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-2 (|:| |num| (-1226 *4)) (|:| |den| *4))))) (-3569 (*1 *1 *2 *3) (-12 (-5 *2 (-1226 *3)) (-4 *3 (-1202 *4)) (-4 *4 (-1184)) (-4 *1 (-335 *4 *3 *5)) (-4 *5 (-1202 (-400 *3))))) (-3621 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-335 *4 *5 *6)) (-4 *4 (-1184)) (-4 *5 (-1202 *4)) (-4 *6 (-1202 (-400 *5))) (-5 *2 (-2 (|:| |num| (-665 *5)) (|:| |den| *5))))) (-3710 (*1 *2 *1 *3) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))) (-3710 (*1 *2 *1 *3) (-12 (-4 *1 (-335 *4 *3 *5)) (-4 *4 (-1184)) (-4 *3 (-1202 *4)) (-4 *5 (-1202 (-400 *3))) (-5 *2 (-112)))) (-3456 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))))) (-1285 (*1 *1 *1) (-12 (-4 *1 (-335 *2 *3 *4)) (-4 *2 (-1184)) (-4 *3 (-1202 *2)) (-4 *4 (-1202 (-400 *3))))) (-3341 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-335 *2 *3 *4)) (-4 *2 (-1184)) (-4 *3 (-1202 *2)) (-4 *4 (-1202 (-400 *3))))) (-1969 (*1 *2) (|partial| -12 (-4 *1 (-335 *3 *2 *4)) (-4 *3 (-1184)) (-4 *4 (-1202 (-400 *2))) (-4 *2 (-1202 *3)))) (-1314 (*1 *2) (|partial| -12 (-4 *1 (-335 *3 *2 *4)) (-4 *3 (-1184)) (-4 *4 (-1202 (-400 *2))) (-4 *2 (-1202 *3)))) (-2033 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1202 *4)) (-4 *4 (-1184)) (-4 *6 (-1202 (-400 *5))) (-5 *2 (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5) (|:| |gd| *5))) (-4 *1 (-335 *4 *5 *6)))) (-1672 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-4 *1 (-335 *4 *5 *6)) (-4 *4 (-1184)) (-4 *5 (-1202 *4)) (-4 *6 (-1202 (-400 *5))) (-4 *4 (-356)) (-5 *2 (-621 (-923 *4))))) (-3690 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))) (-4 *3 (-361)) (-5 *2 (-621 (-621 *3))))))
-(-13 (-701 (-400 |t#2|) |t#3|) (-10 -8 (-15 -2609 ((-747))) (-15 -2118 ((-747))) (-15 -2810 ((-112))) (-15 -3465 ((-112) |t#1| |t#1|)) (-15 -3672 ((-112))) (-15 -2330 ((-112) |t#1|)) (-15 -2330 ((-112) |t#2|)) (-15 -1279 ((-112))) (-15 -1388 ((-112) |t#1|)) (-15 -1388 ((-112) |t#2|)) (-15 -3031 ((-112))) (-15 -2941 ((-112) |t#1|)) (-15 -2941 ((-112) |t#2|)) (-15 -1613 ((-1226 $))) (-15 -3852 ((-1226 $))) (-15 -2128 ((-112) $)) (-15 -3710 ((-112) $)) (-15 -3339 ((-1226 $) (-1226 $))) (-15 -2453 ((-1226 $) (-1226 $))) (-15 -2263 ((-1226 $) (-1226 $))) (-15 -1519 ((-665 (-400 |t#2|)))) (-15 -1948 ((-665 (-400 |t#2|)))) (-15 -2955 ((-665 (-400 |t#2|)))) (-15 -2768 ((-665 (-400 |t#2|)))) (-15 -2724 ((-2 (|:| |num| (-1226 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -3492 ($ (-1226 |t#2|) |t#2|)) (-15 -3581 ((-2 (|:| |num| (-1226 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -3569 ($ (-1226 |t#2|) |t#2|)) (-15 -3621 ((-2 (|:| |num| (-665 |t#2|)) (|:| |den| |t#2|)) (-1 |t#2| |t#2|))) (-15 -3710 ((-112) $ |t#1|)) (-15 -3710 ((-112) $ |t#2|)) (-15 -3456 ($ $ (-1 |t#2| |t#2|))) (-15 -1285 ($ $)) (-15 -3341 (|t#1| $ |t#1| |t#1|)) (-15 -1969 ((-3 |t#2| "failed"))) (-15 -1314 ((-3 |t#2| "failed"))) (-15 -2033 ((-2 (|:| |num| $) (|:| |den| |t#2|) (|:| |derivden| |t#2|) (|:| |gd| |t#2|)) $ (-1 |t#2| |t#2|))) (IF (|has| |t#1| (-356)) (-15 -1672 ((-621 (-923 |t#1|)) (-1143))) |%noBranch|) (IF (|has| |t#1| (-361)) (-15 -3690 ((-621 (-621 |t#1|)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-38 #1=(-400 |#2|)) . T) ((-38 $) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-101) . T) ((-111 #0# #0#) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-111 #1# #1#) . T) ((-111 $ $) . T) ((-130) . T) ((-143) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-143))) ((-145) |has| (-400 |#2|) (-145)) ((-593 (-834)) . T) ((-170) . T) ((-594 |#3|) . T) ((-225 #1#) |has| (-400 |#2|) (-356)) ((-227) -1536 (|has| (-400 |#2|) (-342)) (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356)))) ((-237) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-283) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-300) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-356) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-395) |has| (-400 |#2|) (-342)) ((-361) -1536 (|has| (-400 |#2|) (-361)) (|has| (-400 |#2|) (-342))) ((-342) |has| (-400 |#2|) (-342)) ((-363 #1# |#3|) . T) ((-402 #1# |#3|) . T) ((-370 #1#) . T) ((-404 #1#) . T) ((-444) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-541) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-624 #0#) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-624 #1#) . T) ((-624 $) . T) ((-617 #1#) . T) ((-617 (-549)) |has| (-400 |#2|) (-617 (-549))) ((-694 #0#) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-694 #1#) . T) ((-694 $) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-701 #1# |#3|) . T) ((-703) . T) ((-871 (-1143)) -12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143)))) ((-891) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-1009 (-400 (-549))) |has| (-400 |#2|) (-1009 (-400 (-549)))) ((-1009 #1#) . T) ((-1009 (-549)) |has| (-400 |#2|) (-1009 (-549))) ((-1024 #0#) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-1024 #1#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1118) |has| (-400 |#2|) (-342)) ((-1184) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2044 (((-112) $) NIL)) (-3214 (((-747)) NIL)) (-2906 (((-881 |#1|) $) NIL) (($ $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-3062 (((-1153 (-892) (-747)) (-549)) NIL (|has| (-881 |#1|) (-361)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3866 (((-112) $ $) NIL)) (-3614 (((-747)) NIL (|has| (-881 |#1|) (-361)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-881 |#1|) "failed") $) NIL)) (-2659 (((-881 |#1|) $) NIL)) (-3492 (($ (-1226 (-881 |#1|))) NIL)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-881 |#1|) (-361)))) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) NIL (|has| (-881 |#1|) (-361)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-2405 (($) NIL (|has| (-881 |#1|) (-361)))) (-2288 (((-112) $) NIL (|has| (-881 |#1|) (-361)))) (-3165 (($ $ (-747)) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361)))) (($ $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-1420 (((-112) $) NIL)) (-2088 (((-892) $) NIL (|has| (-881 |#1|) (-361))) (((-809 (-892)) $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2675 (((-112) $) NIL)) (-1973 (($) NIL (|has| (-881 |#1|) (-361)))) (-4091 (((-112) $) NIL (|has| (-881 |#1|) (-361)))) (-3630 (((-881 |#1|) $) NIL) (($ $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-1681 (((-3 $ "failed") $) NIL (|has| (-881 |#1|) (-361)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3788 (((-1139 (-881 |#1|)) $) NIL) (((-1139 $) $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-1881 (((-892) $) NIL (|has| (-881 |#1|) (-361)))) (-3318 (((-1139 (-881 |#1|)) $) NIL (|has| (-881 |#1|) (-361)))) (-1983 (((-1139 (-881 |#1|)) $) NIL (|has| (-881 |#1|) (-361))) (((-3 (-1139 (-881 |#1|)) "failed") $ $) NIL (|has| (-881 |#1|) (-361)))) (-3719 (($ $ (-1139 (-881 |#1|))) NIL (|has| (-881 |#1|) (-361)))) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL (|has| (-881 |#1|) (-361)) CONST)) (-3493 (($ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-3980 (((-112) $) NIL)) (-3990 (((-1087) $) NIL)) (-2447 (((-929 (-1087))) NIL)) (-4248 (($) NIL (|has| (-881 |#1|) (-361)))) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) NIL (|has| (-881 |#1|) (-361)))) (-2121 (((-411 $) $) NIL)) (-3049 (((-809 (-892))) NIL) (((-892)) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3914 (((-747) $) NIL (|has| (-881 |#1|) (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2985 (((-133)) NIL)) (-3456 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-3701 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-2815 (((-1139 (-881 |#1|))) NIL)) (-3170 (($) NIL (|has| (-881 |#1|) (-361)))) (-1544 (($) NIL (|has| (-881 |#1|) (-361)))) (-4263 (((-1226 (-881 |#1|)) $) NIL) (((-665 (-881 |#1|)) (-1226 $)) NIL)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (|has| (-881 |#1|) (-361)))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-881 |#1|)) NIL)) (-2210 (($ $) NIL (|has| (-881 |#1|) (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2082 (((-747)) NIL)) (-1949 (((-1226 $)) NIL) (((-1226 $) (-892)) NIL)) (-1498 (((-112) $ $) NIL)) (-1606 (((-112) $) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1933 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-1702 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ $) NIL) (($ $ (-881 |#1|)) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ (-881 |#1|)) NIL) (($ (-881 |#1|) $) NIL)))
-(((-336 |#1| |#2|) (-13 (-322 (-881 |#1|)) (-10 -7 (-15 -2447 ((-929 (-1087)))))) (-892) (-892)) (T -336))
-((-2447 (*1 *2) (-12 (-5 *2 (-929 (-1087))) (-5 *1 (-336 *3 *4)) (-14 *3 (-892)) (-14 *4 (-892)))))
-(-13 (-322 (-881 |#1|)) (-10 -7 (-15 -2447 ((-929 (-1087))))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 44)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2044 (((-112) $) NIL)) (-3214 (((-747)) NIL)) (-2906 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-3062 (((-1153 (-892) (-747)) (-549)) 41 (|has| |#1| (-361)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3866 (((-112) $ $) NIL)) (-3614 (((-747)) NIL (|has| |#1| (-361)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) 115)) (-2659 ((|#1| $) 86)) (-3492 (($ (-1226 |#1|)) 104)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) 95 (|has| |#1| (-361)))) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) 98 (|has| |#1| (-361)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-2405 (($) 129 (|has| |#1| (-361)))) (-2288 (((-112) $) 48 (|has| |#1| (-361)))) (-3165 (($ $ (-747)) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))) (($ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-1420 (((-112) $) NIL)) (-2088 (((-892) $) 45 (|has| |#1| (-361))) (((-809 (-892)) $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2675 (((-112) $) NIL)) (-1973 (($) 131 (|has| |#1| (-361)))) (-4091 (((-112) $) NIL (|has| |#1| (-361)))) (-3630 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-1681 (((-3 $ "failed") $) NIL (|has| |#1| (-361)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3788 (((-1139 |#1|) $) 90) (((-1139 $) $ (-892)) NIL (|has| |#1| (-361)))) (-1881 (((-892) $) 139 (|has| |#1| (-361)))) (-3318 (((-1139 |#1|) $) NIL (|has| |#1| (-361)))) (-1983 (((-1139 |#1|) $) NIL (|has| |#1| (-361))) (((-3 (-1139 |#1|) "failed") $ $) NIL (|has| |#1| (-361)))) (-3719 (($ $ (-1139 |#1|)) NIL (|has| |#1| (-361)))) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 146)) (-3060 (($) NIL (|has| |#1| (-361)) CONST)) (-3493 (($ (-892)) 71 (|has| |#1| (-361)))) (-3980 (((-112) $) 118)) (-3990 (((-1087) $) NIL)) (-2447 (((-929 (-1087))) 42)) (-4248 (($) 127 (|has| |#1| (-361)))) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) 93 (|has| |#1| (-361)))) (-2121 (((-411 $) $) NIL)) (-3049 (((-809 (-892))) 67) (((-892)) 68)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3914 (((-747) $) 130 (|has| |#1| (-361))) (((-3 (-747) "failed") $ $) 125 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2985 (((-133)) NIL)) (-3456 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-3701 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-2815 (((-1139 |#1|)) 96)) (-3170 (($) 128 (|has| |#1| (-361)))) (-1544 (($) 136 (|has| |#1| (-361)))) (-4263 (((-1226 |#1|) $) 59) (((-665 |#1|) (-1226 $)) NIL)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (|has| |#1| (-361)))) (-3846 (((-834) $) 142) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ |#1|) 75)) (-2210 (($ $) NIL (|has| |#1| (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2082 (((-747)) 138)) (-1949 (((-1226 $)) 117) (((-1226 $) (-892)) 73)) (-1498 (((-112) $ $) NIL)) (-1606 (((-112) $) NIL)) (-3276 (($) 49 T CONST)) (-3287 (($) 46 T CONST)) (-1933 (($ $) 81 (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-1702 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-2389 (((-112) $ $) 47)) (-2513 (($ $ $) 144) (($ $ |#1|) 145)) (-2500 (($ $) 126) (($ $ $) NIL)) (-2486 (($ $ $) 61)) (** (($ $ (-892)) 148) (($ $ (-747)) 149) (($ $ (-549)) 147)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 77) (($ $ $) 76) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 143)))
-(((-337 |#1| |#2|) (-13 (-322 |#1|) (-10 -7 (-15 -2447 ((-929 (-1087)))))) (-342) (-1139 |#1|)) (T -337))
-((-2447 (*1 *2) (-12 (-5 *2 (-929 (-1087))) (-5 *1 (-337 *3 *4)) (-4 *3 (-342)) (-14 *4 (-1139 *3)))))
-(-13 (-322 |#1|) (-10 -7 (-15 -2447 ((-929 (-1087))))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2044 (((-112) $) NIL)) (-3214 (((-747)) NIL)) (-2906 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-3062 (((-1153 (-892) (-747)) (-549)) NIL (|has| |#1| (-361)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3866 (((-112) $ $) NIL)) (-3614 (((-747)) NIL (|has| |#1| (-361)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) NIL)) (-2659 ((|#1| $) NIL)) (-3492 (($ (-1226 |#1|)) NIL)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-361)))) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) NIL (|has| |#1| (-361)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-2405 (($) NIL (|has| |#1| (-361)))) (-2288 (((-112) $) NIL (|has| |#1| (-361)))) (-3165 (($ $ (-747)) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))) (($ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-1420 (((-112) $) NIL)) (-2088 (((-892) $) NIL (|has| |#1| (-361))) (((-809 (-892)) $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2675 (((-112) $) NIL)) (-1973 (($) NIL (|has| |#1| (-361)))) (-4091 (((-112) $) NIL (|has| |#1| (-361)))) (-3630 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-1681 (((-3 $ "failed") $) NIL (|has| |#1| (-361)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3788 (((-1139 |#1|) $) NIL) (((-1139 $) $ (-892)) NIL (|has| |#1| (-361)))) (-1881 (((-892) $) NIL (|has| |#1| (-361)))) (-3318 (((-1139 |#1|) $) NIL (|has| |#1| (-361)))) (-1983 (((-1139 |#1|) $) NIL (|has| |#1| (-361))) (((-3 (-1139 |#1|) "failed") $ $) NIL (|has| |#1| (-361)))) (-3719 (($ $ (-1139 |#1|)) NIL (|has| |#1| (-361)))) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL (|has| |#1| (-361)) CONST)) (-3493 (($ (-892)) NIL (|has| |#1| (-361)))) (-3980 (((-112) $) NIL)) (-3990 (((-1087) $) NIL)) (-2447 (((-929 (-1087))) NIL)) (-4248 (($) NIL (|has| |#1| (-361)))) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) NIL (|has| |#1| (-361)))) (-2121 (((-411 $) $) NIL)) (-3049 (((-809 (-892))) NIL) (((-892)) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3914 (((-747) $) NIL (|has| |#1| (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2985 (((-133)) NIL)) (-3456 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-3701 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-2815 (((-1139 |#1|)) NIL)) (-3170 (($) NIL (|has| |#1| (-361)))) (-1544 (($) NIL (|has| |#1| (-361)))) (-4263 (((-1226 |#1|) $) NIL) (((-665 |#1|) (-1226 $)) NIL)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (|has| |#1| (-361)))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ |#1|) NIL)) (-2210 (($ $) NIL (|has| |#1| (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2082 (((-747)) NIL)) (-1949 (((-1226 $)) NIL) (((-1226 $) (-892)) NIL)) (-1498 (((-112) $ $) NIL)) (-1606 (((-112) $) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1933 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-1702 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-338 |#1| |#2|) (-13 (-322 |#1|) (-10 -7 (-15 -2447 ((-929 (-1087)))))) (-342) (-892)) (T -338))
-((-2447 (*1 *2) (-12 (-5 *2 (-929 (-1087))) (-5 *1 (-338 *3 *4)) (-4 *3 (-342)) (-14 *4 (-892)))))
-(-13 (-322 |#1|) (-10 -7 (-15 -2447 ((-929 (-1087))))))
-((-3223 (((-747) (-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087)))))) 42)) (-3491 (((-929 (-1087)) (-1139 |#1|)) 85)) (-2935 (((-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))) (-1139 |#1|)) 78)) (-2964 (((-665 |#1|) (-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087)))))) 86)) (-3940 (((-3 (-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))) "failed") (-892)) 13)) (-2102 (((-3 (-1139 |#1|) (-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087)))))) (-892)) 18)))
-(((-339 |#1|) (-10 -7 (-15 -3491 ((-929 (-1087)) (-1139 |#1|))) (-15 -2935 ((-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))) (-1139 |#1|))) (-15 -2964 ((-665 |#1|) (-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))))) (-15 -3223 ((-747) (-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))))) (-15 -3940 ((-3 (-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))) "failed") (-892))) (-15 -2102 ((-3 (-1139 |#1|) (-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087)))))) (-892)))) (-342)) (T -339))
-((-2102 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-3 (-1139 *4) (-1226 (-621 (-2 (|:| -4161 *4) (|:| -3493 (-1087))))))) (-5 *1 (-339 *4)) (-4 *4 (-342)))) (-3940 (*1 *2 *3) (|partial| -12 (-5 *3 (-892)) (-5 *2 (-1226 (-621 (-2 (|:| -4161 *4) (|:| -3493 (-1087)))))) (-5 *1 (-339 *4)) (-4 *4 (-342)))) (-3223 (*1 *2 *3) (-12 (-5 *3 (-1226 (-621 (-2 (|:| -4161 *4) (|:| -3493 (-1087)))))) (-4 *4 (-342)) (-5 *2 (-747)) (-5 *1 (-339 *4)))) (-2964 (*1 *2 *3) (-12 (-5 *3 (-1226 (-621 (-2 (|:| -4161 *4) (|:| -3493 (-1087)))))) (-4 *4 (-342)) (-5 *2 (-665 *4)) (-5 *1 (-339 *4)))) (-2935 (*1 *2 *3) (-12 (-5 *3 (-1139 *4)) (-4 *4 (-342)) (-5 *2 (-1226 (-621 (-2 (|:| -4161 *4) (|:| -3493 (-1087)))))) (-5 *1 (-339 *4)))) (-3491 (*1 *2 *3) (-12 (-5 *3 (-1139 *4)) (-4 *4 (-342)) (-5 *2 (-929 (-1087))) (-5 *1 (-339 *4)))))
-(-10 -7 (-15 -3491 ((-929 (-1087)) (-1139 |#1|))) (-15 -2935 ((-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))) (-1139 |#1|))) (-15 -2964 ((-665 |#1|) (-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))))) (-15 -3223 ((-747) (-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))))) (-15 -3940 ((-3 (-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))) "failed") (-892))) (-15 -2102 ((-3 (-1139 |#1|) (-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087)))))) (-892))))
-((-3846 ((|#1| |#3|) 86) ((|#3| |#1|) 69)))
-(((-340 |#1| |#2| |#3|) (-10 -7 (-15 -3846 (|#3| |#1|)) (-15 -3846 (|#1| |#3|))) (-322 |#2|) (-342) (-322 |#2|)) (T -340))
-((-3846 (*1 *2 *3) (-12 (-4 *4 (-342)) (-4 *2 (-322 *4)) (-5 *1 (-340 *2 *4 *3)) (-4 *3 (-322 *4)))) (-3846 (*1 *2 *3) (-12 (-4 *4 (-342)) (-4 *2 (-322 *4)) (-5 *1 (-340 *3 *4 *2)) (-4 *3 (-322 *4)))))
-(-10 -7 (-15 -3846 (|#3| |#1|)) (-15 -3846 (|#1| |#3|)))
-((-2288 (((-112) $) 51)) (-2088 (((-809 (-892)) $) 21) (((-892) $) 52)) (-1681 (((-3 $ "failed") $) 16)) (-3060 (($) 9)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 93)) (-3914 (((-3 (-747) "failed") $ $) 71) (((-747) $) 60)) (-3456 (($ $ (-747)) NIL) (($ $) 8)) (-3170 (($) 44)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) 34)) (-2210 (((-3 $ "failed") $) 38) (($ $) 37)))
-(((-341 |#1|) (-10 -8 (-15 -2088 ((-892) |#1|)) (-15 -3914 ((-747) |#1|)) (-15 -2288 ((-112) |#1|)) (-15 -3170 (|#1|)) (-15 -4186 ((-3 (-1226 |#1|) "failed") (-665 |#1|))) (-15 -2210 (|#1| |#1|)) (-15 -3456 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -3060 (|#1|)) (-15 -1681 ((-3 |#1| "failed") |#1|)) (-15 -3914 ((-3 (-747) "failed") |#1| |#1|)) (-15 -2088 ((-809 (-892)) |#1|)) (-15 -2210 ((-3 |#1| "failed") |#1|)) (-15 -1721 ((-1139 |#1|) (-1139 |#1|) (-1139 |#1|)))) (-342)) (T -341))
-NIL
-(-10 -8 (-15 -2088 ((-892) |#1|)) (-15 -3914 ((-747) |#1|)) (-15 -2288 ((-112) |#1|)) (-15 -3170 (|#1|)) (-15 -4186 ((-3 (-1226 |#1|) "failed") (-665 |#1|))) (-15 -2210 (|#1| |#1|)) (-15 -3456 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -3060 (|#1|)) (-15 -1681 ((-3 |#1| "failed") |#1|)) (-15 -3914 ((-3 (-747) "failed") |#1| |#1|)) (-15 -2088 ((-809 (-892)) |#1|)) (-15 -2210 ((-3 |#1| "failed") |#1|)) (-15 -1721 ((-1139 |#1|) (-1139 |#1|) (-1139 |#1|))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-3062 (((-1153 (-892) (-747)) (-549)) 90)) (-2001 (((-3 $ "failed") $ $) 19)) (-3979 (($ $) 70)) (-2402 (((-411 $) $) 69)) (-3866 (((-112) $ $) 57)) (-3614 (((-747)) 100)) (-1682 (($) 17 T CONST)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) 84)) (-2095 (($ $ $) 53)) (-2114 (((-3 $ "failed") $) 32)) (-3239 (($) 103)) (-2067 (($ $ $) 54)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 49)) (-2405 (($) 88)) (-2288 (((-112) $) 87)) (-3165 (($ $) 76) (($ $ (-747)) 75)) (-1420 (((-112) $) 68)) (-2088 (((-809 (-892)) $) 78) (((-892) $) 85)) (-2675 (((-112) $) 30)) (-1681 (((-3 $ "failed") $) 99)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-1881 (((-892) $) 102)) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-1992 (($ $) 67)) (-3060 (($) 98 T CONST)) (-3493 (($ (-892)) 101)) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) 91)) (-2121 (((-411 $) $) 71)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2042 (((-3 $ "failed") $ $) 40)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-3684 (((-747) $) 56)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 55)) (-3914 (((-3 (-747) "failed") $ $) 77) (((-747) $) 86)) (-3456 (($ $ (-747)) 96) (($ $) 94)) (-3170 (($) 89)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) 92)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63)) (-2210 (((-3 $ "failed") $) 79) (($ $) 93)) (-2082 (((-747)) 28)) (-1498 (((-112) $ $) 37)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ (-747)) 97) (($ $) 95)) (-2389 (((-112) $ $) 6)) (-2513 (($ $ $) 62)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64)))
+((-2619 (*1 *2) (-12 (-4 *3 (-356)) (-5 *2 (-1225 *1)) (-4 *1 (-322 *3)))) (-2619 (*1 *2 *3) (-12 (-5 *3 (-892)) (-4 *4 (-356)) (-5 *2 (-1225 *1)) (-4 *1 (-322 *4)))) (-1981 (*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-1225 *3)))) (-1981 (*1 *2 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-322 *4)) (-4 *4 (-356)) (-5 *2 (-665 *4)))) (-2397 (*1 *1 *2) (-12 (-5 *2 (-1225 *3)) (-4 *3 (-356)) (-4 *1 (-322 *3)))) (-3514 (*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-1138 *3)))) (-1262 (*1 *2) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-1138 *3)))) (-1485 (*1 *2) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-892)))) (-3977 (*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-892)))) (-2469 (*1 *2 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-356)))) (-2904 (*1 *2 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-356)))) (-3514 (*1 *2 *1 *3) (-12 (-5 *3 (-892)) (-4 *4 (-361)) (-4 *4 (-356)) (-5 *2 (-1138 *1)) (-4 *1 (-322 *4)))) (-2469 (*1 *1 *1 *2) (-12 (-5 *2 (-892)) (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361)))) (-2904 (*1 *1 *1 *2) (-12 (-5 *2 (-892)) (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361)))) (-2578 (*1 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-361)) (-4 *2 (-356)))) (-1728 (*1 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-361)) (-4 *2 (-356)))) (-4031 (*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361)) (-5 *2 (-112)))) (-4247 (*1 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-361)) (-4 *2 (-356)))) (-3098 (*1 *1 *1 *2) (-12 (-5 *2 (-1138 *3)) (-4 *3 (-361)) (-4 *1 (-322 *3)) (-4 *3 (-356)))) (-4021 (*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361)) (-5 *2 (-1138 *3)))) (-1298 (*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361)) (-5 *2 (-1138 *3)))) (-1298 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361)) (-5 *2 (-1138 *3)))))
+(-13 (-1244 |t#1|) (-1009 |t#1|) (-10 -8 (-15 -2619 ((-1225 $))) (-15 -2619 ((-1225 $) (-892))) (-15 -1981 ((-1225 |t#1|) $)) (-15 -1981 ((-665 |t#1|) (-1225 $))) (-15 -2397 ($ (-1225 |t#1|))) (-15 -3514 ((-1138 |t#1|) $)) (-15 -1262 ((-1138 |t#1|))) (-15 -1485 ((-892))) (-15 -3977 ((-892) $)) (-15 -2469 (|t#1| $)) (-15 -2904 (|t#1| $)) (IF (|has| |t#1| (-361)) (PROGN (-6 (-342)) (-15 -3514 ((-1138 $) $ (-892))) (-15 -2469 ($ $ (-892))) (-15 -2904 ($ $ (-892))) (-15 -2578 ($)) (-15 -1728 ($)) (-15 -4031 ((-112) $)) (-15 -4247 ($)) (-15 -3098 ($ $ (-1138 |t#1|))) (-15 -4021 ((-1138 |t#1|) $)) (-15 -1298 ((-1138 |t#1|) $)) (-15 -1298 ((-3 (-1138 |t#1|) "failed") $ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-130) . T) ((-143) -1536 (|has| |#1| (-361)) (|has| |#1| (-143))) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) . T) ((-227) |has| |#1| (-361)) ((-237) . T) ((-283) . T) ((-300) . T) ((-1244 |#1|) . T) ((-356) . T) ((-395) -1536 (|has| |#1| (-361)) (|has| |#1| (-143))) ((-361) |has| |#1| (-361)) ((-342) |has| |#1| (-361)) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 |#1|) . T) ((-694 $) . T) ((-703) . T) ((-891) . T) ((-1009 |#1|) . T) ((-1024 #0#) . T) ((-1024 |#1|) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1117) |has| |#1| (-361)) ((-1183) . T) ((-1232 |#1|) . T))
+((-3832 (((-112) $ $) NIL)) (-1694 (($ (-1141) $) 88)) (-4148 (($) 77)) (-3971 (((-1086) (-1086)) 11)) (-2533 (($) 78)) (-2552 (($) 90) (($ (-309 (-675))) 98) (($ (-309 (-677))) 94) (($ (-309 (-670))) 102) (($ (-309 (-372))) 109) (($ (-309 (-549))) 105) (($ (-309 (-167 (-372)))) 113)) (-3734 (($ (-1141) $) 89)) (-2698 (($ (-621 (-834))) 79)) (-1624 (((-1230) $) 75)) (-3376 (((-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")) $) 27)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3142 (($ (-1086)) 51)) (-3560 (((-1070) $) 25)) (-2666 (($ (-1058 (-923 (-549))) $) 85) (($ (-1058 (-923 (-549))) (-923 (-549)) $) 86)) (-2328 (($ (-1086)) 87)) (-4109 (($ (-1141) $) 115) (($ (-1141) $ $) 116)) (-3554 (($ (-1142) (-621 (-1142))) 76)) (-1263 (($ (-1124)) 82) (($ (-621 (-1124))) 80)) (-3845 (((-834) $) 118)) (-2099 (((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1142)) (|:| |arrayIndex| (-621 (-923 (-549)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2975 (-834)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1142)) (|:| |rand| (-834)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1141)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -2643 (-112)) (|:| -4160 (-2 (|:| |ints2Floats?| (-112)) (|:| -2975 (-834)))))) (|:| |blockBranch| (-621 $)) (|:| |commentBranch| (-621 (-1124))) (|:| |callBranch| (-1124)) (|:| |forBranch| (-2 (|:| -2811 (-1058 (-923 (-549)))) (|:| |span| (-923 (-549))) (|:| -2492 $))) (|:| |labelBranch| (-1086)) (|:| |loopBranch| (-2 (|:| |switch| (-1141)) (|:| -2492 $))) (|:| |commonBranch| (-2 (|:| -2479 (-1142)) (|:| |contents| (-621 (-1142))))) (|:| |printBranch| (-621 (-834)))) $) 44)) (-3510 (($ (-1124)) 187)) (-2534 (($ (-621 $)) 114)) (-2190 (($ (-1142) (-1124)) 120) (($ (-1142) (-309 (-677))) 160) (($ (-1142) (-309 (-675))) 161) (($ (-1142) (-309 (-670))) 162) (($ (-1142) (-665 (-677))) 123) (($ (-1142) (-665 (-675))) 126) (($ (-1142) (-665 (-670))) 129) (($ (-1142) (-1225 (-677))) 132) (($ (-1142) (-1225 (-675))) 135) (($ (-1142) (-1225 (-670))) 138) (($ (-1142) (-665 (-309 (-677)))) 141) (($ (-1142) (-665 (-309 (-675)))) 144) (($ (-1142) (-665 (-309 (-670)))) 147) (($ (-1142) (-1225 (-309 (-677)))) 150) (($ (-1142) (-1225 (-309 (-675)))) 153) (($ (-1142) (-1225 (-309 (-670)))) 156) (($ (-1142) (-621 (-923 (-549))) (-309 (-677))) 157) (($ (-1142) (-621 (-923 (-549))) (-309 (-675))) 158) (($ (-1142) (-621 (-923 (-549))) (-309 (-670))) 159) (($ (-1142) (-309 (-549))) 184) (($ (-1142) (-309 (-372))) 185) (($ (-1142) (-309 (-167 (-372)))) 186) (($ (-1142) (-665 (-309 (-549)))) 165) (($ (-1142) (-665 (-309 (-372)))) 168) (($ (-1142) (-665 (-309 (-167 (-372))))) 171) (($ (-1142) (-1225 (-309 (-549)))) 174) (($ (-1142) (-1225 (-309 (-372)))) 177) (($ (-1142) (-1225 (-309 (-167 (-372))))) 180) (($ (-1142) (-621 (-923 (-549))) (-309 (-549))) 181) (($ (-1142) (-621 (-923 (-549))) (-309 (-372))) 182) (($ (-1142) (-621 (-923 (-549))) (-309 (-167 (-372)))) 183)) (-2387 (((-112) $ $) NIL)))
+(((-323) (-13 (-1066) (-10 -8 (-15 -3845 ((-834) $)) (-15 -2666 ($ (-1058 (-923 (-549))) $)) (-15 -2666 ($ (-1058 (-923 (-549))) (-923 (-549)) $)) (-15 -1694 ($ (-1141) $)) (-15 -3734 ($ (-1141) $)) (-15 -3142 ($ (-1086))) (-15 -2328 ($ (-1086))) (-15 -1263 ($ (-1124))) (-15 -1263 ($ (-621 (-1124)))) (-15 -3510 ($ (-1124))) (-15 -2552 ($)) (-15 -2552 ($ (-309 (-675)))) (-15 -2552 ($ (-309 (-677)))) (-15 -2552 ($ (-309 (-670)))) (-15 -2552 ($ (-309 (-372)))) (-15 -2552 ($ (-309 (-549)))) (-15 -2552 ($ (-309 (-167 (-372))))) (-15 -4109 ($ (-1141) $)) (-15 -4109 ($ (-1141) $ $)) (-15 -2190 ($ (-1142) (-1124))) (-15 -2190 ($ (-1142) (-309 (-677)))) (-15 -2190 ($ (-1142) (-309 (-675)))) (-15 -2190 ($ (-1142) (-309 (-670)))) (-15 -2190 ($ (-1142) (-665 (-677)))) (-15 -2190 ($ (-1142) (-665 (-675)))) (-15 -2190 ($ (-1142) (-665 (-670)))) (-15 -2190 ($ (-1142) (-1225 (-677)))) (-15 -2190 ($ (-1142) (-1225 (-675)))) (-15 -2190 ($ (-1142) (-1225 (-670)))) (-15 -2190 ($ (-1142) (-665 (-309 (-677))))) (-15 -2190 ($ (-1142) (-665 (-309 (-675))))) (-15 -2190 ($ (-1142) (-665 (-309 (-670))))) (-15 -2190 ($ (-1142) (-1225 (-309 (-677))))) (-15 -2190 ($ (-1142) (-1225 (-309 (-675))))) (-15 -2190 ($ (-1142) (-1225 (-309 (-670))))) (-15 -2190 ($ (-1142) (-621 (-923 (-549))) (-309 (-677)))) (-15 -2190 ($ (-1142) (-621 (-923 (-549))) (-309 (-675)))) (-15 -2190 ($ (-1142) (-621 (-923 (-549))) (-309 (-670)))) (-15 -2190 ($ (-1142) (-309 (-549)))) (-15 -2190 ($ (-1142) (-309 (-372)))) (-15 -2190 ($ (-1142) (-309 (-167 (-372))))) (-15 -2190 ($ (-1142) (-665 (-309 (-549))))) (-15 -2190 ($ (-1142) (-665 (-309 (-372))))) (-15 -2190 ($ (-1142) (-665 (-309 (-167 (-372)))))) (-15 -2190 ($ (-1142) (-1225 (-309 (-549))))) (-15 -2190 ($ (-1142) (-1225 (-309 (-372))))) (-15 -2190 ($ (-1142) (-1225 (-309 (-167 (-372)))))) (-15 -2190 ($ (-1142) (-621 (-923 (-549))) (-309 (-549)))) (-15 -2190 ($ (-1142) (-621 (-923 (-549))) (-309 (-372)))) (-15 -2190 ($ (-1142) (-621 (-923 (-549))) (-309 (-167 (-372))))) (-15 -2534 ($ (-621 $))) (-15 -4148 ($)) (-15 -2533 ($)) (-15 -2698 ($ (-621 (-834)))) (-15 -3554 ($ (-1142) (-621 (-1142)))) (-15 -3376 ((-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 -2099 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1142)) (|:| |arrayIndex| (-621 (-923 (-549)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2975 (-834)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1142)) (|:| |rand| (-834)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1141)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -2643 (-112)) (|:| -4160 (-2 (|:| |ints2Floats?| (-112)) (|:| -2975 (-834)))))) (|:| |blockBranch| (-621 $)) (|:| |commentBranch| (-621 (-1124))) (|:| |callBranch| (-1124)) (|:| |forBranch| (-2 (|:| -2811 (-1058 (-923 (-549)))) (|:| |span| (-923 (-549))) (|:| -2492 $))) (|:| |labelBranch| (-1086)) (|:| |loopBranch| (-2 (|:| |switch| (-1141)) (|:| -2492 $))) (|:| |commonBranch| (-2 (|:| -2479 (-1142)) (|:| |contents| (-621 (-1142))))) (|:| |printBranch| (-621 (-834)))) $)) (-15 -1624 ((-1230) $)) (-15 -3560 ((-1070) $)) (-15 -3971 ((-1086) (-1086)))))) (T -323))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-323)))) (-2666 (*1 *1 *2 *1) (-12 (-5 *2 (-1058 (-923 (-549)))) (-5 *1 (-323)))) (-2666 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1058 (-923 (-549)))) (-5 *3 (-923 (-549))) (-5 *1 (-323)))) (-1694 (*1 *1 *2 *1) (-12 (-5 *2 (-1141)) (-5 *1 (-323)))) (-3734 (*1 *1 *2 *1) (-12 (-5 *2 (-1141)) (-5 *1 (-323)))) (-3142 (*1 *1 *2) (-12 (-5 *2 (-1086)) (-5 *1 (-323)))) (-2328 (*1 *1 *2) (-12 (-5 *2 (-1086)) (-5 *1 (-323)))) (-1263 (*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-323)))) (-1263 (*1 *1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-323)))) (-3510 (*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-323)))) (-2552 (*1 *1) (-5 *1 (-323))) (-2552 (*1 *1 *2) (-12 (-5 *2 (-309 (-675))) (-5 *1 (-323)))) (-2552 (*1 *1 *2) (-12 (-5 *2 (-309 (-677))) (-5 *1 (-323)))) (-2552 (*1 *1 *2) (-12 (-5 *2 (-309 (-670))) (-5 *1 (-323)))) (-2552 (*1 *1 *2) (-12 (-5 *2 (-309 (-372))) (-5 *1 (-323)))) (-2552 (*1 *1 *2) (-12 (-5 *2 (-309 (-549))) (-5 *1 (-323)))) (-2552 (*1 *1 *2) (-12 (-5 *2 (-309 (-167 (-372)))) (-5 *1 (-323)))) (-4109 (*1 *1 *2 *1) (-12 (-5 *2 (-1141)) (-5 *1 (-323)))) (-4109 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1141)) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1124)) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-309 (-677))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-309 (-675))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-309 (-670))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-677))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-675))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-670))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-677))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-675))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-670))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-309 (-677)))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-309 (-675)))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-309 (-670)))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-309 (-677)))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-309 (-675)))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-309 (-670)))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-309 (-677))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-309 (-675))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-309 (-670))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-309 (-549))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-309 (-372))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-309 (-167 (-372)))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-309 (-549)))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-309 (-372)))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-309 (-167 (-372))))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-309 (-549)))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-309 (-372)))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-309 (-167 (-372))))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-309 (-549))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-309 (-372))) (-5 *1 (-323)))) (-2190 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-309 (-167 (-372)))) (-5 *1 (-323)))) (-2534 (*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-5 *1 (-323)))) (-4148 (*1 *1) (-5 *1 (-323))) (-2533 (*1 *1) (-5 *1 (-323))) (-2698 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-323)))) (-3554 (*1 *1 *2 *3) (-12 (-5 *3 (-621 (-1142))) (-5 *2 (-1142)) (-5 *1 (-323)))) (-3376 (*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 (-323)))) (-2099 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1142)) (|:| |arrayIndex| (-621 (-923 (-549)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2975 (-834)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1142)) (|:| |rand| (-834)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1141)) (|:| |thenClause| (-323)) (|:| |elseClause| (-323)))) (|:| |returnBranch| (-2 (|:| -2643 (-112)) (|:| -4160 (-2 (|:| |ints2Floats?| (-112)) (|:| -2975 (-834)))))) (|:| |blockBranch| (-621 (-323))) (|:| |commentBranch| (-621 (-1124))) (|:| |callBranch| (-1124)) (|:| |forBranch| (-2 (|:| -2811 (-1058 (-923 (-549)))) (|:| |span| (-923 (-549))) (|:| -2492 (-323)))) (|:| |labelBranch| (-1086)) (|:| |loopBranch| (-2 (|:| |switch| (-1141)) (|:| -2492 (-323)))) (|:| |commonBranch| (-2 (|:| -2479 (-1142)) (|:| |contents| (-621 (-1142))))) (|:| |printBranch| (-621 (-834))))) (-5 *1 (-323)))) (-1624 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-323)))) (-3560 (*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-323)))) (-3971 (*1 *2 *2) (-12 (-5 *2 (-1086)) (-5 *1 (-323)))))
+(-13 (-1066) (-10 -8 (-15 -3845 ((-834) $)) (-15 -2666 ($ (-1058 (-923 (-549))) $)) (-15 -2666 ($ (-1058 (-923 (-549))) (-923 (-549)) $)) (-15 -1694 ($ (-1141) $)) (-15 -3734 ($ (-1141) $)) (-15 -3142 ($ (-1086))) (-15 -2328 ($ (-1086))) (-15 -1263 ($ (-1124))) (-15 -1263 ($ (-621 (-1124)))) (-15 -3510 ($ (-1124))) (-15 -2552 ($)) (-15 -2552 ($ (-309 (-675)))) (-15 -2552 ($ (-309 (-677)))) (-15 -2552 ($ (-309 (-670)))) (-15 -2552 ($ (-309 (-372)))) (-15 -2552 ($ (-309 (-549)))) (-15 -2552 ($ (-309 (-167 (-372))))) (-15 -4109 ($ (-1141) $)) (-15 -4109 ($ (-1141) $ $)) (-15 -2190 ($ (-1142) (-1124))) (-15 -2190 ($ (-1142) (-309 (-677)))) (-15 -2190 ($ (-1142) (-309 (-675)))) (-15 -2190 ($ (-1142) (-309 (-670)))) (-15 -2190 ($ (-1142) (-665 (-677)))) (-15 -2190 ($ (-1142) (-665 (-675)))) (-15 -2190 ($ (-1142) (-665 (-670)))) (-15 -2190 ($ (-1142) (-1225 (-677)))) (-15 -2190 ($ (-1142) (-1225 (-675)))) (-15 -2190 ($ (-1142) (-1225 (-670)))) (-15 -2190 ($ (-1142) (-665 (-309 (-677))))) (-15 -2190 ($ (-1142) (-665 (-309 (-675))))) (-15 -2190 ($ (-1142) (-665 (-309 (-670))))) (-15 -2190 ($ (-1142) (-1225 (-309 (-677))))) (-15 -2190 ($ (-1142) (-1225 (-309 (-675))))) (-15 -2190 ($ (-1142) (-1225 (-309 (-670))))) (-15 -2190 ($ (-1142) (-621 (-923 (-549))) (-309 (-677)))) (-15 -2190 ($ (-1142) (-621 (-923 (-549))) (-309 (-675)))) (-15 -2190 ($ (-1142) (-621 (-923 (-549))) (-309 (-670)))) (-15 -2190 ($ (-1142) (-309 (-549)))) (-15 -2190 ($ (-1142) (-309 (-372)))) (-15 -2190 ($ (-1142) (-309 (-167 (-372))))) (-15 -2190 ($ (-1142) (-665 (-309 (-549))))) (-15 -2190 ($ (-1142) (-665 (-309 (-372))))) (-15 -2190 ($ (-1142) (-665 (-309 (-167 (-372)))))) (-15 -2190 ($ (-1142) (-1225 (-309 (-549))))) (-15 -2190 ($ (-1142) (-1225 (-309 (-372))))) (-15 -2190 ($ (-1142) (-1225 (-309 (-167 (-372)))))) (-15 -2190 ($ (-1142) (-621 (-923 (-549))) (-309 (-549)))) (-15 -2190 ($ (-1142) (-621 (-923 (-549))) (-309 (-372)))) (-15 -2190 ($ (-1142) (-621 (-923 (-549))) (-309 (-167 (-372))))) (-15 -2534 ($ (-621 $))) (-15 -4148 ($)) (-15 -2533 ($)) (-15 -2698 ($ (-621 (-834)))) (-15 -3554 ($ (-1142) (-621 (-1142)))) (-15 -3376 ((-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 -2099 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1142)) (|:| |arrayIndex| (-621 (-923 (-549)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2975 (-834)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1142)) (|:| |rand| (-834)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1141)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -2643 (-112)) (|:| -4160 (-2 (|:| |ints2Floats?| (-112)) (|:| -2975 (-834)))))) (|:| |blockBranch| (-621 $)) (|:| |commentBranch| (-621 (-1124))) (|:| |callBranch| (-1124)) (|:| |forBranch| (-2 (|:| -2811 (-1058 (-923 (-549)))) (|:| |span| (-923 (-549))) (|:| -2492 $))) (|:| |labelBranch| (-1086)) (|:| |loopBranch| (-2 (|:| |switch| (-1141)) (|:| -2492 $))) (|:| |commonBranch| (-2 (|:| -2479 (-1142)) (|:| |contents| (-621 (-1142))))) (|:| |printBranch| (-621 (-834)))) $)) (-15 -1624 ((-1230) $)) (-15 -3560 ((-1070) $)) (-15 -3971 ((-1086) (-1086)))))
+((-3832 (((-112) $ $) NIL)) (-1412 (((-112) $) 11)) (-1483 (($ |#1|) 8)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-1500 (($ |#1|) 9)) (-3845 (((-834) $) 17)) (-2058 ((|#1| $) 12)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 19)))
+(((-324 |#1|) (-13 (-823) (-10 -8 (-15 -1483 ($ |#1|)) (-15 -1500 ($ |#1|)) (-15 -1412 ((-112) $)) (-15 -2058 (|#1| $)))) (-823)) (T -324))
+((-1483 (*1 *1 *2) (-12 (-5 *1 (-324 *2)) (-4 *2 (-823)))) (-1500 (*1 *1 *2) (-12 (-5 *1 (-324 *2)) (-4 *2 (-823)))) (-1412 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-324 *3)) (-4 *3 (-823)))) (-2058 (*1 *2 *1) (-12 (-5 *1 (-324 *2)) (-4 *2 (-823)))))
+(-13 (-823) (-10 -8 (-15 -1483 ($ |#1|)) (-15 -1500 ($ |#1|)) (-15 -1412 ((-112) $)) (-15 -2058 (|#1| $))))
+((-3152 (((-323) (-1142) (-923 (-549))) 23)) (-2445 (((-323) (-1142) (-923 (-549))) 27)) (-2599 (((-323) (-1142) (-1058 (-923 (-549))) (-1058 (-923 (-549)))) 26) (((-323) (-1142) (-923 (-549)) (-923 (-549))) 24)) (-1858 (((-323) (-1142) (-923 (-549))) 31)))
+(((-325) (-10 -7 (-15 -3152 ((-323) (-1142) (-923 (-549)))) (-15 -2599 ((-323) (-1142) (-923 (-549)) (-923 (-549)))) (-15 -2599 ((-323) (-1142) (-1058 (-923 (-549))) (-1058 (-923 (-549))))) (-15 -2445 ((-323) (-1142) (-923 (-549)))) (-15 -1858 ((-323) (-1142) (-923 (-549)))))) (T -325))
+((-1858 (*1 *2 *3 *4) (-12 (-5 *3 (-1142)) (-5 *4 (-923 (-549))) (-5 *2 (-323)) (-5 *1 (-325)))) (-2445 (*1 *2 *3 *4) (-12 (-5 *3 (-1142)) (-5 *4 (-923 (-549))) (-5 *2 (-323)) (-5 *1 (-325)))) (-2599 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1142)) (-5 *4 (-1058 (-923 (-549)))) (-5 *2 (-323)) (-5 *1 (-325)))) (-2599 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1142)) (-5 *4 (-923 (-549))) (-5 *2 (-323)) (-5 *1 (-325)))) (-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1142)) (-5 *4 (-923 (-549))) (-5 *2 (-323)) (-5 *1 (-325)))))
+(-10 -7 (-15 -3152 ((-323) (-1142) (-923 (-549)))) (-15 -2599 ((-323) (-1142) (-923 (-549)) (-923 (-549)))) (-15 -2599 ((-323) (-1142) (-1058 (-923 (-549))) (-1058 (-923 (-549))))) (-15 -2445 ((-323) (-1142) (-923 (-549)))) (-15 -1858 ((-323) (-1142) (-923 (-549)))))
+((-2795 (((-329 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-329 |#1| |#2| |#3| |#4|)) 33)))
+(((-326 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2795 ((-329 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-329 |#1| |#2| |#3| |#4|)))) (-356) (-1201 |#1|) (-1201 (-400 |#2|)) (-335 |#1| |#2| |#3|) (-356) (-1201 |#5|) (-1201 (-400 |#6|)) (-335 |#5| |#6| |#7|)) (T -326))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-329 *5 *6 *7 *8)) (-4 *5 (-356)) (-4 *6 (-1201 *5)) (-4 *7 (-1201 (-400 *6))) (-4 *8 (-335 *5 *6 *7)) (-4 *9 (-356)) (-4 *10 (-1201 *9)) (-4 *11 (-1201 (-400 *10))) (-5 *2 (-329 *9 *10 *11 *12)) (-5 *1 (-326 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-335 *9 *10 *11)))))
+(-10 -7 (-15 -2795 ((-329 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-329 |#1| |#2| |#3| |#4|))))
+((-3919 (((-112) $) 14)))
+(((-327 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3919 ((-112) |#1|))) (-328 |#2| |#3| |#4| |#5|) (-356) (-1201 |#2|) (-1201 (-400 |#3|)) (-335 |#2| |#3| |#4|)) (T -327))
+NIL
+(-10 -8 (-15 -3919 ((-112) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2556 (($ $) 26)) (-3919 (((-112) $) 25)) (-3441 (((-1124) $) 9)) (-2061 (((-406 |#2| (-400 |#2|) |#3| |#4|) $) 32)) (-3988 (((-1086) $) 10)) (-4247 (((-3 |#4| "failed") $) 24)) (-2390 (($ (-406 |#2| (-400 |#2|) |#3| |#4|)) 31) (($ |#4|) 30) (($ |#1| |#1|) 29) (($ |#1| |#1| (-549)) 28) (($ |#4| |#2| |#2| |#2| |#1|) 23)) (-2570 (((-2 (|:| -3713 (-406 |#2| (-400 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 27)) (-3845 (((-834) $) 11)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20)))
+(((-328 |#1| |#2| |#3| |#4|) (-138) (-356) (-1201 |t#1|) (-1201 (-400 |t#2|)) (-335 |t#1| |t#2| |t#3|)) (T -328))
+((-2061 (*1 *2 *1) (-12 (-4 *1 (-328 *3 *4 *5 *6)) (-4 *3 (-356)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-4 *6 (-335 *3 *4 *5)) (-5 *2 (-406 *4 (-400 *4) *5 *6)))) (-2390 (*1 *1 *2) (-12 (-5 *2 (-406 *4 (-400 *4) *5 *6)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-4 *6 (-335 *3 *4 *5)) (-4 *3 (-356)) (-4 *1 (-328 *3 *4 *5 *6)))) (-2390 (*1 *1 *2) (-12 (-4 *3 (-356)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-4 *1 (-328 *3 *4 *5 *2)) (-4 *2 (-335 *3 *4 *5)))) (-2390 (*1 *1 *2 *2) (-12 (-4 *2 (-356)) (-4 *3 (-1201 *2)) (-4 *4 (-1201 (-400 *3))) (-4 *1 (-328 *2 *3 *4 *5)) (-4 *5 (-335 *2 *3 *4)))) (-2390 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-549)) (-4 *2 (-356)) (-4 *4 (-1201 *2)) (-4 *5 (-1201 (-400 *4))) (-4 *1 (-328 *2 *4 *5 *6)) (-4 *6 (-335 *2 *4 *5)))) (-2570 (*1 *2 *1) (-12 (-4 *1 (-328 *3 *4 *5 *6)) (-4 *3 (-356)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-4 *6 (-335 *3 *4 *5)) (-5 *2 (-2 (|:| -3713 (-406 *4 (-400 *4) *5 *6)) (|:| |principalPart| *6))))) (-2556 (*1 *1 *1) (-12 (-4 *1 (-328 *2 *3 *4 *5)) (-4 *2 (-356)) (-4 *3 (-1201 *2)) (-4 *4 (-1201 (-400 *3))) (-4 *5 (-335 *2 *3 *4)))) (-3919 (*1 *2 *1) (-12 (-4 *1 (-328 *3 *4 *5 *6)) (-4 *3 (-356)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-4 *6 (-335 *3 *4 *5)) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (|partial| -12 (-4 *1 (-328 *3 *4 *5 *2)) (-4 *3 (-356)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-4 *2 (-335 *3 *4 *5)))) (-2390 (*1 *1 *2 *3 *3 *3 *4) (-12 (-4 *4 (-356)) (-4 *3 (-1201 *4)) (-4 *5 (-1201 (-400 *3))) (-4 *1 (-328 *4 *3 *5 *2)) (-4 *2 (-335 *4 *3 *5)))))
+(-13 (-21) (-10 -8 (-15 -2061 ((-406 |t#2| (-400 |t#2|) |t#3| |t#4|) $)) (-15 -2390 ($ (-406 |t#2| (-400 |t#2|) |t#3| |t#4|))) (-15 -2390 ($ |t#4|)) (-15 -2390 ($ |t#1| |t#1|)) (-15 -2390 ($ |t#1| |t#1| (-549))) (-15 -2570 ((-2 (|:| -3713 (-406 |t#2| (-400 |t#2|) |t#3| |t#4|)) (|:| |principalPart| |t#4|)) $)) (-15 -2556 ($ $)) (-15 -3919 ((-112) $)) (-15 -4247 ((-3 |t#4| "failed") $)) (-15 -2390 ($ |t#4| |t#2| |t#2| |t#2| |t#1|))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2556 (($ $) 33)) (-3919 (((-112) $) NIL)) (-3441 (((-1124) $) NIL)) (-2425 (((-1225 |#4|) $) 125)) (-2061 (((-406 |#2| (-400 |#2|) |#3| |#4|) $) 31)) (-3988 (((-1086) $) NIL)) (-4247 (((-3 |#4| "failed") $) 36)) (-2329 (((-1225 |#4|) $) 118)) (-2390 (($ (-406 |#2| (-400 |#2|) |#3| |#4|)) 41) (($ |#4|) 43) (($ |#1| |#1|) 45) (($ |#1| |#1| (-549)) 47) (($ |#4| |#2| |#2| |#2| |#1|) 49)) (-2570 (((-2 (|:| -3713 (-406 |#2| (-400 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 39)) (-3845 (((-834) $) 17)) (-3274 (($) 14 T CONST)) (-2387 (((-112) $ $) 20)) (-2498 (($ $) 27) (($ $ $) NIL)) (-2484 (($ $ $) 25)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 23)))
+(((-329 |#1| |#2| |#3| |#4|) (-13 (-328 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2329 ((-1225 |#4|) $)) (-15 -2425 ((-1225 |#4|) $)))) (-356) (-1201 |#1|) (-1201 (-400 |#2|)) (-335 |#1| |#2| |#3|)) (T -329))
+((-2329 (*1 *2 *1) (-12 (-4 *3 (-356)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-1225 *6)) (-5 *1 (-329 *3 *4 *5 *6)) (-4 *6 (-335 *3 *4 *5)))) (-2425 (*1 *2 *1) (-12 (-4 *3 (-356)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-1225 *6)) (-5 *1 (-329 *3 *4 *5 *6)) (-4 *6 (-335 *3 *4 *5)))))
+(-13 (-328 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2329 ((-1225 |#4|) $)) (-15 -2425 ((-1225 |#4|) $))))
+((-2684 (($ $ (-1142) |#2|) NIL) (($ $ (-621 (-1142)) (-621 |#2|)) 20) (($ $ (-621 (-287 |#2|))) 15) (($ $ (-287 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-621 |#2|) (-621 |#2|)) NIL)) (-3339 (($ $ |#2|) 11)))
+(((-330 |#1| |#2|) (-10 -8 (-15 -3339 (|#1| |#1| |#2|)) (-15 -2684 (|#1| |#1| (-621 |#2|) (-621 |#2|))) (-15 -2684 (|#1| |#1| |#2| |#2|)) (-15 -2684 (|#1| |#1| (-287 |#2|))) (-15 -2684 (|#1| |#1| (-621 (-287 |#2|)))) (-15 -2684 (|#1| |#1| (-621 (-1142)) (-621 |#2|))) (-15 -2684 (|#1| |#1| (-1142) |#2|))) (-331 |#2|) (-1066)) (T -330))
+NIL
+(-10 -8 (-15 -3339 (|#1| |#1| |#2|)) (-15 -2684 (|#1| |#1| (-621 |#2|) (-621 |#2|))) (-15 -2684 (|#1| |#1| |#2| |#2|)) (-15 -2684 (|#1| |#1| (-287 |#2|))) (-15 -2684 (|#1| |#1| (-621 (-287 |#2|)))) (-15 -2684 (|#1| |#1| (-621 (-1142)) (-621 |#2|))) (-15 -2684 (|#1| |#1| (-1142) |#2|)))
+((-2795 (($ (-1 |#1| |#1|) $) 6)) (-2684 (($ $ (-1142) |#1|) 17 (|has| |#1| (-505 (-1142) |#1|))) (($ $ (-621 (-1142)) (-621 |#1|)) 16 (|has| |#1| (-505 (-1142) |#1|))) (($ $ (-621 (-287 |#1|))) 15 (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) 14 (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) 13 (|has| |#1| (-302 |#1|))) (($ $ (-621 |#1|) (-621 |#1|)) 12 (|has| |#1| (-302 |#1|)))) (-3339 (($ $ |#1|) 11 (|has| |#1| (-279 |#1| |#1|)))))
+(((-331 |#1|) (-138) (-1066)) (T -331))
+((-2795 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-331 *3)) (-4 *3 (-1066)))))
+(-13 (-10 -8 (-15 -2795 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-279 |t#1| |t#1|)) (-6 (-279 |t#1| $)) |%noBranch|) (IF (|has| |t#1| (-302 |t#1|)) (-6 (-302 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-505 (-1142) |t#1|)) (-6 (-505 (-1142) |t#1|)) |%noBranch|)))
+(((-279 |#1| $) |has| |#1| (-279 |#1| |#1|)) ((-302 |#1|) |has| |#1| (-302 |#1|)) ((-505 (-1142) |#1|) |has| |#1| (-505 (-1142) |#1|)) ((-505 |#1| |#1|) |has| |#1| (-302 |#1|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2270 (((-621 (-1142)) $) NIL)) (-2933 (((-112)) 91) (((-112) (-112)) 92)) (-1979 (((-621 (-592 $)) $) NIL)) (-1662 (($ $) NIL)) (-1510 (($ $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3013 (($ $ (-287 $)) NIL) (($ $ (-621 (-287 $))) NIL) (($ $ (-621 (-592 $)) (-621 $)) NIL)) (-2132 (($ $) NIL)) (-1638 (($ $) NIL)) (-1483 (($ $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-592 $) "failed") $) NIL) (((-3 |#3| "failed") $) NIL) (((-3 $ "failed") (-309 |#3|)) 71) (((-3 $ "failed") (-1142)) 97) (((-3 $ "failed") (-309 (-549))) 59 (|has| |#3| (-1009 (-549)))) (((-3 $ "failed") (-400 (-923 (-549)))) 65 (|has| |#3| (-1009 (-549)))) (((-3 $ "failed") (-923 (-549))) 60 (|has| |#3| (-1009 (-549)))) (((-3 $ "failed") (-309 (-372))) 89 (|has| |#3| (-1009 (-372)))) (((-3 $ "failed") (-400 (-923 (-372)))) 83 (|has| |#3| (-1009 (-372)))) (((-3 $ "failed") (-923 (-372))) 78 (|has| |#3| (-1009 (-372))))) (-2657 (((-592 $) $) NIL) ((|#3| $) NIL) (($ (-309 |#3|)) 72) (($ (-1142)) 98) (($ (-309 (-549))) 61 (|has| |#3| (-1009 (-549)))) (($ (-400 (-923 (-549)))) 66 (|has| |#3| (-1009 (-549)))) (($ (-923 (-549))) 62 (|has| |#3| (-1009 (-549)))) (($ (-309 (-372))) 90 (|has| |#3| (-1009 (-372)))) (($ (-400 (-923 (-372)))) 84 (|has| |#3| (-1009 (-372)))) (($ (-923 (-372))) 80 (|has| |#3| (-1009 (-372))))) (-2612 (((-3 $ "failed") $) NIL)) (-1425 (($) 10)) (-4158 (($ $) NIL) (($ (-621 $)) NIL)) (-3724 (((-621 (-114)) $) NIL)) (-3500 (((-114) (-114)) NIL)) (-2297 (((-112) $) NIL)) (-2803 (((-112) $) NIL (|has| $ (-1009 (-549))))) (-1797 (((-1138 $) (-592 $)) NIL (|has| $ (-1018)))) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-2795 (($ (-1 $ $) (-592 $)) NIL)) (-2197 (((-3 (-592 $) "failed") $) NIL)) (-2298 (($ $) 94)) (-3631 (($ $) NIL)) (-3441 (((-1124) $) NIL)) (-2059 (((-621 (-592 $)) $) NIL)) (-1475 (($ (-114) $) 93) (($ (-114) (-621 $)) NIL)) (-3673 (((-112) $ (-114)) NIL) (((-112) $ (-1142)) NIL)) (-4036 (((-747) $) NIL)) (-3988 (((-1086) $) NIL)) (-2934 (((-112) $ $) NIL) (((-112) $ (-1142)) NIL)) (-2717 (($ $) NIL)) (-1980 (((-112) $) NIL (|has| $ (-1009 (-549))))) (-2684 (($ $ (-592 $) $) NIL) (($ $ (-621 (-592 $)) (-621 $)) NIL) (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-621 (-1142)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-1142)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-1142) (-1 $ (-621 $))) NIL) (($ $ (-1142) (-1 $ $)) NIL) (($ $ (-621 (-114)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-114) (-1 $ (-621 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-3339 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-621 $)) NIL)) (-3205 (($ $) NIL) (($ $ $) NIL)) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142)) NIL)) (-1262 (($ $) NIL (|has| $ (-1018)))) (-1648 (($ $) NIL)) (-1500 (($ $) NIL)) (-3845 (((-834) $) NIL) (($ (-592 $)) NIL) (($ |#3|) NIL) (($ (-549)) NIL) (((-309 |#3|) $) 96)) (-2371 (((-747)) NIL)) (-4136 (($ $) NIL) (($ (-621 $)) NIL)) (-2444 (((-112) (-114)) NIL)) (-1585 (($ $) NIL)) (-1562 (($ $) NIL)) (-1575 (($ $) NIL)) (-2199 (($ $) NIL)) (-3274 (($) 95 T CONST)) (-3286 (($) 24 T CONST)) (-1699 (($ $ (-621 (-1142)) (-621 (-747))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142)) NIL)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) NIL)) (-2498 (($ $ $) NIL) (($ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-747)) NIL) (($ $ (-892)) NIL)) (* (($ |#3| $) NIL) (($ $ |#3|) NIL) (($ $ $) NIL) (($ (-549) $) NIL) (($ (-747) $) NIL) (($ (-892) $) NIL)))
+(((-332 |#1| |#2| |#3|) (-13 (-295) (-38 |#3|) (-1009 |#3|) (-871 (-1142)) (-10 -8 (-15 -2657 ($ (-309 |#3|))) (-15 -2712 ((-3 $ "failed") (-309 |#3|))) (-15 -2657 ($ (-1142))) (-15 -2712 ((-3 $ "failed") (-1142))) (-15 -3845 ((-309 |#3|) $)) (IF (|has| |#3| (-1009 (-549))) (PROGN (-15 -2657 ($ (-309 (-549)))) (-15 -2712 ((-3 $ "failed") (-309 (-549)))) (-15 -2657 ($ (-400 (-923 (-549))))) (-15 -2712 ((-3 $ "failed") (-400 (-923 (-549))))) (-15 -2657 ($ (-923 (-549)))) (-15 -2712 ((-3 $ "failed") (-923 (-549))))) |%noBranch|) (IF (|has| |#3| (-1009 (-372))) (PROGN (-15 -2657 ($ (-309 (-372)))) (-15 -2712 ((-3 $ "failed") (-309 (-372)))) (-15 -2657 ($ (-400 (-923 (-372))))) (-15 -2712 ((-3 $ "failed") (-400 (-923 (-372))))) (-15 -2657 ($ (-923 (-372)))) (-15 -2712 ((-3 $ "failed") (-923 (-372))))) |%noBranch|) (-15 -2199 ($ $)) (-15 -2132 ($ $)) (-15 -2717 ($ $)) (-15 -3631 ($ $)) (-15 -2298 ($ $)) (-15 -1483 ($ $)) (-15 -1500 ($ $)) (-15 -1510 ($ $)) (-15 -1562 ($ $)) (-15 -1575 ($ $)) (-15 -1585 ($ $)) (-15 -1638 ($ $)) (-15 -1648 ($ $)) (-15 -1662 ($ $)) (-15 -1425 ($)) (-15 -2270 ((-621 (-1142)) $)) (-15 -2933 ((-112))) (-15 -2933 ((-112) (-112))))) (-621 (-1142)) (-621 (-1142)) (-380)) (T -332))
+((-2657 (*1 *1 *2) (-12 (-5 *2 (-309 *5)) (-4 *5 (-380)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-309 *5)) (-4 *5 (-380)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 *2)) (-14 *4 (-621 *2)) (-4 *5 (-380)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-1142)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 *2)) (-14 *4 (-621 *2)) (-4 *5 (-380)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-309 *5)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))) (-4 *5 (-380)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-309 (-549))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))) (-4 *5 (-380)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-309 (-549))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))) (-4 *5 (-380)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-400 (-923 (-549)))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))) (-4 *5 (-380)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-400 (-923 (-549)))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))) (-4 *5 (-380)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-923 (-549))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))) (-4 *5 (-380)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-923 (-549))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))) (-4 *5 (-380)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-309 (-372))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))) (-4 *5 (-380)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-309 (-372))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))) (-4 *5 (-380)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-400 (-923 (-372)))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))) (-4 *5 (-380)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-400 (-923 (-372)))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))) (-4 *5 (-380)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-923 (-372))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))) (-4 *5 (-380)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-923 (-372))) (-5 *1 (-332 *3 *4 *5)) (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))) (-4 *5 (-380)))) (-2199 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142))) (-14 *3 (-621 (-1142))) (-4 *4 (-380)))) (-2132 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142))) (-14 *3 (-621 (-1142))) (-4 *4 (-380)))) (-2717 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142))) (-14 *3 (-621 (-1142))) (-4 *4 (-380)))) (-3631 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142))) (-14 *3 (-621 (-1142))) (-4 *4 (-380)))) (-2298 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142))) (-14 *3 (-621 (-1142))) (-4 *4 (-380)))) (-1483 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142))) (-14 *3 (-621 (-1142))) (-4 *4 (-380)))) (-1500 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142))) (-14 *3 (-621 (-1142))) (-4 *4 (-380)))) (-1510 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142))) (-14 *3 (-621 (-1142))) (-4 *4 (-380)))) (-1562 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142))) (-14 *3 (-621 (-1142))) (-4 *4 (-380)))) (-1575 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142))) (-14 *3 (-621 (-1142))) (-4 *4 (-380)))) (-1585 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142))) (-14 *3 (-621 (-1142))) (-4 *4 (-380)))) (-1638 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142))) (-14 *3 (-621 (-1142))) (-4 *4 (-380)))) (-1648 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142))) (-14 *3 (-621 (-1142))) (-4 *4 (-380)))) (-1662 (*1 *1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142))) (-14 *3 (-621 (-1142))) (-4 *4 (-380)))) (-1425 (*1 *1) (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142))) (-14 *3 (-621 (-1142))) (-4 *4 (-380)))) (-2270 (*1 *2 *1) (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-332 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-380)))) (-2933 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))) (-4 *5 (-380)))) (-2933 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))) (-4 *5 (-380)))))
+(-13 (-295) (-38 |#3|) (-1009 |#3|) (-871 (-1142)) (-10 -8 (-15 -2657 ($ (-309 |#3|))) (-15 -2712 ((-3 $ "failed") (-309 |#3|))) (-15 -2657 ($ (-1142))) (-15 -2712 ((-3 $ "failed") (-1142))) (-15 -3845 ((-309 |#3|) $)) (IF (|has| |#3| (-1009 (-549))) (PROGN (-15 -2657 ($ (-309 (-549)))) (-15 -2712 ((-3 $ "failed") (-309 (-549)))) (-15 -2657 ($ (-400 (-923 (-549))))) (-15 -2712 ((-3 $ "failed") (-400 (-923 (-549))))) (-15 -2657 ($ (-923 (-549)))) (-15 -2712 ((-3 $ "failed") (-923 (-549))))) |%noBranch|) (IF (|has| |#3| (-1009 (-372))) (PROGN (-15 -2657 ($ (-309 (-372)))) (-15 -2712 ((-3 $ "failed") (-309 (-372)))) (-15 -2657 ($ (-400 (-923 (-372))))) (-15 -2712 ((-3 $ "failed") (-400 (-923 (-372))))) (-15 -2657 ($ (-923 (-372)))) (-15 -2712 ((-3 $ "failed") (-923 (-372))))) |%noBranch|) (-15 -2199 ($ $)) (-15 -2132 ($ $)) (-15 -2717 ($ $)) (-15 -3631 ($ $)) (-15 -2298 ($ $)) (-15 -1483 ($ $)) (-15 -1500 ($ $)) (-15 -1510 ($ $)) (-15 -1562 ($ $)) (-15 -1575 ($ $)) (-15 -1585 ($ $)) (-15 -1638 ($ $)) (-15 -1648 ($ $)) (-15 -1662 ($ $)) (-15 -1425 ($)) (-15 -2270 ((-621 (-1142)) $)) (-15 -2933 ((-112))) (-15 -2933 ((-112) (-112)))))
+((-2795 ((|#8| (-1 |#5| |#1|) |#4|) 19)))
+(((-333 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2795 (|#8| (-1 |#5| |#1|) |#4|))) (-1183) (-1201 |#1|) (-1201 (-400 |#2|)) (-335 |#1| |#2| |#3|) (-1183) (-1201 |#5|) (-1201 (-400 |#6|)) (-335 |#5| |#6| |#7|)) (T -333))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1183)) (-4 *8 (-1183)) (-4 *6 (-1201 *5)) (-4 *7 (-1201 (-400 *6))) (-4 *9 (-1201 *8)) (-4 *2 (-335 *8 *9 *10)) (-5 *1 (-333 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-335 *5 *6 *7)) (-4 *10 (-1201 (-400 *9))))))
+(-10 -7 (-15 -2795 (|#8| (-1 |#5| |#1|) |#4|)))
+((-1726 (((-2 (|:| |num| (-1225 |#3|)) (|:| |den| |#3|)) $) 38)) (-2397 (($ (-1225 (-400 |#3|)) (-1225 $)) NIL) (($ (-1225 (-400 |#3|))) NIL) (($ (-1225 |#3|) |#3|) 161)) (-2231 (((-1225 $) (-1225 $)) 145)) (-2185 (((-621 (-621 |#2|))) 119)) (-3805 (((-112) |#2| |#2|) 73)) (-3004 (($ $) 139)) (-1872 (((-747)) 31)) (-3015 (((-1225 $) (-1225 $)) 198)) (-3355 (((-621 (-923 |#2|)) (-1142)) 110)) (-3411 (((-112) $) 158)) (-3623 (((-112) $) 25) (((-112) $ |#2|) 29) (((-112) $ |#3|) 202)) (-1550 (((-3 |#3| "failed")) 50)) (-1765 (((-747)) 170)) (-3339 ((|#2| $ |#2| |#2|) 132)) (-2622 (((-3 |#3| "failed")) 68)) (-3455 (($ $ (-1 (-400 |#3|) (-400 |#3|)) (-747)) NIL) (($ $ (-1 (-400 |#3|) (-400 |#3|))) NIL) (($ $ (-1 |#3| |#3|)) 206) (($ $ (-621 (-1142)) (-621 (-747))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142)) NIL) (($ $ (-747)) NIL) (($ $) NIL)) (-2354 (((-1225 $) (-1225 $)) 151)) (-3111 (((-2 (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (-1 |#3| |#3|)) 66)) (-1945 (((-112)) 33)))
+(((-334 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3455 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -2185 ((-621 (-621 |#2|)))) (-15 -3355 ((-621 (-923 |#2|)) (-1142))) (-15 -3111 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -1550 ((-3 |#3| "failed"))) (-15 -2622 ((-3 |#3| "failed"))) (-15 -3339 (|#2| |#1| |#2| |#2|)) (-15 -3004 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3623 ((-112) |#1| |#3|)) (-15 -3623 ((-112) |#1| |#2|)) (-15 -2397 (|#1| (-1225 |#3|) |#3|)) (-15 -1726 ((-2 (|:| |num| (-1225 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -2231 ((-1225 |#1|) (-1225 |#1|))) (-15 -3015 ((-1225 |#1|) (-1225 |#1|))) (-15 -2354 ((-1225 |#1|) (-1225 |#1|))) (-15 -3623 ((-112) |#1|)) (-15 -3411 ((-112) |#1|)) (-15 -3805 ((-112) |#2| |#2|)) (-15 -1945 ((-112))) (-15 -1765 ((-747))) (-15 -1872 ((-747))) (-15 -3455 (|#1| |#1| (-1 (-400 |#3|) (-400 |#3|)))) (-15 -3455 (|#1| |#1| (-1 (-400 |#3|) (-400 |#3|)) (-747))) (-15 -2397 (|#1| (-1225 (-400 |#3|)))) (-15 -2397 (|#1| (-1225 (-400 |#3|)) (-1225 |#1|)))) (-335 |#2| |#3| |#4|) (-1183) (-1201 |#2|) (-1201 (-400 |#3|))) (T -334))
+((-1872 (*1 *2) (-12 (-4 *4 (-1183)) (-4 *5 (-1201 *4)) (-4 *6 (-1201 (-400 *5))) (-5 *2 (-747)) (-5 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-335 *4 *5 *6)))) (-1765 (*1 *2) (-12 (-4 *4 (-1183)) (-4 *5 (-1201 *4)) (-4 *6 (-1201 (-400 *5))) (-5 *2 (-747)) (-5 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-335 *4 *5 *6)))) (-1945 (*1 *2) (-12 (-4 *4 (-1183)) (-4 *5 (-1201 *4)) (-4 *6 (-1201 (-400 *5))) (-5 *2 (-112)) (-5 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-335 *4 *5 *6)))) (-3805 (*1 *2 *3 *3) (-12 (-4 *3 (-1183)) (-4 *5 (-1201 *3)) (-4 *6 (-1201 (-400 *5))) (-5 *2 (-112)) (-5 *1 (-334 *4 *3 *5 *6)) (-4 *4 (-335 *3 *5 *6)))) (-2622 (*1 *2) (|partial| -12 (-4 *4 (-1183)) (-4 *5 (-1201 (-400 *2))) (-4 *2 (-1201 *4)) (-5 *1 (-334 *3 *4 *2 *5)) (-4 *3 (-335 *4 *2 *5)))) (-1550 (*1 *2) (|partial| -12 (-4 *4 (-1183)) (-4 *5 (-1201 (-400 *2))) (-4 *2 (-1201 *4)) (-5 *1 (-334 *3 *4 *2 *5)) (-4 *3 (-335 *4 *2 *5)))) (-3355 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-4 *5 (-1183)) (-4 *6 (-1201 *5)) (-4 *7 (-1201 (-400 *6))) (-5 *2 (-621 (-923 *5))) (-5 *1 (-334 *4 *5 *6 *7)) (-4 *4 (-335 *5 *6 *7)))) (-2185 (*1 *2) (-12 (-4 *4 (-1183)) (-4 *5 (-1201 *4)) (-4 *6 (-1201 (-400 *5))) (-5 *2 (-621 (-621 *4))) (-5 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-335 *4 *5 *6)))))
+(-10 -8 (-15 -3455 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -2185 ((-621 (-621 |#2|)))) (-15 -3355 ((-621 (-923 |#2|)) (-1142))) (-15 -3111 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -1550 ((-3 |#3| "failed"))) (-15 -2622 ((-3 |#3| "failed"))) (-15 -3339 (|#2| |#1| |#2| |#2|)) (-15 -3004 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3623 ((-112) |#1| |#3|)) (-15 -3623 ((-112) |#1| |#2|)) (-15 -2397 (|#1| (-1225 |#3|) |#3|)) (-15 -1726 ((-2 (|:| |num| (-1225 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -2231 ((-1225 |#1|) (-1225 |#1|))) (-15 -3015 ((-1225 |#1|) (-1225 |#1|))) (-15 -2354 ((-1225 |#1|) (-1225 |#1|))) (-15 -3623 ((-112) |#1|)) (-15 -3411 ((-112) |#1|)) (-15 -3805 ((-112) |#2| |#2|)) (-15 -1945 ((-112))) (-15 -1765 ((-747))) (-15 -1872 ((-747))) (-15 -3455 (|#1| |#1| (-1 (-400 |#3|) (-400 |#3|)))) (-15 -3455 (|#1| |#1| (-1 (-400 |#3|) (-400 |#3|)) (-747))) (-15 -2397 (|#1| (-1225 (-400 |#3|)))) (-15 -2397 (|#1| (-1225 (-400 |#3|)) (-1225 |#1|))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-1726 (((-2 (|:| |num| (-1225 |#2|)) (|:| |den| |#2|)) $) 193)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 91 (|has| (-400 |#2|) (-356)))) (-3044 (($ $) 92 (|has| (-400 |#2|) (-356)))) (-2774 (((-112) $) 94 (|has| (-400 |#2|) (-356)))) (-1789 (((-665 (-400 |#2|)) (-1225 $)) 44) (((-665 (-400 |#2|))) 59)) (-2904 (((-400 |#2|) $) 50)) (-1597 (((-1152 (-892) (-747)) (-549)) 144 (|has| (-400 |#2|) (-342)))) (-2416 (((-3 $ "failed") $ $) 19)) (-3239 (($ $) 111 (|has| (-400 |#2|) (-356)))) (-2620 (((-411 $) $) 112 (|has| (-400 |#2|) (-356)))) (-2680 (((-112) $ $) 102 (|has| (-400 |#2|) (-356)))) (-3614 (((-747)) 85 (|has| (-400 |#2|) (-361)))) (-4233 (((-112)) 210)) (-1823 (((-112) |#1|) 209) (((-112) |#2|) 208)) (-3034 (($) 17 T CONST)) (-2712 (((-3 (-549) "failed") $) 166 (|has| (-400 |#2|) (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 164 (|has| (-400 |#2|) (-1009 (-400 (-549))))) (((-3 (-400 |#2|) "failed") $) 163)) (-2657 (((-549) $) 167 (|has| (-400 |#2|) (-1009 (-549)))) (((-400 (-549)) $) 165 (|has| (-400 |#2|) (-1009 (-400 (-549))))) (((-400 |#2|) $) 162)) (-2397 (($ (-1225 (-400 |#2|)) (-1225 $)) 46) (($ (-1225 (-400 |#2|))) 62) (($ (-1225 |#2|) |#2|) 192)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) 150 (|has| (-400 |#2|) (-342)))) (-2091 (($ $ $) 106 (|has| (-400 |#2|) (-356)))) (-1408 (((-665 (-400 |#2|)) $ (-1225 $)) 51) (((-665 (-400 |#2|)) $) 57)) (-3446 (((-665 (-549)) (-665 $)) 161 (|has| (-400 |#2|) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 160 (|has| (-400 |#2|) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-400 |#2|))) (|:| |vec| (-1225 (-400 |#2|)))) (-665 $) (-1225 $)) 159) (((-665 (-400 |#2|)) (-665 $)) 158)) (-2231 (((-1225 $) (-1225 $)) 198)) (-2556 (($ |#3|) 155) (((-3 $ "failed") (-400 |#3|)) 152 (|has| (-400 |#2|) (-356)))) (-2612 (((-3 $ "failed") $) 32)) (-2185 (((-621 (-621 |#1|))) 179 (|has| |#1| (-361)))) (-3805 (((-112) |#1| |#1|) 214)) (-3121 (((-892)) 52)) (-3237 (($) 88 (|has| (-400 |#2|) (-361)))) (-2707 (((-112)) 207)) (-3568 (((-112) |#1|) 206) (((-112) |#2|) 205)) (-2065 (($ $ $) 105 (|has| (-400 |#2|) (-356)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 100 (|has| (-400 |#2|) (-356)))) (-3004 (($ $) 185)) (-1545 (($) 146 (|has| (-400 |#2|) (-342)))) (-1315 (((-112) $) 147 (|has| (-400 |#2|) (-342)))) (-3517 (($ $ (-747)) 138 (|has| (-400 |#2|) (-342))) (($ $) 137 (|has| (-400 |#2|) (-342)))) (-1464 (((-112) $) 113 (|has| (-400 |#2|) (-356)))) (-2729 (((-892) $) 149 (|has| (-400 |#2|) (-342))) (((-809 (-892)) $) 135 (|has| (-400 |#2|) (-342)))) (-2297 (((-112) $) 30)) (-1872 (((-747)) 217)) (-3015 (((-1225 $) (-1225 $)) 199)) (-2469 (((-400 |#2|) $) 49)) (-3355 (((-621 (-923 |#1|)) (-1142)) 180 (|has| |#1| (-356)))) (-2964 (((-3 $ "failed") $) 139 (|has| (-400 |#2|) (-342)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 109 (|has| (-400 |#2|) (-356)))) (-3514 ((|#3| $) 42 (|has| (-400 |#2|) (-356)))) (-3309 (((-892) $) 87 (|has| (-400 |#2|) (-361)))) (-2545 ((|#3| $) 153)) (-3696 (($ (-621 $)) 98 (|has| (-400 |#2|) (-356))) (($ $ $) 97 (|has| (-400 |#2|) (-356)))) (-3441 (((-1124) $) 9)) (-3089 (((-665 (-400 |#2|))) 194)) (-2518 (((-665 (-400 |#2|))) 196)) (-1990 (($ $) 114 (|has| (-400 |#2|) (-356)))) (-3415 (($ (-1225 |#2|) |#2|) 190)) (-2575 (((-665 (-400 |#2|))) 195)) (-2134 (((-665 (-400 |#2|))) 197)) (-3903 (((-2 (|:| |num| (-665 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 189)) (-1384 (((-2 (|:| |num| (-1225 |#2|)) (|:| |den| |#2|)) $) 191)) (-3555 (((-1225 $)) 203)) (-1311 (((-1225 $)) 204)) (-3411 (((-112) $) 202)) (-3623 (((-112) $) 201) (((-112) $ |#1|) 188) (((-112) $ |#2|) 187)) (-3059 (($) 140 (|has| (-400 |#2|) (-342)) CONST)) (-3494 (($ (-892)) 86 (|has| (-400 |#2|) (-361)))) (-1550 (((-3 |#2| "failed")) 182)) (-3988 (((-1086) $) 10)) (-1765 (((-747)) 216)) (-4247 (($) 157)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 99 (|has| (-400 |#2|) (-356)))) (-3726 (($ (-621 $)) 96 (|has| (-400 |#2|) (-356))) (($ $ $) 95 (|has| (-400 |#2|) (-356)))) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) 143 (|has| (-400 |#2|) (-342)))) (-2119 (((-411 $) $) 110 (|has| (-400 |#2|) (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 108 (|has| (-400 |#2|) (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 107 (|has| (-400 |#2|) (-356)))) (-2040 (((-3 $ "failed") $ $) 90 (|has| (-400 |#2|) (-356)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 101 (|has| (-400 |#2|) (-356)))) (-1335 (((-747) $) 103 (|has| (-400 |#2|) (-356)))) (-3339 ((|#1| $ |#1| |#1|) 184)) (-2622 (((-3 |#2| "failed")) 183)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 104 (|has| (-400 |#2|) (-356)))) (-2740 (((-400 |#2|) (-1225 $)) 45) (((-400 |#2|)) 58)) (-3189 (((-747) $) 148 (|has| (-400 |#2|) (-342))) (((-3 (-747) "failed") $ $) 136 (|has| (-400 |#2|) (-342)))) (-3455 (($ $ (-1 (-400 |#2|) (-400 |#2|)) (-747)) 120 (|has| (-400 |#2|) (-356))) (($ $ (-1 (-400 |#2|) (-400 |#2|))) 119 (|has| (-400 |#2|) (-356))) (($ $ (-1 |#2| |#2|)) 186) (($ $ (-621 (-1142)) (-621 (-747))) 127 (-1536 (-1819 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142)))) (-1819 (|has| (-400 |#2|) (-871 (-1142))) (|has| (-400 |#2|) (-356))))) (($ $ (-1142) (-747)) 128 (-1536 (-1819 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142)))) (-1819 (|has| (-400 |#2|) (-871 (-1142))) (|has| (-400 |#2|) (-356))))) (($ $ (-621 (-1142))) 129 (-1536 (-1819 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142)))) (-1819 (|has| (-400 |#2|) (-871 (-1142))) (|has| (-400 |#2|) (-356))))) (($ $ (-1142)) 130 (-1536 (-1819 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142)))) (-1819 (|has| (-400 |#2|) (-871 (-1142))) (|has| (-400 |#2|) (-356))))) (($ $ (-747)) 132 (-1536 (-1819 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-227))) (-1819 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342)))) (($ $) 134 (-1536 (-1819 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-227))) (-1819 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342))))) (-2381 (((-665 (-400 |#2|)) (-1225 $) (-1 (-400 |#2|) (-400 |#2|))) 151 (|has| (-400 |#2|) (-356)))) (-1262 ((|#3|) 156)) (-2950 (($) 145 (|has| (-400 |#2|) (-342)))) (-1981 (((-1225 (-400 |#2|)) $ (-1225 $)) 48) (((-665 (-400 |#2|)) (-1225 $) (-1225 $)) 47) (((-1225 (-400 |#2|)) $) 64) (((-665 (-400 |#2|)) (-1225 $)) 63)) (-2843 (((-1225 (-400 |#2|)) $) 61) (($ (-1225 (-400 |#2|))) 60) ((|#3| $) 168) (($ |#3|) 154)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) 142 (|has| (-400 |#2|) (-342)))) (-2354 (((-1225 $) (-1225 $)) 200)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ (-400 |#2|)) 35) (($ (-400 (-549))) 84 (-1536 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-1009 (-400 (-549)))))) (($ $) 89 (|has| (-400 |#2|) (-356)))) (-2343 (($ $) 141 (|has| (-400 |#2|) (-342))) (((-3 $ "failed") $) 41 (|has| (-400 |#2|) (-143)))) (-4019 ((|#3| $) 43)) (-2371 (((-747)) 28)) (-1479 (((-112)) 213)) (-1642 (((-112) |#1|) 212) (((-112) |#2|) 211)) (-2619 (((-1225 $)) 65)) (-2441 (((-112) $ $) 93 (|has| (-400 |#2|) (-356)))) (-3111 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) 181)) (-1945 (((-112)) 215)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ (-1 (-400 |#2|) (-400 |#2|)) (-747)) 122 (|has| (-400 |#2|) (-356))) (($ $ (-1 (-400 |#2|) (-400 |#2|))) 121 (|has| (-400 |#2|) (-356))) (($ $ (-621 (-1142)) (-621 (-747))) 123 (-1536 (-1819 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142)))) (-1819 (|has| (-400 |#2|) (-871 (-1142))) (|has| (-400 |#2|) (-356))))) (($ $ (-1142) (-747)) 124 (-1536 (-1819 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142)))) (-1819 (|has| (-400 |#2|) (-871 (-1142))) (|has| (-400 |#2|) (-356))))) (($ $ (-621 (-1142))) 125 (-1536 (-1819 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142)))) (-1819 (|has| (-400 |#2|) (-871 (-1142))) (|has| (-400 |#2|) (-356))))) (($ $ (-1142)) 126 (-1536 (-1819 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142)))) (-1819 (|has| (-400 |#2|) (-871 (-1142))) (|has| (-400 |#2|) (-356))))) (($ $ (-747)) 131 (-1536 (-1819 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-227))) (-1819 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342)))) (($ $) 133 (-1536 (-1819 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-227))) (-1819 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342))))) (-2387 (((-112) $ $) 6)) (-2511 (($ $ $) 118 (|has| (-400 |#2|) (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 115 (|has| (-400 |#2|) (-356)))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 |#2|)) 37) (($ (-400 |#2|) $) 36) (($ (-400 (-549)) $) 117 (|has| (-400 |#2|) (-356))) (($ $ (-400 (-549))) 116 (|has| (-400 |#2|) (-356)))))
+(((-335 |#1| |#2| |#3|) (-138) (-1183) (-1201 |t#1|) (-1201 (-400 |t#2|))) (T -335))
+((-1872 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-747)))) (-1765 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-747)))) (-1945 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))) (-3805 (*1 *2 *3 *3) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))) (-1479 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))) (-1642 (*1 *2 *3) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))) (-1642 (*1 *2 *3) (-12 (-4 *1 (-335 *4 *3 *5)) (-4 *4 (-1183)) (-4 *3 (-1201 *4)) (-4 *5 (-1201 (-400 *3))) (-5 *2 (-112)))) (-4233 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))) (-1823 (*1 *2 *3) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))) (-1823 (*1 *2 *3) (-12 (-4 *1 (-335 *4 *3 *5)) (-4 *4 (-1183)) (-4 *3 (-1201 *4)) (-4 *5 (-1201 (-400 *3))) (-5 *2 (-112)))) (-2707 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))) (-3568 (*1 *2 *3) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))) (-3568 (*1 *2 *3) (-12 (-4 *1 (-335 *4 *3 *5)) (-4 *4 (-1183)) (-4 *3 (-1201 *4)) (-4 *5 (-1201 (-400 *3))) (-5 *2 (-112)))) (-1311 (*1 *2) (-12 (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-1225 *1)) (-4 *1 (-335 *3 *4 *5)))) (-3555 (*1 *2) (-12 (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-1225 *1)) (-4 *1 (-335 *3 *4 *5)))) (-3411 (*1 *2 *1) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))) (-3623 (*1 *2 *1) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))) (-2354 (*1 *2 *2) (-12 (-5 *2 (-1225 *1)) (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))))) (-3015 (*1 *2 *2) (-12 (-5 *2 (-1225 *1)) (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))))) (-2231 (*1 *2 *2) (-12 (-5 *2 (-1225 *1)) (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))))) (-2134 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-665 (-400 *4))))) (-2518 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-665 (-400 *4))))) (-2575 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-665 (-400 *4))))) (-3089 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-665 (-400 *4))))) (-1726 (*1 *2 *1) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-2 (|:| |num| (-1225 *4)) (|:| |den| *4))))) (-2397 (*1 *1 *2 *3) (-12 (-5 *2 (-1225 *3)) (-4 *3 (-1201 *4)) (-4 *4 (-1183)) (-4 *1 (-335 *4 *3 *5)) (-4 *5 (-1201 (-400 *3))))) (-1384 (*1 *2 *1) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-2 (|:| |num| (-1225 *4)) (|:| |den| *4))))) (-3415 (*1 *1 *2 *3) (-12 (-5 *2 (-1225 *3)) (-4 *3 (-1201 *4)) (-4 *4 (-1183)) (-4 *1 (-335 *4 *3 *5)) (-4 *5 (-1201 (-400 *3))))) (-3903 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-335 *4 *5 *6)) (-4 *4 (-1183)) (-4 *5 (-1201 *4)) (-4 *6 (-1201 (-400 *5))) (-5 *2 (-2 (|:| |num| (-665 *5)) (|:| |den| *5))))) (-3623 (*1 *2 *1 *3) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))) (-3623 (*1 *2 *1 *3) (-12 (-4 *1 (-335 *4 *3 *5)) (-4 *4 (-1183)) (-4 *3 (-1201 *4)) (-4 *5 (-1201 (-400 *3))) (-5 *2 (-112)))) (-3455 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))))) (-3004 (*1 *1 *1) (-12 (-4 *1 (-335 *2 *3 *4)) (-4 *2 (-1183)) (-4 *3 (-1201 *2)) (-4 *4 (-1201 (-400 *3))))) (-3339 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-335 *2 *3 *4)) (-4 *2 (-1183)) (-4 *3 (-1201 *2)) (-4 *4 (-1201 (-400 *3))))) (-2622 (*1 *2) (|partial| -12 (-4 *1 (-335 *3 *2 *4)) (-4 *3 (-1183)) (-4 *4 (-1201 (-400 *2))) (-4 *2 (-1201 *3)))) (-1550 (*1 *2) (|partial| -12 (-4 *1 (-335 *3 *2 *4)) (-4 *3 (-1183)) (-4 *4 (-1201 (-400 *2))) (-4 *2 (-1201 *3)))) (-3111 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1201 *4)) (-4 *4 (-1183)) (-4 *6 (-1201 (-400 *5))) (-5 *2 (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5) (|:| |gd| *5))) (-4 *1 (-335 *4 *5 *6)))) (-3355 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-4 *1 (-335 *4 *5 *6)) (-4 *4 (-1183)) (-4 *5 (-1201 *4)) (-4 *6 (-1201 (-400 *5))) (-4 *4 (-356)) (-5 *2 (-621 (-923 *4))))) (-2185 (*1 *2) (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))) (-4 *3 (-361)) (-5 *2 (-621 (-621 *3))))))
+(-13 (-701 (-400 |t#2|) |t#3|) (-10 -8 (-15 -1872 ((-747))) (-15 -1765 ((-747))) (-15 -1945 ((-112))) (-15 -3805 ((-112) |t#1| |t#1|)) (-15 -1479 ((-112))) (-15 -1642 ((-112) |t#1|)) (-15 -1642 ((-112) |t#2|)) (-15 -4233 ((-112))) (-15 -1823 ((-112) |t#1|)) (-15 -1823 ((-112) |t#2|)) (-15 -2707 ((-112))) (-15 -3568 ((-112) |t#1|)) (-15 -3568 ((-112) |t#2|)) (-15 -1311 ((-1225 $))) (-15 -3555 ((-1225 $))) (-15 -3411 ((-112) $)) (-15 -3623 ((-112) $)) (-15 -2354 ((-1225 $) (-1225 $))) (-15 -3015 ((-1225 $) (-1225 $))) (-15 -2231 ((-1225 $) (-1225 $))) (-15 -2134 ((-665 (-400 |t#2|)))) (-15 -2518 ((-665 (-400 |t#2|)))) (-15 -2575 ((-665 (-400 |t#2|)))) (-15 -3089 ((-665 (-400 |t#2|)))) (-15 -1726 ((-2 (|:| |num| (-1225 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -2397 ($ (-1225 |t#2|) |t#2|)) (-15 -1384 ((-2 (|:| |num| (-1225 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -3415 ($ (-1225 |t#2|) |t#2|)) (-15 -3903 ((-2 (|:| |num| (-665 |t#2|)) (|:| |den| |t#2|)) (-1 |t#2| |t#2|))) (-15 -3623 ((-112) $ |t#1|)) (-15 -3623 ((-112) $ |t#2|)) (-15 -3455 ($ $ (-1 |t#2| |t#2|))) (-15 -3004 ($ $)) (-15 -3339 (|t#1| $ |t#1| |t#1|)) (-15 -2622 ((-3 |t#2| "failed"))) (-15 -1550 ((-3 |t#2| "failed"))) (-15 -3111 ((-2 (|:| |num| $) (|:| |den| |t#2|) (|:| |derivden| |t#2|) (|:| |gd| |t#2|)) $ (-1 |t#2| |t#2|))) (IF (|has| |t#1| (-356)) (-15 -3355 ((-621 (-923 |t#1|)) (-1142))) |%noBranch|) (IF (|has| |t#1| (-361)) (-15 -2185 ((-621 (-621 |t#1|)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-38 #1=(-400 |#2|)) . T) ((-38 $) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-101) . T) ((-111 #0# #0#) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-111 #1# #1#) . T) ((-111 $ $) . T) ((-130) . T) ((-143) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-143))) ((-145) |has| (-400 |#2|) (-145)) ((-593 (-834)) . T) ((-170) . T) ((-594 |#3|) . T) ((-225 #1#) |has| (-400 |#2|) (-356)) ((-227) -1536 (|has| (-400 |#2|) (-342)) (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356)))) ((-237) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-283) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-300) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-356) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-395) |has| (-400 |#2|) (-342)) ((-361) -1536 (|has| (-400 |#2|) (-361)) (|has| (-400 |#2|) (-342))) ((-342) |has| (-400 |#2|) (-342)) ((-363 #1# |#3|) . T) ((-402 #1# |#3|) . T) ((-370 #1#) . T) ((-404 #1#) . T) ((-444) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-541) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-624 #0#) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-624 #1#) . T) ((-624 $) . T) ((-617 #1#) . T) ((-617 (-549)) |has| (-400 |#2|) (-617 (-549))) ((-694 #0#) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-694 #1#) . T) ((-694 $) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-701 #1# |#3|) . T) ((-703) . T) ((-871 (-1142)) -12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142)))) ((-891) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-1009 (-400 (-549))) |has| (-400 |#2|) (-1009 (-400 (-549)))) ((-1009 #1#) . T) ((-1009 (-549)) |has| (-400 |#2|) (-1009 (-549))) ((-1024 #0#) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))) ((-1024 #1#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1117) |has| (-400 |#2|) (-342)) ((-1183) -1536 (|has| (-400 |#2|) (-342)) (|has| (-400 |#2|) (-356))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2638 (((-112) $) NIL)) (-2464 (((-747)) NIL)) (-2904 (((-881 |#1|) $) NIL) (($ $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-1597 (((-1152 (-892) (-747)) (-549)) NIL (|has| (-881 |#1|) (-361)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2680 (((-112) $ $) NIL)) (-3614 (((-747)) NIL (|has| (-881 |#1|) (-361)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-881 |#1|) "failed") $) NIL)) (-2657 (((-881 |#1|) $) NIL)) (-2397 (($ (-1225 (-881 |#1|))) NIL)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-881 |#1|) (-361)))) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) NIL (|has| (-881 |#1|) (-361)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1545 (($) NIL (|has| (-881 |#1|) (-361)))) (-1315 (((-112) $) NIL (|has| (-881 |#1|) (-361)))) (-3517 (($ $ (-747)) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361)))) (($ $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-1464 (((-112) $) NIL)) (-2729 (((-892) $) NIL (|has| (-881 |#1|) (-361))) (((-809 (-892)) $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2297 (((-112) $) NIL)) (-1728 (($) NIL (|has| (-881 |#1|) (-361)))) (-4031 (((-112) $) NIL (|has| (-881 |#1|) (-361)))) (-2469 (((-881 |#1|) $) NIL) (($ $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-2964 (((-3 $ "failed") $) NIL (|has| (-881 |#1|) (-361)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3514 (((-1138 (-881 |#1|)) $) NIL) (((-1138 $) $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-3309 (((-892) $) NIL (|has| (-881 |#1|) (-361)))) (-4021 (((-1138 (-881 |#1|)) $) NIL (|has| (-881 |#1|) (-361)))) (-1298 (((-1138 (-881 |#1|)) $) NIL (|has| (-881 |#1|) (-361))) (((-3 (-1138 (-881 |#1|)) "failed") $ $) NIL (|has| (-881 |#1|) (-361)))) (-3098 (($ $ (-1138 (-881 |#1|))) NIL (|has| (-881 |#1|) (-361)))) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL (|has| (-881 |#1|) (-361)) CONST)) (-3494 (($ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-2165 (((-112) $) NIL)) (-3988 (((-1086) $) NIL)) (-3580 (((-929 (-1086))) NIL)) (-4247 (($) NIL (|has| (-881 |#1|) (-361)))) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) NIL (|has| (-881 |#1|) (-361)))) (-2119 (((-411 $) $) NIL)) (-1485 (((-809 (-892))) NIL) (((-892)) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3189 (((-747) $) NIL (|has| (-881 |#1|) (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2260 (((-133)) NIL)) (-3455 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-3977 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-1262 (((-1138 (-881 |#1|))) NIL)) (-2950 (($) NIL (|has| (-881 |#1|) (-361)))) (-2578 (($) NIL (|has| (-881 |#1|) (-361)))) (-1981 (((-1225 (-881 |#1|)) $) NIL) (((-665 (-881 |#1|)) (-1225 $)) NIL)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (|has| (-881 |#1|) (-361)))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-881 |#1|)) NIL)) (-2343 (($ $) NIL (|has| (-881 |#1|) (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2371 (((-747)) NIL)) (-2619 (((-1225 $)) NIL) (((-1225 $) (-892)) NIL)) (-2441 (((-112) $ $) NIL)) (-1993 (((-112) $) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-3495 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-1699 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ $) NIL) (($ $ (-881 |#1|)) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ (-881 |#1|)) NIL) (($ (-881 |#1|) $) NIL)))
+(((-336 |#1| |#2|) (-13 (-322 (-881 |#1|)) (-10 -7 (-15 -3580 ((-929 (-1086)))))) (-892) (-892)) (T -336))
+((-3580 (*1 *2) (-12 (-5 *2 (-929 (-1086))) (-5 *1 (-336 *3 *4)) (-14 *3 (-892)) (-14 *4 (-892)))))
+(-13 (-322 (-881 |#1|)) (-10 -7 (-15 -3580 ((-929 (-1086))))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 44)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2638 (((-112) $) NIL)) (-2464 (((-747)) NIL)) (-2904 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-1597 (((-1152 (-892) (-747)) (-549)) 41 (|has| |#1| (-361)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2680 (((-112) $ $) NIL)) (-3614 (((-747)) NIL (|has| |#1| (-361)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) 115)) (-2657 ((|#1| $) 86)) (-2397 (($ (-1225 |#1|)) 104)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) 95 (|has| |#1| (-361)))) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) 98 (|has| |#1| (-361)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1545 (($) 129 (|has| |#1| (-361)))) (-1315 (((-112) $) 48 (|has| |#1| (-361)))) (-3517 (($ $ (-747)) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))) (($ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-1464 (((-112) $) NIL)) (-2729 (((-892) $) 45 (|has| |#1| (-361))) (((-809 (-892)) $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2297 (((-112) $) NIL)) (-1728 (($) 131 (|has| |#1| (-361)))) (-4031 (((-112) $) NIL (|has| |#1| (-361)))) (-2469 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-2964 (((-3 $ "failed") $) NIL (|has| |#1| (-361)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3514 (((-1138 |#1|) $) 90) (((-1138 $) $ (-892)) NIL (|has| |#1| (-361)))) (-3309 (((-892) $) 139 (|has| |#1| (-361)))) (-4021 (((-1138 |#1|) $) NIL (|has| |#1| (-361)))) (-1298 (((-1138 |#1|) $) NIL (|has| |#1| (-361))) (((-3 (-1138 |#1|) "failed") $ $) NIL (|has| |#1| (-361)))) (-3098 (($ $ (-1138 |#1|)) NIL (|has| |#1| (-361)))) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 146)) (-3059 (($) NIL (|has| |#1| (-361)) CONST)) (-3494 (($ (-892)) 71 (|has| |#1| (-361)))) (-2165 (((-112) $) 118)) (-3988 (((-1086) $) NIL)) (-3580 (((-929 (-1086))) 42)) (-4247 (($) 127 (|has| |#1| (-361)))) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) 93 (|has| |#1| (-361)))) (-2119 (((-411 $) $) NIL)) (-1485 (((-809 (-892))) 67) (((-892)) 68)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3189 (((-747) $) 130 (|has| |#1| (-361))) (((-3 (-747) "failed") $ $) 125 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2260 (((-133)) NIL)) (-3455 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-3977 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-1262 (((-1138 |#1|)) 96)) (-2950 (($) 128 (|has| |#1| (-361)))) (-2578 (($) 136 (|has| |#1| (-361)))) (-1981 (((-1225 |#1|) $) 59) (((-665 |#1|) (-1225 $)) NIL)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (|has| |#1| (-361)))) (-3845 (((-834) $) 142) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ |#1|) 75)) (-2343 (($ $) NIL (|has| |#1| (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2371 (((-747)) 138)) (-2619 (((-1225 $)) 117) (((-1225 $) (-892)) 73)) (-2441 (((-112) $ $) NIL)) (-1993 (((-112) $) NIL)) (-3274 (($) 49 T CONST)) (-3286 (($) 46 T CONST)) (-3495 (($ $) 81 (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-1699 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-2387 (((-112) $ $) 47)) (-2511 (($ $ $) 144) (($ $ |#1|) 145)) (-2498 (($ $) 126) (($ $ $) NIL)) (-2484 (($ $ $) 61)) (** (($ $ (-892)) 148) (($ $ (-747)) 149) (($ $ (-549)) 147)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 77) (($ $ $) 76) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 143)))
+(((-337 |#1| |#2|) (-13 (-322 |#1|) (-10 -7 (-15 -3580 ((-929 (-1086)))))) (-342) (-1138 |#1|)) (T -337))
+((-3580 (*1 *2) (-12 (-5 *2 (-929 (-1086))) (-5 *1 (-337 *3 *4)) (-4 *3 (-342)) (-14 *4 (-1138 *3)))))
+(-13 (-322 |#1|) (-10 -7 (-15 -3580 ((-929 (-1086))))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2638 (((-112) $) NIL)) (-2464 (((-747)) NIL)) (-2904 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-1597 (((-1152 (-892) (-747)) (-549)) NIL (|has| |#1| (-361)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2680 (((-112) $ $) NIL)) (-3614 (((-747)) NIL (|has| |#1| (-361)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) NIL)) (-2657 ((|#1| $) NIL)) (-2397 (($ (-1225 |#1|)) NIL)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-361)))) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) NIL (|has| |#1| (-361)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1545 (($) NIL (|has| |#1| (-361)))) (-1315 (((-112) $) NIL (|has| |#1| (-361)))) (-3517 (($ $ (-747)) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))) (($ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-1464 (((-112) $) NIL)) (-2729 (((-892) $) NIL (|has| |#1| (-361))) (((-809 (-892)) $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2297 (((-112) $) NIL)) (-1728 (($) NIL (|has| |#1| (-361)))) (-4031 (((-112) $) NIL (|has| |#1| (-361)))) (-2469 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-2964 (((-3 $ "failed") $) NIL (|has| |#1| (-361)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3514 (((-1138 |#1|) $) NIL) (((-1138 $) $ (-892)) NIL (|has| |#1| (-361)))) (-3309 (((-892) $) NIL (|has| |#1| (-361)))) (-4021 (((-1138 |#1|) $) NIL (|has| |#1| (-361)))) (-1298 (((-1138 |#1|) $) NIL (|has| |#1| (-361))) (((-3 (-1138 |#1|) "failed") $ $) NIL (|has| |#1| (-361)))) (-3098 (($ $ (-1138 |#1|)) NIL (|has| |#1| (-361)))) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL (|has| |#1| (-361)) CONST)) (-3494 (($ (-892)) NIL (|has| |#1| (-361)))) (-2165 (((-112) $) NIL)) (-3988 (((-1086) $) NIL)) (-3580 (((-929 (-1086))) NIL)) (-4247 (($) NIL (|has| |#1| (-361)))) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) NIL (|has| |#1| (-361)))) (-2119 (((-411 $) $) NIL)) (-1485 (((-809 (-892))) NIL) (((-892)) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3189 (((-747) $) NIL (|has| |#1| (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2260 (((-133)) NIL)) (-3455 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-3977 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-1262 (((-1138 |#1|)) NIL)) (-2950 (($) NIL (|has| |#1| (-361)))) (-2578 (($) NIL (|has| |#1| (-361)))) (-1981 (((-1225 |#1|) $) NIL) (((-665 |#1|) (-1225 $)) NIL)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (|has| |#1| (-361)))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ |#1|) NIL)) (-2343 (($ $) NIL (|has| |#1| (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2371 (((-747)) NIL)) (-2619 (((-1225 $)) NIL) (((-1225 $) (-892)) NIL)) (-2441 (((-112) $ $) NIL)) (-1993 (((-112) $) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-3495 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-1699 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-338 |#1| |#2|) (-13 (-322 |#1|) (-10 -7 (-15 -3580 ((-929 (-1086)))))) (-342) (-892)) (T -338))
+((-3580 (*1 *2) (-12 (-5 *2 (-929 (-1086))) (-5 *1 (-338 *3 *4)) (-4 *3 (-342)) (-14 *4 (-892)))))
+(-13 (-322 |#1|) (-10 -7 (-15 -3580 ((-929 (-1086))))))
+((-4059 (((-747) (-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086)))))) 42)) (-2282 (((-929 (-1086)) (-1138 |#1|)) 85)) (-4102 (((-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))) (-1138 |#1|)) 78)) (-3993 (((-665 |#1|) (-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086)))))) 86)) (-4175 (((-3 (-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))) "failed") (-892)) 13)) (-3639 (((-3 (-1138 |#1|) (-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086)))))) (-892)) 18)))
+(((-339 |#1|) (-10 -7 (-15 -2282 ((-929 (-1086)) (-1138 |#1|))) (-15 -4102 ((-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))) (-1138 |#1|))) (-15 -3993 ((-665 |#1|) (-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))))) (-15 -4059 ((-747) (-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))))) (-15 -4175 ((-3 (-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))) "failed") (-892))) (-15 -3639 ((-3 (-1138 |#1|) (-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086)))))) (-892)))) (-342)) (T -339))
+((-3639 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-3 (-1138 *4) (-1225 (-621 (-2 (|:| -4160 *4) (|:| -3494 (-1086))))))) (-5 *1 (-339 *4)) (-4 *4 (-342)))) (-4175 (*1 *2 *3) (|partial| -12 (-5 *3 (-892)) (-5 *2 (-1225 (-621 (-2 (|:| -4160 *4) (|:| -3494 (-1086)))))) (-5 *1 (-339 *4)) (-4 *4 (-342)))) (-4059 (*1 *2 *3) (-12 (-5 *3 (-1225 (-621 (-2 (|:| -4160 *4) (|:| -3494 (-1086)))))) (-4 *4 (-342)) (-5 *2 (-747)) (-5 *1 (-339 *4)))) (-3993 (*1 *2 *3) (-12 (-5 *3 (-1225 (-621 (-2 (|:| -4160 *4) (|:| -3494 (-1086)))))) (-4 *4 (-342)) (-5 *2 (-665 *4)) (-5 *1 (-339 *4)))) (-4102 (*1 *2 *3) (-12 (-5 *3 (-1138 *4)) (-4 *4 (-342)) (-5 *2 (-1225 (-621 (-2 (|:| -4160 *4) (|:| -3494 (-1086)))))) (-5 *1 (-339 *4)))) (-2282 (*1 *2 *3) (-12 (-5 *3 (-1138 *4)) (-4 *4 (-342)) (-5 *2 (-929 (-1086))) (-5 *1 (-339 *4)))))
+(-10 -7 (-15 -2282 ((-929 (-1086)) (-1138 |#1|))) (-15 -4102 ((-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))) (-1138 |#1|))) (-15 -3993 ((-665 |#1|) (-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))))) (-15 -4059 ((-747) (-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))))) (-15 -4175 ((-3 (-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))) "failed") (-892))) (-15 -3639 ((-3 (-1138 |#1|) (-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086)))))) (-892))))
+((-3845 ((|#1| |#3|) 86) ((|#3| |#1|) 69)))
+(((-340 |#1| |#2| |#3|) (-10 -7 (-15 -3845 (|#3| |#1|)) (-15 -3845 (|#1| |#3|))) (-322 |#2|) (-342) (-322 |#2|)) (T -340))
+((-3845 (*1 *2 *3) (-12 (-4 *4 (-342)) (-4 *2 (-322 *4)) (-5 *1 (-340 *2 *4 *3)) (-4 *3 (-322 *4)))) (-3845 (*1 *2 *3) (-12 (-4 *4 (-342)) (-4 *2 (-322 *4)) (-5 *1 (-340 *3 *4 *2)) (-4 *3 (-322 *4)))))
+(-10 -7 (-15 -3845 (|#3| |#1|)) (-15 -3845 (|#1| |#3|)))
+((-1315 (((-112) $) 51)) (-2729 (((-809 (-892)) $) 21) (((-892) $) 52)) (-2964 (((-3 $ "failed") $) 16)) (-3059 (($) 9)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 93)) (-3189 (((-3 (-747) "failed") $ $) 71) (((-747) $) 60)) (-3455 (($ $ (-747)) NIL) (($ $) 8)) (-2950 (($) 44)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) 34)) (-2343 (((-3 $ "failed") $) 38) (($ $) 37)))
+(((-341 |#1|) (-10 -8 (-15 -2729 ((-892) |#1|)) (-15 -3189 ((-747) |#1|)) (-15 -1315 ((-112) |#1|)) (-15 -2950 (|#1|)) (-15 -3499 ((-3 (-1225 |#1|) "failed") (-665 |#1|))) (-15 -2343 (|#1| |#1|)) (-15 -3455 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -3059 (|#1|)) (-15 -2964 ((-3 |#1| "failed") |#1|)) (-15 -3189 ((-3 (-747) "failed") |#1| |#1|)) (-15 -2729 ((-809 (-892)) |#1|)) (-15 -2343 ((-3 |#1| "failed") |#1|)) (-15 -2994 ((-1138 |#1|) (-1138 |#1|) (-1138 |#1|)))) (-342)) (T -341))
+NIL
+(-10 -8 (-15 -2729 ((-892) |#1|)) (-15 -3189 ((-747) |#1|)) (-15 -1315 ((-112) |#1|)) (-15 -2950 (|#1|)) (-15 -3499 ((-3 (-1225 |#1|) "failed") (-665 |#1|))) (-15 -2343 (|#1| |#1|)) (-15 -3455 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -3059 (|#1|)) (-15 -2964 ((-3 |#1| "failed") |#1|)) (-15 -3189 ((-3 (-747) "failed") |#1| |#1|)) (-15 -2729 ((-809 (-892)) |#1|)) (-15 -2343 ((-3 |#1| "failed") |#1|)) (-15 -2994 ((-1138 |#1|) (-1138 |#1|) (-1138 |#1|))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-1597 (((-1152 (-892) (-747)) (-549)) 90)) (-2416 (((-3 $ "failed") $ $) 19)) (-3239 (($ $) 70)) (-2620 (((-411 $) $) 69)) (-2680 (((-112) $ $) 57)) (-3614 (((-747)) 100)) (-3034 (($) 17 T CONST)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) 84)) (-2091 (($ $ $) 53)) (-2612 (((-3 $ "failed") $) 32)) (-3237 (($) 103)) (-2065 (($ $ $) 54)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 49)) (-1545 (($) 88)) (-1315 (((-112) $) 87)) (-3517 (($ $) 76) (($ $ (-747)) 75)) (-1464 (((-112) $) 68)) (-2729 (((-809 (-892)) $) 78) (((-892) $) 85)) (-2297 (((-112) $) 30)) (-2964 (((-3 $ "failed") $) 99)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-3309 (((-892) $) 102)) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-1990 (($ $) 67)) (-3059 (($) 98 T CONST)) (-3494 (($ (-892)) 101)) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) 91)) (-2119 (((-411 $) $) 71)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2040 (((-3 $ "failed") $ $) 40)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-1335 (((-747) $) 56)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 55)) (-3189 (((-3 (-747) "failed") $ $) 77) (((-747) $) 86)) (-3455 (($ $ (-747)) 96) (($ $) 94)) (-2950 (($) 89)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) 92)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63)) (-2343 (((-3 $ "failed") $) 79) (($ $) 93)) (-2371 (((-747)) 28)) (-2441 (((-112) $ $) 37)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ (-747)) 97) (($ $) 95)) (-2387 (((-112) $ $) 6)) (-2511 (($ $ $) 62)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64)))
(((-342) (-138)) (T -342))
-((-2210 (*1 *1 *1) (-4 *1 (-342))) (-4186 (*1 *2 *3) (|partial| -12 (-5 *3 (-665 *1)) (-4 *1 (-342)) (-5 *2 (-1226 *1)))) (-1762 (*1 *2) (-12 (-4 *1 (-342)) (-5 *2 (-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))))) (-3062 (*1 *2 *3) (-12 (-4 *1 (-342)) (-5 *3 (-549)) (-5 *2 (-1153 (-892) (-747))))) (-3170 (*1 *1) (-4 *1 (-342))) (-2405 (*1 *1) (-4 *1 (-342))) (-2288 (*1 *2 *1) (-12 (-4 *1 (-342)) (-5 *2 (-112)))) (-3914 (*1 *2 *1) (-12 (-4 *1 (-342)) (-5 *2 (-747)))) (-2088 (*1 *2 *1) (-12 (-4 *1 (-342)) (-5 *2 (-892)))) (-2523 (*1 *2) (-12 (-4 *1 (-342)) (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
-(-13 (-395) (-361) (-1118) (-227) (-10 -8 (-15 -2210 ($ $)) (-15 -4186 ((-3 (-1226 $) "failed") (-665 $))) (-15 -1762 ((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549)))))) (-15 -3062 ((-1153 (-892) (-747)) (-549))) (-15 -3170 ($)) (-15 -2405 ($)) (-15 -2288 ((-112) $)) (-15 -3914 ((-747) $)) (-15 -2088 ((-892) $)) (-15 -2523 ((-3 "prime" "polynomial" "normal" "cyclic")))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-143) . T) ((-593 (-834)) . T) ((-170) . T) ((-227) . T) ((-237) . T) ((-283) . T) ((-300) . T) ((-356) . T) ((-395) . T) ((-361) . T) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 $) . T) ((-703) . T) ((-891) . T) ((-1024 #0#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1118) . T) ((-1184) . T))
-((-1784 (((-2 (|:| -1949 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) |#1|) 53)) (-1613 (((-2 (|:| -1949 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|)))) 51)))
-(((-343 |#1| |#2| |#3|) (-10 -7 (-15 -1613 ((-2 (|:| -1949 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))))) (-15 -1784 ((-2 (|:| -1949 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) |#1|))) (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $)))) (-1202 |#1|) (-402 |#1| |#2|)) (T -343))
-((-1784 (*1 *2 *3) (-12 (-4 *3 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $))))) (-4 *4 (-1202 *3)) (-5 *2 (-2 (|:| -1949 (-665 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-665 *3)))) (-5 *1 (-343 *3 *4 *5)) (-4 *5 (-402 *3 *4)))) (-1613 (*1 *2) (-12 (-4 *3 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $))))) (-4 *4 (-1202 *3)) (-5 *2 (-2 (|:| -1949 (-665 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-665 *3)))) (-5 *1 (-343 *3 *4 *5)) (-4 *5 (-402 *3 *4)))))
-(-10 -7 (-15 -1613 ((-2 (|:| -1949 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))))) (-15 -1784 ((-2 (|:| -1949 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) |#1|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2044 (((-112) $) NIL)) (-3214 (((-747)) NIL)) (-2906 (((-881 |#1|) $) NIL) (($ $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-3062 (((-1153 (-892) (-747)) (-549)) NIL (|has| (-881 |#1|) (-361)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3223 (((-747)) NIL)) (-3866 (((-112) $ $) NIL)) (-3614 (((-747)) NIL (|has| (-881 |#1|) (-361)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-881 |#1|) "failed") $) NIL)) (-2659 (((-881 |#1|) $) NIL)) (-3492 (($ (-1226 (-881 |#1|))) NIL)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-881 |#1|) (-361)))) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) NIL (|has| (-881 |#1|) (-361)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-2405 (($) NIL (|has| (-881 |#1|) (-361)))) (-2288 (((-112) $) NIL (|has| (-881 |#1|) (-361)))) (-3165 (($ $ (-747)) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361)))) (($ $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-1420 (((-112) $) NIL)) (-2088 (((-892) $) NIL (|has| (-881 |#1|) (-361))) (((-809 (-892)) $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2675 (((-112) $) NIL)) (-1973 (($) NIL (|has| (-881 |#1|) (-361)))) (-4091 (((-112) $) NIL (|has| (-881 |#1|) (-361)))) (-3630 (((-881 |#1|) $) NIL) (($ $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-1681 (((-3 $ "failed") $) NIL (|has| (-881 |#1|) (-361)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3788 (((-1139 (-881 |#1|)) $) NIL) (((-1139 $) $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-1881 (((-892) $) NIL (|has| (-881 |#1|) (-361)))) (-3318 (((-1139 (-881 |#1|)) $) NIL (|has| (-881 |#1|) (-361)))) (-1983 (((-1139 (-881 |#1|)) $) NIL (|has| (-881 |#1|) (-361))) (((-3 (-1139 (-881 |#1|)) "failed") $ $) NIL (|has| (-881 |#1|) (-361)))) (-3719 (($ $ (-1139 (-881 |#1|))) NIL (|has| (-881 |#1|) (-361)))) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL (|has| (-881 |#1|) (-361)) CONST)) (-3493 (($ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-3980 (((-112) $) NIL)) (-3990 (((-1087) $) NIL)) (-1619 (((-1226 (-621 (-2 (|:| -4161 (-881 |#1|)) (|:| -3493 (-1087)))))) NIL)) (-3665 (((-665 (-881 |#1|))) NIL)) (-4248 (($) NIL (|has| (-881 |#1|) (-361)))) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) NIL (|has| (-881 |#1|) (-361)))) (-2121 (((-411 $) $) NIL)) (-3049 (((-809 (-892))) NIL) (((-892)) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3914 (((-747) $) NIL (|has| (-881 |#1|) (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2985 (((-133)) NIL)) (-3456 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-3701 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-2815 (((-1139 (-881 |#1|))) NIL)) (-3170 (($) NIL (|has| (-881 |#1|) (-361)))) (-1544 (($) NIL (|has| (-881 |#1|) (-361)))) (-4263 (((-1226 (-881 |#1|)) $) NIL) (((-665 (-881 |#1|)) (-1226 $)) NIL)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (|has| (-881 |#1|) (-361)))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-881 |#1|)) NIL)) (-2210 (($ $) NIL (|has| (-881 |#1|) (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2082 (((-747)) NIL)) (-1949 (((-1226 $)) NIL) (((-1226 $) (-892)) NIL)) (-1498 (((-112) $ $) NIL)) (-1606 (((-112) $) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1933 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-1702 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ $) NIL) (($ $ (-881 |#1|)) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ (-881 |#1|)) NIL) (($ (-881 |#1|) $) NIL)))
-(((-344 |#1| |#2|) (-13 (-322 (-881 |#1|)) (-10 -7 (-15 -1619 ((-1226 (-621 (-2 (|:| -4161 (-881 |#1|)) (|:| -3493 (-1087))))))) (-15 -3665 ((-665 (-881 |#1|)))) (-15 -3223 ((-747))))) (-892) (-892)) (T -344))
-((-1619 (*1 *2) (-12 (-5 *2 (-1226 (-621 (-2 (|:| -4161 (-881 *3)) (|:| -3493 (-1087)))))) (-5 *1 (-344 *3 *4)) (-14 *3 (-892)) (-14 *4 (-892)))) (-3665 (*1 *2) (-12 (-5 *2 (-665 (-881 *3))) (-5 *1 (-344 *3 *4)) (-14 *3 (-892)) (-14 *4 (-892)))) (-3223 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-344 *3 *4)) (-14 *3 (-892)) (-14 *4 (-892)))))
-(-13 (-322 (-881 |#1|)) (-10 -7 (-15 -1619 ((-1226 (-621 (-2 (|:| -4161 (-881 |#1|)) (|:| -3493 (-1087))))))) (-15 -3665 ((-665 (-881 |#1|)))) (-15 -3223 ((-747)))))
-((-3834 (((-112) $ $) 61)) (-1763 (((-112) $) 74)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2044 (((-112) $) NIL)) (-3214 (((-747)) NIL)) (-2906 ((|#1| $) 92) (($ $ (-892)) 90 (|has| |#1| (-361)))) (-3062 (((-1153 (-892) (-747)) (-549)) 148 (|has| |#1| (-361)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3223 (((-747)) 89)) (-3866 (((-112) $ $) NIL)) (-3614 (((-747)) 162 (|has| |#1| (-361)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) 112)) (-2659 ((|#1| $) 91)) (-3492 (($ (-1226 |#1|)) 58)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) 188 (|has| |#1| (-361)))) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) 158 (|has| |#1| (-361)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-2405 (($) 149 (|has| |#1| (-361)))) (-2288 (((-112) $) NIL (|has| |#1| (-361)))) (-3165 (($ $ (-747)) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))) (($ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-1420 (((-112) $) NIL)) (-2088 (((-892) $) NIL (|has| |#1| (-361))) (((-809 (-892)) $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2675 (((-112) $) NIL)) (-1973 (($) 98 (|has| |#1| (-361)))) (-4091 (((-112) $) 175 (|has| |#1| (-361)))) (-3630 ((|#1| $) 94) (($ $ (-892)) 93 (|has| |#1| (-361)))) (-1681 (((-3 $ "failed") $) NIL (|has| |#1| (-361)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3788 (((-1139 |#1|) $) 189) (((-1139 $) $ (-892)) NIL (|has| |#1| (-361)))) (-1881 (((-892) $) 134 (|has| |#1| (-361)))) (-3318 (((-1139 |#1|) $) 73 (|has| |#1| (-361)))) (-1983 (((-1139 |#1|) $) 70 (|has| |#1| (-361))) (((-3 (-1139 |#1|) "failed") $ $) 82 (|has| |#1| (-361)))) (-3719 (($ $ (-1139 |#1|)) 69 (|has| |#1| (-361)))) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 192)) (-3060 (($) NIL (|has| |#1| (-361)) CONST)) (-3493 (($ (-892)) 137 (|has| |#1| (-361)))) (-3980 (((-112) $) 108)) (-3990 (((-1087) $) NIL)) (-1619 (((-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087)))))) 83)) (-3665 (((-665 |#1|)) 87)) (-4248 (($) 96 (|has| |#1| (-361)))) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) 150 (|has| |#1| (-361)))) (-2121 (((-411 $) $) NIL)) (-3049 (((-809 (-892))) NIL) (((-892)) 151)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3914 (((-747) $) NIL (|has| |#1| (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2985 (((-133)) NIL)) (-3456 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-3701 (((-809 (-892)) $) NIL) (((-892) $) 62)) (-2815 (((-1139 |#1|)) 152)) (-3170 (($) 133 (|has| |#1| (-361)))) (-1544 (($) NIL (|has| |#1| (-361)))) (-4263 (((-1226 |#1|) $) 106) (((-665 |#1|) (-1226 $)) NIL)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (|has| |#1| (-361)))) (-3846 (((-834) $) 124) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ |#1|) 57)) (-2210 (($ $) NIL (|has| |#1| (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2082 (((-747)) 156)) (-1949 (((-1226 $)) 172) (((-1226 $) (-892)) 101)) (-1498 (((-112) $ $) NIL)) (-1606 (((-112) $) NIL)) (-3276 (($) 117 T CONST)) (-3287 (($) 33 T CONST)) (-1933 (($ $) 107 (|has| |#1| (-361))) (($ $ (-747)) 99 (|has| |#1| (-361)))) (-1702 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-2389 (((-112) $ $) 183)) (-2513 (($ $ $) 104) (($ $ |#1|) 105)) (-2500 (($ $) 177) (($ $ $) 181)) (-2486 (($ $ $) 179)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) 138)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 186) (($ $ $) 142) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 103)))
-(((-345 |#1| |#2|) (-13 (-322 |#1|) (-10 -7 (-15 -1619 ((-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))))) (-15 -3665 ((-665 |#1|))) (-15 -3223 ((-747))))) (-342) (-3 (-1139 |#1|) (-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))))) (T -345))
-((-1619 (*1 *2) (-12 (-5 *2 (-1226 (-621 (-2 (|:| -4161 *3) (|:| -3493 (-1087)))))) (-5 *1 (-345 *3 *4)) (-4 *3 (-342)) (-14 *4 (-3 (-1139 *3) *2)))) (-3665 (*1 *2) (-12 (-5 *2 (-665 *3)) (-5 *1 (-345 *3 *4)) (-4 *3 (-342)) (-14 *4 (-3 (-1139 *3) (-1226 (-621 (-2 (|:| -4161 *3) (|:| -3493 (-1087))))))))) (-3223 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-345 *3 *4)) (-4 *3 (-342)) (-14 *4 (-3 (-1139 *3) (-1226 (-621 (-2 (|:| -4161 *3) (|:| -3493 (-1087))))))))))
-(-13 (-322 |#1|) (-10 -7 (-15 -1619 ((-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))))) (-15 -3665 ((-665 |#1|))) (-15 -3223 ((-747)))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2044 (((-112) $) NIL)) (-3214 (((-747)) NIL)) (-2906 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-3062 (((-1153 (-892) (-747)) (-549)) NIL (|has| |#1| (-361)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3223 (((-747)) NIL)) (-3866 (((-112) $ $) NIL)) (-3614 (((-747)) NIL (|has| |#1| (-361)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) NIL)) (-2659 ((|#1| $) NIL)) (-3492 (($ (-1226 |#1|)) NIL)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-361)))) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) NIL (|has| |#1| (-361)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-2405 (($) NIL (|has| |#1| (-361)))) (-2288 (((-112) $) NIL (|has| |#1| (-361)))) (-3165 (($ $ (-747)) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))) (($ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-1420 (((-112) $) NIL)) (-2088 (((-892) $) NIL (|has| |#1| (-361))) (((-809 (-892)) $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2675 (((-112) $) NIL)) (-1973 (($) NIL (|has| |#1| (-361)))) (-4091 (((-112) $) NIL (|has| |#1| (-361)))) (-3630 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-1681 (((-3 $ "failed") $) NIL (|has| |#1| (-361)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3788 (((-1139 |#1|) $) NIL) (((-1139 $) $ (-892)) NIL (|has| |#1| (-361)))) (-1881 (((-892) $) NIL (|has| |#1| (-361)))) (-3318 (((-1139 |#1|) $) NIL (|has| |#1| (-361)))) (-1983 (((-1139 |#1|) $) NIL (|has| |#1| (-361))) (((-3 (-1139 |#1|) "failed") $ $) NIL (|has| |#1| (-361)))) (-3719 (($ $ (-1139 |#1|)) NIL (|has| |#1| (-361)))) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL (|has| |#1| (-361)) CONST)) (-3493 (($ (-892)) NIL (|has| |#1| (-361)))) (-3980 (((-112) $) NIL)) (-3990 (((-1087) $) NIL)) (-1619 (((-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087)))))) NIL)) (-3665 (((-665 |#1|)) NIL)) (-4248 (($) NIL (|has| |#1| (-361)))) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) NIL (|has| |#1| (-361)))) (-2121 (((-411 $) $) NIL)) (-3049 (((-809 (-892))) NIL) (((-892)) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3914 (((-747) $) NIL (|has| |#1| (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2985 (((-133)) NIL)) (-3456 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-3701 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-2815 (((-1139 |#1|)) NIL)) (-3170 (($) NIL (|has| |#1| (-361)))) (-1544 (($) NIL (|has| |#1| (-361)))) (-4263 (((-1226 |#1|) $) NIL) (((-665 |#1|) (-1226 $)) NIL)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (|has| |#1| (-361)))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ |#1|) NIL)) (-2210 (($ $) NIL (|has| |#1| (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2082 (((-747)) NIL)) (-1949 (((-1226 $)) NIL) (((-1226 $) (-892)) NIL)) (-1498 (((-112) $ $) NIL)) (-1606 (((-112) $) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1933 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-1702 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-346 |#1| |#2|) (-13 (-322 |#1|) (-10 -7 (-15 -1619 ((-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))))) (-15 -3665 ((-665 |#1|))) (-15 -3223 ((-747))))) (-342) (-892)) (T -346))
-((-1619 (*1 *2) (-12 (-5 *2 (-1226 (-621 (-2 (|:| -4161 *3) (|:| -3493 (-1087)))))) (-5 *1 (-346 *3 *4)) (-4 *3 (-342)) (-14 *4 (-892)))) (-3665 (*1 *2) (-12 (-5 *2 (-665 *3)) (-5 *1 (-346 *3 *4)) (-4 *3 (-342)) (-14 *4 (-892)))) (-3223 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-346 *3 *4)) (-4 *3 (-342)) (-14 *4 (-892)))))
-(-13 (-322 |#1|) (-10 -7 (-15 -1619 ((-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))))) (-15 -3665 ((-665 |#1|))) (-15 -3223 ((-747)))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2044 (((-112) $) NIL)) (-3214 (((-747)) NIL)) (-2906 (((-881 |#1|) $) NIL) (($ $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-3062 (((-1153 (-892) (-747)) (-549)) NIL (|has| (-881 |#1|) (-361)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3866 (((-112) $ $) NIL)) (-3614 (((-747)) NIL (|has| (-881 |#1|) (-361)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-881 |#1|) "failed") $) NIL)) (-2659 (((-881 |#1|) $) NIL)) (-3492 (($ (-1226 (-881 |#1|))) NIL)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-881 |#1|) (-361)))) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) NIL (|has| (-881 |#1|) (-361)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-2405 (($) NIL (|has| (-881 |#1|) (-361)))) (-2288 (((-112) $) NIL (|has| (-881 |#1|) (-361)))) (-3165 (($ $ (-747)) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361)))) (($ $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-1420 (((-112) $) NIL)) (-2088 (((-892) $) NIL (|has| (-881 |#1|) (-361))) (((-809 (-892)) $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2675 (((-112) $) NIL)) (-1973 (($) NIL (|has| (-881 |#1|) (-361)))) (-4091 (((-112) $) NIL (|has| (-881 |#1|) (-361)))) (-3630 (((-881 |#1|) $) NIL) (($ $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-1681 (((-3 $ "failed") $) NIL (|has| (-881 |#1|) (-361)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3788 (((-1139 (-881 |#1|)) $) NIL) (((-1139 $) $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-1881 (((-892) $) NIL (|has| (-881 |#1|) (-361)))) (-3318 (((-1139 (-881 |#1|)) $) NIL (|has| (-881 |#1|) (-361)))) (-1983 (((-1139 (-881 |#1|)) $) NIL (|has| (-881 |#1|) (-361))) (((-3 (-1139 (-881 |#1|)) "failed") $ $) NIL (|has| (-881 |#1|) (-361)))) (-3719 (($ $ (-1139 (-881 |#1|))) NIL (|has| (-881 |#1|) (-361)))) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL (|has| (-881 |#1|) (-361)) CONST)) (-3493 (($ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-3980 (((-112) $) NIL)) (-3990 (((-1087) $) NIL)) (-4248 (($) NIL (|has| (-881 |#1|) (-361)))) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) NIL (|has| (-881 |#1|) (-361)))) (-2121 (((-411 $) $) NIL)) (-3049 (((-809 (-892))) NIL) (((-892)) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3914 (((-747) $) NIL (|has| (-881 |#1|) (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2985 (((-133)) NIL)) (-3456 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-3701 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-2815 (((-1139 (-881 |#1|))) NIL)) (-3170 (($) NIL (|has| (-881 |#1|) (-361)))) (-1544 (($) NIL (|has| (-881 |#1|) (-361)))) (-4263 (((-1226 (-881 |#1|)) $) NIL) (((-665 (-881 |#1|)) (-1226 $)) NIL)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (|has| (-881 |#1|) (-361)))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-881 |#1|)) NIL)) (-2210 (($ $) NIL (|has| (-881 |#1|) (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2082 (((-747)) NIL)) (-1949 (((-1226 $)) NIL) (((-1226 $) (-892)) NIL)) (-1498 (((-112) $ $) NIL)) (-1606 (((-112) $) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1933 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-1702 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ $) NIL) (($ $ (-881 |#1|)) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ (-881 |#1|)) NIL) (($ (-881 |#1|) $) NIL)))
+((-2343 (*1 *1 *1) (-4 *1 (-342))) (-3499 (*1 *2 *3) (|partial| -12 (-5 *3 (-665 *1)) (-4 *1 (-342)) (-5 *2 (-1225 *1)))) (-3126 (*1 *2) (-12 (-4 *1 (-342)) (-5 *2 (-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))))) (-1597 (*1 *2 *3) (-12 (-4 *1 (-342)) (-5 *3 (-549)) (-5 *2 (-1152 (-892) (-747))))) (-2950 (*1 *1) (-4 *1 (-342))) (-1545 (*1 *1) (-4 *1 (-342))) (-1315 (*1 *2 *1) (-12 (-4 *1 (-342)) (-5 *2 (-112)))) (-3189 (*1 *2 *1) (-12 (-4 *1 (-342)) (-5 *2 (-747)))) (-2729 (*1 *2 *1) (-12 (-4 *1 (-342)) (-5 *2 (-892)))) (-3024 (*1 *2) (-12 (-4 *1 (-342)) (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
+(-13 (-395) (-361) (-1117) (-227) (-10 -8 (-15 -2343 ($ $)) (-15 -3499 ((-3 (-1225 $) "failed") (-665 $))) (-15 -3126 ((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549)))))) (-15 -1597 ((-1152 (-892) (-747)) (-549))) (-15 -2950 ($)) (-15 -1545 ($)) (-15 -1315 ((-112) $)) (-15 -3189 ((-747) $)) (-15 -2729 ((-892) $)) (-15 -3024 ((-3 "prime" "polynomial" "normal" "cyclic")))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-143) . T) ((-593 (-834)) . T) ((-170) . T) ((-227) . T) ((-237) . T) ((-283) . T) ((-300) . T) ((-356) . T) ((-395) . T) ((-361) . T) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 $) . T) ((-703) . T) ((-891) . T) ((-1024 #0#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1117) . T) ((-1183) . T))
+((-2720 (((-2 (|:| -2619 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) |#1|) 53)) (-1311 (((-2 (|:| -2619 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|)))) 51)))
+(((-343 |#1| |#2| |#3|) (-10 -7 (-15 -1311 ((-2 (|:| -2619 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))))) (-15 -2720 ((-2 (|:| -2619 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) |#1|))) (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $)))) (-1201 |#1|) (-402 |#1| |#2|)) (T -343))
+((-2720 (*1 *2 *3) (-12 (-4 *3 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $))))) (-4 *4 (-1201 *3)) (-5 *2 (-2 (|:| -2619 (-665 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-665 *3)))) (-5 *1 (-343 *3 *4 *5)) (-4 *5 (-402 *3 *4)))) (-1311 (*1 *2) (-12 (-4 *3 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $))))) (-4 *4 (-1201 *3)) (-5 *2 (-2 (|:| -2619 (-665 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-665 *3)))) (-5 *1 (-343 *3 *4 *5)) (-4 *5 (-402 *3 *4)))))
+(-10 -7 (-15 -1311 ((-2 (|:| -2619 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))))) (-15 -2720 ((-2 (|:| -2619 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) |#1|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2638 (((-112) $) NIL)) (-2464 (((-747)) NIL)) (-2904 (((-881 |#1|) $) NIL) (($ $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-1597 (((-1152 (-892) (-747)) (-549)) NIL (|has| (-881 |#1|) (-361)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-4059 (((-747)) NIL)) (-2680 (((-112) $ $) NIL)) (-3614 (((-747)) NIL (|has| (-881 |#1|) (-361)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-881 |#1|) "failed") $) NIL)) (-2657 (((-881 |#1|) $) NIL)) (-2397 (($ (-1225 (-881 |#1|))) NIL)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-881 |#1|) (-361)))) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) NIL (|has| (-881 |#1|) (-361)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1545 (($) NIL (|has| (-881 |#1|) (-361)))) (-1315 (((-112) $) NIL (|has| (-881 |#1|) (-361)))) (-3517 (($ $ (-747)) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361)))) (($ $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-1464 (((-112) $) NIL)) (-2729 (((-892) $) NIL (|has| (-881 |#1|) (-361))) (((-809 (-892)) $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2297 (((-112) $) NIL)) (-1728 (($) NIL (|has| (-881 |#1|) (-361)))) (-4031 (((-112) $) NIL (|has| (-881 |#1|) (-361)))) (-2469 (((-881 |#1|) $) NIL) (($ $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-2964 (((-3 $ "failed") $) NIL (|has| (-881 |#1|) (-361)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3514 (((-1138 (-881 |#1|)) $) NIL) (((-1138 $) $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-3309 (((-892) $) NIL (|has| (-881 |#1|) (-361)))) (-4021 (((-1138 (-881 |#1|)) $) NIL (|has| (-881 |#1|) (-361)))) (-1298 (((-1138 (-881 |#1|)) $) NIL (|has| (-881 |#1|) (-361))) (((-3 (-1138 (-881 |#1|)) "failed") $ $) NIL (|has| (-881 |#1|) (-361)))) (-3098 (($ $ (-1138 (-881 |#1|))) NIL (|has| (-881 |#1|) (-361)))) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL (|has| (-881 |#1|) (-361)) CONST)) (-3494 (($ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-2165 (((-112) $) NIL)) (-3988 (((-1086) $) NIL)) (-3731 (((-1225 (-621 (-2 (|:| -4160 (-881 |#1|)) (|:| -3494 (-1086)))))) NIL)) (-2189 (((-665 (-881 |#1|))) NIL)) (-4247 (($) NIL (|has| (-881 |#1|) (-361)))) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) NIL (|has| (-881 |#1|) (-361)))) (-2119 (((-411 $) $) NIL)) (-1485 (((-809 (-892))) NIL) (((-892)) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3189 (((-747) $) NIL (|has| (-881 |#1|) (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2260 (((-133)) NIL)) (-3455 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-3977 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-1262 (((-1138 (-881 |#1|))) NIL)) (-2950 (($) NIL (|has| (-881 |#1|) (-361)))) (-2578 (($) NIL (|has| (-881 |#1|) (-361)))) (-1981 (((-1225 (-881 |#1|)) $) NIL) (((-665 (-881 |#1|)) (-1225 $)) NIL)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (|has| (-881 |#1|) (-361)))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-881 |#1|)) NIL)) (-2343 (($ $) NIL (|has| (-881 |#1|) (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2371 (((-747)) NIL)) (-2619 (((-1225 $)) NIL) (((-1225 $) (-892)) NIL)) (-2441 (((-112) $ $) NIL)) (-1993 (((-112) $) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-3495 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-1699 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ $) NIL) (($ $ (-881 |#1|)) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ (-881 |#1|)) NIL) (($ (-881 |#1|) $) NIL)))
+(((-344 |#1| |#2|) (-13 (-322 (-881 |#1|)) (-10 -7 (-15 -3731 ((-1225 (-621 (-2 (|:| -4160 (-881 |#1|)) (|:| -3494 (-1086))))))) (-15 -2189 ((-665 (-881 |#1|)))) (-15 -4059 ((-747))))) (-892) (-892)) (T -344))
+((-3731 (*1 *2) (-12 (-5 *2 (-1225 (-621 (-2 (|:| -4160 (-881 *3)) (|:| -3494 (-1086)))))) (-5 *1 (-344 *3 *4)) (-14 *3 (-892)) (-14 *4 (-892)))) (-2189 (*1 *2) (-12 (-5 *2 (-665 (-881 *3))) (-5 *1 (-344 *3 *4)) (-14 *3 (-892)) (-14 *4 (-892)))) (-4059 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-344 *3 *4)) (-14 *3 (-892)) (-14 *4 (-892)))))
+(-13 (-322 (-881 |#1|)) (-10 -7 (-15 -3731 ((-1225 (-621 (-2 (|:| -4160 (-881 |#1|)) (|:| -3494 (-1086))))))) (-15 -2189 ((-665 (-881 |#1|)))) (-15 -4059 ((-747)))))
+((-3832 (((-112) $ $) 61)) (-3210 (((-112) $) 74)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2638 (((-112) $) NIL)) (-2464 (((-747)) NIL)) (-2904 ((|#1| $) 92) (($ $ (-892)) 90 (|has| |#1| (-361)))) (-1597 (((-1152 (-892) (-747)) (-549)) 148 (|has| |#1| (-361)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-4059 (((-747)) 89)) (-2680 (((-112) $ $) NIL)) (-3614 (((-747)) 162 (|has| |#1| (-361)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) 112)) (-2657 ((|#1| $) 91)) (-2397 (($ (-1225 |#1|)) 58)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) 188 (|has| |#1| (-361)))) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) 158 (|has| |#1| (-361)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1545 (($) 149 (|has| |#1| (-361)))) (-1315 (((-112) $) NIL (|has| |#1| (-361)))) (-3517 (($ $ (-747)) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))) (($ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-1464 (((-112) $) NIL)) (-2729 (((-892) $) NIL (|has| |#1| (-361))) (((-809 (-892)) $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2297 (((-112) $) NIL)) (-1728 (($) 98 (|has| |#1| (-361)))) (-4031 (((-112) $) 175 (|has| |#1| (-361)))) (-2469 ((|#1| $) 94) (($ $ (-892)) 93 (|has| |#1| (-361)))) (-2964 (((-3 $ "failed") $) NIL (|has| |#1| (-361)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3514 (((-1138 |#1|) $) 189) (((-1138 $) $ (-892)) NIL (|has| |#1| (-361)))) (-3309 (((-892) $) 134 (|has| |#1| (-361)))) (-4021 (((-1138 |#1|) $) 73 (|has| |#1| (-361)))) (-1298 (((-1138 |#1|) $) 70 (|has| |#1| (-361))) (((-3 (-1138 |#1|) "failed") $ $) 82 (|has| |#1| (-361)))) (-3098 (($ $ (-1138 |#1|)) 69 (|has| |#1| (-361)))) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 192)) (-3059 (($) NIL (|has| |#1| (-361)) CONST)) (-3494 (($ (-892)) 137 (|has| |#1| (-361)))) (-2165 (((-112) $) 108)) (-3988 (((-1086) $) NIL)) (-3731 (((-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086)))))) 83)) (-2189 (((-665 |#1|)) 87)) (-4247 (($) 96 (|has| |#1| (-361)))) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) 150 (|has| |#1| (-361)))) (-2119 (((-411 $) $) NIL)) (-1485 (((-809 (-892))) NIL) (((-892)) 151)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3189 (((-747) $) NIL (|has| |#1| (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2260 (((-133)) NIL)) (-3455 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-3977 (((-809 (-892)) $) NIL) (((-892) $) 62)) (-1262 (((-1138 |#1|)) 152)) (-2950 (($) 133 (|has| |#1| (-361)))) (-2578 (($) NIL (|has| |#1| (-361)))) (-1981 (((-1225 |#1|) $) 106) (((-665 |#1|) (-1225 $)) NIL)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (|has| |#1| (-361)))) (-3845 (((-834) $) 124) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ |#1|) 57)) (-2343 (($ $) NIL (|has| |#1| (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2371 (((-747)) 156)) (-2619 (((-1225 $)) 172) (((-1225 $) (-892)) 101)) (-2441 (((-112) $ $) NIL)) (-1993 (((-112) $) NIL)) (-3274 (($) 117 T CONST)) (-3286 (($) 33 T CONST)) (-3495 (($ $) 107 (|has| |#1| (-361))) (($ $ (-747)) 99 (|has| |#1| (-361)))) (-1699 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-2387 (((-112) $ $) 183)) (-2511 (($ $ $) 104) (($ $ |#1|) 105)) (-2498 (($ $) 177) (($ $ $) 181)) (-2484 (($ $ $) 179)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) 138)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 186) (($ $ $) 142) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 103)))
+(((-345 |#1| |#2|) (-13 (-322 |#1|) (-10 -7 (-15 -3731 ((-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))))) (-15 -2189 ((-665 |#1|))) (-15 -4059 ((-747))))) (-342) (-3 (-1138 |#1|) (-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))))) (T -345))
+((-3731 (*1 *2) (-12 (-5 *2 (-1225 (-621 (-2 (|:| -4160 *3) (|:| -3494 (-1086)))))) (-5 *1 (-345 *3 *4)) (-4 *3 (-342)) (-14 *4 (-3 (-1138 *3) *2)))) (-2189 (*1 *2) (-12 (-5 *2 (-665 *3)) (-5 *1 (-345 *3 *4)) (-4 *3 (-342)) (-14 *4 (-3 (-1138 *3) (-1225 (-621 (-2 (|:| -4160 *3) (|:| -3494 (-1086))))))))) (-4059 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-345 *3 *4)) (-4 *3 (-342)) (-14 *4 (-3 (-1138 *3) (-1225 (-621 (-2 (|:| -4160 *3) (|:| -3494 (-1086))))))))))
+(-13 (-322 |#1|) (-10 -7 (-15 -3731 ((-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))))) (-15 -2189 ((-665 |#1|))) (-15 -4059 ((-747)))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2638 (((-112) $) NIL)) (-2464 (((-747)) NIL)) (-2904 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-1597 (((-1152 (-892) (-747)) (-549)) NIL (|has| |#1| (-361)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-4059 (((-747)) NIL)) (-2680 (((-112) $ $) NIL)) (-3614 (((-747)) NIL (|has| |#1| (-361)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) NIL)) (-2657 ((|#1| $) NIL)) (-2397 (($ (-1225 |#1|)) NIL)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-361)))) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) NIL (|has| |#1| (-361)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1545 (($) NIL (|has| |#1| (-361)))) (-1315 (((-112) $) NIL (|has| |#1| (-361)))) (-3517 (($ $ (-747)) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))) (($ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-1464 (((-112) $) NIL)) (-2729 (((-892) $) NIL (|has| |#1| (-361))) (((-809 (-892)) $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2297 (((-112) $) NIL)) (-1728 (($) NIL (|has| |#1| (-361)))) (-4031 (((-112) $) NIL (|has| |#1| (-361)))) (-2469 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-2964 (((-3 $ "failed") $) NIL (|has| |#1| (-361)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3514 (((-1138 |#1|) $) NIL) (((-1138 $) $ (-892)) NIL (|has| |#1| (-361)))) (-3309 (((-892) $) NIL (|has| |#1| (-361)))) (-4021 (((-1138 |#1|) $) NIL (|has| |#1| (-361)))) (-1298 (((-1138 |#1|) $) NIL (|has| |#1| (-361))) (((-3 (-1138 |#1|) "failed") $ $) NIL (|has| |#1| (-361)))) (-3098 (($ $ (-1138 |#1|)) NIL (|has| |#1| (-361)))) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL (|has| |#1| (-361)) CONST)) (-3494 (($ (-892)) NIL (|has| |#1| (-361)))) (-2165 (((-112) $) NIL)) (-3988 (((-1086) $) NIL)) (-3731 (((-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086)))))) NIL)) (-2189 (((-665 |#1|)) NIL)) (-4247 (($) NIL (|has| |#1| (-361)))) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) NIL (|has| |#1| (-361)))) (-2119 (((-411 $) $) NIL)) (-1485 (((-809 (-892))) NIL) (((-892)) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3189 (((-747) $) NIL (|has| |#1| (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2260 (((-133)) NIL)) (-3455 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-3977 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-1262 (((-1138 |#1|)) NIL)) (-2950 (($) NIL (|has| |#1| (-361)))) (-2578 (($) NIL (|has| |#1| (-361)))) (-1981 (((-1225 |#1|) $) NIL) (((-665 |#1|) (-1225 $)) NIL)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (|has| |#1| (-361)))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ |#1|) NIL)) (-2343 (($ $) NIL (|has| |#1| (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2371 (((-747)) NIL)) (-2619 (((-1225 $)) NIL) (((-1225 $) (-892)) NIL)) (-2441 (((-112) $ $) NIL)) (-1993 (((-112) $) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-3495 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-1699 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-346 |#1| |#2|) (-13 (-322 |#1|) (-10 -7 (-15 -3731 ((-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))))) (-15 -2189 ((-665 |#1|))) (-15 -4059 ((-747))))) (-342) (-892)) (T -346))
+((-3731 (*1 *2) (-12 (-5 *2 (-1225 (-621 (-2 (|:| -4160 *3) (|:| -3494 (-1086)))))) (-5 *1 (-346 *3 *4)) (-4 *3 (-342)) (-14 *4 (-892)))) (-2189 (*1 *2) (-12 (-5 *2 (-665 *3)) (-5 *1 (-346 *3 *4)) (-4 *3 (-342)) (-14 *4 (-892)))) (-4059 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-346 *3 *4)) (-4 *3 (-342)) (-14 *4 (-892)))))
+(-13 (-322 |#1|) (-10 -7 (-15 -3731 ((-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))))) (-15 -2189 ((-665 |#1|))) (-15 -4059 ((-747)))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2638 (((-112) $) NIL)) (-2464 (((-747)) NIL)) (-2904 (((-881 |#1|) $) NIL) (($ $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-1597 (((-1152 (-892) (-747)) (-549)) NIL (|has| (-881 |#1|) (-361)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2680 (((-112) $ $) NIL)) (-3614 (((-747)) NIL (|has| (-881 |#1|) (-361)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-881 |#1|) "failed") $) NIL)) (-2657 (((-881 |#1|) $) NIL)) (-2397 (($ (-1225 (-881 |#1|))) NIL)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-881 |#1|) (-361)))) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) NIL (|has| (-881 |#1|) (-361)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1545 (($) NIL (|has| (-881 |#1|) (-361)))) (-1315 (((-112) $) NIL (|has| (-881 |#1|) (-361)))) (-3517 (($ $ (-747)) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361)))) (($ $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-1464 (((-112) $) NIL)) (-2729 (((-892) $) NIL (|has| (-881 |#1|) (-361))) (((-809 (-892)) $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2297 (((-112) $) NIL)) (-1728 (($) NIL (|has| (-881 |#1|) (-361)))) (-4031 (((-112) $) NIL (|has| (-881 |#1|) (-361)))) (-2469 (((-881 |#1|) $) NIL) (($ $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-2964 (((-3 $ "failed") $) NIL (|has| (-881 |#1|) (-361)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3514 (((-1138 (-881 |#1|)) $) NIL) (((-1138 $) $ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-3309 (((-892) $) NIL (|has| (-881 |#1|) (-361)))) (-4021 (((-1138 (-881 |#1|)) $) NIL (|has| (-881 |#1|) (-361)))) (-1298 (((-1138 (-881 |#1|)) $) NIL (|has| (-881 |#1|) (-361))) (((-3 (-1138 (-881 |#1|)) "failed") $ $) NIL (|has| (-881 |#1|) (-361)))) (-3098 (($ $ (-1138 (-881 |#1|))) NIL (|has| (-881 |#1|) (-361)))) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL (|has| (-881 |#1|) (-361)) CONST)) (-3494 (($ (-892)) NIL (|has| (-881 |#1|) (-361)))) (-2165 (((-112) $) NIL)) (-3988 (((-1086) $) NIL)) (-4247 (($) NIL (|has| (-881 |#1|) (-361)))) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) NIL (|has| (-881 |#1|) (-361)))) (-2119 (((-411 $) $) NIL)) (-1485 (((-809 (-892))) NIL) (((-892)) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3189 (((-747) $) NIL (|has| (-881 |#1|) (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2260 (((-133)) NIL)) (-3455 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-3977 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-1262 (((-1138 (-881 |#1|))) NIL)) (-2950 (($) NIL (|has| (-881 |#1|) (-361)))) (-2578 (($) NIL (|has| (-881 |#1|) (-361)))) (-1981 (((-1225 (-881 |#1|)) $) NIL) (((-665 (-881 |#1|)) (-1225 $)) NIL)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (|has| (-881 |#1|) (-361)))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-881 |#1|)) NIL)) (-2343 (($ $) NIL (|has| (-881 |#1|) (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| (-881 |#1|) (-143)) (|has| (-881 |#1|) (-361))))) (-2371 (((-747)) NIL)) (-2619 (((-1225 $)) NIL) (((-1225 $) (-892)) NIL)) (-2441 (((-112) $ $) NIL)) (-1993 (((-112) $) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-3495 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-1699 (($ $) NIL (|has| (-881 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-881 |#1|) (-361)))) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ $) NIL) (($ $ (-881 |#1|)) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ (-881 |#1|)) NIL) (($ (-881 |#1|) $) NIL)))
(((-347 |#1| |#2|) (-322 (-881 |#1|)) (-892) (-892)) (T -347))
NIL
(-322 (-881 |#1|))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2044 (((-112) $) NIL)) (-3214 (((-747)) NIL)) (-2906 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-3062 (((-1153 (-892) (-747)) (-549)) 120 (|has| |#1| (-361)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3866 (((-112) $ $) NIL)) (-3614 (((-747)) 140 (|has| |#1| (-361)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) 93)) (-2659 ((|#1| $) 90)) (-3492 (($ (-1226 |#1|)) 85)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) 117 (|has| |#1| (-361)))) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) 82 (|has| |#1| (-361)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-2405 (($) 42 (|has| |#1| (-361)))) (-2288 (((-112) $) NIL (|has| |#1| (-361)))) (-3165 (($ $ (-747)) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))) (($ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-1420 (((-112) $) NIL)) (-2088 (((-892) $) NIL (|has| |#1| (-361))) (((-809 (-892)) $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2675 (((-112) $) NIL)) (-1973 (($) 121 (|has| |#1| (-361)))) (-4091 (((-112) $) 74 (|has| |#1| (-361)))) (-3630 ((|#1| $) 39) (($ $ (-892)) 43 (|has| |#1| (-361)))) (-1681 (((-3 $ "failed") $) NIL (|has| |#1| (-361)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3788 (((-1139 |#1|) $) 65) (((-1139 $) $ (-892)) NIL (|has| |#1| (-361)))) (-1881 (((-892) $) 97 (|has| |#1| (-361)))) (-3318 (((-1139 |#1|) $) NIL (|has| |#1| (-361)))) (-1983 (((-1139 |#1|) $) NIL (|has| |#1| (-361))) (((-3 (-1139 |#1|) "failed") $ $) NIL (|has| |#1| (-361)))) (-3719 (($ $ (-1139 |#1|)) NIL (|has| |#1| (-361)))) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL (|has| |#1| (-361)) CONST)) (-3493 (($ (-892)) 95 (|has| |#1| (-361)))) (-3980 (((-112) $) 142)) (-3990 (((-1087) $) NIL)) (-4248 (($) 36 (|has| |#1| (-361)))) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) 115 (|has| |#1| (-361)))) (-2121 (((-411 $) $) NIL)) (-3049 (((-809 (-892))) NIL) (((-892)) 139)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3914 (((-747) $) NIL (|has| |#1| (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2985 (((-133)) NIL)) (-3456 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-3701 (((-809 (-892)) $) NIL) (((-892) $) 59)) (-2815 (((-1139 |#1|)) 88)) (-3170 (($) 126 (|has| |#1| (-361)))) (-1544 (($) NIL (|has| |#1| (-361)))) (-4263 (((-1226 |#1|) $) 53) (((-665 |#1|) (-1226 $)) NIL)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (|has| |#1| (-361)))) (-3846 (((-834) $) 138) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ |#1|) 87)) (-2210 (($ $) NIL (|has| |#1| (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2082 (((-747)) 144)) (-1949 (((-1226 $)) 109) (((-1226 $) (-892)) 49)) (-1498 (((-112) $ $) NIL)) (-1606 (((-112) $) NIL)) (-3276 (($) 111 T CONST)) (-3287 (($) 32 T CONST)) (-1933 (($ $) 68 (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-1702 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-2389 (((-112) $ $) 107)) (-2513 (($ $ $) 99) (($ $ |#1|) 100)) (-2500 (($ $) 80) (($ $ $) 105)) (-2486 (($ $ $) 103)) (** (($ $ (-892)) NIL) (($ $ (-747)) 44) (($ $ (-549)) 130)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 78) (($ $ $) 56) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 76)))
-(((-348 |#1| |#2|) (-322 |#1|) (-342) (-1139 |#1|)) (T -348))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2638 (((-112) $) NIL)) (-2464 (((-747)) NIL)) (-2904 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-1597 (((-1152 (-892) (-747)) (-549)) 120 (|has| |#1| (-361)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2680 (((-112) $ $) NIL)) (-3614 (((-747)) 140 (|has| |#1| (-361)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) 93)) (-2657 ((|#1| $) 90)) (-2397 (($ (-1225 |#1|)) 85)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) 117 (|has| |#1| (-361)))) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) 82 (|has| |#1| (-361)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1545 (($) 42 (|has| |#1| (-361)))) (-1315 (((-112) $) NIL (|has| |#1| (-361)))) (-3517 (($ $ (-747)) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))) (($ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-1464 (((-112) $) NIL)) (-2729 (((-892) $) NIL (|has| |#1| (-361))) (((-809 (-892)) $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2297 (((-112) $) NIL)) (-1728 (($) 121 (|has| |#1| (-361)))) (-4031 (((-112) $) 74 (|has| |#1| (-361)))) (-2469 ((|#1| $) 39) (($ $ (-892)) 43 (|has| |#1| (-361)))) (-2964 (((-3 $ "failed") $) NIL (|has| |#1| (-361)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3514 (((-1138 |#1|) $) 65) (((-1138 $) $ (-892)) NIL (|has| |#1| (-361)))) (-3309 (((-892) $) 97 (|has| |#1| (-361)))) (-4021 (((-1138 |#1|) $) NIL (|has| |#1| (-361)))) (-1298 (((-1138 |#1|) $) NIL (|has| |#1| (-361))) (((-3 (-1138 |#1|) "failed") $ $) NIL (|has| |#1| (-361)))) (-3098 (($ $ (-1138 |#1|)) NIL (|has| |#1| (-361)))) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL (|has| |#1| (-361)) CONST)) (-3494 (($ (-892)) 95 (|has| |#1| (-361)))) (-2165 (((-112) $) 142)) (-3988 (((-1086) $) NIL)) (-4247 (($) 36 (|has| |#1| (-361)))) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) 115 (|has| |#1| (-361)))) (-2119 (((-411 $) $) NIL)) (-1485 (((-809 (-892))) NIL) (((-892)) 139)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3189 (((-747) $) NIL (|has| |#1| (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2260 (((-133)) NIL)) (-3455 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-3977 (((-809 (-892)) $) NIL) (((-892) $) 59)) (-1262 (((-1138 |#1|)) 88)) (-2950 (($) 126 (|has| |#1| (-361)))) (-2578 (($) NIL (|has| |#1| (-361)))) (-1981 (((-1225 |#1|) $) 53) (((-665 |#1|) (-1225 $)) NIL)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (|has| |#1| (-361)))) (-3845 (((-834) $) 138) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ |#1|) 87)) (-2343 (($ $) NIL (|has| |#1| (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2371 (((-747)) 144)) (-2619 (((-1225 $)) 109) (((-1225 $) (-892)) 49)) (-2441 (((-112) $ $) NIL)) (-1993 (((-112) $) NIL)) (-3274 (($) 111 T CONST)) (-3286 (($) 32 T CONST)) (-3495 (($ $) 68 (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-1699 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-2387 (((-112) $ $) 107)) (-2511 (($ $ $) 99) (($ $ |#1|) 100)) (-2498 (($ $) 80) (($ $ $) 105)) (-2484 (($ $ $) 103)) (** (($ $ (-892)) NIL) (($ $ (-747)) 44) (($ $ (-549)) 130)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 78) (($ $ $) 56) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 76)))
+(((-348 |#1| |#2|) (-322 |#1|) (-342) (-1138 |#1|)) (T -348))
NIL
(-322 |#1|)
-((-3134 ((|#1| (-1139 |#2|)) 52)))
-(((-349 |#1| |#2|) (-10 -7 (-15 -3134 (|#1| (-1139 |#2|)))) (-13 (-395) (-10 -7 (-15 -3846 (|#1| |#2|)) (-15 -1881 ((-892) |#1|)) (-15 -1949 ((-1226 |#1|) (-892))) (-15 -1933 (|#1| |#1|)))) (-342)) (T -349))
-((-3134 (*1 *2 *3) (-12 (-5 *3 (-1139 *4)) (-4 *4 (-342)) (-4 *2 (-13 (-395) (-10 -7 (-15 -3846 (*2 *4)) (-15 -1881 ((-892) *2)) (-15 -1949 ((-1226 *2) (-892))) (-15 -1933 (*2 *2))))) (-5 *1 (-349 *2 *4)))))
-(-10 -7 (-15 -3134 (|#1| (-1139 |#2|))))
-((-1985 (((-929 (-1139 |#1|)) (-1139 |#1|)) 36)) (-3239 (((-1139 |#1|) (-892) (-892)) 113) (((-1139 |#1|) (-892)) 112)) (-2288 (((-112) (-1139 |#1|)) 84)) (-1272 (((-892) (-892)) 71)) (-3066 (((-892) (-892)) 74)) (-2465 (((-892) (-892)) 69)) (-4091 (((-112) (-1139 |#1|)) 88)) (-2015 (((-3 (-1139 |#1|) "failed") (-1139 |#1|)) 101)) (-1694 (((-3 (-1139 |#1|) "failed") (-1139 |#1|)) 104)) (-3565 (((-3 (-1139 |#1|) "failed") (-1139 |#1|)) 103)) (-2520 (((-3 (-1139 |#1|) "failed") (-1139 |#1|)) 102)) (-2567 (((-3 (-1139 |#1|) "failed") (-1139 |#1|)) 98)) (-2576 (((-1139 |#1|) (-1139 |#1|)) 62)) (-3522 (((-1139 |#1|) (-892)) 107)) (-2184 (((-1139 |#1|) (-892)) 110)) (-3534 (((-1139 |#1|) (-892)) 109)) (-3876 (((-1139 |#1|) (-892)) 108)) (-3479 (((-1139 |#1|) (-892)) 105)))
-(((-350 |#1|) (-10 -7 (-15 -2288 ((-112) (-1139 |#1|))) (-15 -4091 ((-112) (-1139 |#1|))) (-15 -2465 ((-892) (-892))) (-15 -1272 ((-892) (-892))) (-15 -3066 ((-892) (-892))) (-15 -3479 ((-1139 |#1|) (-892))) (-15 -3522 ((-1139 |#1|) (-892))) (-15 -3876 ((-1139 |#1|) (-892))) (-15 -3534 ((-1139 |#1|) (-892))) (-15 -2184 ((-1139 |#1|) (-892))) (-15 -2567 ((-3 (-1139 |#1|) "failed") (-1139 |#1|))) (-15 -2015 ((-3 (-1139 |#1|) "failed") (-1139 |#1|))) (-15 -2520 ((-3 (-1139 |#1|) "failed") (-1139 |#1|))) (-15 -3565 ((-3 (-1139 |#1|) "failed") (-1139 |#1|))) (-15 -1694 ((-3 (-1139 |#1|) "failed") (-1139 |#1|))) (-15 -3239 ((-1139 |#1|) (-892))) (-15 -3239 ((-1139 |#1|) (-892) (-892))) (-15 -2576 ((-1139 |#1|) (-1139 |#1|))) (-15 -1985 ((-929 (-1139 |#1|)) (-1139 |#1|)))) (-342)) (T -350))
-((-1985 (*1 *2 *3) (-12 (-4 *4 (-342)) (-5 *2 (-929 (-1139 *4))) (-5 *1 (-350 *4)) (-5 *3 (-1139 *4)))) (-2576 (*1 *2 *2) (-12 (-5 *2 (-1139 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))) (-3239 (*1 *2 *3 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1139 *4)) (-5 *1 (-350 *4)) (-4 *4 (-342)))) (-3239 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1139 *4)) (-5 *1 (-350 *4)) (-4 *4 (-342)))) (-1694 (*1 *2 *2) (|partial| -12 (-5 *2 (-1139 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))) (-3565 (*1 *2 *2) (|partial| -12 (-5 *2 (-1139 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))) (-2520 (*1 *2 *2) (|partial| -12 (-5 *2 (-1139 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))) (-2015 (*1 *2 *2) (|partial| -12 (-5 *2 (-1139 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))) (-2567 (*1 *2 *2) (|partial| -12 (-5 *2 (-1139 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))) (-2184 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1139 *4)) (-5 *1 (-350 *4)) (-4 *4 (-342)))) (-3534 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1139 *4)) (-5 *1 (-350 *4)) (-4 *4 (-342)))) (-3876 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1139 *4)) (-5 *1 (-350 *4)) (-4 *4 (-342)))) (-3522 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1139 *4)) (-5 *1 (-350 *4)) (-4 *4 (-342)))) (-3479 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1139 *4)) (-5 *1 (-350 *4)) (-4 *4 (-342)))) (-3066 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-350 *3)) (-4 *3 (-342)))) (-1272 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-350 *3)) (-4 *3 (-342)))) (-2465 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-350 *3)) (-4 *3 (-342)))) (-4091 (*1 *2 *3) (-12 (-5 *3 (-1139 *4)) (-4 *4 (-342)) (-5 *2 (-112)) (-5 *1 (-350 *4)))) (-2288 (*1 *2 *3) (-12 (-5 *3 (-1139 *4)) (-4 *4 (-342)) (-5 *2 (-112)) (-5 *1 (-350 *4)))))
-(-10 -7 (-15 -2288 ((-112) (-1139 |#1|))) (-15 -4091 ((-112) (-1139 |#1|))) (-15 -2465 ((-892) (-892))) (-15 -1272 ((-892) (-892))) (-15 -3066 ((-892) (-892))) (-15 -3479 ((-1139 |#1|) (-892))) (-15 -3522 ((-1139 |#1|) (-892))) (-15 -3876 ((-1139 |#1|) (-892))) (-15 -3534 ((-1139 |#1|) (-892))) (-15 -2184 ((-1139 |#1|) (-892))) (-15 -2567 ((-3 (-1139 |#1|) "failed") (-1139 |#1|))) (-15 -2015 ((-3 (-1139 |#1|) "failed") (-1139 |#1|))) (-15 -2520 ((-3 (-1139 |#1|) "failed") (-1139 |#1|))) (-15 -3565 ((-3 (-1139 |#1|) "failed") (-1139 |#1|))) (-15 -1694 ((-3 (-1139 |#1|) "failed") (-1139 |#1|))) (-15 -3239 ((-1139 |#1|) (-892))) (-15 -3239 ((-1139 |#1|) (-892) (-892))) (-15 -2576 ((-1139 |#1|) (-1139 |#1|))) (-15 -1985 ((-929 (-1139 |#1|)) (-1139 |#1|))))
-((-1348 (((-3 (-621 |#3|) "failed") (-621 |#3|) |#3|) 34)))
-(((-351 |#1| |#2| |#3|) (-10 -7 (-15 -1348 ((-3 (-621 |#3|) "failed") (-621 |#3|) |#3|))) (-342) (-1202 |#1|) (-1202 |#2|)) (T -351))
-((-1348 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-621 *3)) (-4 *3 (-1202 *5)) (-4 *5 (-1202 *4)) (-4 *4 (-342)) (-5 *1 (-351 *4 *5 *3)))))
-(-10 -7 (-15 -1348 ((-3 (-621 |#3|) "failed") (-621 |#3|) |#3|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2044 (((-112) $) NIL)) (-3214 (((-747)) NIL)) (-2906 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-3062 (((-1153 (-892) (-747)) (-549)) NIL (|has| |#1| (-361)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3866 (((-112) $ $) NIL)) (-3614 (((-747)) NIL (|has| |#1| (-361)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) NIL)) (-2659 ((|#1| $) NIL)) (-3492 (($ (-1226 |#1|)) NIL)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-361)))) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) NIL (|has| |#1| (-361)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-2405 (($) NIL (|has| |#1| (-361)))) (-2288 (((-112) $) NIL (|has| |#1| (-361)))) (-3165 (($ $ (-747)) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))) (($ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-1420 (((-112) $) NIL)) (-2088 (((-892) $) NIL (|has| |#1| (-361))) (((-809 (-892)) $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2675 (((-112) $) NIL)) (-1973 (($) NIL (|has| |#1| (-361)))) (-4091 (((-112) $) NIL (|has| |#1| (-361)))) (-3630 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-1681 (((-3 $ "failed") $) NIL (|has| |#1| (-361)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3788 (((-1139 |#1|) $) NIL) (((-1139 $) $ (-892)) NIL (|has| |#1| (-361)))) (-1881 (((-892) $) NIL (|has| |#1| (-361)))) (-3318 (((-1139 |#1|) $) NIL (|has| |#1| (-361)))) (-1983 (((-1139 |#1|) $) NIL (|has| |#1| (-361))) (((-3 (-1139 |#1|) "failed") $ $) NIL (|has| |#1| (-361)))) (-3719 (($ $ (-1139 |#1|)) NIL (|has| |#1| (-361)))) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL (|has| |#1| (-361)) CONST)) (-3493 (($ (-892)) NIL (|has| |#1| (-361)))) (-3980 (((-112) $) NIL)) (-3990 (((-1087) $) NIL)) (-4248 (($) NIL (|has| |#1| (-361)))) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) NIL (|has| |#1| (-361)))) (-2121 (((-411 $) $) NIL)) (-3049 (((-809 (-892))) NIL) (((-892)) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3914 (((-747) $) NIL (|has| |#1| (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2985 (((-133)) NIL)) (-3456 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-3701 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-2815 (((-1139 |#1|)) NIL)) (-3170 (($) NIL (|has| |#1| (-361)))) (-1544 (($) NIL (|has| |#1| (-361)))) (-4263 (((-1226 |#1|) $) NIL) (((-665 |#1|) (-1226 $)) NIL)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (|has| |#1| (-361)))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ |#1|) NIL)) (-2210 (($ $) NIL (|has| |#1| (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2082 (((-747)) NIL)) (-1949 (((-1226 $)) NIL) (((-1226 $) (-892)) NIL)) (-1498 (((-112) $ $) NIL)) (-1606 (((-112) $) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1933 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-1702 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-4275 ((|#1| (-1138 |#2|)) 52)))
+(((-349 |#1| |#2|) (-10 -7 (-15 -4275 (|#1| (-1138 |#2|)))) (-13 (-395) (-10 -7 (-15 -3845 (|#1| |#2|)) (-15 -3309 ((-892) |#1|)) (-15 -2619 ((-1225 |#1|) (-892))) (-15 -3495 (|#1| |#1|)))) (-342)) (T -349))
+((-4275 (*1 *2 *3) (-12 (-5 *3 (-1138 *4)) (-4 *4 (-342)) (-4 *2 (-13 (-395) (-10 -7 (-15 -3845 (*2 *4)) (-15 -3309 ((-892) *2)) (-15 -2619 ((-1225 *2) (-892))) (-15 -3495 (*2 *2))))) (-5 *1 (-349 *2 *4)))))
+(-10 -7 (-15 -4275 (|#1| (-1138 |#2|))))
+((-3412 (((-929 (-1138 |#1|)) (-1138 |#1|)) 36)) (-3237 (((-1138 |#1|) (-892) (-892)) 113) (((-1138 |#1|) (-892)) 112)) (-1315 (((-112) (-1138 |#1|)) 84)) (-1375 (((-892) (-892)) 71)) (-3830 (((-892) (-892)) 74)) (-1838 (((-892) (-892)) 69)) (-4031 (((-112) (-1138 |#1|)) 88)) (-4203 (((-3 (-1138 |#1|) "failed") (-1138 |#1|)) 101)) (-1514 (((-3 (-1138 |#1|) "failed") (-1138 |#1|)) 104)) (-3124 (((-3 (-1138 |#1|) "failed") (-1138 |#1|)) 103)) (-2731 (((-3 (-1138 |#1|) "failed") (-1138 |#1|)) 102)) (-3391 (((-3 (-1138 |#1|) "failed") (-1138 |#1|)) 98)) (-3091 (((-1138 |#1|) (-1138 |#1|)) 62)) (-2714 (((-1138 |#1|) (-892)) 107)) (-1429 (((-1138 |#1|) (-892)) 110)) (-2530 (((-1138 |#1|) (-892)) 109)) (-4271 (((-1138 |#1|) (-892)) 108)) (-2692 (((-1138 |#1|) (-892)) 105)))
+(((-350 |#1|) (-10 -7 (-15 -1315 ((-112) (-1138 |#1|))) (-15 -4031 ((-112) (-1138 |#1|))) (-15 -1838 ((-892) (-892))) (-15 -1375 ((-892) (-892))) (-15 -3830 ((-892) (-892))) (-15 -2692 ((-1138 |#1|) (-892))) (-15 -2714 ((-1138 |#1|) (-892))) (-15 -4271 ((-1138 |#1|) (-892))) (-15 -2530 ((-1138 |#1|) (-892))) (-15 -1429 ((-1138 |#1|) (-892))) (-15 -3391 ((-3 (-1138 |#1|) "failed") (-1138 |#1|))) (-15 -4203 ((-3 (-1138 |#1|) "failed") (-1138 |#1|))) (-15 -2731 ((-3 (-1138 |#1|) "failed") (-1138 |#1|))) (-15 -3124 ((-3 (-1138 |#1|) "failed") (-1138 |#1|))) (-15 -1514 ((-3 (-1138 |#1|) "failed") (-1138 |#1|))) (-15 -3237 ((-1138 |#1|) (-892))) (-15 -3237 ((-1138 |#1|) (-892) (-892))) (-15 -3091 ((-1138 |#1|) (-1138 |#1|))) (-15 -3412 ((-929 (-1138 |#1|)) (-1138 |#1|)))) (-342)) (T -350))
+((-3412 (*1 *2 *3) (-12 (-4 *4 (-342)) (-5 *2 (-929 (-1138 *4))) (-5 *1 (-350 *4)) (-5 *3 (-1138 *4)))) (-3091 (*1 *2 *2) (-12 (-5 *2 (-1138 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))) (-3237 (*1 *2 *3 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1138 *4)) (-5 *1 (-350 *4)) (-4 *4 (-342)))) (-3237 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1138 *4)) (-5 *1 (-350 *4)) (-4 *4 (-342)))) (-1514 (*1 *2 *2) (|partial| -12 (-5 *2 (-1138 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))) (-3124 (*1 *2 *2) (|partial| -12 (-5 *2 (-1138 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))) (-2731 (*1 *2 *2) (|partial| -12 (-5 *2 (-1138 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))) (-4203 (*1 *2 *2) (|partial| -12 (-5 *2 (-1138 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))) (-3391 (*1 *2 *2) (|partial| -12 (-5 *2 (-1138 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))) (-1429 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1138 *4)) (-5 *1 (-350 *4)) (-4 *4 (-342)))) (-2530 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1138 *4)) (-5 *1 (-350 *4)) (-4 *4 (-342)))) (-4271 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1138 *4)) (-5 *1 (-350 *4)) (-4 *4 (-342)))) (-2714 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1138 *4)) (-5 *1 (-350 *4)) (-4 *4 (-342)))) (-2692 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1138 *4)) (-5 *1 (-350 *4)) (-4 *4 (-342)))) (-3830 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-350 *3)) (-4 *3 (-342)))) (-1375 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-350 *3)) (-4 *3 (-342)))) (-1838 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-350 *3)) (-4 *3 (-342)))) (-4031 (*1 *2 *3) (-12 (-5 *3 (-1138 *4)) (-4 *4 (-342)) (-5 *2 (-112)) (-5 *1 (-350 *4)))) (-1315 (*1 *2 *3) (-12 (-5 *3 (-1138 *4)) (-4 *4 (-342)) (-5 *2 (-112)) (-5 *1 (-350 *4)))))
+(-10 -7 (-15 -1315 ((-112) (-1138 |#1|))) (-15 -4031 ((-112) (-1138 |#1|))) (-15 -1838 ((-892) (-892))) (-15 -1375 ((-892) (-892))) (-15 -3830 ((-892) (-892))) (-15 -2692 ((-1138 |#1|) (-892))) (-15 -2714 ((-1138 |#1|) (-892))) (-15 -4271 ((-1138 |#1|) (-892))) (-15 -2530 ((-1138 |#1|) (-892))) (-15 -1429 ((-1138 |#1|) (-892))) (-15 -3391 ((-3 (-1138 |#1|) "failed") (-1138 |#1|))) (-15 -4203 ((-3 (-1138 |#1|) "failed") (-1138 |#1|))) (-15 -2731 ((-3 (-1138 |#1|) "failed") (-1138 |#1|))) (-15 -3124 ((-3 (-1138 |#1|) "failed") (-1138 |#1|))) (-15 -1514 ((-3 (-1138 |#1|) "failed") (-1138 |#1|))) (-15 -3237 ((-1138 |#1|) (-892))) (-15 -3237 ((-1138 |#1|) (-892) (-892))) (-15 -3091 ((-1138 |#1|) (-1138 |#1|))) (-15 -3412 ((-929 (-1138 |#1|)) (-1138 |#1|))))
+((-3955 (((-3 (-621 |#3|) "failed") (-621 |#3|) |#3|) 34)))
+(((-351 |#1| |#2| |#3|) (-10 -7 (-15 -3955 ((-3 (-621 |#3|) "failed") (-621 |#3|) |#3|))) (-342) (-1201 |#1|) (-1201 |#2|)) (T -351))
+((-3955 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-621 *3)) (-4 *3 (-1201 *5)) (-4 *5 (-1201 *4)) (-4 *4 (-342)) (-5 *1 (-351 *4 *5 *3)))))
+(-10 -7 (-15 -3955 ((-3 (-621 |#3|) "failed") (-621 |#3|) |#3|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2638 (((-112) $) NIL)) (-2464 (((-747)) NIL)) (-2904 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-1597 (((-1152 (-892) (-747)) (-549)) NIL (|has| |#1| (-361)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2680 (((-112) $ $) NIL)) (-3614 (((-747)) NIL (|has| |#1| (-361)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) NIL)) (-2657 ((|#1| $) NIL)) (-2397 (($ (-1225 |#1|)) NIL)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-361)))) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) NIL (|has| |#1| (-361)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1545 (($) NIL (|has| |#1| (-361)))) (-1315 (((-112) $) NIL (|has| |#1| (-361)))) (-3517 (($ $ (-747)) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))) (($ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-1464 (((-112) $) NIL)) (-2729 (((-892) $) NIL (|has| |#1| (-361))) (((-809 (-892)) $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2297 (((-112) $) NIL)) (-1728 (($) NIL (|has| |#1| (-361)))) (-4031 (((-112) $) NIL (|has| |#1| (-361)))) (-2469 ((|#1| $) NIL) (($ $ (-892)) NIL (|has| |#1| (-361)))) (-2964 (((-3 $ "failed") $) NIL (|has| |#1| (-361)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3514 (((-1138 |#1|) $) NIL) (((-1138 $) $ (-892)) NIL (|has| |#1| (-361)))) (-3309 (((-892) $) NIL (|has| |#1| (-361)))) (-4021 (((-1138 |#1|) $) NIL (|has| |#1| (-361)))) (-1298 (((-1138 |#1|) $) NIL (|has| |#1| (-361))) (((-3 (-1138 |#1|) "failed") $ $) NIL (|has| |#1| (-361)))) (-3098 (($ $ (-1138 |#1|)) NIL (|has| |#1| (-361)))) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL (|has| |#1| (-361)) CONST)) (-3494 (($ (-892)) NIL (|has| |#1| (-361)))) (-2165 (((-112) $) NIL)) (-3988 (((-1086) $) NIL)) (-4247 (($) NIL (|has| |#1| (-361)))) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) NIL (|has| |#1| (-361)))) (-2119 (((-411 $) $) NIL)) (-1485 (((-809 (-892))) NIL) (((-892)) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3189 (((-747) $) NIL (|has| |#1| (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2260 (((-133)) NIL)) (-3455 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-3977 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-1262 (((-1138 |#1|)) NIL)) (-2950 (($) NIL (|has| |#1| (-361)))) (-2578 (($) NIL (|has| |#1| (-361)))) (-1981 (((-1225 |#1|) $) NIL) (((-665 |#1|) (-1225 $)) NIL)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (|has| |#1| (-361)))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ |#1|) NIL)) (-2343 (($ $) NIL (|has| |#1| (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2371 (((-747)) NIL)) (-2619 (((-1225 $)) NIL) (((-1225 $) (-892)) NIL)) (-2441 (((-112) $ $) NIL)) (-1993 (((-112) $) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-3495 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-1699 (($ $) NIL (|has| |#1| (-361))) (($ $ (-747)) NIL (|has| |#1| (-361)))) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-352 |#1| |#2|) (-322 |#1|) (-342) (-892)) (T -352))
NIL
(-322 |#1|)
-((-2819 (((-112) (-621 (-923 |#1|))) 34)) (-3989 (((-621 (-923 |#1|)) (-621 (-923 |#1|))) 46)) (-3532 (((-3 (-621 (-923 |#1|)) "failed") (-621 (-923 |#1|))) 41)))
-(((-353 |#1| |#2|) (-10 -7 (-15 -2819 ((-112) (-621 (-923 |#1|)))) (-15 -3532 ((-3 (-621 (-923 |#1|)) "failed") (-621 (-923 |#1|)))) (-15 -3989 ((-621 (-923 |#1|)) (-621 (-923 |#1|))))) (-444) (-621 (-1143))) (T -353))
-((-3989 (*1 *2 *2) (-12 (-5 *2 (-621 (-923 *3))) (-4 *3 (-444)) (-5 *1 (-353 *3 *4)) (-14 *4 (-621 (-1143))))) (-3532 (*1 *2 *2) (|partial| -12 (-5 *2 (-621 (-923 *3))) (-4 *3 (-444)) (-5 *1 (-353 *3 *4)) (-14 *4 (-621 (-1143))))) (-2819 (*1 *2 *3) (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-444)) (-5 *2 (-112)) (-5 *1 (-353 *4 *5)) (-14 *5 (-621 (-1143))))))
-(-10 -7 (-15 -2819 ((-112) (-621 (-923 |#1|)))) (-15 -3532 ((-3 (-621 (-923 |#1|)) "failed") (-621 (-923 |#1|)))) (-15 -3989 ((-621 (-923 |#1|)) (-621 (-923 |#1|)))))
-((-3834 (((-112) $ $) NIL)) (-3614 (((-747) $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) NIL)) (-2659 ((|#1| $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-2675 (((-112) $) 15)) (-1302 ((|#1| $ (-549)) NIL)) (-2009 (((-549) $ (-549)) NIL)) (-3482 (($ (-1 |#1| |#1|) $) 32)) (-3653 (($ (-1 (-549) (-549)) $) 24)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 26)) (-3990 (((-1087) $) NIL)) (-4024 (((-621 (-2 (|:| |gen| |#1|) (|:| -2719 (-549)))) $) 28)) (-1955 (($ $ $) NIL)) (-3293 (($ $ $) NIL)) (-3846 (((-834) $) 38) (($ |#1|) NIL)) (-3287 (($) 9 T CONST)) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL) (($ |#1| (-549)) 17)) (* (($ $ $) 43) (($ |#1| $) 21) (($ $ |#1|) 19)))
-(((-354 |#1|) (-13 (-465) (-1009 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-549))) (-15 -3614 ((-747) $)) (-15 -2009 ((-549) $ (-549))) (-15 -1302 (|#1| $ (-549))) (-15 -3653 ($ (-1 (-549) (-549)) $)) (-15 -3482 ($ (-1 |#1| |#1|) $)) (-15 -4024 ((-621 (-2 (|:| |gen| |#1|) (|:| -2719 (-549)))) $)))) (-1067)) (T -354))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-354 *2)) (-4 *2 (-1067)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-354 *2)) (-4 *2 (-1067)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-354 *2)) (-4 *2 (-1067)))) (-3614 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-354 *3)) (-4 *3 (-1067)))) (-2009 (*1 *2 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-354 *3)) (-4 *3 (-1067)))) (-1302 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-354 *2)) (-4 *2 (-1067)))) (-3653 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-549) (-549))) (-5 *1 (-354 *3)) (-4 *3 (-1067)))) (-3482 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1067)) (-5 *1 (-354 *3)))) (-4024 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2719 (-549))))) (-5 *1 (-354 *3)) (-4 *3 (-1067)))))
-(-13 (-465) (-1009 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-549))) (-15 -3614 ((-747) $)) (-15 -2009 ((-549) $ (-549))) (-15 -1302 (|#1| $ (-549))) (-15 -3653 ($ (-1 (-549) (-549)) $)) (-15 -3482 ($ (-1 |#1| |#1|) $)) (-15 -4024 ((-621 (-2 (|:| |gen| |#1|) (|:| -2719 (-549)))) $))))
-((-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 13)) (-2258 (($ $) 14)) (-2402 (((-411 $) $) 30)) (-1420 (((-112) $) 26)) (-1992 (($ $) 19)) (-3727 (($ $ $) 23) (($ (-621 $)) NIL)) (-2121 (((-411 $) $) 31)) (-2042 (((-3 $ "failed") $ $) 22)) (-3684 (((-747) $) 25)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 35)) (-1498 (((-112) $ $) 16)) (-2513 (($ $ $) 33)))
-(((-355 |#1|) (-10 -8 (-15 -2513 (|#1| |#1| |#1|)) (-15 -1992 (|#1| |#1|)) (-15 -1420 ((-112) |#1|)) (-15 -2402 ((-411 |#1|) |#1|)) (-15 -2121 ((-411 |#1|) |#1|)) (-15 -3148 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|)) (-15 -3684 ((-747) |#1|)) (-15 -3727 (|#1| (-621 |#1|))) (-15 -3727 (|#1| |#1| |#1|)) (-15 -1498 ((-112) |#1| |#1|)) (-15 -2258 (|#1| |#1|)) (-15 -2297 ((-2 (|:| -2207 |#1|) (|:| -4324 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2042 ((-3 |#1| "failed") |#1| |#1|))) (-356)) (T -355))
-NIL
-(-10 -8 (-15 -2513 (|#1| |#1| |#1|)) (-15 -1992 (|#1| |#1|)) (-15 -1420 ((-112) |#1|)) (-15 -2402 ((-411 |#1|) |#1|)) (-15 -2121 ((-411 |#1|) |#1|)) (-15 -3148 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|)) (-15 -3684 ((-747) |#1|)) (-15 -3727 (|#1| (-621 |#1|))) (-15 -3727 (|#1| |#1| |#1|)) (-15 -1498 ((-112) |#1| |#1|)) (-15 -2258 (|#1| |#1|)) (-15 -2297 ((-2 (|:| -2207 |#1|) (|:| -4324 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2042 ((-3 |#1| "failed") |#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-2001 (((-3 $ "failed") $ $) 19)) (-3979 (($ $) 70)) (-2402 (((-411 $) $) 69)) (-3866 (((-112) $ $) 57)) (-1682 (($) 17 T CONST)) (-2095 (($ $ $) 53)) (-2114 (((-3 $ "failed") $) 32)) (-2067 (($ $ $) 54)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 49)) (-1420 (((-112) $) 68)) (-2675 (((-112) $) 30)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-1992 (($ $) 67)) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-2121 (((-411 $) $) 71)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2042 (((-3 $ "failed") $ $) 40)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-3684 (((-747) $) 56)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 55)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63)) (-2082 (((-747)) 28)) (-1498 (((-112) $ $) 37)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2513 (($ $ $) 62)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64)))
+((-1717 (((-112) (-621 (-923 |#1|))) 34)) (-1557 (((-621 (-923 |#1|)) (-621 (-923 |#1|))) 46)) (-2264 (((-3 (-621 (-923 |#1|)) "failed") (-621 (-923 |#1|))) 41)))
+(((-353 |#1| |#2|) (-10 -7 (-15 -1717 ((-112) (-621 (-923 |#1|)))) (-15 -2264 ((-3 (-621 (-923 |#1|)) "failed") (-621 (-923 |#1|)))) (-15 -1557 ((-621 (-923 |#1|)) (-621 (-923 |#1|))))) (-444) (-621 (-1142))) (T -353))
+((-1557 (*1 *2 *2) (-12 (-5 *2 (-621 (-923 *3))) (-4 *3 (-444)) (-5 *1 (-353 *3 *4)) (-14 *4 (-621 (-1142))))) (-2264 (*1 *2 *2) (|partial| -12 (-5 *2 (-621 (-923 *3))) (-4 *3 (-444)) (-5 *1 (-353 *3 *4)) (-14 *4 (-621 (-1142))))) (-1717 (*1 *2 *3) (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-444)) (-5 *2 (-112)) (-5 *1 (-353 *4 *5)) (-14 *5 (-621 (-1142))))))
+(-10 -7 (-15 -1717 ((-112) (-621 (-923 |#1|)))) (-15 -2264 ((-3 (-621 (-923 |#1|)) "failed") (-621 (-923 |#1|)))) (-15 -1557 ((-621 (-923 |#1|)) (-621 (-923 |#1|)))))
+((-3832 (((-112) $ $) NIL)) (-3614 (((-747) $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) NIL)) (-2657 ((|#1| $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-2297 (((-112) $) 15)) (-2941 ((|#1| $ (-549)) NIL)) (-1805 (((-549) $ (-549)) NIL)) (-1634 (($ (-1 |#1| |#1|) $) 32)) (-3702 (($ (-1 (-549) (-549)) $) 24)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 26)) (-3988 (((-1086) $) NIL)) (-3390 (((-621 (-2 (|:| |gen| |#1|) (|:| -2717 (-549)))) $) 28)) (-1795 (($ $ $) NIL)) (-3870 (($ $ $) NIL)) (-3845 (((-834) $) 38) (($ |#1|) NIL)) (-3286 (($) 9 T CONST)) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL) (($ |#1| (-549)) 17)) (* (($ $ $) 43) (($ |#1| $) 21) (($ $ |#1|) 19)))
+(((-354 |#1|) (-13 (-465) (-1009 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-549))) (-15 -3614 ((-747) $)) (-15 -1805 ((-549) $ (-549))) (-15 -2941 (|#1| $ (-549))) (-15 -3702 ($ (-1 (-549) (-549)) $)) (-15 -1634 ($ (-1 |#1| |#1|) $)) (-15 -3390 ((-621 (-2 (|:| |gen| |#1|) (|:| -2717 (-549)))) $)))) (-1066)) (T -354))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-354 *2)) (-4 *2 (-1066)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-354 *2)) (-4 *2 (-1066)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-354 *2)) (-4 *2 (-1066)))) (-3614 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-354 *3)) (-4 *3 (-1066)))) (-1805 (*1 *2 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-354 *3)) (-4 *3 (-1066)))) (-2941 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-354 *2)) (-4 *2 (-1066)))) (-3702 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-549) (-549))) (-5 *1 (-354 *3)) (-4 *3 (-1066)))) (-1634 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1066)) (-5 *1 (-354 *3)))) (-3390 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2717 (-549))))) (-5 *1 (-354 *3)) (-4 *3 (-1066)))))
+(-13 (-465) (-1009 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-549))) (-15 -3614 ((-747) $)) (-15 -1805 ((-549) $ (-549))) (-15 -2941 (|#1| $ (-549))) (-15 -3702 ($ (-1 (-549) (-549)) $)) (-15 -1634 ($ (-1 |#1| |#1|) $)) (-15 -3390 ((-621 (-2 (|:| |gen| |#1|) (|:| -2717 (-549)))) $))))
+((-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 13)) (-3044 (($ $) 14)) (-2620 (((-411 $) $) 30)) (-1464 (((-112) $) 26)) (-1990 (($ $) 19)) (-3726 (($ $ $) 23) (($ (-621 $)) NIL)) (-2119 (((-411 $) $) 31)) (-2040 (((-3 $ "failed") $ $) 22)) (-1335 (((-747) $) 25)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 35)) (-2441 (((-112) $ $) 16)) (-2511 (($ $ $) 33)))
+(((-355 |#1|) (-10 -8 (-15 -2511 (|#1| |#1| |#1|)) (-15 -1990 (|#1| |#1|)) (-15 -1464 ((-112) |#1|)) (-15 -2620 ((-411 |#1|) |#1|)) (-15 -2119 ((-411 |#1|) |#1|)) (-15 -2288 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|)) (-15 -1335 ((-747) |#1|)) (-15 -3726 (|#1| (-621 |#1|))) (-15 -3726 (|#1| |#1| |#1|)) (-15 -2441 ((-112) |#1| |#1|)) (-15 -3044 (|#1| |#1|)) (-15 -4010 ((-2 (|:| -1951 |#1|) (|:| -4323 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2040 ((-3 |#1| "failed") |#1| |#1|))) (-356)) (T -355))
+NIL
+(-10 -8 (-15 -2511 (|#1| |#1| |#1|)) (-15 -1990 (|#1| |#1|)) (-15 -1464 ((-112) |#1|)) (-15 -2620 ((-411 |#1|) |#1|)) (-15 -2119 ((-411 |#1|) |#1|)) (-15 -2288 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|)) (-15 -1335 ((-747) |#1|)) (-15 -3726 (|#1| (-621 |#1|))) (-15 -3726 (|#1| |#1| |#1|)) (-15 -2441 ((-112) |#1| |#1|)) (-15 -3044 (|#1| |#1|)) (-15 -4010 ((-2 (|:| -1951 |#1|) (|:| -4323 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2040 ((-3 |#1| "failed") |#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-2416 (((-3 $ "failed") $ $) 19)) (-3239 (($ $) 70)) (-2620 (((-411 $) $) 69)) (-2680 (((-112) $ $) 57)) (-3034 (($) 17 T CONST)) (-2091 (($ $ $) 53)) (-2612 (((-3 $ "failed") $) 32)) (-2065 (($ $ $) 54)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 49)) (-1464 (((-112) $) 68)) (-2297 (((-112) $) 30)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-1990 (($ $) 67)) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-2119 (((-411 $) $) 71)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2040 (((-3 $ "failed") $ $) 40)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-1335 (((-747) $) 56)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 55)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63)) (-2371 (((-747)) 28)) (-2441 (((-112) $ $) 37)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2511 (($ $ $) 62)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64)))
(((-356) (-138)) (T -356))
-((-2513 (*1 *1 *1 *1) (-4 *1 (-356))))
-(-13 (-300) (-1184) (-237) (-10 -8 (-15 -2513 ($ $ $)) (-6 -4335) (-6 -4329)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-237) . T) ((-283) . T) ((-300) . T) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 $) . T) ((-703) . T) ((-891) . T) ((-1024 #0#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1184) . T))
-((-3834 (((-112) $ $) 7)) (-3113 ((|#2| $ |#2|) 13)) (-2060 (($ $ (-1125)) 18)) (-3001 ((|#2| $) 14)) (-1359 (($ |#1|) 20) (($ |#1| (-1125)) 19)) (-2481 ((|#1| $) 16)) (-3851 (((-1125) $) 9)) (-2646 (((-1125) $) 15)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-3578 (($ $) 17)) (-2389 (((-112) $ $) 6)))
-(((-357 |#1| |#2|) (-138) (-1067) (-1067)) (T -357))
-((-1359 (*1 *1 *2) (-12 (-4 *1 (-357 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067)))) (-1359 (*1 *1 *2 *3) (-12 (-5 *3 (-1125)) (-4 *1 (-357 *2 *4)) (-4 *2 (-1067)) (-4 *4 (-1067)))) (-2060 (*1 *1 *1 *2) (-12 (-5 *2 (-1125)) (-4 *1 (-357 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067)))) (-3578 (*1 *1 *1) (-12 (-4 *1 (-357 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067)))) (-2481 (*1 *2 *1) (-12 (-4 *1 (-357 *2 *3)) (-4 *3 (-1067)) (-4 *2 (-1067)))) (-2646 (*1 *2 *1) (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-5 *2 (-1125)))) (-3001 (*1 *2 *1) (-12 (-4 *1 (-357 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1067)))) (-3113 (*1 *2 *1 *2) (-12 (-4 *1 (-357 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1067)))))
-(-13 (-1067) (-10 -8 (-15 -1359 ($ |t#1|)) (-15 -1359 ($ |t#1| (-1125))) (-15 -2060 ($ $ (-1125))) (-15 -3578 ($ $)) (-15 -2481 (|t#1| $)) (-15 -2646 ((-1125) $)) (-15 -3001 (|t#2| $)) (-15 -3113 (|t#2| $ |t#2|))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-3113 ((|#1| $ |#1|) 30)) (-2060 (($ $ (-1125)) 22)) (-2023 (((-3 |#1| "failed") $) 29)) (-3001 ((|#1| $) 27)) (-1359 (($ (-381)) 21) (($ (-381) (-1125)) 20)) (-2481 (((-381) $) 24)) (-3851 (((-1125) $) NIL)) (-2646 (((-1125) $) 25)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 19)) (-3578 (($ $) 23)) (-2389 (((-112) $ $) 18)))
-(((-358 |#1|) (-13 (-357 (-381) |#1|) (-10 -8 (-15 -2023 ((-3 |#1| "failed") $)))) (-1067)) (T -358))
-((-2023 (*1 *2 *1) (|partial| -12 (-5 *1 (-358 *2)) (-4 *2 (-1067)))))
-(-13 (-357 (-381) |#1|) (-10 -8 (-15 -2023 ((-3 |#1| "failed") $))))
-((-3277 (((-1226 (-665 |#2|)) (-1226 $)) 61)) (-4212 (((-665 |#2|) (-1226 $)) 120)) (-2840 ((|#2| $) 32)) (-3841 (((-665 |#2|) $ (-1226 $)) 123)) (-3038 (((-3 $ "failed") $) 75)) (-2182 ((|#2| $) 35)) (-2289 (((-1139 |#2|) $) 83)) (-3076 ((|#2| (-1226 $)) 106)) (-3266 (((-1139 |#2|) $) 28)) (-1368 (((-112)) 100)) (-3492 (($ (-1226 |#2|) (-1226 $)) 113)) (-2114 (((-3 $ "failed") $) 79)) (-3975 (((-112)) 95)) (-2291 (((-112)) 90)) (-2647 (((-112)) 53)) (-2870 (((-665 |#2|) (-1226 $)) 118)) (-2654 ((|#2| $) 31)) (-2303 (((-665 |#2|) $ (-1226 $)) 122)) (-1919 (((-3 $ "failed") $) 73)) (-2248 ((|#2| $) 34)) (-1378 (((-1139 |#2|) $) 82)) (-2920 ((|#2| (-1226 $)) 104)) (-2443 (((-1139 |#2|) $) 26)) (-3623 (((-112)) 99)) (-3260 (((-112)) 92)) (-2754 (((-112)) 51)) (-2055 (((-112)) 87)) (-2392 (((-112)) 101)) (-4263 (((-1226 |#2|) $ (-1226 $)) NIL) (((-665 |#2|) (-1226 $) (-1226 $)) 111)) (-1942 (((-112)) 97)) (-4315 (((-621 (-1226 |#2|))) 86)) (-3430 (((-112)) 98)) (-2864 (((-112)) 96)) (-4257 (((-112)) 46)) (-1898 (((-112)) 102)))
-(((-359 |#1| |#2|) (-10 -8 (-15 -2289 ((-1139 |#2|) |#1|)) (-15 -1378 ((-1139 |#2|) |#1|)) (-15 -4315 ((-621 (-1226 |#2|)))) (-15 -3038 ((-3 |#1| "failed") |#1|)) (-15 -1919 ((-3 |#1| "failed") |#1|)) (-15 -2114 ((-3 |#1| "failed") |#1|)) (-15 -2291 ((-112))) (-15 -3260 ((-112))) (-15 -3975 ((-112))) (-15 -2754 ((-112))) (-15 -2647 ((-112))) (-15 -2055 ((-112))) (-15 -1898 ((-112))) (-15 -2392 ((-112))) (-15 -1368 ((-112))) (-15 -3623 ((-112))) (-15 -4257 ((-112))) (-15 -3430 ((-112))) (-15 -2864 ((-112))) (-15 -1942 ((-112))) (-15 -3266 ((-1139 |#2|) |#1|)) (-15 -2443 ((-1139 |#2|) |#1|)) (-15 -4212 ((-665 |#2|) (-1226 |#1|))) (-15 -2870 ((-665 |#2|) (-1226 |#1|))) (-15 -3076 (|#2| (-1226 |#1|))) (-15 -2920 (|#2| (-1226 |#1|))) (-15 -3492 (|#1| (-1226 |#2|) (-1226 |#1|))) (-15 -4263 ((-665 |#2|) (-1226 |#1|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1| (-1226 |#1|))) (-15 -2182 (|#2| |#1|)) (-15 -2248 (|#2| |#1|)) (-15 -2840 (|#2| |#1|)) (-15 -2654 (|#2| |#1|)) (-15 -3841 ((-665 |#2|) |#1| (-1226 |#1|))) (-15 -2303 ((-665 |#2|) |#1| (-1226 |#1|))) (-15 -3277 ((-1226 (-665 |#2|)) (-1226 |#1|)))) (-360 |#2|) (-170)) (T -359))
-((-1942 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-2864 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-3430 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-4257 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-3623 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-1368 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-2392 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-1898 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-2055 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-2647 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-2754 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-3975 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-3260 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-2291 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-4315 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-621 (-1226 *4))) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))))
-(-10 -8 (-15 -2289 ((-1139 |#2|) |#1|)) (-15 -1378 ((-1139 |#2|) |#1|)) (-15 -4315 ((-621 (-1226 |#2|)))) (-15 -3038 ((-3 |#1| "failed") |#1|)) (-15 -1919 ((-3 |#1| "failed") |#1|)) (-15 -2114 ((-3 |#1| "failed") |#1|)) (-15 -2291 ((-112))) (-15 -3260 ((-112))) (-15 -3975 ((-112))) (-15 -2754 ((-112))) (-15 -2647 ((-112))) (-15 -2055 ((-112))) (-15 -1898 ((-112))) (-15 -2392 ((-112))) (-15 -1368 ((-112))) (-15 -3623 ((-112))) (-15 -4257 ((-112))) (-15 -3430 ((-112))) (-15 -2864 ((-112))) (-15 -1942 ((-112))) (-15 -3266 ((-1139 |#2|) |#1|)) (-15 -2443 ((-1139 |#2|) |#1|)) (-15 -4212 ((-665 |#2|) (-1226 |#1|))) (-15 -2870 ((-665 |#2|) (-1226 |#1|))) (-15 -3076 (|#2| (-1226 |#1|))) (-15 -2920 (|#2| (-1226 |#1|))) (-15 -3492 (|#1| (-1226 |#2|) (-1226 |#1|))) (-15 -4263 ((-665 |#2|) (-1226 |#1|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1| (-1226 |#1|))) (-15 -2182 (|#2| |#1|)) (-15 -2248 (|#2| |#1|)) (-15 -2840 (|#2| |#1|)) (-15 -2654 (|#2| |#1|)) (-15 -3841 ((-665 |#2|) |#1| (-1226 |#1|))) (-15 -2303 ((-665 |#2|) |#1| (-1226 |#1|))) (-15 -3277 ((-1226 (-665 |#2|)) (-1226 |#1|))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2207 (((-3 $ "failed")) 37 (|has| |#1| (-541)))) (-2001 (((-3 $ "failed") $ $) 19)) (-3277 (((-1226 (-665 |#1|)) (-1226 $)) 78)) (-3945 (((-1226 $)) 81)) (-1682 (($) 17 T CONST)) (-3219 (((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed")) 40 (|has| |#1| (-541)))) (-3550 (((-3 $ "failed")) 38 (|has| |#1| (-541)))) (-4212 (((-665 |#1|) (-1226 $)) 65)) (-2840 ((|#1| $) 74)) (-3841 (((-665 |#1|) $ (-1226 $)) 76)) (-3038 (((-3 $ "failed") $) 45 (|has| |#1| (-541)))) (-3117 (($ $ (-892)) 28)) (-2182 ((|#1| $) 72)) (-2289 (((-1139 |#1|) $) 42 (|has| |#1| (-541)))) (-3076 ((|#1| (-1226 $)) 67)) (-3266 (((-1139 |#1|) $) 63)) (-1368 (((-112)) 57)) (-3492 (($ (-1226 |#1|) (-1226 $)) 69)) (-2114 (((-3 $ "failed") $) 47 (|has| |#1| (-541)))) (-3123 (((-892)) 80)) (-3601 (((-112)) 54)) (-2943 (($ $ (-892)) 33)) (-3975 (((-112)) 50)) (-2291 (((-112)) 48)) (-2647 (((-112)) 52)) (-1742 (((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed")) 41 (|has| |#1| (-541)))) (-4101 (((-3 $ "failed")) 39 (|has| |#1| (-541)))) (-2870 (((-665 |#1|) (-1226 $)) 66)) (-2654 ((|#1| $) 75)) (-2303 (((-665 |#1|) $ (-1226 $)) 77)) (-1919 (((-3 $ "failed") $) 46 (|has| |#1| (-541)))) (-2884 (($ $ (-892)) 29)) (-2248 ((|#1| $) 73)) (-1378 (((-1139 |#1|) $) 43 (|has| |#1| (-541)))) (-2920 ((|#1| (-1226 $)) 68)) (-2443 (((-1139 |#1|) $) 64)) (-3623 (((-112)) 58)) (-3851 (((-1125) $) 9)) (-3260 (((-112)) 49)) (-2754 (((-112)) 51)) (-2055 (((-112)) 53)) (-3990 (((-1087) $) 10)) (-2392 (((-112)) 56)) (-4263 (((-1226 |#1|) $ (-1226 $)) 71) (((-665 |#1|) (-1226 $) (-1226 $)) 70)) (-4111 (((-621 (-923 |#1|)) (-1226 $)) 79)) (-3293 (($ $ $) 25)) (-1942 (((-112)) 62)) (-3846 (((-834) $) 11)) (-4315 (((-621 (-1226 |#1|))) 44 (|has| |#1| (-541)))) (-4272 (($ $ $ $) 26)) (-3430 (((-112)) 60)) (-2174 (($ $ $) 24)) (-2864 (((-112)) 61)) (-4257 (((-112)) 59)) (-1898 (((-112)) 55)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 30)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
+((-2511 (*1 *1 *1 *1) (-4 *1 (-356))))
+(-13 (-300) (-1183) (-237) (-10 -8 (-15 -2511 ($ $ $)) (-6 -4334) (-6 -4328)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-237) . T) ((-283) . T) ((-300) . T) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 $) . T) ((-703) . T) ((-891) . T) ((-1024 #0#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1183) . T))
+((-3832 (((-112) $ $) 7)) (-2145 ((|#2| $ |#2|) 13)) (-4295 (($ $ (-1124)) 18)) (-3937 ((|#2| $) 14)) (-1358 (($ |#1|) 20) (($ |#1| (-1124)) 19)) (-2479 ((|#1| $) 16)) (-3441 (((-1124) $) 9)) (-3939 (((-1124) $) 15)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-2384 (($ $) 17)) (-2387 (((-112) $ $) 6)))
+(((-357 |#1| |#2|) (-138) (-1066) (-1066)) (T -357))
+((-1358 (*1 *1 *2) (-12 (-4 *1 (-357 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066)))) (-1358 (*1 *1 *2 *3) (-12 (-5 *3 (-1124)) (-4 *1 (-357 *2 *4)) (-4 *2 (-1066)) (-4 *4 (-1066)))) (-4295 (*1 *1 *1 *2) (-12 (-5 *2 (-1124)) (-4 *1 (-357 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066)))) (-2384 (*1 *1 *1) (-12 (-4 *1 (-357 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066)))) (-2479 (*1 *2 *1) (-12 (-4 *1 (-357 *2 *3)) (-4 *3 (-1066)) (-4 *2 (-1066)))) (-3939 (*1 *2 *1) (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-5 *2 (-1124)))) (-3937 (*1 *2 *1) (-12 (-4 *1 (-357 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1066)))) (-2145 (*1 *2 *1 *2) (-12 (-4 *1 (-357 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1066)))))
+(-13 (-1066) (-10 -8 (-15 -1358 ($ |t#1|)) (-15 -1358 ($ |t#1| (-1124))) (-15 -4295 ($ $ (-1124))) (-15 -2384 ($ $)) (-15 -2479 (|t#1| $)) (-15 -3939 ((-1124) $)) (-15 -3937 (|t#2| $)) (-15 -2145 (|t#2| $ |t#2|))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-2145 ((|#1| $ |#1|) 30)) (-4295 (($ $ (-1124)) 22)) (-3706 (((-3 |#1| "failed") $) 29)) (-3937 ((|#1| $) 27)) (-1358 (($ (-381)) 21) (($ (-381) (-1124)) 20)) (-2479 (((-381) $) 24)) (-3441 (((-1124) $) NIL)) (-3939 (((-1124) $) 25)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 19)) (-2384 (($ $) 23)) (-2387 (((-112) $ $) 18)))
+(((-358 |#1|) (-13 (-357 (-381) |#1|) (-10 -8 (-15 -3706 ((-3 |#1| "failed") $)))) (-1066)) (T -358))
+((-3706 (*1 *2 *1) (|partial| -12 (-5 *1 (-358 *2)) (-4 *2 (-1066)))))
+(-13 (-357 (-381) |#1|) (-10 -8 (-15 -3706 ((-3 |#1| "failed") $))))
+((-2893 (((-1225 (-665 |#2|)) (-1225 $)) 61)) (-1657 (((-665 |#2|) (-1225 $)) 120)) (-2872 ((|#2| $) 32)) (-1785 (((-665 |#2|) $ (-1225 $)) 123)) (-2013 (((-3 $ "failed") $) 75)) (-4301 ((|#2| $) 35)) (-1442 (((-1138 |#2|) $) 83)) (-2733 ((|#2| (-1225 $)) 106)) (-3163 (((-1138 |#2|) $) 28)) (-2634 (((-112)) 100)) (-2397 (($ (-1225 |#2|) (-1225 $)) 113)) (-2612 (((-3 $ "failed") $) 79)) (-2915 (((-112)) 95)) (-1670 (((-112)) 90)) (-4034 (((-112)) 53)) (-2686 (((-665 |#2|) (-1225 $)) 118)) (-3458 ((|#2| $) 31)) (-3364 (((-665 |#2|) $ (-1225 $)) 122)) (-1540 (((-3 $ "failed") $) 73)) (-3432 ((|#2| $) 34)) (-2085 (((-1138 |#2|) $) 82)) (-1405 ((|#2| (-1225 $)) 104)) (-4257 (((-1138 |#2|) $) 26)) (-4115 (((-112)) 99)) (-3775 (((-112)) 92)) (-3875 (((-112)) 51)) (-4055 (((-112)) 87)) (-2924 (((-112)) 101)) (-1981 (((-1225 |#2|) $ (-1225 $)) NIL) (((-665 |#2|) (-1225 $) (-1225 $)) 111)) (-3083 (((-112)) 97)) (-3445 (((-621 (-1225 |#2|))) 86)) (-3011 (((-112)) 98)) (-3338 (((-112)) 96)) (-2959 (((-112)) 46)) (-1379 (((-112)) 102)))
+(((-359 |#1| |#2|) (-10 -8 (-15 -1442 ((-1138 |#2|) |#1|)) (-15 -2085 ((-1138 |#2|) |#1|)) (-15 -3445 ((-621 (-1225 |#2|)))) (-15 -2013 ((-3 |#1| "failed") |#1|)) (-15 -1540 ((-3 |#1| "failed") |#1|)) (-15 -2612 ((-3 |#1| "failed") |#1|)) (-15 -1670 ((-112))) (-15 -3775 ((-112))) (-15 -2915 ((-112))) (-15 -3875 ((-112))) (-15 -4034 ((-112))) (-15 -4055 ((-112))) (-15 -1379 ((-112))) (-15 -2924 ((-112))) (-15 -2634 ((-112))) (-15 -4115 ((-112))) (-15 -2959 ((-112))) (-15 -3011 ((-112))) (-15 -3338 ((-112))) (-15 -3083 ((-112))) (-15 -3163 ((-1138 |#2|) |#1|)) (-15 -4257 ((-1138 |#2|) |#1|)) (-15 -1657 ((-665 |#2|) (-1225 |#1|))) (-15 -2686 ((-665 |#2|) (-1225 |#1|))) (-15 -2733 (|#2| (-1225 |#1|))) (-15 -1405 (|#2| (-1225 |#1|))) (-15 -2397 (|#1| (-1225 |#2|) (-1225 |#1|))) (-15 -1981 ((-665 |#2|) (-1225 |#1|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1| (-1225 |#1|))) (-15 -4301 (|#2| |#1|)) (-15 -3432 (|#2| |#1|)) (-15 -2872 (|#2| |#1|)) (-15 -3458 (|#2| |#1|)) (-15 -1785 ((-665 |#2|) |#1| (-1225 |#1|))) (-15 -3364 ((-665 |#2|) |#1| (-1225 |#1|))) (-15 -2893 ((-1225 (-665 |#2|)) (-1225 |#1|)))) (-360 |#2|) (-170)) (T -359))
+((-3083 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-3338 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-3011 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-2959 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-4115 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-2634 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-2924 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-1379 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-4055 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-4034 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-3875 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-2915 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-3775 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-1670 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))) (-3445 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-621 (-1225 *4))) (-5 *1 (-359 *3 *4)) (-4 *3 (-360 *4)))))
+(-10 -8 (-15 -1442 ((-1138 |#2|) |#1|)) (-15 -2085 ((-1138 |#2|) |#1|)) (-15 -3445 ((-621 (-1225 |#2|)))) (-15 -2013 ((-3 |#1| "failed") |#1|)) (-15 -1540 ((-3 |#1| "failed") |#1|)) (-15 -2612 ((-3 |#1| "failed") |#1|)) (-15 -1670 ((-112))) (-15 -3775 ((-112))) (-15 -2915 ((-112))) (-15 -3875 ((-112))) (-15 -4034 ((-112))) (-15 -4055 ((-112))) (-15 -1379 ((-112))) (-15 -2924 ((-112))) (-15 -2634 ((-112))) (-15 -4115 ((-112))) (-15 -2959 ((-112))) (-15 -3011 ((-112))) (-15 -3338 ((-112))) (-15 -3083 ((-112))) (-15 -3163 ((-1138 |#2|) |#1|)) (-15 -4257 ((-1138 |#2|) |#1|)) (-15 -1657 ((-665 |#2|) (-1225 |#1|))) (-15 -2686 ((-665 |#2|) (-1225 |#1|))) (-15 -2733 (|#2| (-1225 |#1|))) (-15 -1405 (|#2| (-1225 |#1|))) (-15 -2397 (|#1| (-1225 |#2|) (-1225 |#1|))) (-15 -1981 ((-665 |#2|) (-1225 |#1|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1| (-1225 |#1|))) (-15 -4301 (|#2| |#1|)) (-15 -3432 (|#2| |#1|)) (-15 -2872 (|#2| |#1|)) (-15 -3458 (|#2| |#1|)) (-15 -1785 ((-665 |#2|) |#1| (-1225 |#1|))) (-15 -3364 ((-665 |#2|) |#1| (-1225 |#1|))) (-15 -2893 ((-1225 (-665 |#2|)) (-1225 |#1|))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-1951 (((-3 $ "failed")) 37 (|has| |#1| (-541)))) (-2416 (((-3 $ "failed") $ $) 19)) (-2893 (((-1225 (-665 |#1|)) (-1225 $)) 78)) (-3349 (((-1225 $)) 81)) (-3034 (($) 17 T CONST)) (-1760 (((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed")) 40 (|has| |#1| (-541)))) (-3372 (((-3 $ "failed")) 38 (|has| |#1| (-541)))) (-1657 (((-665 |#1|) (-1225 $)) 65)) (-2872 ((|#1| $) 74)) (-1785 (((-665 |#1|) $ (-1225 $)) 76)) (-2013 (((-3 $ "failed") $) 45 (|has| |#1| (-541)))) (-2039 (($ $ (-892)) 28)) (-4301 ((|#1| $) 72)) (-1442 (((-1138 |#1|) $) 42 (|has| |#1| (-541)))) (-2733 ((|#1| (-1225 $)) 67)) (-3163 (((-1138 |#1|) $) 63)) (-2634 (((-112)) 57)) (-2397 (($ (-1225 |#1|) (-1225 $)) 69)) (-2612 (((-3 $ "failed") $) 47 (|has| |#1| (-541)))) (-3121 (((-892)) 80)) (-2639 (((-112)) 54)) (-3764 (($ $ (-892)) 33)) (-2915 (((-112)) 50)) (-1670 (((-112)) 48)) (-4034 (((-112)) 52)) (-4001 (((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed")) 41 (|has| |#1| (-541)))) (-3583 (((-3 $ "failed")) 39 (|has| |#1| (-541)))) (-2686 (((-665 |#1|) (-1225 $)) 66)) (-3458 ((|#1| $) 75)) (-3364 (((-665 |#1|) $ (-1225 $)) 77)) (-1540 (((-3 $ "failed") $) 46 (|has| |#1| (-541)))) (-4304 (($ $ (-892)) 29)) (-3432 ((|#1| $) 73)) (-2085 (((-1138 |#1|) $) 43 (|has| |#1| (-541)))) (-1405 ((|#1| (-1225 $)) 68)) (-4257 (((-1138 |#1|) $) 64)) (-4115 (((-112)) 58)) (-3441 (((-1124) $) 9)) (-3775 (((-112)) 49)) (-3875 (((-112)) 51)) (-4055 (((-112)) 53)) (-3988 (((-1086) $) 10)) (-2924 (((-112)) 56)) (-1981 (((-1225 |#1|) $ (-1225 $)) 71) (((-665 |#1|) (-1225 $) (-1225 $)) 70)) (-3166 (((-621 (-923 |#1|)) (-1225 $)) 79)) (-3870 (($ $ $) 25)) (-3083 (((-112)) 62)) (-3845 (((-834) $) 11)) (-3445 (((-621 (-1225 |#1|))) 44 (|has| |#1| (-541)))) (-3515 (($ $ $ $) 26)) (-3011 (((-112)) 60)) (-3485 (($ $ $) 24)) (-3338 (((-112)) 61)) (-2959 (((-112)) 59)) (-1379 (((-112)) 55)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 30)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
(((-360 |#1|) (-138) (-170)) (T -360))
-((-3945 (*1 *2) (-12 (-4 *3 (-170)) (-5 *2 (-1226 *1)) (-4 *1 (-360 *3)))) (-3123 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-892)))) (-4111 (*1 *2 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170)) (-5 *2 (-621 (-923 *4))))) (-3277 (*1 *2 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170)) (-5 *2 (-1226 (-665 *4))))) (-2303 (*1 *2 *1 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170)) (-5 *2 (-665 *4)))) (-3841 (*1 *2 *1 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170)) (-5 *2 (-665 *4)))) (-2654 (*1 *2 *1) (-12 (-4 *1 (-360 *2)) (-4 *2 (-170)))) (-2840 (*1 *2 *1) (-12 (-4 *1 (-360 *2)) (-4 *2 (-170)))) (-2248 (*1 *2 *1) (-12 (-4 *1 (-360 *2)) (-4 *2 (-170)))) (-2182 (*1 *2 *1) (-12 (-4 *1 (-360 *2)) (-4 *2 (-170)))) (-4263 (*1 *2 *1 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170)) (-5 *2 (-1226 *4)))) (-4263 (*1 *2 *3 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170)) (-5 *2 (-665 *4)))) (-3492 (*1 *1 *2 *3) (-12 (-5 *2 (-1226 *4)) (-5 *3 (-1226 *1)) (-4 *4 (-170)) (-4 *1 (-360 *4)))) (-2920 (*1 *2 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *2)) (-4 *2 (-170)))) (-3076 (*1 *2 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *2)) (-4 *2 (-170)))) (-2870 (*1 *2 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170)) (-5 *2 (-665 *4)))) (-4212 (*1 *2 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170)) (-5 *2 (-665 *4)))) (-2443 (*1 *2 *1) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-1139 *3)))) (-3266 (*1 *2 *1) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-1139 *3)))) (-1942 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-2864 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-3430 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-4257 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-3623 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-1368 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-2392 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-1898 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-3601 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-2055 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-2647 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-2754 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-3975 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-3260 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-2291 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-2114 (*1 *1 *1) (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-170)) (-4 *2 (-541)))) (-1919 (*1 *1 *1) (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-170)) (-4 *2 (-541)))) (-3038 (*1 *1 *1) (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-170)) (-4 *2 (-541)))) (-4315 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-4 *3 (-541)) (-5 *2 (-621 (-1226 *3))))) (-1378 (*1 *2 *1) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-4 *3 (-541)) (-5 *2 (-1139 *3)))) (-2289 (*1 *2 *1) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-4 *3 (-541)) (-5 *2 (-1139 *3)))) (-1742 (*1 *2) (|partial| -12 (-4 *3 (-541)) (-4 *3 (-170)) (-5 *2 (-2 (|:| |particular| *1) (|:| -1949 (-621 *1)))) (-4 *1 (-360 *3)))) (-3219 (*1 *2) (|partial| -12 (-4 *3 (-541)) (-4 *3 (-170)) (-5 *2 (-2 (|:| |particular| *1) (|:| -1949 (-621 *1)))) (-4 *1 (-360 *3)))) (-4101 (*1 *1) (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-541)) (-4 *2 (-170)))) (-3550 (*1 *1) (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-541)) (-4 *2 (-170)))) (-2207 (*1 *1) (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-541)) (-4 *2 (-170)))))
-(-13 (-721 |t#1|) (-10 -8 (-15 -3945 ((-1226 $))) (-15 -3123 ((-892))) (-15 -4111 ((-621 (-923 |t#1|)) (-1226 $))) (-15 -3277 ((-1226 (-665 |t#1|)) (-1226 $))) (-15 -2303 ((-665 |t#1|) $ (-1226 $))) (-15 -3841 ((-665 |t#1|) $ (-1226 $))) (-15 -2654 (|t#1| $)) (-15 -2840 (|t#1| $)) (-15 -2248 (|t#1| $)) (-15 -2182 (|t#1| $)) (-15 -4263 ((-1226 |t#1|) $ (-1226 $))) (-15 -4263 ((-665 |t#1|) (-1226 $) (-1226 $))) (-15 -3492 ($ (-1226 |t#1|) (-1226 $))) (-15 -2920 (|t#1| (-1226 $))) (-15 -3076 (|t#1| (-1226 $))) (-15 -2870 ((-665 |t#1|) (-1226 $))) (-15 -4212 ((-665 |t#1|) (-1226 $))) (-15 -2443 ((-1139 |t#1|) $)) (-15 -3266 ((-1139 |t#1|) $)) (-15 -1942 ((-112))) (-15 -2864 ((-112))) (-15 -3430 ((-112))) (-15 -4257 ((-112))) (-15 -3623 ((-112))) (-15 -1368 ((-112))) (-15 -2392 ((-112))) (-15 -1898 ((-112))) (-15 -3601 ((-112))) (-15 -2055 ((-112))) (-15 -2647 ((-112))) (-15 -2754 ((-112))) (-15 -3975 ((-112))) (-15 -3260 ((-112))) (-15 -2291 ((-112))) (IF (|has| |t#1| (-541)) (PROGN (-15 -2114 ((-3 $ "failed") $)) (-15 -1919 ((-3 $ "failed") $)) (-15 -3038 ((-3 $ "failed") $)) (-15 -4315 ((-621 (-1226 |t#1|)))) (-15 -1378 ((-1139 |t#1|) $)) (-15 -2289 ((-1139 |t#1|) $)) (-15 -1742 ((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed"))) (-15 -3219 ((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed"))) (-15 -4101 ((-3 $ "failed"))) (-15 -3550 ((-3 $ "failed"))) (-15 -2207 ((-3 $ "failed"))) (-6 -4334)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-694 |#1|) . T) ((-697) . T) ((-721 |#1|) . T) ((-738) . T) ((-1024 |#1|) . T) ((-1067) . T))
-((-3834 (((-112) $ $) 7)) (-3614 (((-747)) 16)) (-3239 (($) 13)) (-1881 (((-892) $) 14)) (-3851 (((-1125) $) 9)) (-3493 (($ (-892)) 15)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-2389 (((-112) $ $) 6)))
+((-3349 (*1 *2) (-12 (-4 *3 (-170)) (-5 *2 (-1225 *1)) (-4 *1 (-360 *3)))) (-3121 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-892)))) (-3166 (*1 *2 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170)) (-5 *2 (-621 (-923 *4))))) (-2893 (*1 *2 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170)) (-5 *2 (-1225 (-665 *4))))) (-3364 (*1 *2 *1 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170)) (-5 *2 (-665 *4)))) (-1785 (*1 *2 *1 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170)) (-5 *2 (-665 *4)))) (-3458 (*1 *2 *1) (-12 (-4 *1 (-360 *2)) (-4 *2 (-170)))) (-2872 (*1 *2 *1) (-12 (-4 *1 (-360 *2)) (-4 *2 (-170)))) (-3432 (*1 *2 *1) (-12 (-4 *1 (-360 *2)) (-4 *2 (-170)))) (-4301 (*1 *2 *1) (-12 (-4 *1 (-360 *2)) (-4 *2 (-170)))) (-1981 (*1 *2 *1 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170)) (-5 *2 (-1225 *4)))) (-1981 (*1 *2 *3 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170)) (-5 *2 (-665 *4)))) (-2397 (*1 *1 *2 *3) (-12 (-5 *2 (-1225 *4)) (-5 *3 (-1225 *1)) (-4 *4 (-170)) (-4 *1 (-360 *4)))) (-1405 (*1 *2 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *2)) (-4 *2 (-170)))) (-2733 (*1 *2 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *2)) (-4 *2 (-170)))) (-2686 (*1 *2 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170)) (-5 *2 (-665 *4)))) (-1657 (*1 *2 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170)) (-5 *2 (-665 *4)))) (-4257 (*1 *2 *1) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-1138 *3)))) (-3163 (*1 *2 *1) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-1138 *3)))) (-3083 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-3338 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-3011 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-2959 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-4115 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-2634 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-2924 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-1379 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-2639 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-4055 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-4034 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-3875 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-2915 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-3775 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-1670 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))) (-2612 (*1 *1 *1) (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-170)) (-4 *2 (-541)))) (-1540 (*1 *1 *1) (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-170)) (-4 *2 (-541)))) (-2013 (*1 *1 *1) (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-170)) (-4 *2 (-541)))) (-3445 (*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-4 *3 (-541)) (-5 *2 (-621 (-1225 *3))))) (-2085 (*1 *2 *1) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-4 *3 (-541)) (-5 *2 (-1138 *3)))) (-1442 (*1 *2 *1) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-4 *3 (-541)) (-5 *2 (-1138 *3)))) (-4001 (*1 *2) (|partial| -12 (-4 *3 (-541)) (-4 *3 (-170)) (-5 *2 (-2 (|:| |particular| *1) (|:| -2619 (-621 *1)))) (-4 *1 (-360 *3)))) (-1760 (*1 *2) (|partial| -12 (-4 *3 (-541)) (-4 *3 (-170)) (-5 *2 (-2 (|:| |particular| *1) (|:| -2619 (-621 *1)))) (-4 *1 (-360 *3)))) (-3583 (*1 *1) (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-541)) (-4 *2 (-170)))) (-3372 (*1 *1) (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-541)) (-4 *2 (-170)))) (-1951 (*1 *1) (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-541)) (-4 *2 (-170)))))
+(-13 (-721 |t#1|) (-10 -8 (-15 -3349 ((-1225 $))) (-15 -3121 ((-892))) (-15 -3166 ((-621 (-923 |t#1|)) (-1225 $))) (-15 -2893 ((-1225 (-665 |t#1|)) (-1225 $))) (-15 -3364 ((-665 |t#1|) $ (-1225 $))) (-15 -1785 ((-665 |t#1|) $ (-1225 $))) (-15 -3458 (|t#1| $)) (-15 -2872 (|t#1| $)) (-15 -3432 (|t#1| $)) (-15 -4301 (|t#1| $)) (-15 -1981 ((-1225 |t#1|) $ (-1225 $))) (-15 -1981 ((-665 |t#1|) (-1225 $) (-1225 $))) (-15 -2397 ($ (-1225 |t#1|) (-1225 $))) (-15 -1405 (|t#1| (-1225 $))) (-15 -2733 (|t#1| (-1225 $))) (-15 -2686 ((-665 |t#1|) (-1225 $))) (-15 -1657 ((-665 |t#1|) (-1225 $))) (-15 -4257 ((-1138 |t#1|) $)) (-15 -3163 ((-1138 |t#1|) $)) (-15 -3083 ((-112))) (-15 -3338 ((-112))) (-15 -3011 ((-112))) (-15 -2959 ((-112))) (-15 -4115 ((-112))) (-15 -2634 ((-112))) (-15 -2924 ((-112))) (-15 -1379 ((-112))) (-15 -2639 ((-112))) (-15 -4055 ((-112))) (-15 -4034 ((-112))) (-15 -3875 ((-112))) (-15 -2915 ((-112))) (-15 -3775 ((-112))) (-15 -1670 ((-112))) (IF (|has| |t#1| (-541)) (PROGN (-15 -2612 ((-3 $ "failed") $)) (-15 -1540 ((-3 $ "failed") $)) (-15 -2013 ((-3 $ "failed") $)) (-15 -3445 ((-621 (-1225 |t#1|)))) (-15 -2085 ((-1138 |t#1|) $)) (-15 -1442 ((-1138 |t#1|) $)) (-15 -4001 ((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed"))) (-15 -1760 ((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed"))) (-15 -3583 ((-3 $ "failed"))) (-15 -3372 ((-3 $ "failed"))) (-15 -1951 ((-3 $ "failed"))) (-6 -4333)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-694 |#1|) . T) ((-697) . T) ((-721 |#1|) . T) ((-738) . T) ((-1024 |#1|) . T) ((-1066) . T))
+((-3832 (((-112) $ $) 7)) (-3614 (((-747)) 16)) (-3237 (($) 13)) (-3309 (((-892) $) 14)) (-3441 (((-1124) $) 9)) (-3494 (($ (-892)) 15)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-2387 (((-112) $ $) 6)))
(((-361) (-138)) (T -361))
-((-3614 (*1 *2) (-12 (-4 *1 (-361)) (-5 *2 (-747)))) (-3493 (*1 *1 *2) (-12 (-5 *2 (-892)) (-4 *1 (-361)))) (-1881 (*1 *2 *1) (-12 (-4 *1 (-361)) (-5 *2 (-892)))) (-3239 (*1 *1) (-4 *1 (-361))))
-(-13 (-1067) (-10 -8 (-15 -3614 ((-747))) (-15 -3493 ($ (-892))) (-15 -1881 ((-892) $)) (-15 -3239 ($))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-1738 (((-665 |#2|) (-1226 $)) 40)) (-3492 (($ (-1226 |#2|) (-1226 $)) 34)) (-3506 (((-665 |#2|) $ (-1226 $)) 42)) (-3602 ((|#2| (-1226 $)) 13)) (-4263 (((-1226 |#2|) $ (-1226 $)) NIL) (((-665 |#2|) (-1226 $) (-1226 $)) 25)))
-(((-362 |#1| |#2| |#3|) (-10 -8 (-15 -1738 ((-665 |#2|) (-1226 |#1|))) (-15 -3602 (|#2| (-1226 |#1|))) (-15 -3492 (|#1| (-1226 |#2|) (-1226 |#1|))) (-15 -4263 ((-665 |#2|) (-1226 |#1|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1| (-1226 |#1|))) (-15 -3506 ((-665 |#2|) |#1| (-1226 |#1|)))) (-363 |#2| |#3|) (-170) (-1202 |#2|)) (T -362))
-NIL
-(-10 -8 (-15 -1738 ((-665 |#2|) (-1226 |#1|))) (-15 -3602 (|#2| (-1226 |#1|))) (-15 -3492 (|#1| (-1226 |#2|) (-1226 |#1|))) (-15 -4263 ((-665 |#2|) (-1226 |#1|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1| (-1226 |#1|))) (-15 -3506 ((-665 |#2|) |#1| (-1226 |#1|))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-1738 (((-665 |#1|) (-1226 $)) 44)) (-2906 ((|#1| $) 50)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-3492 (($ (-1226 |#1|) (-1226 $)) 46)) (-3506 (((-665 |#1|) $ (-1226 $)) 51)) (-2114 (((-3 $ "failed") $) 32)) (-3123 (((-892)) 52)) (-2675 (((-112) $) 30)) (-3630 ((|#1| $) 49)) (-3788 ((|#2| $) 42 (|has| |#1| (-356)))) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3602 ((|#1| (-1226 $)) 45)) (-4263 (((-1226 |#1|) $ (-1226 $)) 48) (((-665 |#1|) (-1226 $) (-1226 $)) 47)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 35)) (-2210 (((-3 $ "failed") $) 41 (|has| |#1| (-143)))) (-4154 ((|#2| $) 43)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 37) (($ |#1| $) 36)))
-(((-363 |#1| |#2|) (-138) (-170) (-1202 |t#1|)) (T -363))
-((-3123 (*1 *2) (-12 (-4 *1 (-363 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1202 *3)) (-5 *2 (-892)))) (-3506 (*1 *2 *1 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-363 *4 *5)) (-4 *4 (-170)) (-4 *5 (-1202 *4)) (-5 *2 (-665 *4)))) (-2906 (*1 *2 *1) (-12 (-4 *1 (-363 *2 *3)) (-4 *3 (-1202 *2)) (-4 *2 (-170)))) (-3630 (*1 *2 *1) (-12 (-4 *1 (-363 *2 *3)) (-4 *3 (-1202 *2)) (-4 *2 (-170)))) (-4263 (*1 *2 *1 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-363 *4 *5)) (-4 *4 (-170)) (-4 *5 (-1202 *4)) (-5 *2 (-1226 *4)))) (-4263 (*1 *2 *3 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-363 *4 *5)) (-4 *4 (-170)) (-4 *5 (-1202 *4)) (-5 *2 (-665 *4)))) (-3492 (*1 *1 *2 *3) (-12 (-5 *2 (-1226 *4)) (-5 *3 (-1226 *1)) (-4 *4 (-170)) (-4 *1 (-363 *4 *5)) (-4 *5 (-1202 *4)))) (-3602 (*1 *2 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-363 *2 *4)) (-4 *4 (-1202 *2)) (-4 *2 (-170)))) (-1738 (*1 *2 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-363 *4 *5)) (-4 *4 (-170)) (-4 *5 (-1202 *4)) (-5 *2 (-665 *4)))) (-4154 (*1 *2 *1) (-12 (-4 *1 (-363 *3 *2)) (-4 *3 (-170)) (-4 *2 (-1202 *3)))) (-3788 (*1 *2 *1) (-12 (-4 *1 (-363 *3 *2)) (-4 *3 (-170)) (-4 *3 (-356)) (-4 *2 (-1202 *3)))))
-(-13 (-38 |t#1|) (-10 -8 (-15 -3123 ((-892))) (-15 -3506 ((-665 |t#1|) $ (-1226 $))) (-15 -2906 (|t#1| $)) (-15 -3630 (|t#1| $)) (-15 -4263 ((-1226 |t#1|) $ (-1226 $))) (-15 -4263 ((-665 |t#1|) (-1226 $) (-1226 $))) (-15 -3492 ($ (-1226 |t#1|) (-1226 $))) (-15 -3602 (|t#1| (-1226 $))) (-15 -1738 ((-665 |t#1|) (-1226 $))) (-15 -4154 (|t#2| $)) (IF (|has| |t#1| (-356)) (-15 -3788 (|t#2| $)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-143)) (-6 (-143)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 |#1|) . T) ((-703) . T) ((-1024 |#1|) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-3804 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 23)) (-2557 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 15)) (-2797 ((|#4| (-1 |#3| |#1|) |#2|) 21)))
-(((-364 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2797 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2557 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3804 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1180) (-366 |#1|) (-1180) (-366 |#3|)) (T -364))
-((-3804 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1180)) (-4 *5 (-1180)) (-4 *2 (-366 *5)) (-5 *1 (-364 *6 *4 *5 *2)) (-4 *4 (-366 *6)))) (-2557 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1180)) (-4 *2 (-1180)) (-5 *1 (-364 *5 *4 *2 *6)) (-4 *4 (-366 *5)) (-4 *6 (-366 *2)))) (-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1180)) (-4 *6 (-1180)) (-4 *2 (-366 *6)) (-5 *1 (-364 *5 *4 *6 *2)) (-4 *4 (-366 *5)))))
-(-10 -7 (-15 -2797 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2557 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3804 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
-((-4142 (((-112) (-1 (-112) |#2| |#2|) $) NIL) (((-112) $) 18)) (-4311 (($ (-1 (-112) |#2| |#2|) $) NIL) (($ $) 28)) (-3193 (($ (-1 (-112) |#2| |#2|) $) 27) (($ $) 22)) (-3064 (($ $) 25)) (-2883 (((-549) (-1 (-112) |#2|) $) NIL) (((-549) |#2| $) 11) (((-549) |#2| $ (-549)) NIL)) (-3890 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 20)))
-(((-365 |#1| |#2|) (-10 -8 (-15 -4311 (|#1| |#1|)) (-15 -4311 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4142 ((-112) |#1|)) (-15 -3193 (|#1| |#1|)) (-15 -3890 (|#1| |#1| |#1|)) (-15 -2883 ((-549) |#2| |#1| (-549))) (-15 -2883 ((-549) |#2| |#1|)) (-15 -2883 ((-549) (-1 (-112) |#2|) |#1|)) (-15 -4142 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3193 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3064 (|#1| |#1|)) (-15 -3890 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|))) (-366 |#2|) (-1180)) (T -365))
-NIL
-(-10 -8 (-15 -4311 (|#1| |#1|)) (-15 -4311 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4142 ((-112) |#1|)) (-15 -3193 (|#1| |#1|)) (-15 -3890 (|#1| |#1| |#1|)) (-15 -2883 ((-549) |#2| |#1| (-549))) (-15 -2883 ((-549) |#2| |#1|)) (-15 -2883 ((-549) (-1 (-112) |#2|) |#1|)) (-15 -4142 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3193 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3064 (|#1| |#1|)) (-15 -3890 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-1535 (((-1231) $ (-549) (-549)) 40 (|has| $ (-6 -4338)))) (-4142 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-823)))) (-4311 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4338))) (($ $) 88 (-12 (|has| |#1| (-823)) (|has| $ (-6 -4338))))) (-3193 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-823)))) (-1584 (((-112) $ (-747)) 8)) (-2254 ((|#1| $ (-549) |#1|) 52 (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) 58 (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4337)))) (-1682 (($) 7 T CONST)) (-1585 (($ $) 90 (|has| $ (-6 -4338)))) (-3064 (($ $) 100)) (-3676 (($ $) 78 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ |#1| $) 77 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4337)))) (-1879 ((|#1| $ (-549) |#1|) 53 (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) 51)) (-2883 (((-549) (-1 (-112) |#1|) $) 97) (((-549) |#1| $) 96 (|has| |#1| (-1067))) (((-549) |#1| $ (-549)) 95 (|has| |#1| (-1067)))) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3743 (($ (-747) |#1|) 69)) (-3194 (((-112) $ (-747)) 9)) (-4031 (((-549) $) 43 (|has| (-549) (-823)))) (-2863 (($ $ $) 87 (|has| |#1| (-823)))) (-3890 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-823)))) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1569 (((-549) $) 44 (|has| (-549) (-823)))) (-3575 (($ $ $) 86 (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-2616 (($ |#1| $ (-549)) 60) (($ $ $ (-549)) 59)) (-3303 (((-621 (-549)) $) 46)) (-3761 (((-112) (-549) $) 47)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-3646 ((|#1| $) 42 (|has| (-549) (-823)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-1642 (($ $ |#1|) 41 (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-2265 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) 48)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#1| $ (-549) |#1|) 50) ((|#1| $ (-549)) 49) (($ $ (-1193 (-549))) 63)) (-2167 (($ $ (-549)) 62) (($ $ (-1193 (-549))) 61)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2730 (($ $ $ (-549)) 91 (|has| $ (-6 -4338)))) (-2281 (($ $) 13)) (-2845 (((-525) $) 79 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 70)) (-1952 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-621 $)) 65)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) 84 (|has| |#1| (-823)))) (-2425 (((-112) $ $) 83 (|has| |#1| (-823)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-2438 (((-112) $ $) 85 (|has| |#1| (-823)))) (-2412 (((-112) $ $) 82 (|has| |#1| (-823)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-366 |#1|) (-138) (-1180)) (T -366))
-((-3890 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-366 *3)) (-4 *3 (-1180)))) (-3064 (*1 *1 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-1180)))) (-3193 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-366 *3)) (-4 *3 (-1180)))) (-4142 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-366 *4)) (-4 *4 (-1180)) (-5 *2 (-112)))) (-2883 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-366 *4)) (-4 *4 (-1180)) (-5 *2 (-549)))) (-2883 (*1 *2 *3 *1) (-12 (-4 *1 (-366 *3)) (-4 *3 (-1180)) (-4 *3 (-1067)) (-5 *2 (-549)))) (-2883 (*1 *2 *3 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-366 *3)) (-4 *3 (-1180)) (-4 *3 (-1067)))) (-3890 (*1 *1 *1 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-1180)) (-4 *2 (-823)))) (-3193 (*1 *1 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-1180)) (-4 *2 (-823)))) (-4142 (*1 *2 *1) (-12 (-4 *1 (-366 *3)) (-4 *3 (-1180)) (-4 *3 (-823)) (-5 *2 (-112)))) (-2730 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-549)) (|has| *1 (-6 -4338)) (-4 *1 (-366 *3)) (-4 *3 (-1180)))) (-1585 (*1 *1 *1) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-366 *2)) (-4 *2 (-1180)))) (-4311 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4338)) (-4 *1 (-366 *3)) (-4 *3 (-1180)))) (-4311 (*1 *1 *1) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-366 *2)) (-4 *2 (-1180)) (-4 *2 (-823)))))
-(-13 (-627 |t#1|) (-10 -8 (-6 -4337) (-15 -3890 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -3064 ($ $)) (-15 -3193 ($ (-1 (-112) |t#1| |t#1|) $)) (-15 -4142 ((-112) (-1 (-112) |t#1| |t#1|) $)) (-15 -2883 ((-549) (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1067)) (PROGN (-15 -2883 ((-549) |t#1| $)) (-15 -2883 ((-549) |t#1| $ (-549)))) |%noBranch|) (IF (|has| |t#1| (-823)) (PROGN (-6 (-823)) (-15 -3890 ($ $ $)) (-15 -3193 ($ $)) (-15 -4142 ((-112) $))) |%noBranch|) (IF (|has| $ (-6 -4338)) (PROGN (-15 -2730 ($ $ $ (-549))) (-15 -1585 ($ $)) (-15 -4311 ($ (-1 (-112) |t#1| |t#1|) $)) (IF (|has| |t#1| (-823)) (-15 -4311 ($ $)) |%noBranch|)) |%noBranch|)))
-(((-34) . T) ((-101) -1536 (|has| |#1| (-1067)) (|has| |#1| (-823))) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-823)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-627 |#1|) . T) ((-823) |has| |#1| (-823)) ((-1067) -1536 (|has| |#1| (-1067)) (|has| |#1| (-823))) ((-1180) . T))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-3304 (((-621 |#1|) $) 32)) (-3210 (($ $ (-747)) 33)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-1869 (((-1250 |#1| |#2|) (-1250 |#1| |#2|) $) 36)) (-4273 (($ $) 34)) (-2694 (((-1250 |#1| |#2|) (-1250 |#1| |#2|) $) 37)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-2686 (($ $ |#1| $) 31) (($ $ (-621 |#1|) (-621 $)) 30)) (-3701 (((-747) $) 38)) (-3854 (($ $ $) 29)) (-3846 (((-834) $) 11) (($ |#1|) 41) (((-1241 |#1| |#2|) $) 40) (((-1250 |#1| |#2|) $) 39)) (-1570 ((|#2| (-1250 |#1| |#2|) $) 42)) (-3276 (($) 18 T CONST)) (-3037 (($ (-648 |#1|)) 35)) (-2389 (((-112) $ $) 6)) (-2513 (($ $ |#2|) 28 (|has| |#2| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ |#2| $) 23) (($ $ |#2|) 26)))
+((-3614 (*1 *2) (-12 (-4 *1 (-361)) (-5 *2 (-747)))) (-3494 (*1 *1 *2) (-12 (-5 *2 (-892)) (-4 *1 (-361)))) (-3309 (*1 *2 *1) (-12 (-4 *1 (-361)) (-5 *2 (-892)))) (-3237 (*1 *1) (-4 *1 (-361))))
+(-13 (-1066) (-10 -8 (-15 -3614 ((-747))) (-15 -3494 ($ (-892))) (-15 -3309 ((-892) $)) (-15 -3237 ($))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-1789 (((-665 |#2|) (-1225 $)) 40)) (-2397 (($ (-1225 |#2|) (-1225 $)) 34)) (-1408 (((-665 |#2|) $ (-1225 $)) 42)) (-2740 ((|#2| (-1225 $)) 13)) (-1981 (((-1225 |#2|) $ (-1225 $)) NIL) (((-665 |#2|) (-1225 $) (-1225 $)) 25)))
+(((-362 |#1| |#2| |#3|) (-10 -8 (-15 -1789 ((-665 |#2|) (-1225 |#1|))) (-15 -2740 (|#2| (-1225 |#1|))) (-15 -2397 (|#1| (-1225 |#2|) (-1225 |#1|))) (-15 -1981 ((-665 |#2|) (-1225 |#1|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1| (-1225 |#1|))) (-15 -1408 ((-665 |#2|) |#1| (-1225 |#1|)))) (-363 |#2| |#3|) (-170) (-1201 |#2|)) (T -362))
+NIL
+(-10 -8 (-15 -1789 ((-665 |#2|) (-1225 |#1|))) (-15 -2740 (|#2| (-1225 |#1|))) (-15 -2397 (|#1| (-1225 |#2|) (-1225 |#1|))) (-15 -1981 ((-665 |#2|) (-1225 |#1|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1| (-1225 |#1|))) (-15 -1408 ((-665 |#2|) |#1| (-1225 |#1|))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-1789 (((-665 |#1|) (-1225 $)) 44)) (-2904 ((|#1| $) 50)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2397 (($ (-1225 |#1|) (-1225 $)) 46)) (-1408 (((-665 |#1|) $ (-1225 $)) 51)) (-2612 (((-3 $ "failed") $) 32)) (-3121 (((-892)) 52)) (-2297 (((-112) $) 30)) (-2469 ((|#1| $) 49)) (-3514 ((|#2| $) 42 (|has| |#1| (-356)))) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2740 ((|#1| (-1225 $)) 45)) (-1981 (((-1225 |#1|) $ (-1225 $)) 48) (((-665 |#1|) (-1225 $) (-1225 $)) 47)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 35)) (-2343 (((-3 $ "failed") $) 41 (|has| |#1| (-143)))) (-4019 ((|#2| $) 43)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 37) (($ |#1| $) 36)))
+(((-363 |#1| |#2|) (-138) (-170) (-1201 |t#1|)) (T -363))
+((-3121 (*1 *2) (-12 (-4 *1 (-363 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1201 *3)) (-5 *2 (-892)))) (-1408 (*1 *2 *1 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-363 *4 *5)) (-4 *4 (-170)) (-4 *5 (-1201 *4)) (-5 *2 (-665 *4)))) (-2904 (*1 *2 *1) (-12 (-4 *1 (-363 *2 *3)) (-4 *3 (-1201 *2)) (-4 *2 (-170)))) (-2469 (*1 *2 *1) (-12 (-4 *1 (-363 *2 *3)) (-4 *3 (-1201 *2)) (-4 *2 (-170)))) (-1981 (*1 *2 *1 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-363 *4 *5)) (-4 *4 (-170)) (-4 *5 (-1201 *4)) (-5 *2 (-1225 *4)))) (-1981 (*1 *2 *3 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-363 *4 *5)) (-4 *4 (-170)) (-4 *5 (-1201 *4)) (-5 *2 (-665 *4)))) (-2397 (*1 *1 *2 *3) (-12 (-5 *2 (-1225 *4)) (-5 *3 (-1225 *1)) (-4 *4 (-170)) (-4 *1 (-363 *4 *5)) (-4 *5 (-1201 *4)))) (-2740 (*1 *2 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-363 *2 *4)) (-4 *4 (-1201 *2)) (-4 *2 (-170)))) (-1789 (*1 *2 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-363 *4 *5)) (-4 *4 (-170)) (-4 *5 (-1201 *4)) (-5 *2 (-665 *4)))) (-4019 (*1 *2 *1) (-12 (-4 *1 (-363 *3 *2)) (-4 *3 (-170)) (-4 *2 (-1201 *3)))) (-3514 (*1 *2 *1) (-12 (-4 *1 (-363 *3 *2)) (-4 *3 (-170)) (-4 *3 (-356)) (-4 *2 (-1201 *3)))))
+(-13 (-38 |t#1|) (-10 -8 (-15 -3121 ((-892))) (-15 -1408 ((-665 |t#1|) $ (-1225 $))) (-15 -2904 (|t#1| $)) (-15 -2469 (|t#1| $)) (-15 -1981 ((-1225 |t#1|) $ (-1225 $))) (-15 -1981 ((-665 |t#1|) (-1225 $) (-1225 $))) (-15 -2397 ($ (-1225 |t#1|) (-1225 $))) (-15 -2740 (|t#1| (-1225 $))) (-15 -1789 ((-665 |t#1|) (-1225 $))) (-15 -4019 (|t#2| $)) (IF (|has| |t#1| (-356)) (-15 -3514 (|t#2| $)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-143)) (-6 (-143)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 |#1|) . T) ((-703) . T) ((-1024 |#1|) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-2394 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 23)) (-2556 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 15)) (-2795 ((|#4| (-1 |#3| |#1|) |#2|) 21)))
+(((-364 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2795 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2556 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2394 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1179) (-366 |#1|) (-1179) (-366 |#3|)) (T -364))
+((-2394 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1179)) (-4 *5 (-1179)) (-4 *2 (-366 *5)) (-5 *1 (-364 *6 *4 *5 *2)) (-4 *4 (-366 *6)))) (-2556 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1179)) (-4 *2 (-1179)) (-5 *1 (-364 *5 *4 *2 *6)) (-4 *4 (-366 *5)) (-4 *6 (-366 *2)))) (-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1179)) (-4 *6 (-1179)) (-4 *2 (-366 *6)) (-5 *1 (-364 *5 *4 *6 *2)) (-4 *4 (-366 *5)))))
+(-10 -7 (-15 -2795 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2556 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2394 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
+((-2239 (((-112) (-1 (-112) |#2| |#2|) $) NIL) (((-112) $) 18)) (-2015 (($ (-1 (-112) |#2| |#2|) $) NIL) (($ $) 28)) (-3191 (($ (-1 (-112) |#2| |#2|) $) 27) (($ $) 22)) (-3062 (($ $) 25)) (-2881 (((-549) (-1 (-112) |#2|) $) NIL) (((-549) |#2| $) 11) (((-549) |#2| $ (-549)) NIL)) (-3050 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 20)))
+(((-365 |#1| |#2|) (-10 -8 (-15 -2015 (|#1| |#1|)) (-15 -2015 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2239 ((-112) |#1|)) (-15 -3191 (|#1| |#1|)) (-15 -3050 (|#1| |#1| |#1|)) (-15 -2881 ((-549) |#2| |#1| (-549))) (-15 -2881 ((-549) |#2| |#1|)) (-15 -2881 ((-549) (-1 (-112) |#2|) |#1|)) (-15 -2239 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3191 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3062 (|#1| |#1|)) (-15 -3050 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|))) (-366 |#2|) (-1179)) (T -365))
+NIL
+(-10 -8 (-15 -2015 (|#1| |#1|)) (-15 -2015 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2239 ((-112) |#1|)) (-15 -3191 (|#1| |#1|)) (-15 -3050 (|#1| |#1| |#1|)) (-15 -2881 ((-549) |#2| |#1| (-549))) (-15 -2881 ((-549) |#2| |#1|)) (-15 -2881 ((-549) (-1 (-112) |#2|) |#1|)) (-15 -2239 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3191 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3062 (|#1| |#1|)) (-15 -3050 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-3659 (((-1230) $ (-549) (-549)) 40 (|has| $ (-6 -4337)))) (-2239 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-823)))) (-2015 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4337))) (($ $) 88 (-12 (|has| |#1| (-823)) (|has| $ (-6 -4337))))) (-3191 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-823)))) (-2850 (((-112) $ (-747)) 8)) (-2250 ((|#1| $ (-549) |#1|) 52 (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) 58 (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4336)))) (-3034 (($) 7 T CONST)) (-2918 (($ $) 90 (|has| $ (-6 -4337)))) (-3062 (($ $) 100)) (-3675 (($ $) 78 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ |#1| $) 77 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4336)))) (-1875 ((|#1| $ (-549) |#1|) 53 (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) 51)) (-2881 (((-549) (-1 (-112) |#1|) $) 97) (((-549) |#1| $) 96 (|has| |#1| (-1066))) (((-549) |#1| $ (-549)) 95 (|has| |#1| (-1066)))) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-3743 (($ (-747) |#1|) 69)) (-1777 (((-112) $ (-747)) 9)) (-2807 (((-549) $) 43 (|has| (-549) (-823)))) (-2861 (($ $ $) 87 (|has| |#1| (-823)))) (-3050 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-823)))) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3063 (((-549) $) 44 (|has| (-549) (-823)))) (-3574 (($ $ $) 86 (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-2613 (($ |#1| $ (-549)) 60) (($ $ $ (-549)) 59)) (-2296 (((-621 (-549)) $) 46)) (-2284 (((-112) (-549) $) 47)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3645 ((|#1| $) 42 (|has| (-549) (-823)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-1943 (($ $ |#1|) 41 (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2478 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) 48)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#1| $ (-549) |#1|) 50) ((|#1| $ (-549)) 49) (($ $ (-1192 (-549))) 63)) (-2162 (($ $ (-549)) 62) (($ $ (-1192 (-549))) 61)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2049 (($ $ $ (-549)) 91 (|has| $ (-6 -4337)))) (-2279 (($ $) 13)) (-2843 (((-525) $) 79 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 70)) (-1950 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-621 $)) 65)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) 84 (|has| |#1| (-823)))) (-2423 (((-112) $ $) 83 (|has| |#1| (-823)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-2436 (((-112) $ $) 85 (|has| |#1| (-823)))) (-2409 (((-112) $ $) 82 (|has| |#1| (-823)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-366 |#1|) (-138) (-1179)) (T -366))
+((-3050 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-366 *3)) (-4 *3 (-1179)))) (-3062 (*1 *1 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-1179)))) (-3191 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-366 *3)) (-4 *3 (-1179)))) (-2239 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-366 *4)) (-4 *4 (-1179)) (-5 *2 (-112)))) (-2881 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-366 *4)) (-4 *4 (-1179)) (-5 *2 (-549)))) (-2881 (*1 *2 *3 *1) (-12 (-4 *1 (-366 *3)) (-4 *3 (-1179)) (-4 *3 (-1066)) (-5 *2 (-549)))) (-2881 (*1 *2 *3 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-366 *3)) (-4 *3 (-1179)) (-4 *3 (-1066)))) (-3050 (*1 *1 *1 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-1179)) (-4 *2 (-823)))) (-3191 (*1 *1 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-1179)) (-4 *2 (-823)))) (-2239 (*1 *2 *1) (-12 (-4 *1 (-366 *3)) (-4 *3 (-1179)) (-4 *3 (-823)) (-5 *2 (-112)))) (-2049 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-549)) (|has| *1 (-6 -4337)) (-4 *1 (-366 *3)) (-4 *3 (-1179)))) (-2918 (*1 *1 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-366 *2)) (-4 *2 (-1179)))) (-2015 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4337)) (-4 *1 (-366 *3)) (-4 *3 (-1179)))) (-2015 (*1 *1 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-366 *2)) (-4 *2 (-1179)) (-4 *2 (-823)))))
+(-13 (-627 |t#1|) (-10 -8 (-6 -4336) (-15 -3050 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -3062 ($ $)) (-15 -3191 ($ (-1 (-112) |t#1| |t#1|) $)) (-15 -2239 ((-112) (-1 (-112) |t#1| |t#1|) $)) (-15 -2881 ((-549) (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1066)) (PROGN (-15 -2881 ((-549) |t#1| $)) (-15 -2881 ((-549) |t#1| $ (-549)))) |%noBranch|) (IF (|has| |t#1| (-823)) (PROGN (-6 (-823)) (-15 -3050 ($ $ $)) (-15 -3191 ($ $)) (-15 -2239 ((-112) $))) |%noBranch|) (IF (|has| $ (-6 -4337)) (PROGN (-15 -2049 ($ $ $ (-549))) (-15 -2918 ($ $)) (-15 -2015 ($ (-1 (-112) |t#1| |t#1|) $)) (IF (|has| |t#1| (-823)) (-15 -2015 ($ $)) |%noBranch|)) |%noBranch|)))
+(((-34) . T) ((-101) -1536 (|has| |#1| (-1066)) (|has| |#1| (-823))) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-823)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-627 |#1|) . T) ((-823) |has| |#1| (-823)) ((-1066) -1536 (|has| |#1| (-1066)) (|has| |#1| (-823))) ((-1179) . T))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-3302 (((-621 |#1|) $) 32)) (-3175 (($ $ (-747)) 33)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-1376 (((-1249 |#1| |#2|) (-1249 |#1| |#2|) $) 36)) (-3626 (($ $) 34)) (-4315 (((-1249 |#1| |#2|) (-1249 |#1| |#2|) $) 37)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2684 (($ $ |#1| $) 31) (($ $ (-621 |#1|) (-621 $)) 30)) (-3977 (((-747) $) 38)) (-3853 (($ $ $) 29)) (-3845 (((-834) $) 11) (($ |#1|) 41) (((-1240 |#1| |#2|) $) 40) (((-1249 |#1| |#2|) $) 39)) (-1569 ((|#2| (-1249 |#1| |#2|) $) 42)) (-3274 (($) 18 T CONST)) (-2022 (($ (-648 |#1|)) 35)) (-2387 (((-112) $ $) 6)) (-2511 (($ $ |#2|) 28 (|has| |#2| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ |#2| $) 23) (($ $ |#2|) 26)))
(((-367 |#1| |#2|) (-138) (-823) (-170)) (T -367))
-((-1570 (*1 *2 *3 *1) (-12 (-5 *3 (-1250 *4 *2)) (-4 *1 (-367 *4 *2)) (-4 *4 (-823)) (-4 *2 (-170)))) (-3846 (*1 *1 *2) (-12 (-4 *1 (-367 *2 *3)) (-4 *2 (-823)) (-4 *3 (-170)))) (-3846 (*1 *2 *1) (-12 (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)) (-5 *2 (-1241 *3 *4)))) (-3846 (*1 *2 *1) (-12 (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)) (-5 *2 (-1250 *3 *4)))) (-3701 (*1 *2 *1) (-12 (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)) (-5 *2 (-747)))) (-2694 (*1 *2 *2 *1) (-12 (-5 *2 (-1250 *3 *4)) (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)))) (-1869 (*1 *2 *2 *1) (-12 (-5 *2 (-1250 *3 *4)) (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)))) (-3037 (*1 *1 *2) (-12 (-5 *2 (-648 *3)) (-4 *3 (-823)) (-4 *1 (-367 *3 *4)) (-4 *4 (-170)))) (-4273 (*1 *1 *1) (-12 (-4 *1 (-367 *2 *3)) (-4 *2 (-823)) (-4 *3 (-170)))) (-3210 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)))) (-3304 (*1 *2 *1) (-12 (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)) (-5 *2 (-621 *3)))) (-2686 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-367 *2 *3)) (-4 *2 (-823)) (-4 *3 (-170)))) (-2686 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *4)) (-5 *3 (-621 *1)) (-4 *1 (-367 *4 *5)) (-4 *4 (-823)) (-4 *5 (-170)))))
-(-13 (-612 |t#2|) (-10 -8 (-15 -1570 (|t#2| (-1250 |t#1| |t#2|) $)) (-15 -3846 ($ |t#1|)) (-15 -3846 ((-1241 |t#1| |t#2|) $)) (-15 -3846 ((-1250 |t#1| |t#2|) $)) (-15 -3701 ((-747) $)) (-15 -2694 ((-1250 |t#1| |t#2|) (-1250 |t#1| |t#2|) $)) (-15 -1869 ((-1250 |t#1| |t#2|) (-1250 |t#1| |t#2|) $)) (-15 -3037 ($ (-648 |t#1|))) (-15 -4273 ($ $)) (-15 -3210 ($ $ (-747))) (-15 -3304 ((-621 |t#1|) $)) (-15 -2686 ($ $ |t#1| $)) (-15 -2686 ($ $ (-621 |t#1|) (-621 $)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#2| |#2|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#2|) . T) ((-612 |#2|) . T) ((-694 |#2|) . T) ((-1024 |#2|) . T) ((-1067) . T))
-((-1360 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 24)) (-3257 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 13)) (-3373 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 22)))
-(((-368 |#1| |#2|) (-10 -7 (-15 -3257 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3373 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -1360 (|#2| (-1 (-112) |#1| |#1|) |#2|))) (-1180) (-13 (-366 |#1|) (-10 -7 (-6 -4338)))) (T -368))
-((-1360 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1180)) (-5 *1 (-368 *4 *2)) (-4 *2 (-13 (-366 *4) (-10 -7 (-6 -4338)))))) (-3373 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1180)) (-5 *1 (-368 *4 *2)) (-4 *2 (-13 (-366 *4) (-10 -7 (-6 -4338)))))) (-3257 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1180)) (-5 *1 (-368 *4 *2)) (-4 *2 (-13 (-366 *4) (-10 -7 (-6 -4338)))))))
-(-10 -7 (-15 -3257 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3373 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -1360 (|#2| (-1 (-112) |#1| |#1|) |#2|)))
-((-3879 (((-665 |#2|) (-665 $)) NIL) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) NIL) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 22) (((-665 (-549)) (-665 $)) 14)))
-(((-369 |#1| |#2|) (-10 -8 (-15 -3879 ((-665 (-549)) (-665 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-665 |#2|) (-665 |#1|)))) (-370 |#2|) (-1018)) (T -369))
-NIL
-(-10 -8 (-15 -3879 ((-665 (-549)) (-665 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-665 |#2|) (-665 |#1|))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-3879 (((-665 |#1|) (-665 $)) 34) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) 33) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 41 (|has| |#1| (-617 (-549)))) (((-665 (-549)) (-665 $)) 40 (|has| |#1| (-617 (-549))))) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11) (($ (-549)) 27)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+((-1569 (*1 *2 *3 *1) (-12 (-5 *3 (-1249 *4 *2)) (-4 *1 (-367 *4 *2)) (-4 *4 (-823)) (-4 *2 (-170)))) (-3845 (*1 *1 *2) (-12 (-4 *1 (-367 *2 *3)) (-4 *2 (-823)) (-4 *3 (-170)))) (-3845 (*1 *2 *1) (-12 (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)) (-5 *2 (-1240 *3 *4)))) (-3845 (*1 *2 *1) (-12 (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)) (-5 *2 (-1249 *3 *4)))) (-3977 (*1 *2 *1) (-12 (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)) (-5 *2 (-747)))) (-4315 (*1 *2 *2 *1) (-12 (-5 *2 (-1249 *3 *4)) (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)))) (-1376 (*1 *2 *2 *1) (-12 (-5 *2 (-1249 *3 *4)) (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)))) (-2022 (*1 *1 *2) (-12 (-5 *2 (-648 *3)) (-4 *3 (-823)) (-4 *1 (-367 *3 *4)) (-4 *4 (-170)))) (-3626 (*1 *1 *1) (-12 (-4 *1 (-367 *2 *3)) (-4 *2 (-823)) (-4 *3 (-170)))) (-3175 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)))) (-3302 (*1 *2 *1) (-12 (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)) (-5 *2 (-621 *3)))) (-2684 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-367 *2 *3)) (-4 *2 (-823)) (-4 *3 (-170)))) (-2684 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *4)) (-5 *3 (-621 *1)) (-4 *1 (-367 *4 *5)) (-4 *4 (-823)) (-4 *5 (-170)))))
+(-13 (-612 |t#2|) (-10 -8 (-15 -1569 (|t#2| (-1249 |t#1| |t#2|) $)) (-15 -3845 ($ |t#1|)) (-15 -3845 ((-1240 |t#1| |t#2|) $)) (-15 -3845 ((-1249 |t#1| |t#2|) $)) (-15 -3977 ((-747) $)) (-15 -4315 ((-1249 |t#1| |t#2|) (-1249 |t#1| |t#2|) $)) (-15 -1376 ((-1249 |t#1| |t#2|) (-1249 |t#1| |t#2|) $)) (-15 -2022 ($ (-648 |t#1|))) (-15 -3626 ($ $)) (-15 -3175 ($ $ (-747))) (-15 -3302 ((-621 |t#1|) $)) (-15 -2684 ($ $ |t#1| $)) (-15 -2684 ($ $ (-621 |t#1|) (-621 $)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#2| |#2|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#2|) . T) ((-612 |#2|) . T) ((-694 |#2|) . T) ((-1024 |#2|) . T) ((-1066) . T))
+((-3284 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 24)) (-1559 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 13)) (-3986 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 22)))
+(((-368 |#1| |#2|) (-10 -7 (-15 -1559 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3986 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3284 (|#2| (-1 (-112) |#1| |#1|) |#2|))) (-1179) (-13 (-366 |#1|) (-10 -7 (-6 -4337)))) (T -368))
+((-3284 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1179)) (-5 *1 (-368 *4 *2)) (-4 *2 (-13 (-366 *4) (-10 -7 (-6 -4337)))))) (-3986 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1179)) (-5 *1 (-368 *4 *2)) (-4 *2 (-13 (-366 *4) (-10 -7 (-6 -4337)))))) (-1559 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1179)) (-5 *1 (-368 *4 *2)) (-4 *2 (-13 (-366 *4) (-10 -7 (-6 -4337)))))))
+(-10 -7 (-15 -1559 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3986 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3284 (|#2| (-1 (-112) |#1| |#1|) |#2|)))
+((-3446 (((-665 |#2|) (-665 $)) NIL) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) NIL) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 22) (((-665 (-549)) (-665 $)) 14)))
+(((-369 |#1| |#2|) (-10 -8 (-15 -3446 ((-665 (-549)) (-665 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-665 |#2|) (-665 |#1|)))) (-370 |#2|) (-1018)) (T -369))
+NIL
+(-10 -8 (-15 -3446 ((-665 (-549)) (-665 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-665 |#2|) (-665 |#1|))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-3446 (((-665 |#1|) (-665 $)) 34) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) 33) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 41 (|has| |#1| (-617 (-549)))) (((-665 (-549)) (-665 $)) 40 (|has| |#1| (-617 (-549))))) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11) (($ (-549)) 27)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-370 |#1|) (-138) (-1018)) (T -370))
NIL
(-13 (-617 |t#1|) (-10 -7 (IF (|has| |t#1| (-617 (-549))) (-6 (-617 (-549))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-703) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-1788 (((-621 (-287 (-923 (-167 |#1|)))) (-287 (-400 (-923 (-167 (-549))))) |#1|) 51) (((-621 (-287 (-923 (-167 |#1|)))) (-400 (-923 (-167 (-549)))) |#1|) 50) (((-621 (-621 (-287 (-923 (-167 |#1|))))) (-621 (-287 (-400 (-923 (-167 (-549)))))) |#1|) 47) (((-621 (-621 (-287 (-923 (-167 |#1|))))) (-621 (-400 (-923 (-167 (-549))))) |#1|) 41)) (-1298 (((-621 (-621 (-167 |#1|))) (-621 (-400 (-923 (-167 (-549))))) (-621 (-1143)) |#1|) 30) (((-621 (-167 |#1|)) (-400 (-923 (-167 (-549)))) |#1|) 18)))
-(((-371 |#1|) (-10 -7 (-15 -1788 ((-621 (-621 (-287 (-923 (-167 |#1|))))) (-621 (-400 (-923 (-167 (-549))))) |#1|)) (-15 -1788 ((-621 (-621 (-287 (-923 (-167 |#1|))))) (-621 (-287 (-400 (-923 (-167 (-549)))))) |#1|)) (-15 -1788 ((-621 (-287 (-923 (-167 |#1|)))) (-400 (-923 (-167 (-549)))) |#1|)) (-15 -1788 ((-621 (-287 (-923 (-167 |#1|)))) (-287 (-400 (-923 (-167 (-549))))) |#1|)) (-15 -1298 ((-621 (-167 |#1|)) (-400 (-923 (-167 (-549)))) |#1|)) (-15 -1298 ((-621 (-621 (-167 |#1|))) (-621 (-400 (-923 (-167 (-549))))) (-621 (-1143)) |#1|))) (-13 (-356) (-821))) (T -371))
-((-1298 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 (-400 (-923 (-167 (-549)))))) (-5 *4 (-621 (-1143))) (-5 *2 (-621 (-621 (-167 *5)))) (-5 *1 (-371 *5)) (-4 *5 (-13 (-356) (-821))))) (-1298 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 (-167 (-549))))) (-5 *2 (-621 (-167 *4))) (-5 *1 (-371 *4)) (-4 *4 (-13 (-356) (-821))))) (-1788 (*1 *2 *3 *4) (-12 (-5 *3 (-287 (-400 (-923 (-167 (-549)))))) (-5 *2 (-621 (-287 (-923 (-167 *4))))) (-5 *1 (-371 *4)) (-4 *4 (-13 (-356) (-821))))) (-1788 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 (-167 (-549))))) (-5 *2 (-621 (-287 (-923 (-167 *4))))) (-5 *1 (-371 *4)) (-4 *4 (-13 (-356) (-821))))) (-1788 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-287 (-400 (-923 (-167 (-549))))))) (-5 *2 (-621 (-621 (-287 (-923 (-167 *4)))))) (-5 *1 (-371 *4)) (-4 *4 (-13 (-356) (-821))))) (-1788 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-400 (-923 (-167 (-549)))))) (-5 *2 (-621 (-621 (-287 (-923 (-167 *4)))))) (-5 *1 (-371 *4)) (-4 *4 (-13 (-356) (-821))))))
-(-10 -7 (-15 -1788 ((-621 (-621 (-287 (-923 (-167 |#1|))))) (-621 (-400 (-923 (-167 (-549))))) |#1|)) (-15 -1788 ((-621 (-621 (-287 (-923 (-167 |#1|))))) (-621 (-287 (-400 (-923 (-167 (-549)))))) |#1|)) (-15 -1788 ((-621 (-287 (-923 (-167 |#1|)))) (-400 (-923 (-167 (-549)))) |#1|)) (-15 -1788 ((-621 (-287 (-923 (-167 |#1|)))) (-287 (-400 (-923 (-167 (-549))))) |#1|)) (-15 -1298 ((-621 (-167 |#1|)) (-400 (-923 (-167 (-549)))) |#1|)) (-15 -1298 ((-621 (-621 (-167 |#1|))) (-621 (-400 (-923 (-167 (-549))))) (-621 (-1143)) |#1|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 33)) (-3329 (((-549) $) 55)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-3896 (($ $) 110)) (-1664 (($ $) 82)) (-1512 (($ $) 71)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-2134 (($ $) 44)) (-3866 (((-112) $ $) NIL)) (-1640 (($ $) 80)) (-1486 (($ $) 69)) (-1872 (((-549) $) 64)) (-1310 (($ $ (-549)) 62)) (-1685 (($ $) NIL)) (-1539 (($ $) NIL)) (-1682 (($) NIL T CONST)) (-3252 (($ $) 112)) (-2714 (((-3 (-549) "failed") $) 189) (((-3 (-400 (-549)) "failed") $) 185)) (-2659 (((-549) $) 187) (((-400 (-549)) $) 183)) (-2095 (($ $ $) NIL)) (-4155 (((-549) $ $) 102)) (-2114 (((-3 $ "failed") $) 114)) (-2393 (((-400 (-549)) $ (-747)) 190) (((-400 (-549)) $ (-747) (-747)) 182)) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-3236 (((-892)) 73) (((-892) (-892)) 98 (|has| $ (-6 -4328)))) (-2772 (((-112) $) 106)) (-1425 (($) 40)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL)) (-3785 (((-1231) (-747)) 152)) (-1500 (((-1231)) 157) (((-1231) (-747)) 158)) (-3017 (((-1231)) 159) (((-1231) (-747)) 160)) (-2687 (((-1231)) 155) (((-1231) (-747)) 156)) (-2088 (((-549) $) 58)) (-2675 (((-112) $) 104)) (-4187 (($ $ (-549)) NIL)) (-1322 (($ $) 48)) (-3630 (($ $) NIL)) (-2374 (((-112) $) 35)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2863 (($ $ $) NIL) (($) NIL (-12 (-4008 (|has| $ (-6 -4320))) (-4008 (|has| $ (-6 -4328)))))) (-3575 (($ $ $) NIL) (($) 99 (-12 (-4008 (|has| $ (-6 -4320))) (-4008 (|has| $ (-6 -4328)))))) (-1461 (((-549) $) 17)) (-1393 (($) 87) (($ $) 92)) (-2301 (($) 91) (($ $) 93)) (-3632 (($ $) 83)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 116)) (-2429 (((-892) (-549)) 43 (|has| $ (-6 -4328)))) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2873 (($ $) 53)) (-3967 (($ $) 109)) (-1355 (($ (-549) (-549)) 107) (($ (-549) (-549) (-892)) 108)) (-2121 (((-411 $) $) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3731 (((-549) $) 19)) (-3716 (($) 94)) (-2719 (($ $) 79)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3862 (((-892)) 100) (((-892) (-892)) 101 (|has| $ (-6 -4328)))) (-3456 (($ $ (-747)) NIL) (($ $) 115)) (-2324 (((-892) (-549)) 47 (|has| $ (-6 -4328)))) (-1698 (($ $) NIL)) (-1552 (($ $) NIL)) (-1675 (($ $) NIL)) (-1526 (($ $) NIL)) (-1651 (($ $) 81)) (-1501 (($ $) 70)) (-2845 (((-372) $) 175) (((-219) $) 177) (((-863 (-372)) $) NIL) (((-1125) $) 162) (((-525) $) 173) (($ (-219)) 181)) (-3846 (((-834) $) 164) (($ (-549)) 186) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-549)) 186) (($ (-400 (-549))) NIL) (((-219) $) 178)) (-2082 (((-747)) NIL)) (-2546 (($ $) 111)) (-1502 (((-892)) 54) (((-892) (-892)) 66 (|has| $ (-6 -4328)))) (-1864 (((-892)) 103)) (-1733 (($ $) 86)) (-1587 (($ $) 46) (($ $ $) 52)) (-1498 (((-112) $ $) NIL)) (-1710 (($ $) 84)) (-1564 (($ $) 37)) (-1758 (($ $) NIL)) (-1612 (($ $) NIL)) (-1934 (($ $) NIL)) (-1627 (($ $) NIL)) (-1745 (($ $) NIL)) (-1600 (($ $) NIL)) (-1722 (($ $) 85)) (-1576 (($ $) 49)) (-3212 (($ $) 51)) (-3276 (($) 34 T CONST)) (-3287 (($) 38 T CONST)) (-4245 (((-1125) $) 27) (((-1125) $ (-112)) 29) (((-1231) (-798) $) 30) (((-1231) (-798) $ (-112)) 31)) (-1702 (($ $ (-747)) NIL) (($ $) NIL)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 39)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 42)) (-2513 (($ $ $) 45) (($ $ (-549)) 41)) (-2500 (($ $) 36) (($ $ $) 50)) (-2486 (($ $ $) 61)) (** (($ $ (-892)) 67) (($ $ (-747)) NIL) (($ $ (-549)) 88) (($ $ (-400 (-549))) 125) (($ $ $) 117)) (* (($ (-892) $) 65) (($ (-747) $) NIL) (($ (-549) $) 68) (($ $ $) 60) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL)))
-(((-372) (-13 (-397) (-227) (-594 (-1125)) (-804) (-593 (-219)) (-1165) (-594 (-525)) (-10 -8 (-15 -2513 ($ $ (-549))) (-15 ** ($ $ $)) (-15 -1322 ($ $)) (-15 -4155 ((-549) $ $)) (-15 -1310 ($ $ (-549))) (-15 -2393 ((-400 (-549)) $ (-747))) (-15 -2393 ((-400 (-549)) $ (-747) (-747))) (-15 -1393 ($)) (-15 -2301 ($)) (-15 -3716 ($)) (-15 -1587 ($ $ $)) (-15 -1393 ($ $)) (-15 -2301 ($ $)) (-15 -2845 ($ (-219))) (-15 -3017 ((-1231))) (-15 -3017 ((-1231) (-747))) (-15 -2687 ((-1231))) (-15 -2687 ((-1231) (-747))) (-15 -1500 ((-1231))) (-15 -1500 ((-1231) (-747))) (-15 -3785 ((-1231) (-747))) (-6 -4328) (-6 -4320)))) (T -372))
-((** (*1 *1 *1 *1) (-5 *1 (-372))) (-2513 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-372)))) (-1322 (*1 *1 *1) (-5 *1 (-372))) (-4155 (*1 *2 *1 *1) (-12 (-5 *2 (-549)) (-5 *1 (-372)))) (-1310 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-372)))) (-2393 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *2 (-400 (-549))) (-5 *1 (-372)))) (-2393 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-747)) (-5 *2 (-400 (-549))) (-5 *1 (-372)))) (-1393 (*1 *1) (-5 *1 (-372))) (-2301 (*1 *1) (-5 *1 (-372))) (-3716 (*1 *1) (-5 *1 (-372))) (-1587 (*1 *1 *1 *1) (-5 *1 (-372))) (-1393 (*1 *1 *1) (-5 *1 (-372))) (-2301 (*1 *1 *1) (-5 *1 (-372))) (-2845 (*1 *1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-372)))) (-3017 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-372)))) (-3017 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1231)) (-5 *1 (-372)))) (-2687 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-372)))) (-2687 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1231)) (-5 *1 (-372)))) (-1500 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-372)))) (-1500 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1231)) (-5 *1 (-372)))) (-3785 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1231)) (-5 *1 (-372)))))
-(-13 (-397) (-227) (-594 (-1125)) (-804) (-593 (-219)) (-1165) (-594 (-525)) (-10 -8 (-15 -2513 ($ $ (-549))) (-15 ** ($ $ $)) (-15 -1322 ($ $)) (-15 -4155 ((-549) $ $)) (-15 -1310 ($ $ (-549))) (-15 -2393 ((-400 (-549)) $ (-747))) (-15 -2393 ((-400 (-549)) $ (-747) (-747))) (-15 -1393 ($)) (-15 -2301 ($)) (-15 -3716 ($)) (-15 -1587 ($ $ $)) (-15 -1393 ($ $)) (-15 -2301 ($ $)) (-15 -2845 ($ (-219))) (-15 -3017 ((-1231))) (-15 -3017 ((-1231) (-747))) (-15 -2687 ((-1231))) (-15 -2687 ((-1231) (-747))) (-15 -1500 ((-1231))) (-15 -1500 ((-1231) (-747))) (-15 -3785 ((-1231) (-747))) (-6 -4328) (-6 -4320)))
-((-2227 (((-621 (-287 (-923 |#1|))) (-287 (-400 (-923 (-549)))) |#1|) 46) (((-621 (-287 (-923 |#1|))) (-400 (-923 (-549))) |#1|) 45) (((-621 (-621 (-287 (-923 |#1|)))) (-621 (-287 (-400 (-923 (-549))))) |#1|) 42) (((-621 (-621 (-287 (-923 |#1|)))) (-621 (-400 (-923 (-549)))) |#1|) 36)) (-1588 (((-621 |#1|) (-400 (-923 (-549))) |#1|) 20) (((-621 (-621 |#1|)) (-621 (-400 (-923 (-549)))) (-621 (-1143)) |#1|) 30)))
-(((-373 |#1|) (-10 -7 (-15 -2227 ((-621 (-621 (-287 (-923 |#1|)))) (-621 (-400 (-923 (-549)))) |#1|)) (-15 -2227 ((-621 (-621 (-287 (-923 |#1|)))) (-621 (-287 (-400 (-923 (-549))))) |#1|)) (-15 -2227 ((-621 (-287 (-923 |#1|))) (-400 (-923 (-549))) |#1|)) (-15 -2227 ((-621 (-287 (-923 |#1|))) (-287 (-400 (-923 (-549)))) |#1|)) (-15 -1588 ((-621 (-621 |#1|)) (-621 (-400 (-923 (-549)))) (-621 (-1143)) |#1|)) (-15 -1588 ((-621 |#1|) (-400 (-923 (-549))) |#1|))) (-13 (-821) (-356))) (T -373))
-((-1588 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 (-549)))) (-5 *2 (-621 *4)) (-5 *1 (-373 *4)) (-4 *4 (-13 (-821) (-356))))) (-1588 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 (-400 (-923 (-549))))) (-5 *4 (-621 (-1143))) (-5 *2 (-621 (-621 *5))) (-5 *1 (-373 *5)) (-4 *5 (-13 (-821) (-356))))) (-2227 (*1 *2 *3 *4) (-12 (-5 *3 (-287 (-400 (-923 (-549))))) (-5 *2 (-621 (-287 (-923 *4)))) (-5 *1 (-373 *4)) (-4 *4 (-13 (-821) (-356))))) (-2227 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 (-549)))) (-5 *2 (-621 (-287 (-923 *4)))) (-5 *1 (-373 *4)) (-4 *4 (-13 (-821) (-356))))) (-2227 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-287 (-400 (-923 (-549)))))) (-5 *2 (-621 (-621 (-287 (-923 *4))))) (-5 *1 (-373 *4)) (-4 *4 (-13 (-821) (-356))))) (-2227 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-400 (-923 (-549))))) (-5 *2 (-621 (-621 (-287 (-923 *4))))) (-5 *1 (-373 *4)) (-4 *4 (-13 (-821) (-356))))))
-(-10 -7 (-15 -2227 ((-621 (-621 (-287 (-923 |#1|)))) (-621 (-400 (-923 (-549)))) |#1|)) (-15 -2227 ((-621 (-621 (-287 (-923 |#1|)))) (-621 (-287 (-400 (-923 (-549))))) |#1|)) (-15 -2227 ((-621 (-287 (-923 |#1|))) (-400 (-923 (-549))) |#1|)) (-15 -2227 ((-621 (-287 (-923 |#1|))) (-287 (-400 (-923 (-549)))) |#1|)) (-15 -1588 ((-621 (-621 |#1|)) (-621 (-400 (-923 (-549)))) (-621 (-1143)) |#1|)) (-15 -1588 ((-621 |#1|) (-400 (-923 (-549))) |#1|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#2| "failed") $) 26)) (-2659 ((|#2| $) 28)) (-2070 (($ $) NIL)) (-3347 (((-747) $) 10)) (-3750 (((-621 $) $) 20)) (-2205 (((-112) $) NIL)) (-3526 (($ |#2| |#1|) 18)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-3647 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 14)) (-2028 ((|#2| $) 15)) (-2043 ((|#1| $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 45) (($ |#2|) 27)) (-4141 (((-621 |#1|) $) 17)) (-2152 ((|#1| $ |#2|) 47)) (-3276 (($) 29 T CONST)) (-2631 (((-621 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 13)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ |#1| $) 32) (($ $ |#1|) 33) (($ |#1| |#2|) 35) (($ |#2| |#1|) 36)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-703) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-3110 (((-621 (-287 (-923 (-167 |#1|)))) (-287 (-400 (-923 (-167 (-549))))) |#1|) 51) (((-621 (-287 (-923 (-167 |#1|)))) (-400 (-923 (-167 (-549)))) |#1|) 50) (((-621 (-621 (-287 (-923 (-167 |#1|))))) (-621 (-287 (-400 (-923 (-167 (-549)))))) |#1|) 47) (((-621 (-621 (-287 (-923 (-167 |#1|))))) (-621 (-400 (-923 (-167 (-549))))) |#1|) 41)) (-3609 (((-621 (-621 (-167 |#1|))) (-621 (-400 (-923 (-167 (-549))))) (-621 (-1142)) |#1|) 30) (((-621 (-167 |#1|)) (-400 (-923 (-167 (-549)))) |#1|) 18)))
+(((-371 |#1|) (-10 -7 (-15 -3110 ((-621 (-621 (-287 (-923 (-167 |#1|))))) (-621 (-400 (-923 (-167 (-549))))) |#1|)) (-15 -3110 ((-621 (-621 (-287 (-923 (-167 |#1|))))) (-621 (-287 (-400 (-923 (-167 (-549)))))) |#1|)) (-15 -3110 ((-621 (-287 (-923 (-167 |#1|)))) (-400 (-923 (-167 (-549)))) |#1|)) (-15 -3110 ((-621 (-287 (-923 (-167 |#1|)))) (-287 (-400 (-923 (-167 (-549))))) |#1|)) (-15 -3609 ((-621 (-167 |#1|)) (-400 (-923 (-167 (-549)))) |#1|)) (-15 -3609 ((-621 (-621 (-167 |#1|))) (-621 (-400 (-923 (-167 (-549))))) (-621 (-1142)) |#1|))) (-13 (-356) (-821))) (T -371))
+((-3609 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 (-400 (-923 (-167 (-549)))))) (-5 *4 (-621 (-1142))) (-5 *2 (-621 (-621 (-167 *5)))) (-5 *1 (-371 *5)) (-4 *5 (-13 (-356) (-821))))) (-3609 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 (-167 (-549))))) (-5 *2 (-621 (-167 *4))) (-5 *1 (-371 *4)) (-4 *4 (-13 (-356) (-821))))) (-3110 (*1 *2 *3 *4) (-12 (-5 *3 (-287 (-400 (-923 (-167 (-549)))))) (-5 *2 (-621 (-287 (-923 (-167 *4))))) (-5 *1 (-371 *4)) (-4 *4 (-13 (-356) (-821))))) (-3110 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 (-167 (-549))))) (-5 *2 (-621 (-287 (-923 (-167 *4))))) (-5 *1 (-371 *4)) (-4 *4 (-13 (-356) (-821))))) (-3110 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-287 (-400 (-923 (-167 (-549))))))) (-5 *2 (-621 (-621 (-287 (-923 (-167 *4)))))) (-5 *1 (-371 *4)) (-4 *4 (-13 (-356) (-821))))) (-3110 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-400 (-923 (-167 (-549)))))) (-5 *2 (-621 (-621 (-287 (-923 (-167 *4)))))) (-5 *1 (-371 *4)) (-4 *4 (-13 (-356) (-821))))))
+(-10 -7 (-15 -3110 ((-621 (-621 (-287 (-923 (-167 |#1|))))) (-621 (-400 (-923 (-167 (-549))))) |#1|)) (-15 -3110 ((-621 (-621 (-287 (-923 (-167 |#1|))))) (-621 (-287 (-400 (-923 (-167 (-549)))))) |#1|)) (-15 -3110 ((-621 (-287 (-923 (-167 |#1|)))) (-400 (-923 (-167 (-549)))) |#1|)) (-15 -3110 ((-621 (-287 (-923 (-167 |#1|)))) (-287 (-400 (-923 (-167 (-549))))) |#1|)) (-15 -3609 ((-621 (-167 |#1|)) (-400 (-923 (-167 (-549)))) |#1|)) (-15 -3609 ((-621 (-621 (-167 |#1|))) (-621 (-400 (-923 (-167 (-549))))) (-621 (-1142)) |#1|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 33)) (-3833 (((-549) $) 55)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-3691 (($ $) 110)) (-1662 (($ $) 82)) (-1510 (($ $) 71)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2132 (($ $) 44)) (-2680 (((-112) $ $) NIL)) (-1638 (($ $) 80)) (-1483 (($ $) 69)) (-1741 (((-549) $) 64)) (-1309 (($ $ (-549)) 62)) (-1684 (($ $) NIL)) (-1538 (($ $) NIL)) (-3034 (($) NIL T CONST)) (-2468 (($ $) 112)) (-2712 (((-3 (-549) "failed") $) 189) (((-3 (-400 (-549)) "failed") $) 185)) (-2657 (((-549) $) 187) (((-400 (-549)) $) 183)) (-2091 (($ $ $) NIL)) (-4162 (((-549) $ $) 102)) (-2612 (((-3 $ "failed") $) 114)) (-2991 (((-400 (-549)) $ (-747)) 190) (((-400 (-549)) $ (-747) (-747)) 182)) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-3234 (((-892)) 73) (((-892) (-892)) 98 (|has| $ (-6 -4327)))) (-2357 (((-112) $) 106)) (-1425 (($) 40)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL)) (-1330 (((-1230) (-747)) 152)) (-2583 (((-1230)) 157) (((-1230) (-747)) 158)) (-2866 (((-1230)) 159) (((-1230) (-747)) 160)) (-1862 (((-1230)) 155) (((-1230) (-747)) 156)) (-2729 (((-549) $) 58)) (-2297 (((-112) $) 104)) (-3621 (($ $ (-549)) NIL)) (-4190 (($ $) 48)) (-2469 (($ $) NIL)) (-1992 (((-112) $) 35)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2861 (($ $ $) NIL) (($) NIL (-12 (-4007 (|has| $ (-6 -4319))) (-4007 (|has| $ (-6 -4327)))))) (-3574 (($ $ $) NIL) (($) 99 (-12 (-4007 (|has| $ (-6 -4319))) (-4007 (|has| $ (-6 -4327)))))) (-1460 (((-549) $) 17)) (-4053 (($) 87) (($ $) 92)) (-2298 (($) 91) (($ $) 93)) (-3631 (($ $) 83)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 116)) (-2385 (((-892) (-549)) 43 (|has| $ (-6 -4327)))) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1512 (($ $) 53)) (-1349 (($ $) 109)) (-1354 (($ (-549) (-549)) 107) (($ (-549) (-549) (-892)) 108)) (-2119 (((-411 $) $) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1714 (((-549) $) 19)) (-2937 (($) 94)) (-2717 (($ $) 79)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-2234 (((-892)) 100) (((-892) (-892)) 101 (|has| $ (-6 -4327)))) (-3455 (($ $ (-747)) NIL) (($ $) 115)) (-2584 (((-892) (-549)) 47 (|has| $ (-6 -4327)))) (-1696 (($ $) NIL)) (-1551 (($ $) NIL)) (-1673 (($ $) NIL)) (-1525 (($ $) NIL)) (-1648 (($ $) 81)) (-1500 (($ $) 70)) (-2843 (((-372) $) 175) (((-219) $) 177) (((-863 (-372)) $) NIL) (((-1124) $) 162) (((-525) $) 173) (($ (-219)) 181)) (-3845 (((-834) $) 164) (($ (-549)) 186) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-549)) 186) (($ (-400 (-549))) NIL) (((-219) $) 178)) (-2371 (((-747)) NIL)) (-3497 (($ $) 111)) (-2690 (((-892)) 54) (((-892) (-892)) 66 (|has| $ (-6 -4327)))) (-1863 (((-892)) 103)) (-1731 (($ $) 86)) (-1585 (($ $) 46) (($ $ $) 52)) (-2441 (((-112) $ $) NIL)) (-1708 (($ $) 84)) (-1562 (($ $) 37)) (-1753 (($ $) NIL)) (-1611 (($ $) NIL)) (-1932 (($ $) NIL)) (-1625 (($ $) NIL)) (-1743 (($ $) NIL)) (-1598 (($ $) NIL)) (-1719 (($ $) 85)) (-1575 (($ $) 49)) (-2199 (($ $) 51)) (-3274 (($) 34 T CONST)) (-3286 (($) 38 T CONST)) (-4035 (((-1124) $) 27) (((-1124) $ (-112)) 29) (((-1230) (-798) $) 30) (((-1230) (-798) $ (-112)) 31)) (-1699 (($ $ (-747)) NIL) (($ $) NIL)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 39)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 42)) (-2511 (($ $ $) 45) (($ $ (-549)) 41)) (-2498 (($ $) 36) (($ $ $) 50)) (-2484 (($ $ $) 61)) (** (($ $ (-892)) 67) (($ $ (-747)) NIL) (($ $ (-549)) 88) (($ $ (-400 (-549))) 125) (($ $ $) 117)) (* (($ (-892) $) 65) (($ (-747) $) NIL) (($ (-549) $) 68) (($ $ $) 60) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL)))
+(((-372) (-13 (-397) (-227) (-594 (-1124)) (-804) (-593 (-219)) (-1164) (-594 (-525)) (-10 -8 (-15 -2511 ($ $ (-549))) (-15 ** ($ $ $)) (-15 -4190 ($ $)) (-15 -4162 ((-549) $ $)) (-15 -1309 ($ $ (-549))) (-15 -2991 ((-400 (-549)) $ (-747))) (-15 -2991 ((-400 (-549)) $ (-747) (-747))) (-15 -4053 ($)) (-15 -2298 ($)) (-15 -2937 ($)) (-15 -1585 ($ $ $)) (-15 -4053 ($ $)) (-15 -2298 ($ $)) (-15 -2843 ($ (-219))) (-15 -2866 ((-1230))) (-15 -2866 ((-1230) (-747))) (-15 -1862 ((-1230))) (-15 -1862 ((-1230) (-747))) (-15 -2583 ((-1230))) (-15 -2583 ((-1230) (-747))) (-15 -1330 ((-1230) (-747))) (-6 -4327) (-6 -4319)))) (T -372))
+((** (*1 *1 *1 *1) (-5 *1 (-372))) (-2511 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-372)))) (-4190 (*1 *1 *1) (-5 *1 (-372))) (-4162 (*1 *2 *1 *1) (-12 (-5 *2 (-549)) (-5 *1 (-372)))) (-1309 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-372)))) (-2991 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *2 (-400 (-549))) (-5 *1 (-372)))) (-2991 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-747)) (-5 *2 (-400 (-549))) (-5 *1 (-372)))) (-4053 (*1 *1) (-5 *1 (-372))) (-2298 (*1 *1) (-5 *1 (-372))) (-2937 (*1 *1) (-5 *1 (-372))) (-1585 (*1 *1 *1 *1) (-5 *1 (-372))) (-4053 (*1 *1 *1) (-5 *1 (-372))) (-2298 (*1 *1 *1) (-5 *1 (-372))) (-2843 (*1 *1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-372)))) (-2866 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-372)))) (-2866 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1230)) (-5 *1 (-372)))) (-1862 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-372)))) (-1862 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1230)) (-5 *1 (-372)))) (-2583 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-372)))) (-2583 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1230)) (-5 *1 (-372)))) (-1330 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1230)) (-5 *1 (-372)))))
+(-13 (-397) (-227) (-594 (-1124)) (-804) (-593 (-219)) (-1164) (-594 (-525)) (-10 -8 (-15 -2511 ($ $ (-549))) (-15 ** ($ $ $)) (-15 -4190 ($ $)) (-15 -4162 ((-549) $ $)) (-15 -1309 ($ $ (-549))) (-15 -2991 ((-400 (-549)) $ (-747))) (-15 -2991 ((-400 (-549)) $ (-747) (-747))) (-15 -4053 ($)) (-15 -2298 ($)) (-15 -2937 ($)) (-15 -1585 ($ $ $)) (-15 -4053 ($ $)) (-15 -2298 ($ $)) (-15 -2843 ($ (-219))) (-15 -2866 ((-1230))) (-15 -2866 ((-1230) (-747))) (-15 -1862 ((-1230))) (-15 -1862 ((-1230) (-747))) (-15 -2583 ((-1230))) (-15 -2583 ((-1230) (-747))) (-15 -1330 ((-1230) (-747))) (-6 -4327) (-6 -4319)))
+((-2310 (((-621 (-287 (-923 |#1|))) (-287 (-400 (-923 (-549)))) |#1|) 46) (((-621 (-287 (-923 |#1|))) (-400 (-923 (-549))) |#1|) 45) (((-621 (-621 (-287 (-923 |#1|)))) (-621 (-287 (-400 (-923 (-549))))) |#1|) 42) (((-621 (-621 (-287 (-923 |#1|)))) (-621 (-400 (-923 (-549)))) |#1|) 36)) (-3078 (((-621 |#1|) (-400 (-923 (-549))) |#1|) 20) (((-621 (-621 |#1|)) (-621 (-400 (-923 (-549)))) (-621 (-1142)) |#1|) 30)))
+(((-373 |#1|) (-10 -7 (-15 -2310 ((-621 (-621 (-287 (-923 |#1|)))) (-621 (-400 (-923 (-549)))) |#1|)) (-15 -2310 ((-621 (-621 (-287 (-923 |#1|)))) (-621 (-287 (-400 (-923 (-549))))) |#1|)) (-15 -2310 ((-621 (-287 (-923 |#1|))) (-400 (-923 (-549))) |#1|)) (-15 -2310 ((-621 (-287 (-923 |#1|))) (-287 (-400 (-923 (-549)))) |#1|)) (-15 -3078 ((-621 (-621 |#1|)) (-621 (-400 (-923 (-549)))) (-621 (-1142)) |#1|)) (-15 -3078 ((-621 |#1|) (-400 (-923 (-549))) |#1|))) (-13 (-821) (-356))) (T -373))
+((-3078 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 (-549)))) (-5 *2 (-621 *4)) (-5 *1 (-373 *4)) (-4 *4 (-13 (-821) (-356))))) (-3078 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 (-400 (-923 (-549))))) (-5 *4 (-621 (-1142))) (-5 *2 (-621 (-621 *5))) (-5 *1 (-373 *5)) (-4 *5 (-13 (-821) (-356))))) (-2310 (*1 *2 *3 *4) (-12 (-5 *3 (-287 (-400 (-923 (-549))))) (-5 *2 (-621 (-287 (-923 *4)))) (-5 *1 (-373 *4)) (-4 *4 (-13 (-821) (-356))))) (-2310 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 (-549)))) (-5 *2 (-621 (-287 (-923 *4)))) (-5 *1 (-373 *4)) (-4 *4 (-13 (-821) (-356))))) (-2310 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-287 (-400 (-923 (-549)))))) (-5 *2 (-621 (-621 (-287 (-923 *4))))) (-5 *1 (-373 *4)) (-4 *4 (-13 (-821) (-356))))) (-2310 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-400 (-923 (-549))))) (-5 *2 (-621 (-621 (-287 (-923 *4))))) (-5 *1 (-373 *4)) (-4 *4 (-13 (-821) (-356))))))
+(-10 -7 (-15 -2310 ((-621 (-621 (-287 (-923 |#1|)))) (-621 (-400 (-923 (-549)))) |#1|)) (-15 -2310 ((-621 (-621 (-287 (-923 |#1|)))) (-621 (-287 (-400 (-923 (-549))))) |#1|)) (-15 -2310 ((-621 (-287 (-923 |#1|))) (-400 (-923 (-549))) |#1|)) (-15 -2310 ((-621 (-287 (-923 |#1|))) (-287 (-400 (-923 (-549)))) |#1|)) (-15 -3078 ((-621 (-621 |#1|)) (-621 (-400 (-923 (-549)))) (-621 (-1142)) |#1|)) (-15 -3078 ((-621 |#1|) (-400 (-923 (-549))) |#1|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#2| "failed") $) 26)) (-2657 ((|#2| $) 28)) (-2068 (($ $) NIL)) (-1751 (((-747) $) 10)) (-2758 (((-621 $) $) 20)) (-2988 (((-112) $) NIL)) (-3525 (($ |#2| |#1|) 18)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-4249 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 14)) (-2027 ((|#2| $) 15)) (-2042 ((|#1| $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 45) (($ |#2|) 27)) (-2157 (((-621 |#1|) $) 17)) (-4068 ((|#1| $ |#2|) 47)) (-3274 (($) 29 T CONST)) (-2087 (((-621 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 13)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ |#1| $) 32) (($ $ |#1|) 33) (($ |#1| |#2|) 35) (($ |#2| |#1|) 36)))
(((-374 |#1| |#2|) (-13 (-375 |#1| |#2|) (-10 -8 (-15 * ($ |#2| |#1|)))) (-1018) (-823)) (T -374))
((* (*1 *1 *2 *3) (-12 (-5 *1 (-374 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-823)))))
(-13 (-375 |#1| |#2|) (-10 -8 (-15 * ($ |#2| |#1|))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2714 (((-3 |#2| "failed") $) 44)) (-2659 ((|#2| $) 43)) (-2070 (($ $) 30)) (-3347 (((-747) $) 34)) (-3750 (((-621 $) $) 35)) (-2205 (((-112) $) 38)) (-3526 (($ |#2| |#1|) 39)) (-2797 (($ (-1 |#1| |#1|) $) 40)) (-3647 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 31)) (-2028 ((|#2| $) 33)) (-2043 ((|#1| $) 32)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11) (($ |#2|) 45)) (-4141 (((-621 |#1|) $) 36)) (-2152 ((|#1| $ |#2|) 41)) (-3276 (($) 18 T CONST)) (-2631 (((-621 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 37)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26) (($ |#1| |#2|) 42)))
-(((-375 |#1| |#2|) (-138) (-1018) (-1067)) (T -375))
-((* (*1 *1 *2 *3) (-12 (-4 *1 (-375 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1067)))) (-2152 (*1 *2 *1 *3) (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1067)) (-4 *2 (-1018)))) (-2797 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1067)))) (-3526 (*1 *1 *2 *3) (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1067)))) (-2205 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1067)) (-5 *2 (-112)))) (-2631 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1067)) (-5 *2 (-621 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-4141 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1067)) (-5 *2 (-621 *3)))) (-3750 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-1067)) (-5 *2 (-621 *1)) (-4 *1 (-375 *3 *4)))) (-3347 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1067)) (-5 *2 (-747)))) (-2028 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1067)))) (-2043 (*1 *2 *1) (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1067)) (-4 *2 (-1018)))) (-3647 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1067)) (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))) (-2070 (*1 *1 *1) (-12 (-4 *1 (-375 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1067)))))
-(-13 (-111 |t#1| |t#1|) (-1009 |t#2|) (-10 -8 (-15 * ($ |t#1| |t#2|)) (-15 -2152 (|t#1| $ |t#2|)) (-15 -2797 ($ (-1 |t#1| |t#1|) $)) (-15 -3526 ($ |t#2| |t#1|)) (-15 -2205 ((-112) $)) (-15 -2631 ((-621 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -4141 ((-621 |t#1|) $)) (-15 -3750 ((-621 $) $)) (-15 -3347 ((-747) $)) (-15 -2028 (|t#2| $)) (-15 -2043 (|t#1| $)) (-15 -3647 ((-2 (|:| |k| |t#2|) (|:| |c| |t#1|)) $)) (-15 -2070 ($ $)) (IF (|has| |t#1| (-170)) (-6 (-694 |t#1|)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-694 |#1|) |has| |#1| (-170)) ((-1009 |#2|) . T) ((-1024 |#1|) . T) ((-1067) . T))
-((-3316 (((-1231) $) 7)) (-3846 (((-834) $) 8) (($ (-665 (-675))) 14) (($ (-621 (-323))) 13) (($ (-323)) 12) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 11)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2712 (((-3 |#2| "failed") $) 44)) (-2657 ((|#2| $) 43)) (-2068 (($ $) 30)) (-1751 (((-747) $) 34)) (-2758 (((-621 $) $) 35)) (-2988 (((-112) $) 38)) (-3525 (($ |#2| |#1|) 39)) (-2795 (($ (-1 |#1| |#1|) $) 40)) (-4249 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 31)) (-2027 ((|#2| $) 33)) (-2042 ((|#1| $) 32)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11) (($ |#2|) 45)) (-2157 (((-621 |#1|) $) 36)) (-4068 ((|#1| $ |#2|) 41)) (-3274 (($) 18 T CONST)) (-2087 (((-621 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 37)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26) (($ |#1| |#2|) 42)))
+(((-375 |#1| |#2|) (-138) (-1018) (-1066)) (T -375))
+((* (*1 *1 *2 *3) (-12 (-4 *1 (-375 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1066)))) (-4068 (*1 *2 *1 *3) (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1066)) (-4 *2 (-1018)))) (-2795 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1066)))) (-3525 (*1 *1 *2 *3) (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1066)))) (-2988 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1066)) (-5 *2 (-112)))) (-2087 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1066)) (-5 *2 (-621 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-2157 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1066)) (-5 *2 (-621 *3)))) (-2758 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-1066)) (-5 *2 (-621 *1)) (-4 *1 (-375 *3 *4)))) (-1751 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1066)) (-5 *2 (-747)))) (-2027 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1066)))) (-2042 (*1 *2 *1) (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1066)) (-4 *2 (-1018)))) (-4249 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1066)) (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))) (-2068 (*1 *1 *1) (-12 (-4 *1 (-375 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1066)))))
+(-13 (-111 |t#1| |t#1|) (-1009 |t#2|) (-10 -8 (-15 * ($ |t#1| |t#2|)) (-15 -4068 (|t#1| $ |t#2|)) (-15 -2795 ($ (-1 |t#1| |t#1|) $)) (-15 -3525 ($ |t#2| |t#1|)) (-15 -2988 ((-112) $)) (-15 -2087 ((-621 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -2157 ((-621 |t#1|) $)) (-15 -2758 ((-621 $) $)) (-15 -1751 ((-747) $)) (-15 -2027 (|t#2| $)) (-15 -2042 (|t#1| $)) (-15 -4249 ((-2 (|:| |k| |t#2|) (|:| |c| |t#1|)) $)) (-15 -2068 ($ $)) (IF (|has| |t#1| (-170)) (-6 (-694 |t#1|)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-694 |#1|) |has| |#1| (-170)) ((-1009 |#2|) . T) ((-1024 |#1|) . T) ((-1066) . T))
+((-3314 (((-1230) $) 7)) (-3845 (((-834) $) 8) (($ (-665 (-675))) 14) (($ (-621 (-323))) 13) (($ (-323)) 12) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 11)))
(((-376) (-138)) (T -376))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-665 (-675))) (-4 *1 (-376)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-4 *1 (-376)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-323)) (-4 *1 (-376)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) (-4 *1 (-376)))))
-(-13 (-388) (-10 -8 (-15 -3846 ($ (-665 (-675)))) (-15 -3846 ($ (-621 (-323)))) (-15 -3846 ($ (-323))) (-15 -3846 ($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))))))
-(((-593 (-834)) . T) ((-388) . T) ((-1180) . T))
-((-2714 (((-3 $ "failed") (-665 (-309 (-372)))) 21) (((-3 $ "failed") (-665 (-309 (-549)))) 19) (((-3 $ "failed") (-665 (-923 (-372)))) 17) (((-3 $ "failed") (-665 (-923 (-549)))) 15) (((-3 $ "failed") (-665 (-400 (-923 (-372))))) 13) (((-3 $ "failed") (-665 (-400 (-923 (-549))))) 11)) (-2659 (($ (-665 (-309 (-372)))) 22) (($ (-665 (-309 (-549)))) 20) (($ (-665 (-923 (-372)))) 18) (($ (-665 (-923 (-549)))) 16) (($ (-665 (-400 (-923 (-372))))) 14) (($ (-665 (-400 (-923 (-549))))) 12)) (-3316 (((-1231) $) 7)) (-3846 (((-834) $) 8) (($ (-621 (-323))) 25) (($ (-323)) 24) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 23)))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-665 (-675))) (-4 *1 (-376)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-4 *1 (-376)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-323)) (-4 *1 (-376)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) (-4 *1 (-376)))))
+(-13 (-388) (-10 -8 (-15 -3845 ($ (-665 (-675)))) (-15 -3845 ($ (-621 (-323)))) (-15 -3845 ($ (-323))) (-15 -3845 ($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))))))
+(((-593 (-834)) . T) ((-388) . T) ((-1179) . T))
+((-2712 (((-3 $ "failed") (-665 (-309 (-372)))) 21) (((-3 $ "failed") (-665 (-309 (-549)))) 19) (((-3 $ "failed") (-665 (-923 (-372)))) 17) (((-3 $ "failed") (-665 (-923 (-549)))) 15) (((-3 $ "failed") (-665 (-400 (-923 (-372))))) 13) (((-3 $ "failed") (-665 (-400 (-923 (-549))))) 11)) (-2657 (($ (-665 (-309 (-372)))) 22) (($ (-665 (-309 (-549)))) 20) (($ (-665 (-923 (-372)))) 18) (($ (-665 (-923 (-549)))) 16) (($ (-665 (-400 (-923 (-372))))) 14) (($ (-665 (-400 (-923 (-549))))) 12)) (-3314 (((-1230) $) 7)) (-3845 (((-834) $) 8) (($ (-621 (-323))) 25) (($ (-323)) 24) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 23)))
(((-377) (-138)) (T -377))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-4 *1 (-377)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-323)) (-4 *1 (-377)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) (-4 *1 (-377)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-665 (-309 (-372)))) (-4 *1 (-377)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-665 (-309 (-372)))) (-4 *1 (-377)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-665 (-309 (-549)))) (-4 *1 (-377)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-665 (-309 (-549)))) (-4 *1 (-377)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-665 (-923 (-372)))) (-4 *1 (-377)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-665 (-923 (-372)))) (-4 *1 (-377)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-665 (-923 (-549)))) (-4 *1 (-377)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-665 (-923 (-549)))) (-4 *1 (-377)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-665 (-400 (-923 (-372))))) (-4 *1 (-377)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-665 (-400 (-923 (-372))))) (-4 *1 (-377)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-665 (-400 (-923 (-549))))) (-4 *1 (-377)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-665 (-400 (-923 (-549))))) (-4 *1 (-377)))))
-(-13 (-388) (-10 -8 (-15 -3846 ($ (-621 (-323)))) (-15 -3846 ($ (-323))) (-15 -3846 ($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323)))))) (-15 -2659 ($ (-665 (-309 (-372))))) (-15 -2714 ((-3 $ "failed") (-665 (-309 (-372))))) (-15 -2659 ($ (-665 (-309 (-549))))) (-15 -2714 ((-3 $ "failed") (-665 (-309 (-549))))) (-15 -2659 ($ (-665 (-923 (-372))))) (-15 -2714 ((-3 $ "failed") (-665 (-923 (-372))))) (-15 -2659 ($ (-665 (-923 (-549))))) (-15 -2714 ((-3 $ "failed") (-665 (-923 (-549))))) (-15 -2659 ($ (-665 (-400 (-923 (-372)))))) (-15 -2714 ((-3 $ "failed") (-665 (-400 (-923 (-372)))))) (-15 -2659 ($ (-665 (-400 (-923 (-549)))))) (-15 -2714 ((-3 $ "failed") (-665 (-400 (-923 (-549))))))))
-(((-593 (-834)) . T) ((-388) . T) ((-1180) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2070 (($ $) NIL)) (-2246 (($ |#1| |#2|) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1823 ((|#2| $) NIL)) (-2043 ((|#1| $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 28)) (-3276 (($) 12 T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ |#1| $) 16) (($ $ |#1|) 19)))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-4 *1 (-377)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-323)) (-4 *1 (-377)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) (-4 *1 (-377)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-665 (-309 (-372)))) (-4 *1 (-377)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-665 (-309 (-372)))) (-4 *1 (-377)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-665 (-309 (-549)))) (-4 *1 (-377)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-665 (-309 (-549)))) (-4 *1 (-377)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-665 (-923 (-372)))) (-4 *1 (-377)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-665 (-923 (-372)))) (-4 *1 (-377)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-665 (-923 (-549)))) (-4 *1 (-377)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-665 (-923 (-549)))) (-4 *1 (-377)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-665 (-400 (-923 (-372))))) (-4 *1 (-377)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-665 (-400 (-923 (-372))))) (-4 *1 (-377)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-665 (-400 (-923 (-549))))) (-4 *1 (-377)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-665 (-400 (-923 (-549))))) (-4 *1 (-377)))))
+(-13 (-388) (-10 -8 (-15 -3845 ($ (-621 (-323)))) (-15 -3845 ($ (-323))) (-15 -3845 ($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323)))))) (-15 -2657 ($ (-665 (-309 (-372))))) (-15 -2712 ((-3 $ "failed") (-665 (-309 (-372))))) (-15 -2657 ($ (-665 (-309 (-549))))) (-15 -2712 ((-3 $ "failed") (-665 (-309 (-549))))) (-15 -2657 ($ (-665 (-923 (-372))))) (-15 -2712 ((-3 $ "failed") (-665 (-923 (-372))))) (-15 -2657 ($ (-665 (-923 (-549))))) (-15 -2712 ((-3 $ "failed") (-665 (-923 (-549))))) (-15 -2657 ($ (-665 (-400 (-923 (-372)))))) (-15 -2712 ((-3 $ "failed") (-665 (-400 (-923 (-372)))))) (-15 -2657 ($ (-665 (-400 (-923 (-549)))))) (-15 -2712 ((-3 $ "failed") (-665 (-400 (-923 (-549))))))))
+(((-593 (-834)) . T) ((-388) . T) ((-1179) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2068 (($ $) NIL)) (-2244 (($ |#1| |#2|) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-2377 ((|#2| $) NIL)) (-2042 ((|#1| $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 28)) (-3274 (($) 12 T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ |#1| $) 16) (($ $ |#1|) 19)))
(((-378 |#1| |#2|) (-13 (-111 |#1| |#1|) (-500 |#1| |#2|) (-10 -7 (IF (|has| |#1| (-170)) (-6 (-694 |#1|)) |%noBranch|))) (-1018) (-823)) (T -378))
NIL
(-13 (-111 |#1| |#1|) (-500 |#1| |#2|) (-10 -7 (IF (|has| |#1| (-170)) (-6 (-694 |#1|)) |%noBranch|)))
-((-3834 (((-112) $ $) NIL)) (-3614 (((-747) $) 59)) (-1682 (($) NIL T CONST)) (-1869 (((-3 $ "failed") $ $) 61)) (-2714 (((-3 |#1| "failed") $) NIL)) (-2659 ((|#1| $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1707 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 53)) (-2675 (((-112) $) 15)) (-1302 ((|#1| $ (-549)) NIL)) (-2009 (((-747) $ (-549)) NIL)) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-3482 (($ (-1 |#1| |#1|) $) 38)) (-3653 (($ (-1 (-747) (-747)) $) 35)) (-2694 (((-3 $ "failed") $ $) 50)) (-3851 (((-1125) $) NIL)) (-4039 (($ $ $) 26)) (-4122 (($ $ $) 24)) (-3990 (((-1087) $) NIL)) (-4024 (((-621 (-2 (|:| |gen| |#1|) (|:| -2719 (-747)))) $) 32)) (-3148 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 56)) (-3846 (((-834) $) 22) (($ |#1|) NIL)) (-3287 (($) 9 T CONST)) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) 41)) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) 63 (|has| |#1| (-823)))) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ |#1| (-747)) 40)) (* (($ $ $) 47) (($ |#1| $) 30) (($ $ |#1|) 28)))
-(((-379 |#1|) (-13 (-703) (-1009 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-747))) (-15 -4122 ($ $ $)) (-15 -4039 ($ $ $)) (-15 -2694 ((-3 $ "failed") $ $)) (-15 -1869 ((-3 $ "failed") $ $)) (-15 -3148 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1707 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3614 ((-747) $)) (-15 -4024 ((-621 (-2 (|:| |gen| |#1|) (|:| -2719 (-747)))) $)) (-15 -2009 ((-747) $ (-549))) (-15 -1302 (|#1| $ (-549))) (-15 -3653 ($ (-1 (-747) (-747)) $)) (-15 -3482 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-823)) (-6 (-823)) |%noBranch|))) (-1067)) (T -379))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-379 *2)) (-4 *2 (-1067)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-379 *2)) (-4 *2 (-1067)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-5 *1 (-379 *2)) (-4 *2 (-1067)))) (-4122 (*1 *1 *1 *1) (-12 (-5 *1 (-379 *2)) (-4 *2 (-1067)))) (-4039 (*1 *1 *1 *1) (-12 (-5 *1 (-379 *2)) (-4 *2 (-1067)))) (-2694 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-379 *2)) (-4 *2 (-1067)))) (-1869 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-379 *2)) (-4 *2 (-1067)))) (-3148 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-379 *3)) (|:| |rm| (-379 *3)))) (-5 *1 (-379 *3)) (-4 *3 (-1067)))) (-1707 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-379 *3)) (|:| |mm| (-379 *3)) (|:| |rm| (-379 *3)))) (-5 *1 (-379 *3)) (-4 *3 (-1067)))) (-3614 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-379 *3)) (-4 *3 (-1067)))) (-4024 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2719 (-747))))) (-5 *1 (-379 *3)) (-4 *3 (-1067)))) (-2009 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-747)) (-5 *1 (-379 *4)) (-4 *4 (-1067)))) (-1302 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-379 *2)) (-4 *2 (-1067)))) (-3653 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-747) (-747))) (-5 *1 (-379 *3)) (-4 *3 (-1067)))) (-3482 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1067)) (-5 *1 (-379 *3)))))
-(-13 (-703) (-1009 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-747))) (-15 -4122 ($ $ $)) (-15 -4039 ($ $ $)) (-15 -2694 ((-3 $ "failed") $ $)) (-15 -1869 ((-3 $ "failed") $ $)) (-15 -3148 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1707 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3614 ((-747) $)) (-15 -4024 ((-621 (-2 (|:| |gen| |#1|) (|:| -2719 (-747)))) $)) (-15 -2009 ((-747) $ (-549))) (-15 -1302 (|#1| $ (-549))) (-15 -3653 ($ (-1 (-747) (-747)) $)) (-15 -3482 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-823)) (-6 (-823)) |%noBranch|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2714 (((-3 (-549) "failed") $) 45)) (-2659 (((-549) $) 44)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-2863 (($ $ $) 52)) (-3575 (($ $ $) 51)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-2042 (((-3 $ "failed") $ $) 40)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-549)) 46)) (-2082 (((-747)) 28)) (-1498 (((-112) $ $) 37)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2448 (((-112) $ $) 49)) (-2425 (((-112) $ $) 48)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 50)) (-2412 (((-112) $ $) 47)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+((-3832 (((-112) $ $) NIL)) (-3614 (((-747) $) 59)) (-3034 (($) NIL T CONST)) (-1376 (((-3 $ "failed") $ $) 61)) (-2712 (((-3 |#1| "failed") $) NIL)) (-2657 ((|#1| $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3296 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 53)) (-2297 (((-112) $) 15)) (-2941 ((|#1| $ (-549)) NIL)) (-1805 (((-747) $ (-549)) NIL)) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-1634 (($ (-1 |#1| |#1|) $) 38)) (-3702 (($ (-1 (-747) (-747)) $) 35)) (-4315 (((-3 $ "failed") $ $) 50)) (-3441 (((-1124) $) NIL)) (-2265 (($ $ $) 26)) (-1571 (($ $ $) 24)) (-3988 (((-1086) $) NIL)) (-3390 (((-621 (-2 (|:| |gen| |#1|) (|:| -2717 (-747)))) $) 32)) (-2288 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 56)) (-3845 (((-834) $) 22) (($ |#1|) NIL)) (-3286 (($) 9 T CONST)) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) 41)) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) 63 (|has| |#1| (-823)))) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ |#1| (-747)) 40)) (* (($ $ $) 47) (($ |#1| $) 30) (($ $ |#1|) 28)))
+(((-379 |#1|) (-13 (-703) (-1009 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-747))) (-15 -1571 ($ $ $)) (-15 -2265 ($ $ $)) (-15 -4315 ((-3 $ "failed") $ $)) (-15 -1376 ((-3 $ "failed") $ $)) (-15 -2288 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -3296 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3614 ((-747) $)) (-15 -3390 ((-621 (-2 (|:| |gen| |#1|) (|:| -2717 (-747)))) $)) (-15 -1805 ((-747) $ (-549))) (-15 -2941 (|#1| $ (-549))) (-15 -3702 ($ (-1 (-747) (-747)) $)) (-15 -1634 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-823)) (-6 (-823)) |%noBranch|))) (-1066)) (T -379))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-379 *2)) (-4 *2 (-1066)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-379 *2)) (-4 *2 (-1066)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-5 *1 (-379 *2)) (-4 *2 (-1066)))) (-1571 (*1 *1 *1 *1) (-12 (-5 *1 (-379 *2)) (-4 *2 (-1066)))) (-2265 (*1 *1 *1 *1) (-12 (-5 *1 (-379 *2)) (-4 *2 (-1066)))) (-4315 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-379 *2)) (-4 *2 (-1066)))) (-1376 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-379 *2)) (-4 *2 (-1066)))) (-2288 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-379 *3)) (|:| |rm| (-379 *3)))) (-5 *1 (-379 *3)) (-4 *3 (-1066)))) (-3296 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-379 *3)) (|:| |mm| (-379 *3)) (|:| |rm| (-379 *3)))) (-5 *1 (-379 *3)) (-4 *3 (-1066)))) (-3614 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-379 *3)) (-4 *3 (-1066)))) (-3390 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2717 (-747))))) (-5 *1 (-379 *3)) (-4 *3 (-1066)))) (-1805 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-747)) (-5 *1 (-379 *4)) (-4 *4 (-1066)))) (-2941 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-379 *2)) (-4 *2 (-1066)))) (-3702 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-747) (-747))) (-5 *1 (-379 *3)) (-4 *3 (-1066)))) (-1634 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1066)) (-5 *1 (-379 *3)))))
+(-13 (-703) (-1009 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-747))) (-15 -1571 ($ $ $)) (-15 -2265 ($ $ $)) (-15 -4315 ((-3 $ "failed") $ $)) (-15 -1376 ((-3 $ "failed") $ $)) (-15 -2288 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -3296 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3614 ((-747) $)) (-15 -3390 ((-621 (-2 (|:| |gen| |#1|) (|:| -2717 (-747)))) $)) (-15 -1805 ((-747) $ (-549))) (-15 -2941 (|#1| $ (-549))) (-15 -3702 ($ (-1 (-747) (-747)) $)) (-15 -1634 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-823)) (-6 (-823)) |%noBranch|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2712 (((-3 (-549) "failed") $) 45)) (-2657 (((-549) $) 44)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-2861 (($ $ $) 52)) (-3574 (($ $ $) 51)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2040 (((-3 $ "failed") $ $) 40)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-549)) 46)) (-2371 (((-747)) 28)) (-2441 (((-112) $ $) 37)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2447 (((-112) $ $) 49)) (-2423 (((-112) $ $) 48)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 50)) (-2409 (((-112) $ $) 47)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-380) (-138)) (T -380))
NIL
(-13 (-541) (-823) (-1009 (-549)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-823) . T) ((-1009 (-549)) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-3135 (((-112) $) 20)) (-2296 (((-112) $) 19)) (-3743 (($ (-1125) (-1125) (-1125)) 21)) (-2481 (((-1125) $) 16)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3356 (($ (-1125) (-1125) (-1125)) 14)) (-3474 (((-1125) $) 17)) (-3983 (((-112) $) 18)) (-4071 (((-1125) $) 15)) (-3846 (((-834) $) 12) (($ (-1125)) 13) (((-1125) $) 9)) (-2389 (((-112) $ $) 7)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-823) . T) ((-1009 (-549)) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-3232 (((-112) $) 20)) (-3917 (((-112) $) 19)) (-3743 (($ (-1124) (-1124) (-1124)) 21)) (-2479 (((-1124) $) 16)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3358 (($ (-1124) (-1124) (-1124)) 14)) (-2213 (((-1124) $) 17)) (-2487 (((-112) $) 18)) (-4070 (((-1124) $) 15)) (-3845 (((-834) $) 12) (($ (-1124)) 13) (((-1124) $) 9)) (-2387 (((-112) $ $) 7)))
(((-381) (-382)) (T -381))
NIL
(-382)
-((-3834 (((-112) $ $) 7)) (-3135 (((-112) $) 14)) (-2296 (((-112) $) 15)) (-3743 (($ (-1125) (-1125) (-1125)) 13)) (-2481 (((-1125) $) 18)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3356 (($ (-1125) (-1125) (-1125)) 20)) (-3474 (((-1125) $) 17)) (-3983 (((-112) $) 16)) (-4071 (((-1125) $) 19)) (-3846 (((-834) $) 11) (($ (-1125)) 22) (((-1125) $) 21)) (-2389 (((-112) $ $) 6)))
+((-3832 (((-112) $ $) 7)) (-3232 (((-112) $) 14)) (-3917 (((-112) $) 15)) (-3743 (($ (-1124) (-1124) (-1124)) 13)) (-2479 (((-1124) $) 18)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3358 (($ (-1124) (-1124) (-1124)) 20)) (-2213 (((-1124) $) 17)) (-2487 (((-112) $) 16)) (-4070 (((-1124) $) 19)) (-3845 (((-834) $) 11) (($ (-1124)) 22) (((-1124) $) 21)) (-2387 (((-112) $ $) 6)))
(((-382) (-138)) (T -382))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1125)) (-4 *1 (-382)))) (-3846 (*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-1125)))) (-3356 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1125)) (-4 *1 (-382)))) (-4071 (*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-1125)))) (-2481 (*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-1125)))) (-3474 (*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-1125)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-112)))) (-2296 (*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-112)))) (-3135 (*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-112)))) (-3743 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1125)) (-4 *1 (-382)))))
-(-13 (-1067) (-10 -8 (-15 -3846 ($ (-1125))) (-15 -3846 ((-1125) $)) (-15 -3356 ($ (-1125) (-1125) (-1125))) (-15 -4071 ((-1125) $)) (-15 -2481 ((-1125) $)) (-15 -3474 ((-1125) $)) (-15 -3983 ((-112) $)) (-15 -2296 ((-112) $)) (-15 -3135 ((-112) $)) (-15 -3743 ($ (-1125) (-1125) (-1125)))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1328 (((-834) $) 50)) (-1682 (($) NIL T CONST)) (-3117 (($ $ (-892)) NIL)) (-2943 (($ $ (-892)) NIL)) (-2884 (($ $ (-892)) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-4248 (($ (-747)) 26)) (-2985 (((-747)) 17)) (-3080 (((-834) $) 52)) (-3293 (($ $ $) NIL)) (-3846 (((-834) $) NIL)) (-4272 (($ $ $ $) NIL)) (-2174 (($ $ $) NIL)) (-3276 (($) 20 T CONST)) (-2389 (((-112) $ $) 28)) (-2500 (($ $) 34) (($ $ $) 36)) (-2486 (($ $ $) 37)) (** (($ $ (-892)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 38) (($ $ |#3|) NIL) (($ |#3| $) 33)))
-(((-383 |#1| |#2| |#3|) (-13 (-721 |#3|) (-10 -8 (-15 -2985 ((-747))) (-15 -3080 ((-834) $)) (-15 -1328 ((-834) $)) (-15 -4248 ($ (-747))))) (-747) (-747) (-170)) (T -383))
-((-2985 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-383 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-170)))) (-3080 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-383 *3 *4 *5)) (-14 *3 (-747)) (-14 *4 (-747)) (-4 *5 (-170)))) (-1328 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-383 *3 *4 *5)) (-14 *3 (-747)) (-14 *4 (-747)) (-4 *5 (-170)))) (-4248 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-383 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-170)))))
-(-13 (-721 |#3|) (-10 -8 (-15 -2985 ((-747))) (-15 -3080 ((-834) $)) (-15 -1328 ((-834) $)) (-15 -4248 ($ (-747)))))
-((-3712 (((-1125)) 10)) (-1451 (((-1114 (-1125))) 28)) (-3294 (((-1231) (-1125)) 25) (((-1231) (-381)) 24)) (-3300 (((-1231)) 26)) (-4224 (((-1114 (-1125))) 27)))
-(((-384) (-10 -7 (-15 -4224 ((-1114 (-1125)))) (-15 -1451 ((-1114 (-1125)))) (-15 -3300 ((-1231))) (-15 -3294 ((-1231) (-381))) (-15 -3294 ((-1231) (-1125))) (-15 -3712 ((-1125))))) (T -384))
-((-3712 (*1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-384)))) (-3294 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-384)))) (-3294 (*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1231)) (-5 *1 (-384)))) (-3300 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-384)))) (-1451 (*1 *2) (-12 (-5 *2 (-1114 (-1125))) (-5 *1 (-384)))) (-4224 (*1 *2) (-12 (-5 *2 (-1114 (-1125))) (-5 *1 (-384)))))
-(-10 -7 (-15 -4224 ((-1114 (-1125)))) (-15 -1451 ((-1114 (-1125)))) (-15 -3300 ((-1231))) (-15 -3294 ((-1231) (-381))) (-15 -3294 ((-1231) (-1125))) (-15 -3712 ((-1125))))
-((-2088 (((-747) (-329 |#1| |#2| |#3| |#4|)) 16)))
-(((-385 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2088 ((-747) (-329 |#1| |#2| |#3| |#4|)))) (-13 (-361) (-356)) (-1202 |#1|) (-1202 (-400 |#2|)) (-335 |#1| |#2| |#3|)) (T -385))
-((-2088 (*1 *2 *3) (-12 (-5 *3 (-329 *4 *5 *6 *7)) (-4 *4 (-13 (-361) (-356))) (-4 *5 (-1202 *4)) (-4 *6 (-1202 (-400 *5))) (-4 *7 (-335 *4 *5 *6)) (-5 *2 (-747)) (-5 *1 (-385 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2088 ((-747) (-329 |#1| |#2| |#3| |#4|))))
-((-3846 (((-387) |#1|) 11)))
-(((-386 |#1|) (-10 -7 (-15 -3846 ((-387) |#1|))) (-1067)) (T -386))
-((-3846 (*1 *2 *3) (-12 (-5 *2 (-387)) (-5 *1 (-386 *3)) (-4 *3 (-1067)))))
-(-10 -7 (-15 -3846 ((-387) |#1|)))
-((-3834 (((-112) $ $) NIL)) (-4169 (((-621 (-1125)) $ (-621 (-1125))) 38)) (-2242 (((-621 (-1125)) $ (-621 (-1125))) 39)) (-1922 (((-621 (-1125)) $ (-621 (-1125))) 40)) (-2607 (((-621 (-1125)) $) 35)) (-3743 (($) 23)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2087 (((-621 (-1125)) $) 36)) (-2617 (((-621 (-1125)) $) 37)) (-2699 (((-1231) $ (-549)) 33) (((-1231) $) 34)) (-2845 (($ (-834) (-549)) 30)) (-3846 (((-834) $) 42) (($ (-834)) 25)) (-2389 (((-112) $ $) NIL)))
-(((-387) (-13 (-1067) (-10 -8 (-15 -3846 ($ (-834))) (-15 -2845 ($ (-834) (-549))) (-15 -2699 ((-1231) $ (-549))) (-15 -2699 ((-1231) $)) (-15 -2617 ((-621 (-1125)) $)) (-15 -2087 ((-621 (-1125)) $)) (-15 -3743 ($)) (-15 -2607 ((-621 (-1125)) $)) (-15 -1922 ((-621 (-1125)) $ (-621 (-1125)))) (-15 -2242 ((-621 (-1125)) $ (-621 (-1125)))) (-15 -4169 ((-621 (-1125)) $ (-621 (-1125))))))) (T -387))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-834)) (-5 *1 (-387)))) (-2845 (*1 *1 *2 *3) (-12 (-5 *2 (-834)) (-5 *3 (-549)) (-5 *1 (-387)))) (-2699 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1231)) (-5 *1 (-387)))) (-2699 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-387)))) (-2617 (*1 *2 *1) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-387)))) (-2087 (*1 *2 *1) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-387)))) (-3743 (*1 *1) (-5 *1 (-387))) (-2607 (*1 *2 *1) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-387)))) (-1922 (*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-387)))) (-2242 (*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-387)))) (-4169 (*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-387)))))
-(-13 (-1067) (-10 -8 (-15 -3846 ($ (-834))) (-15 -2845 ($ (-834) (-549))) (-15 -2699 ((-1231) $ (-549))) (-15 -2699 ((-1231) $)) (-15 -2617 ((-621 (-1125)) $)) (-15 -2087 ((-621 (-1125)) $)) (-15 -3743 ($)) (-15 -2607 ((-621 (-1125)) $)) (-15 -1922 ((-621 (-1125)) $ (-621 (-1125)))) (-15 -2242 ((-621 (-1125)) $ (-621 (-1125)))) (-15 -4169 ((-621 (-1125)) $ (-621 (-1125))))))
-((-3316 (((-1231) $) 7)) (-3846 (((-834) $) 8)))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1124)) (-4 *1 (-382)))) (-3845 (*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-1124)))) (-3358 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1124)) (-4 *1 (-382)))) (-4070 (*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-1124)))) (-2479 (*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-1124)))) (-2213 (*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-1124)))) (-2487 (*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-112)))) (-3917 (*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-112)))) (-3232 (*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-112)))) (-3743 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1124)) (-4 *1 (-382)))))
+(-13 (-1066) (-10 -8 (-15 -3845 ($ (-1124))) (-15 -3845 ((-1124) $)) (-15 -3358 ($ (-1124) (-1124) (-1124))) (-15 -4070 ((-1124) $)) (-15 -2479 ((-1124) $)) (-15 -2213 ((-1124) $)) (-15 -2487 ((-112) $)) (-15 -3917 ((-112) $)) (-15 -3232 ((-112) $)) (-15 -3743 ($ (-1124) (-1124) (-1124)))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3709 (((-834) $) 50)) (-3034 (($) NIL T CONST)) (-2039 (($ $ (-892)) NIL)) (-3764 (($ $ (-892)) NIL)) (-4304 (($ $ (-892)) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-4247 (($ (-747)) 26)) (-2260 (((-747)) 17)) (-3133 (((-834) $) 52)) (-3870 (($ $ $) NIL)) (-3845 (((-834) $) NIL)) (-3515 (($ $ $ $) NIL)) (-3485 (($ $ $) NIL)) (-3274 (($) 20 T CONST)) (-2387 (((-112) $ $) 28)) (-2498 (($ $) 34) (($ $ $) 36)) (-2484 (($ $ $) 37)) (** (($ $ (-892)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 38) (($ $ |#3|) NIL) (($ |#3| $) 33)))
+(((-383 |#1| |#2| |#3|) (-13 (-721 |#3|) (-10 -8 (-15 -2260 ((-747))) (-15 -3133 ((-834) $)) (-15 -3709 ((-834) $)) (-15 -4247 ($ (-747))))) (-747) (-747) (-170)) (T -383))
+((-2260 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-383 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-170)))) (-3133 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-383 *3 *4 *5)) (-14 *3 (-747)) (-14 *4 (-747)) (-4 *5 (-170)))) (-3709 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-383 *3 *4 *5)) (-14 *3 (-747)) (-14 *4 (-747)) (-4 *5 (-170)))) (-4247 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-383 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-170)))))
+(-13 (-721 |#3|) (-10 -8 (-15 -2260 ((-747))) (-15 -3133 ((-834) $)) (-15 -3709 ((-834) $)) (-15 -4247 ($ (-747)))))
+((-3794 (((-1124)) 10)) (-3649 (((-1113 (-1124))) 28)) (-3292 (((-1230) (-1124)) 25) (((-1230) (-381)) 24)) (-3303 (((-1230)) 26)) (-3556 (((-1113 (-1124))) 27)))
+(((-384) (-10 -7 (-15 -3556 ((-1113 (-1124)))) (-15 -3649 ((-1113 (-1124)))) (-15 -3303 ((-1230))) (-15 -3292 ((-1230) (-381))) (-15 -3292 ((-1230) (-1124))) (-15 -3794 ((-1124))))) (T -384))
+((-3794 (*1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-384)))) (-3292 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-384)))) (-3292 (*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1230)) (-5 *1 (-384)))) (-3303 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-384)))) (-3649 (*1 *2) (-12 (-5 *2 (-1113 (-1124))) (-5 *1 (-384)))) (-3556 (*1 *2) (-12 (-5 *2 (-1113 (-1124))) (-5 *1 (-384)))))
+(-10 -7 (-15 -3556 ((-1113 (-1124)))) (-15 -3649 ((-1113 (-1124)))) (-15 -3303 ((-1230))) (-15 -3292 ((-1230) (-381))) (-15 -3292 ((-1230) (-1124))) (-15 -3794 ((-1124))))
+((-2729 (((-747) (-329 |#1| |#2| |#3| |#4|)) 16)))
+(((-385 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2729 ((-747) (-329 |#1| |#2| |#3| |#4|)))) (-13 (-361) (-356)) (-1201 |#1|) (-1201 (-400 |#2|)) (-335 |#1| |#2| |#3|)) (T -385))
+((-2729 (*1 *2 *3) (-12 (-5 *3 (-329 *4 *5 *6 *7)) (-4 *4 (-13 (-361) (-356))) (-4 *5 (-1201 *4)) (-4 *6 (-1201 (-400 *5))) (-4 *7 (-335 *4 *5 *6)) (-5 *2 (-747)) (-5 *1 (-385 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2729 ((-747) (-329 |#1| |#2| |#3| |#4|))))
+((-3845 (((-387) |#1|) 11)))
+(((-386 |#1|) (-10 -7 (-15 -3845 ((-387) |#1|))) (-1066)) (T -386))
+((-3845 (*1 *2 *3) (-12 (-5 *2 (-387)) (-5 *1 (-386 *3)) (-4 *3 (-1066)))))
+(-10 -7 (-15 -3845 ((-387) |#1|)))
+((-3832 (((-112) $ $) NIL)) (-2176 (((-621 (-1124)) $ (-621 (-1124))) 38)) (-4191 (((-621 (-1124)) $ (-621 (-1124))) 39)) (-1849 (((-621 (-1124)) $ (-621 (-1124))) 40)) (-1649 (((-621 (-1124)) $) 35)) (-3743 (($) 23)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2089 (((-621 (-1124)) $) 36)) (-3236 (((-621 (-1124)) $) 37)) (-2697 (((-1230) $ (-549)) 33) (((-1230) $) 34)) (-2843 (($ (-834) (-549)) 30)) (-3845 (((-834) $) 42) (($ (-834)) 25)) (-2387 (((-112) $ $) NIL)))
+(((-387) (-13 (-1066) (-10 -8 (-15 -3845 ($ (-834))) (-15 -2843 ($ (-834) (-549))) (-15 -2697 ((-1230) $ (-549))) (-15 -2697 ((-1230) $)) (-15 -3236 ((-621 (-1124)) $)) (-15 -2089 ((-621 (-1124)) $)) (-15 -3743 ($)) (-15 -1649 ((-621 (-1124)) $)) (-15 -1849 ((-621 (-1124)) $ (-621 (-1124)))) (-15 -4191 ((-621 (-1124)) $ (-621 (-1124)))) (-15 -2176 ((-621 (-1124)) $ (-621 (-1124))))))) (T -387))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-834)) (-5 *1 (-387)))) (-2843 (*1 *1 *2 *3) (-12 (-5 *2 (-834)) (-5 *3 (-549)) (-5 *1 (-387)))) (-2697 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1230)) (-5 *1 (-387)))) (-2697 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-387)))) (-3236 (*1 *2 *1) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-387)))) (-2089 (*1 *2 *1) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-387)))) (-3743 (*1 *1) (-5 *1 (-387))) (-1649 (*1 *2 *1) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-387)))) (-1849 (*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-387)))) (-4191 (*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-387)))) (-2176 (*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-387)))))
+(-13 (-1066) (-10 -8 (-15 -3845 ($ (-834))) (-15 -2843 ($ (-834) (-549))) (-15 -2697 ((-1230) $ (-549))) (-15 -2697 ((-1230) $)) (-15 -3236 ((-621 (-1124)) $)) (-15 -2089 ((-621 (-1124)) $)) (-15 -3743 ($)) (-15 -1649 ((-621 (-1124)) $)) (-15 -1849 ((-621 (-1124)) $ (-621 (-1124)))) (-15 -4191 ((-621 (-1124)) $ (-621 (-1124)))) (-15 -2176 ((-621 (-1124)) $ (-621 (-1124))))))
+((-3314 (((-1230) $) 7)) (-3845 (((-834) $) 8)))
(((-388) (-138)) (T -388))
-((-3316 (*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-1231)))))
-(-13 (-1180) (-593 (-834)) (-10 -8 (-15 -3316 ((-1231) $))))
-(((-593 (-834)) . T) ((-1180) . T))
-((-2714 (((-3 $ "failed") (-309 (-372))) 21) (((-3 $ "failed") (-309 (-549))) 19) (((-3 $ "failed") (-923 (-372))) 17) (((-3 $ "failed") (-923 (-549))) 15) (((-3 $ "failed") (-400 (-923 (-372)))) 13) (((-3 $ "failed") (-400 (-923 (-549)))) 11)) (-2659 (($ (-309 (-372))) 22) (($ (-309 (-549))) 20) (($ (-923 (-372))) 18) (($ (-923 (-549))) 16) (($ (-400 (-923 (-372)))) 14) (($ (-400 (-923 (-549)))) 12)) (-3316 (((-1231) $) 7)) (-3846 (((-834) $) 8) (($ (-621 (-323))) 25) (($ (-323)) 24) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 23)))
+((-3314 (*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-1230)))))
+(-13 (-1179) (-593 (-834)) (-10 -8 (-15 -3314 ((-1230) $))))
+(((-593 (-834)) . T) ((-1179) . T))
+((-2712 (((-3 $ "failed") (-309 (-372))) 21) (((-3 $ "failed") (-309 (-549))) 19) (((-3 $ "failed") (-923 (-372))) 17) (((-3 $ "failed") (-923 (-549))) 15) (((-3 $ "failed") (-400 (-923 (-372)))) 13) (((-3 $ "failed") (-400 (-923 (-549)))) 11)) (-2657 (($ (-309 (-372))) 22) (($ (-309 (-549))) 20) (($ (-923 (-372))) 18) (($ (-923 (-549))) 16) (($ (-400 (-923 (-372)))) 14) (($ (-400 (-923 (-549)))) 12)) (-3314 (((-1230) $) 7)) (-3845 (((-834) $) 8) (($ (-621 (-323))) 25) (($ (-323)) 24) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 23)))
(((-389) (-138)) (T -389))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-4 *1 (-389)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-323)) (-4 *1 (-389)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) (-4 *1 (-389)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-309 (-372))) (-4 *1 (-389)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-309 (-372))) (-4 *1 (-389)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-309 (-549))) (-4 *1 (-389)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-309 (-549))) (-4 *1 (-389)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-923 (-372))) (-4 *1 (-389)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-923 (-372))) (-4 *1 (-389)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-923 (-549))) (-4 *1 (-389)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-923 (-549))) (-4 *1 (-389)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-400 (-923 (-372)))) (-4 *1 (-389)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-400 (-923 (-372)))) (-4 *1 (-389)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-400 (-923 (-549)))) (-4 *1 (-389)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-400 (-923 (-549)))) (-4 *1 (-389)))))
-(-13 (-388) (-10 -8 (-15 -3846 ($ (-621 (-323)))) (-15 -3846 ($ (-323))) (-15 -3846 ($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323)))))) (-15 -2659 ($ (-309 (-372)))) (-15 -2714 ((-3 $ "failed") (-309 (-372)))) (-15 -2659 ($ (-309 (-549)))) (-15 -2714 ((-3 $ "failed") (-309 (-549)))) (-15 -2659 ($ (-923 (-372)))) (-15 -2714 ((-3 $ "failed") (-923 (-372)))) (-15 -2659 ($ (-923 (-549)))) (-15 -2714 ((-3 $ "failed") (-923 (-549)))) (-15 -2659 ($ (-400 (-923 (-372))))) (-15 -2714 ((-3 $ "failed") (-400 (-923 (-372))))) (-15 -2659 ($ (-400 (-923 (-549))))) (-15 -2714 ((-3 $ "failed") (-400 (-923 (-549)))))))
-(((-593 (-834)) . T) ((-388) . T) ((-1180) . T))
-((-2470 (((-621 (-1125)) (-621 (-1125))) 9)) (-3316 (((-1231) (-381)) 27)) (-2401 (((-1071) (-1143) (-621 (-1143)) (-1146) (-621 (-1143))) 60) (((-1071) (-1143) (-621 (-3 (|:| |array| (-621 (-1143))) (|:| |scalar| (-1143)))) (-621 (-621 (-3 (|:| |array| (-621 (-1143))) (|:| |scalar| (-1143))))) (-621 (-1143)) (-1143)) 35) (((-1071) (-1143) (-621 (-3 (|:| |array| (-621 (-1143))) (|:| |scalar| (-1143)))) (-621 (-621 (-3 (|:| |array| (-621 (-1143))) (|:| |scalar| (-1143))))) (-621 (-1143))) 34)))
-(((-390) (-10 -7 (-15 -2401 ((-1071) (-1143) (-621 (-3 (|:| |array| (-621 (-1143))) (|:| |scalar| (-1143)))) (-621 (-621 (-3 (|:| |array| (-621 (-1143))) (|:| |scalar| (-1143))))) (-621 (-1143)))) (-15 -2401 ((-1071) (-1143) (-621 (-3 (|:| |array| (-621 (-1143))) (|:| |scalar| (-1143)))) (-621 (-621 (-3 (|:| |array| (-621 (-1143))) (|:| |scalar| (-1143))))) (-621 (-1143)) (-1143))) (-15 -2401 ((-1071) (-1143) (-621 (-1143)) (-1146) (-621 (-1143)))) (-15 -3316 ((-1231) (-381))) (-15 -2470 ((-621 (-1125)) (-621 (-1125)))))) (T -390))
-((-2470 (*1 *2 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-390)))) (-3316 (*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1231)) (-5 *1 (-390)))) (-2401 (*1 *2 *3 *4 *5 *4) (-12 (-5 *4 (-621 (-1143))) (-5 *5 (-1146)) (-5 *3 (-1143)) (-5 *2 (-1071)) (-5 *1 (-390)))) (-2401 (*1 *2 *3 *4 *5 *6 *3) (-12 (-5 *5 (-621 (-621 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-621 (-3 (|:| |array| (-621 *3)) (|:| |scalar| (-1143))))) (-5 *6 (-621 (-1143))) (-5 *3 (-1143)) (-5 *2 (-1071)) (-5 *1 (-390)))) (-2401 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-621 (-621 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-621 (-3 (|:| |array| (-621 *3)) (|:| |scalar| (-1143))))) (-5 *6 (-621 (-1143))) (-5 *3 (-1143)) (-5 *2 (-1071)) (-5 *1 (-390)))))
-(-10 -7 (-15 -2401 ((-1071) (-1143) (-621 (-3 (|:| |array| (-621 (-1143))) (|:| |scalar| (-1143)))) (-621 (-621 (-3 (|:| |array| (-621 (-1143))) (|:| |scalar| (-1143))))) (-621 (-1143)))) (-15 -2401 ((-1071) (-1143) (-621 (-3 (|:| |array| (-621 (-1143))) (|:| |scalar| (-1143)))) (-621 (-621 (-3 (|:| |array| (-621 (-1143))) (|:| |scalar| (-1143))))) (-621 (-1143)) (-1143))) (-15 -2401 ((-1071) (-1143) (-621 (-1143)) (-1146) (-621 (-1143)))) (-15 -3316 ((-1231) (-381))) (-15 -2470 ((-621 (-1125)) (-621 (-1125)))))
-((-3316 (((-1231) $) 38)) (-3846 (((-834) $) 98) (($ (-323)) 100) (($ (-621 (-323))) 99) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 97) (($ (-309 (-677))) 54) (($ (-309 (-675))) 73) (($ (-309 (-670))) 86) (($ (-287 (-309 (-677)))) 68) (($ (-287 (-309 (-675)))) 81) (($ (-287 (-309 (-670)))) 94) (($ (-309 (-549))) 104) (($ (-309 (-372))) 117) (($ (-309 (-167 (-372)))) 130) (($ (-287 (-309 (-549)))) 112) (($ (-287 (-309 (-372)))) 125) (($ (-287 (-309 (-167 (-372))))) 138)))
-(((-391 |#1| |#2| |#3| |#4|) (-13 (-388) (-10 -8 (-15 -3846 ($ (-323))) (-15 -3846 ($ (-621 (-323)))) (-15 -3846 ($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323)))))) (-15 -3846 ($ (-309 (-677)))) (-15 -3846 ($ (-309 (-675)))) (-15 -3846 ($ (-309 (-670)))) (-15 -3846 ($ (-287 (-309 (-677))))) (-15 -3846 ($ (-287 (-309 (-675))))) (-15 -3846 ($ (-287 (-309 (-670))))) (-15 -3846 ($ (-309 (-549)))) (-15 -3846 ($ (-309 (-372)))) (-15 -3846 ($ (-309 (-167 (-372))))) (-15 -3846 ($ (-287 (-309 (-549))))) (-15 -3846 ($ (-287 (-309 (-372))))) (-15 -3846 ($ (-287 (-309 (-167 (-372)))))))) (-1143) (-3 (|:| |fst| (-427)) (|:| -2903 "void")) (-621 (-1143)) (-1147)) (T -391))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-323)) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-14 *5 (-621 (-1143))) (-14 *6 (-1147)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-14 *5 (-621 (-1143))) (-14 *6 (-1147)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-14 *5 (-621 (-1143))) (-14 *6 (-1147)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-309 (-677))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-14 *5 (-621 (-1143))) (-14 *6 (-1147)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-309 (-675))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-14 *5 (-621 (-1143))) (-14 *6 (-1147)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-309 (-670))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-14 *5 (-621 (-1143))) (-14 *6 (-1147)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-287 (-309 (-677)))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-14 *5 (-621 (-1143))) (-14 *6 (-1147)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-287 (-309 (-675)))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-14 *5 (-621 (-1143))) (-14 *6 (-1147)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-287 (-309 (-670)))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-14 *5 (-621 (-1143))) (-14 *6 (-1147)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-309 (-549))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-14 *5 (-621 (-1143))) (-14 *6 (-1147)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-309 (-372))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-14 *5 (-621 (-1143))) (-14 *6 (-1147)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-309 (-167 (-372)))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-14 *5 (-621 (-1143))) (-14 *6 (-1147)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-287 (-309 (-549)))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-14 *5 (-621 (-1143))) (-14 *6 (-1147)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-287 (-309 (-372)))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-14 *5 (-621 (-1143))) (-14 *6 (-1147)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-287 (-309 (-167 (-372))))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-14 *5 (-621 (-1143))) (-14 *6 (-1147)))))
-(-13 (-388) (-10 -8 (-15 -3846 ($ (-323))) (-15 -3846 ($ (-621 (-323)))) (-15 -3846 ($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323)))))) (-15 -3846 ($ (-309 (-677)))) (-15 -3846 ($ (-309 (-675)))) (-15 -3846 ($ (-309 (-670)))) (-15 -3846 ($ (-287 (-309 (-677))))) (-15 -3846 ($ (-287 (-309 (-675))))) (-15 -3846 ($ (-287 (-309 (-670))))) (-15 -3846 ($ (-309 (-549)))) (-15 -3846 ($ (-309 (-372)))) (-15 -3846 ($ (-309 (-167 (-372))))) (-15 -3846 ($ (-287 (-309 (-549))))) (-15 -3846 ($ (-287 (-309 (-372))))) (-15 -3846 ($ (-287 (-309 (-167 (-372))))))))
-((-3834 (((-112) $ $) NIL)) (-2285 ((|#2| $) 36)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-4279 (($ (-400 |#2|)) 85)) (-3658 (((-621 (-2 (|:| -3731 (-747)) (|:| -2597 |#2|) (|:| |num| |#2|))) $) 37)) (-3456 (($ $) 32) (($ $ (-747)) 34)) (-2845 (((-400 |#2|) $) 46)) (-3854 (($ (-621 (-2 (|:| -3731 (-747)) (|:| -2597 |#2|) (|:| |num| |#2|)))) 31)) (-3846 (((-834) $) 120)) (-1702 (($ $) 33) (($ $ (-747)) 35)) (-2389 (((-112) $ $) NIL)) (-2486 (($ |#2| $) 39)))
-(((-392 |#1| |#2|) (-13 (-1067) (-594 (-400 |#2|)) (-10 -8 (-15 -2486 ($ |#2| $)) (-15 -4279 ($ (-400 |#2|))) (-15 -2285 (|#2| $)) (-15 -3658 ((-621 (-2 (|:| -3731 (-747)) (|:| -2597 |#2|) (|:| |num| |#2|))) $)) (-15 -3854 ($ (-621 (-2 (|:| -3731 (-747)) (|:| -2597 |#2|) (|:| |num| |#2|))))) (-15 -3456 ($ $)) (-15 -1702 ($ $)) (-15 -3456 ($ $ (-747))) (-15 -1702 ($ $ (-747))))) (-13 (-356) (-145)) (-1202 |#1|)) (T -392))
-((-2486 (*1 *1 *2 *1) (-12 (-4 *3 (-13 (-356) (-145))) (-5 *1 (-392 *3 *2)) (-4 *2 (-1202 *3)))) (-4279 (*1 *1 *2) (-12 (-5 *2 (-400 *4)) (-4 *4 (-1202 *3)) (-4 *3 (-13 (-356) (-145))) (-5 *1 (-392 *3 *4)))) (-2285 (*1 *2 *1) (-12 (-4 *2 (-1202 *3)) (-5 *1 (-392 *3 *2)) (-4 *3 (-13 (-356) (-145))))) (-3658 (*1 *2 *1) (-12 (-4 *3 (-13 (-356) (-145))) (-5 *2 (-621 (-2 (|:| -3731 (-747)) (|:| -2597 *4) (|:| |num| *4)))) (-5 *1 (-392 *3 *4)) (-4 *4 (-1202 *3)))) (-3854 (*1 *1 *2) (-12 (-5 *2 (-621 (-2 (|:| -3731 (-747)) (|:| -2597 *4) (|:| |num| *4)))) (-4 *4 (-1202 *3)) (-4 *3 (-13 (-356) (-145))) (-5 *1 (-392 *3 *4)))) (-3456 (*1 *1 *1) (-12 (-4 *2 (-13 (-356) (-145))) (-5 *1 (-392 *2 *3)) (-4 *3 (-1202 *2)))) (-1702 (*1 *1 *1) (-12 (-4 *2 (-13 (-356) (-145))) (-5 *1 (-392 *2 *3)) (-4 *3 (-1202 *2)))) (-3456 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *3 (-13 (-356) (-145))) (-5 *1 (-392 *3 *4)) (-4 *4 (-1202 *3)))) (-1702 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *3 (-13 (-356) (-145))) (-5 *1 (-392 *3 *4)) (-4 *4 (-1202 *3)))))
-(-13 (-1067) (-594 (-400 |#2|)) (-10 -8 (-15 -2486 ($ |#2| $)) (-15 -4279 ($ (-400 |#2|))) (-15 -2285 (|#2| $)) (-15 -3658 ((-621 (-2 (|:| -3731 (-747)) (|:| -2597 |#2|) (|:| |num| |#2|))) $)) (-15 -3854 ($ (-621 (-2 (|:| -3731 (-747)) (|:| -2597 |#2|) (|:| |num| |#2|))))) (-15 -3456 ($ $)) (-15 -1702 ($ $)) (-15 -3456 ($ $ (-747))) (-15 -1702 ($ $ (-747)))))
-((-3834 (((-112) $ $) 9 (-1536 (|has| |#1| (-857 (-549))) (|has| |#1| (-857 (-372)))))) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 15 (|has| |#1| (-857 (-372)))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 14 (|has| |#1| (-857 (-549))))) (-3851 (((-1125) $) 13 (-1536 (|has| |#1| (-857 (-549))) (|has| |#1| (-857 (-372)))))) (-3990 (((-1087) $) 12 (-1536 (|has| |#1| (-857 (-549))) (|has| |#1| (-857 (-372)))))) (-3846 (((-834) $) 11 (-1536 (|has| |#1| (-857 (-549))) (|has| |#1| (-857 (-372)))))) (-2389 (((-112) $ $) 10 (-1536 (|has| |#1| (-857 (-549))) (|has| |#1| (-857 (-372)))))))
-(((-393 |#1|) (-138) (-1180)) (T -393))
-NIL
-(-13 (-1180) (-10 -7 (IF (|has| |t#1| (-857 (-549))) (-6 (-857 (-549))) |%noBranch|) (IF (|has| |t#1| (-857 (-372))) (-6 (-857 (-372))) |%noBranch|)))
-(((-101) -1536 (|has| |#1| (-857 (-549))) (|has| |#1| (-857 (-372)))) ((-593 (-834)) -1536 (|has| |#1| (-857 (-549))) (|has| |#1| (-857 (-372)))) ((-857 (-372)) |has| |#1| (-857 (-372))) ((-857 (-549)) |has| |#1| (-857 (-549))) ((-1067) -1536 (|has| |#1| (-857 (-549))) (|has| |#1| (-857 (-372)))) ((-1180) . T))
-((-3165 (($ $) 10) (($ $ (-747)) 11)))
-(((-394 |#1|) (-10 -8 (-15 -3165 (|#1| |#1| (-747))) (-15 -3165 (|#1| |#1|))) (-395)) (T -394))
-NIL
-(-10 -8 (-15 -3165 (|#1| |#1| (-747))) (-15 -3165 (|#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-2001 (((-3 $ "failed") $ $) 19)) (-3979 (($ $) 70)) (-2402 (((-411 $) $) 69)) (-3866 (((-112) $ $) 57)) (-1682 (($) 17 T CONST)) (-2095 (($ $ $) 53)) (-2114 (((-3 $ "failed") $) 32)) (-2067 (($ $ $) 54)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 49)) (-3165 (($ $) 76) (($ $ (-747)) 75)) (-1420 (((-112) $) 68)) (-2088 (((-809 (-892)) $) 78)) (-2675 (((-112) $) 30)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-1992 (($ $) 67)) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-2121 (((-411 $) $) 71)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2042 (((-3 $ "failed") $ $) 40)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-3684 (((-747) $) 56)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 55)) (-3914 (((-3 (-747) "failed") $ $) 77)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63)) (-2210 (((-3 $ "failed") $) 79)) (-2082 (((-747)) 28)) (-1498 (((-112) $ $) 37)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2513 (($ $ $) 62)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64)))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-4 *1 (-389)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-323)) (-4 *1 (-389)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) (-4 *1 (-389)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-309 (-372))) (-4 *1 (-389)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-309 (-372))) (-4 *1 (-389)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-309 (-549))) (-4 *1 (-389)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-309 (-549))) (-4 *1 (-389)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-923 (-372))) (-4 *1 (-389)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-923 (-372))) (-4 *1 (-389)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-923 (-549))) (-4 *1 (-389)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-923 (-549))) (-4 *1 (-389)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-400 (-923 (-372)))) (-4 *1 (-389)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-400 (-923 (-372)))) (-4 *1 (-389)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-400 (-923 (-549)))) (-4 *1 (-389)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-400 (-923 (-549)))) (-4 *1 (-389)))))
+(-13 (-388) (-10 -8 (-15 -3845 ($ (-621 (-323)))) (-15 -3845 ($ (-323))) (-15 -3845 ($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323)))))) (-15 -2657 ($ (-309 (-372)))) (-15 -2712 ((-3 $ "failed") (-309 (-372)))) (-15 -2657 ($ (-309 (-549)))) (-15 -2712 ((-3 $ "failed") (-309 (-549)))) (-15 -2657 ($ (-923 (-372)))) (-15 -2712 ((-3 $ "failed") (-923 (-372)))) (-15 -2657 ($ (-923 (-549)))) (-15 -2712 ((-3 $ "failed") (-923 (-549)))) (-15 -2657 ($ (-400 (-923 (-372))))) (-15 -2712 ((-3 $ "failed") (-400 (-923 (-372))))) (-15 -2657 ($ (-400 (-923 (-549))))) (-15 -2712 ((-3 $ "failed") (-400 (-923 (-549)))))))
+(((-593 (-834)) . T) ((-388) . T) ((-1179) . T))
+((-4194 (((-621 (-1124)) (-621 (-1124))) 9)) (-3314 (((-1230) (-381)) 27)) (-2519 (((-1070) (-1142) (-621 (-1142)) (-1145) (-621 (-1142))) 60) (((-1070) (-1142) (-621 (-3 (|:| |array| (-621 (-1142))) (|:| |scalar| (-1142)))) (-621 (-621 (-3 (|:| |array| (-621 (-1142))) (|:| |scalar| (-1142))))) (-621 (-1142)) (-1142)) 35) (((-1070) (-1142) (-621 (-3 (|:| |array| (-621 (-1142))) (|:| |scalar| (-1142)))) (-621 (-621 (-3 (|:| |array| (-621 (-1142))) (|:| |scalar| (-1142))))) (-621 (-1142))) 34)))
+(((-390) (-10 -7 (-15 -2519 ((-1070) (-1142) (-621 (-3 (|:| |array| (-621 (-1142))) (|:| |scalar| (-1142)))) (-621 (-621 (-3 (|:| |array| (-621 (-1142))) (|:| |scalar| (-1142))))) (-621 (-1142)))) (-15 -2519 ((-1070) (-1142) (-621 (-3 (|:| |array| (-621 (-1142))) (|:| |scalar| (-1142)))) (-621 (-621 (-3 (|:| |array| (-621 (-1142))) (|:| |scalar| (-1142))))) (-621 (-1142)) (-1142))) (-15 -2519 ((-1070) (-1142) (-621 (-1142)) (-1145) (-621 (-1142)))) (-15 -3314 ((-1230) (-381))) (-15 -4194 ((-621 (-1124)) (-621 (-1124)))))) (T -390))
+((-4194 (*1 *2 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-390)))) (-3314 (*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1230)) (-5 *1 (-390)))) (-2519 (*1 *2 *3 *4 *5 *4) (-12 (-5 *4 (-621 (-1142))) (-5 *5 (-1145)) (-5 *3 (-1142)) (-5 *2 (-1070)) (-5 *1 (-390)))) (-2519 (*1 *2 *3 *4 *5 *6 *3) (-12 (-5 *5 (-621 (-621 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-621 (-3 (|:| |array| (-621 *3)) (|:| |scalar| (-1142))))) (-5 *6 (-621 (-1142))) (-5 *3 (-1142)) (-5 *2 (-1070)) (-5 *1 (-390)))) (-2519 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-621 (-621 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-621 (-3 (|:| |array| (-621 *3)) (|:| |scalar| (-1142))))) (-5 *6 (-621 (-1142))) (-5 *3 (-1142)) (-5 *2 (-1070)) (-5 *1 (-390)))))
+(-10 -7 (-15 -2519 ((-1070) (-1142) (-621 (-3 (|:| |array| (-621 (-1142))) (|:| |scalar| (-1142)))) (-621 (-621 (-3 (|:| |array| (-621 (-1142))) (|:| |scalar| (-1142))))) (-621 (-1142)))) (-15 -2519 ((-1070) (-1142) (-621 (-3 (|:| |array| (-621 (-1142))) (|:| |scalar| (-1142)))) (-621 (-621 (-3 (|:| |array| (-621 (-1142))) (|:| |scalar| (-1142))))) (-621 (-1142)) (-1142))) (-15 -2519 ((-1070) (-1142) (-621 (-1142)) (-1145) (-621 (-1142)))) (-15 -3314 ((-1230) (-381))) (-15 -4194 ((-621 (-1124)) (-621 (-1124)))))
+((-3314 (((-1230) $) 38)) (-3845 (((-834) $) 98) (($ (-323)) 100) (($ (-621 (-323))) 99) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 97) (($ (-309 (-677))) 54) (($ (-309 (-675))) 73) (($ (-309 (-670))) 86) (($ (-287 (-309 (-677)))) 68) (($ (-287 (-309 (-675)))) 81) (($ (-287 (-309 (-670)))) 94) (($ (-309 (-549))) 104) (($ (-309 (-372))) 117) (($ (-309 (-167 (-372)))) 130) (($ (-287 (-309 (-549)))) 112) (($ (-287 (-309 (-372)))) 125) (($ (-287 (-309 (-167 (-372))))) 138)))
+(((-391 |#1| |#2| |#3| |#4|) (-13 (-388) (-10 -8 (-15 -3845 ($ (-323))) (-15 -3845 ($ (-621 (-323)))) (-15 -3845 ($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323)))))) (-15 -3845 ($ (-309 (-677)))) (-15 -3845 ($ (-309 (-675)))) (-15 -3845 ($ (-309 (-670)))) (-15 -3845 ($ (-287 (-309 (-677))))) (-15 -3845 ($ (-287 (-309 (-675))))) (-15 -3845 ($ (-287 (-309 (-670))))) (-15 -3845 ($ (-309 (-549)))) (-15 -3845 ($ (-309 (-372)))) (-15 -3845 ($ (-309 (-167 (-372))))) (-15 -3845 ($ (-287 (-309 (-549))))) (-15 -3845 ($ (-287 (-309 (-372))))) (-15 -3845 ($ (-287 (-309 (-167 (-372)))))))) (-1142) (-3 (|:| |fst| (-427)) (|:| -2901 "void")) (-621 (-1142)) (-1146)) (T -391))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-323)) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-14 *5 (-621 (-1142))) (-14 *6 (-1146)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-14 *5 (-621 (-1142))) (-14 *6 (-1146)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-14 *5 (-621 (-1142))) (-14 *6 (-1146)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-309 (-677))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-14 *5 (-621 (-1142))) (-14 *6 (-1146)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-309 (-675))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-14 *5 (-621 (-1142))) (-14 *6 (-1146)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-309 (-670))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-14 *5 (-621 (-1142))) (-14 *6 (-1146)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-287 (-309 (-677)))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-14 *5 (-621 (-1142))) (-14 *6 (-1146)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-287 (-309 (-675)))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-14 *5 (-621 (-1142))) (-14 *6 (-1146)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-287 (-309 (-670)))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-14 *5 (-621 (-1142))) (-14 *6 (-1146)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-309 (-549))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-14 *5 (-621 (-1142))) (-14 *6 (-1146)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-309 (-372))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-14 *5 (-621 (-1142))) (-14 *6 (-1146)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-309 (-167 (-372)))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-14 *5 (-621 (-1142))) (-14 *6 (-1146)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-287 (-309 (-549)))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-14 *5 (-621 (-1142))) (-14 *6 (-1146)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-287 (-309 (-372)))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-14 *5 (-621 (-1142))) (-14 *6 (-1146)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-287 (-309 (-167 (-372))))) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-14 *5 (-621 (-1142))) (-14 *6 (-1146)))))
+(-13 (-388) (-10 -8 (-15 -3845 ($ (-323))) (-15 -3845 ($ (-621 (-323)))) (-15 -3845 ($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323)))))) (-15 -3845 ($ (-309 (-677)))) (-15 -3845 ($ (-309 (-675)))) (-15 -3845 ($ (-309 (-670)))) (-15 -3845 ($ (-287 (-309 (-677))))) (-15 -3845 ($ (-287 (-309 (-675))))) (-15 -3845 ($ (-287 (-309 (-670))))) (-15 -3845 ($ (-309 (-549)))) (-15 -3845 ($ (-309 (-372)))) (-15 -3845 ($ (-309 (-167 (-372))))) (-15 -3845 ($ (-287 (-309 (-549))))) (-15 -3845 ($ (-287 (-309 (-372))))) (-15 -3845 ($ (-287 (-309 (-167 (-372))))))))
+((-3832 (((-112) $ $) NIL)) (-2507 ((|#2| $) 36)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3027 (($ (-400 |#2|)) 85)) (-2848 (((-621 (-2 (|:| -1714 (-747)) (|:| -2596 |#2|) (|:| |num| |#2|))) $) 37)) (-3455 (($ $) 32) (($ $ (-747)) 34)) (-2843 (((-400 |#2|) $) 46)) (-3853 (($ (-621 (-2 (|:| -1714 (-747)) (|:| -2596 |#2|) (|:| |num| |#2|)))) 31)) (-3845 (((-834) $) 120)) (-1699 (($ $) 33) (($ $ (-747)) 35)) (-2387 (((-112) $ $) NIL)) (-2484 (($ |#2| $) 39)))
+(((-392 |#1| |#2|) (-13 (-1066) (-594 (-400 |#2|)) (-10 -8 (-15 -2484 ($ |#2| $)) (-15 -3027 ($ (-400 |#2|))) (-15 -2507 (|#2| $)) (-15 -2848 ((-621 (-2 (|:| -1714 (-747)) (|:| -2596 |#2|) (|:| |num| |#2|))) $)) (-15 -3853 ($ (-621 (-2 (|:| -1714 (-747)) (|:| -2596 |#2|) (|:| |num| |#2|))))) (-15 -3455 ($ $)) (-15 -1699 ($ $)) (-15 -3455 ($ $ (-747))) (-15 -1699 ($ $ (-747))))) (-13 (-356) (-145)) (-1201 |#1|)) (T -392))
+((-2484 (*1 *1 *2 *1) (-12 (-4 *3 (-13 (-356) (-145))) (-5 *1 (-392 *3 *2)) (-4 *2 (-1201 *3)))) (-3027 (*1 *1 *2) (-12 (-5 *2 (-400 *4)) (-4 *4 (-1201 *3)) (-4 *3 (-13 (-356) (-145))) (-5 *1 (-392 *3 *4)))) (-2507 (*1 *2 *1) (-12 (-4 *2 (-1201 *3)) (-5 *1 (-392 *3 *2)) (-4 *3 (-13 (-356) (-145))))) (-2848 (*1 *2 *1) (-12 (-4 *3 (-13 (-356) (-145))) (-5 *2 (-621 (-2 (|:| -1714 (-747)) (|:| -2596 *4) (|:| |num| *4)))) (-5 *1 (-392 *3 *4)) (-4 *4 (-1201 *3)))) (-3853 (*1 *1 *2) (-12 (-5 *2 (-621 (-2 (|:| -1714 (-747)) (|:| -2596 *4) (|:| |num| *4)))) (-4 *4 (-1201 *3)) (-4 *3 (-13 (-356) (-145))) (-5 *1 (-392 *3 *4)))) (-3455 (*1 *1 *1) (-12 (-4 *2 (-13 (-356) (-145))) (-5 *1 (-392 *2 *3)) (-4 *3 (-1201 *2)))) (-1699 (*1 *1 *1) (-12 (-4 *2 (-13 (-356) (-145))) (-5 *1 (-392 *2 *3)) (-4 *3 (-1201 *2)))) (-3455 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *3 (-13 (-356) (-145))) (-5 *1 (-392 *3 *4)) (-4 *4 (-1201 *3)))) (-1699 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *3 (-13 (-356) (-145))) (-5 *1 (-392 *3 *4)) (-4 *4 (-1201 *3)))))
+(-13 (-1066) (-594 (-400 |#2|)) (-10 -8 (-15 -2484 ($ |#2| $)) (-15 -3027 ($ (-400 |#2|))) (-15 -2507 (|#2| $)) (-15 -2848 ((-621 (-2 (|:| -1714 (-747)) (|:| -2596 |#2|) (|:| |num| |#2|))) $)) (-15 -3853 ($ (-621 (-2 (|:| -1714 (-747)) (|:| -2596 |#2|) (|:| |num| |#2|))))) (-15 -3455 ($ $)) (-15 -1699 ($ $)) (-15 -3455 ($ $ (-747))) (-15 -1699 ($ $ (-747)))))
+((-3832 (((-112) $ $) 9 (-1536 (|has| |#1| (-857 (-549))) (|has| |#1| (-857 (-372)))))) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 15 (|has| |#1| (-857 (-372)))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 14 (|has| |#1| (-857 (-549))))) (-3441 (((-1124) $) 13 (-1536 (|has| |#1| (-857 (-549))) (|has| |#1| (-857 (-372)))))) (-3988 (((-1086) $) 12 (-1536 (|has| |#1| (-857 (-549))) (|has| |#1| (-857 (-372)))))) (-3845 (((-834) $) 11 (-1536 (|has| |#1| (-857 (-549))) (|has| |#1| (-857 (-372)))))) (-2387 (((-112) $ $) 10 (-1536 (|has| |#1| (-857 (-549))) (|has| |#1| (-857 (-372)))))))
+(((-393 |#1|) (-138) (-1179)) (T -393))
+NIL
+(-13 (-1179) (-10 -7 (IF (|has| |t#1| (-857 (-549))) (-6 (-857 (-549))) |%noBranch|) (IF (|has| |t#1| (-857 (-372))) (-6 (-857 (-372))) |%noBranch|)))
+(((-101) -1536 (|has| |#1| (-857 (-549))) (|has| |#1| (-857 (-372)))) ((-593 (-834)) -1536 (|has| |#1| (-857 (-549))) (|has| |#1| (-857 (-372)))) ((-857 (-372)) |has| |#1| (-857 (-372))) ((-857 (-549)) |has| |#1| (-857 (-549))) ((-1066) -1536 (|has| |#1| (-857 (-549))) (|has| |#1| (-857 (-372)))) ((-1179) . T))
+((-3517 (($ $) 10) (($ $ (-747)) 11)))
+(((-394 |#1|) (-10 -8 (-15 -3517 (|#1| |#1| (-747))) (-15 -3517 (|#1| |#1|))) (-395)) (T -394))
+NIL
+(-10 -8 (-15 -3517 (|#1| |#1| (-747))) (-15 -3517 (|#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-2416 (((-3 $ "failed") $ $) 19)) (-3239 (($ $) 70)) (-2620 (((-411 $) $) 69)) (-2680 (((-112) $ $) 57)) (-3034 (($) 17 T CONST)) (-2091 (($ $ $) 53)) (-2612 (((-3 $ "failed") $) 32)) (-2065 (($ $ $) 54)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 49)) (-3517 (($ $) 76) (($ $ (-747)) 75)) (-1464 (((-112) $) 68)) (-2729 (((-809 (-892)) $) 78)) (-2297 (((-112) $) 30)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-1990 (($ $) 67)) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-2119 (((-411 $) $) 71)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2040 (((-3 $ "failed") $ $) 40)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-1335 (((-747) $) 56)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 55)) (-3189 (((-3 (-747) "failed") $ $) 77)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63)) (-2343 (((-3 $ "failed") $) 79)) (-2371 (((-747)) 28)) (-2441 (((-112) $ $) 37)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2511 (($ $ $) 62)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64)))
(((-395) (-138)) (T -395))
-((-2088 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-809 (-892))))) (-3914 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-395)) (-5 *2 (-747)))) (-3165 (*1 *1 *1) (-4 *1 (-395))) (-3165 (*1 *1 *1 *2) (-12 (-4 *1 (-395)) (-5 *2 (-747)))))
-(-13 (-356) (-143) (-10 -8 (-15 -2088 ((-809 (-892)) $)) (-15 -3914 ((-3 (-747) "failed") $ $)) (-15 -3165 ($ $)) (-15 -3165 ($ $ (-747)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-143) . T) ((-593 (-834)) . T) ((-170) . T) ((-237) . T) ((-283) . T) ((-300) . T) ((-356) . T) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 $) . T) ((-703) . T) ((-891) . T) ((-1024 #0#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1184) . T))
-((-1355 (($ (-549) (-549)) 11) (($ (-549) (-549) (-892)) NIL)) (-3862 (((-892)) 16) (((-892) (-892)) NIL)))
-(((-396 |#1|) (-10 -8 (-15 -3862 ((-892) (-892))) (-15 -3862 ((-892))) (-15 -1355 (|#1| (-549) (-549) (-892))) (-15 -1355 (|#1| (-549) (-549)))) (-397)) (T -396))
-((-3862 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-396 *3)) (-4 *3 (-397)))) (-3862 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-396 *3)) (-4 *3 (-397)))))
-(-10 -8 (-15 -3862 ((-892) (-892))) (-15 -3862 ((-892))) (-15 -1355 (|#1| (-549) (-549) (-892))) (-15 -1355 (|#1| (-549) (-549))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-3329 (((-549) $) 86)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-3896 (($ $) 84)) (-2001 (((-3 $ "failed") $ $) 19)) (-3979 (($ $) 70)) (-2402 (((-411 $) $) 69)) (-2134 (($ $) 94)) (-3866 (((-112) $ $) 57)) (-1872 (((-549) $) 111)) (-1682 (($) 17 T CONST)) (-3252 (($ $) 83)) (-2714 (((-3 (-549) "failed") $) 99) (((-3 (-400 (-549)) "failed") $) 96)) (-2659 (((-549) $) 98) (((-400 (-549)) $) 95)) (-2095 (($ $ $) 53)) (-2114 (((-3 $ "failed") $) 32)) (-2067 (($ $ $) 54)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 49)) (-1420 (((-112) $) 68)) (-3236 (((-892)) 127) (((-892) (-892)) 124 (|has| $ (-6 -4328)))) (-2772 (((-112) $) 109)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 90)) (-2088 (((-549) $) 133)) (-2675 (((-112) $) 30)) (-4187 (($ $ (-549)) 93)) (-3630 (($ $) 89)) (-2374 (((-112) $) 110)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-2863 (($ $ $) 108) (($) 121 (-12 (-4008 (|has| $ (-6 -4328))) (-4008 (|has| $ (-6 -4320)))))) (-3575 (($ $ $) 107) (($) 120 (-12 (-4008 (|has| $ (-6 -4328))) (-4008 (|has| $ (-6 -4320)))))) (-1461 (((-549) $) 130)) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-1992 (($ $) 67)) (-2429 (((-892) (-549)) 123 (|has| $ (-6 -4328)))) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-2873 (($ $) 85)) (-3967 (($ $) 87)) (-1355 (($ (-549) (-549)) 135) (($ (-549) (-549) (-892)) 134)) (-2121 (((-411 $) $) 71)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2042 (((-3 $ "failed") $ $) 40)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-3731 (((-549) $) 131)) (-3684 (((-747) $) 56)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 55)) (-3862 (((-892)) 128) (((-892) (-892)) 125 (|has| $ (-6 -4328)))) (-2324 (((-892) (-549)) 122 (|has| $ (-6 -4328)))) (-2845 (((-372) $) 102) (((-219) $) 101) (((-863 (-372)) $) 91)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63) (($ (-549)) 100) (($ (-400 (-549))) 97)) (-2082 (((-747)) 28)) (-2546 (($ $) 88)) (-1502 (((-892)) 129) (((-892) (-892)) 126 (|has| $ (-6 -4328)))) (-1864 (((-892)) 132)) (-1498 (((-112) $ $) 37)) (-3212 (($ $) 112)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2448 (((-112) $ $) 105)) (-2425 (((-112) $ $) 104)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 106)) (-2412 (((-112) $ $) 103)) (-2513 (($ $ $) 62)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66) (($ $ (-400 (-549))) 92)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64)))
+((-2729 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-809 (-892))))) (-3189 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-395)) (-5 *2 (-747)))) (-3517 (*1 *1 *1) (-4 *1 (-395))) (-3517 (*1 *1 *1 *2) (-12 (-4 *1 (-395)) (-5 *2 (-747)))))
+(-13 (-356) (-143) (-10 -8 (-15 -2729 ((-809 (-892)) $)) (-15 -3189 ((-3 (-747) "failed") $ $)) (-15 -3517 ($ $)) (-15 -3517 ($ $ (-747)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-143) . T) ((-593 (-834)) . T) ((-170) . T) ((-237) . T) ((-283) . T) ((-300) . T) ((-356) . T) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 $) . T) ((-703) . T) ((-891) . T) ((-1024 #0#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1183) . T))
+((-1354 (($ (-549) (-549)) 11) (($ (-549) (-549) (-892)) NIL)) (-2234 (((-892)) 16) (((-892) (-892)) NIL)))
+(((-396 |#1|) (-10 -8 (-15 -2234 ((-892) (-892))) (-15 -2234 ((-892))) (-15 -1354 (|#1| (-549) (-549) (-892))) (-15 -1354 (|#1| (-549) (-549)))) (-397)) (T -396))
+((-2234 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-396 *3)) (-4 *3 (-397)))) (-2234 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-396 *3)) (-4 *3 (-397)))))
+(-10 -8 (-15 -2234 ((-892) (-892))) (-15 -2234 ((-892))) (-15 -1354 (|#1| (-549) (-549) (-892))) (-15 -1354 (|#1| (-549) (-549))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-3833 (((-549) $) 86)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-3691 (($ $) 84)) (-2416 (((-3 $ "failed") $ $) 19)) (-3239 (($ $) 70)) (-2620 (((-411 $) $) 69)) (-2132 (($ $) 94)) (-2680 (((-112) $ $) 57)) (-1741 (((-549) $) 111)) (-3034 (($) 17 T CONST)) (-2468 (($ $) 83)) (-2712 (((-3 (-549) "failed") $) 99) (((-3 (-400 (-549)) "failed") $) 96)) (-2657 (((-549) $) 98) (((-400 (-549)) $) 95)) (-2091 (($ $ $) 53)) (-2612 (((-3 $ "failed") $) 32)) (-2065 (($ $ $) 54)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 49)) (-1464 (((-112) $) 68)) (-3234 (((-892)) 127) (((-892) (-892)) 124 (|has| $ (-6 -4327)))) (-2357 (((-112) $) 109)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 90)) (-2729 (((-549) $) 133)) (-2297 (((-112) $) 30)) (-3621 (($ $ (-549)) 93)) (-2469 (($ $) 89)) (-1992 (((-112) $) 110)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-2861 (($ $ $) 108) (($) 121 (-12 (-4007 (|has| $ (-6 -4327))) (-4007 (|has| $ (-6 -4319)))))) (-3574 (($ $ $) 107) (($) 120 (-12 (-4007 (|has| $ (-6 -4327))) (-4007 (|has| $ (-6 -4319)))))) (-1460 (((-549) $) 130)) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-1990 (($ $) 67)) (-2385 (((-892) (-549)) 123 (|has| $ (-6 -4327)))) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-1512 (($ $) 85)) (-1349 (($ $) 87)) (-1354 (($ (-549) (-549)) 135) (($ (-549) (-549) (-892)) 134)) (-2119 (((-411 $) $) 71)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2040 (((-3 $ "failed") $ $) 40)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-1714 (((-549) $) 131)) (-1335 (((-747) $) 56)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 55)) (-2234 (((-892)) 128) (((-892) (-892)) 125 (|has| $ (-6 -4327)))) (-2584 (((-892) (-549)) 122 (|has| $ (-6 -4327)))) (-2843 (((-372) $) 102) (((-219) $) 101) (((-863 (-372)) $) 91)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63) (($ (-549)) 100) (($ (-400 (-549))) 97)) (-2371 (((-747)) 28)) (-3497 (($ $) 88)) (-2690 (((-892)) 129) (((-892) (-892)) 126 (|has| $ (-6 -4327)))) (-1863 (((-892)) 132)) (-2441 (((-112) $ $) 37)) (-2199 (($ $) 112)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2447 (((-112) $ $) 105)) (-2423 (((-112) $ $) 104)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 106)) (-2409 (((-112) $ $) 103)) (-2511 (($ $ $) 62)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66) (($ $ (-400 (-549))) 92)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64)))
(((-397) (-138)) (T -397))
-((-1355 (*1 *1 *2 *2) (-12 (-5 *2 (-549)) (-4 *1 (-397)))) (-1355 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-549)) (-5 *3 (-892)) (-4 *1 (-397)))) (-2088 (*1 *2 *1) (-12 (-4 *1 (-397)) (-5 *2 (-549)))) (-1864 (*1 *2) (-12 (-4 *1 (-397)) (-5 *2 (-892)))) (-3731 (*1 *2 *1) (-12 (-4 *1 (-397)) (-5 *2 (-549)))) (-1461 (*1 *2 *1) (-12 (-4 *1 (-397)) (-5 *2 (-549)))) (-1502 (*1 *2) (-12 (-4 *1 (-397)) (-5 *2 (-892)))) (-3862 (*1 *2) (-12 (-4 *1 (-397)) (-5 *2 (-892)))) (-3236 (*1 *2) (-12 (-4 *1 (-397)) (-5 *2 (-892)))) (-1502 (*1 *2 *2) (-12 (-5 *2 (-892)) (|has| *1 (-6 -4328)) (-4 *1 (-397)))) (-3862 (*1 *2 *2) (-12 (-5 *2 (-892)) (|has| *1 (-6 -4328)) (-4 *1 (-397)))) (-3236 (*1 *2 *2) (-12 (-5 *2 (-892)) (|has| *1 (-6 -4328)) (-4 *1 (-397)))) (-2429 (*1 *2 *3) (-12 (-5 *3 (-549)) (|has| *1 (-6 -4328)) (-4 *1 (-397)) (-5 *2 (-892)))) (-2324 (*1 *2 *3) (-12 (-5 *3 (-549)) (|has| *1 (-6 -4328)) (-4 *1 (-397)) (-5 *2 (-892)))) (-2863 (*1 *1) (-12 (-4 *1 (-397)) (-4008 (|has| *1 (-6 -4328))) (-4008 (|has| *1 (-6 -4320))))) (-3575 (*1 *1) (-12 (-4 *1 (-397)) (-4008 (|has| *1 (-6 -4328))) (-4008 (|has| *1 (-6 -4320))))))
-(-13 (-1027) (-10 -8 (-6 -2661) (-15 -1355 ($ (-549) (-549))) (-15 -1355 ($ (-549) (-549) (-892))) (-15 -2088 ((-549) $)) (-15 -1864 ((-892))) (-15 -3731 ((-549) $)) (-15 -1461 ((-549) $)) (-15 -1502 ((-892))) (-15 -3862 ((-892))) (-15 -3236 ((-892))) (IF (|has| $ (-6 -4328)) (PROGN (-15 -1502 ((-892) (-892))) (-15 -3862 ((-892) (-892))) (-15 -3236 ((-892) (-892))) (-15 -2429 ((-892) (-549))) (-15 -2324 ((-892) (-549)))) |%noBranch|) (IF (|has| $ (-6 -4320)) |%noBranch| (IF (|has| $ (-6 -4328)) |%noBranch| (PROGN (-15 -2863 ($)) (-15 -3575 ($)))))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-145) . T) ((-593 (-834)) . T) ((-170) . T) ((-594 (-219)) . T) ((-594 (-372)) . T) ((-594 (-863 (-372))) . T) ((-237) . T) ((-283) . T) ((-300) . T) ((-356) . T) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 $) . T) ((-703) . T) ((-767) . T) ((-768) . T) ((-770) . T) ((-771) . T) ((-821) . T) ((-823) . T) ((-857 (-372)) . T) ((-891) . T) ((-973) . T) ((-993) . T) ((-1027) . T) ((-1009 (-400 (-549))) . T) ((-1009 (-549)) . T) ((-1024 #0#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1184) . T))
-((-2797 (((-411 |#2|) (-1 |#2| |#1|) (-411 |#1|)) 20)))
-(((-398 |#1| |#2|) (-10 -7 (-15 -2797 ((-411 |#2|) (-1 |#2| |#1|) (-411 |#1|)))) (-541) (-541)) (T -398))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-411 *5)) (-4 *5 (-541)) (-4 *6 (-541)) (-5 *2 (-411 *6)) (-5 *1 (-398 *5 *6)))))
-(-10 -7 (-15 -2797 ((-411 |#2|) (-1 |#2| |#1|) (-411 |#1|))))
-((-2797 (((-400 |#2|) (-1 |#2| |#1|) (-400 |#1|)) 13)))
-(((-399 |#1| |#2|) (-10 -7 (-15 -2797 ((-400 |#2|) (-1 |#2| |#1|) (-400 |#1|)))) (-541) (-541)) (T -399))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-400 *5)) (-4 *5 (-541)) (-4 *6 (-541)) (-5 *2 (-400 *6)) (-5 *1 (-399 *5 *6)))))
-(-10 -7 (-15 -2797 ((-400 |#2|) (-1 |#2| |#1|) (-400 |#1|))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 13)) (-3329 ((|#1| $) 21 (|has| |#1| (-300)))) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-3866 (((-112) $ $) NIL)) (-1872 (((-549) $) NIL (|has| |#1| (-796)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) 17) (((-3 (-1143) "failed") $) NIL (|has| |#1| (-1009 (-1143)))) (((-3 (-400 (-549)) "failed") $) 70 (|has| |#1| (-1009 (-549)))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549))))) (-2659 ((|#1| $) 15) (((-1143) $) NIL (|has| |#1| (-1009 (-1143)))) (((-400 (-549)) $) 67 (|has| |#1| (-1009 (-549)))) (((-549) $) NIL (|has| |#1| (-1009 (-549))))) (-2095 (($ $ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) 50)) (-3239 (($) NIL (|has| |#1| (-534)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-2772 (((-112) $) NIL (|has| |#1| (-796)))) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| |#1| (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| |#1| (-857 (-372))))) (-2675 (((-112) $) 64)) (-1726 (($ $) NIL)) (-1394 ((|#1| $) 71)) (-1681 (((-3 $ "failed") $) NIL (|has| |#1| (-1118)))) (-2374 (((-112) $) NIL (|has| |#1| (-796)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL (|has| |#1| (-1118)) CONST)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 97)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2873 (($ $) NIL (|has| |#1| (-300)))) (-3967 ((|#1| $) 28 (|has| |#1| (-534)))) (-2905 (((-411 (-1139 $)) (-1139 $)) 135 (|has| |#1| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) 131 (|has| |#1| (-880)))) (-2121 (((-411 $) $) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2686 (($ $ (-621 |#1|) (-621 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1143)) (-621 |#1|)) NIL (|has| |#1| (-505 (-1143) |#1|))) (($ $ (-1143) |#1|) NIL (|has| |#1| (-505 (-1143) |#1|)))) (-3684 (((-747) $) NIL)) (-3341 (($ $ |#1|) NIL (|has| |#1| (-279 |#1| |#1|)))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3456 (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) 63)) (-3939 (($ $) NIL)) (-1403 ((|#1| $) 73)) (-2845 (((-863 (-549)) $) NIL (|has| |#1| (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| |#1| (-594 (-863 (-372))))) (((-525) $) NIL (|has| |#1| (-594 (-525)))) (((-372) $) NIL (|has| |#1| (-993))) (((-219) $) NIL (|has| |#1| (-993)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) 115 (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ |#1|) 10) (($ (-1143)) NIL (|has| |#1| (-1009 (-1143))))) (-2210 (((-3 $ "failed") $) 99 (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2082 (((-747)) 100)) (-2546 ((|#1| $) 26 (|has| |#1| (-534)))) (-1498 (((-112) $ $) NIL)) (-3212 (($ $) NIL (|has| |#1| (-796)))) (-3276 (($) 22 T CONST)) (-3287 (($) 8 T CONST)) (-4245 (((-1125) $) 43 (-12 (|has| |#1| (-534)) (|has| |#1| (-804)))) (((-1125) $ (-112)) 44 (-12 (|has| |#1| (-534)) (|has| |#1| (-804)))) (((-1231) (-798) $) 45 (-12 (|has| |#1| (-534)) (|has| |#1| (-804)))) (((-1231) (-798) $ (-112)) 46 (-12 (|has| |#1| (-534)) (|has| |#1| (-804))))) (-1702 (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) 56)) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) 24 (|has| |#1| (-823)))) (-2513 (($ $ $) 126) (($ |#1| |#1|) 52)) (-2500 (($ $) 25) (($ $ $) 55)) (-2486 (($ $ $) 53)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) 125)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 60) (($ $ $) 57) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ |#1| $) 61) (($ $ |#1|) 85)))
-(((-400 |#1|) (-13 (-963 |#1|) (-10 -7 (IF (|has| |#1| (-534)) (IF (|has| |#1| (-804)) (-6 (-804)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4324)) (IF (|has| |#1| (-444)) (IF (|has| |#1| (-6 -4335)) (-6 -4324) |%noBranch|) |%noBranch|) |%noBranch|))) (-541)) (T -400))
-NIL
-(-13 (-963 |#1|) (-10 -7 (IF (|has| |#1| (-534)) (IF (|has| |#1| (-804)) (-6 (-804)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4324)) (IF (|has| |#1| (-444)) (IF (|has| |#1| (-6 -4335)) (-6 -4324) |%noBranch|) |%noBranch|) |%noBranch|)))
-((-1738 (((-665 |#2|) (-1226 $)) NIL) (((-665 |#2|)) 18)) (-3492 (($ (-1226 |#2|) (-1226 $)) NIL) (($ (-1226 |#2|)) 24)) (-3506 (((-665 |#2|) $ (-1226 $)) NIL) (((-665 |#2|) $) 38)) (-3788 ((|#3| $) 60)) (-3602 ((|#2| (-1226 $)) NIL) ((|#2|) 20)) (-4263 (((-1226 |#2|) $ (-1226 $)) NIL) (((-665 |#2|) (-1226 $) (-1226 $)) NIL) (((-1226 |#2|) $) 22) (((-665 |#2|) (-1226 $)) 36)) (-2845 (((-1226 |#2|) $) 11) (($ (-1226 |#2|)) 13)) (-4154 ((|#3| $) 52)))
-(((-401 |#1| |#2| |#3|) (-10 -8 (-15 -3506 ((-665 |#2|) |#1|)) (-15 -3602 (|#2|)) (-15 -1738 ((-665 |#2|))) (-15 -2845 (|#1| (-1226 |#2|))) (-15 -2845 ((-1226 |#2|) |#1|)) (-15 -3492 (|#1| (-1226 |#2|))) (-15 -4263 ((-665 |#2|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1|)) (-15 -3788 (|#3| |#1|)) (-15 -4154 (|#3| |#1|)) (-15 -1738 ((-665 |#2|) (-1226 |#1|))) (-15 -3602 (|#2| (-1226 |#1|))) (-15 -3492 (|#1| (-1226 |#2|) (-1226 |#1|))) (-15 -4263 ((-665 |#2|) (-1226 |#1|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1| (-1226 |#1|))) (-15 -3506 ((-665 |#2|) |#1| (-1226 |#1|)))) (-402 |#2| |#3|) (-170) (-1202 |#2|)) (T -401))
-((-1738 (*1 *2) (-12 (-4 *4 (-170)) (-4 *5 (-1202 *4)) (-5 *2 (-665 *4)) (-5 *1 (-401 *3 *4 *5)) (-4 *3 (-402 *4 *5)))) (-3602 (*1 *2) (-12 (-4 *4 (-1202 *2)) (-4 *2 (-170)) (-5 *1 (-401 *3 *2 *4)) (-4 *3 (-402 *2 *4)))))
-(-10 -8 (-15 -3506 ((-665 |#2|) |#1|)) (-15 -3602 (|#2|)) (-15 -1738 ((-665 |#2|))) (-15 -2845 (|#1| (-1226 |#2|))) (-15 -2845 ((-1226 |#2|) |#1|)) (-15 -3492 (|#1| (-1226 |#2|))) (-15 -4263 ((-665 |#2|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1|)) (-15 -3788 (|#3| |#1|)) (-15 -4154 (|#3| |#1|)) (-15 -1738 ((-665 |#2|) (-1226 |#1|))) (-15 -3602 (|#2| (-1226 |#1|))) (-15 -3492 (|#1| (-1226 |#2|) (-1226 |#1|))) (-15 -4263 ((-665 |#2|) (-1226 |#1|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1| (-1226 |#1|))) (-15 -3506 ((-665 |#2|) |#1| (-1226 |#1|))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-1738 (((-665 |#1|) (-1226 $)) 44) (((-665 |#1|)) 59)) (-2906 ((|#1| $) 50)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-3492 (($ (-1226 |#1|) (-1226 $)) 46) (($ (-1226 |#1|)) 62)) (-3506 (((-665 |#1|) $ (-1226 $)) 51) (((-665 |#1|) $) 57)) (-2114 (((-3 $ "failed") $) 32)) (-3123 (((-892)) 52)) (-2675 (((-112) $) 30)) (-3630 ((|#1| $) 49)) (-3788 ((|#2| $) 42 (|has| |#1| (-356)))) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3602 ((|#1| (-1226 $)) 45) ((|#1|) 58)) (-4263 (((-1226 |#1|) $ (-1226 $)) 48) (((-665 |#1|) (-1226 $) (-1226 $)) 47) (((-1226 |#1|) $) 64) (((-665 |#1|) (-1226 $)) 63)) (-2845 (((-1226 |#1|) $) 61) (($ (-1226 |#1|)) 60)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 35)) (-2210 (((-3 $ "failed") $) 41 (|has| |#1| (-143)))) (-4154 ((|#2| $) 43)) (-2082 (((-747)) 28)) (-1949 (((-1226 $)) 65)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 37) (($ |#1| $) 36)))
-(((-402 |#1| |#2|) (-138) (-170) (-1202 |t#1|)) (T -402))
-((-1949 (*1 *2) (-12 (-4 *3 (-170)) (-4 *4 (-1202 *3)) (-5 *2 (-1226 *1)) (-4 *1 (-402 *3 *4)))) (-4263 (*1 *2 *1) (-12 (-4 *1 (-402 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1202 *3)) (-5 *2 (-1226 *3)))) (-4263 (*1 *2 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-402 *4 *5)) (-4 *4 (-170)) (-4 *5 (-1202 *4)) (-5 *2 (-665 *4)))) (-3492 (*1 *1 *2) (-12 (-5 *2 (-1226 *3)) (-4 *3 (-170)) (-4 *1 (-402 *3 *4)) (-4 *4 (-1202 *3)))) (-2845 (*1 *2 *1) (-12 (-4 *1 (-402 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1202 *3)) (-5 *2 (-1226 *3)))) (-2845 (*1 *1 *2) (-12 (-5 *2 (-1226 *3)) (-4 *3 (-170)) (-4 *1 (-402 *3 *4)) (-4 *4 (-1202 *3)))) (-1738 (*1 *2) (-12 (-4 *1 (-402 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1202 *3)) (-5 *2 (-665 *3)))) (-3602 (*1 *2) (-12 (-4 *1 (-402 *2 *3)) (-4 *3 (-1202 *2)) (-4 *2 (-170)))) (-3506 (*1 *2 *1) (-12 (-4 *1 (-402 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1202 *3)) (-5 *2 (-665 *3)))))
-(-13 (-363 |t#1| |t#2|) (-10 -8 (-15 -1949 ((-1226 $))) (-15 -4263 ((-1226 |t#1|) $)) (-15 -4263 ((-665 |t#1|) (-1226 $))) (-15 -3492 ($ (-1226 |t#1|))) (-15 -2845 ((-1226 |t#1|) $)) (-15 -2845 ($ (-1226 |t#1|))) (-15 -1738 ((-665 |t#1|))) (-15 -3602 (|t#1|)) (-15 -3506 ((-665 |t#1|) $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-363 |#1| |#2|) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 |#1|) . T) ((-703) . T) ((-1024 |#1|) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-2714 (((-3 |#2| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) 27) (((-3 (-549) "failed") $) 19)) (-2659 ((|#2| $) NIL) (((-400 (-549)) $) 24) (((-549) $) 14)) (-3846 (($ |#2|) NIL) (($ (-400 (-549))) 22) (($ (-549)) 11)))
-(((-403 |#1| |#2|) (-10 -8 (-15 -2659 ((-549) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -3846 (|#1| (-549))) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -3846 (|#1| |#2|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -2659 (|#2| |#1|))) (-404 |#2|) (-1180)) (T -403))
-NIL
-(-10 -8 (-15 -2659 ((-549) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -3846 (|#1| (-549))) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -3846 (|#1| |#2|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -2659 (|#2| |#1|)))
-((-2714 (((-3 |#1| "failed") $) 7) (((-3 (-400 (-549)) "failed") $) 16 (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) 13 (|has| |#1| (-1009 (-549))))) (-2659 ((|#1| $) 8) (((-400 (-549)) $) 15 (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) 12 (|has| |#1| (-1009 (-549))))) (-3846 (($ |#1|) 6) (($ (-400 (-549))) 17 (|has| |#1| (-1009 (-400 (-549))))) (($ (-549)) 14 (|has| |#1| (-1009 (-549))))))
-(((-404 |#1|) (-138) (-1180)) (T -404))
+((-1354 (*1 *1 *2 *2) (-12 (-5 *2 (-549)) (-4 *1 (-397)))) (-1354 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-549)) (-5 *3 (-892)) (-4 *1 (-397)))) (-2729 (*1 *2 *1) (-12 (-4 *1 (-397)) (-5 *2 (-549)))) (-1863 (*1 *2) (-12 (-4 *1 (-397)) (-5 *2 (-892)))) (-1714 (*1 *2 *1) (-12 (-4 *1 (-397)) (-5 *2 (-549)))) (-1460 (*1 *2 *1) (-12 (-4 *1 (-397)) (-5 *2 (-549)))) (-2690 (*1 *2) (-12 (-4 *1 (-397)) (-5 *2 (-892)))) (-2234 (*1 *2) (-12 (-4 *1 (-397)) (-5 *2 (-892)))) (-3234 (*1 *2) (-12 (-4 *1 (-397)) (-5 *2 (-892)))) (-2690 (*1 *2 *2) (-12 (-5 *2 (-892)) (|has| *1 (-6 -4327)) (-4 *1 (-397)))) (-2234 (*1 *2 *2) (-12 (-5 *2 (-892)) (|has| *1 (-6 -4327)) (-4 *1 (-397)))) (-3234 (*1 *2 *2) (-12 (-5 *2 (-892)) (|has| *1 (-6 -4327)) (-4 *1 (-397)))) (-2385 (*1 *2 *3) (-12 (-5 *3 (-549)) (|has| *1 (-6 -4327)) (-4 *1 (-397)) (-5 *2 (-892)))) (-2584 (*1 *2 *3) (-12 (-5 *3 (-549)) (|has| *1 (-6 -4327)) (-4 *1 (-397)) (-5 *2 (-892)))) (-2861 (*1 *1) (-12 (-4 *1 (-397)) (-4007 (|has| *1 (-6 -4327))) (-4007 (|has| *1 (-6 -4319))))) (-3574 (*1 *1) (-12 (-4 *1 (-397)) (-4007 (|has| *1 (-6 -4327))) (-4007 (|has| *1 (-6 -4319))))))
+(-13 (-1027) (-10 -8 (-6 -2659) (-15 -1354 ($ (-549) (-549))) (-15 -1354 ($ (-549) (-549) (-892))) (-15 -2729 ((-549) $)) (-15 -1863 ((-892))) (-15 -1714 ((-549) $)) (-15 -1460 ((-549) $)) (-15 -2690 ((-892))) (-15 -2234 ((-892))) (-15 -3234 ((-892))) (IF (|has| $ (-6 -4327)) (PROGN (-15 -2690 ((-892) (-892))) (-15 -2234 ((-892) (-892))) (-15 -3234 ((-892) (-892))) (-15 -2385 ((-892) (-549))) (-15 -2584 ((-892) (-549)))) |%noBranch|) (IF (|has| $ (-6 -4319)) |%noBranch| (IF (|has| $ (-6 -4327)) |%noBranch| (PROGN (-15 -2861 ($)) (-15 -3574 ($)))))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-145) . T) ((-593 (-834)) . T) ((-170) . T) ((-594 (-219)) . T) ((-594 (-372)) . T) ((-594 (-863 (-372))) . T) ((-237) . T) ((-283) . T) ((-300) . T) ((-356) . T) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 $) . T) ((-703) . T) ((-767) . T) ((-768) . T) ((-770) . T) ((-771) . T) ((-821) . T) ((-823) . T) ((-857 (-372)) . T) ((-891) . T) ((-973) . T) ((-993) . T) ((-1027) . T) ((-1009 (-400 (-549))) . T) ((-1009 (-549)) . T) ((-1024 #0#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1183) . T))
+((-2795 (((-411 |#2|) (-1 |#2| |#1|) (-411 |#1|)) 20)))
+(((-398 |#1| |#2|) (-10 -7 (-15 -2795 ((-411 |#2|) (-1 |#2| |#1|) (-411 |#1|)))) (-541) (-541)) (T -398))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-411 *5)) (-4 *5 (-541)) (-4 *6 (-541)) (-5 *2 (-411 *6)) (-5 *1 (-398 *5 *6)))))
+(-10 -7 (-15 -2795 ((-411 |#2|) (-1 |#2| |#1|) (-411 |#1|))))
+((-2795 (((-400 |#2|) (-1 |#2| |#1|) (-400 |#1|)) 13)))
+(((-399 |#1| |#2|) (-10 -7 (-15 -2795 ((-400 |#2|) (-1 |#2| |#1|) (-400 |#1|)))) (-541) (-541)) (T -399))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-400 *5)) (-4 *5 (-541)) (-4 *6 (-541)) (-5 *2 (-400 *6)) (-5 *1 (-399 *5 *6)))))
+(-10 -7 (-15 -2795 ((-400 |#2|) (-1 |#2| |#1|) (-400 |#1|))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 13)) (-3833 ((|#1| $) 21 (|has| |#1| (-300)))) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2680 (((-112) $ $) NIL)) (-1741 (((-549) $) NIL (|has| |#1| (-796)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) 17) (((-3 (-1142) "failed") $) NIL (|has| |#1| (-1009 (-1142)))) (((-3 (-400 (-549)) "failed") $) 70 (|has| |#1| (-1009 (-549)))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549))))) (-2657 ((|#1| $) 15) (((-1142) $) NIL (|has| |#1| (-1009 (-1142)))) (((-400 (-549)) $) 67 (|has| |#1| (-1009 (-549)))) (((-549) $) NIL (|has| |#1| (-1009 (-549))))) (-2091 (($ $ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) 50)) (-3237 (($) NIL (|has| |#1| (-534)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-2357 (((-112) $) NIL (|has| |#1| (-796)))) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| |#1| (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| |#1| (-857 (-372))))) (-2297 (((-112) $) 64)) (-2096 (($ $) NIL)) (-1392 ((|#1| $) 71)) (-2964 (((-3 $ "failed") $) NIL (|has| |#1| (-1117)))) (-1992 (((-112) $) NIL (|has| |#1| (-796)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL (|has| |#1| (-1117)) CONST)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 97)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1512 (($ $) NIL (|has| |#1| (-300)))) (-1349 ((|#1| $) 28 (|has| |#1| (-534)))) (-2609 (((-411 (-1138 $)) (-1138 $)) 135 (|has| |#1| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) 131 (|has| |#1| (-880)))) (-2119 (((-411 $) $) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2684 (($ $ (-621 |#1|) (-621 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1142)) (-621 |#1|)) NIL (|has| |#1| (-505 (-1142) |#1|))) (($ $ (-1142) |#1|) NIL (|has| |#1| (-505 (-1142) |#1|)))) (-1335 (((-747) $) NIL)) (-3339 (($ $ |#1|) NIL (|has| |#1| (-279 |#1| |#1|)))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3455 (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) 63)) (-4095 (($ $) NIL)) (-1404 ((|#1| $) 73)) (-2843 (((-863 (-549)) $) NIL (|has| |#1| (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| |#1| (-594 (-863 (-372))))) (((-525) $) NIL (|has| |#1| (-594 (-525)))) (((-372) $) NIL (|has| |#1| (-993))) (((-219) $) NIL (|has| |#1| (-993)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) 115 (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ |#1|) 10) (($ (-1142)) NIL (|has| |#1| (-1009 (-1142))))) (-2343 (((-3 $ "failed") $) 99 (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2371 (((-747)) 100)) (-3497 ((|#1| $) 26 (|has| |#1| (-534)))) (-2441 (((-112) $ $) NIL)) (-2199 (($ $) NIL (|has| |#1| (-796)))) (-3274 (($) 22 T CONST)) (-3286 (($) 8 T CONST)) (-4035 (((-1124) $) 43 (-12 (|has| |#1| (-534)) (|has| |#1| (-804)))) (((-1124) $ (-112)) 44 (-12 (|has| |#1| (-534)) (|has| |#1| (-804)))) (((-1230) (-798) $) 45 (-12 (|has| |#1| (-534)) (|has| |#1| (-804)))) (((-1230) (-798) $ (-112)) 46 (-12 (|has| |#1| (-534)) (|has| |#1| (-804))))) (-1699 (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) 56)) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) 24 (|has| |#1| (-823)))) (-2511 (($ $ $) 126) (($ |#1| |#1|) 52)) (-2498 (($ $) 25) (($ $ $) 55)) (-2484 (($ $ $) 53)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) 125)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 60) (($ $ $) 57) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ |#1| $) 61) (($ $ |#1|) 85)))
+(((-400 |#1|) (-13 (-963 |#1|) (-10 -7 (IF (|has| |#1| (-534)) (IF (|has| |#1| (-804)) (-6 (-804)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4323)) (IF (|has| |#1| (-444)) (IF (|has| |#1| (-6 -4334)) (-6 -4323) |%noBranch|) |%noBranch|) |%noBranch|))) (-541)) (T -400))
+NIL
+(-13 (-963 |#1|) (-10 -7 (IF (|has| |#1| (-534)) (IF (|has| |#1| (-804)) (-6 (-804)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4323)) (IF (|has| |#1| (-444)) (IF (|has| |#1| (-6 -4334)) (-6 -4323) |%noBranch|) |%noBranch|) |%noBranch|)))
+((-1789 (((-665 |#2|) (-1225 $)) NIL) (((-665 |#2|)) 18)) (-2397 (($ (-1225 |#2|) (-1225 $)) NIL) (($ (-1225 |#2|)) 24)) (-1408 (((-665 |#2|) $ (-1225 $)) NIL) (((-665 |#2|) $) 38)) (-3514 ((|#3| $) 60)) (-2740 ((|#2| (-1225 $)) NIL) ((|#2|) 20)) (-1981 (((-1225 |#2|) $ (-1225 $)) NIL) (((-665 |#2|) (-1225 $) (-1225 $)) NIL) (((-1225 |#2|) $) 22) (((-665 |#2|) (-1225 $)) 36)) (-2843 (((-1225 |#2|) $) 11) (($ (-1225 |#2|)) 13)) (-4019 ((|#3| $) 52)))
+(((-401 |#1| |#2| |#3|) (-10 -8 (-15 -1408 ((-665 |#2|) |#1|)) (-15 -2740 (|#2|)) (-15 -1789 ((-665 |#2|))) (-15 -2843 (|#1| (-1225 |#2|))) (-15 -2843 ((-1225 |#2|) |#1|)) (-15 -2397 (|#1| (-1225 |#2|))) (-15 -1981 ((-665 |#2|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1|)) (-15 -3514 (|#3| |#1|)) (-15 -4019 (|#3| |#1|)) (-15 -1789 ((-665 |#2|) (-1225 |#1|))) (-15 -2740 (|#2| (-1225 |#1|))) (-15 -2397 (|#1| (-1225 |#2|) (-1225 |#1|))) (-15 -1981 ((-665 |#2|) (-1225 |#1|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1| (-1225 |#1|))) (-15 -1408 ((-665 |#2|) |#1| (-1225 |#1|)))) (-402 |#2| |#3|) (-170) (-1201 |#2|)) (T -401))
+((-1789 (*1 *2) (-12 (-4 *4 (-170)) (-4 *5 (-1201 *4)) (-5 *2 (-665 *4)) (-5 *1 (-401 *3 *4 *5)) (-4 *3 (-402 *4 *5)))) (-2740 (*1 *2) (-12 (-4 *4 (-1201 *2)) (-4 *2 (-170)) (-5 *1 (-401 *3 *2 *4)) (-4 *3 (-402 *2 *4)))))
+(-10 -8 (-15 -1408 ((-665 |#2|) |#1|)) (-15 -2740 (|#2|)) (-15 -1789 ((-665 |#2|))) (-15 -2843 (|#1| (-1225 |#2|))) (-15 -2843 ((-1225 |#2|) |#1|)) (-15 -2397 (|#1| (-1225 |#2|))) (-15 -1981 ((-665 |#2|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1|)) (-15 -3514 (|#3| |#1|)) (-15 -4019 (|#3| |#1|)) (-15 -1789 ((-665 |#2|) (-1225 |#1|))) (-15 -2740 (|#2| (-1225 |#1|))) (-15 -2397 (|#1| (-1225 |#2|) (-1225 |#1|))) (-15 -1981 ((-665 |#2|) (-1225 |#1|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1| (-1225 |#1|))) (-15 -1408 ((-665 |#2|) |#1| (-1225 |#1|))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-1789 (((-665 |#1|) (-1225 $)) 44) (((-665 |#1|)) 59)) (-2904 ((|#1| $) 50)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2397 (($ (-1225 |#1|) (-1225 $)) 46) (($ (-1225 |#1|)) 62)) (-1408 (((-665 |#1|) $ (-1225 $)) 51) (((-665 |#1|) $) 57)) (-2612 (((-3 $ "failed") $) 32)) (-3121 (((-892)) 52)) (-2297 (((-112) $) 30)) (-2469 ((|#1| $) 49)) (-3514 ((|#2| $) 42 (|has| |#1| (-356)))) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2740 ((|#1| (-1225 $)) 45) ((|#1|) 58)) (-1981 (((-1225 |#1|) $ (-1225 $)) 48) (((-665 |#1|) (-1225 $) (-1225 $)) 47) (((-1225 |#1|) $) 64) (((-665 |#1|) (-1225 $)) 63)) (-2843 (((-1225 |#1|) $) 61) (($ (-1225 |#1|)) 60)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 35)) (-2343 (((-3 $ "failed") $) 41 (|has| |#1| (-143)))) (-4019 ((|#2| $) 43)) (-2371 (((-747)) 28)) (-2619 (((-1225 $)) 65)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 37) (($ |#1| $) 36)))
+(((-402 |#1| |#2|) (-138) (-170) (-1201 |t#1|)) (T -402))
+((-2619 (*1 *2) (-12 (-4 *3 (-170)) (-4 *4 (-1201 *3)) (-5 *2 (-1225 *1)) (-4 *1 (-402 *3 *4)))) (-1981 (*1 *2 *1) (-12 (-4 *1 (-402 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1201 *3)) (-5 *2 (-1225 *3)))) (-1981 (*1 *2 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-402 *4 *5)) (-4 *4 (-170)) (-4 *5 (-1201 *4)) (-5 *2 (-665 *4)))) (-2397 (*1 *1 *2) (-12 (-5 *2 (-1225 *3)) (-4 *3 (-170)) (-4 *1 (-402 *3 *4)) (-4 *4 (-1201 *3)))) (-2843 (*1 *2 *1) (-12 (-4 *1 (-402 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1201 *3)) (-5 *2 (-1225 *3)))) (-2843 (*1 *1 *2) (-12 (-5 *2 (-1225 *3)) (-4 *3 (-170)) (-4 *1 (-402 *3 *4)) (-4 *4 (-1201 *3)))) (-1789 (*1 *2) (-12 (-4 *1 (-402 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1201 *3)) (-5 *2 (-665 *3)))) (-2740 (*1 *2) (-12 (-4 *1 (-402 *2 *3)) (-4 *3 (-1201 *2)) (-4 *2 (-170)))) (-1408 (*1 *2 *1) (-12 (-4 *1 (-402 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1201 *3)) (-5 *2 (-665 *3)))))
+(-13 (-363 |t#1| |t#2|) (-10 -8 (-15 -2619 ((-1225 $))) (-15 -1981 ((-1225 |t#1|) $)) (-15 -1981 ((-665 |t#1|) (-1225 $))) (-15 -2397 ($ (-1225 |t#1|))) (-15 -2843 ((-1225 |t#1|) $)) (-15 -2843 ($ (-1225 |t#1|))) (-15 -1789 ((-665 |t#1|))) (-15 -2740 (|t#1|)) (-15 -1408 ((-665 |t#1|) $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-363 |#1| |#2|) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 |#1|) . T) ((-703) . T) ((-1024 |#1|) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-2712 (((-3 |#2| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) 27) (((-3 (-549) "failed") $) 19)) (-2657 ((|#2| $) NIL) (((-400 (-549)) $) 24) (((-549) $) 14)) (-3845 (($ |#2|) NIL) (($ (-400 (-549))) 22) (($ (-549)) 11)))
+(((-403 |#1| |#2|) (-10 -8 (-15 -2657 ((-549) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -3845 (|#1| (-549))) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -3845 (|#1| |#2|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -2657 (|#2| |#1|))) (-404 |#2|) (-1179)) (T -403))
+NIL
+(-10 -8 (-15 -2657 ((-549) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -3845 (|#1| (-549))) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -3845 (|#1| |#2|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -2657 (|#2| |#1|)))
+((-2712 (((-3 |#1| "failed") $) 7) (((-3 (-400 (-549)) "failed") $) 16 (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) 13 (|has| |#1| (-1009 (-549))))) (-2657 ((|#1| $) 8) (((-400 (-549)) $) 15 (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) 12 (|has| |#1| (-1009 (-549))))) (-3845 (($ |#1|) 6) (($ (-400 (-549))) 17 (|has| |#1| (-1009 (-400 (-549))))) (($ (-549)) 14 (|has| |#1| (-1009 (-549))))))
+(((-404 |#1|) (-138) (-1179)) (T -404))
NIL
(-13 (-1009 |t#1|) (-10 -7 (IF (|has| |t#1| (-1009 (-549))) (-6 (-1009 (-549))) |%noBranch|) (IF (|has| |t#1| (-1009 (-400 (-549)))) (-6 (-1009 (-400 (-549)))) |%noBranch|)))
(((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T))
-((-2797 (((-406 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-406 |#1| |#2| |#3| |#4|)) 33)))
-(((-405 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2797 ((-406 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-406 |#1| |#2| |#3| |#4|)))) (-300) (-963 |#1|) (-1202 |#2|) (-13 (-402 |#2| |#3|) (-1009 |#2|)) (-300) (-963 |#5|) (-1202 |#6|) (-13 (-402 |#6| |#7|) (-1009 |#6|))) (T -405))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-406 *5 *6 *7 *8)) (-4 *5 (-300)) (-4 *6 (-963 *5)) (-4 *7 (-1202 *6)) (-4 *8 (-13 (-402 *6 *7) (-1009 *6))) (-4 *9 (-300)) (-4 *10 (-963 *9)) (-4 *11 (-1202 *10)) (-5 *2 (-406 *9 *10 *11 *12)) (-5 *1 (-405 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-13 (-402 *10 *11) (-1009 *10))))))
-(-10 -7 (-15 -2797 ((-406 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-406 |#1| |#2| |#3| |#4|))))
-((-3834 (((-112) $ $) NIL)) (-1682 (($) NIL T CONST)) (-2114 (((-3 $ "failed") $) NIL)) (-3517 ((|#4| (-747) (-1226 |#4|)) 56)) (-2675 (((-112) $) NIL)) (-1394 (((-1226 |#4|) $) 17)) (-3630 ((|#2| $) 54)) (-1553 (($ $) 139)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 100)) (-3818 (($ (-1226 |#4|)) 99)) (-3990 (((-1087) $) NIL)) (-1403 ((|#1| $) 18)) (-1955 (($ $ $) NIL)) (-3293 (($ $ $) NIL)) (-3846 (((-834) $) 134)) (-1949 (((-1226 |#4|) $) 129)) (-3287 (($) 11 T CONST)) (-2389 (((-112) $ $) 40)) (-2513 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) 122)) (* (($ $ $) 121)))
-(((-406 |#1| |#2| |#3| |#4|) (-13 (-465) (-10 -8 (-15 -3818 ($ (-1226 |#4|))) (-15 -1949 ((-1226 |#4|) $)) (-15 -3630 (|#2| $)) (-15 -1394 ((-1226 |#4|) $)) (-15 -1403 (|#1| $)) (-15 -1553 ($ $)) (-15 -3517 (|#4| (-747) (-1226 |#4|))))) (-300) (-963 |#1|) (-1202 |#2|) (-13 (-402 |#2| |#3|) (-1009 |#2|))) (T -406))
-((-3818 (*1 *1 *2) (-12 (-5 *2 (-1226 *6)) (-4 *6 (-13 (-402 *4 *5) (-1009 *4))) (-4 *4 (-963 *3)) (-4 *5 (-1202 *4)) (-4 *3 (-300)) (-5 *1 (-406 *3 *4 *5 *6)))) (-1949 (*1 *2 *1) (-12 (-4 *3 (-300)) (-4 *4 (-963 *3)) (-4 *5 (-1202 *4)) (-5 *2 (-1226 *6)) (-5 *1 (-406 *3 *4 *5 *6)) (-4 *6 (-13 (-402 *4 *5) (-1009 *4))))) (-3630 (*1 *2 *1) (-12 (-4 *4 (-1202 *2)) (-4 *2 (-963 *3)) (-5 *1 (-406 *3 *2 *4 *5)) (-4 *3 (-300)) (-4 *5 (-13 (-402 *2 *4) (-1009 *2))))) (-1394 (*1 *2 *1) (-12 (-4 *3 (-300)) (-4 *4 (-963 *3)) (-4 *5 (-1202 *4)) (-5 *2 (-1226 *6)) (-5 *1 (-406 *3 *4 *5 *6)) (-4 *6 (-13 (-402 *4 *5) (-1009 *4))))) (-1403 (*1 *2 *1) (-12 (-4 *3 (-963 *2)) (-4 *4 (-1202 *3)) (-4 *2 (-300)) (-5 *1 (-406 *2 *3 *4 *5)) (-4 *5 (-13 (-402 *3 *4) (-1009 *3))))) (-1553 (*1 *1 *1) (-12 (-4 *2 (-300)) (-4 *3 (-963 *2)) (-4 *4 (-1202 *3)) (-5 *1 (-406 *2 *3 *4 *5)) (-4 *5 (-13 (-402 *3 *4) (-1009 *3))))) (-3517 (*1 *2 *3 *4) (-12 (-5 *3 (-747)) (-5 *4 (-1226 *2)) (-4 *5 (-300)) (-4 *6 (-963 *5)) (-4 *2 (-13 (-402 *6 *7) (-1009 *6))) (-5 *1 (-406 *5 *6 *7 *2)) (-4 *7 (-1202 *6)))))
-(-13 (-465) (-10 -8 (-15 -3818 ($ (-1226 |#4|))) (-15 -1949 ((-1226 |#4|) $)) (-15 -3630 (|#2| $)) (-15 -1394 ((-1226 |#4|) $)) (-15 -1403 (|#1| $)) (-15 -1553 ($ $)) (-15 -3517 (|#4| (-747) (-1226 |#4|)))))
-((-3834 (((-112) $ $) NIL)) (-1682 (($) NIL T CONST)) (-2114 (((-3 $ "failed") $) NIL)) (-2675 (((-112) $) NIL)) (-3630 ((|#2| $) 61)) (-2460 (($ (-1226 |#4|)) 25) (($ (-406 |#1| |#2| |#3| |#4|)) 76 (|has| |#4| (-1009 |#2|)))) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 34)) (-1949 (((-1226 |#4|) $) 26)) (-3287 (($) 23 T CONST)) (-2389 (((-112) $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ $ $) 72)))
-(((-407 |#1| |#2| |#3| |#4| |#5|) (-13 (-703) (-10 -8 (-15 -1949 ((-1226 |#4|) $)) (-15 -3630 (|#2| $)) (-15 -2460 ($ (-1226 |#4|))) (IF (|has| |#4| (-1009 |#2|)) (-15 -2460 ($ (-406 |#1| |#2| |#3| |#4|))) |%noBranch|))) (-300) (-963 |#1|) (-1202 |#2|) (-402 |#2| |#3|) (-1226 |#4|)) (T -407))
-((-1949 (*1 *2 *1) (-12 (-4 *3 (-300)) (-4 *4 (-963 *3)) (-4 *5 (-1202 *4)) (-5 *2 (-1226 *6)) (-5 *1 (-407 *3 *4 *5 *6 *7)) (-4 *6 (-402 *4 *5)) (-14 *7 *2))) (-3630 (*1 *2 *1) (-12 (-4 *4 (-1202 *2)) (-4 *2 (-963 *3)) (-5 *1 (-407 *3 *2 *4 *5 *6)) (-4 *3 (-300)) (-4 *5 (-402 *2 *4)) (-14 *6 (-1226 *5)))) (-2460 (*1 *1 *2) (-12 (-5 *2 (-1226 *6)) (-4 *6 (-402 *4 *5)) (-4 *4 (-963 *3)) (-4 *5 (-1202 *4)) (-4 *3 (-300)) (-5 *1 (-407 *3 *4 *5 *6 *7)) (-14 *7 *2))) (-2460 (*1 *1 *2) (-12 (-5 *2 (-406 *3 *4 *5 *6)) (-4 *6 (-1009 *4)) (-4 *3 (-300)) (-4 *4 (-963 *3)) (-4 *5 (-1202 *4)) (-4 *6 (-402 *4 *5)) (-14 *7 (-1226 *6)) (-5 *1 (-407 *3 *4 *5 *6 *7)))))
-(-13 (-703) (-10 -8 (-15 -1949 ((-1226 |#4|) $)) (-15 -3630 (|#2| $)) (-15 -2460 ($ (-1226 |#4|))) (IF (|has| |#4| (-1009 |#2|)) (-15 -2460 ($ (-406 |#1| |#2| |#3| |#4|))) |%noBranch|)))
-((-2797 ((|#3| (-1 |#4| |#2|) |#1|) 26)))
-(((-408 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2797 (|#3| (-1 |#4| |#2|) |#1|))) (-410 |#2|) (-170) (-410 |#4|) (-170)) (T -408))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-170)) (-4 *6 (-170)) (-4 *2 (-410 *6)) (-5 *1 (-408 *4 *5 *2 *6)) (-4 *4 (-410 *5)))))
-(-10 -7 (-15 -2797 (|#3| (-1 |#4| |#2|) |#1|)))
-((-2207 (((-3 $ "failed")) 86)) (-3277 (((-1226 (-665 |#2|)) (-1226 $)) NIL) (((-1226 (-665 |#2|))) 91)) (-3219 (((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed")) 85)) (-3550 (((-3 $ "failed")) 84)) (-4212 (((-665 |#2|) (-1226 $)) NIL) (((-665 |#2|)) 102)) (-3841 (((-665 |#2|) $ (-1226 $)) NIL) (((-665 |#2|) $) 110)) (-2478 (((-1139 (-923 |#2|))) 55)) (-3076 ((|#2| (-1226 $)) NIL) ((|#2|) 106)) (-3492 (($ (-1226 |#2|) (-1226 $)) NIL) (($ (-1226 |#2|)) 112)) (-1742 (((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed")) 83)) (-4101 (((-3 $ "failed")) 75)) (-2870 (((-665 |#2|) (-1226 $)) NIL) (((-665 |#2|)) 100)) (-2303 (((-665 |#2|) $ (-1226 $)) NIL) (((-665 |#2|) $) 108)) (-2014 (((-1139 (-923 |#2|))) 54)) (-2920 ((|#2| (-1226 $)) NIL) ((|#2|) 104)) (-4263 (((-1226 |#2|) $ (-1226 $)) NIL) (((-665 |#2|) (-1226 $) (-1226 $)) NIL) (((-1226 |#2|) $) 111) (((-665 |#2|) (-1226 $)) 118)) (-2845 (((-1226 |#2|) $) 96) (($ (-1226 |#2|)) 98)) (-4111 (((-621 (-923 |#2|)) (-1226 $)) NIL) (((-621 (-923 |#2|))) 94)) (-3596 (($ (-665 |#2|) $) 90)))
-(((-409 |#1| |#2|) (-10 -8 (-15 -3596 (|#1| (-665 |#2|) |#1|)) (-15 -2478 ((-1139 (-923 |#2|)))) (-15 -2014 ((-1139 (-923 |#2|)))) (-15 -3841 ((-665 |#2|) |#1|)) (-15 -2303 ((-665 |#2|) |#1|)) (-15 -4212 ((-665 |#2|))) (-15 -2870 ((-665 |#2|))) (-15 -3076 (|#2|)) (-15 -2920 (|#2|)) (-15 -2845 (|#1| (-1226 |#2|))) (-15 -2845 ((-1226 |#2|) |#1|)) (-15 -3492 (|#1| (-1226 |#2|))) (-15 -4111 ((-621 (-923 |#2|)))) (-15 -3277 ((-1226 (-665 |#2|)))) (-15 -4263 ((-665 |#2|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1|)) (-15 -2207 ((-3 |#1| "failed"))) (-15 -3550 ((-3 |#1| "failed"))) (-15 -4101 ((-3 |#1| "failed"))) (-15 -3219 ((-3 (-2 (|:| |particular| |#1|) (|:| -1949 (-621 |#1|))) "failed"))) (-15 -1742 ((-3 (-2 (|:| |particular| |#1|) (|:| -1949 (-621 |#1|))) "failed"))) (-15 -4212 ((-665 |#2|) (-1226 |#1|))) (-15 -2870 ((-665 |#2|) (-1226 |#1|))) (-15 -3076 (|#2| (-1226 |#1|))) (-15 -2920 (|#2| (-1226 |#1|))) (-15 -3492 (|#1| (-1226 |#2|) (-1226 |#1|))) (-15 -4263 ((-665 |#2|) (-1226 |#1|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1| (-1226 |#1|))) (-15 -3841 ((-665 |#2|) |#1| (-1226 |#1|))) (-15 -2303 ((-665 |#2|) |#1| (-1226 |#1|))) (-15 -3277 ((-1226 (-665 |#2|)) (-1226 |#1|))) (-15 -4111 ((-621 (-923 |#2|)) (-1226 |#1|)))) (-410 |#2|) (-170)) (T -409))
-((-3277 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-1226 (-665 *4))) (-5 *1 (-409 *3 *4)) (-4 *3 (-410 *4)))) (-4111 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-621 (-923 *4))) (-5 *1 (-409 *3 *4)) (-4 *3 (-410 *4)))) (-2920 (*1 *2) (-12 (-4 *2 (-170)) (-5 *1 (-409 *3 *2)) (-4 *3 (-410 *2)))) (-3076 (*1 *2) (-12 (-4 *2 (-170)) (-5 *1 (-409 *3 *2)) (-4 *3 (-410 *2)))) (-2870 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-665 *4)) (-5 *1 (-409 *3 *4)) (-4 *3 (-410 *4)))) (-4212 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-665 *4)) (-5 *1 (-409 *3 *4)) (-4 *3 (-410 *4)))) (-2014 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-1139 (-923 *4))) (-5 *1 (-409 *3 *4)) (-4 *3 (-410 *4)))) (-2478 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-1139 (-923 *4))) (-5 *1 (-409 *3 *4)) (-4 *3 (-410 *4)))))
-(-10 -8 (-15 -3596 (|#1| (-665 |#2|) |#1|)) (-15 -2478 ((-1139 (-923 |#2|)))) (-15 -2014 ((-1139 (-923 |#2|)))) (-15 -3841 ((-665 |#2|) |#1|)) (-15 -2303 ((-665 |#2|) |#1|)) (-15 -4212 ((-665 |#2|))) (-15 -2870 ((-665 |#2|))) (-15 -3076 (|#2|)) (-15 -2920 (|#2|)) (-15 -2845 (|#1| (-1226 |#2|))) (-15 -2845 ((-1226 |#2|) |#1|)) (-15 -3492 (|#1| (-1226 |#2|))) (-15 -4111 ((-621 (-923 |#2|)))) (-15 -3277 ((-1226 (-665 |#2|)))) (-15 -4263 ((-665 |#2|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1|)) (-15 -2207 ((-3 |#1| "failed"))) (-15 -3550 ((-3 |#1| "failed"))) (-15 -4101 ((-3 |#1| "failed"))) (-15 -3219 ((-3 (-2 (|:| |particular| |#1|) (|:| -1949 (-621 |#1|))) "failed"))) (-15 -1742 ((-3 (-2 (|:| |particular| |#1|) (|:| -1949 (-621 |#1|))) "failed"))) (-15 -4212 ((-665 |#2|) (-1226 |#1|))) (-15 -2870 ((-665 |#2|) (-1226 |#1|))) (-15 -3076 (|#2| (-1226 |#1|))) (-15 -2920 (|#2| (-1226 |#1|))) (-15 -3492 (|#1| (-1226 |#2|) (-1226 |#1|))) (-15 -4263 ((-665 |#2|) (-1226 |#1|) (-1226 |#1|))) (-15 -4263 ((-1226 |#2|) |#1| (-1226 |#1|))) (-15 -3841 ((-665 |#2|) |#1| (-1226 |#1|))) (-15 -2303 ((-665 |#2|) |#1| (-1226 |#1|))) (-15 -3277 ((-1226 (-665 |#2|)) (-1226 |#1|))) (-15 -4111 ((-621 (-923 |#2|)) (-1226 |#1|))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2207 (((-3 $ "failed")) 37 (|has| |#1| (-541)))) (-2001 (((-3 $ "failed") $ $) 19)) (-3277 (((-1226 (-665 |#1|)) (-1226 $)) 78) (((-1226 (-665 |#1|))) 100)) (-3945 (((-1226 $)) 81)) (-1682 (($) 17 T CONST)) (-3219 (((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed")) 40 (|has| |#1| (-541)))) (-3550 (((-3 $ "failed")) 38 (|has| |#1| (-541)))) (-4212 (((-665 |#1|) (-1226 $)) 65) (((-665 |#1|)) 92)) (-2840 ((|#1| $) 74)) (-3841 (((-665 |#1|) $ (-1226 $)) 76) (((-665 |#1|) $) 90)) (-3038 (((-3 $ "failed") $) 45 (|has| |#1| (-541)))) (-2478 (((-1139 (-923 |#1|))) 88 (|has| |#1| (-356)))) (-3117 (($ $ (-892)) 28)) (-2182 ((|#1| $) 72)) (-2289 (((-1139 |#1|) $) 42 (|has| |#1| (-541)))) (-3076 ((|#1| (-1226 $)) 67) ((|#1|) 94)) (-3266 (((-1139 |#1|) $) 63)) (-1368 (((-112)) 57)) (-3492 (($ (-1226 |#1|) (-1226 $)) 69) (($ (-1226 |#1|)) 98)) (-2114 (((-3 $ "failed") $) 47 (|has| |#1| (-541)))) (-3123 (((-892)) 80)) (-3601 (((-112)) 54)) (-2943 (($ $ (-892)) 33)) (-3975 (((-112)) 50)) (-2291 (((-112)) 48)) (-2647 (((-112)) 52)) (-1742 (((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed")) 41 (|has| |#1| (-541)))) (-4101 (((-3 $ "failed")) 39 (|has| |#1| (-541)))) (-2870 (((-665 |#1|) (-1226 $)) 66) (((-665 |#1|)) 93)) (-2654 ((|#1| $) 75)) (-2303 (((-665 |#1|) $ (-1226 $)) 77) (((-665 |#1|) $) 91)) (-1919 (((-3 $ "failed") $) 46 (|has| |#1| (-541)))) (-2014 (((-1139 (-923 |#1|))) 89 (|has| |#1| (-356)))) (-2884 (($ $ (-892)) 29)) (-2248 ((|#1| $) 73)) (-1378 (((-1139 |#1|) $) 43 (|has| |#1| (-541)))) (-2920 ((|#1| (-1226 $)) 68) ((|#1|) 95)) (-2443 (((-1139 |#1|) $) 64)) (-3623 (((-112)) 58)) (-3851 (((-1125) $) 9)) (-3260 (((-112)) 49)) (-2754 (((-112)) 51)) (-2055 (((-112)) 53)) (-3990 (((-1087) $) 10)) (-2392 (((-112)) 56)) (-3341 ((|#1| $ (-549)) 101)) (-4263 (((-1226 |#1|) $ (-1226 $)) 71) (((-665 |#1|) (-1226 $) (-1226 $)) 70) (((-1226 |#1|) $) 103) (((-665 |#1|) (-1226 $)) 102)) (-2845 (((-1226 |#1|) $) 97) (($ (-1226 |#1|)) 96)) (-4111 (((-621 (-923 |#1|)) (-1226 $)) 79) (((-621 (-923 |#1|))) 99)) (-3293 (($ $ $) 25)) (-1942 (((-112)) 62)) (-3846 (((-834) $) 11)) (-1949 (((-1226 $)) 104)) (-4315 (((-621 (-1226 |#1|))) 44 (|has| |#1| (-541)))) (-4272 (($ $ $ $) 26)) (-3430 (((-112)) 60)) (-3596 (($ (-665 |#1|) $) 87)) (-2174 (($ $ $) 24)) (-2864 (((-112)) 61)) (-4257 (((-112)) 59)) (-1898 (((-112)) 55)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 30)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
+((-2795 (((-406 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-406 |#1| |#2| |#3| |#4|)) 33)))
+(((-405 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2795 ((-406 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-406 |#1| |#2| |#3| |#4|)))) (-300) (-963 |#1|) (-1201 |#2|) (-13 (-402 |#2| |#3|) (-1009 |#2|)) (-300) (-963 |#5|) (-1201 |#6|) (-13 (-402 |#6| |#7|) (-1009 |#6|))) (T -405))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-406 *5 *6 *7 *8)) (-4 *5 (-300)) (-4 *6 (-963 *5)) (-4 *7 (-1201 *6)) (-4 *8 (-13 (-402 *6 *7) (-1009 *6))) (-4 *9 (-300)) (-4 *10 (-963 *9)) (-4 *11 (-1201 *10)) (-5 *2 (-406 *9 *10 *11 *12)) (-5 *1 (-405 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-13 (-402 *10 *11) (-1009 *10))))))
+(-10 -7 (-15 -2795 ((-406 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-406 |#1| |#2| |#3| |#4|))))
+((-3832 (((-112) $ $) NIL)) (-3034 (($) NIL T CONST)) (-2612 (((-3 $ "failed") $) NIL)) (-3225 ((|#4| (-747) (-1225 |#4|)) 56)) (-2297 (((-112) $) NIL)) (-1392 (((-1225 |#4|) $) 17)) (-2469 ((|#2| $) 54)) (-3865 (($ $) 139)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 100)) (-2061 (($ (-1225 |#4|)) 99)) (-3988 (((-1086) $) NIL)) (-1404 ((|#1| $) 18)) (-1795 (($ $ $) NIL)) (-3870 (($ $ $) NIL)) (-3845 (((-834) $) 134)) (-2619 (((-1225 |#4|) $) 129)) (-3286 (($) 11 T CONST)) (-2387 (((-112) $ $) 40)) (-2511 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) 122)) (* (($ $ $) 121)))
+(((-406 |#1| |#2| |#3| |#4|) (-13 (-465) (-10 -8 (-15 -2061 ($ (-1225 |#4|))) (-15 -2619 ((-1225 |#4|) $)) (-15 -2469 (|#2| $)) (-15 -1392 ((-1225 |#4|) $)) (-15 -1404 (|#1| $)) (-15 -3865 ($ $)) (-15 -3225 (|#4| (-747) (-1225 |#4|))))) (-300) (-963 |#1|) (-1201 |#2|) (-13 (-402 |#2| |#3|) (-1009 |#2|))) (T -406))
+((-2061 (*1 *1 *2) (-12 (-5 *2 (-1225 *6)) (-4 *6 (-13 (-402 *4 *5) (-1009 *4))) (-4 *4 (-963 *3)) (-4 *5 (-1201 *4)) (-4 *3 (-300)) (-5 *1 (-406 *3 *4 *5 *6)))) (-2619 (*1 *2 *1) (-12 (-4 *3 (-300)) (-4 *4 (-963 *3)) (-4 *5 (-1201 *4)) (-5 *2 (-1225 *6)) (-5 *1 (-406 *3 *4 *5 *6)) (-4 *6 (-13 (-402 *4 *5) (-1009 *4))))) (-2469 (*1 *2 *1) (-12 (-4 *4 (-1201 *2)) (-4 *2 (-963 *3)) (-5 *1 (-406 *3 *2 *4 *5)) (-4 *3 (-300)) (-4 *5 (-13 (-402 *2 *4) (-1009 *2))))) (-1392 (*1 *2 *1) (-12 (-4 *3 (-300)) (-4 *4 (-963 *3)) (-4 *5 (-1201 *4)) (-5 *2 (-1225 *6)) (-5 *1 (-406 *3 *4 *5 *6)) (-4 *6 (-13 (-402 *4 *5) (-1009 *4))))) (-1404 (*1 *2 *1) (-12 (-4 *3 (-963 *2)) (-4 *4 (-1201 *3)) (-4 *2 (-300)) (-5 *1 (-406 *2 *3 *4 *5)) (-4 *5 (-13 (-402 *3 *4) (-1009 *3))))) (-3865 (*1 *1 *1) (-12 (-4 *2 (-300)) (-4 *3 (-963 *2)) (-4 *4 (-1201 *3)) (-5 *1 (-406 *2 *3 *4 *5)) (-4 *5 (-13 (-402 *3 *4) (-1009 *3))))) (-3225 (*1 *2 *3 *4) (-12 (-5 *3 (-747)) (-5 *4 (-1225 *2)) (-4 *5 (-300)) (-4 *6 (-963 *5)) (-4 *2 (-13 (-402 *6 *7) (-1009 *6))) (-5 *1 (-406 *5 *6 *7 *2)) (-4 *7 (-1201 *6)))))
+(-13 (-465) (-10 -8 (-15 -2061 ($ (-1225 |#4|))) (-15 -2619 ((-1225 |#4|) $)) (-15 -2469 (|#2| $)) (-15 -1392 ((-1225 |#4|) $)) (-15 -1404 (|#1| $)) (-15 -3865 ($ $)) (-15 -3225 (|#4| (-747) (-1225 |#4|)))))
+((-3832 (((-112) $ $) NIL)) (-3034 (($) NIL T CONST)) (-2612 (((-3 $ "failed") $) NIL)) (-2297 (((-112) $) NIL)) (-2469 ((|#2| $) 61)) (-2629 (($ (-1225 |#4|)) 25) (($ (-406 |#1| |#2| |#3| |#4|)) 76 (|has| |#4| (-1009 |#2|)))) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 34)) (-2619 (((-1225 |#4|) $) 26)) (-3286 (($) 23 T CONST)) (-2387 (((-112) $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ $ $) 72)))
+(((-407 |#1| |#2| |#3| |#4| |#5|) (-13 (-703) (-10 -8 (-15 -2619 ((-1225 |#4|) $)) (-15 -2469 (|#2| $)) (-15 -2629 ($ (-1225 |#4|))) (IF (|has| |#4| (-1009 |#2|)) (-15 -2629 ($ (-406 |#1| |#2| |#3| |#4|))) |%noBranch|))) (-300) (-963 |#1|) (-1201 |#2|) (-402 |#2| |#3|) (-1225 |#4|)) (T -407))
+((-2619 (*1 *2 *1) (-12 (-4 *3 (-300)) (-4 *4 (-963 *3)) (-4 *5 (-1201 *4)) (-5 *2 (-1225 *6)) (-5 *1 (-407 *3 *4 *5 *6 *7)) (-4 *6 (-402 *4 *5)) (-14 *7 *2))) (-2469 (*1 *2 *1) (-12 (-4 *4 (-1201 *2)) (-4 *2 (-963 *3)) (-5 *1 (-407 *3 *2 *4 *5 *6)) (-4 *3 (-300)) (-4 *5 (-402 *2 *4)) (-14 *6 (-1225 *5)))) (-2629 (*1 *1 *2) (-12 (-5 *2 (-1225 *6)) (-4 *6 (-402 *4 *5)) (-4 *4 (-963 *3)) (-4 *5 (-1201 *4)) (-4 *3 (-300)) (-5 *1 (-407 *3 *4 *5 *6 *7)) (-14 *7 *2))) (-2629 (*1 *1 *2) (-12 (-5 *2 (-406 *3 *4 *5 *6)) (-4 *6 (-1009 *4)) (-4 *3 (-300)) (-4 *4 (-963 *3)) (-4 *5 (-1201 *4)) (-4 *6 (-402 *4 *5)) (-14 *7 (-1225 *6)) (-5 *1 (-407 *3 *4 *5 *6 *7)))))
+(-13 (-703) (-10 -8 (-15 -2619 ((-1225 |#4|) $)) (-15 -2469 (|#2| $)) (-15 -2629 ($ (-1225 |#4|))) (IF (|has| |#4| (-1009 |#2|)) (-15 -2629 ($ (-406 |#1| |#2| |#3| |#4|))) |%noBranch|)))
+((-2795 ((|#3| (-1 |#4| |#2|) |#1|) 26)))
+(((-408 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2795 (|#3| (-1 |#4| |#2|) |#1|))) (-410 |#2|) (-170) (-410 |#4|) (-170)) (T -408))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-170)) (-4 *6 (-170)) (-4 *2 (-410 *6)) (-5 *1 (-408 *4 *5 *2 *6)) (-4 *4 (-410 *5)))))
+(-10 -7 (-15 -2795 (|#3| (-1 |#4| |#2|) |#1|)))
+((-1951 (((-3 $ "failed")) 86)) (-2893 (((-1225 (-665 |#2|)) (-1225 $)) NIL) (((-1225 (-665 |#2|))) 91)) (-1760 (((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed")) 85)) (-3372 (((-3 $ "failed")) 84)) (-1657 (((-665 |#2|) (-1225 $)) NIL) (((-665 |#2|)) 102)) (-1785 (((-665 |#2|) $ (-1225 $)) NIL) (((-665 |#2|) $) 110)) (-3781 (((-1138 (-923 |#2|))) 55)) (-2733 ((|#2| (-1225 $)) NIL) ((|#2|) 106)) (-2397 (($ (-1225 |#2|) (-1225 $)) NIL) (($ (-1225 |#2|)) 112)) (-4001 (((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed")) 83)) (-3583 (((-3 $ "failed")) 75)) (-2686 (((-665 |#2|) (-1225 $)) NIL) (((-665 |#2|)) 100)) (-3364 (((-665 |#2|) $ (-1225 $)) NIL) (((-665 |#2|) $) 108)) (-4128 (((-1138 (-923 |#2|))) 54)) (-1405 ((|#2| (-1225 $)) NIL) ((|#2|) 104)) (-1981 (((-1225 |#2|) $ (-1225 $)) NIL) (((-665 |#2|) (-1225 $) (-1225 $)) NIL) (((-1225 |#2|) $) 111) (((-665 |#2|) (-1225 $)) 118)) (-2843 (((-1225 |#2|) $) 96) (($ (-1225 |#2|)) 98)) (-3166 (((-621 (-923 |#2|)) (-1225 $)) NIL) (((-621 (-923 |#2|))) 94)) (-3593 (($ (-665 |#2|) $) 90)))
+(((-409 |#1| |#2|) (-10 -8 (-15 -3593 (|#1| (-665 |#2|) |#1|)) (-15 -3781 ((-1138 (-923 |#2|)))) (-15 -4128 ((-1138 (-923 |#2|)))) (-15 -1785 ((-665 |#2|) |#1|)) (-15 -3364 ((-665 |#2|) |#1|)) (-15 -1657 ((-665 |#2|))) (-15 -2686 ((-665 |#2|))) (-15 -2733 (|#2|)) (-15 -1405 (|#2|)) (-15 -2843 (|#1| (-1225 |#2|))) (-15 -2843 ((-1225 |#2|) |#1|)) (-15 -2397 (|#1| (-1225 |#2|))) (-15 -3166 ((-621 (-923 |#2|)))) (-15 -2893 ((-1225 (-665 |#2|)))) (-15 -1981 ((-665 |#2|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1|)) (-15 -1951 ((-3 |#1| "failed"))) (-15 -3372 ((-3 |#1| "failed"))) (-15 -3583 ((-3 |#1| "failed"))) (-15 -1760 ((-3 (-2 (|:| |particular| |#1|) (|:| -2619 (-621 |#1|))) "failed"))) (-15 -4001 ((-3 (-2 (|:| |particular| |#1|) (|:| -2619 (-621 |#1|))) "failed"))) (-15 -1657 ((-665 |#2|) (-1225 |#1|))) (-15 -2686 ((-665 |#2|) (-1225 |#1|))) (-15 -2733 (|#2| (-1225 |#1|))) (-15 -1405 (|#2| (-1225 |#1|))) (-15 -2397 (|#1| (-1225 |#2|) (-1225 |#1|))) (-15 -1981 ((-665 |#2|) (-1225 |#1|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1| (-1225 |#1|))) (-15 -1785 ((-665 |#2|) |#1| (-1225 |#1|))) (-15 -3364 ((-665 |#2|) |#1| (-1225 |#1|))) (-15 -2893 ((-1225 (-665 |#2|)) (-1225 |#1|))) (-15 -3166 ((-621 (-923 |#2|)) (-1225 |#1|)))) (-410 |#2|) (-170)) (T -409))
+((-2893 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-1225 (-665 *4))) (-5 *1 (-409 *3 *4)) (-4 *3 (-410 *4)))) (-3166 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-621 (-923 *4))) (-5 *1 (-409 *3 *4)) (-4 *3 (-410 *4)))) (-1405 (*1 *2) (-12 (-4 *2 (-170)) (-5 *1 (-409 *3 *2)) (-4 *3 (-410 *2)))) (-2733 (*1 *2) (-12 (-4 *2 (-170)) (-5 *1 (-409 *3 *2)) (-4 *3 (-410 *2)))) (-2686 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-665 *4)) (-5 *1 (-409 *3 *4)) (-4 *3 (-410 *4)))) (-1657 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-665 *4)) (-5 *1 (-409 *3 *4)) (-4 *3 (-410 *4)))) (-4128 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-1138 (-923 *4))) (-5 *1 (-409 *3 *4)) (-4 *3 (-410 *4)))) (-3781 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-1138 (-923 *4))) (-5 *1 (-409 *3 *4)) (-4 *3 (-410 *4)))))
+(-10 -8 (-15 -3593 (|#1| (-665 |#2|) |#1|)) (-15 -3781 ((-1138 (-923 |#2|)))) (-15 -4128 ((-1138 (-923 |#2|)))) (-15 -1785 ((-665 |#2|) |#1|)) (-15 -3364 ((-665 |#2|) |#1|)) (-15 -1657 ((-665 |#2|))) (-15 -2686 ((-665 |#2|))) (-15 -2733 (|#2|)) (-15 -1405 (|#2|)) (-15 -2843 (|#1| (-1225 |#2|))) (-15 -2843 ((-1225 |#2|) |#1|)) (-15 -2397 (|#1| (-1225 |#2|))) (-15 -3166 ((-621 (-923 |#2|)))) (-15 -2893 ((-1225 (-665 |#2|)))) (-15 -1981 ((-665 |#2|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1|)) (-15 -1951 ((-3 |#1| "failed"))) (-15 -3372 ((-3 |#1| "failed"))) (-15 -3583 ((-3 |#1| "failed"))) (-15 -1760 ((-3 (-2 (|:| |particular| |#1|) (|:| -2619 (-621 |#1|))) "failed"))) (-15 -4001 ((-3 (-2 (|:| |particular| |#1|) (|:| -2619 (-621 |#1|))) "failed"))) (-15 -1657 ((-665 |#2|) (-1225 |#1|))) (-15 -2686 ((-665 |#2|) (-1225 |#1|))) (-15 -2733 (|#2| (-1225 |#1|))) (-15 -1405 (|#2| (-1225 |#1|))) (-15 -2397 (|#1| (-1225 |#2|) (-1225 |#1|))) (-15 -1981 ((-665 |#2|) (-1225 |#1|) (-1225 |#1|))) (-15 -1981 ((-1225 |#2|) |#1| (-1225 |#1|))) (-15 -1785 ((-665 |#2|) |#1| (-1225 |#1|))) (-15 -3364 ((-665 |#2|) |#1| (-1225 |#1|))) (-15 -2893 ((-1225 (-665 |#2|)) (-1225 |#1|))) (-15 -3166 ((-621 (-923 |#2|)) (-1225 |#1|))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-1951 (((-3 $ "failed")) 37 (|has| |#1| (-541)))) (-2416 (((-3 $ "failed") $ $) 19)) (-2893 (((-1225 (-665 |#1|)) (-1225 $)) 78) (((-1225 (-665 |#1|))) 100)) (-3349 (((-1225 $)) 81)) (-3034 (($) 17 T CONST)) (-1760 (((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed")) 40 (|has| |#1| (-541)))) (-3372 (((-3 $ "failed")) 38 (|has| |#1| (-541)))) (-1657 (((-665 |#1|) (-1225 $)) 65) (((-665 |#1|)) 92)) (-2872 ((|#1| $) 74)) (-1785 (((-665 |#1|) $ (-1225 $)) 76) (((-665 |#1|) $) 90)) (-2013 (((-3 $ "failed") $) 45 (|has| |#1| (-541)))) (-3781 (((-1138 (-923 |#1|))) 88 (|has| |#1| (-356)))) (-2039 (($ $ (-892)) 28)) (-4301 ((|#1| $) 72)) (-1442 (((-1138 |#1|) $) 42 (|has| |#1| (-541)))) (-2733 ((|#1| (-1225 $)) 67) ((|#1|) 94)) (-3163 (((-1138 |#1|) $) 63)) (-2634 (((-112)) 57)) (-2397 (($ (-1225 |#1|) (-1225 $)) 69) (($ (-1225 |#1|)) 98)) (-2612 (((-3 $ "failed") $) 47 (|has| |#1| (-541)))) (-3121 (((-892)) 80)) (-2639 (((-112)) 54)) (-3764 (($ $ (-892)) 33)) (-2915 (((-112)) 50)) (-1670 (((-112)) 48)) (-4034 (((-112)) 52)) (-4001 (((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed")) 41 (|has| |#1| (-541)))) (-3583 (((-3 $ "failed")) 39 (|has| |#1| (-541)))) (-2686 (((-665 |#1|) (-1225 $)) 66) (((-665 |#1|)) 93)) (-3458 ((|#1| $) 75)) (-3364 (((-665 |#1|) $ (-1225 $)) 77) (((-665 |#1|) $) 91)) (-1540 (((-3 $ "failed") $) 46 (|has| |#1| (-541)))) (-4128 (((-1138 (-923 |#1|))) 89 (|has| |#1| (-356)))) (-4304 (($ $ (-892)) 29)) (-3432 ((|#1| $) 73)) (-2085 (((-1138 |#1|) $) 43 (|has| |#1| (-541)))) (-1405 ((|#1| (-1225 $)) 68) ((|#1|) 95)) (-4257 (((-1138 |#1|) $) 64)) (-4115 (((-112)) 58)) (-3441 (((-1124) $) 9)) (-3775 (((-112)) 49)) (-3875 (((-112)) 51)) (-4055 (((-112)) 53)) (-3988 (((-1086) $) 10)) (-2924 (((-112)) 56)) (-3339 ((|#1| $ (-549)) 101)) (-1981 (((-1225 |#1|) $ (-1225 $)) 71) (((-665 |#1|) (-1225 $) (-1225 $)) 70) (((-1225 |#1|) $) 103) (((-665 |#1|) (-1225 $)) 102)) (-2843 (((-1225 |#1|) $) 97) (($ (-1225 |#1|)) 96)) (-3166 (((-621 (-923 |#1|)) (-1225 $)) 79) (((-621 (-923 |#1|))) 99)) (-3870 (($ $ $) 25)) (-3083 (((-112)) 62)) (-3845 (((-834) $) 11)) (-2619 (((-1225 $)) 104)) (-3445 (((-621 (-1225 |#1|))) 44 (|has| |#1| (-541)))) (-3515 (($ $ $ $) 26)) (-3011 (((-112)) 60)) (-3593 (($ (-665 |#1|) $) 87)) (-3485 (($ $ $) 24)) (-3338 (((-112)) 61)) (-2959 (((-112)) 59)) (-1379 (((-112)) 55)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 30)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
(((-410 |#1|) (-138) (-170)) (T -410))
-((-1949 (*1 *2) (-12 (-4 *3 (-170)) (-5 *2 (-1226 *1)) (-4 *1 (-410 *3)))) (-4263 (*1 *2 *1) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-1226 *3)))) (-4263 (*1 *2 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-410 *4)) (-4 *4 (-170)) (-5 *2 (-665 *4)))) (-3341 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-410 *2)) (-4 *2 (-170)))) (-3277 (*1 *2) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-1226 (-665 *3))))) (-4111 (*1 *2) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-621 (-923 *3))))) (-3492 (*1 *1 *2) (-12 (-5 *2 (-1226 *3)) (-4 *3 (-170)) (-4 *1 (-410 *3)))) (-2845 (*1 *2 *1) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-1226 *3)))) (-2845 (*1 *1 *2) (-12 (-5 *2 (-1226 *3)) (-4 *3 (-170)) (-4 *1 (-410 *3)))) (-2920 (*1 *2) (-12 (-4 *1 (-410 *2)) (-4 *2 (-170)))) (-3076 (*1 *2) (-12 (-4 *1 (-410 *2)) (-4 *2 (-170)))) (-2870 (*1 *2) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-665 *3)))) (-4212 (*1 *2) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-665 *3)))) (-2303 (*1 *2 *1) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-665 *3)))) (-3841 (*1 *2 *1) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-665 *3)))) (-2014 (*1 *2) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-4 *3 (-356)) (-5 *2 (-1139 (-923 *3))))) (-2478 (*1 *2) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-4 *3 (-356)) (-5 *2 (-1139 (-923 *3))))) (-3596 (*1 *1 *2 *1) (-12 (-5 *2 (-665 *3)) (-4 *1 (-410 *3)) (-4 *3 (-170)))))
-(-13 (-360 |t#1|) (-10 -8 (-15 -1949 ((-1226 $))) (-15 -4263 ((-1226 |t#1|) $)) (-15 -4263 ((-665 |t#1|) (-1226 $))) (-15 -3341 (|t#1| $ (-549))) (-15 -3277 ((-1226 (-665 |t#1|)))) (-15 -4111 ((-621 (-923 |t#1|)))) (-15 -3492 ($ (-1226 |t#1|))) (-15 -2845 ((-1226 |t#1|) $)) (-15 -2845 ($ (-1226 |t#1|))) (-15 -2920 (|t#1|)) (-15 -3076 (|t#1|)) (-15 -2870 ((-665 |t#1|))) (-15 -4212 ((-665 |t#1|))) (-15 -2303 ((-665 |t#1|) $)) (-15 -3841 ((-665 |t#1|) $)) (IF (|has| |t#1| (-356)) (PROGN (-15 -2014 ((-1139 (-923 |t#1|)))) (-15 -2478 ((-1139 (-923 |t#1|))))) |%noBranch|) (-15 -3596 ($ (-665 |t#1|) $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-360 |#1|) . T) ((-624 |#1|) . T) ((-694 |#1|) . T) ((-697) . T) ((-721 |#1|) . T) ((-738) . T) ((-1024 |#1|) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 42)) (-1794 (($ $) 57)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 146)) (-2258 (($ $) NIL)) (-2799 (((-112) $) 36)) (-2207 ((|#1| $) 13)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL (|has| |#1| (-1184)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-1184)))) (-2257 (($ |#1| (-549)) 31)) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 116)) (-2659 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 55)) (-2114 (((-3 $ "failed") $) 131)) (-3405 (((-3 (-400 (-549)) "failed") $) 63 (|has| |#1| (-534)))) (-3679 (((-112) $) 59 (|has| |#1| (-534)))) (-2532 (((-400 (-549)) $) 70 (|has| |#1| (-534)))) (-3691 (($ |#1| (-549)) 33)) (-1420 (((-112) $) 152 (|has| |#1| (-1184)))) (-2675 (((-112) $) 43)) (-3116 (((-747) $) 38)) (-2158 (((-3 "nil" "sqfr" "irred" "prime") $ (-549)) 137)) (-1302 ((|#1| $ (-549)) 136)) (-3573 (((-549) $ (-549)) 135)) (-2137 (($ |#1| (-549)) 30)) (-2797 (($ (-1 |#1| |#1|) $) 143)) (-3861 (($ |#1| (-621 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-549))))) 58)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-3851 (((-1125) $) NIL)) (-3599 (($ |#1| (-549)) 32)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-444)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) 147 (|has| |#1| (-444)))) (-2683 (($ |#1| (-549) (-3 "nil" "sqfr" "irred" "prime")) 29)) (-4024 (((-621 (-2 (|:| -2121 |#1|) (|:| -3731 (-549)))) $) 54)) (-3840 (((-621 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-549)))) $) 12)) (-2121 (((-411 $) $) NIL (|has| |#1| (-1184)))) (-2042 (((-3 $ "failed") $ $) 138)) (-3731 (((-549) $) 132)) (-1449 ((|#1| $) 56)) (-2686 (($ $ (-621 |#1|) (-621 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) 79 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1143)) (-621 |#1|)) 85 (|has| |#1| (-505 (-1143) |#1|))) (($ $ (-1143) |#1|) NIL (|has| |#1| (-505 (-1143) |#1|))) (($ $ (-1143) $) NIL (|has| |#1| (-505 (-1143) $))) (($ $ (-621 (-1143)) (-621 $)) 86 (|has| |#1| (-505 (-1143) $))) (($ $ (-621 (-287 $))) 82 (|has| |#1| (-302 $))) (($ $ (-287 $)) NIL (|has| |#1| (-302 $))) (($ $ $ $) NIL (|has| |#1| (-302 $))) (($ $ (-621 $) (-621 $)) NIL (|has| |#1| (-302 $)))) (-3341 (($ $ |#1|) 71 (|has| |#1| (-279 |#1| |#1|))) (($ $ $) 72 (|has| |#1| (-279 $ $)))) (-3456 (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) 142)) (-2845 (((-525) $) 27 (|has| |#1| (-594 (-525)))) (((-372) $) 92 (|has| |#1| (-993))) (((-219) $) 95 (|has| |#1| (-993)))) (-3846 (((-834) $) 114) (($ (-549)) 46) (($ $) NIL) (($ |#1|) 45) (($ (-400 (-549))) NIL (|has| |#1| (-1009 (-400 (-549)))))) (-2082 (((-747)) 48)) (-1498 (((-112) $ $) NIL)) (-3276 (($) 40 T CONST)) (-3287 (($) 39 T CONST)) (-1702 (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2389 (((-112) $ $) 96)) (-2500 (($ $) 128) (($ $ $) NIL)) (-2486 (($ $ $) 140)) (** (($ $ (-892)) NIL) (($ $ (-747)) 102)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 50) (($ $ $) 49) (($ |#1| $) 51) (($ $ |#1|) NIL)))
-(((-411 |#1|) (-13 (-541) (-225 |#1|) (-38 |#1|) (-331 |#1|) (-404 |#1|) (-10 -8 (-15 -1449 (|#1| $)) (-15 -3731 ((-549) $)) (-15 -3861 ($ |#1| (-621 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-549)))))) (-15 -3840 ((-621 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-549)))) $)) (-15 -2137 ($ |#1| (-549))) (-15 -4024 ((-621 (-2 (|:| -2121 |#1|) (|:| -3731 (-549)))) $)) (-15 -3599 ($ |#1| (-549))) (-15 -3573 ((-549) $ (-549))) (-15 -1302 (|#1| $ (-549))) (-15 -2158 ((-3 "nil" "sqfr" "irred" "prime") $ (-549))) (-15 -3116 ((-747) $)) (-15 -3691 ($ |#1| (-549))) (-15 -2257 ($ |#1| (-549))) (-15 -2683 ($ |#1| (-549) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -2207 (|#1| $)) (-15 -1794 ($ $)) (-15 -2797 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-444)) (-6 (-444)) |%noBranch|) (IF (|has| |#1| (-993)) (-6 (-993)) |%noBranch|) (IF (|has| |#1| (-1184)) (-6 (-1184)) |%noBranch|) (IF (|has| |#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (IF (|has| |#1| (-534)) (PROGN (-15 -3679 ((-112) $)) (-15 -2532 ((-400 (-549)) $)) (-15 -3405 ((-3 (-400 (-549)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-279 $ $)) (-6 (-279 $ $)) |%noBranch|) (IF (|has| |#1| (-302 $)) (-6 (-302 $)) |%noBranch|) (IF (|has| |#1| (-505 (-1143) $)) (-6 (-505 (-1143) $)) |%noBranch|))) (-541)) (T -411))
-((-2797 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-541)) (-5 *1 (-411 *3)))) (-1449 (*1 *2 *1) (-12 (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-3731 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-411 *3)) (-4 *3 (-541)))) (-3861 (*1 *1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2) (|:| |xpnt| (-549))))) (-4 *2 (-541)) (-5 *1 (-411 *2)))) (-3840 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3) (|:| |xpnt| (-549))))) (-5 *1 (-411 *3)) (-4 *3 (-541)))) (-2137 (*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-4024 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| -2121 *3) (|:| -3731 (-549))))) (-5 *1 (-411 *3)) (-4 *3 (-541)))) (-3599 (*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-3573 (*1 *2 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-411 *3)) (-4 *3 (-541)))) (-1302 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-2158 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-411 *4)) (-4 *4 (-541)))) (-3116 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-411 *3)) (-4 *3 (-541)))) (-3691 (*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-2257 (*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-2683 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-549)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-2207 (*1 *2 *1) (-12 (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-1794 (*1 *1 *1) (-12 (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-3679 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-411 *3)) (-4 *3 (-534)) (-4 *3 (-541)))) (-2532 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-411 *3)) (-4 *3 (-534)) (-4 *3 (-541)))) (-3405 (*1 *2 *1) (|partial| -12 (-5 *2 (-400 (-549))) (-5 *1 (-411 *3)) (-4 *3 (-534)) (-4 *3 (-541)))))
-(-13 (-541) (-225 |#1|) (-38 |#1|) (-331 |#1|) (-404 |#1|) (-10 -8 (-15 -1449 (|#1| $)) (-15 -3731 ((-549) $)) (-15 -3861 ($ |#1| (-621 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-549)))))) (-15 -3840 ((-621 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-549)))) $)) (-15 -2137 ($ |#1| (-549))) (-15 -4024 ((-621 (-2 (|:| -2121 |#1|) (|:| -3731 (-549)))) $)) (-15 -3599 ($ |#1| (-549))) (-15 -3573 ((-549) $ (-549))) (-15 -1302 (|#1| $ (-549))) (-15 -2158 ((-3 "nil" "sqfr" "irred" "prime") $ (-549))) (-15 -3116 ((-747) $)) (-15 -3691 ($ |#1| (-549))) (-15 -2257 ($ |#1| (-549))) (-15 -2683 ($ |#1| (-549) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -2207 (|#1| $)) (-15 -1794 ($ $)) (-15 -2797 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-444)) (-6 (-444)) |%noBranch|) (IF (|has| |#1| (-993)) (-6 (-993)) |%noBranch|) (IF (|has| |#1| (-1184)) (-6 (-1184)) |%noBranch|) (IF (|has| |#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (IF (|has| |#1| (-534)) (PROGN (-15 -3679 ((-112) $)) (-15 -2532 ((-400 (-549)) $)) (-15 -3405 ((-3 (-400 (-549)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-279 $ $)) (-6 (-279 $ $)) |%noBranch|) (IF (|has| |#1| (-302 $)) (-6 (-302 $)) |%noBranch|) (IF (|has| |#1| (-505 (-1143) $)) (-6 (-505 (-1143) $)) |%noBranch|)))
-((-4166 (((-411 |#1|) (-411 |#1|) (-1 (-411 |#1|) |#1|)) 21)) (-3317 (((-411 |#1|) (-411 |#1|) (-411 |#1|)) 16)))
-(((-412 |#1|) (-10 -7 (-15 -4166 ((-411 |#1|) (-411 |#1|) (-1 (-411 |#1|) |#1|))) (-15 -3317 ((-411 |#1|) (-411 |#1|) (-411 |#1|)))) (-541)) (T -412))
-((-3317 (*1 *2 *2 *2) (-12 (-5 *2 (-411 *3)) (-4 *3 (-541)) (-5 *1 (-412 *3)))) (-4166 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-411 *4) *4)) (-4 *4 (-541)) (-5 *2 (-411 *4)) (-5 *1 (-412 *4)))))
-(-10 -7 (-15 -4166 ((-411 |#1|) (-411 |#1|) (-1 (-411 |#1|) |#1|))) (-15 -3317 ((-411 |#1|) (-411 |#1|) (-411 |#1|))))
-((-1347 ((|#2| |#2|) 166)) (-4087 (((-3 (|:| |%expansion| (-306 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1125)) (|:| |prob| (-1125))))) |#2| (-112)) 57)))
-(((-413 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4087 ((-3 (|:| |%expansion| (-306 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1125)) (|:| |prob| (-1125))))) |#2| (-112))) (-15 -1347 (|#2| |#2|))) (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-27) (-1165) (-423 |#1|)) (-1143) |#2|) (T -413))
-((-1347 (*1 *2 *2) (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-413 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1165) (-423 *3))) (-14 *4 (-1143)) (-14 *5 *2))) (-4087 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 (|:| |%expansion| (-306 *5 *3 *6 *7)) (|:| |%problem| (-2 (|:| |func| (-1125)) (|:| |prob| (-1125)))))) (-5 *1 (-413 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1165) (-423 *5))) (-14 *6 (-1143)) (-14 *7 *3))))
-(-10 -7 (-15 -4087 ((-3 (|:| |%expansion| (-306 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1125)) (|:| |prob| (-1125))))) |#2| (-112))) (-15 -1347 (|#2| |#2|)))
-((-2797 ((|#4| (-1 |#3| |#1|) |#2|) 11)))
-(((-414 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2797 (|#4| (-1 |#3| |#1|) |#2|))) (-13 (-1018) (-823)) (-423 |#1|) (-13 (-1018) (-823)) (-423 |#3|)) (T -414))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-13 (-1018) (-823))) (-4 *6 (-13 (-1018) (-823))) (-4 *2 (-423 *6)) (-5 *1 (-414 *5 *4 *6 *2)) (-4 *4 (-423 *5)))))
-(-10 -7 (-15 -2797 (|#4| (-1 |#3| |#1|) |#2|)))
-((-1347 ((|#2| |#2|) 90)) (-3926 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1125)) (|:| |prob| (-1125))))) |#2| (-112) (-1125)) 48)) (-2193 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1125)) (|:| |prob| (-1125))))) |#2| (-112) (-1125)) 154)))
-(((-415 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3926 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1125)) (|:| |prob| (-1125))))) |#2| (-112) (-1125))) (-15 -2193 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1125)) (|:| |prob| (-1125))))) |#2| (-112) (-1125))) (-15 -1347 (|#2| |#2|))) (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-27) (-1165) (-423 |#1|) (-10 -8 (-15 -3846 ($ |#3|)))) (-821) (-13 (-1204 |#2| |#3|) (-356) (-1165) (-10 -8 (-15 -3456 ($ $)) (-15 -3893 ($ $)))) (-954 |#4|) (-1143)) (T -415))
-((-1347 (*1 *2 *2) (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-4 *2 (-13 (-27) (-1165) (-423 *3) (-10 -8 (-15 -3846 ($ *4))))) (-4 *4 (-821)) (-4 *5 (-13 (-1204 *2 *4) (-356) (-1165) (-10 -8 (-15 -3456 ($ $)) (-15 -3893 ($ $))))) (-5 *1 (-415 *3 *2 *4 *5 *6 *7)) (-4 *6 (-954 *5)) (-14 *7 (-1143)))) (-2193 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-4 *3 (-13 (-27) (-1165) (-423 *6) (-10 -8 (-15 -3846 ($ *7))))) (-4 *7 (-821)) (-4 *8 (-13 (-1204 *3 *7) (-356) (-1165) (-10 -8 (-15 -3456 ($ $)) (-15 -3893 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1125)) (|:| |prob| (-1125)))))) (-5 *1 (-415 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1125)) (-4 *9 (-954 *8)) (-14 *10 (-1143)))) (-3926 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-4 *3 (-13 (-27) (-1165) (-423 *6) (-10 -8 (-15 -3846 ($ *7))))) (-4 *7 (-821)) (-4 *8 (-13 (-1204 *3 *7) (-356) (-1165) (-10 -8 (-15 -3456 ($ $)) (-15 -3893 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1125)) (|:| |prob| (-1125)))))) (-5 *1 (-415 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1125)) (-4 *9 (-954 *8)) (-14 *10 (-1143)))))
-(-10 -7 (-15 -3926 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1125)) (|:| |prob| (-1125))))) |#2| (-112) (-1125))) (-15 -2193 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1125)) (|:| |prob| (-1125))))) |#2| (-112) (-1125))) (-15 -1347 (|#2| |#2|)))
-((-3804 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 22)) (-2557 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 20)) (-2797 ((|#4| (-1 |#3| |#1|) |#2|) 17)))
-(((-416 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2797 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2557 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3804 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1067) (-418 |#1|) (-1067) (-418 |#3|)) (T -416))
-((-3804 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1067)) (-4 *5 (-1067)) (-4 *2 (-418 *5)) (-5 *1 (-416 *6 *4 *5 *2)) (-4 *4 (-418 *6)))) (-2557 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1067)) (-4 *2 (-1067)) (-5 *1 (-416 *5 *4 *2 *6)) (-4 *4 (-418 *5)) (-4 *6 (-418 *2)))) (-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *2 (-418 *6)) (-5 *1 (-416 *5 *4 *6 *2)) (-4 *4 (-418 *5)))))
-(-10 -7 (-15 -2797 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2557 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3804 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
-((-2664 (($) 44)) (-1442 (($ |#2| $) NIL) (($ $ |#2|) NIL) (($ $ $) 40)) (-2440 (($ $ $) 39)) (-2695 (((-112) $ $) 28)) (-3614 (((-747)) 47)) (-2787 (($ (-621 |#2|)) 20) (($) NIL)) (-3239 (($) 53)) (-2369 (((-112) $ $) 13)) (-2863 ((|#2| $) 61)) (-3575 ((|#2| $) 59)) (-1881 (((-892) $) 55)) (-3655 (($ $ $) 35)) (-3493 (($ (-892)) 50)) (-1334 (($ $ |#2|) NIL) (($ $ $) 38)) (-4000 (((-747) (-1 (-112) |#2|) $) NIL) (((-747) |#2| $) 26)) (-3854 (($ (-621 |#2|)) 24)) (-1417 (($ $) 46)) (-3846 (((-834) $) 33)) (-3916 (((-747) $) 21)) (-4120 (($ (-621 |#2|)) 19) (($) NIL)) (-2389 (((-112) $ $) 16)))
-(((-417 |#1| |#2|) (-10 -8 (-15 -3614 ((-747))) (-15 -3493 (|#1| (-892))) (-15 -1881 ((-892) |#1|)) (-15 -3239 (|#1|)) (-15 -2863 (|#2| |#1|)) (-15 -3575 (|#2| |#1|)) (-15 -2664 (|#1|)) (-15 -1417 (|#1| |#1|)) (-15 -3916 ((-747) |#1|)) (-15 -2389 ((-112) |#1| |#1|)) (-15 -3846 ((-834) |#1|)) (-15 -2369 ((-112) |#1| |#1|)) (-15 -4120 (|#1|)) (-15 -4120 (|#1| (-621 |#2|))) (-15 -2787 (|#1|)) (-15 -2787 (|#1| (-621 |#2|))) (-15 -3655 (|#1| |#1| |#1|)) (-15 -1334 (|#1| |#1| |#1|)) (-15 -1334 (|#1| |#1| |#2|)) (-15 -2440 (|#1| |#1| |#1|)) (-15 -2695 ((-112) |#1| |#1|)) (-15 -1442 (|#1| |#1| |#1|)) (-15 -1442 (|#1| |#1| |#2|)) (-15 -1442 (|#1| |#2| |#1|)) (-15 -3854 (|#1| (-621 |#2|))) (-15 -4000 ((-747) |#2| |#1|)) (-15 -4000 ((-747) (-1 (-112) |#2|) |#1|))) (-418 |#2|) (-1067)) (T -417))
-((-3614 (*1 *2) (-12 (-4 *4 (-1067)) (-5 *2 (-747)) (-5 *1 (-417 *3 *4)) (-4 *3 (-418 *4)))))
-(-10 -8 (-15 -3614 ((-747))) (-15 -3493 (|#1| (-892))) (-15 -1881 ((-892) |#1|)) (-15 -3239 (|#1|)) (-15 -2863 (|#2| |#1|)) (-15 -3575 (|#2| |#1|)) (-15 -2664 (|#1|)) (-15 -1417 (|#1| |#1|)) (-15 -3916 ((-747) |#1|)) (-15 -2389 ((-112) |#1| |#1|)) (-15 -3846 ((-834) |#1|)) (-15 -2369 ((-112) |#1| |#1|)) (-15 -4120 (|#1|)) (-15 -4120 (|#1| (-621 |#2|))) (-15 -2787 (|#1|)) (-15 -2787 (|#1| (-621 |#2|))) (-15 -3655 (|#1| |#1| |#1|)) (-15 -1334 (|#1| |#1| |#1|)) (-15 -1334 (|#1| |#1| |#2|)) (-15 -2440 (|#1| |#1| |#1|)) (-15 -2695 ((-112) |#1| |#1|)) (-15 -1442 (|#1| |#1| |#1|)) (-15 -1442 (|#1| |#1| |#2|)) (-15 -1442 (|#1| |#2| |#1|)) (-15 -3854 (|#1| (-621 |#2|))) (-15 -4000 ((-747) |#2| |#1|)) (-15 -4000 ((-747) (-1 (-112) |#2|) |#1|)))
-((-3834 (((-112) $ $) 19)) (-2664 (($) 67 (|has| |#1| (-361)))) (-1442 (($ |#1| $) 82) (($ $ |#1|) 81) (($ $ $) 80)) (-2440 (($ $ $) 78)) (-2695 (((-112) $ $) 79)) (-1584 (((-112) $ (-747)) 8)) (-3614 (((-747)) 61 (|has| |#1| (-361)))) (-2787 (($ (-621 |#1|)) 74) (($) 73)) (-1717 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4337)))) (-1682 (($) 7 T CONST)) (-3676 (($ $) 58 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2129 (($ |#1| $) 47 (|has| $ (-6 -4337))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4337)))) (-3812 (($ |#1| $) 57 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4337)))) (-3239 (($) 64 (|has| |#1| (-361)))) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-2369 (((-112) $ $) 70)) (-3194 (((-112) $ (-747)) 9)) (-2863 ((|#1| $) 65 (|has| |#1| (-823)))) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-3575 ((|#1| $) 66 (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1881 (((-892) $) 63 (|has| |#1| (-361)))) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22)) (-3655 (($ $ $) 75)) (-3504 ((|#1| $) 39)) (-2751 (($ |#1| $) 40)) (-3493 (($ (-892)) 62 (|has| |#1| (-361)))) (-3990 (((-1087) $) 21)) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3325 ((|#1| $) 41)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-1334 (($ $ |#1|) 77) (($ $ $) 76)) (-2898 (($) 49) (($ (-621 |#1|)) 48)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-2845 (((-525) $) 59 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 50)) (-1417 (($ $) 68 (|has| |#1| (-361)))) (-3846 (((-834) $) 18)) (-3916 (((-747) $) 69)) (-4120 (($ (-621 |#1|)) 72) (($) 71)) (-3624 (($ (-621 |#1|)) 42)) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20)) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-418 |#1|) (-138) (-1067)) (T -418))
-((-3916 (*1 *2 *1) (-12 (-4 *1 (-418 *3)) (-4 *3 (-1067)) (-5 *2 (-747)))) (-1417 (*1 *1 *1) (-12 (-4 *1 (-418 *2)) (-4 *2 (-1067)) (-4 *2 (-361)))) (-2664 (*1 *1) (-12 (-4 *1 (-418 *2)) (-4 *2 (-361)) (-4 *2 (-1067)))) (-3575 (*1 *2 *1) (-12 (-4 *1 (-418 *2)) (-4 *2 (-1067)) (-4 *2 (-823)))) (-2863 (*1 *2 *1) (-12 (-4 *1 (-418 *2)) (-4 *2 (-1067)) (-4 *2 (-823)))))
-(-13 (-223 |t#1|) (-1065 |t#1|) (-10 -8 (-6 -4337) (-15 -3916 ((-747) $)) (IF (|has| |t#1| (-361)) (PROGN (-6 (-361)) (-15 -1417 ($ $)) (-15 -2664 ($))) |%noBranch|) (IF (|has| |t#1| (-823)) (PROGN (-15 -3575 (|t#1| $)) (-15 -2863 (|t#1| $))) |%noBranch|)))
-(((-34) . T) ((-106 |#1|) . T) ((-101) . T) ((-593 (-834)) . T) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-223 |#1|) . T) ((-229 |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-361) |has| |#1| (-361)) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-1065 |#1|) . T) ((-1067) . T) ((-1180) . T))
-((-2875 (((-567 |#2|) |#2| (-1143)) 36)) (-4176 (((-567 |#2|) |#2| (-1143)) 20)) (-4294 ((|#2| |#2| (-1143)) 25)))
-(((-419 |#1| |#2|) (-10 -7 (-15 -4176 ((-567 |#2|) |#2| (-1143))) (-15 -2875 ((-567 |#2|) |#2| (-1143))) (-15 -4294 (|#2| |#2| (-1143)))) (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))) (-13 (-1165) (-29 |#1|))) (T -419))
-((-4294 (*1 *2 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-419 *4 *2)) (-4 *2 (-13 (-1165) (-29 *4))))) (-2875 (*1 *2 *3 *4) (-12 (-5 *4 (-1143)) (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-567 *3)) (-5 *1 (-419 *5 *3)) (-4 *3 (-13 (-1165) (-29 *5))))) (-4176 (*1 *2 *3 *4) (-12 (-5 *4 (-1143)) (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-567 *3)) (-5 *1 (-419 *5 *3)) (-4 *3 (-13 (-1165) (-29 *5))))))
-(-10 -7 (-15 -4176 ((-567 |#2|) |#2| (-1143))) (-15 -2875 ((-567 |#2|) |#2| (-1143))) (-15 -4294 (|#2| |#2| (-1143))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2114 (((-3 $ "failed") $) NIL)) (-2675 (((-112) $) NIL)) (-1954 (($ |#2| |#1|) 35)) (-2091 (($ |#2| |#1|) 33)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-324 |#2|)) 25)) (-2082 (((-747)) NIL)) (-3276 (($) 10 T CONST)) (-3287 (($) 16 T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) 34)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 36) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-420 |#1| |#2|) (-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4324)) (IF (|has| |#1| (-6 -4324)) (-6 -4324) |%noBranch|) |%noBranch|) (-15 -3846 ($ |#1|)) (-15 -3846 ($ (-324 |#2|))) (-15 -1954 ($ |#2| |#1|)) (-15 -2091 ($ |#2| |#1|)))) (-13 (-170) (-38 (-400 (-549)))) (-13 (-823) (-21))) (T -420))
-((-3846 (*1 *1 *2) (-12 (-5 *1 (-420 *2 *3)) (-4 *2 (-13 (-170) (-38 (-400 (-549))))) (-4 *3 (-13 (-823) (-21))))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-324 *4)) (-4 *4 (-13 (-823) (-21))) (-5 *1 (-420 *3 *4)) (-4 *3 (-13 (-170) (-38 (-400 (-549))))))) (-1954 (*1 *1 *2 *3) (-12 (-5 *1 (-420 *3 *2)) (-4 *3 (-13 (-170) (-38 (-400 (-549))))) (-4 *2 (-13 (-823) (-21))))) (-2091 (*1 *1 *2 *3) (-12 (-5 *1 (-420 *3 *2)) (-4 *3 (-13 (-170) (-38 (-400 (-549))))) (-4 *2 (-13 (-823) (-21))))))
-(-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4324)) (IF (|has| |#1| (-6 -4324)) (-6 -4324) |%noBranch|) |%noBranch|) (-15 -3846 ($ |#1|)) (-15 -3846 ($ (-324 |#2|))) (-15 -1954 ($ |#2| |#1|)) (-15 -2091 ($ |#2| |#1|))))
-((-3893 (((-3 |#2| (-621 |#2|)) |#2| (-1143)) 109)))
-(((-421 |#1| |#2|) (-10 -7 (-15 -3893 ((-3 |#2| (-621 |#2|)) |#2| (-1143)))) (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))) (-13 (-1165) (-930) (-29 |#1|))) (T -421))
-((-3893 (*1 *2 *3 *4) (-12 (-5 *4 (-1143)) (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 *3 (-621 *3))) (-5 *1 (-421 *5 *3)) (-4 *3 (-13 (-1165) (-930) (-29 *5))))))
-(-10 -7 (-15 -3893 ((-3 |#2| (-621 |#2|)) |#2| (-1143))))
-((-2272 (((-621 (-1143)) $) 72)) (-2084 (((-400 (-1139 $)) $ (-592 $)) 273)) (-3015 (($ $ (-287 $)) NIL) (($ $ (-621 (-287 $))) NIL) (($ $ (-621 (-592 $)) (-621 $)) 237)) (-2714 (((-3 (-592 $) "failed") $) NIL) (((-3 (-1143) "failed") $) 75) (((-3 (-549) "failed") $) NIL) (((-3 |#2| "failed") $) 233) (((-3 (-400 (-923 |#2|)) "failed") $) 324) (((-3 (-923 |#2|) "failed") $) 235) (((-3 (-400 (-549)) "failed") $) NIL)) (-2659 (((-592 $) $) NIL) (((-1143) $) 30) (((-549) $) NIL) ((|#2| $) 231) (((-400 (-923 |#2|)) $) 305) (((-923 |#2|) $) 232) (((-400 (-549)) $) NIL)) (-2834 (((-114) (-114)) 47)) (-1726 (($ $) 87)) (-2634 (((-3 (-592 $) "failed") $) 228)) (-2071 (((-621 (-592 $)) $) 229)) (-4266 (((-3 (-621 $) "failed") $) 247)) (-1671 (((-3 (-2 (|:| |val| $) (|:| -3731 (-549))) "failed") $) 254)) (-2533 (((-3 (-621 $) "failed") $) 245)) (-2761 (((-3 (-2 (|:| -1570 (-549)) (|:| |var| (-592 $))) "failed") $) 264)) (-1503 (((-3 (-2 (|:| |var| (-592 $)) (|:| -3731 (-549))) "failed") $) 251) (((-3 (-2 (|:| |var| (-592 $)) (|:| -3731 (-549))) "failed") $ (-114)) 217) (((-3 (-2 (|:| |var| (-592 $)) (|:| -3731 (-549))) "failed") $ (-1143)) 219)) (-2004 (((-112) $) 19)) (-2016 ((|#2| $) 21)) (-2686 (($ $ (-592 $) $) NIL) (($ $ (-621 (-592 $)) (-621 $)) 236) (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-621 (-1143)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-1143)) (-621 (-1 $ (-621 $)))) 96) (($ $ (-1143) (-1 $ (-621 $))) NIL) (($ $ (-1143) (-1 $ $)) NIL) (($ $ (-621 (-114)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-114) (-1 $ (-621 $))) NIL) (($ $ (-114) (-1 $ $)) NIL) (($ $ (-1143)) 57) (($ $ (-621 (-1143))) 240) (($ $) 241) (($ $ (-114) $ (-1143)) 60) (($ $ (-621 (-114)) (-621 $) (-1143)) 67) (($ $ (-621 (-1143)) (-621 (-747)) (-621 (-1 $ $))) 107) (($ $ (-621 (-1143)) (-621 (-747)) (-621 (-1 $ (-621 $)))) 242) (($ $ (-1143) (-747) (-1 $ (-621 $))) 94) (($ $ (-1143) (-747) (-1 $ $)) 93)) (-3341 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-621 $)) 106)) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143)) 238)) (-3939 (($ $) 284)) (-2845 (((-863 (-549)) $) 257) (((-863 (-372)) $) 261) (($ (-411 $)) 320) (((-525) $) NIL)) (-3846 (((-834) $) 239) (($ (-592 $)) 84) (($ (-1143)) 26) (($ |#2|) NIL) (($ (-1092 |#2| (-592 $))) NIL) (($ (-400 |#2|)) 289) (($ (-923 (-400 |#2|))) 329) (($ (-400 (-923 (-400 |#2|)))) 301) (($ (-400 (-923 |#2|))) 295) (($ $) NIL) (($ (-923 |#2|)) 185) (($ (-400 (-549))) 334) (($ (-549)) NIL)) (-2082 (((-747)) 79)) (-4285 (((-112) (-114)) 41)) (-1789 (($ (-1143) $) 33) (($ (-1143) $ $) 34) (($ (-1143) $ $ $) 35) (($ (-1143) $ $ $ $) 36) (($ (-1143) (-621 $)) 39)) (* (($ (-400 (-549)) $) NIL) (($ $ (-400 (-549))) NIL) (($ |#2| $) 266) (($ $ |#2|) NIL) (($ $ $) NIL) (($ (-549) $) NIL) (($ (-747) $) NIL) (($ (-892) $) NIL)))
-(((-422 |#1| |#2|) (-10 -8 (-15 * (|#1| (-892) |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2082 ((-747))) (-15 -3846 (|#1| (-549))) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -2845 ((-525) |#1|)) (-15 -2659 ((-923 |#2|) |#1|)) (-15 -2714 ((-3 (-923 |#2|) "failed") |#1|)) (-15 -3846 (|#1| (-923 |#2|))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3846 (|#1| |#1|)) (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 -2659 ((-400 (-923 |#2|)) |#1|)) (-15 -2714 ((-3 (-400 (-923 |#2|)) "failed") |#1|)) (-15 -3846 (|#1| (-400 (-923 |#2|)))) (-15 -2084 ((-400 (-1139 |#1|)) |#1| (-592 |#1|))) (-15 -3846 (|#1| (-400 (-923 (-400 |#2|))))) (-15 -3846 (|#1| (-923 (-400 |#2|)))) (-15 -3846 (|#1| (-400 |#2|))) (-15 -3939 (|#1| |#1|)) (-15 -2845 (|#1| (-411 |#1|))) (-15 -2686 (|#1| |#1| (-1143) (-747) (-1 |#1| |#1|))) (-15 -2686 (|#1| |#1| (-1143) (-747) (-1 |#1| (-621 |#1|)))) (-15 -2686 (|#1| |#1| (-621 (-1143)) (-621 (-747)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2686 (|#1| |#1| (-621 (-1143)) (-621 (-747)) (-621 (-1 |#1| |#1|)))) (-15 -1671 ((-3 (-2 (|:| |val| |#1|) (|:| -3731 (-549))) "failed") |#1|)) (-15 -1503 ((-3 (-2 (|:| |var| (-592 |#1|)) (|:| -3731 (-549))) "failed") |#1| (-1143))) (-15 -1503 ((-3 (-2 (|:| |var| (-592 |#1|)) (|:| -3731 (-549))) "failed") |#1| (-114))) (-15 -1726 (|#1| |#1|)) (-15 -3846 (|#1| (-1092 |#2| (-592 |#1|)))) (-15 -2761 ((-3 (-2 (|:| -1570 (-549)) (|:| |var| (-592 |#1|))) "failed") |#1|)) (-15 -2533 ((-3 (-621 |#1|) "failed") |#1|)) (-15 -1503 ((-3 (-2 (|:| |var| (-592 |#1|)) (|:| -3731 (-549))) "failed") |#1|)) (-15 -4266 ((-3 (-621 |#1|) "failed") |#1|)) (-15 -2686 (|#1| |#1| (-621 (-114)) (-621 |#1|) (-1143))) (-15 -2686 (|#1| |#1| (-114) |#1| (-1143))) (-15 -2686 (|#1| |#1|)) (-15 -2686 (|#1| |#1| (-621 (-1143)))) (-15 -2686 (|#1| |#1| (-1143))) (-15 -1789 (|#1| (-1143) (-621 |#1|))) (-15 -1789 (|#1| (-1143) |#1| |#1| |#1| |#1|)) (-15 -1789 (|#1| (-1143) |#1| |#1| |#1|)) (-15 -1789 (|#1| (-1143) |#1| |#1|)) (-15 -1789 (|#1| (-1143) |#1|)) (-15 -2272 ((-621 (-1143)) |#1|)) (-15 -2016 (|#2| |#1|)) (-15 -2004 ((-112) |#1|)) (-15 -2659 (|#2| |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -3846 (|#1| |#2|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -2845 ((-863 (-372)) |#1|)) (-15 -2845 ((-863 (-549)) |#1|)) (-15 -2659 ((-1143) |#1|)) (-15 -2714 ((-3 (-1143) "failed") |#1|)) (-15 -3846 (|#1| (-1143))) (-15 -2686 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -2686 (|#1| |#1| (-114) (-1 |#1| (-621 |#1|)))) (-15 -2686 (|#1| |#1| (-621 (-114)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2686 (|#1| |#1| (-621 (-114)) (-621 (-1 |#1| |#1|)))) (-15 -2686 (|#1| |#1| (-1143) (-1 |#1| |#1|))) (-15 -2686 (|#1| |#1| (-1143) (-1 |#1| (-621 |#1|)))) (-15 -2686 (|#1| |#1| (-621 (-1143)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2686 (|#1| |#1| (-621 (-1143)) (-621 (-1 |#1| |#1|)))) (-15 -4285 ((-112) (-114))) (-15 -2834 ((-114) (-114))) (-15 -2071 ((-621 (-592 |#1|)) |#1|)) (-15 -2634 ((-3 (-592 |#1|) "failed") |#1|)) (-15 -3015 (|#1| |#1| (-621 (-592 |#1|)) (-621 |#1|))) (-15 -3015 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -3015 (|#1| |#1| (-287 |#1|))) (-15 -3341 (|#1| (-114) (-621 |#1|))) (-15 -3341 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -3341 (|#1| (-114) |#1| |#1| |#1|)) (-15 -3341 (|#1| (-114) |#1| |#1|)) (-15 -3341 (|#1| (-114) |#1|)) (-15 -2686 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2686 (|#1| |#1| |#1| |#1|)) (-15 -2686 (|#1| |#1| (-287 |#1|))) (-15 -2686 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -2686 (|#1| |#1| (-621 (-592 |#1|)) (-621 |#1|))) (-15 -2686 (|#1| |#1| (-592 |#1|) |#1|)) (-15 -2659 ((-592 |#1|) |#1|)) (-15 -2714 ((-3 (-592 |#1|) "failed") |#1|)) (-15 -3846 (|#1| (-592 |#1|))) (-15 -3846 ((-834) |#1|))) (-423 |#2|) (-823)) (T -422))
-((-2834 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *4 (-823)) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-4285 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-422 *4 *5)) (-4 *4 (-423 *5)))) (-2082 (*1 *2) (-12 (-4 *4 (-823)) (-5 *2 (-747)) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))))
-(-10 -8 (-15 * (|#1| (-892) |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2082 ((-747))) (-15 -3846 (|#1| (-549))) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -2845 ((-525) |#1|)) (-15 -2659 ((-923 |#2|) |#1|)) (-15 -2714 ((-3 (-923 |#2|) "failed") |#1|)) (-15 -3846 (|#1| (-923 |#2|))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3846 (|#1| |#1|)) (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 -2659 ((-400 (-923 |#2|)) |#1|)) (-15 -2714 ((-3 (-400 (-923 |#2|)) "failed") |#1|)) (-15 -3846 (|#1| (-400 (-923 |#2|)))) (-15 -2084 ((-400 (-1139 |#1|)) |#1| (-592 |#1|))) (-15 -3846 (|#1| (-400 (-923 (-400 |#2|))))) (-15 -3846 (|#1| (-923 (-400 |#2|)))) (-15 -3846 (|#1| (-400 |#2|))) (-15 -3939 (|#1| |#1|)) (-15 -2845 (|#1| (-411 |#1|))) (-15 -2686 (|#1| |#1| (-1143) (-747) (-1 |#1| |#1|))) (-15 -2686 (|#1| |#1| (-1143) (-747) (-1 |#1| (-621 |#1|)))) (-15 -2686 (|#1| |#1| (-621 (-1143)) (-621 (-747)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2686 (|#1| |#1| (-621 (-1143)) (-621 (-747)) (-621 (-1 |#1| |#1|)))) (-15 -1671 ((-3 (-2 (|:| |val| |#1|) (|:| -3731 (-549))) "failed") |#1|)) (-15 -1503 ((-3 (-2 (|:| |var| (-592 |#1|)) (|:| -3731 (-549))) "failed") |#1| (-1143))) (-15 -1503 ((-3 (-2 (|:| |var| (-592 |#1|)) (|:| -3731 (-549))) "failed") |#1| (-114))) (-15 -1726 (|#1| |#1|)) (-15 -3846 (|#1| (-1092 |#2| (-592 |#1|)))) (-15 -2761 ((-3 (-2 (|:| -1570 (-549)) (|:| |var| (-592 |#1|))) "failed") |#1|)) (-15 -2533 ((-3 (-621 |#1|) "failed") |#1|)) (-15 -1503 ((-3 (-2 (|:| |var| (-592 |#1|)) (|:| -3731 (-549))) "failed") |#1|)) (-15 -4266 ((-3 (-621 |#1|) "failed") |#1|)) (-15 -2686 (|#1| |#1| (-621 (-114)) (-621 |#1|) (-1143))) (-15 -2686 (|#1| |#1| (-114) |#1| (-1143))) (-15 -2686 (|#1| |#1|)) (-15 -2686 (|#1| |#1| (-621 (-1143)))) (-15 -2686 (|#1| |#1| (-1143))) (-15 -1789 (|#1| (-1143) (-621 |#1|))) (-15 -1789 (|#1| (-1143) |#1| |#1| |#1| |#1|)) (-15 -1789 (|#1| (-1143) |#1| |#1| |#1|)) (-15 -1789 (|#1| (-1143) |#1| |#1|)) (-15 -1789 (|#1| (-1143) |#1|)) (-15 -2272 ((-621 (-1143)) |#1|)) (-15 -2016 (|#2| |#1|)) (-15 -2004 ((-112) |#1|)) (-15 -2659 (|#2| |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -3846 (|#1| |#2|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -2845 ((-863 (-372)) |#1|)) (-15 -2845 ((-863 (-549)) |#1|)) (-15 -2659 ((-1143) |#1|)) (-15 -2714 ((-3 (-1143) "failed") |#1|)) (-15 -3846 (|#1| (-1143))) (-15 -2686 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -2686 (|#1| |#1| (-114) (-1 |#1| (-621 |#1|)))) (-15 -2686 (|#1| |#1| (-621 (-114)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2686 (|#1| |#1| (-621 (-114)) (-621 (-1 |#1| |#1|)))) (-15 -2686 (|#1| |#1| (-1143) (-1 |#1| |#1|))) (-15 -2686 (|#1| |#1| (-1143) (-1 |#1| (-621 |#1|)))) (-15 -2686 (|#1| |#1| (-621 (-1143)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2686 (|#1| |#1| (-621 (-1143)) (-621 (-1 |#1| |#1|)))) (-15 -4285 ((-112) (-114))) (-15 -2834 ((-114) (-114))) (-15 -2071 ((-621 (-592 |#1|)) |#1|)) (-15 -2634 ((-3 (-592 |#1|) "failed") |#1|)) (-15 -3015 (|#1| |#1| (-621 (-592 |#1|)) (-621 |#1|))) (-15 -3015 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -3015 (|#1| |#1| (-287 |#1|))) (-15 -3341 (|#1| (-114) (-621 |#1|))) (-15 -3341 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -3341 (|#1| (-114) |#1| |#1| |#1|)) (-15 -3341 (|#1| (-114) |#1| |#1|)) (-15 -3341 (|#1| (-114) |#1|)) (-15 -2686 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2686 (|#1| |#1| |#1| |#1|)) (-15 -2686 (|#1| |#1| (-287 |#1|))) (-15 -2686 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -2686 (|#1| |#1| (-621 (-592 |#1|)) (-621 |#1|))) (-15 -2686 (|#1| |#1| (-592 |#1|) |#1|)) (-15 -2659 ((-592 |#1|) |#1|)) (-15 -2714 ((-3 (-592 |#1|) "failed") |#1|)) (-15 -3846 (|#1| (-592 |#1|))) (-15 -3846 ((-834) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 113 (|has| |#1| (-25)))) (-2272 (((-621 (-1143)) $) 200)) (-2084 (((-400 (-1139 $)) $ (-592 $)) 168 (|has| |#1| (-541)))) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 140 (|has| |#1| (-541)))) (-2258 (($ $) 141 (|has| |#1| (-541)))) (-2799 (((-112) $) 143 (|has| |#1| (-541)))) (-1981 (((-621 (-592 $)) $) 44)) (-2001 (((-3 $ "failed") $ $) 115 (|has| |#1| (-21)))) (-3015 (($ $ (-287 $)) 56) (($ $ (-621 (-287 $))) 55) (($ $ (-621 (-592 $)) (-621 $)) 54)) (-3979 (($ $) 160 (|has| |#1| (-541)))) (-2402 (((-411 $) $) 161 (|has| |#1| (-541)))) (-3866 (((-112) $ $) 151 (|has| |#1| (-541)))) (-1682 (($) 101 (-1536 (|has| |#1| (-1079)) (|has| |#1| (-25))) CONST)) (-2714 (((-3 (-592 $) "failed") $) 69) (((-3 (-1143) "failed") $) 213) (((-3 (-549) "failed") $) 206 (|has| |#1| (-1009 (-549)))) (((-3 |#1| "failed") $) 204) (((-3 (-400 (-923 |#1|)) "failed") $) 166 (|has| |#1| (-541))) (((-3 (-923 |#1|) "failed") $) 120 (|has| |#1| (-1018))) (((-3 (-400 (-549)) "failed") $) 95 (-1536 (-12 (|has| |#1| (-1009 (-549))) (|has| |#1| (-541))) (|has| |#1| (-1009 (-400 (-549))))))) (-2659 (((-592 $) $) 68) (((-1143) $) 212) (((-549) $) 207 (|has| |#1| (-1009 (-549)))) ((|#1| $) 203) (((-400 (-923 |#1|)) $) 165 (|has| |#1| (-541))) (((-923 |#1|) $) 119 (|has| |#1| (-1018))) (((-400 (-549)) $) 94 (-1536 (-12 (|has| |#1| (-1009 (-549))) (|has| |#1| (-541))) (|has| |#1| (-1009 (-400 (-549))))))) (-2095 (($ $ $) 155 (|has| |#1| (-541)))) (-3879 (((-665 (-549)) (-665 $)) 134 (-1821 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 133 (-1821 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) 132 (|has| |#1| (-1018))) (((-665 |#1|) (-665 $)) 131 (|has| |#1| (-1018)))) (-2114 (((-3 $ "failed") $) 103 (|has| |#1| (-1079)))) (-2067 (($ $ $) 154 (|has| |#1| (-541)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 149 (|has| |#1| (-541)))) (-1420 (((-112) $) 162 (|has| |#1| (-541)))) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 209 (|has| |#1| (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 208 (|has| |#1| (-857 (-372))))) (-3225 (($ $) 51) (($ (-621 $)) 50)) (-2162 (((-621 (-114)) $) 43)) (-2834 (((-114) (-114)) 42)) (-2675 (((-112) $) 102 (|has| |#1| (-1079)))) (-3559 (((-112) $) 22 (|has| $ (-1009 (-549))))) (-1726 (($ $) 183 (|has| |#1| (-1018)))) (-1394 (((-1092 |#1| (-592 $)) $) 184 (|has| |#1| (-1018)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 158 (|has| |#1| (-541)))) (-1549 (((-1139 $) (-592 $)) 25 (|has| $ (-1018)))) (-2863 (($ $ $) 13)) (-3575 (($ $ $) 14)) (-2797 (($ (-1 $ $) (-592 $)) 36)) (-2634 (((-3 (-592 $) "failed") $) 46)) (-3697 (($ (-621 $)) 147 (|has| |#1| (-541))) (($ $ $) 146 (|has| |#1| (-541)))) (-3851 (((-1125) $) 9)) (-2071 (((-621 (-592 $)) $) 45)) (-1476 (($ (-114) $) 38) (($ (-114) (-621 $)) 37)) (-4266 (((-3 (-621 $) "failed") $) 189 (|has| |#1| (-1079)))) (-1671 (((-3 (-2 (|:| |val| $) (|:| -3731 (-549))) "failed") $) 180 (|has| |#1| (-1018)))) (-2533 (((-3 (-621 $) "failed") $) 187 (|has| |#1| (-25)))) (-2761 (((-3 (-2 (|:| -1570 (-549)) (|:| |var| (-592 $))) "failed") $) 186 (|has| |#1| (-25)))) (-1503 (((-3 (-2 (|:| |var| (-592 $)) (|:| -3731 (-549))) "failed") $) 188 (|has| |#1| (-1079))) (((-3 (-2 (|:| |var| (-592 $)) (|:| -3731 (-549))) "failed") $ (-114)) 182 (|has| |#1| (-1018))) (((-3 (-2 (|:| |var| (-592 $)) (|:| -3731 (-549))) "failed") $ (-1143)) 181 (|has| |#1| (-1018)))) (-3421 (((-112) $ (-114)) 40) (((-112) $ (-1143)) 39)) (-1992 (($ $) 105 (-1536 (|has| |#1| (-465)) (|has| |#1| (-541))))) (-4036 (((-747) $) 47)) (-3990 (((-1087) $) 10)) (-2004 (((-112) $) 202)) (-2016 ((|#1| $) 201)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 148 (|has| |#1| (-541)))) (-3727 (($ (-621 $)) 145 (|has| |#1| (-541))) (($ $ $) 144 (|has| |#1| (-541)))) (-2979 (((-112) $ $) 35) (((-112) $ (-1143)) 34)) (-2121 (((-411 $) $) 159 (|has| |#1| (-541)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 157 (|has| |#1| (-541))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 156 (|has| |#1| (-541)))) (-2042 (((-3 $ "failed") $ $) 139 (|has| |#1| (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 150 (|has| |#1| (-541)))) (-3450 (((-112) $) 23 (|has| $ (-1009 (-549))))) (-2686 (($ $ (-592 $) $) 67) (($ $ (-621 (-592 $)) (-621 $)) 66) (($ $ (-621 (-287 $))) 65) (($ $ (-287 $)) 64) (($ $ $ $) 63) (($ $ (-621 $) (-621 $)) 62) (($ $ (-621 (-1143)) (-621 (-1 $ $))) 33) (($ $ (-621 (-1143)) (-621 (-1 $ (-621 $)))) 32) (($ $ (-1143) (-1 $ (-621 $))) 31) (($ $ (-1143) (-1 $ $)) 30) (($ $ (-621 (-114)) (-621 (-1 $ $))) 29) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) 28) (($ $ (-114) (-1 $ (-621 $))) 27) (($ $ (-114) (-1 $ $)) 26) (($ $ (-1143)) 194 (|has| |#1| (-594 (-525)))) (($ $ (-621 (-1143))) 193 (|has| |#1| (-594 (-525)))) (($ $) 192 (|has| |#1| (-594 (-525)))) (($ $ (-114) $ (-1143)) 191 (|has| |#1| (-594 (-525)))) (($ $ (-621 (-114)) (-621 $) (-1143)) 190 (|has| |#1| (-594 (-525)))) (($ $ (-621 (-1143)) (-621 (-747)) (-621 (-1 $ $))) 179 (|has| |#1| (-1018))) (($ $ (-621 (-1143)) (-621 (-747)) (-621 (-1 $ (-621 $)))) 178 (|has| |#1| (-1018))) (($ $ (-1143) (-747) (-1 $ (-621 $))) 177 (|has| |#1| (-1018))) (($ $ (-1143) (-747) (-1 $ $)) 176 (|has| |#1| (-1018)))) (-3684 (((-747) $) 152 (|has| |#1| (-541)))) (-3341 (($ (-114) $) 61) (($ (-114) $ $) 60) (($ (-114) $ $ $) 59) (($ (-114) $ $ $ $) 58) (($ (-114) (-621 $)) 57)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 153 (|has| |#1| (-541)))) (-3433 (($ $) 49) (($ $ $) 48)) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) 125 (|has| |#1| (-1018))) (($ $ (-1143) (-747)) 124 (|has| |#1| (-1018))) (($ $ (-621 (-1143))) 123 (|has| |#1| (-1018))) (($ $ (-1143)) 122 (|has| |#1| (-1018)))) (-3939 (($ $) 173 (|has| |#1| (-541)))) (-1403 (((-1092 |#1| (-592 $)) $) 174 (|has| |#1| (-541)))) (-2815 (($ $) 24 (|has| $ (-1018)))) (-2845 (((-863 (-549)) $) 211 (|has| |#1| (-594 (-863 (-549))))) (((-863 (-372)) $) 210 (|has| |#1| (-594 (-863 (-372))))) (($ (-411 $)) 175 (|has| |#1| (-541))) (((-525) $) 97 (|has| |#1| (-594 (-525))))) (-1955 (($ $ $) 108 (|has| |#1| (-465)))) (-3293 (($ $ $) 109 (|has| |#1| (-465)))) (-3846 (((-834) $) 11) (($ (-592 $)) 70) (($ (-1143)) 214) (($ |#1|) 205) (($ (-1092 |#1| (-592 $))) 185 (|has| |#1| (-1018))) (($ (-400 |#1|)) 171 (|has| |#1| (-541))) (($ (-923 (-400 |#1|))) 170 (|has| |#1| (-541))) (($ (-400 (-923 (-400 |#1|)))) 169 (|has| |#1| (-541))) (($ (-400 (-923 |#1|))) 167 (|has| |#1| (-541))) (($ $) 138 (|has| |#1| (-541))) (($ (-923 |#1|)) 121 (|has| |#1| (-1018))) (($ (-400 (-549))) 96 (-1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-1009 (-549))) (|has| |#1| (-541))) (|has| |#1| (-1009 (-400 (-549)))))) (($ (-549)) 93 (-1536 (|has| |#1| (-1018)) (|has| |#1| (-1009 (-549)))))) (-2210 (((-3 $ "failed") $) 135 (|has| |#1| (-143)))) (-2082 (((-747)) 130 (|has| |#1| (-1018)))) (-4137 (($ $) 53) (($ (-621 $)) 52)) (-4285 (((-112) (-114)) 41)) (-1498 (((-112) $ $) 142 (|has| |#1| (-541)))) (-1789 (($ (-1143) $) 199) (($ (-1143) $ $) 198) (($ (-1143) $ $ $) 197) (($ (-1143) $ $ $ $) 196) (($ (-1143) (-621 $)) 195)) (-3276 (($) 112 (|has| |#1| (-25)) CONST)) (-3287 (($) 100 (|has| |#1| (-1079)) CONST)) (-1702 (($ $ (-621 (-1143)) (-621 (-747))) 129 (|has| |#1| (-1018))) (($ $ (-1143) (-747)) 128 (|has| |#1| (-1018))) (($ $ (-621 (-1143))) 127 (|has| |#1| (-1018))) (($ $ (-1143)) 126 (|has| |#1| (-1018)))) (-2448 (((-112) $ $) 16)) (-2425 (((-112) $ $) 17)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 15)) (-2412 (((-112) $ $) 18)) (-2513 (($ (-1092 |#1| (-592 $)) (-1092 |#1| (-592 $))) 172 (|has| |#1| (-541))) (($ $ $) 106 (-1536 (|has| |#1| (-465)) (|has| |#1| (-541))))) (-2500 (($ $ $) 117 (|has| |#1| (-21))) (($ $) 116 (|has| |#1| (-21)))) (-2486 (($ $ $) 110 (|has| |#1| (-25)))) (** (($ $ (-549)) 107 (-1536 (|has| |#1| (-465)) (|has| |#1| (-541)))) (($ $ (-747)) 104 (|has| |#1| (-1079))) (($ $ (-892)) 99 (|has| |#1| (-1079)))) (* (($ (-400 (-549)) $) 164 (|has| |#1| (-541))) (($ $ (-400 (-549))) 163 (|has| |#1| (-541))) (($ |#1| $) 137 (|has| |#1| (-170))) (($ $ |#1|) 136 (|has| |#1| (-170))) (($ (-549) $) 118 (|has| |#1| (-21))) (($ (-747) $) 114 (|has| |#1| (-25))) (($ (-892) $) 111 (|has| |#1| (-25))) (($ $ $) 98 (|has| |#1| (-1079)))))
+((-2619 (*1 *2) (-12 (-4 *3 (-170)) (-5 *2 (-1225 *1)) (-4 *1 (-410 *3)))) (-1981 (*1 *2 *1) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-1225 *3)))) (-1981 (*1 *2 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-410 *4)) (-4 *4 (-170)) (-5 *2 (-665 *4)))) (-3339 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-410 *2)) (-4 *2 (-170)))) (-2893 (*1 *2) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-1225 (-665 *3))))) (-3166 (*1 *2) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-621 (-923 *3))))) (-2397 (*1 *1 *2) (-12 (-5 *2 (-1225 *3)) (-4 *3 (-170)) (-4 *1 (-410 *3)))) (-2843 (*1 *2 *1) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-1225 *3)))) (-2843 (*1 *1 *2) (-12 (-5 *2 (-1225 *3)) (-4 *3 (-170)) (-4 *1 (-410 *3)))) (-1405 (*1 *2) (-12 (-4 *1 (-410 *2)) (-4 *2 (-170)))) (-2733 (*1 *2) (-12 (-4 *1 (-410 *2)) (-4 *2 (-170)))) (-2686 (*1 *2) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-665 *3)))) (-1657 (*1 *2) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-665 *3)))) (-3364 (*1 *2 *1) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-665 *3)))) (-1785 (*1 *2 *1) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-665 *3)))) (-4128 (*1 *2) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-4 *3 (-356)) (-5 *2 (-1138 (-923 *3))))) (-3781 (*1 *2) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-4 *3 (-356)) (-5 *2 (-1138 (-923 *3))))) (-3593 (*1 *1 *2 *1) (-12 (-5 *2 (-665 *3)) (-4 *1 (-410 *3)) (-4 *3 (-170)))))
+(-13 (-360 |t#1|) (-10 -8 (-15 -2619 ((-1225 $))) (-15 -1981 ((-1225 |t#1|) $)) (-15 -1981 ((-665 |t#1|) (-1225 $))) (-15 -3339 (|t#1| $ (-549))) (-15 -2893 ((-1225 (-665 |t#1|)))) (-15 -3166 ((-621 (-923 |t#1|)))) (-15 -2397 ($ (-1225 |t#1|))) (-15 -2843 ((-1225 |t#1|) $)) (-15 -2843 ($ (-1225 |t#1|))) (-15 -1405 (|t#1|)) (-15 -2733 (|t#1|)) (-15 -2686 ((-665 |t#1|))) (-15 -1657 ((-665 |t#1|))) (-15 -3364 ((-665 |t#1|) $)) (-15 -1785 ((-665 |t#1|) $)) (IF (|has| |t#1| (-356)) (PROGN (-15 -4128 ((-1138 (-923 |t#1|)))) (-15 -3781 ((-1138 (-923 |t#1|))))) |%noBranch|) (-15 -3593 ($ (-665 |t#1|) $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-360 |#1|) . T) ((-624 |#1|) . T) ((-694 |#1|) . T) ((-697) . T) ((-721 |#1|) . T) ((-738) . T) ((-1024 |#1|) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 42)) (-2398 (($ $) 57)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 146)) (-3044 (($ $) NIL)) (-2774 (((-112) $) 36)) (-1951 ((|#1| $) 13)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL (|has| |#1| (-1183)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-1183)))) (-2966 (($ |#1| (-549)) 31)) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 116)) (-2657 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 55)) (-2612 (((-3 $ "failed") $) 131)) (-1531 (((-3 (-400 (-549)) "failed") $) 63 (|has| |#1| (-534)))) (-3945 (((-112) $) 59 (|has| |#1| (-534)))) (-1390 (((-400 (-549)) $) 70 (|has| |#1| (-534)))) (-2299 (($ |#1| (-549)) 33)) (-1464 (((-112) $) 152 (|has| |#1| (-1183)))) (-2297 (((-112) $) 43)) (-1935 (((-747) $) 38)) (-3426 (((-3 "nil" "sqfr" "irred" "prime") $ (-549)) 137)) (-2941 ((|#1| $ (-549)) 136)) (-1902 (((-549) $ (-549)) 135)) (-3153 (($ |#1| (-549)) 30)) (-2795 (($ (-1 |#1| |#1|) $) 143)) (-2101 (($ |#1| (-621 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-549))))) 58)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-3441 (((-1124) $) NIL)) (-3533 (($ |#1| (-549)) 32)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-444)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) 147 (|has| |#1| (-444)))) (-1577 (($ |#1| (-549) (-3 "nil" "sqfr" "irred" "prime")) 29)) (-3390 (((-621 (-2 (|:| -2119 |#1|) (|:| -1714 (-549)))) $) 54)) (-1658 (((-621 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-549)))) $) 12)) (-2119 (((-411 $) $) NIL (|has| |#1| (-1183)))) (-2040 (((-3 $ "failed") $ $) 138)) (-1714 (((-549) $) 132)) (-1448 ((|#1| $) 56)) (-2684 (($ $ (-621 |#1|) (-621 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) 79 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1142)) (-621 |#1|)) 85 (|has| |#1| (-505 (-1142) |#1|))) (($ $ (-1142) |#1|) NIL (|has| |#1| (-505 (-1142) |#1|))) (($ $ (-1142) $) NIL (|has| |#1| (-505 (-1142) $))) (($ $ (-621 (-1142)) (-621 $)) 86 (|has| |#1| (-505 (-1142) $))) (($ $ (-621 (-287 $))) 82 (|has| |#1| (-302 $))) (($ $ (-287 $)) NIL (|has| |#1| (-302 $))) (($ $ $ $) NIL (|has| |#1| (-302 $))) (($ $ (-621 $) (-621 $)) NIL (|has| |#1| (-302 $)))) (-3339 (($ $ |#1|) 71 (|has| |#1| (-279 |#1| |#1|))) (($ $ $) 72 (|has| |#1| (-279 $ $)))) (-3455 (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) 142)) (-2843 (((-525) $) 27 (|has| |#1| (-594 (-525)))) (((-372) $) 92 (|has| |#1| (-993))) (((-219) $) 95 (|has| |#1| (-993)))) (-3845 (((-834) $) 114) (($ (-549)) 46) (($ $) NIL) (($ |#1|) 45) (($ (-400 (-549))) NIL (|has| |#1| (-1009 (-400 (-549)))))) (-2371 (((-747)) 48)) (-2441 (((-112) $ $) NIL)) (-3274 (($) 40 T CONST)) (-3286 (($) 39 T CONST)) (-1699 (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2387 (((-112) $ $) 96)) (-2498 (($ $) 128) (($ $ $) NIL)) (-2484 (($ $ $) 140)) (** (($ $ (-892)) NIL) (($ $ (-747)) 102)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 50) (($ $ $) 49) (($ |#1| $) 51) (($ $ |#1|) NIL)))
+(((-411 |#1|) (-13 (-541) (-225 |#1|) (-38 |#1|) (-331 |#1|) (-404 |#1|) (-10 -8 (-15 -1448 (|#1| $)) (-15 -1714 ((-549) $)) (-15 -2101 ($ |#1| (-621 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-549)))))) (-15 -1658 ((-621 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-549)))) $)) (-15 -3153 ($ |#1| (-549))) (-15 -3390 ((-621 (-2 (|:| -2119 |#1|) (|:| -1714 (-549)))) $)) (-15 -3533 ($ |#1| (-549))) (-15 -1902 ((-549) $ (-549))) (-15 -2941 (|#1| $ (-549))) (-15 -3426 ((-3 "nil" "sqfr" "irred" "prime") $ (-549))) (-15 -1935 ((-747) $)) (-15 -2299 ($ |#1| (-549))) (-15 -2966 ($ |#1| (-549))) (-15 -1577 ($ |#1| (-549) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -1951 (|#1| $)) (-15 -2398 ($ $)) (-15 -2795 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-444)) (-6 (-444)) |%noBranch|) (IF (|has| |#1| (-993)) (-6 (-993)) |%noBranch|) (IF (|has| |#1| (-1183)) (-6 (-1183)) |%noBranch|) (IF (|has| |#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (IF (|has| |#1| (-534)) (PROGN (-15 -3945 ((-112) $)) (-15 -1390 ((-400 (-549)) $)) (-15 -1531 ((-3 (-400 (-549)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-279 $ $)) (-6 (-279 $ $)) |%noBranch|) (IF (|has| |#1| (-302 $)) (-6 (-302 $)) |%noBranch|) (IF (|has| |#1| (-505 (-1142) $)) (-6 (-505 (-1142) $)) |%noBranch|))) (-541)) (T -411))
+((-2795 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-541)) (-5 *1 (-411 *3)))) (-1448 (*1 *2 *1) (-12 (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-1714 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-411 *3)) (-4 *3 (-541)))) (-2101 (*1 *1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2) (|:| |xpnt| (-549))))) (-4 *2 (-541)) (-5 *1 (-411 *2)))) (-1658 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3) (|:| |xpnt| (-549))))) (-5 *1 (-411 *3)) (-4 *3 (-541)))) (-3153 (*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-3390 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| -2119 *3) (|:| -1714 (-549))))) (-5 *1 (-411 *3)) (-4 *3 (-541)))) (-3533 (*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-1902 (*1 *2 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-411 *3)) (-4 *3 (-541)))) (-2941 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-3426 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-411 *4)) (-4 *4 (-541)))) (-1935 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-411 *3)) (-4 *3 (-541)))) (-2299 (*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-2966 (*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-1577 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-549)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-1951 (*1 *2 *1) (-12 (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-2398 (*1 *1 *1) (-12 (-5 *1 (-411 *2)) (-4 *2 (-541)))) (-3945 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-411 *3)) (-4 *3 (-534)) (-4 *3 (-541)))) (-1390 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-411 *3)) (-4 *3 (-534)) (-4 *3 (-541)))) (-1531 (*1 *2 *1) (|partial| -12 (-5 *2 (-400 (-549))) (-5 *1 (-411 *3)) (-4 *3 (-534)) (-4 *3 (-541)))))
+(-13 (-541) (-225 |#1|) (-38 |#1|) (-331 |#1|) (-404 |#1|) (-10 -8 (-15 -1448 (|#1| $)) (-15 -1714 ((-549) $)) (-15 -2101 ($ |#1| (-621 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-549)))))) (-15 -1658 ((-621 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-549)))) $)) (-15 -3153 ($ |#1| (-549))) (-15 -3390 ((-621 (-2 (|:| -2119 |#1|) (|:| -1714 (-549)))) $)) (-15 -3533 ($ |#1| (-549))) (-15 -1902 ((-549) $ (-549))) (-15 -2941 (|#1| $ (-549))) (-15 -3426 ((-3 "nil" "sqfr" "irred" "prime") $ (-549))) (-15 -1935 ((-747) $)) (-15 -2299 ($ |#1| (-549))) (-15 -2966 ($ |#1| (-549))) (-15 -1577 ($ |#1| (-549) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -1951 (|#1| $)) (-15 -2398 ($ $)) (-15 -2795 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-444)) (-6 (-444)) |%noBranch|) (IF (|has| |#1| (-993)) (-6 (-993)) |%noBranch|) (IF (|has| |#1| (-1183)) (-6 (-1183)) |%noBranch|) (IF (|has| |#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (IF (|has| |#1| (-534)) (PROGN (-15 -3945 ((-112) $)) (-15 -1390 ((-400 (-549)) $)) (-15 -1531 ((-3 (-400 (-549)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-279 $ $)) (-6 (-279 $ $)) |%noBranch|) (IF (|has| |#1| (-302 $)) (-6 (-302 $)) |%noBranch|) (IF (|has| |#1| (-505 (-1142) $)) (-6 (-505 (-1142) $)) |%noBranch|)))
+((-3033 (((-411 |#1|) (-411 |#1|) (-1 (-411 |#1|) |#1|)) 21)) (-3938 (((-411 |#1|) (-411 |#1|) (-411 |#1|)) 16)))
+(((-412 |#1|) (-10 -7 (-15 -3033 ((-411 |#1|) (-411 |#1|) (-1 (-411 |#1|) |#1|))) (-15 -3938 ((-411 |#1|) (-411 |#1|) (-411 |#1|)))) (-541)) (T -412))
+((-3938 (*1 *2 *2 *2) (-12 (-5 *2 (-411 *3)) (-4 *3 (-541)) (-5 *1 (-412 *3)))) (-3033 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-411 *4) *4)) (-4 *4 (-541)) (-5 *2 (-411 *4)) (-5 *1 (-412 *4)))))
+(-10 -7 (-15 -3033 ((-411 |#1|) (-411 |#1|) (-1 (-411 |#1|) |#1|))) (-15 -3938 ((-411 |#1|) (-411 |#1|) (-411 |#1|))))
+((-1454 ((|#2| |#2|) 166)) (-1826 (((-3 (|:| |%expansion| (-306 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1124)) (|:| |prob| (-1124))))) |#2| (-112)) 57)))
+(((-413 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1826 ((-3 (|:| |%expansion| (-306 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1124)) (|:| |prob| (-1124))))) |#2| (-112))) (-15 -1454 (|#2| |#2|))) (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-27) (-1164) (-423 |#1|)) (-1142) |#2|) (T -413))
+((-1454 (*1 *2 *2) (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-413 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1164) (-423 *3))) (-14 *4 (-1142)) (-14 *5 *2))) (-1826 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 (|:| |%expansion| (-306 *5 *3 *6 *7)) (|:| |%problem| (-2 (|:| |func| (-1124)) (|:| |prob| (-1124)))))) (-5 *1 (-413 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1164) (-423 *5))) (-14 *6 (-1142)) (-14 *7 *3))))
+(-10 -7 (-15 -1826 ((-3 (|:| |%expansion| (-306 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1124)) (|:| |prob| (-1124))))) |#2| (-112))) (-15 -1454 (|#2| |#2|)))
+((-2795 ((|#4| (-1 |#3| |#1|) |#2|) 11)))
+(((-414 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2795 (|#4| (-1 |#3| |#1|) |#2|))) (-13 (-1018) (-823)) (-423 |#1|) (-13 (-1018) (-823)) (-423 |#3|)) (T -414))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-13 (-1018) (-823))) (-4 *6 (-13 (-1018) (-823))) (-4 *2 (-423 *6)) (-5 *1 (-414 *5 *4 *6 *2)) (-4 *4 (-423 *5)))))
+(-10 -7 (-15 -2795 (|#4| (-1 |#3| |#1|) |#2|)))
+((-1454 ((|#2| |#2|) 90)) (-2100 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1124)) (|:| |prob| (-1124))))) |#2| (-112) (-1124)) 48)) (-4197 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1124)) (|:| |prob| (-1124))))) |#2| (-112) (-1124)) 154)))
+(((-415 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2100 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1124)) (|:| |prob| (-1124))))) |#2| (-112) (-1124))) (-15 -4197 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1124)) (|:| |prob| (-1124))))) |#2| (-112) (-1124))) (-15 -1454 (|#2| |#2|))) (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-27) (-1164) (-423 |#1|) (-10 -8 (-15 -3845 ($ |#3|)))) (-821) (-13 (-1203 |#2| |#3|) (-356) (-1164) (-10 -8 (-15 -3455 ($ $)) (-15 -3405 ($ $)))) (-954 |#4|) (-1142)) (T -415))
+((-1454 (*1 *2 *2) (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-4 *2 (-13 (-27) (-1164) (-423 *3) (-10 -8 (-15 -3845 ($ *4))))) (-4 *4 (-821)) (-4 *5 (-13 (-1203 *2 *4) (-356) (-1164) (-10 -8 (-15 -3455 ($ $)) (-15 -3405 ($ $))))) (-5 *1 (-415 *3 *2 *4 *5 *6 *7)) (-4 *6 (-954 *5)) (-14 *7 (-1142)))) (-4197 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-4 *3 (-13 (-27) (-1164) (-423 *6) (-10 -8 (-15 -3845 ($ *7))))) (-4 *7 (-821)) (-4 *8 (-13 (-1203 *3 *7) (-356) (-1164) (-10 -8 (-15 -3455 ($ $)) (-15 -3405 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1124)) (|:| |prob| (-1124)))))) (-5 *1 (-415 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1124)) (-4 *9 (-954 *8)) (-14 *10 (-1142)))) (-2100 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-4 *3 (-13 (-27) (-1164) (-423 *6) (-10 -8 (-15 -3845 ($ *7))))) (-4 *7 (-821)) (-4 *8 (-13 (-1203 *3 *7) (-356) (-1164) (-10 -8 (-15 -3455 ($ $)) (-15 -3405 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1124)) (|:| |prob| (-1124)))))) (-5 *1 (-415 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1124)) (-4 *9 (-954 *8)) (-14 *10 (-1142)))))
+(-10 -7 (-15 -2100 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1124)) (|:| |prob| (-1124))))) |#2| (-112) (-1124))) (-15 -4197 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1124)) (|:| |prob| (-1124))))) |#2| (-112) (-1124))) (-15 -1454 (|#2| |#2|)))
+((-2394 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 22)) (-2556 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 20)) (-2795 ((|#4| (-1 |#3| |#1|) |#2|) 17)))
+(((-416 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2795 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2556 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2394 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1066) (-418 |#1|) (-1066) (-418 |#3|)) (T -416))
+((-2394 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1066)) (-4 *5 (-1066)) (-4 *2 (-418 *5)) (-5 *1 (-416 *6 *4 *5 *2)) (-4 *4 (-418 *6)))) (-2556 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1066)) (-4 *2 (-1066)) (-5 *1 (-416 *5 *4 *2 *6)) (-4 *4 (-418 *5)) (-4 *6 (-418 *2)))) (-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *2 (-418 *6)) (-5 *1 (-416 *5 *4 *6 *2)) (-4 *4 (-418 *5)))))
+(-10 -7 (-15 -2795 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -2556 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2394 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
+((-2832 (($) 44)) (-1441 (($ |#2| $) NIL) (($ $ |#2|) NIL) (($ $ $) 40)) (-4029 (($ $ $) 39)) (-1341 (((-112) $ $) 28)) (-3614 (((-747)) 47)) (-2787 (($ (-621 |#2|)) 20) (($) NIL)) (-3237 (($) 53)) (-1513 (((-112) $ $) 13)) (-2861 ((|#2| $) 61)) (-3574 ((|#2| $) 59)) (-3309 (((-892) $) 55)) (-3869 (($ $ $) 35)) (-3494 (($ (-892)) 50)) (-4020 (($ $ |#2|) NIL) (($ $ $) 38)) (-3997 (((-747) (-1 (-112) |#2|) $) NIL) (((-747) |#2| $) 26)) (-3853 (($ (-621 |#2|)) 24)) (-2517 (($ $) 46)) (-3845 (((-834) $) 33)) (-3398 (((-747) $) 21)) (-4119 (($ (-621 |#2|)) 19) (($) NIL)) (-2387 (((-112) $ $) 16)))
+(((-417 |#1| |#2|) (-10 -8 (-15 -3614 ((-747))) (-15 -3494 (|#1| (-892))) (-15 -3309 ((-892) |#1|)) (-15 -3237 (|#1|)) (-15 -2861 (|#2| |#1|)) (-15 -3574 (|#2| |#1|)) (-15 -2832 (|#1|)) (-15 -2517 (|#1| |#1|)) (-15 -3398 ((-747) |#1|)) (-15 -2387 ((-112) |#1| |#1|)) (-15 -3845 ((-834) |#1|)) (-15 -1513 ((-112) |#1| |#1|)) (-15 -4119 (|#1|)) (-15 -4119 (|#1| (-621 |#2|))) (-15 -2787 (|#1|)) (-15 -2787 (|#1| (-621 |#2|))) (-15 -3869 (|#1| |#1| |#1|)) (-15 -4020 (|#1| |#1| |#1|)) (-15 -4020 (|#1| |#1| |#2|)) (-15 -4029 (|#1| |#1| |#1|)) (-15 -1341 ((-112) |#1| |#1|)) (-15 -1441 (|#1| |#1| |#1|)) (-15 -1441 (|#1| |#1| |#2|)) (-15 -1441 (|#1| |#2| |#1|)) (-15 -3853 (|#1| (-621 |#2|))) (-15 -3997 ((-747) |#2| |#1|)) (-15 -3997 ((-747) (-1 (-112) |#2|) |#1|))) (-418 |#2|) (-1066)) (T -417))
+((-3614 (*1 *2) (-12 (-4 *4 (-1066)) (-5 *2 (-747)) (-5 *1 (-417 *3 *4)) (-4 *3 (-418 *4)))))
+(-10 -8 (-15 -3614 ((-747))) (-15 -3494 (|#1| (-892))) (-15 -3309 ((-892) |#1|)) (-15 -3237 (|#1|)) (-15 -2861 (|#2| |#1|)) (-15 -3574 (|#2| |#1|)) (-15 -2832 (|#1|)) (-15 -2517 (|#1| |#1|)) (-15 -3398 ((-747) |#1|)) (-15 -2387 ((-112) |#1| |#1|)) (-15 -3845 ((-834) |#1|)) (-15 -1513 ((-112) |#1| |#1|)) (-15 -4119 (|#1|)) (-15 -4119 (|#1| (-621 |#2|))) (-15 -2787 (|#1|)) (-15 -2787 (|#1| (-621 |#2|))) (-15 -3869 (|#1| |#1| |#1|)) (-15 -4020 (|#1| |#1| |#1|)) (-15 -4020 (|#1| |#1| |#2|)) (-15 -4029 (|#1| |#1| |#1|)) (-15 -1341 ((-112) |#1| |#1|)) (-15 -1441 (|#1| |#1| |#1|)) (-15 -1441 (|#1| |#1| |#2|)) (-15 -1441 (|#1| |#2| |#1|)) (-15 -3853 (|#1| (-621 |#2|))) (-15 -3997 ((-747) |#2| |#1|)) (-15 -3997 ((-747) (-1 (-112) |#2|) |#1|)))
+((-3832 (((-112) $ $) 19)) (-2832 (($) 67 (|has| |#1| (-361)))) (-1441 (($ |#1| $) 82) (($ $ |#1|) 81) (($ $ $) 80)) (-4029 (($ $ $) 78)) (-1341 (((-112) $ $) 79)) (-2850 (((-112) $ (-747)) 8)) (-3614 (((-747)) 61 (|has| |#1| (-361)))) (-2787 (($ (-621 |#1|)) 74) (($) 73)) (-3827 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4336)))) (-3034 (($) 7 T CONST)) (-3675 (($ $) 58 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3546 (($ |#1| $) 47 (|has| $ (-6 -4336))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4336)))) (-3812 (($ |#1| $) 57 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4336)))) (-3237 (($) 64 (|has| |#1| (-361)))) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-1513 (((-112) $ $) 70)) (-1777 (((-112) $ (-747)) 9)) (-2861 ((|#1| $) 65 (|has| |#1| (-823)))) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3574 ((|#1| $) 66 (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3309 (((-892) $) 63 (|has| |#1| (-361)))) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22)) (-3869 (($ $ $) 75)) (-2548 ((|#1| $) 39)) (-1799 (($ |#1| $) 40)) (-3494 (($ (-892)) 62 (|has| |#1| (-361)))) (-3988 (((-1086) $) 21)) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3536 ((|#1| $) 41)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-4020 (($ $ |#1|) 77) (($ $ $) 76)) (-3226 (($) 49) (($ (-621 |#1|)) 48)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-2843 (((-525) $) 59 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 50)) (-2517 (($ $) 68 (|has| |#1| (-361)))) (-3845 (((-834) $) 18)) (-3398 (((-747) $) 69)) (-4119 (($ (-621 |#1|)) 72) (($) 71)) (-4213 (($ (-621 |#1|)) 42)) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20)) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-418 |#1|) (-138) (-1066)) (T -418))
+((-3398 (*1 *2 *1) (-12 (-4 *1 (-418 *3)) (-4 *3 (-1066)) (-5 *2 (-747)))) (-2517 (*1 *1 *1) (-12 (-4 *1 (-418 *2)) (-4 *2 (-1066)) (-4 *2 (-361)))) (-2832 (*1 *1) (-12 (-4 *1 (-418 *2)) (-4 *2 (-361)) (-4 *2 (-1066)))) (-3574 (*1 *2 *1) (-12 (-4 *1 (-418 *2)) (-4 *2 (-1066)) (-4 *2 (-823)))) (-2861 (*1 *2 *1) (-12 (-4 *1 (-418 *2)) (-4 *2 (-1066)) (-4 *2 (-823)))))
+(-13 (-223 |t#1|) (-1064 |t#1|) (-10 -8 (-6 -4336) (-15 -3398 ((-747) $)) (IF (|has| |t#1| (-361)) (PROGN (-6 (-361)) (-15 -2517 ($ $)) (-15 -2832 ($))) |%noBranch|) (IF (|has| |t#1| (-823)) (PROGN (-15 -3574 (|t#1| $)) (-15 -2861 (|t#1| $))) |%noBranch|)))
+(((-34) . T) ((-106 |#1|) . T) ((-101) . T) ((-593 (-834)) . T) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-223 |#1|) . T) ((-229 |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-361) |has| |#1| (-361)) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-1064 |#1|) . T) ((-1066) . T) ((-1179) . T))
+((-1721 (((-567 |#2|) |#2| (-1142)) 36)) (-1713 (((-567 |#2|) |#2| (-1142)) 20)) (-2037 ((|#2| |#2| (-1142)) 25)))
+(((-419 |#1| |#2|) (-10 -7 (-15 -1713 ((-567 |#2|) |#2| (-1142))) (-15 -1721 ((-567 |#2|) |#2| (-1142))) (-15 -2037 (|#2| |#2| (-1142)))) (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))) (-13 (-1164) (-29 |#1|))) (T -419))
+((-2037 (*1 *2 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-419 *4 *2)) (-4 *2 (-13 (-1164) (-29 *4))))) (-1721 (*1 *2 *3 *4) (-12 (-5 *4 (-1142)) (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-567 *3)) (-5 *1 (-419 *5 *3)) (-4 *3 (-13 (-1164) (-29 *5))))) (-1713 (*1 *2 *3 *4) (-12 (-5 *4 (-1142)) (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-567 *3)) (-5 *1 (-419 *5 *3)) (-4 *3 (-13 (-1164) (-29 *5))))))
+(-10 -7 (-15 -1713 ((-567 |#2|) |#2| (-1142))) (-15 -1721 ((-567 |#2|) |#2| (-1142))) (-15 -2037 (|#2| |#2| (-1142))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2612 (((-3 $ "failed") $) NIL)) (-2297 (((-112) $) NIL)) (-1691 (($ |#2| |#1|) 35)) (-1715 (($ |#2| |#1|) 33)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-324 |#2|)) 25)) (-2371 (((-747)) NIL)) (-3274 (($) 10 T CONST)) (-3286 (($) 16 T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) 34)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 36) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-420 |#1| |#2|) (-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4323)) (IF (|has| |#1| (-6 -4323)) (-6 -4323) |%noBranch|) |%noBranch|) (-15 -3845 ($ |#1|)) (-15 -3845 ($ (-324 |#2|))) (-15 -1691 ($ |#2| |#1|)) (-15 -1715 ($ |#2| |#1|)))) (-13 (-170) (-38 (-400 (-549)))) (-13 (-823) (-21))) (T -420))
+((-3845 (*1 *1 *2) (-12 (-5 *1 (-420 *2 *3)) (-4 *2 (-13 (-170) (-38 (-400 (-549))))) (-4 *3 (-13 (-823) (-21))))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-324 *4)) (-4 *4 (-13 (-823) (-21))) (-5 *1 (-420 *3 *4)) (-4 *3 (-13 (-170) (-38 (-400 (-549))))))) (-1691 (*1 *1 *2 *3) (-12 (-5 *1 (-420 *3 *2)) (-4 *3 (-13 (-170) (-38 (-400 (-549))))) (-4 *2 (-13 (-823) (-21))))) (-1715 (*1 *1 *2 *3) (-12 (-5 *1 (-420 *3 *2)) (-4 *3 (-13 (-170) (-38 (-400 (-549))))) (-4 *2 (-13 (-823) (-21))))))
+(-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4323)) (IF (|has| |#1| (-6 -4323)) (-6 -4323) |%noBranch|) |%noBranch|) (-15 -3845 ($ |#1|)) (-15 -3845 ($ (-324 |#2|))) (-15 -1691 ($ |#2| |#1|)) (-15 -1715 ($ |#2| |#1|))))
+((-3405 (((-3 |#2| (-621 |#2|)) |#2| (-1142)) 109)))
+(((-421 |#1| |#2|) (-10 -7 (-15 -3405 ((-3 |#2| (-621 |#2|)) |#2| (-1142)))) (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))) (-13 (-1164) (-930) (-29 |#1|))) (T -421))
+((-3405 (*1 *2 *3 *4) (-12 (-5 *4 (-1142)) (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 *3 (-621 *3))) (-5 *1 (-421 *5 *3)) (-4 *3 (-13 (-1164) (-930) (-29 *5))))))
+(-10 -7 (-15 -3405 ((-3 |#2| (-621 |#2|)) |#2| (-1142))))
+((-2270 (((-621 (-1142)) $) 72)) (-2082 (((-400 (-1138 $)) $ (-592 $)) 273)) (-3013 (($ $ (-287 $)) NIL) (($ $ (-621 (-287 $))) NIL) (($ $ (-621 (-592 $)) (-621 $)) 237)) (-2712 (((-3 (-592 $) "failed") $) NIL) (((-3 (-1142) "failed") $) 75) (((-3 (-549) "failed") $) NIL) (((-3 |#2| "failed") $) 233) (((-3 (-400 (-923 |#2|)) "failed") $) 324) (((-3 (-923 |#2|) "failed") $) 235) (((-3 (-400 (-549)) "failed") $) NIL)) (-2657 (((-592 $) $) NIL) (((-1142) $) 30) (((-549) $) NIL) ((|#2| $) 231) (((-400 (-923 |#2|)) $) 305) (((-923 |#2|) $) 232) (((-400 (-549)) $) NIL)) (-3500 (((-114) (-114)) 47)) (-2096 (($ $) 87)) (-2197 (((-3 (-592 $) "failed") $) 228)) (-2059 (((-621 (-592 $)) $) 229)) (-4093 (((-3 (-621 $) "failed") $) 247)) (-3257 (((-3 (-2 (|:| |val| $) (|:| -1714 (-549))) "failed") $) 254)) (-1503 (((-3 (-621 $) "failed") $) 245)) (-3570 (((-3 (-2 (|:| -1569 (-549)) (|:| |var| (-592 $))) "failed") $) 264)) (-1477 (((-3 (-2 (|:| |var| (-592 $)) (|:| -1714 (-549))) "failed") $) 251) (((-3 (-2 (|:| |var| (-592 $)) (|:| -1714 (-549))) "failed") $ (-114)) 217) (((-3 (-2 (|:| |var| (-592 $)) (|:| -1714 (-549))) "failed") $ (-1142)) 219)) (-2001 (((-112) $) 19)) (-2011 ((|#2| $) 21)) (-2684 (($ $ (-592 $) $) NIL) (($ $ (-621 (-592 $)) (-621 $)) 236) (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-621 (-1142)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-1142)) (-621 (-1 $ (-621 $)))) 96) (($ $ (-1142) (-1 $ (-621 $))) NIL) (($ $ (-1142) (-1 $ $)) NIL) (($ $ (-621 (-114)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-114) (-1 $ (-621 $))) NIL) (($ $ (-114) (-1 $ $)) NIL) (($ $ (-1142)) 57) (($ $ (-621 (-1142))) 240) (($ $) 241) (($ $ (-114) $ (-1142)) 60) (($ $ (-621 (-114)) (-621 $) (-1142)) 67) (($ $ (-621 (-1142)) (-621 (-747)) (-621 (-1 $ $))) 107) (($ $ (-621 (-1142)) (-621 (-747)) (-621 (-1 $ (-621 $)))) 242) (($ $ (-1142) (-747) (-1 $ (-621 $))) 94) (($ $ (-1142) (-747) (-1 $ $)) 93)) (-3339 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-621 $)) 106)) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142)) 238)) (-4095 (($ $) 284)) (-2843 (((-863 (-549)) $) 257) (((-863 (-372)) $) 261) (($ (-411 $)) 320) (((-525) $) NIL)) (-3845 (((-834) $) 239) (($ (-592 $)) 84) (($ (-1142)) 26) (($ |#2|) NIL) (($ (-1091 |#2| (-592 $))) NIL) (($ (-400 |#2|)) 289) (($ (-923 (-400 |#2|))) 329) (($ (-400 (-923 (-400 |#2|)))) 301) (($ (-400 (-923 |#2|))) 295) (($ $) NIL) (($ (-923 |#2|)) 185) (($ (-400 (-549))) 334) (($ (-549)) NIL)) (-2371 (((-747)) 79)) (-2444 (((-112) (-114)) 41)) (-1787 (($ (-1142) $) 33) (($ (-1142) $ $) 34) (($ (-1142) $ $ $) 35) (($ (-1142) $ $ $ $) 36) (($ (-1142) (-621 $)) 39)) (* (($ (-400 (-549)) $) NIL) (($ $ (-400 (-549))) NIL) (($ |#2| $) 266) (($ $ |#2|) NIL) (($ $ $) NIL) (($ (-549) $) NIL) (($ (-747) $) NIL) (($ (-892) $) NIL)))
+(((-422 |#1| |#2|) (-10 -8 (-15 * (|#1| (-892) |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2371 ((-747))) (-15 -3845 (|#1| (-549))) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -2843 ((-525) |#1|)) (-15 -2657 ((-923 |#2|) |#1|)) (-15 -2712 ((-3 (-923 |#2|) "failed") |#1|)) (-15 -3845 (|#1| (-923 |#2|))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3845 (|#1| |#1|)) (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 -2657 ((-400 (-923 |#2|)) |#1|)) (-15 -2712 ((-3 (-400 (-923 |#2|)) "failed") |#1|)) (-15 -3845 (|#1| (-400 (-923 |#2|)))) (-15 -2082 ((-400 (-1138 |#1|)) |#1| (-592 |#1|))) (-15 -3845 (|#1| (-400 (-923 (-400 |#2|))))) (-15 -3845 (|#1| (-923 (-400 |#2|)))) (-15 -3845 (|#1| (-400 |#2|))) (-15 -4095 (|#1| |#1|)) (-15 -2843 (|#1| (-411 |#1|))) (-15 -2684 (|#1| |#1| (-1142) (-747) (-1 |#1| |#1|))) (-15 -2684 (|#1| |#1| (-1142) (-747) (-1 |#1| (-621 |#1|)))) (-15 -2684 (|#1| |#1| (-621 (-1142)) (-621 (-747)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2684 (|#1| |#1| (-621 (-1142)) (-621 (-747)) (-621 (-1 |#1| |#1|)))) (-15 -3257 ((-3 (-2 (|:| |val| |#1|) (|:| -1714 (-549))) "failed") |#1|)) (-15 -1477 ((-3 (-2 (|:| |var| (-592 |#1|)) (|:| -1714 (-549))) "failed") |#1| (-1142))) (-15 -1477 ((-3 (-2 (|:| |var| (-592 |#1|)) (|:| -1714 (-549))) "failed") |#1| (-114))) (-15 -2096 (|#1| |#1|)) (-15 -3845 (|#1| (-1091 |#2| (-592 |#1|)))) (-15 -3570 ((-3 (-2 (|:| -1569 (-549)) (|:| |var| (-592 |#1|))) "failed") |#1|)) (-15 -1503 ((-3 (-621 |#1|) "failed") |#1|)) (-15 -1477 ((-3 (-2 (|:| |var| (-592 |#1|)) (|:| -1714 (-549))) "failed") |#1|)) (-15 -4093 ((-3 (-621 |#1|) "failed") |#1|)) (-15 -2684 (|#1| |#1| (-621 (-114)) (-621 |#1|) (-1142))) (-15 -2684 (|#1| |#1| (-114) |#1| (-1142))) (-15 -2684 (|#1| |#1|)) (-15 -2684 (|#1| |#1| (-621 (-1142)))) (-15 -2684 (|#1| |#1| (-1142))) (-15 -1787 (|#1| (-1142) (-621 |#1|))) (-15 -1787 (|#1| (-1142) |#1| |#1| |#1| |#1|)) (-15 -1787 (|#1| (-1142) |#1| |#1| |#1|)) (-15 -1787 (|#1| (-1142) |#1| |#1|)) (-15 -1787 (|#1| (-1142) |#1|)) (-15 -2270 ((-621 (-1142)) |#1|)) (-15 -2011 (|#2| |#1|)) (-15 -2001 ((-112) |#1|)) (-15 -2657 (|#2| |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -3845 (|#1| |#2|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -2843 ((-863 (-372)) |#1|)) (-15 -2843 ((-863 (-549)) |#1|)) (-15 -2657 ((-1142) |#1|)) (-15 -2712 ((-3 (-1142) "failed") |#1|)) (-15 -3845 (|#1| (-1142))) (-15 -2684 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -2684 (|#1| |#1| (-114) (-1 |#1| (-621 |#1|)))) (-15 -2684 (|#1| |#1| (-621 (-114)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2684 (|#1| |#1| (-621 (-114)) (-621 (-1 |#1| |#1|)))) (-15 -2684 (|#1| |#1| (-1142) (-1 |#1| |#1|))) (-15 -2684 (|#1| |#1| (-1142) (-1 |#1| (-621 |#1|)))) (-15 -2684 (|#1| |#1| (-621 (-1142)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2684 (|#1| |#1| (-621 (-1142)) (-621 (-1 |#1| |#1|)))) (-15 -2444 ((-112) (-114))) (-15 -3500 ((-114) (-114))) (-15 -2059 ((-621 (-592 |#1|)) |#1|)) (-15 -2197 ((-3 (-592 |#1|) "failed") |#1|)) (-15 -3013 (|#1| |#1| (-621 (-592 |#1|)) (-621 |#1|))) (-15 -3013 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -3013 (|#1| |#1| (-287 |#1|))) (-15 -3339 (|#1| (-114) (-621 |#1|))) (-15 -3339 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -3339 (|#1| (-114) |#1| |#1| |#1|)) (-15 -3339 (|#1| (-114) |#1| |#1|)) (-15 -3339 (|#1| (-114) |#1|)) (-15 -2684 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2684 (|#1| |#1| |#1| |#1|)) (-15 -2684 (|#1| |#1| (-287 |#1|))) (-15 -2684 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -2684 (|#1| |#1| (-621 (-592 |#1|)) (-621 |#1|))) (-15 -2684 (|#1| |#1| (-592 |#1|) |#1|)) (-15 -2657 ((-592 |#1|) |#1|)) (-15 -2712 ((-3 (-592 |#1|) "failed") |#1|)) (-15 -3845 (|#1| (-592 |#1|))) (-15 -3845 ((-834) |#1|))) (-423 |#2|) (-823)) (T -422))
+((-3500 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *4 (-823)) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-2444 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-422 *4 *5)) (-4 *4 (-423 *5)))) (-2371 (*1 *2) (-12 (-4 *4 (-823)) (-5 *2 (-747)) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))))
+(-10 -8 (-15 * (|#1| (-892) |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2371 ((-747))) (-15 -3845 (|#1| (-549))) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -2843 ((-525) |#1|)) (-15 -2657 ((-923 |#2|) |#1|)) (-15 -2712 ((-3 (-923 |#2|) "failed") |#1|)) (-15 -3845 (|#1| (-923 |#2|))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3845 (|#1| |#1|)) (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 -2657 ((-400 (-923 |#2|)) |#1|)) (-15 -2712 ((-3 (-400 (-923 |#2|)) "failed") |#1|)) (-15 -3845 (|#1| (-400 (-923 |#2|)))) (-15 -2082 ((-400 (-1138 |#1|)) |#1| (-592 |#1|))) (-15 -3845 (|#1| (-400 (-923 (-400 |#2|))))) (-15 -3845 (|#1| (-923 (-400 |#2|)))) (-15 -3845 (|#1| (-400 |#2|))) (-15 -4095 (|#1| |#1|)) (-15 -2843 (|#1| (-411 |#1|))) (-15 -2684 (|#1| |#1| (-1142) (-747) (-1 |#1| |#1|))) (-15 -2684 (|#1| |#1| (-1142) (-747) (-1 |#1| (-621 |#1|)))) (-15 -2684 (|#1| |#1| (-621 (-1142)) (-621 (-747)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2684 (|#1| |#1| (-621 (-1142)) (-621 (-747)) (-621 (-1 |#1| |#1|)))) (-15 -3257 ((-3 (-2 (|:| |val| |#1|) (|:| -1714 (-549))) "failed") |#1|)) (-15 -1477 ((-3 (-2 (|:| |var| (-592 |#1|)) (|:| -1714 (-549))) "failed") |#1| (-1142))) (-15 -1477 ((-3 (-2 (|:| |var| (-592 |#1|)) (|:| -1714 (-549))) "failed") |#1| (-114))) (-15 -2096 (|#1| |#1|)) (-15 -3845 (|#1| (-1091 |#2| (-592 |#1|)))) (-15 -3570 ((-3 (-2 (|:| -1569 (-549)) (|:| |var| (-592 |#1|))) "failed") |#1|)) (-15 -1503 ((-3 (-621 |#1|) "failed") |#1|)) (-15 -1477 ((-3 (-2 (|:| |var| (-592 |#1|)) (|:| -1714 (-549))) "failed") |#1|)) (-15 -4093 ((-3 (-621 |#1|) "failed") |#1|)) (-15 -2684 (|#1| |#1| (-621 (-114)) (-621 |#1|) (-1142))) (-15 -2684 (|#1| |#1| (-114) |#1| (-1142))) (-15 -2684 (|#1| |#1|)) (-15 -2684 (|#1| |#1| (-621 (-1142)))) (-15 -2684 (|#1| |#1| (-1142))) (-15 -1787 (|#1| (-1142) (-621 |#1|))) (-15 -1787 (|#1| (-1142) |#1| |#1| |#1| |#1|)) (-15 -1787 (|#1| (-1142) |#1| |#1| |#1|)) (-15 -1787 (|#1| (-1142) |#1| |#1|)) (-15 -1787 (|#1| (-1142) |#1|)) (-15 -2270 ((-621 (-1142)) |#1|)) (-15 -2011 (|#2| |#1|)) (-15 -2001 ((-112) |#1|)) (-15 -2657 (|#2| |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -3845 (|#1| |#2|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -2843 ((-863 (-372)) |#1|)) (-15 -2843 ((-863 (-549)) |#1|)) (-15 -2657 ((-1142) |#1|)) (-15 -2712 ((-3 (-1142) "failed") |#1|)) (-15 -3845 (|#1| (-1142))) (-15 -2684 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -2684 (|#1| |#1| (-114) (-1 |#1| (-621 |#1|)))) (-15 -2684 (|#1| |#1| (-621 (-114)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2684 (|#1| |#1| (-621 (-114)) (-621 (-1 |#1| |#1|)))) (-15 -2684 (|#1| |#1| (-1142) (-1 |#1| |#1|))) (-15 -2684 (|#1| |#1| (-1142) (-1 |#1| (-621 |#1|)))) (-15 -2684 (|#1| |#1| (-621 (-1142)) (-621 (-1 |#1| (-621 |#1|))))) (-15 -2684 (|#1| |#1| (-621 (-1142)) (-621 (-1 |#1| |#1|)))) (-15 -2444 ((-112) (-114))) (-15 -3500 ((-114) (-114))) (-15 -2059 ((-621 (-592 |#1|)) |#1|)) (-15 -2197 ((-3 (-592 |#1|) "failed") |#1|)) (-15 -3013 (|#1| |#1| (-621 (-592 |#1|)) (-621 |#1|))) (-15 -3013 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -3013 (|#1| |#1| (-287 |#1|))) (-15 -3339 (|#1| (-114) (-621 |#1|))) (-15 -3339 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -3339 (|#1| (-114) |#1| |#1| |#1|)) (-15 -3339 (|#1| (-114) |#1| |#1|)) (-15 -3339 (|#1| (-114) |#1|)) (-15 -2684 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2684 (|#1| |#1| |#1| |#1|)) (-15 -2684 (|#1| |#1| (-287 |#1|))) (-15 -2684 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -2684 (|#1| |#1| (-621 (-592 |#1|)) (-621 |#1|))) (-15 -2684 (|#1| |#1| (-592 |#1|) |#1|)) (-15 -2657 ((-592 |#1|) |#1|)) (-15 -2712 ((-3 (-592 |#1|) "failed") |#1|)) (-15 -3845 (|#1| (-592 |#1|))) (-15 -3845 ((-834) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 113 (|has| |#1| (-25)))) (-2270 (((-621 (-1142)) $) 200)) (-2082 (((-400 (-1138 $)) $ (-592 $)) 168 (|has| |#1| (-541)))) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 140 (|has| |#1| (-541)))) (-3044 (($ $) 141 (|has| |#1| (-541)))) (-2774 (((-112) $) 143 (|has| |#1| (-541)))) (-1979 (((-621 (-592 $)) $) 44)) (-2416 (((-3 $ "failed") $ $) 115 (|has| |#1| (-21)))) (-3013 (($ $ (-287 $)) 56) (($ $ (-621 (-287 $))) 55) (($ $ (-621 (-592 $)) (-621 $)) 54)) (-3239 (($ $) 160 (|has| |#1| (-541)))) (-2620 (((-411 $) $) 161 (|has| |#1| (-541)))) (-2680 (((-112) $ $) 151 (|has| |#1| (-541)))) (-3034 (($) 101 (-1536 (|has| |#1| (-1078)) (|has| |#1| (-25))) CONST)) (-2712 (((-3 (-592 $) "failed") $) 69) (((-3 (-1142) "failed") $) 213) (((-3 (-549) "failed") $) 206 (|has| |#1| (-1009 (-549)))) (((-3 |#1| "failed") $) 204) (((-3 (-400 (-923 |#1|)) "failed") $) 166 (|has| |#1| (-541))) (((-3 (-923 |#1|) "failed") $) 120 (|has| |#1| (-1018))) (((-3 (-400 (-549)) "failed") $) 95 (-1536 (-12 (|has| |#1| (-1009 (-549))) (|has| |#1| (-541))) (|has| |#1| (-1009 (-400 (-549))))))) (-2657 (((-592 $) $) 68) (((-1142) $) 212) (((-549) $) 207 (|has| |#1| (-1009 (-549)))) ((|#1| $) 203) (((-400 (-923 |#1|)) $) 165 (|has| |#1| (-541))) (((-923 |#1|) $) 119 (|has| |#1| (-1018))) (((-400 (-549)) $) 94 (-1536 (-12 (|has| |#1| (-1009 (-549))) (|has| |#1| (-541))) (|has| |#1| (-1009 (-400 (-549))))))) (-2091 (($ $ $) 155 (|has| |#1| (-541)))) (-3446 (((-665 (-549)) (-665 $)) 134 (-1819 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 133 (-1819 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) 132 (|has| |#1| (-1018))) (((-665 |#1|) (-665 $)) 131 (|has| |#1| (-1018)))) (-2612 (((-3 $ "failed") $) 103 (|has| |#1| (-1078)))) (-2065 (($ $ $) 154 (|has| |#1| (-541)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 149 (|has| |#1| (-541)))) (-1464 (((-112) $) 162 (|has| |#1| (-541)))) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 209 (|has| |#1| (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 208 (|has| |#1| (-857 (-372))))) (-4158 (($ $) 51) (($ (-621 $)) 50)) (-3724 (((-621 (-114)) $) 43)) (-3500 (((-114) (-114)) 42)) (-2297 (((-112) $) 102 (|has| |#1| (-1078)))) (-2803 (((-112) $) 22 (|has| $ (-1009 (-549))))) (-2096 (($ $) 183 (|has| |#1| (-1018)))) (-1392 (((-1091 |#1| (-592 $)) $) 184 (|has| |#1| (-1018)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 158 (|has| |#1| (-541)))) (-1797 (((-1138 $) (-592 $)) 25 (|has| $ (-1018)))) (-2861 (($ $ $) 13)) (-3574 (($ $ $) 14)) (-2795 (($ (-1 $ $) (-592 $)) 36)) (-2197 (((-3 (-592 $) "failed") $) 46)) (-3696 (($ (-621 $)) 147 (|has| |#1| (-541))) (($ $ $) 146 (|has| |#1| (-541)))) (-3441 (((-1124) $) 9)) (-2059 (((-621 (-592 $)) $) 45)) (-1475 (($ (-114) $) 38) (($ (-114) (-621 $)) 37)) (-4093 (((-3 (-621 $) "failed") $) 189 (|has| |#1| (-1078)))) (-3257 (((-3 (-2 (|:| |val| $) (|:| -1714 (-549))) "failed") $) 180 (|has| |#1| (-1018)))) (-1503 (((-3 (-621 $) "failed") $) 187 (|has| |#1| (-25)))) (-3570 (((-3 (-2 (|:| -1569 (-549)) (|:| |var| (-592 $))) "failed") $) 186 (|has| |#1| (-25)))) (-1477 (((-3 (-2 (|:| |var| (-592 $)) (|:| -1714 (-549))) "failed") $) 188 (|has| |#1| (-1078))) (((-3 (-2 (|:| |var| (-592 $)) (|:| -1714 (-549))) "failed") $ (-114)) 182 (|has| |#1| (-1018))) (((-3 (-2 (|:| |var| (-592 $)) (|:| -1714 (-549))) "failed") $ (-1142)) 181 (|has| |#1| (-1018)))) (-3673 (((-112) $ (-114)) 40) (((-112) $ (-1142)) 39)) (-1990 (($ $) 105 (-1536 (|has| |#1| (-465)) (|has| |#1| (-541))))) (-4036 (((-747) $) 47)) (-3988 (((-1086) $) 10)) (-2001 (((-112) $) 202)) (-2011 ((|#1| $) 201)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 148 (|has| |#1| (-541)))) (-3726 (($ (-621 $)) 145 (|has| |#1| (-541))) (($ $ $) 144 (|has| |#1| (-541)))) (-2934 (((-112) $ $) 35) (((-112) $ (-1142)) 34)) (-2119 (((-411 $) $) 159 (|has| |#1| (-541)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 157 (|has| |#1| (-541))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 156 (|has| |#1| (-541)))) (-2040 (((-3 $ "failed") $ $) 139 (|has| |#1| (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 150 (|has| |#1| (-541)))) (-1980 (((-112) $) 23 (|has| $ (-1009 (-549))))) (-2684 (($ $ (-592 $) $) 67) (($ $ (-621 (-592 $)) (-621 $)) 66) (($ $ (-621 (-287 $))) 65) (($ $ (-287 $)) 64) (($ $ $ $) 63) (($ $ (-621 $) (-621 $)) 62) (($ $ (-621 (-1142)) (-621 (-1 $ $))) 33) (($ $ (-621 (-1142)) (-621 (-1 $ (-621 $)))) 32) (($ $ (-1142) (-1 $ (-621 $))) 31) (($ $ (-1142) (-1 $ $)) 30) (($ $ (-621 (-114)) (-621 (-1 $ $))) 29) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) 28) (($ $ (-114) (-1 $ (-621 $))) 27) (($ $ (-114) (-1 $ $)) 26) (($ $ (-1142)) 194 (|has| |#1| (-594 (-525)))) (($ $ (-621 (-1142))) 193 (|has| |#1| (-594 (-525)))) (($ $) 192 (|has| |#1| (-594 (-525)))) (($ $ (-114) $ (-1142)) 191 (|has| |#1| (-594 (-525)))) (($ $ (-621 (-114)) (-621 $) (-1142)) 190 (|has| |#1| (-594 (-525)))) (($ $ (-621 (-1142)) (-621 (-747)) (-621 (-1 $ $))) 179 (|has| |#1| (-1018))) (($ $ (-621 (-1142)) (-621 (-747)) (-621 (-1 $ (-621 $)))) 178 (|has| |#1| (-1018))) (($ $ (-1142) (-747) (-1 $ (-621 $))) 177 (|has| |#1| (-1018))) (($ $ (-1142) (-747) (-1 $ $)) 176 (|has| |#1| (-1018)))) (-1335 (((-747) $) 152 (|has| |#1| (-541)))) (-3339 (($ (-114) $) 61) (($ (-114) $ $) 60) (($ (-114) $ $ $) 59) (($ (-114) $ $ $ $) 58) (($ (-114) (-621 $)) 57)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 153 (|has| |#1| (-541)))) (-3205 (($ $) 49) (($ $ $) 48)) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) 125 (|has| |#1| (-1018))) (($ $ (-1142) (-747)) 124 (|has| |#1| (-1018))) (($ $ (-621 (-1142))) 123 (|has| |#1| (-1018))) (($ $ (-1142)) 122 (|has| |#1| (-1018)))) (-4095 (($ $) 173 (|has| |#1| (-541)))) (-1404 (((-1091 |#1| (-592 $)) $) 174 (|has| |#1| (-541)))) (-1262 (($ $) 24 (|has| $ (-1018)))) (-2843 (((-863 (-549)) $) 211 (|has| |#1| (-594 (-863 (-549))))) (((-863 (-372)) $) 210 (|has| |#1| (-594 (-863 (-372))))) (($ (-411 $)) 175 (|has| |#1| (-541))) (((-525) $) 97 (|has| |#1| (-594 (-525))))) (-1795 (($ $ $) 108 (|has| |#1| (-465)))) (-3870 (($ $ $) 109 (|has| |#1| (-465)))) (-3845 (((-834) $) 11) (($ (-592 $)) 70) (($ (-1142)) 214) (($ |#1|) 205) (($ (-1091 |#1| (-592 $))) 185 (|has| |#1| (-1018))) (($ (-400 |#1|)) 171 (|has| |#1| (-541))) (($ (-923 (-400 |#1|))) 170 (|has| |#1| (-541))) (($ (-400 (-923 (-400 |#1|)))) 169 (|has| |#1| (-541))) (($ (-400 (-923 |#1|))) 167 (|has| |#1| (-541))) (($ $) 138 (|has| |#1| (-541))) (($ (-923 |#1|)) 121 (|has| |#1| (-1018))) (($ (-400 (-549))) 96 (-1536 (|has| |#1| (-541)) (-12 (|has| |#1| (-1009 (-549))) (|has| |#1| (-541))) (|has| |#1| (-1009 (-400 (-549)))))) (($ (-549)) 93 (-1536 (|has| |#1| (-1018)) (|has| |#1| (-1009 (-549)))))) (-2343 (((-3 $ "failed") $) 135 (|has| |#1| (-143)))) (-2371 (((-747)) 130 (|has| |#1| (-1018)))) (-4136 (($ $) 53) (($ (-621 $)) 52)) (-2444 (((-112) (-114)) 41)) (-2441 (((-112) $ $) 142 (|has| |#1| (-541)))) (-1787 (($ (-1142) $) 199) (($ (-1142) $ $) 198) (($ (-1142) $ $ $) 197) (($ (-1142) $ $ $ $) 196) (($ (-1142) (-621 $)) 195)) (-3274 (($) 112 (|has| |#1| (-25)) CONST)) (-3286 (($) 100 (|has| |#1| (-1078)) CONST)) (-1699 (($ $ (-621 (-1142)) (-621 (-747))) 129 (|has| |#1| (-1018))) (($ $ (-1142) (-747)) 128 (|has| |#1| (-1018))) (($ $ (-621 (-1142))) 127 (|has| |#1| (-1018))) (($ $ (-1142)) 126 (|has| |#1| (-1018)))) (-2447 (((-112) $ $) 16)) (-2423 (((-112) $ $) 17)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 15)) (-2409 (((-112) $ $) 18)) (-2511 (($ (-1091 |#1| (-592 $)) (-1091 |#1| (-592 $))) 172 (|has| |#1| (-541))) (($ $ $) 106 (-1536 (|has| |#1| (-465)) (|has| |#1| (-541))))) (-2498 (($ $ $) 117 (|has| |#1| (-21))) (($ $) 116 (|has| |#1| (-21)))) (-2484 (($ $ $) 110 (|has| |#1| (-25)))) (** (($ $ (-549)) 107 (-1536 (|has| |#1| (-465)) (|has| |#1| (-541)))) (($ $ (-747)) 104 (|has| |#1| (-1078))) (($ $ (-892)) 99 (|has| |#1| (-1078)))) (* (($ (-400 (-549)) $) 164 (|has| |#1| (-541))) (($ $ (-400 (-549))) 163 (|has| |#1| (-541))) (($ |#1| $) 137 (|has| |#1| (-170))) (($ $ |#1|) 136 (|has| |#1| (-170))) (($ (-549) $) 118 (|has| |#1| (-21))) (($ (-747) $) 114 (|has| |#1| (-25))) (($ (-892) $) 111 (|has| |#1| (-25))) (($ $ $) 98 (|has| |#1| (-1078)))))
(((-423 |#1|) (-138) (-823)) (T -423))
-((-2004 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-823)) (-5 *2 (-112)))) (-2016 (*1 *2 *1) (-12 (-4 *1 (-423 *2)) (-4 *2 (-823)))) (-2272 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-823)) (-5 *2 (-621 (-1143))))) (-1789 (*1 *1 *2 *1) (-12 (-5 *2 (-1143)) (-4 *1 (-423 *3)) (-4 *3 (-823)))) (-1789 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1143)) (-4 *1 (-423 *3)) (-4 *3 (-823)))) (-1789 (*1 *1 *2 *1 *1 *1) (-12 (-5 *2 (-1143)) (-4 *1 (-423 *3)) (-4 *3 (-823)))) (-1789 (*1 *1 *2 *1 *1 *1 *1) (-12 (-5 *2 (-1143)) (-4 *1 (-423 *3)) (-4 *3 (-823)))) (-1789 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-621 *1)) (-4 *1 (-423 *4)) (-4 *4 (-823)))) (-2686 (*1 *1 *1 *2) (-12 (-5 *2 (-1143)) (-4 *1 (-423 *3)) (-4 *3 (-823)) (-4 *3 (-594 (-525))))) (-2686 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-1143))) (-4 *1 (-423 *3)) (-4 *3 (-823)) (-4 *3 (-594 (-525))))) (-2686 (*1 *1 *1) (-12 (-4 *1 (-423 *2)) (-4 *2 (-823)) (-4 *2 (-594 (-525))))) (-2686 (*1 *1 *1 *2 *1 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1143)) (-4 *1 (-423 *4)) (-4 *4 (-823)) (-4 *4 (-594 (-525))))) (-2686 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-621 (-114))) (-5 *3 (-621 *1)) (-5 *4 (-1143)) (-4 *1 (-423 *5)) (-4 *5 (-823)) (-4 *5 (-594 (-525))))) (-4266 (*1 *2 *1) (|partial| -12 (-4 *3 (-1079)) (-4 *3 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-423 *3)))) (-1503 (*1 *2 *1) (|partial| -12 (-4 *3 (-1079)) (-4 *3 (-823)) (-5 *2 (-2 (|:| |var| (-592 *1)) (|:| -3731 (-549)))) (-4 *1 (-423 *3)))) (-2533 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-423 *3)))) (-2761 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-823)) (-5 *2 (-2 (|:| -1570 (-549)) (|:| |var| (-592 *1)))) (-4 *1 (-423 *3)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-1092 *3 (-592 *1))) (-4 *3 (-1018)) (-4 *3 (-823)) (-4 *1 (-423 *3)))) (-1394 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *3 (-823)) (-5 *2 (-1092 *3 (-592 *1))) (-4 *1 (-423 *3)))) (-1726 (*1 *1 *1) (-12 (-4 *1 (-423 *2)) (-4 *2 (-823)) (-4 *2 (-1018)))) (-1503 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-114)) (-4 *4 (-1018)) (-4 *4 (-823)) (-5 *2 (-2 (|:| |var| (-592 *1)) (|:| -3731 (-549)))) (-4 *1 (-423 *4)))) (-1503 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1143)) (-4 *4 (-1018)) (-4 *4 (-823)) (-5 *2 (-2 (|:| |var| (-592 *1)) (|:| -3731 (-549)))) (-4 *1 (-423 *4)))) (-1671 (*1 *2 *1) (|partial| -12 (-4 *3 (-1018)) (-4 *3 (-823)) (-5 *2 (-2 (|:| |val| *1) (|:| -3731 (-549)))) (-4 *1 (-423 *3)))) (-2686 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-621 (-1143))) (-5 *3 (-621 (-747))) (-5 *4 (-621 (-1 *1 *1))) (-4 *1 (-423 *5)) (-4 *5 (-823)) (-4 *5 (-1018)))) (-2686 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-621 (-1143))) (-5 *3 (-621 (-747))) (-5 *4 (-621 (-1 *1 (-621 *1)))) (-4 *1 (-423 *5)) (-4 *5 (-823)) (-4 *5 (-1018)))) (-2686 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1143)) (-5 *3 (-747)) (-5 *4 (-1 *1 (-621 *1))) (-4 *1 (-423 *5)) (-4 *5 (-823)) (-4 *5 (-1018)))) (-2686 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1143)) (-5 *3 (-747)) (-5 *4 (-1 *1 *1)) (-4 *1 (-423 *5)) (-4 *5 (-823)) (-4 *5 (-1018)))) (-2845 (*1 *1 *2) (-12 (-5 *2 (-411 *1)) (-4 *1 (-423 *3)) (-4 *3 (-541)) (-4 *3 (-823)))) (-1403 (*1 *2 *1) (-12 (-4 *3 (-541)) (-4 *3 (-823)) (-5 *2 (-1092 *3 (-592 *1))) (-4 *1 (-423 *3)))) (-3939 (*1 *1 *1) (-12 (-4 *1 (-423 *2)) (-4 *2 (-823)) (-4 *2 (-541)))) (-2513 (*1 *1 *2 *2) (-12 (-5 *2 (-1092 *3 (-592 *1))) (-4 *3 (-541)) (-4 *3 (-823)) (-4 *1 (-423 *3)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-400 *3)) (-4 *3 (-541)) (-4 *3 (-823)) (-4 *1 (-423 *3)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-923 (-400 *3))) (-4 *3 (-541)) (-4 *3 (-823)) (-4 *1 (-423 *3)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-400 (-923 (-400 *3)))) (-4 *3 (-541)) (-4 *3 (-823)) (-4 *1 (-423 *3)))) (-2084 (*1 *2 *1 *3) (-12 (-5 *3 (-592 *1)) (-4 *1 (-423 *4)) (-4 *4 (-823)) (-4 *4 (-541)) (-5 *2 (-400 (-1139 *1))))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-423 *3)) (-4 *3 (-823)) (-4 *3 (-1079)))))
-(-13 (-295) (-1009 (-1143)) (-855 |t#1|) (-393 |t#1|) (-404 |t#1|) (-10 -8 (-15 -2004 ((-112) $)) (-15 -2016 (|t#1| $)) (-15 -2272 ((-621 (-1143)) $)) (-15 -1789 ($ (-1143) $)) (-15 -1789 ($ (-1143) $ $)) (-15 -1789 ($ (-1143) $ $ $)) (-15 -1789 ($ (-1143) $ $ $ $)) (-15 -1789 ($ (-1143) (-621 $))) (IF (|has| |t#1| (-594 (-525))) (PROGN (-6 (-594 (-525))) (-15 -2686 ($ $ (-1143))) (-15 -2686 ($ $ (-621 (-1143)))) (-15 -2686 ($ $)) (-15 -2686 ($ $ (-114) $ (-1143))) (-15 -2686 ($ $ (-621 (-114)) (-621 $) (-1143)))) |%noBranch|) (IF (|has| |t#1| (-1079)) (PROGN (-6 (-703)) (-15 ** ($ $ (-747))) (-15 -4266 ((-3 (-621 $) "failed") $)) (-15 -1503 ((-3 (-2 (|:| |var| (-592 $)) (|:| -3731 (-549))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-465)) (-6 (-465)) |%noBranch|) (IF (|has| |t#1| (-25)) (PROGN (-6 (-23)) (-15 -2533 ((-3 (-621 $) "failed") $)) (-15 -2761 ((-3 (-2 (|:| -1570 (-549)) (|:| |var| (-592 $))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |t#1| (-1018)) (PROGN (-6 (-1018)) (-6 (-1009 (-923 |t#1|))) (-6 (-871 (-1143))) (-6 (-370 |t#1|)) (-15 -3846 ($ (-1092 |t#1| (-592 $)))) (-15 -1394 ((-1092 |t#1| (-592 $)) $)) (-15 -1726 ($ $)) (-15 -1503 ((-3 (-2 (|:| |var| (-592 $)) (|:| -3731 (-549))) "failed") $ (-114))) (-15 -1503 ((-3 (-2 (|:| |var| (-592 $)) (|:| -3731 (-549))) "failed") $ (-1143))) (-15 -1671 ((-3 (-2 (|:| |val| $) (|:| -3731 (-549))) "failed") $)) (-15 -2686 ($ $ (-621 (-1143)) (-621 (-747)) (-621 (-1 $ $)))) (-15 -2686 ($ $ (-621 (-1143)) (-621 (-747)) (-621 (-1 $ (-621 $))))) (-15 -2686 ($ $ (-1143) (-747) (-1 $ (-621 $)))) (-15 -2686 ($ $ (-1143) (-747) (-1 $ $)))) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |t#1| (-170)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-541)) (PROGN (-6 (-356)) (-6 (-1009 (-400 (-923 |t#1|)))) (-15 -2845 ($ (-411 $))) (-15 -1403 ((-1092 |t#1| (-592 $)) $)) (-15 -3939 ($ $)) (-15 -2513 ($ (-1092 |t#1| (-592 $)) (-1092 |t#1| (-592 $)))) (-15 -3846 ($ (-400 |t#1|))) (-15 -3846 ($ (-923 (-400 |t#1|)))) (-15 -3846 ($ (-400 (-923 (-400 |t#1|))))) (-15 -2084 ((-400 (-1139 $)) $ (-592 $))) (IF (|has| |t#1| (-1009 (-549))) (-6 (-1009 (-400 (-549)))) |%noBranch|)) |%noBranch|)))
-(((-21) -1536 (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143)) (|has| |#1| (-21))) ((-23) -1536 (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-25) -1536 (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-38 #0=(-400 (-549))) |has| |#1| (-541)) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) |has| |#1| (-541)) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-541)) ((-111 |#1| |#1|) |has| |#1| (-170)) ((-111 $ $) |has| |#1| (-541)) ((-130) -1536 (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143)) (|has| |#1| (-21))) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) |has| |#1| (-541)) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-594 (-863 (-372))) |has| |#1| (-594 (-863 (-372)))) ((-594 (-863 (-549))) |has| |#1| (-594 (-863 (-549)))) ((-237) |has| |#1| (-541)) ((-283) |has| |#1| (-541)) ((-300) |has| |#1| (-541)) ((-302 $) . T) ((-295) . T) ((-356) |has| |#1| (-541)) ((-370 |#1|) |has| |#1| (-1018)) ((-393 |#1|) . T) ((-404 |#1|) . T) ((-444) |has| |#1| (-541)) ((-465) |has| |#1| (-465)) ((-505 (-592 $) $) . T) ((-505 $ $) . T) ((-541) |has| |#1| (-541)) ((-624 #0#) |has| |#1| (-541)) ((-624 |#1|) |has| |#1| (-170)) ((-624 $) -1536 (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143))) ((-617 (-549)) -12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) ((-617 |#1|) |has| |#1| (-1018)) ((-694 #0#) |has| |#1| (-541)) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) |has| |#1| (-541)) ((-703) -1536 (|has| |#1| (-1079)) (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-465)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143))) ((-823) . T) ((-871 (-1143)) |has| |#1| (-1018)) ((-857 (-372)) |has| |#1| (-857 (-372))) ((-857 (-549)) |has| |#1| (-857 (-549))) ((-855 |#1|) . T) ((-891) |has| |#1| (-541)) ((-1009 (-400 (-549))) -1536 (|has| |#1| (-1009 (-400 (-549)))) (-12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549))))) ((-1009 (-400 (-923 |#1|))) |has| |#1| (-541)) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 (-592 $)) . T) ((-1009 (-923 |#1|)) |has| |#1| (-1018)) ((-1009 (-1143)) . T) ((-1009 |#1|) . T) ((-1024 #0#) |has| |#1| (-541)) ((-1024 |#1|) |has| |#1| (-170)) ((-1024 $) |has| |#1| (-541)) ((-1018) -1536 (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143))) ((-1025) -1536 (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143))) ((-1079) -1536 (|has| |#1| (-1079)) (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-465)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143))) ((-1067) . T) ((-1180) . T) ((-1184) |has| |#1| (-541)))
-((-3796 ((|#2| |#2| |#2|) 33)) (-2834 (((-114) (-114)) 44)) (-2820 ((|#2| |#2|) 66)) (-3254 ((|#2| |#2|) 69)) (-3634 ((|#2| |#2|) 32)) (-1370 ((|#2| |#2| |#2|) 35)) (-1611 ((|#2| |#2| |#2|) 37)) (-2981 ((|#2| |#2| |#2|) 34)) (-1643 ((|#2| |#2| |#2|) 36)) (-4285 (((-112) (-114)) 42)) (-1273 ((|#2| |#2|) 39)) (-3000 ((|#2| |#2|) 38)) (-3212 ((|#2| |#2|) 27)) (-3553 ((|#2| |#2| |#2|) 30) ((|#2| |#2|) 28)) (-2096 ((|#2| |#2| |#2|) 31)))
-(((-424 |#1| |#2|) (-10 -7 (-15 -4285 ((-112) (-114))) (-15 -2834 ((-114) (-114))) (-15 -3212 (|#2| |#2|)) (-15 -3553 (|#2| |#2|)) (-15 -3553 (|#2| |#2| |#2|)) (-15 -2096 (|#2| |#2| |#2|)) (-15 -3634 (|#2| |#2|)) (-15 -3796 (|#2| |#2| |#2|)) (-15 -2981 (|#2| |#2| |#2|)) (-15 -1370 (|#2| |#2| |#2|)) (-15 -1643 (|#2| |#2| |#2|)) (-15 -1611 (|#2| |#2| |#2|)) (-15 -3000 (|#2| |#2|)) (-15 -1273 (|#2| |#2|)) (-15 -3254 (|#2| |#2|)) (-15 -2820 (|#2| |#2|))) (-13 (-823) (-541)) (-423 |#1|)) (T -424))
-((-2820 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-3254 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-1273 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-3000 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-1611 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-1643 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-1370 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-2981 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-3796 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-3634 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-2096 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-3553 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-3553 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-3212 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-2834 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *4)) (-4 *4 (-423 *3)))) (-4285 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112)) (-5 *1 (-424 *4 *5)) (-4 *5 (-423 *4)))))
-(-10 -7 (-15 -4285 ((-112) (-114))) (-15 -2834 ((-114) (-114))) (-15 -3212 (|#2| |#2|)) (-15 -3553 (|#2| |#2|)) (-15 -3553 (|#2| |#2| |#2|)) (-15 -2096 (|#2| |#2| |#2|)) (-15 -3634 (|#2| |#2|)) (-15 -3796 (|#2| |#2| |#2|)) (-15 -2981 (|#2| |#2| |#2|)) (-15 -1370 (|#2| |#2| |#2|)) (-15 -1643 (|#2| |#2| |#2|)) (-15 -1611 (|#2| |#2| |#2|)) (-15 -3000 (|#2| |#2|)) (-15 -1273 (|#2| |#2|)) (-15 -3254 (|#2| |#2|)) (-15 -2820 (|#2| |#2|)))
-((-2405 (((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1139 |#2|)) (|:| |pol2| (-1139 |#2|)) (|:| |prim| (-1139 |#2|))) |#2| |#2|) 97 (|has| |#2| (-27))) (((-2 (|:| |primelt| |#2|) (|:| |poly| (-621 (-1139 |#2|))) (|:| |prim| (-1139 |#2|))) (-621 |#2|)) 61)))
-(((-425 |#1| |#2|) (-10 -7 (-15 -2405 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-621 (-1139 |#2|))) (|:| |prim| (-1139 |#2|))) (-621 |#2|))) (IF (|has| |#2| (-27)) (-15 -2405 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1139 |#2|)) (|:| |pol2| (-1139 |#2|)) (|:| |prim| (-1139 |#2|))) |#2| |#2|)) |%noBranch|)) (-13 (-541) (-823) (-145)) (-423 |#1|)) (T -425))
-((-2405 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-541) (-823) (-145))) (-5 *2 (-2 (|:| |primelt| *3) (|:| |pol1| (-1139 *3)) (|:| |pol2| (-1139 *3)) (|:| |prim| (-1139 *3)))) (-5 *1 (-425 *4 *3)) (-4 *3 (-27)) (-4 *3 (-423 *4)))) (-2405 (*1 *2 *3) (-12 (-5 *3 (-621 *5)) (-4 *5 (-423 *4)) (-4 *4 (-13 (-541) (-823) (-145))) (-5 *2 (-2 (|:| |primelt| *5) (|:| |poly| (-621 (-1139 *5))) (|:| |prim| (-1139 *5)))) (-5 *1 (-425 *4 *5)))))
-(-10 -7 (-15 -2405 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-621 (-1139 |#2|))) (|:| |prim| (-1139 |#2|))) (-621 |#2|))) (IF (|has| |#2| (-27)) (-15 -2405 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1139 |#2|)) (|:| |pol2| (-1139 |#2|)) (|:| |prim| (-1139 |#2|))) |#2| |#2|)) |%noBranch|))
-((-1930 (((-1231)) 19)) (-4046 (((-1139 (-400 (-549))) |#2| (-592 |#2|)) 41) (((-400 (-549)) |#2|) 25)))
-(((-426 |#1| |#2|) (-10 -7 (-15 -4046 ((-400 (-549)) |#2|)) (-15 -4046 ((-1139 (-400 (-549))) |#2| (-592 |#2|))) (-15 -1930 ((-1231)))) (-13 (-823) (-541) (-1009 (-549))) (-423 |#1|)) (T -426))
-((-1930 (*1 *2) (-12 (-4 *3 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-1231)) (-5 *1 (-426 *3 *4)) (-4 *4 (-423 *3)))) (-4046 (*1 *2 *3 *4) (-12 (-5 *4 (-592 *3)) (-4 *3 (-423 *5)) (-4 *5 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-1139 (-400 (-549)))) (-5 *1 (-426 *5 *3)))) (-4046 (*1 *2 *3) (-12 (-4 *4 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-400 (-549))) (-5 *1 (-426 *4 *3)) (-4 *3 (-423 *4)))))
-(-10 -7 (-15 -4046 ((-400 (-549)) |#2|)) (-15 -4046 ((-1139 (-400 (-549))) |#2| (-592 |#2|))) (-15 -1930 ((-1231))))
-((-3530 (((-112) $) 28)) (-3833 (((-112) $) 30)) (-2528 (((-112) $) 31)) (-3998 (((-112) $) 34)) (-3959 (((-112) $) 29)) (-3058 (((-112) $) 33)) (-3846 (((-834) $) 18) (($ (-1125)) 27) (($ (-1143)) 23) (((-1143) $) 22) (((-1071) $) 21)) (-2109 (((-112) $) 32)) (-2389 (((-112) $ $) 15)))
-(((-427) (-13 (-593 (-834)) (-10 -8 (-15 -3846 ($ (-1125))) (-15 -3846 ($ (-1143))) (-15 -3846 ((-1143) $)) (-15 -3846 ((-1071) $)) (-15 -3530 ((-112) $)) (-15 -3959 ((-112) $)) (-15 -2528 ((-112) $)) (-15 -3058 ((-112) $)) (-15 -3998 ((-112) $)) (-15 -2109 ((-112) $)) (-15 -3833 ((-112) $)) (-15 -2389 ((-112) $ $))))) (T -427))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-427)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-427)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-427)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-1071)) (-5 *1 (-427)))) (-3530 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))) (-3959 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))) (-2528 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))) (-3058 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))) (-3998 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))) (-2109 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))) (-3833 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))) (-2389 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))))
-(-13 (-593 (-834)) (-10 -8 (-15 -3846 ($ (-1125))) (-15 -3846 ($ (-1143))) (-15 -3846 ((-1143) $)) (-15 -3846 ((-1071) $)) (-15 -3530 ((-112) $)) (-15 -3959 ((-112) $)) (-15 -2528 ((-112) $)) (-15 -3058 ((-112) $)) (-15 -3998 ((-112) $)) (-15 -2109 ((-112) $)) (-15 -3833 ((-112) $)) (-15 -2389 ((-112) $ $))))
-((-2509 (((-3 (-411 (-1139 (-400 (-549)))) "failed") |#3|) 70)) (-2874 (((-411 |#3|) |#3|) 34)) (-1959 (((-3 (-411 (-1139 (-48))) "failed") |#3|) 46 (|has| |#2| (-1009 (-48))))) (-3023 (((-3 (|:| |overq| (-1139 (-400 (-549)))) (|:| |overan| (-1139 (-48))) (|:| -4151 (-112))) |#3|) 37)))
-(((-428 |#1| |#2| |#3|) (-10 -7 (-15 -2874 ((-411 |#3|) |#3|)) (-15 -2509 ((-3 (-411 (-1139 (-400 (-549)))) "failed") |#3|)) (-15 -3023 ((-3 (|:| |overq| (-1139 (-400 (-549)))) (|:| |overan| (-1139 (-48))) (|:| -4151 (-112))) |#3|)) (IF (|has| |#2| (-1009 (-48))) (-15 -1959 ((-3 (-411 (-1139 (-48))) "failed") |#3|)) |%noBranch|)) (-13 (-541) (-823) (-1009 (-549))) (-423 |#1|) (-1202 |#2|)) (T -428))
-((-1959 (*1 *2 *3) (|partial| -12 (-4 *5 (-1009 (-48))) (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-4 *5 (-423 *4)) (-5 *2 (-411 (-1139 (-48)))) (-5 *1 (-428 *4 *5 *3)) (-4 *3 (-1202 *5)))) (-3023 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-4 *5 (-423 *4)) (-5 *2 (-3 (|:| |overq| (-1139 (-400 (-549)))) (|:| |overan| (-1139 (-48))) (|:| -4151 (-112)))) (-5 *1 (-428 *4 *5 *3)) (-4 *3 (-1202 *5)))) (-2509 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-4 *5 (-423 *4)) (-5 *2 (-411 (-1139 (-400 (-549))))) (-5 *1 (-428 *4 *5 *3)) (-4 *3 (-1202 *5)))) (-2874 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-4 *5 (-423 *4)) (-5 *2 (-411 *3)) (-5 *1 (-428 *4 *5 *3)) (-4 *3 (-1202 *5)))))
-(-10 -7 (-15 -2874 ((-411 |#3|) |#3|)) (-15 -2509 ((-3 (-411 (-1139 (-400 (-549)))) "failed") |#3|)) (-15 -3023 ((-3 (|:| |overq| (-1139 (-400 (-549)))) (|:| |overan| (-1139 (-48))) (|:| -4151 (-112))) |#3|)) (IF (|has| |#2| (-1009 (-48))) (-15 -1959 ((-3 (-411 (-1139 (-48))) "failed") |#3|)) |%noBranch|))
-((-3834 (((-112) $ $) NIL)) (-3113 (((-1125) $ (-1125)) NIL)) (-2060 (($ $ (-1125)) NIL)) (-3001 (((-1125) $) NIL)) (-4063 (((-381) (-381) (-381)) 17) (((-381) (-381)) 15)) (-1359 (($ (-381)) NIL) (($ (-381) (-1125)) NIL)) (-2481 (((-381) $) NIL)) (-3851 (((-1125) $) NIL)) (-2646 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2244 (((-1231) (-1125)) 9)) (-3071 (((-1231) (-1125)) 10)) (-2590 (((-1231)) 11)) (-3846 (((-834) $) NIL)) (-3578 (($ $) 35)) (-2389 (((-112) $ $) NIL)))
-(((-429) (-13 (-357 (-381) (-1125)) (-10 -7 (-15 -4063 ((-381) (-381) (-381))) (-15 -4063 ((-381) (-381))) (-15 -2244 ((-1231) (-1125))) (-15 -3071 ((-1231) (-1125))) (-15 -2590 ((-1231)))))) (T -429))
-((-4063 (*1 *2 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-429)))) (-4063 (*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-429)))) (-2244 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-429)))) (-3071 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-429)))) (-2590 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-429)))))
-(-13 (-357 (-381) (-1125)) (-10 -7 (-15 -4063 ((-381) (-381) (-381))) (-15 -4063 ((-381) (-381))) (-15 -2244 ((-1231) (-1125))) (-15 -3071 ((-1231) (-1125))) (-15 -2590 ((-1231)))))
-((-3834 (((-112) $ $) NIL)) (-3925 (((-3 (|:| |fst| (-427)) (|:| -2903 "void")) $) 11)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2073 (($) 32)) (-3101 (($) 38)) (-3974 (($) 34)) (-4053 (($) 36)) (-4199 (($) 33)) (-3392 (($) 35)) (-3913 (($) 37)) (-2680 (((-112) $) 8)) (-3342 (((-621 (-923 (-549))) $) 19)) (-3854 (($ (-3 (|:| |fst| (-427)) (|:| -2903 "void")) (-621 (-1143)) (-112)) 27) (($ (-3 (|:| |fst| (-427)) (|:| -2903 "void")) (-621 (-923 (-549))) (-112)) 28)) (-3846 (((-834) $) 23) (($ (-427)) 29)) (-2389 (((-112) $ $) NIL)))
-(((-430) (-13 (-1067) (-10 -8 (-15 -3846 ((-834) $)) (-15 -3846 ($ (-427))) (-15 -3925 ((-3 (|:| |fst| (-427)) (|:| -2903 "void")) $)) (-15 -3342 ((-621 (-923 (-549))) $)) (-15 -2680 ((-112) $)) (-15 -3854 ($ (-3 (|:| |fst| (-427)) (|:| -2903 "void")) (-621 (-1143)) (-112))) (-15 -3854 ($ (-3 (|:| |fst| (-427)) (|:| -2903 "void")) (-621 (-923 (-549))) (-112))) (-15 -2073 ($)) (-15 -4199 ($)) (-15 -3974 ($)) (-15 -3101 ($)) (-15 -3392 ($)) (-15 -4053 ($)) (-15 -3913 ($))))) (T -430))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-430)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-427)) (-5 *1 (-430)))) (-3925 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-5 *1 (-430)))) (-3342 (*1 *2 *1) (-12 (-5 *2 (-621 (-923 (-549)))) (-5 *1 (-430)))) (-2680 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-430)))) (-3854 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-5 *3 (-621 (-1143))) (-5 *4 (-112)) (-5 *1 (-430)))) (-3854 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-112)) (-5 *1 (-430)))) (-2073 (*1 *1) (-5 *1 (-430))) (-4199 (*1 *1) (-5 *1 (-430))) (-3974 (*1 *1) (-5 *1 (-430))) (-3101 (*1 *1) (-5 *1 (-430))) (-3392 (*1 *1) (-5 *1 (-430))) (-4053 (*1 *1) (-5 *1 (-430))) (-3913 (*1 *1) (-5 *1 (-430))))
-(-13 (-1067) (-10 -8 (-15 -3846 ((-834) $)) (-15 -3846 ($ (-427))) (-15 -3925 ((-3 (|:| |fst| (-427)) (|:| -2903 "void")) $)) (-15 -3342 ((-621 (-923 (-549))) $)) (-15 -2680 ((-112) $)) (-15 -3854 ($ (-3 (|:| |fst| (-427)) (|:| -2903 "void")) (-621 (-1143)) (-112))) (-15 -3854 ($ (-3 (|:| |fst| (-427)) (|:| -2903 "void")) (-621 (-923 (-549))) (-112))) (-15 -2073 ($)) (-15 -4199 ($)) (-15 -3974 ($)) (-15 -3101 ($)) (-15 -3392 ($)) (-15 -4053 ($)) (-15 -3913 ($))))
-((-3834 (((-112) $ $) NIL)) (-2481 (((-1143) $) 8)) (-3851 (((-1125) $) 16)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 11)) (-2389 (((-112) $ $) 13)))
-(((-431 |#1|) (-13 (-1067) (-10 -8 (-15 -2481 ((-1143) $)))) (-1143)) (T -431))
-((-2481 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-431 *3)) (-14 *3 *2))))
-(-13 (-1067) (-10 -8 (-15 -2481 ((-1143) $))))
-((-3316 (((-1231) $) 7)) (-3846 (((-834) $) 8) (($ (-1226 (-675))) 14) (($ (-621 (-323))) 13) (($ (-323)) 12) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 11)))
+((-2001 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-823)) (-5 *2 (-112)))) (-2011 (*1 *2 *1) (-12 (-4 *1 (-423 *2)) (-4 *2 (-823)))) (-2270 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-823)) (-5 *2 (-621 (-1142))))) (-1787 (*1 *1 *2 *1) (-12 (-5 *2 (-1142)) (-4 *1 (-423 *3)) (-4 *3 (-823)))) (-1787 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1142)) (-4 *1 (-423 *3)) (-4 *3 (-823)))) (-1787 (*1 *1 *2 *1 *1 *1) (-12 (-5 *2 (-1142)) (-4 *1 (-423 *3)) (-4 *3 (-823)))) (-1787 (*1 *1 *2 *1 *1 *1 *1) (-12 (-5 *2 (-1142)) (-4 *1 (-423 *3)) (-4 *3 (-823)))) (-1787 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-621 *1)) (-4 *1 (-423 *4)) (-4 *4 (-823)))) (-2684 (*1 *1 *1 *2) (-12 (-5 *2 (-1142)) (-4 *1 (-423 *3)) (-4 *3 (-823)) (-4 *3 (-594 (-525))))) (-2684 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-1142))) (-4 *1 (-423 *3)) (-4 *3 (-823)) (-4 *3 (-594 (-525))))) (-2684 (*1 *1 *1) (-12 (-4 *1 (-423 *2)) (-4 *2 (-823)) (-4 *2 (-594 (-525))))) (-2684 (*1 *1 *1 *2 *1 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1142)) (-4 *1 (-423 *4)) (-4 *4 (-823)) (-4 *4 (-594 (-525))))) (-2684 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-621 (-114))) (-5 *3 (-621 *1)) (-5 *4 (-1142)) (-4 *1 (-423 *5)) (-4 *5 (-823)) (-4 *5 (-594 (-525))))) (-4093 (*1 *2 *1) (|partial| -12 (-4 *3 (-1078)) (-4 *3 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-423 *3)))) (-1477 (*1 *2 *1) (|partial| -12 (-4 *3 (-1078)) (-4 *3 (-823)) (-5 *2 (-2 (|:| |var| (-592 *1)) (|:| -1714 (-549)))) (-4 *1 (-423 *3)))) (-1503 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-423 *3)))) (-3570 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-823)) (-5 *2 (-2 (|:| -1569 (-549)) (|:| |var| (-592 *1)))) (-4 *1 (-423 *3)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-1091 *3 (-592 *1))) (-4 *3 (-1018)) (-4 *3 (-823)) (-4 *1 (-423 *3)))) (-1392 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *3 (-823)) (-5 *2 (-1091 *3 (-592 *1))) (-4 *1 (-423 *3)))) (-2096 (*1 *1 *1) (-12 (-4 *1 (-423 *2)) (-4 *2 (-823)) (-4 *2 (-1018)))) (-1477 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-114)) (-4 *4 (-1018)) (-4 *4 (-823)) (-5 *2 (-2 (|:| |var| (-592 *1)) (|:| -1714 (-549)))) (-4 *1 (-423 *4)))) (-1477 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1142)) (-4 *4 (-1018)) (-4 *4 (-823)) (-5 *2 (-2 (|:| |var| (-592 *1)) (|:| -1714 (-549)))) (-4 *1 (-423 *4)))) (-3257 (*1 *2 *1) (|partial| -12 (-4 *3 (-1018)) (-4 *3 (-823)) (-5 *2 (-2 (|:| |val| *1) (|:| -1714 (-549)))) (-4 *1 (-423 *3)))) (-2684 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-621 (-1142))) (-5 *3 (-621 (-747))) (-5 *4 (-621 (-1 *1 *1))) (-4 *1 (-423 *5)) (-4 *5 (-823)) (-4 *5 (-1018)))) (-2684 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-621 (-1142))) (-5 *3 (-621 (-747))) (-5 *4 (-621 (-1 *1 (-621 *1)))) (-4 *1 (-423 *5)) (-4 *5 (-823)) (-4 *5 (-1018)))) (-2684 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1142)) (-5 *3 (-747)) (-5 *4 (-1 *1 (-621 *1))) (-4 *1 (-423 *5)) (-4 *5 (-823)) (-4 *5 (-1018)))) (-2684 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1142)) (-5 *3 (-747)) (-5 *4 (-1 *1 *1)) (-4 *1 (-423 *5)) (-4 *5 (-823)) (-4 *5 (-1018)))) (-2843 (*1 *1 *2) (-12 (-5 *2 (-411 *1)) (-4 *1 (-423 *3)) (-4 *3 (-541)) (-4 *3 (-823)))) (-1404 (*1 *2 *1) (-12 (-4 *3 (-541)) (-4 *3 (-823)) (-5 *2 (-1091 *3 (-592 *1))) (-4 *1 (-423 *3)))) (-4095 (*1 *1 *1) (-12 (-4 *1 (-423 *2)) (-4 *2 (-823)) (-4 *2 (-541)))) (-2511 (*1 *1 *2 *2) (-12 (-5 *2 (-1091 *3 (-592 *1))) (-4 *3 (-541)) (-4 *3 (-823)) (-4 *1 (-423 *3)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-400 *3)) (-4 *3 (-541)) (-4 *3 (-823)) (-4 *1 (-423 *3)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-923 (-400 *3))) (-4 *3 (-541)) (-4 *3 (-823)) (-4 *1 (-423 *3)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-400 (-923 (-400 *3)))) (-4 *3 (-541)) (-4 *3 (-823)) (-4 *1 (-423 *3)))) (-2082 (*1 *2 *1 *3) (-12 (-5 *3 (-592 *1)) (-4 *1 (-423 *4)) (-4 *4 (-823)) (-4 *4 (-541)) (-5 *2 (-400 (-1138 *1))))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-423 *3)) (-4 *3 (-823)) (-4 *3 (-1078)))))
+(-13 (-295) (-1009 (-1142)) (-855 |t#1|) (-393 |t#1|) (-404 |t#1|) (-10 -8 (-15 -2001 ((-112) $)) (-15 -2011 (|t#1| $)) (-15 -2270 ((-621 (-1142)) $)) (-15 -1787 ($ (-1142) $)) (-15 -1787 ($ (-1142) $ $)) (-15 -1787 ($ (-1142) $ $ $)) (-15 -1787 ($ (-1142) $ $ $ $)) (-15 -1787 ($ (-1142) (-621 $))) (IF (|has| |t#1| (-594 (-525))) (PROGN (-6 (-594 (-525))) (-15 -2684 ($ $ (-1142))) (-15 -2684 ($ $ (-621 (-1142)))) (-15 -2684 ($ $)) (-15 -2684 ($ $ (-114) $ (-1142))) (-15 -2684 ($ $ (-621 (-114)) (-621 $) (-1142)))) |%noBranch|) (IF (|has| |t#1| (-1078)) (PROGN (-6 (-703)) (-15 ** ($ $ (-747))) (-15 -4093 ((-3 (-621 $) "failed") $)) (-15 -1477 ((-3 (-2 (|:| |var| (-592 $)) (|:| -1714 (-549))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-465)) (-6 (-465)) |%noBranch|) (IF (|has| |t#1| (-25)) (PROGN (-6 (-23)) (-15 -1503 ((-3 (-621 $) "failed") $)) (-15 -3570 ((-3 (-2 (|:| -1569 (-549)) (|:| |var| (-592 $))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |t#1| (-1018)) (PROGN (-6 (-1018)) (-6 (-1009 (-923 |t#1|))) (-6 (-871 (-1142))) (-6 (-370 |t#1|)) (-15 -3845 ($ (-1091 |t#1| (-592 $)))) (-15 -1392 ((-1091 |t#1| (-592 $)) $)) (-15 -2096 ($ $)) (-15 -1477 ((-3 (-2 (|:| |var| (-592 $)) (|:| -1714 (-549))) "failed") $ (-114))) (-15 -1477 ((-3 (-2 (|:| |var| (-592 $)) (|:| -1714 (-549))) "failed") $ (-1142))) (-15 -3257 ((-3 (-2 (|:| |val| $) (|:| -1714 (-549))) "failed") $)) (-15 -2684 ($ $ (-621 (-1142)) (-621 (-747)) (-621 (-1 $ $)))) (-15 -2684 ($ $ (-621 (-1142)) (-621 (-747)) (-621 (-1 $ (-621 $))))) (-15 -2684 ($ $ (-1142) (-747) (-1 $ (-621 $)))) (-15 -2684 ($ $ (-1142) (-747) (-1 $ $)))) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |t#1| (-170)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-541)) (PROGN (-6 (-356)) (-6 (-1009 (-400 (-923 |t#1|)))) (-15 -2843 ($ (-411 $))) (-15 -1404 ((-1091 |t#1| (-592 $)) $)) (-15 -4095 ($ $)) (-15 -2511 ($ (-1091 |t#1| (-592 $)) (-1091 |t#1| (-592 $)))) (-15 -3845 ($ (-400 |t#1|))) (-15 -3845 ($ (-923 (-400 |t#1|)))) (-15 -3845 ($ (-400 (-923 (-400 |t#1|))))) (-15 -2082 ((-400 (-1138 $)) $ (-592 $))) (IF (|has| |t#1| (-1009 (-549))) (-6 (-1009 (-400 (-549)))) |%noBranch|)) |%noBranch|)))
+(((-21) -1536 (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143)) (|has| |#1| (-21))) ((-23) -1536 (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-25) -1536 (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-38 #0=(-400 (-549))) |has| |#1| (-541)) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) |has| |#1| (-541)) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-541)) ((-111 |#1| |#1|) |has| |#1| (-170)) ((-111 $ $) |has| |#1| (-541)) ((-130) -1536 (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143)) (|has| |#1| (-21))) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) |has| |#1| (-541)) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-594 (-863 (-372))) |has| |#1| (-594 (-863 (-372)))) ((-594 (-863 (-549))) |has| |#1| (-594 (-863 (-549)))) ((-237) |has| |#1| (-541)) ((-283) |has| |#1| (-541)) ((-300) |has| |#1| (-541)) ((-302 $) . T) ((-295) . T) ((-356) |has| |#1| (-541)) ((-370 |#1|) |has| |#1| (-1018)) ((-393 |#1|) . T) ((-404 |#1|) . T) ((-444) |has| |#1| (-541)) ((-465) |has| |#1| (-465)) ((-505 (-592 $) $) . T) ((-505 $ $) . T) ((-541) |has| |#1| (-541)) ((-624 #0#) |has| |#1| (-541)) ((-624 |#1|) |has| |#1| (-170)) ((-624 $) -1536 (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143))) ((-617 (-549)) -12 (|has| |#1| (-617 (-549))) (|has| |#1| (-1018))) ((-617 |#1|) |has| |#1| (-1018)) ((-694 #0#) |has| |#1| (-541)) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) |has| |#1| (-541)) ((-703) -1536 (|has| |#1| (-1078)) (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-465)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143))) ((-823) . T) ((-871 (-1142)) |has| |#1| (-1018)) ((-857 (-372)) |has| |#1| (-857 (-372))) ((-857 (-549)) |has| |#1| (-857 (-549))) ((-855 |#1|) . T) ((-891) |has| |#1| (-541)) ((-1009 (-400 (-549))) -1536 (|has| |#1| (-1009 (-400 (-549)))) (-12 (|has| |#1| (-541)) (|has| |#1| (-1009 (-549))))) ((-1009 (-400 (-923 |#1|))) |has| |#1| (-541)) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 (-592 $)) . T) ((-1009 (-923 |#1|)) |has| |#1| (-1018)) ((-1009 (-1142)) . T) ((-1009 |#1|) . T) ((-1024 #0#) |has| |#1| (-541)) ((-1024 |#1|) |has| |#1| (-170)) ((-1024 $) |has| |#1| (-541)) ((-1018) -1536 (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143))) ((-1025) -1536 (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143))) ((-1078) -1536 (|has| |#1| (-1078)) (|has| |#1| (-1018)) (|has| |#1| (-541)) (|has| |#1| (-465)) (|has| |#1| (-170)) (|has| |#1| (-145)) (|has| |#1| (-143))) ((-1066) . T) ((-1179) . T) ((-1183) |has| |#1| (-541)))
+((-2974 ((|#2| |#2| |#2|) 33)) (-3500 (((-114) (-114)) 44)) (-1845 ((|#2| |#2|) 66)) (-1327 ((|#2| |#2|) 69)) (-2711 ((|#2| |#2|) 32)) (-3146 ((|#2| |#2| |#2|) 35)) (-4288 ((|#2| |#2| |#2|) 37)) (-3112 ((|#2| |#2| |#2|) 34)) (-2052 ((|#2| |#2| |#2|) 36)) (-2444 (((-112) (-114)) 42)) (-3241 ((|#2| |#2|) 39)) (-2016 ((|#2| |#2|) 38)) (-2199 ((|#2| |#2|) 27)) (-3695 ((|#2| |#2| |#2|) 30) ((|#2| |#2|) 28)) (-2051 ((|#2| |#2| |#2|) 31)))
+(((-424 |#1| |#2|) (-10 -7 (-15 -2444 ((-112) (-114))) (-15 -3500 ((-114) (-114))) (-15 -2199 (|#2| |#2|)) (-15 -3695 (|#2| |#2|)) (-15 -3695 (|#2| |#2| |#2|)) (-15 -2051 (|#2| |#2| |#2|)) (-15 -2711 (|#2| |#2|)) (-15 -2974 (|#2| |#2| |#2|)) (-15 -3112 (|#2| |#2| |#2|)) (-15 -3146 (|#2| |#2| |#2|)) (-15 -2052 (|#2| |#2| |#2|)) (-15 -4288 (|#2| |#2| |#2|)) (-15 -2016 (|#2| |#2|)) (-15 -3241 (|#2| |#2|)) (-15 -1327 (|#2| |#2|)) (-15 -1845 (|#2| |#2|))) (-13 (-823) (-541)) (-423 |#1|)) (T -424))
+((-1845 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-1327 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-3241 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-2016 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-4288 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-2052 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-3146 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-3112 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-2974 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-2711 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-2051 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-3695 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-3695 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-2199 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2)) (-4 *2 (-423 *3)))) (-3500 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *4)) (-4 *4 (-423 *3)))) (-2444 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112)) (-5 *1 (-424 *4 *5)) (-4 *5 (-423 *4)))))
+(-10 -7 (-15 -2444 ((-112) (-114))) (-15 -3500 ((-114) (-114))) (-15 -2199 (|#2| |#2|)) (-15 -3695 (|#2| |#2|)) (-15 -3695 (|#2| |#2| |#2|)) (-15 -2051 (|#2| |#2| |#2|)) (-15 -2711 (|#2| |#2|)) (-15 -2974 (|#2| |#2| |#2|)) (-15 -3112 (|#2| |#2| |#2|)) (-15 -3146 (|#2| |#2| |#2|)) (-15 -2052 (|#2| |#2| |#2|)) (-15 -4288 (|#2| |#2| |#2|)) (-15 -2016 (|#2| |#2|)) (-15 -3241 (|#2| |#2|)) (-15 -1327 (|#2| |#2|)) (-15 -1845 (|#2| |#2|)))
+((-1545 (((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1138 |#2|)) (|:| |pol2| (-1138 |#2|)) (|:| |prim| (-1138 |#2|))) |#2| |#2|) 97 (|has| |#2| (-27))) (((-2 (|:| |primelt| |#2|) (|:| |poly| (-621 (-1138 |#2|))) (|:| |prim| (-1138 |#2|))) (-621 |#2|)) 61)))
+(((-425 |#1| |#2|) (-10 -7 (-15 -1545 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-621 (-1138 |#2|))) (|:| |prim| (-1138 |#2|))) (-621 |#2|))) (IF (|has| |#2| (-27)) (-15 -1545 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1138 |#2|)) (|:| |pol2| (-1138 |#2|)) (|:| |prim| (-1138 |#2|))) |#2| |#2|)) |%noBranch|)) (-13 (-541) (-823) (-145)) (-423 |#1|)) (T -425))
+((-1545 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-541) (-823) (-145))) (-5 *2 (-2 (|:| |primelt| *3) (|:| |pol1| (-1138 *3)) (|:| |pol2| (-1138 *3)) (|:| |prim| (-1138 *3)))) (-5 *1 (-425 *4 *3)) (-4 *3 (-27)) (-4 *3 (-423 *4)))) (-1545 (*1 *2 *3) (-12 (-5 *3 (-621 *5)) (-4 *5 (-423 *4)) (-4 *4 (-13 (-541) (-823) (-145))) (-5 *2 (-2 (|:| |primelt| *5) (|:| |poly| (-621 (-1138 *5))) (|:| |prim| (-1138 *5)))) (-5 *1 (-425 *4 *5)))))
+(-10 -7 (-15 -1545 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-621 (-1138 |#2|))) (|:| |prim| (-1138 |#2|))) (-621 |#2|))) (IF (|has| |#2| (-27)) (-15 -1545 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1138 |#2|)) (|:| |pol2| (-1138 |#2|)) (|:| |prim| (-1138 |#2|))) |#2| |#2|)) |%noBranch|))
+((-1267 (((-1230)) 19)) (-1567 (((-1138 (-400 (-549))) |#2| (-592 |#2|)) 41) (((-400 (-549)) |#2|) 25)))
+(((-426 |#1| |#2|) (-10 -7 (-15 -1567 ((-400 (-549)) |#2|)) (-15 -1567 ((-1138 (-400 (-549))) |#2| (-592 |#2|))) (-15 -1267 ((-1230)))) (-13 (-823) (-541) (-1009 (-549))) (-423 |#1|)) (T -426))
+((-1267 (*1 *2) (-12 (-4 *3 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-1230)) (-5 *1 (-426 *3 *4)) (-4 *4 (-423 *3)))) (-1567 (*1 *2 *3 *4) (-12 (-5 *4 (-592 *3)) (-4 *3 (-423 *5)) (-4 *5 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-1138 (-400 (-549)))) (-5 *1 (-426 *5 *3)))) (-1567 (*1 *2 *3) (-12 (-4 *4 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-400 (-549))) (-5 *1 (-426 *4 *3)) (-4 *3 (-423 *4)))))
+(-10 -7 (-15 -1567 ((-400 (-549)) |#2|)) (-15 -1567 ((-1138 (-400 (-549))) |#2| (-592 |#2|))) (-15 -1267 ((-1230))))
+((-2033 (((-112) $) 28)) (-2458 (((-112) $) 30)) (-2276 (((-112) $) 31)) (-4196 (((-112) $) 34)) (-1938 (((-112) $) 29)) (-2655 (((-112) $) 33)) (-3845 (((-834) $) 18) (($ (-1124)) 27) (($ (-1142)) 23) (((-1142) $) 22) (((-1070) $) 21)) (-3129 (((-112) $) 32)) (-2387 (((-112) $ $) 15)))
+(((-427) (-13 (-593 (-834)) (-10 -8 (-15 -3845 ($ (-1124))) (-15 -3845 ($ (-1142))) (-15 -3845 ((-1142) $)) (-15 -3845 ((-1070) $)) (-15 -2033 ((-112) $)) (-15 -1938 ((-112) $)) (-15 -2276 ((-112) $)) (-15 -2655 ((-112) $)) (-15 -4196 ((-112) $)) (-15 -3129 ((-112) $)) (-15 -2458 ((-112) $)) (-15 -2387 ((-112) $ $))))) (T -427))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-427)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-427)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-427)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-427)))) (-2033 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))) (-1938 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))) (-2276 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))) (-2655 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))) (-4196 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))) (-3129 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))) (-2458 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))) (-2387 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))))
+(-13 (-593 (-834)) (-10 -8 (-15 -3845 ($ (-1124))) (-15 -3845 ($ (-1142))) (-15 -3845 ((-1142) $)) (-15 -3845 ((-1070) $)) (-15 -2033 ((-112) $)) (-15 -1938 ((-112) $)) (-15 -2276 ((-112) $)) (-15 -2655 ((-112) $)) (-15 -4196 ((-112) $)) (-15 -3129 ((-112) $)) (-15 -2458 ((-112) $)) (-15 -2387 ((-112) $ $))))
+((-4028 (((-3 (-411 (-1138 (-400 (-549)))) "failed") |#3|) 70)) (-1607 (((-411 |#3|) |#3|) 34)) (-4026 (((-3 (-411 (-1138 (-48))) "failed") |#3|) 46 (|has| |#2| (-1009 (-48))))) (-3156 (((-3 (|:| |overq| (-1138 (-400 (-549)))) (|:| |overan| (-1138 (-48))) (|:| -4150 (-112))) |#3|) 37)))
+(((-428 |#1| |#2| |#3|) (-10 -7 (-15 -1607 ((-411 |#3|) |#3|)) (-15 -4028 ((-3 (-411 (-1138 (-400 (-549)))) "failed") |#3|)) (-15 -3156 ((-3 (|:| |overq| (-1138 (-400 (-549)))) (|:| |overan| (-1138 (-48))) (|:| -4150 (-112))) |#3|)) (IF (|has| |#2| (-1009 (-48))) (-15 -4026 ((-3 (-411 (-1138 (-48))) "failed") |#3|)) |%noBranch|)) (-13 (-541) (-823) (-1009 (-549))) (-423 |#1|) (-1201 |#2|)) (T -428))
+((-4026 (*1 *2 *3) (|partial| -12 (-4 *5 (-1009 (-48))) (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-4 *5 (-423 *4)) (-5 *2 (-411 (-1138 (-48)))) (-5 *1 (-428 *4 *5 *3)) (-4 *3 (-1201 *5)))) (-3156 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-4 *5 (-423 *4)) (-5 *2 (-3 (|:| |overq| (-1138 (-400 (-549)))) (|:| |overan| (-1138 (-48))) (|:| -4150 (-112)))) (-5 *1 (-428 *4 *5 *3)) (-4 *3 (-1201 *5)))) (-4028 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-4 *5 (-423 *4)) (-5 *2 (-411 (-1138 (-400 (-549))))) (-5 *1 (-428 *4 *5 *3)) (-4 *3 (-1201 *5)))) (-1607 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-4 *5 (-423 *4)) (-5 *2 (-411 *3)) (-5 *1 (-428 *4 *5 *3)) (-4 *3 (-1201 *5)))))
+(-10 -7 (-15 -1607 ((-411 |#3|) |#3|)) (-15 -4028 ((-3 (-411 (-1138 (-400 (-549)))) "failed") |#3|)) (-15 -3156 ((-3 (|:| |overq| (-1138 (-400 (-549)))) (|:| |overan| (-1138 (-48))) (|:| -4150 (-112))) |#3|)) (IF (|has| |#2| (-1009 (-48))) (-15 -4026 ((-3 (-411 (-1138 (-48))) "failed") |#3|)) |%noBranch|))
+((-3832 (((-112) $ $) NIL)) (-2145 (((-1124) $ (-1124)) NIL)) (-4295 (($ $ (-1124)) NIL)) (-3937 (((-1124) $) NIL)) (-3683 (((-381) (-381) (-381)) 17) (((-381) (-381)) 15)) (-1358 (($ (-381)) NIL) (($ (-381) (-1124)) NIL)) (-2479 (((-381) $) NIL)) (-3441 (((-1124) $) NIL)) (-3939 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-4296 (((-1230) (-1124)) 9)) (-3233 (((-1230) (-1124)) 10)) (-1908 (((-1230)) 11)) (-3845 (((-834) $) NIL)) (-2384 (($ $) 35)) (-2387 (((-112) $ $) NIL)))
+(((-429) (-13 (-357 (-381) (-1124)) (-10 -7 (-15 -3683 ((-381) (-381) (-381))) (-15 -3683 ((-381) (-381))) (-15 -4296 ((-1230) (-1124))) (-15 -3233 ((-1230) (-1124))) (-15 -1908 ((-1230)))))) (T -429))
+((-3683 (*1 *2 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-429)))) (-3683 (*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-429)))) (-4296 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-429)))) (-3233 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-429)))) (-1908 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-429)))))
+(-13 (-357 (-381) (-1124)) (-10 -7 (-15 -3683 ((-381) (-381) (-381))) (-15 -3683 ((-381) (-381))) (-15 -4296 ((-1230) (-1124))) (-15 -3233 ((-1230) (-1124))) (-15 -1908 ((-1230)))))
+((-3832 (((-112) $ $) NIL)) (-1982 (((-3 (|:| |fst| (-427)) (|:| -2901 "void")) $) 11)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2887 (($) 32)) (-3610 (($) 38)) (-2816 (($) 34)) (-3879 (($) 36)) (-2241 (($) 33)) (-3052 (($) 35)) (-4227 (($) 37)) (-2721 (((-112) $) 8)) (-2577 (((-621 (-923 (-549))) $) 19)) (-3853 (($ (-3 (|:| |fst| (-427)) (|:| -2901 "void")) (-621 (-1142)) (-112)) 27) (($ (-3 (|:| |fst| (-427)) (|:| -2901 "void")) (-621 (-923 (-549))) (-112)) 28)) (-3845 (((-834) $) 23) (($ (-427)) 29)) (-2387 (((-112) $ $) NIL)))
+(((-430) (-13 (-1066) (-10 -8 (-15 -3845 ((-834) $)) (-15 -3845 ($ (-427))) (-15 -1982 ((-3 (|:| |fst| (-427)) (|:| -2901 "void")) $)) (-15 -2577 ((-621 (-923 (-549))) $)) (-15 -2721 ((-112) $)) (-15 -3853 ($ (-3 (|:| |fst| (-427)) (|:| -2901 "void")) (-621 (-1142)) (-112))) (-15 -3853 ($ (-3 (|:| |fst| (-427)) (|:| -2901 "void")) (-621 (-923 (-549))) (-112))) (-15 -2887 ($)) (-15 -2241 ($)) (-15 -2816 ($)) (-15 -3610 ($)) (-15 -3052 ($)) (-15 -3879 ($)) (-15 -4227 ($))))) (T -430))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-430)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-427)) (-5 *1 (-430)))) (-1982 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-5 *1 (-430)))) (-2577 (*1 *2 *1) (-12 (-5 *2 (-621 (-923 (-549)))) (-5 *1 (-430)))) (-2721 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-430)))) (-3853 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-5 *3 (-621 (-1142))) (-5 *4 (-112)) (-5 *1 (-430)))) (-3853 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-112)) (-5 *1 (-430)))) (-2887 (*1 *1) (-5 *1 (-430))) (-2241 (*1 *1) (-5 *1 (-430))) (-2816 (*1 *1) (-5 *1 (-430))) (-3610 (*1 *1) (-5 *1 (-430))) (-3052 (*1 *1) (-5 *1 (-430))) (-3879 (*1 *1) (-5 *1 (-430))) (-4227 (*1 *1) (-5 *1 (-430))))
+(-13 (-1066) (-10 -8 (-15 -3845 ((-834) $)) (-15 -3845 ($ (-427))) (-15 -1982 ((-3 (|:| |fst| (-427)) (|:| -2901 "void")) $)) (-15 -2577 ((-621 (-923 (-549))) $)) (-15 -2721 ((-112) $)) (-15 -3853 ($ (-3 (|:| |fst| (-427)) (|:| -2901 "void")) (-621 (-1142)) (-112))) (-15 -3853 ($ (-3 (|:| |fst| (-427)) (|:| -2901 "void")) (-621 (-923 (-549))) (-112))) (-15 -2887 ($)) (-15 -2241 ($)) (-15 -2816 ($)) (-15 -3610 ($)) (-15 -3052 ($)) (-15 -3879 ($)) (-15 -4227 ($))))
+((-3832 (((-112) $ $) NIL)) (-2479 (((-1142) $) 8)) (-3441 (((-1124) $) 16)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 11)) (-2387 (((-112) $ $) 13)))
+(((-431 |#1|) (-13 (-1066) (-10 -8 (-15 -2479 ((-1142) $)))) (-1142)) (T -431))
+((-2479 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-431 *3)) (-14 *3 *2))))
+(-13 (-1066) (-10 -8 (-15 -2479 ((-1142) $))))
+((-3314 (((-1230) $) 7)) (-3845 (((-834) $) 8) (($ (-1225 (-675))) 14) (($ (-621 (-323))) 13) (($ (-323)) 12) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 11)))
(((-432) (-138)) (T -432))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1226 (-675))) (-4 *1 (-432)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-4 *1 (-432)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-323)) (-4 *1 (-432)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) (-4 *1 (-432)))))
-(-13 (-388) (-10 -8 (-15 -3846 ($ (-1226 (-675)))) (-15 -3846 ($ (-621 (-323)))) (-15 -3846 ($ (-323))) (-15 -3846 ($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))))))
-(((-593 (-834)) . T) ((-388) . T) ((-1180) . T))
-((-2714 (((-3 $ "failed") (-1226 (-309 (-372)))) 21) (((-3 $ "failed") (-1226 (-309 (-549)))) 19) (((-3 $ "failed") (-1226 (-923 (-372)))) 17) (((-3 $ "failed") (-1226 (-923 (-549)))) 15) (((-3 $ "failed") (-1226 (-400 (-923 (-372))))) 13) (((-3 $ "failed") (-1226 (-400 (-923 (-549))))) 11)) (-2659 (($ (-1226 (-309 (-372)))) 22) (($ (-1226 (-309 (-549)))) 20) (($ (-1226 (-923 (-372)))) 18) (($ (-1226 (-923 (-549)))) 16) (($ (-1226 (-400 (-923 (-372))))) 14) (($ (-1226 (-400 (-923 (-549))))) 12)) (-3316 (((-1231) $) 7)) (-3846 (((-834) $) 8) (($ (-621 (-323))) 25) (($ (-323)) 24) (($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) 23)))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1225 (-675))) (-4 *1 (-432)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-4 *1 (-432)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-323)) (-4 *1 (-432)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) (-4 *1 (-432)))))
+(-13 (-388) (-10 -8 (-15 -3845 ($ (-1225 (-675)))) (-15 -3845 ($ (-621 (-323)))) (-15 -3845 ($ (-323))) (-15 -3845 ($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))))))
+(((-593 (-834)) . T) ((-388) . T) ((-1179) . T))
+((-2712 (((-3 $ "failed") (-1225 (-309 (-372)))) 21) (((-3 $ "failed") (-1225 (-309 (-549)))) 19) (((-3 $ "failed") (-1225 (-923 (-372)))) 17) (((-3 $ "failed") (-1225 (-923 (-549)))) 15) (((-3 $ "failed") (-1225 (-400 (-923 (-372))))) 13) (((-3 $ "failed") (-1225 (-400 (-923 (-549))))) 11)) (-2657 (($ (-1225 (-309 (-372)))) 22) (($ (-1225 (-309 (-549)))) 20) (($ (-1225 (-923 (-372)))) 18) (($ (-1225 (-923 (-549)))) 16) (($ (-1225 (-400 (-923 (-372))))) 14) (($ (-1225 (-400 (-923 (-549))))) 12)) (-3314 (((-1230) $) 7)) (-3845 (((-834) $) 8) (($ (-621 (-323))) 25) (($ (-323)) 24) (($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) 23)))
(((-433) (-138)) (T -433))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-4 *1 (-433)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-323)) (-4 *1 (-433)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323))))) (-4 *1 (-433)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-1226 (-309 (-372)))) (-4 *1 (-433)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-1226 (-309 (-372)))) (-4 *1 (-433)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-1226 (-309 (-549)))) (-4 *1 (-433)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-1226 (-309 (-549)))) (-4 *1 (-433)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-1226 (-923 (-372)))) (-4 *1 (-433)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-1226 (-923 (-372)))) (-4 *1 (-433)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-1226 (-923 (-549)))) (-4 *1 (-433)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-1226 (-923 (-549)))) (-4 *1 (-433)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-1226 (-400 (-923 (-372))))) (-4 *1 (-433)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-1226 (-400 (-923 (-372))))) (-4 *1 (-433)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-1226 (-400 (-923 (-549))))) (-4 *1 (-433)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-1226 (-400 (-923 (-549))))) (-4 *1 (-433)))))
-(-13 (-388) (-10 -8 (-15 -3846 ($ (-621 (-323)))) (-15 -3846 ($ (-323))) (-15 -3846 ($ (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323)))))) (-15 -2659 ($ (-1226 (-309 (-372))))) (-15 -2714 ((-3 $ "failed") (-1226 (-309 (-372))))) (-15 -2659 ($ (-1226 (-309 (-549))))) (-15 -2714 ((-3 $ "failed") (-1226 (-309 (-549))))) (-15 -2659 ($ (-1226 (-923 (-372))))) (-15 -2714 ((-3 $ "failed") (-1226 (-923 (-372))))) (-15 -2659 ($ (-1226 (-923 (-549))))) (-15 -2714 ((-3 $ "failed") (-1226 (-923 (-549))))) (-15 -2659 ($ (-1226 (-400 (-923 (-372)))))) (-15 -2714 ((-3 $ "failed") (-1226 (-400 (-923 (-372)))))) (-15 -2659 ($ (-1226 (-400 (-923 (-549)))))) (-15 -2714 ((-3 $ "failed") (-1226 (-400 (-923 (-549))))))))
-(((-593 (-834)) . T) ((-388) . T) ((-1180) . T))
-((-1455 (((-112)) 17)) (-3637 (((-112) (-112)) 18)) (-4124 (((-112)) 13)) (-2716 (((-112) (-112)) 14)) (-4099 (((-112)) 15)) (-3791 (((-112) (-112)) 16)) (-3201 (((-892) (-892)) 21) (((-892)) 20)) (-3116 (((-747) (-621 (-2 (|:| -2121 |#1|) (|:| -3701 (-549))))) 42)) (-1677 (((-892) (-892)) 23) (((-892)) 22)) (-3688 (((-2 (|:| -2715 (-549)) (|:| -4024 (-621 |#1|))) |#1|) 62)) (-3861 (((-411 |#1|) (-2 (|:| |contp| (-549)) (|:| -4024 (-621 (-2 (|:| |irr| |#1|) (|:| -2495 (-549))))))) 126)) (-1448 (((-2 (|:| |contp| (-549)) (|:| -4024 (-621 (-2 (|:| |irr| |#1|) (|:| -2495 (-549)))))) |#1| (-112)) 152)) (-2131 (((-411 |#1|) |#1| (-747) (-747)) 165) (((-411 |#1|) |#1| (-621 (-747)) (-747)) 162) (((-411 |#1|) |#1| (-621 (-747))) 164) (((-411 |#1|) |#1| (-747)) 163) (((-411 |#1|) |#1|) 161)) (-3604 (((-3 |#1| "failed") (-892) |#1| (-621 (-747)) (-747) (-112)) 167) (((-3 |#1| "failed") (-892) |#1| (-621 (-747)) (-747)) 168) (((-3 |#1| "failed") (-892) |#1| (-621 (-747))) 170) (((-3 |#1| "failed") (-892) |#1| (-747)) 169) (((-3 |#1| "failed") (-892) |#1|) 171)) (-2121 (((-411 |#1|) |#1| (-747) (-747)) 160) (((-411 |#1|) |#1| (-621 (-747)) (-747)) 156) (((-411 |#1|) |#1| (-621 (-747))) 158) (((-411 |#1|) |#1| (-747)) 157) (((-411 |#1|) |#1|) 155)) (-1282 (((-112) |#1|) 37)) (-4232 (((-714 (-747)) (-621 (-2 (|:| -2121 |#1|) (|:| -3701 (-549))))) 67)) (-2126 (((-2 (|:| |contp| (-549)) (|:| -4024 (-621 (-2 (|:| |irr| |#1|) (|:| -2495 (-549)))))) |#1| (-112) (-1069 (-747)) (-747)) 154)))
-(((-434 |#1|) (-10 -7 (-15 -3861 ((-411 |#1|) (-2 (|:| |contp| (-549)) (|:| -4024 (-621 (-2 (|:| |irr| |#1|) (|:| -2495 (-549)))))))) (-15 -4232 ((-714 (-747)) (-621 (-2 (|:| -2121 |#1|) (|:| -3701 (-549)))))) (-15 -1677 ((-892))) (-15 -1677 ((-892) (-892))) (-15 -3201 ((-892))) (-15 -3201 ((-892) (-892))) (-15 -3116 ((-747) (-621 (-2 (|:| -2121 |#1|) (|:| -3701 (-549)))))) (-15 -3688 ((-2 (|:| -2715 (-549)) (|:| -4024 (-621 |#1|))) |#1|)) (-15 -1455 ((-112))) (-15 -3637 ((-112) (-112))) (-15 -4124 ((-112))) (-15 -2716 ((-112) (-112))) (-15 -1282 ((-112) |#1|)) (-15 -4099 ((-112))) (-15 -3791 ((-112) (-112))) (-15 -2121 ((-411 |#1|) |#1|)) (-15 -2121 ((-411 |#1|) |#1| (-747))) (-15 -2121 ((-411 |#1|) |#1| (-621 (-747)))) (-15 -2121 ((-411 |#1|) |#1| (-621 (-747)) (-747))) (-15 -2121 ((-411 |#1|) |#1| (-747) (-747))) (-15 -2131 ((-411 |#1|) |#1|)) (-15 -2131 ((-411 |#1|) |#1| (-747))) (-15 -2131 ((-411 |#1|) |#1| (-621 (-747)))) (-15 -2131 ((-411 |#1|) |#1| (-621 (-747)) (-747))) (-15 -2131 ((-411 |#1|) |#1| (-747) (-747))) (-15 -3604 ((-3 |#1| "failed") (-892) |#1|)) (-15 -3604 ((-3 |#1| "failed") (-892) |#1| (-747))) (-15 -3604 ((-3 |#1| "failed") (-892) |#1| (-621 (-747)))) (-15 -3604 ((-3 |#1| "failed") (-892) |#1| (-621 (-747)) (-747))) (-15 -3604 ((-3 |#1| "failed") (-892) |#1| (-621 (-747)) (-747) (-112))) (-15 -1448 ((-2 (|:| |contp| (-549)) (|:| -4024 (-621 (-2 (|:| |irr| |#1|) (|:| -2495 (-549)))))) |#1| (-112))) (-15 -2126 ((-2 (|:| |contp| (-549)) (|:| -4024 (-621 (-2 (|:| |irr| |#1|) (|:| -2495 (-549)))))) |#1| (-112) (-1069 (-747)) (-747)))) (-1202 (-549))) (T -434))
-((-2126 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-112)) (-5 *5 (-1069 (-747))) (-5 *6 (-747)) (-5 *2 (-2 (|:| |contp| (-549)) (|:| -4024 (-621 (-2 (|:| |irr| *3) (|:| -2495 (-549))))))) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-1448 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-549)) (|:| -4024 (-621 (-2 (|:| |irr| *3) (|:| -2495 (-549))))))) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-3604 (*1 *2 *3 *2 *4 *5 *6) (|partial| -12 (-5 *3 (-892)) (-5 *4 (-621 (-747))) (-5 *5 (-747)) (-5 *6 (-112)) (-5 *1 (-434 *2)) (-4 *2 (-1202 (-549))))) (-3604 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *3 (-892)) (-5 *4 (-621 (-747))) (-5 *5 (-747)) (-5 *1 (-434 *2)) (-4 *2 (-1202 (-549))))) (-3604 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-892)) (-5 *4 (-621 (-747))) (-5 *1 (-434 *2)) (-4 *2 (-1202 (-549))))) (-3604 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-892)) (-5 *4 (-747)) (-5 *1 (-434 *2)) (-4 *2 (-1202 (-549))))) (-3604 (*1 *2 *3 *2) (|partial| -12 (-5 *3 (-892)) (-5 *1 (-434 *2)) (-4 *2 (-1202 (-549))))) (-2131 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-2131 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-621 (-747))) (-5 *5 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-2131 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-747))) (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-2131 (*1 *2 *3 *4) (-12 (-5 *4 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-2131 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-2121 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-2121 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-621 (-747))) (-5 *5 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-2121 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-747))) (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-2121 (*1 *2 *3 *4) (-12 (-5 *4 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-2121 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-3791 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-4099 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-1282 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-2716 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-4124 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-3637 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-1455 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-3688 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -2715 (-549)) (|:| -4024 (-621 *3)))) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-3116 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| -2121 *4) (|:| -3701 (-549))))) (-4 *4 (-1202 (-549))) (-5 *2 (-747)) (-5 *1 (-434 *4)))) (-3201 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-3201 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-1677 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-1677 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))) (-4232 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| -2121 *4) (|:| -3701 (-549))))) (-4 *4 (-1202 (-549))) (-5 *2 (-714 (-747))) (-5 *1 (-434 *4)))) (-3861 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |contp| (-549)) (|:| -4024 (-621 (-2 (|:| |irr| *4) (|:| -2495 (-549))))))) (-4 *4 (-1202 (-549))) (-5 *2 (-411 *4)) (-5 *1 (-434 *4)))))
-(-10 -7 (-15 -3861 ((-411 |#1|) (-2 (|:| |contp| (-549)) (|:| -4024 (-621 (-2 (|:| |irr| |#1|) (|:| -2495 (-549)))))))) (-15 -4232 ((-714 (-747)) (-621 (-2 (|:| -2121 |#1|) (|:| -3701 (-549)))))) (-15 -1677 ((-892))) (-15 -1677 ((-892) (-892))) (-15 -3201 ((-892))) (-15 -3201 ((-892) (-892))) (-15 -3116 ((-747) (-621 (-2 (|:| -2121 |#1|) (|:| -3701 (-549)))))) (-15 -3688 ((-2 (|:| -2715 (-549)) (|:| -4024 (-621 |#1|))) |#1|)) (-15 -1455 ((-112))) (-15 -3637 ((-112) (-112))) (-15 -4124 ((-112))) (-15 -2716 ((-112) (-112))) (-15 -1282 ((-112) |#1|)) (-15 -4099 ((-112))) (-15 -3791 ((-112) (-112))) (-15 -2121 ((-411 |#1|) |#1|)) (-15 -2121 ((-411 |#1|) |#1| (-747))) (-15 -2121 ((-411 |#1|) |#1| (-621 (-747)))) (-15 -2121 ((-411 |#1|) |#1| (-621 (-747)) (-747))) (-15 -2121 ((-411 |#1|) |#1| (-747) (-747))) (-15 -2131 ((-411 |#1|) |#1|)) (-15 -2131 ((-411 |#1|) |#1| (-747))) (-15 -2131 ((-411 |#1|) |#1| (-621 (-747)))) (-15 -2131 ((-411 |#1|) |#1| (-621 (-747)) (-747))) (-15 -2131 ((-411 |#1|) |#1| (-747) (-747))) (-15 -3604 ((-3 |#1| "failed") (-892) |#1|)) (-15 -3604 ((-3 |#1| "failed") (-892) |#1| (-747))) (-15 -3604 ((-3 |#1| "failed") (-892) |#1| (-621 (-747)))) (-15 -3604 ((-3 |#1| "failed") (-892) |#1| (-621 (-747)) (-747))) (-15 -3604 ((-3 |#1| "failed") (-892) |#1| (-621 (-747)) (-747) (-112))) (-15 -1448 ((-2 (|:| |contp| (-549)) (|:| -4024 (-621 (-2 (|:| |irr| |#1|) (|:| -2495 (-549)))))) |#1| (-112))) (-15 -2126 ((-2 (|:| |contp| (-549)) (|:| -4024 (-621 (-2 (|:| |irr| |#1|) (|:| -2495 (-549)))))) |#1| (-112) (-1069 (-747)) (-747))))
-((-1269 (((-549) |#2|) 48) (((-549) |#2| (-747)) 47)) (-3156 (((-549) |#2|) 55)) (-4119 ((|#3| |#2|) 25)) (-3630 ((|#3| |#2| (-892)) 14)) (-4210 ((|#3| |#2|) 15)) (-1428 ((|#3| |#2|) 9)) (-4036 ((|#3| |#2|) 10)) (-3759 ((|#3| |#2| (-892)) 62) ((|#3| |#2|) 30)) (-2769 (((-549) |#2|) 57)))
-(((-435 |#1| |#2| |#3|) (-10 -7 (-15 -2769 ((-549) |#2|)) (-15 -3759 (|#3| |#2|)) (-15 -3759 (|#3| |#2| (-892))) (-15 -3156 ((-549) |#2|)) (-15 -1269 ((-549) |#2| (-747))) (-15 -1269 ((-549) |#2|)) (-15 -3630 (|#3| |#2| (-892))) (-15 -4119 (|#3| |#2|)) (-15 -1428 (|#3| |#2|)) (-15 -4036 (|#3| |#2|)) (-15 -4210 (|#3| |#2|))) (-1018) (-1202 |#1|) (-13 (-397) (-1009 |#1|) (-356) (-1165) (-277))) (T -435))
-((-4210 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1165) (-277))) (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1202 *4)))) (-4036 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1165) (-277))) (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1202 *4)))) (-1428 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1165) (-277))) (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1202 *4)))) (-4119 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1165) (-277))) (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1202 *4)))) (-3630 (*1 *2 *3 *4) (-12 (-5 *4 (-892)) (-4 *5 (-1018)) (-4 *2 (-13 (-397) (-1009 *5) (-356) (-1165) (-277))) (-5 *1 (-435 *5 *3 *2)) (-4 *3 (-1202 *5)))) (-1269 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-5 *2 (-549)) (-5 *1 (-435 *4 *3 *5)) (-4 *3 (-1202 *4)) (-4 *5 (-13 (-397) (-1009 *4) (-356) (-1165) (-277))))) (-1269 (*1 *2 *3 *4) (-12 (-5 *4 (-747)) (-4 *5 (-1018)) (-5 *2 (-549)) (-5 *1 (-435 *5 *3 *6)) (-4 *3 (-1202 *5)) (-4 *6 (-13 (-397) (-1009 *5) (-356) (-1165) (-277))))) (-3156 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-5 *2 (-549)) (-5 *1 (-435 *4 *3 *5)) (-4 *3 (-1202 *4)) (-4 *5 (-13 (-397) (-1009 *4) (-356) (-1165) (-277))))) (-3759 (*1 *2 *3 *4) (-12 (-5 *4 (-892)) (-4 *5 (-1018)) (-4 *2 (-13 (-397) (-1009 *5) (-356) (-1165) (-277))) (-5 *1 (-435 *5 *3 *2)) (-4 *3 (-1202 *5)))) (-3759 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1165) (-277))) (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1202 *4)))) (-2769 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-5 *2 (-549)) (-5 *1 (-435 *4 *3 *5)) (-4 *3 (-1202 *4)) (-4 *5 (-13 (-397) (-1009 *4) (-356) (-1165) (-277))))))
-(-10 -7 (-15 -2769 ((-549) |#2|)) (-15 -3759 (|#3| |#2|)) (-15 -3759 (|#3| |#2| (-892))) (-15 -3156 ((-549) |#2|)) (-15 -1269 ((-549) |#2| (-747))) (-15 -1269 ((-549) |#2|)) (-15 -3630 (|#3| |#2| (-892))) (-15 -4119 (|#3| |#2|)) (-15 -1428 (|#3| |#2|)) (-15 -4036 (|#3| |#2|)) (-15 -4210 (|#3| |#2|)))
-((-3787 ((|#2| (-1226 |#1|)) 36)) (-4062 ((|#2| |#2| |#1|) 49)) (-2259 ((|#2| |#2| |#1|) 41)) (-3064 ((|#2| |#2|) 38)) (-2600 (((-112) |#2|) 30)) (-3950 (((-621 |#2|) (-892) (-411 |#2|)) 17)) (-3604 ((|#2| (-892) (-411 |#2|)) 21)) (-4232 (((-714 (-747)) (-411 |#2|)) 25)))
-(((-436 |#1| |#2|) (-10 -7 (-15 -2600 ((-112) |#2|)) (-15 -3787 (|#2| (-1226 |#1|))) (-15 -3064 (|#2| |#2|)) (-15 -2259 (|#2| |#2| |#1|)) (-15 -4062 (|#2| |#2| |#1|)) (-15 -4232 ((-714 (-747)) (-411 |#2|))) (-15 -3604 (|#2| (-892) (-411 |#2|))) (-15 -3950 ((-621 |#2|) (-892) (-411 |#2|)))) (-1018) (-1202 |#1|)) (T -436))
-((-3950 (*1 *2 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-411 *6)) (-4 *6 (-1202 *5)) (-4 *5 (-1018)) (-5 *2 (-621 *6)) (-5 *1 (-436 *5 *6)))) (-3604 (*1 *2 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-411 *2)) (-4 *2 (-1202 *5)) (-5 *1 (-436 *5 *2)) (-4 *5 (-1018)))) (-4232 (*1 *2 *3) (-12 (-5 *3 (-411 *5)) (-4 *5 (-1202 *4)) (-4 *4 (-1018)) (-5 *2 (-714 (-747))) (-5 *1 (-436 *4 *5)))) (-4062 (*1 *2 *2 *3) (-12 (-4 *3 (-1018)) (-5 *1 (-436 *3 *2)) (-4 *2 (-1202 *3)))) (-2259 (*1 *2 *2 *3) (-12 (-4 *3 (-1018)) (-5 *1 (-436 *3 *2)) (-4 *2 (-1202 *3)))) (-3064 (*1 *2 *2) (-12 (-4 *3 (-1018)) (-5 *1 (-436 *3 *2)) (-4 *2 (-1202 *3)))) (-3787 (*1 *2 *3) (-12 (-5 *3 (-1226 *4)) (-4 *4 (-1018)) (-4 *2 (-1202 *4)) (-5 *1 (-436 *4 *2)))) (-2600 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-5 *2 (-112)) (-5 *1 (-436 *4 *3)) (-4 *3 (-1202 *4)))))
-(-10 -7 (-15 -2600 ((-112) |#2|)) (-15 -3787 (|#2| (-1226 |#1|))) (-15 -3064 (|#2| |#2|)) (-15 -2259 (|#2| |#2| |#1|)) (-15 -4062 (|#2| |#2| |#1|)) (-15 -4232 ((-714 (-747)) (-411 |#2|))) (-15 -3604 (|#2| (-892) (-411 |#2|))) (-15 -3950 ((-621 |#2|) (-892) (-411 |#2|))))
-((-1754 (((-747)) 41)) (-1441 (((-747)) 23 (|has| |#1| (-397))) (((-747) (-747)) 22 (|has| |#1| (-397)))) (-1456 (((-549) |#1|) 18 (|has| |#1| (-397)))) (-2526 (((-549) |#1|) 20 (|has| |#1| (-397)))) (-1369 (((-747)) 40) (((-747) (-747)) 39)) (-2749 ((|#1| (-747) (-549)) 29)) (-2656 (((-1231)) 43)))
-(((-437 |#1|) (-10 -7 (-15 -2749 (|#1| (-747) (-549))) (-15 -1369 ((-747) (-747))) (-15 -1369 ((-747))) (-15 -1754 ((-747))) (-15 -2656 ((-1231))) (IF (|has| |#1| (-397)) (PROGN (-15 -2526 ((-549) |#1|)) (-15 -1456 ((-549) |#1|)) (-15 -1441 ((-747) (-747))) (-15 -1441 ((-747)))) |%noBranch|)) (-1018)) (T -437))
-((-1441 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-397)) (-4 *3 (-1018)))) (-1441 (*1 *2 *2) (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-397)) (-4 *3 (-1018)))) (-1456 (*1 *2 *3) (-12 (-5 *2 (-549)) (-5 *1 (-437 *3)) (-4 *3 (-397)) (-4 *3 (-1018)))) (-2526 (*1 *2 *3) (-12 (-5 *2 (-549)) (-5 *1 (-437 *3)) (-4 *3 (-397)) (-4 *3 (-1018)))) (-2656 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-437 *3)) (-4 *3 (-1018)))) (-1754 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-1018)))) (-1369 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-1018)))) (-1369 (*1 *2 *2) (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-1018)))) (-2749 (*1 *2 *3 *4) (-12 (-5 *3 (-747)) (-5 *4 (-549)) (-5 *1 (-437 *2)) (-4 *2 (-1018)))))
-(-10 -7 (-15 -2749 (|#1| (-747) (-549))) (-15 -1369 ((-747) (-747))) (-15 -1369 ((-747))) (-15 -1754 ((-747))) (-15 -2656 ((-1231))) (IF (|has| |#1| (-397)) (PROGN (-15 -2526 ((-549) |#1|)) (-15 -1456 ((-549) |#1|)) (-15 -1441 ((-747) (-747))) (-15 -1441 ((-747)))) |%noBranch|))
-((-1767 (((-621 (-549)) (-549)) 61)) (-1420 (((-112) (-167 (-549))) 65)) (-2121 (((-411 (-167 (-549))) (-167 (-549))) 60)))
-(((-438) (-10 -7 (-15 -2121 ((-411 (-167 (-549))) (-167 (-549)))) (-15 -1767 ((-621 (-549)) (-549))) (-15 -1420 ((-112) (-167 (-549)))))) (T -438))
-((-1420 (*1 *2 *3) (-12 (-5 *3 (-167 (-549))) (-5 *2 (-112)) (-5 *1 (-438)))) (-1767 (*1 *2 *3) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-438)) (-5 *3 (-549)))) (-2121 (*1 *2 *3) (-12 (-5 *2 (-411 (-167 (-549)))) (-5 *1 (-438)) (-5 *3 (-167 (-549))))))
-(-10 -7 (-15 -2121 ((-411 (-167 (-549))) (-167 (-549)))) (-15 -1767 ((-621 (-549)) (-549))) (-15 -1420 ((-112) (-167 (-549)))))
-((-3649 ((|#4| |#4| (-621 |#4|)) 61)) (-2046 (((-621 |#4|) (-621 |#4|) (-1125) (-1125)) 17) (((-621 |#4|) (-621 |#4|) (-1125)) 16) (((-621 |#4|) (-621 |#4|)) 11)))
-(((-439 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3649 (|#4| |#4| (-621 |#4|))) (-15 -2046 ((-621 |#4|) (-621 |#4|))) (-15 -2046 ((-621 |#4|) (-621 |#4|) (-1125))) (-15 -2046 ((-621 |#4|) (-621 |#4|) (-1125) (-1125)))) (-300) (-769) (-823) (-920 |#1| |#2| |#3|)) (T -439))
-((-2046 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-621 *7)) (-5 *3 (-1125)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-300)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-439 *4 *5 *6 *7)))) (-2046 (*1 *2 *2 *3) (-12 (-5 *2 (-621 *7)) (-5 *3 (-1125)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-300)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-439 *4 *5 *6 *7)))) (-2046 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-300)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-439 *3 *4 *5 *6)))) (-3649 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *4 *5 *6)) (-4 *4 (-300)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-439 *4 *5 *6 *2)))))
-(-10 -7 (-15 -3649 (|#4| |#4| (-621 |#4|))) (-15 -2046 ((-621 |#4|) (-621 |#4|))) (-15 -2046 ((-621 |#4|) (-621 |#4|) (-1125))) (-15 -2046 ((-621 |#4|) (-621 |#4|) (-1125) (-1125))))
-((-3902 (((-621 (-621 |#4|)) (-621 |#4|) (-112)) 73) (((-621 (-621 |#4|)) (-621 |#4|)) 72) (((-621 (-621 |#4|)) (-621 |#4|) (-621 |#4|) (-112)) 66) (((-621 (-621 |#4|)) (-621 |#4|) (-621 |#4|)) 67)) (-1582 (((-621 (-621 |#4|)) (-621 |#4|) (-112)) 42) (((-621 (-621 |#4|)) (-621 |#4|)) 63)))
-(((-440 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1582 ((-621 (-621 |#4|)) (-621 |#4|))) (-15 -1582 ((-621 (-621 |#4|)) (-621 |#4|) (-112))) (-15 -3902 ((-621 (-621 |#4|)) (-621 |#4|) (-621 |#4|))) (-15 -3902 ((-621 (-621 |#4|)) (-621 |#4|) (-621 |#4|) (-112))) (-15 -3902 ((-621 (-621 |#4|)) (-621 |#4|))) (-15 -3902 ((-621 (-621 |#4|)) (-621 |#4|) (-112)))) (-13 (-300) (-145)) (-769) (-823) (-920 |#1| |#2| |#3|)) (T -440))
-((-3902 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-920 *5 *6 *7)) (-5 *2 (-621 (-621 *8))) (-5 *1 (-440 *5 *6 *7 *8)) (-5 *3 (-621 *8)))) (-3902 (*1 *2 *3) (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-621 (-621 *7))) (-5 *1 (-440 *4 *5 *6 *7)) (-5 *3 (-621 *7)))) (-3902 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-920 *5 *6 *7)) (-5 *2 (-621 (-621 *8))) (-5 *1 (-440 *5 *6 *7 *8)) (-5 *3 (-621 *8)))) (-3902 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-621 (-621 *7))) (-5 *1 (-440 *4 *5 *6 *7)) (-5 *3 (-621 *7)))) (-1582 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-920 *5 *6 *7)) (-5 *2 (-621 (-621 *8))) (-5 *1 (-440 *5 *6 *7 *8)) (-5 *3 (-621 *8)))) (-1582 (*1 *2 *3) (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-621 (-621 *7))) (-5 *1 (-440 *4 *5 *6 *7)) (-5 *3 (-621 *7)))))
-(-10 -7 (-15 -1582 ((-621 (-621 |#4|)) (-621 |#4|))) (-15 -1582 ((-621 (-621 |#4|)) (-621 |#4|) (-112))) (-15 -3902 ((-621 (-621 |#4|)) (-621 |#4|) (-621 |#4|))) (-15 -3902 ((-621 (-621 |#4|)) (-621 |#4|) (-621 |#4|) (-112))) (-15 -3902 ((-621 (-621 |#4|)) (-621 |#4|))) (-15 -3902 ((-621 (-621 |#4|)) (-621 |#4|) (-112))))
-((-2097 (((-747) |#4|) 12)) (-1397 (((-621 (-2 (|:| |totdeg| (-747)) (|:| -3028 |#4|))) |#4| (-747) (-621 (-2 (|:| |totdeg| (-747)) (|:| -3028 |#4|)))) 31)) (-2423 (((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 38)) (-4153 ((|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 39)) (-4152 ((|#4| |#4| (-621 |#4|)) 40)) (-2813 (((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-621 |#4|)) 70)) (-4073 (((-1231) |#4|) 42)) (-3960 (((-1231) (-621 |#4|)) 51)) (-1859 (((-549) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-549) (-549) (-549)) 48)) (-1678 (((-1231) (-549)) 79)) (-3515 (((-621 |#4|) (-621 |#4|)) 77)) (-3187 (((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-747)) (|:| -3028 |#4|)) |#4| (-747)) 25)) (-1715 (((-549) |#4|) 78)) (-2868 ((|#4| |#4|) 29)) (-2506 (((-621 |#4|) (-621 |#4|) (-549) (-549)) 56)) (-2063 (((-549) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-549) (-549) (-549) (-549)) 89)) (-2104 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 16)) (-3327 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 59)) (-3805 (((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 58)) (-2711 (((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 36)) (-3166 (((-112) |#2| |#2|) 57)) (-2593 (((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 37)) (-1377 (((-112) |#2| |#2| |#2| |#2|) 60)) (-4180 ((|#4| |#4| (-621 |#4|)) 71)))
-(((-441 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4180 (|#4| |#4| (-621 |#4|))) (-15 -4152 (|#4| |#4| (-621 |#4|))) (-15 -2506 ((-621 |#4|) (-621 |#4|) (-549) (-549))) (-15 -3327 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3166 ((-112) |#2| |#2|)) (-15 -1377 ((-112) |#2| |#2| |#2| |#2|)) (-15 -2593 ((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2711 ((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3805 ((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2813 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-621 |#4|))) (-15 -2868 (|#4| |#4|)) (-15 -1397 ((-621 (-2 (|:| |totdeg| (-747)) (|:| -3028 |#4|))) |#4| (-747) (-621 (-2 (|:| |totdeg| (-747)) (|:| -3028 |#4|))))) (-15 -4153 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2423 ((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3515 ((-621 |#4|) (-621 |#4|))) (-15 -1715 ((-549) |#4|)) (-15 -4073 ((-1231) |#4|)) (-15 -1859 ((-549) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-549) (-549) (-549))) (-15 -2063 ((-549) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-549) (-549) (-549) (-549))) (-15 -3960 ((-1231) (-621 |#4|))) (-15 -1678 ((-1231) (-549))) (-15 -2104 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3187 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-747)) (|:| -3028 |#4|)) |#4| (-747))) (-15 -2097 ((-747) |#4|))) (-444) (-769) (-823) (-920 |#1| |#2| |#3|)) (T -441))
-((-2097 (*1 *2 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-747)) (-5 *1 (-441 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))) (-3187 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-2 (|:| |totdeg| (-747)) (|:| -3028 *4))) (-5 *5 (-747)) (-4 *4 (-920 *6 *7 *8)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-5 *2 (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4) (|:| |polj| *4))) (-5 *1 (-441 *6 *7 *8 *4)))) (-2104 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-747)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-769)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-441 *4 *5 *6 *7)))) (-1678 (*1 *2 *3) (-12 (-5 *3 (-549)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1231)) (-5 *1 (-441 *4 *5 *6 *7)) (-4 *7 (-920 *4 *5 *6)))) (-3960 (*1 *2 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1231)) (-5 *1 (-441 *4 *5 *6 *7)))) (-2063 (*1 *2 *3 *4 *4 *2 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-747)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-769)) (-4 *4 (-920 *5 *6 *7)) (-4 *5 (-444)) (-4 *7 (-823)) (-5 *1 (-441 *5 *6 *7 *4)))) (-1859 (*1 *2 *3 *4 *4 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-747)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-769)) (-4 *4 (-920 *5 *6 *7)) (-4 *5 (-444)) (-4 *7 (-823)) (-5 *1 (-441 *5 *6 *7 *4)))) (-4073 (*1 *2 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1231)) (-5 *1 (-441 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))) (-1715 (*1 *2 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-549)) (-5 *1 (-441 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))) (-3515 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-441 *3 *4 *5 *6)))) (-2423 (*1 *2 *2 *2) (-12 (-5 *2 (-621 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-747)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-769)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-444)) (-4 *5 (-823)) (-5 *1 (-441 *3 *4 *5 *6)))) (-4153 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-747)) (|:| |poli| *2) (|:| |polj| *2))) (-4 *5 (-769)) (-4 *2 (-920 *4 *5 *6)) (-5 *1 (-441 *4 *5 *6 *2)) (-4 *4 (-444)) (-4 *6 (-823)))) (-1397 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-621 (-2 (|:| |totdeg| (-747)) (|:| -3028 *3)))) (-5 *4 (-747)) (-4 *3 (-920 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-441 *5 *6 *7 *3)))) (-2868 (*1 *2 *2) (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-441 *3 *4 *5 *2)) (-4 *2 (-920 *3 *4 *5)))) (-2813 (*1 *2 *3 *4) (-12 (-5 *4 (-621 *3)) (-4 *3 (-920 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5))) (-5 *1 (-441 *5 *6 *7 *3)))) (-3805 (*1 *2 *3 *2) (-12 (-5 *2 (-621 (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-747)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *3 (-769)) (-4 *6 (-920 *4 *3 *5)) (-4 *4 (-444)) (-4 *5 (-823)) (-5 *1 (-441 *4 *3 *5 *6)))) (-2711 (*1 *2 *2) (-12 (-5 *2 (-621 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-747)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-769)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-444)) (-4 *5 (-823)) (-5 *1 (-441 *3 *4 *5 *6)))) (-2593 (*1 *2 *3 *2) (-12 (-5 *2 (-621 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-747)) (|:| |poli| *3) (|:| |polj| *3)))) (-4 *5 (-769)) (-4 *3 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *6 (-823)) (-5 *1 (-441 *4 *5 *6 *3)))) (-1377 (*1 *2 *3 *3 *3 *3) (-12 (-4 *4 (-444)) (-4 *3 (-769)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-441 *4 *3 *5 *6)) (-4 *6 (-920 *4 *3 *5)))) (-3166 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *3 (-769)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-441 *4 *3 *5 *6)) (-4 *6 (-920 *4 *3 *5)))) (-3327 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-747)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-769)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-441 *4 *5 *6 *7)))) (-2506 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-621 *7)) (-5 *3 (-549)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-441 *4 *5 *6 *7)))) (-4152 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-441 *4 *5 *6 *2)))) (-4180 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-441 *4 *5 *6 *2)))))
-(-10 -7 (-15 -4180 (|#4| |#4| (-621 |#4|))) (-15 -4152 (|#4| |#4| (-621 |#4|))) (-15 -2506 ((-621 |#4|) (-621 |#4|) (-549) (-549))) (-15 -3327 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3166 ((-112) |#2| |#2|)) (-15 -1377 ((-112) |#2| |#2| |#2| |#2|)) (-15 -2593 ((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2711 ((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3805 ((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2813 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-621 |#4|))) (-15 -2868 (|#4| |#4|)) (-15 -1397 ((-621 (-2 (|:| |totdeg| (-747)) (|:| -3028 |#4|))) |#4| (-747) (-621 (-2 (|:| |totdeg| (-747)) (|:| -3028 |#4|))))) (-15 -4153 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2423 ((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3515 ((-621 |#4|) (-621 |#4|))) (-15 -1715 ((-549) |#4|)) (-15 -4073 ((-1231) |#4|)) (-15 -1859 ((-549) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-549) (-549) (-549))) (-15 -2063 ((-549) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-549) (-549) (-549) (-549))) (-15 -3960 ((-1231) (-621 |#4|))) (-15 -1678 ((-1231) (-549))) (-15 -2104 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3187 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-747)) (|:| -3028 |#4|)) |#4| (-747))) (-15 -2097 ((-747) |#4|)))
-((-2519 ((|#4| |#4| (-621 |#4|)) 22 (|has| |#1| (-356)))) (-3989 (((-621 |#4|) (-621 |#4|) (-1125) (-1125)) 41) (((-621 |#4|) (-621 |#4|) (-1125)) 40) (((-621 |#4|) (-621 |#4|)) 35)))
-(((-442 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3989 ((-621 |#4|) (-621 |#4|))) (-15 -3989 ((-621 |#4|) (-621 |#4|) (-1125))) (-15 -3989 ((-621 |#4|) (-621 |#4|) (-1125) (-1125))) (IF (|has| |#1| (-356)) (-15 -2519 (|#4| |#4| (-621 |#4|))) |%noBranch|)) (-444) (-769) (-823) (-920 |#1| |#2| |#3|)) (T -442))
-((-2519 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *4 *5 *6)) (-4 *4 (-356)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-442 *4 *5 *6 *2)))) (-3989 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-621 *7)) (-5 *3 (-1125)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-442 *4 *5 *6 *7)))) (-3989 (*1 *2 *2 *3) (-12 (-5 *2 (-621 *7)) (-5 *3 (-1125)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-442 *4 *5 *6 *7)))) (-3989 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-442 *3 *4 *5 *6)))))
-(-10 -7 (-15 -3989 ((-621 |#4|) (-621 |#4|))) (-15 -3989 ((-621 |#4|) (-621 |#4|) (-1125))) (-15 -3989 ((-621 |#4|) (-621 |#4|) (-1125) (-1125))) (IF (|has| |#1| (-356)) (-15 -2519 (|#4| |#4| (-621 |#4|))) |%noBranch|))
-((-3697 (($ $ $) 14) (($ (-621 $)) 21)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 41)) (-3727 (($ $ $) NIL) (($ (-621 $)) 22)))
-(((-443 |#1|) (-10 -8 (-15 -1721 ((-1139 |#1|) (-1139 |#1|) (-1139 |#1|))) (-15 -3697 (|#1| (-621 |#1|))) (-15 -3697 (|#1| |#1| |#1|)) (-15 -3727 (|#1| (-621 |#1|))) (-15 -3727 (|#1| |#1| |#1|))) (-444)) (T -443))
-NIL
-(-10 -8 (-15 -1721 ((-1139 |#1|) (-1139 |#1|) (-1139 |#1|))) (-15 -3697 (|#1| (-621 |#1|))) (-15 -3697 (|#1| |#1| |#1|)) (-15 -3727 (|#1| (-621 |#1|))) (-15 -3727 (|#1| |#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-2042 (((-3 $ "failed") $ $) 40)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41)) (-2082 (((-747)) 28)) (-1498 (((-112) $ $) 37)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-4 *1 (-433)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-323)) (-4 *1 (-433)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323))))) (-4 *1 (-433)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-1225 (-309 (-372)))) (-4 *1 (-433)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-1225 (-309 (-372)))) (-4 *1 (-433)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-1225 (-309 (-549)))) (-4 *1 (-433)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-1225 (-309 (-549)))) (-4 *1 (-433)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-1225 (-923 (-372)))) (-4 *1 (-433)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-1225 (-923 (-372)))) (-4 *1 (-433)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-1225 (-923 (-549)))) (-4 *1 (-433)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-1225 (-923 (-549)))) (-4 *1 (-433)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-1225 (-400 (-923 (-372))))) (-4 *1 (-433)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-1225 (-400 (-923 (-372))))) (-4 *1 (-433)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-1225 (-400 (-923 (-549))))) (-4 *1 (-433)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-1225 (-400 (-923 (-549))))) (-4 *1 (-433)))))
+(-13 (-388) (-10 -8 (-15 -3845 ($ (-621 (-323)))) (-15 -3845 ($ (-323))) (-15 -3845 ($ (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323)))))) (-15 -2657 ($ (-1225 (-309 (-372))))) (-15 -2712 ((-3 $ "failed") (-1225 (-309 (-372))))) (-15 -2657 ($ (-1225 (-309 (-549))))) (-15 -2712 ((-3 $ "failed") (-1225 (-309 (-549))))) (-15 -2657 ($ (-1225 (-923 (-372))))) (-15 -2712 ((-3 $ "failed") (-1225 (-923 (-372))))) (-15 -2657 ($ (-1225 (-923 (-549))))) (-15 -2712 ((-3 $ "failed") (-1225 (-923 (-549))))) (-15 -2657 ($ (-1225 (-400 (-923 (-372)))))) (-15 -2712 ((-3 $ "failed") (-1225 (-400 (-923 (-372)))))) (-15 -2657 ($ (-1225 (-400 (-923 (-549)))))) (-15 -2712 ((-3 $ "failed") (-1225 (-400 (-923 (-549))))))))
+(((-593 (-834)) . T) ((-388) . T) ((-1179) . T))
+((-2967 (((-112)) 17)) (-1650 (((-112) (-112)) 18)) (-1802 (((-112)) 13)) (-2474 (((-112) (-112)) 14)) (-3484 (((-112)) 15)) (-3701 (((-112) (-112)) 16)) (-3299 (((-892) (-892)) 21) (((-892)) 20)) (-1935 (((-747) (-621 (-2 (|:| -2119 |#1|) (|:| -3977 (-549))))) 42)) (-3728 (((-892) (-892)) 23) (((-892)) 22)) (-2871 (((-2 (|:| -2382 (-549)) (|:| -3390 (-621 |#1|))) |#1|) 62)) (-2101 (((-411 |#1|) (-2 (|:| |contp| (-549)) (|:| -3390 (-621 (-2 (|:| |irr| |#1|) (|:| -2129 (-549))))))) 126)) (-3435 (((-2 (|:| |contp| (-549)) (|:| -3390 (-621 (-2 (|:| |irr| |#1|) (|:| -2129 (-549)))))) |#1| (-112)) 152)) (-3777 (((-411 |#1|) |#1| (-747) (-747)) 165) (((-411 |#1|) |#1| (-621 (-747)) (-747)) 162) (((-411 |#1|) |#1| (-621 (-747))) 164) (((-411 |#1|) |#1| (-747)) 163) (((-411 |#1|) |#1|) 161)) (-2825 (((-3 |#1| "failed") (-892) |#1| (-621 (-747)) (-747) (-112)) 167) (((-3 |#1| "failed") (-892) |#1| (-621 (-747)) (-747)) 168) (((-3 |#1| "failed") (-892) |#1| (-621 (-747))) 170) (((-3 |#1| "failed") (-892) |#1| (-747)) 169) (((-3 |#1| "failed") (-892) |#1|) 171)) (-2119 (((-411 |#1|) |#1| (-747) (-747)) 160) (((-411 |#1|) |#1| (-621 (-747)) (-747)) 156) (((-411 |#1|) |#1| (-621 (-747))) 158) (((-411 |#1|) |#1| (-747)) 157) (((-411 |#1|) |#1|) 155)) (-4089 (((-112) |#1|) 37)) (-2031 (((-714 (-747)) (-621 (-2 (|:| -2119 |#1|) (|:| -3977 (-549))))) 67)) (-1264 (((-2 (|:| |contp| (-549)) (|:| -3390 (-621 (-2 (|:| |irr| |#1|) (|:| -2129 (-549)))))) |#1| (-112) (-1068 (-747)) (-747)) 154)))
+(((-434 |#1|) (-10 -7 (-15 -2101 ((-411 |#1|) (-2 (|:| |contp| (-549)) (|:| -3390 (-621 (-2 (|:| |irr| |#1|) (|:| -2129 (-549)))))))) (-15 -2031 ((-714 (-747)) (-621 (-2 (|:| -2119 |#1|) (|:| -3977 (-549)))))) (-15 -3728 ((-892))) (-15 -3728 ((-892) (-892))) (-15 -3299 ((-892))) (-15 -3299 ((-892) (-892))) (-15 -1935 ((-747) (-621 (-2 (|:| -2119 |#1|) (|:| -3977 (-549)))))) (-15 -2871 ((-2 (|:| -2382 (-549)) (|:| -3390 (-621 |#1|))) |#1|)) (-15 -2967 ((-112))) (-15 -1650 ((-112) (-112))) (-15 -1802 ((-112))) (-15 -2474 ((-112) (-112))) (-15 -4089 ((-112) |#1|)) (-15 -3484 ((-112))) (-15 -3701 ((-112) (-112))) (-15 -2119 ((-411 |#1|) |#1|)) (-15 -2119 ((-411 |#1|) |#1| (-747))) (-15 -2119 ((-411 |#1|) |#1| (-621 (-747)))) (-15 -2119 ((-411 |#1|) |#1| (-621 (-747)) (-747))) (-15 -2119 ((-411 |#1|) |#1| (-747) (-747))) (-15 -3777 ((-411 |#1|) |#1|)) (-15 -3777 ((-411 |#1|) |#1| (-747))) (-15 -3777 ((-411 |#1|) |#1| (-621 (-747)))) (-15 -3777 ((-411 |#1|) |#1| (-621 (-747)) (-747))) (-15 -3777 ((-411 |#1|) |#1| (-747) (-747))) (-15 -2825 ((-3 |#1| "failed") (-892) |#1|)) (-15 -2825 ((-3 |#1| "failed") (-892) |#1| (-747))) (-15 -2825 ((-3 |#1| "failed") (-892) |#1| (-621 (-747)))) (-15 -2825 ((-3 |#1| "failed") (-892) |#1| (-621 (-747)) (-747))) (-15 -2825 ((-3 |#1| "failed") (-892) |#1| (-621 (-747)) (-747) (-112))) (-15 -3435 ((-2 (|:| |contp| (-549)) (|:| -3390 (-621 (-2 (|:| |irr| |#1|) (|:| -2129 (-549)))))) |#1| (-112))) (-15 -1264 ((-2 (|:| |contp| (-549)) (|:| -3390 (-621 (-2 (|:| |irr| |#1|) (|:| -2129 (-549)))))) |#1| (-112) (-1068 (-747)) (-747)))) (-1201 (-549))) (T -434))
+((-1264 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-112)) (-5 *5 (-1068 (-747))) (-5 *6 (-747)) (-5 *2 (-2 (|:| |contp| (-549)) (|:| -3390 (-621 (-2 (|:| |irr| *3) (|:| -2129 (-549))))))) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-3435 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-549)) (|:| -3390 (-621 (-2 (|:| |irr| *3) (|:| -2129 (-549))))))) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-2825 (*1 *2 *3 *2 *4 *5 *6) (|partial| -12 (-5 *3 (-892)) (-5 *4 (-621 (-747))) (-5 *5 (-747)) (-5 *6 (-112)) (-5 *1 (-434 *2)) (-4 *2 (-1201 (-549))))) (-2825 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *3 (-892)) (-5 *4 (-621 (-747))) (-5 *5 (-747)) (-5 *1 (-434 *2)) (-4 *2 (-1201 (-549))))) (-2825 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-892)) (-5 *4 (-621 (-747))) (-5 *1 (-434 *2)) (-4 *2 (-1201 (-549))))) (-2825 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-892)) (-5 *4 (-747)) (-5 *1 (-434 *2)) (-4 *2 (-1201 (-549))))) (-2825 (*1 *2 *3 *2) (|partial| -12 (-5 *3 (-892)) (-5 *1 (-434 *2)) (-4 *2 (-1201 (-549))))) (-3777 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-3777 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-621 (-747))) (-5 *5 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-3777 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-747))) (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-3777 (*1 *2 *3 *4) (-12 (-5 *4 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-3777 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-2119 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-2119 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-621 (-747))) (-5 *5 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-2119 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-747))) (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-2119 (*1 *2 *3 *4) (-12 (-5 *4 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-2119 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-3701 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-3484 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-4089 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-2474 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-1802 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-1650 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-2967 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-2871 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -2382 (-549)) (|:| -3390 (-621 *3)))) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-1935 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| -2119 *4) (|:| -3977 (-549))))) (-4 *4 (-1201 (-549))) (-5 *2 (-747)) (-5 *1 (-434 *4)))) (-3299 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-3299 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-3728 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-3728 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))) (-2031 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| -2119 *4) (|:| -3977 (-549))))) (-4 *4 (-1201 (-549))) (-5 *2 (-714 (-747))) (-5 *1 (-434 *4)))) (-2101 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |contp| (-549)) (|:| -3390 (-621 (-2 (|:| |irr| *4) (|:| -2129 (-549))))))) (-4 *4 (-1201 (-549))) (-5 *2 (-411 *4)) (-5 *1 (-434 *4)))))
+(-10 -7 (-15 -2101 ((-411 |#1|) (-2 (|:| |contp| (-549)) (|:| -3390 (-621 (-2 (|:| |irr| |#1|) (|:| -2129 (-549)))))))) (-15 -2031 ((-714 (-747)) (-621 (-2 (|:| -2119 |#1|) (|:| -3977 (-549)))))) (-15 -3728 ((-892))) (-15 -3728 ((-892) (-892))) (-15 -3299 ((-892))) (-15 -3299 ((-892) (-892))) (-15 -1935 ((-747) (-621 (-2 (|:| -2119 |#1|) (|:| -3977 (-549)))))) (-15 -2871 ((-2 (|:| -2382 (-549)) (|:| -3390 (-621 |#1|))) |#1|)) (-15 -2967 ((-112))) (-15 -1650 ((-112) (-112))) (-15 -1802 ((-112))) (-15 -2474 ((-112) (-112))) (-15 -4089 ((-112) |#1|)) (-15 -3484 ((-112))) (-15 -3701 ((-112) (-112))) (-15 -2119 ((-411 |#1|) |#1|)) (-15 -2119 ((-411 |#1|) |#1| (-747))) (-15 -2119 ((-411 |#1|) |#1| (-621 (-747)))) (-15 -2119 ((-411 |#1|) |#1| (-621 (-747)) (-747))) (-15 -2119 ((-411 |#1|) |#1| (-747) (-747))) (-15 -3777 ((-411 |#1|) |#1|)) (-15 -3777 ((-411 |#1|) |#1| (-747))) (-15 -3777 ((-411 |#1|) |#1| (-621 (-747)))) (-15 -3777 ((-411 |#1|) |#1| (-621 (-747)) (-747))) (-15 -3777 ((-411 |#1|) |#1| (-747) (-747))) (-15 -2825 ((-3 |#1| "failed") (-892) |#1|)) (-15 -2825 ((-3 |#1| "failed") (-892) |#1| (-747))) (-15 -2825 ((-3 |#1| "failed") (-892) |#1| (-621 (-747)))) (-15 -2825 ((-3 |#1| "failed") (-892) |#1| (-621 (-747)) (-747))) (-15 -2825 ((-3 |#1| "failed") (-892) |#1| (-621 (-747)) (-747) (-112))) (-15 -3435 ((-2 (|:| |contp| (-549)) (|:| -3390 (-621 (-2 (|:| |irr| |#1|) (|:| -2129 (-549)))))) |#1| (-112))) (-15 -1264 ((-2 (|:| |contp| (-549)) (|:| -3390 (-621 (-2 (|:| |irr| |#1|) (|:| -2129 (-549)))))) |#1| (-112) (-1068 (-747)) (-747))))
+((-1834 (((-549) |#2|) 48) (((-549) |#2| (-747)) 47)) (-1876 (((-549) |#2|) 55)) (-2716 ((|#3| |#2|) 25)) (-2469 ((|#3| |#2| (-892)) 14)) (-4210 ((|#3| |#2|) 15)) (-3922 ((|#3| |#2|) 9)) (-4036 ((|#3| |#2|) 10)) (-2069 ((|#3| |#2| (-892)) 62) ((|#3| |#2|) 30)) (-3184 (((-549) |#2|) 57)))
+(((-435 |#1| |#2| |#3|) (-10 -7 (-15 -3184 ((-549) |#2|)) (-15 -2069 (|#3| |#2|)) (-15 -2069 (|#3| |#2| (-892))) (-15 -1876 ((-549) |#2|)) (-15 -1834 ((-549) |#2| (-747))) (-15 -1834 ((-549) |#2|)) (-15 -2469 (|#3| |#2| (-892))) (-15 -2716 (|#3| |#2|)) (-15 -3922 (|#3| |#2|)) (-15 -4036 (|#3| |#2|)) (-15 -4210 (|#3| |#2|))) (-1018) (-1201 |#1|) (-13 (-397) (-1009 |#1|) (-356) (-1164) (-277))) (T -435))
+((-4210 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1164) (-277))) (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1201 *4)))) (-4036 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1164) (-277))) (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1201 *4)))) (-3922 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1164) (-277))) (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1201 *4)))) (-2716 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1164) (-277))) (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1201 *4)))) (-2469 (*1 *2 *3 *4) (-12 (-5 *4 (-892)) (-4 *5 (-1018)) (-4 *2 (-13 (-397) (-1009 *5) (-356) (-1164) (-277))) (-5 *1 (-435 *5 *3 *2)) (-4 *3 (-1201 *5)))) (-1834 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-5 *2 (-549)) (-5 *1 (-435 *4 *3 *5)) (-4 *3 (-1201 *4)) (-4 *5 (-13 (-397) (-1009 *4) (-356) (-1164) (-277))))) (-1834 (*1 *2 *3 *4) (-12 (-5 *4 (-747)) (-4 *5 (-1018)) (-5 *2 (-549)) (-5 *1 (-435 *5 *3 *6)) (-4 *3 (-1201 *5)) (-4 *6 (-13 (-397) (-1009 *5) (-356) (-1164) (-277))))) (-1876 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-5 *2 (-549)) (-5 *1 (-435 *4 *3 *5)) (-4 *3 (-1201 *4)) (-4 *5 (-13 (-397) (-1009 *4) (-356) (-1164) (-277))))) (-2069 (*1 *2 *3 *4) (-12 (-5 *4 (-892)) (-4 *5 (-1018)) (-4 *2 (-13 (-397) (-1009 *5) (-356) (-1164) (-277))) (-5 *1 (-435 *5 *3 *2)) (-4 *3 (-1201 *5)))) (-2069 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1164) (-277))) (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1201 *4)))) (-3184 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-5 *2 (-549)) (-5 *1 (-435 *4 *3 *5)) (-4 *3 (-1201 *4)) (-4 *5 (-13 (-397) (-1009 *4) (-356) (-1164) (-277))))))
+(-10 -7 (-15 -3184 ((-549) |#2|)) (-15 -2069 (|#3| |#2|)) (-15 -2069 (|#3| |#2| (-892))) (-15 -1876 ((-549) |#2|)) (-15 -1834 ((-549) |#2| (-747))) (-15 -1834 ((-549) |#2|)) (-15 -2469 (|#3| |#2| (-892))) (-15 -2716 (|#3| |#2|)) (-15 -3922 (|#3| |#2|)) (-15 -4036 (|#3| |#2|)) (-15 -4210 (|#3| |#2|)))
+((-3433 ((|#2| (-1225 |#1|)) 36)) (-3601 ((|#2| |#2| |#1|) 49)) (-3127 ((|#2| |#2| |#1|) 41)) (-3062 ((|#2| |#2|) 38)) (-4313 (((-112) |#2|) 30)) (-2685 (((-621 |#2|) (-892) (-411 |#2|)) 17)) (-2825 ((|#2| (-892) (-411 |#2|)) 21)) (-2031 (((-714 (-747)) (-411 |#2|)) 25)))
+(((-436 |#1| |#2|) (-10 -7 (-15 -4313 ((-112) |#2|)) (-15 -3433 (|#2| (-1225 |#1|))) (-15 -3062 (|#2| |#2|)) (-15 -3127 (|#2| |#2| |#1|)) (-15 -3601 (|#2| |#2| |#1|)) (-15 -2031 ((-714 (-747)) (-411 |#2|))) (-15 -2825 (|#2| (-892) (-411 |#2|))) (-15 -2685 ((-621 |#2|) (-892) (-411 |#2|)))) (-1018) (-1201 |#1|)) (T -436))
+((-2685 (*1 *2 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-411 *6)) (-4 *6 (-1201 *5)) (-4 *5 (-1018)) (-5 *2 (-621 *6)) (-5 *1 (-436 *5 *6)))) (-2825 (*1 *2 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-411 *2)) (-4 *2 (-1201 *5)) (-5 *1 (-436 *5 *2)) (-4 *5 (-1018)))) (-2031 (*1 *2 *3) (-12 (-5 *3 (-411 *5)) (-4 *5 (-1201 *4)) (-4 *4 (-1018)) (-5 *2 (-714 (-747))) (-5 *1 (-436 *4 *5)))) (-3601 (*1 *2 *2 *3) (-12 (-4 *3 (-1018)) (-5 *1 (-436 *3 *2)) (-4 *2 (-1201 *3)))) (-3127 (*1 *2 *2 *3) (-12 (-4 *3 (-1018)) (-5 *1 (-436 *3 *2)) (-4 *2 (-1201 *3)))) (-3062 (*1 *2 *2) (-12 (-4 *3 (-1018)) (-5 *1 (-436 *3 *2)) (-4 *2 (-1201 *3)))) (-3433 (*1 *2 *3) (-12 (-5 *3 (-1225 *4)) (-4 *4 (-1018)) (-4 *2 (-1201 *4)) (-5 *1 (-436 *4 *2)))) (-4313 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-5 *2 (-112)) (-5 *1 (-436 *4 *3)) (-4 *3 (-1201 *4)))))
+(-10 -7 (-15 -4313 ((-112) |#2|)) (-15 -3433 (|#2| (-1225 |#1|))) (-15 -3062 (|#2| |#2|)) (-15 -3127 (|#2| |#2| |#1|)) (-15 -3601 (|#2| |#2| |#1|)) (-15 -2031 ((-714 (-747)) (-411 |#2|))) (-15 -2825 (|#2| (-892) (-411 |#2|))) (-15 -2685 ((-621 |#2|) (-892) (-411 |#2|))))
+((-3721 (((-747)) 41)) (-4057 (((-747)) 23 (|has| |#1| (-397))) (((-747) (-747)) 22 (|has| |#1| (-397)))) (-3048 (((-549) |#1|) 18 (|has| |#1| (-397)))) (-2007 (((-549) |#1|) 20 (|has| |#1| (-397)))) (-2103 (((-747)) 40) (((-747) (-747)) 39)) (-1534 ((|#1| (-747) (-549)) 29)) (-3628 (((-1230)) 43)))
+(((-437 |#1|) (-10 -7 (-15 -1534 (|#1| (-747) (-549))) (-15 -2103 ((-747) (-747))) (-15 -2103 ((-747))) (-15 -3721 ((-747))) (-15 -3628 ((-1230))) (IF (|has| |#1| (-397)) (PROGN (-15 -2007 ((-549) |#1|)) (-15 -3048 ((-549) |#1|)) (-15 -4057 ((-747) (-747))) (-15 -4057 ((-747)))) |%noBranch|)) (-1018)) (T -437))
+((-4057 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-397)) (-4 *3 (-1018)))) (-4057 (*1 *2 *2) (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-397)) (-4 *3 (-1018)))) (-3048 (*1 *2 *3) (-12 (-5 *2 (-549)) (-5 *1 (-437 *3)) (-4 *3 (-397)) (-4 *3 (-1018)))) (-2007 (*1 *2 *3) (-12 (-5 *2 (-549)) (-5 *1 (-437 *3)) (-4 *3 (-397)) (-4 *3 (-1018)))) (-3628 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-437 *3)) (-4 *3 (-1018)))) (-3721 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-1018)))) (-2103 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-1018)))) (-2103 (*1 *2 *2) (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-1018)))) (-1534 (*1 *2 *3 *4) (-12 (-5 *3 (-747)) (-5 *4 (-549)) (-5 *1 (-437 *2)) (-4 *2 (-1018)))))
+(-10 -7 (-15 -1534 (|#1| (-747) (-549))) (-15 -2103 ((-747) (-747))) (-15 -2103 ((-747))) (-15 -3721 ((-747))) (-15 -3628 ((-1230))) (IF (|has| |#1| (-397)) (PROGN (-15 -2007 ((-549) |#1|)) (-15 -3048 ((-549) |#1|)) (-15 -4057 ((-747) (-747))) (-15 -4057 ((-747)))) |%noBranch|))
+((-2401 (((-621 (-549)) (-549)) 61)) (-1464 (((-112) (-167 (-549))) 65)) (-2119 (((-411 (-167 (-549))) (-167 (-549))) 60)))
+(((-438) (-10 -7 (-15 -2119 ((-411 (-167 (-549))) (-167 (-549)))) (-15 -2401 ((-621 (-549)) (-549))) (-15 -1464 ((-112) (-167 (-549)))))) (T -438))
+((-1464 (*1 *2 *3) (-12 (-5 *3 (-167 (-549))) (-5 *2 (-112)) (-5 *1 (-438)))) (-2401 (*1 *2 *3) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-438)) (-5 *3 (-549)))) (-2119 (*1 *2 *3) (-12 (-5 *2 (-411 (-167 (-549)))) (-5 *1 (-438)) (-5 *3 (-167 (-549))))))
+(-10 -7 (-15 -2119 ((-411 (-167 (-549))) (-167 (-549)))) (-15 -2401 ((-621 (-549)) (-549))) (-15 -1464 ((-112) (-167 (-549)))))
+((-3304 ((|#4| |#4| (-621 |#4|)) 61)) (-2710 (((-621 |#4|) (-621 |#4|) (-1124) (-1124)) 17) (((-621 |#4|) (-621 |#4|) (-1124)) 16) (((-621 |#4|) (-621 |#4|)) 11)))
+(((-439 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3304 (|#4| |#4| (-621 |#4|))) (-15 -2710 ((-621 |#4|) (-621 |#4|))) (-15 -2710 ((-621 |#4|) (-621 |#4|) (-1124))) (-15 -2710 ((-621 |#4|) (-621 |#4|) (-1124) (-1124)))) (-300) (-769) (-823) (-920 |#1| |#2| |#3|)) (T -439))
+((-2710 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-621 *7)) (-5 *3 (-1124)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-300)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-439 *4 *5 *6 *7)))) (-2710 (*1 *2 *2 *3) (-12 (-5 *2 (-621 *7)) (-5 *3 (-1124)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-300)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-439 *4 *5 *6 *7)))) (-2710 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-300)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-439 *3 *4 *5 *6)))) (-3304 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *4 *5 *6)) (-4 *4 (-300)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-439 *4 *5 *6 *2)))))
+(-10 -7 (-15 -3304 (|#4| |#4| (-621 |#4|))) (-15 -2710 ((-621 |#4|) (-621 |#4|))) (-15 -2710 ((-621 |#4|) (-621 |#4|) (-1124))) (-15 -2710 ((-621 |#4|) (-621 |#4|) (-1124) (-1124))))
+((-4310 (((-621 (-621 |#4|)) (-621 |#4|) (-112)) 73) (((-621 (-621 |#4|)) (-621 |#4|)) 72) (((-621 (-621 |#4|)) (-621 |#4|) (-621 |#4|) (-112)) 66) (((-621 (-621 |#4|)) (-621 |#4|) (-621 |#4|)) 67)) (-3800 (((-621 (-621 |#4|)) (-621 |#4|) (-112)) 42) (((-621 (-621 |#4|)) (-621 |#4|)) 63)))
+(((-440 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3800 ((-621 (-621 |#4|)) (-621 |#4|))) (-15 -3800 ((-621 (-621 |#4|)) (-621 |#4|) (-112))) (-15 -4310 ((-621 (-621 |#4|)) (-621 |#4|) (-621 |#4|))) (-15 -4310 ((-621 (-621 |#4|)) (-621 |#4|) (-621 |#4|) (-112))) (-15 -4310 ((-621 (-621 |#4|)) (-621 |#4|))) (-15 -4310 ((-621 (-621 |#4|)) (-621 |#4|) (-112)))) (-13 (-300) (-145)) (-769) (-823) (-920 |#1| |#2| |#3|)) (T -440))
+((-4310 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-920 *5 *6 *7)) (-5 *2 (-621 (-621 *8))) (-5 *1 (-440 *5 *6 *7 *8)) (-5 *3 (-621 *8)))) (-4310 (*1 *2 *3) (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-621 (-621 *7))) (-5 *1 (-440 *4 *5 *6 *7)) (-5 *3 (-621 *7)))) (-4310 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-920 *5 *6 *7)) (-5 *2 (-621 (-621 *8))) (-5 *1 (-440 *5 *6 *7 *8)) (-5 *3 (-621 *8)))) (-4310 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-621 (-621 *7))) (-5 *1 (-440 *4 *5 *6 *7)) (-5 *3 (-621 *7)))) (-3800 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-920 *5 *6 *7)) (-5 *2 (-621 (-621 *8))) (-5 *1 (-440 *5 *6 *7 *8)) (-5 *3 (-621 *8)))) (-3800 (*1 *2 *3) (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-621 (-621 *7))) (-5 *1 (-440 *4 *5 *6 *7)) (-5 *3 (-621 *7)))))
+(-10 -7 (-15 -3800 ((-621 (-621 |#4|)) (-621 |#4|))) (-15 -3800 ((-621 (-621 |#4|)) (-621 |#4|) (-112))) (-15 -4310 ((-621 (-621 |#4|)) (-621 |#4|) (-621 |#4|))) (-15 -4310 ((-621 (-621 |#4|)) (-621 |#4|) (-621 |#4|) (-112))) (-15 -4310 ((-621 (-621 |#4|)) (-621 |#4|))) (-15 -4310 ((-621 (-621 |#4|)) (-621 |#4|) (-112))))
+((-2035 (((-747) |#4|) 12)) (-1287 (((-621 (-2 (|:| |totdeg| (-747)) (|:| -2443 |#4|))) |#4| (-747) (-621 (-2 (|:| |totdeg| (-747)) (|:| -2443 |#4|)))) 31)) (-3001 (((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 38)) (-3926 ((|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 39)) (-3841 ((|#4| |#4| (-621 |#4|)) 40)) (-2372 (((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-621 |#4|)) 70)) (-3230 (((-1230) |#4|) 42)) (-2029 (((-1230) (-621 |#4|)) 51)) (-1913 (((-549) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-549) (-549) (-549)) 48)) (-2704 (((-1230) (-549)) 79)) (-4171 (((-621 |#4|) (-621 |#4|)) 77)) (-2322 (((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-747)) (|:| -2443 |#4|)) |#4| (-747)) 25)) (-3672 (((-549) |#4|) 78)) (-2693 ((|#4| |#4|) 29)) (-1881 (((-621 |#4|) (-621 |#4|) (-549) (-549)) 56)) (-3413 (((-549) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-549) (-549) (-549) (-549)) 89)) (-3758 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 16)) (-3740 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 59)) (-2491 (((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 58)) (-3259 (((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 36)) (-3629 (((-112) |#2| |#2|) 57)) (-4038 (((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 37)) (-1964 (((-112) |#2| |#2| |#2| |#2|) 60)) (-4025 ((|#4| |#4| (-621 |#4|)) 71)))
+(((-441 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4025 (|#4| |#4| (-621 |#4|))) (-15 -3841 (|#4| |#4| (-621 |#4|))) (-15 -1881 ((-621 |#4|) (-621 |#4|) (-549) (-549))) (-15 -3740 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3629 ((-112) |#2| |#2|)) (-15 -1964 ((-112) |#2| |#2| |#2| |#2|)) (-15 -4038 ((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3259 ((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2491 ((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2372 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-621 |#4|))) (-15 -2693 (|#4| |#4|)) (-15 -1287 ((-621 (-2 (|:| |totdeg| (-747)) (|:| -2443 |#4|))) |#4| (-747) (-621 (-2 (|:| |totdeg| (-747)) (|:| -2443 |#4|))))) (-15 -3926 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3001 ((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -4171 ((-621 |#4|) (-621 |#4|))) (-15 -3672 ((-549) |#4|)) (-15 -3230 ((-1230) |#4|)) (-15 -1913 ((-549) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-549) (-549) (-549))) (-15 -3413 ((-549) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-549) (-549) (-549) (-549))) (-15 -2029 ((-1230) (-621 |#4|))) (-15 -2704 ((-1230) (-549))) (-15 -3758 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2322 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-747)) (|:| -2443 |#4|)) |#4| (-747))) (-15 -2035 ((-747) |#4|))) (-444) (-769) (-823) (-920 |#1| |#2| |#3|)) (T -441))
+((-2035 (*1 *2 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-747)) (-5 *1 (-441 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))) (-2322 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-2 (|:| |totdeg| (-747)) (|:| -2443 *4))) (-5 *5 (-747)) (-4 *4 (-920 *6 *7 *8)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-5 *2 (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4) (|:| |polj| *4))) (-5 *1 (-441 *6 *7 *8 *4)))) (-3758 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-747)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-769)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-441 *4 *5 *6 *7)))) (-2704 (*1 *2 *3) (-12 (-5 *3 (-549)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1230)) (-5 *1 (-441 *4 *5 *6 *7)) (-4 *7 (-920 *4 *5 *6)))) (-2029 (*1 *2 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1230)) (-5 *1 (-441 *4 *5 *6 *7)))) (-3413 (*1 *2 *3 *4 *4 *2 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-747)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-769)) (-4 *4 (-920 *5 *6 *7)) (-4 *5 (-444)) (-4 *7 (-823)) (-5 *1 (-441 *5 *6 *7 *4)))) (-1913 (*1 *2 *3 *4 *4 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-747)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-769)) (-4 *4 (-920 *5 *6 *7)) (-4 *5 (-444)) (-4 *7 (-823)) (-5 *1 (-441 *5 *6 *7 *4)))) (-3230 (*1 *2 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1230)) (-5 *1 (-441 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))) (-3672 (*1 *2 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-549)) (-5 *1 (-441 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))) (-4171 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-441 *3 *4 *5 *6)))) (-3001 (*1 *2 *2 *2) (-12 (-5 *2 (-621 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-747)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-769)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-444)) (-4 *5 (-823)) (-5 *1 (-441 *3 *4 *5 *6)))) (-3926 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-747)) (|:| |poli| *2) (|:| |polj| *2))) (-4 *5 (-769)) (-4 *2 (-920 *4 *5 *6)) (-5 *1 (-441 *4 *5 *6 *2)) (-4 *4 (-444)) (-4 *6 (-823)))) (-1287 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-621 (-2 (|:| |totdeg| (-747)) (|:| -2443 *3)))) (-5 *4 (-747)) (-4 *3 (-920 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-441 *5 *6 *7 *3)))) (-2693 (*1 *2 *2) (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-441 *3 *4 *5 *2)) (-4 *2 (-920 *3 *4 *5)))) (-2372 (*1 *2 *3 *4) (-12 (-5 *4 (-621 *3)) (-4 *3 (-920 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5))) (-5 *1 (-441 *5 *6 *7 *3)))) (-2491 (*1 *2 *3 *2) (-12 (-5 *2 (-621 (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-747)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *3 (-769)) (-4 *6 (-920 *4 *3 *5)) (-4 *4 (-444)) (-4 *5 (-823)) (-5 *1 (-441 *4 *3 *5 *6)))) (-3259 (*1 *2 *2) (-12 (-5 *2 (-621 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-747)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-769)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-444)) (-4 *5 (-823)) (-5 *1 (-441 *3 *4 *5 *6)))) (-4038 (*1 *2 *3 *2) (-12 (-5 *2 (-621 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-747)) (|:| |poli| *3) (|:| |polj| *3)))) (-4 *5 (-769)) (-4 *3 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *6 (-823)) (-5 *1 (-441 *4 *5 *6 *3)))) (-1964 (*1 *2 *3 *3 *3 *3) (-12 (-4 *4 (-444)) (-4 *3 (-769)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-441 *4 *3 *5 *6)) (-4 *6 (-920 *4 *3 *5)))) (-3629 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *3 (-769)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-441 *4 *3 *5 *6)) (-4 *6 (-920 *4 *3 *5)))) (-3740 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-747)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-769)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-441 *4 *5 *6 *7)))) (-1881 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-621 *7)) (-5 *3 (-549)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-441 *4 *5 *6 *7)))) (-3841 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-441 *4 *5 *6 *2)))) (-4025 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-441 *4 *5 *6 *2)))))
+(-10 -7 (-15 -4025 (|#4| |#4| (-621 |#4|))) (-15 -3841 (|#4| |#4| (-621 |#4|))) (-15 -1881 ((-621 |#4|) (-621 |#4|) (-549) (-549))) (-15 -3740 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3629 ((-112) |#2| |#2|)) (-15 -1964 ((-112) |#2| |#2| |#2| |#2|)) (-15 -4038 ((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3259 ((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2491 ((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2372 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-621 |#4|))) (-15 -2693 (|#4| |#4|)) (-15 -1287 ((-621 (-2 (|:| |totdeg| (-747)) (|:| -2443 |#4|))) |#4| (-747) (-621 (-2 (|:| |totdeg| (-747)) (|:| -2443 |#4|))))) (-15 -3926 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3001 ((-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-621 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -4171 ((-621 |#4|) (-621 |#4|))) (-15 -3672 ((-549) |#4|)) (-15 -3230 ((-1230) |#4|)) (-15 -1913 ((-549) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-549) (-549) (-549))) (-15 -3413 ((-549) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-549) (-549) (-549) (-549))) (-15 -2029 ((-1230) (-621 |#4|))) (-15 -2704 ((-1230) (-549))) (-15 -3758 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2322 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-747)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-747)) (|:| -2443 |#4|)) |#4| (-747))) (-15 -2035 ((-747) |#4|)))
+((-2648 ((|#4| |#4| (-621 |#4|)) 22 (|has| |#1| (-356)))) (-1557 (((-621 |#4|) (-621 |#4|) (-1124) (-1124)) 41) (((-621 |#4|) (-621 |#4|) (-1124)) 40) (((-621 |#4|) (-621 |#4|)) 35)))
+(((-442 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1557 ((-621 |#4|) (-621 |#4|))) (-15 -1557 ((-621 |#4|) (-621 |#4|) (-1124))) (-15 -1557 ((-621 |#4|) (-621 |#4|) (-1124) (-1124))) (IF (|has| |#1| (-356)) (-15 -2648 (|#4| |#4| (-621 |#4|))) |%noBranch|)) (-444) (-769) (-823) (-920 |#1| |#2| |#3|)) (T -442))
+((-2648 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *4 *5 *6)) (-4 *4 (-356)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-442 *4 *5 *6 *2)))) (-1557 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-621 *7)) (-5 *3 (-1124)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-442 *4 *5 *6 *7)))) (-1557 (*1 *2 *2 *3) (-12 (-5 *2 (-621 *7)) (-5 *3 (-1124)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-442 *4 *5 *6 *7)))) (-1557 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-442 *3 *4 *5 *6)))))
+(-10 -7 (-15 -1557 ((-621 |#4|) (-621 |#4|))) (-15 -1557 ((-621 |#4|) (-621 |#4|) (-1124))) (-15 -1557 ((-621 |#4|) (-621 |#4|) (-1124) (-1124))) (IF (|has| |#1| (-356)) (-15 -2648 (|#4| |#4| (-621 |#4|))) |%noBranch|))
+((-3696 (($ $ $) 14) (($ (-621 $)) 21)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 41)) (-3726 (($ $ $) NIL) (($ (-621 $)) 22)))
+(((-443 |#1|) (-10 -8 (-15 -2994 ((-1138 |#1|) (-1138 |#1|) (-1138 |#1|))) (-15 -3696 (|#1| (-621 |#1|))) (-15 -3696 (|#1| |#1| |#1|)) (-15 -3726 (|#1| (-621 |#1|))) (-15 -3726 (|#1| |#1| |#1|))) (-444)) (T -443))
+NIL
+(-10 -8 (-15 -2994 ((-1138 |#1|) (-1138 |#1|) (-1138 |#1|))) (-15 -3696 (|#1| (-621 |#1|))) (-15 -3696 (|#1| |#1| |#1|)) (-15 -3726 (|#1| (-621 |#1|))) (-15 -3726 (|#1| |#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-2040 (((-3 $ "failed") $ $) 40)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41)) (-2371 (((-747)) 28)) (-2441 (((-112) $ $) 37)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-444) (-138)) (T -444))
-((-3727 (*1 *1 *1 *1) (-4 *1 (-444))) (-3727 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-444)))) (-3697 (*1 *1 *1 *1) (-4 *1 (-444))) (-3697 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-444)))) (-1721 (*1 *2 *2 *2) (-12 (-5 *2 (-1139 *1)) (-4 *1 (-444)))))
-(-13 (-541) (-10 -8 (-15 -3727 ($ $ $)) (-15 -3727 ($ (-621 $))) (-15 -3697 ($ $ $)) (-15 -3697 ($ (-621 $))) (-15 -1721 ((-1139 $) (-1139 $) (-1139 $)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2207 (((-3 $ "failed")) NIL (|has| (-400 (-923 |#1|)) (-541)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3277 (((-1226 (-665 (-400 (-923 |#1|)))) (-1226 $)) NIL) (((-1226 (-665 (-400 (-923 |#1|))))) NIL)) (-3945 (((-1226 $)) NIL)) (-1682 (($) NIL T CONST)) (-3219 (((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed")) NIL)) (-3550 (((-3 $ "failed")) NIL (|has| (-400 (-923 |#1|)) (-541)))) (-4212 (((-665 (-400 (-923 |#1|))) (-1226 $)) NIL) (((-665 (-400 (-923 |#1|)))) NIL)) (-2840 (((-400 (-923 |#1|)) $) NIL)) (-3841 (((-665 (-400 (-923 |#1|))) $ (-1226 $)) NIL) (((-665 (-400 (-923 |#1|))) $) NIL)) (-3038 (((-3 $ "failed") $) NIL (|has| (-400 (-923 |#1|)) (-541)))) (-2478 (((-1139 (-923 (-400 (-923 |#1|))))) NIL (|has| (-400 (-923 |#1|)) (-356))) (((-1139 (-400 (-923 |#1|)))) 84 (|has| |#1| (-541)))) (-3117 (($ $ (-892)) NIL)) (-2182 (((-400 (-923 |#1|)) $) NIL)) (-2289 (((-1139 (-400 (-923 |#1|))) $) 82 (|has| (-400 (-923 |#1|)) (-541)))) (-3076 (((-400 (-923 |#1|)) (-1226 $)) NIL) (((-400 (-923 |#1|))) NIL)) (-3266 (((-1139 (-400 (-923 |#1|))) $) NIL)) (-1368 (((-112)) NIL)) (-3492 (($ (-1226 (-400 (-923 |#1|))) (-1226 $)) 103) (($ (-1226 (-400 (-923 |#1|)))) NIL)) (-2114 (((-3 $ "failed") $) NIL (|has| (-400 (-923 |#1|)) (-541)))) (-3123 (((-892)) NIL)) (-3601 (((-112)) NIL)) (-2943 (($ $ (-892)) NIL)) (-3975 (((-112)) NIL)) (-2291 (((-112)) NIL)) (-2647 (((-112)) NIL)) (-1742 (((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed")) NIL)) (-4101 (((-3 $ "failed")) NIL (|has| (-400 (-923 |#1|)) (-541)))) (-2870 (((-665 (-400 (-923 |#1|))) (-1226 $)) NIL) (((-665 (-400 (-923 |#1|)))) NIL)) (-2654 (((-400 (-923 |#1|)) $) NIL)) (-2303 (((-665 (-400 (-923 |#1|))) $ (-1226 $)) NIL) (((-665 (-400 (-923 |#1|))) $) NIL)) (-1919 (((-3 $ "failed") $) NIL (|has| (-400 (-923 |#1|)) (-541)))) (-2014 (((-1139 (-923 (-400 (-923 |#1|))))) NIL (|has| (-400 (-923 |#1|)) (-356))) (((-1139 (-400 (-923 |#1|)))) 83 (|has| |#1| (-541)))) (-2884 (($ $ (-892)) NIL)) (-2248 (((-400 (-923 |#1|)) $) NIL)) (-1378 (((-1139 (-400 (-923 |#1|))) $) 77 (|has| (-400 (-923 |#1|)) (-541)))) (-2920 (((-400 (-923 |#1|)) (-1226 $)) NIL) (((-400 (-923 |#1|))) NIL)) (-2443 (((-1139 (-400 (-923 |#1|))) $) NIL)) (-3623 (((-112)) NIL)) (-3851 (((-1125) $) NIL)) (-3260 (((-112)) NIL)) (-2754 (((-112)) NIL)) (-2055 (((-112)) NIL)) (-3990 (((-1087) $) NIL)) (-4020 (((-400 (-923 |#1|)) $ $) 71 (|has| |#1| (-541)))) (-3137 (((-400 (-923 |#1|)) $) 93 (|has| |#1| (-541)))) (-3780 (((-400 (-923 |#1|)) $) 95 (|has| |#1| (-541)))) (-2187 (((-1139 (-400 (-923 |#1|))) $) 88 (|has| |#1| (-541)))) (-2973 (((-400 (-923 |#1|))) 72 (|has| |#1| (-541)))) (-3439 (((-400 (-923 |#1|)) $ $) 64 (|has| |#1| (-541)))) (-3860 (((-400 (-923 |#1|)) $) 92 (|has| |#1| (-541)))) (-3322 (((-400 (-923 |#1|)) $) 94 (|has| |#1| (-541)))) (-2705 (((-1139 (-400 (-923 |#1|))) $) 87 (|has| |#1| (-541)))) (-2565 (((-400 (-923 |#1|))) 68 (|has| |#1| (-541)))) (-2394 (($) 101) (($ (-1143)) 107) (($ (-1226 (-1143))) 106) (($ (-1226 $)) 96) (($ (-1143) (-1226 $)) 105) (($ (-1226 (-1143)) (-1226 $)) 104)) (-2392 (((-112)) NIL)) (-3341 (((-400 (-923 |#1|)) $ (-549)) NIL)) (-4263 (((-1226 (-400 (-923 |#1|))) $ (-1226 $)) 98) (((-665 (-400 (-923 |#1|))) (-1226 $) (-1226 $)) NIL) (((-1226 (-400 (-923 |#1|))) $) 40) (((-665 (-400 (-923 |#1|))) (-1226 $)) NIL)) (-2845 (((-1226 (-400 (-923 |#1|))) $) NIL) (($ (-1226 (-400 (-923 |#1|)))) 37)) (-4111 (((-621 (-923 (-400 (-923 |#1|)))) (-1226 $)) NIL) (((-621 (-923 (-400 (-923 |#1|))))) NIL) (((-621 (-923 |#1|)) (-1226 $)) 99 (|has| |#1| (-541))) (((-621 (-923 |#1|))) 100 (|has| |#1| (-541)))) (-3293 (($ $ $) NIL)) (-1942 (((-112)) NIL)) (-3846 (((-834) $) NIL) (($ (-1226 (-400 (-923 |#1|)))) NIL)) (-1949 (((-1226 $)) 60)) (-4315 (((-621 (-1226 (-400 (-923 |#1|))))) NIL (|has| (-400 (-923 |#1|)) (-541)))) (-4272 (($ $ $ $) NIL)) (-3430 (((-112)) NIL)) (-3596 (($ (-665 (-400 (-923 |#1|))) $) NIL)) (-2174 (($ $ $) NIL)) (-2864 (((-112)) NIL)) (-4257 (((-112)) NIL)) (-1898 (((-112)) NIL)) (-3276 (($) NIL T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) 97)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 56) (($ $ (-400 (-923 |#1|))) NIL) (($ (-400 (-923 |#1|)) $) NIL) (($ (-1109 |#2| (-400 (-923 |#1|))) $) NIL)))
-(((-445 |#1| |#2| |#3| |#4|) (-13 (-410 (-400 (-923 |#1|))) (-624 (-1109 |#2| (-400 (-923 |#1|)))) (-10 -8 (-15 -3846 ($ (-1226 (-400 (-923 |#1|))))) (-15 -1742 ((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed"))) (-15 -3219 ((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed"))) (-15 -2394 ($)) (-15 -2394 ($ (-1143))) (-15 -2394 ($ (-1226 (-1143)))) (-15 -2394 ($ (-1226 $))) (-15 -2394 ($ (-1143) (-1226 $))) (-15 -2394 ($ (-1226 (-1143)) (-1226 $))) (IF (|has| |#1| (-541)) (PROGN (-15 -2014 ((-1139 (-400 (-923 |#1|))))) (-15 -2705 ((-1139 (-400 (-923 |#1|))) $)) (-15 -3860 ((-400 (-923 |#1|)) $)) (-15 -3322 ((-400 (-923 |#1|)) $)) (-15 -2478 ((-1139 (-400 (-923 |#1|))))) (-15 -2187 ((-1139 (-400 (-923 |#1|))) $)) (-15 -3137 ((-400 (-923 |#1|)) $)) (-15 -3780 ((-400 (-923 |#1|)) $)) (-15 -3439 ((-400 (-923 |#1|)) $ $)) (-15 -2565 ((-400 (-923 |#1|)))) (-15 -4020 ((-400 (-923 |#1|)) $ $)) (-15 -2973 ((-400 (-923 |#1|)))) (-15 -4111 ((-621 (-923 |#1|)) (-1226 $))) (-15 -4111 ((-621 (-923 |#1|))))) |%noBranch|))) (-170) (-892) (-621 (-1143)) (-1226 (-665 |#1|))) (T -445))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1226 (-400 (-923 *3)))) (-4 *3 (-170)) (-14 *6 (-1226 (-665 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))))) (-1742 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-445 *3 *4 *5 *6)) (|:| -1949 (-621 (-445 *3 *4 *5 *6))))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))) (-3219 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-445 *3 *4 *5 *6)) (|:| -1949 (-621 (-445 *3 *4 *5 *6))))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))) (-2394 (*1 *1) (-12 (-5 *1 (-445 *2 *3 *4 *5)) (-4 *2 (-170)) (-14 *3 (-892)) (-14 *4 (-621 (-1143))) (-14 *5 (-1226 (-665 *2))))) (-2394 (*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 *2)) (-14 *6 (-1226 (-665 *3))))) (-2394 (*1 *1 *2) (-12 (-5 *2 (-1226 (-1143))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))) (-2394 (*1 *1 *2) (-12 (-5 *2 (-1226 (-445 *3 *4 *5 *6))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))) (-2394 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-445 *4 *5 *6 *7))) (-5 *1 (-445 *4 *5 *6 *7)) (-4 *4 (-170)) (-14 *5 (-892)) (-14 *6 (-621 *2)) (-14 *7 (-1226 (-665 *4))))) (-2394 (*1 *1 *2 *3) (-12 (-5 *2 (-1226 (-1143))) (-5 *3 (-1226 (-445 *4 *5 *6 *7))) (-5 *1 (-445 *4 *5 *6 *7)) (-4 *4 (-170)) (-14 *5 (-892)) (-14 *6 (-621 (-1143))) (-14 *7 (-1226 (-665 *4))))) (-2014 (*1 *2) (-12 (-5 *2 (-1139 (-400 (-923 *3)))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))) (-2705 (*1 *2 *1) (-12 (-5 *2 (-1139 (-400 (-923 *3)))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))) (-3860 (*1 *2 *1) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))) (-3322 (*1 *2 *1) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))) (-2478 (*1 *2) (-12 (-5 *2 (-1139 (-400 (-923 *3)))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))) (-2187 (*1 *2 *1) (-12 (-5 *2 (-1139 (-400 (-923 *3)))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))) (-3137 (*1 *2 *1) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))) (-3439 (*1 *2 *1 *1) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))) (-2565 (*1 *2) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))) (-4020 (*1 *2 *1 *1) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))) (-2973 (*1 *2) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))) (-4111 (*1 *2 *3) (-12 (-5 *3 (-1226 (-445 *4 *5 *6 *7))) (-5 *2 (-621 (-923 *4))) (-5 *1 (-445 *4 *5 *6 *7)) (-4 *4 (-541)) (-4 *4 (-170)) (-14 *5 (-892)) (-14 *6 (-621 (-1143))) (-14 *7 (-1226 (-665 *4))))) (-4111 (*1 *2) (-12 (-5 *2 (-621 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))))
-(-13 (-410 (-400 (-923 |#1|))) (-624 (-1109 |#2| (-400 (-923 |#1|)))) (-10 -8 (-15 -3846 ($ (-1226 (-400 (-923 |#1|))))) (-15 -1742 ((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed"))) (-15 -3219 ((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed"))) (-15 -2394 ($)) (-15 -2394 ($ (-1143))) (-15 -2394 ($ (-1226 (-1143)))) (-15 -2394 ($ (-1226 $))) (-15 -2394 ($ (-1143) (-1226 $))) (-15 -2394 ($ (-1226 (-1143)) (-1226 $))) (IF (|has| |#1| (-541)) (PROGN (-15 -2014 ((-1139 (-400 (-923 |#1|))))) (-15 -2705 ((-1139 (-400 (-923 |#1|))) $)) (-15 -3860 ((-400 (-923 |#1|)) $)) (-15 -3322 ((-400 (-923 |#1|)) $)) (-15 -2478 ((-1139 (-400 (-923 |#1|))))) (-15 -2187 ((-1139 (-400 (-923 |#1|))) $)) (-15 -3137 ((-400 (-923 |#1|)) $)) (-15 -3780 ((-400 (-923 |#1|)) $)) (-15 -3439 ((-400 (-923 |#1|)) $ $)) (-15 -2565 ((-400 (-923 |#1|)))) (-15 -4020 ((-400 (-923 |#1|)) $ $)) (-15 -2973 ((-400 (-923 |#1|)))) (-15 -4111 ((-621 (-923 |#1|)) (-1226 $))) (-15 -4111 ((-621 (-923 |#1|))))) |%noBranch|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 13)) (-2272 (((-621 (-836 |#1|)) $) 75)) (-2084 (((-1139 $) $ (-836 |#1|)) 46) (((-1139 |#2|) $) 118)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#2| (-541)))) (-2258 (($ $) NIL (|has| |#2| (-541)))) (-2799 (((-112) $) NIL (|has| |#2| (-541)))) (-3186 (((-747) $) 21) (((-747) $ (-621 (-836 |#1|))) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-3979 (($ $) NIL (|has| |#2| (-444)))) (-2402 (((-411 $) $) NIL (|has| |#2| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#2| "failed") $) 44) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-836 |#1|) "failed") $) NIL)) (-2659 ((|#2| $) 42) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#2| (-1009 (-549)))) (((-836 |#1|) $) NIL)) (-1353 (($ $ $ (-836 |#1|)) NIL (|has| |#2| (-170)))) (-1457 (($ $ (-621 (-549))) 80)) (-2070 (($ $) 68)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) NIL) (((-665 |#2|) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1285 (($ $) NIL (|has| |#2| (-444))) (($ $ (-836 |#1|)) NIL (|has| |#2| (-444)))) (-2058 (((-621 $) $) NIL)) (-1420 (((-112) $) NIL (|has| |#2| (-880)))) (-2691 (($ $ |#2| |#3| $) NIL)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-836 |#1|) (-857 (-372))) (|has| |#2| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-836 |#1|) (-857 (-549))) (|has| |#2| (-857 (-549)))))) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) 58)) (-2261 (($ (-1139 |#2|) (-836 |#1|)) 123) (($ (-1139 $) (-836 |#1|)) 52)) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) 59)) (-2246 (($ |#2| |#3|) 28) (($ $ (-836 |#1|) (-747)) 30) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ (-836 |#1|)) NIL)) (-3611 ((|#3| $) NIL) (((-747) $ (-836 |#1|)) 50) (((-621 (-747)) $ (-621 (-836 |#1|))) 57)) (-2863 (($ $ $) NIL (|has| |#2| (-823)))) (-3575 (($ $ $) NIL (|has| |#2| (-823)))) (-3705 (($ (-1 |#3| |#3|) $) NIL)) (-2797 (($ (-1 |#2| |#2|) $) NIL)) (-1520 (((-3 (-836 |#1|) "failed") $) 39)) (-2028 (($ $) NIL)) (-2043 ((|#2| $) 41)) (-3697 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-3851 (((-1125) $) NIL)) (-4266 (((-3 (-621 $) "failed") $) NIL)) (-2533 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-2 (|:| |var| (-836 |#1|)) (|:| -3731 (-747))) "failed") $) NIL)) (-3990 (((-1087) $) NIL)) (-2004 (((-112) $) 40)) (-2016 ((|#2| $) 116)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#2| (-444)))) (-3727 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) 128 (|has| |#2| (-444)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-2121 (((-411 $) $) NIL (|has| |#2| (-880)))) (-2042 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-541)))) (-2686 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-836 |#1|) |#2|) 87) (($ $ (-621 (-836 |#1|)) (-621 |#2|)) 90) (($ $ (-836 |#1|) $) 85) (($ $ (-621 (-836 |#1|)) (-621 $)) 106)) (-3602 (($ $ (-836 |#1|)) NIL (|has| |#2| (-170)))) (-3456 (($ $ (-836 |#1|)) 53) (($ $ (-621 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-3701 ((|#3| $) 67) (((-747) $ (-836 |#1|)) 37) (((-621 (-747)) $ (-621 (-836 |#1|))) 56)) (-2845 (((-863 (-372)) $) NIL (-12 (|has| (-836 |#1|) (-594 (-863 (-372)))) (|has| |#2| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-836 |#1|) (-594 (-863 (-549)))) (|has| |#2| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-836 |#1|) (-594 (-525))) (|has| |#2| (-594 (-525)))))) (-2216 ((|#2| $) 125 (|has| |#2| (-444))) (($ $ (-836 |#1|)) NIL (|has| |#2| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#2| (-880))))) (-3846 (((-834) $) 145) (($ (-549)) NIL) (($ |#2|) 86) (($ (-836 |#1|)) 31) (($ (-400 (-549))) NIL (-1536 (|has| |#2| (-38 (-400 (-549)))) (|has| |#2| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#2| (-541)))) (-4141 (((-621 |#2|) $) NIL)) (-2152 ((|#2| $ |#3|) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#2| (-880))) (|has| |#2| (-143))))) (-2082 (((-747)) NIL)) (-1509 (($ $ $ (-747)) NIL (|has| |#2| (-170)))) (-1498 (((-112) $ $) NIL (|has| |#2| (-541)))) (-3276 (($) 17 T CONST)) (-3287 (($) 25 T CONST)) (-1702 (($ $ (-836 |#1|)) NIL) (($ $ (-621 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-2448 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2513 (($ $ |#2|) 64 (|has| |#2| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) 111)) (** (($ $ (-892)) NIL) (($ $ (-747)) 109)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 29) (($ $ (-400 (-549))) NIL (|has| |#2| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#2| (-38 (-400 (-549))))) (($ |#2| $) 63) (($ $ |#2|) NIL)))
-(((-446 |#1| |#2| |#3|) (-13 (-920 |#2| |#3| (-836 |#1|)) (-10 -8 (-15 -1457 ($ $ (-621 (-549)))))) (-621 (-1143)) (-1018) (-232 (-3775 |#1|) (-747))) (T -446))
-((-1457 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-14 *3 (-621 (-1143))) (-5 *1 (-446 *3 *4 *5)) (-4 *4 (-1018)) (-4 *5 (-232 (-3775 *3) (-747))))))
-(-13 (-920 |#2| |#3| (-836 |#1|)) (-10 -8 (-15 -1457 ($ $ (-621 (-549))))))
-((-2853 (((-112) |#1| (-621 |#2|)) 69)) (-3372 (((-3 (-1226 (-621 |#2|)) "failed") (-747) |#1| (-621 |#2|)) 78)) (-2923 (((-3 (-621 |#2|) "failed") |#2| |#1| (-1226 (-621 |#2|))) 80)) (-3574 ((|#2| |#2| |#1|) 28)) (-1522 (((-747) |#2| (-621 |#2|)) 20)))
-(((-447 |#1| |#2|) (-10 -7 (-15 -3574 (|#2| |#2| |#1|)) (-15 -1522 ((-747) |#2| (-621 |#2|))) (-15 -3372 ((-3 (-1226 (-621 |#2|)) "failed") (-747) |#1| (-621 |#2|))) (-15 -2923 ((-3 (-621 |#2|) "failed") |#2| |#1| (-1226 (-621 |#2|)))) (-15 -2853 ((-112) |#1| (-621 |#2|)))) (-300) (-1202 |#1|)) (T -447))
-((-2853 (*1 *2 *3 *4) (-12 (-5 *4 (-621 *5)) (-4 *5 (-1202 *3)) (-4 *3 (-300)) (-5 *2 (-112)) (-5 *1 (-447 *3 *5)))) (-2923 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1226 (-621 *3))) (-4 *4 (-300)) (-5 *2 (-621 *3)) (-5 *1 (-447 *4 *3)) (-4 *3 (-1202 *4)))) (-3372 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-747)) (-4 *4 (-300)) (-4 *6 (-1202 *4)) (-5 *2 (-1226 (-621 *6))) (-5 *1 (-447 *4 *6)) (-5 *5 (-621 *6)))) (-1522 (*1 *2 *3 *4) (-12 (-5 *4 (-621 *3)) (-4 *3 (-1202 *5)) (-4 *5 (-300)) (-5 *2 (-747)) (-5 *1 (-447 *5 *3)))) (-3574 (*1 *2 *2 *3) (-12 (-4 *3 (-300)) (-5 *1 (-447 *3 *2)) (-4 *2 (-1202 *3)))))
-(-10 -7 (-15 -3574 (|#2| |#2| |#1|)) (-15 -1522 ((-747) |#2| (-621 |#2|))) (-15 -3372 ((-3 (-1226 (-621 |#2|)) "failed") (-747) |#1| (-621 |#2|))) (-15 -2923 ((-3 (-621 |#2|) "failed") |#2| |#1| (-1226 (-621 |#2|)))) (-15 -2853 ((-112) |#1| (-621 |#2|))))
-((-2121 (((-411 |#5|) |#5|) 24)))
-(((-448 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2121 ((-411 |#5|) |#5|))) (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $)) (-15 -3011 ((-3 $ "failed") (-1143))))) (-769) (-541) (-541) (-920 |#4| |#2| |#1|)) (T -448))
-((-2121 (*1 *2 *3) (-12 (-4 *4 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $)) (-15 -3011 ((-3 $ "failed") (-1143)))))) (-4 *5 (-769)) (-4 *7 (-541)) (-5 *2 (-411 *3)) (-5 *1 (-448 *4 *5 *6 *7 *3)) (-4 *6 (-541)) (-4 *3 (-920 *7 *5 *4)))))
-(-10 -7 (-15 -2121 ((-411 |#5|) |#5|)))
-((-2971 ((|#3|) 37)) (-1721 (((-1139 |#4|) (-1139 |#4|) (-1139 |#4|)) 33)))
-(((-449 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1721 ((-1139 |#4|) (-1139 |#4|) (-1139 |#4|))) (-15 -2971 (|#3|))) (-769) (-823) (-880) (-920 |#3| |#1| |#2|)) (T -449))
-((-2971 (*1 *2) (-12 (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-880)) (-5 *1 (-449 *3 *4 *2 *5)) (-4 *5 (-920 *2 *3 *4)))) (-1721 (*1 *2 *2 *2) (-12 (-5 *2 (-1139 *6)) (-4 *6 (-920 *5 *3 *4)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-880)) (-5 *1 (-449 *3 *4 *5 *6)))))
-(-10 -7 (-15 -1721 ((-1139 |#4|) (-1139 |#4|) (-1139 |#4|))) (-15 -2971 (|#3|)))
-((-2121 (((-411 (-1139 |#1|)) (-1139 |#1|)) 43)))
-(((-450 |#1|) (-10 -7 (-15 -2121 ((-411 (-1139 |#1|)) (-1139 |#1|)))) (-300)) (T -450))
-((-2121 (*1 *2 *3) (-12 (-4 *4 (-300)) (-5 *2 (-411 (-1139 *4))) (-5 *1 (-450 *4)) (-5 *3 (-1139 *4)))))
-(-10 -7 (-15 -2121 ((-411 (-1139 |#1|)) (-1139 |#1|))))
-((-2336 (((-52) |#2| (-1143) (-287 |#2|) (-1193 (-747))) 42) (((-52) (-1 |#2| (-549)) (-287 |#2|) (-1193 (-747))) 41) (((-52) |#2| (-1143) (-287 |#2|)) 35) (((-52) (-1 |#2| (-549)) (-287 |#2|)) 28)) (-2826 (((-52) |#2| (-1143) (-287 |#2|) (-1193 (-400 (-549))) (-400 (-549))) 80) (((-52) (-1 |#2| (-400 (-549))) (-287 |#2|) (-1193 (-400 (-549))) (-400 (-549))) 79) (((-52) |#2| (-1143) (-287 |#2|) (-1193 (-549))) 78) (((-52) (-1 |#2| (-549)) (-287 |#2|) (-1193 (-549))) 77) (((-52) |#2| (-1143) (-287 |#2|)) 72) (((-52) (-1 |#2| (-549)) (-287 |#2|)) 71)) (-2366 (((-52) |#2| (-1143) (-287 |#2|) (-1193 (-400 (-549))) (-400 (-549))) 66) (((-52) (-1 |#2| (-400 (-549))) (-287 |#2|) (-1193 (-400 (-549))) (-400 (-549))) 64)) (-2352 (((-52) |#2| (-1143) (-287 |#2|) (-1193 (-549))) 48) (((-52) (-1 |#2| (-549)) (-287 |#2|) (-1193 (-549))) 47)))
-(((-451 |#1| |#2|) (-10 -7 (-15 -2336 ((-52) (-1 |#2| (-549)) (-287 |#2|))) (-15 -2336 ((-52) |#2| (-1143) (-287 |#2|))) (-15 -2336 ((-52) (-1 |#2| (-549)) (-287 |#2|) (-1193 (-747)))) (-15 -2336 ((-52) |#2| (-1143) (-287 |#2|) (-1193 (-747)))) (-15 -2352 ((-52) (-1 |#2| (-549)) (-287 |#2|) (-1193 (-549)))) (-15 -2352 ((-52) |#2| (-1143) (-287 |#2|) (-1193 (-549)))) (-15 -2366 ((-52) (-1 |#2| (-400 (-549))) (-287 |#2|) (-1193 (-400 (-549))) (-400 (-549)))) (-15 -2366 ((-52) |#2| (-1143) (-287 |#2|) (-1193 (-400 (-549))) (-400 (-549)))) (-15 -2826 ((-52) (-1 |#2| (-549)) (-287 |#2|))) (-15 -2826 ((-52) |#2| (-1143) (-287 |#2|))) (-15 -2826 ((-52) (-1 |#2| (-549)) (-287 |#2|) (-1193 (-549)))) (-15 -2826 ((-52) |#2| (-1143) (-287 |#2|) (-1193 (-549)))) (-15 -2826 ((-52) (-1 |#2| (-400 (-549))) (-287 |#2|) (-1193 (-400 (-549))) (-400 (-549)))) (-15 -2826 ((-52) |#2| (-1143) (-287 |#2|) (-1193 (-400 (-549))) (-400 (-549))))) (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-27) (-1165) (-423 |#1|))) (T -451))
-((-2826 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1143)) (-5 *5 (-287 *3)) (-5 *6 (-1193 (-400 (-549)))) (-5 *7 (-400 (-549))) (-4 *3 (-13 (-27) (-1165) (-423 *8))) (-4 *8 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *8 *3)))) (-2826 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-400 (-549)))) (-5 *4 (-287 *8)) (-5 *5 (-1193 (-400 (-549)))) (-5 *6 (-400 (-549))) (-4 *8 (-13 (-27) (-1165) (-423 *7))) (-4 *7 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *7 *8)))) (-2826 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1143)) (-5 *5 (-287 *3)) (-5 *6 (-1193 (-549))) (-4 *3 (-13 (-27) (-1165) (-423 *7))) (-4 *7 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *7 *3)))) (-2826 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-549))) (-5 *4 (-287 *7)) (-5 *5 (-1193 (-549))) (-4 *7 (-13 (-27) (-1165) (-423 *6))) (-4 *6 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *6 *7)))) (-2826 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1143)) (-5 *5 (-287 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *6))) (-4 *6 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *6 *3)))) (-2826 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-549))) (-5 *4 (-287 *6)) (-4 *6 (-13 (-27) (-1165) (-423 *5))) (-4 *5 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *5 *6)))) (-2366 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1143)) (-5 *5 (-287 *3)) (-5 *6 (-1193 (-400 (-549)))) (-5 *7 (-400 (-549))) (-4 *3 (-13 (-27) (-1165) (-423 *8))) (-4 *8 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *8 *3)))) (-2366 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-400 (-549)))) (-5 *4 (-287 *8)) (-5 *5 (-1193 (-400 (-549)))) (-5 *6 (-400 (-549))) (-4 *8 (-13 (-27) (-1165) (-423 *7))) (-4 *7 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *7 *8)))) (-2352 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1143)) (-5 *5 (-287 *3)) (-5 *6 (-1193 (-549))) (-4 *3 (-13 (-27) (-1165) (-423 *7))) (-4 *7 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *7 *3)))) (-2352 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-549))) (-5 *4 (-287 *7)) (-5 *5 (-1193 (-549))) (-4 *7 (-13 (-27) (-1165) (-423 *6))) (-4 *6 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *6 *7)))) (-2336 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1143)) (-5 *5 (-287 *3)) (-5 *6 (-1193 (-747))) (-4 *3 (-13 (-27) (-1165) (-423 *7))) (-4 *7 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *7 *3)))) (-2336 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-549))) (-5 *4 (-287 *7)) (-5 *5 (-1193 (-747))) (-4 *7 (-13 (-27) (-1165) (-423 *6))) (-4 *6 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *6 *7)))) (-2336 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1143)) (-5 *5 (-287 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *6))) (-4 *6 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *6 *3)))) (-2336 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-549))) (-5 *4 (-287 *6)) (-4 *6 (-13 (-27) (-1165) (-423 *5))) (-4 *5 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *5 *6)))))
-(-10 -7 (-15 -2336 ((-52) (-1 |#2| (-549)) (-287 |#2|))) (-15 -2336 ((-52) |#2| (-1143) (-287 |#2|))) (-15 -2336 ((-52) (-1 |#2| (-549)) (-287 |#2|) (-1193 (-747)))) (-15 -2336 ((-52) |#2| (-1143) (-287 |#2|) (-1193 (-747)))) (-15 -2352 ((-52) (-1 |#2| (-549)) (-287 |#2|) (-1193 (-549)))) (-15 -2352 ((-52) |#2| (-1143) (-287 |#2|) (-1193 (-549)))) (-15 -2366 ((-52) (-1 |#2| (-400 (-549))) (-287 |#2|) (-1193 (-400 (-549))) (-400 (-549)))) (-15 -2366 ((-52) |#2| (-1143) (-287 |#2|) (-1193 (-400 (-549))) (-400 (-549)))) (-15 -2826 ((-52) (-1 |#2| (-549)) (-287 |#2|))) (-15 -2826 ((-52) |#2| (-1143) (-287 |#2|))) (-15 -2826 ((-52) (-1 |#2| (-549)) (-287 |#2|) (-1193 (-549)))) (-15 -2826 ((-52) |#2| (-1143) (-287 |#2|) (-1193 (-549)))) (-15 -2826 ((-52) (-1 |#2| (-400 (-549))) (-287 |#2|) (-1193 (-400 (-549))) (-400 (-549)))) (-15 -2826 ((-52) |#2| (-1143) (-287 |#2|) (-1193 (-400 (-549))) (-400 (-549)))))
-((-3574 ((|#2| |#2| |#1|) 15)) (-2157 (((-621 |#2|) |#2| (-621 |#2|) |#1| (-892)) 69)) (-3348 (((-2 (|:| |plist| (-621 |#2|)) (|:| |modulo| |#1|)) |#2| (-621 |#2|) |#1| (-892)) 60)))
-(((-452 |#1| |#2|) (-10 -7 (-15 -3348 ((-2 (|:| |plist| (-621 |#2|)) (|:| |modulo| |#1|)) |#2| (-621 |#2|) |#1| (-892))) (-15 -2157 ((-621 |#2|) |#2| (-621 |#2|) |#1| (-892))) (-15 -3574 (|#2| |#2| |#1|))) (-300) (-1202 |#1|)) (T -452))
-((-3574 (*1 *2 *2 *3) (-12 (-4 *3 (-300)) (-5 *1 (-452 *3 *2)) (-4 *2 (-1202 *3)))) (-2157 (*1 *2 *3 *2 *4 *5) (-12 (-5 *2 (-621 *3)) (-5 *5 (-892)) (-4 *3 (-1202 *4)) (-4 *4 (-300)) (-5 *1 (-452 *4 *3)))) (-3348 (*1 *2 *3 *4 *5 *6) (-12 (-5 *6 (-892)) (-4 *5 (-300)) (-4 *3 (-1202 *5)) (-5 *2 (-2 (|:| |plist| (-621 *3)) (|:| |modulo| *5))) (-5 *1 (-452 *5 *3)) (-5 *4 (-621 *3)))))
-(-10 -7 (-15 -3348 ((-2 (|:| |plist| (-621 |#2|)) (|:| |modulo| |#1|)) |#2| (-621 |#2|) |#1| (-892))) (-15 -2157 ((-621 |#2|) |#2| (-621 |#2|) |#1| (-892))) (-15 -3574 (|#2| |#2| |#1|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 28)) (-3956 (($ |#3|) 25)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2070 (($ $) 32)) (-2623 (($ |#2| |#4| $) 33)) (-2246 (($ |#2| (-690 |#3| |#4| |#5|)) 24)) (-2028 (((-690 |#3| |#4| |#5|) $) 15)) (-2375 ((|#3| $) 19)) (-2936 ((|#4| $) 17)) (-2043 ((|#2| $) 29)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-3044 (($ |#2| |#3| |#4|) 26)) (-3276 (($) 36 T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) 34)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ |#6| $) 40) (($ $ |#6|) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-453 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-694 |#6|) (-694 |#2|) (-10 -8 (-15 -2043 (|#2| $)) (-15 -2028 ((-690 |#3| |#4| |#5|) $)) (-15 -2936 (|#4| $)) (-15 -2375 (|#3| $)) (-15 -2070 ($ $)) (-15 -2246 ($ |#2| (-690 |#3| |#4| |#5|))) (-15 -3956 ($ |#3|)) (-15 -3044 ($ |#2| |#3| |#4|)) (-15 -2623 ($ |#2| |#4| $)) (-15 * ($ |#6| $)))) (-621 (-1143)) (-170) (-823) (-232 (-3775 |#1|) (-747)) (-1 (-112) (-2 (|:| -3493 |#3|) (|:| -3731 |#4|)) (-2 (|:| -3493 |#3|) (|:| -3731 |#4|))) (-920 |#2| |#4| (-836 |#1|))) (T -453))
-((* (*1 *1 *2 *1) (-12 (-14 *3 (-621 (-1143))) (-4 *4 (-170)) (-4 *6 (-232 (-3775 *3) (-747))) (-14 *7 (-1 (-112) (-2 (|:| -3493 *5) (|:| -3731 *6)) (-2 (|:| -3493 *5) (|:| -3731 *6)))) (-5 *1 (-453 *3 *4 *5 *6 *7 *2)) (-4 *5 (-823)) (-4 *2 (-920 *4 *6 (-836 *3))))) (-2043 (*1 *2 *1) (-12 (-14 *3 (-621 (-1143))) (-4 *5 (-232 (-3775 *3) (-747))) (-14 *6 (-1 (-112) (-2 (|:| -3493 *4) (|:| -3731 *5)) (-2 (|:| -3493 *4) (|:| -3731 *5)))) (-4 *2 (-170)) (-5 *1 (-453 *3 *2 *4 *5 *6 *7)) (-4 *4 (-823)) (-4 *7 (-920 *2 *5 (-836 *3))))) (-2028 (*1 *2 *1) (-12 (-14 *3 (-621 (-1143))) (-4 *4 (-170)) (-4 *6 (-232 (-3775 *3) (-747))) (-14 *7 (-1 (-112) (-2 (|:| -3493 *5) (|:| -3731 *6)) (-2 (|:| -3493 *5) (|:| -3731 *6)))) (-5 *2 (-690 *5 *6 *7)) (-5 *1 (-453 *3 *4 *5 *6 *7 *8)) (-4 *5 (-823)) (-4 *8 (-920 *4 *6 (-836 *3))))) (-2936 (*1 *2 *1) (-12 (-14 *3 (-621 (-1143))) (-4 *4 (-170)) (-14 *6 (-1 (-112) (-2 (|:| -3493 *5) (|:| -3731 *2)) (-2 (|:| -3493 *5) (|:| -3731 *2)))) (-4 *2 (-232 (-3775 *3) (-747))) (-5 *1 (-453 *3 *4 *5 *2 *6 *7)) (-4 *5 (-823)) (-4 *7 (-920 *4 *2 (-836 *3))))) (-2375 (*1 *2 *1) (-12 (-14 *3 (-621 (-1143))) (-4 *4 (-170)) (-4 *5 (-232 (-3775 *3) (-747))) (-14 *6 (-1 (-112) (-2 (|:| -3493 *2) (|:| -3731 *5)) (-2 (|:| -3493 *2) (|:| -3731 *5)))) (-4 *2 (-823)) (-5 *1 (-453 *3 *4 *2 *5 *6 *7)) (-4 *7 (-920 *4 *5 (-836 *3))))) (-2070 (*1 *1 *1) (-12 (-14 *2 (-621 (-1143))) (-4 *3 (-170)) (-4 *5 (-232 (-3775 *2) (-747))) (-14 *6 (-1 (-112) (-2 (|:| -3493 *4) (|:| -3731 *5)) (-2 (|:| -3493 *4) (|:| -3731 *5)))) (-5 *1 (-453 *2 *3 *4 *5 *6 *7)) (-4 *4 (-823)) (-4 *7 (-920 *3 *5 (-836 *2))))) (-2246 (*1 *1 *2 *3) (-12 (-5 *3 (-690 *5 *6 *7)) (-4 *5 (-823)) (-4 *6 (-232 (-3775 *4) (-747))) (-14 *7 (-1 (-112) (-2 (|:| -3493 *5) (|:| -3731 *6)) (-2 (|:| -3493 *5) (|:| -3731 *6)))) (-14 *4 (-621 (-1143))) (-4 *2 (-170)) (-5 *1 (-453 *4 *2 *5 *6 *7 *8)) (-4 *8 (-920 *2 *6 (-836 *4))))) (-3956 (*1 *1 *2) (-12 (-14 *3 (-621 (-1143))) (-4 *4 (-170)) (-4 *5 (-232 (-3775 *3) (-747))) (-14 *6 (-1 (-112) (-2 (|:| -3493 *2) (|:| -3731 *5)) (-2 (|:| -3493 *2) (|:| -3731 *5)))) (-5 *1 (-453 *3 *4 *2 *5 *6 *7)) (-4 *2 (-823)) (-4 *7 (-920 *4 *5 (-836 *3))))) (-3044 (*1 *1 *2 *3 *4) (-12 (-14 *5 (-621 (-1143))) (-4 *2 (-170)) (-4 *4 (-232 (-3775 *5) (-747))) (-14 *6 (-1 (-112) (-2 (|:| -3493 *3) (|:| -3731 *4)) (-2 (|:| -3493 *3) (|:| -3731 *4)))) (-5 *1 (-453 *5 *2 *3 *4 *6 *7)) (-4 *3 (-823)) (-4 *7 (-920 *2 *4 (-836 *5))))) (-2623 (*1 *1 *2 *3 *1) (-12 (-14 *4 (-621 (-1143))) (-4 *2 (-170)) (-4 *3 (-232 (-3775 *4) (-747))) (-14 *6 (-1 (-112) (-2 (|:| -3493 *5) (|:| -3731 *3)) (-2 (|:| -3493 *5) (|:| -3731 *3)))) (-5 *1 (-453 *4 *2 *5 *3 *6 *7)) (-4 *5 (-823)) (-4 *7 (-920 *2 *3 (-836 *4))))))
-(-13 (-694 |#6|) (-694 |#2|) (-10 -8 (-15 -2043 (|#2| $)) (-15 -2028 ((-690 |#3| |#4| |#5|) $)) (-15 -2936 (|#4| $)) (-15 -2375 (|#3| $)) (-15 -2070 ($ $)) (-15 -2246 ($ |#2| (-690 |#3| |#4| |#5|))) (-15 -3956 ($ |#3|)) (-15 -3044 ($ |#2| |#3| |#4|)) (-15 -2623 ($ |#2| |#4| $)) (-15 * ($ |#6| $))))
-((-1291 (((-3 |#5| "failed") |#5| |#2| (-1 |#2|)) 37)))
-(((-454 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1291 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|)))) (-769) (-823) (-541) (-920 |#3| |#1| |#2|) (-13 (-1009 (-400 (-549))) (-356) (-10 -8 (-15 -3846 ($ |#4|)) (-15 -1394 (|#4| $)) (-15 -1403 (|#4| $))))) (T -454))
-((-1291 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-823)) (-4 *5 (-769)) (-4 *6 (-541)) (-4 *7 (-920 *6 *5 *3)) (-5 *1 (-454 *5 *3 *6 *7 *2)) (-4 *2 (-13 (-1009 (-400 (-549))) (-356) (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $)) (-15 -1403 (*7 $))))))))
-(-10 -7 (-15 -1291 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|))))
-((-3834 (((-112) $ $) NIL)) (-2272 (((-621 |#3|) $) 41)) (-3422 (((-112) $) NIL)) (-2527 (((-112) $) NIL (|has| |#1| (-541)))) (-3193 (((-2 (|:| |under| $) (|:| -3967 $) (|:| |upper| $)) $ |#3|) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-1489 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-1433 (((-112) $) NIL (|has| |#1| (-541)))) (-2555 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2595 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2397 (((-112) $) NIL (|has| |#1| (-541)))) (-3269 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2953 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2714 (((-3 $ "failed") (-621 |#4|)) 47)) (-2659 (($ (-621 |#4|)) NIL)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067))))) (-3812 (($ |#4| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-3675 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-541)))) (-2557 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4337))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4337)))) (-2989 (((-621 |#4|) $) 18 (|has| $ (-6 -4337)))) (-2745 ((|#3| $) 45)) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 |#4|) $) 14 (|has| $ (-6 -4337)))) (-2090 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067))))) (-1868 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#4| |#4|) $) 21)) (-2561 (((-621 |#3|) $) NIL)) (-2378 (((-112) |#3| $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL)) (-4203 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-541)))) (-3990 (((-1087) $) NIL)) (-3779 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1780 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 |#4|) (-621 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-287 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-621 (-287 |#4|))) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) 39)) (-3742 (($) 17)) (-4000 (((-747) |#4| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067)))) (((-747) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) 16)) (-2845 (((-525) $) NIL (|has| |#4| (-594 (-525)))) (($ (-621 |#4|)) 49)) (-3854 (($ (-621 |#4|)) 13)) (-2858 (($ $ |#3|) NIL)) (-3758 (($ $ |#3|) NIL)) (-4317 (($ $ |#3|) NIL)) (-3846 (((-834) $) 38) (((-621 |#4|) $) 48)) (-3527 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 30)) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-455 |#1| |#2| |#3| |#4|) (-13 (-947 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2845 ($ (-621 |#4|))) (-6 -4337) (-6 -4338))) (-1018) (-769) (-823) (-1032 |#1| |#2| |#3|)) (T -455))
-((-2845 (*1 *1 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-455 *3 *4 *5 *6)))))
-(-13 (-947 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2845 ($ (-621 |#4|))) (-6 -4337) (-6 -4338)))
-((-3276 (($) 11)) (-3287 (($) 13)) (* (($ |#2| $) 15) (($ $ |#2|) 16)))
-(((-456 |#1| |#2| |#3|) (-10 -8 (-15 -3287 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3276 (|#1|))) (-457 |#2| |#3|) (-170) (-23)) (T -456))
-NIL
-(-10 -8 (-15 -3287 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3276 (|#1|)))
-((-3834 (((-112) $ $) 7)) (-2714 (((-3 |#1| "failed") $) 26)) (-2659 ((|#1| $) 25)) (-1747 (($ $ $) 23)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3701 ((|#2| $) 19)) (-3846 (((-834) $) 11) (($ |#1|) 27)) (-3276 (($) 18 T CONST)) (-3287 (($) 24 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 15) (($ $ $) 13)) (-2486 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
+((-3726 (*1 *1 *1 *1) (-4 *1 (-444))) (-3726 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-444)))) (-3696 (*1 *1 *1 *1) (-4 *1 (-444))) (-3696 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-444)))) (-2994 (*1 *2 *2 *2) (-12 (-5 *2 (-1138 *1)) (-4 *1 (-444)))))
+(-13 (-541) (-10 -8 (-15 -3726 ($ $ $)) (-15 -3726 ($ (-621 $))) (-15 -3696 ($ $ $)) (-15 -3696 ($ (-621 $))) (-15 -2994 ((-1138 $) (-1138 $) (-1138 $)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-1951 (((-3 $ "failed")) NIL (|has| (-400 (-923 |#1|)) (-541)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-2893 (((-1225 (-665 (-400 (-923 |#1|)))) (-1225 $)) NIL) (((-1225 (-665 (-400 (-923 |#1|))))) NIL)) (-3349 (((-1225 $)) NIL)) (-3034 (($) NIL T CONST)) (-1760 (((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed")) NIL)) (-3372 (((-3 $ "failed")) NIL (|has| (-400 (-923 |#1|)) (-541)))) (-1657 (((-665 (-400 (-923 |#1|))) (-1225 $)) NIL) (((-665 (-400 (-923 |#1|)))) NIL)) (-2872 (((-400 (-923 |#1|)) $) NIL)) (-1785 (((-665 (-400 (-923 |#1|))) $ (-1225 $)) NIL) (((-665 (-400 (-923 |#1|))) $) NIL)) (-2013 (((-3 $ "failed") $) NIL (|has| (-400 (-923 |#1|)) (-541)))) (-3781 (((-1138 (-923 (-400 (-923 |#1|))))) NIL (|has| (-400 (-923 |#1|)) (-356))) (((-1138 (-400 (-923 |#1|)))) 84 (|has| |#1| (-541)))) (-2039 (($ $ (-892)) NIL)) (-4301 (((-400 (-923 |#1|)) $) NIL)) (-1442 (((-1138 (-400 (-923 |#1|))) $) 82 (|has| (-400 (-923 |#1|)) (-541)))) (-2733 (((-400 (-923 |#1|)) (-1225 $)) NIL) (((-400 (-923 |#1|))) NIL)) (-3163 (((-1138 (-400 (-923 |#1|))) $) NIL)) (-2634 (((-112)) NIL)) (-2397 (($ (-1225 (-400 (-923 |#1|))) (-1225 $)) 103) (($ (-1225 (-400 (-923 |#1|)))) NIL)) (-2612 (((-3 $ "failed") $) NIL (|has| (-400 (-923 |#1|)) (-541)))) (-3121 (((-892)) NIL)) (-2639 (((-112)) NIL)) (-3764 (($ $ (-892)) NIL)) (-2915 (((-112)) NIL)) (-1670 (((-112)) NIL)) (-4034 (((-112)) NIL)) (-4001 (((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed")) NIL)) (-3583 (((-3 $ "failed")) NIL (|has| (-400 (-923 |#1|)) (-541)))) (-2686 (((-665 (-400 (-923 |#1|))) (-1225 $)) NIL) (((-665 (-400 (-923 |#1|)))) NIL)) (-3458 (((-400 (-923 |#1|)) $) NIL)) (-3364 (((-665 (-400 (-923 |#1|))) $ (-1225 $)) NIL) (((-665 (-400 (-923 |#1|))) $) NIL)) (-1540 (((-3 $ "failed") $) NIL (|has| (-400 (-923 |#1|)) (-541)))) (-4128 (((-1138 (-923 (-400 (-923 |#1|))))) NIL (|has| (-400 (-923 |#1|)) (-356))) (((-1138 (-400 (-923 |#1|)))) 83 (|has| |#1| (-541)))) (-4304 (($ $ (-892)) NIL)) (-3432 (((-400 (-923 |#1|)) $) NIL)) (-2085 (((-1138 (-400 (-923 |#1|))) $) 77 (|has| (-400 (-923 |#1|)) (-541)))) (-1405 (((-400 (-923 |#1|)) (-1225 $)) NIL) (((-400 (-923 |#1|))) NIL)) (-4257 (((-1138 (-400 (-923 |#1|))) $) NIL)) (-4115 (((-112)) NIL)) (-3441 (((-1124) $) NIL)) (-3775 (((-112)) NIL)) (-3875 (((-112)) NIL)) (-4055 (((-112)) NIL)) (-3988 (((-1086) $) NIL)) (-4142 (((-400 (-923 |#1|)) $ $) 71 (|has| |#1| (-541)))) (-3450 (((-400 (-923 |#1|)) $) 93 (|has| |#1| (-541)))) (-4074 (((-400 (-923 |#1|)) $) 95 (|has| |#1| (-541)))) (-1810 (((-1138 (-400 (-923 |#1|))) $) 88 (|has| |#1| (-541)))) (-3692 (((-400 (-923 |#1|))) 72 (|has| |#1| (-541)))) (-2581 (((-400 (-923 |#1|)) $ $) 64 (|has| |#1| (-541)))) (-3190 (((-400 (-923 |#1|)) $) 92 (|has| |#1| (-541)))) (-1321 (((-400 (-923 |#1|)) $) 94 (|has| |#1| (-541)))) (-2908 (((-1138 (-400 (-923 |#1|))) $) 87 (|has| |#1| (-541)))) (-1278 (((-400 (-923 |#1|))) 68 (|has| |#1| (-541)))) (-3067 (($) 101) (($ (-1142)) 107) (($ (-1225 (-1142))) 106) (($ (-1225 $)) 96) (($ (-1142) (-1225 $)) 105) (($ (-1225 (-1142)) (-1225 $)) 104)) (-2924 (((-112)) NIL)) (-3339 (((-400 (-923 |#1|)) $ (-549)) NIL)) (-1981 (((-1225 (-400 (-923 |#1|))) $ (-1225 $)) 98) (((-665 (-400 (-923 |#1|))) (-1225 $) (-1225 $)) NIL) (((-1225 (-400 (-923 |#1|))) $) 40) (((-665 (-400 (-923 |#1|))) (-1225 $)) NIL)) (-2843 (((-1225 (-400 (-923 |#1|))) $) NIL) (($ (-1225 (-400 (-923 |#1|)))) 37)) (-3166 (((-621 (-923 (-400 (-923 |#1|)))) (-1225 $)) NIL) (((-621 (-923 (-400 (-923 |#1|))))) NIL) (((-621 (-923 |#1|)) (-1225 $)) 99 (|has| |#1| (-541))) (((-621 (-923 |#1|))) 100 (|has| |#1| (-541)))) (-3870 (($ $ $) NIL)) (-3083 (((-112)) NIL)) (-3845 (((-834) $) NIL) (($ (-1225 (-400 (-923 |#1|)))) NIL)) (-2619 (((-1225 $)) 60)) (-3445 (((-621 (-1225 (-400 (-923 |#1|))))) NIL (|has| (-400 (-923 |#1|)) (-541)))) (-3515 (($ $ $ $) NIL)) (-3011 (((-112)) NIL)) (-3593 (($ (-665 (-400 (-923 |#1|))) $) NIL)) (-3485 (($ $ $) NIL)) (-3338 (((-112)) NIL)) (-2959 (((-112)) NIL)) (-1379 (((-112)) NIL)) (-3274 (($) NIL T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) 97)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 56) (($ $ (-400 (-923 |#1|))) NIL) (($ (-400 (-923 |#1|)) $) NIL) (($ (-1108 |#2| (-400 (-923 |#1|))) $) NIL)))
+(((-445 |#1| |#2| |#3| |#4|) (-13 (-410 (-400 (-923 |#1|))) (-624 (-1108 |#2| (-400 (-923 |#1|)))) (-10 -8 (-15 -3845 ($ (-1225 (-400 (-923 |#1|))))) (-15 -4001 ((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed"))) (-15 -1760 ((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed"))) (-15 -3067 ($)) (-15 -3067 ($ (-1142))) (-15 -3067 ($ (-1225 (-1142)))) (-15 -3067 ($ (-1225 $))) (-15 -3067 ($ (-1142) (-1225 $))) (-15 -3067 ($ (-1225 (-1142)) (-1225 $))) (IF (|has| |#1| (-541)) (PROGN (-15 -4128 ((-1138 (-400 (-923 |#1|))))) (-15 -2908 ((-1138 (-400 (-923 |#1|))) $)) (-15 -3190 ((-400 (-923 |#1|)) $)) (-15 -1321 ((-400 (-923 |#1|)) $)) (-15 -3781 ((-1138 (-400 (-923 |#1|))))) (-15 -1810 ((-1138 (-400 (-923 |#1|))) $)) (-15 -3450 ((-400 (-923 |#1|)) $)) (-15 -4074 ((-400 (-923 |#1|)) $)) (-15 -2581 ((-400 (-923 |#1|)) $ $)) (-15 -1278 ((-400 (-923 |#1|)))) (-15 -4142 ((-400 (-923 |#1|)) $ $)) (-15 -3692 ((-400 (-923 |#1|)))) (-15 -3166 ((-621 (-923 |#1|)) (-1225 $))) (-15 -3166 ((-621 (-923 |#1|))))) |%noBranch|))) (-170) (-892) (-621 (-1142)) (-1225 (-665 |#1|))) (T -445))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1225 (-400 (-923 *3)))) (-4 *3 (-170)) (-14 *6 (-1225 (-665 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))))) (-4001 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-445 *3 *4 *5 *6)) (|:| -2619 (-621 (-445 *3 *4 *5 *6))))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))) (-1760 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-445 *3 *4 *5 *6)) (|:| -2619 (-621 (-445 *3 *4 *5 *6))))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))) (-3067 (*1 *1) (-12 (-5 *1 (-445 *2 *3 *4 *5)) (-4 *2 (-170)) (-14 *3 (-892)) (-14 *4 (-621 (-1142))) (-14 *5 (-1225 (-665 *2))))) (-3067 (*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 *2)) (-14 *6 (-1225 (-665 *3))))) (-3067 (*1 *1 *2) (-12 (-5 *2 (-1225 (-1142))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))) (-3067 (*1 *1 *2) (-12 (-5 *2 (-1225 (-445 *3 *4 *5 *6))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))) (-3067 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-445 *4 *5 *6 *7))) (-5 *1 (-445 *4 *5 *6 *7)) (-4 *4 (-170)) (-14 *5 (-892)) (-14 *6 (-621 *2)) (-14 *7 (-1225 (-665 *4))))) (-3067 (*1 *1 *2 *3) (-12 (-5 *2 (-1225 (-1142))) (-5 *3 (-1225 (-445 *4 *5 *6 *7))) (-5 *1 (-445 *4 *5 *6 *7)) (-4 *4 (-170)) (-14 *5 (-892)) (-14 *6 (-621 (-1142))) (-14 *7 (-1225 (-665 *4))))) (-4128 (*1 *2) (-12 (-5 *2 (-1138 (-400 (-923 *3)))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))) (-2908 (*1 *2 *1) (-12 (-5 *2 (-1138 (-400 (-923 *3)))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))) (-3190 (*1 *2 *1) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))) (-1321 (*1 *2 *1) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))) (-3781 (*1 *2) (-12 (-5 *2 (-1138 (-400 (-923 *3)))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))) (-1810 (*1 *2 *1) (-12 (-5 *2 (-1138 (-400 (-923 *3)))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))) (-3450 (*1 *2 *1) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))) (-4074 (*1 *2 *1) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))) (-2581 (*1 *2 *1 *1) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))) (-1278 (*1 *2) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))) (-4142 (*1 *2 *1 *1) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))) (-3692 (*1 *2) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))) (-3166 (*1 *2 *3) (-12 (-5 *3 (-1225 (-445 *4 *5 *6 *7))) (-5 *2 (-621 (-923 *4))) (-5 *1 (-445 *4 *5 *6 *7)) (-4 *4 (-541)) (-4 *4 (-170)) (-14 *5 (-892)) (-14 *6 (-621 (-1142))) (-14 *7 (-1225 (-665 *4))))) (-3166 (*1 *2) (-12 (-5 *2 (-621 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))))
+(-13 (-410 (-400 (-923 |#1|))) (-624 (-1108 |#2| (-400 (-923 |#1|)))) (-10 -8 (-15 -3845 ($ (-1225 (-400 (-923 |#1|))))) (-15 -4001 ((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed"))) (-15 -1760 ((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed"))) (-15 -3067 ($)) (-15 -3067 ($ (-1142))) (-15 -3067 ($ (-1225 (-1142)))) (-15 -3067 ($ (-1225 $))) (-15 -3067 ($ (-1142) (-1225 $))) (-15 -3067 ($ (-1225 (-1142)) (-1225 $))) (IF (|has| |#1| (-541)) (PROGN (-15 -4128 ((-1138 (-400 (-923 |#1|))))) (-15 -2908 ((-1138 (-400 (-923 |#1|))) $)) (-15 -3190 ((-400 (-923 |#1|)) $)) (-15 -1321 ((-400 (-923 |#1|)) $)) (-15 -3781 ((-1138 (-400 (-923 |#1|))))) (-15 -1810 ((-1138 (-400 (-923 |#1|))) $)) (-15 -3450 ((-400 (-923 |#1|)) $)) (-15 -4074 ((-400 (-923 |#1|)) $)) (-15 -2581 ((-400 (-923 |#1|)) $ $)) (-15 -1278 ((-400 (-923 |#1|)))) (-15 -4142 ((-400 (-923 |#1|)) $ $)) (-15 -3692 ((-400 (-923 |#1|)))) (-15 -3166 ((-621 (-923 |#1|)) (-1225 $))) (-15 -3166 ((-621 (-923 |#1|))))) |%noBranch|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 13)) (-2270 (((-621 (-836 |#1|)) $) 75)) (-2082 (((-1138 $) $ (-836 |#1|)) 46) (((-1138 |#2|) $) 118)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#2| (-541)))) (-3044 (($ $) NIL (|has| |#2| (-541)))) (-2774 (((-112) $) NIL (|has| |#2| (-541)))) (-2216 (((-747) $) 21) (((-747) $ (-621 (-836 |#1|))) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-3239 (($ $) NIL (|has| |#2| (-444)))) (-2620 (((-411 $) $) NIL (|has| |#2| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#2| "failed") $) 44) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-836 |#1|) "failed") $) NIL)) (-2657 ((|#2| $) 42) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#2| (-1009 (-549)))) (((-836 |#1|) $) NIL)) (-4114 (($ $ $ (-836 |#1|)) NIL (|has| |#2| (-170)))) (-3139 (($ $ (-621 (-549))) 80)) (-2068 (($ $) 68)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) NIL) (((-665 |#2|) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3004 (($ $) NIL (|has| |#2| (-444))) (($ $ (-836 |#1|)) NIL (|has| |#2| (-444)))) (-2056 (((-621 $) $) NIL)) (-1464 (((-112) $) NIL (|has| |#2| (-880)))) (-4064 (($ $ |#2| |#3| $) NIL)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-836 |#1|) (-857 (-372))) (|has| |#2| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-836 |#1|) (-857 (-549))) (|has| |#2| (-857 (-549)))))) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) 58)) (-2259 (($ (-1138 |#2|) (-836 |#1|)) 123) (($ (-1138 $) (-836 |#1|)) 52)) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) 59)) (-2244 (($ |#2| |#3|) 28) (($ $ (-836 |#1|) (-747)) 30) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ (-836 |#1|)) NIL)) (-2391 ((|#3| $) NIL) (((-747) $ (-836 |#1|)) 50) (((-621 (-747)) $ (-621 (-836 |#1|))) 57)) (-2861 (($ $ $) NIL (|has| |#2| (-823)))) (-3574 (($ $ $) NIL (|has| |#2| (-823)))) (-3224 (($ (-1 |#3| |#3|) $) NIL)) (-2795 (($ (-1 |#2| |#2|) $) NIL)) (-2236 (((-3 (-836 |#1|) "failed") $) 39)) (-2027 (($ $) NIL)) (-2042 ((|#2| $) 41)) (-3696 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-3441 (((-1124) $) NIL)) (-4093 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-621 $) "failed") $) NIL)) (-1477 (((-3 (-2 (|:| |var| (-836 |#1|)) (|:| -1714 (-747))) "failed") $) NIL)) (-3988 (((-1086) $) NIL)) (-2001 (((-112) $) 40)) (-2011 ((|#2| $) 116)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#2| (-444)))) (-3726 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) 128 (|has| |#2| (-444)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-2119 (((-411 $) $) NIL (|has| |#2| (-880)))) (-2040 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-541)))) (-2684 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-836 |#1|) |#2|) 87) (($ $ (-621 (-836 |#1|)) (-621 |#2|)) 90) (($ $ (-836 |#1|) $) 85) (($ $ (-621 (-836 |#1|)) (-621 $)) 106)) (-2740 (($ $ (-836 |#1|)) NIL (|has| |#2| (-170)))) (-3455 (($ $ (-836 |#1|)) 53) (($ $ (-621 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-3977 ((|#3| $) 67) (((-747) $ (-836 |#1|)) 37) (((-621 (-747)) $ (-621 (-836 |#1|))) 56)) (-2843 (((-863 (-372)) $) NIL (-12 (|has| (-836 |#1|) (-594 (-863 (-372)))) (|has| |#2| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-836 |#1|) (-594 (-863 (-549)))) (|has| |#2| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-836 |#1|) (-594 (-525))) (|has| |#2| (-594 (-525)))))) (-1700 ((|#2| $) 125 (|has| |#2| (-444))) (($ $ (-836 |#1|)) NIL (|has| |#2| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#2| (-880))))) (-3845 (((-834) $) 145) (($ (-549)) NIL) (($ |#2|) 86) (($ (-836 |#1|)) 31) (($ (-400 (-549))) NIL (-1536 (|has| |#2| (-38 (-400 (-549)))) (|has| |#2| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#2| (-541)))) (-2157 (((-621 |#2|) $) NIL)) (-4068 ((|#2| $ |#3|) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#2| (-880))) (|has| |#2| (-143))))) (-2371 (((-747)) NIL)) (-4046 (($ $ $ (-747)) NIL (|has| |#2| (-170)))) (-2441 (((-112) $ $) NIL (|has| |#2| (-541)))) (-3274 (($) 17 T CONST)) (-3286 (($) 25 T CONST)) (-1699 (($ $ (-836 |#1|)) NIL) (($ $ (-621 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-2447 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2511 (($ $ |#2|) 64 (|has| |#2| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) 111)) (** (($ $ (-892)) NIL) (($ $ (-747)) 109)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 29) (($ $ (-400 (-549))) NIL (|has| |#2| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#2| (-38 (-400 (-549))))) (($ |#2| $) 63) (($ $ |#2|) NIL)))
+(((-446 |#1| |#2| |#3|) (-13 (-920 |#2| |#3| (-836 |#1|)) (-10 -8 (-15 -3139 ($ $ (-621 (-549)))))) (-621 (-1142)) (-1018) (-232 (-3774 |#1|) (-747))) (T -446))
+((-3139 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-14 *3 (-621 (-1142))) (-5 *1 (-446 *3 *4 *5)) (-4 *4 (-1018)) (-4 *5 (-232 (-3774 *3) (-747))))))
+(-13 (-920 |#2| |#3| (-836 |#1|)) (-10 -8 (-15 -3139 ($ $ (-621 (-549))))))
+((-1711 (((-112) |#1| (-621 |#2|)) 69)) (-3927 (((-3 (-1225 (-621 |#2|)) "failed") (-747) |#1| (-621 |#2|)) 78)) (-2526 (((-3 (-621 |#2|) "failed") |#2| |#1| (-1225 (-621 |#2|))) 80)) (-2012 ((|#2| |#2| |#1|) 28)) (-2627 (((-747) |#2| (-621 |#2|)) 20)))
+(((-447 |#1| |#2|) (-10 -7 (-15 -2012 (|#2| |#2| |#1|)) (-15 -2627 ((-747) |#2| (-621 |#2|))) (-15 -3927 ((-3 (-1225 (-621 |#2|)) "failed") (-747) |#1| (-621 |#2|))) (-15 -2526 ((-3 (-621 |#2|) "failed") |#2| |#1| (-1225 (-621 |#2|)))) (-15 -1711 ((-112) |#1| (-621 |#2|)))) (-300) (-1201 |#1|)) (T -447))
+((-1711 (*1 *2 *3 *4) (-12 (-5 *4 (-621 *5)) (-4 *5 (-1201 *3)) (-4 *3 (-300)) (-5 *2 (-112)) (-5 *1 (-447 *3 *5)))) (-2526 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1225 (-621 *3))) (-4 *4 (-300)) (-5 *2 (-621 *3)) (-5 *1 (-447 *4 *3)) (-4 *3 (-1201 *4)))) (-3927 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-747)) (-4 *4 (-300)) (-4 *6 (-1201 *4)) (-5 *2 (-1225 (-621 *6))) (-5 *1 (-447 *4 *6)) (-5 *5 (-621 *6)))) (-2627 (*1 *2 *3 *4) (-12 (-5 *4 (-621 *3)) (-4 *3 (-1201 *5)) (-4 *5 (-300)) (-5 *2 (-747)) (-5 *1 (-447 *5 *3)))) (-2012 (*1 *2 *2 *3) (-12 (-4 *3 (-300)) (-5 *1 (-447 *3 *2)) (-4 *2 (-1201 *3)))))
+(-10 -7 (-15 -2012 (|#2| |#2| |#1|)) (-15 -2627 ((-747) |#2| (-621 |#2|))) (-15 -3927 ((-3 (-1225 (-621 |#2|)) "failed") (-747) |#1| (-621 |#2|))) (-15 -2526 ((-3 (-621 |#2|) "failed") |#2| |#1| (-1225 (-621 |#2|)))) (-15 -1711 ((-112) |#1| (-621 |#2|))))
+((-2119 (((-411 |#5|) |#5|) 24)))
+(((-448 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2119 ((-411 |#5|) |#5|))) (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $)) (-15 -3009 ((-3 $ "failed") (-1142))))) (-769) (-541) (-541) (-920 |#4| |#2| |#1|)) (T -448))
+((-2119 (*1 *2 *3) (-12 (-4 *4 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $)) (-15 -3009 ((-3 $ "failed") (-1142)))))) (-4 *5 (-769)) (-4 *7 (-541)) (-5 *2 (-411 *3)) (-5 *1 (-448 *4 *5 *6 *7 *3)) (-4 *6 (-541)) (-4 *3 (-920 *7 *5 *4)))))
+(-10 -7 (-15 -2119 ((-411 |#5|) |#5|)))
+((-3507 ((|#3|) 37)) (-2994 (((-1138 |#4|) (-1138 |#4|) (-1138 |#4|)) 33)))
+(((-449 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2994 ((-1138 |#4|) (-1138 |#4|) (-1138 |#4|))) (-15 -3507 (|#3|))) (-769) (-823) (-880) (-920 |#3| |#1| |#2|)) (T -449))
+((-3507 (*1 *2) (-12 (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-880)) (-5 *1 (-449 *3 *4 *2 *5)) (-4 *5 (-920 *2 *3 *4)))) (-2994 (*1 *2 *2 *2) (-12 (-5 *2 (-1138 *6)) (-4 *6 (-920 *5 *3 *4)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-880)) (-5 *1 (-449 *3 *4 *5 *6)))))
+(-10 -7 (-15 -2994 ((-1138 |#4|) (-1138 |#4|) (-1138 |#4|))) (-15 -3507 (|#3|)))
+((-2119 (((-411 (-1138 |#1|)) (-1138 |#1|)) 43)))
+(((-450 |#1|) (-10 -7 (-15 -2119 ((-411 (-1138 |#1|)) (-1138 |#1|)))) (-300)) (T -450))
+((-2119 (*1 *2 *3) (-12 (-4 *4 (-300)) (-5 *2 (-411 (-1138 *4))) (-5 *1 (-450 *4)) (-5 *3 (-1138 *4)))))
+(-10 -7 (-15 -2119 ((-411 (-1138 |#1|)) (-1138 |#1|))))
+((-2337 (((-52) |#2| (-1142) (-287 |#2|) (-1192 (-747))) 42) (((-52) (-1 |#2| (-549)) (-287 |#2|) (-1192 (-747))) 41) (((-52) |#2| (-1142) (-287 |#2|)) 35) (((-52) (-1 |#2| (-549)) (-287 |#2|)) 28)) (-2824 (((-52) |#2| (-1142) (-287 |#2|) (-1192 (-400 (-549))) (-400 (-549))) 80) (((-52) (-1 |#2| (-400 (-549))) (-287 |#2|) (-1192 (-400 (-549))) (-400 (-549))) 79) (((-52) |#2| (-1142) (-287 |#2|) (-1192 (-549))) 78) (((-52) (-1 |#2| (-549)) (-287 |#2|) (-1192 (-549))) 77) (((-52) |#2| (-1142) (-287 |#2|)) 72) (((-52) (-1 |#2| (-549)) (-287 |#2|)) 71)) (-2365 (((-52) |#2| (-1142) (-287 |#2|) (-1192 (-400 (-549))) (-400 (-549))) 66) (((-52) (-1 |#2| (-400 (-549))) (-287 |#2|) (-1192 (-400 (-549))) (-400 (-549))) 64)) (-2352 (((-52) |#2| (-1142) (-287 |#2|) (-1192 (-549))) 48) (((-52) (-1 |#2| (-549)) (-287 |#2|) (-1192 (-549))) 47)))
+(((-451 |#1| |#2|) (-10 -7 (-15 -2337 ((-52) (-1 |#2| (-549)) (-287 |#2|))) (-15 -2337 ((-52) |#2| (-1142) (-287 |#2|))) (-15 -2337 ((-52) (-1 |#2| (-549)) (-287 |#2|) (-1192 (-747)))) (-15 -2337 ((-52) |#2| (-1142) (-287 |#2|) (-1192 (-747)))) (-15 -2352 ((-52) (-1 |#2| (-549)) (-287 |#2|) (-1192 (-549)))) (-15 -2352 ((-52) |#2| (-1142) (-287 |#2|) (-1192 (-549)))) (-15 -2365 ((-52) (-1 |#2| (-400 (-549))) (-287 |#2|) (-1192 (-400 (-549))) (-400 (-549)))) (-15 -2365 ((-52) |#2| (-1142) (-287 |#2|) (-1192 (-400 (-549))) (-400 (-549)))) (-15 -2824 ((-52) (-1 |#2| (-549)) (-287 |#2|))) (-15 -2824 ((-52) |#2| (-1142) (-287 |#2|))) (-15 -2824 ((-52) (-1 |#2| (-549)) (-287 |#2|) (-1192 (-549)))) (-15 -2824 ((-52) |#2| (-1142) (-287 |#2|) (-1192 (-549)))) (-15 -2824 ((-52) (-1 |#2| (-400 (-549))) (-287 |#2|) (-1192 (-400 (-549))) (-400 (-549)))) (-15 -2824 ((-52) |#2| (-1142) (-287 |#2|) (-1192 (-400 (-549))) (-400 (-549))))) (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-27) (-1164) (-423 |#1|))) (T -451))
+((-2824 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1142)) (-5 *5 (-287 *3)) (-5 *6 (-1192 (-400 (-549)))) (-5 *7 (-400 (-549))) (-4 *3 (-13 (-27) (-1164) (-423 *8))) (-4 *8 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *8 *3)))) (-2824 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-400 (-549)))) (-5 *4 (-287 *8)) (-5 *5 (-1192 (-400 (-549)))) (-5 *6 (-400 (-549))) (-4 *8 (-13 (-27) (-1164) (-423 *7))) (-4 *7 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *7 *8)))) (-2824 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1142)) (-5 *5 (-287 *3)) (-5 *6 (-1192 (-549))) (-4 *3 (-13 (-27) (-1164) (-423 *7))) (-4 *7 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *7 *3)))) (-2824 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-549))) (-5 *4 (-287 *7)) (-5 *5 (-1192 (-549))) (-4 *7 (-13 (-27) (-1164) (-423 *6))) (-4 *6 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *6 *7)))) (-2824 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1142)) (-5 *5 (-287 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *6))) (-4 *6 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *6 *3)))) (-2824 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-549))) (-5 *4 (-287 *6)) (-4 *6 (-13 (-27) (-1164) (-423 *5))) (-4 *5 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *5 *6)))) (-2365 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1142)) (-5 *5 (-287 *3)) (-5 *6 (-1192 (-400 (-549)))) (-5 *7 (-400 (-549))) (-4 *3 (-13 (-27) (-1164) (-423 *8))) (-4 *8 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *8 *3)))) (-2365 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-400 (-549)))) (-5 *4 (-287 *8)) (-5 *5 (-1192 (-400 (-549)))) (-5 *6 (-400 (-549))) (-4 *8 (-13 (-27) (-1164) (-423 *7))) (-4 *7 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *7 *8)))) (-2352 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1142)) (-5 *5 (-287 *3)) (-5 *6 (-1192 (-549))) (-4 *3 (-13 (-27) (-1164) (-423 *7))) (-4 *7 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *7 *3)))) (-2352 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-549))) (-5 *4 (-287 *7)) (-5 *5 (-1192 (-549))) (-4 *7 (-13 (-27) (-1164) (-423 *6))) (-4 *6 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *6 *7)))) (-2337 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1142)) (-5 *5 (-287 *3)) (-5 *6 (-1192 (-747))) (-4 *3 (-13 (-27) (-1164) (-423 *7))) (-4 *7 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *7 *3)))) (-2337 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-549))) (-5 *4 (-287 *7)) (-5 *5 (-1192 (-747))) (-4 *7 (-13 (-27) (-1164) (-423 *6))) (-4 *6 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *6 *7)))) (-2337 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1142)) (-5 *5 (-287 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *6))) (-4 *6 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *6 *3)))) (-2337 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-549))) (-5 *4 (-287 *6)) (-4 *6 (-13 (-27) (-1164) (-423 *5))) (-4 *5 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-52)) (-5 *1 (-451 *5 *6)))))
+(-10 -7 (-15 -2337 ((-52) (-1 |#2| (-549)) (-287 |#2|))) (-15 -2337 ((-52) |#2| (-1142) (-287 |#2|))) (-15 -2337 ((-52) (-1 |#2| (-549)) (-287 |#2|) (-1192 (-747)))) (-15 -2337 ((-52) |#2| (-1142) (-287 |#2|) (-1192 (-747)))) (-15 -2352 ((-52) (-1 |#2| (-549)) (-287 |#2|) (-1192 (-549)))) (-15 -2352 ((-52) |#2| (-1142) (-287 |#2|) (-1192 (-549)))) (-15 -2365 ((-52) (-1 |#2| (-400 (-549))) (-287 |#2|) (-1192 (-400 (-549))) (-400 (-549)))) (-15 -2365 ((-52) |#2| (-1142) (-287 |#2|) (-1192 (-400 (-549))) (-400 (-549)))) (-15 -2824 ((-52) (-1 |#2| (-549)) (-287 |#2|))) (-15 -2824 ((-52) |#2| (-1142) (-287 |#2|))) (-15 -2824 ((-52) (-1 |#2| (-549)) (-287 |#2|) (-1192 (-549)))) (-15 -2824 ((-52) |#2| (-1142) (-287 |#2|) (-1192 (-549)))) (-15 -2824 ((-52) (-1 |#2| (-400 (-549))) (-287 |#2|) (-1192 (-400 (-549))) (-400 (-549)))) (-15 -2824 ((-52) |#2| (-1142) (-287 |#2|) (-1192 (-400 (-549))) (-400 (-549)))))
+((-2012 ((|#2| |#2| |#1|) 15)) (-3307 (((-621 |#2|) |#2| (-621 |#2|) |#1| (-892)) 69)) (-1850 (((-2 (|:| |plist| (-621 |#2|)) (|:| |modulo| |#1|)) |#2| (-621 |#2|) |#1| (-892)) 60)))
+(((-452 |#1| |#2|) (-10 -7 (-15 -1850 ((-2 (|:| |plist| (-621 |#2|)) (|:| |modulo| |#1|)) |#2| (-621 |#2|) |#1| (-892))) (-15 -3307 ((-621 |#2|) |#2| (-621 |#2|) |#1| (-892))) (-15 -2012 (|#2| |#2| |#1|))) (-300) (-1201 |#1|)) (T -452))
+((-2012 (*1 *2 *2 *3) (-12 (-4 *3 (-300)) (-5 *1 (-452 *3 *2)) (-4 *2 (-1201 *3)))) (-3307 (*1 *2 *3 *2 *4 *5) (-12 (-5 *2 (-621 *3)) (-5 *5 (-892)) (-4 *3 (-1201 *4)) (-4 *4 (-300)) (-5 *1 (-452 *4 *3)))) (-1850 (*1 *2 *3 *4 *5 *6) (-12 (-5 *6 (-892)) (-4 *5 (-300)) (-4 *3 (-1201 *5)) (-5 *2 (-2 (|:| |plist| (-621 *3)) (|:| |modulo| *5))) (-5 *1 (-452 *5 *3)) (-5 *4 (-621 *3)))))
+(-10 -7 (-15 -1850 ((-2 (|:| |plist| (-621 |#2|)) (|:| |modulo| |#1|)) |#2| (-621 |#2|) |#1| (-892))) (-15 -3307 ((-621 |#2|) |#2| (-621 |#2|) |#1| (-892))) (-15 -2012 (|#2| |#2| |#1|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 28)) (-1627 (($ |#3|) 25)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2068 (($ $) 32)) (-3806 (($ |#2| |#4| $) 33)) (-2244 (($ |#2| (-690 |#3| |#4| |#5|)) 24)) (-2027 (((-690 |#3| |#4| |#5|) $) 15)) (-3920 ((|#3| $) 19)) (-4228 ((|#4| $) 17)) (-2042 ((|#2| $) 29)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-2407 (($ |#2| |#3| |#4|) 26)) (-3274 (($) 36 T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) 34)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ |#6| $) 40) (($ $ |#6|) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-453 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-694 |#6|) (-694 |#2|) (-10 -8 (-15 -2042 (|#2| $)) (-15 -2027 ((-690 |#3| |#4| |#5|) $)) (-15 -4228 (|#4| $)) (-15 -3920 (|#3| $)) (-15 -2068 ($ $)) (-15 -2244 ($ |#2| (-690 |#3| |#4| |#5|))) (-15 -1627 ($ |#3|)) (-15 -2407 ($ |#2| |#3| |#4|)) (-15 -3806 ($ |#2| |#4| $)) (-15 * ($ |#6| $)))) (-621 (-1142)) (-170) (-823) (-232 (-3774 |#1|) (-747)) (-1 (-112) (-2 (|:| -3494 |#3|) (|:| -1714 |#4|)) (-2 (|:| -3494 |#3|) (|:| -1714 |#4|))) (-920 |#2| |#4| (-836 |#1|))) (T -453))
+((* (*1 *1 *2 *1) (-12 (-14 *3 (-621 (-1142))) (-4 *4 (-170)) (-4 *6 (-232 (-3774 *3) (-747))) (-14 *7 (-1 (-112) (-2 (|:| -3494 *5) (|:| -1714 *6)) (-2 (|:| -3494 *5) (|:| -1714 *6)))) (-5 *1 (-453 *3 *4 *5 *6 *7 *2)) (-4 *5 (-823)) (-4 *2 (-920 *4 *6 (-836 *3))))) (-2042 (*1 *2 *1) (-12 (-14 *3 (-621 (-1142))) (-4 *5 (-232 (-3774 *3) (-747))) (-14 *6 (-1 (-112) (-2 (|:| -3494 *4) (|:| -1714 *5)) (-2 (|:| -3494 *4) (|:| -1714 *5)))) (-4 *2 (-170)) (-5 *1 (-453 *3 *2 *4 *5 *6 *7)) (-4 *4 (-823)) (-4 *7 (-920 *2 *5 (-836 *3))))) (-2027 (*1 *2 *1) (-12 (-14 *3 (-621 (-1142))) (-4 *4 (-170)) (-4 *6 (-232 (-3774 *3) (-747))) (-14 *7 (-1 (-112) (-2 (|:| -3494 *5) (|:| -1714 *6)) (-2 (|:| -3494 *5) (|:| -1714 *6)))) (-5 *2 (-690 *5 *6 *7)) (-5 *1 (-453 *3 *4 *5 *6 *7 *8)) (-4 *5 (-823)) (-4 *8 (-920 *4 *6 (-836 *3))))) (-4228 (*1 *2 *1) (-12 (-14 *3 (-621 (-1142))) (-4 *4 (-170)) (-14 *6 (-1 (-112) (-2 (|:| -3494 *5) (|:| -1714 *2)) (-2 (|:| -3494 *5) (|:| -1714 *2)))) (-4 *2 (-232 (-3774 *3) (-747))) (-5 *1 (-453 *3 *4 *5 *2 *6 *7)) (-4 *5 (-823)) (-4 *7 (-920 *4 *2 (-836 *3))))) (-3920 (*1 *2 *1) (-12 (-14 *3 (-621 (-1142))) (-4 *4 (-170)) (-4 *5 (-232 (-3774 *3) (-747))) (-14 *6 (-1 (-112) (-2 (|:| -3494 *2) (|:| -1714 *5)) (-2 (|:| -3494 *2) (|:| -1714 *5)))) (-4 *2 (-823)) (-5 *1 (-453 *3 *4 *2 *5 *6 *7)) (-4 *7 (-920 *4 *5 (-836 *3))))) (-2068 (*1 *1 *1) (-12 (-14 *2 (-621 (-1142))) (-4 *3 (-170)) (-4 *5 (-232 (-3774 *2) (-747))) (-14 *6 (-1 (-112) (-2 (|:| -3494 *4) (|:| -1714 *5)) (-2 (|:| -3494 *4) (|:| -1714 *5)))) (-5 *1 (-453 *2 *3 *4 *5 *6 *7)) (-4 *4 (-823)) (-4 *7 (-920 *3 *5 (-836 *2))))) (-2244 (*1 *1 *2 *3) (-12 (-5 *3 (-690 *5 *6 *7)) (-4 *5 (-823)) (-4 *6 (-232 (-3774 *4) (-747))) (-14 *7 (-1 (-112) (-2 (|:| -3494 *5) (|:| -1714 *6)) (-2 (|:| -3494 *5) (|:| -1714 *6)))) (-14 *4 (-621 (-1142))) (-4 *2 (-170)) (-5 *1 (-453 *4 *2 *5 *6 *7 *8)) (-4 *8 (-920 *2 *6 (-836 *4))))) (-1627 (*1 *1 *2) (-12 (-14 *3 (-621 (-1142))) (-4 *4 (-170)) (-4 *5 (-232 (-3774 *3) (-747))) (-14 *6 (-1 (-112) (-2 (|:| -3494 *2) (|:| -1714 *5)) (-2 (|:| -3494 *2) (|:| -1714 *5)))) (-5 *1 (-453 *3 *4 *2 *5 *6 *7)) (-4 *2 (-823)) (-4 *7 (-920 *4 *5 (-836 *3))))) (-2407 (*1 *1 *2 *3 *4) (-12 (-14 *5 (-621 (-1142))) (-4 *2 (-170)) (-4 *4 (-232 (-3774 *5) (-747))) (-14 *6 (-1 (-112) (-2 (|:| -3494 *3) (|:| -1714 *4)) (-2 (|:| -3494 *3) (|:| -1714 *4)))) (-5 *1 (-453 *5 *2 *3 *4 *6 *7)) (-4 *3 (-823)) (-4 *7 (-920 *2 *4 (-836 *5))))) (-3806 (*1 *1 *2 *3 *1) (-12 (-14 *4 (-621 (-1142))) (-4 *2 (-170)) (-4 *3 (-232 (-3774 *4) (-747))) (-14 *6 (-1 (-112) (-2 (|:| -3494 *5) (|:| -1714 *3)) (-2 (|:| -3494 *5) (|:| -1714 *3)))) (-5 *1 (-453 *4 *2 *5 *3 *6 *7)) (-4 *5 (-823)) (-4 *7 (-920 *2 *3 (-836 *4))))))
+(-13 (-694 |#6|) (-694 |#2|) (-10 -8 (-15 -2042 (|#2| $)) (-15 -2027 ((-690 |#3| |#4| |#5|) $)) (-15 -4228 (|#4| $)) (-15 -3920 (|#3| $)) (-15 -2068 ($ $)) (-15 -2244 ($ |#2| (-690 |#3| |#4| |#5|))) (-15 -1627 ($ |#3|)) (-15 -2407 ($ |#2| |#3| |#4|)) (-15 -3806 ($ |#2| |#4| $)) (-15 * ($ |#6| $))))
+((-1770 (((-3 |#5| "failed") |#5| |#2| (-1 |#2|)) 37)))
+(((-454 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1770 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|)))) (-769) (-823) (-541) (-920 |#3| |#1| |#2|) (-13 (-1009 (-400 (-549))) (-356) (-10 -8 (-15 -3845 ($ |#4|)) (-15 -1392 (|#4| $)) (-15 -1404 (|#4| $))))) (T -454))
+((-1770 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-823)) (-4 *5 (-769)) (-4 *6 (-541)) (-4 *7 (-920 *6 *5 *3)) (-5 *1 (-454 *5 *3 *6 *7 *2)) (-4 *2 (-13 (-1009 (-400 (-549))) (-356) (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $)) (-15 -1404 (*7 $))))))))
+(-10 -7 (-15 -1770 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|))))
+((-3832 (((-112) $ $) NIL)) (-2270 (((-621 |#3|) $) 41)) (-3735 (((-112) $) NIL)) (-2148 (((-112) $) NIL (|has| |#1| (-541)))) (-3191 (((-2 (|:| |under| $) (|:| -1349 $) (|:| |upper| $)) $ |#3|) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-1488 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-4291 (((-112) $) NIL (|has| |#1| (-541)))) (-1663 (((-112) $ $) NIL (|has| |#1| (-541)))) (-4226 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2113 (((-112) $) NIL (|has| |#1| (-541)))) (-3480 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2393 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2712 (((-3 $ "failed") (-621 |#4|)) 47)) (-2657 (($ (-621 |#4|)) NIL)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066))))) (-3812 (($ |#4| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-1809 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-541)))) (-2556 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4336))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4336)))) (-2987 (((-621 |#4|) $) 18 (|has| $ (-6 -4336)))) (-2510 ((|#3| $) 45)) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 |#4|) $) 14 (|has| $ (-6 -4336)))) (-1593 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066))))) (-1864 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#4| |#4|) $) 21)) (-3991 (((-621 |#3|) $) NIL)) (-4192 (((-112) |#3| $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL)) (-2179 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-541)))) (-3988 (((-1086) $) NIL)) (-3959 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-3360 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 |#4|) (-621 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-287 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-621 (-287 |#4|))) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) 39)) (-3288 (($) 17)) (-3997 (((-747) |#4| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066)))) (((-747) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) 16)) (-2843 (((-525) $) NIL (|has| |#4| (-594 (-525)))) (($ (-621 |#4|)) 49)) (-3853 (($ (-621 |#4|)) 13)) (-4085 (($ $ |#3|) NIL)) (-2195 (($ $ |#3|) NIL)) (-4285 (($ $ |#3|) NIL)) (-3845 (((-834) $) 38) (((-621 |#4|) $) 48)) (-3025 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 30)) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-455 |#1| |#2| |#3| |#4|) (-13 (-947 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2843 ($ (-621 |#4|))) (-6 -4336) (-6 -4337))) (-1018) (-769) (-823) (-1032 |#1| |#2| |#3|)) (T -455))
+((-2843 (*1 *1 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-455 *3 *4 *5 *6)))))
+(-13 (-947 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2843 ($ (-621 |#4|))) (-6 -4336) (-6 -4337)))
+((-3274 (($) 11)) (-3286 (($) 13)) (* (($ |#2| $) 15) (($ $ |#2|) 16)))
+(((-456 |#1| |#2| |#3|) (-10 -8 (-15 -3286 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3274 (|#1|))) (-457 |#2| |#3|) (-170) (-23)) (T -456))
+NIL
+(-10 -8 (-15 -3286 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3274 (|#1|)))
+((-3832 (((-112) $ $) 7)) (-2712 (((-3 |#1| "failed") $) 26)) (-2657 ((|#1| $) 25)) (-1268 (($ $ $) 23)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3977 ((|#2| $) 19)) (-3845 (((-834) $) 11) (($ |#1|) 27)) (-3274 (($) 18 T CONST)) (-3286 (($) 24 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 15) (($ $ $) 13)) (-2484 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
(((-457 |#1| |#2|) (-138) (-170) (-23)) (T -457))
-((-3287 (*1 *1) (-12 (-4 *1 (-457 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23)))) (-1747 (*1 *1 *1 *1) (-12 (-4 *1 (-457 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23)))))
-(-13 (-462 |t#1| |t#2|) (-1009 |t#1|) (-10 -8 (-15 (-3287) ($) -2589) (-15 -1747 ($ $ $))))
-(((-101) . T) ((-593 (-834)) . T) ((-462 |#1| |#2|) . T) ((-1009 |#1|) . T) ((-1067) . T))
-((-2483 (((-1226 (-1226 (-549))) (-1226 (-1226 (-549))) (-892)) 18)) (-2302 (((-1226 (-1226 (-549))) (-892)) 16)))
-(((-458) (-10 -7 (-15 -2483 ((-1226 (-1226 (-549))) (-1226 (-1226 (-549))) (-892))) (-15 -2302 ((-1226 (-1226 (-549))) (-892))))) (T -458))
-((-2302 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1226 (-1226 (-549)))) (-5 *1 (-458)))) (-2483 (*1 *2 *2 *3) (-12 (-5 *2 (-1226 (-1226 (-549)))) (-5 *3 (-892)) (-5 *1 (-458)))))
-(-10 -7 (-15 -2483 ((-1226 (-1226 (-549))) (-1226 (-1226 (-549))) (-892))) (-15 -2302 ((-1226 (-1226 (-549))) (-892))))
-((-3654 (((-549) (-549)) 30) (((-549)) 22)) (-2474 (((-549) (-549)) 26) (((-549)) 18)) (-3228 (((-549) (-549)) 28) (((-549)) 20)) (-2636 (((-112) (-112)) 12) (((-112)) 10)) (-2295 (((-112) (-112)) 11) (((-112)) 9)) (-2424 (((-112) (-112)) 24) (((-112)) 15)))
-(((-459) (-10 -7 (-15 -2295 ((-112))) (-15 -2636 ((-112))) (-15 -2295 ((-112) (-112))) (-15 -2636 ((-112) (-112))) (-15 -2424 ((-112))) (-15 -3228 ((-549))) (-15 -2474 ((-549))) (-15 -3654 ((-549))) (-15 -2424 ((-112) (-112))) (-15 -3228 ((-549) (-549))) (-15 -2474 ((-549) (-549))) (-15 -3654 ((-549) (-549))))) (T -459))
-((-3654 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459)))) (-2474 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459)))) (-3228 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459)))) (-2424 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))) (-3654 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459)))) (-2474 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459)))) (-3228 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459)))) (-2424 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))) (-2636 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))) (-2295 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))) (-2636 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))) (-2295 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))))
-(-10 -7 (-15 -2295 ((-112))) (-15 -2636 ((-112))) (-15 -2295 ((-112) (-112))) (-15 -2636 ((-112) (-112))) (-15 -2424 ((-112))) (-15 -3228 ((-549))) (-15 -2474 ((-549))) (-15 -3654 ((-549))) (-15 -2424 ((-112) (-112))) (-15 -3228 ((-549) (-549))) (-15 -2474 ((-549) (-549))) (-15 -3654 ((-549) (-549))))
-((-3834 (((-112) $ $) NIL)) (-2036 (((-621 (-372)) $) 28) (((-621 (-372)) $ (-621 (-372))) 96)) (-2734 (((-621 (-1061 (-372))) $) 16) (((-621 (-1061 (-372))) $ (-621 (-1061 (-372)))) 94)) (-4004 (((-621 (-621 (-914 (-219)))) (-621 (-621 (-914 (-219)))) (-621 (-845))) 45)) (-2818 (((-621 (-621 (-914 (-219)))) $) 90)) (-2798 (((-1231) $ (-914 (-219)) (-845)) 108)) (-2213 (($ $) 89) (($ (-621 (-621 (-914 (-219))))) 99) (($ (-621 (-621 (-914 (-219)))) (-621 (-845)) (-621 (-845)) (-621 (-892))) 98) (($ (-621 (-621 (-914 (-219)))) (-621 (-845)) (-621 (-845)) (-621 (-892)) (-621 (-256))) 100)) (-3851 (((-1125) $) NIL)) (-3337 (((-549) $) 71)) (-3990 (((-1087) $) NIL)) (-1546 (($) 97)) (-2326 (((-621 (-219)) (-621 (-621 (-914 (-219))))) 56)) (-3146 (((-1231) $ (-621 (-914 (-219))) (-845) (-845) (-892)) 102) (((-1231) $ (-914 (-219))) 104) (((-1231) $ (-914 (-219)) (-845) (-845) (-892)) 103)) (-3846 (((-834) $) 114) (($ (-621 (-621 (-914 (-219))))) 109)) (-2403 (((-1231) $ (-914 (-219))) 107)) (-2389 (((-112) $ $) NIL)))
-(((-460) (-13 (-1067) (-10 -8 (-15 -1546 ($)) (-15 -2213 ($ $)) (-15 -2213 ($ (-621 (-621 (-914 (-219)))))) (-15 -2213 ($ (-621 (-621 (-914 (-219)))) (-621 (-845)) (-621 (-845)) (-621 (-892)))) (-15 -2213 ($ (-621 (-621 (-914 (-219)))) (-621 (-845)) (-621 (-845)) (-621 (-892)) (-621 (-256)))) (-15 -2818 ((-621 (-621 (-914 (-219)))) $)) (-15 -3337 ((-549) $)) (-15 -2734 ((-621 (-1061 (-372))) $)) (-15 -2734 ((-621 (-1061 (-372))) $ (-621 (-1061 (-372))))) (-15 -2036 ((-621 (-372)) $)) (-15 -2036 ((-621 (-372)) $ (-621 (-372)))) (-15 -3146 ((-1231) $ (-621 (-914 (-219))) (-845) (-845) (-892))) (-15 -3146 ((-1231) $ (-914 (-219)))) (-15 -3146 ((-1231) $ (-914 (-219)) (-845) (-845) (-892))) (-15 -2403 ((-1231) $ (-914 (-219)))) (-15 -2798 ((-1231) $ (-914 (-219)) (-845))) (-15 -3846 ($ (-621 (-621 (-914 (-219)))))) (-15 -3846 ((-834) $)) (-15 -4004 ((-621 (-621 (-914 (-219)))) (-621 (-621 (-914 (-219)))) (-621 (-845)))) (-15 -2326 ((-621 (-219)) (-621 (-621 (-914 (-219))))))))) (T -460))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-460)))) (-1546 (*1 *1) (-5 *1 (-460))) (-2213 (*1 *1 *1) (-5 *1 (-460))) (-2213 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *1 (-460)))) (-2213 (*1 *1 *2 *3 *3 *4) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *3 (-621 (-845))) (-5 *4 (-621 (-892))) (-5 *1 (-460)))) (-2213 (*1 *1 *2 *3 *3 *4 *5) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *3 (-621 (-845))) (-5 *4 (-621 (-892))) (-5 *5 (-621 (-256))) (-5 *1 (-460)))) (-2818 (*1 *2 *1) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *1 (-460)))) (-3337 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-460)))) (-2734 (*1 *2 *1) (-12 (-5 *2 (-621 (-1061 (-372)))) (-5 *1 (-460)))) (-2734 (*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1061 (-372)))) (-5 *1 (-460)))) (-2036 (*1 *2 *1) (-12 (-5 *2 (-621 (-372))) (-5 *1 (-460)))) (-2036 (*1 *2 *1 *2) (-12 (-5 *2 (-621 (-372))) (-5 *1 (-460)))) (-3146 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-621 (-914 (-219)))) (-5 *4 (-845)) (-5 *5 (-892)) (-5 *2 (-1231)) (-5 *1 (-460)))) (-3146 (*1 *2 *1 *3) (-12 (-5 *3 (-914 (-219))) (-5 *2 (-1231)) (-5 *1 (-460)))) (-3146 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-914 (-219))) (-5 *4 (-845)) (-5 *5 (-892)) (-5 *2 (-1231)) (-5 *1 (-460)))) (-2403 (*1 *2 *1 *3) (-12 (-5 *3 (-914 (-219))) (-5 *2 (-1231)) (-5 *1 (-460)))) (-2798 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-914 (-219))) (-5 *4 (-845)) (-5 *2 (-1231)) (-5 *1 (-460)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *1 (-460)))) (-4004 (*1 *2 *2 *3) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *3 (-621 (-845))) (-5 *1 (-460)))) (-2326 (*1 *2 *3) (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *2 (-621 (-219))) (-5 *1 (-460)))))
-(-13 (-1067) (-10 -8 (-15 -1546 ($)) (-15 -2213 ($ $)) (-15 -2213 ($ (-621 (-621 (-914 (-219)))))) (-15 -2213 ($ (-621 (-621 (-914 (-219)))) (-621 (-845)) (-621 (-845)) (-621 (-892)))) (-15 -2213 ($ (-621 (-621 (-914 (-219)))) (-621 (-845)) (-621 (-845)) (-621 (-892)) (-621 (-256)))) (-15 -2818 ((-621 (-621 (-914 (-219)))) $)) (-15 -3337 ((-549) $)) (-15 -2734 ((-621 (-1061 (-372))) $)) (-15 -2734 ((-621 (-1061 (-372))) $ (-621 (-1061 (-372))))) (-15 -2036 ((-621 (-372)) $)) (-15 -2036 ((-621 (-372)) $ (-621 (-372)))) (-15 -3146 ((-1231) $ (-621 (-914 (-219))) (-845) (-845) (-892))) (-15 -3146 ((-1231) $ (-914 (-219)))) (-15 -3146 ((-1231) $ (-914 (-219)) (-845) (-845) (-892))) (-15 -2403 ((-1231) $ (-914 (-219)))) (-15 -2798 ((-1231) $ (-914 (-219)) (-845))) (-15 -3846 ($ (-621 (-621 (-914 (-219)))))) (-15 -3846 ((-834) $)) (-15 -4004 ((-621 (-621 (-914 (-219)))) (-621 (-621 (-914 (-219)))) (-621 (-845)))) (-15 -2326 ((-621 (-219)) (-621 (-621 (-914 (-219))))))))
-((-2500 (($ $) NIL) (($ $ $) 11)))
-(((-461 |#1| |#2| |#3|) (-10 -8 (-15 -2500 (|#1| |#1| |#1|)) (-15 -2500 (|#1| |#1|))) (-462 |#2| |#3|) (-170) (-23)) (T -461))
-NIL
-(-10 -8 (-15 -2500 (|#1| |#1| |#1|)) (-15 -2500 (|#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3701 ((|#2| $) 19)) (-3846 (((-834) $) 11)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 15) (($ $ $) 13)) (-2486 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
+((-3286 (*1 *1) (-12 (-4 *1 (-457 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23)))) (-1268 (*1 *1 *1 *1) (-12 (-4 *1 (-457 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23)))))
+(-13 (-462 |t#1| |t#2|) (-1009 |t#1|) (-10 -8 (-15 (-3286) ($) -2587) (-15 -1268 ($ $ $))))
+(((-101) . T) ((-593 (-834)) . T) ((-462 |#1| |#2|) . T) ((-1009 |#1|) . T) ((-1066) . T))
+((-2885 (((-1225 (-1225 (-549))) (-1225 (-1225 (-549))) (-892)) 18)) (-3245 (((-1225 (-1225 (-549))) (-892)) 16)))
+(((-458) (-10 -7 (-15 -2885 ((-1225 (-1225 (-549))) (-1225 (-1225 (-549))) (-892))) (-15 -3245 ((-1225 (-1225 (-549))) (-892))))) (T -458))
+((-3245 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1225 (-1225 (-549)))) (-5 *1 (-458)))) (-2885 (*1 *2 *2 *3) (-12 (-5 *2 (-1225 (-1225 (-549)))) (-5 *3 (-892)) (-5 *1 (-458)))))
+(-10 -7 (-15 -2885 ((-1225 (-1225 (-549))) (-1225 (-1225 (-549))) (-892))) (-15 -3245 ((-1225 (-1225 (-549))) (-892))))
+((-3797 (((-549) (-549)) 30) (((-549)) 22)) (-3488 (((-549) (-549)) 26) (((-549)) 18)) (-3317 (((-549) (-549)) 28) (((-549)) 20)) (-2427 (((-112) (-112)) 12) (((-112)) 10)) (-3821 (((-112) (-112)) 11) (((-112)) 9)) (-3118 (((-112) (-112)) 24) (((-112)) 15)))
+(((-459) (-10 -7 (-15 -3821 ((-112))) (-15 -2427 ((-112))) (-15 -3821 ((-112) (-112))) (-15 -2427 ((-112) (-112))) (-15 -3118 ((-112))) (-15 -3317 ((-549))) (-15 -3488 ((-549))) (-15 -3797 ((-549))) (-15 -3118 ((-112) (-112))) (-15 -3317 ((-549) (-549))) (-15 -3488 ((-549) (-549))) (-15 -3797 ((-549) (-549))))) (T -459))
+((-3797 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459)))) (-3488 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459)))) (-3317 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459)))) (-3118 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))) (-3797 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459)))) (-3488 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459)))) (-3317 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459)))) (-3118 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))) (-2427 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))) (-3821 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))) (-2427 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))) (-3821 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))))
+(-10 -7 (-15 -3821 ((-112))) (-15 -2427 ((-112))) (-15 -3821 ((-112) (-112))) (-15 -2427 ((-112) (-112))) (-15 -3118 ((-112))) (-15 -3317 ((-549))) (-15 -3488 ((-549))) (-15 -3797 ((-549))) (-15 -3118 ((-112) (-112))) (-15 -3317 ((-549) (-549))) (-15 -3488 ((-549) (-549))) (-15 -3797 ((-549) (-549))))
+((-3832 (((-112) $ $) NIL)) (-2034 (((-621 (-372)) $) 28) (((-621 (-372)) $ (-621 (-372))) 96)) (-2467 (((-621 (-1060 (-372))) $) 16) (((-621 (-1060 (-372))) $ (-621 (-1060 (-372)))) 94)) (-3260 (((-621 (-621 (-914 (-219)))) (-621 (-621 (-914 (-219)))) (-621 (-845))) 45)) (-1596 (((-621 (-621 (-914 (-219)))) $) 90)) (-2796 (((-1230) $ (-914 (-219)) (-845)) 108)) (-1323 (($ $) 89) (($ (-621 (-621 (-914 (-219))))) 99) (($ (-621 (-621 (-914 (-219)))) (-621 (-845)) (-621 (-845)) (-621 (-892))) 98) (($ (-621 (-621 (-914 (-219)))) (-621 (-845)) (-621 (-845)) (-621 (-892)) (-621 (-256))) 100)) (-3441 (((-1124) $) NIL)) (-3336 (((-549) $) 71)) (-3988 (((-1086) $) NIL)) (-1443 (($) 97)) (-1415 (((-621 (-219)) (-621 (-621 (-914 (-219))))) 56)) (-2046 (((-1230) $ (-621 (-914 (-219))) (-845) (-845) (-892)) 102) (((-1230) $ (-914 (-219))) 104) (((-1230) $ (-914 (-219)) (-845) (-845) (-892)) 103)) (-3845 (((-834) $) 114) (($ (-621 (-621 (-914 (-219))))) 109)) (-2699 (((-1230) $ (-914 (-219))) 107)) (-2387 (((-112) $ $) NIL)))
+(((-460) (-13 (-1066) (-10 -8 (-15 -1443 ($)) (-15 -1323 ($ $)) (-15 -1323 ($ (-621 (-621 (-914 (-219)))))) (-15 -1323 ($ (-621 (-621 (-914 (-219)))) (-621 (-845)) (-621 (-845)) (-621 (-892)))) (-15 -1323 ($ (-621 (-621 (-914 (-219)))) (-621 (-845)) (-621 (-845)) (-621 (-892)) (-621 (-256)))) (-15 -1596 ((-621 (-621 (-914 (-219)))) $)) (-15 -3336 ((-549) $)) (-15 -2467 ((-621 (-1060 (-372))) $)) (-15 -2467 ((-621 (-1060 (-372))) $ (-621 (-1060 (-372))))) (-15 -2034 ((-621 (-372)) $)) (-15 -2034 ((-621 (-372)) $ (-621 (-372)))) (-15 -2046 ((-1230) $ (-621 (-914 (-219))) (-845) (-845) (-892))) (-15 -2046 ((-1230) $ (-914 (-219)))) (-15 -2046 ((-1230) $ (-914 (-219)) (-845) (-845) (-892))) (-15 -2699 ((-1230) $ (-914 (-219)))) (-15 -2796 ((-1230) $ (-914 (-219)) (-845))) (-15 -3845 ($ (-621 (-621 (-914 (-219)))))) (-15 -3845 ((-834) $)) (-15 -3260 ((-621 (-621 (-914 (-219)))) (-621 (-621 (-914 (-219)))) (-621 (-845)))) (-15 -1415 ((-621 (-219)) (-621 (-621 (-914 (-219))))))))) (T -460))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-460)))) (-1443 (*1 *1) (-5 *1 (-460))) (-1323 (*1 *1 *1) (-5 *1 (-460))) (-1323 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *1 (-460)))) (-1323 (*1 *1 *2 *3 *3 *4) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *3 (-621 (-845))) (-5 *4 (-621 (-892))) (-5 *1 (-460)))) (-1323 (*1 *1 *2 *3 *3 *4 *5) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *3 (-621 (-845))) (-5 *4 (-621 (-892))) (-5 *5 (-621 (-256))) (-5 *1 (-460)))) (-1596 (*1 *2 *1) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *1 (-460)))) (-3336 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-460)))) (-2467 (*1 *2 *1) (-12 (-5 *2 (-621 (-1060 (-372)))) (-5 *1 (-460)))) (-2467 (*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1060 (-372)))) (-5 *1 (-460)))) (-2034 (*1 *2 *1) (-12 (-5 *2 (-621 (-372))) (-5 *1 (-460)))) (-2034 (*1 *2 *1 *2) (-12 (-5 *2 (-621 (-372))) (-5 *1 (-460)))) (-2046 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-621 (-914 (-219)))) (-5 *4 (-845)) (-5 *5 (-892)) (-5 *2 (-1230)) (-5 *1 (-460)))) (-2046 (*1 *2 *1 *3) (-12 (-5 *3 (-914 (-219))) (-5 *2 (-1230)) (-5 *1 (-460)))) (-2046 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-914 (-219))) (-5 *4 (-845)) (-5 *5 (-892)) (-5 *2 (-1230)) (-5 *1 (-460)))) (-2699 (*1 *2 *1 *3) (-12 (-5 *3 (-914 (-219))) (-5 *2 (-1230)) (-5 *1 (-460)))) (-2796 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-914 (-219))) (-5 *4 (-845)) (-5 *2 (-1230)) (-5 *1 (-460)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *1 (-460)))) (-3260 (*1 *2 *2 *3) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *3 (-621 (-845))) (-5 *1 (-460)))) (-1415 (*1 *2 *3) (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *2 (-621 (-219))) (-5 *1 (-460)))))
+(-13 (-1066) (-10 -8 (-15 -1443 ($)) (-15 -1323 ($ $)) (-15 -1323 ($ (-621 (-621 (-914 (-219)))))) (-15 -1323 ($ (-621 (-621 (-914 (-219)))) (-621 (-845)) (-621 (-845)) (-621 (-892)))) (-15 -1323 ($ (-621 (-621 (-914 (-219)))) (-621 (-845)) (-621 (-845)) (-621 (-892)) (-621 (-256)))) (-15 -1596 ((-621 (-621 (-914 (-219)))) $)) (-15 -3336 ((-549) $)) (-15 -2467 ((-621 (-1060 (-372))) $)) (-15 -2467 ((-621 (-1060 (-372))) $ (-621 (-1060 (-372))))) (-15 -2034 ((-621 (-372)) $)) (-15 -2034 ((-621 (-372)) $ (-621 (-372)))) (-15 -2046 ((-1230) $ (-621 (-914 (-219))) (-845) (-845) (-892))) (-15 -2046 ((-1230) $ (-914 (-219)))) (-15 -2046 ((-1230) $ (-914 (-219)) (-845) (-845) (-892))) (-15 -2699 ((-1230) $ (-914 (-219)))) (-15 -2796 ((-1230) $ (-914 (-219)) (-845))) (-15 -3845 ($ (-621 (-621 (-914 (-219)))))) (-15 -3845 ((-834) $)) (-15 -3260 ((-621 (-621 (-914 (-219)))) (-621 (-621 (-914 (-219)))) (-621 (-845)))) (-15 -1415 ((-621 (-219)) (-621 (-621 (-914 (-219))))))))
+((-2498 (($ $) NIL) (($ $ $) 11)))
+(((-461 |#1| |#2| |#3|) (-10 -8 (-15 -2498 (|#1| |#1| |#1|)) (-15 -2498 (|#1| |#1|))) (-462 |#2| |#3|) (-170) (-23)) (T -461))
+NIL
+(-10 -8 (-15 -2498 (|#1| |#1| |#1|)) (-15 -2498 (|#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3977 ((|#2| $) 19)) (-3845 (((-834) $) 11)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 15) (($ $ $) 13)) (-2484 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
(((-462 |#1| |#2|) (-138) (-170) (-23)) (T -462))
-((-3701 (*1 *2 *1) (-12 (-4 *1 (-462 *3 *2)) (-4 *3 (-170)) (-4 *2 (-23)))) (-3276 (*1 *1) (-12 (-4 *1 (-462 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-462 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-462 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23)))) (-2500 (*1 *1 *1) (-12 (-4 *1 (-462 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23)))) (-2486 (*1 *1 *1 *1) (-12 (-4 *1 (-462 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23)))) (-2500 (*1 *1 *1 *1) (-12 (-4 *1 (-462 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23)))))
-(-13 (-1067) (-10 -8 (-15 -3701 (|t#2| $)) (-15 (-3276) ($) -2589) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 -2500 ($ $)) (-15 -2486 ($ $ $)) (-15 -2500 ($ $ $))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-1937 (((-3 (-621 (-473 |#1| |#2|)) "failed") (-621 (-473 |#1| |#2|)) (-621 (-836 |#1|))) 92)) (-2209 (((-621 (-621 (-241 |#1| |#2|))) (-621 (-241 |#1| |#2|)) (-621 (-836 |#1|))) 90)) (-2916 (((-2 (|:| |dpolys| (-621 (-241 |#1| |#2|))) (|:| |coords| (-621 (-549)))) (-621 (-241 |#1| |#2|)) (-621 (-836 |#1|))) 61)))
-(((-463 |#1| |#2| |#3|) (-10 -7 (-15 -2209 ((-621 (-621 (-241 |#1| |#2|))) (-621 (-241 |#1| |#2|)) (-621 (-836 |#1|)))) (-15 -1937 ((-3 (-621 (-473 |#1| |#2|)) "failed") (-621 (-473 |#1| |#2|)) (-621 (-836 |#1|)))) (-15 -2916 ((-2 (|:| |dpolys| (-621 (-241 |#1| |#2|))) (|:| |coords| (-621 (-549)))) (-621 (-241 |#1| |#2|)) (-621 (-836 |#1|))))) (-621 (-1143)) (-444) (-444)) (T -463))
-((-2916 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-836 *5))) (-14 *5 (-621 (-1143))) (-4 *6 (-444)) (-5 *2 (-2 (|:| |dpolys| (-621 (-241 *5 *6))) (|:| |coords| (-621 (-549))))) (-5 *1 (-463 *5 *6 *7)) (-5 *3 (-621 (-241 *5 *6))) (-4 *7 (-444)))) (-1937 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-621 (-473 *4 *5))) (-5 *3 (-621 (-836 *4))) (-14 *4 (-621 (-1143))) (-4 *5 (-444)) (-5 *1 (-463 *4 *5 *6)) (-4 *6 (-444)))) (-2209 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-836 *5))) (-14 *5 (-621 (-1143))) (-4 *6 (-444)) (-5 *2 (-621 (-621 (-241 *5 *6)))) (-5 *1 (-463 *5 *6 *7)) (-5 *3 (-621 (-241 *5 *6))) (-4 *7 (-444)))))
-(-10 -7 (-15 -2209 ((-621 (-621 (-241 |#1| |#2|))) (-621 (-241 |#1| |#2|)) (-621 (-836 |#1|)))) (-15 -1937 ((-3 (-621 (-473 |#1| |#2|)) "failed") (-621 (-473 |#1| |#2|)) (-621 (-836 |#1|)))) (-15 -2916 ((-2 (|:| |dpolys| (-621 (-241 |#1| |#2|))) (|:| |coords| (-621 (-549)))) (-621 (-241 |#1| |#2|)) (-621 (-836 |#1|)))))
-((-2114 (((-3 $ "failed") $) 11)) (-1955 (($ $ $) 18)) (-3293 (($ $ $) 19)) (-2513 (($ $ $) 9)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) 17)))
-(((-464 |#1|) (-10 -8 (-15 -3293 (|#1| |#1| |#1|)) (-15 -1955 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-549))) (-15 -2513 (|#1| |#1| |#1|)) (-15 -2114 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-747))) (-15 ** (|#1| |#1| (-892)))) (-465)) (T -464))
-NIL
-(-10 -8 (-15 -3293 (|#1| |#1| |#1|)) (-15 -1955 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-549))) (-15 -2513 (|#1| |#1| |#1|)) (-15 -2114 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-747))) (-15 ** (|#1| |#1| (-892))))
-((-3834 (((-112) $ $) 7)) (-1682 (($) 18 T CONST)) (-2114 (((-3 $ "failed") $) 15)) (-2675 (((-112) $) 17)) (-3851 (((-1125) $) 9)) (-1992 (($ $) 24)) (-3990 (((-1087) $) 10)) (-1955 (($ $ $) 21)) (-3293 (($ $ $) 20)) (-3846 (((-834) $) 11)) (-3287 (($) 19 T CONST)) (-2389 (((-112) $ $) 6)) (-2513 (($ $ $) 23)) (** (($ $ (-892)) 13) (($ $ (-747)) 16) (($ $ (-549)) 22)) (* (($ $ $) 14)))
+((-3977 (*1 *2 *1) (-12 (-4 *1 (-462 *3 *2)) (-4 *3 (-170)) (-4 *2 (-23)))) (-3274 (*1 *1) (-12 (-4 *1 (-462 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-462 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-462 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23)))) (-2498 (*1 *1 *1) (-12 (-4 *1 (-462 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23)))) (-2484 (*1 *1 *1 *1) (-12 (-4 *1 (-462 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23)))) (-2498 (*1 *1 *1 *1) (-12 (-4 *1 (-462 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23)))))
+(-13 (-1066) (-10 -8 (-15 -3977 (|t#2| $)) (-15 (-3274) ($) -2587) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 -2498 ($ $)) (-15 -2484 ($ $ $)) (-15 -2498 ($ $ $))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-3778 (((-3 (-621 (-473 |#1| |#2|)) "failed") (-621 (-473 |#1| |#2|)) (-621 (-836 |#1|))) 92)) (-2198 (((-621 (-621 (-241 |#1| |#2|))) (-621 (-241 |#1| |#2|)) (-621 (-836 |#1|))) 90)) (-4118 (((-2 (|:| |dpolys| (-621 (-241 |#1| |#2|))) (|:| |coords| (-621 (-549)))) (-621 (-241 |#1| |#2|)) (-621 (-836 |#1|))) 61)))
+(((-463 |#1| |#2| |#3|) (-10 -7 (-15 -2198 ((-621 (-621 (-241 |#1| |#2|))) (-621 (-241 |#1| |#2|)) (-621 (-836 |#1|)))) (-15 -3778 ((-3 (-621 (-473 |#1| |#2|)) "failed") (-621 (-473 |#1| |#2|)) (-621 (-836 |#1|)))) (-15 -4118 ((-2 (|:| |dpolys| (-621 (-241 |#1| |#2|))) (|:| |coords| (-621 (-549)))) (-621 (-241 |#1| |#2|)) (-621 (-836 |#1|))))) (-621 (-1142)) (-444) (-444)) (T -463))
+((-4118 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-836 *5))) (-14 *5 (-621 (-1142))) (-4 *6 (-444)) (-5 *2 (-2 (|:| |dpolys| (-621 (-241 *5 *6))) (|:| |coords| (-621 (-549))))) (-5 *1 (-463 *5 *6 *7)) (-5 *3 (-621 (-241 *5 *6))) (-4 *7 (-444)))) (-3778 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-621 (-473 *4 *5))) (-5 *3 (-621 (-836 *4))) (-14 *4 (-621 (-1142))) (-4 *5 (-444)) (-5 *1 (-463 *4 *5 *6)) (-4 *6 (-444)))) (-2198 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-836 *5))) (-14 *5 (-621 (-1142))) (-4 *6 (-444)) (-5 *2 (-621 (-621 (-241 *5 *6)))) (-5 *1 (-463 *5 *6 *7)) (-5 *3 (-621 (-241 *5 *6))) (-4 *7 (-444)))))
+(-10 -7 (-15 -2198 ((-621 (-621 (-241 |#1| |#2|))) (-621 (-241 |#1| |#2|)) (-621 (-836 |#1|)))) (-15 -3778 ((-3 (-621 (-473 |#1| |#2|)) "failed") (-621 (-473 |#1| |#2|)) (-621 (-836 |#1|)))) (-15 -4118 ((-2 (|:| |dpolys| (-621 (-241 |#1| |#2|))) (|:| |coords| (-621 (-549)))) (-621 (-241 |#1| |#2|)) (-621 (-836 |#1|)))))
+((-2612 (((-3 $ "failed") $) 11)) (-1795 (($ $ $) 18)) (-3870 (($ $ $) 19)) (-2511 (($ $ $) 9)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) 17)))
+(((-464 |#1|) (-10 -8 (-15 -3870 (|#1| |#1| |#1|)) (-15 -1795 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-549))) (-15 -2511 (|#1| |#1| |#1|)) (-15 -2612 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-747))) (-15 ** (|#1| |#1| (-892)))) (-465)) (T -464))
+NIL
+(-10 -8 (-15 -3870 (|#1| |#1| |#1|)) (-15 -1795 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-549))) (-15 -2511 (|#1| |#1| |#1|)) (-15 -2612 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-747))) (-15 ** (|#1| |#1| (-892))))
+((-3832 (((-112) $ $) 7)) (-3034 (($) 18 T CONST)) (-2612 (((-3 $ "failed") $) 15)) (-2297 (((-112) $) 17)) (-3441 (((-1124) $) 9)) (-1990 (($ $) 24)) (-3988 (((-1086) $) 10)) (-1795 (($ $ $) 21)) (-3870 (($ $ $) 20)) (-3845 (((-834) $) 11)) (-3286 (($) 19 T CONST)) (-2387 (((-112) $ $) 6)) (-2511 (($ $ $) 23)) (** (($ $ (-892)) 13) (($ $ (-747)) 16) (($ $ (-549)) 22)) (* (($ $ $) 14)))
(((-465) (-138)) (T -465))
-((-1992 (*1 *1 *1) (-4 *1 (-465))) (-2513 (*1 *1 *1 *1) (-4 *1 (-465))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-465)) (-5 *2 (-549)))) (-1955 (*1 *1 *1 *1) (-4 *1 (-465))) (-3293 (*1 *1 *1 *1) (-4 *1 (-465))))
-(-13 (-703) (-10 -8 (-15 -1992 ($ $)) (-15 -2513 ($ $ $)) (-15 ** ($ $ (-549))) (-6 -4334) (-15 -1955 ($ $ $)) (-15 -3293 ($ $ $))))
-(((-101) . T) ((-593 (-834)) . T) ((-703) . T) ((-1079) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2272 (((-621 (-1048)) $) NIL)) (-3011 (((-1143) $) 17)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-3896 (($ $ (-400 (-549))) NIL) (($ $ (-400 (-549)) (-400 (-549))) NIL)) (-2212 (((-1123 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|))) $) NIL)) (-1664 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL (|has| |#1| (-356)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2134 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1640 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2826 (($ (-747) (-1123 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|)))) NIL)) (-1685 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) NIL T CONST)) (-2095 (($ $ $) NIL (|has| |#1| (-356)))) (-2070 (($ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-2067 (($ $ $) NIL (|has| |#1| (-356)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1420 (((-112) $) NIL (|has| |#1| (-356)))) (-2871 (((-112) $) NIL)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2088 (((-400 (-549)) $) NIL) (((-400 (-549)) $ (-400 (-549))) NIL)) (-2675 (((-112) $) NIL)) (-4187 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2992 (($ $ (-892)) NIL) (($ $ (-400 (-549))) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-400 (-549))) NIL) (($ $ (-1048) (-400 (-549))) NIL) (($ $ (-621 (-1048)) (-621 (-400 (-549)))) NIL)) (-2797 (($ (-1 |#1| |#1|) $) 22)) (-3632 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL (|has| |#1| (-356)))) (-3893 (($ $) 26 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1143)) 33 (-1536 (-12 (|has| |#1| (-15 -3893 (|#1| |#1| (-1143)))) (|has| |#1| (-15 -2272 ((-621 (-1143)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1165))))) (($ $ (-1222 |#2|)) 27 (|has| |#1| (-38 (-400 (-549)))))) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-356)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2121 (((-411 $) $) NIL (|has| |#1| (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-2763 (($ $ (-400 (-549))) NIL)) (-2042 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2719 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2686 (((-1123 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))))) (-3684 (((-747) $) NIL (|has| |#1| (-356)))) (-3341 ((|#1| $ (-400 (-549))) NIL) (($ $ $) NIL (|has| (-400 (-549)) (-1079)))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-356)))) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143)) 25 (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) 13 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $ (-1222 |#2|)) 15)) (-3701 (((-400 (-549)) $) NIL)) (-1698 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1977 (($ $) NIL)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL (|has| |#1| (-170))) (($ (-1222 |#2|)) NIL) (($ (-1211 |#1| |#2| |#3|)) 9) (($ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541)))) (-2152 ((|#1| $ (-400 (-549))) NIL)) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) NIL)) (-2597 ((|#1| $) 18)) (-1733 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1710 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2661 ((|#1| $ (-400 (-549))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))) (|has| |#1| (-15 -3846 (|#1| (-1143))))))) (-1934 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) 24)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 23) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
-(((-466 |#1| |#2| |#3|) (-13 (-1207 |#1|) (-10 -8 (-15 -3846 ($ (-1222 |#2|))) (-15 -3846 ($ (-1211 |#1| |#2| |#3|))) (-15 -3456 ($ $ (-1222 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3893 ($ $ (-1222 |#2|))) |%noBranch|))) (-1018) (-1143) |#1|) (T -466))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-466 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-1211 *3 *4 *5)) (-4 *3 (-1018)) (-14 *4 (-1143)) (-14 *5 *3) (-5 *1 (-466 *3 *4 *5)))) (-3456 (*1 *1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-466 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3893 (*1 *1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-466 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3))))
-(-13 (-1207 |#1|) (-10 -8 (-15 -3846 ($ (-1222 |#2|))) (-15 -3846 ($ (-1211 |#1| |#2| |#3|))) (-15 -3456 ($ $ (-1222 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3893 ($ $ (-1222 |#2|))) |%noBranch|)))
-((-3834 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3733 (($) NIL) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-1535 (((-1231) $ |#1| |#1|) NIL (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 ((|#2| $ |#1| |#2|) 18)) (-1717 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-3490 (((-3 |#2| "failed") |#1| $) 19)) (-1682 (($) NIL T CONST)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-2129 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-3 |#2| "failed") |#1| $) 16)) (-3812 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2557 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-1879 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#2| $ |#1|) NIL)) (-2989 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) NIL)) (-4031 ((|#1| $) NIL (|has| |#1| (-823)))) (-1562 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-1569 ((|#1| $) NIL (|has| |#1| (-823)))) (-1868 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4338))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3449 (((-621 |#1|) $) NIL)) (-2427 (((-112) |#1| $) NIL)) (-3504 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-2751 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-3303 (((-621 |#1|) $) NIL)) (-3761 (((-112) |#1| $) NIL)) (-3990 (((-1087) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3646 ((|#2| $) NIL (|has| |#1| (-823)))) (-3779 (((-3 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) "failed") (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL)) (-1642 (($ $ |#2|) NIL (|has| $ (-6 -4338)))) (-3325 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-1780 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-2696 (((-621 |#2|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#2| $ |#1|) 13) ((|#2| $ |#1| |#2|) NIL)) (-2898 (($) NIL) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-4000 (((-747) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-747) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067)))) (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-594 (-525))))) (-3854 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-3846 (((-834) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-593 (-834))) (|has| |#2| (-593 (-834)))))) (-3624 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-3527 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-467 |#1| |#2| |#3| |#4|) (-1156 |#1| |#2|) (-1067) (-1067) (-1156 |#1| |#2|) |#2|) (T -467))
-NIL
-(-1156 |#1| |#2|)
-((-3834 (((-112) $ $) NIL)) (-3514 (((-621 (-2 (|:| -2681 $) (|:| -1359 (-621 |#4|)))) (-621 |#4|)) NIL)) (-2866 (((-621 $) (-621 |#4|)) NIL)) (-2272 (((-621 |#3|) $) NIL)) (-3422 (((-112) $) NIL)) (-2527 (((-112) $) NIL (|has| |#1| (-541)))) (-3282 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2731 ((|#4| |#4| $) NIL)) (-3193 (((-2 (|:| |under| $) (|:| -3967 $) (|:| |upper| $)) $ |#3|) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-1489 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337))) (((-3 |#4| "failed") $ |#3|) NIL)) (-1682 (($) NIL T CONST)) (-1433 (((-112) $) 26 (|has| |#1| (-541)))) (-2555 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2595 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2397 (((-112) $) NIL (|has| |#1| (-541)))) (-2737 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3269 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2953 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2714 (((-3 $ "failed") (-621 |#4|)) NIL)) (-2659 (($ (-621 |#4|)) NIL)) (-3657 (((-3 $ "failed") $) 39)) (-1903 ((|#4| |#4| $) NIL)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067))))) (-3812 (($ |#4| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-3675 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-541)))) (-2217 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-3615 ((|#4| |#4| $) NIL)) (-2557 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4337))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4337))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-1439 (((-2 (|:| -2681 (-621 |#4|)) (|:| -1359 (-621 |#4|))) $) NIL)) (-2989 (((-621 |#4|) $) 16 (|has| $ (-6 -4337)))) (-2812 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2745 ((|#3| $) 33)) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 |#4|) $) 17 (|has| $ (-6 -4337)))) (-2090 (((-112) |#4| $) 25 (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067))))) (-1868 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#4| |#4|) $) 21)) (-2561 (((-621 |#3|) $) NIL)) (-2378 (((-112) |#3| $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL)) (-3829 (((-3 |#4| "failed") $) 37)) (-1638 (((-621 |#4|) $) NIL)) (-2170 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3270 ((|#4| |#4| $) NIL)) (-2473 (((-112) $ $) NIL)) (-4203 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-541)))) (-1335 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4298 ((|#4| |#4| $) NIL)) (-3990 (((-1087) $) NIL)) (-3646 (((-3 |#4| "failed") $) 35)) (-3779 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-2640 (((-3 $ "failed") $ |#4|) 47)) (-2763 (($ $ |#4|) NIL)) (-1780 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 |#4|) (-621 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-287 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-621 (-287 |#4|))) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) 15)) (-3742 (($) 13)) (-3701 (((-747) $) NIL)) (-4000 (((-747) |#4| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067)))) (((-747) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) 12)) (-2845 (((-525) $) NIL (|has| |#4| (-594 (-525))))) (-3854 (($ (-621 |#4|)) 20)) (-2858 (($ $ |#3|) 42)) (-3758 (($ $ |#3|) 44)) (-1962 (($ $) NIL)) (-4317 (($ $ |#3|) NIL)) (-3846 (((-834) $) 31) (((-621 |#4|) $) 40)) (-1824 (((-747) $) NIL (|has| |#3| (-361)))) (-2574 (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-1716 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) NIL)) (-3527 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-3002 (((-621 |#3|) $) NIL)) (-1606 (((-112) |#3| $) NIL)) (-2389 (((-112) $ $) NIL)) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-468 |#1| |#2| |#3| |#4|) (-1173 |#1| |#2| |#3| |#4|) (-541) (-769) (-823) (-1032 |#1| |#2| |#3|)) (T -468))
-NIL
-(-1173 |#1| |#2| |#3| |#4|)
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL)) (-2659 (((-549) $) NIL) (((-400 (-549)) $) NIL)) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-1425 (($) 18)) (-2675 (((-112) $) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2121 (((-411 $) $) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-2845 (((-372) $) 22) (((-219) $) 25) (((-400 (-1139 (-549))) $) 19) (((-525) $) 52)) (-3846 (((-834) $) 50) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (((-219) $) 24) (((-372) $) 21)) (-2082 (((-747)) NIL)) (-1498 (((-112) $ $) NIL)) (-3276 (($) 36 T CONST)) (-3287 (($) 11 T CONST)) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL)))
-(((-469) (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))) (-993) (-593 (-219)) (-593 (-372)) (-594 (-400 (-1139 (-549)))) (-594 (-525)) (-10 -8 (-15 -1425 ($))))) (T -469))
+((-1990 (*1 *1 *1) (-4 *1 (-465))) (-2511 (*1 *1 *1 *1) (-4 *1 (-465))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-465)) (-5 *2 (-549)))) (-1795 (*1 *1 *1 *1) (-4 *1 (-465))) (-3870 (*1 *1 *1 *1) (-4 *1 (-465))))
+(-13 (-703) (-10 -8 (-15 -1990 ($ $)) (-15 -2511 ($ $ $)) (-15 ** ($ $ (-549))) (-6 -4333) (-15 -1795 ($ $ $)) (-15 -3870 ($ $ $))))
+(((-101) . T) ((-593 (-834)) . T) ((-703) . T) ((-1078) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2270 (((-621 (-1048)) $) NIL)) (-3009 (((-1142) $) 17)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-3691 (($ $ (-400 (-549))) NIL) (($ $ (-400 (-549)) (-400 (-549))) NIL)) (-2585 (((-1122 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|))) $) NIL)) (-1662 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL (|has| |#1| (-356)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2132 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2680 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1638 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2824 (($ (-747) (-1122 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|)))) NIL)) (-1684 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) NIL T CONST)) (-2091 (($ $ $) NIL (|has| |#1| (-356)))) (-2068 (($ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-2065 (($ $ $) NIL (|has| |#1| (-356)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1464 (((-112) $) NIL (|has| |#1| (-356)))) (-1410 (((-112) $) NIL)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2729 (((-400 (-549)) $) NIL) (((-400 (-549)) $ (-400 (-549))) NIL)) (-2297 (((-112) $) NIL)) (-3621 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2625 (($ $ (-892)) NIL) (($ $ (-400 (-549))) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-400 (-549))) NIL) (($ $ (-1048) (-400 (-549))) NIL) (($ $ (-621 (-1048)) (-621 (-400 (-549)))) NIL)) (-2795 (($ (-1 |#1| |#1|) $) 22)) (-3631 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL (|has| |#1| (-356)))) (-3405 (($ $) 26 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1142)) 33 (-1536 (-12 (|has| |#1| (-15 -3405 (|#1| |#1| (-1142)))) (|has| |#1| (-15 -2270 ((-621 (-1142)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1164))))) (($ $ (-1221 |#2|)) 27 (|has| |#1| (-38 (-400 (-549)))))) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-356)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2119 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-3796 (($ $ (-400 (-549))) NIL)) (-2040 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2717 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2684 (((-1122 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))))) (-1335 (((-747) $) NIL (|has| |#1| (-356)))) (-3339 ((|#1| $ (-400 (-549))) NIL) (($ $ $) NIL (|has| (-400 (-549)) (-1078)))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-356)))) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142)) 25 (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) 13 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $ (-1221 |#2|)) 15)) (-3977 (((-400 (-549)) $) NIL)) (-1696 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3958 (($ $) NIL)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL (|has| |#1| (-170))) (($ (-1221 |#2|)) NIL) (($ (-1210 |#1| |#2| |#3|)) 9) (($ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541)))) (-4068 ((|#1| $ (-400 (-549))) NIL)) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) NIL)) (-2596 ((|#1| $) 18)) (-1731 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1708 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2659 ((|#1| $ (-400 (-549))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))) (|has| |#1| (-15 -3845 (|#1| (-1142))))))) (-1932 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) 24)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 23) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
+(((-466 |#1| |#2| |#3|) (-13 (-1206 |#1|) (-10 -8 (-15 -3845 ($ (-1221 |#2|))) (-15 -3845 ($ (-1210 |#1| |#2| |#3|))) (-15 -3455 ($ $ (-1221 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3405 ($ $ (-1221 |#2|))) |%noBranch|))) (-1018) (-1142) |#1|) (T -466))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-466 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-1210 *3 *4 *5)) (-4 *3 (-1018)) (-14 *4 (-1142)) (-14 *5 *3) (-5 *1 (-466 *3 *4 *5)))) (-3455 (*1 *1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-466 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3405 (*1 *1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-466 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3))))
+(-13 (-1206 |#1|) (-10 -8 (-15 -3845 ($ (-1221 |#2|))) (-15 -3845 ($ (-1210 |#1| |#2| |#3|))) (-15 -3455 ($ $ (-1221 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3405 ($ $ (-1221 |#2|))) |%noBranch|)))
+((-3832 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3732 (($) NIL) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3659 (((-1230) $ |#1| |#1|) NIL (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 ((|#2| $ |#1| |#2|) 18)) (-3827 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-3489 (((-3 |#2| "failed") |#1| $) 19)) (-3034 (($) NIL T CONST)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-3546 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-3 |#2| "failed") |#1| $) 16)) (-3812 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-2556 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (|has| $ (-6 -4336))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-1875 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#2| $ |#1|) NIL)) (-2987 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) NIL)) (-2807 ((|#1| $) NIL (|has| |#1| (-823)))) (-3698 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3063 ((|#1| $) NIL (|has| |#1| (-823)))) (-1864 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4337))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3448 (((-621 |#1|) $) NIL)) (-2130 (((-112) |#1| $) NIL)) (-2548 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-1799 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-2296 (((-621 |#1|) $) NIL)) (-2284 (((-112) |#1| $) NIL)) (-3988 (((-1086) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3645 ((|#2| $) NIL (|has| |#1| (-823)))) (-3959 (((-3 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) "failed") (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL)) (-1943 (($ $ |#2|) NIL (|has| $ (-6 -4337)))) (-3536 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-3360 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3347 (((-621 |#2|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#2| $ |#1|) 13) ((|#2| $ |#1| |#2|) NIL)) (-3226 (($) NIL) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3997 (((-747) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-747) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066)))) (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-594 (-525))))) (-3853 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3845 (((-834) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-593 (-834))) (|has| |#2| (-593 (-834)))))) (-4213 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3025 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-467 |#1| |#2| |#3| |#4|) (-1155 |#1| |#2|) (-1066) (-1066) (-1155 |#1| |#2|) |#2|) (T -467))
+NIL
+(-1155 |#1| |#2|)
+((-3832 (((-112) $ $) NIL)) (-4063 (((-621 (-2 (|:| -2679 $) (|:| -1358 (-621 |#4|)))) (-621 |#4|)) NIL)) (-3587 (((-621 $) (-621 |#4|)) NIL)) (-2270 (((-621 |#3|) $) NIL)) (-3735 (((-112) $) NIL)) (-2148 (((-112) $) NIL (|has| |#1| (-541)))) (-2210 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2156 ((|#4| |#4| $) NIL)) (-3191 (((-2 (|:| |under| $) (|:| -1349 $) (|:| |upper| $)) $ |#3|) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-1488 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336))) (((-3 |#4| "failed") $ |#3|) NIL)) (-3034 (($) NIL T CONST)) (-4291 (((-112) $) 26 (|has| |#1| (-541)))) (-1663 (((-112) $ $) NIL (|has| |#1| (-541)))) (-4226 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2113 (((-112) $) NIL (|has| |#1| (-541)))) (-1409 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3480 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2393 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2712 (((-3 $ "failed") (-621 |#4|)) NIL)) (-2657 (($ (-621 |#4|)) NIL)) (-3656 (((-3 $ "failed") $) 39)) (-1852 ((|#4| |#4| $) NIL)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066))))) (-3812 (($ |#4| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-1809 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-541)))) (-1804 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-1402 ((|#4| |#4| $) NIL)) (-2556 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4336))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4336))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3862 (((-2 (|:| -2679 (-621 |#4|)) (|:| -1358 (-621 |#4|))) $) NIL)) (-2987 (((-621 |#4|) $) 16 (|has| $ (-6 -4336)))) (-2240 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2510 ((|#3| $) 33)) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 |#4|) $) 17 (|has| $ (-6 -4336)))) (-1593 (((-112) |#4| $) 25 (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066))))) (-1864 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#4| |#4|) $) 21)) (-3991 (((-621 |#3|) $) NIL)) (-4192 (((-112) |#3| $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL)) (-3828 (((-3 |#4| "failed") $) 37)) (-1645 (((-621 |#4|) $) NIL)) (-1304 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3603 ((|#4| |#4| $) NIL)) (-3386 (((-112) $ $) NIL)) (-2179 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-541)))) (-4122 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4244 ((|#4| |#4| $) NIL)) (-3988 (((-1086) $) NIL)) (-3645 (((-3 |#4| "failed") $) 35)) (-3959 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1505 (((-3 $ "failed") $ |#4|) 47)) (-3796 (($ $ |#4|) NIL)) (-3360 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 |#4|) (-621 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-287 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-621 (-287 |#4|))) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) 15)) (-3288 (($) 13)) (-3977 (((-747) $) NIL)) (-3997 (((-747) |#4| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066)))) (((-747) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) 12)) (-2843 (((-525) $) NIL (|has| |#4| (-594 (-525))))) (-3853 (($ (-621 |#4|)) 20)) (-4085 (($ $ |#3|) 42)) (-2195 (($ $ |#3|) 44)) (-4292 (($ $) NIL)) (-4285 (($ $ |#3|) NIL)) (-3845 (((-834) $) 31) (((-621 |#4|) $) 40)) (-2503 (((-747) $) NIL (|has| |#3| (-361)))) (-2940 (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3760 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) NIL)) (-3025 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-4044 (((-621 |#3|) $) NIL)) (-1993 (((-112) |#3| $) NIL)) (-2387 (((-112) $ $) NIL)) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-468 |#1| |#2| |#3| |#4|) (-1172 |#1| |#2| |#3| |#4|) (-541) (-769) (-823) (-1032 |#1| |#2| |#3|)) (T -468))
+NIL
+(-1172 |#1| |#2| |#3| |#4|)
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2680 (((-112) $ $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL)) (-2657 (((-549) $) NIL) (((-400 (-549)) $) NIL)) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-1425 (($) 18)) (-2297 (((-112) $) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2119 (((-411 $) $) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-2843 (((-372) $) 22) (((-219) $) 25) (((-400 (-1138 (-549))) $) 19) (((-525) $) 52)) (-3845 (((-834) $) 50) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (((-219) $) 24) (((-372) $) 21)) (-2371 (((-747)) NIL)) (-2441 (((-112) $ $) NIL)) (-3274 (($) 36 T CONST)) (-3286 (($) 11 T CONST)) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL)))
+(((-469) (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))) (-993) (-593 (-219)) (-593 (-372)) (-594 (-400 (-1138 (-549)))) (-594 (-525)) (-10 -8 (-15 -1425 ($))))) (T -469))
((-1425 (*1 *1) (-5 *1 (-469))))
-(-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))) (-993) (-593 (-219)) (-593 (-372)) (-594 (-400 (-1139 (-549)))) (-594 (-525)) (-10 -8 (-15 -1425 ($))))
-((-3834 (((-112) $ $) NIL)) (-2203 (((-1148) $) 11)) (-2190 (((-1148) $) 9)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-470) (-13 (-1050) (-10 -8 (-15 -2190 ((-1148) $)) (-15 -2203 ((-1148) $))))) (T -470))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-470)))) (-2203 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-470)))))
-(-13 (-1050) (-10 -8 (-15 -2190 ((-1148) $)) (-15 -2203 ((-1148) $))))
-((-3834 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3733 (($) NIL) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-1535 (((-1231) $ |#1| |#1|) NIL (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 ((|#2| $ |#1| |#2|) 16)) (-1717 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-3490 (((-3 |#2| "failed") |#1| $) 20)) (-1682 (($) NIL T CONST)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-2129 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-3 |#2| "failed") |#1| $) 18)) (-3812 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2557 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-1879 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#2| $ |#1|) NIL)) (-2989 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) NIL)) (-4031 ((|#1| $) NIL (|has| |#1| (-823)))) (-1562 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-1569 ((|#1| $) NIL (|has| |#1| (-823)))) (-1868 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4338))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3449 (((-621 |#1|) $) 13)) (-2427 (((-112) |#1| $) NIL)) (-3504 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-2751 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-3303 (((-621 |#1|) $) NIL)) (-3761 (((-112) |#1| $) NIL)) (-3990 (((-1087) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3646 ((|#2| $) NIL (|has| |#1| (-823)))) (-3779 (((-3 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) "failed") (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL)) (-1642 (($ $ |#2|) NIL (|has| $ (-6 -4338)))) (-3325 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-1780 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-2696 (((-621 |#2|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) 19)) (-3341 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2898 (($) NIL) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-4000 (((-747) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-747) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067)))) (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-594 (-525))))) (-3854 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-3846 (((-834) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-593 (-834))) (|has| |#2| (-593 (-834)))))) (-3624 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-3527 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 11 (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3775 (((-747) $) 15 (|has| $ (-6 -4337)))))
-(((-471 |#1| |#2| |#3|) (-13 (-1156 |#1| |#2|) (-10 -7 (-6 -4337))) (-1067) (-1067) (-1125)) (T -471))
-NIL
-(-13 (-1156 |#1| |#2|) (-10 -7 (-6 -4337)))
-((-2995 (((-549) (-549) (-549)) 7)) (-2037 (((-112) (-549) (-549) (-549) (-549)) 11)) (-1412 (((-1226 (-621 (-549))) (-747) (-747)) 23)))
-(((-472) (-10 -7 (-15 -2995 ((-549) (-549) (-549))) (-15 -2037 ((-112) (-549) (-549) (-549) (-549))) (-15 -1412 ((-1226 (-621 (-549))) (-747) (-747))))) (T -472))
-((-1412 (*1 *2 *3 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1226 (-621 (-549)))) (-5 *1 (-472)))) (-2037 (*1 *2 *3 *3 *3 *3) (-12 (-5 *3 (-549)) (-5 *2 (-112)) (-5 *1 (-472)))) (-2995 (*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-472)))))
-(-10 -7 (-15 -2995 ((-549) (-549) (-549))) (-15 -2037 ((-112) (-549) (-549) (-549) (-549))) (-15 -1412 ((-1226 (-621 (-549))) (-747) (-747))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2272 (((-621 (-836 |#1|)) $) NIL)) (-2084 (((-1139 $) $ (-836 |#1|)) NIL) (((-1139 |#2|) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#2| (-541)))) (-2258 (($ $) NIL (|has| |#2| (-541)))) (-2799 (((-112) $) NIL (|has| |#2| (-541)))) (-3186 (((-747) $) NIL) (((-747) $ (-621 (-836 |#1|))) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-3979 (($ $) NIL (|has| |#2| (-444)))) (-2402 (((-411 $) $) NIL (|has| |#2| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#2| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-836 |#1|) "failed") $) NIL)) (-2659 ((|#2| $) NIL) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#2| (-1009 (-549)))) (((-836 |#1|) $) NIL)) (-1353 (($ $ $ (-836 |#1|)) NIL (|has| |#2| (-170)))) (-1457 (($ $ (-621 (-549))) NIL)) (-2070 (($ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) NIL) (((-665 |#2|) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1285 (($ $) NIL (|has| |#2| (-444))) (($ $ (-836 |#1|)) NIL (|has| |#2| (-444)))) (-2058 (((-621 $) $) NIL)) (-1420 (((-112) $) NIL (|has| |#2| (-880)))) (-2691 (($ $ |#2| (-474 (-3775 |#1|) (-747)) $) NIL)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-836 |#1|) (-857 (-372))) (|has| |#2| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-836 |#1|) (-857 (-549))) (|has| |#2| (-857 (-549)))))) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) NIL)) (-2261 (($ (-1139 |#2|) (-836 |#1|)) NIL) (($ (-1139 $) (-836 |#1|)) NIL)) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) NIL)) (-2246 (($ |#2| (-474 (-3775 |#1|) (-747))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ (-836 |#1|)) NIL)) (-3611 (((-474 (-3775 |#1|) (-747)) $) NIL) (((-747) $ (-836 |#1|)) NIL) (((-621 (-747)) $ (-621 (-836 |#1|))) NIL)) (-2863 (($ $ $) NIL (|has| |#2| (-823)))) (-3575 (($ $ $) NIL (|has| |#2| (-823)))) (-3705 (($ (-1 (-474 (-3775 |#1|) (-747)) (-474 (-3775 |#1|) (-747))) $) NIL)) (-2797 (($ (-1 |#2| |#2|) $) NIL)) (-1520 (((-3 (-836 |#1|) "failed") $) NIL)) (-2028 (($ $) NIL)) (-2043 ((|#2| $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-3851 (((-1125) $) NIL)) (-4266 (((-3 (-621 $) "failed") $) NIL)) (-2533 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-2 (|:| |var| (-836 |#1|)) (|:| -3731 (-747))) "failed") $) NIL)) (-3990 (((-1087) $) NIL)) (-2004 (((-112) $) NIL)) (-2016 ((|#2| $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#2| (-444)))) (-3727 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-2121 (((-411 $) $) NIL (|has| |#2| (-880)))) (-2042 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-541)))) (-2686 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-836 |#1|) |#2|) NIL) (($ $ (-621 (-836 |#1|)) (-621 |#2|)) NIL) (($ $ (-836 |#1|) $) NIL) (($ $ (-621 (-836 |#1|)) (-621 $)) NIL)) (-3602 (($ $ (-836 |#1|)) NIL (|has| |#2| (-170)))) (-3456 (($ $ (-836 |#1|)) NIL) (($ $ (-621 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-3701 (((-474 (-3775 |#1|) (-747)) $) NIL) (((-747) $ (-836 |#1|)) NIL) (((-621 (-747)) $ (-621 (-836 |#1|))) NIL)) (-2845 (((-863 (-372)) $) NIL (-12 (|has| (-836 |#1|) (-594 (-863 (-372)))) (|has| |#2| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-836 |#1|) (-594 (-863 (-549)))) (|has| |#2| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-836 |#1|) (-594 (-525))) (|has| |#2| (-594 (-525)))))) (-2216 ((|#2| $) NIL (|has| |#2| (-444))) (($ $ (-836 |#1|)) NIL (|has| |#2| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#2| (-880))))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) NIL) (($ (-836 |#1|)) NIL) (($ (-400 (-549))) NIL (-1536 (|has| |#2| (-38 (-400 (-549)))) (|has| |#2| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#2| (-541)))) (-4141 (((-621 |#2|) $) NIL)) (-2152 ((|#2| $ (-474 (-3775 |#1|) (-747))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#2| (-880))) (|has| |#2| (-143))))) (-2082 (((-747)) NIL)) (-1509 (($ $ $ (-747)) NIL (|has| |#2| (-170)))) (-1498 (((-112) $ $) NIL (|has| |#2| (-541)))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $ (-836 |#1|)) NIL) (($ $ (-621 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-2448 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2513 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#2| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#2| (-38 (-400 (-549))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-473 |#1| |#2|) (-13 (-920 |#2| (-474 (-3775 |#1|) (-747)) (-836 |#1|)) (-10 -8 (-15 -1457 ($ $ (-621 (-549)))))) (-621 (-1143)) (-1018)) (T -473))
-((-1457 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-473 *3 *4)) (-14 *3 (-621 (-1143))) (-4 *4 (-1018)))))
-(-13 (-920 |#2| (-474 (-3775 |#1|) (-747)) (-836 |#1|)) (-10 -8 (-15 -1457 ($ $ (-621 (-549))))))
-((-3834 (((-112) $ $) NIL (|has| |#2| (-1067)))) (-1763 (((-112) $) NIL (|has| |#2| (-130)))) (-3956 (($ (-892)) NIL (|has| |#2| (-1018)))) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-2861 (($ $ $) NIL (|has| |#2| (-769)))) (-2001 (((-3 $ "failed") $ $) NIL (|has| |#2| (-130)))) (-1584 (((-112) $ (-747)) NIL)) (-3614 (((-747)) NIL (|has| |#2| (-361)))) (-1872 (((-549) $) NIL (|has| |#2| (-821)))) (-2254 ((|#2| $ (-549) |#2|) NIL (|has| $ (-6 -4338)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1067)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1067)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1067)))) (-2659 (((-549) $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1067)))) (((-400 (-549)) $) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1067)))) ((|#2| $) NIL (|has| |#2| (-1067)))) (-3879 (((-665 (-549)) (-665 $)) NIL (-12 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (-12 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018)))) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) NIL (|has| |#2| (-1018))) (((-665 |#2|) (-665 $)) NIL (|has| |#2| (-1018)))) (-2114 (((-3 $ "failed") $) NIL (|has| |#2| (-703)))) (-3239 (($) NIL (|has| |#2| (-361)))) (-1879 ((|#2| $ (-549) |#2|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#2| $ (-549)) 11)) (-2772 (((-112) $) NIL (|has| |#2| (-821)))) (-2989 (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-2675 (((-112) $) NIL (|has| |#2| (-703)))) (-2374 (((-112) $) NIL (|has| |#2| (-821)))) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) NIL (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-1562 (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-1868 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#2| |#2|) $) NIL)) (-1881 (((-892) $) NIL (|has| |#2| (-361)))) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#2| (-1067)))) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3493 (($ (-892)) NIL (|has| |#2| (-361)))) (-3990 (((-1087) $) NIL (|has| |#2| (-1067)))) (-3646 ((|#2| $) NIL (|has| (-549) (-823)))) (-1642 (($ $ |#2|) NIL (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-2696 (((-621 |#2|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#2| $ (-549) |#2|) NIL) ((|#2| $ (-549)) NIL)) (-1706 ((|#2| $ $) NIL (|has| |#2| (-1018)))) (-2169 (($ (-1226 |#2|)) NIL)) (-2985 (((-133)) NIL (|has| |#2| (-356)))) (-3456 (($ $) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-1143)) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-1 |#2| |#2|) (-747)) NIL (|has| |#2| (-1018))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1018)))) (-4000 (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-2281 (($ $) NIL)) (-3846 (((-1226 |#2|) $) NIL) (($ (-549)) NIL (-1536 (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1067))) (|has| |#2| (-1018)))) (($ (-400 (-549))) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1067)))) (($ |#2|) NIL (|has| |#2| (-1067))) (((-834) $) NIL (|has| |#2| (-593 (-834))))) (-2082 (((-747)) NIL (|has| |#2| (-1018)))) (-3527 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-3212 (($ $) NIL (|has| |#2| (-821)))) (-3276 (($) NIL (|has| |#2| (-130)) CONST)) (-3287 (($) NIL (|has| |#2| (-703)) CONST)) (-1702 (($ $) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-1143)) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-1 |#2| |#2|) (-747)) NIL (|has| |#2| (-1018))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1018)))) (-2448 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2425 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2389 (((-112) $ $) NIL (|has| |#2| (-1067)))) (-2438 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2412 (((-112) $ $) 15 (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2513 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2500 (($ $ $) NIL (|has| |#2| (-1018))) (($ $) NIL (|has| |#2| (-1018)))) (-2486 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-747)) NIL (|has| |#2| (-703))) (($ $ (-892)) NIL (|has| |#2| (-703)))) (* (($ (-549) $) NIL (|has| |#2| (-1018))) (($ $ $) NIL (|has| |#2| (-703))) (($ $ |#2|) NIL (|has| |#2| (-703))) (($ |#2| $) NIL (|has| |#2| (-703))) (($ (-747) $) NIL (|has| |#2| (-130))) (($ (-892) $) NIL (|has| |#2| (-25)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
+(-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))) (-993) (-593 (-219)) (-593 (-372)) (-594 (-400 (-1138 (-549)))) (-594 (-525)) (-10 -8 (-15 -1425 ($))))
+((-3832 (((-112) $ $) NIL)) (-2200 (((-1101) $) 11)) (-2187 (((-1101) $) 9)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 19) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-470) (-13 (-1049) (-10 -8 (-15 -2187 ((-1101) $)) (-15 -2200 ((-1101) $))))) (T -470))
+((-2187 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-470)))) (-2200 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-470)))))
+(-13 (-1049) (-10 -8 (-15 -2187 ((-1101) $)) (-15 -2200 ((-1101) $))))
+((-3832 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3732 (($) NIL) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3659 (((-1230) $ |#1| |#1|) NIL (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 ((|#2| $ |#1| |#2|) 16)) (-3827 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-3489 (((-3 |#2| "failed") |#1| $) 20)) (-3034 (($) NIL T CONST)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-3546 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-3 |#2| "failed") |#1| $) 18)) (-3812 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-2556 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (|has| $ (-6 -4336))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-1875 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#2| $ |#1|) NIL)) (-2987 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) NIL)) (-2807 ((|#1| $) NIL (|has| |#1| (-823)))) (-3698 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3063 ((|#1| $) NIL (|has| |#1| (-823)))) (-1864 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4337))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3448 (((-621 |#1|) $) 13)) (-2130 (((-112) |#1| $) NIL)) (-2548 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-1799 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-2296 (((-621 |#1|) $) NIL)) (-2284 (((-112) |#1| $) NIL)) (-3988 (((-1086) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3645 ((|#2| $) NIL (|has| |#1| (-823)))) (-3959 (((-3 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) "failed") (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL)) (-1943 (($ $ |#2|) NIL (|has| $ (-6 -4337)))) (-3536 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-3360 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3347 (((-621 |#2|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) 19)) (-3339 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3226 (($) NIL) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3997 (((-747) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-747) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066)))) (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-594 (-525))))) (-3853 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3845 (((-834) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-593 (-834))) (|has| |#2| (-593 (-834)))))) (-4213 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3025 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 11 (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3774 (((-747) $) 15 (|has| $ (-6 -4336)))))
+(((-471 |#1| |#2| |#3|) (-13 (-1155 |#1| |#2|) (-10 -7 (-6 -4336))) (-1066) (-1066) (-1124)) (T -471))
+NIL
+(-13 (-1155 |#1| |#2|) (-10 -7 (-6 -4336)))
+((-1553 (((-549) (-549) (-549)) 7)) (-2154 (((-112) (-549) (-549) (-549) (-549)) 11)) (-1411 (((-1225 (-621 (-549))) (-747) (-747)) 23)))
+(((-472) (-10 -7 (-15 -1553 ((-549) (-549) (-549))) (-15 -2154 ((-112) (-549) (-549) (-549) (-549))) (-15 -1411 ((-1225 (-621 (-549))) (-747) (-747))))) (T -472))
+((-1411 (*1 *2 *3 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1225 (-621 (-549)))) (-5 *1 (-472)))) (-2154 (*1 *2 *3 *3 *3 *3) (-12 (-5 *3 (-549)) (-5 *2 (-112)) (-5 *1 (-472)))) (-1553 (*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-472)))))
+(-10 -7 (-15 -1553 ((-549) (-549) (-549))) (-15 -2154 ((-112) (-549) (-549) (-549) (-549))) (-15 -1411 ((-1225 (-621 (-549))) (-747) (-747))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2270 (((-621 (-836 |#1|)) $) NIL)) (-2082 (((-1138 $) $ (-836 |#1|)) NIL) (((-1138 |#2|) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#2| (-541)))) (-3044 (($ $) NIL (|has| |#2| (-541)))) (-2774 (((-112) $) NIL (|has| |#2| (-541)))) (-2216 (((-747) $) NIL) (((-747) $ (-621 (-836 |#1|))) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-3239 (($ $) NIL (|has| |#2| (-444)))) (-2620 (((-411 $) $) NIL (|has| |#2| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#2| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-836 |#1|) "failed") $) NIL)) (-2657 ((|#2| $) NIL) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#2| (-1009 (-549)))) (((-836 |#1|) $) NIL)) (-4114 (($ $ $ (-836 |#1|)) NIL (|has| |#2| (-170)))) (-3139 (($ $ (-621 (-549))) NIL)) (-2068 (($ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) NIL) (((-665 |#2|) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3004 (($ $) NIL (|has| |#2| (-444))) (($ $ (-836 |#1|)) NIL (|has| |#2| (-444)))) (-2056 (((-621 $) $) NIL)) (-1464 (((-112) $) NIL (|has| |#2| (-880)))) (-4064 (($ $ |#2| (-474 (-3774 |#1|) (-747)) $) NIL)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-836 |#1|) (-857 (-372))) (|has| |#2| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-836 |#1|) (-857 (-549))) (|has| |#2| (-857 (-549)))))) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) NIL)) (-2259 (($ (-1138 |#2|) (-836 |#1|)) NIL) (($ (-1138 $) (-836 |#1|)) NIL)) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) NIL)) (-2244 (($ |#2| (-474 (-3774 |#1|) (-747))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ (-836 |#1|)) NIL)) (-2391 (((-474 (-3774 |#1|) (-747)) $) NIL) (((-747) $ (-836 |#1|)) NIL) (((-621 (-747)) $ (-621 (-836 |#1|))) NIL)) (-2861 (($ $ $) NIL (|has| |#2| (-823)))) (-3574 (($ $ $) NIL (|has| |#2| (-823)))) (-3224 (($ (-1 (-474 (-3774 |#1|) (-747)) (-474 (-3774 |#1|) (-747))) $) NIL)) (-2795 (($ (-1 |#2| |#2|) $) NIL)) (-2236 (((-3 (-836 |#1|) "failed") $) NIL)) (-2027 (($ $) NIL)) (-2042 ((|#2| $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-3441 (((-1124) $) NIL)) (-4093 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-621 $) "failed") $) NIL)) (-1477 (((-3 (-2 (|:| |var| (-836 |#1|)) (|:| -1714 (-747))) "failed") $) NIL)) (-3988 (((-1086) $) NIL)) (-2001 (((-112) $) NIL)) (-2011 ((|#2| $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#2| (-444)))) (-3726 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-2119 (((-411 $) $) NIL (|has| |#2| (-880)))) (-2040 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-541)))) (-2684 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-836 |#1|) |#2|) NIL) (($ $ (-621 (-836 |#1|)) (-621 |#2|)) NIL) (($ $ (-836 |#1|) $) NIL) (($ $ (-621 (-836 |#1|)) (-621 $)) NIL)) (-2740 (($ $ (-836 |#1|)) NIL (|has| |#2| (-170)))) (-3455 (($ $ (-836 |#1|)) NIL) (($ $ (-621 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-3977 (((-474 (-3774 |#1|) (-747)) $) NIL) (((-747) $ (-836 |#1|)) NIL) (((-621 (-747)) $ (-621 (-836 |#1|))) NIL)) (-2843 (((-863 (-372)) $) NIL (-12 (|has| (-836 |#1|) (-594 (-863 (-372)))) (|has| |#2| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-836 |#1|) (-594 (-863 (-549)))) (|has| |#2| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-836 |#1|) (-594 (-525))) (|has| |#2| (-594 (-525)))))) (-1700 ((|#2| $) NIL (|has| |#2| (-444))) (($ $ (-836 |#1|)) NIL (|has| |#2| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#2| (-880))))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) NIL) (($ (-836 |#1|)) NIL) (($ (-400 (-549))) NIL (-1536 (|has| |#2| (-38 (-400 (-549)))) (|has| |#2| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#2| (-541)))) (-2157 (((-621 |#2|) $) NIL)) (-4068 ((|#2| $ (-474 (-3774 |#1|) (-747))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#2| (-880))) (|has| |#2| (-143))))) (-2371 (((-747)) NIL)) (-4046 (($ $ $ (-747)) NIL (|has| |#2| (-170)))) (-2441 (((-112) $ $) NIL (|has| |#2| (-541)))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $ (-836 |#1|)) NIL) (($ $ (-621 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-2447 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2511 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#2| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#2| (-38 (-400 (-549))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-473 |#1| |#2|) (-13 (-920 |#2| (-474 (-3774 |#1|) (-747)) (-836 |#1|)) (-10 -8 (-15 -3139 ($ $ (-621 (-549)))))) (-621 (-1142)) (-1018)) (T -473))
+((-3139 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-473 *3 *4)) (-14 *3 (-621 (-1142))) (-4 *4 (-1018)))))
+(-13 (-920 |#2| (-474 (-3774 |#1|) (-747)) (-836 |#1|)) (-10 -8 (-15 -3139 ($ $ (-621 (-549))))))
+((-3832 (((-112) $ $) NIL (|has| |#2| (-1066)))) (-3210 (((-112) $) NIL (|has| |#2| (-130)))) (-1627 (($ (-892)) NIL (|has| |#2| (-1018)))) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-4280 (($ $ $) NIL (|has| |#2| (-769)))) (-2416 (((-3 $ "failed") $ $) NIL (|has| |#2| (-130)))) (-2850 (((-112) $ (-747)) NIL)) (-3614 (((-747)) NIL (|has| |#2| (-361)))) (-1741 (((-549) $) NIL (|has| |#2| (-821)))) (-2250 ((|#2| $ (-549) |#2|) NIL (|has| $ (-6 -4337)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1066)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1066)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1066)))) (-2657 (((-549) $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1066)))) (((-400 (-549)) $) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1066)))) ((|#2| $) NIL (|has| |#2| (-1066)))) (-3446 (((-665 (-549)) (-665 $)) NIL (-12 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (-12 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018)))) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) NIL (|has| |#2| (-1018))) (((-665 |#2|) (-665 $)) NIL (|has| |#2| (-1018)))) (-2612 (((-3 $ "failed") $) NIL (|has| |#2| (-703)))) (-3237 (($) NIL (|has| |#2| (-361)))) (-1875 ((|#2| $ (-549) |#2|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#2| $ (-549)) 11)) (-2357 (((-112) $) NIL (|has| |#2| (-821)))) (-2987 (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-2297 (((-112) $) NIL (|has| |#2| (-703)))) (-1992 (((-112) $) NIL (|has| |#2| (-821)))) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) NIL (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-3698 (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-1864 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#2| |#2|) $) NIL)) (-3309 (((-892) $) NIL (|has| |#2| (-361)))) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#2| (-1066)))) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3494 (($ (-892)) NIL (|has| |#2| (-361)))) (-3988 (((-1086) $) NIL (|has| |#2| (-1066)))) (-3645 ((|#2| $) NIL (|has| (-549) (-823)))) (-1943 (($ $ |#2|) NIL (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3347 (((-621 |#2|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#2| $ (-549) |#2|) NIL) ((|#2| $ (-549)) NIL)) (-1283 ((|#2| $ $) NIL (|has| |#2| (-1018)))) (-2167 (($ (-1225 |#2|)) NIL)) (-2260 (((-133)) NIL (|has| |#2| (-356)))) (-3455 (($ $) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-1142)) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-1 |#2| |#2|) (-747)) NIL (|has| |#2| (-1018))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1018)))) (-3997 (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-2279 (($ $) NIL)) (-3845 (((-1225 |#2|) $) NIL) (($ (-549)) NIL (-1536 (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1066))) (|has| |#2| (-1018)))) (($ (-400 (-549))) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1066)))) (($ |#2|) NIL (|has| |#2| (-1066))) (((-834) $) NIL (|has| |#2| (-593 (-834))))) (-2371 (((-747)) NIL (|has| |#2| (-1018)))) (-3025 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2199 (($ $) NIL (|has| |#2| (-821)))) (-3274 (($) NIL (|has| |#2| (-130)) CONST)) (-3286 (($) NIL (|has| |#2| (-703)) CONST)) (-1699 (($ $) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-1142)) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-1 |#2| |#2|) (-747)) NIL (|has| |#2| (-1018))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1018)))) (-2447 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2423 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2387 (((-112) $ $) NIL (|has| |#2| (-1066)))) (-2436 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2409 (((-112) $ $) 15 (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2511 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2498 (($ $ $) NIL (|has| |#2| (-1018))) (($ $) NIL (|has| |#2| (-1018)))) (-2484 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-747)) NIL (|has| |#2| (-703))) (($ $ (-892)) NIL (|has| |#2| (-703)))) (* (($ (-549) $) NIL (|has| |#2| (-1018))) (($ $ $) NIL (|has| |#2| (-703))) (($ $ |#2|) NIL (|has| |#2| (-703))) (($ |#2| $) NIL (|has| |#2| (-703))) (($ (-747) $) NIL (|has| |#2| (-130))) (($ (-892) $) NIL (|has| |#2| (-25)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
(((-474 |#1| |#2|) (-232 |#1| |#2|) (-747) (-769)) (T -474))
NIL
(-232 |#1| |#2|)
-((-3834 (((-112) $ $) NIL)) (-2904 (((-621 (-497)) $) 11)) (-2481 (((-497) $) 10)) (-3851 (((-1125) $) NIL)) (-4229 (($ (-497) (-621 (-497))) 9)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-475) (-13 (-1050) (-10 -8 (-15 -4229 ($ (-497) (-621 (-497)))) (-15 -2481 ((-497) $)) (-15 -2904 ((-621 (-497)) $))))) (T -475))
-((-4229 (*1 *1 *2 *3) (-12 (-5 *3 (-621 (-497))) (-5 *2 (-497)) (-5 *1 (-475)))) (-2481 (*1 *2 *1) (-12 (-5 *2 (-497)) (-5 *1 (-475)))) (-2904 (*1 *2 *1) (-12 (-5 *2 (-621 (-497))) (-5 *1 (-475)))))
-(-13 (-1050) (-10 -8 (-15 -4229 ($ (-497) (-621 (-497)))) (-15 -2481 ((-497) $)) (-15 -2904 ((-621 (-497)) $))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-1584 (((-112) $ (-747)) NIL)) (-1682 (($) NIL T CONST)) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) NIL)) (-1303 (($ $ $) 32)) (-3890 (($ $ $) 31)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-3575 ((|#1| $) 26)) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3504 ((|#1| $) 27)) (-2751 (($ |#1| $) 10)) (-3273 (($ (-621 |#1|)) 12)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-3325 ((|#1| $) 23)) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) 9)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3624 (($ (-621 |#1|)) 29)) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3775 (((-747) $) 21 (|has| $ (-6 -4337)))))
-(((-476 |#1|) (-13 (-939 |#1|) (-10 -8 (-15 -3273 ($ (-621 |#1|))))) (-823)) (T -476))
-((-3273 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-476 *3)))))
-(-13 (-939 |#1|) (-10 -8 (-15 -3273 ($ (-621 |#1|)))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2557 (($ $) 69)) (-1607 (((-112) $) NIL)) (-3851 (((-1125) $) NIL)) (-3818 (((-406 |#2| (-400 |#2|) |#3| |#4|) $) 44)) (-3990 (((-1087) $) NIL)) (-4248 (((-3 |#4| "failed") $) 107)) (-3533 (($ (-406 |#2| (-400 |#2|) |#3| |#4|)) 76) (($ |#4|) 32) (($ |#1| |#1|) 115) (($ |#1| |#1| (-549)) NIL) (($ |#4| |#2| |#2| |#2| |#1|) 127)) (-1655 (((-2 (|:| -3715 (-406 |#2| (-400 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 46)) (-3846 (((-834) $) 102)) (-3276 (($) 33 T CONST)) (-2389 (((-112) $ $) 109)) (-2500 (($ $) 72) (($ $ $) NIL)) (-2486 (($ $ $) 70)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 73)))
-(((-477 |#1| |#2| |#3| |#4|) (-328 |#1| |#2| |#3| |#4|) (-356) (-1202 |#1|) (-1202 (-400 |#2|)) (-335 |#1| |#2| |#3|)) (T -477))
+((-3832 (((-112) $ $) NIL)) (-2902 (((-621 (-497)) $) 11)) (-2479 (((-497) $) 10)) (-3441 (((-1124) $) NIL)) (-2945 (($ (-497) (-621 (-497))) 9)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 20) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-475) (-13 (-1049) (-10 -8 (-15 -2945 ($ (-497) (-621 (-497)))) (-15 -2479 ((-497) $)) (-15 -2902 ((-621 (-497)) $))))) (T -475))
+((-2945 (*1 *1 *2 *3) (-12 (-5 *3 (-621 (-497))) (-5 *2 (-497)) (-5 *1 (-475)))) (-2479 (*1 *2 *1) (-12 (-5 *2 (-497)) (-5 *1 (-475)))) (-2902 (*1 *2 *1) (-12 (-5 *2 (-621 (-497))) (-5 *1 (-475)))))
+(-13 (-1049) (-10 -8 (-15 -2945 ($ (-497) (-621 (-497)))) (-15 -2479 ((-497) $)) (-15 -2902 ((-621 (-497)) $))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2850 (((-112) $ (-747)) NIL)) (-3034 (($) NIL T CONST)) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) NIL)) (-3021 (($ $ $) 32)) (-3050 (($ $ $) 31)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3574 ((|#1| $) 26)) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-2548 ((|#1| $) 27)) (-1799 (($ |#1| $) 10)) (-2678 (($ (-621 |#1|)) 12)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3536 ((|#1| $) 23)) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) 9)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-4213 (($ (-621 |#1|)) 29)) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3774 (((-747) $) 21 (|has| $ (-6 -4336)))))
+(((-476 |#1|) (-13 (-939 |#1|) (-10 -8 (-15 -2678 ($ (-621 |#1|))))) (-823)) (T -476))
+((-2678 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-476 *3)))))
+(-13 (-939 |#1|) (-10 -8 (-15 -2678 ($ (-621 |#1|)))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2556 (($ $) 69)) (-3919 (((-112) $) NIL)) (-3441 (((-1124) $) NIL)) (-2061 (((-406 |#2| (-400 |#2|) |#3| |#4|) $) 44)) (-3988 (((-1086) $) NIL)) (-4247 (((-3 |#4| "failed") $) 107)) (-2390 (($ (-406 |#2| (-400 |#2|) |#3| |#4|)) 76) (($ |#4|) 32) (($ |#1| |#1|) 115) (($ |#1| |#1| (-549)) NIL) (($ |#4| |#2| |#2| |#2| |#1|) 127)) (-2570 (((-2 (|:| -3713 (-406 |#2| (-400 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 46)) (-3845 (((-834) $) 102)) (-3274 (($) 33 T CONST)) (-2387 (((-112) $ $) 109)) (-2498 (($ $) 72) (($ $ $) NIL)) (-2484 (($ $ $) 70)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 73)))
+(((-477 |#1| |#2| |#3| |#4|) (-328 |#1| |#2| |#3| |#4|) (-356) (-1201 |#1|) (-1201 (-400 |#2|)) (-335 |#1| |#2| |#3|)) (T -477))
NIL
(-328 |#1| |#2| |#3| |#4|)
-((-3004 (((-549) (-621 (-549))) 30)) (-1916 ((|#1| (-621 |#1|)) 56)) (-1894 (((-621 |#1|) (-621 |#1|)) 57)) (-4086 (((-621 |#1|) (-621 |#1|)) 59)) (-3727 ((|#1| (-621 |#1|)) 58)) (-2216 (((-621 (-549)) (-621 |#1|)) 33)))
-(((-478 |#1|) (-10 -7 (-15 -3727 (|#1| (-621 |#1|))) (-15 -1916 (|#1| (-621 |#1|))) (-15 -4086 ((-621 |#1|) (-621 |#1|))) (-15 -1894 ((-621 |#1|) (-621 |#1|))) (-15 -2216 ((-621 (-549)) (-621 |#1|))) (-15 -3004 ((-549) (-621 (-549))))) (-1202 (-549))) (T -478))
-((-3004 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-549)) (-5 *1 (-478 *4)) (-4 *4 (-1202 *2)))) (-2216 (*1 *2 *3) (-12 (-5 *3 (-621 *4)) (-4 *4 (-1202 (-549))) (-5 *2 (-621 (-549))) (-5 *1 (-478 *4)))) (-1894 (*1 *2 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1202 (-549))) (-5 *1 (-478 *3)))) (-4086 (*1 *2 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1202 (-549))) (-5 *1 (-478 *3)))) (-1916 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-5 *1 (-478 *2)) (-4 *2 (-1202 (-549))))) (-3727 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-5 *1 (-478 *2)) (-4 *2 (-1202 (-549))))))
-(-10 -7 (-15 -3727 (|#1| (-621 |#1|))) (-15 -1916 (|#1| (-621 |#1|))) (-15 -4086 ((-621 |#1|) (-621 |#1|))) (-15 -1894 ((-621 |#1|) (-621 |#1|))) (-15 -2216 ((-621 (-549)) (-621 |#1|))) (-15 -3004 ((-549) (-621 (-549)))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3329 (((-549) $) NIL (|has| (-549) (-300)))) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-549) (-880)))) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| (-549) (-880)))) (-3866 (((-112) $ $) NIL)) (-1872 (((-549) $) NIL (|has| (-549) (-796)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL) (((-3 (-1143) "failed") $) NIL (|has| (-549) (-1009 (-1143)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-549) (-1009 (-549)))) (((-3 (-549) "failed") $) NIL (|has| (-549) (-1009 (-549))))) (-2659 (((-549) $) NIL) (((-1143) $) NIL (|has| (-549) (-1009 (-1143)))) (((-400 (-549)) $) NIL (|has| (-549) (-1009 (-549)))) (((-549) $) NIL (|has| (-549) (-1009 (-549))))) (-2095 (($ $ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| (-549) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| (-549) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL) (((-665 (-549)) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) NIL (|has| (-549) (-534)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-2772 (((-112) $) NIL (|has| (-549) (-796)))) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| (-549) (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| (-549) (-857 (-372))))) (-2675 (((-112) $) NIL)) (-1726 (($ $) NIL)) (-1394 (((-549) $) NIL)) (-1681 (((-3 $ "failed") $) NIL (|has| (-549) (-1118)))) (-2374 (((-112) $) NIL (|has| (-549) (-796)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2863 (($ $ $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| (-549) (-823)))) (-2797 (($ (-1 (-549) (-549)) $) NIL)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL (|has| (-549) (-1118)) CONST)) (-4236 (($ (-400 (-549))) 9)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2873 (($ $) NIL (|has| (-549) (-300))) (((-400 (-549)) $) NIL)) (-3967 (((-549) $) NIL (|has| (-549) (-534)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-549) (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-549) (-880)))) (-2121 (((-411 $) $) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2686 (($ $ (-621 (-549)) (-621 (-549))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-549) (-549)) NIL (|has| (-549) (-302 (-549)))) (($ $ (-287 (-549))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-621 (-287 (-549)))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-621 (-1143)) (-621 (-549))) NIL (|has| (-549) (-505 (-1143) (-549)))) (($ $ (-1143) (-549)) NIL (|has| (-549) (-505 (-1143) (-549))))) (-3684 (((-747) $) NIL)) (-3341 (($ $ (-549)) NIL (|has| (-549) (-279 (-549) (-549))))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3456 (($ $) NIL (|has| (-549) (-227))) (($ $ (-747)) NIL (|has| (-549) (-227))) (($ $ (-1143)) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-1 (-549) (-549)) (-747)) NIL) (($ $ (-1 (-549) (-549))) NIL)) (-3939 (($ $) NIL)) (-1403 (((-549) $) NIL)) (-2845 (((-863 (-549)) $) NIL (|has| (-549) (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| (-549) (-594 (-863 (-372))))) (((-525) $) NIL (|has| (-549) (-594 (-525)))) (((-372) $) NIL (|has| (-549) (-993))) (((-219) $) NIL (|has| (-549) (-993)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-549) (-880))))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) 8) (($ (-549)) NIL) (($ (-1143)) NIL (|has| (-549) (-1009 (-1143)))) (((-400 (-549)) $) NIL) (((-975 16) $) 10)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-549) (-880))) (|has| (-549) (-143))))) (-2082 (((-747)) NIL)) (-2546 (((-549) $) NIL (|has| (-549) (-534)))) (-1498 (((-112) $ $) NIL)) (-3212 (($ $) NIL (|has| (-549) (-796)))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $) NIL (|has| (-549) (-227))) (($ $ (-747)) NIL (|has| (-549) (-227))) (($ $ (-1143)) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-1 (-549) (-549)) (-747)) NIL) (($ $ (-1 (-549) (-549))) NIL)) (-2448 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2425 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2412 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2513 (($ $ $) NIL) (($ (-549) (-549)) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ (-549) $) NIL) (($ $ (-549)) NIL)))
-(((-479) (-13 (-963 (-549)) (-10 -8 (-15 -3846 ((-400 (-549)) $)) (-15 -3846 ((-975 16) $)) (-15 -2873 ((-400 (-549)) $)) (-15 -4236 ($ (-400 (-549))))))) (T -479))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-479)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-975 16)) (-5 *1 (-479)))) (-2873 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-479)))) (-4236 (*1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-479)))))
-(-13 (-963 (-549)) (-10 -8 (-15 -3846 ((-400 (-549)) $)) (-15 -3846 ((-975 16) $)) (-15 -2873 ((-400 (-549)) $)) (-15 -4236 ($ (-400 (-549))))))
-((-1562 (((-621 |#2|) $) 23)) (-2090 (((-112) |#2| $) 28)) (-1780 (((-112) (-1 (-112) |#2|) $) 21)) (-2686 (($ $ (-621 (-287 |#2|))) 13) (($ $ (-287 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-621 |#2|) (-621 |#2|)) NIL)) (-4000 (((-747) (-1 (-112) |#2|) $) 22) (((-747) |#2| $) 26)) (-3846 (((-834) $) 37)) (-3527 (((-112) (-1 (-112) |#2|) $) 20)) (-2389 (((-112) $ $) 31)) (-3775 (((-747) $) 17)))
-(((-480 |#1| |#2|) (-10 -8 (-15 -3846 ((-834) |#1|)) (-15 -2389 ((-112) |#1| |#1|)) (-15 -2686 (|#1| |#1| (-621 |#2|) (-621 |#2|))) (-15 -2686 (|#1| |#1| |#2| |#2|)) (-15 -2686 (|#1| |#1| (-287 |#2|))) (-15 -2686 (|#1| |#1| (-621 (-287 |#2|)))) (-15 -2090 ((-112) |#2| |#1|)) (-15 -4000 ((-747) |#2| |#1|)) (-15 -1562 ((-621 |#2|) |#1|)) (-15 -4000 ((-747) (-1 (-112) |#2|) |#1|)) (-15 -1780 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3527 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3775 ((-747) |#1|))) (-481 |#2|) (-1180)) (T -480))
-NIL
-(-10 -8 (-15 -3846 ((-834) |#1|)) (-15 -2389 ((-112) |#1| |#1|)) (-15 -2686 (|#1| |#1| (-621 |#2|) (-621 |#2|))) (-15 -2686 (|#1| |#1| |#2| |#2|)) (-15 -2686 (|#1| |#1| (-287 |#2|))) (-15 -2686 (|#1| |#1| (-621 (-287 |#2|)))) (-15 -2090 ((-112) |#2| |#1|)) (-15 -4000 ((-747) |#2| |#1|)) (-15 -1562 ((-621 |#2|) |#1|)) (-15 -4000 ((-747) (-1 (-112) |#2|) |#1|)) (-15 -1780 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3527 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3775 ((-747) |#1|)))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-1584 (((-112) $ (-747)) 8)) (-1682 (($) 7 T CONST)) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) 9)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-481 |#1|) (-138) (-1180)) (T -481))
-((-2797 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-481 *3)) (-4 *3 (-1180)))) (-1868 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4338)) (-4 *1 (-481 *3)) (-4 *3 (-1180)))) (-3527 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4337)) (-4 *1 (-481 *4)) (-4 *4 (-1180)) (-5 *2 (-112)))) (-1780 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4337)) (-4 *1 (-481 *4)) (-4 *4 (-1180)) (-5 *2 (-112)))) (-4000 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4337)) (-4 *1 (-481 *4)) (-4 *4 (-1180)) (-5 *2 (-747)))) (-2989 (*1 *2 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-481 *3)) (-4 *3 (-1180)) (-5 *2 (-621 *3)))) (-1562 (*1 *2 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-481 *3)) (-4 *3 (-1180)) (-5 *2 (-621 *3)))) (-4000 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-481 *3)) (-4 *3 (-1180)) (-4 *3 (-1067)) (-5 *2 (-747)))) (-2090 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-481 *3)) (-4 *3 (-1180)) (-4 *3 (-1067)) (-5 *2 (-112)))))
-(-13 (-34) (-10 -8 (IF (|has| |t#1| (-593 (-834))) (-6 (-593 (-834))) |%noBranch|) (IF (|has| |t#1| (-1067)) (-6 (-1067)) |%noBranch|) (IF (|has| |t#1| (-1067)) (IF (|has| |t#1| (-302 |t#1|)) (-6 (-302 |t#1|)) |%noBranch|) |%noBranch|) (-15 -2797 ($ (-1 |t#1| |t#1|) $)) (IF (|has| $ (-6 -4338)) (-15 -1868 ($ (-1 |t#1| |t#1|) $)) |%noBranch|) (IF (|has| $ (-6 -4337)) (PROGN (-15 -3527 ((-112) (-1 (-112) |t#1|) $)) (-15 -1780 ((-112) (-1 (-112) |t#1|) $)) (-15 -4000 ((-747) (-1 (-112) |t#1|) $)) (-15 -2989 ((-621 |t#1|) $)) (-15 -1562 ((-621 |t#1|) $)) (IF (|has| |t#1| (-1067)) (PROGN (-15 -4000 ((-747) |t#1| $)) (-15 -2090 ((-112) |t#1| $))) |%noBranch|)) |%noBranch|)))
-(((-34) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-1067) |has| |#1| (-1067)) ((-1180) . T))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-1679 (($ (-1125)) 8)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 14) (((-1125) $) 11)) (-2389 (((-112) $ $) 10)))
-(((-482) (-13 (-1067) (-593 (-1125)) (-10 -8 (-15 -1679 ($ (-1125)))))) (T -482))
-((-1679 (*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-482)))))
-(-13 (-1067) (-593 (-1125)) (-10 -8 (-15 -1679 ($ (-1125)))))
-((-1664 (($ $) 15)) (-1640 (($ $) 24)) (-1685 (($ $) 12)) (-1698 (($ $) 10)) (-1675 (($ $) 17)) (-1651 (($ $) 22)))
-(((-483 |#1|) (-10 -8 (-15 -1651 (|#1| |#1|)) (-15 -1675 (|#1| |#1|)) (-15 -1698 (|#1| |#1|)) (-15 -1685 (|#1| |#1|)) (-15 -1640 (|#1| |#1|)) (-15 -1664 (|#1| |#1|))) (-484)) (T -483))
-NIL
-(-10 -8 (-15 -1651 (|#1| |#1|)) (-15 -1675 (|#1| |#1|)) (-15 -1698 (|#1| |#1|)) (-15 -1685 (|#1| |#1|)) (-15 -1640 (|#1| |#1|)) (-15 -1664 (|#1| |#1|)))
-((-1664 (($ $) 11)) (-1640 (($ $) 10)) (-1685 (($ $) 9)) (-1698 (($ $) 8)) (-1675 (($ $) 7)) (-1651 (($ $) 6)))
+((-4200 (((-549) (-621 (-549))) 30)) (-2610 ((|#1| (-621 |#1|)) 56)) (-2246 (((-621 |#1|) (-621 |#1|)) 57)) (-1739 (((-621 |#1|) (-621 |#1|)) 59)) (-3726 ((|#1| (-621 |#1|)) 58)) (-1700 (((-621 (-549)) (-621 |#1|)) 33)))
+(((-478 |#1|) (-10 -7 (-15 -3726 (|#1| (-621 |#1|))) (-15 -2610 (|#1| (-621 |#1|))) (-15 -1739 ((-621 |#1|) (-621 |#1|))) (-15 -2246 ((-621 |#1|) (-621 |#1|))) (-15 -1700 ((-621 (-549)) (-621 |#1|))) (-15 -4200 ((-549) (-621 (-549))))) (-1201 (-549))) (T -478))
+((-4200 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-549)) (-5 *1 (-478 *4)) (-4 *4 (-1201 *2)))) (-1700 (*1 *2 *3) (-12 (-5 *3 (-621 *4)) (-4 *4 (-1201 (-549))) (-5 *2 (-621 (-549))) (-5 *1 (-478 *4)))) (-2246 (*1 *2 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1201 (-549))) (-5 *1 (-478 *3)))) (-1739 (*1 *2 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1201 (-549))) (-5 *1 (-478 *3)))) (-2610 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-5 *1 (-478 *2)) (-4 *2 (-1201 (-549))))) (-3726 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-5 *1 (-478 *2)) (-4 *2 (-1201 (-549))))))
+(-10 -7 (-15 -3726 (|#1| (-621 |#1|))) (-15 -2610 (|#1| (-621 |#1|))) (-15 -1739 ((-621 |#1|) (-621 |#1|))) (-15 -2246 ((-621 |#1|) (-621 |#1|))) (-15 -1700 ((-621 (-549)) (-621 |#1|))) (-15 -4200 ((-549) (-621 (-549)))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3833 (((-549) $) NIL (|has| (-549) (-300)))) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-549) (-880)))) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| (-549) (-880)))) (-2680 (((-112) $ $) NIL)) (-1741 (((-549) $) NIL (|has| (-549) (-796)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL) (((-3 (-1142) "failed") $) NIL (|has| (-549) (-1009 (-1142)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-549) (-1009 (-549)))) (((-3 (-549) "failed") $) NIL (|has| (-549) (-1009 (-549))))) (-2657 (((-549) $) NIL) (((-1142) $) NIL (|has| (-549) (-1009 (-1142)))) (((-400 (-549)) $) NIL (|has| (-549) (-1009 (-549)))) (((-549) $) NIL (|has| (-549) (-1009 (-549))))) (-2091 (($ $ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| (-549) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| (-549) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL) (((-665 (-549)) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) NIL (|has| (-549) (-534)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-2357 (((-112) $) NIL (|has| (-549) (-796)))) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| (-549) (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| (-549) (-857 (-372))))) (-2297 (((-112) $) NIL)) (-2096 (($ $) NIL)) (-1392 (((-549) $) NIL)) (-2964 (((-3 $ "failed") $) NIL (|has| (-549) (-1117)))) (-1992 (((-112) $) NIL (|has| (-549) (-796)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2861 (($ $ $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| (-549) (-823)))) (-2795 (($ (-1 (-549) (-549)) $) NIL)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL (|has| (-549) (-1117)) CONST)) (-2542 (($ (-400 (-549))) 9)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1512 (($ $) NIL (|has| (-549) (-300))) (((-400 (-549)) $) NIL)) (-1349 (((-549) $) NIL (|has| (-549) (-534)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-549) (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-549) (-880)))) (-2119 (((-411 $) $) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2684 (($ $ (-621 (-549)) (-621 (-549))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-549) (-549)) NIL (|has| (-549) (-302 (-549)))) (($ $ (-287 (-549))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-621 (-287 (-549)))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-621 (-1142)) (-621 (-549))) NIL (|has| (-549) (-505 (-1142) (-549)))) (($ $ (-1142) (-549)) NIL (|has| (-549) (-505 (-1142) (-549))))) (-1335 (((-747) $) NIL)) (-3339 (($ $ (-549)) NIL (|has| (-549) (-279 (-549) (-549))))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3455 (($ $) NIL (|has| (-549) (-227))) (($ $ (-747)) NIL (|has| (-549) (-227))) (($ $ (-1142)) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-1 (-549) (-549)) (-747)) NIL) (($ $ (-1 (-549) (-549))) NIL)) (-4095 (($ $) NIL)) (-1404 (((-549) $) NIL)) (-2843 (((-863 (-549)) $) NIL (|has| (-549) (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| (-549) (-594 (-863 (-372))))) (((-525) $) NIL (|has| (-549) (-594 (-525)))) (((-372) $) NIL (|has| (-549) (-993))) (((-219) $) NIL (|has| (-549) (-993)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-549) (-880))))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) 8) (($ (-549)) NIL) (($ (-1142)) NIL (|has| (-549) (-1009 (-1142)))) (((-400 (-549)) $) NIL) (((-975 16) $) 10)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-549) (-880))) (|has| (-549) (-143))))) (-2371 (((-747)) NIL)) (-3497 (((-549) $) NIL (|has| (-549) (-534)))) (-2441 (((-112) $ $) NIL)) (-2199 (($ $) NIL (|has| (-549) (-796)))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $) NIL (|has| (-549) (-227))) (($ $ (-747)) NIL (|has| (-549) (-227))) (($ $ (-1142)) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-1 (-549) (-549)) (-747)) NIL) (($ $ (-1 (-549) (-549))) NIL)) (-2447 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2423 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2409 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2511 (($ $ $) NIL) (($ (-549) (-549)) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ (-549) $) NIL) (($ $ (-549)) NIL)))
+(((-479) (-13 (-963 (-549)) (-10 -8 (-15 -3845 ((-400 (-549)) $)) (-15 -3845 ((-975 16) $)) (-15 -1512 ((-400 (-549)) $)) (-15 -2542 ($ (-400 (-549))))))) (T -479))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-479)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-975 16)) (-5 *1 (-479)))) (-1512 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-479)))) (-2542 (*1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-479)))))
+(-13 (-963 (-549)) (-10 -8 (-15 -3845 ((-400 (-549)) $)) (-15 -3845 ((-975 16) $)) (-15 -1512 ((-400 (-549)) $)) (-15 -2542 ($ (-400 (-549))))))
+((-3698 (((-621 |#2|) $) 23)) (-1593 (((-112) |#2| $) 28)) (-3360 (((-112) (-1 (-112) |#2|) $) 21)) (-2684 (($ $ (-621 (-287 |#2|))) 13) (($ $ (-287 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-621 |#2|) (-621 |#2|)) NIL)) (-3997 (((-747) (-1 (-112) |#2|) $) 22) (((-747) |#2| $) 26)) (-3845 (((-834) $) 37)) (-3025 (((-112) (-1 (-112) |#2|) $) 20)) (-2387 (((-112) $ $) 31)) (-3774 (((-747) $) 17)))
+(((-480 |#1| |#2|) (-10 -8 (-15 -3845 ((-834) |#1|)) (-15 -2387 ((-112) |#1| |#1|)) (-15 -2684 (|#1| |#1| (-621 |#2|) (-621 |#2|))) (-15 -2684 (|#1| |#1| |#2| |#2|)) (-15 -2684 (|#1| |#1| (-287 |#2|))) (-15 -2684 (|#1| |#1| (-621 (-287 |#2|)))) (-15 -1593 ((-112) |#2| |#1|)) (-15 -3997 ((-747) |#2| |#1|)) (-15 -3698 ((-621 |#2|) |#1|)) (-15 -3997 ((-747) (-1 (-112) |#2|) |#1|)) (-15 -3360 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3025 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3774 ((-747) |#1|))) (-481 |#2|) (-1179)) (T -480))
+NIL
+(-10 -8 (-15 -3845 ((-834) |#1|)) (-15 -2387 ((-112) |#1| |#1|)) (-15 -2684 (|#1| |#1| (-621 |#2|) (-621 |#2|))) (-15 -2684 (|#1| |#1| |#2| |#2|)) (-15 -2684 (|#1| |#1| (-287 |#2|))) (-15 -2684 (|#1| |#1| (-621 (-287 |#2|)))) (-15 -1593 ((-112) |#2| |#1|)) (-15 -3997 ((-747) |#2| |#1|)) (-15 -3698 ((-621 |#2|) |#1|)) (-15 -3997 ((-747) (-1 (-112) |#2|) |#1|)) (-15 -3360 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3025 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3774 ((-747) |#1|)))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-2850 (((-112) $ (-747)) 8)) (-3034 (($) 7 T CONST)) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) 9)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-481 |#1|) (-138) (-1179)) (T -481))
+((-2795 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-481 *3)) (-4 *3 (-1179)))) (-1864 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4337)) (-4 *1 (-481 *3)) (-4 *3 (-1179)))) (-3025 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4336)) (-4 *1 (-481 *4)) (-4 *4 (-1179)) (-5 *2 (-112)))) (-3360 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4336)) (-4 *1 (-481 *4)) (-4 *4 (-1179)) (-5 *2 (-112)))) (-3997 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4336)) (-4 *1 (-481 *4)) (-4 *4 (-1179)) (-5 *2 (-747)))) (-2987 (*1 *2 *1) (-12 (|has| *1 (-6 -4336)) (-4 *1 (-481 *3)) (-4 *3 (-1179)) (-5 *2 (-621 *3)))) (-3698 (*1 *2 *1) (-12 (|has| *1 (-6 -4336)) (-4 *1 (-481 *3)) (-4 *3 (-1179)) (-5 *2 (-621 *3)))) (-3997 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4336)) (-4 *1 (-481 *3)) (-4 *3 (-1179)) (-4 *3 (-1066)) (-5 *2 (-747)))) (-1593 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4336)) (-4 *1 (-481 *3)) (-4 *3 (-1179)) (-4 *3 (-1066)) (-5 *2 (-112)))))
+(-13 (-34) (-10 -8 (IF (|has| |t#1| (-593 (-834))) (-6 (-593 (-834))) |%noBranch|) (IF (|has| |t#1| (-1066)) (-6 (-1066)) |%noBranch|) (IF (|has| |t#1| (-1066)) (IF (|has| |t#1| (-302 |t#1|)) (-6 (-302 |t#1|)) |%noBranch|) |%noBranch|) (-15 -2795 ($ (-1 |t#1| |t#1|) $)) (IF (|has| $ (-6 -4337)) (-15 -1864 ($ (-1 |t#1| |t#1|) $)) |%noBranch|) (IF (|has| $ (-6 -4336)) (PROGN (-15 -3025 ((-112) (-1 (-112) |t#1|) $)) (-15 -3360 ((-112) (-1 (-112) |t#1|) $)) (-15 -3997 ((-747) (-1 (-112) |t#1|) $)) (-15 -2987 ((-621 |t#1|) $)) (-15 -3698 ((-621 |t#1|) $)) (IF (|has| |t#1| (-1066)) (PROGN (-15 -3997 ((-747) |t#1| $)) (-15 -1593 ((-112) |t#1| $))) |%noBranch|)) |%noBranch|)))
+(((-34) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-1066) |has| |#1| (-1066)) ((-1179) . T))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-2799 (($ (-1124)) 8)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 14) (((-1124) $) 11)) (-2387 (((-112) $ $) 10)))
+(((-482) (-13 (-1066) (-593 (-1124)) (-10 -8 (-15 -2799 ($ (-1124)))))) (T -482))
+((-2799 (*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-482)))))
+(-13 (-1066) (-593 (-1124)) (-10 -8 (-15 -2799 ($ (-1124)))))
+((-1662 (($ $) 15)) (-1638 (($ $) 24)) (-1684 (($ $) 12)) (-1696 (($ $) 10)) (-1673 (($ $) 17)) (-1648 (($ $) 22)))
+(((-483 |#1|) (-10 -8 (-15 -1648 (|#1| |#1|)) (-15 -1673 (|#1| |#1|)) (-15 -1696 (|#1| |#1|)) (-15 -1684 (|#1| |#1|)) (-15 -1638 (|#1| |#1|)) (-15 -1662 (|#1| |#1|))) (-484)) (T -483))
+NIL
+(-10 -8 (-15 -1648 (|#1| |#1|)) (-15 -1673 (|#1| |#1|)) (-15 -1696 (|#1| |#1|)) (-15 -1684 (|#1| |#1|)) (-15 -1638 (|#1| |#1|)) (-15 -1662 (|#1| |#1|)))
+((-1662 (($ $) 11)) (-1638 (($ $) 10)) (-1684 (($ $) 9)) (-1696 (($ $) 8)) (-1673 (($ $) 7)) (-1648 (($ $) 6)))
(((-484) (-138)) (T -484))
-((-1664 (*1 *1 *1) (-4 *1 (-484))) (-1640 (*1 *1 *1) (-4 *1 (-484))) (-1685 (*1 *1 *1) (-4 *1 (-484))) (-1698 (*1 *1 *1) (-4 *1 (-484))) (-1675 (*1 *1 *1) (-4 *1 (-484))) (-1651 (*1 *1 *1) (-4 *1 (-484))))
-(-13 (-10 -8 (-15 -1651 ($ $)) (-15 -1675 ($ $)) (-15 -1698 ($ $)) (-15 -1685 ($ $)) (-15 -1640 ($ $)) (-15 -1664 ($ $))))
-((-2121 (((-411 |#4|) |#4| (-1 (-411 |#2|) |#2|)) 42)))
-(((-485 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2121 ((-411 |#4|) |#4| (-1 (-411 |#2|) |#2|)))) (-356) (-1202 |#1|) (-13 (-356) (-145) (-701 |#1| |#2|)) (-1202 |#3|)) (T -485))
-((-2121 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-411 *6) *6)) (-4 *6 (-1202 *5)) (-4 *5 (-356)) (-4 *7 (-13 (-356) (-145) (-701 *5 *6))) (-5 *2 (-411 *3)) (-5 *1 (-485 *5 *6 *7 *3)) (-4 *3 (-1202 *7)))))
-(-10 -7 (-15 -2121 ((-411 |#4|) |#4| (-1 (-411 |#2|) |#2|))))
-((-3834 (((-112) $ $) NIL)) (-1329 (((-621 $) (-1139 $) (-1143)) NIL) (((-621 $) (-1139 $)) NIL) (((-621 $) (-923 $)) NIL)) (-3289 (($ (-1139 $) (-1143)) NIL) (($ (-1139 $)) NIL) (($ (-923 $)) NIL)) (-1763 (((-112) $) 39)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2537 (((-112) $ $) 64)) (-1981 (((-621 (-592 $)) $) 48)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3015 (($ $ (-287 $)) NIL) (($ $ (-621 (-287 $))) NIL) (($ $ (-621 (-592 $)) (-621 $)) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-2134 (($ $) NIL)) (-3866 (((-112) $ $) NIL)) (-1682 (($) NIL T CONST)) (-1815 (((-621 $) (-1139 $) (-1143)) NIL) (((-621 $) (-1139 $)) NIL) (((-621 $) (-923 $)) NIL)) (-1947 (($ (-1139 $) (-1143)) NIL) (($ (-1139 $)) NIL) (($ (-923 $)) NIL)) (-2714 (((-3 (-592 $) "failed") $) NIL) (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL)) (-2659 (((-592 $) $) NIL) (((-549) $) NIL) (((-400 (-549)) $) 50)) (-2095 (($ $ $) NIL)) (-3879 (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL) (((-665 (-549)) (-665 $)) NIL) (((-2 (|:| -3521 (-665 (-400 (-549)))) (|:| |vec| (-1226 (-400 (-549))))) (-665 $) (-1226 $)) NIL) (((-665 (-400 (-549))) (-665 $)) NIL)) (-2557 (($ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-3225 (($ $) NIL) (($ (-621 $)) NIL)) (-2162 (((-621 (-114)) $) NIL)) (-2834 (((-114) (-114)) NIL)) (-2675 (((-112) $) 42)) (-3559 (((-112) $) NIL (|has| $ (-1009 (-549))))) (-1394 (((-1092 (-549) (-592 $)) $) 37)) (-4187 (($ $ (-549)) NIL)) (-3630 (((-1139 $) (-1139 $) (-592 $)) 78) (((-1139 $) (-1139 $) (-621 (-592 $))) 55) (($ $ (-592 $)) 67) (($ $ (-621 (-592 $))) 68)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1549 (((-1139 $) (-592 $)) 65 (|has| $ (-1018)))) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-2797 (($ (-1 $ $) (-592 $)) NIL)) (-2634 (((-3 (-592 $) "failed") $) NIL)) (-3697 (($ (-621 $)) NIL) (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-2071 (((-621 (-592 $)) $) NIL)) (-1476 (($ (-114) $) NIL) (($ (-114) (-621 $)) NIL)) (-3421 (((-112) $ (-114)) NIL) (((-112) $ (-1143)) NIL)) (-1992 (($ $) NIL)) (-4036 (((-747) $) NIL)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ (-621 $)) NIL) (($ $ $) NIL)) (-2979 (((-112) $ $) NIL) (((-112) $ (-1143)) NIL)) (-2121 (((-411 $) $) NIL)) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3450 (((-112) $) NIL (|has| $ (-1009 (-549))))) (-2686 (($ $ (-592 $) $) NIL) (($ $ (-621 (-592 $)) (-621 $)) NIL) (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-621 (-1143)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-1143)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-1143) (-1 $ (-621 $))) NIL) (($ $ (-1143) (-1 $ $)) NIL) (($ $ (-621 (-114)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-114) (-1 $ (-621 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-3684 (((-747) $) NIL)) (-3341 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-621 $)) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3433 (($ $) NIL) (($ $ $) NIL)) (-3456 (($ $ (-747)) NIL) (($ $) 36)) (-1403 (((-1092 (-549) (-592 $)) $) 20)) (-2815 (($ $) NIL (|has| $ (-1018)))) (-2845 (((-372) $) 92) (((-219) $) 100) (((-167 (-372)) $) 108)) (-3846 (((-834) $) NIL) (($ (-592 $)) NIL) (($ (-400 (-549))) NIL) (($ $) NIL) (($ (-549)) NIL) (($ (-1092 (-549) (-592 $))) 21)) (-2082 (((-747)) NIL)) (-4137 (($ $) NIL) (($ (-621 $)) NIL)) (-4285 (((-112) (-114)) 84)) (-1498 (((-112) $ $) NIL)) (-3276 (($) 10 T CONST)) (-3287 (($) 22 T CONST)) (-1702 (($ $ (-747)) NIL) (($ $) NIL)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 24)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) NIL)) (-2513 (($ $ $) 44)) (-2500 (($ $ $) NIL) (($ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-400 (-549))) NIL) (($ $ (-549)) 46) (($ $ (-747)) NIL) (($ $ (-892)) NIL)) (* (($ (-400 (-549)) $) NIL) (($ $ (-400 (-549))) NIL) (($ $ $) 27) (($ (-549) $) NIL) (($ (-747) $) NIL) (($ (-892) $) NIL)))
-(((-486) (-13 (-295) (-27) (-1009 (-549)) (-1009 (-400 (-549))) (-617 (-549)) (-993) (-617 (-400 (-549))) (-145) (-594 (-167 (-372))) (-227) (-10 -8 (-15 -3846 ($ (-1092 (-549) (-592 $)))) (-15 -1394 ((-1092 (-549) (-592 $)) $)) (-15 -1403 ((-1092 (-549) (-592 $)) $)) (-15 -2557 ($ $)) (-15 -2537 ((-112) $ $)) (-15 -3630 ((-1139 $) (-1139 $) (-592 $))) (-15 -3630 ((-1139 $) (-1139 $) (-621 (-592 $)))) (-15 -3630 ($ $ (-592 $))) (-15 -3630 ($ $ (-621 (-592 $))))))) (T -486))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1092 (-549) (-592 (-486)))) (-5 *1 (-486)))) (-1394 (*1 *2 *1) (-12 (-5 *2 (-1092 (-549) (-592 (-486)))) (-5 *1 (-486)))) (-1403 (*1 *2 *1) (-12 (-5 *2 (-1092 (-549) (-592 (-486)))) (-5 *1 (-486)))) (-2557 (*1 *1 *1) (-5 *1 (-486))) (-2537 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-486)))) (-3630 (*1 *2 *2 *3) (-12 (-5 *2 (-1139 (-486))) (-5 *3 (-592 (-486))) (-5 *1 (-486)))) (-3630 (*1 *2 *2 *3) (-12 (-5 *2 (-1139 (-486))) (-5 *3 (-621 (-592 (-486)))) (-5 *1 (-486)))) (-3630 (*1 *1 *1 *2) (-12 (-5 *2 (-592 (-486))) (-5 *1 (-486)))) (-3630 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-592 (-486)))) (-5 *1 (-486)))))
-(-13 (-295) (-27) (-1009 (-549)) (-1009 (-400 (-549))) (-617 (-549)) (-993) (-617 (-400 (-549))) (-145) (-594 (-167 (-372))) (-227) (-10 -8 (-15 -3846 ($ (-1092 (-549) (-592 $)))) (-15 -1394 ((-1092 (-549) (-592 $)) $)) (-15 -1403 ((-1092 (-549) (-592 $)) $)) (-15 -2557 ($ $)) (-15 -2537 ((-112) $ $)) (-15 -3630 ((-1139 $) (-1139 $) (-592 $))) (-15 -3630 ((-1139 $) (-1139 $) (-621 (-592 $)))) (-15 -3630 ($ $ (-592 $))) (-15 -3630 ($ $ (-621 (-592 $))))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-4142 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-823)))) (-4311 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4338))) (($ $) NIL (-12 (|has| $ (-6 -4338)) (|has| |#1| (-823))))) (-3193 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-823)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 ((|#1| $ (-549) |#1|) 25 (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) NIL (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-1585 (($ $) NIL (|has| $ (-6 -4338)))) (-3064 (($ $) NIL)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-1879 ((|#1| $ (-549) |#1|) 22 (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) 21)) (-2883 (((-549) (-1 (-112) |#1|) $) NIL) (((-549) |#1| $) NIL (|has| |#1| (-1067))) (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1067)))) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3743 (($ (-747) |#1|) 14)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) 12 (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3890 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-823)))) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1569 (((-549) $) 23 (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) 16 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 17) (($ (-1 |#1| |#1| |#1|) $ $) 19)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-2616 (($ |#1| $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-3646 ((|#1| $) NIL (|has| (-549) (-823)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1642 (($ $ |#1|) 10 (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) 13)) (-3341 ((|#1| $ (-549) |#1|) NIL) ((|#1| $ (-549)) 24) (($ $ (-1193 (-549))) NIL)) (-2167 (($ $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2730 (($ $ $ (-549)) NIL (|has| $ (-6 -4338)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) NIL)) (-1952 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-3775 (((-747) $) 9 (|has| $ (-6 -4337)))))
-(((-487 |#1| |#2|) (-19 |#1|) (-1180) (-549)) (T -487))
+((-1662 (*1 *1 *1) (-4 *1 (-484))) (-1638 (*1 *1 *1) (-4 *1 (-484))) (-1684 (*1 *1 *1) (-4 *1 (-484))) (-1696 (*1 *1 *1) (-4 *1 (-484))) (-1673 (*1 *1 *1) (-4 *1 (-484))) (-1648 (*1 *1 *1) (-4 *1 (-484))))
+(-13 (-10 -8 (-15 -1648 ($ $)) (-15 -1673 ($ $)) (-15 -1696 ($ $)) (-15 -1684 ($ $)) (-15 -1638 ($ $)) (-15 -1662 ($ $))))
+((-2119 (((-411 |#4|) |#4| (-1 (-411 |#2|) |#2|)) 42)))
+(((-485 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2119 ((-411 |#4|) |#4| (-1 (-411 |#2|) |#2|)))) (-356) (-1201 |#1|) (-13 (-356) (-145) (-701 |#1| |#2|)) (-1201 |#3|)) (T -485))
+((-2119 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-411 *6) *6)) (-4 *6 (-1201 *5)) (-4 *5 (-356)) (-4 *7 (-13 (-356) (-145) (-701 *5 *6))) (-5 *2 (-411 *3)) (-5 *1 (-485 *5 *6 *7 *3)) (-4 *3 (-1201 *7)))))
+(-10 -7 (-15 -2119 ((-411 |#4|) |#4| (-1 (-411 |#2|) |#2|))))
+((-3832 (((-112) $ $) NIL)) (-3804 (((-621 $) (-1138 $) (-1142)) NIL) (((-621 $) (-1138 $)) NIL) (((-621 $) (-923 $)) NIL)) (-1566 (($ (-1138 $) (-1142)) NIL) (($ (-1138 $)) NIL) (($ (-923 $)) NIL)) (-3210 (((-112) $) 39)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-1839 (((-112) $ $) 64)) (-1979 (((-621 (-592 $)) $) 48)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3013 (($ $ (-287 $)) NIL) (($ $ (-621 (-287 $))) NIL) (($ $ (-621 (-592 $)) (-621 $)) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2132 (($ $) NIL)) (-2680 (((-112) $ $) NIL)) (-3034 (($) NIL T CONST)) (-2798 (((-621 $) (-1138 $) (-1142)) NIL) (((-621 $) (-1138 $)) NIL) (((-621 $) (-923 $)) NIL)) (-2406 (($ (-1138 $) (-1142)) NIL) (($ (-1138 $)) NIL) (($ (-923 $)) NIL)) (-2712 (((-3 (-592 $) "failed") $) NIL) (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL)) (-2657 (((-592 $) $) NIL) (((-549) $) NIL) (((-400 (-549)) $) 50)) (-2091 (($ $ $) NIL)) (-3446 (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL) (((-665 (-549)) (-665 $)) NIL) (((-2 (|:| -3697 (-665 (-400 (-549)))) (|:| |vec| (-1225 (-400 (-549))))) (-665 $) (-1225 $)) NIL) (((-665 (-400 (-549))) (-665 $)) NIL)) (-2556 (($ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-4158 (($ $) NIL) (($ (-621 $)) NIL)) (-3724 (((-621 (-114)) $) NIL)) (-3500 (((-114) (-114)) NIL)) (-2297 (((-112) $) 42)) (-2803 (((-112) $) NIL (|has| $ (-1009 (-549))))) (-1392 (((-1091 (-549) (-592 $)) $) 37)) (-3621 (($ $ (-549)) NIL)) (-2469 (((-1138 $) (-1138 $) (-592 $)) 78) (((-1138 $) (-1138 $) (-621 (-592 $))) 55) (($ $ (-592 $)) 67) (($ $ (-621 (-592 $))) 68)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1797 (((-1138 $) (-592 $)) 65 (|has| $ (-1018)))) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-2795 (($ (-1 $ $) (-592 $)) NIL)) (-2197 (((-3 (-592 $) "failed") $) NIL)) (-3696 (($ (-621 $)) NIL) (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-2059 (((-621 (-592 $)) $) NIL)) (-1475 (($ (-114) $) NIL) (($ (-114) (-621 $)) NIL)) (-3673 (((-112) $ (-114)) NIL) (((-112) $ (-1142)) NIL)) (-1990 (($ $) NIL)) (-4036 (((-747) $) NIL)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ (-621 $)) NIL) (($ $ $) NIL)) (-2934 (((-112) $ $) NIL) (((-112) $ (-1142)) NIL)) (-2119 (((-411 $) $) NIL)) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1980 (((-112) $) NIL (|has| $ (-1009 (-549))))) (-2684 (($ $ (-592 $) $) NIL) (($ $ (-621 (-592 $)) (-621 $)) NIL) (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-621 (-1142)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-1142)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-1142) (-1 $ (-621 $))) NIL) (($ $ (-1142) (-1 $ $)) NIL) (($ $ (-621 (-114)) (-621 (-1 $ $))) NIL) (($ $ (-621 (-114)) (-621 (-1 $ (-621 $)))) NIL) (($ $ (-114) (-1 $ (-621 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-1335 (((-747) $) NIL)) (-3339 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-621 $)) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3205 (($ $) NIL) (($ $ $) NIL)) (-3455 (($ $ (-747)) NIL) (($ $) 36)) (-1404 (((-1091 (-549) (-592 $)) $) 20)) (-1262 (($ $) NIL (|has| $ (-1018)))) (-2843 (((-372) $) 92) (((-219) $) 100) (((-167 (-372)) $) 108)) (-3845 (((-834) $) NIL) (($ (-592 $)) NIL) (($ (-400 (-549))) NIL) (($ $) NIL) (($ (-549)) NIL) (($ (-1091 (-549) (-592 $))) 21)) (-2371 (((-747)) NIL)) (-4136 (($ $) NIL) (($ (-621 $)) NIL)) (-2444 (((-112) (-114)) 84)) (-2441 (((-112) $ $) NIL)) (-3274 (($) 10 T CONST)) (-3286 (($) 22 T CONST)) (-1699 (($ $ (-747)) NIL) (($ $) NIL)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 24)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) NIL)) (-2511 (($ $ $) 44)) (-2498 (($ $ $) NIL) (($ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-400 (-549))) NIL) (($ $ (-549)) 46) (($ $ (-747)) NIL) (($ $ (-892)) NIL)) (* (($ (-400 (-549)) $) NIL) (($ $ (-400 (-549))) NIL) (($ $ $) 27) (($ (-549) $) NIL) (($ (-747) $) NIL) (($ (-892) $) NIL)))
+(((-486) (-13 (-295) (-27) (-1009 (-549)) (-1009 (-400 (-549))) (-617 (-549)) (-993) (-617 (-400 (-549))) (-145) (-594 (-167 (-372))) (-227) (-10 -8 (-15 -3845 ($ (-1091 (-549) (-592 $)))) (-15 -1392 ((-1091 (-549) (-592 $)) $)) (-15 -1404 ((-1091 (-549) (-592 $)) $)) (-15 -2556 ($ $)) (-15 -1839 ((-112) $ $)) (-15 -2469 ((-1138 $) (-1138 $) (-592 $))) (-15 -2469 ((-1138 $) (-1138 $) (-621 (-592 $)))) (-15 -2469 ($ $ (-592 $))) (-15 -2469 ($ $ (-621 (-592 $))))))) (T -486))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1091 (-549) (-592 (-486)))) (-5 *1 (-486)))) (-1392 (*1 *2 *1) (-12 (-5 *2 (-1091 (-549) (-592 (-486)))) (-5 *1 (-486)))) (-1404 (*1 *2 *1) (-12 (-5 *2 (-1091 (-549) (-592 (-486)))) (-5 *1 (-486)))) (-2556 (*1 *1 *1) (-5 *1 (-486))) (-1839 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-486)))) (-2469 (*1 *2 *2 *3) (-12 (-5 *2 (-1138 (-486))) (-5 *3 (-592 (-486))) (-5 *1 (-486)))) (-2469 (*1 *2 *2 *3) (-12 (-5 *2 (-1138 (-486))) (-5 *3 (-621 (-592 (-486)))) (-5 *1 (-486)))) (-2469 (*1 *1 *1 *2) (-12 (-5 *2 (-592 (-486))) (-5 *1 (-486)))) (-2469 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-592 (-486)))) (-5 *1 (-486)))))
+(-13 (-295) (-27) (-1009 (-549)) (-1009 (-400 (-549))) (-617 (-549)) (-993) (-617 (-400 (-549))) (-145) (-594 (-167 (-372))) (-227) (-10 -8 (-15 -3845 ($ (-1091 (-549) (-592 $)))) (-15 -1392 ((-1091 (-549) (-592 $)) $)) (-15 -1404 ((-1091 (-549) (-592 $)) $)) (-15 -2556 ($ $)) (-15 -1839 ((-112) $ $)) (-15 -2469 ((-1138 $) (-1138 $) (-592 $))) (-15 -2469 ((-1138 $) (-1138 $) (-621 (-592 $)))) (-15 -2469 ($ $ (-592 $))) (-15 -2469 ($ $ (-621 (-592 $))))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-2239 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-823)))) (-2015 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4337))) (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-823))))) (-3191 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-823)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 ((|#1| $ (-549) |#1|) 25 (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) NIL (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-2918 (($ $) NIL (|has| $ (-6 -4337)))) (-3062 (($ $) NIL)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4336)))) (-1875 ((|#1| $ (-549) |#1|) 22 (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) 21)) (-2881 (((-549) (-1 (-112) |#1|) $) NIL) (((-549) |#1| $) NIL (|has| |#1| (-1066))) (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1066)))) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-3743 (($ (-747) |#1|) 14)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) 12 (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3050 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-823)))) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3063 (((-549) $) 23 (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) 16 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 17) (($ (-1 |#1| |#1| |#1|) $ $) 19)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-2613 (($ |#1| $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3645 ((|#1| $) NIL (|has| (-549) (-823)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1943 (($ $ |#1|) 10 (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) 13)) (-3339 ((|#1| $ (-549) |#1|) NIL) ((|#1| $ (-549)) 24) (($ $ (-1192 (-549))) NIL)) (-2162 (($ $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2049 (($ $ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) NIL)) (-1950 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-3774 (((-747) $) 9 (|has| $ (-6 -4336)))))
+(((-487 |#1| |#2|) (-19 |#1|) (-1179) (-549)) (T -487))
NIL
(-19 |#1|)
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 ((|#1| $ (-549) (-549) |#1|) NIL)) (-3537 (($ $ (-549) (-487 |#1| |#3|)) NIL)) (-3815 (($ $ (-549) (-487 |#1| |#2|)) NIL)) (-1682 (($) NIL T CONST)) (-4060 (((-487 |#1| |#3|) $ (-549)) NIL)) (-1879 ((|#1| $ (-549) (-549) |#1|) NIL)) (-1809 ((|#1| $ (-549) (-549)) NIL)) (-2989 (((-621 |#1|) $) NIL)) (-2142 (((-747) $) NIL)) (-3743 (($ (-747) (-747) |#1|) NIL)) (-2155 (((-747) $) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-1761 (((-549) $) NIL)) (-2703 (((-549) $) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1661 (((-549) $) NIL)) (-1887 (((-549) $) NIL)) (-1868 (($ (-1 |#1| |#1|) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1642 (($ $ |#1|) NIL)) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#1| $ (-549) (-549)) NIL) ((|#1| $ (-549) (-549) |#1|) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) NIL)) (-2851 (((-487 |#1| |#2|) $ (-549)) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-488 |#1| |#2| |#3|) (-56 |#1| (-487 |#1| |#3|) (-487 |#1| |#2|)) (-1180) (-549) (-549)) (T -488))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 ((|#1| $ (-549) (-549) |#1|) NIL)) (-1389 (($ $ (-549) (-487 |#1| |#3|)) NIL)) (-1843 (($ $ (-549) (-487 |#1| |#2|)) NIL)) (-3034 (($) NIL T CONST)) (-3437 (((-487 |#1| |#3|) $ (-549)) NIL)) (-1875 ((|#1| $ (-549) (-549) |#1|) NIL)) (-1807 ((|#1| $ (-549) (-549)) NIL)) (-2987 (((-621 |#1|) $) NIL)) (-2140 (((-747) $) NIL)) (-3743 (($ (-747) (-747) |#1|) NIL)) (-2153 (((-747) $) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-3057 (((-549) $) NIL)) (-3861 (((-549) $) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1766 (((-549) $) NIL)) (-2813 (((-549) $) NIL)) (-1864 (($ (-1 |#1| |#1|) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-1943 (($ $ |#1|) NIL)) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#1| $ (-549) (-549)) NIL) ((|#1| $ (-549) (-549) |#1|) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) NIL)) (-1476 (((-487 |#1| |#2|) $ (-549)) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-488 |#1| |#2| |#3|) (-56 |#1| (-487 |#1| |#3|) (-487 |#1| |#2|)) (-1179) (-549) (-549)) (T -488))
NIL
(-56 |#1| (-487 |#1| |#3|) (-487 |#1| |#2|))
-((-2922 (((-621 (-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|)))) (-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) (-747) (-747)) 27)) (-3840 (((-621 (-1139 |#1|)) |#1| (-747) (-747) (-747)) 34)) (-2264 (((-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) (-621 |#3|) (-621 (-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|)))) (-747)) 85)))
-(((-489 |#1| |#2| |#3|) (-10 -7 (-15 -3840 ((-621 (-1139 |#1|)) |#1| (-747) (-747) (-747))) (-15 -2922 ((-621 (-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|)))) (-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) (-747) (-747))) (-15 -2264 ((-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) (-621 |#3|) (-621 (-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|)))) (-747)))) (-342) (-1202 |#1|) (-1202 |#2|)) (T -489))
-((-2264 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 (-2 (|:| -1949 (-665 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-665 *7))))) (-5 *5 (-747)) (-4 *8 (-1202 *7)) (-4 *7 (-1202 *6)) (-4 *6 (-342)) (-5 *2 (-2 (|:| -1949 (-665 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-665 *7)))) (-5 *1 (-489 *6 *7 *8)))) (-2922 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-747)) (-4 *5 (-342)) (-4 *6 (-1202 *5)) (-5 *2 (-621 (-2 (|:| -1949 (-665 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-665 *6))))) (-5 *1 (-489 *5 *6 *7)) (-5 *3 (-2 (|:| -1949 (-665 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-665 *6)))) (-4 *7 (-1202 *6)))) (-3840 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-747)) (-4 *3 (-342)) (-4 *5 (-1202 *3)) (-5 *2 (-621 (-1139 *3))) (-5 *1 (-489 *3 *5 *6)) (-4 *6 (-1202 *5)))))
-(-10 -7 (-15 -3840 ((-621 (-1139 |#1|)) |#1| (-747) (-747) (-747))) (-15 -2922 ((-621 (-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|)))) (-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) (-747) (-747))) (-15 -2264 ((-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) (-621 |#3|) (-621 (-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|)))) (-747))))
-((-2585 (((-2 (|:| -1949 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) (-2 (|:| -1949 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) (-2 (|:| -1949 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|)))) 62)) (-3932 ((|#1| (-665 |#1|) |#1| (-747)) 25)) (-3651 (((-747) (-747) (-747)) 30)) (-3909 (((-665 |#1|) (-665 |#1|) (-665 |#1|)) 42)) (-1367 (((-665 |#1|) (-665 |#1|) (-665 |#1|) |#1|) 50) (((-665 |#1|) (-665 |#1|) (-665 |#1|)) 47)) (-2750 ((|#1| (-665 |#1|) (-665 |#1|) |#1| (-549)) 29)) (-3136 ((|#1| (-665 |#1|)) 18)))
-(((-490 |#1| |#2| |#3|) (-10 -7 (-15 -3136 (|#1| (-665 |#1|))) (-15 -3932 (|#1| (-665 |#1|) |#1| (-747))) (-15 -2750 (|#1| (-665 |#1|) (-665 |#1|) |#1| (-549))) (-15 -3651 ((-747) (-747) (-747))) (-15 -1367 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -1367 ((-665 |#1|) (-665 |#1|) (-665 |#1|) |#1|)) (-15 -3909 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -2585 ((-2 (|:| -1949 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) (-2 (|:| -1949 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) (-2 (|:| -1949 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|)))))) (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $)))) (-1202 |#1|) (-402 |#1| |#2|)) (T -490))
-((-2585 (*1 *2 *2 *2) (-12 (-5 *2 (-2 (|:| -1949 (-665 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-665 *3)))) (-4 *3 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $))))) (-4 *4 (-1202 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))) (-3909 (*1 *2 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $))))) (-4 *4 (-1202 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))) (-1367 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-665 *3)) (-4 *3 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $))))) (-4 *4 (-1202 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))) (-1367 (*1 *2 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $))))) (-4 *4 (-1202 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))) (-3651 (*1 *2 *2 *2) (-12 (-5 *2 (-747)) (-4 *3 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $))))) (-4 *4 (-1202 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))) (-2750 (*1 *2 *3 *3 *2 *4) (-12 (-5 *3 (-665 *2)) (-5 *4 (-549)) (-4 *2 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $))))) (-4 *5 (-1202 *2)) (-5 *1 (-490 *2 *5 *6)) (-4 *6 (-402 *2 *5)))) (-3932 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-665 *2)) (-5 *4 (-747)) (-4 *2 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $))))) (-4 *5 (-1202 *2)) (-5 *1 (-490 *2 *5 *6)) (-4 *6 (-402 *2 *5)))) (-3136 (*1 *2 *3) (-12 (-5 *3 (-665 *2)) (-4 *4 (-1202 *2)) (-4 *2 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $))))) (-5 *1 (-490 *2 *4 *5)) (-4 *5 (-402 *2 *4)))))
-(-10 -7 (-15 -3136 (|#1| (-665 |#1|))) (-15 -3932 (|#1| (-665 |#1|) |#1| (-747))) (-15 -2750 (|#1| (-665 |#1|) (-665 |#1|) |#1| (-549))) (-15 -3651 ((-747) (-747) (-747))) (-15 -1367 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -1367 ((-665 |#1|) (-665 |#1|) (-665 |#1|) |#1|)) (-15 -3909 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -2585 ((-2 (|:| -1949 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) (-2 (|:| -1949 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) (-2 (|:| -1949 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))))))
-((-3834 (((-112) $ $) NIL)) (-1340 (($ $) NIL)) (-2464 (($ $ $) 35)) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-4142 (((-112) $) NIL (|has| (-112) (-823))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-4311 (($ $) NIL (-12 (|has| $ (-6 -4338)) (|has| (-112) (-823)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4338)))) (-3193 (($ $) NIL (|has| (-112) (-823))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-2254 (((-112) $ (-1193 (-549)) (-112)) NIL (|has| $ (-6 -4338))) (((-112) $ (-549) (-112)) 36 (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-1585 (($ $) NIL (|has| $ (-6 -4338)))) (-3064 (($ $) NIL)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-112) (-1067))))) (-3812 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4337))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-112) (-1067))))) (-2557 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4337)) (|has| (-112) (-1067))))) (-1879 (((-112) $ (-549) (-112)) NIL (|has| $ (-6 -4338)))) (-1809 (((-112) $ (-549)) NIL)) (-2883 (((-549) (-112) $ (-549)) NIL (|has| (-112) (-1067))) (((-549) (-112) $) NIL (|has| (-112) (-1067))) (((-549) (-1 (-112) (-112)) $) NIL)) (-2989 (((-621 (-112)) $) NIL (|has| $ (-6 -4337)))) (-4207 (($ $ $) 33)) (-4008 (($ $) NIL)) (-1396 (($ $ $) NIL)) (-3743 (($ (-747) (-112)) 23)) (-4276 (($ $ $) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) 8 (|has| (-549) (-823)))) (-2863 (($ $ $) NIL)) (-3890 (($ $ $) NIL (|has| (-112) (-823))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-1562 (((-621 (-112)) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-112) (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL)) (-1868 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-112) (-112) (-112)) $ $) 30) (($ (-1 (-112) (-112)) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL)) (-2616 (($ $ $ (-549)) NIL) (($ (-112) $ (-549)) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3990 (((-1087) $) NIL)) (-3646 (((-112) $) NIL (|has| (-549) (-823)))) (-3779 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-1642 (($ $ (-112)) NIL (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-112)) (-621 (-112))) NIL (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1067)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1067)))) (($ $ (-287 (-112))) NIL (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1067)))) (($ $ (-621 (-287 (-112)))) NIL (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-112) (-1067))))) (-2696 (((-621 (-112)) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) 24)) (-3341 (($ $ (-1193 (-549))) NIL) (((-112) $ (-549)) 18) (((-112) $ (-549) (-112)) NIL)) (-2167 (($ $ (-1193 (-549))) NIL) (($ $ (-549)) NIL)) (-4000 (((-747) (-112) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-112) (-1067)))) (((-747) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4337)))) (-2730 (($ $ $ (-549)) NIL (|has| $ (-6 -4338)))) (-2281 (($ $) 25)) (-2845 (((-525) $) NIL (|has| (-112) (-594 (-525))))) (-3854 (($ (-621 (-112))) NIL)) (-1952 (($ (-621 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-3846 (((-834) $) 22)) (-3527 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4337)))) (-1821 (($ $ $) 31)) (-3708 (($ $ $) NIL)) (-3799 (($ $ $) 39)) (-3809 (($ $) 37)) (-3789 (($ $ $) 38)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 26)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 27)) (-3695 (($ $ $) NIL)) (-3775 (((-747) $) 10 (|has| $ (-6 -4337)))))
-(((-491 |#1|) (-13 (-123) (-10 -8 (-15 -3809 ($ $)) (-15 -3799 ($ $ $)) (-15 -3789 ($ $ $)))) (-549)) (T -491))
-((-3809 (*1 *1 *1) (-12 (-5 *1 (-491 *2)) (-14 *2 (-549)))) (-3799 (*1 *1 *1 *1) (-12 (-5 *1 (-491 *2)) (-14 *2 (-549)))) (-3789 (*1 *1 *1 *1) (-12 (-5 *1 (-491 *2)) (-14 *2 (-549)))))
-(-13 (-123) (-10 -8 (-15 -3809 ($ $)) (-15 -3799 ($ $ $)) (-15 -3789 ($ $ $))))
-((-3084 (((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1139 |#4|)) 35)) (-2857 (((-1139 |#4|) (-1 |#4| |#1|) |#2|) 31) ((|#2| (-1 |#1| |#4|) (-1139 |#4|)) 22)) (-4296 (((-3 (-665 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-665 (-1139 |#4|))) 46)) (-2859 (((-1139 (-1139 |#4|)) (-1 |#4| |#1|) |#3|) 55)))
-(((-492 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2857 (|#2| (-1 |#1| |#4|) (-1139 |#4|))) (-15 -2857 ((-1139 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -3084 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1139 |#4|))) (-15 -4296 ((-3 (-665 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-665 (-1139 |#4|)))) (-15 -2859 ((-1139 (-1139 |#4|)) (-1 |#4| |#1|) |#3|))) (-1018) (-1202 |#1|) (-1202 |#2|) (-1018)) (T -492))
-((-2859 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1018)) (-4 *7 (-1018)) (-4 *6 (-1202 *5)) (-5 *2 (-1139 (-1139 *7))) (-5 *1 (-492 *5 *6 *4 *7)) (-4 *4 (-1202 *6)))) (-4296 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8)) (-5 *4 (-665 (-1139 *8))) (-4 *5 (-1018)) (-4 *8 (-1018)) (-4 *6 (-1202 *5)) (-5 *2 (-665 *6)) (-5 *1 (-492 *5 *6 *7 *8)) (-4 *7 (-1202 *6)))) (-3084 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1139 *7)) (-4 *5 (-1018)) (-4 *7 (-1018)) (-4 *2 (-1202 *5)) (-5 *1 (-492 *5 *2 *6 *7)) (-4 *6 (-1202 *2)))) (-2857 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1018)) (-4 *7 (-1018)) (-4 *4 (-1202 *5)) (-5 *2 (-1139 *7)) (-5 *1 (-492 *5 *4 *6 *7)) (-4 *6 (-1202 *4)))) (-2857 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1139 *7)) (-4 *5 (-1018)) (-4 *7 (-1018)) (-4 *2 (-1202 *5)) (-5 *1 (-492 *5 *2 *6 *7)) (-4 *6 (-1202 *2)))))
-(-10 -7 (-15 -2857 (|#2| (-1 |#1| |#4|) (-1139 |#4|))) (-15 -2857 ((-1139 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -3084 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1139 |#4|))) (-15 -4296 ((-3 (-665 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-665 (-1139 |#4|)))) (-15 -2859 ((-1139 (-1139 |#4|)) (-1 |#4| |#1|) |#3|)))
-((-3834 (((-112) $ $) NIL)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2684 (((-1231) $) 19)) (-3341 (((-1125) $ (-1143)) 23)) (-2699 (((-1231) $) 15)) (-3846 (((-834) $) 21) (($ (-1125)) 20)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 9)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 8)))
-(((-493) (-13 (-823) (-10 -8 (-15 -3341 ((-1125) $ (-1143))) (-15 -2699 ((-1231) $)) (-15 -2684 ((-1231) $)) (-15 -3846 ($ (-1125)))))) (T -493))
-((-3341 (*1 *2 *1 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-1125)) (-5 *1 (-493)))) (-2699 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-493)))) (-2684 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-493)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-493)))))
-(-13 (-823) (-10 -8 (-15 -3341 ((-1125) $ (-1143))) (-15 -2699 ((-1231) $)) (-15 -2684 ((-1231) $)) (-15 -3846 ($ (-1125)))))
-((-2050 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) 19)) (-2836 ((|#1| |#4|) 10)) (-1308 ((|#3| |#4|) 17)))
-(((-494 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2836 (|#1| |#4|)) (-15 -1308 (|#3| |#4|)) (-15 -2050 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|))) (-541) (-963 |#1|) (-366 |#1|) (-366 |#2|)) (T -494))
-((-2050 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-963 *4)) (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4))) (-5 *1 (-494 *4 *5 *6 *3)) (-4 *6 (-366 *4)) (-4 *3 (-366 *5)))) (-1308 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-963 *4)) (-4 *2 (-366 *4)) (-5 *1 (-494 *4 *5 *2 *3)) (-4 *3 (-366 *5)))) (-2836 (*1 *2 *3) (-12 (-4 *4 (-963 *2)) (-4 *2 (-541)) (-5 *1 (-494 *2 *4 *5 *3)) (-4 *5 (-366 *2)) (-4 *3 (-366 *4)))))
-(-10 -7 (-15 -2836 (|#1| |#4|)) (-15 -1308 (|#3| |#4|)) (-15 -2050 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|)))
-((-3834 (((-112) $ $) NIL)) (-2707 (((-112) $ (-621 |#3|)) 105) (((-112) $) 106)) (-1763 (((-112) $) 149)) (-3281 (($ $ |#4|) 97) (($ $ |#4| (-621 |#3|)) 101)) (-3648 (((-1132 (-621 (-923 |#1|)) (-621 (-287 (-923 |#1|)))) (-621 |#4|)) 142 (|has| |#3| (-594 (-1143))))) (-4013 (($ $ $) 91) (($ $ |#4|) 89)) (-2675 (((-112) $) 148)) (-1565 (($ $) 109)) (-3851 (((-1125) $) NIL)) (-3655 (($ $ $) 83) (($ (-621 $)) 85)) (-1988 (((-112) |#4| $) 108)) (-1818 (((-112) $ $) 72)) (-3818 (($ (-621 |#4|)) 90)) (-3990 (((-1087) $) NIL)) (-1687 (($ (-621 |#4|)) 146)) (-3115 (((-112) $) 147)) (-3989 (($ $) 74)) (-2384 (((-621 |#4|) $) 63)) (-3453 (((-2 (|:| |mval| (-665 |#1|)) (|:| |invmval| (-665 |#1|)) (|:| |genIdeal| $)) $ (-621 |#3|)) NIL)) (-1547 (((-112) |#4| $) 77)) (-2985 (((-549) $ (-621 |#3|)) 110) (((-549) $) 111)) (-3846 (((-834) $) 145) (($ (-621 |#4|)) 86)) (-1755 (($ (-2 (|:| |mval| (-665 |#1|)) (|:| |invmval| (-665 |#1|)) (|:| |genIdeal| $))) NIL)) (-2389 (((-112) $ $) 73)) (-2486 (($ $ $) 93)) (** (($ $ (-747)) 96)) (* (($ $ $) 95)))
-(((-495 |#1| |#2| |#3| |#4|) (-13 (-1067) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-747))) (-15 -2486 ($ $ $)) (-15 -2675 ((-112) $)) (-15 -1763 ((-112) $)) (-15 -1547 ((-112) |#4| $)) (-15 -1818 ((-112) $ $)) (-15 -1988 ((-112) |#4| $)) (-15 -2707 ((-112) $ (-621 |#3|))) (-15 -2707 ((-112) $)) (-15 -3655 ($ $ $)) (-15 -3655 ($ (-621 $))) (-15 -4013 ($ $ $)) (-15 -4013 ($ $ |#4|)) (-15 -3989 ($ $)) (-15 -3453 ((-2 (|:| |mval| (-665 |#1|)) (|:| |invmval| (-665 |#1|)) (|:| |genIdeal| $)) $ (-621 |#3|))) (-15 -1755 ($ (-2 (|:| |mval| (-665 |#1|)) (|:| |invmval| (-665 |#1|)) (|:| |genIdeal| $)))) (-15 -2985 ((-549) $ (-621 |#3|))) (-15 -2985 ((-549) $)) (-15 -1565 ($ $)) (-15 -3818 ($ (-621 |#4|))) (-15 -1687 ($ (-621 |#4|))) (-15 -3115 ((-112) $)) (-15 -2384 ((-621 |#4|) $)) (-15 -3846 ($ (-621 |#4|))) (-15 -3281 ($ $ |#4|)) (-15 -3281 ($ $ |#4| (-621 |#3|))) (IF (|has| |#3| (-594 (-1143))) (-15 -3648 ((-1132 (-621 (-923 |#1|)) (-621 (-287 (-923 |#1|)))) (-621 |#4|))) |%noBranch|))) (-356) (-769) (-823) (-920 |#1| |#2| |#3|)) (T -495))
-((* (*1 *1 *1 *1) (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823)) (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-2486 (*1 *1 *1 *1) (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823)) (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))) (-2675 (*1 *2 *1) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-1763 (*1 *2 *1) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-1547 (*1 *2 *3 *1) (-12 (-4 *4 (-356)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-495 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))) (-1818 (*1 *2 *1 *1) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-1988 (*1 *2 *3 *1) (-12 (-4 *4 (-356)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-495 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))) (-2707 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *6)) (-4 *6 (-823)) (-4 *4 (-356)) (-4 *5 (-769)) (-5 *2 (-112)) (-5 *1 (-495 *4 *5 *6 *7)) (-4 *7 (-920 *4 *5 *6)))) (-2707 (*1 *2 *1) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-3655 (*1 *1 *1 *1) (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823)) (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))) (-3655 (*1 *1 *2) (-12 (-5 *2 (-621 (-495 *3 *4 *5 *6))) (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-4013 (*1 *1 *1 *1) (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823)) (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))) (-4013 (*1 *1 *1 *2) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *2)) (-4 *2 (-920 *3 *4 *5)))) (-3989 (*1 *1 *1) (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823)) (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))) (-3453 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *6)) (-4 *6 (-823)) (-4 *4 (-356)) (-4 *5 (-769)) (-5 *2 (-2 (|:| |mval| (-665 *4)) (|:| |invmval| (-665 *4)) (|:| |genIdeal| (-495 *4 *5 *6 *7)))) (-5 *1 (-495 *4 *5 *6 *7)) (-4 *7 (-920 *4 *5 *6)))) (-1755 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |mval| (-665 *3)) (|:| |invmval| (-665 *3)) (|:| |genIdeal| (-495 *3 *4 *5 *6)))) (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-2985 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *6)) (-4 *6 (-823)) (-4 *4 (-356)) (-4 *5 (-769)) (-5 *2 (-549)) (-5 *1 (-495 *4 *5 *6 *7)) (-4 *7 (-920 *4 *5 *6)))) (-2985 (*1 *2 *1) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-549)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-1565 (*1 *1 *1) (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823)) (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))) (-3818 (*1 *1 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)))) (-1687 (*1 *1 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)))) (-3115 (*1 *2 *1) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-2384 (*1 *2 *1) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *6)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)))) (-3281 (*1 *1 *1 *2) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *2)) (-4 *2 (-920 *3 *4 *5)))) (-3281 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-621 *6)) (-4 *6 (-823)) (-4 *4 (-356)) (-4 *5 (-769)) (-5 *1 (-495 *4 *5 *6 *2)) (-4 *2 (-920 *4 *5 *6)))) (-3648 (*1 *2 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *5 *6)) (-4 *6 (-594 (-1143))) (-4 *4 (-356)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1132 (-621 (-923 *4)) (-621 (-287 (-923 *4))))) (-5 *1 (-495 *4 *5 *6 *7)))))
-(-13 (-1067) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-747))) (-15 -2486 ($ $ $)) (-15 -2675 ((-112) $)) (-15 -1763 ((-112) $)) (-15 -1547 ((-112) |#4| $)) (-15 -1818 ((-112) $ $)) (-15 -1988 ((-112) |#4| $)) (-15 -2707 ((-112) $ (-621 |#3|))) (-15 -2707 ((-112) $)) (-15 -3655 ($ $ $)) (-15 -3655 ($ (-621 $))) (-15 -4013 ($ $ $)) (-15 -4013 ($ $ |#4|)) (-15 -3989 ($ $)) (-15 -3453 ((-2 (|:| |mval| (-665 |#1|)) (|:| |invmval| (-665 |#1|)) (|:| |genIdeal| $)) $ (-621 |#3|))) (-15 -1755 ($ (-2 (|:| |mval| (-665 |#1|)) (|:| |invmval| (-665 |#1|)) (|:| |genIdeal| $)))) (-15 -2985 ((-549) $ (-621 |#3|))) (-15 -2985 ((-549) $)) (-15 -1565 ($ $)) (-15 -3818 ($ (-621 |#4|))) (-15 -1687 ($ (-621 |#4|))) (-15 -3115 ((-112) $)) (-15 -2384 ((-621 |#4|) $)) (-15 -3846 ($ (-621 |#4|))) (-15 -3281 ($ $ |#4|)) (-15 -3281 ($ $ |#4| (-621 |#3|))) (IF (|has| |#3| (-594 (-1143))) (-15 -3648 ((-1132 (-621 (-923 |#1|)) (-621 (-287 (-923 |#1|)))) (-621 |#4|))) |%noBranch|)))
-((-2380 (((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549))))) 150)) (-2077 (((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549))))) 151)) (-1631 (((-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549))))) 108)) (-1420 (((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549))))) NIL)) (-4162 (((-621 (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549))))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549))))) 153)) (-3414 (((-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-621 (-836 |#1|))) 165)))
-(((-496 |#1| |#2|) (-10 -7 (-15 -2380 ((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -2077 ((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -1420 ((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -1631 ((-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -4162 ((-621 (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549))))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -3414 ((-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-621 (-836 |#1|))))) (-621 (-1143)) (-747)) (T -496))
-((-3414 (*1 *2 *2 *3) (-12 (-5 *2 (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4) (-241 *4 (-400 (-549))))) (-5 *3 (-621 (-836 *4))) (-14 *4 (-621 (-1143))) (-14 *5 (-747)) (-5 *1 (-496 *4 *5)))) (-4162 (*1 *2 *3) (-12 (-14 *4 (-621 (-1143))) (-14 *5 (-747)) (-5 *2 (-621 (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4) (-241 *4 (-400 (-549)))))) (-5 *1 (-496 *4 *5)) (-5 *3 (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4) (-241 *4 (-400 (-549))))))) (-1631 (*1 *2 *2) (-12 (-5 *2 (-495 (-400 (-549)) (-234 *4 (-747)) (-836 *3) (-241 *3 (-400 (-549))))) (-14 *3 (-621 (-1143))) (-14 *4 (-747)) (-5 *1 (-496 *3 *4)))) (-1420 (*1 *2 *3) (-12 (-5 *3 (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4) (-241 *4 (-400 (-549))))) (-14 *4 (-621 (-1143))) (-14 *5 (-747)) (-5 *2 (-112)) (-5 *1 (-496 *4 *5)))) (-2077 (*1 *2 *3) (-12 (-5 *3 (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4) (-241 *4 (-400 (-549))))) (-14 *4 (-621 (-1143))) (-14 *5 (-747)) (-5 *2 (-112)) (-5 *1 (-496 *4 *5)))) (-2380 (*1 *2 *3) (-12 (-5 *3 (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4) (-241 *4 (-400 (-549))))) (-14 *4 (-621 (-1143))) (-14 *5 (-747)) (-5 *2 (-112)) (-5 *1 (-496 *4 *5)))))
-(-10 -7 (-15 -2380 ((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -2077 ((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -1420 ((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -1631 ((-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -4162 ((-621 (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549))))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -3414 ((-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-621 (-836 |#1|)))))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 11) (((-1148) $) NIL) (((-1143) $) 8)) (-2389 (((-112) $ $) NIL)))
-(((-497) (-13 (-1050) (-593 (-1143)))) (T -497))
-NIL
-(-13 (-1050) (-593 (-1143)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2070 (($ $) NIL)) (-2246 (($ |#1| |#2|) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1823 ((|#2| $) NIL)) (-2043 ((|#1| $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-3276 (($) 12 T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) 11) (($ $ $) 24)) (-2486 (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 18)))
+((-3685 (((-621 (-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|)))) (-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) (-747) (-747)) 27)) (-1658 (((-621 (-1138 |#1|)) |#1| (-747) (-747) (-747)) 34)) (-2366 (((-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) (-621 |#3|) (-621 (-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|)))) (-747)) 85)))
+(((-489 |#1| |#2| |#3|) (-10 -7 (-15 -1658 ((-621 (-1138 |#1|)) |#1| (-747) (-747) (-747))) (-15 -3685 ((-621 (-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|)))) (-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) (-747) (-747))) (-15 -2366 ((-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) (-621 |#3|) (-621 (-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|)))) (-747)))) (-342) (-1201 |#1|) (-1201 |#2|)) (T -489))
+((-2366 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 (-2 (|:| -2619 (-665 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-665 *7))))) (-5 *5 (-747)) (-4 *8 (-1201 *7)) (-4 *7 (-1201 *6)) (-4 *6 (-342)) (-5 *2 (-2 (|:| -2619 (-665 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-665 *7)))) (-5 *1 (-489 *6 *7 *8)))) (-3685 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-747)) (-4 *5 (-342)) (-4 *6 (-1201 *5)) (-5 *2 (-621 (-2 (|:| -2619 (-665 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-665 *6))))) (-5 *1 (-489 *5 *6 *7)) (-5 *3 (-2 (|:| -2619 (-665 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-665 *6)))) (-4 *7 (-1201 *6)))) (-1658 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-747)) (-4 *3 (-342)) (-4 *5 (-1201 *3)) (-5 *2 (-621 (-1138 *3))) (-5 *1 (-489 *3 *5 *6)) (-4 *6 (-1201 *5)))))
+(-10 -7 (-15 -1658 ((-621 (-1138 |#1|)) |#1| (-747) (-747) (-747))) (-15 -3685 ((-621 (-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|)))) (-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) (-747) (-747))) (-15 -2366 ((-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) (-621 |#3|) (-621 (-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|)))) (-747))))
+((-1495 (((-2 (|:| -2619 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) (-2 (|:| -2619 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) (-2 (|:| -2619 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|)))) 62)) (-1423 ((|#1| (-665 |#1|) |#1| (-747)) 25)) (-3503 (((-747) (-747) (-747)) 30)) (-3803 (((-665 |#1|) (-665 |#1|) (-665 |#1|)) 42)) (-2700 (((-665 |#1|) (-665 |#1|) (-665 |#1|) |#1|) 50) (((-665 |#1|) (-665 |#1|) (-665 |#1|)) 47)) (-1672 ((|#1| (-665 |#1|) (-665 |#1|) |#1| (-549)) 29)) (-3354 ((|#1| (-665 |#1|)) 18)))
+(((-490 |#1| |#2| |#3|) (-10 -7 (-15 -3354 (|#1| (-665 |#1|))) (-15 -1423 (|#1| (-665 |#1|) |#1| (-747))) (-15 -1672 (|#1| (-665 |#1|) (-665 |#1|) |#1| (-549))) (-15 -3503 ((-747) (-747) (-747))) (-15 -2700 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -2700 ((-665 |#1|) (-665 |#1|) (-665 |#1|) |#1|)) (-15 -3803 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -1495 ((-2 (|:| -2619 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) (-2 (|:| -2619 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) (-2 (|:| -2619 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|)))))) (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $)))) (-1201 |#1|) (-402 |#1| |#2|)) (T -490))
+((-1495 (*1 *2 *2 *2) (-12 (-5 *2 (-2 (|:| -2619 (-665 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-665 *3)))) (-4 *3 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $))))) (-4 *4 (-1201 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))) (-3803 (*1 *2 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $))))) (-4 *4 (-1201 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))) (-2700 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-665 *3)) (-4 *3 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $))))) (-4 *4 (-1201 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))) (-2700 (*1 *2 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $))))) (-4 *4 (-1201 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))) (-3503 (*1 *2 *2 *2) (-12 (-5 *2 (-747)) (-4 *3 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $))))) (-4 *4 (-1201 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))) (-1672 (*1 *2 *3 *3 *2 *4) (-12 (-5 *3 (-665 *2)) (-5 *4 (-549)) (-4 *2 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $))))) (-4 *5 (-1201 *2)) (-5 *1 (-490 *2 *5 *6)) (-4 *6 (-402 *2 *5)))) (-1423 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-665 *2)) (-5 *4 (-747)) (-4 *2 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $))))) (-4 *5 (-1201 *2)) (-5 *1 (-490 *2 *5 *6)) (-4 *6 (-402 *2 *5)))) (-3354 (*1 *2 *3) (-12 (-5 *3 (-665 *2)) (-4 *4 (-1201 *2)) (-4 *2 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $))))) (-5 *1 (-490 *2 *4 *5)) (-4 *5 (-402 *2 *4)))))
+(-10 -7 (-15 -3354 (|#1| (-665 |#1|))) (-15 -1423 (|#1| (-665 |#1|) |#1| (-747))) (-15 -1672 (|#1| (-665 |#1|) (-665 |#1|) |#1| (-549))) (-15 -3503 ((-747) (-747) (-747))) (-15 -2700 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -2700 ((-665 |#1|) (-665 |#1|) (-665 |#1|) |#1|)) (-15 -3803 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -1495 ((-2 (|:| -2619 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) (-2 (|:| -2619 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))) (-2 (|:| -2619 (-665 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-665 |#1|))))))
+((-3832 (((-112) $ $) NIL)) (-1339 (($ $) NIL)) (-2461 (($ $ $) 35)) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-2239 (((-112) $) NIL (|has| (-112) (-823))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-2015 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-112) (-823)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4337)))) (-3191 (($ $) NIL (|has| (-112) (-823))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-2250 (((-112) $ (-1192 (-549)) (-112)) NIL (|has| $ (-6 -4337))) (((-112) $ (-549) (-112)) 36 (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-2918 (($ $) NIL (|has| $ (-6 -4337)))) (-3062 (($ $) NIL)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-112) (-1066))))) (-3812 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4336))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-112) (-1066))))) (-2556 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4336)) (|has| (-112) (-1066))))) (-1875 (((-112) $ (-549) (-112)) NIL (|has| $ (-6 -4337)))) (-1807 (((-112) $ (-549)) NIL)) (-2881 (((-549) (-112) $ (-549)) NIL (|has| (-112) (-1066))) (((-549) (-112) $) NIL (|has| (-112) (-1066))) (((-549) (-1 (-112) (-112)) $) NIL)) (-2987 (((-621 (-112)) $) NIL (|has| $ (-6 -4336)))) (-4206 (($ $ $) 33)) (-4007 (($ $) NIL)) (-4245 (($ $ $) NIL)) (-3743 (($ (-747) (-112)) 23)) (-2779 (($ $ $) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) 8 (|has| (-549) (-823)))) (-2861 (($ $ $) NIL)) (-3050 (($ $ $) NIL (|has| (-112) (-823))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-3698 (((-621 (-112)) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-112) (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL)) (-1864 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-112) (-112) (-112)) $ $) 30) (($ (-1 (-112) (-112)) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL)) (-2613 (($ $ $ (-549)) NIL) (($ (-112) $ (-549)) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3988 (((-1086) $) NIL)) (-3645 (((-112) $) NIL (|has| (-549) (-823)))) (-3959 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-1943 (($ $ (-112)) NIL (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-112)) (-621 (-112))) NIL (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1066)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1066)))) (($ $ (-287 (-112))) NIL (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1066)))) (($ $ (-621 (-287 (-112)))) NIL (-12 (|has| (-112) (-302 (-112))) (|has| (-112) (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-112) (-1066))))) (-3347 (((-621 (-112)) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) 24)) (-3339 (($ $ (-1192 (-549))) NIL) (((-112) $ (-549)) 18) (((-112) $ (-549) (-112)) NIL)) (-2162 (($ $ (-1192 (-549))) NIL) (($ $ (-549)) NIL)) (-3997 (((-747) (-112) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-112) (-1066)))) (((-747) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4336)))) (-2049 (($ $ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2279 (($ $) 25)) (-2843 (((-525) $) NIL (|has| (-112) (-594 (-525))))) (-3853 (($ (-621 (-112))) NIL)) (-1950 (($ (-621 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-3845 (((-834) $) 22)) (-3025 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4336)))) (-1819 (($ $ $) 31)) (-3707 (($ $ $) NIL)) (-3798 (($ $ $) 39)) (-3808 (($ $) 37)) (-3788 (($ $ $) 38)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 26)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 27)) (-3694 (($ $ $) NIL)) (-3774 (((-747) $) 10 (|has| $ (-6 -4336)))))
+(((-491 |#1|) (-13 (-123) (-10 -8 (-15 -3808 ($ $)) (-15 -3798 ($ $ $)) (-15 -3788 ($ $ $)))) (-549)) (T -491))
+((-3808 (*1 *1 *1) (-12 (-5 *1 (-491 *2)) (-14 *2 (-549)))) (-3798 (*1 *1 *1 *1) (-12 (-5 *1 (-491 *2)) (-14 *2 (-549)))) (-3788 (*1 *1 *1 *1) (-12 (-5 *1 (-491 *2)) (-14 *2 (-549)))))
+(-13 (-123) (-10 -8 (-15 -3808 ($ $)) (-15 -3798 ($ $ $)) (-15 -3788 ($ $ $))))
+((-2301 (((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1138 |#4|)) 35)) (-4003 (((-1138 |#4|) (-1 |#4| |#1|) |#2|) 31) ((|#2| (-1 |#1| |#4|) (-1138 |#4|)) 22)) (-4069 (((-3 (-665 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-665 (-1138 |#4|))) 46)) (-4193 (((-1138 (-1138 |#4|)) (-1 |#4| |#1|) |#3|) 55)))
+(((-492 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4003 (|#2| (-1 |#1| |#4|) (-1138 |#4|))) (-15 -4003 ((-1138 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -2301 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1138 |#4|))) (-15 -4069 ((-3 (-665 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-665 (-1138 |#4|)))) (-15 -4193 ((-1138 (-1138 |#4|)) (-1 |#4| |#1|) |#3|))) (-1018) (-1201 |#1|) (-1201 |#2|) (-1018)) (T -492))
+((-4193 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1018)) (-4 *7 (-1018)) (-4 *6 (-1201 *5)) (-5 *2 (-1138 (-1138 *7))) (-5 *1 (-492 *5 *6 *4 *7)) (-4 *4 (-1201 *6)))) (-4069 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8)) (-5 *4 (-665 (-1138 *8))) (-4 *5 (-1018)) (-4 *8 (-1018)) (-4 *6 (-1201 *5)) (-5 *2 (-665 *6)) (-5 *1 (-492 *5 *6 *7 *8)) (-4 *7 (-1201 *6)))) (-2301 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1138 *7)) (-4 *5 (-1018)) (-4 *7 (-1018)) (-4 *2 (-1201 *5)) (-5 *1 (-492 *5 *2 *6 *7)) (-4 *6 (-1201 *2)))) (-4003 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1018)) (-4 *7 (-1018)) (-4 *4 (-1201 *5)) (-5 *2 (-1138 *7)) (-5 *1 (-492 *5 *4 *6 *7)) (-4 *6 (-1201 *4)))) (-4003 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1138 *7)) (-4 *5 (-1018)) (-4 *7 (-1018)) (-4 *2 (-1201 *5)) (-5 *1 (-492 *5 *2 *6 *7)) (-4 *6 (-1201 *2)))))
+(-10 -7 (-15 -4003 (|#2| (-1 |#1| |#4|) (-1138 |#4|))) (-15 -4003 ((-1138 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -2301 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1138 |#4|))) (-15 -4069 ((-3 (-665 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-665 (-1138 |#4|)))) (-15 -4193 ((-1138 (-1138 |#4|)) (-1 |#4| |#1|) |#3|)))
+((-3832 (((-112) $ $) NIL)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-1674 (((-1230) $) 19)) (-3339 (((-1124) $ (-1142)) 23)) (-2697 (((-1230) $) 15)) (-3845 (((-834) $) 21) (($ (-1124)) 20)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 9)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 8)))
+(((-493) (-13 (-823) (-10 -8 (-15 -3339 ((-1124) $ (-1142))) (-15 -2697 ((-1230) $)) (-15 -1674 ((-1230) $)) (-15 -3845 ($ (-1124)))))) (T -493))
+((-3339 (*1 *2 *1 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-1124)) (-5 *1 (-493)))) (-2697 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-493)))) (-1674 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-493)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-493)))))
+(-13 (-823) (-10 -8 (-15 -3339 ((-1124) $ (-1142))) (-15 -2697 ((-1230) $)) (-15 -1674 ((-1230) $)) (-15 -3845 ($ (-1124)))))
+((-1758 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) 19)) (-3727 ((|#1| |#4|) 10)) (-2308 ((|#3| |#4|) 17)))
+(((-494 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3727 (|#1| |#4|)) (-15 -2308 (|#3| |#4|)) (-15 -1758 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|))) (-541) (-963 |#1|) (-366 |#1|) (-366 |#2|)) (T -494))
+((-1758 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-963 *4)) (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4))) (-5 *1 (-494 *4 *5 *6 *3)) (-4 *6 (-366 *4)) (-4 *3 (-366 *5)))) (-2308 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-963 *4)) (-4 *2 (-366 *4)) (-5 *1 (-494 *4 *5 *2 *3)) (-4 *3 (-366 *5)))) (-3727 (*1 *2 *3) (-12 (-4 *4 (-963 *2)) (-4 *2 (-541)) (-5 *1 (-494 *2 *4 *5 *3)) (-4 *5 (-366 *2)) (-4 *3 (-366 *4)))))
+(-10 -7 (-15 -3727 (|#1| |#4|)) (-15 -2308 (|#3| |#4|)) (-15 -1758 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|)))
+((-3832 (((-112) $ $) NIL)) (-3035 (((-112) $ (-621 |#3|)) 105) (((-112) $) 106)) (-3210 (((-112) $) 149)) (-2071 (($ $ |#4|) 97) (($ $ |#4| (-621 |#3|)) 101)) (-1290 (((-1131 (-621 (-923 |#1|)) (-621 (-287 (-923 |#1|)))) (-621 |#4|)) 142 (|has| |#3| (-594 (-1142))))) (-2262 (($ $ $) 91) (($ $ |#4|) 89)) (-2297 (((-112) $) 148)) (-2766 (($ $) 109)) (-3441 (((-1124) $) NIL)) (-3869 (($ $ $) 83) (($ (-621 $)) 85)) (-3699 (((-112) |#4| $) 108)) (-3106 (((-112) $ $) 72)) (-2061 (($ (-621 |#4|)) 90)) (-3988 (((-1086) $) NIL)) (-2220 (($ (-621 |#4|)) 146)) (-3627 (((-112) $) 147)) (-1557 (($ $) 74)) (-3573 (((-621 |#4|) $) 63)) (-4083 (((-2 (|:| |mval| (-665 |#1|)) (|:| |invmval| (-665 |#1|)) (|:| |genIdeal| $)) $ (-621 |#3|)) NIL)) (-1572 (((-112) |#4| $) 77)) (-2260 (((-549) $ (-621 |#3|)) 110) (((-549) $) 111)) (-3845 (((-834) $) 145) (($ (-621 |#4|)) 86)) (-3795 (($ (-2 (|:| |mval| (-665 |#1|)) (|:| |invmval| (-665 |#1|)) (|:| |genIdeal| $))) NIL)) (-2387 (((-112) $ $) 73)) (-2484 (($ $ $) 93)) (** (($ $ (-747)) 96)) (* (($ $ $) 95)))
+(((-495 |#1| |#2| |#3| |#4|) (-13 (-1066) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-747))) (-15 -2484 ($ $ $)) (-15 -2297 ((-112) $)) (-15 -3210 ((-112) $)) (-15 -1572 ((-112) |#4| $)) (-15 -3106 ((-112) $ $)) (-15 -3699 ((-112) |#4| $)) (-15 -3035 ((-112) $ (-621 |#3|))) (-15 -3035 ((-112) $)) (-15 -3869 ($ $ $)) (-15 -3869 ($ (-621 $))) (-15 -2262 ($ $ $)) (-15 -2262 ($ $ |#4|)) (-15 -1557 ($ $)) (-15 -4083 ((-2 (|:| |mval| (-665 |#1|)) (|:| |invmval| (-665 |#1|)) (|:| |genIdeal| $)) $ (-621 |#3|))) (-15 -3795 ($ (-2 (|:| |mval| (-665 |#1|)) (|:| |invmval| (-665 |#1|)) (|:| |genIdeal| $)))) (-15 -2260 ((-549) $ (-621 |#3|))) (-15 -2260 ((-549) $)) (-15 -2766 ($ $)) (-15 -2061 ($ (-621 |#4|))) (-15 -2220 ($ (-621 |#4|))) (-15 -3627 ((-112) $)) (-15 -3573 ((-621 |#4|) $)) (-15 -3845 ($ (-621 |#4|))) (-15 -2071 ($ $ |#4|)) (-15 -2071 ($ $ |#4| (-621 |#3|))) (IF (|has| |#3| (-594 (-1142))) (-15 -1290 ((-1131 (-621 (-923 |#1|)) (-621 (-287 (-923 |#1|)))) (-621 |#4|))) |%noBranch|))) (-356) (-769) (-823) (-920 |#1| |#2| |#3|)) (T -495))
+((* (*1 *1 *1 *1) (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823)) (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-2484 (*1 *1 *1 *1) (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823)) (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))) (-2297 (*1 *2 *1) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-3210 (*1 *2 *1) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-1572 (*1 *2 *3 *1) (-12 (-4 *4 (-356)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-495 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))) (-3106 (*1 *2 *1 *1) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-3699 (*1 *2 *3 *1) (-12 (-4 *4 (-356)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-495 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))) (-3035 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *6)) (-4 *6 (-823)) (-4 *4 (-356)) (-4 *5 (-769)) (-5 *2 (-112)) (-5 *1 (-495 *4 *5 *6 *7)) (-4 *7 (-920 *4 *5 *6)))) (-3035 (*1 *2 *1) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-3869 (*1 *1 *1 *1) (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823)) (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))) (-3869 (*1 *1 *2) (-12 (-5 *2 (-621 (-495 *3 *4 *5 *6))) (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-2262 (*1 *1 *1 *1) (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823)) (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))) (-2262 (*1 *1 *1 *2) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *2)) (-4 *2 (-920 *3 *4 *5)))) (-1557 (*1 *1 *1) (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823)) (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))) (-4083 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *6)) (-4 *6 (-823)) (-4 *4 (-356)) (-4 *5 (-769)) (-5 *2 (-2 (|:| |mval| (-665 *4)) (|:| |invmval| (-665 *4)) (|:| |genIdeal| (-495 *4 *5 *6 *7)))) (-5 *1 (-495 *4 *5 *6 *7)) (-4 *7 (-920 *4 *5 *6)))) (-3795 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |mval| (-665 *3)) (|:| |invmval| (-665 *3)) (|:| |genIdeal| (-495 *3 *4 *5 *6)))) (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-2260 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *6)) (-4 *6 (-823)) (-4 *4 (-356)) (-4 *5 (-769)) (-5 *2 (-549)) (-5 *1 (-495 *4 *5 *6 *7)) (-4 *7 (-920 *4 *5 *6)))) (-2260 (*1 *2 *1) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-549)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-2766 (*1 *1 *1) (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823)) (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))) (-2061 (*1 *1 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)))) (-2220 (*1 *1 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)))) (-3627 (*1 *2 *1) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-3573 (*1 *2 *1) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *6)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)))) (-2071 (*1 *1 *1 *2) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *2)) (-4 *2 (-920 *3 *4 *5)))) (-2071 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-621 *6)) (-4 *6 (-823)) (-4 *4 (-356)) (-4 *5 (-769)) (-5 *1 (-495 *4 *5 *6 *2)) (-4 *2 (-920 *4 *5 *6)))) (-1290 (*1 *2 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *5 *6)) (-4 *6 (-594 (-1142))) (-4 *4 (-356)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1131 (-621 (-923 *4)) (-621 (-287 (-923 *4))))) (-5 *1 (-495 *4 *5 *6 *7)))))
+(-13 (-1066) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-747))) (-15 -2484 ($ $ $)) (-15 -2297 ((-112) $)) (-15 -3210 ((-112) $)) (-15 -1572 ((-112) |#4| $)) (-15 -3106 ((-112) $ $)) (-15 -3699 ((-112) |#4| $)) (-15 -3035 ((-112) $ (-621 |#3|))) (-15 -3035 ((-112) $)) (-15 -3869 ($ $ $)) (-15 -3869 ($ (-621 $))) (-15 -2262 ($ $ $)) (-15 -2262 ($ $ |#4|)) (-15 -1557 ($ $)) (-15 -4083 ((-2 (|:| |mval| (-665 |#1|)) (|:| |invmval| (-665 |#1|)) (|:| |genIdeal| $)) $ (-621 |#3|))) (-15 -3795 ($ (-2 (|:| |mval| (-665 |#1|)) (|:| |invmval| (-665 |#1|)) (|:| |genIdeal| $)))) (-15 -2260 ((-549) $ (-621 |#3|))) (-15 -2260 ((-549) $)) (-15 -2766 ($ $)) (-15 -2061 ($ (-621 |#4|))) (-15 -2220 ($ (-621 |#4|))) (-15 -3627 ((-112) $)) (-15 -3573 ((-621 |#4|) $)) (-15 -3845 ($ (-621 |#4|))) (-15 -2071 ($ $ |#4|)) (-15 -2071 ($ $ |#4| (-621 |#3|))) (IF (|has| |#3| (-594 (-1142))) (-15 -1290 ((-1131 (-621 (-923 |#1|)) (-621 (-287 (-923 |#1|)))) (-621 |#4|))) |%noBranch|)))
+((-1279 (((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549))))) 150)) (-3099 (((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549))))) 151)) (-1629 (((-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549))))) 108)) (-1464 (((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549))))) NIL)) (-3729 (((-621 (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549))))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549))))) 153)) (-4146 (((-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-621 (-836 |#1|))) 165)))
+(((-496 |#1| |#2|) (-10 -7 (-15 -1279 ((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -3099 ((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -1464 ((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -1629 ((-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -3729 ((-621 (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549))))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -4146 ((-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-621 (-836 |#1|))))) (-621 (-1142)) (-747)) (T -496))
+((-4146 (*1 *2 *2 *3) (-12 (-5 *2 (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4) (-241 *4 (-400 (-549))))) (-5 *3 (-621 (-836 *4))) (-14 *4 (-621 (-1142))) (-14 *5 (-747)) (-5 *1 (-496 *4 *5)))) (-3729 (*1 *2 *3) (-12 (-14 *4 (-621 (-1142))) (-14 *5 (-747)) (-5 *2 (-621 (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4) (-241 *4 (-400 (-549)))))) (-5 *1 (-496 *4 *5)) (-5 *3 (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4) (-241 *4 (-400 (-549))))))) (-1629 (*1 *2 *2) (-12 (-5 *2 (-495 (-400 (-549)) (-234 *4 (-747)) (-836 *3) (-241 *3 (-400 (-549))))) (-14 *3 (-621 (-1142))) (-14 *4 (-747)) (-5 *1 (-496 *3 *4)))) (-1464 (*1 *2 *3) (-12 (-5 *3 (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4) (-241 *4 (-400 (-549))))) (-14 *4 (-621 (-1142))) (-14 *5 (-747)) (-5 *2 (-112)) (-5 *1 (-496 *4 *5)))) (-3099 (*1 *2 *3) (-12 (-5 *3 (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4) (-241 *4 (-400 (-549))))) (-14 *4 (-621 (-1142))) (-14 *5 (-747)) (-5 *2 (-112)) (-5 *1 (-496 *4 *5)))) (-1279 (*1 *2 *3) (-12 (-5 *3 (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4) (-241 *4 (-400 (-549))))) (-14 *4 (-621 (-1142))) (-14 *5 (-747)) (-5 *2 (-112)) (-5 *1 (-496 *4 *5)))))
+(-10 -7 (-15 -1279 ((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -3099 ((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -1464 ((-112) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -1629 ((-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -3729 ((-621 (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549))))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))))) (-15 -4146 ((-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-495 (-400 (-549)) (-234 |#2| (-747)) (-836 |#1|) (-241 |#1| (-400 (-549)))) (-621 (-836 |#1|)))))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 11) (((-1147) $) NIL) (($ (-1147)) NIL) (((-1142) $) 8)) (-2387 (((-112) $ $) NIL)))
+(((-497) (-13 (-1049) (-593 (-1142)))) (T -497))
+NIL
+(-13 (-1049) (-593 (-1142)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2068 (($ $) NIL)) (-2244 (($ |#1| |#2|) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-2377 ((|#2| $) NIL)) (-2042 ((|#1| $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-3274 (($) 12 T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) 11) (($ $ $) 24)) (-2484 (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 18)))
(((-498 |#1| |#2|) (-13 (-21) (-500 |#1| |#2|)) (-21) (-823)) (T -498))
NIL
(-13 (-21) (-500 |#1| |#2|))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 12)) (-1682 (($) NIL T CONST)) (-2070 (($ $) 28)) (-2246 (($ |#1| |#2|) 25)) (-2797 (($ (-1 |#1| |#1|) $) 27)) (-1823 ((|#2| $) NIL)) (-2043 ((|#1| $) 29)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-3276 (($) 10 T CONST)) (-2389 (((-112) $ $) NIL)) (-2486 (($ $ $) 18)) (* (($ (-892) $) NIL) (($ (-747) $) 23)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 12)) (-3034 (($) NIL T CONST)) (-2068 (($ $) 28)) (-2244 (($ |#1| |#2|) 25)) (-2795 (($ (-1 |#1| |#1|) $) 27)) (-2377 ((|#2| $) NIL)) (-2042 ((|#1| $) 29)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-3274 (($) 10 T CONST)) (-2387 (((-112) $ $) NIL)) (-2484 (($ $ $) 18)) (* (($ (-892) $) NIL) (($ (-747) $) 23)))
(((-499 |#1| |#2|) (-13 (-23) (-500 |#1| |#2|)) (-23) (-823)) (T -499))
NIL
(-13 (-23) (-500 |#1| |#2|))
-((-3834 (((-112) $ $) 7)) (-2070 (($ $) 13)) (-2246 (($ |#1| |#2|) 16)) (-2797 (($ (-1 |#1| |#1|) $) 17)) (-1823 ((|#2| $) 14)) (-2043 ((|#1| $) 15)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-2389 (((-112) $ $) 6)))
-(((-500 |#1| |#2|) (-138) (-1067) (-823)) (T -500))
-((-2797 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-500 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-823)))) (-2246 (*1 *1 *2 *3) (-12 (-4 *1 (-500 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-823)))) (-2043 (*1 *2 *1) (-12 (-4 *1 (-500 *2 *3)) (-4 *3 (-823)) (-4 *2 (-1067)))) (-1823 (*1 *2 *1) (-12 (-4 *1 (-500 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-823)))) (-2070 (*1 *1 *1) (-12 (-4 *1 (-500 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-823)))))
-(-13 (-1067) (-10 -8 (-15 -2797 ($ (-1 |t#1| |t#1|) $)) (-15 -2246 ($ |t#1| |t#2|)) (-15 -2043 (|t#1| $)) (-15 -1823 (|t#2| $)) (-15 -2070 ($ $))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-1682 (($) NIL T CONST)) (-2070 (($ $) NIL)) (-2246 (($ |#1| |#2|) NIL)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1823 ((|#2| $) NIL)) (-2043 ((|#1| $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-3276 (($) NIL T CONST)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 13)) (-2486 (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL)))
+((-3832 (((-112) $ $) 7)) (-2068 (($ $) 13)) (-2244 (($ |#1| |#2|) 16)) (-2795 (($ (-1 |#1| |#1|) $) 17)) (-2377 ((|#2| $) 14)) (-2042 ((|#1| $) 15)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-2387 (((-112) $ $) 6)))
+(((-500 |#1| |#2|) (-138) (-1066) (-823)) (T -500))
+((-2795 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-500 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-823)))) (-2244 (*1 *1 *2 *3) (-12 (-4 *1 (-500 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-823)))) (-2042 (*1 *2 *1) (-12 (-4 *1 (-500 *2 *3)) (-4 *3 (-823)) (-4 *2 (-1066)))) (-2377 (*1 *2 *1) (-12 (-4 *1 (-500 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-823)))) (-2068 (*1 *1 *1) (-12 (-4 *1 (-500 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-823)))))
+(-13 (-1066) (-10 -8 (-15 -2795 ($ (-1 |t#1| |t#1|) $)) (-15 -2244 ($ |t#1| |t#2|)) (-15 -2042 (|t#1| $)) (-15 -2377 (|t#2| $)) (-15 -2068 ($ $))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3034 (($) NIL T CONST)) (-2068 (($ $) NIL)) (-2244 (($ |#1| |#2|) NIL)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-2377 ((|#2| $) NIL)) (-2042 ((|#1| $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-3274 (($) NIL T CONST)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 13)) (-2484 (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL)))
(((-501 |#1| |#2|) (-13 (-768) (-500 |#1| |#2|)) (-768) (-823)) (T -501))
NIL
(-13 (-768) (-500 |#1| |#2|))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2861 (($ $ $) 16)) (-2001 (((-3 $ "failed") $ $) 13)) (-1682 (($) NIL T CONST)) (-2070 (($ $) NIL)) (-2246 (($ |#1| |#2|) NIL)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1823 ((|#2| $) NIL)) (-2043 ((|#1| $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL)) (-3276 (($) NIL T CONST)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) NIL)) (-2486 (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4280 (($ $ $) 16)) (-2416 (((-3 $ "failed") $ $) 13)) (-3034 (($) NIL T CONST)) (-2068 (($ $) NIL)) (-2244 (($ |#1| |#2|) NIL)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-2377 ((|#2| $) NIL)) (-2042 ((|#1| $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL)) (-3274 (($) NIL T CONST)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) NIL)) (-2484 (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL)))
(((-502 |#1| |#2|) (-13 (-769) (-500 |#1| |#2|)) (-769) (-823)) (T -502))
NIL
(-13 (-769) (-500 |#1| |#2|))
-((-3834 (((-112) $ $) NIL)) (-2070 (($ $) 25)) (-2246 (($ |#1| |#2|) 22)) (-2797 (($ (-1 |#1| |#1|) $) 24)) (-1823 ((|#2| $) 27)) (-2043 ((|#1| $) 26)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 21)) (-2389 (((-112) $ $) 14)))
-(((-503 |#1| |#2|) (-500 |#1| |#2|) (-1067) (-823)) (T -503))
+((-3832 (((-112) $ $) NIL)) (-2068 (($ $) 25)) (-2244 (($ |#1| |#2|) 22)) (-2795 (($ (-1 |#1| |#1|) $) 24)) (-2377 ((|#2| $) 27)) (-2042 ((|#1| $) 26)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 21)) (-2387 (((-112) $ $) 14)))
+(((-503 |#1| |#2|) (-500 |#1| |#2|) (-1066) (-823)) (T -503))
NIL
(-500 |#1| |#2|)
-((-2686 (($ $ (-621 |#2|) (-621 |#3|)) NIL) (($ $ |#2| |#3|) 12)))
-(((-504 |#1| |#2| |#3|) (-10 -8 (-15 -2686 (|#1| |#1| |#2| |#3|)) (-15 -2686 (|#1| |#1| (-621 |#2|) (-621 |#3|)))) (-505 |#2| |#3|) (-1067) (-1180)) (T -504))
+((-2684 (($ $ (-621 |#2|) (-621 |#3|)) NIL) (($ $ |#2| |#3|) 12)))
+(((-504 |#1| |#2| |#3|) (-10 -8 (-15 -2684 (|#1| |#1| |#2| |#3|)) (-15 -2684 (|#1| |#1| (-621 |#2|) (-621 |#3|)))) (-505 |#2| |#3|) (-1066) (-1179)) (T -504))
NIL
-(-10 -8 (-15 -2686 (|#1| |#1| |#2| |#3|)) (-15 -2686 (|#1| |#1| (-621 |#2|) (-621 |#3|))))
-((-2686 (($ $ (-621 |#1|) (-621 |#2|)) 7) (($ $ |#1| |#2|) 6)))
-(((-505 |#1| |#2|) (-138) (-1067) (-1180)) (T -505))
-((-2686 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *4)) (-5 *3 (-621 *5)) (-4 *1 (-505 *4 *5)) (-4 *4 (-1067)) (-4 *5 (-1180)))) (-2686 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-505 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1180)))))
-(-13 (-10 -8 (-15 -2686 ($ $ |t#1| |t#2|)) (-15 -2686 ($ $ (-621 |t#1|) (-621 |t#2|)))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 16)) (-2212 (((-621 (-2 (|:| |gen| |#1|) (|:| -2719 |#2|))) $) 18)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3614 (((-747) $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) NIL)) (-2659 ((|#1| $) NIL)) (-1302 ((|#1| $ (-549)) 23)) (-3472 ((|#2| $ (-549)) 21)) (-3482 (($ (-1 |#1| |#1|) $) 46)) (-3904 (($ (-1 |#2| |#2|) $) 43)) (-3851 (((-1125) $) NIL)) (-2958 (($ $ $) 53 (|has| |#2| (-768)))) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 42) (($ |#1|) NIL)) (-2152 ((|#2| |#1| $) 49)) (-3276 (($) 11 T CONST)) (-2389 (((-112) $ $) 29)) (-2486 (($ $ $) 27) (($ |#1| $) 25)) (* (($ (-892) $) NIL) (($ (-747) $) 36) (($ |#2| |#1|) 31)))
-(((-506 |#1| |#2| |#3|) (-316 |#1| |#2|) (-1067) (-130) |#2|) (T -506))
+(-10 -8 (-15 -2684 (|#1| |#1| |#2| |#3|)) (-15 -2684 (|#1| |#1| (-621 |#2|) (-621 |#3|))))
+((-2684 (($ $ (-621 |#1|) (-621 |#2|)) 7) (($ $ |#1| |#2|) 6)))
+(((-505 |#1| |#2|) (-138) (-1066) (-1179)) (T -505))
+((-2684 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *4)) (-5 *3 (-621 *5)) (-4 *1 (-505 *4 *5)) (-4 *4 (-1066)) (-4 *5 (-1179)))) (-2684 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-505 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1179)))))
+(-13 (-10 -8 (-15 -2684 ($ $ |t#1| |t#2|)) (-15 -2684 ($ $ (-621 |t#1|) (-621 |t#2|)))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 16)) (-2585 (((-621 (-2 (|:| |gen| |#1|) (|:| -2717 |#2|))) $) 18)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3614 (((-747) $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) NIL)) (-2657 ((|#1| $) NIL)) (-2941 ((|#1| $ (-549)) 23)) (-3201 ((|#2| $ (-549)) 21)) (-1634 (($ (-1 |#1| |#1|) $) 46)) (-1469 (($ (-1 |#2| |#2|) $) 43)) (-3441 (((-1124) $) NIL)) (-1555 (($ $ $) 53 (|has| |#2| (-768)))) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 42) (($ |#1|) NIL)) (-4068 ((|#2| |#1| $) 49)) (-3274 (($) 11 T CONST)) (-2387 (((-112) $ $) 29)) (-2484 (($ $ $) 27) (($ |#1| $) 25)) (* (($ (-892) $) NIL) (($ (-747) $) 36) (($ |#2| |#1|) 31)))
+(((-506 |#1| |#2| |#3|) (-316 |#1| |#2|) (-1066) (-130) |#2|) (T -506))
NIL
(-316 |#1| |#2|)
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-4142 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-823)))) (-4311 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4338))) (($ $) NIL (-12 (|has| $ (-6 -4338)) (|has| |#1| (-823))))) (-3193 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-823)))) (-1584 (((-112) $ (-747)) NIL)) (-2927 (((-112) (-112)) 25)) (-2254 ((|#1| $ (-549) |#1|) 28 (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) NIL (|has| $ (-6 -4338)))) (-1717 (($ (-1 (-112) |#1|) $) 52)) (-1489 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-1585 (($ $) NIL (|has| $ (-6 -4338)))) (-3064 (($ $) NIL)) (-3745 (($ $) 56 (|has| |#1| (-1067)))) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2129 (($ |#1| $) NIL (|has| |#1| (-1067))) (($ (-1 (-112) |#1|) $) 44)) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-1879 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) NIL)) (-2883 (((-549) (-1 (-112) |#1|) $) NIL) (((-549) |#1| $) NIL (|has| |#1| (-1067))) (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1067)))) (-1337 (($ $ (-549)) 13)) (-2399 (((-747) $) 11)) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3743 (($ (-747) |#1|) 23)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) 21 (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-1303 (($ $ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) 35)) (-3890 (($ (-1 (-112) |#1| |#1|) $ $) 36) (($ $ $) NIL (|has| |#1| (-823)))) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1569 (((-549) $) 20 (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-2751 (($ $ $ (-549)) 51) (($ |#1| $ (-549)) 37)) (-2616 (($ |#1| $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-2208 (($ (-621 |#1|)) 29)) (-3646 ((|#1| $) NIL (|has| (-549) (-823)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1642 (($ $ |#1|) 19 (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 40)) (-2265 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) 16)) (-3341 ((|#1| $ (-549) |#1|) NIL) ((|#1| $ (-549)) 33) (($ $ (-1193 (-549))) NIL)) (-3531 (($ $ (-1193 (-549))) 50) (($ $ (-549)) 45)) (-2167 (($ $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2730 (($ $ $ (-549)) 41 (|has| $ (-6 -4338)))) (-2281 (($ $) 32)) (-2845 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) NIL)) (-3196 (($ $ $) 42) (($ $ |#1|) 39)) (-1952 (($ $ |#1|) NIL) (($ |#1| $) 38) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-3775 (((-747) $) 17 (|has| $ (-6 -4337)))))
-(((-507 |#1| |#2|) (-13 (-19 |#1|) (-275 |#1|) (-10 -8 (-15 -2208 ($ (-621 |#1|))) (-15 -2399 ((-747) $)) (-15 -1337 ($ $ (-549))) (-15 -2927 ((-112) (-112))))) (-1180) (-549)) (T -507))
-((-2208 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-5 *1 (-507 *3 *4)) (-14 *4 (-549)))) (-2399 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-507 *3 *4)) (-4 *3 (-1180)) (-14 *4 (-549)))) (-1337 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-507 *3 *4)) (-4 *3 (-1180)) (-14 *4 *2))) (-2927 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-507 *3 *4)) (-4 *3 (-1180)) (-14 *4 (-549)))))
-(-13 (-19 |#1|) (-275 |#1|) (-10 -8 (-15 -2208 ($ (-621 |#1|))) (-15 -2399 ((-747) $)) (-15 -1337 ($ $ (-549))) (-15 -2927 ((-112) (-112)))))
-((-3834 (((-112) $ $) NIL)) (-1423 (((-1148) $) 11)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2195 (((-1148) $) 13)) (-1927 (((-1148) $) 9)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-508) (-13 (-1050) (-10 -8 (-15 -1927 ((-1148) $)) (-15 -1423 ((-1148) $)) (-15 -2195 ((-1148) $))))) (T -508))
-((-1927 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-508)))) (-1423 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-508)))) (-2195 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-508)))))
-(-13 (-1050) (-10 -8 (-15 -1927 ((-1148) $)) (-15 -1423 ((-1148) $)) (-15 -2195 ((-1148) $))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2044 (((-112) $) NIL)) (-3214 (((-747)) NIL)) (-2906 (((-563 |#1|) $) NIL) (($ $ (-892)) NIL (|has| (-563 |#1|) (-361)))) (-3062 (((-1153 (-892) (-747)) (-549)) NIL (|has| (-563 |#1|) (-361)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3866 (((-112) $ $) NIL)) (-3614 (((-747)) NIL (|has| (-563 |#1|) (-361)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-563 |#1|) "failed") $) NIL)) (-2659 (((-563 |#1|) $) NIL)) (-3492 (($ (-1226 (-563 |#1|))) NIL)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-563 |#1|) (-361)))) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) NIL (|has| (-563 |#1|) (-361)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-2405 (($) NIL (|has| (-563 |#1|) (-361)))) (-2288 (((-112) $) NIL (|has| (-563 |#1|) (-361)))) (-3165 (($ $ (-747)) NIL (-1536 (|has| (-563 |#1|) (-143)) (|has| (-563 |#1|) (-361)))) (($ $) NIL (-1536 (|has| (-563 |#1|) (-143)) (|has| (-563 |#1|) (-361))))) (-1420 (((-112) $) NIL)) (-2088 (((-892) $) NIL (|has| (-563 |#1|) (-361))) (((-809 (-892)) $) NIL (-1536 (|has| (-563 |#1|) (-143)) (|has| (-563 |#1|) (-361))))) (-2675 (((-112) $) NIL)) (-1973 (($) NIL (|has| (-563 |#1|) (-361)))) (-4091 (((-112) $) NIL (|has| (-563 |#1|) (-361)))) (-3630 (((-563 |#1|) $) NIL) (($ $ (-892)) NIL (|has| (-563 |#1|) (-361)))) (-1681 (((-3 $ "failed") $) NIL (|has| (-563 |#1|) (-361)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3788 (((-1139 (-563 |#1|)) $) NIL) (((-1139 $) $ (-892)) NIL (|has| (-563 |#1|) (-361)))) (-1881 (((-892) $) NIL (|has| (-563 |#1|) (-361)))) (-3318 (((-1139 (-563 |#1|)) $) NIL (|has| (-563 |#1|) (-361)))) (-1983 (((-1139 (-563 |#1|)) $) NIL (|has| (-563 |#1|) (-361))) (((-3 (-1139 (-563 |#1|)) "failed") $ $) NIL (|has| (-563 |#1|) (-361)))) (-3719 (($ $ (-1139 (-563 |#1|))) NIL (|has| (-563 |#1|) (-361)))) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL (|has| (-563 |#1|) (-361)) CONST)) (-3493 (($ (-892)) NIL (|has| (-563 |#1|) (-361)))) (-3980 (((-112) $) NIL)) (-3990 (((-1087) $) NIL)) (-4248 (($) NIL (|has| (-563 |#1|) (-361)))) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) NIL (|has| (-563 |#1|) (-361)))) (-2121 (((-411 $) $) NIL)) (-3049 (((-809 (-892))) NIL) (((-892)) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3914 (((-747) $) NIL (|has| (-563 |#1|) (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| (-563 |#1|) (-143)) (|has| (-563 |#1|) (-361))))) (-2985 (((-133)) NIL)) (-3456 (($ $) NIL (|has| (-563 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-563 |#1|) (-361)))) (-3701 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-2815 (((-1139 (-563 |#1|))) NIL)) (-3170 (($) NIL (|has| (-563 |#1|) (-361)))) (-1544 (($) NIL (|has| (-563 |#1|) (-361)))) (-4263 (((-1226 (-563 |#1|)) $) NIL) (((-665 (-563 |#1|)) (-1226 $)) NIL)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (|has| (-563 |#1|) (-361)))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-563 |#1|)) NIL)) (-2210 (($ $) NIL (|has| (-563 |#1|) (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| (-563 |#1|) (-143)) (|has| (-563 |#1|) (-361))))) (-2082 (((-747)) NIL)) (-1949 (((-1226 $)) NIL) (((-1226 $) (-892)) NIL)) (-1498 (((-112) $ $) NIL)) (-1606 (((-112) $) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1933 (($ $) NIL (|has| (-563 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-563 |#1|) (-361)))) (-1702 (($ $) NIL (|has| (-563 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-563 |#1|) (-361)))) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ $) NIL) (($ $ (-563 |#1|)) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ (-563 |#1|)) NIL) (($ (-563 |#1|) $) NIL)))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-2239 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-823)))) (-2015 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4337))) (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-823))))) (-3191 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-823)))) (-2850 (((-112) $ (-747)) NIL)) (-2379 (((-112) (-112)) 25)) (-2250 ((|#1| $ (-549) |#1|) 28 (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) NIL (|has| $ (-6 -4337)))) (-3827 (($ (-1 (-112) |#1|) $) 52)) (-1488 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-2918 (($ $) NIL (|has| $ (-6 -4337)))) (-3062 (($ $) NIL)) (-3469 (($ $) 56 (|has| |#1| (-1066)))) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3546 (($ |#1| $) NIL (|has| |#1| (-1066))) (($ (-1 (-112) |#1|) $) 44)) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4336)))) (-1875 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) NIL)) (-2881 (((-549) (-1 (-112) |#1|) $) NIL) (((-549) |#1| $) NIL (|has| |#1| (-1066))) (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1066)))) (-3468 (($ $ (-549)) 13)) (-2313 (((-747) $) 11)) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-3743 (($ (-747) |#1|) 23)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) 21 (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3021 (($ $ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) 35)) (-3050 (($ (-1 (-112) |#1| |#1|) $ $) 36) (($ $ $) NIL (|has| |#1| (-823)))) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3063 (((-549) $) 20 (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-1799 (($ $ $ (-549)) 51) (($ |#1| $ (-549)) 37)) (-2613 (($ |#1| $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-2086 (($ (-621 |#1|)) 29)) (-3645 ((|#1| $) NIL (|has| (-549) (-823)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1943 (($ $ |#1|) 19 (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 40)) (-2478 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) 16)) (-3339 ((|#1| $ (-549) |#1|) NIL) ((|#1| $ (-549)) 33) (($ $ (-1192 (-549))) NIL)) (-2149 (($ $ (-1192 (-549))) 50) (($ $ (-549)) 45)) (-2162 (($ $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2049 (($ $ $ (-549)) 41 (|has| $ (-6 -4337)))) (-2279 (($ $) 32)) (-2843 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) NIL)) (-3859 (($ $ $) 42) (($ $ |#1|) 39)) (-1950 (($ $ |#1|) NIL) (($ |#1| $) 38) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-3774 (((-747) $) 17 (|has| $ (-6 -4336)))))
+(((-507 |#1| |#2|) (-13 (-19 |#1|) (-275 |#1|) (-10 -8 (-15 -2086 ($ (-621 |#1|))) (-15 -2313 ((-747) $)) (-15 -3468 ($ $ (-549))) (-15 -2379 ((-112) (-112))))) (-1179) (-549)) (T -507))
+((-2086 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-5 *1 (-507 *3 *4)) (-14 *4 (-549)))) (-2313 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-507 *3 *4)) (-4 *3 (-1179)) (-14 *4 (-549)))) (-3468 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-507 *3 *4)) (-4 *3 (-1179)) (-14 *4 *2))) (-2379 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-507 *3 *4)) (-4 *3 (-1179)) (-14 *4 (-549)))))
+(-13 (-19 |#1|) (-275 |#1|) (-10 -8 (-15 -2086 ($ (-621 |#1|))) (-15 -2313 ((-747) $)) (-15 -3468 ($ $ (-549))) (-15 -2379 ((-112) (-112)))))
+((-3832 (((-112) $ $) NIL)) (-1690 (((-1101) $) 11)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3255 (((-1101) $) 13)) (-1925 (((-1101) $) 9)) (-3845 (((-834) $) 21) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-508) (-13 (-1049) (-10 -8 (-15 -1925 ((-1101) $)) (-15 -1690 ((-1101) $)) (-15 -3255 ((-1101) $))))) (T -508))
+((-1925 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-508)))) (-1690 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-508)))) (-3255 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-508)))))
+(-13 (-1049) (-10 -8 (-15 -1925 ((-1101) $)) (-15 -1690 ((-1101) $)) (-15 -3255 ((-1101) $))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2638 (((-112) $) NIL)) (-2464 (((-747)) NIL)) (-2904 (((-563 |#1|) $) NIL) (($ $ (-892)) NIL (|has| (-563 |#1|) (-361)))) (-1597 (((-1152 (-892) (-747)) (-549)) NIL (|has| (-563 |#1|) (-361)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2680 (((-112) $ $) NIL)) (-3614 (((-747)) NIL (|has| (-563 |#1|) (-361)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-563 |#1|) "failed") $) NIL)) (-2657 (((-563 |#1|) $) NIL)) (-2397 (($ (-1225 (-563 |#1|))) NIL)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-563 |#1|) (-361)))) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) NIL (|has| (-563 |#1|) (-361)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1545 (($) NIL (|has| (-563 |#1|) (-361)))) (-1315 (((-112) $) NIL (|has| (-563 |#1|) (-361)))) (-3517 (($ $ (-747)) NIL (-1536 (|has| (-563 |#1|) (-143)) (|has| (-563 |#1|) (-361)))) (($ $) NIL (-1536 (|has| (-563 |#1|) (-143)) (|has| (-563 |#1|) (-361))))) (-1464 (((-112) $) NIL)) (-2729 (((-892) $) NIL (|has| (-563 |#1|) (-361))) (((-809 (-892)) $) NIL (-1536 (|has| (-563 |#1|) (-143)) (|has| (-563 |#1|) (-361))))) (-2297 (((-112) $) NIL)) (-1728 (($) NIL (|has| (-563 |#1|) (-361)))) (-4031 (((-112) $) NIL (|has| (-563 |#1|) (-361)))) (-2469 (((-563 |#1|) $) NIL) (($ $ (-892)) NIL (|has| (-563 |#1|) (-361)))) (-2964 (((-3 $ "failed") $) NIL (|has| (-563 |#1|) (-361)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3514 (((-1138 (-563 |#1|)) $) NIL) (((-1138 $) $ (-892)) NIL (|has| (-563 |#1|) (-361)))) (-3309 (((-892) $) NIL (|has| (-563 |#1|) (-361)))) (-4021 (((-1138 (-563 |#1|)) $) NIL (|has| (-563 |#1|) (-361)))) (-1298 (((-1138 (-563 |#1|)) $) NIL (|has| (-563 |#1|) (-361))) (((-3 (-1138 (-563 |#1|)) "failed") $ $) NIL (|has| (-563 |#1|) (-361)))) (-3098 (($ $ (-1138 (-563 |#1|))) NIL (|has| (-563 |#1|) (-361)))) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL (|has| (-563 |#1|) (-361)) CONST)) (-3494 (($ (-892)) NIL (|has| (-563 |#1|) (-361)))) (-2165 (((-112) $) NIL)) (-3988 (((-1086) $) NIL)) (-4247 (($) NIL (|has| (-563 |#1|) (-361)))) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) NIL (|has| (-563 |#1|) (-361)))) (-2119 (((-411 $) $) NIL)) (-1485 (((-809 (-892))) NIL) (((-892)) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3189 (((-747) $) NIL (|has| (-563 |#1|) (-361))) (((-3 (-747) "failed") $ $) NIL (-1536 (|has| (-563 |#1|) (-143)) (|has| (-563 |#1|) (-361))))) (-2260 (((-133)) NIL)) (-3455 (($ $) NIL (|has| (-563 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-563 |#1|) (-361)))) (-3977 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-1262 (((-1138 (-563 |#1|))) NIL)) (-2950 (($) NIL (|has| (-563 |#1|) (-361)))) (-2578 (($) NIL (|has| (-563 |#1|) (-361)))) (-1981 (((-1225 (-563 |#1|)) $) NIL) (((-665 (-563 |#1|)) (-1225 $)) NIL)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (|has| (-563 |#1|) (-361)))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-563 |#1|)) NIL)) (-2343 (($ $) NIL (|has| (-563 |#1|) (-361))) (((-3 $ "failed") $) NIL (-1536 (|has| (-563 |#1|) (-143)) (|has| (-563 |#1|) (-361))))) (-2371 (((-747)) NIL)) (-2619 (((-1225 $)) NIL) (((-1225 $) (-892)) NIL)) (-2441 (((-112) $ $) NIL)) (-1993 (((-112) $) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-3495 (($ $) NIL (|has| (-563 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-563 |#1|) (-361)))) (-1699 (($ $) NIL (|has| (-563 |#1|) (-361))) (($ $ (-747)) NIL (|has| (-563 |#1|) (-361)))) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ $) NIL) (($ $ (-563 |#1|)) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ $ (-563 |#1|)) NIL) (($ (-563 |#1|) $) NIL)))
(((-509 |#1| |#2|) (-322 (-563 |#1|)) (-892) (-892)) (T -509))
NIL
(-322 (-563 |#1|))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 ((|#1| $ (-549) (-549) |#1|) 35)) (-3537 (($ $ (-549) |#4|) NIL)) (-3815 (($ $ (-549) |#5|) NIL)) (-1682 (($) NIL T CONST)) (-4060 ((|#4| $ (-549)) NIL)) (-1879 ((|#1| $ (-549) (-549) |#1|) 34)) (-1809 ((|#1| $ (-549) (-549)) 32)) (-2989 (((-621 |#1|) $) NIL)) (-2142 (((-747) $) 28)) (-3743 (($ (-747) (-747) |#1|) 25)) (-2155 (((-747) $) 30)) (-3194 (((-112) $ (-747)) NIL)) (-1761 (((-549) $) 26)) (-2703 (((-549) $) 27)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1661 (((-549) $) 29)) (-1887 (((-549) $) 31)) (-1868 (($ (-1 |#1| |#1|) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) 38 (|has| |#1| (-1067)))) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1642 (($ $ |#1|) NIL)) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) 14)) (-3742 (($) 16)) (-3341 ((|#1| $ (-549) (-549)) 33) ((|#1| $ (-549) (-549) |#1|) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) NIL)) (-2851 ((|#5| $ (-549)) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-510 |#1| |#2| |#3| |#4| |#5|) (-56 |#1| |#4| |#5|) (-1180) (-549) (-549) (-366 |#1|) (-366 |#1|)) (T -510))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 ((|#1| $ (-549) (-549) |#1|) 35)) (-1389 (($ $ (-549) |#4|) NIL)) (-1843 (($ $ (-549) |#5|) NIL)) (-3034 (($) NIL T CONST)) (-3437 ((|#4| $ (-549)) NIL)) (-1875 ((|#1| $ (-549) (-549) |#1|) 34)) (-1807 ((|#1| $ (-549) (-549)) 32)) (-2987 (((-621 |#1|) $) NIL)) (-2140 (((-747) $) 28)) (-3743 (($ (-747) (-747) |#1|) 25)) (-2153 (((-747) $) 30)) (-1777 (((-112) $ (-747)) NIL)) (-3057 (((-549) $) 26)) (-3861 (((-549) $) 27)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1766 (((-549) $) 29)) (-2813 (((-549) $) 31)) (-1864 (($ (-1 |#1| |#1|) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) 38 (|has| |#1| (-1066)))) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-1943 (($ $ |#1|) NIL)) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) 14)) (-3288 (($) 16)) (-3339 ((|#1| $ (-549) (-549)) 33) ((|#1| $ (-549) (-549) |#1|) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) NIL)) (-1476 ((|#5| $ (-549)) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-510 |#1| |#2| |#3| |#4| |#5|) (-56 |#1| |#4| |#5|) (-1179) (-549) (-549) (-366 |#1|) (-366 |#1|)) (T -510))
NIL
(-56 |#1| |#4| |#5|)
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-4161 ((|#1| $) NIL)) (-2839 ((|#1| $) NIL)) (-1343 (($ $) NIL)) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-3174 (($ $ (-549)) 59 (|has| $ (-6 -4338)))) (-4142 (((-112) $) NIL (|has| |#1| (-823))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-4311 (($ $) NIL (-12 (|has| $ (-6 -4338)) (|has| |#1| (-823)))) (($ (-1 (-112) |#1| |#1|) $) 57 (|has| $ (-6 -4338)))) (-3193 (($ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-2838 ((|#1| $ |#1|) NIL (|has| $ (-6 -4338)))) (-4179 (($ $ $) 23 (|has| $ (-6 -4338)))) (-2780 ((|#1| $ |#1|) NIL (|has| $ (-6 -4338)))) (-4135 ((|#1| $ |#1|) 21 (|has| $ (-6 -4338)))) (-2254 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4338))) ((|#1| $ "first" |#1|) 22 (|has| $ (-6 -4338))) (($ $ "rest" $) 24 (|has| $ (-6 -4338))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) NIL (|has| $ (-6 -4338))) ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) NIL (|has| $ (-6 -4338)))) (-1717 (($ (-1 (-112) |#1|) $) NIL)) (-1489 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2830 ((|#1| $) NIL)) (-1682 (($) NIL T CONST)) (-1585 (($ $) 28 (|has| $ (-6 -4338)))) (-3064 (($ $) 29)) (-3657 (($ $) 18) (($ $ (-747)) 32)) (-3745 (($ $) 55 (|has| |#1| (-1067)))) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2129 (($ |#1| $) NIL (|has| |#1| (-1067))) (($ (-1 (-112) |#1|) $) NIL)) (-3812 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1879 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) NIL)) (-3331 (((-112) $) NIL)) (-2883 (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1067))) (((-549) |#1| $) NIL (|has| |#1| (-1067))) (((-549) (-1 (-112) |#1|) $) NIL)) (-2989 (((-621 |#1|) $) 27 (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) NIL)) (-3895 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3743 (($ (-747) |#1|) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) 31 (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-1303 (($ $ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) 58)) (-3890 (($ $ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 53 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3525 (($ |#1|) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3591 (((-621 |#1|) $) NIL)) (-2076 (((-112) $) NIL)) (-3851 (((-1125) $) 51 (|has| |#1| (-1067)))) (-3829 ((|#1| $) NIL) (($ $ (-747)) NIL)) (-2751 (($ $ $ (-549)) NIL) (($ |#1| $ (-549)) NIL)) (-2616 (($ $ $ (-549)) NIL) (($ |#1| $ (-549)) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-3646 ((|#1| $) 13) (($ $ (-747)) NIL)) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1642 (($ $ |#1|) NIL (|has| $ (-6 -4338)))) (-3016 (((-112) $) NIL)) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 12)) (-2265 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) NIL)) (-3670 (((-112) $) 17)) (-3742 (($) 16)) (-3341 ((|#1| $ "value") NIL) ((|#1| $ "first") 15) (($ $ "rest") 20) ((|#1| $ "last") NIL) (($ $ (-1193 (-549))) NIL) ((|#1| $ (-549)) NIL) ((|#1| $ (-549) |#1|) NIL)) (-3230 (((-549) $ $) NIL)) (-3531 (($ $ (-1193 (-549))) NIL) (($ $ (-549)) NIL)) (-2167 (($ $ (-1193 (-549))) NIL) (($ $ (-549)) NIL)) (-3497 (((-112) $) 34)) (-1999 (($ $) NIL)) (-2643 (($ $) NIL (|has| $ (-6 -4338)))) (-3798 (((-747) $) NIL)) (-3612 (($ $) 36)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2730 (($ $ $ (-549)) NIL (|has| $ (-6 -4338)))) (-2281 (($ $) 35)) (-2845 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 26)) (-3196 (($ $ $) 54) (($ $ |#1|) NIL)) (-1952 (($ $ $) NIL) (($ |#1| $) 10) (($ (-621 $)) NIL) (($ $ |#1|) NIL)) (-3846 (((-834) $) 46 (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) NIL)) (-1987 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) 48 (|has| |#1| (-1067)))) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-3775 (((-747) $) 9 (|has| $ (-6 -4337)))))
-(((-511 |#1| |#2|) (-642 |#1|) (-1180) (-549)) (T -511))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-4160 ((|#1| $) NIL)) (-2837 ((|#1| $) NIL)) (-1342 (($ $) NIL)) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-3327 (($ $ (-549)) 59 (|has| $ (-6 -4337)))) (-2239 (((-112) $) NIL (|has| |#1| (-823))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-2015 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-823)))) (($ (-1 (-112) |#1| |#1|) $) 57 (|has| $ (-6 -4337)))) (-3191 (($ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-2797 ((|#1| $ |#1|) NIL (|has| $ (-6 -4337)))) (-3931 (($ $ $) 23 (|has| $ (-6 -4337)))) (-1806 ((|#1| $ |#1|) NIL (|has| $ (-6 -4337)))) (-1368 ((|#1| $ |#1|) 21 (|has| $ (-6 -4337)))) (-2250 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4337))) ((|#1| $ "first" |#1|) 22 (|has| $ (-6 -4337))) (($ $ "rest" $) 24 (|has| $ (-6 -4337))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) NIL (|has| $ (-6 -4337))) ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) NIL (|has| $ (-6 -4337)))) (-3827 (($ (-1 (-112) |#1|) $) NIL)) (-1488 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2827 ((|#1| $) NIL)) (-3034 (($) NIL T CONST)) (-2918 (($ $) 28 (|has| $ (-6 -4337)))) (-3062 (($ $) 29)) (-3656 (($ $) 18) (($ $ (-747)) 32)) (-3469 (($ $) 55 (|has| |#1| (-1066)))) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3546 (($ |#1| $) NIL (|has| |#1| (-1066))) (($ (-1 (-112) |#1|) $) NIL)) (-3812 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1875 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) NIL)) (-2897 (((-112) $) NIL)) (-2881 (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1066))) (((-549) |#1| $) NIL (|has| |#1| (-1066))) (((-549) (-1 (-112) |#1|) $) NIL)) (-2987 (((-621 |#1|) $) 27 (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) NIL)) (-3585 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3743 (($ (-747) |#1|) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) 31 (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3021 (($ $ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) 58)) (-3050 (($ $ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 53 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3521 (($ |#1|) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3590 (((-621 |#1|) $) NIL)) (-3028 (((-112) $) NIL)) (-3441 (((-1124) $) 51 (|has| |#1| (-1066)))) (-3828 ((|#1| $) NIL) (($ $ (-747)) NIL)) (-1799 (($ $ $ (-549)) NIL) (($ |#1| $ (-549)) NIL)) (-2613 (($ $ $ (-549)) NIL) (($ |#1| $ (-549)) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3645 ((|#1| $) 13) (($ $ (-747)) NIL)) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1943 (($ $ |#1|) NIL (|has| $ (-6 -4337)))) (-2791 (((-112) $) NIL)) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 12)) (-2478 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) NIL)) (-2643 (((-112) $) 17)) (-3288 (($) 16)) (-3339 ((|#1| $ "value") NIL) ((|#1| $ "first") 15) (($ $ "rest") 20) ((|#1| $ "last") NIL) (($ $ (-1192 (-549))) NIL) ((|#1| $ (-549)) NIL) ((|#1| $ (-549) |#1|) NIL)) (-3541 (((-549) $ $) NIL)) (-2149 (($ $ (-1192 (-549))) NIL) (($ $ (-549)) NIL)) (-2162 (($ $ (-1192 (-549))) NIL) (($ $ (-549)) NIL)) (-2917 (((-112) $) 34)) (-2188 (($ $) NIL)) (-1829 (($ $) NIL (|has| $ (-6 -4337)))) (-3117 (((-747) $) NIL)) (-2528 (($ $) 36)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2049 (($ $ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2279 (($ $) 35)) (-2843 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 26)) (-3859 (($ $ $) 54) (($ $ |#1|) NIL)) (-1950 (($ $ $) NIL) (($ |#1| $) 10) (($ (-621 $)) NIL) (($ $ |#1|) NIL)) (-3845 (((-834) $) 46 (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) NIL)) (-3605 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) 48 (|has| |#1| (-1066)))) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-3774 (((-747) $) 9 (|has| $ (-6 -4336)))))
+(((-511 |#1| |#2|) (-642 |#1|) (-1179) (-549)) (T -511))
NIL
(-642 |#1|)
-((-3460 ((|#4| |#4|) 27)) (-3123 (((-747) |#4|) 32)) (-1323 (((-747) |#4|) 33)) (-1479 (((-621 |#3|) |#4|) 40 (|has| |#3| (-6 -4338)))) (-3849 (((-3 |#4| "failed") |#4|) 51)) (-1561 ((|#4| |#4|) 44)) (-2029 ((|#1| |#4|) 43)))
-(((-512 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3460 (|#4| |#4|)) (-15 -3123 ((-747) |#4|)) (-15 -1323 ((-747) |#4|)) (IF (|has| |#3| (-6 -4338)) (-15 -1479 ((-621 |#3|) |#4|)) |%noBranch|) (-15 -2029 (|#1| |#4|)) (-15 -1561 (|#4| |#4|)) (-15 -3849 ((-3 |#4| "failed") |#4|))) (-356) (-366 |#1|) (-366 |#1|) (-663 |#1| |#2| |#3|)) (T -512))
-((-3849 (*1 *2 *2) (|partial| -12 (-4 *3 (-356)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-512 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))) (-1561 (*1 *2 *2) (-12 (-4 *3 (-356)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-512 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))) (-2029 (*1 *2 *3) (-12 (-4 *4 (-366 *2)) (-4 *5 (-366 *2)) (-4 *2 (-356)) (-5 *1 (-512 *2 *4 *5 *3)) (-4 *3 (-663 *2 *4 *5)))) (-1479 (*1 *2 *3) (-12 (|has| *6 (-6 -4338)) (-4 *4 (-356)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-621 *6)) (-5 *1 (-512 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-1323 (*1 *2 *3) (-12 (-4 *4 (-356)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-747)) (-5 *1 (-512 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-3123 (*1 *2 *3) (-12 (-4 *4 (-356)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-747)) (-5 *1 (-512 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-3460 (*1 *2 *2) (-12 (-4 *3 (-356)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-512 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))))
-(-10 -7 (-15 -3460 (|#4| |#4|)) (-15 -3123 ((-747) |#4|)) (-15 -1323 ((-747) |#4|)) (IF (|has| |#3| (-6 -4338)) (-15 -1479 ((-621 |#3|) |#4|)) |%noBranch|) (-15 -2029 (|#1| |#4|)) (-15 -1561 (|#4| |#4|)) (-15 -3849 ((-3 |#4| "failed") |#4|)))
-((-3460 ((|#8| |#4|) 20)) (-1479 (((-621 |#3|) |#4|) 29 (|has| |#7| (-6 -4338)))) (-3849 (((-3 |#8| "failed") |#4|) 23)))
-(((-513 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3460 (|#8| |#4|)) (-15 -3849 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4338)) (-15 -1479 ((-621 |#3|) |#4|)) |%noBranch|)) (-541) (-366 |#1|) (-366 |#1|) (-663 |#1| |#2| |#3|) (-963 |#1|) (-366 |#5|) (-366 |#5|) (-663 |#5| |#6| |#7|)) (T -513))
-((-1479 (*1 *2 *3) (-12 (|has| *9 (-6 -4338)) (-4 *4 (-541)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-4 *7 (-963 *4)) (-4 *8 (-366 *7)) (-4 *9 (-366 *7)) (-5 *2 (-621 *6)) (-5 *1 (-513 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-663 *4 *5 *6)) (-4 *10 (-663 *7 *8 *9)))) (-3849 (*1 *2 *3) (|partial| -12 (-4 *4 (-541)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-4 *7 (-963 *4)) (-4 *2 (-663 *7 *8 *9)) (-5 *1 (-513 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-663 *4 *5 *6)) (-4 *8 (-366 *7)) (-4 *9 (-366 *7)))) (-3460 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-4 *7 (-963 *4)) (-4 *2 (-663 *7 *8 *9)) (-5 *1 (-513 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-663 *4 *5 *6)) (-4 *8 (-366 *7)) (-4 *9 (-366 *7)))))
-(-10 -7 (-15 -3460 (|#8| |#4|)) (-15 -3849 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4338)) (-15 -1479 ((-621 |#3|) |#4|)) |%noBranch|))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3769 (($ (-747) (-747)) NIL)) (-1648 (($ $ $) NIL)) (-3682 (($ (-582 |#1| |#3|)) NIL) (($ $) NIL)) (-2092 (((-112) $) NIL)) (-4206 (($ $ (-549) (-549)) 12)) (-1769 (($ $ (-549) (-549)) NIL)) (-1624 (($ $ (-549) (-549) (-549) (-549)) NIL)) (-4218 (($ $) NIL)) (-2340 (((-112) $) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-1756 (($ $ (-549) (-549) $) NIL)) (-2254 ((|#1| $ (-549) (-549) |#1|) NIL) (($ $ (-621 (-549)) (-621 (-549)) $) NIL)) (-3537 (($ $ (-549) (-582 |#1| |#3|)) NIL)) (-3815 (($ $ (-549) (-582 |#1| |#2|)) NIL)) (-2228 (($ (-747) |#1|) NIL)) (-1682 (($) NIL T CONST)) (-3460 (($ $) 21 (|has| |#1| (-300)))) (-4060 (((-582 |#1| |#3|) $ (-549)) NIL)) (-3123 (((-747) $) 24 (|has| |#1| (-541)))) (-1879 ((|#1| $ (-549) (-549) |#1|) NIL)) (-1809 ((|#1| $ (-549) (-549)) NIL)) (-2989 (((-621 |#1|) $) NIL)) (-1323 (((-747) $) 26 (|has| |#1| (-541)))) (-1479 (((-621 (-582 |#1| |#2|)) $) 29 (|has| |#1| (-541)))) (-2142 (((-747) $) NIL)) (-3743 (($ (-747) (-747) |#1|) NIL)) (-2155 (((-747) $) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-1929 ((|#1| $) 19 (|has| |#1| (-6 (-4339 "*"))))) (-1761 (((-549) $) 10)) (-2703 (((-549) $) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1661 (((-549) $) 11)) (-1887 (((-549) $) NIL)) (-3946 (($ (-621 (-621 |#1|))) NIL)) (-1868 (($ (-1 |#1| |#1|) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2913 (((-621 (-621 |#1|)) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3849 (((-3 $ "failed") $) 33 (|has| |#1| (-356)))) (-3571 (($ $ $) NIL)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1642 (($ $ |#1|) NIL)) (-2042 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541)))) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#1| $ (-549) (-549)) NIL) ((|#1| $ (-549) (-549) |#1|) NIL) (($ $ (-621 (-549)) (-621 (-549))) NIL)) (-2133 (($ (-621 |#1|)) NIL) (($ (-621 $)) NIL)) (-1757 (((-112) $) NIL)) (-2029 ((|#1| $) 17 (|has| |#1| (-6 (-4339 "*"))))) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) NIL)) (-2851 (((-582 |#1| |#2|) $ (-549)) NIL)) (-3846 (($ (-582 |#1| |#2|)) NIL) (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2974 (((-112) $) NIL)) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2500 (($ $ $) NIL) (($ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-549) $) NIL) (((-582 |#1| |#2|) $ (-582 |#1| |#2|)) NIL) (((-582 |#1| |#3|) (-582 |#1| |#3|) $) NIL)) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
+((-3474 ((|#4| |#4|) 27)) (-3121 (((-747) |#4|) 32)) (-4303 (((-747) |#4|) 33)) (-3290 (((-621 |#3|) |#4|) 40 (|has| |#3| (-6 -4337)))) (-1299 (((-3 |#4| "failed") |#4|) 51)) (-3592 ((|#4| |#4|) 44)) (-2842 ((|#1| |#4|) 43)))
+(((-512 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3474 (|#4| |#4|)) (-15 -3121 ((-747) |#4|)) (-15 -4303 ((-747) |#4|)) (IF (|has| |#3| (-6 -4337)) (-15 -3290 ((-621 |#3|) |#4|)) |%noBranch|) (-15 -2842 (|#1| |#4|)) (-15 -3592 (|#4| |#4|)) (-15 -1299 ((-3 |#4| "failed") |#4|))) (-356) (-366 |#1|) (-366 |#1|) (-663 |#1| |#2| |#3|)) (T -512))
+((-1299 (*1 *2 *2) (|partial| -12 (-4 *3 (-356)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-512 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))) (-3592 (*1 *2 *2) (-12 (-4 *3 (-356)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-512 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))) (-2842 (*1 *2 *3) (-12 (-4 *4 (-366 *2)) (-4 *5 (-366 *2)) (-4 *2 (-356)) (-5 *1 (-512 *2 *4 *5 *3)) (-4 *3 (-663 *2 *4 *5)))) (-3290 (*1 *2 *3) (-12 (|has| *6 (-6 -4337)) (-4 *4 (-356)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-621 *6)) (-5 *1 (-512 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-4303 (*1 *2 *3) (-12 (-4 *4 (-356)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-747)) (-5 *1 (-512 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-3121 (*1 *2 *3) (-12 (-4 *4 (-356)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-747)) (-5 *1 (-512 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-3474 (*1 *2 *2) (-12 (-4 *3 (-356)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-512 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))))
+(-10 -7 (-15 -3474 (|#4| |#4|)) (-15 -3121 ((-747) |#4|)) (-15 -4303 ((-747) |#4|)) (IF (|has| |#3| (-6 -4337)) (-15 -3290 ((-621 |#3|) |#4|)) |%noBranch|) (-15 -2842 (|#1| |#4|)) (-15 -3592 (|#4| |#4|)) (-15 -1299 ((-3 |#4| "failed") |#4|)))
+((-3474 ((|#8| |#4|) 20)) (-3290 (((-621 |#3|) |#4|) 29 (|has| |#7| (-6 -4337)))) (-1299 (((-3 |#8| "failed") |#4|) 23)))
+(((-513 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3474 (|#8| |#4|)) (-15 -1299 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4337)) (-15 -3290 ((-621 |#3|) |#4|)) |%noBranch|)) (-541) (-366 |#1|) (-366 |#1|) (-663 |#1| |#2| |#3|) (-963 |#1|) (-366 |#5|) (-366 |#5|) (-663 |#5| |#6| |#7|)) (T -513))
+((-3290 (*1 *2 *3) (-12 (|has| *9 (-6 -4337)) (-4 *4 (-541)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-4 *7 (-963 *4)) (-4 *8 (-366 *7)) (-4 *9 (-366 *7)) (-5 *2 (-621 *6)) (-5 *1 (-513 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-663 *4 *5 *6)) (-4 *10 (-663 *7 *8 *9)))) (-1299 (*1 *2 *3) (|partial| -12 (-4 *4 (-541)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-4 *7 (-963 *4)) (-4 *2 (-663 *7 *8 *9)) (-5 *1 (-513 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-663 *4 *5 *6)) (-4 *8 (-366 *7)) (-4 *9 (-366 *7)))) (-3474 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-4 *7 (-963 *4)) (-4 *2 (-663 *7 *8 *9)) (-5 *1 (-513 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-663 *4 *5 *6)) (-4 *8 (-366 *7)) (-4 *9 (-366 *7)))))
+(-10 -7 (-15 -3474 (|#8| |#4|)) (-15 -1299 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4337)) (-15 -3290 ((-621 |#3|) |#4|)) |%noBranch|))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3768 (($ (-747) (-747)) NIL)) (-1976 (($ $ $) NIL)) (-4235 (($ (-582 |#1| |#3|)) NIL) (($ $) NIL)) (-1831 (((-112) $) NIL)) (-2558 (($ $ (-549) (-549)) 12)) (-2600 (($ $ (-549) (-549)) NIL)) (-3036 (($ $ (-549) (-549) (-549) (-549)) NIL)) (-4179 (($ $) NIL)) (-1295 (((-112) $) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-3868 (($ $ (-549) (-549) $) NIL)) (-2250 ((|#1| $ (-549) (-549) |#1|) NIL) (($ $ (-621 (-549)) (-621 (-549)) $) NIL)) (-1389 (($ $ (-549) (-582 |#1| |#3|)) NIL)) (-1843 (($ $ (-549) (-582 |#1| |#2|)) NIL)) (-2411 (($ (-747) |#1|) NIL)) (-3034 (($) NIL T CONST)) (-3474 (($ $) 21 (|has| |#1| (-300)))) (-3437 (((-582 |#1| |#3|) $ (-549)) NIL)) (-3121 (((-747) $) 24 (|has| |#1| (-541)))) (-1875 ((|#1| $ (-549) (-549) |#1|) NIL)) (-1807 ((|#1| $ (-549) (-549)) NIL)) (-2987 (((-621 |#1|) $) NIL)) (-4303 (((-747) $) 26 (|has| |#1| (-541)))) (-3290 (((-621 (-582 |#1| |#2|)) $) 29 (|has| |#1| (-541)))) (-2140 (((-747) $) NIL)) (-3743 (($ (-747) (-747) |#1|) NIL)) (-2153 (((-747) $) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-4239 ((|#1| $) 19 (|has| |#1| (-6 (-4338 "*"))))) (-3057 (((-549) $) 10)) (-3861 (((-549) $) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1766 (((-549) $) 11)) (-2813 (((-549) $) NIL)) (-3944 (($ (-621 (-621 |#1|))) NIL)) (-1864 (($ (-1 |#1| |#1|) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-1987 (((-621 (-621 |#1|)) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-1299 (((-3 $ "failed") $) 33 (|has| |#1| (-356)))) (-3516 (($ $ $) NIL)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-1943 (($ $ |#1|) NIL)) (-2040 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541)))) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#1| $ (-549) (-549)) NIL) ((|#1| $ (-549) (-549) |#1|) NIL) (($ $ (-621 (-549)) (-621 (-549))) NIL)) (-2874 (($ (-621 |#1|)) NIL) (($ (-621 $)) NIL)) (-2839 (((-112) $) NIL)) (-2842 ((|#1| $) 17 (|has| |#1| (-6 (-4338 "*"))))) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) NIL)) (-1476 (((-582 |#1| |#2|) $ (-549)) NIL)) (-3845 (($ (-582 |#1| |#2|)) NIL) (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-3752 (((-112) $) NIL)) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2498 (($ $ $) NIL) (($ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-549) $) NIL) (((-582 |#1| |#2|) $ (-582 |#1| |#2|)) NIL) (((-582 |#1| |#3|) (-582 |#1| |#3|) $) NIL)) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
(((-514 |#1| |#2| |#3|) (-663 |#1| (-582 |#1| |#3|) (-582 |#1| |#2|)) (-1018) (-549) (-549)) (T -514))
NIL
(-663 |#1| (-582 |#1| |#3|) (-582 |#1| |#2|))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-1294 (((-621 (-1179)) $) 13)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL) (($ (-621 (-1179))) 11)) (-2389 (((-112) $ $) NIL)))
-(((-515) (-13 (-1050) (-10 -8 (-15 -3846 ($ (-621 (-1179)))) (-15 -1294 ((-621 (-1179)) $))))) (T -515))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-621 (-1179))) (-5 *1 (-515)))) (-1294 (*1 *2 *1) (-12 (-5 *2 (-621 (-1179))) (-5 *1 (-515)))))
-(-13 (-1050) (-10 -8 (-15 -3846 ($ (-621 (-1179)))) (-15 -1294 ((-621 (-1179)) $))))
-((-3834 (((-112) $ $) NIL)) (-4058 (((-1148) $) 13)) (-3851 (((-1125) $) NIL)) (-4093 (((-1143) $) 11)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-516) (-13 (-1050) (-10 -8 (-15 -4093 ((-1143) $)) (-15 -4058 ((-1148) $))))) (T -516))
-((-4093 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-516)))) (-4058 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-516)))))
-(-13 (-1050) (-10 -8 (-15 -4093 ((-1143) $)) (-15 -4058 ((-1148) $))))
-((-2618 (((-1087) $ (-128)) 17)))
-(((-517 |#1|) (-10 -8 (-15 -2618 ((-1087) |#1| (-128)))) (-518)) (T -517))
-NIL
-(-10 -8 (-15 -2618 ((-1087) |#1| (-128))))
-((-2618 (((-1087) $ (-128)) 7)) (-3447 (((-1087) $) 8)) (-3578 (($ $) 6)))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3551 (((-621 (-1178)) $) 13)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 20) (((-1147) $) NIL) (($ (-1147)) NIL) (($ (-621 (-1178))) 11)) (-2387 (((-112) $ $) NIL)))
+(((-515) (-13 (-1049) (-10 -8 (-15 -3845 ($ (-621 (-1178)))) (-15 -3551 ((-621 (-1178)) $))))) (T -515))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-621 (-1178))) (-5 *1 (-515)))) (-3551 (*1 *2 *1) (-12 (-5 *2 (-621 (-1178))) (-5 *1 (-515)))))
+(-13 (-1049) (-10 -8 (-15 -3845 ($ (-621 (-1178)))) (-15 -3551 ((-621 (-1178)) $))))
+((-3832 (((-112) $ $) NIL)) (-1313 (((-1101) $) 14)) (-3441 (((-1124) $) NIL)) (-4211 (((-1142) $) 11)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 21) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-516) (-13 (-1049) (-10 -8 (-15 -4211 ((-1142) $)) (-15 -1313 ((-1101) $))))) (T -516))
+((-4211 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-516)))) (-1313 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-516)))))
+(-13 (-1049) (-10 -8 (-15 -4211 ((-1142) $)) (-15 -1313 ((-1101) $))))
+((-3322 (((-1086) $ (-128)) 17)))
+(((-517 |#1|) (-10 -8 (-15 -3322 ((-1086) |#1| (-128)))) (-518)) (T -517))
+NIL
+(-10 -8 (-15 -3322 ((-1086) |#1| (-128))))
+((-3322 (((-1086) $ (-128)) 7)) (-1800 (((-1086) $) 8)) (-2384 (($ $) 6)))
(((-518) (-138)) (T -518))
-((-3447 (*1 *2 *1) (-12 (-4 *1 (-518)) (-5 *2 (-1087)))) (-2618 (*1 *2 *1 *3) (-12 (-4 *1 (-518)) (-5 *3 (-128)) (-5 *2 (-1087)))))
-(-13 (-171) (-10 -8 (-15 -3447 ((-1087) $)) (-15 -2618 ((-1087) $ (-128)))))
+((-1800 (*1 *2 *1) (-12 (-4 *1 (-518)) (-5 *2 (-1086)))) (-3322 (*1 *2 *1 *3) (-12 (-4 *1 (-518)) (-5 *3 (-128)) (-5 *2 (-1086)))))
+(-13 (-171) (-10 -8 (-15 -1800 ((-1086) $)) (-15 -3322 ((-1086) $ (-128)))))
(((-171) . T))
-((-3407 (((-1139 |#1|) (-747)) 76)) (-2906 (((-1226 |#1|) (-1226 |#1|) (-892)) 69)) (-1719 (((-1231) (-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))) |#1|) 84)) (-2972 (((-1226 |#1|) (-1226 |#1|) (-747)) 36)) (-3239 (((-1226 |#1|) (-892)) 71)) (-2668 (((-1226 |#1|) (-1226 |#1|) (-549)) 24)) (-3028 (((-1139 |#1|) (-1226 |#1|)) 77)) (-1973 (((-1226 |#1|) (-892)) 95)) (-4091 (((-112) (-1226 |#1|)) 80)) (-3630 (((-1226 |#1|) (-1226 |#1|) (-892)) 62)) (-3788 (((-1139 |#1|) (-1226 |#1|)) 89)) (-1881 (((-892) (-1226 |#1|)) 59)) (-1992 (((-1226 |#1|) (-1226 |#1|)) 30)) (-3493 (((-1226 |#1|) (-892) (-892)) 97)) (-3645 (((-1226 |#1|) (-1226 |#1|) (-1087) (-1087)) 23)) (-3009 (((-1226 |#1|) (-1226 |#1|) (-747) (-1087)) 37)) (-1949 (((-1226 (-1226 |#1|)) (-892)) 94)) (-2513 (((-1226 |#1|) (-1226 |#1|) (-1226 |#1|)) 81)) (** (((-1226 |#1|) (-1226 |#1|) (-549)) 45)) (* (((-1226 |#1|) (-1226 |#1|) (-1226 |#1|)) 25)))
-(((-519 |#1|) (-10 -7 (-15 -1719 ((-1231) (-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))) |#1|)) (-15 -3239 ((-1226 |#1|) (-892))) (-15 -3493 ((-1226 |#1|) (-892) (-892))) (-15 -3028 ((-1139 |#1|) (-1226 |#1|))) (-15 -3407 ((-1139 |#1|) (-747))) (-15 -3009 ((-1226 |#1|) (-1226 |#1|) (-747) (-1087))) (-15 -2972 ((-1226 |#1|) (-1226 |#1|) (-747))) (-15 -3645 ((-1226 |#1|) (-1226 |#1|) (-1087) (-1087))) (-15 -2668 ((-1226 |#1|) (-1226 |#1|) (-549))) (-15 ** ((-1226 |#1|) (-1226 |#1|) (-549))) (-15 * ((-1226 |#1|) (-1226 |#1|) (-1226 |#1|))) (-15 -2513 ((-1226 |#1|) (-1226 |#1|) (-1226 |#1|))) (-15 -3630 ((-1226 |#1|) (-1226 |#1|) (-892))) (-15 -2906 ((-1226 |#1|) (-1226 |#1|) (-892))) (-15 -1992 ((-1226 |#1|) (-1226 |#1|))) (-15 -1881 ((-892) (-1226 |#1|))) (-15 -4091 ((-112) (-1226 |#1|))) (-15 -1949 ((-1226 (-1226 |#1|)) (-892))) (-15 -1973 ((-1226 |#1|) (-892))) (-15 -3788 ((-1139 |#1|) (-1226 |#1|)))) (-342)) (T -519))
-((-3788 (*1 *2 *3) (-12 (-5 *3 (-1226 *4)) (-4 *4 (-342)) (-5 *2 (-1139 *4)) (-5 *1 (-519 *4)))) (-1973 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1226 *4)) (-5 *1 (-519 *4)) (-4 *4 (-342)))) (-1949 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1226 (-1226 *4))) (-5 *1 (-519 *4)) (-4 *4 (-342)))) (-4091 (*1 *2 *3) (-12 (-5 *3 (-1226 *4)) (-4 *4 (-342)) (-5 *2 (-112)) (-5 *1 (-519 *4)))) (-1881 (*1 *2 *3) (-12 (-5 *3 (-1226 *4)) (-4 *4 (-342)) (-5 *2 (-892)) (-5 *1 (-519 *4)))) (-1992 (*1 *2 *2) (-12 (-5 *2 (-1226 *3)) (-4 *3 (-342)) (-5 *1 (-519 *3)))) (-2906 (*1 *2 *2 *3) (-12 (-5 *2 (-1226 *4)) (-5 *3 (-892)) (-4 *4 (-342)) (-5 *1 (-519 *4)))) (-3630 (*1 *2 *2 *3) (-12 (-5 *2 (-1226 *4)) (-5 *3 (-892)) (-4 *4 (-342)) (-5 *1 (-519 *4)))) (-2513 (*1 *2 *2 *2) (-12 (-5 *2 (-1226 *3)) (-4 *3 (-342)) (-5 *1 (-519 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1226 *3)) (-4 *3 (-342)) (-5 *1 (-519 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1226 *4)) (-5 *3 (-549)) (-4 *4 (-342)) (-5 *1 (-519 *4)))) (-2668 (*1 *2 *2 *3) (-12 (-5 *2 (-1226 *4)) (-5 *3 (-549)) (-4 *4 (-342)) (-5 *1 (-519 *4)))) (-3645 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1226 *4)) (-5 *3 (-1087)) (-4 *4 (-342)) (-5 *1 (-519 *4)))) (-2972 (*1 *2 *2 *3) (-12 (-5 *2 (-1226 *4)) (-5 *3 (-747)) (-4 *4 (-342)) (-5 *1 (-519 *4)))) (-3009 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-1226 *5)) (-5 *3 (-747)) (-5 *4 (-1087)) (-4 *5 (-342)) (-5 *1 (-519 *5)))) (-3407 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1139 *4)) (-5 *1 (-519 *4)) (-4 *4 (-342)))) (-3028 (*1 *2 *3) (-12 (-5 *3 (-1226 *4)) (-4 *4 (-342)) (-5 *2 (-1139 *4)) (-5 *1 (-519 *4)))) (-3493 (*1 *2 *3 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1226 *4)) (-5 *1 (-519 *4)) (-4 *4 (-342)))) (-3239 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1226 *4)) (-5 *1 (-519 *4)) (-4 *4 (-342)))) (-1719 (*1 *2 *3 *4) (-12 (-5 *3 (-1226 (-621 (-2 (|:| -4161 *4) (|:| -3493 (-1087)))))) (-4 *4 (-342)) (-5 *2 (-1231)) (-5 *1 (-519 *4)))))
-(-10 -7 (-15 -1719 ((-1231) (-1226 (-621 (-2 (|:| -4161 |#1|) (|:| -3493 (-1087))))) |#1|)) (-15 -3239 ((-1226 |#1|) (-892))) (-15 -3493 ((-1226 |#1|) (-892) (-892))) (-15 -3028 ((-1139 |#1|) (-1226 |#1|))) (-15 -3407 ((-1139 |#1|) (-747))) (-15 -3009 ((-1226 |#1|) (-1226 |#1|) (-747) (-1087))) (-15 -2972 ((-1226 |#1|) (-1226 |#1|) (-747))) (-15 -3645 ((-1226 |#1|) (-1226 |#1|) (-1087) (-1087))) (-15 -2668 ((-1226 |#1|) (-1226 |#1|) (-549))) (-15 ** ((-1226 |#1|) (-1226 |#1|) (-549))) (-15 * ((-1226 |#1|) (-1226 |#1|) (-1226 |#1|))) (-15 -2513 ((-1226 |#1|) (-1226 |#1|) (-1226 |#1|))) (-15 -3630 ((-1226 |#1|) (-1226 |#1|) (-892))) (-15 -2906 ((-1226 |#1|) (-1226 |#1|) (-892))) (-15 -1992 ((-1226 |#1|) (-1226 |#1|))) (-15 -1881 ((-892) (-1226 |#1|))) (-15 -4091 ((-112) (-1226 |#1|))) (-15 -1949 ((-1226 (-1226 |#1|)) (-892))) (-15 -1973 ((-1226 |#1|) (-892))) (-15 -3788 ((-1139 |#1|) (-1226 |#1|))))
-((-1434 (((-1 |#1| |#1|) |#1|) 11)) (-3012 (((-1 |#1| |#1|)) 10)))
-(((-520 |#1|) (-10 -7 (-15 -3012 ((-1 |#1| |#1|))) (-15 -1434 ((-1 |#1| |#1|) |#1|))) (-13 (-703) (-25))) (T -520))
-((-1434 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-520 *3)) (-4 *3 (-13 (-703) (-25))))) (-3012 (*1 *2) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-520 *3)) (-4 *3 (-13 (-703) (-25))))))
-(-10 -7 (-15 -3012 ((-1 |#1| |#1|))) (-15 -1434 ((-1 |#1| |#1|) |#1|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2861 (($ $ $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2070 (($ $) NIL)) (-2246 (($ (-747) |#1|) NIL)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-2797 (($ (-1 (-747) (-747)) $) NIL)) (-1823 ((|#1| $) NIL)) (-2043 (((-747) $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 20)) (-3276 (($) NIL T CONST)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) NIL)) (-2486 (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL)))
+((-1748 (((-1138 |#1|) (-747)) 76)) (-2904 (((-1225 |#1|) (-1225 |#1|) (-892)) 69)) (-2868 (((-1230) (-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))) |#1|) 84)) (-3611 (((-1225 |#1|) (-1225 |#1|) (-747)) 36)) (-3237 (((-1225 |#1|) (-892)) 71)) (-3049 (((-1225 |#1|) (-1225 |#1|) (-549)) 24)) (-2443 (((-1138 |#1|) (-1225 |#1|)) 77)) (-1728 (((-1225 |#1|) (-892)) 95)) (-4031 (((-112) (-1225 |#1|)) 80)) (-2469 (((-1225 |#1|) (-1225 |#1|) (-892)) 62)) (-3514 (((-1138 |#1|) (-1225 |#1|)) 89)) (-3309 (((-892) (-1225 |#1|)) 59)) (-1990 (((-1225 |#1|) (-1225 |#1|)) 30)) (-3494 (((-1225 |#1|) (-892) (-892)) 97)) (-4154 (((-1225 |#1|) (-1225 |#1|) (-1086) (-1086)) 23)) (-3490 (((-1225 |#1|) (-1225 |#1|) (-747) (-1086)) 37)) (-2619 (((-1225 (-1225 |#1|)) (-892)) 94)) (-2511 (((-1225 |#1|) (-1225 |#1|) (-1225 |#1|)) 81)) (** (((-1225 |#1|) (-1225 |#1|) (-549)) 45)) (* (((-1225 |#1|) (-1225 |#1|) (-1225 |#1|)) 25)))
+(((-519 |#1|) (-10 -7 (-15 -2868 ((-1230) (-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))) |#1|)) (-15 -3237 ((-1225 |#1|) (-892))) (-15 -3494 ((-1225 |#1|) (-892) (-892))) (-15 -2443 ((-1138 |#1|) (-1225 |#1|))) (-15 -1748 ((-1138 |#1|) (-747))) (-15 -3490 ((-1225 |#1|) (-1225 |#1|) (-747) (-1086))) (-15 -3611 ((-1225 |#1|) (-1225 |#1|) (-747))) (-15 -4154 ((-1225 |#1|) (-1225 |#1|) (-1086) (-1086))) (-15 -3049 ((-1225 |#1|) (-1225 |#1|) (-549))) (-15 ** ((-1225 |#1|) (-1225 |#1|) (-549))) (-15 * ((-1225 |#1|) (-1225 |#1|) (-1225 |#1|))) (-15 -2511 ((-1225 |#1|) (-1225 |#1|) (-1225 |#1|))) (-15 -2469 ((-1225 |#1|) (-1225 |#1|) (-892))) (-15 -2904 ((-1225 |#1|) (-1225 |#1|) (-892))) (-15 -1990 ((-1225 |#1|) (-1225 |#1|))) (-15 -3309 ((-892) (-1225 |#1|))) (-15 -4031 ((-112) (-1225 |#1|))) (-15 -2619 ((-1225 (-1225 |#1|)) (-892))) (-15 -1728 ((-1225 |#1|) (-892))) (-15 -3514 ((-1138 |#1|) (-1225 |#1|)))) (-342)) (T -519))
+((-3514 (*1 *2 *3) (-12 (-5 *3 (-1225 *4)) (-4 *4 (-342)) (-5 *2 (-1138 *4)) (-5 *1 (-519 *4)))) (-1728 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1225 *4)) (-5 *1 (-519 *4)) (-4 *4 (-342)))) (-2619 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1225 (-1225 *4))) (-5 *1 (-519 *4)) (-4 *4 (-342)))) (-4031 (*1 *2 *3) (-12 (-5 *3 (-1225 *4)) (-4 *4 (-342)) (-5 *2 (-112)) (-5 *1 (-519 *4)))) (-3309 (*1 *2 *3) (-12 (-5 *3 (-1225 *4)) (-4 *4 (-342)) (-5 *2 (-892)) (-5 *1 (-519 *4)))) (-1990 (*1 *2 *2) (-12 (-5 *2 (-1225 *3)) (-4 *3 (-342)) (-5 *1 (-519 *3)))) (-2904 (*1 *2 *2 *3) (-12 (-5 *2 (-1225 *4)) (-5 *3 (-892)) (-4 *4 (-342)) (-5 *1 (-519 *4)))) (-2469 (*1 *2 *2 *3) (-12 (-5 *2 (-1225 *4)) (-5 *3 (-892)) (-4 *4 (-342)) (-5 *1 (-519 *4)))) (-2511 (*1 *2 *2 *2) (-12 (-5 *2 (-1225 *3)) (-4 *3 (-342)) (-5 *1 (-519 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1225 *3)) (-4 *3 (-342)) (-5 *1 (-519 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1225 *4)) (-5 *3 (-549)) (-4 *4 (-342)) (-5 *1 (-519 *4)))) (-3049 (*1 *2 *2 *3) (-12 (-5 *2 (-1225 *4)) (-5 *3 (-549)) (-4 *4 (-342)) (-5 *1 (-519 *4)))) (-4154 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1225 *4)) (-5 *3 (-1086)) (-4 *4 (-342)) (-5 *1 (-519 *4)))) (-3611 (*1 *2 *2 *3) (-12 (-5 *2 (-1225 *4)) (-5 *3 (-747)) (-4 *4 (-342)) (-5 *1 (-519 *4)))) (-3490 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-1225 *5)) (-5 *3 (-747)) (-5 *4 (-1086)) (-4 *5 (-342)) (-5 *1 (-519 *5)))) (-1748 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1138 *4)) (-5 *1 (-519 *4)) (-4 *4 (-342)))) (-2443 (*1 *2 *3) (-12 (-5 *3 (-1225 *4)) (-4 *4 (-342)) (-5 *2 (-1138 *4)) (-5 *1 (-519 *4)))) (-3494 (*1 *2 *3 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1225 *4)) (-5 *1 (-519 *4)) (-4 *4 (-342)))) (-3237 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1225 *4)) (-5 *1 (-519 *4)) (-4 *4 (-342)))) (-2868 (*1 *2 *3 *4) (-12 (-5 *3 (-1225 (-621 (-2 (|:| -4160 *4) (|:| -3494 (-1086)))))) (-4 *4 (-342)) (-5 *2 (-1230)) (-5 *1 (-519 *4)))))
+(-10 -7 (-15 -2868 ((-1230) (-1225 (-621 (-2 (|:| -4160 |#1|) (|:| -3494 (-1086))))) |#1|)) (-15 -3237 ((-1225 |#1|) (-892))) (-15 -3494 ((-1225 |#1|) (-892) (-892))) (-15 -2443 ((-1138 |#1|) (-1225 |#1|))) (-15 -1748 ((-1138 |#1|) (-747))) (-15 -3490 ((-1225 |#1|) (-1225 |#1|) (-747) (-1086))) (-15 -3611 ((-1225 |#1|) (-1225 |#1|) (-747))) (-15 -4154 ((-1225 |#1|) (-1225 |#1|) (-1086) (-1086))) (-15 -3049 ((-1225 |#1|) (-1225 |#1|) (-549))) (-15 ** ((-1225 |#1|) (-1225 |#1|) (-549))) (-15 * ((-1225 |#1|) (-1225 |#1|) (-1225 |#1|))) (-15 -2511 ((-1225 |#1|) (-1225 |#1|) (-1225 |#1|))) (-15 -2469 ((-1225 |#1|) (-1225 |#1|) (-892))) (-15 -2904 ((-1225 |#1|) (-1225 |#1|) (-892))) (-15 -1990 ((-1225 |#1|) (-1225 |#1|))) (-15 -3309 ((-892) (-1225 |#1|))) (-15 -4031 ((-112) (-1225 |#1|))) (-15 -2619 ((-1225 (-1225 |#1|)) (-892))) (-15 -1728 ((-1225 |#1|) (-892))) (-15 -3514 ((-1138 |#1|) (-1225 |#1|))))
+((-1433 (((-1 |#1| |#1|) |#1|) 11)) (-3668 (((-1 |#1| |#1|)) 10)))
+(((-520 |#1|) (-10 -7 (-15 -3668 ((-1 |#1| |#1|))) (-15 -1433 ((-1 |#1| |#1|) |#1|))) (-13 (-703) (-25))) (T -520))
+((-1433 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-520 *3)) (-4 *3 (-13 (-703) (-25))))) (-3668 (*1 *2) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-520 *3)) (-4 *3 (-13 (-703) (-25))))))
+(-10 -7 (-15 -3668 ((-1 |#1| |#1|))) (-15 -1433 ((-1 |#1| |#1|) |#1|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4280 (($ $ $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2068 (($ $) NIL)) (-2244 (($ (-747) |#1|) NIL)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-2795 (($ (-1 (-747) (-747)) $) NIL)) (-2377 ((|#1| $) NIL)) (-2042 (((-747) $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 20)) (-3274 (($) NIL T CONST)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) NIL)) (-2484 (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL)))
(((-521 |#1|) (-13 (-769) (-500 (-747) |#1|)) (-823)) (T -521))
NIL
(-13 (-769) (-500 (-747) |#1|))
-((-3301 (((-621 |#2|) (-1139 |#1|) |#3|) 83)) (-3484 (((-621 (-2 (|:| |outval| |#2|) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 |#2|))))) (-665 |#1|) |#3| (-1 (-411 (-1139 |#1|)) (-1139 |#1|))) 100)) (-3777 (((-1139 |#1|) (-665 |#1|)) 95)))
-(((-522 |#1| |#2| |#3|) (-10 -7 (-15 -3777 ((-1139 |#1|) (-665 |#1|))) (-15 -3301 ((-621 |#2|) (-1139 |#1|) |#3|)) (-15 -3484 ((-621 (-2 (|:| |outval| |#2|) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 |#2|))))) (-665 |#1|) |#3| (-1 (-411 (-1139 |#1|)) (-1139 |#1|))))) (-356) (-356) (-13 (-356) (-821))) (T -522))
-((-3484 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-665 *6)) (-5 *5 (-1 (-411 (-1139 *6)) (-1139 *6))) (-4 *6 (-356)) (-5 *2 (-621 (-2 (|:| |outval| *7) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 *7)))))) (-5 *1 (-522 *6 *7 *4)) (-4 *7 (-356)) (-4 *4 (-13 (-356) (-821))))) (-3301 (*1 *2 *3 *4) (-12 (-5 *3 (-1139 *5)) (-4 *5 (-356)) (-5 *2 (-621 *6)) (-5 *1 (-522 *5 *6 *4)) (-4 *6 (-356)) (-4 *4 (-13 (-356) (-821))))) (-3777 (*1 *2 *3) (-12 (-5 *3 (-665 *4)) (-4 *4 (-356)) (-5 *2 (-1139 *4)) (-5 *1 (-522 *4 *5 *6)) (-4 *5 (-356)) (-4 *6 (-13 (-356) (-821))))))
-(-10 -7 (-15 -3777 ((-1139 |#1|) (-665 |#1|))) (-15 -3301 ((-621 |#2|) (-1139 |#1|) |#3|)) (-15 -3484 ((-621 (-2 (|:| |outval| |#2|) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 |#2|))))) (-665 |#1|) |#3| (-1 (-411 (-1139 |#1|)) (-1139 |#1|)))))
-((-3048 (((-816 (-549))) 12)) (-3059 (((-816 (-549))) 14)) (-1438 (((-809 (-549))) 9)))
-(((-523) (-10 -7 (-15 -1438 ((-809 (-549)))) (-15 -3048 ((-816 (-549)))) (-15 -3059 ((-816 (-549)))))) (T -523))
-((-3059 (*1 *2) (-12 (-5 *2 (-816 (-549))) (-5 *1 (-523)))) (-3048 (*1 *2) (-12 (-5 *2 (-816 (-549))) (-5 *1 (-523)))) (-1438 (*1 *2) (-12 (-5 *2 (-809 (-549))) (-5 *1 (-523)))))
-(-10 -7 (-15 -1438 ((-809 (-549)))) (-15 -3048 ((-816 (-549)))) (-15 -3059 ((-816 (-549)))))
-((-2759 (((-525) (-1143)) 15)) (-2860 ((|#1| (-525)) 20)))
-(((-524 |#1|) (-10 -7 (-15 -2759 ((-525) (-1143))) (-15 -2860 (|#1| (-525)))) (-1180)) (T -524))
-((-2860 (*1 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-524 *2)) (-4 *2 (-1180)))) (-2759 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-525)) (-5 *1 (-524 *4)) (-4 *4 (-1180)))))
-(-10 -7 (-15 -2759 ((-525) (-1143))) (-15 -2860 (|#1| (-525))))
-((-3834 (((-112) $ $) NIL)) (-1836 (((-1125) $) 48)) (-1404 (((-112) $) 43)) (-3944 (((-1143) $) 44)) (-3128 (((-112) $) 41)) (-1525 (((-1125) $) 42)) (-3380 (($ (-1125)) 49)) (-3374 (((-112) $) NIL)) (-2671 (((-112) $) NIL)) (-3259 (((-112) $) NIL)) (-3851 (((-1125) $) NIL)) (-2725 (($ $ (-621 (-1143))) 20)) (-2860 (((-52) $) 22)) (-2528 (((-112) $) NIL)) (-3965 (((-549) $) NIL)) (-3990 (((-1087) $) NIL)) (-3568 (($ $ (-621 (-1143)) (-1143)) 61)) (-1978 (((-112) $) NIL)) (-1355 (((-219) $) NIL)) (-3941 (($ $) 38)) (-2977 (((-834) $) NIL)) (-2652 (((-112) $ $) NIL)) (-3341 (($ $ (-549)) NIL) (($ $ (-621 (-549))) NIL)) (-2197 (((-621 $) $) 28)) (-3543 (((-1143) (-621 $)) 50)) (-2845 (($ (-621 $)) 54) (($ (-1125)) NIL) (($ (-1143)) 18) (($ (-549)) 8) (($ (-219)) 25) (($ (-834)) NIL) (((-1071) $) 11) (($ (-1071)) 12)) (-2093 (((-1143) (-1143) (-621 $)) 53)) (-3846 (((-834) $) 46)) (-3546 (($ $) 52)) (-3536 (($ $) 51)) (-2144 (($ $ (-621 $)) 58)) (-1775 (((-112) $) 27)) (-3276 (($) 9 T CONST)) (-3287 (($) 10 T CONST)) (-2389 (((-112) $ $) 62)) (-2513 (($ $ $) 67)) (-2486 (($ $ $) 63)) (** (($ $ (-747)) 66) (($ $ (-549)) 65)) (* (($ $ $) 64)) (-3775 (((-549) $) NIL)))
-(((-525) (-13 (-1070 (-1125) (-1143) (-549) (-219) (-834)) (-594 (-1071)) (-10 -8 (-15 -2860 ((-52) $)) (-15 -2845 ($ (-1071))) (-15 -2144 ($ $ (-621 $))) (-15 -3568 ($ $ (-621 (-1143)) (-1143))) (-15 -2725 ($ $ (-621 (-1143)))) (-15 -2486 ($ $ $)) (-15 * ($ $ $)) (-15 -2513 ($ $ $)) (-15 ** ($ $ (-747))) (-15 ** ($ $ (-549))) (-15 0 ($) -2589) (-15 1 ($) -2589) (-15 -3941 ($ $)) (-15 -1836 ((-1125) $)) (-15 -3380 ($ (-1125))) (-15 -3543 ((-1143) (-621 $))) (-15 -2093 ((-1143) (-1143) (-621 $)))))) (T -525))
-((-2860 (*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-525)))) (-2845 (*1 *1 *2) (-12 (-5 *2 (-1071)) (-5 *1 (-525)))) (-2144 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-525))) (-5 *1 (-525)))) (-3568 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-1143))) (-5 *3 (-1143)) (-5 *1 (-525)))) (-2725 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-525)))) (-2486 (*1 *1 *1 *1) (-5 *1 (-525))) (* (*1 *1 *1 *1) (-5 *1 (-525))) (-2513 (*1 *1 *1 *1) (-5 *1 (-525))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-525)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-525)))) (-3276 (*1 *1) (-5 *1 (-525))) (-3287 (*1 *1) (-5 *1 (-525))) (-3941 (*1 *1 *1) (-5 *1 (-525))) (-1836 (*1 *2 *1) (-12 (-5 *2 (-1125)) (-5 *1 (-525)))) (-3380 (*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-525)))) (-3543 (*1 *2 *3) (-12 (-5 *3 (-621 (-525))) (-5 *2 (-1143)) (-5 *1 (-525)))) (-2093 (*1 *2 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-525))) (-5 *1 (-525)))))
-(-13 (-1070 (-1125) (-1143) (-549) (-219) (-834)) (-594 (-1071)) (-10 -8 (-15 -2860 ((-52) $)) (-15 -2845 ($ (-1071))) (-15 -2144 ($ $ (-621 $))) (-15 -3568 ($ $ (-621 (-1143)) (-1143))) (-15 -2725 ($ $ (-621 (-1143)))) (-15 -2486 ($ $ $)) (-15 * ($ $ $)) (-15 -2513 ($ $ $)) (-15 ** ($ $ (-747))) (-15 ** ($ $ (-549))) (-15 (-3276) ($) -2589) (-15 (-3287) ($) -2589) (-15 -3941 ($ $)) (-15 -1836 ((-1125) $)) (-15 -3380 ($ (-1125))) (-15 -3543 ((-1143) (-621 $))) (-15 -2093 ((-1143) (-1143) (-621 $)))))
-((-1979 ((|#2| |#2|) 17)) (-3753 ((|#2| |#2|) 13)) (-2098 ((|#2| |#2| (-549) (-549)) 20)) (-3131 ((|#2| |#2|) 15)))
-(((-526 |#1| |#2|) (-10 -7 (-15 -3753 (|#2| |#2|)) (-15 -3131 (|#2| |#2|)) (-15 -1979 (|#2| |#2|)) (-15 -2098 (|#2| |#2| (-549) (-549)))) (-13 (-541) (-145)) (-1217 |#1|)) (T -526))
-((-2098 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-549)) (-4 *4 (-13 (-541) (-145))) (-5 *1 (-526 *4 *2)) (-4 *2 (-1217 *4)))) (-1979 (*1 *2 *2) (-12 (-4 *3 (-13 (-541) (-145))) (-5 *1 (-526 *3 *2)) (-4 *2 (-1217 *3)))) (-3131 (*1 *2 *2) (-12 (-4 *3 (-13 (-541) (-145))) (-5 *1 (-526 *3 *2)) (-4 *2 (-1217 *3)))) (-3753 (*1 *2 *2) (-12 (-4 *3 (-13 (-541) (-145))) (-5 *1 (-526 *3 *2)) (-4 *2 (-1217 *3)))))
-(-10 -7 (-15 -3753 (|#2| |#2|)) (-15 -3131 (|#2| |#2|)) (-15 -1979 (|#2| |#2|)) (-15 -2098 (|#2| |#2| (-549) (-549))))
-((-1408 (((-621 (-287 (-923 |#2|))) (-621 |#2|) (-621 (-1143))) 32)) (-2892 (((-621 |#2|) (-923 |#1|) |#3|) 53) (((-621 |#2|) (-1139 |#1|) |#3|) 52)) (-3875 (((-621 (-621 |#2|)) (-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1143)) |#3|) 91)))
-(((-527 |#1| |#2| |#3|) (-10 -7 (-15 -2892 ((-621 |#2|) (-1139 |#1|) |#3|)) (-15 -2892 ((-621 |#2|) (-923 |#1|) |#3|)) (-15 -3875 ((-621 (-621 |#2|)) (-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1143)) |#3|)) (-15 -1408 ((-621 (-287 (-923 |#2|))) (-621 |#2|) (-621 (-1143))))) (-444) (-356) (-13 (-356) (-821))) (T -527))
-((-1408 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *6)) (-5 *4 (-621 (-1143))) (-4 *6 (-356)) (-5 *2 (-621 (-287 (-923 *6)))) (-5 *1 (-527 *5 *6 *7)) (-4 *5 (-444)) (-4 *7 (-13 (-356) (-821))))) (-3875 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-621 (-923 *6))) (-5 *4 (-621 (-1143))) (-4 *6 (-444)) (-5 *2 (-621 (-621 *7))) (-5 *1 (-527 *6 *7 *5)) (-4 *7 (-356)) (-4 *5 (-13 (-356) (-821))))) (-2892 (*1 *2 *3 *4) (-12 (-5 *3 (-923 *5)) (-4 *5 (-444)) (-5 *2 (-621 *6)) (-5 *1 (-527 *5 *6 *4)) (-4 *6 (-356)) (-4 *4 (-13 (-356) (-821))))) (-2892 (*1 *2 *3 *4) (-12 (-5 *3 (-1139 *5)) (-4 *5 (-444)) (-5 *2 (-621 *6)) (-5 *1 (-527 *5 *6 *4)) (-4 *6 (-356)) (-4 *4 (-13 (-356) (-821))))))
-(-10 -7 (-15 -2892 ((-621 |#2|) (-1139 |#1|) |#3|)) (-15 -2892 ((-621 |#2|) (-923 |#1|) |#3|)) (-15 -3875 ((-621 (-621 |#2|)) (-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1143)) |#3|)) (-15 -1408 ((-621 (-287 (-923 |#2|))) (-621 |#2|) (-621 (-1143)))))
-((-3574 ((|#2| |#2| |#1|) 17)) (-1665 ((|#2| (-621 |#2|)) 27)) (-3480 ((|#2| (-621 |#2|)) 46)))
-(((-528 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1665 (|#2| (-621 |#2|))) (-15 -3480 (|#2| (-621 |#2|))) (-15 -3574 (|#2| |#2| |#1|))) (-300) (-1202 |#1|) |#1| (-1 |#1| |#1| (-747))) (T -528))
-((-3574 (*1 *2 *2 *3) (-12 (-4 *3 (-300)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-747))) (-5 *1 (-528 *3 *2 *4 *5)) (-4 *2 (-1202 *3)))) (-3480 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-1202 *4)) (-5 *1 (-528 *4 *2 *5 *6)) (-4 *4 (-300)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-747))))) (-1665 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-1202 *4)) (-5 *1 (-528 *4 *2 *5 *6)) (-4 *4 (-300)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-747))))))
-(-10 -7 (-15 -1665 (|#2| (-621 |#2|))) (-15 -3480 (|#2| (-621 |#2|))) (-15 -3574 (|#2| |#2| |#1|)))
-((-2121 (((-411 (-1139 |#4|)) (-1139 |#4|) (-1 (-411 (-1139 |#3|)) (-1139 |#3|))) 80) (((-411 |#4|) |#4| (-1 (-411 (-1139 |#3|)) (-1139 |#3|))) 169)))
-(((-529 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2121 ((-411 |#4|) |#4| (-1 (-411 (-1139 |#3|)) (-1139 |#3|)))) (-15 -2121 ((-411 (-1139 |#4|)) (-1139 |#4|) (-1 (-411 (-1139 |#3|)) (-1139 |#3|))))) (-823) (-769) (-13 (-300) (-145)) (-920 |#3| |#2| |#1|)) (T -529))
-((-2121 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-411 (-1139 *7)) (-1139 *7))) (-4 *7 (-13 (-300) (-145))) (-4 *5 (-823)) (-4 *6 (-769)) (-4 *8 (-920 *7 *6 *5)) (-5 *2 (-411 (-1139 *8))) (-5 *1 (-529 *5 *6 *7 *8)) (-5 *3 (-1139 *8)))) (-2121 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-411 (-1139 *7)) (-1139 *7))) (-4 *7 (-13 (-300) (-145))) (-4 *5 (-823)) (-4 *6 (-769)) (-5 *2 (-411 *3)) (-5 *1 (-529 *5 *6 *7 *3)) (-4 *3 (-920 *7 *6 *5)))))
-(-10 -7 (-15 -2121 ((-411 |#4|) |#4| (-1 (-411 (-1139 |#3|)) (-1139 |#3|)))) (-15 -2121 ((-411 (-1139 |#4|)) (-1139 |#4|) (-1 (-411 (-1139 |#3|)) (-1139 |#3|)))))
-((-1979 ((|#4| |#4|) 74)) (-3753 ((|#4| |#4|) 70)) (-2098 ((|#4| |#4| (-549) (-549)) 76)) (-3131 ((|#4| |#4|) 72)))
-(((-530 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3753 (|#4| |#4|)) (-15 -3131 (|#4| |#4|)) (-15 -1979 (|#4| |#4|)) (-15 -2098 (|#4| |#4| (-549) (-549)))) (-13 (-356) (-361) (-594 (-549))) (-1202 |#1|) (-701 |#1| |#2|) (-1217 |#3|)) (T -530))
-((-2098 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-549)) (-4 *4 (-13 (-356) (-361) (-594 *3))) (-4 *5 (-1202 *4)) (-4 *6 (-701 *4 *5)) (-5 *1 (-530 *4 *5 *6 *2)) (-4 *2 (-1217 *6)))) (-1979 (*1 *2 *2) (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-4 *4 (-1202 *3)) (-4 *5 (-701 *3 *4)) (-5 *1 (-530 *3 *4 *5 *2)) (-4 *2 (-1217 *5)))) (-3131 (*1 *2 *2) (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-4 *4 (-1202 *3)) (-4 *5 (-701 *3 *4)) (-5 *1 (-530 *3 *4 *5 *2)) (-4 *2 (-1217 *5)))) (-3753 (*1 *2 *2) (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-4 *4 (-1202 *3)) (-4 *5 (-701 *3 *4)) (-5 *1 (-530 *3 *4 *5 *2)) (-4 *2 (-1217 *5)))))
-(-10 -7 (-15 -3753 (|#4| |#4|)) (-15 -3131 (|#4| |#4|)) (-15 -1979 (|#4| |#4|)) (-15 -2098 (|#4| |#4| (-549) (-549))))
-((-1979 ((|#2| |#2|) 27)) (-3753 ((|#2| |#2|) 23)) (-2098 ((|#2| |#2| (-549) (-549)) 29)) (-3131 ((|#2| |#2|) 25)))
-(((-531 |#1| |#2|) (-10 -7 (-15 -3753 (|#2| |#2|)) (-15 -3131 (|#2| |#2|)) (-15 -1979 (|#2| |#2|)) (-15 -2098 (|#2| |#2| (-549) (-549)))) (-13 (-356) (-361) (-594 (-549))) (-1217 |#1|)) (T -531))
-((-2098 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-549)) (-4 *4 (-13 (-356) (-361) (-594 *3))) (-5 *1 (-531 *4 *2)) (-4 *2 (-1217 *4)))) (-1979 (*1 *2 *2) (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-5 *1 (-531 *3 *2)) (-4 *2 (-1217 *3)))) (-3131 (*1 *2 *2) (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-5 *1 (-531 *3 *2)) (-4 *2 (-1217 *3)))) (-3753 (*1 *2 *2) (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-5 *1 (-531 *3 *2)) (-4 *2 (-1217 *3)))))
-(-10 -7 (-15 -3753 (|#2| |#2|)) (-15 -3131 (|#2| |#2|)) (-15 -1979 (|#2| |#2|)) (-15 -2098 (|#2| |#2| (-549) (-549))))
-((-2395 (((-3 (-549) "failed") |#2| |#1| (-1 (-3 (-549) "failed") |#1|)) 14) (((-3 (-549) "failed") |#2| |#1| (-549) (-1 (-3 (-549) "failed") |#1|)) 13) (((-3 (-549) "failed") |#2| (-549) (-1 (-3 (-549) "failed") |#1|)) 26)))
-(((-532 |#1| |#2|) (-10 -7 (-15 -2395 ((-3 (-549) "failed") |#2| (-549) (-1 (-3 (-549) "failed") |#1|))) (-15 -2395 ((-3 (-549) "failed") |#2| |#1| (-549) (-1 (-3 (-549) "failed") |#1|))) (-15 -2395 ((-3 (-549) "failed") |#2| |#1| (-1 (-3 (-549) "failed") |#1|)))) (-1018) (-1202 |#1|)) (T -532))
-((-2395 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-549) "failed") *4)) (-4 *4 (-1018)) (-5 *2 (-549)) (-5 *1 (-532 *4 *3)) (-4 *3 (-1202 *4)))) (-2395 (*1 *2 *3 *4 *2 *5) (|partial| -12 (-5 *5 (-1 (-3 (-549) "failed") *4)) (-4 *4 (-1018)) (-5 *2 (-549)) (-5 *1 (-532 *4 *3)) (-4 *3 (-1202 *4)))) (-2395 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *4 (-1 (-3 (-549) "failed") *5)) (-4 *5 (-1018)) (-5 *2 (-549)) (-5 *1 (-532 *5 *3)) (-4 *3 (-1202 *5)))))
-(-10 -7 (-15 -2395 ((-3 (-549) "failed") |#2| (-549) (-1 (-3 (-549) "failed") |#1|))) (-15 -2395 ((-3 (-549) "failed") |#2| |#1| (-549) (-1 (-3 (-549) "failed") |#1|))) (-15 -2395 ((-3 (-549) "failed") |#2| |#1| (-1 (-3 (-549) "failed") |#1|))))
-((-2831 (($ $ $) 79)) (-2402 (((-411 $) $) 47)) (-2714 (((-3 (-549) "failed") $) 59)) (-2659 (((-549) $) 37)) (-3405 (((-3 (-400 (-549)) "failed") $) 74)) (-3679 (((-112) $) 24)) (-2532 (((-400 (-549)) $) 72)) (-1420 (((-112) $) 50)) (-3806 (($ $ $ $) 86)) (-2772 (((-112) $) 16)) (-1271 (($ $ $) 57)) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 69)) (-1681 (((-3 $ "failed") $) 64)) (-2433 (($ $) 23)) (-2950 (($ $ $) 84)) (-3060 (($) 60)) (-4005 (($ $) 53)) (-2121 (((-411 $) $) 45)) (-3450 (((-112) $) 14)) (-3684 (((-747) $) 28)) (-3456 (($ $ (-747)) NIL) (($ $) 10)) (-2281 (($ $) 17)) (-2845 (((-549) $) NIL) (((-525) $) 36) (((-863 (-549)) $) 40) (((-372) $) 31) (((-219) $) 33)) (-2082 (((-747)) 8)) (-3935 (((-112) $ $) 20)) (-3179 (($ $ $) 55)))
-(((-533 |#1|) (-10 -8 (-15 -2950 (|#1| |#1| |#1|)) (-15 -3806 (|#1| |#1| |#1| |#1|)) (-15 -2433 (|#1| |#1|)) (-15 -2281 (|#1| |#1|)) (-15 -3405 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2532 ((-400 (-549)) |#1|)) (-15 -3679 ((-112) |#1|)) (-15 -2831 (|#1| |#1| |#1|)) (-15 -3935 ((-112) |#1| |#1|)) (-15 -3450 ((-112) |#1|)) (-15 -3060 (|#1|)) (-15 -1681 ((-3 |#1| "failed") |#1|)) (-15 -2845 ((-219) |#1|)) (-15 -2845 ((-372) |#1|)) (-15 -1271 (|#1| |#1| |#1|)) (-15 -4005 (|#1| |#1|)) (-15 -3179 (|#1| |#1| |#1|)) (-15 -2932 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))) (-15 -2845 ((-863 (-549)) |#1|)) (-15 -2845 ((-525) |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2845 ((-549) |#1|)) (-15 -3456 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -2772 ((-112) |#1|)) (-15 -3684 ((-747) |#1|)) (-15 -2121 ((-411 |#1|) |#1|)) (-15 -2402 ((-411 |#1|) |#1|)) (-15 -1420 ((-112) |#1|)) (-15 -2082 ((-747)))) (-534)) (T -533))
-((-2082 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-533 *3)) (-4 *3 (-534)))))
-(-10 -8 (-15 -2950 (|#1| |#1| |#1|)) (-15 -3806 (|#1| |#1| |#1| |#1|)) (-15 -2433 (|#1| |#1|)) (-15 -2281 (|#1| |#1|)) (-15 -3405 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2532 ((-400 (-549)) |#1|)) (-15 -3679 ((-112) |#1|)) (-15 -2831 (|#1| |#1| |#1|)) (-15 -3935 ((-112) |#1| |#1|)) (-15 -3450 ((-112) |#1|)) (-15 -3060 (|#1|)) (-15 -1681 ((-3 |#1| "failed") |#1|)) (-15 -2845 ((-219) |#1|)) (-15 -2845 ((-372) |#1|)) (-15 -1271 (|#1| |#1| |#1|)) (-15 -4005 (|#1| |#1|)) (-15 -3179 (|#1| |#1| |#1|)) (-15 -2932 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))) (-15 -2845 ((-863 (-549)) |#1|)) (-15 -2845 ((-525) |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2845 ((-549) |#1|)) (-15 -3456 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -2772 ((-112) |#1|)) (-15 -3684 ((-747) |#1|)) (-15 -2121 ((-411 |#1|) |#1|)) (-15 -2402 ((-411 |#1|) |#1|)) (-15 -1420 ((-112) |#1|)) (-15 -2082 ((-747))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-2831 (($ $ $) 82)) (-2001 (((-3 $ "failed") $ $) 19)) (-3332 (($ $ $ $) 71)) (-3979 (($ $) 49)) (-2402 (((-411 $) $) 50)) (-3866 (((-112) $ $) 122)) (-1872 (((-549) $) 111)) (-1310 (($ $ $) 85)) (-1682 (($) 17 T CONST)) (-2714 (((-3 (-549) "failed") $) 103)) (-2659 (((-549) $) 102)) (-2095 (($ $ $) 126)) (-3879 (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 101) (((-665 (-549)) (-665 $)) 100)) (-2114 (((-3 $ "failed") $) 32)) (-3405 (((-3 (-400 (-549)) "failed") $) 79)) (-3679 (((-112) $) 81)) (-2532 (((-400 (-549)) $) 80)) (-3239 (($) 78) (($ $) 77)) (-2067 (($ $ $) 125)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 120)) (-1420 (((-112) $) 51)) (-3806 (($ $ $ $) 69)) (-3947 (($ $ $) 83)) (-2772 (((-112) $) 113)) (-1271 (($ $ $) 94)) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 97)) (-2675 (((-112) $) 30)) (-3559 (((-112) $) 89)) (-1681 (((-3 $ "failed") $) 91)) (-2374 (((-112) $) 112)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 129)) (-3030 (($ $ $ $) 70)) (-2863 (($ $ $) 114)) (-3575 (($ $ $) 115)) (-2433 (($ $) 73)) (-4210 (($ $) 86)) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-2950 (($ $ $) 68)) (-3060 (($) 90 T CONST)) (-3781 (($ $) 75)) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-4005 (($ $) 95)) (-2121 (((-411 $) $) 48)) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 128) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 127)) (-2042 (((-3 $ "failed") $ $) 40)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 121)) (-3450 (((-112) $) 88)) (-3684 (((-747) $) 123)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 124)) (-3456 (($ $ (-747)) 108) (($ $) 106)) (-1900 (($ $) 74)) (-2281 (($ $) 76)) (-2845 (((-549) $) 105) (((-525) $) 99) (((-863 (-549)) $) 98) (((-372) $) 93) (((-219) $) 92)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-549)) 104)) (-2082 (((-747)) 28)) (-3935 (((-112) $ $) 84)) (-3179 (($ $ $) 96)) (-1864 (($) 87)) (-1498 (((-112) $ $) 37)) (-3610 (($ $ $ $) 72)) (-3212 (($ $) 110)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ (-747)) 109) (($ $) 107)) (-2448 (((-112) $ $) 117)) (-2425 (((-112) $ $) 118)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 116)) (-2412 (((-112) $ $) 119)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+((-2115 (((-621 |#2|) (-1138 |#1|) |#3|) 83)) (-1750 (((-621 (-2 (|:| |outval| |#2|) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 |#2|))))) (-665 |#1|) |#3| (-1 (-411 (-1138 |#1|)) (-1138 |#1|))) 100)) (-1939 (((-1138 |#1|) (-665 |#1|)) 95)))
+(((-522 |#1| |#2| |#3|) (-10 -7 (-15 -1939 ((-1138 |#1|) (-665 |#1|))) (-15 -2115 ((-621 |#2|) (-1138 |#1|) |#3|)) (-15 -1750 ((-621 (-2 (|:| |outval| |#2|) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 |#2|))))) (-665 |#1|) |#3| (-1 (-411 (-1138 |#1|)) (-1138 |#1|))))) (-356) (-356) (-13 (-356) (-821))) (T -522))
+((-1750 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-665 *6)) (-5 *5 (-1 (-411 (-1138 *6)) (-1138 *6))) (-4 *6 (-356)) (-5 *2 (-621 (-2 (|:| |outval| *7) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 *7)))))) (-5 *1 (-522 *6 *7 *4)) (-4 *7 (-356)) (-4 *4 (-13 (-356) (-821))))) (-2115 (*1 *2 *3 *4) (-12 (-5 *3 (-1138 *5)) (-4 *5 (-356)) (-5 *2 (-621 *6)) (-5 *1 (-522 *5 *6 *4)) (-4 *6 (-356)) (-4 *4 (-13 (-356) (-821))))) (-1939 (*1 *2 *3) (-12 (-5 *3 (-665 *4)) (-4 *4 (-356)) (-5 *2 (-1138 *4)) (-5 *1 (-522 *4 *5 *6)) (-4 *5 (-356)) (-4 *6 (-13 (-356) (-821))))))
+(-10 -7 (-15 -1939 ((-1138 |#1|) (-665 |#1|))) (-15 -2115 ((-621 |#2|) (-1138 |#1|) |#3|)) (-15 -1750 ((-621 (-2 (|:| |outval| |#2|) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 |#2|))))) (-665 |#1|) |#3| (-1 (-411 (-1138 |#1|)) (-1138 |#1|)))))
+((-3046 (((-816 (-549))) 12)) (-3056 (((-816 (-549))) 14)) (-1439 (((-809 (-549))) 9)))
+(((-523) (-10 -7 (-15 -1439 ((-809 (-549)))) (-15 -3046 ((-816 (-549)))) (-15 -3056 ((-816 (-549)))))) (T -523))
+((-3056 (*1 *2) (-12 (-5 *2 (-816 (-549))) (-5 *1 (-523)))) (-3046 (*1 *2) (-12 (-5 *2 (-816 (-549))) (-5 *1 (-523)))) (-1439 (*1 *2) (-12 (-5 *2 (-809 (-549))) (-5 *1 (-523)))))
+(-10 -7 (-15 -1439 ((-809 (-549)))) (-15 -3046 ((-816 (-549)))) (-15 -3056 ((-816 (-549)))))
+((-3331 (((-525) (-1142)) 15)) (-2857 ((|#1| (-525)) 20)))
+(((-524 |#1|) (-10 -7 (-15 -3331 ((-525) (-1142))) (-15 -2857 (|#1| (-525)))) (-1179)) (T -524))
+((-2857 (*1 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-524 *2)) (-4 *2 (-1179)))) (-3331 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-525)) (-5 *1 (-524 *4)) (-4 *4 (-1179)))))
+(-10 -7 (-15 -3331 ((-525) (-1142))) (-15 -2857 (|#1| (-525))))
+((-3832 (((-112) $ $) NIL)) (-4204 (((-1124) $) 48)) (-3776 (((-112) $) 43)) (-3943 (((-1142) $) 44)) (-3763 (((-112) $) 41)) (-1524 (((-1124) $) 42)) (-3267 (($ (-1124)) 49)) (-4132 (((-112) $) NIL)) (-2097 (((-112) $) NIL)) (-1822 (((-112) $) NIL)) (-3441 (((-1124) $) NIL)) (-2722 (($ $ (-621 (-1142))) 20)) (-2857 (((-52) $) 22)) (-2276 (((-112) $) NIL)) (-3964 (((-549) $) NIL)) (-3988 (((-1086) $) NIL)) (-3567 (($ $ (-621 (-1142)) (-1142)) 61)) (-4073 (((-112) $) NIL)) (-1354 (((-219) $) NIL)) (-3940 (($ $) 38)) (-2975 (((-834) $) NIL)) (-2649 (((-112) $ $) NIL)) (-3339 (($ $ (-549)) NIL) (($ $ (-621 (-549))) NIL)) (-2192 (((-621 $) $) 28)) (-3547 (((-1142) (-621 $)) 50)) (-2843 (($ (-621 $)) 54) (($ (-1124)) NIL) (($ (-1142)) 18) (($ (-549)) 8) (($ (-219)) 25) (($ (-834)) NIL) (((-1070) $) 11) (($ (-1070)) 12)) (-2090 (((-1142) (-1142) (-621 $)) 53)) (-3845 (((-834) $) 46)) (-3545 (($ $) 52)) (-3535 (($ $) 51)) (-1351 (($ $ (-621 $)) 58)) (-4105 (((-112) $) 27)) (-3274 (($) 9 T CONST)) (-3286 (($) 10 T CONST)) (-2387 (((-112) $ $) 62)) (-2511 (($ $ $) 67)) (-2484 (($ $ $) 63)) (** (($ $ (-747)) 66) (($ $ (-549)) 65)) (* (($ $ $) 64)) (-3774 (((-549) $) NIL)))
+(((-525) (-13 (-1069 (-1124) (-1142) (-549) (-219) (-834)) (-594 (-1070)) (-10 -8 (-15 -2857 ((-52) $)) (-15 -2843 ($ (-1070))) (-15 -1351 ($ $ (-621 $))) (-15 -3567 ($ $ (-621 (-1142)) (-1142))) (-15 -2722 ($ $ (-621 (-1142)))) (-15 -2484 ($ $ $)) (-15 * ($ $ $)) (-15 -2511 ($ $ $)) (-15 ** ($ $ (-747))) (-15 ** ($ $ (-549))) (-15 0 ($) -2587) (-15 1 ($) -2587) (-15 -3940 ($ $)) (-15 -4204 ((-1124) $)) (-15 -3267 ($ (-1124))) (-15 -3547 ((-1142) (-621 $))) (-15 -2090 ((-1142) (-1142) (-621 $)))))) (T -525))
+((-2857 (*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-525)))) (-2843 (*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-525)))) (-1351 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-525))) (-5 *1 (-525)))) (-3567 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-1142))) (-5 *3 (-1142)) (-5 *1 (-525)))) (-2722 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-525)))) (-2484 (*1 *1 *1 *1) (-5 *1 (-525))) (* (*1 *1 *1 *1) (-5 *1 (-525))) (-2511 (*1 *1 *1 *1) (-5 *1 (-525))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-525)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-525)))) (-3274 (*1 *1) (-5 *1 (-525))) (-3286 (*1 *1) (-5 *1 (-525))) (-3940 (*1 *1 *1) (-5 *1 (-525))) (-4204 (*1 *2 *1) (-12 (-5 *2 (-1124)) (-5 *1 (-525)))) (-3267 (*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-525)))) (-3547 (*1 *2 *3) (-12 (-5 *3 (-621 (-525))) (-5 *2 (-1142)) (-5 *1 (-525)))) (-2090 (*1 *2 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-525))) (-5 *1 (-525)))))
+(-13 (-1069 (-1124) (-1142) (-549) (-219) (-834)) (-594 (-1070)) (-10 -8 (-15 -2857 ((-52) $)) (-15 -2843 ($ (-1070))) (-15 -1351 ($ $ (-621 $))) (-15 -3567 ($ $ (-621 (-1142)) (-1142))) (-15 -2722 ($ $ (-621 (-1142)))) (-15 -2484 ($ $ $)) (-15 * ($ $ $)) (-15 -2511 ($ $ $)) (-15 ** ($ $ (-747))) (-15 ** ($ $ (-549))) (-15 (-3274) ($) -2587) (-15 (-3286) ($) -2587) (-15 -3940 ($ $)) (-15 -4204 ((-1124) $)) (-15 -3267 ($ (-1124))) (-15 -3547 ((-1142) (-621 $))) (-15 -2090 ((-1142) (-1142) (-621 $)))))
+((-4163 ((|#2| |#2|) 17)) (-2978 ((|#2| |#2|) 13)) (-3316 ((|#2| |#2| (-549) (-549)) 20)) (-3956 ((|#2| |#2|) 15)))
+(((-526 |#1| |#2|) (-10 -7 (-15 -2978 (|#2| |#2|)) (-15 -3956 (|#2| |#2|)) (-15 -4163 (|#2| |#2|)) (-15 -3316 (|#2| |#2| (-549) (-549)))) (-13 (-541) (-145)) (-1216 |#1|)) (T -526))
+((-3316 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-549)) (-4 *4 (-13 (-541) (-145))) (-5 *1 (-526 *4 *2)) (-4 *2 (-1216 *4)))) (-4163 (*1 *2 *2) (-12 (-4 *3 (-13 (-541) (-145))) (-5 *1 (-526 *3 *2)) (-4 *2 (-1216 *3)))) (-3956 (*1 *2 *2) (-12 (-4 *3 (-13 (-541) (-145))) (-5 *1 (-526 *3 *2)) (-4 *2 (-1216 *3)))) (-2978 (*1 *2 *2) (-12 (-4 *3 (-13 (-541) (-145))) (-5 *1 (-526 *3 *2)) (-4 *2 (-1216 *3)))))
+(-10 -7 (-15 -2978 (|#2| |#2|)) (-15 -3956 (|#2| |#2|)) (-15 -4163 (|#2| |#2|)) (-15 -3316 (|#2| |#2| (-549) (-549))))
+((-2998 (((-621 (-287 (-923 |#2|))) (-621 |#2|) (-621 (-1142))) 32)) (-3851 (((-621 |#2|) (-923 |#1|) |#3|) 53) (((-621 |#2|) (-1138 |#1|) |#3|) 52)) (-4176 (((-621 (-621 |#2|)) (-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1142)) |#3|) 91)))
+(((-527 |#1| |#2| |#3|) (-10 -7 (-15 -3851 ((-621 |#2|) (-1138 |#1|) |#3|)) (-15 -3851 ((-621 |#2|) (-923 |#1|) |#3|)) (-15 -4176 ((-621 (-621 |#2|)) (-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1142)) |#3|)) (-15 -2998 ((-621 (-287 (-923 |#2|))) (-621 |#2|) (-621 (-1142))))) (-444) (-356) (-13 (-356) (-821))) (T -527))
+((-2998 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *6)) (-5 *4 (-621 (-1142))) (-4 *6 (-356)) (-5 *2 (-621 (-287 (-923 *6)))) (-5 *1 (-527 *5 *6 *7)) (-4 *5 (-444)) (-4 *7 (-13 (-356) (-821))))) (-4176 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-621 (-923 *6))) (-5 *4 (-621 (-1142))) (-4 *6 (-444)) (-5 *2 (-621 (-621 *7))) (-5 *1 (-527 *6 *7 *5)) (-4 *7 (-356)) (-4 *5 (-13 (-356) (-821))))) (-3851 (*1 *2 *3 *4) (-12 (-5 *3 (-923 *5)) (-4 *5 (-444)) (-5 *2 (-621 *6)) (-5 *1 (-527 *5 *6 *4)) (-4 *6 (-356)) (-4 *4 (-13 (-356) (-821))))) (-3851 (*1 *2 *3 *4) (-12 (-5 *3 (-1138 *5)) (-4 *5 (-444)) (-5 *2 (-621 *6)) (-5 *1 (-527 *5 *6 *4)) (-4 *6 (-356)) (-4 *4 (-13 (-356) (-821))))))
+(-10 -7 (-15 -3851 ((-621 |#2|) (-1138 |#1|) |#3|)) (-15 -3851 ((-621 |#2|) (-923 |#1|) |#3|)) (-15 -4176 ((-621 (-621 |#2|)) (-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1142)) |#3|)) (-15 -2998 ((-621 (-287 (-923 |#2|))) (-621 |#2|) (-621 (-1142)))))
+((-2012 ((|#2| |#2| |#1|) 17)) (-3831 ((|#2| (-621 |#2|)) 27)) (-1426 ((|#2| (-621 |#2|)) 46)))
+(((-528 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3831 (|#2| (-621 |#2|))) (-15 -1426 (|#2| (-621 |#2|))) (-15 -2012 (|#2| |#2| |#1|))) (-300) (-1201 |#1|) |#1| (-1 |#1| |#1| (-747))) (T -528))
+((-2012 (*1 *2 *2 *3) (-12 (-4 *3 (-300)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-747))) (-5 *1 (-528 *3 *2 *4 *5)) (-4 *2 (-1201 *3)))) (-1426 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-1201 *4)) (-5 *1 (-528 *4 *2 *5 *6)) (-4 *4 (-300)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-747))))) (-3831 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-1201 *4)) (-5 *1 (-528 *4 *2 *5 *6)) (-4 *4 (-300)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-747))))))
+(-10 -7 (-15 -3831 (|#2| (-621 |#2|))) (-15 -1426 (|#2| (-621 |#2|))) (-15 -2012 (|#2| |#2| |#1|)))
+((-2119 (((-411 (-1138 |#4|)) (-1138 |#4|) (-1 (-411 (-1138 |#3|)) (-1138 |#3|))) 80) (((-411 |#4|) |#4| (-1 (-411 (-1138 |#3|)) (-1138 |#3|))) 169)))
+(((-529 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2119 ((-411 |#4|) |#4| (-1 (-411 (-1138 |#3|)) (-1138 |#3|)))) (-15 -2119 ((-411 (-1138 |#4|)) (-1138 |#4|) (-1 (-411 (-1138 |#3|)) (-1138 |#3|))))) (-823) (-769) (-13 (-300) (-145)) (-920 |#3| |#2| |#1|)) (T -529))
+((-2119 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-411 (-1138 *7)) (-1138 *7))) (-4 *7 (-13 (-300) (-145))) (-4 *5 (-823)) (-4 *6 (-769)) (-4 *8 (-920 *7 *6 *5)) (-5 *2 (-411 (-1138 *8))) (-5 *1 (-529 *5 *6 *7 *8)) (-5 *3 (-1138 *8)))) (-2119 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-411 (-1138 *7)) (-1138 *7))) (-4 *7 (-13 (-300) (-145))) (-4 *5 (-823)) (-4 *6 (-769)) (-5 *2 (-411 *3)) (-5 *1 (-529 *5 *6 *7 *3)) (-4 *3 (-920 *7 *6 *5)))))
+(-10 -7 (-15 -2119 ((-411 |#4|) |#4| (-1 (-411 (-1138 |#3|)) (-1138 |#3|)))) (-15 -2119 ((-411 (-1138 |#4|)) (-1138 |#4|) (-1 (-411 (-1138 |#3|)) (-1138 |#3|)))))
+((-4163 ((|#4| |#4|) 74)) (-2978 ((|#4| |#4|) 70)) (-3316 ((|#4| |#4| (-549) (-549)) 76)) (-3956 ((|#4| |#4|) 72)))
+(((-530 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2978 (|#4| |#4|)) (-15 -3956 (|#4| |#4|)) (-15 -4163 (|#4| |#4|)) (-15 -3316 (|#4| |#4| (-549) (-549)))) (-13 (-356) (-361) (-594 (-549))) (-1201 |#1|) (-701 |#1| |#2|) (-1216 |#3|)) (T -530))
+((-3316 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-549)) (-4 *4 (-13 (-356) (-361) (-594 *3))) (-4 *5 (-1201 *4)) (-4 *6 (-701 *4 *5)) (-5 *1 (-530 *4 *5 *6 *2)) (-4 *2 (-1216 *6)))) (-4163 (*1 *2 *2) (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-4 *4 (-1201 *3)) (-4 *5 (-701 *3 *4)) (-5 *1 (-530 *3 *4 *5 *2)) (-4 *2 (-1216 *5)))) (-3956 (*1 *2 *2) (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-4 *4 (-1201 *3)) (-4 *5 (-701 *3 *4)) (-5 *1 (-530 *3 *4 *5 *2)) (-4 *2 (-1216 *5)))) (-2978 (*1 *2 *2) (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-4 *4 (-1201 *3)) (-4 *5 (-701 *3 *4)) (-5 *1 (-530 *3 *4 *5 *2)) (-4 *2 (-1216 *5)))))
+(-10 -7 (-15 -2978 (|#4| |#4|)) (-15 -3956 (|#4| |#4|)) (-15 -4163 (|#4| |#4|)) (-15 -3316 (|#4| |#4| (-549) (-549))))
+((-4163 ((|#2| |#2|) 27)) (-2978 ((|#2| |#2|) 23)) (-3316 ((|#2| |#2| (-549) (-549)) 29)) (-3956 ((|#2| |#2|) 25)))
+(((-531 |#1| |#2|) (-10 -7 (-15 -2978 (|#2| |#2|)) (-15 -3956 (|#2| |#2|)) (-15 -4163 (|#2| |#2|)) (-15 -3316 (|#2| |#2| (-549) (-549)))) (-13 (-356) (-361) (-594 (-549))) (-1216 |#1|)) (T -531))
+((-3316 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-549)) (-4 *4 (-13 (-356) (-361) (-594 *3))) (-5 *1 (-531 *4 *2)) (-4 *2 (-1216 *4)))) (-4163 (*1 *2 *2) (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-5 *1 (-531 *3 *2)) (-4 *2 (-1216 *3)))) (-3956 (*1 *2 *2) (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-5 *1 (-531 *3 *2)) (-4 *2 (-1216 *3)))) (-2978 (*1 *2 *2) (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-5 *1 (-531 *3 *2)) (-4 *2 (-1216 *3)))))
+(-10 -7 (-15 -2978 (|#2| |#2|)) (-15 -3956 (|#2| |#2|)) (-15 -4163 (|#2| |#2|)) (-15 -3316 (|#2| |#2| (-549) (-549))))
+((-3147 (((-3 (-549) "failed") |#2| |#1| (-1 (-3 (-549) "failed") |#1|)) 14) (((-3 (-549) "failed") |#2| |#1| (-549) (-1 (-3 (-549) "failed") |#1|)) 13) (((-3 (-549) "failed") |#2| (-549) (-1 (-3 (-549) "failed") |#1|)) 26)))
+(((-532 |#1| |#2|) (-10 -7 (-15 -3147 ((-3 (-549) "failed") |#2| (-549) (-1 (-3 (-549) "failed") |#1|))) (-15 -3147 ((-3 (-549) "failed") |#2| |#1| (-549) (-1 (-3 (-549) "failed") |#1|))) (-15 -3147 ((-3 (-549) "failed") |#2| |#1| (-1 (-3 (-549) "failed") |#1|)))) (-1018) (-1201 |#1|)) (T -532))
+((-3147 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-549) "failed") *4)) (-4 *4 (-1018)) (-5 *2 (-549)) (-5 *1 (-532 *4 *3)) (-4 *3 (-1201 *4)))) (-3147 (*1 *2 *3 *4 *2 *5) (|partial| -12 (-5 *5 (-1 (-3 (-549) "failed") *4)) (-4 *4 (-1018)) (-5 *2 (-549)) (-5 *1 (-532 *4 *3)) (-4 *3 (-1201 *4)))) (-3147 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *4 (-1 (-3 (-549) "failed") *5)) (-4 *5 (-1018)) (-5 *2 (-549)) (-5 *1 (-532 *5 *3)) (-4 *3 (-1201 *5)))))
+(-10 -7 (-15 -3147 ((-3 (-549) "failed") |#2| (-549) (-1 (-3 (-549) "failed") |#1|))) (-15 -3147 ((-3 (-549) "failed") |#2| |#1| (-549) (-1 (-3 (-549) "failed") |#1|))) (-15 -3147 ((-3 (-549) "failed") |#2| |#1| (-1 (-3 (-549) "failed") |#1|))))
+((-3198 (($ $ $) 79)) (-2620 (((-411 $) $) 47)) (-2712 (((-3 (-549) "failed") $) 59)) (-2657 (((-549) $) 37)) (-1531 (((-3 (-400 (-549)) "failed") $) 74)) (-3945 (((-112) $) 24)) (-1390 (((-400 (-549)) $) 72)) (-1464 (((-112) $) 50)) (-2576 (($ $ $ $) 86)) (-2357 (((-112) $) 16)) (-1926 (($ $ $) 57)) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 69)) (-2964 (((-3 $ "failed") $) 64)) (-2429 (($ $) 23)) (-3200 (($ $ $) 84)) (-3059 (($) 60)) (-3674 (($ $) 53)) (-2119 (((-411 $) $) 45)) (-1980 (((-112) $) 14)) (-1335 (((-747) $) 28)) (-3455 (($ $ (-747)) NIL) (($ $) 10)) (-2279 (($ $) 17)) (-2843 (((-549) $) NIL) (((-525) $) 36) (((-863 (-549)) $) 40) (((-372) $) 31) (((-219) $) 33)) (-2371 (((-747)) 8)) (-1815 (((-112) $ $) 20)) (-2772 (($ $ $) 55)))
+(((-533 |#1|) (-10 -8 (-15 -3200 (|#1| |#1| |#1|)) (-15 -2576 (|#1| |#1| |#1| |#1|)) (-15 -2429 (|#1| |#1|)) (-15 -2279 (|#1| |#1|)) (-15 -1531 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -1390 ((-400 (-549)) |#1|)) (-15 -3945 ((-112) |#1|)) (-15 -3198 (|#1| |#1| |#1|)) (-15 -1815 ((-112) |#1| |#1|)) (-15 -1980 ((-112) |#1|)) (-15 -3059 (|#1|)) (-15 -2964 ((-3 |#1| "failed") |#1|)) (-15 -2843 ((-219) |#1|)) (-15 -2843 ((-372) |#1|)) (-15 -1926 (|#1| |#1| |#1|)) (-15 -3674 (|#1| |#1|)) (-15 -2772 (|#1| |#1| |#1|)) (-15 -3849 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))) (-15 -2843 ((-863 (-549)) |#1|)) (-15 -2843 ((-525) |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2843 ((-549) |#1|)) (-15 -3455 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -2357 ((-112) |#1|)) (-15 -1335 ((-747) |#1|)) (-15 -2119 ((-411 |#1|) |#1|)) (-15 -2620 ((-411 |#1|) |#1|)) (-15 -1464 ((-112) |#1|)) (-15 -2371 ((-747)))) (-534)) (T -533))
+((-2371 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-533 *3)) (-4 *3 (-534)))))
+(-10 -8 (-15 -3200 (|#1| |#1| |#1|)) (-15 -2576 (|#1| |#1| |#1| |#1|)) (-15 -2429 (|#1| |#1|)) (-15 -2279 (|#1| |#1|)) (-15 -1531 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -1390 ((-400 (-549)) |#1|)) (-15 -3945 ((-112) |#1|)) (-15 -3198 (|#1| |#1| |#1|)) (-15 -1815 ((-112) |#1| |#1|)) (-15 -1980 ((-112) |#1|)) (-15 -3059 (|#1|)) (-15 -2964 ((-3 |#1| "failed") |#1|)) (-15 -2843 ((-219) |#1|)) (-15 -2843 ((-372) |#1|)) (-15 -1926 (|#1| |#1| |#1|)) (-15 -3674 (|#1| |#1|)) (-15 -2772 (|#1| |#1| |#1|)) (-15 -3849 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))) (-15 -2843 ((-863 (-549)) |#1|)) (-15 -2843 ((-525) |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2843 ((-549) |#1|)) (-15 -3455 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -2357 ((-112) |#1|)) (-15 -1335 ((-747) |#1|)) (-15 -2119 ((-411 |#1|) |#1|)) (-15 -2620 ((-411 |#1|) |#1|)) (-15 -1464 ((-112) |#1|)) (-15 -2371 ((-747))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-3198 (($ $ $) 82)) (-2416 (((-3 $ "failed") $ $) 19)) (-2973 (($ $ $ $) 71)) (-3239 (($ $) 49)) (-2620 (((-411 $) $) 50)) (-2680 (((-112) $ $) 122)) (-1741 (((-549) $) 111)) (-1309 (($ $ $) 85)) (-3034 (($) 17 T CONST)) (-2712 (((-3 (-549) "failed") $) 103)) (-2657 (((-549) $) 102)) (-2091 (($ $ $) 126)) (-3446 (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 101) (((-665 (-549)) (-665 $)) 100)) (-2612 (((-3 $ "failed") $) 32)) (-1531 (((-3 (-400 (-549)) "failed") $) 79)) (-3945 (((-112) $) 81)) (-1390 (((-400 (-549)) $) 80)) (-3237 (($) 78) (($ $) 77)) (-2065 (($ $ $) 125)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 120)) (-1464 (((-112) $) 51)) (-2576 (($ $ $ $) 69)) (-3457 (($ $ $) 83)) (-2357 (((-112) $) 113)) (-1926 (($ $ $) 94)) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 97)) (-2297 (((-112) $) 30)) (-2803 (((-112) $) 89)) (-2964 (((-3 $ "failed") $) 91)) (-1992 (((-112) $) 112)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 129)) (-2633 (($ $ $ $) 70)) (-2861 (($ $ $) 114)) (-3574 (($ $ $) 115)) (-2429 (($ $) 73)) (-4210 (($ $) 86)) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-3200 (($ $ $) 68)) (-3059 (($) 90 T CONST)) (-3782 (($ $) 75)) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-3674 (($ $) 95)) (-2119 (((-411 $) $) 48)) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 128) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 127)) (-2040 (((-3 $ "failed") $ $) 40)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 121)) (-1980 (((-112) $) 88)) (-1335 (((-747) $) 123)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 124)) (-3455 (($ $ (-747)) 108) (($ $) 106)) (-1896 (($ $) 74)) (-2279 (($ $) 76)) (-2843 (((-549) $) 105) (((-525) $) 99) (((-863 (-549)) $) 98) (((-372) $) 93) (((-219) $) 92)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-549)) 104)) (-2371 (((-747)) 28)) (-1815 (((-112) $ $) 84)) (-2772 (($ $ $) 96)) (-1863 (($) 87)) (-2441 (((-112) $ $) 37)) (-2263 (($ $ $ $) 72)) (-2199 (($ $) 110)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ (-747)) 109) (($ $) 107)) (-2447 (((-112) $ $) 117)) (-2423 (((-112) $ $) 118)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 116)) (-2409 (((-112) $ $) 119)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-534) (-138)) (T -534))
-((-3559 (*1 *2 *1) (-12 (-4 *1 (-534)) (-5 *2 (-112)))) (-3450 (*1 *2 *1) (-12 (-4 *1 (-534)) (-5 *2 (-112)))) (-1864 (*1 *1) (-4 *1 (-534))) (-4210 (*1 *1 *1) (-4 *1 (-534))) (-1310 (*1 *1 *1 *1) (-4 *1 (-534))) (-3935 (*1 *2 *1 *1) (-12 (-4 *1 (-534)) (-5 *2 (-112)))) (-3947 (*1 *1 *1 *1) (-4 *1 (-534))) (-2831 (*1 *1 *1 *1) (-4 *1 (-534))) (-3679 (*1 *2 *1) (-12 (-4 *1 (-534)) (-5 *2 (-112)))) (-2532 (*1 *2 *1) (-12 (-4 *1 (-534)) (-5 *2 (-400 (-549))))) (-3405 (*1 *2 *1) (|partial| -12 (-4 *1 (-534)) (-5 *2 (-400 (-549))))) (-3239 (*1 *1) (-4 *1 (-534))) (-3239 (*1 *1 *1) (-4 *1 (-534))) (-2281 (*1 *1 *1) (-4 *1 (-534))) (-3781 (*1 *1 *1) (-4 *1 (-534))) (-1900 (*1 *1 *1) (-4 *1 (-534))) (-2433 (*1 *1 *1) (-4 *1 (-534))) (-3610 (*1 *1 *1 *1 *1) (-4 *1 (-534))) (-3332 (*1 *1 *1 *1 *1) (-4 *1 (-534))) (-3030 (*1 *1 *1 *1 *1) (-4 *1 (-534))) (-3806 (*1 *1 *1 *1 *1) (-4 *1 (-534))) (-2950 (*1 *1 *1 *1) (-4 *1 (-534))))
-(-13 (-1184) (-300) (-796) (-227) (-594 (-549)) (-1009 (-549)) (-617 (-549)) (-594 (-525)) (-594 (-863 (-549))) (-857 (-549)) (-141) (-993) (-145) (-1118) (-10 -8 (-15 -3559 ((-112) $)) (-15 -3450 ((-112) $)) (-6 -4336) (-15 -1864 ($)) (-15 -4210 ($ $)) (-15 -1310 ($ $ $)) (-15 -3935 ((-112) $ $)) (-15 -3947 ($ $ $)) (-15 -2831 ($ $ $)) (-15 -3679 ((-112) $)) (-15 -2532 ((-400 (-549)) $)) (-15 -3405 ((-3 (-400 (-549)) "failed") $)) (-15 -3239 ($)) (-15 -3239 ($ $)) (-15 -2281 ($ $)) (-15 -3781 ($ $)) (-15 -1900 ($ $)) (-15 -2433 ($ $)) (-15 -3610 ($ $ $ $)) (-15 -3332 ($ $ $ $)) (-15 -3030 ($ $ $ $)) (-15 -3806 ($ $ $ $)) (-15 -2950 ($ $ $)) (-6 -4335)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-145) . T) ((-593 (-834)) . T) ((-141) . T) ((-170) . T) ((-594 (-219)) . T) ((-594 (-372)) . T) ((-594 (-525)) . T) ((-594 (-549)) . T) ((-594 (-863 (-549))) . T) ((-227) . T) ((-283) . T) ((-300) . T) ((-444) . T) ((-541) . T) ((-624 $) . T) ((-617 (-549)) . T) ((-694 $) . T) ((-703) . T) ((-767) . T) ((-768) . T) ((-770) . T) ((-771) . T) ((-796) . T) ((-821) . T) ((-823) . T) ((-857 (-549)) . T) ((-891) . T) ((-993) . T) ((-1009 (-549)) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1118) . T) ((-1184) . T))
-((-3834 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3733 (($) NIL) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-1535 (((-1231) $ |#1| |#1|) NIL (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 ((|#2| $ |#1| |#2|) NIL)) (-1717 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-3490 (((-3 |#2| "failed") |#1| $) NIL)) (-1682 (($) NIL T CONST)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-2129 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-3 |#2| "failed") |#1| $) NIL)) (-3812 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2557 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-1879 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#2| $ |#1|) NIL)) (-2989 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) NIL)) (-4031 ((|#1| $) NIL (|has| |#1| (-823)))) (-1562 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-1569 ((|#1| $) NIL (|has| |#1| (-823)))) (-1868 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4338))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3449 (((-621 |#1|) $) NIL)) (-2427 (((-112) |#1| $) NIL)) (-3504 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-2751 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-3303 (((-621 |#1|) $) NIL)) (-3761 (((-112) |#1| $) NIL)) (-3990 (((-1087) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3646 ((|#2| $) NIL (|has| |#1| (-823)))) (-3779 (((-3 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) "failed") (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL)) (-1642 (($ $ |#2|) NIL (|has| $ (-6 -4338)))) (-3325 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-1780 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-2696 (((-621 |#2|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2898 (($) NIL) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-4000 (((-747) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-747) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067)))) (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-594 (-525))))) (-3854 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-3846 (((-834) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-593 (-834))) (|has| |#2| (-593 (-834)))))) (-3624 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-3527 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-535 |#1| |#2| |#3|) (-13 (-1156 |#1| |#2|) (-10 -7 (-6 -4337))) (-1067) (-1067) (-13 (-1156 |#1| |#2|) (-10 -7 (-6 -4337)))) (T -535))
-NIL
-(-13 (-1156 |#1| |#2|) (-10 -7 (-6 -4337)))
-((-3268 (((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) (-1 (-1139 |#2|) (-1139 |#2|))) 51)))
-(((-536 |#1| |#2|) (-10 -7 (-15 -3268 ((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) (-1 (-1139 |#2|) (-1139 |#2|))))) (-13 (-823) (-541)) (-13 (-27) (-423 |#1|))) (T -536))
-((-3268 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-592 *3)) (-5 *5 (-1 (-1139 *3) (-1139 *3))) (-4 *3 (-13 (-27) (-423 *6))) (-4 *6 (-13 (-823) (-541))) (-5 *2 (-567 *3)) (-5 *1 (-536 *6 *3)))))
-(-10 -7 (-15 -3268 ((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) (-1 (-1139 |#2|) (-1139 |#2|)))))
-((-3776 (((-567 |#5|) |#5| (-1 |#3| |#3|)) 199)) (-4288 (((-3 |#5| "failed") |#5| (-1 |#3| |#3|)) 195)) (-1924 (((-567 |#5|) |#5| (-1 |#3| |#3|)) 202)))
-(((-537 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1924 ((-567 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3776 ((-567 |#5|) |#5| (-1 |#3| |#3|))) (-15 -4288 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|)))) (-13 (-823) (-541) (-1009 (-549))) (-13 (-27) (-423 |#1|)) (-1202 |#2|) (-1202 (-400 |#3|)) (-335 |#2| |#3| |#4|)) (T -537))
-((-4288 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1202 *5)) (-4 *5 (-13 (-27) (-423 *4))) (-4 *4 (-13 (-823) (-541) (-1009 (-549)))) (-4 *7 (-1202 (-400 *6))) (-5 *1 (-537 *4 *5 *6 *7 *2)) (-4 *2 (-335 *5 *6 *7)))) (-3776 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1202 *6)) (-4 *6 (-13 (-27) (-423 *5))) (-4 *5 (-13 (-823) (-541) (-1009 (-549)))) (-4 *8 (-1202 (-400 *7))) (-5 *2 (-567 *3)) (-5 *1 (-537 *5 *6 *7 *8 *3)) (-4 *3 (-335 *6 *7 *8)))) (-1924 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1202 *6)) (-4 *6 (-13 (-27) (-423 *5))) (-4 *5 (-13 (-823) (-541) (-1009 (-549)))) (-4 *8 (-1202 (-400 *7))) (-5 *2 (-567 *3)) (-5 *1 (-537 *5 *6 *7 *8 *3)) (-4 *3 (-335 *6 *7 *8)))))
-(-10 -7 (-15 -1924 ((-567 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3776 ((-567 |#5|) |#5| (-1 |#3| |#3|))) (-15 -4288 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|))))
-((-1373 (((-112) (-549) (-549)) 10)) (-3755 (((-549) (-549)) 7)) (-1654 (((-549) (-549) (-549)) 8)))
-(((-538) (-10 -7 (-15 -3755 ((-549) (-549))) (-15 -1654 ((-549) (-549) (-549))) (-15 -1373 ((-112) (-549) (-549))))) (T -538))
-((-1373 (*1 *2 *3 *3) (-12 (-5 *3 (-549)) (-5 *2 (-112)) (-5 *1 (-538)))) (-1654 (*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-538)))) (-3755 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-538)))))
-(-10 -7 (-15 -3755 ((-549) (-549))) (-15 -1654 ((-549) (-549) (-549))) (-15 -1373 ((-112) (-549) (-549))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2342 ((|#1| $) 59)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-1664 (($ $) 89)) (-1512 (($ $) 72)) (-2861 ((|#1| $) 60)) (-2001 (((-3 $ "failed") $ $) 19)) (-2134 (($ $) 71)) (-1640 (($ $) 88)) (-1486 (($ $) 73)) (-1685 (($ $) 87)) (-1539 (($ $) 74)) (-1682 (($) 17 T CONST)) (-2714 (((-3 (-549) "failed") $) 67)) (-2659 (((-549) $) 66)) (-2114 (((-3 $ "failed") $) 32)) (-3551 (($ |#1| |#1|) 64)) (-2772 (((-112) $) 58)) (-1425 (($) 99)) (-2675 (((-112) $) 30)) (-4187 (($ $ (-549)) 70)) (-2374 (((-112) $) 57)) (-2863 (($ $ $) 105)) (-3575 (($ $ $) 104)) (-3632 (($ $) 96)) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-1496 (($ |#1| |#1|) 65) (($ |#1|) 63) (($ (-400 (-549))) 62)) (-3019 ((|#1| $) 61)) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-2042 (((-3 $ "failed") $ $) 40)) (-2719 (($ $) 97)) (-1698 (($ $) 86)) (-1552 (($ $) 75)) (-1675 (($ $) 85)) (-1526 (($ $) 76)) (-1651 (($ $) 84)) (-1501 (($ $) 77)) (-2608 (((-112) $ |#1|) 56)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-549)) 68)) (-2082 (((-747)) 28)) (-1733 (($ $) 95)) (-1587 (($ $) 83)) (-1498 (((-112) $ $) 37)) (-1710 (($ $) 94)) (-1564 (($ $) 82)) (-1758 (($ $) 93)) (-1612 (($ $) 81)) (-1934 (($ $) 92)) (-1627 (($ $) 80)) (-1745 (($ $) 91)) (-1600 (($ $) 79)) (-1722 (($ $) 90)) (-1576 (($ $) 78)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2448 (((-112) $ $) 102)) (-2425 (((-112) $ $) 101)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 103)) (-2412 (((-112) $ $) 100)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ $) 98) (($ $ (-400 (-549))) 69)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
-(((-539 |#1|) (-138) (-13 (-397) (-1165))) (T -539))
-((-1496 (*1 *1 *2 *2) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1165))))) (-3551 (*1 *1 *2 *2) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1165))))) (-1496 (*1 *1 *2) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1165))))) (-1496 (*1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-4 *1 (-539 *3)) (-4 *3 (-13 (-397) (-1165))))) (-3019 (*1 *2 *1) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1165))))) (-2861 (*1 *2 *1) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1165))))) (-2342 (*1 *2 *1) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1165))))) (-2772 (*1 *2 *1) (-12 (-4 *1 (-539 *3)) (-4 *3 (-13 (-397) (-1165))) (-5 *2 (-112)))) (-2374 (*1 *2 *1) (-12 (-4 *1 (-539 *3)) (-4 *3 (-13 (-397) (-1165))) (-5 *2 (-112)))) (-2608 (*1 *2 *1 *3) (-12 (-4 *1 (-539 *3)) (-4 *3 (-13 (-397) (-1165))) (-5 *2 (-112)))))
-(-13 (-444) (-823) (-1165) (-973) (-1009 (-549)) (-10 -8 (-6 -2661) (-15 -1496 ($ |t#1| |t#1|)) (-15 -3551 ($ |t#1| |t#1|)) (-15 -1496 ($ |t#1|)) (-15 -1496 ($ (-400 (-549)))) (-15 -3019 (|t#1| $)) (-15 -2861 (|t#1| $)) (-15 -2342 (|t#1| $)) (-15 -2772 ((-112) $)) (-15 -2374 ((-112) $)) (-15 -2608 ((-112) $ |t#1|))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-35) . T) ((-94) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-277) . T) ((-283) . T) ((-444) . T) ((-484) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-823) . T) ((-973) . T) ((-1009 (-549)) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1165) . T) ((-1168) . T))
-((-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 9)) (-2258 (($ $) 11)) (-2799 (((-112) $) 18)) (-2114 (((-3 $ "failed") $) 16)) (-1498 (((-112) $ $) 20)))
-(((-540 |#1|) (-10 -8 (-15 -2799 ((-112) |#1|)) (-15 -1498 ((-112) |#1| |#1|)) (-15 -2258 (|#1| |#1|)) (-15 -2297 ((-2 (|:| -2207 |#1|) (|:| -4324 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2114 ((-3 |#1| "failed") |#1|))) (-541)) (T -540))
-NIL
-(-10 -8 (-15 -2799 ((-112) |#1|)) (-15 -1498 ((-112) |#1| |#1|)) (-15 -2258 (|#1| |#1|)) (-15 -2297 ((-2 (|:| -2207 |#1|) (|:| -4324 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2114 ((-3 |#1| "failed") |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-2042 (((-3 $ "failed") $ $) 40)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41)) (-2082 (((-747)) 28)) (-1498 (((-112) $ $) 37)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+((-2803 (*1 *2 *1) (-12 (-4 *1 (-534)) (-5 *2 (-112)))) (-1980 (*1 *2 *1) (-12 (-4 *1 (-534)) (-5 *2 (-112)))) (-1863 (*1 *1) (-4 *1 (-534))) (-4210 (*1 *1 *1) (-4 *1 (-534))) (-1309 (*1 *1 *1 *1) (-4 *1 (-534))) (-1815 (*1 *2 *1 *1) (-12 (-4 *1 (-534)) (-5 *2 (-112)))) (-3457 (*1 *1 *1 *1) (-4 *1 (-534))) (-3198 (*1 *1 *1 *1) (-4 *1 (-534))) (-3945 (*1 *2 *1) (-12 (-4 *1 (-534)) (-5 *2 (-112)))) (-1390 (*1 *2 *1) (-12 (-4 *1 (-534)) (-5 *2 (-400 (-549))))) (-1531 (*1 *2 *1) (|partial| -12 (-4 *1 (-534)) (-5 *2 (-400 (-549))))) (-3237 (*1 *1) (-4 *1 (-534))) (-3237 (*1 *1 *1) (-4 *1 (-534))) (-2279 (*1 *1 *1) (-4 *1 (-534))) (-3782 (*1 *1 *1) (-4 *1 (-534))) (-1896 (*1 *1 *1) (-4 *1 (-534))) (-2429 (*1 *1 *1) (-4 *1 (-534))) (-2263 (*1 *1 *1 *1 *1) (-4 *1 (-534))) (-2973 (*1 *1 *1 *1 *1) (-4 *1 (-534))) (-2633 (*1 *1 *1 *1 *1) (-4 *1 (-534))) (-2576 (*1 *1 *1 *1 *1) (-4 *1 (-534))) (-3200 (*1 *1 *1 *1) (-4 *1 (-534))))
+(-13 (-1183) (-300) (-796) (-227) (-594 (-549)) (-1009 (-549)) (-617 (-549)) (-594 (-525)) (-594 (-863 (-549))) (-857 (-549)) (-141) (-993) (-145) (-1117) (-10 -8 (-15 -2803 ((-112) $)) (-15 -1980 ((-112) $)) (-6 -4335) (-15 -1863 ($)) (-15 -4210 ($ $)) (-15 -1309 ($ $ $)) (-15 -1815 ((-112) $ $)) (-15 -3457 ($ $ $)) (-15 -3198 ($ $ $)) (-15 -3945 ((-112) $)) (-15 -1390 ((-400 (-549)) $)) (-15 -1531 ((-3 (-400 (-549)) "failed") $)) (-15 -3237 ($)) (-15 -3237 ($ $)) (-15 -2279 ($ $)) (-15 -3782 ($ $)) (-15 -1896 ($ $)) (-15 -2429 ($ $)) (-15 -2263 ($ $ $ $)) (-15 -2973 ($ $ $ $)) (-15 -2633 ($ $ $ $)) (-15 -2576 ($ $ $ $)) (-15 -3200 ($ $ $)) (-6 -4334)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-145) . T) ((-593 (-834)) . T) ((-141) . T) ((-170) . T) ((-594 (-219)) . T) ((-594 (-372)) . T) ((-594 (-525)) . T) ((-594 (-549)) . T) ((-594 (-863 (-549))) . T) ((-227) . T) ((-283) . T) ((-300) . T) ((-444) . T) ((-541) . T) ((-624 $) . T) ((-617 (-549)) . T) ((-694 $) . T) ((-703) . T) ((-767) . T) ((-768) . T) ((-770) . T) ((-771) . T) ((-796) . T) ((-821) . T) ((-823) . T) ((-857 (-549)) . T) ((-891) . T) ((-993) . T) ((-1009 (-549)) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1117) . T) ((-1183) . T))
+((-3832 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3732 (($) NIL) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3659 (((-1230) $ |#1| |#1|) NIL (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 ((|#2| $ |#1| |#2|) NIL)) (-3827 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-3489 (((-3 |#2| "failed") |#1| $) NIL)) (-3034 (($) NIL T CONST)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-3546 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-3 |#2| "failed") |#1| $) NIL)) (-3812 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-2556 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (|has| $ (-6 -4336))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-1875 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#2| $ |#1|) NIL)) (-2987 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) NIL)) (-2807 ((|#1| $) NIL (|has| |#1| (-823)))) (-3698 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3063 ((|#1| $) NIL (|has| |#1| (-823)))) (-1864 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4337))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3448 (((-621 |#1|) $) NIL)) (-2130 (((-112) |#1| $) NIL)) (-2548 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-1799 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-2296 (((-621 |#1|) $) NIL)) (-2284 (((-112) |#1| $) NIL)) (-3988 (((-1086) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3645 ((|#2| $) NIL (|has| |#1| (-823)))) (-3959 (((-3 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) "failed") (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL)) (-1943 (($ $ |#2|) NIL (|has| $ (-6 -4337)))) (-3536 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-3360 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3347 (((-621 |#2|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3226 (($) NIL) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3997 (((-747) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-747) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066)))) (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-594 (-525))))) (-3853 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3845 (((-834) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-593 (-834))) (|has| |#2| (-593 (-834)))))) (-4213 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3025 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-535 |#1| |#2| |#3|) (-13 (-1155 |#1| |#2|) (-10 -7 (-6 -4336))) (-1066) (-1066) (-13 (-1155 |#1| |#2|) (-10 -7 (-6 -4336)))) (T -535))
+NIL
+(-13 (-1155 |#1| |#2|) (-10 -7 (-6 -4336)))
+((-3365 (((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) (-1 (-1138 |#2|) (-1138 |#2|))) 51)))
+(((-536 |#1| |#2|) (-10 -7 (-15 -3365 ((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) (-1 (-1138 |#2|) (-1138 |#2|))))) (-13 (-823) (-541)) (-13 (-27) (-423 |#1|))) (T -536))
+((-3365 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-592 *3)) (-5 *5 (-1 (-1138 *3) (-1138 *3))) (-4 *3 (-13 (-27) (-423 *6))) (-4 *6 (-13 (-823) (-541))) (-5 *2 (-567 *3)) (-5 *1 (-536 *6 *3)))))
+(-10 -7 (-15 -3365 ((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) (-1 (-1138 |#2|) (-1138 |#2|)))))
+((-1873 (((-567 |#5|) |#5| (-1 |#3| |#3|)) 199)) (-2734 (((-3 |#5| "failed") |#5| (-1 |#3| |#3|)) 195)) (-3893 (((-567 |#5|) |#5| (-1 |#3| |#3|)) 202)))
+(((-537 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3893 ((-567 |#5|) |#5| (-1 |#3| |#3|))) (-15 -1873 ((-567 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2734 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|)))) (-13 (-823) (-541) (-1009 (-549))) (-13 (-27) (-423 |#1|)) (-1201 |#2|) (-1201 (-400 |#3|)) (-335 |#2| |#3| |#4|)) (T -537))
+((-2734 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1201 *5)) (-4 *5 (-13 (-27) (-423 *4))) (-4 *4 (-13 (-823) (-541) (-1009 (-549)))) (-4 *7 (-1201 (-400 *6))) (-5 *1 (-537 *4 *5 *6 *7 *2)) (-4 *2 (-335 *5 *6 *7)))) (-1873 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1201 *6)) (-4 *6 (-13 (-27) (-423 *5))) (-4 *5 (-13 (-823) (-541) (-1009 (-549)))) (-4 *8 (-1201 (-400 *7))) (-5 *2 (-567 *3)) (-5 *1 (-537 *5 *6 *7 *8 *3)) (-4 *3 (-335 *6 *7 *8)))) (-3893 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1201 *6)) (-4 *6 (-13 (-27) (-423 *5))) (-4 *5 (-13 (-823) (-541) (-1009 (-549)))) (-4 *8 (-1201 (-400 *7))) (-5 *2 (-567 *3)) (-5 *1 (-537 *5 *6 *7 *8 *3)) (-4 *3 (-335 *6 *7 *8)))))
+(-10 -7 (-15 -3893 ((-567 |#5|) |#5| (-1 |#3| |#3|))) (-15 -1873 ((-567 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2734 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|))))
+((-2985 (((-112) (-549) (-549)) 10)) (-3130 (((-549) (-549)) 7)) (-2481 (((-549) (-549) (-549)) 8)))
+(((-538) (-10 -7 (-15 -3130 ((-549) (-549))) (-15 -2481 ((-549) (-549) (-549))) (-15 -2985 ((-112) (-549) (-549))))) (T -538))
+((-2985 (*1 *2 *3 *3) (-12 (-5 *3 (-549)) (-5 *2 (-112)) (-5 *1 (-538)))) (-2481 (*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-538)))) (-3130 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-538)))))
+(-10 -7 (-15 -3130 ((-549) (-549))) (-15 -2481 ((-549) (-549) (-549))) (-15 -2985 ((-112) (-549) (-549))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2340 ((|#1| $) 59)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-1662 (($ $) 89)) (-1510 (($ $) 72)) (-4280 ((|#1| $) 60)) (-2416 (((-3 $ "failed") $ $) 19)) (-2132 (($ $) 71)) (-1638 (($ $) 88)) (-1483 (($ $) 73)) (-1684 (($ $) 87)) (-1538 (($ $) 74)) (-3034 (($) 17 T CONST)) (-2712 (((-3 (-549) "failed") $) 67)) (-2657 (((-549) $) 66)) (-2612 (((-3 $ "failed") $) 32)) (-3477 (($ |#1| |#1|) 64)) (-2357 (((-112) $) 58)) (-1425 (($) 99)) (-2297 (((-112) $) 30)) (-3621 (($ $ (-549)) 70)) (-1992 (((-112) $) 57)) (-2861 (($ $ $) 105)) (-3574 (($ $ $) 104)) (-3631 (($ $) 96)) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-2186 (($ |#1| |#1|) 65) (($ |#1|) 63) (($ (-400 (-549))) 62)) (-3007 ((|#1| $) 61)) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-2040 (((-3 $ "failed") $ $) 40)) (-2717 (($ $) 97)) (-1696 (($ $) 86)) (-1551 (($ $) 75)) (-1673 (($ $) 85)) (-1525 (($ $) 76)) (-1648 (($ $) 84)) (-1500 (($ $) 77)) (-1740 (((-112) $ |#1|) 56)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-549)) 68)) (-2371 (((-747)) 28)) (-1731 (($ $) 95)) (-1585 (($ $) 83)) (-2441 (((-112) $ $) 37)) (-1708 (($ $) 94)) (-1562 (($ $) 82)) (-1753 (($ $) 93)) (-1611 (($ $) 81)) (-1932 (($ $) 92)) (-1625 (($ $) 80)) (-1743 (($ $) 91)) (-1598 (($ $) 79)) (-1719 (($ $) 90)) (-1575 (($ $) 78)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2447 (((-112) $ $) 102)) (-2423 (((-112) $ $) 101)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 103)) (-2409 (((-112) $ $) 100)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ $) 98) (($ $ (-400 (-549))) 69)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+(((-539 |#1|) (-138) (-13 (-397) (-1164))) (T -539))
+((-2186 (*1 *1 *2 *2) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1164))))) (-3477 (*1 *1 *2 *2) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1164))))) (-2186 (*1 *1 *2) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1164))))) (-2186 (*1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-4 *1 (-539 *3)) (-4 *3 (-13 (-397) (-1164))))) (-3007 (*1 *2 *1) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1164))))) (-4280 (*1 *2 *1) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1164))))) (-2340 (*1 *2 *1) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1164))))) (-2357 (*1 *2 *1) (-12 (-4 *1 (-539 *3)) (-4 *3 (-13 (-397) (-1164))) (-5 *2 (-112)))) (-1992 (*1 *2 *1) (-12 (-4 *1 (-539 *3)) (-4 *3 (-13 (-397) (-1164))) (-5 *2 (-112)))) (-1740 (*1 *2 *1 *3) (-12 (-4 *1 (-539 *3)) (-4 *3 (-13 (-397) (-1164))) (-5 *2 (-112)))))
+(-13 (-444) (-823) (-1164) (-973) (-1009 (-549)) (-10 -8 (-6 -2659) (-15 -2186 ($ |t#1| |t#1|)) (-15 -3477 ($ |t#1| |t#1|)) (-15 -2186 ($ |t#1|)) (-15 -2186 ($ (-400 (-549)))) (-15 -3007 (|t#1| $)) (-15 -4280 (|t#1| $)) (-15 -2340 (|t#1| $)) (-15 -2357 ((-112) $)) (-15 -1992 ((-112) $)) (-15 -1740 ((-112) $ |t#1|))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-35) . T) ((-94) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-277) . T) ((-283) . T) ((-444) . T) ((-484) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-823) . T) ((-973) . T) ((-1009 (-549)) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1164) . T) ((-1167) . T))
+((-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 9)) (-3044 (($ $) 11)) (-2774 (((-112) $) 18)) (-2612 (((-3 $ "failed") $) 16)) (-2441 (((-112) $ $) 20)))
+(((-540 |#1|) (-10 -8 (-15 -2774 ((-112) |#1|)) (-15 -2441 ((-112) |#1| |#1|)) (-15 -3044 (|#1| |#1|)) (-15 -4010 ((-2 (|:| -1951 |#1|) (|:| -4323 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2612 ((-3 |#1| "failed") |#1|))) (-541)) (T -540))
+NIL
+(-10 -8 (-15 -2774 ((-112) |#1|)) (-15 -2441 ((-112) |#1| |#1|)) (-15 -3044 (|#1| |#1|)) (-15 -4010 ((-2 (|:| -1951 |#1|) (|:| -4323 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2612 ((-3 |#1| "failed") |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2040 (((-3 $ "failed") $ $) 40)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41)) (-2371 (((-747)) 28)) (-2441 (((-112) $ $) 37)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-541) (-138)) (T -541))
-((-2042 (*1 *1 *1 *1) (|partial| -4 *1 (-541))) (-2297 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -2207 *1) (|:| -4324 *1) (|:| |associate| *1))) (-4 *1 (-541)))) (-2258 (*1 *1 *1) (-4 *1 (-541))) (-1498 (*1 *2 *1 *1) (-12 (-4 *1 (-541)) (-5 *2 (-112)))) (-2799 (*1 *2 *1) (-12 (-4 *1 (-541)) (-5 *2 (-112)))))
-(-13 (-170) (-38 $) (-283) (-10 -8 (-15 -2042 ((-3 $ "failed") $ $)) (-15 -2297 ((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $)) (-15 -2258 ($ $)) (-15 -1498 ((-112) $ $)) (-15 -2799 ((-112) $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-4027 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1143) (-621 |#2|)) 37)) (-1295 (((-567 |#2|) |#2| (-1143)) 62)) (-2777 (((-3 |#2| "failed") |#2| (-1143)) 152)) (-2343 (((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1143) (-592 |#2|) (-621 (-592 |#2|))) 155)) (-3234 (((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1143) |#2|) 40)))
-(((-542 |#1| |#2|) (-10 -7 (-15 -3234 ((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1143) |#2|)) (-15 -4027 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1143) (-621 |#2|))) (-15 -2777 ((-3 |#2| "failed") |#2| (-1143))) (-15 -1295 ((-567 |#2|) |#2| (-1143))) (-15 -2343 ((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1143) (-592 |#2|) (-621 (-592 |#2|))))) (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549))) (-13 (-27) (-1165) (-423 |#1|))) (T -542))
-((-2343 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1143)) (-5 *6 (-621 (-592 *3))) (-5 *5 (-592 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *7))) (-4 *7 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-2 (|:| -3440 *3) (|:| |coeff| *3))) (-5 *1 (-542 *7 *3)))) (-1295 (*1 *2 *3 *4) (-12 (-5 *4 (-1143)) (-4 *5 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-567 *3)) (-5 *1 (-542 *5 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5))))) (-2777 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1143)) (-4 *4 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-542 *4 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *4))))) (-4027 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1143)) (-5 *5 (-621 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *6))) (-4 *6 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-542 *6 *3)))) (-3234 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1143)) (-4 *5 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-2 (|:| -3440 *3) (|:| |coeff| *3))) (-5 *1 (-542 *5 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5))))))
-(-10 -7 (-15 -3234 ((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1143) |#2|)) (-15 -4027 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1143) (-621 |#2|))) (-15 -2777 ((-3 |#2| "failed") |#2| (-1143))) (-15 -1295 ((-567 |#2|) |#2| (-1143))) (-15 -2343 ((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1143) (-592 |#2|) (-621 (-592 |#2|)))))
-((-2402 (((-411 |#1|) |#1|) 18)) (-2121 (((-411 |#1|) |#1|) 33)) (-1813 (((-3 |#1| "failed") |#1|) 44)) (-3659 (((-411 |#1|) |#1|) 51)))
-(((-543 |#1|) (-10 -7 (-15 -2121 ((-411 |#1|) |#1|)) (-15 -2402 ((-411 |#1|) |#1|)) (-15 -3659 ((-411 |#1|) |#1|)) (-15 -1813 ((-3 |#1| "failed") |#1|))) (-534)) (T -543))
-((-1813 (*1 *2 *2) (|partial| -12 (-5 *1 (-543 *2)) (-4 *2 (-534)))) (-3659 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-543 *3)) (-4 *3 (-534)))) (-2402 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-543 *3)) (-4 *3 (-534)))) (-2121 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-543 *3)) (-4 *3 (-534)))))
-(-10 -7 (-15 -2121 ((-411 |#1|) |#1|)) (-15 -2402 ((-411 |#1|) |#1|)) (-15 -3659 ((-411 |#1|) |#1|)) (-15 -1813 ((-3 |#1| "failed") |#1|)))
-((-2518 (($) 9)) (-2764 (((-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 35)) (-3449 (((-621 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) $) 32)) (-2751 (($ (-2 (|:| -3337 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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)) (-2637 (($ (-621 (-2 (|:| -3337 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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)) (-1793 (((-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 39)) (-2696 (((-621 (-2 (|:| -3337 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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)) (-1766 (((-1231)) 12)))
-(((-544) (-10 -8 (-15 -2518 ($)) (-15 -1766 ((-1231))) (-15 -3449 ((-621 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) $)) (-15 -2637 ($ (-621 (-2 (|:| -3337 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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 -2751 ($ (-2 (|:| -3337 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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 -2764 ((-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2696 ((-621 (-2 (|:| -3337 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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 -1793 ((-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))) (T -544))
-((-1793 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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 (-544)))) (-2696 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| -3337 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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 (-544)))) (-2764 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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 (-544)))) (-2751 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -3337 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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 (-544)))) (-2637 (*1 *1 *2) (-12 (-5 *2 (-621 (-2 (|:| -3337 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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 (-544)))) (-3449 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-5 *1 (-544)))) (-1766 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-544)))) (-2518 (*1 *1) (-5 *1 (-544))))
-(-10 -8 (-15 -2518 ($)) (-15 -1766 ((-1231))) (-15 -3449 ((-621 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) $)) (-15 -2637 ($ (-621 (-2 (|:| -3337 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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 -2751 ($ (-2 (|:| -3337 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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 -2764 ((-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -2696 ((-621 (-2 (|:| -3337 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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 -1793 ((-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| (-1123 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1372 (-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| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))
-((-2084 (((-1139 (-400 (-1139 |#2|))) |#2| (-592 |#2|) (-592 |#2|) (-1139 |#2|)) 32)) (-3897 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|) (-592 |#2|) |#2| (-400 (-1139 |#2|))) 100) (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|) |#2| (-1139 |#2|)) 110)) (-3883 (((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) (-592 |#2|) |#2| (-400 (-1139 |#2|))) 80) (((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) |#2| (-1139 |#2|)) 52)) (-2784 (((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2| (-592 |#2|) |#2| (-400 (-1139 |#2|))) 87) (((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2| |#2| (-1139 |#2|)) 109)) (-2455 (((-3 |#2| "failed") |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1143)) (-592 |#2|) |#2| (-400 (-1139 |#2|))) 105) (((-3 |#2| "failed") |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1143)) |#2| (-1139 |#2|)) 111)) (-1729 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1949 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) (-592 |#2|) |#2| (-400 (-1139 |#2|))) 128 (|has| |#3| (-632 |#2|))) (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1949 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) |#2| (-1139 |#2|)) 127 (|has| |#3| (-632 |#2|)))) (-2261 ((|#2| (-1139 (-400 (-1139 |#2|))) (-592 |#2|) |#2|) 50)) (-2548 (((-1139 (-400 (-1139 |#2|))) (-1139 |#2|) (-592 |#2|)) 31)))
-(((-545 |#1| |#2| |#3|) (-10 -7 (-15 -3883 ((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) |#2| (-1139 |#2|))) (-15 -3883 ((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) (-592 |#2|) |#2| (-400 (-1139 |#2|)))) (-15 -2784 ((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2| |#2| (-1139 |#2|))) (-15 -2784 ((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2| (-592 |#2|) |#2| (-400 (-1139 |#2|)))) (-15 -3897 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|) |#2| (-1139 |#2|))) (-15 -3897 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|) (-592 |#2|) |#2| (-400 (-1139 |#2|)))) (-15 -2455 ((-3 |#2| "failed") |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1143)) |#2| (-1139 |#2|))) (-15 -2455 ((-3 |#2| "failed") |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1143)) (-592 |#2|) |#2| (-400 (-1139 |#2|)))) (-15 -2084 ((-1139 (-400 (-1139 |#2|))) |#2| (-592 |#2|) (-592 |#2|) (-1139 |#2|))) (-15 -2261 (|#2| (-1139 (-400 (-1139 |#2|))) (-592 |#2|) |#2|)) (-15 -2548 ((-1139 (-400 (-1139 |#2|))) (-1139 |#2|) (-592 |#2|))) (IF (|has| |#3| (-632 |#2|)) (PROGN (-15 -1729 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1949 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) |#2| (-1139 |#2|))) (-15 -1729 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1949 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) (-592 |#2|) |#2| (-400 (-1139 |#2|))))) |%noBranch|)) (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))) (-13 (-423 |#1|) (-27) (-1165)) (-1067)) (T -545))
-((-1729 (*1 *2 *3 *4 *5 *5 *5 *4 *6) (-12 (-5 *5 (-592 *4)) (-5 *6 (-400 (-1139 *4))) (-4 *4 (-13 (-423 *7) (-27) (-1165))) (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1949 (-621 *4)))) (-5 *1 (-545 *7 *4 *3)) (-4 *3 (-632 *4)) (-4 *3 (-1067)))) (-1729 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *5 (-592 *4)) (-5 *6 (-1139 *4)) (-4 *4 (-13 (-423 *7) (-27) (-1165))) (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1949 (-621 *4)))) (-5 *1 (-545 *7 *4 *3)) (-4 *3 (-632 *4)) (-4 *3 (-1067)))) (-2548 (*1 *2 *3 *4) (-12 (-5 *4 (-592 *6)) (-4 *6 (-13 (-423 *5) (-27) (-1165))) (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-1139 (-400 (-1139 *6)))) (-5 *1 (-545 *5 *6 *7)) (-5 *3 (-1139 *6)) (-4 *7 (-1067)))) (-2261 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1139 (-400 (-1139 *2)))) (-5 *4 (-592 *2)) (-4 *2 (-13 (-423 *5) (-27) (-1165))) (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *1 (-545 *5 *2 *6)) (-4 *6 (-1067)))) (-2084 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-592 *3)) (-4 *3 (-13 (-423 *6) (-27) (-1165))) (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-1139 (-400 (-1139 *3)))) (-5 *1 (-545 *6 *3 *7)) (-5 *5 (-1139 *3)) (-4 *7 (-1067)))) (-2455 (*1 *2 *2 *2 *3 *3 *4 *3 *2 *5) (|partial| -12 (-5 *3 (-592 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1143))) (-5 *5 (-400 (-1139 *2))) (-4 *2 (-13 (-423 *6) (-27) (-1165))) (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *1 (-545 *6 *2 *7)) (-4 *7 (-1067)))) (-2455 (*1 *2 *2 *2 *3 *3 *4 *2 *5) (|partial| -12 (-5 *3 (-592 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1143))) (-5 *5 (-1139 *2)) (-4 *2 (-13 (-423 *6) (-27) (-1165))) (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *1 (-545 *6 *2 *7)) (-4 *7 (-1067)))) (-3897 (*1 *2 *3 *4 *4 *5 *4 *3 *6) (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-621 *3)) (-5 *6 (-400 (-1139 *3))) (-4 *3 (-13 (-423 *7) (-27) (-1165))) (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-545 *7 *3 *8)) (-4 *8 (-1067)))) (-3897 (*1 *2 *3 *4 *4 *5 *3 *6) (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-621 *3)) (-5 *6 (-1139 *3)) (-4 *3 (-13 (-423 *7) (-27) (-1165))) (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-545 *7 *3 *8)) (-4 *8 (-1067)))) (-2784 (*1 *2 *3 *4 *4 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-400 (-1139 *3))) (-4 *3 (-13 (-423 *6) (-27) (-1165))) (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| -3440 *3) (|:| |coeff| *3))) (-5 *1 (-545 *6 *3 *7)) (-4 *7 (-1067)))) (-2784 (*1 *2 *3 *4 *4 *3 *3 *5) (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-1139 *3)) (-4 *3 (-13 (-423 *6) (-27) (-1165))) (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| -3440 *3) (|:| |coeff| *3))) (-5 *1 (-545 *6 *3 *7)) (-4 *7 (-1067)))) (-3883 (*1 *2 *3 *4 *4 *4 *3 *5) (-12 (-5 *4 (-592 *3)) (-5 *5 (-400 (-1139 *3))) (-4 *3 (-13 (-423 *6) (-27) (-1165))) (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-567 *3)) (-5 *1 (-545 *6 *3 *7)) (-4 *7 (-1067)))) (-3883 (*1 *2 *3 *4 *4 *3 *5) (-12 (-5 *4 (-592 *3)) (-5 *5 (-1139 *3)) (-4 *3 (-13 (-423 *6) (-27) (-1165))) (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-567 *3)) (-5 *1 (-545 *6 *3 *7)) (-4 *7 (-1067)))))
-(-10 -7 (-15 -3883 ((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) |#2| (-1139 |#2|))) (-15 -3883 ((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) (-592 |#2|) |#2| (-400 (-1139 |#2|)))) (-15 -2784 ((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2| |#2| (-1139 |#2|))) (-15 -2784 ((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2| (-592 |#2|) |#2| (-400 (-1139 |#2|)))) (-15 -3897 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|) |#2| (-1139 |#2|))) (-15 -3897 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|) (-592 |#2|) |#2| (-400 (-1139 |#2|)))) (-15 -2455 ((-3 |#2| "failed") |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1143)) |#2| (-1139 |#2|))) (-15 -2455 ((-3 |#2| "failed") |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1143)) (-592 |#2|) |#2| (-400 (-1139 |#2|)))) (-15 -2084 ((-1139 (-400 (-1139 |#2|))) |#2| (-592 |#2|) (-592 |#2|) (-1139 |#2|))) (-15 -2261 (|#2| (-1139 (-400 (-1139 |#2|))) (-592 |#2|) |#2|)) (-15 -2548 ((-1139 (-400 (-1139 |#2|))) (-1139 |#2|) (-592 |#2|))) (IF (|has| |#3| (-632 |#2|)) (PROGN (-15 -1729 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1949 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) |#2| (-1139 |#2|))) (-15 -1729 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1949 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) (-592 |#2|) |#2| (-400 (-1139 |#2|))))) |%noBranch|))
-((-3385 (((-549) (-549) (-747)) 66)) (-3500 (((-549) (-549)) 65)) (-3232 (((-549) (-549)) 64)) (-4227 (((-549) (-549)) 69)) (-2497 (((-549) (-549) (-549)) 49)) (-3406 (((-549) (-549) (-549)) 46)) (-3191 (((-400 (-549)) (-549)) 20)) (-1443 (((-549) (-549)) 21)) (-4307 (((-549) (-549)) 58)) (-4012 (((-549) (-549)) 32)) (-4246 (((-621 (-549)) (-549)) 63)) (-2264 (((-549) (-549) (-549) (-549) (-549)) 44)) (-3650 (((-400 (-549)) (-549)) 41)))
-(((-546) (-10 -7 (-15 -3650 ((-400 (-549)) (-549))) (-15 -2264 ((-549) (-549) (-549) (-549) (-549))) (-15 -4246 ((-621 (-549)) (-549))) (-15 -4012 ((-549) (-549))) (-15 -4307 ((-549) (-549))) (-15 -1443 ((-549) (-549))) (-15 -3191 ((-400 (-549)) (-549))) (-15 -3406 ((-549) (-549) (-549))) (-15 -2497 ((-549) (-549) (-549))) (-15 -4227 ((-549) (-549))) (-15 -3232 ((-549) (-549))) (-15 -3500 ((-549) (-549))) (-15 -3385 ((-549) (-549) (-747))))) (T -546))
-((-3385 (*1 *2 *2 *3) (-12 (-5 *2 (-549)) (-5 *3 (-747)) (-5 *1 (-546)))) (-3500 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-3232 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-4227 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-2497 (*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-3406 (*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-3191 (*1 *2 *3) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-546)) (-5 *3 (-549)))) (-1443 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-4307 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-4012 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-4246 (*1 *2 *3) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-546)) (-5 *3 (-549)))) (-2264 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-3650 (*1 *2 *3) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-546)) (-5 *3 (-549)))))
-(-10 -7 (-15 -3650 ((-400 (-549)) (-549))) (-15 -2264 ((-549) (-549) (-549) (-549) (-549))) (-15 -4246 ((-621 (-549)) (-549))) (-15 -4012 ((-549) (-549))) (-15 -4307 ((-549) (-549))) (-15 -1443 ((-549) (-549))) (-15 -3191 ((-400 (-549)) (-549))) (-15 -3406 ((-549) (-549) (-549))) (-15 -2497 ((-549) (-549) (-549))) (-15 -4227 ((-549) (-549))) (-15 -3232 ((-549) (-549))) (-15 -3500 ((-549) (-549))) (-15 -3385 ((-549) (-549) (-747))))
-((-3707 (((-2 (|:| |answer| |#4|) (|:| -3910 |#4|)) |#4| (-1 |#2| |#2|)) 52)))
-(((-547 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3707 ((-2 (|:| |answer| |#4|) (|:| -3910 |#4|)) |#4| (-1 |#2| |#2|)))) (-356) (-1202 |#1|) (-1202 (-400 |#2|)) (-335 |#1| |#2| |#3|)) (T -547))
-((-3707 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1202 *5)) (-4 *5 (-356)) (-4 *7 (-1202 (-400 *6))) (-5 *2 (-2 (|:| |answer| *3) (|:| -3910 *3))) (-5 *1 (-547 *5 *6 *7 *3)) (-4 *3 (-335 *5 *6 *7)))))
-(-10 -7 (-15 -3707 ((-2 (|:| |answer| |#4|) (|:| -3910 |#4|)) |#4| (-1 |#2| |#2|))))
-((-3707 (((-2 (|:| |answer| (-400 |#2|)) (|:| -3910 (-400 |#2|)) (|:| |specpart| (-400 |#2|)) (|:| |polypart| |#2|)) (-400 |#2|) (-1 |#2| |#2|)) 18)))
-(((-548 |#1| |#2|) (-10 -7 (-15 -3707 ((-2 (|:| |answer| (-400 |#2|)) (|:| -3910 (-400 |#2|)) (|:| |specpart| (-400 |#2|)) (|:| |polypart| |#2|)) (-400 |#2|) (-1 |#2| |#2|)))) (-356) (-1202 |#1|)) (T -548))
-((-3707 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1202 *5)) (-4 *5 (-356)) (-5 *2 (-2 (|:| |answer| (-400 *6)) (|:| -3910 (-400 *6)) (|:| |specpart| (-400 *6)) (|:| |polypart| *6))) (-5 *1 (-548 *5 *6)) (-5 *3 (-400 *6)))))
-(-10 -7 (-15 -3707 ((-2 (|:| |answer| (-400 |#2|)) (|:| -3910 (-400 |#2|)) (|:| |specpart| (-400 |#2|)) (|:| |polypart| |#2|)) (-400 |#2|) (-1 |#2| |#2|))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 25)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 88)) (-2258 (($ $) 89)) (-2799 (((-112) $) NIL)) (-2831 (($ $ $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3332 (($ $ $ $) 43)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1872 (((-549) $) NIL)) (-1310 (($ $ $) 82)) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL)) (-2659 (((-549) $) NIL)) (-2095 (($ $ $) 81)) (-3879 (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 62) (((-665 (-549)) (-665 $)) 58)) (-2114 (((-3 $ "failed") $) 85)) (-3405 (((-3 (-400 (-549)) "failed") $) NIL)) (-3679 (((-112) $) NIL)) (-2532 (((-400 (-549)) $) NIL)) (-3239 (($) 64) (($ $) 65)) (-2067 (($ $ $) 80)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-3806 (($ $ $ $) NIL)) (-3947 (($ $ $) 55)) (-2772 (((-112) $) NIL)) (-1271 (($ $ $) NIL)) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL)) (-2675 (((-112) $) 26)) (-3559 (((-112) $) 75)) (-1681 (((-3 $ "failed") $) NIL)) (-2374 (((-112) $) 35)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3030 (($ $ $ $) 44)) (-2863 (($ $ $) 77)) (-3575 (($ $ $) 76)) (-2433 (($ $) NIL)) (-4210 (($ $) 41)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) 54)) (-2950 (($ $ $) NIL)) (-3060 (($) NIL T CONST)) (-3781 (($ $) 31)) (-3990 (((-1087) $) 34)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 119)) (-3727 (($ $ $) 86) (($ (-621 $)) NIL)) (-4005 (($ $) NIL)) (-2121 (((-411 $) $) 105)) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL)) (-2042 (((-3 $ "failed") $ $) 84)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3450 (((-112) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 79)) (-3456 (($ $ (-747)) NIL) (($ $) NIL)) (-1900 (($ $) 32)) (-2281 (($ $) 30)) (-2845 (((-549) $) 40) (((-525) $) 52) (((-863 (-549)) $) NIL) (((-372) $) 47) (((-219) $) 49) (((-1125) $) 53)) (-3846 (((-834) $) 38) (($ (-549)) 39) (($ $) NIL) (($ (-549)) 39)) (-2082 (((-747)) NIL)) (-3935 (((-112) $ $) NIL)) (-3179 (($ $ $) NIL)) (-1864 (($) 29)) (-1498 (((-112) $ $) NIL)) (-3610 (($ $ $ $) 42)) (-3212 (($ $) 63)) (-3276 (($) 27 T CONST)) (-3287 (($) 28 T CONST)) (-4245 (((-1125) $) 20) (((-1125) $ (-112)) 22) (((-1231) (-798) $) 23) (((-1231) (-798) $ (-112)) 24)) (-1702 (($ $ (-747)) NIL) (($ $) NIL)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 66)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 67)) (-2500 (($ $) 68) (($ $ $) 70)) (-2486 (($ $ $) 69)) (** (($ $ (-892)) NIL) (($ $ (-747)) 74)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 72) (($ $ $) 71)))
-(((-549) (-13 (-534) (-594 (-1125)) (-804) (-10 -8 (-15 -3239 ($ $)) (-6 -4324) (-6 -4329) (-6 -4325) (-6 -4319)))) (T -549))
-((-3239 (*1 *1 *1) (-5 *1 (-549))))
-(-13 (-534) (-594 (-1125)) (-804) (-10 -8 (-15 -3239 ($ $)) (-6 -4324) (-6 -4329) (-6 -4325) (-6 -4319)))
-((-1391 (((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))) (|:| |extra| (-1006))) (-745) (-1030)) 108) (((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))) (|:| |extra| (-1006))) (-745)) 110)) (-3893 (((-3 (-1006) "failed") (-309 (-372)) (-1059 (-816 (-372))) (-1143)) 172) (((-3 (-1006) "failed") (-309 (-372)) (-1059 (-816 (-372))) (-1125)) 171) (((-1006) (-309 (-372)) (-621 (-1061 (-816 (-372)))) (-372) (-372) (-1030)) 176) (((-1006) (-309 (-372)) (-621 (-1061 (-816 (-372)))) (-372) (-372)) 177) (((-1006) (-309 (-372)) (-621 (-1061 (-816 (-372)))) (-372)) 178) (((-1006) (-309 (-372)) (-621 (-1061 (-816 (-372))))) 179) (((-1006) (-309 (-372)) (-1061 (-816 (-372)))) 167) (((-1006) (-309 (-372)) (-1061 (-816 (-372))) (-372)) 166) (((-1006) (-309 (-372)) (-1061 (-816 (-372))) (-372) (-372)) 162) (((-1006) (-745)) 155) (((-1006) (-309 (-372)) (-1061 (-816 (-372))) (-372) (-372) (-1030)) 161)))
-(((-550) (-10 -7 (-15 -3893 ((-1006) (-309 (-372)) (-1061 (-816 (-372))) (-372) (-372) (-1030))) (-15 -3893 ((-1006) (-745))) (-15 -3893 ((-1006) (-309 (-372)) (-1061 (-816 (-372))) (-372) (-372))) (-15 -3893 ((-1006) (-309 (-372)) (-1061 (-816 (-372))) (-372))) (-15 -3893 ((-1006) (-309 (-372)) (-1061 (-816 (-372))))) (-15 -3893 ((-1006) (-309 (-372)) (-621 (-1061 (-816 (-372)))))) (-15 -3893 ((-1006) (-309 (-372)) (-621 (-1061 (-816 (-372)))) (-372))) (-15 -3893 ((-1006) (-309 (-372)) (-621 (-1061 (-816 (-372)))) (-372) (-372))) (-15 -3893 ((-1006) (-309 (-372)) (-621 (-1061 (-816 (-372)))) (-372) (-372) (-1030))) (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))) (|:| |extra| (-1006))) (-745))) (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))) (|:| |extra| (-1006))) (-745) (-1030))) (-15 -3893 ((-3 (-1006) "failed") (-309 (-372)) (-1059 (-816 (-372))) (-1125))) (-15 -3893 ((-3 (-1006) "failed") (-309 (-372)) (-1059 (-816 (-372))) (-1143))))) (T -550))
-((-3893 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-309 (-372))) (-5 *4 (-1059 (-816 (-372)))) (-5 *5 (-1143)) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3893 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-309 (-372))) (-5 *4 (-1059 (-816 (-372)))) (-5 *5 (-1125)) (-5 *2 (-1006)) (-5 *1 (-550)))) (-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-745)) (-5 *4 (-1030)) (-5 *2 (-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))) (|:| |extra| (-1006)))) (-5 *1 (-550)))) (-1391 (*1 *2 *3) (-12 (-5 *3 (-745)) (-5 *2 (-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))) (|:| |extra| (-1006)))) (-5 *1 (-550)))) (-3893 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-1061 (-816 (-372))))) (-5 *5 (-372)) (-5 *6 (-1030)) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3893 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-1061 (-816 (-372))))) (-5 *5 (-372)) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3893 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-1061 (-816 (-372))))) (-5 *5 (-372)) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3893 (*1 *2 *3 *4) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-1061 (-816 (-372))))) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3893 (*1 *2 *3 *4) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-1061 (-816 (-372)))) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3893 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-1061 (-816 (-372)))) (-5 *5 (-372)) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3893 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-1061 (-816 (-372)))) (-5 *5 (-372)) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3893 (*1 *2 *3) (-12 (-5 *3 (-745)) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3893 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-1061 (-816 (-372)))) (-5 *5 (-372)) (-5 *6 (-1030)) (-5 *2 (-1006)) (-5 *1 (-550)))))
-(-10 -7 (-15 -3893 ((-1006) (-309 (-372)) (-1061 (-816 (-372))) (-372) (-372) (-1030))) (-15 -3893 ((-1006) (-745))) (-15 -3893 ((-1006) (-309 (-372)) (-1061 (-816 (-372))) (-372) (-372))) (-15 -3893 ((-1006) (-309 (-372)) (-1061 (-816 (-372))) (-372))) (-15 -3893 ((-1006) (-309 (-372)) (-1061 (-816 (-372))))) (-15 -3893 ((-1006) (-309 (-372)) (-621 (-1061 (-816 (-372)))))) (-15 -3893 ((-1006) (-309 (-372)) (-621 (-1061 (-816 (-372)))) (-372))) (-15 -3893 ((-1006) (-309 (-372)) (-621 (-1061 (-816 (-372)))) (-372) (-372))) (-15 -3893 ((-1006) (-309 (-372)) (-621 (-1061 (-816 (-372)))) (-372) (-372) (-1030))) (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))) (|:| |extra| (-1006))) (-745))) (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))) (|:| |extra| (-1006))) (-745) (-1030))) (-15 -3893 ((-3 (-1006) "failed") (-309 (-372)) (-1059 (-816 (-372))) (-1125))) (-15 -3893 ((-3 (-1006) "failed") (-309 (-372)) (-1059 (-816 (-372))) (-1143))))
-((-2065 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|)) 184)) (-1935 (((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|)) 98)) (-3425 (((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2|) 180)) (-3358 (((-3 |#2| "failed") |#2| |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1143))) 189)) (-2612 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1949 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) (-1143)) 197 (|has| |#3| (-632 |#2|)))))
-(((-551 |#1| |#2| |#3|) (-10 -7 (-15 -1935 ((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|))) (-15 -3425 ((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2|)) (-15 -2065 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|))) (-15 -3358 ((-3 |#2| "failed") |#2| |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1143)))) (IF (|has| |#3| (-632 |#2|)) (-15 -2612 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1949 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) (-1143))) |%noBranch|)) (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))) (-13 (-423 |#1|) (-27) (-1165)) (-1067)) (T -551))
-((-2612 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *5 (-592 *4)) (-5 *6 (-1143)) (-4 *4 (-13 (-423 *7) (-27) (-1165))) (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1949 (-621 *4)))) (-5 *1 (-551 *7 *4 *3)) (-4 *3 (-632 *4)) (-4 *3 (-1067)))) (-3358 (*1 *2 *2 *2 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-592 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1143))) (-4 *2 (-13 (-423 *5) (-27) (-1165))) (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *1 (-551 *5 *2 *6)) (-4 *6 (-1067)))) (-2065 (*1 *2 *3 *4 *4 *5) (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-621 *3)) (-4 *3 (-13 (-423 *6) (-27) (-1165))) (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-551 *6 *3 *7)) (-4 *7 (-1067)))) (-3425 (*1 *2 *3 *4 *4 *3) (|partial| -12 (-5 *4 (-592 *3)) (-4 *3 (-13 (-423 *5) (-27) (-1165))) (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| -3440 *3) (|:| |coeff| *3))) (-5 *1 (-551 *5 *3 *6)) (-4 *6 (-1067)))) (-1935 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-592 *3)) (-4 *3 (-13 (-423 *5) (-27) (-1165))) (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-567 *3)) (-5 *1 (-551 *5 *3 *6)) (-4 *6 (-1067)))))
-(-10 -7 (-15 -1935 ((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|))) (-15 -3425 ((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2|)) (-15 -2065 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|))) (-15 -3358 ((-3 |#2| "failed") |#2| |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1143)))) (IF (|has| |#3| (-632 |#2|)) (-15 -2612 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1949 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) (-1143))) |%noBranch|))
-((-4125 (((-2 (|:| -1759 |#2|) (|:| |nconst| |#2|)) |#2| (-1143)) 64)) (-3345 (((-3 |#2| "failed") |#2| (-1143) (-816 |#2|) (-816 |#2|)) 164 (-12 (|has| |#2| (-1106)) (|has| |#1| (-594 (-863 (-549)))) (|has| |#1| (-857 (-549))))) (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1143)) 147 (-12 (|has| |#2| (-607)) (|has| |#1| (-594 (-863 (-549)))) (|has| |#1| (-857 (-549)))))) (-3619 (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1143)) 148 (-12 (|has| |#2| (-607)) (|has| |#1| (-594 (-863 (-549)))) (|has| |#1| (-857 (-549)))))))
-(((-552 |#1| |#2|) (-10 -7 (-15 -4125 ((-2 (|:| -1759 |#2|) (|:| |nconst| |#2|)) |#2| (-1143))) (IF (|has| |#1| (-594 (-863 (-549)))) (IF (|has| |#1| (-857 (-549))) (PROGN (IF (|has| |#2| (-607)) (PROGN (-15 -3619 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1143))) (-15 -3345 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1143)))) |%noBranch|) (IF (|has| |#2| (-1106)) (-15 -3345 ((-3 |#2| "failed") |#2| (-1143) (-816 |#2|) (-816 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|)) (-13 (-823) (-1009 (-549)) (-444) (-617 (-549))) (-13 (-27) (-1165) (-423 |#1|))) (T -552))
-((-3345 (*1 *2 *2 *3 *4 *4) (|partial| -12 (-5 *3 (-1143)) (-5 *4 (-816 *2)) (-4 *2 (-1106)) (-4 *2 (-13 (-27) (-1165) (-423 *5))) (-4 *5 (-594 (-863 (-549)))) (-4 *5 (-857 (-549))) (-4 *5 (-13 (-823) (-1009 (-549)) (-444) (-617 (-549)))) (-5 *1 (-552 *5 *2)))) (-3345 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1143)) (-4 *5 (-594 (-863 (-549)))) (-4 *5 (-857 (-549))) (-4 *5 (-13 (-823) (-1009 (-549)) (-444) (-617 (-549)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-552 *5 *3)) (-4 *3 (-607)) (-4 *3 (-13 (-27) (-1165) (-423 *5))))) (-3619 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1143)) (-4 *5 (-594 (-863 (-549)))) (-4 *5 (-857 (-549))) (-4 *5 (-13 (-823) (-1009 (-549)) (-444) (-617 (-549)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-552 *5 *3)) (-4 *3 (-607)) (-4 *3 (-13 (-27) (-1165) (-423 *5))))) (-4125 (*1 *2 *3 *4) (-12 (-5 *4 (-1143)) (-4 *5 (-13 (-823) (-1009 (-549)) (-444) (-617 (-549)))) (-5 *2 (-2 (|:| -1759 *3) (|:| |nconst| *3))) (-5 *1 (-552 *5 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5))))))
-(-10 -7 (-15 -4125 ((-2 (|:| -1759 |#2|) (|:| |nconst| |#2|)) |#2| (-1143))) (IF (|has| |#1| (-594 (-863 (-549)))) (IF (|has| |#1| (-857 (-549))) (PROGN (IF (|has| |#2| (-607)) (PROGN (-15 -3619 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1143))) (-15 -3345 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1143)))) |%noBranch|) (IF (|has| |#2| (-1106)) (-15 -3345 ((-3 |#2| "failed") |#2| (-1143) (-816 |#2|) (-816 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|))
-((-3481 (((-3 (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|)))))) "failed") (-400 |#2|) (-621 (-400 |#2|))) 41)) (-3893 (((-567 (-400 |#2|)) (-400 |#2|)) 28)) (-3007 (((-3 (-400 |#2|) "failed") (-400 |#2|)) 17)) (-4225 (((-3 (-2 (|:| -3440 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-400 |#2|)) 48)))
-(((-553 |#1| |#2|) (-10 -7 (-15 -3893 ((-567 (-400 |#2|)) (-400 |#2|))) (-15 -3007 ((-3 (-400 |#2|) "failed") (-400 |#2|))) (-15 -4225 ((-3 (-2 (|:| -3440 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-400 |#2|))) (-15 -3481 ((-3 (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|)))))) "failed") (-400 |#2|) (-621 (-400 |#2|))))) (-13 (-356) (-145) (-1009 (-549))) (-1202 |#1|)) (T -553))
-((-3481 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-621 (-400 *6))) (-5 *3 (-400 *6)) (-4 *6 (-1202 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-553 *5 *6)))) (-4225 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-13 (-356) (-145) (-1009 (-549)))) (-4 *5 (-1202 *4)) (-5 *2 (-2 (|:| -3440 (-400 *5)) (|:| |coeff| (-400 *5)))) (-5 *1 (-553 *4 *5)) (-5 *3 (-400 *5)))) (-3007 (*1 *2 *2) (|partial| -12 (-5 *2 (-400 *4)) (-4 *4 (-1202 *3)) (-4 *3 (-13 (-356) (-145) (-1009 (-549)))) (-5 *1 (-553 *3 *4)))) (-3893 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-549)))) (-4 *5 (-1202 *4)) (-5 *2 (-567 (-400 *5))) (-5 *1 (-553 *4 *5)) (-5 *3 (-400 *5)))))
-(-10 -7 (-15 -3893 ((-567 (-400 |#2|)) (-400 |#2|))) (-15 -3007 ((-3 (-400 |#2|) "failed") (-400 |#2|))) (-15 -4225 ((-3 (-2 (|:| -3440 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-400 |#2|))) (-15 -3481 ((-3 (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|)))))) "failed") (-400 |#2|) (-621 (-400 |#2|)))))
-((-4241 (((-3 (-549) "failed") |#1|) 14)) (-2528 (((-112) |#1|) 13)) (-3965 (((-549) |#1|) 9)))
-(((-554 |#1|) (-10 -7 (-15 -3965 ((-549) |#1|)) (-15 -2528 ((-112) |#1|)) (-15 -4241 ((-3 (-549) "failed") |#1|))) (-1009 (-549))) (T -554))
-((-4241 (*1 *2 *3) (|partial| -12 (-5 *2 (-549)) (-5 *1 (-554 *3)) (-4 *3 (-1009 *2)))) (-2528 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-554 *3)) (-4 *3 (-1009 (-549))))) (-3965 (*1 *2 *3) (-12 (-5 *2 (-549)) (-5 *1 (-554 *3)) (-4 *3 (-1009 *2)))))
-(-10 -7 (-15 -3965 ((-549) |#1|)) (-15 -2528 ((-112) |#1|)) (-15 -4241 ((-3 (-549) "failed") |#1|)))
-((-2538 (((-3 (-2 (|:| |mainpart| (-400 (-923 |#1|))) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 (-923 |#1|))) (|:| |logand| (-400 (-923 |#1|))))))) "failed") (-400 (-923 |#1|)) (-1143) (-621 (-400 (-923 |#1|)))) 48)) (-4176 (((-567 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-1143)) 28)) (-3631 (((-3 (-400 (-923 |#1|)) "failed") (-400 (-923 |#1|)) (-1143)) 23)) (-4015 (((-3 (-2 (|:| -3440 (-400 (-923 |#1|))) (|:| |coeff| (-400 (-923 |#1|)))) "failed") (-400 (-923 |#1|)) (-1143) (-400 (-923 |#1|))) 35)))
-(((-555 |#1|) (-10 -7 (-15 -4176 ((-567 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-1143))) (-15 -3631 ((-3 (-400 (-923 |#1|)) "failed") (-400 (-923 |#1|)) (-1143))) (-15 -2538 ((-3 (-2 (|:| |mainpart| (-400 (-923 |#1|))) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 (-923 |#1|))) (|:| |logand| (-400 (-923 |#1|))))))) "failed") (-400 (-923 |#1|)) (-1143) (-621 (-400 (-923 |#1|))))) (-15 -4015 ((-3 (-2 (|:| -3440 (-400 (-923 |#1|))) (|:| |coeff| (-400 (-923 |#1|)))) "failed") (-400 (-923 |#1|)) (-1143) (-400 (-923 |#1|))))) (-13 (-541) (-1009 (-549)) (-145))) (T -555))
-((-4015 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1143)) (-4 *5 (-13 (-541) (-1009 (-549)) (-145))) (-5 *2 (-2 (|:| -3440 (-400 (-923 *5))) (|:| |coeff| (-400 (-923 *5))))) (-5 *1 (-555 *5)) (-5 *3 (-400 (-923 *5))))) (-2538 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1143)) (-5 *5 (-621 (-400 (-923 *6)))) (-5 *3 (-400 (-923 *6))) (-4 *6 (-13 (-541) (-1009 (-549)) (-145))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-555 *6)))) (-3631 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-400 (-923 *4))) (-5 *3 (-1143)) (-4 *4 (-13 (-541) (-1009 (-549)) (-145))) (-5 *1 (-555 *4)))) (-4176 (*1 *2 *3 *4) (-12 (-5 *4 (-1143)) (-4 *5 (-13 (-541) (-1009 (-549)) (-145))) (-5 *2 (-567 (-400 (-923 *5)))) (-5 *1 (-555 *5)) (-5 *3 (-400 (-923 *5))))))
-(-10 -7 (-15 -4176 ((-567 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-1143))) (-15 -3631 ((-3 (-400 (-923 |#1|)) "failed") (-400 (-923 |#1|)) (-1143))) (-15 -2538 ((-3 (-2 (|:| |mainpart| (-400 (-923 |#1|))) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 (-923 |#1|))) (|:| |logand| (-400 (-923 |#1|))))))) "failed") (-400 (-923 |#1|)) (-1143) (-621 (-400 (-923 |#1|))))) (-15 -4015 ((-3 (-2 (|:| -3440 (-400 (-923 |#1|))) (|:| |coeff| (-400 (-923 |#1|)))) "failed") (-400 (-923 |#1|)) (-1143) (-400 (-923 |#1|)))))
-((-3834 (((-112) $ $) 58)) (-1763 (((-112) $) 36)) (-2342 ((|#1| $) 30)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) 62)) (-1664 (($ $) 122)) (-1512 (($ $) 102)) (-2861 ((|#1| $) 28)) (-2001 (((-3 $ "failed") $ $) NIL)) (-2134 (($ $) NIL)) (-1640 (($ $) 124)) (-1486 (($ $) 98)) (-1685 (($ $) 126)) (-1539 (($ $) 106)) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) 77)) (-2659 (((-549) $) 79)) (-2114 (((-3 $ "failed") $) 61)) (-3551 (($ |#1| |#1|) 26)) (-2772 (((-112) $) 33)) (-1425 (($) 88)) (-2675 (((-112) $) 43)) (-4187 (($ $ (-549)) NIL)) (-2374 (((-112) $) 34)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-3632 (($ $) 90)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1496 (($ |#1| |#1|) 20) (($ |#1|) 25) (($ (-400 (-549))) 76)) (-3019 ((|#1| $) 27)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) 64) (($ (-621 $)) NIL)) (-2042 (((-3 $ "failed") $ $) 63)) (-2719 (($ $) 92)) (-1698 (($ $) 130)) (-1552 (($ $) 104)) (-1675 (($ $) 132)) (-1526 (($ $) 108)) (-1651 (($ $) 128)) (-1501 (($ $) 100)) (-2608 (((-112) $ |#1|) 31)) (-3846 (((-834) $) 84) (($ (-549)) 66) (($ $) NIL) (($ (-549)) 66)) (-2082 (((-747)) 86)) (-1733 (($ $) 144)) (-1587 (($ $) 114)) (-1498 (((-112) $ $) NIL)) (-1710 (($ $) 142)) (-1564 (($ $) 110)) (-1758 (($ $) 140)) (-1612 (($ $) 120)) (-1934 (($ $) 138)) (-1627 (($ $) 118)) (-1745 (($ $) 136)) (-1600 (($ $) 116)) (-1722 (($ $) 134)) (-1576 (($ $) 112)) (-3276 (($) 21 T CONST)) (-3287 (($) 10 T CONST)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 37)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 35)) (-2500 (($ $) 41) (($ $ $) 42)) (-2486 (($ $ $) 40)) (** (($ $ (-892)) 54) (($ $ (-747)) NIL) (($ $ $) 94) (($ $ (-400 (-549))) 146)) (* (($ (-892) $) 51) (($ (-747) $) NIL) (($ (-549) $) 50) (($ $ $) 48)))
-(((-556 |#1|) (-539 |#1|) (-13 (-397) (-1165))) (T -556))
+((-2040 (*1 *1 *1 *1) (|partial| -4 *1 (-541))) (-4010 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -1951 *1) (|:| -4323 *1) (|:| |associate| *1))) (-4 *1 (-541)))) (-3044 (*1 *1 *1) (-4 *1 (-541))) (-2441 (*1 *2 *1 *1) (-12 (-4 *1 (-541)) (-5 *2 (-112)))) (-2774 (*1 *2 *1) (-12 (-4 *1 (-541)) (-5 *2 (-112)))))
+(-13 (-170) (-38 $) (-283) (-10 -8 (-15 -2040 ((-3 $ "failed") $ $)) (-15 -4010 ((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $)) (-15 -3044 ($ $)) (-15 -2441 ((-112) $ $)) (-15 -2774 ((-112) $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-3664 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1142) (-621 |#2|)) 37)) (-3894 (((-567 |#2|) |#2| (-1142)) 62)) (-1450 (((-3 |#2| "failed") |#2| (-1142)) 152)) (-3418 (((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1142) (-592 |#2|) (-621 (-592 |#2|))) 155)) (-2358 (((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1142) |#2|) 40)))
+(((-542 |#1| |#2|) (-10 -7 (-15 -2358 ((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1142) |#2|)) (-15 -3664 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1142) (-621 |#2|))) (-15 -1450 ((-3 |#2| "failed") |#2| (-1142))) (-15 -3894 ((-567 |#2|) |#2| (-1142))) (-15 -3418 ((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1142) (-592 |#2|) (-621 (-592 |#2|))))) (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549))) (-13 (-27) (-1164) (-423 |#1|))) (T -542))
+((-3418 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1142)) (-5 *6 (-621 (-592 *3))) (-5 *5 (-592 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *7))) (-4 *7 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-2 (|:| -2677 *3) (|:| |coeff| *3))) (-5 *1 (-542 *7 *3)))) (-3894 (*1 *2 *3 *4) (-12 (-5 *4 (-1142)) (-4 *5 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-567 *3)) (-5 *1 (-542 *5 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5))))) (-1450 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1142)) (-4 *4 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-542 *4 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *4))))) (-3664 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1142)) (-5 *5 (-621 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *6))) (-4 *6 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-542 *6 *3)))) (-2358 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1142)) (-4 *5 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-2 (|:| -2677 *3) (|:| |coeff| *3))) (-5 *1 (-542 *5 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5))))))
+(-10 -7 (-15 -2358 ((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1142) |#2|)) (-15 -3664 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1142) (-621 |#2|))) (-15 -1450 ((-3 |#2| "failed") |#2| (-1142))) (-15 -3894 ((-567 |#2|) |#2| (-1142))) (-15 -3418 ((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1142) (-592 |#2|) (-621 (-592 |#2|)))))
+((-2620 (((-411 |#1|) |#1|) 18)) (-2119 (((-411 |#1|) |#1|) 33)) (-3719 (((-3 |#1| "failed") |#1|) 44)) (-2931 (((-411 |#1|) |#1|) 51)))
+(((-543 |#1|) (-10 -7 (-15 -2119 ((-411 |#1|) |#1|)) (-15 -2620 ((-411 |#1|) |#1|)) (-15 -2931 ((-411 |#1|) |#1|)) (-15 -3719 ((-3 |#1| "failed") |#1|))) (-534)) (T -543))
+((-3719 (*1 *2 *2) (|partial| -12 (-5 *1 (-543 *2)) (-4 *2 (-534)))) (-2931 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-543 *3)) (-4 *3 (-534)))) (-2620 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-543 *3)) (-4 *3 (-534)))) (-2119 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-543 *3)) (-4 *3 (-534)))))
+(-10 -7 (-15 -2119 ((-411 |#1|) |#1|)) (-15 -2620 ((-411 |#1|) |#1|)) (-15 -2931 ((-411 |#1|) |#1|)) (-15 -3719 ((-3 |#1| "failed") |#1|)))
+((-3643 (($) 9)) (-2762 (((-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 35)) (-3448 (((-621 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) $) 32)) (-1799 (($ (-2 (|:| -3336 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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)) (-2554 (($ (-621 (-2 (|:| -3336 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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)) (-1791 (((-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 39)) (-3347 (((-621 (-2 (|:| -3336 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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)) (-2303 (((-1230)) 12)))
+(((-544) (-10 -8 (-15 -3643 ($)) (-15 -2303 ((-1230))) (-15 -3448 ((-621 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) $)) (-15 -2554 ($ (-621 (-2 (|:| -3336 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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 -1799 ($ (-2 (|:| -3336 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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 -2762 ((-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3347 ((-621 (-2 (|:| -3336 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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 -1791 ((-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))) (T -544))
+((-1791 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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 (-544)))) (-3347 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| -3336 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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 (-544)))) (-2762 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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 (-544)))) (-1799 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -3336 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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 (-544)))) (-2554 (*1 *1 *2) (-12 (-5 *2 (-621 (-2 (|:| -3336 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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 (-544)))) (-3448 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-5 *1 (-544)))) (-2303 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-544)))) (-3643 (*1 *1) (-5 *1 (-544))))
+(-10 -8 (-15 -3643 ($)) (-15 -2303 ((-1230))) (-15 -3448 ((-621 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) $)) (-15 -2554 ($ (-621 (-2 (|:| -3336 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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 -1799 ($ (-2 (|:| -3336 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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 -2762 ((-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3347 ((-621 (-2 (|:| -3336 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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 -1791 ((-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| (-1122 (-219))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2811 (-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| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))
+((-2082 (((-1138 (-400 (-1138 |#2|))) |#2| (-592 |#2|) (-592 |#2|) (-1138 |#2|)) 32)) (-1989 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|) (-592 |#2|) |#2| (-400 (-1138 |#2|))) 100) (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|) |#2| (-1138 |#2|)) 110)) (-3744 (((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) (-592 |#2|) |#2| (-400 (-1138 |#2|))) 80) (((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) |#2| (-1138 |#2|)) 52)) (-3980 (((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2| (-592 |#2|) |#2| (-400 (-1138 |#2|))) 87) (((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2| |#2| (-1138 |#2|)) 109)) (-2019 (((-3 |#2| "failed") |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1142)) (-592 |#2|) |#2| (-400 (-1138 |#2|))) 105) (((-3 |#2| "failed") |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1142)) |#2| (-1138 |#2|)) 111)) (-2386 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2619 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) (-592 |#2|) |#2| (-400 (-1138 |#2|))) 128 (|has| |#3| (-632 |#2|))) (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2619 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) |#2| (-1138 |#2|)) 127 (|has| |#3| (-632 |#2|)))) (-2259 ((|#2| (-1138 (-400 (-1138 |#2|))) (-592 |#2|) |#2|) 50)) (-2545 (((-1138 (-400 (-1138 |#2|))) (-1138 |#2|) (-592 |#2|)) 31)))
+(((-545 |#1| |#2| |#3|) (-10 -7 (-15 -3744 ((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) |#2| (-1138 |#2|))) (-15 -3744 ((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) (-592 |#2|) |#2| (-400 (-1138 |#2|)))) (-15 -3980 ((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2| |#2| (-1138 |#2|))) (-15 -3980 ((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2| (-592 |#2|) |#2| (-400 (-1138 |#2|)))) (-15 -1989 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|) |#2| (-1138 |#2|))) (-15 -1989 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|) (-592 |#2|) |#2| (-400 (-1138 |#2|)))) (-15 -2019 ((-3 |#2| "failed") |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1142)) |#2| (-1138 |#2|))) (-15 -2019 ((-3 |#2| "failed") |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1142)) (-592 |#2|) |#2| (-400 (-1138 |#2|)))) (-15 -2082 ((-1138 (-400 (-1138 |#2|))) |#2| (-592 |#2|) (-592 |#2|) (-1138 |#2|))) (-15 -2259 (|#2| (-1138 (-400 (-1138 |#2|))) (-592 |#2|) |#2|)) (-15 -2545 ((-1138 (-400 (-1138 |#2|))) (-1138 |#2|) (-592 |#2|))) (IF (|has| |#3| (-632 |#2|)) (PROGN (-15 -2386 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2619 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) |#2| (-1138 |#2|))) (-15 -2386 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2619 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) (-592 |#2|) |#2| (-400 (-1138 |#2|))))) |%noBranch|)) (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))) (-13 (-423 |#1|) (-27) (-1164)) (-1066)) (T -545))
+((-2386 (*1 *2 *3 *4 *5 *5 *5 *4 *6) (-12 (-5 *5 (-592 *4)) (-5 *6 (-400 (-1138 *4))) (-4 *4 (-13 (-423 *7) (-27) (-1164))) (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2619 (-621 *4)))) (-5 *1 (-545 *7 *4 *3)) (-4 *3 (-632 *4)) (-4 *3 (-1066)))) (-2386 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *5 (-592 *4)) (-5 *6 (-1138 *4)) (-4 *4 (-13 (-423 *7) (-27) (-1164))) (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2619 (-621 *4)))) (-5 *1 (-545 *7 *4 *3)) (-4 *3 (-632 *4)) (-4 *3 (-1066)))) (-2545 (*1 *2 *3 *4) (-12 (-5 *4 (-592 *6)) (-4 *6 (-13 (-423 *5) (-27) (-1164))) (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-1138 (-400 (-1138 *6)))) (-5 *1 (-545 *5 *6 *7)) (-5 *3 (-1138 *6)) (-4 *7 (-1066)))) (-2259 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1138 (-400 (-1138 *2)))) (-5 *4 (-592 *2)) (-4 *2 (-13 (-423 *5) (-27) (-1164))) (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *1 (-545 *5 *2 *6)) (-4 *6 (-1066)))) (-2082 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-592 *3)) (-4 *3 (-13 (-423 *6) (-27) (-1164))) (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-1138 (-400 (-1138 *3)))) (-5 *1 (-545 *6 *3 *7)) (-5 *5 (-1138 *3)) (-4 *7 (-1066)))) (-2019 (*1 *2 *2 *2 *3 *3 *4 *3 *2 *5) (|partial| -12 (-5 *3 (-592 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1142))) (-5 *5 (-400 (-1138 *2))) (-4 *2 (-13 (-423 *6) (-27) (-1164))) (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *1 (-545 *6 *2 *7)) (-4 *7 (-1066)))) (-2019 (*1 *2 *2 *2 *3 *3 *4 *2 *5) (|partial| -12 (-5 *3 (-592 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1142))) (-5 *5 (-1138 *2)) (-4 *2 (-13 (-423 *6) (-27) (-1164))) (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *1 (-545 *6 *2 *7)) (-4 *7 (-1066)))) (-1989 (*1 *2 *3 *4 *4 *5 *4 *3 *6) (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-621 *3)) (-5 *6 (-400 (-1138 *3))) (-4 *3 (-13 (-423 *7) (-27) (-1164))) (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-545 *7 *3 *8)) (-4 *8 (-1066)))) (-1989 (*1 *2 *3 *4 *4 *5 *3 *6) (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-621 *3)) (-5 *6 (-1138 *3)) (-4 *3 (-13 (-423 *7) (-27) (-1164))) (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-545 *7 *3 *8)) (-4 *8 (-1066)))) (-3980 (*1 *2 *3 *4 *4 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-400 (-1138 *3))) (-4 *3 (-13 (-423 *6) (-27) (-1164))) (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| -2677 *3) (|:| |coeff| *3))) (-5 *1 (-545 *6 *3 *7)) (-4 *7 (-1066)))) (-3980 (*1 *2 *3 *4 *4 *3 *3 *5) (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-1138 *3)) (-4 *3 (-13 (-423 *6) (-27) (-1164))) (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| -2677 *3) (|:| |coeff| *3))) (-5 *1 (-545 *6 *3 *7)) (-4 *7 (-1066)))) (-3744 (*1 *2 *3 *4 *4 *4 *3 *5) (-12 (-5 *4 (-592 *3)) (-5 *5 (-400 (-1138 *3))) (-4 *3 (-13 (-423 *6) (-27) (-1164))) (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-567 *3)) (-5 *1 (-545 *6 *3 *7)) (-4 *7 (-1066)))) (-3744 (*1 *2 *3 *4 *4 *3 *5) (-12 (-5 *4 (-592 *3)) (-5 *5 (-1138 *3)) (-4 *3 (-13 (-423 *6) (-27) (-1164))) (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-567 *3)) (-5 *1 (-545 *6 *3 *7)) (-4 *7 (-1066)))))
+(-10 -7 (-15 -3744 ((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) |#2| (-1138 |#2|))) (-15 -3744 ((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|) (-592 |#2|) |#2| (-400 (-1138 |#2|)))) (-15 -3980 ((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2| |#2| (-1138 |#2|))) (-15 -3980 ((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2| (-592 |#2|) |#2| (-400 (-1138 |#2|)))) (-15 -1989 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|) |#2| (-1138 |#2|))) (-15 -1989 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|) (-592 |#2|) |#2| (-400 (-1138 |#2|)))) (-15 -2019 ((-3 |#2| "failed") |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1142)) |#2| (-1138 |#2|))) (-15 -2019 ((-3 |#2| "failed") |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1142)) (-592 |#2|) |#2| (-400 (-1138 |#2|)))) (-15 -2082 ((-1138 (-400 (-1138 |#2|))) |#2| (-592 |#2|) (-592 |#2|) (-1138 |#2|))) (-15 -2259 (|#2| (-1138 (-400 (-1138 |#2|))) (-592 |#2|) |#2|)) (-15 -2545 ((-1138 (-400 (-1138 |#2|))) (-1138 |#2|) (-592 |#2|))) (IF (|has| |#3| (-632 |#2|)) (PROGN (-15 -2386 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2619 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) |#2| (-1138 |#2|))) (-15 -2386 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2619 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) (-592 |#2|) |#2| (-400 (-1138 |#2|))))) |%noBranch|))
+((-3644 (((-549) (-549) (-747)) 66)) (-2003 (((-549) (-549)) 65)) (-3751 (((-549) (-549)) 64)) (-2750 (((-549) (-549)) 69)) (-2408 (((-549) (-549) (-549)) 49)) (-1653 (((-549) (-549) (-549)) 46)) (-1497 (((-400 (-549)) (-549)) 20)) (-4156 (((-549) (-549)) 21)) (-2330 (((-549) (-549)) 58)) (-2395 (((-549) (-549)) 32)) (-4135 (((-621 (-549)) (-549)) 63)) (-2366 (((-549) (-549) (-549) (-549) (-549)) 44)) (-3404 (((-400 (-549)) (-549)) 41)))
+(((-546) (-10 -7 (-15 -3404 ((-400 (-549)) (-549))) (-15 -2366 ((-549) (-549) (-549) (-549) (-549))) (-15 -4135 ((-621 (-549)) (-549))) (-15 -2395 ((-549) (-549))) (-15 -2330 ((-549) (-549))) (-15 -4156 ((-549) (-549))) (-15 -1497 ((-400 (-549)) (-549))) (-15 -1653 ((-549) (-549) (-549))) (-15 -2408 ((-549) (-549) (-549))) (-15 -2750 ((-549) (-549))) (-15 -3751 ((-549) (-549))) (-15 -2003 ((-549) (-549))) (-15 -3644 ((-549) (-549) (-747))))) (T -546))
+((-3644 (*1 *2 *2 *3) (-12 (-5 *2 (-549)) (-5 *3 (-747)) (-5 *1 (-546)))) (-2003 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-3751 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-2750 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-2408 (*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-1653 (*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-1497 (*1 *2 *3) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-546)) (-5 *3 (-549)))) (-4156 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-2330 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-2395 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-4135 (*1 *2 *3) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-546)) (-5 *3 (-549)))) (-2366 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))) (-3404 (*1 *2 *3) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-546)) (-5 *3 (-549)))))
+(-10 -7 (-15 -3404 ((-400 (-549)) (-549))) (-15 -2366 ((-549) (-549) (-549) (-549) (-549))) (-15 -4135 ((-621 (-549)) (-549))) (-15 -2395 ((-549) (-549))) (-15 -2330 ((-549) (-549))) (-15 -4156 ((-549) (-549))) (-15 -1497 ((-400 (-549)) (-549))) (-15 -1653 ((-549) (-549) (-549))) (-15 -2408 ((-549) (-549) (-549))) (-15 -2750 ((-549) (-549))) (-15 -3751 ((-549) (-549))) (-15 -2003 ((-549) (-549))) (-15 -3644 ((-549) (-549) (-747))))
+((-3420 (((-2 (|:| |answer| |#4|) (|:| -3890 |#4|)) |#4| (-1 |#2| |#2|)) 52)))
+(((-547 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3420 ((-2 (|:| |answer| |#4|) (|:| -3890 |#4|)) |#4| (-1 |#2| |#2|)))) (-356) (-1201 |#1|) (-1201 (-400 |#2|)) (-335 |#1| |#2| |#3|)) (T -547))
+((-3420 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1201 *5)) (-4 *5 (-356)) (-4 *7 (-1201 (-400 *6))) (-5 *2 (-2 (|:| |answer| *3) (|:| -3890 *3))) (-5 *1 (-547 *5 *6 *7 *3)) (-4 *3 (-335 *5 *6 *7)))))
+(-10 -7 (-15 -3420 ((-2 (|:| |answer| |#4|) (|:| -3890 |#4|)) |#4| (-1 |#2| |#2|))))
+((-3420 (((-2 (|:| |answer| (-400 |#2|)) (|:| -3890 (-400 |#2|)) (|:| |specpart| (-400 |#2|)) (|:| |polypart| |#2|)) (-400 |#2|) (-1 |#2| |#2|)) 18)))
+(((-548 |#1| |#2|) (-10 -7 (-15 -3420 ((-2 (|:| |answer| (-400 |#2|)) (|:| -3890 (-400 |#2|)) (|:| |specpart| (-400 |#2|)) (|:| |polypart| |#2|)) (-400 |#2|) (-1 |#2| |#2|)))) (-356) (-1201 |#1|)) (T -548))
+((-3420 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1201 *5)) (-4 *5 (-356)) (-5 *2 (-2 (|:| |answer| (-400 *6)) (|:| -3890 (-400 *6)) (|:| |specpart| (-400 *6)) (|:| |polypart| *6))) (-5 *1 (-548 *5 *6)) (-5 *3 (-400 *6)))))
+(-10 -7 (-15 -3420 ((-2 (|:| |answer| (-400 |#2|)) (|:| -3890 (-400 |#2|)) (|:| |specpart| (-400 |#2|)) (|:| |polypart| |#2|)) (-400 |#2|) (-1 |#2| |#2|))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 25)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 88)) (-3044 (($ $) 89)) (-2774 (((-112) $) NIL)) (-3198 (($ $ $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-2973 (($ $ $ $) 43)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2680 (((-112) $ $) NIL)) (-1741 (((-549) $) NIL)) (-1309 (($ $ $) 82)) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL)) (-2657 (((-549) $) NIL)) (-2091 (($ $ $) 81)) (-3446 (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 62) (((-665 (-549)) (-665 $)) 58)) (-2612 (((-3 $ "failed") $) 85)) (-1531 (((-3 (-400 (-549)) "failed") $) NIL)) (-3945 (((-112) $) NIL)) (-1390 (((-400 (-549)) $) NIL)) (-3237 (($) 64) (($ $) 65)) (-2065 (($ $ $) 80)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-2576 (($ $ $ $) NIL)) (-3457 (($ $ $) 55)) (-2357 (((-112) $) NIL)) (-1926 (($ $ $) NIL)) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL)) (-2297 (((-112) $) 26)) (-2803 (((-112) $) 75)) (-2964 (((-3 $ "failed") $) NIL)) (-1992 (((-112) $) 35)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2633 (($ $ $ $) 44)) (-2861 (($ $ $) 77)) (-3574 (($ $ $) 76)) (-2429 (($ $) NIL)) (-4210 (($ $) 41)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) 54)) (-3200 (($ $ $) NIL)) (-3059 (($) NIL T CONST)) (-3782 (($ $) 31)) (-3988 (((-1086) $) 34)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 119)) (-3726 (($ $ $) 86) (($ (-621 $)) NIL)) (-3674 (($ $) NIL)) (-2119 (((-411 $) $) 105)) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL)) (-2040 (((-3 $ "failed") $ $) 84)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1980 (((-112) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 79)) (-3455 (($ $ (-747)) NIL) (($ $) NIL)) (-1896 (($ $) 32)) (-2279 (($ $) 30)) (-2843 (((-549) $) 40) (((-525) $) 52) (((-863 (-549)) $) NIL) (((-372) $) 47) (((-219) $) 49) (((-1124) $) 53)) (-3845 (((-834) $) 38) (($ (-549)) 39) (($ $) NIL) (($ (-549)) 39)) (-2371 (((-747)) NIL)) (-1815 (((-112) $ $) NIL)) (-2772 (($ $ $) NIL)) (-1863 (($) 29)) (-2441 (((-112) $ $) NIL)) (-2263 (($ $ $ $) 42)) (-2199 (($ $) 63)) (-3274 (($) 27 T CONST)) (-3286 (($) 28 T CONST)) (-4035 (((-1124) $) 20) (((-1124) $ (-112)) 22) (((-1230) (-798) $) 23) (((-1230) (-798) $ (-112)) 24)) (-1699 (($ $ (-747)) NIL) (($ $) NIL)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 66)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 67)) (-2498 (($ $) 68) (($ $ $) 70)) (-2484 (($ $ $) 69)) (** (($ $ (-892)) NIL) (($ $ (-747)) 74)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 72) (($ $ $) 71)))
+(((-549) (-13 (-534) (-594 (-1124)) (-804) (-10 -8 (-15 -3237 ($ $)) (-6 -4323) (-6 -4328) (-6 -4324) (-6 -4318)))) (T -549))
+((-3237 (*1 *1 *1) (-5 *1 (-549))))
+(-13 (-534) (-594 (-1124)) (-804) (-10 -8 (-15 -3237 ($ $)) (-6 -4323) (-6 -4328) (-6 -4324) (-6 -4318)))
+((-3947 (((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))) (|:| |extra| (-1006))) (-745) (-1030)) 108) (((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))) (|:| |extra| (-1006))) (-745)) 110)) (-3405 (((-3 (-1006) "failed") (-309 (-372)) (-1058 (-816 (-372))) (-1142)) 172) (((-3 (-1006) "failed") (-309 (-372)) (-1058 (-816 (-372))) (-1124)) 171) (((-1006) (-309 (-372)) (-621 (-1060 (-816 (-372)))) (-372) (-372) (-1030)) 176) (((-1006) (-309 (-372)) (-621 (-1060 (-816 (-372)))) (-372) (-372)) 177) (((-1006) (-309 (-372)) (-621 (-1060 (-816 (-372)))) (-372)) 178) (((-1006) (-309 (-372)) (-621 (-1060 (-816 (-372))))) 179) (((-1006) (-309 (-372)) (-1060 (-816 (-372)))) 167) (((-1006) (-309 (-372)) (-1060 (-816 (-372))) (-372)) 166) (((-1006) (-309 (-372)) (-1060 (-816 (-372))) (-372) (-372)) 162) (((-1006) (-745)) 155) (((-1006) (-309 (-372)) (-1060 (-816 (-372))) (-372) (-372) (-1030)) 161)))
+(((-550) (-10 -7 (-15 -3405 ((-1006) (-309 (-372)) (-1060 (-816 (-372))) (-372) (-372) (-1030))) (-15 -3405 ((-1006) (-745))) (-15 -3405 ((-1006) (-309 (-372)) (-1060 (-816 (-372))) (-372) (-372))) (-15 -3405 ((-1006) (-309 (-372)) (-1060 (-816 (-372))) (-372))) (-15 -3405 ((-1006) (-309 (-372)) (-1060 (-816 (-372))))) (-15 -3405 ((-1006) (-309 (-372)) (-621 (-1060 (-816 (-372)))))) (-15 -3405 ((-1006) (-309 (-372)) (-621 (-1060 (-816 (-372)))) (-372))) (-15 -3405 ((-1006) (-309 (-372)) (-621 (-1060 (-816 (-372)))) (-372) (-372))) (-15 -3405 ((-1006) (-309 (-372)) (-621 (-1060 (-816 (-372)))) (-372) (-372) (-1030))) (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))) (|:| |extra| (-1006))) (-745))) (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))) (|:| |extra| (-1006))) (-745) (-1030))) (-15 -3405 ((-3 (-1006) "failed") (-309 (-372)) (-1058 (-816 (-372))) (-1124))) (-15 -3405 ((-3 (-1006) "failed") (-309 (-372)) (-1058 (-816 (-372))) (-1142))))) (T -550))
+((-3405 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-309 (-372))) (-5 *4 (-1058 (-816 (-372)))) (-5 *5 (-1142)) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3405 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-309 (-372))) (-5 *4 (-1058 (-816 (-372)))) (-5 *5 (-1124)) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3947 (*1 *2 *3 *4) (-12 (-5 *3 (-745)) (-5 *4 (-1030)) (-5 *2 (-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))) (|:| |extra| (-1006)))) (-5 *1 (-550)))) (-3947 (*1 *2 *3) (-12 (-5 *3 (-745)) (-5 *2 (-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))) (|:| |extra| (-1006)))) (-5 *1 (-550)))) (-3405 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-1060 (-816 (-372))))) (-5 *5 (-372)) (-5 *6 (-1030)) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3405 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-1060 (-816 (-372))))) (-5 *5 (-372)) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3405 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-1060 (-816 (-372))))) (-5 *5 (-372)) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3405 (*1 *2 *3 *4) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-1060 (-816 (-372))))) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3405 (*1 *2 *3 *4) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-1060 (-816 (-372)))) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3405 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-1060 (-816 (-372)))) (-5 *5 (-372)) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3405 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-1060 (-816 (-372)))) (-5 *5 (-372)) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3405 (*1 *2 *3) (-12 (-5 *3 (-745)) (-5 *2 (-1006)) (-5 *1 (-550)))) (-3405 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-1060 (-816 (-372)))) (-5 *5 (-372)) (-5 *6 (-1030)) (-5 *2 (-1006)) (-5 *1 (-550)))))
+(-10 -7 (-15 -3405 ((-1006) (-309 (-372)) (-1060 (-816 (-372))) (-372) (-372) (-1030))) (-15 -3405 ((-1006) (-745))) (-15 -3405 ((-1006) (-309 (-372)) (-1060 (-816 (-372))) (-372) (-372))) (-15 -3405 ((-1006) (-309 (-372)) (-1060 (-816 (-372))) (-372))) (-15 -3405 ((-1006) (-309 (-372)) (-1060 (-816 (-372))))) (-15 -3405 ((-1006) (-309 (-372)) (-621 (-1060 (-816 (-372)))))) (-15 -3405 ((-1006) (-309 (-372)) (-621 (-1060 (-816 (-372)))) (-372))) (-15 -3405 ((-1006) (-309 (-372)) (-621 (-1060 (-816 (-372)))) (-372) (-372))) (-15 -3405 ((-1006) (-309 (-372)) (-621 (-1060 (-816 (-372)))) (-372) (-372) (-1030))) (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))) (|:| |extra| (-1006))) (-745))) (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))) (|:| |extra| (-1006))) (-745) (-1030))) (-15 -3405 ((-3 (-1006) "failed") (-309 (-372)) (-1058 (-816 (-372))) (-1124))) (-15 -3405 ((-3 (-1006) "failed") (-309 (-372)) (-1058 (-816 (-372))) (-1142))))
+((-3606 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|)) 184)) (-3596 (((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|)) 98)) (-2859 (((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2|) 180)) (-3228 (((-3 |#2| "failed") |#2| |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1142))) 189)) (-3967 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2619 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) (-1142)) 197 (|has| |#3| (-632 |#2|)))))
+(((-551 |#1| |#2| |#3|) (-10 -7 (-15 -3596 ((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|))) (-15 -2859 ((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2|)) (-15 -3606 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|))) (-15 -3228 ((-3 |#2| "failed") |#2| |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1142)))) (IF (|has| |#3| (-632 |#2|)) (-15 -3967 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2619 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) (-1142))) |%noBranch|)) (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))) (-13 (-423 |#1|) (-27) (-1164)) (-1066)) (T -551))
+((-3967 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *5 (-592 *4)) (-5 *6 (-1142)) (-4 *4 (-13 (-423 *7) (-27) (-1164))) (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2619 (-621 *4)))) (-5 *1 (-551 *7 *4 *3)) (-4 *3 (-632 *4)) (-4 *3 (-1066)))) (-3228 (*1 *2 *2 *2 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-592 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1142))) (-4 *2 (-13 (-423 *5) (-27) (-1164))) (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *1 (-551 *5 *2 *6)) (-4 *6 (-1066)))) (-3606 (*1 *2 *3 *4 *4 *5) (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-621 *3)) (-4 *3 (-13 (-423 *6) (-27) (-1164))) (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-551 *6 *3 *7)) (-4 *7 (-1066)))) (-2859 (*1 *2 *3 *4 *4 *3) (|partial| -12 (-5 *4 (-592 *3)) (-4 *3 (-13 (-423 *5) (-27) (-1164))) (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-2 (|:| -2677 *3) (|:| |coeff| *3))) (-5 *1 (-551 *5 *3 *6)) (-4 *6 (-1066)))) (-3596 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-592 *3)) (-4 *3 (-13 (-423 *5) (-27) (-1164))) (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549)))) (-5 *2 (-567 *3)) (-5 *1 (-551 *5 *3 *6)) (-4 *6 (-1066)))))
+(-10 -7 (-15 -3596 ((-567 |#2|) |#2| (-592 |#2|) (-592 |#2|))) (-15 -2859 ((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-592 |#2|) (-592 |#2|) |#2|)) (-15 -3606 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-592 |#2|) (-592 |#2|) (-621 |#2|))) (-15 -3228 ((-3 |#2| "failed") |#2| |#2| |#2| (-592 |#2|) (-592 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1142)))) (IF (|has| |#3| (-632 |#2|)) (-15 -3967 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -2619 (-621 |#2|))) |#3| |#2| (-592 |#2|) (-592 |#2|) (-1142))) |%noBranch|))
+((-1911 (((-2 (|:| -2916 |#2|) (|:| |nconst| |#2|)) |#2| (-1142)) 64)) (-1532 (((-3 |#2| "failed") |#2| (-1142) (-816 |#2|) (-816 |#2|)) 164 (-12 (|has| |#2| (-1105)) (|has| |#1| (-594 (-863 (-549)))) (|has| |#1| (-857 (-549))))) (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1142)) 147 (-12 (|has| |#2| (-607)) (|has| |#1| (-594 (-863 (-549)))) (|has| |#1| (-857 (-549)))))) (-1865 (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1142)) 148 (-12 (|has| |#2| (-607)) (|has| |#1| (-594 (-863 (-549)))) (|has| |#1| (-857 (-549)))))))
+(((-552 |#1| |#2|) (-10 -7 (-15 -1911 ((-2 (|:| -2916 |#2|) (|:| |nconst| |#2|)) |#2| (-1142))) (IF (|has| |#1| (-594 (-863 (-549)))) (IF (|has| |#1| (-857 (-549))) (PROGN (IF (|has| |#2| (-607)) (PROGN (-15 -1865 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1142))) (-15 -1532 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1142)))) |%noBranch|) (IF (|has| |#2| (-1105)) (-15 -1532 ((-3 |#2| "failed") |#2| (-1142) (-816 |#2|) (-816 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|)) (-13 (-823) (-1009 (-549)) (-444) (-617 (-549))) (-13 (-27) (-1164) (-423 |#1|))) (T -552))
+((-1532 (*1 *2 *2 *3 *4 *4) (|partial| -12 (-5 *3 (-1142)) (-5 *4 (-816 *2)) (-4 *2 (-1105)) (-4 *2 (-13 (-27) (-1164) (-423 *5))) (-4 *5 (-594 (-863 (-549)))) (-4 *5 (-857 (-549))) (-4 *5 (-13 (-823) (-1009 (-549)) (-444) (-617 (-549)))) (-5 *1 (-552 *5 *2)))) (-1532 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1142)) (-4 *5 (-594 (-863 (-549)))) (-4 *5 (-857 (-549))) (-4 *5 (-13 (-823) (-1009 (-549)) (-444) (-617 (-549)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-552 *5 *3)) (-4 *3 (-607)) (-4 *3 (-13 (-27) (-1164) (-423 *5))))) (-1865 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1142)) (-4 *5 (-594 (-863 (-549)))) (-4 *5 (-857 (-549))) (-4 *5 (-13 (-823) (-1009 (-549)) (-444) (-617 (-549)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-552 *5 *3)) (-4 *3 (-607)) (-4 *3 (-13 (-27) (-1164) (-423 *5))))) (-1911 (*1 *2 *3 *4) (-12 (-5 *4 (-1142)) (-4 *5 (-13 (-823) (-1009 (-549)) (-444) (-617 (-549)))) (-5 *2 (-2 (|:| -2916 *3) (|:| |nconst| *3))) (-5 *1 (-552 *5 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5))))))
+(-10 -7 (-15 -1911 ((-2 (|:| -2916 |#2|) (|:| |nconst| |#2|)) |#2| (-1142))) (IF (|has| |#1| (-594 (-863 (-549)))) (IF (|has| |#1| (-857 (-549))) (PROGN (IF (|has| |#2| (-607)) (PROGN (-15 -1865 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1142))) (-15 -1532 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1142)))) |%noBranch|) (IF (|has| |#2| (-1105)) (-15 -1532 ((-3 |#2| "failed") |#2| (-1142) (-816 |#2|) (-816 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|))
+((-1533 (((-3 (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|)))))) "failed") (-400 |#2|) (-621 (-400 |#2|))) 41)) (-3405 (((-567 (-400 |#2|)) (-400 |#2|)) 28)) (-3310 (((-3 (-400 |#2|) "failed") (-400 |#2|)) 17)) (-3665 (((-3 (-2 (|:| -2677 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-400 |#2|)) 48)))
+(((-553 |#1| |#2|) (-10 -7 (-15 -3405 ((-567 (-400 |#2|)) (-400 |#2|))) (-15 -3310 ((-3 (-400 |#2|) "failed") (-400 |#2|))) (-15 -3665 ((-3 (-2 (|:| -2677 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-400 |#2|))) (-15 -1533 ((-3 (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|)))))) "failed") (-400 |#2|) (-621 (-400 |#2|))))) (-13 (-356) (-145) (-1009 (-549))) (-1201 |#1|)) (T -553))
+((-1533 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-621 (-400 *6))) (-5 *3 (-400 *6)) (-4 *6 (-1201 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-553 *5 *6)))) (-3665 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-13 (-356) (-145) (-1009 (-549)))) (-4 *5 (-1201 *4)) (-5 *2 (-2 (|:| -2677 (-400 *5)) (|:| |coeff| (-400 *5)))) (-5 *1 (-553 *4 *5)) (-5 *3 (-400 *5)))) (-3310 (*1 *2 *2) (|partial| -12 (-5 *2 (-400 *4)) (-4 *4 (-1201 *3)) (-4 *3 (-13 (-356) (-145) (-1009 (-549)))) (-5 *1 (-553 *3 *4)))) (-3405 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-549)))) (-4 *5 (-1201 *4)) (-5 *2 (-567 (-400 *5))) (-5 *1 (-553 *4 *5)) (-5 *3 (-400 *5)))))
+(-10 -7 (-15 -3405 ((-567 (-400 |#2|)) (-400 |#2|))) (-15 -3310 ((-3 (-400 |#2|) "failed") (-400 |#2|))) (-15 -3665 ((-3 (-2 (|:| -2677 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-400 |#2|))) (-15 -1533 ((-3 (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|)))))) "failed") (-400 |#2|) (-621 (-400 |#2|)))))
+((-1780 (((-3 (-549) "failed") |#1|) 14)) (-2276 (((-112) |#1|) 13)) (-3964 (((-549) |#1|) 9)))
+(((-554 |#1|) (-10 -7 (-15 -3964 ((-549) |#1|)) (-15 -2276 ((-112) |#1|)) (-15 -1780 ((-3 (-549) "failed") |#1|))) (-1009 (-549))) (T -554))
+((-1780 (*1 *2 *3) (|partial| -12 (-5 *2 (-549)) (-5 *1 (-554 *3)) (-4 *3 (-1009 *2)))) (-2276 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-554 *3)) (-4 *3 (-1009 (-549))))) (-3964 (*1 *2 *3) (-12 (-5 *2 (-549)) (-5 *1 (-554 *3)) (-4 *3 (-1009 *2)))))
+(-10 -7 (-15 -3964 ((-549) |#1|)) (-15 -2276 ((-112) |#1|)) (-15 -1780 ((-3 (-549) "failed") |#1|)))
+((-3825 (((-3 (-2 (|:| |mainpart| (-400 (-923 |#1|))) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 (-923 |#1|))) (|:| |logand| (-400 (-923 |#1|))))))) "failed") (-400 (-923 |#1|)) (-1142) (-621 (-400 (-923 |#1|)))) 48)) (-1713 (((-567 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-1142)) 28)) (-2571 (((-3 (-400 (-923 |#1|)) "failed") (-400 (-923 |#1|)) (-1142)) 23)) (-1971 (((-3 (-2 (|:| -2677 (-400 (-923 |#1|))) (|:| |coeff| (-400 (-923 |#1|)))) "failed") (-400 (-923 |#1|)) (-1142) (-400 (-923 |#1|))) 35)))
+(((-555 |#1|) (-10 -7 (-15 -1713 ((-567 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-1142))) (-15 -2571 ((-3 (-400 (-923 |#1|)) "failed") (-400 (-923 |#1|)) (-1142))) (-15 -3825 ((-3 (-2 (|:| |mainpart| (-400 (-923 |#1|))) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 (-923 |#1|))) (|:| |logand| (-400 (-923 |#1|))))))) "failed") (-400 (-923 |#1|)) (-1142) (-621 (-400 (-923 |#1|))))) (-15 -1971 ((-3 (-2 (|:| -2677 (-400 (-923 |#1|))) (|:| |coeff| (-400 (-923 |#1|)))) "failed") (-400 (-923 |#1|)) (-1142) (-400 (-923 |#1|))))) (-13 (-541) (-1009 (-549)) (-145))) (T -555))
+((-1971 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1142)) (-4 *5 (-13 (-541) (-1009 (-549)) (-145))) (-5 *2 (-2 (|:| -2677 (-400 (-923 *5))) (|:| |coeff| (-400 (-923 *5))))) (-5 *1 (-555 *5)) (-5 *3 (-400 (-923 *5))))) (-3825 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1142)) (-5 *5 (-621 (-400 (-923 *6)))) (-5 *3 (-400 (-923 *6))) (-4 *6 (-13 (-541) (-1009 (-549)) (-145))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-555 *6)))) (-2571 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-400 (-923 *4))) (-5 *3 (-1142)) (-4 *4 (-13 (-541) (-1009 (-549)) (-145))) (-5 *1 (-555 *4)))) (-1713 (*1 *2 *3 *4) (-12 (-5 *4 (-1142)) (-4 *5 (-13 (-541) (-1009 (-549)) (-145))) (-5 *2 (-567 (-400 (-923 *5)))) (-5 *1 (-555 *5)) (-5 *3 (-400 (-923 *5))))))
+(-10 -7 (-15 -1713 ((-567 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-1142))) (-15 -2571 ((-3 (-400 (-923 |#1|)) "failed") (-400 (-923 |#1|)) (-1142))) (-15 -3825 ((-3 (-2 (|:| |mainpart| (-400 (-923 |#1|))) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 (-923 |#1|))) (|:| |logand| (-400 (-923 |#1|))))))) "failed") (-400 (-923 |#1|)) (-1142) (-621 (-400 (-923 |#1|))))) (-15 -1971 ((-3 (-2 (|:| -2677 (-400 (-923 |#1|))) (|:| |coeff| (-400 (-923 |#1|)))) "failed") (-400 (-923 |#1|)) (-1142) (-400 (-923 |#1|)))))
+((-3832 (((-112) $ $) 58)) (-3210 (((-112) $) 36)) (-2340 ((|#1| $) 30)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) 62)) (-1662 (($ $) 122)) (-1510 (($ $) 102)) (-4280 ((|#1| $) 28)) (-2416 (((-3 $ "failed") $ $) NIL)) (-2132 (($ $) NIL)) (-1638 (($ $) 124)) (-1483 (($ $) 98)) (-1684 (($ $) 126)) (-1538 (($ $) 106)) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) 77)) (-2657 (((-549) $) 79)) (-2612 (((-3 $ "failed") $) 61)) (-3477 (($ |#1| |#1|) 26)) (-2357 (((-112) $) 33)) (-1425 (($) 88)) (-2297 (((-112) $) 43)) (-3621 (($ $ (-549)) NIL)) (-1992 (((-112) $) 34)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-3631 (($ $) 90)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-2186 (($ |#1| |#1|) 20) (($ |#1|) 25) (($ (-400 (-549))) 76)) (-3007 ((|#1| $) 27)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) 64) (($ (-621 $)) NIL)) (-2040 (((-3 $ "failed") $ $) 63)) (-2717 (($ $) 92)) (-1696 (($ $) 130)) (-1551 (($ $) 104)) (-1673 (($ $) 132)) (-1525 (($ $) 108)) (-1648 (($ $) 128)) (-1500 (($ $) 100)) (-1740 (((-112) $ |#1|) 31)) (-3845 (((-834) $) 84) (($ (-549)) 66) (($ $) NIL) (($ (-549)) 66)) (-2371 (((-747)) 86)) (-1731 (($ $) 144)) (-1585 (($ $) 114)) (-2441 (((-112) $ $) NIL)) (-1708 (($ $) 142)) (-1562 (($ $) 110)) (-1753 (($ $) 140)) (-1611 (($ $) 120)) (-1932 (($ $) 138)) (-1625 (($ $) 118)) (-1743 (($ $) 136)) (-1598 (($ $) 116)) (-1719 (($ $) 134)) (-1575 (($ $) 112)) (-3274 (($) 21 T CONST)) (-3286 (($) 10 T CONST)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 37)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 35)) (-2498 (($ $) 41) (($ $ $) 42)) (-2484 (($ $ $) 40)) (** (($ $ (-892)) 54) (($ $ (-747)) NIL) (($ $ $) 94) (($ $ (-400 (-549))) 146)) (* (($ (-892) $) 51) (($ (-747) $) NIL) (($ (-549) $) 50) (($ $ $) 48)))
+(((-556 |#1|) (-539 |#1|) (-13 (-397) (-1164))) (T -556))
NIL
(-539 |#1|)
-((-1348 (((-3 (-621 (-1139 (-549))) "failed") (-621 (-1139 (-549))) (-1139 (-549))) 24)))
-(((-557) (-10 -7 (-15 -1348 ((-3 (-621 (-1139 (-549))) "failed") (-621 (-1139 (-549))) (-1139 (-549)))))) (T -557))
-((-1348 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-621 (-1139 (-549)))) (-5 *3 (-1139 (-549))) (-5 *1 (-557)))))
-(-10 -7 (-15 -1348 ((-3 (-621 (-1139 (-549))) "failed") (-621 (-1139 (-549))) (-1139 (-549)))))
-((-2940 (((-621 (-592 |#2|)) (-621 (-592 |#2|)) (-1143)) 19)) (-3285 (((-621 (-592 |#2|)) (-621 |#2|) (-1143)) 23)) (-1442 (((-621 (-592 |#2|)) (-621 (-592 |#2|)) (-621 (-592 |#2|))) 11)) (-3235 ((|#2| |#2| (-1143)) 54 (|has| |#1| (-541)))) (-2175 ((|#2| |#2| (-1143)) 78 (-12 (|has| |#2| (-277)) (|has| |#1| (-444))))) (-3948 (((-592 |#2|) (-592 |#2|) (-621 (-592 |#2|)) (-1143)) 25)) (-3220 (((-592 |#2|) (-621 (-592 |#2|))) 24)) (-2736 (((-567 |#2|) |#2| (-1143) (-1 (-567 |#2|) |#2| (-1143)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1143))) 103 (-12 (|has| |#2| (-277)) (|has| |#2| (-607)) (|has| |#2| (-1009 (-1143))) (|has| |#1| (-594 (-863 (-549)))) (|has| |#1| (-444)) (|has| |#1| (-857 (-549)))))))
-(((-558 |#1| |#2|) (-10 -7 (-15 -2940 ((-621 (-592 |#2|)) (-621 (-592 |#2|)) (-1143))) (-15 -3220 ((-592 |#2|) (-621 (-592 |#2|)))) (-15 -3948 ((-592 |#2|) (-592 |#2|) (-621 (-592 |#2|)) (-1143))) (-15 -1442 ((-621 (-592 |#2|)) (-621 (-592 |#2|)) (-621 (-592 |#2|)))) (-15 -3285 ((-621 (-592 |#2|)) (-621 |#2|) (-1143))) (IF (|has| |#1| (-541)) (-15 -3235 (|#2| |#2| (-1143))) |%noBranch|) (IF (|has| |#1| (-444)) (IF (|has| |#2| (-277)) (PROGN (-15 -2175 (|#2| |#2| (-1143))) (IF (|has| |#1| (-594 (-863 (-549)))) (IF (|has| |#1| (-857 (-549))) (IF (|has| |#2| (-607)) (IF (|has| |#2| (-1009 (-1143))) (-15 -2736 ((-567 |#2|) |#2| (-1143) (-1 (-567 |#2|) |#2| (-1143)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1143)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|)) (-823) (-423 |#1|)) (T -558))
-((-2736 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-1 (-567 *3) *3 (-1143))) (-5 *6 (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3 (-1143))) (-4 *3 (-277)) (-4 *3 (-607)) (-4 *3 (-1009 *4)) (-4 *3 (-423 *7)) (-5 *4 (-1143)) (-4 *7 (-594 (-863 (-549)))) (-4 *7 (-444)) (-4 *7 (-857 (-549))) (-4 *7 (-823)) (-5 *2 (-567 *3)) (-5 *1 (-558 *7 *3)))) (-2175 (*1 *2 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-444)) (-4 *4 (-823)) (-5 *1 (-558 *4 *2)) (-4 *2 (-277)) (-4 *2 (-423 *4)))) (-3235 (*1 *2 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-541)) (-4 *4 (-823)) (-5 *1 (-558 *4 *2)) (-4 *2 (-423 *4)))) (-3285 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *6)) (-5 *4 (-1143)) (-4 *6 (-423 *5)) (-4 *5 (-823)) (-5 *2 (-621 (-592 *6))) (-5 *1 (-558 *5 *6)))) (-1442 (*1 *2 *2 *2) (-12 (-5 *2 (-621 (-592 *4))) (-4 *4 (-423 *3)) (-4 *3 (-823)) (-5 *1 (-558 *3 *4)))) (-3948 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-621 (-592 *6))) (-5 *4 (-1143)) (-5 *2 (-592 *6)) (-4 *6 (-423 *5)) (-4 *5 (-823)) (-5 *1 (-558 *5 *6)))) (-3220 (*1 *2 *3) (-12 (-5 *3 (-621 (-592 *5))) (-4 *4 (-823)) (-5 *2 (-592 *5)) (-5 *1 (-558 *4 *5)) (-4 *5 (-423 *4)))) (-2940 (*1 *2 *2 *3) (-12 (-5 *2 (-621 (-592 *5))) (-5 *3 (-1143)) (-4 *5 (-423 *4)) (-4 *4 (-823)) (-5 *1 (-558 *4 *5)))))
-(-10 -7 (-15 -2940 ((-621 (-592 |#2|)) (-621 (-592 |#2|)) (-1143))) (-15 -3220 ((-592 |#2|) (-621 (-592 |#2|)))) (-15 -3948 ((-592 |#2|) (-592 |#2|) (-621 (-592 |#2|)) (-1143))) (-15 -1442 ((-621 (-592 |#2|)) (-621 (-592 |#2|)) (-621 (-592 |#2|)))) (-15 -3285 ((-621 (-592 |#2|)) (-621 |#2|) (-1143))) (IF (|has| |#1| (-541)) (-15 -3235 (|#2| |#2| (-1143))) |%noBranch|) (IF (|has| |#1| (-444)) (IF (|has| |#2| (-277)) (PROGN (-15 -2175 (|#2| |#2| (-1143))) (IF (|has| |#1| (-594 (-863 (-549)))) (IF (|has| |#1| (-857 (-549))) (IF (|has| |#2| (-607)) (IF (|has| |#2| (-1009 (-1143))) (-15 -2736 ((-567 |#2|) |#2| (-1143) (-1 (-567 |#2|) |#2| (-1143)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1143)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|))
-((-2310 (((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-621 |#1|) "failed") (-549) |#1| |#1|)) 172)) (-3207 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|))))))) (|:| |a0| |#1|)) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3440 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-621 (-400 |#2|))) 148)) (-2700 (((-3 (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|)))))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-621 (-400 |#2|))) 145)) (-3258 (((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3440 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) 133)) (-3275 (((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3440 |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) 158)) (-3786 (((-3 (-2 (|:| -3440 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-400 |#2|)) 175)) (-3666 (((-3 (-2 (|:| |answer| (-400 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3440 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3440 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-400 |#2|)) 178)) (-2827 (((-2 (|:| |ir| (-567 (-400 |#2|))) (|:| |specpart| (-400 |#2|)) (|:| |polypart| |#2|)) (-400 |#2|) (-1 |#2| |#2|)) 84)) (-2615 (((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)) 90)) (-4022 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|))))))) (|:| |a0| |#1|)) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3848 |#1|) (|:| |sol?| (-112))) (-549) |#1|) (-621 (-400 |#2|))) 152)) (-2445 (((-3 (-601 |#1| |#2|) "failed") (-601 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3848 |#1|) (|:| |sol?| (-112))) (-549) |#1|)) 137)) (-4104 (((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3848 |#1|) (|:| |sol?| (-112))) (-549) |#1|)) 162)) (-1917 (((-3 (-2 (|:| |answer| (-400 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3440 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3848 |#1|) (|:| |sol?| (-112))) (-549) |#1|) (-400 |#2|)) 183)))
-(((-559 |#1| |#2|) (-10 -7 (-15 -3275 ((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3440 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -4104 ((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3848 |#1|) (|:| |sol?| (-112))) (-549) |#1|))) (-15 -2310 ((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-621 |#1|) "failed") (-549) |#1| |#1|))) (-15 -3666 ((-3 (-2 (|:| |answer| (-400 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3440 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3440 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-400 |#2|))) (-15 -1917 ((-3 (-2 (|:| |answer| (-400 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3440 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3848 |#1|) (|:| |sol?| (-112))) (-549) |#1|) (-400 |#2|))) (-15 -3207 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|))))))) (|:| |a0| |#1|)) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3440 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-621 (-400 |#2|)))) (-15 -4022 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|))))))) (|:| |a0| |#1|)) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3848 |#1|) (|:| |sol?| (-112))) (-549) |#1|) (-621 (-400 |#2|)))) (-15 -3786 ((-3 (-2 (|:| -3440 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-400 |#2|))) (-15 -2700 ((-3 (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|)))))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-621 (-400 |#2|)))) (-15 -3258 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3440 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -2445 ((-3 (-601 |#1| |#2|) "failed") (-601 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3848 |#1|) (|:| |sol?| (-112))) (-549) |#1|))) (-15 -2827 ((-2 (|:| |ir| (-567 (-400 |#2|))) (|:| |specpart| (-400 |#2|)) (|:| |polypart| |#2|)) (-400 |#2|) (-1 |#2| |#2|))) (-15 -2615 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)))) (-356) (-1202 |#1|)) (T -559))
-((-2615 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1202 *5)) (-4 *5 (-356)) (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3))) (-5 *1 (-559 *5 *3)))) (-2827 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1202 *5)) (-4 *5 (-356)) (-5 *2 (-2 (|:| |ir| (-567 (-400 *6))) (|:| |specpart| (-400 *6)) (|:| |polypart| *6))) (-5 *1 (-559 *5 *6)) (-5 *3 (-400 *6)))) (-2445 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-601 *4 *5)) (-5 *3 (-1 (-2 (|:| |ans| *4) (|:| -3848 *4) (|:| |sol?| (-112))) (-549) *4)) (-4 *4 (-356)) (-4 *5 (-1202 *4)) (-5 *1 (-559 *4 *5)))) (-3258 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 (-2 (|:| -3440 *4) (|:| |coeff| *4)) "failed") *4)) (-4 *4 (-356)) (-5 *1 (-559 *4 *2)) (-4 *2 (-1202 *4)))) (-2700 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-621 (-400 *7))) (-4 *7 (-1202 *6)) (-5 *3 (-400 *7)) (-4 *6 (-356)) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-559 *6 *7)))) (-3786 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1202 *5)) (-4 *5 (-356)) (-5 *2 (-2 (|:| -3440 (-400 *6)) (|:| |coeff| (-400 *6)))) (-5 *1 (-559 *5 *6)) (-5 *3 (-400 *6)))) (-4022 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-2 (|:| |ans| *7) (|:| -3848 *7) (|:| |sol?| (-112))) (-549) *7)) (-5 *6 (-621 (-400 *8))) (-4 *7 (-356)) (-4 *8 (-1202 *7)) (-5 *3 (-400 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-559 *7 *8)))) (-3207 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-3 (-2 (|:| -3440 *7) (|:| |coeff| *7)) "failed") *7)) (-5 *6 (-621 (-400 *8))) (-4 *7 (-356)) (-4 *8 (-1202 *7)) (-5 *3 (-400 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-559 *7 *8)))) (-1917 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -3848 *6) (|:| |sol?| (-112))) (-549) *6)) (-4 *6 (-356)) (-4 *7 (-1202 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-400 *7)) (|:| |a0| *6)) (-2 (|:| -3440 (-400 *7)) (|:| |coeff| (-400 *7))) "failed")) (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))) (-3666 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -3440 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-356)) (-4 *7 (-1202 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-400 *7)) (|:| |a0| *6)) (-2 (|:| -3440 (-400 *7)) (|:| |coeff| (-400 *7))) "failed")) (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))) (-2310 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-621 *6) "failed") (-549) *6 *6)) (-4 *6 (-356)) (-4 *7 (-1202 *6)) (-5 *2 (-2 (|:| |answer| (-567 (-400 *7))) (|:| |a0| *6))) (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))) (-4104 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -3848 *6) (|:| |sol?| (-112))) (-549) *6)) (-4 *6 (-356)) (-4 *7 (-1202 *6)) (-5 *2 (-2 (|:| |answer| (-567 (-400 *7))) (|:| |a0| *6))) (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))) (-3275 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -3440 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-356)) (-4 *7 (-1202 *6)) (-5 *2 (-2 (|:| |answer| (-567 (-400 *7))) (|:| |a0| *6))) (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))))
-(-10 -7 (-15 -3275 ((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3440 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -4104 ((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3848 |#1|) (|:| |sol?| (-112))) (-549) |#1|))) (-15 -2310 ((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-621 |#1|) "failed") (-549) |#1| |#1|))) (-15 -3666 ((-3 (-2 (|:| |answer| (-400 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3440 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3440 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-400 |#2|))) (-15 -1917 ((-3 (-2 (|:| |answer| (-400 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3440 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3848 |#1|) (|:| |sol?| (-112))) (-549) |#1|) (-400 |#2|))) (-15 -3207 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|))))))) (|:| |a0| |#1|)) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3440 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-621 (-400 |#2|)))) (-15 -4022 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|))))))) (|:| |a0| |#1|)) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3848 |#1|) (|:| |sol?| (-112))) (-549) |#1|) (-621 (-400 |#2|)))) (-15 -3786 ((-3 (-2 (|:| -3440 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-400 |#2|))) (-15 -2700 ((-3 (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|)))))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-621 (-400 |#2|)))) (-15 -3258 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3440 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -2445 ((-3 (-601 |#1| |#2|) "failed") (-601 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3848 |#1|) (|:| |sol?| (-112))) (-549) |#1|))) (-15 -2827 ((-2 (|:| |ir| (-567 (-400 |#2|))) (|:| |specpart| (-400 |#2|)) (|:| |polypart| |#2|)) (-400 |#2|) (-1 |#2| |#2|))) (-15 -2615 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|))))
-((-2388 (((-3 |#2| "failed") |#2| (-1143) (-1143)) 10)))
-(((-560 |#1| |#2|) (-10 -7 (-15 -2388 ((-3 |#2| "failed") |#2| (-1143) (-1143)))) (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))) (-13 (-1165) (-930) (-1106) (-29 |#1|))) (T -560))
-((-2388 (*1 *2 *2 *3 *3) (|partial| -12 (-5 *3 (-1143)) (-4 *4 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-560 *4 *2)) (-4 *2 (-13 (-1165) (-930) (-1106) (-29 *4))))))
-(-10 -7 (-15 -2388 ((-3 |#2| "failed") |#2| (-1143) (-1143))))
-((-2183 (((-1087) $ (-128)) 12)) (-2796 (((-1087) $ (-129)) 11)) (-2618 (((-1087) $ (-128)) 7)) (-3447 (((-1087) $) 8)) (-3578 (($ $) 6)))
+((-3955 (((-3 (-621 (-1138 (-549))) "failed") (-621 (-1138 (-549))) (-1138 (-549))) 24)))
+(((-557) (-10 -7 (-15 -3955 ((-3 (-621 (-1138 (-549))) "failed") (-621 (-1138 (-549))) (-1138 (-549)))))) (T -557))
+((-3955 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-621 (-1138 (-549)))) (-5 *3 (-1138 (-549))) (-5 *1 (-557)))))
+(-10 -7 (-15 -3955 ((-3 (-621 (-1138 (-549))) "failed") (-621 (-1138 (-549))) (-1138 (-549)))))
+((-3471 (((-621 (-592 |#2|)) (-621 (-592 |#2|)) (-1142)) 19)) (-2573 (((-621 (-592 |#2|)) (-621 |#2|) (-1142)) 23)) (-1441 (((-621 (-592 |#2|)) (-621 (-592 |#2|)) (-621 (-592 |#2|))) 11)) (-3161 ((|#2| |#2| (-1142)) 54 (|has| |#1| (-541)))) (-3538 ((|#2| |#2| (-1142)) 78 (-12 (|has| |#2| (-277)) (|has| |#1| (-444))))) (-3576 (((-592 |#2|) (-592 |#2|) (-621 (-592 |#2|)) (-1142)) 25)) (-1877 (((-592 |#2|) (-621 (-592 |#2|))) 24)) (-2645 (((-567 |#2|) |#2| (-1142) (-1 (-567 |#2|) |#2| (-1142)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1142))) 103 (-12 (|has| |#2| (-277)) (|has| |#2| (-607)) (|has| |#2| (-1009 (-1142))) (|has| |#1| (-594 (-863 (-549)))) (|has| |#1| (-444)) (|has| |#1| (-857 (-549)))))))
+(((-558 |#1| |#2|) (-10 -7 (-15 -3471 ((-621 (-592 |#2|)) (-621 (-592 |#2|)) (-1142))) (-15 -1877 ((-592 |#2|) (-621 (-592 |#2|)))) (-15 -3576 ((-592 |#2|) (-592 |#2|) (-621 (-592 |#2|)) (-1142))) (-15 -1441 ((-621 (-592 |#2|)) (-621 (-592 |#2|)) (-621 (-592 |#2|)))) (-15 -2573 ((-621 (-592 |#2|)) (-621 |#2|) (-1142))) (IF (|has| |#1| (-541)) (-15 -3161 (|#2| |#2| (-1142))) |%noBranch|) (IF (|has| |#1| (-444)) (IF (|has| |#2| (-277)) (PROGN (-15 -3538 (|#2| |#2| (-1142))) (IF (|has| |#1| (-594 (-863 (-549)))) (IF (|has| |#1| (-857 (-549))) (IF (|has| |#2| (-607)) (IF (|has| |#2| (-1009 (-1142))) (-15 -2645 ((-567 |#2|) |#2| (-1142) (-1 (-567 |#2|) |#2| (-1142)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1142)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|)) (-823) (-423 |#1|)) (T -558))
+((-2645 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-1 (-567 *3) *3 (-1142))) (-5 *6 (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3 (-1142))) (-4 *3 (-277)) (-4 *3 (-607)) (-4 *3 (-1009 *4)) (-4 *3 (-423 *7)) (-5 *4 (-1142)) (-4 *7 (-594 (-863 (-549)))) (-4 *7 (-444)) (-4 *7 (-857 (-549))) (-4 *7 (-823)) (-5 *2 (-567 *3)) (-5 *1 (-558 *7 *3)))) (-3538 (*1 *2 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-444)) (-4 *4 (-823)) (-5 *1 (-558 *4 *2)) (-4 *2 (-277)) (-4 *2 (-423 *4)))) (-3161 (*1 *2 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-541)) (-4 *4 (-823)) (-5 *1 (-558 *4 *2)) (-4 *2 (-423 *4)))) (-2573 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *6)) (-5 *4 (-1142)) (-4 *6 (-423 *5)) (-4 *5 (-823)) (-5 *2 (-621 (-592 *6))) (-5 *1 (-558 *5 *6)))) (-1441 (*1 *2 *2 *2) (-12 (-5 *2 (-621 (-592 *4))) (-4 *4 (-423 *3)) (-4 *3 (-823)) (-5 *1 (-558 *3 *4)))) (-3576 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-621 (-592 *6))) (-5 *4 (-1142)) (-5 *2 (-592 *6)) (-4 *6 (-423 *5)) (-4 *5 (-823)) (-5 *1 (-558 *5 *6)))) (-1877 (*1 *2 *3) (-12 (-5 *3 (-621 (-592 *5))) (-4 *4 (-823)) (-5 *2 (-592 *5)) (-5 *1 (-558 *4 *5)) (-4 *5 (-423 *4)))) (-3471 (*1 *2 *2 *3) (-12 (-5 *2 (-621 (-592 *5))) (-5 *3 (-1142)) (-4 *5 (-423 *4)) (-4 *4 (-823)) (-5 *1 (-558 *4 *5)))))
+(-10 -7 (-15 -3471 ((-621 (-592 |#2|)) (-621 (-592 |#2|)) (-1142))) (-15 -1877 ((-592 |#2|) (-621 (-592 |#2|)))) (-15 -3576 ((-592 |#2|) (-592 |#2|) (-621 (-592 |#2|)) (-1142))) (-15 -1441 ((-621 (-592 |#2|)) (-621 (-592 |#2|)) (-621 (-592 |#2|)))) (-15 -2573 ((-621 (-592 |#2|)) (-621 |#2|) (-1142))) (IF (|has| |#1| (-541)) (-15 -3161 (|#2| |#2| (-1142))) |%noBranch|) (IF (|has| |#1| (-444)) (IF (|has| |#2| (-277)) (PROGN (-15 -3538 (|#2| |#2| (-1142))) (IF (|has| |#1| (-594 (-863 (-549)))) (IF (|has| |#1| (-857 (-549))) (IF (|has| |#2| (-607)) (IF (|has| |#2| (-1009 (-1142))) (-15 -2645 ((-567 |#2|) |#2| (-1142) (-1 (-567 |#2|) |#2| (-1142)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1142)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|))
+((-2892 (((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-621 |#1|) "failed") (-549) |#1| |#1|)) 172)) (-2863 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|))))))) (|:| |a0| |#1|)) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2677 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-621 (-400 |#2|))) 148)) (-3616 (((-3 (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|)))))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-621 (-400 |#2|))) 145)) (-1705 (((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2677 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) 133)) (-2775 (((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2677 |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) 158)) (-3335 (((-3 (-2 (|:| -2677 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-400 |#2|)) 175)) (-2304 (((-3 (-2 (|:| |answer| (-400 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2677 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2677 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-400 |#2|)) 178)) (-3975 (((-2 (|:| |ir| (-567 (-400 |#2|))) (|:| |specpart| (-400 |#2|)) (|:| |polypart| |#2|)) (-400 |#2|) (-1 |#2| |#2|)) 84)) (-4266 (((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)) 90)) (-1265 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|))))))) (|:| |a0| |#1|)) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3847 |#1|) (|:| |sol?| (-112))) (-549) |#1|) (-621 (-400 |#2|))) 152)) (-3345 (((-3 (-601 |#1| |#2|) "failed") (-601 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3847 |#1|) (|:| |sol?| (-112))) (-549) |#1|)) 137)) (-3823 (((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3847 |#1|) (|:| |sol?| (-112))) (-549) |#1|)) 162)) (-2695 (((-3 (-2 (|:| |answer| (-400 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2677 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3847 |#1|) (|:| |sol?| (-112))) (-549) |#1|) (-400 |#2|)) 183)))
+(((-559 |#1| |#2|) (-10 -7 (-15 -2775 ((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2677 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -3823 ((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3847 |#1|) (|:| |sol?| (-112))) (-549) |#1|))) (-15 -2892 ((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-621 |#1|) "failed") (-549) |#1| |#1|))) (-15 -2304 ((-3 (-2 (|:| |answer| (-400 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2677 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2677 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-400 |#2|))) (-15 -2695 ((-3 (-2 (|:| |answer| (-400 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2677 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3847 |#1|) (|:| |sol?| (-112))) (-549) |#1|) (-400 |#2|))) (-15 -2863 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|))))))) (|:| |a0| |#1|)) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2677 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-621 (-400 |#2|)))) (-15 -1265 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|))))))) (|:| |a0| |#1|)) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3847 |#1|) (|:| |sol?| (-112))) (-549) |#1|) (-621 (-400 |#2|)))) (-15 -3335 ((-3 (-2 (|:| -2677 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-400 |#2|))) (-15 -3616 ((-3 (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|)))))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-621 (-400 |#2|)))) (-15 -1705 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2677 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -3345 ((-3 (-601 |#1| |#2|) "failed") (-601 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3847 |#1|) (|:| |sol?| (-112))) (-549) |#1|))) (-15 -3975 ((-2 (|:| |ir| (-567 (-400 |#2|))) (|:| |specpart| (-400 |#2|)) (|:| |polypart| |#2|)) (-400 |#2|) (-1 |#2| |#2|))) (-15 -4266 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)))) (-356) (-1201 |#1|)) (T -559))
+((-4266 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1201 *5)) (-4 *5 (-356)) (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3))) (-5 *1 (-559 *5 *3)))) (-3975 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1201 *5)) (-4 *5 (-356)) (-5 *2 (-2 (|:| |ir| (-567 (-400 *6))) (|:| |specpart| (-400 *6)) (|:| |polypart| *6))) (-5 *1 (-559 *5 *6)) (-5 *3 (-400 *6)))) (-3345 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-601 *4 *5)) (-5 *3 (-1 (-2 (|:| |ans| *4) (|:| -3847 *4) (|:| |sol?| (-112))) (-549) *4)) (-4 *4 (-356)) (-4 *5 (-1201 *4)) (-5 *1 (-559 *4 *5)))) (-1705 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 (-2 (|:| -2677 *4) (|:| |coeff| *4)) "failed") *4)) (-4 *4 (-356)) (-5 *1 (-559 *4 *2)) (-4 *2 (-1201 *4)))) (-3616 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-621 (-400 *7))) (-4 *7 (-1201 *6)) (-5 *3 (-400 *7)) (-4 *6 (-356)) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-559 *6 *7)))) (-3335 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1201 *5)) (-4 *5 (-356)) (-5 *2 (-2 (|:| -2677 (-400 *6)) (|:| |coeff| (-400 *6)))) (-5 *1 (-559 *5 *6)) (-5 *3 (-400 *6)))) (-1265 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-2 (|:| |ans| *7) (|:| -3847 *7) (|:| |sol?| (-112))) (-549) *7)) (-5 *6 (-621 (-400 *8))) (-4 *7 (-356)) (-4 *8 (-1201 *7)) (-5 *3 (-400 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-559 *7 *8)))) (-2863 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-3 (-2 (|:| -2677 *7) (|:| |coeff| *7)) "failed") *7)) (-5 *6 (-621 (-400 *8))) (-4 *7 (-356)) (-4 *8 (-1201 *7)) (-5 *3 (-400 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-559 *7 *8)))) (-2695 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -3847 *6) (|:| |sol?| (-112))) (-549) *6)) (-4 *6 (-356)) (-4 *7 (-1201 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-400 *7)) (|:| |a0| *6)) (-2 (|:| -2677 (-400 *7)) (|:| |coeff| (-400 *7))) "failed")) (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))) (-2304 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -2677 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-356)) (-4 *7 (-1201 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-400 *7)) (|:| |a0| *6)) (-2 (|:| -2677 (-400 *7)) (|:| |coeff| (-400 *7))) "failed")) (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))) (-2892 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-621 *6) "failed") (-549) *6 *6)) (-4 *6 (-356)) (-4 *7 (-1201 *6)) (-5 *2 (-2 (|:| |answer| (-567 (-400 *7))) (|:| |a0| *6))) (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))) (-3823 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -3847 *6) (|:| |sol?| (-112))) (-549) *6)) (-4 *6 (-356)) (-4 *7 (-1201 *6)) (-5 *2 (-2 (|:| |answer| (-567 (-400 *7))) (|:| |a0| *6))) (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))) (-2775 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -2677 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-356)) (-4 *7 (-1201 *6)) (-5 *2 (-2 (|:| |answer| (-567 (-400 *7))) (|:| |a0| *6))) (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))))
+(-10 -7 (-15 -2775 ((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2677 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -3823 ((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3847 |#1|) (|:| |sol?| (-112))) (-549) |#1|))) (-15 -2892 ((-2 (|:| |answer| (-567 (-400 |#2|))) (|:| |a0| |#1|)) (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-621 |#1|) "failed") (-549) |#1| |#1|))) (-15 -2304 ((-3 (-2 (|:| |answer| (-400 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2677 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2677 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-400 |#2|))) (-15 -2695 ((-3 (-2 (|:| |answer| (-400 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2677 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3847 |#1|) (|:| |sol?| (-112))) (-549) |#1|) (-400 |#2|))) (-15 -2863 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|))))))) (|:| |a0| |#1|)) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2677 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-621 (-400 |#2|)))) (-15 -1265 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|))))))) (|:| |a0| |#1|)) "failed") (-400 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3847 |#1|) (|:| |sol?| (-112))) (-549) |#1|) (-621 (-400 |#2|)))) (-15 -3335 ((-3 (-2 (|:| -2677 (-400 |#2|)) (|:| |coeff| (-400 |#2|))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-400 |#2|))) (-15 -3616 ((-3 (-2 (|:| |mainpart| (-400 |#2|)) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| (-400 |#2|)) (|:| |logand| (-400 |#2|)))))) "failed") (-400 |#2|) (-1 |#2| |#2|) (-621 (-400 |#2|)))) (-15 -1705 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2677 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -3345 ((-3 (-601 |#1| |#2|) "failed") (-601 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -3847 |#1|) (|:| |sol?| (-112))) (-549) |#1|))) (-15 -3975 ((-2 (|:| |ir| (-567 (-400 |#2|))) (|:| |specpart| (-400 |#2|)) (|:| |polypart| |#2|)) (-400 |#2|) (-1 |#2| |#2|))) (-15 -4266 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|))))
+((-2769 (((-3 |#2| "failed") |#2| (-1142) (-1142)) 10)))
+(((-560 |#1| |#2|) (-10 -7 (-15 -2769 ((-3 |#2| "failed") |#2| (-1142) (-1142)))) (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))) (-13 (-1164) (-930) (-1105) (-29 |#1|))) (T -560))
+((-2769 (*1 *2 *2 *3 *3) (|partial| -12 (-5 *3 (-1142)) (-4 *4 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-560 *4 *2)) (-4 *2 (-13 (-1164) (-930) (-1105) (-29 *4))))))
+(-10 -7 (-15 -2769 ((-3 |#2| "failed") |#2| (-1142) (-1142))))
+((-1345 (((-1086) $ (-128)) 12)) (-3811 (((-1086) $ (-129)) 11)) (-3322 (((-1086) $ (-128)) 7)) (-1800 (((-1086) $) 8)) (-2384 (($ $) 6)))
(((-561) (-138)) (T -561))
NIL
(-13 (-518) (-833))
(((-171) . T) ((-518) . T) ((-833) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-2134 (($ $ (-549)) 66)) (-3866 (((-112) $ $) NIL)) (-1682 (($) NIL T CONST)) (-1885 (($ (-1139 (-549)) (-549)) 72)) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) 58)) (-1538 (($ $) 34)) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-2088 (((-747) $) 15)) (-2675 (((-112) $) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1591 (((-549)) 29)) (-3246 (((-549) $) 32)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2763 (($ $ (-549)) 21)) (-2042 (((-3 $ "failed") $ $) 59)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) 16)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 61)) (-3862 (((-1123 (-549)) $) 18)) (-1977 (($ $) 23)) (-3846 (((-834) $) 87) (($ (-549)) 52) (($ $) NIL)) (-2082 (((-747)) 14)) (-1498 (((-112) $ $) NIL)) (-2661 (((-549) $ (-549)) 36)) (-3276 (($) 35 T CONST)) (-3287 (($) 19 T CONST)) (-2389 (((-112) $ $) 39)) (-2500 (($ $) 51) (($ $ $) 37)) (-2486 (($ $ $) 50)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 54) (($ $ $) 55)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-2132 (($ $ (-549)) 66)) (-2680 (((-112) $ $) NIL)) (-3034 (($) NIL T CONST)) (-3737 (($ (-1138 (-549)) (-549)) 72)) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) 58)) (-2066 (($ $) 34)) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-2729 (((-747) $) 15)) (-2297 (((-112) $) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2107 (((-549)) 29)) (-3575 (((-549) $) 32)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3796 (($ $ (-549)) 21)) (-2040 (((-3 $ "failed") $ $) 59)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) 16)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 61)) (-2234 (((-1122 (-549)) $) 18)) (-3958 (($ $) 23)) (-3845 (((-834) $) 87) (($ (-549)) 52) (($ $) NIL)) (-2371 (((-747)) 14)) (-2441 (((-112) $ $) NIL)) (-2659 (((-549) $ (-549)) 36)) (-3274 (($) 35 T CONST)) (-3286 (($) 19 T CONST)) (-2387 (((-112) $ $) 39)) (-2498 (($ $) 51) (($ $ $) 37)) (-2484 (($ $ $) 50)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 54) (($ $ $) 55)))
(((-562 |#1| |#2|) (-840 |#1|) (-549) (-112)) (T -562))
NIL
(-840 |#1|)
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 21)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2044 (((-112) $) NIL)) (-3214 (((-747)) NIL)) (-2906 (($ $ (-892)) NIL (|has| $ (-361))) (($ $) NIL)) (-3062 (((-1153 (-892) (-747)) (-549)) 47)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3866 (((-112) $ $) NIL)) (-3614 (((-747)) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 $ "failed") $) 75)) (-2659 (($ $) 74)) (-3492 (($ (-1226 $)) 73)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) 44)) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) 32)) (-3239 (($) NIL)) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-2405 (($) 49)) (-2288 (((-112) $) NIL)) (-3165 (($ $) NIL) (($ $ (-747)) NIL)) (-1420 (((-112) $) NIL)) (-2088 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-2675 (((-112) $) NIL)) (-1973 (($) 37 (|has| $ (-361)))) (-4091 (((-112) $) NIL (|has| $ (-361)))) (-3630 (($ $ (-892)) NIL (|has| $ (-361))) (($ $) NIL)) (-1681 (((-3 $ "failed") $) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3788 (((-1139 $) $ (-892)) NIL (|has| $ (-361))) (((-1139 $) $) 83)) (-1881 (((-892) $) 55)) (-3318 (((-1139 $) $) NIL (|has| $ (-361)))) (-1983 (((-3 (-1139 $) "failed") $ $) NIL (|has| $ (-361))) (((-1139 $) $) NIL (|has| $ (-361)))) (-3719 (($ $ (-1139 $)) NIL (|has| $ (-361)))) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL T CONST)) (-3493 (($ (-892)) 48)) (-3980 (((-112) $) 67)) (-3990 (((-1087) $) NIL)) (-4248 (($) 19 (|has| $ (-361)))) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) 42)) (-2121 (((-411 $) $) NIL)) (-3049 (((-892)) 66) (((-809 (-892))) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3914 (((-3 (-747) "failed") $ $) NIL) (((-747) $) NIL)) (-2985 (((-133)) NIL)) (-3456 (($ $ (-747)) NIL) (($ $) NIL)) (-3701 (((-892) $) 65) (((-809 (-892)) $) NIL)) (-2815 (((-1139 $)) 82)) (-3170 (($) 54)) (-1544 (($) 38 (|has| $ (-361)))) (-4263 (((-665 $) (-1226 $)) NIL) (((-1226 $) $) 71)) (-2845 (((-549) $) 28)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL)) (-3846 (((-834) $) NIL) (($ (-549)) 30) (($ $) NIL) (($ (-400 (-549))) NIL)) (-2210 (((-3 $ "failed") $) NIL) (($ $) 84)) (-2082 (((-747)) 39)) (-1949 (((-1226 $) (-892)) 77) (((-1226 $)) 76)) (-1498 (((-112) $ $) NIL)) (-1606 (((-112) $) NIL)) (-3276 (($) 22 T CONST)) (-3287 (($) 18 T CONST)) (-1933 (($ $ (-747)) NIL (|has| $ (-361))) (($ $) NIL (|has| $ (-361)))) (-1702 (($ $ (-747)) NIL) (($ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) 26)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 61) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 21)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2638 (((-112) $) NIL)) (-2464 (((-747)) NIL)) (-2904 (($ $ (-892)) NIL (|has| $ (-361))) (($ $) NIL)) (-1597 (((-1152 (-892) (-747)) (-549)) 47)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2680 (((-112) $ $) NIL)) (-3614 (((-747)) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 $ "failed") $) 75)) (-2657 (($ $) 74)) (-2397 (($ (-1225 $)) 73)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) 44)) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) 32)) (-3237 (($) NIL)) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1545 (($) 49)) (-1315 (((-112) $) NIL)) (-3517 (($ $) NIL) (($ $ (-747)) NIL)) (-1464 (((-112) $) NIL)) (-2729 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-2297 (((-112) $) NIL)) (-1728 (($) 37 (|has| $ (-361)))) (-4031 (((-112) $) NIL (|has| $ (-361)))) (-2469 (($ $ (-892)) NIL (|has| $ (-361))) (($ $) NIL)) (-2964 (((-3 $ "failed") $) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3514 (((-1138 $) $ (-892)) NIL (|has| $ (-361))) (((-1138 $) $) 83)) (-3309 (((-892) $) 55)) (-4021 (((-1138 $) $) NIL (|has| $ (-361)))) (-1298 (((-3 (-1138 $) "failed") $ $) NIL (|has| $ (-361))) (((-1138 $) $) NIL (|has| $ (-361)))) (-3098 (($ $ (-1138 $)) NIL (|has| $ (-361)))) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL T CONST)) (-3494 (($ (-892)) 48)) (-2165 (((-112) $) 67)) (-3988 (((-1086) $) NIL)) (-4247 (($) 19 (|has| $ (-361)))) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) 42)) (-2119 (((-411 $) $) NIL)) (-1485 (((-892)) 66) (((-809 (-892))) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3189 (((-3 (-747) "failed") $ $) NIL) (((-747) $) NIL)) (-2260 (((-133)) NIL)) (-3455 (($ $ (-747)) NIL) (($ $) NIL)) (-3977 (((-892) $) 65) (((-809 (-892)) $) NIL)) (-1262 (((-1138 $)) 82)) (-2950 (($) 54)) (-2578 (($) 38 (|has| $ (-361)))) (-1981 (((-665 $) (-1225 $)) NIL) (((-1225 $) $) 71)) (-2843 (((-549) $) 28)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL)) (-3845 (((-834) $) NIL) (($ (-549)) 30) (($ $) NIL) (($ (-400 (-549))) NIL)) (-2343 (((-3 $ "failed") $) NIL) (($ $) 84)) (-2371 (((-747)) 39)) (-2619 (((-1225 $) (-892)) 77) (((-1225 $)) 76)) (-2441 (((-112) $ $) NIL)) (-1993 (((-112) $) NIL)) (-3274 (($) 22 T CONST)) (-3286 (($) 18 T CONST)) (-3495 (($ $ (-747)) NIL (|has| $ (-361))) (($ $) NIL (|has| $ (-361)))) (-1699 (($ $ (-747)) NIL) (($ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) 26)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 61) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL)))
(((-563 |#1|) (-13 (-342) (-322 $) (-594 (-549))) (-892)) (T -563))
NIL
(-13 (-342) (-322 $) (-594 (-549)))
-((-1996 (((-1231) (-1125)) 10)))
-(((-564) (-10 -7 (-15 -1996 ((-1231) (-1125))))) (T -564))
-((-1996 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-564)))))
-(-10 -7 (-15 -1996 ((-1231) (-1125))))
-((-3628 (((-567 |#2|) (-567 |#2|)) 40)) (-1449 (((-621 |#2|) (-567 |#2|)) 42)) (-2544 ((|#2| (-567 |#2|)) 48)))
-(((-565 |#1| |#2|) (-10 -7 (-15 -3628 ((-567 |#2|) (-567 |#2|))) (-15 -1449 ((-621 |#2|) (-567 |#2|))) (-15 -2544 (|#2| (-567 |#2|)))) (-13 (-444) (-1009 (-549)) (-823) (-617 (-549))) (-13 (-29 |#1|) (-1165))) (T -565))
-((-2544 (*1 *2 *3) (-12 (-5 *3 (-567 *2)) (-4 *2 (-13 (-29 *4) (-1165))) (-5 *1 (-565 *4 *2)) (-4 *4 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))))) (-1449 (*1 *2 *3) (-12 (-5 *3 (-567 *5)) (-4 *5 (-13 (-29 *4) (-1165))) (-4 *4 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))) (-5 *2 (-621 *5)) (-5 *1 (-565 *4 *5)))) (-3628 (*1 *2 *2) (-12 (-5 *2 (-567 *4)) (-4 *4 (-13 (-29 *3) (-1165))) (-4 *3 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))) (-5 *1 (-565 *3 *4)))))
-(-10 -7 (-15 -3628 ((-567 |#2|) (-567 |#2|))) (-15 -1449 ((-621 |#2|) (-567 |#2|))) (-15 -2544 (|#2| (-567 |#2|))))
-((-2797 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")) 44) (((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed")) 11) (((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3440 |#1|) (|:| |coeff| |#1|)) "failed")) 35) (((-567 |#2|) (-1 |#2| |#1|) (-567 |#1|)) 30)))
-(((-566 |#1| |#2|) (-10 -7 (-15 -2797 ((-567 |#2|) (-1 |#2| |#1|) (-567 |#1|))) (-15 -2797 ((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3440 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -2797 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -2797 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")))) (-356) (-356)) (T -566))
-((-2797 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| |mainpart| *5) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *5) (|:| |logand| *5))))) "failed")) (-4 *5 (-356)) (-4 *6 (-356)) (-5 *2 (-2 (|:| |mainpart| *6) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *6) (|:| |logand| *6)))))) (-5 *1 (-566 *5 *6)))) (-2797 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed")) (-4 *5 (-356)) (-4 *2 (-356)) (-5 *1 (-566 *5 *2)))) (-2797 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| -3440 *5) (|:| |coeff| *5)) "failed")) (-4 *5 (-356)) (-4 *6 (-356)) (-5 *2 (-2 (|:| -3440 *6) (|:| |coeff| *6))) (-5 *1 (-566 *5 *6)))) (-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-567 *5)) (-4 *5 (-356)) (-4 *6 (-356)) (-5 *2 (-567 *6)) (-5 *1 (-566 *5 *6)))))
-(-10 -7 (-15 -2797 ((-567 |#2|) (-1 |#2| |#1|) (-567 |#1|))) (-15 -2797 ((-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3440 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -2797 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -2797 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed"))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) 69)) (-2659 ((|#1| $) NIL)) (-3440 ((|#1| $) 26)) (-1635 (((-621 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) 28)) (-3176 (($ |#1| (-621 (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1139 |#1|)) (|:| |logand| (-1139 |#1|)))) (-621 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) 24)) (-3910 (((-621 (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1139 |#1|)) (|:| |logand| (-1139 |#1|)))) $) 27)) (-3851 (((-1125) $) NIL)) (-2204 (($ |#1| |#1|) 33) (($ |#1| (-1143)) 44 (|has| |#1| (-1009 (-1143))))) (-3990 (((-1087) $) NIL)) (-3562 (((-112) $) 30)) (-3456 ((|#1| $ (-1 |#1| |#1|)) 81) ((|#1| $ (-1143)) 82 (|has| |#1| (-871 (-1143))))) (-3846 (((-834) $) 96) (($ |#1|) 25)) (-3276 (($) 16 T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) 15) (($ $ $) NIL)) (-2486 (($ $ $) 78)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 14) (($ (-400 (-549)) $) 36) (($ $ (-400 (-549))) NIL)))
-(((-567 |#1|) (-13 (-694 (-400 (-549))) (-1009 |#1|) (-10 -8 (-15 -3176 ($ |#1| (-621 (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1139 |#1|)) (|:| |logand| (-1139 |#1|)))) (-621 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -3440 (|#1| $)) (-15 -3910 ((-621 (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1139 |#1|)) (|:| |logand| (-1139 |#1|)))) $)) (-15 -1635 ((-621 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3562 ((-112) $)) (-15 -2204 ($ |#1| |#1|)) (-15 -3456 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-871 (-1143))) (-15 -3456 (|#1| $ (-1143))) |%noBranch|) (IF (|has| |#1| (-1009 (-1143))) (-15 -2204 ($ |#1| (-1143))) |%noBranch|))) (-356)) (T -567))
-((-3176 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-621 (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1139 *2)) (|:| |logand| (-1139 *2))))) (-5 *4 (-621 (-2 (|:| |integrand| *2) (|:| |intvar| *2)))) (-4 *2 (-356)) (-5 *1 (-567 *2)))) (-3440 (*1 *2 *1) (-12 (-5 *1 (-567 *2)) (-4 *2 (-356)))) (-3910 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1139 *3)) (|:| |logand| (-1139 *3))))) (-5 *1 (-567 *3)) (-4 *3 (-356)))) (-1635 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |integrand| *3) (|:| |intvar| *3)))) (-5 *1 (-567 *3)) (-4 *3 (-356)))) (-3562 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-567 *3)) (-4 *3 (-356)))) (-2204 (*1 *1 *2 *2) (-12 (-5 *1 (-567 *2)) (-4 *2 (-356)))) (-3456 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-567 *2)) (-4 *2 (-356)))) (-3456 (*1 *2 *1 *3) (-12 (-4 *2 (-356)) (-4 *2 (-871 *3)) (-5 *1 (-567 *2)) (-5 *3 (-1143)))) (-2204 (*1 *1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *1 (-567 *2)) (-4 *2 (-1009 *3)) (-4 *2 (-356)))))
-(-13 (-694 (-400 (-549))) (-1009 |#1|) (-10 -8 (-15 -3176 ($ |#1| (-621 (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1139 |#1|)) (|:| |logand| (-1139 |#1|)))) (-621 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -3440 (|#1| $)) (-15 -3910 ((-621 (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1139 |#1|)) (|:| |logand| (-1139 |#1|)))) $)) (-15 -1635 ((-621 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3562 ((-112) $)) (-15 -2204 ($ |#1| |#1|)) (-15 -3456 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-871 (-1143))) (-15 -3456 (|#1| $ (-1143))) |%noBranch|) (IF (|has| |#1| (-1009 (-1143))) (-15 -2204 ($ |#1| (-1143))) |%noBranch|)))
-((-2113 (((-112) |#1|) 16)) (-3853 (((-3 |#1| "failed") |#1|) 14)) (-3340 (((-2 (|:| -1864 |#1|) (|:| -3731 (-747))) |#1|) 31) (((-3 |#1| "failed") |#1| (-747)) 18)) (-2828 (((-112) |#1| (-747)) 19)) (-1657 ((|#1| |#1|) 32)) (-2149 ((|#1| |#1| (-747)) 34)))
-(((-568 |#1|) (-10 -7 (-15 -2828 ((-112) |#1| (-747))) (-15 -3340 ((-3 |#1| "failed") |#1| (-747))) (-15 -3340 ((-2 (|:| -1864 |#1|) (|:| -3731 (-747))) |#1|)) (-15 -2149 (|#1| |#1| (-747))) (-15 -2113 ((-112) |#1|)) (-15 -3853 ((-3 |#1| "failed") |#1|)) (-15 -1657 (|#1| |#1|))) (-534)) (T -568))
-((-1657 (*1 *2 *2) (-12 (-5 *1 (-568 *2)) (-4 *2 (-534)))) (-3853 (*1 *2 *2) (|partial| -12 (-5 *1 (-568 *2)) (-4 *2 (-534)))) (-2113 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-568 *3)) (-4 *3 (-534)))) (-2149 (*1 *2 *2 *3) (-12 (-5 *3 (-747)) (-5 *1 (-568 *2)) (-4 *2 (-534)))) (-3340 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -1864 *3) (|:| -3731 (-747)))) (-5 *1 (-568 *3)) (-4 *3 (-534)))) (-3340 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-747)) (-5 *1 (-568 *2)) (-4 *2 (-534)))) (-2828 (*1 *2 *3 *4) (-12 (-5 *4 (-747)) (-5 *2 (-112)) (-5 *1 (-568 *3)) (-4 *3 (-534)))))
-(-10 -7 (-15 -2828 ((-112) |#1| (-747))) (-15 -3340 ((-3 |#1| "failed") |#1| (-747))) (-15 -3340 ((-2 (|:| -1864 |#1|) (|:| -3731 (-747))) |#1|)) (-15 -2149 (|#1| |#1| (-747))) (-15 -2113 ((-112) |#1|)) (-15 -3853 ((-3 |#1| "failed") |#1|)) (-15 -1657 (|#1| |#1|)))
-((-1437 (((-1139 |#1|) (-892)) 27)))
-(((-569 |#1|) (-10 -7 (-15 -1437 ((-1139 |#1|) (-892)))) (-342)) (T -569))
-((-1437 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1139 *4)) (-5 *1 (-569 *4)) (-4 *4 (-342)))))
-(-10 -7 (-15 -1437 ((-1139 |#1|) (-892))))
-((-3628 (((-567 (-400 (-923 |#1|))) (-567 (-400 (-923 |#1|)))) 27)) (-3893 (((-3 (-309 |#1|) (-621 (-309 |#1|))) (-400 (-923 |#1|)) (-1143)) 34 (|has| |#1| (-145)))) (-1449 (((-621 (-309 |#1|)) (-567 (-400 (-923 |#1|)))) 19)) (-4294 (((-309 |#1|) (-400 (-923 |#1|)) (-1143)) 32 (|has| |#1| (-145)))) (-2544 (((-309 |#1|) (-567 (-400 (-923 |#1|)))) 21)))
-(((-570 |#1|) (-10 -7 (-15 -3628 ((-567 (-400 (-923 |#1|))) (-567 (-400 (-923 |#1|))))) (-15 -1449 ((-621 (-309 |#1|)) (-567 (-400 (-923 |#1|))))) (-15 -2544 ((-309 |#1|) (-567 (-400 (-923 |#1|))))) (IF (|has| |#1| (-145)) (PROGN (-15 -3893 ((-3 (-309 |#1|) (-621 (-309 |#1|))) (-400 (-923 |#1|)) (-1143))) (-15 -4294 ((-309 |#1|) (-400 (-923 |#1|)) (-1143)))) |%noBranch|)) (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))) (T -570))
-((-4294 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1143)) (-4 *5 (-145)) (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))) (-5 *2 (-309 *5)) (-5 *1 (-570 *5)))) (-3893 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1143)) (-4 *5 (-145)) (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))) (-5 *2 (-3 (-309 *5) (-621 (-309 *5)))) (-5 *1 (-570 *5)))) (-2544 (*1 *2 *3) (-12 (-5 *3 (-567 (-400 (-923 *4)))) (-4 *4 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))) (-5 *2 (-309 *4)) (-5 *1 (-570 *4)))) (-1449 (*1 *2 *3) (-12 (-5 *3 (-567 (-400 (-923 *4)))) (-4 *4 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))) (-5 *2 (-621 (-309 *4))) (-5 *1 (-570 *4)))) (-3628 (*1 *2 *2) (-12 (-5 *2 (-567 (-400 (-923 *3)))) (-4 *3 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))) (-5 *1 (-570 *3)))))
-(-10 -7 (-15 -3628 ((-567 (-400 (-923 |#1|))) (-567 (-400 (-923 |#1|))))) (-15 -1449 ((-621 (-309 |#1|)) (-567 (-400 (-923 |#1|))))) (-15 -2544 ((-309 |#1|) (-567 (-400 (-923 |#1|))))) (IF (|has| |#1| (-145)) (PROGN (-15 -3893 ((-3 (-309 |#1|) (-621 (-309 |#1|))) (-400 (-923 |#1|)) (-1143))) (-15 -4294 ((-309 |#1|) (-400 (-923 |#1|)) (-1143)))) |%noBranch|))
-((-2485 (((-621 (-665 (-549))) (-621 (-549)) (-621 (-876 (-549)))) 46) (((-621 (-665 (-549))) (-621 (-549))) 47) (((-665 (-549)) (-621 (-549)) (-876 (-549))) 42)) (-3188 (((-747) (-621 (-549))) 40)))
-(((-571) (-10 -7 (-15 -3188 ((-747) (-621 (-549)))) (-15 -2485 ((-665 (-549)) (-621 (-549)) (-876 (-549)))) (-15 -2485 ((-621 (-665 (-549))) (-621 (-549)))) (-15 -2485 ((-621 (-665 (-549))) (-621 (-549)) (-621 (-876 (-549))))))) (T -571))
-((-2485 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-549))) (-5 *4 (-621 (-876 (-549)))) (-5 *2 (-621 (-665 (-549)))) (-5 *1 (-571)))) (-2485 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-621 (-665 (-549)))) (-5 *1 (-571)))) (-2485 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-549))) (-5 *4 (-876 (-549))) (-5 *2 (-665 (-549))) (-5 *1 (-571)))) (-3188 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-747)) (-5 *1 (-571)))))
-(-10 -7 (-15 -3188 ((-747) (-621 (-549)))) (-15 -2485 ((-665 (-549)) (-621 (-549)) (-876 (-549)))) (-15 -2485 ((-621 (-665 (-549))) (-621 (-549)))) (-15 -2485 ((-621 (-665 (-549))) (-621 (-549)) (-621 (-876 (-549))))))
-((-2782 (((-621 |#5|) |#5| (-112)) 73)) (-3918 (((-112) |#5| (-621 |#5|)) 30)))
-(((-572 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2782 ((-621 |#5|) |#5| (-112))) (-15 -3918 ((-112) |#5| (-621 |#5|)))) (-13 (-300) (-145)) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1076 |#1| |#2| |#3| |#4|)) (T -572))
-((-3918 (*1 *2 *3 *4) (-12 (-5 *4 (-621 *3)) (-4 *3 (-1076 *5 *6 *7 *8)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-572 *5 *6 *7 *8 *3)))) (-2782 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)) (-5 *2 (-621 *3)) (-5 *1 (-572 *5 *6 *7 *8 *3)) (-4 *3 (-1076 *5 *6 *7 *8)))))
-(-10 -7 (-15 -2782 ((-621 |#5|) |#5| (-112))) (-15 -3918 ((-112) |#5| (-621 |#5|))))
-((-3834 (((-112) $ $) NIL)) (-2203 (((-1148) $) 11)) (-2190 (((-1148) $) 9)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-573) (-13 (-1050) (-10 -8 (-15 -2190 ((-1148) $)) (-15 -2203 ((-1148) $))))) (T -573))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-573)))) (-2203 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-573)))))
-(-13 (-1050) (-10 -8 (-15 -2190 ((-1148) $)) (-15 -2203 ((-1148) $))))
-((-3834 (((-112) $ $) NIL (|has| (-142) (-1067)))) (-2969 (($ $) 34)) (-2946 (($ $) NIL)) (-1445 (($ $ (-142)) NIL) (($ $ (-139)) NIL)) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-2319 (((-112) $ $) 51)) (-2293 (((-112) $ $ (-549)) 46)) (-3628 (((-621 $) $ (-142)) 60) (((-621 $) $ (-139)) 61)) (-4142 (((-112) (-1 (-112) (-142) (-142)) $) NIL) (((-112) $) NIL (|has| (-142) (-823)))) (-4311 (($ (-1 (-112) (-142) (-142)) $) NIL (|has| $ (-6 -4338))) (($ $) NIL (-12 (|has| $ (-6 -4338)) (|has| (-142) (-823))))) (-3193 (($ (-1 (-112) (-142) (-142)) $) NIL) (($ $) NIL (|has| (-142) (-823)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 (((-142) $ (-549) (-142)) 45 (|has| $ (-6 -4338))) (((-142) $ (-1193 (-549)) (-142)) NIL (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-3590 (($ $ (-142)) 64) (($ $ (-139)) 65)) (-1585 (($ $) NIL (|has| $ (-6 -4338)))) (-3064 (($ $) NIL)) (-4126 (($ $ (-1193 (-549)) $) 44)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067))))) (-3812 (($ (-142) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067)))) (($ (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4337)))) (-2557 (((-142) (-1 (-142) (-142) (-142)) $ (-142) (-142)) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067)))) (((-142) (-1 (-142) (-142) (-142)) $ (-142)) NIL (|has| $ (-6 -4337))) (((-142) (-1 (-142) (-142) (-142)) $) NIL (|has| $ (-6 -4337)))) (-1879 (((-142) $ (-549) (-142)) NIL (|has| $ (-6 -4338)))) (-1809 (((-142) $ (-549)) NIL)) (-2349 (((-112) $ $) 72)) (-2883 (((-549) (-1 (-112) (-142)) $) NIL) (((-549) (-142) $) NIL (|has| (-142) (-1067))) (((-549) (-142) $ (-549)) 48 (|has| (-142) (-1067))) (((-549) $ $ (-549)) 47) (((-549) (-139) $ (-549)) 50)) (-2989 (((-621 (-142)) $) NIL (|has| $ (-6 -4337)))) (-3743 (($ (-747) (-142)) 9)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) 28 (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (|has| (-142) (-823)))) (-3890 (($ (-1 (-112) (-142) (-142)) $ $) NIL) (($ $ $) NIL (|has| (-142) (-823)))) (-1562 (((-621 (-142)) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-142) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067))))) (-1569 (((-549) $) 42 (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| (-142) (-823)))) (-2312 (((-112) $ $ (-142)) 73)) (-2475 (((-747) $ $ (-142)) 70)) (-1868 (($ (-1 (-142) (-142)) $) 33 (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-142) (-142)) $) NIL) (($ (-1 (-142) (-142) (-142)) $ $) NIL)) (-1555 (($ $) 37)) (-3408 (($ $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3603 (($ $ (-142)) 62) (($ $ (-139)) 63)) (-3851 (((-1125) $) 38 (|has| (-142) (-1067)))) (-2616 (($ (-142) $ (-549)) NIL) (($ $ $ (-549)) 23)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3990 (((-549) $) 69) (((-1087) $) NIL (|has| (-142) (-1067)))) (-3646 (((-142) $) NIL (|has| (-549) (-823)))) (-3779 (((-3 (-142) "failed") (-1 (-112) (-142)) $) NIL)) (-1642 (($ $ (-142)) NIL (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-142)))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067)))) (($ $ (-287 (-142))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067)))) (($ $ (-142) (-142)) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067)))) (($ $ (-621 (-142)) (-621 (-142))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) (-142) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067))))) (-2696 (((-621 (-142)) $) NIL)) (-3670 (((-112) $) 12)) (-3742 (($) 10)) (-3341 (((-142) $ (-549) (-142)) NIL) (((-142) $ (-549)) 52) (($ $ (-1193 (-549))) 21) (($ $ $) NIL)) (-2167 (($ $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-4000 (((-747) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4337))) (((-747) (-142) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067))))) (-2730 (($ $ $ (-549)) 66 (|has| $ (-6 -4338)))) (-2281 (($ $) 17)) (-2845 (((-525) $) NIL (|has| (-142) (-594 (-525))))) (-3854 (($ (-621 (-142))) NIL)) (-1952 (($ $ (-142)) NIL) (($ (-142) $) NIL) (($ $ $) 16) (($ (-621 $)) 67)) (-3846 (($ (-142)) NIL) (((-834) $) 27 (|has| (-142) (-593 (-834))))) (-3527 (((-112) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) NIL (|has| (-142) (-823)))) (-2425 (((-112) $ $) NIL (|has| (-142) (-823)))) (-2389 (((-112) $ $) 14 (|has| (-142) (-1067)))) (-2438 (((-112) $ $) NIL (|has| (-142) (-823)))) (-2412 (((-112) $ $) 15 (|has| (-142) (-823)))) (-3775 (((-747) $) 13 (|has| $ (-6 -4337)))))
-(((-574 |#1|) (-13 (-1111) (-10 -8 (-15 -3990 ((-549) $)))) (-549)) (T -574))
-((-3990 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-574 *3)) (-14 *3 *2))))
-(-13 (-1111) (-10 -8 (-15 -3990 ((-549) $))))
-((-2821 (((-2 (|:| |num| |#4|) (|:| |den| (-549))) |#4| |#2|) 23) (((-2 (|:| |num| |#4|) (|:| |den| (-549))) |#4| |#2| (-1061 |#4|)) 32)))
-(((-575 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2821 ((-2 (|:| |num| |#4|) (|:| |den| (-549))) |#4| |#2| (-1061 |#4|))) (-15 -2821 ((-2 (|:| |num| |#4|) (|:| |den| (-549))) |#4| |#2|))) (-769) (-823) (-541) (-920 |#3| |#1| |#2|)) (T -575))
-((-2821 (*1 *2 *3 *4) (-12 (-4 *5 (-769)) (-4 *4 (-823)) (-4 *6 (-541)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-549)))) (-5 *1 (-575 *5 *4 *6 *3)) (-4 *3 (-920 *6 *5 *4)))) (-2821 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1061 *3)) (-4 *3 (-920 *7 *6 *4)) (-4 *6 (-769)) (-4 *4 (-823)) (-4 *7 (-541)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-549)))) (-5 *1 (-575 *6 *4 *7 *3)))))
-(-10 -7 (-15 -2821 ((-2 (|:| |num| |#4|) (|:| |den| (-549))) |#4| |#2| (-1061 |#4|))) (-15 -2821 ((-2 (|:| |num| |#4|) (|:| |den| (-549))) |#4| |#2|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 63)) (-2272 (((-621 (-1048)) $) NIL)) (-3011 (((-1143) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-3896 (($ $ (-549)) 54) (($ $ (-549) (-549)) 55)) (-2212 (((-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $) 60)) (-4092 (($ $) 100)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3469 (((-834) (-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) (-997 (-816 (-549))) (-1143) |#1| (-400 (-549))) 224)) (-2826 (($ (-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|)))) 34)) (-1682 (($) NIL T CONST)) (-2070 (($ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-2871 (((-112) $) NIL)) (-2088 (((-549) $) 58) (((-549) $ (-549)) 59)) (-2675 (((-112) $) NIL)) (-2992 (($ $ (-892)) 76)) (-2876 (($ (-1 |#1| (-549)) $) 73)) (-2205 (((-112) $) 25)) (-2246 (($ |#1| (-549)) 22) (($ $ (-1048) (-549)) NIL) (($ $ (-621 (-1048)) (-621 (-549))) NIL)) (-2797 (($ (-1 |#1| |#1|) $) 67)) (-4006 (($ (-997 (-816 (-549))) (-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|)))) 13)) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-3851 (((-1125) $) NIL)) (-3893 (($ $) 150 (|has| |#1| (-38 (-400 (-549)))))) (-2865 (((-3 $ "failed") $ $ (-112)) 99)) (-2776 (($ $ $) 108)) (-3990 (((-1087) $) NIL)) (-2138 (((-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $) 15)) (-3922 (((-997 (-816 (-549))) $) 14)) (-2763 (($ $ (-549)) 45)) (-2042 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-2686 (((-1123 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-549)))))) (-3341 ((|#1| $ (-549)) 57) (($ $ $) NIL (|has| (-549) (-1079)))) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143)) NIL (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-549) |#1|)))) (($ $) 70 (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (-3701 (((-549) $) NIL)) (-1977 (($ $) 46)) (-3846 (((-834) $) NIL) (($ (-549)) 28) (($ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541))) (($ |#1|) 27 (|has| |#1| (-170)))) (-2152 ((|#1| $ (-549)) 56)) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) 37)) (-2597 ((|#1| $) NIL)) (-2880 (($ $) 186 (|has| |#1| (-38 (-400 (-549)))))) (-1580 (($ $) 158 (|has| |#1| (-38 (-400 (-549)))))) (-2249 (($ $) 190 (|has| |#1| (-38 (-400 (-549)))))) (-2189 (($ $) 163 (|has| |#1| (-38 (-400 (-549)))))) (-1734 (($ $) 189 (|has| |#1| (-38 (-400 (-549)))))) (-1777 (($ $) 162 (|has| |#1| (-38 (-400 (-549)))))) (-3415 (($ $ (-400 (-549))) 166 (|has| |#1| (-38 (-400 (-549)))))) (-4264 (($ $ |#1|) 146 (|has| |#1| (-38 (-400 (-549)))))) (-4025 (($ $) 192 (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) 149 (|has| |#1| (-38 (-400 (-549)))))) (-2323 (($ $) 191 (|has| |#1| (-38 (-400 (-549)))))) (-2807 (($ $) 164 (|has| |#1| (-38 (-400 (-549)))))) (-1364 (($ $) 187 (|has| |#1| (-38 (-400 (-549)))))) (-2601 (($ $) 160 (|has| |#1| (-38 (-400 (-549)))))) (-3247 (($ $) 188 (|has| |#1| (-38 (-400 (-549)))))) (-3808 (($ $) 161 (|has| |#1| (-38 (-400 (-549)))))) (-4165 (($ $) 197 (|has| |#1| (-38 (-400 (-549)))))) (-2896 (($ $) 173 (|has| |#1| (-38 (-400 (-549)))))) (-2066 (($ $) 194 (|has| |#1| (-38 (-400 (-549)))))) (-2571 (($ $) 168 (|has| |#1| (-38 (-400 (-549)))))) (-1666 (($ $) 201 (|has| |#1| (-38 (-400 (-549)))))) (-1771 (($ $) 177 (|has| |#1| (-38 (-400 (-549)))))) (-4242 (($ $) 203 (|has| |#1| (-38 (-400 (-549)))))) (-2179 (($ $) 179 (|has| |#1| (-38 (-400 (-549)))))) (-2115 (($ $) 199 (|has| |#1| (-38 (-400 (-549)))))) (-1515 (($ $) 175 (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) 196 (|has| |#1| (-38 (-400 (-549)))))) (-2800 (($ $) 171 (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2661 ((|#1| $ (-549)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-549)))) (|has| |#1| (-15 -3846 (|#1| (-1143))))))) (-3276 (($) 29 T CONST)) (-3287 (($) 38 T CONST)) (-1702 (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143)) NIL (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-549) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (-2389 (((-112) $ $) 65)) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2500 (($ $) 84) (($ $ $) 64)) (-2486 (($ $ $) 81)) (** (($ $ (-892)) NIL) (($ $ (-747)) 103)) (* (($ (-892) $) 89) (($ (-747) $) 87) (($ (-549) $) 85) (($ $ $) 95) (($ $ |#1|) NIL) (($ |#1| $) 115) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
-(((-576 |#1|) (-13 (-1204 |#1| (-549)) (-10 -8 (-15 -4006 ($ (-997 (-816 (-549))) (-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|))))) (-15 -3922 ((-997 (-816 (-549))) $)) (-15 -2138 ((-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $)) (-15 -2826 ($ (-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|))))) (-15 -2205 ((-112) $)) (-15 -2876 ($ (-1 |#1| (-549)) $)) (-15 -2865 ((-3 $ "failed") $ $ (-112))) (-15 -4092 ($ $)) (-15 -2776 ($ $ $)) (-15 -3469 ((-834) (-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) (-997 (-816 (-549))) (-1143) |#1| (-400 (-549)))) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -3893 ($ $)) (-15 -4264 ($ $ |#1|)) (-15 -3415 ($ $ (-400 (-549)))) (-15 -1673 ($ $)) (-15 -4025 ($ $)) (-15 -2189 ($ $)) (-15 -3808 ($ $)) (-15 -1580 ($ $)) (-15 -2601 ($ $)) (-15 -1777 ($ $)) (-15 -2807 ($ $)) (-15 -2571 ($ $)) (-15 -2800 ($ $)) (-15 -2896 ($ $)) (-15 -1515 ($ $)) (-15 -1771 ($ $)) (-15 -2179 ($ $)) (-15 -2249 ($ $)) (-15 -3247 ($ $)) (-15 -2880 ($ $)) (-15 -1364 ($ $)) (-15 -1734 ($ $)) (-15 -2323 ($ $)) (-15 -2066 ($ $)) (-15 -1483 ($ $)) (-15 -4165 ($ $)) (-15 -2115 ($ $)) (-15 -1666 ($ $)) (-15 -4242 ($ $))) |%noBranch|))) (-1018)) (T -576))
-((-2205 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-576 *3)) (-4 *3 (-1018)))) (-4006 (*1 *1 *2 *3) (-12 (-5 *2 (-997 (-816 (-549)))) (-5 *3 (-1123 (-2 (|:| |k| (-549)) (|:| |c| *4)))) (-4 *4 (-1018)) (-5 *1 (-576 *4)))) (-3922 (*1 *2 *1) (-12 (-5 *2 (-997 (-816 (-549)))) (-5 *1 (-576 *3)) (-4 *3 (-1018)))) (-2138 (*1 *2 *1) (-12 (-5 *2 (-1123 (-2 (|:| |k| (-549)) (|:| |c| *3)))) (-5 *1 (-576 *3)) (-4 *3 (-1018)))) (-2826 (*1 *1 *2) (-12 (-5 *2 (-1123 (-2 (|:| |k| (-549)) (|:| |c| *3)))) (-4 *3 (-1018)) (-5 *1 (-576 *3)))) (-2876 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-549))) (-4 *3 (-1018)) (-5 *1 (-576 *3)))) (-2865 (*1 *1 *1 *1 *2) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-576 *3)) (-4 *3 (-1018)))) (-4092 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-1018)))) (-2776 (*1 *1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-1018)))) (-3469 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-1123 (-2 (|:| |k| (-549)) (|:| |c| *6)))) (-5 *4 (-997 (-816 (-549)))) (-5 *5 (-1143)) (-5 *7 (-400 (-549))) (-4 *6 (-1018)) (-5 *2 (-834)) (-5 *1 (-576 *6)))) (-3893 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-4264 (*1 *1 *1 *2) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-3415 (*1 *1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-576 *3)) (-4 *3 (-38 *2)) (-4 *3 (-1018)))) (-1673 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-4025 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2189 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-3808 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-1580 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2601 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-1777 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2807 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2571 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2800 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2896 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-1515 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-1771 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2179 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2249 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-3247 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2880 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-1364 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-1734 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2323 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2066 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-1483 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-4165 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2115 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-1666 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-4242 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(-13 (-1204 |#1| (-549)) (-10 -8 (-15 -4006 ($ (-997 (-816 (-549))) (-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|))))) (-15 -3922 ((-997 (-816 (-549))) $)) (-15 -2138 ((-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $)) (-15 -2826 ($ (-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|))))) (-15 -2205 ((-112) $)) (-15 -2876 ($ (-1 |#1| (-549)) $)) (-15 -2865 ((-3 $ "failed") $ $ (-112))) (-15 -4092 ($ $)) (-15 -2776 ($ $ $)) (-15 -3469 ((-834) (-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) (-997 (-816 (-549))) (-1143) |#1| (-400 (-549)))) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -3893 ($ $)) (-15 -4264 ($ $ |#1|)) (-15 -3415 ($ $ (-400 (-549)))) (-15 -1673 ($ $)) (-15 -4025 ($ $)) (-15 -2189 ($ $)) (-15 -3808 ($ $)) (-15 -1580 ($ $)) (-15 -2601 ($ $)) (-15 -1777 ($ $)) (-15 -2807 ($ $)) (-15 -2571 ($ $)) (-15 -2800 ($ $)) (-15 -2896 ($ $)) (-15 -1515 ($ $)) (-15 -1771 ($ $)) (-15 -2179 ($ $)) (-15 -2249 ($ $)) (-15 -3247 ($ $)) (-15 -2880 ($ $)) (-15 -1364 ($ $)) (-15 -1734 ($ $)) (-15 -2323 ($ $)) (-15 -2066 ($ $)) (-15 -1483 ($ $)) (-15 -4165 ($ $)) (-15 -2115 ($ $)) (-15 -1666 ($ $)) (-15 -4242 ($ $))) |%noBranch|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-2826 (($ (-1123 |#1|)) 9)) (-1682 (($) NIL T CONST)) (-2114 (((-3 $ "failed") $) 42)) (-2871 (((-112) $) 52)) (-2088 (((-747) $) 55) (((-747) $ (-747)) 54)) (-2675 (((-112) $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2042 (((-3 $ "failed") $ $) 44 (|has| |#1| (-541)))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL (|has| |#1| (-541)))) (-4141 (((-1123 |#1|) $) 23)) (-2082 (((-747)) 51)) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3276 (($) 10 T CONST)) (-3287 (($) 14 T CONST)) (-2389 (((-112) $ $) 22)) (-2500 (($ $) 30) (($ $ $) 16)) (-2486 (($ $ $) 25)) (** (($ $ (-892)) NIL) (($ $ (-747)) 49)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 34) (($ $ $) 28) (($ |#1| $) 37) (($ $ |#1|) 38) (($ $ (-549)) 36)))
-(((-577 |#1|) (-13 (-1018) (-10 -8 (-15 -4141 ((-1123 |#1|) $)) (-15 -2826 ($ (-1123 |#1|))) (-15 -2871 ((-112) $)) (-15 -2088 ((-747) $)) (-15 -2088 ((-747) $ (-747))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-549))) (IF (|has| |#1| (-541)) (-6 (-541)) |%noBranch|))) (-1018)) (T -577))
-((-4141 (*1 *2 *1) (-12 (-5 *2 (-1123 *3)) (-5 *1 (-577 *3)) (-4 *3 (-1018)))) (-2826 (*1 *1 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-577 *3)))) (-2871 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-577 *3)) (-4 *3 (-1018)))) (-2088 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-577 *3)) (-4 *3 (-1018)))) (-2088 (*1 *2 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-577 *3)) (-4 *3 (-1018)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-577 *2)) (-4 *2 (-1018)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-577 *2)) (-4 *2 (-1018)))) (* (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-577 *3)) (-4 *3 (-1018)))))
-(-13 (-1018) (-10 -8 (-15 -4141 ((-1123 |#1|) $)) (-15 -2826 ($ (-1123 |#1|))) (-15 -2871 ((-112) $)) (-15 -2088 ((-747) $)) (-15 -2088 ((-747) $ (-747))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-549))) (IF (|has| |#1| (-541)) (-6 (-541)) |%noBranch|)))
-((-2797 (((-581 |#2|) (-1 |#2| |#1|) (-581 |#1|)) 15)))
-(((-578 |#1| |#2|) (-10 -7 (-15 -2797 ((-581 |#2|) (-1 |#2| |#1|) (-581 |#1|)))) (-1180) (-1180)) (T -578))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-581 *5)) (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-581 *6)) (-5 *1 (-578 *5 *6)))))
-(-10 -7 (-15 -2797 ((-581 |#2|) (-1 |#2| |#1|) (-581 |#1|))))
-((-2797 (((-1123 |#3|) (-1 |#3| |#1| |#2|) (-581 |#1|) (-1123 |#2|)) 20) (((-1123 |#3|) (-1 |#3| |#1| |#2|) (-1123 |#1|) (-581 |#2|)) 19) (((-581 |#3|) (-1 |#3| |#1| |#2|) (-581 |#1|) (-581 |#2|)) 18)))
-(((-579 |#1| |#2| |#3|) (-10 -7 (-15 -2797 ((-581 |#3|) (-1 |#3| |#1| |#2|) (-581 |#1|) (-581 |#2|))) (-15 -2797 ((-1123 |#3|) (-1 |#3| |#1| |#2|) (-1123 |#1|) (-581 |#2|))) (-15 -2797 ((-1123 |#3|) (-1 |#3| |#1| |#2|) (-581 |#1|) (-1123 |#2|)))) (-1180) (-1180) (-1180)) (T -579))
-((-2797 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-581 *6)) (-5 *5 (-1123 *7)) (-4 *6 (-1180)) (-4 *7 (-1180)) (-4 *8 (-1180)) (-5 *2 (-1123 *8)) (-5 *1 (-579 *6 *7 *8)))) (-2797 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1123 *6)) (-5 *5 (-581 *7)) (-4 *6 (-1180)) (-4 *7 (-1180)) (-4 *8 (-1180)) (-5 *2 (-1123 *8)) (-5 *1 (-579 *6 *7 *8)))) (-2797 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-581 *6)) (-5 *5 (-581 *7)) (-4 *6 (-1180)) (-4 *7 (-1180)) (-4 *8 (-1180)) (-5 *2 (-581 *8)) (-5 *1 (-579 *6 *7 *8)))))
-(-10 -7 (-15 -2797 ((-581 |#3|) (-1 |#3| |#1| |#2|) (-581 |#1|) (-581 |#2|))) (-15 -2797 ((-1123 |#3|) (-1 |#3| |#1| |#2|) (-1123 |#1|) (-581 |#2|))) (-15 -2797 ((-1123 |#3|) (-1 |#3| |#1| |#2|) (-581 |#1|) (-1123 |#2|))))
-((-2110 ((|#3| |#3| (-621 (-592 |#3|)) (-621 (-1143))) 55)) (-3010 (((-167 |#2|) |#3|) 117)) (-3255 ((|#3| (-167 |#2|)) 44)) (-3108 ((|#2| |#3|) 19)) (-2331 ((|#3| |#2|) 33)))
-(((-580 |#1| |#2| |#3|) (-10 -7 (-15 -3255 (|#3| (-167 |#2|))) (-15 -3108 (|#2| |#3|)) (-15 -2331 (|#3| |#2|)) (-15 -3010 ((-167 |#2|) |#3|)) (-15 -2110 (|#3| |#3| (-621 (-592 |#3|)) (-621 (-1143))))) (-13 (-541) (-823)) (-13 (-423 |#1|) (-973) (-1165)) (-13 (-423 (-167 |#1|)) (-973) (-1165))) (T -580))
-((-2110 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-621 (-592 *2))) (-5 *4 (-621 (-1143))) (-4 *2 (-13 (-423 (-167 *5)) (-973) (-1165))) (-4 *5 (-13 (-541) (-823))) (-5 *1 (-580 *5 *6 *2)) (-4 *6 (-13 (-423 *5) (-973) (-1165))))) (-3010 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823))) (-5 *2 (-167 *5)) (-5 *1 (-580 *4 *5 *3)) (-4 *5 (-13 (-423 *4) (-973) (-1165))) (-4 *3 (-13 (-423 (-167 *4)) (-973) (-1165))))) (-2331 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823))) (-4 *2 (-13 (-423 (-167 *4)) (-973) (-1165))) (-5 *1 (-580 *4 *3 *2)) (-4 *3 (-13 (-423 *4) (-973) (-1165))))) (-3108 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823))) (-4 *2 (-13 (-423 *4) (-973) (-1165))) (-5 *1 (-580 *4 *2 *3)) (-4 *3 (-13 (-423 (-167 *4)) (-973) (-1165))))) (-3255 (*1 *2 *3) (-12 (-5 *3 (-167 *5)) (-4 *5 (-13 (-423 *4) (-973) (-1165))) (-4 *4 (-13 (-541) (-823))) (-4 *2 (-13 (-423 (-167 *4)) (-973) (-1165))) (-5 *1 (-580 *4 *5 *2)))))
-(-10 -7 (-15 -3255 (|#3| (-167 |#2|))) (-15 -3108 (|#2| |#3|)) (-15 -2331 (|#3| |#2|)) (-15 -3010 ((-167 |#2|) |#3|)) (-15 -2110 (|#3| |#3| (-621 (-592 |#3|)) (-621 (-1143)))))
-((-1489 (($ (-1 (-112) |#1|) $) 17)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1412 (($ (-1 |#1| |#1|) |#1|) 9)) (-1460 (($ (-1 (-112) |#1|) $) 13)) (-1474 (($ (-1 (-112) |#1|) $) 15)) (-3854 (((-1123 |#1|) $) 18)) (-3846 (((-834) $) NIL)))
-(((-581 |#1|) (-13 (-593 (-834)) (-10 -8 (-15 -2797 ($ (-1 |#1| |#1|) $)) (-15 -1460 ($ (-1 (-112) |#1|) $)) (-15 -1474 ($ (-1 (-112) |#1|) $)) (-15 -1489 ($ (-1 (-112) |#1|) $)) (-15 -1412 ($ (-1 |#1| |#1|) |#1|)) (-15 -3854 ((-1123 |#1|) $)))) (-1180)) (T -581))
-((-2797 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1180)) (-5 *1 (-581 *3)))) (-1460 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1180)) (-5 *1 (-581 *3)))) (-1474 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1180)) (-5 *1 (-581 *3)))) (-1489 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1180)) (-5 *1 (-581 *3)))) (-1412 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1180)) (-5 *1 (-581 *3)))) (-3854 (*1 *2 *1) (-12 (-5 *2 (-1123 *3)) (-5 *1 (-581 *3)) (-4 *3 (-1180)))))
-(-13 (-593 (-834)) (-10 -8 (-15 -2797 ($ (-1 |#1| |#1|) $)) (-15 -1460 ($ (-1 (-112) |#1|) $)) (-15 -1474 ($ (-1 (-112) |#1|) $)) (-15 -1489 ($ (-1 (-112) |#1|) $)) (-15 -1412 ($ (-1 |#1| |#1|) |#1|)) (-15 -3854 ((-1123 |#1|) $))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3769 (($ (-747)) NIL (|has| |#1| (-23)))) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-4142 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-823)))) (-4311 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4338))) (($ $) NIL (-12 (|has| $ (-6 -4338)) (|has| |#1| (-823))))) (-3193 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-823)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) NIL (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-1585 (($ $) NIL (|has| $ (-6 -4338)))) (-3064 (($ $) NIL)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-1879 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) NIL)) (-2883 (((-549) (-1 (-112) |#1|) $) NIL) (((-549) |#1| $) NIL (|has| |#1| (-1067))) (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1067)))) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-4050 (((-665 |#1|) $ $) NIL (|has| |#1| (-1018)))) (-3743 (($ (-747) |#1|) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) NIL (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3890 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-823)))) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3359 ((|#1| $) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1018))))) (-1508 (((-112) $ (-747)) NIL)) (-4210 ((|#1| $) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1018))))) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-2616 (($ |#1| $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-3646 ((|#1| $) NIL (|has| (-549) (-823)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1642 (($ $ |#1|) NIL (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#1| $ (-549) |#1|) NIL) ((|#1| $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-1706 ((|#1| $ $) NIL (|has| |#1| (-1018)))) (-2167 (($ $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-2168 (($ $ $) NIL (|has| |#1| (-1018)))) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2730 (($ $ $ (-549)) NIL (|has| $ (-6 -4338)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) NIL)) (-1952 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2500 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-2486 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-549) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-703))) (($ $ |#1|) NIL (|has| |#1| (-703)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-582 |#1| |#2|) (-1224 |#1|) (-1180) (-549)) (T -582))
-NIL
-(-1224 |#1|)
-((-1535 (((-1231) $ |#2| |#2|) 36)) (-4031 ((|#2| $) 23)) (-1569 ((|#2| $) 21)) (-1868 (($ (-1 |#3| |#3|) $) 32)) (-2797 (($ (-1 |#3| |#3|) $) 30)) (-3646 ((|#3| $) 26)) (-1642 (($ $ |#3|) 33)) (-2265 (((-112) |#3| $) 17)) (-2696 (((-621 |#3|) $) 15)) (-3341 ((|#3| $ |#2| |#3|) 12) ((|#3| $ |#2|) NIL)))
-(((-583 |#1| |#2| |#3|) (-10 -8 (-15 -1535 ((-1231) |#1| |#2| |#2|)) (-15 -1642 (|#1| |#1| |#3|)) (-15 -3646 (|#3| |#1|)) (-15 -4031 (|#2| |#1|)) (-15 -1569 (|#2| |#1|)) (-15 -2265 ((-112) |#3| |#1|)) (-15 -2696 ((-621 |#3|) |#1|)) (-15 -3341 (|#3| |#1| |#2|)) (-15 -3341 (|#3| |#1| |#2| |#3|)) (-15 -1868 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2797 (|#1| (-1 |#3| |#3|) |#1|))) (-584 |#2| |#3|) (-1067) (-1180)) (T -583))
-NIL
-(-10 -8 (-15 -1535 ((-1231) |#1| |#2| |#2|)) (-15 -1642 (|#1| |#1| |#3|)) (-15 -3646 (|#3| |#1|)) (-15 -4031 (|#2| |#1|)) (-15 -1569 (|#2| |#1|)) (-15 -2265 ((-112) |#3| |#1|)) (-15 -2696 ((-621 |#3|) |#1|)) (-15 -3341 (|#3| |#1| |#2|)) (-15 -3341 (|#3| |#1| |#2| |#3|)) (-15 -1868 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2797 (|#1| (-1 |#3| |#3|) |#1|)))
-((-3834 (((-112) $ $) 19 (|has| |#2| (-1067)))) (-1535 (((-1231) $ |#1| |#1|) 40 (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) 8)) (-2254 ((|#2| $ |#1| |#2|) 52 (|has| $ (-6 -4338)))) (-1682 (($) 7 T CONST)) (-1879 ((|#2| $ |#1| |#2|) 53 (|has| $ (-6 -4338)))) (-1809 ((|#2| $ |#1|) 51)) (-2989 (((-621 |#2|) $) 30 (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) 9)) (-4031 ((|#1| $) 43 (|has| |#1| (-823)))) (-1562 (((-621 |#2|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#2| $) 27 (-12 (|has| |#2| (-1067)) (|has| $ (-6 -4337))))) (-1569 ((|#1| $) 44 (|has| |#1| (-823)))) (-1868 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#2| |#2|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (|has| |#2| (-1067)))) (-3303 (((-621 |#1|) $) 46)) (-3761 (((-112) |#1| $) 47)) (-3990 (((-1087) $) 21 (|has| |#2| (-1067)))) (-3646 ((|#2| $) 42 (|has| |#1| (-823)))) (-1642 (($ $ |#2|) 41 (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#2|))) 26 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-287 |#2|)) 25 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 |#2|) (-621 |#2|)) 23 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))) (-4144 (((-112) $ $) 14)) (-2265 (((-112) |#2| $) 45 (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-2696 (((-621 |#2|) $) 48)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#2| $ |#1| |#2|) 50) ((|#2| $ |#1|) 49)) (-4000 (((-747) (-1 (-112) |#2|) $) 31 (|has| $ (-6 -4337))) (((-747) |#2| $) 28 (-12 (|has| |#2| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-3846 (((-834) $) 18 (|has| |#2| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#2| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-584 |#1| |#2|) (-138) (-1067) (-1180)) (T -584))
-((-2696 (*1 *2 *1) (-12 (-4 *1 (-584 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1180)) (-5 *2 (-621 *4)))) (-3761 (*1 *2 *3 *1) (-12 (-4 *1 (-584 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1180)) (-5 *2 (-112)))) (-3303 (*1 *2 *1) (-12 (-4 *1 (-584 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1180)) (-5 *2 (-621 *3)))) (-2265 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-584 *4 *3)) (-4 *4 (-1067)) (-4 *3 (-1180)) (-4 *3 (-1067)) (-5 *2 (-112)))) (-1569 (*1 *2 *1) (-12 (-4 *1 (-584 *2 *3)) (-4 *3 (-1180)) (-4 *2 (-1067)) (-4 *2 (-823)))) (-4031 (*1 *2 *1) (-12 (-4 *1 (-584 *2 *3)) (-4 *3 (-1180)) (-4 *2 (-1067)) (-4 *2 (-823)))) (-3646 (*1 *2 *1) (-12 (-4 *1 (-584 *3 *2)) (-4 *3 (-1067)) (-4 *3 (-823)) (-4 *2 (-1180)))) (-1642 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-584 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1180)))) (-1535 (*1 *2 *1 *3 *3) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-584 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1180)) (-5 *2 (-1231)))))
-(-13 (-481 |t#2|) (-281 |t#1| |t#2|) (-10 -8 (-15 -2696 ((-621 |t#2|) $)) (-15 -3761 ((-112) |t#1| $)) (-15 -3303 ((-621 |t#1|) $)) (IF (|has| |t#2| (-1067)) (IF (|has| $ (-6 -4337)) (-15 -2265 ((-112) |t#2| $)) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-823)) (PROGN (-15 -1569 (|t#1| $)) (-15 -4031 (|t#1| $)) (-15 -3646 (|t#2| $))) |%noBranch|) (IF (|has| $ (-6 -4338)) (PROGN (-15 -1642 ($ $ |t#2|)) (-15 -1535 ((-1231) $ |t#1| |t#1|))) |%noBranch|)))
-(((-34) . T) ((-101) |has| |#2| (-1067)) ((-593 (-834)) -1536 (|has| |#2| (-1067)) (|has| |#2| (-593 (-834)))) ((-279 |#1| |#2|) . T) ((-281 |#1| |#2|) . T) ((-302 |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) ((-481 |#2|) . T) ((-505 |#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) ((-1067) |has| |#2| (-1067)) ((-1180) . T))
-((-3846 (((-834) $) 19) (((-129) $) 14) (($ (-129)) 13)))
-(((-585) (-13 (-593 (-834)) (-593 (-129)) (-10 -8 (-15 -3846 ($ (-129)))))) (T -585))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-129)) (-5 *1 (-585)))))
-(-13 (-593 (-834)) (-593 (-129)) (-10 -8 (-15 -3846 ($ (-129)))))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL) (((-1179) $) 14) (($ (-621 (-1179))) 13)) (-3328 (((-621 (-1179)) $) 10)) (-2389 (((-112) $ $) NIL)))
-(((-586) (-13 (-1050) (-593 (-1179)) (-10 -8 (-15 -3846 ($ (-621 (-1179)))) (-15 -3328 ((-621 (-1179)) $))))) (T -586))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-621 (-1179))) (-5 *1 (-586)))) (-3328 (*1 *2 *1) (-12 (-5 *2 (-621 (-1179))) (-5 *1 (-586)))))
-(-13 (-1050) (-593 (-1179)) (-10 -8 (-15 -3846 ($ (-621 (-1179)))) (-15 -3328 ((-621 (-1179)) $))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2207 (((-3 $ "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3277 (((-1226 (-665 |#1|))) NIL (|has| |#2| (-410 |#1|))) (((-1226 (-665 |#1|)) (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-3945 (((-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-1682 (($) NIL T CONST)) (-3219 (((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-3550 (((-3 $ "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-4212 (((-665 |#1|)) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-2840 ((|#1| $) NIL (|has| |#2| (-360 |#1|)))) (-3841 (((-665 |#1|) $) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) $ (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-3038 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-2478 (((-1139 (-923 |#1|))) NIL (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-356))))) (-3117 (($ $ (-892)) NIL)) (-2182 ((|#1| $) NIL (|has| |#2| (-360 |#1|)))) (-2289 (((-1139 |#1|) $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-3076 ((|#1|) NIL (|has| |#2| (-410 |#1|))) ((|#1| (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-3266 (((-1139 |#1|) $) NIL (|has| |#2| (-360 |#1|)))) (-1368 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3492 (($ (-1226 |#1|)) NIL (|has| |#2| (-410 |#1|))) (($ (-1226 |#1|) (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-2114 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-3123 (((-892)) NIL (|has| |#2| (-360 |#1|)))) (-3601 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-2943 (($ $ (-892)) NIL)) (-3975 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-2291 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-2647 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-1742 (((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-4101 (((-3 $ "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-2870 (((-665 |#1|)) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-2654 ((|#1| $) NIL (|has| |#2| (-360 |#1|)))) (-2303 (((-665 |#1|) $) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) $ (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-1919 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-2014 (((-1139 (-923 |#1|))) NIL (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-356))))) (-2884 (($ $ (-892)) NIL)) (-2248 ((|#1| $) NIL (|has| |#2| (-360 |#1|)))) (-1378 (((-1139 |#1|) $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-2920 ((|#1|) NIL (|has| |#2| (-410 |#1|))) ((|#1| (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-2443 (((-1139 |#1|) $) NIL (|has| |#2| (-360 |#1|)))) (-3623 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3851 (((-1125) $) NIL)) (-3260 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-2754 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-2055 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3990 (((-1087) $) NIL)) (-2392 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3341 ((|#1| $ (-549)) NIL (|has| |#2| (-410 |#1|)))) (-4263 (((-665 |#1|) (-1226 $)) NIL (|has| |#2| (-410 |#1|))) (((-1226 |#1|) $) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) (-1226 $) (-1226 $)) NIL (|has| |#2| (-360 |#1|))) (((-1226 |#1|) $ (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-2845 (($ (-1226 |#1|)) NIL (|has| |#2| (-410 |#1|))) (((-1226 |#1|) $) NIL (|has| |#2| (-410 |#1|)))) (-4111 (((-621 (-923 |#1|))) NIL (|has| |#2| (-410 |#1|))) (((-621 (-923 |#1|)) (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-3293 (($ $ $) NIL)) (-1942 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3846 (((-834) $) NIL) ((|#2| $) 21) (($ |#2|) 22)) (-1949 (((-1226 $)) NIL (|has| |#2| (-410 |#1|)))) (-4315 (((-621 (-1226 |#1|))) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-4272 (($ $ $ $) NIL)) (-3430 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3596 (($ (-665 |#1|) $) NIL (|has| |#2| (-410 |#1|)))) (-2174 (($ $ $) NIL)) (-2864 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-4257 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-1898 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3276 (($) NIL T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) 24)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 20) (($ $ |#1|) 19) (($ |#1| $) NIL)))
-(((-587 |#1| |#2|) (-13 (-721 |#1|) (-593 |#2|) (-10 -8 (-15 -3846 ($ |#2|)) (IF (|has| |#2| (-410 |#1|)) (-6 (-410 |#1|)) |%noBranch|) (IF (|has| |#2| (-360 |#1|)) (-6 (-360 |#1|)) |%noBranch|))) (-170) (-721 |#1|)) (T -587))
-((-3846 (*1 *1 *2) (-12 (-4 *3 (-170)) (-5 *1 (-587 *3 *2)) (-4 *2 (-721 *3)))))
-(-13 (-721 |#1|) (-593 |#2|) (-10 -8 (-15 -3846 ($ |#2|)) (IF (|has| |#2| (-410 |#1|)) (-6 (-410 |#1|)) |%noBranch|) (IF (|has| |#2| (-360 |#1|)) (-6 (-360 |#1|)) |%noBranch|)))
-((-3834 (((-112) $ $) NIL)) (-3113 (((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) $ (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) 33)) (-3733 (($ (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) NIL) (($) NIL)) (-1535 (((-1231) $ (-1125) (-1125)) NIL (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 ((|#1| $ (-1125) |#1|) 43)) (-1717 (($ (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337)))) (-3490 (((-3 |#1| "failed") (-1125) $) 46)) (-1682 (($) NIL T CONST)) (-2060 (($ $ (-1125)) 24)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067))))) (-2129 (((-3 |#1| "failed") (-1125) $) 47) (($ (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337))) (($ (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) $) NIL (|has| $ (-6 -4337)))) (-3812 (($ (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337))) (($ (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067))))) (-2557 (((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $ (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $ (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067))))) (-3001 (((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) $) 32)) (-1879 ((|#1| $ (-1125) |#1|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-1125)) NIL)) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337))) (((-621 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337)))) (-4114 (($ $) 48)) (-1359 (($ (-381)) 22) (($ (-381) (-1125)) 21)) (-2481 (((-381) $) 34)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-1125) $) NIL (|has| (-1125) (-823)))) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337))) (((-621 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) (((-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067))))) (-1569 (((-1125) $) NIL (|has| (-1125) (-823)))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338))) (($ (-1 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL)) (-3449 (((-621 (-1125)) $) 39)) (-2427 (((-112) (-1125) $) NIL)) (-2646 (((-1125) $) 35)) (-3504 (((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) $) NIL)) (-2751 (($ (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) $) NIL)) (-3303 (((-621 (-1125)) $) NIL)) (-3761 (((-112) (-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3646 ((|#1| $) NIL (|has| (-1125) (-823)))) (-3779 (((-3 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) "failed") (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL)) (-1642 (($ $ |#1|) NIL (|has| $ (-6 -4338)))) (-3325 (((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) $) NIL)) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) NIL (-12 (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067)))) (($ $ (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) NIL (-12 (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067)))) (($ $ (-287 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) NIL (-12 (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067)))) (($ $ (-621 (-287 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))))) NIL (-12 (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) 37)) (-3341 ((|#1| $ (-1125) |#1|) NIL) ((|#1| $ (-1125)) 42)) (-2898 (($ (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) NIL) (($) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) (((-747) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067)))) (((-747) (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-594 (-525))))) (-3854 (($ (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) NIL)) (-3846 (((-834) $) 20)) (-3578 (($ $) 25)) (-3624 (($ (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) NIL)) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 19)) (-3775 (((-747) $) 41 (|has| $ (-6 -4337)))))
-(((-588 |#1|) (-13 (-357 (-381) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) (-1156 (-1125) |#1|) (-10 -8 (-6 -4337) (-15 -4114 ($ $)))) (-1067)) (T -588))
-((-4114 (*1 *1 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1067)))))
-(-13 (-357 (-381) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) (-1156 (-1125) |#1|) (-10 -8 (-6 -4337) (-15 -4114 ($ $))))
-((-2090 (((-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) $) 15)) (-3449 (((-621 |#2|) $) 19)) (-2427 (((-112) |#2| $) 12)))
-(((-589 |#1| |#2| |#3|) (-10 -8 (-15 -3449 ((-621 |#2|) |#1|)) (-15 -2427 ((-112) |#2| |#1|)) (-15 -2090 ((-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) |#1|))) (-590 |#2| |#3|) (-1067) (-1067)) (T -589))
-NIL
-(-10 -8 (-15 -3449 ((-621 |#2|) |#1|)) (-15 -2427 ((-112) |#2| |#1|)) (-15 -2090 ((-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) |#1|)))
-((-3834 (((-112) $ $) 19 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (-1584 (((-112) $ (-747)) 8)) (-1717 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 45 (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 55 (|has| $ (-6 -4337)))) (-3490 (((-3 |#2| "failed") |#1| $) 61)) (-1682 (($) 7 T CONST)) (-3676 (($ $) 58 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337))))) (-2129 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 47 (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 46 (|has| $ (-6 -4337))) (((-3 |#2| "failed") |#1| $) 62)) (-3812 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 57 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 54 (|has| $ (-6 -4337)))) (-2557 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 56 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337)))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 53 (|has| $ (-6 -4337))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 52 (|has| $ (-6 -4337)))) (-2989 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 30 (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) 9)) (-1562 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 27 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (-3449 (((-621 |#1|) $) 63)) (-2427 (((-112) |#1| $) 64)) (-3504 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 39)) (-2751 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 40)) (-3990 (((-1087) $) 21 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (-3779 (((-3 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) "failed") (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 51)) (-3325 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 41)) (-1780 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))))) 26 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 25 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 24 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 23 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-2898 (($) 49) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 48)) (-4000 (((-747) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 31 (|has| $ (-6 -4337))) (((-747) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 28 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-2845 (((-525) $) 59 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-594 (-525))))) (-3854 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 50)) (-3846 (((-834) $) 18 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-593 (-834))))) (-3624 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 42)) (-3527 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-590 |#1| |#2|) (-138) (-1067) (-1067)) (T -590))
-((-2427 (*1 *2 *3 *1) (-12 (-4 *1 (-590 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-5 *2 (-112)))) (-3449 (*1 *2 *1) (-12 (-4 *1 (-590 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-5 *2 (-621 *3)))) (-2129 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-590 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1067)))) (-3490 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-590 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1067)))))
-(-13 (-223 (-2 (|:| -3337 |t#1|) (|:| -1793 |t#2|))) (-10 -8 (-15 -2427 ((-112) |t#1| $)) (-15 -3449 ((-621 |t#1|) $)) (-15 -2129 ((-3 |t#2| "failed") |t#1| $)) (-15 -3490 ((-3 |t#2| "failed") |t#1| $))))
-(((-34) . T) ((-106 #0=(-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T) ((-101) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) ((-593 (-834)) -1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-593 (-834)))) ((-149 #0#) . T) ((-594 (-525)) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-594 (-525))) ((-223 #0#) . T) ((-229 #0#) . T) ((-302 #0#) -12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))) ((-481 #0#) . T) ((-505 #0# #0#) -12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))) ((-1067) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) ((-1180) . T))
-((-3351 (((-592 |#2|) |#1|) 15)) (-4108 (((-3 |#1| "failed") (-592 |#2|)) 19)))
-(((-591 |#1| |#2|) (-10 -7 (-15 -3351 ((-592 |#2|) |#1|)) (-15 -4108 ((-3 |#1| "failed") (-592 |#2|)))) (-823) (-823)) (T -591))
-((-4108 (*1 *2 *3) (|partial| -12 (-5 *3 (-592 *4)) (-4 *4 (-823)) (-4 *2 (-823)) (-5 *1 (-591 *2 *4)))) (-3351 (*1 *2 *3) (-12 (-5 *2 (-592 *4)) (-5 *1 (-591 *3 *4)) (-4 *3 (-823)) (-4 *4 (-823)))))
-(-10 -7 (-15 -3351 ((-592 |#2|) |#1|)) (-15 -4108 ((-3 |#1| "failed") (-592 |#2|))))
-((-3834 (((-112) $ $) NIL)) (-1896 (((-3 (-1143) "failed") $) 37)) (-3309 (((-1231) $ (-747)) 26)) (-2883 (((-747) $) 25)) (-2834 (((-114) $) 12)) (-2481 (((-1143) $) 20)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-1476 (($ (-114) (-621 |#1|) (-747)) 30) (($ (-1143)) 31)) (-3421 (((-112) $ (-114)) 18) (((-112) $ (-1143)) 16)) (-4036 (((-747) $) 22)) (-3990 (((-1087) $) NIL)) (-2845 (((-863 (-549)) $) 77 (|has| |#1| (-594 (-863 (-549))))) (((-863 (-372)) $) 84 (|has| |#1| (-594 (-863 (-372))))) (((-525) $) 69 (|has| |#1| (-594 (-525))))) (-3846 (((-834) $) 55)) (-1572 (((-621 |#1|) $) 24)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 41)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 42)))
-(((-592 |#1|) (-13 (-131) (-855 |#1|) (-10 -8 (-15 -2481 ((-1143) $)) (-15 -2834 ((-114) $)) (-15 -1572 ((-621 |#1|) $)) (-15 -4036 ((-747) $)) (-15 -1476 ($ (-114) (-621 |#1|) (-747))) (-15 -1476 ($ (-1143))) (-15 -1896 ((-3 (-1143) "failed") $)) (-15 -3421 ((-112) $ (-114))) (-15 -3421 ((-112) $ (-1143))) (IF (|has| |#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|))) (-823)) (T -592))
-((-2481 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-592 *3)) (-4 *3 (-823)))) (-2834 (*1 *2 *1) (-12 (-5 *2 (-114)) (-5 *1 (-592 *3)) (-4 *3 (-823)))) (-1572 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-592 *3)) (-4 *3 (-823)))) (-4036 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-592 *3)) (-4 *3 (-823)))) (-1476 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-114)) (-5 *3 (-621 *5)) (-5 *4 (-747)) (-4 *5 (-823)) (-5 *1 (-592 *5)))) (-1476 (*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-592 *3)) (-4 *3 (-823)))) (-1896 (*1 *2 *1) (|partial| -12 (-5 *2 (-1143)) (-5 *1 (-592 *3)) (-4 *3 (-823)))) (-3421 (*1 *2 *1 *3) (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-592 *4)) (-4 *4 (-823)))) (-3421 (*1 *2 *1 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-112)) (-5 *1 (-592 *4)) (-4 *4 (-823)))))
-(-13 (-131) (-855 |#1|) (-10 -8 (-15 -2481 ((-1143) $)) (-15 -2834 ((-114) $)) (-15 -1572 ((-621 |#1|) $)) (-15 -4036 ((-747) $)) (-15 -1476 ($ (-114) (-621 |#1|) (-747))) (-15 -1476 ($ (-1143))) (-15 -1896 ((-3 (-1143) "failed") $)) (-15 -3421 ((-112) $ (-114))) (-15 -3421 ((-112) $ (-1143))) (IF (|has| |#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|)))
-((-3846 ((|#1| $) 6)))
-(((-593 |#1|) (-138) (-1180)) (T -593))
-((-3846 (*1 *2 *1) (-12 (-4 *1 (-593 *2)) (-4 *2 (-1180)))))
-(-13 (-10 -8 (-15 -3846 (|t#1| $))))
-((-2845 ((|#1| $) 6)))
-(((-594 |#1|) (-138) (-1180)) (T -594))
-((-2845 (*1 *2 *1) (-12 (-4 *1 (-594 *2)) (-4 *2 (-1180)))))
-(-13 (-10 -8 (-15 -2845 (|t#1| $))))
-((-3005 (((-3 (-1139 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|) (-1 (-411 |#2|) |#2|)) 15) (((-3 (-1139 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|)) 16)))
-(((-595 |#1| |#2|) (-10 -7 (-15 -3005 ((-3 (-1139 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|))) (-15 -3005 ((-3 (-1139 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|) (-1 (-411 |#2|) |#2|)))) (-13 (-145) (-27) (-1009 (-549)) (-1009 (-400 (-549)))) (-1202 |#1|)) (T -595))
-((-3005 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 (-411 *6) *6)) (-4 *6 (-1202 *5)) (-4 *5 (-13 (-145) (-27) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-1139 (-400 *6))) (-5 *1 (-595 *5 *6)) (-5 *3 (-400 *6)))) (-3005 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-145) (-27) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *5 (-1202 *4)) (-5 *2 (-1139 (-400 *5))) (-5 *1 (-595 *4 *5)) (-5 *3 (-400 *5)))))
-(-10 -7 (-15 -3005 ((-3 (-1139 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|))) (-15 -3005 ((-3 (-1139 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|) (-1 (-411 |#2|) |#2|))))
-((-3834 (((-112) $ $) NIL)) (-1750 (($) 11 T CONST)) (-1805 (($) 12 T CONST)) (-4207 (($ $ $) 24)) (-4008 (($ $) 22)) (-3851 (((-1125) $) NIL)) (-2442 (($ $ $) 25)) (-3990 (((-1087) $) NIL)) (-3737 (($) 10 T CONST)) (-1583 (($ $ $) 26)) (-3846 (((-834) $) 30)) (-3264 (((-112) $ (|[\|\|]| -3737)) 19) (((-112) $ (|[\|\|]| -1750)) 21) (((-112) $ (|[\|\|]| -1805)) 17)) (-1821 (($ $ $) 23)) (-2389 (((-112) $ $) 15)))
-(((-596) (-13 (-938) (-10 -8 (-15 -3737 ($) -2589) (-15 -1750 ($) -2589) (-15 -1805 ($) -2589) (-15 -3264 ((-112) $ (|[\|\|]| -3737))) (-15 -3264 ((-112) $ (|[\|\|]| -1750))) (-15 -3264 ((-112) $ (|[\|\|]| -1805)))))) (T -596))
-((-3737 (*1 *1) (-5 *1 (-596))) (-1750 (*1 *1) (-5 *1 (-596))) (-1805 (*1 *1) (-5 *1 (-596))) (-3264 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -3737)) (-5 *2 (-112)) (-5 *1 (-596)))) (-3264 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1750)) (-5 *2 (-112)) (-5 *1 (-596)))) (-3264 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1805)) (-5 *2 (-112)) (-5 *1 (-596)))))
-(-13 (-938) (-10 -8 (-15 -3737 ($) -2589) (-15 -1750 ($) -2589) (-15 -1805 ($) -2589) (-15 -3264 ((-112) $ (|[\|\|]| -3737))) (-15 -3264 ((-112) $ (|[\|\|]| -1750))) (-15 -3264 ((-112) $ (|[\|\|]| -1805)))))
-((-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) 10)))
-(((-597 |#1| |#2|) (-10 -8 (-15 -3846 (|#1| |#2|)) (-15 -3846 (|#1| (-549))) (-15 -3846 ((-834) |#1|))) (-598 |#2|) (-1018)) (T -597))
-NIL
-(-10 -8 (-15 -3846 (|#1| |#2|)) (-15 -3846 (|#1| (-549))) (-15 -3846 ((-834) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 34)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ |#1| $) 35)))
+((-3174 (((-1230) (-1124)) 10)))
+(((-564) (-10 -7 (-15 -3174 ((-1230) (-1124))))) (T -564))
+((-3174 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-564)))))
+(-10 -7 (-15 -3174 ((-1230) (-1124))))
+((-3506 (((-567 |#2|) (-567 |#2|)) 40)) (-1448 (((-621 |#2|) (-567 |#2|)) 42)) (-3262 ((|#2| (-567 |#2|)) 48)))
+(((-565 |#1| |#2|) (-10 -7 (-15 -3506 ((-567 |#2|) (-567 |#2|))) (-15 -1448 ((-621 |#2|) (-567 |#2|))) (-15 -3262 (|#2| (-567 |#2|)))) (-13 (-444) (-1009 (-549)) (-823) (-617 (-549))) (-13 (-29 |#1|) (-1164))) (T -565))
+((-3262 (*1 *2 *3) (-12 (-5 *3 (-567 *2)) (-4 *2 (-13 (-29 *4) (-1164))) (-5 *1 (-565 *4 *2)) (-4 *4 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))))) (-1448 (*1 *2 *3) (-12 (-5 *3 (-567 *5)) (-4 *5 (-13 (-29 *4) (-1164))) (-4 *4 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))) (-5 *2 (-621 *5)) (-5 *1 (-565 *4 *5)))) (-3506 (*1 *2 *2) (-12 (-5 *2 (-567 *4)) (-4 *4 (-13 (-29 *3) (-1164))) (-4 *3 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))) (-5 *1 (-565 *3 *4)))))
+(-10 -7 (-15 -3506 ((-567 |#2|) (-567 |#2|))) (-15 -1448 ((-621 |#2|) (-567 |#2|))) (-15 -3262 (|#2| (-567 |#2|))))
+((-2795 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")) 44) (((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed")) 11) (((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2677 |#1|) (|:| |coeff| |#1|)) "failed")) 35) (((-567 |#2|) (-1 |#2| |#1|) (-567 |#1|)) 30)))
+(((-566 |#1| |#2|) (-10 -7 (-15 -2795 ((-567 |#2|) (-1 |#2| |#1|) (-567 |#1|))) (-15 -2795 ((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2677 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -2795 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -2795 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")))) (-356) (-356)) (T -566))
+((-2795 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| |mainpart| *5) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *5) (|:| |logand| *5))))) "failed")) (-4 *5 (-356)) (-4 *6 (-356)) (-5 *2 (-2 (|:| |mainpart| *6) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *6) (|:| |logand| *6)))))) (-5 *1 (-566 *5 *6)))) (-2795 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed")) (-4 *5 (-356)) (-4 *2 (-356)) (-5 *1 (-566 *5 *2)))) (-2795 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| -2677 *5) (|:| |coeff| *5)) "failed")) (-4 *5 (-356)) (-4 *6 (-356)) (-5 *2 (-2 (|:| -2677 *6) (|:| |coeff| *6))) (-5 *1 (-566 *5 *6)))) (-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-567 *5)) (-4 *5 (-356)) (-4 *6 (-356)) (-5 *2 (-567 *6)) (-5 *1 (-566 *5 *6)))))
+(-10 -7 (-15 -2795 ((-567 |#2|) (-1 |#2| |#1|) (-567 |#1|))) (-15 -2795 ((-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2677 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -2795 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -2795 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed"))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) 69)) (-2657 ((|#1| $) NIL)) (-2677 ((|#1| $) 26)) (-2667 (((-621 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) 28)) (-3563 (($ |#1| (-621 (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1138 |#1|)) (|:| |logand| (-1138 |#1|)))) (-621 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) 24)) (-3890 (((-621 (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1138 |#1|)) (|:| |logand| (-1138 |#1|)))) $) 27)) (-3441 (((-1124) $) NIL)) (-2883 (($ |#1| |#1|) 33) (($ |#1| (-1142)) 44 (|has| |#1| (-1009 (-1142))))) (-3988 (((-1086) $) NIL)) (-4033 (((-112) $) 30)) (-3455 ((|#1| $ (-1 |#1| |#1|)) 81) ((|#1| $ (-1142)) 82 (|has| |#1| (-871 (-1142))))) (-3845 (((-834) $) 96) (($ |#1|) 25)) (-3274 (($) 16 T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) 15) (($ $ $) NIL)) (-2484 (($ $ $) 78)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 14) (($ (-400 (-549)) $) 36) (($ $ (-400 (-549))) NIL)))
+(((-567 |#1|) (-13 (-694 (-400 (-549))) (-1009 |#1|) (-10 -8 (-15 -3563 ($ |#1| (-621 (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1138 |#1|)) (|:| |logand| (-1138 |#1|)))) (-621 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -2677 (|#1| $)) (-15 -3890 ((-621 (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1138 |#1|)) (|:| |logand| (-1138 |#1|)))) $)) (-15 -2667 ((-621 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -4033 ((-112) $)) (-15 -2883 ($ |#1| |#1|)) (-15 -3455 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-871 (-1142))) (-15 -3455 (|#1| $ (-1142))) |%noBranch|) (IF (|has| |#1| (-1009 (-1142))) (-15 -2883 ($ |#1| (-1142))) |%noBranch|))) (-356)) (T -567))
+((-3563 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-621 (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1138 *2)) (|:| |logand| (-1138 *2))))) (-5 *4 (-621 (-2 (|:| |integrand| *2) (|:| |intvar| *2)))) (-4 *2 (-356)) (-5 *1 (-567 *2)))) (-2677 (*1 *2 *1) (-12 (-5 *1 (-567 *2)) (-4 *2 (-356)))) (-3890 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1138 *3)) (|:| |logand| (-1138 *3))))) (-5 *1 (-567 *3)) (-4 *3 (-356)))) (-2667 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |integrand| *3) (|:| |intvar| *3)))) (-5 *1 (-567 *3)) (-4 *3 (-356)))) (-4033 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-567 *3)) (-4 *3 (-356)))) (-2883 (*1 *1 *2 *2) (-12 (-5 *1 (-567 *2)) (-4 *2 (-356)))) (-3455 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-567 *2)) (-4 *2 (-356)))) (-3455 (*1 *2 *1 *3) (-12 (-4 *2 (-356)) (-4 *2 (-871 *3)) (-5 *1 (-567 *2)) (-5 *3 (-1142)))) (-2883 (*1 *1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *1 (-567 *2)) (-4 *2 (-1009 *3)) (-4 *2 (-356)))))
+(-13 (-694 (-400 (-549))) (-1009 |#1|) (-10 -8 (-15 -3563 ($ |#1| (-621 (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1138 |#1|)) (|:| |logand| (-1138 |#1|)))) (-621 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -2677 (|#1| $)) (-15 -3890 ((-621 (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1138 |#1|)) (|:| |logand| (-1138 |#1|)))) $)) (-15 -2667 ((-621 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -4033 ((-112) $)) (-15 -2883 ($ |#1| |#1|)) (-15 -3455 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-871 (-1142))) (-15 -3455 (|#1| $ (-1142))) |%noBranch|) (IF (|has| |#1| (-1009 (-1142))) (-15 -2883 ($ |#1| (-1142))) |%noBranch|)))
+((-2483 (((-112) |#1|) 16)) (-3652 (((-3 |#1| "failed") |#1|) 14)) (-2465 (((-2 (|:| -1863 |#1|) (|:| -1714 (-747))) |#1|) 31) (((-3 |#1| "failed") |#1| (-747)) 18)) (-4130 (((-112) |#1| (-747)) 19)) (-1430 ((|#1| |#1|) 32)) (-1888 ((|#1| |#1| (-747)) 34)))
+(((-568 |#1|) (-10 -7 (-15 -4130 ((-112) |#1| (-747))) (-15 -2465 ((-3 |#1| "failed") |#1| (-747))) (-15 -2465 ((-2 (|:| -1863 |#1|) (|:| -1714 (-747))) |#1|)) (-15 -1888 (|#1| |#1| (-747))) (-15 -2483 ((-112) |#1|)) (-15 -3652 ((-3 |#1| "failed") |#1|)) (-15 -1430 (|#1| |#1|))) (-534)) (T -568))
+((-1430 (*1 *2 *2) (-12 (-5 *1 (-568 *2)) (-4 *2 (-534)))) (-3652 (*1 *2 *2) (|partial| -12 (-5 *1 (-568 *2)) (-4 *2 (-534)))) (-2483 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-568 *3)) (-4 *3 (-534)))) (-1888 (*1 *2 *2 *3) (-12 (-5 *3 (-747)) (-5 *1 (-568 *2)) (-4 *2 (-534)))) (-2465 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -1863 *3) (|:| -1714 (-747)))) (-5 *1 (-568 *3)) (-4 *3 (-534)))) (-2465 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-747)) (-5 *1 (-568 *2)) (-4 *2 (-534)))) (-4130 (*1 *2 *3 *4) (-12 (-5 *4 (-747)) (-5 *2 (-112)) (-5 *1 (-568 *3)) (-4 *3 (-534)))))
+(-10 -7 (-15 -4130 ((-112) |#1| (-747))) (-15 -2465 ((-3 |#1| "failed") |#1| (-747))) (-15 -2465 ((-2 (|:| -1863 |#1|) (|:| -1714 (-747))) |#1|)) (-15 -1888 (|#1| |#1| (-747))) (-15 -2483 ((-112) |#1|)) (-15 -3652 ((-3 |#1| "failed") |#1|)) (-15 -1430 (|#1| |#1|)))
+((-1897 (((-1138 |#1|) (-892)) 27)))
+(((-569 |#1|) (-10 -7 (-15 -1897 ((-1138 |#1|) (-892)))) (-342)) (T -569))
+((-1897 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1138 *4)) (-5 *1 (-569 *4)) (-4 *4 (-342)))))
+(-10 -7 (-15 -1897 ((-1138 |#1|) (-892))))
+((-3506 (((-567 (-400 (-923 |#1|))) (-567 (-400 (-923 |#1|)))) 27)) (-3405 (((-3 (-309 |#1|) (-621 (-309 |#1|))) (-400 (-923 |#1|)) (-1142)) 34 (|has| |#1| (-145)))) (-1448 (((-621 (-309 |#1|)) (-567 (-400 (-923 |#1|)))) 19)) (-2037 (((-309 |#1|) (-400 (-923 |#1|)) (-1142)) 32 (|has| |#1| (-145)))) (-3262 (((-309 |#1|) (-567 (-400 (-923 |#1|)))) 21)))
+(((-570 |#1|) (-10 -7 (-15 -3506 ((-567 (-400 (-923 |#1|))) (-567 (-400 (-923 |#1|))))) (-15 -1448 ((-621 (-309 |#1|)) (-567 (-400 (-923 |#1|))))) (-15 -3262 ((-309 |#1|) (-567 (-400 (-923 |#1|))))) (IF (|has| |#1| (-145)) (PROGN (-15 -3405 ((-3 (-309 |#1|) (-621 (-309 |#1|))) (-400 (-923 |#1|)) (-1142))) (-15 -2037 ((-309 |#1|) (-400 (-923 |#1|)) (-1142)))) |%noBranch|)) (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))) (T -570))
+((-2037 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1142)) (-4 *5 (-145)) (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))) (-5 *2 (-309 *5)) (-5 *1 (-570 *5)))) (-3405 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1142)) (-4 *5 (-145)) (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))) (-5 *2 (-3 (-309 *5) (-621 (-309 *5)))) (-5 *1 (-570 *5)))) (-3262 (*1 *2 *3) (-12 (-5 *3 (-567 (-400 (-923 *4)))) (-4 *4 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))) (-5 *2 (-309 *4)) (-5 *1 (-570 *4)))) (-1448 (*1 *2 *3) (-12 (-5 *3 (-567 (-400 (-923 *4)))) (-4 *4 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))) (-5 *2 (-621 (-309 *4))) (-5 *1 (-570 *4)))) (-3506 (*1 *2 *2) (-12 (-5 *2 (-567 (-400 (-923 *3)))) (-4 *3 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549)))) (-5 *1 (-570 *3)))))
+(-10 -7 (-15 -3506 ((-567 (-400 (-923 |#1|))) (-567 (-400 (-923 |#1|))))) (-15 -1448 ((-621 (-309 |#1|)) (-567 (-400 (-923 |#1|))))) (-15 -3262 ((-309 |#1|) (-567 (-400 (-923 |#1|))))) (IF (|has| |#1| (-145)) (PROGN (-15 -3405 ((-3 (-309 |#1|) (-621 (-309 |#1|))) (-400 (-923 |#1|)) (-1142))) (-15 -2037 ((-309 |#1|) (-400 (-923 |#1|)) (-1142)))) |%noBranch|))
+((-3802 (((-621 (-665 (-549))) (-621 (-549)) (-621 (-876 (-549)))) 46) (((-621 (-665 (-549))) (-621 (-549))) 47) (((-665 (-549)) (-621 (-549)) (-876 (-549))) 42)) (-2494 (((-747) (-621 (-549))) 40)))
+(((-571) (-10 -7 (-15 -2494 ((-747) (-621 (-549)))) (-15 -3802 ((-665 (-549)) (-621 (-549)) (-876 (-549)))) (-15 -3802 ((-621 (-665 (-549))) (-621 (-549)))) (-15 -3802 ((-621 (-665 (-549))) (-621 (-549)) (-621 (-876 (-549))))))) (T -571))
+((-3802 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-549))) (-5 *4 (-621 (-876 (-549)))) (-5 *2 (-621 (-665 (-549)))) (-5 *1 (-571)))) (-3802 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-621 (-665 (-549)))) (-5 *1 (-571)))) (-3802 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-549))) (-5 *4 (-876 (-549))) (-5 *2 (-665 (-549))) (-5 *1 (-571)))) (-2494 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-747)) (-5 *1 (-571)))))
+(-10 -7 (-15 -2494 ((-747) (-621 (-549)))) (-15 -3802 ((-665 (-549)) (-621 (-549)) (-876 (-549)))) (-15 -3802 ((-621 (-665 (-549))) (-621 (-549)))) (-15 -3802 ((-621 (-665 (-549))) (-621 (-549)) (-621 (-876 (-549))))))
+((-3889 (((-621 |#5|) |#5| (-112)) 73)) (-3613 (((-112) |#5| (-621 |#5|)) 30)))
+(((-572 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3889 ((-621 |#5|) |#5| (-112))) (-15 -3613 ((-112) |#5| (-621 |#5|)))) (-13 (-300) (-145)) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1075 |#1| |#2| |#3| |#4|)) (T -572))
+((-3613 (*1 *2 *3 *4) (-12 (-5 *4 (-621 *3)) (-4 *3 (-1075 *5 *6 *7 *8)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-572 *5 *6 *7 *8 *3)))) (-3889 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)) (-5 *2 (-621 *3)) (-5 *1 (-572 *5 *6 *7 *8 *3)) (-4 *3 (-1075 *5 *6 *7 *8)))))
+(-10 -7 (-15 -3889 ((-621 |#5|) |#5| (-112))) (-15 -3613 ((-112) |#5| (-621 |#5|))))
+((-3832 (((-112) $ $) NIL)) (-2200 (((-1101) $) 11)) (-2187 (((-1101) $) 9)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 19) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-573) (-13 (-1049) (-10 -8 (-15 -2187 ((-1101) $)) (-15 -2200 ((-1101) $))))) (T -573))
+((-2187 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-573)))) (-2200 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-573)))))
+(-13 (-1049) (-10 -8 (-15 -2187 ((-1101) $)) (-15 -2200 ((-1101) $))))
+((-3832 (((-112) $ $) NIL (|has| (-142) (-1066)))) (-3340 (($ $) 34)) (-2913 (($ $) NIL)) (-3211 (($ $ (-142)) NIL) (($ $ (-139)) NIL)) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-2318 (((-112) $ $) 51)) (-2289 (((-112) $ $ (-549)) 46)) (-3506 (((-621 $) $ (-142)) 60) (((-621 $) $ (-139)) 61)) (-2239 (((-112) (-1 (-112) (-142) (-142)) $) NIL) (((-112) $) NIL (|has| (-142) (-823)))) (-2015 (($ (-1 (-112) (-142) (-142)) $) NIL (|has| $ (-6 -4337))) (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-823))))) (-3191 (($ (-1 (-112) (-142) (-142)) $) NIL) (($ $) NIL (|has| (-142) (-823)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 (((-142) $ (-549) (-142)) 45 (|has| $ (-6 -4337))) (((-142) $ (-1192 (-549)) (-142)) NIL (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-3588 (($ $ (-142)) 64) (($ $ (-139)) 65)) (-2918 (($ $) NIL (|has| $ (-6 -4337)))) (-3062 (($ $) NIL)) (-4125 (($ $ (-1192 (-549)) $) 44)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066))))) (-3812 (($ (-142) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066)))) (($ (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4336)))) (-2556 (((-142) (-1 (-142) (-142) (-142)) $ (-142) (-142)) NIL (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066)))) (((-142) (-1 (-142) (-142) (-142)) $ (-142)) NIL (|has| $ (-6 -4336))) (((-142) (-1 (-142) (-142) (-142)) $) NIL (|has| $ (-6 -4336)))) (-1875 (((-142) $ (-549) (-142)) NIL (|has| $ (-6 -4337)))) (-1807 (((-142) $ (-549)) NIL)) (-2347 (((-112) $ $) 72)) (-2881 (((-549) (-1 (-112) (-142)) $) NIL) (((-549) (-142) $) NIL (|has| (-142) (-1066))) (((-549) (-142) $ (-549)) 48 (|has| (-142) (-1066))) (((-549) $ $ (-549)) 47) (((-549) (-139) $ (-549)) 50)) (-2987 (((-621 (-142)) $) NIL (|has| $ (-6 -4336)))) (-3743 (($ (-747) (-142)) 9)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) 28 (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (|has| (-142) (-823)))) (-3050 (($ (-1 (-112) (-142) (-142)) $ $) NIL) (($ $ $) NIL (|has| (-142) (-823)))) (-3698 (((-621 (-142)) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-142) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066))))) (-3063 (((-549) $) 42 (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| (-142) (-823)))) (-2309 (((-112) $ $ (-142)) 73)) (-2472 (((-747) $ $ (-142)) 70)) (-1864 (($ (-1 (-142) (-142)) $) 33 (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-142) (-142)) $) NIL) (($ (-1 (-142) (-142) (-142)) $ $) NIL)) (-4100 (($ $) 37)) (-1867 (($ $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3602 (($ $ (-142)) 62) (($ $ (-139)) 63)) (-3441 (((-1124) $) 38 (|has| (-142) (-1066)))) (-2613 (($ (-142) $ (-549)) NIL) (($ $ $ (-549)) 23)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3988 (((-549) $) 69) (((-1086) $) NIL (|has| (-142) (-1066)))) (-3645 (((-142) $) NIL (|has| (-549) (-823)))) (-3959 (((-3 (-142) "failed") (-1 (-112) (-142)) $) NIL)) (-1943 (($ $ (-142)) NIL (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-142)))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066)))) (($ $ (-287 (-142))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066)))) (($ $ (-142) (-142)) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066)))) (($ $ (-621 (-142)) (-621 (-142))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) (-142) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066))))) (-3347 (((-621 (-142)) $) NIL)) (-2643 (((-112) $) 12)) (-3288 (($) 10)) (-3339 (((-142) $ (-549) (-142)) NIL) (((-142) $ (-549)) 52) (($ $ (-1192 (-549))) 21) (($ $ $) NIL)) (-2162 (($ $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-3997 (((-747) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4336))) (((-747) (-142) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066))))) (-2049 (($ $ $ (-549)) 66 (|has| $ (-6 -4337)))) (-2279 (($ $) 17)) (-2843 (((-525) $) NIL (|has| (-142) (-594 (-525))))) (-3853 (($ (-621 (-142))) NIL)) (-1950 (($ $ (-142)) NIL) (($ (-142) $) NIL) (($ $ $) 16) (($ (-621 $)) 67)) (-3845 (($ (-142)) NIL) (((-834) $) 27 (|has| (-142) (-593 (-834))))) (-3025 (((-112) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) NIL (|has| (-142) (-823)))) (-2423 (((-112) $ $) NIL (|has| (-142) (-823)))) (-2387 (((-112) $ $) 14 (|has| (-142) (-1066)))) (-2436 (((-112) $ $) NIL (|has| (-142) (-823)))) (-2409 (((-112) $ $) 15 (|has| (-142) (-823)))) (-3774 (((-747) $) 13 (|has| $ (-6 -4336)))))
+(((-574 |#1|) (-13 (-1110) (-10 -8 (-15 -3988 ((-549) $)))) (-549)) (T -574))
+((-3988 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-574 *3)) (-14 *3 *2))))
+(-13 (-1110) (-10 -8 (-15 -3988 ((-549) $))))
+((-2819 (((-2 (|:| |num| |#4|) (|:| |den| (-549))) |#4| |#2|) 23) (((-2 (|:| |num| |#4|) (|:| |den| (-549))) |#4| |#2| (-1060 |#4|)) 32)))
+(((-575 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2819 ((-2 (|:| |num| |#4|) (|:| |den| (-549))) |#4| |#2| (-1060 |#4|))) (-15 -2819 ((-2 (|:| |num| |#4|) (|:| |den| (-549))) |#4| |#2|))) (-769) (-823) (-541) (-920 |#3| |#1| |#2|)) (T -575))
+((-2819 (*1 *2 *3 *4) (-12 (-4 *5 (-769)) (-4 *4 (-823)) (-4 *6 (-541)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-549)))) (-5 *1 (-575 *5 *4 *6 *3)) (-4 *3 (-920 *6 *5 *4)))) (-2819 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1060 *3)) (-4 *3 (-920 *7 *6 *4)) (-4 *6 (-769)) (-4 *4 (-823)) (-4 *7 (-541)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-549)))) (-5 *1 (-575 *6 *4 *7 *3)))))
+(-10 -7 (-15 -2819 ((-2 (|:| |num| |#4|) (|:| |den| (-549))) |#4| |#2| (-1060 |#4|))) (-15 -2819 ((-2 (|:| |num| |#4|) (|:| |den| (-549))) |#4| |#2|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 63)) (-2270 (((-621 (-1048)) $) NIL)) (-3009 (((-1142) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-3691 (($ $ (-549)) 54) (($ $ (-549) (-549)) 55)) (-2585 (((-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $) 60)) (-4124 (($ $) 100)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3000 (((-834) (-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) (-997 (-816 (-549))) (-1142) |#1| (-400 (-549))) 224)) (-2824 (($ (-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|)))) 34)) (-3034 (($) NIL T CONST)) (-2068 (($ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-1410 (((-112) $) NIL)) (-2729 (((-549) $) 58) (((-549) $ (-549)) 59)) (-2297 (((-112) $) NIL)) (-2625 (($ $ (-892)) 76)) (-1837 (($ (-1 |#1| (-549)) $) 73)) (-2988 (((-112) $) 25)) (-2244 (($ |#1| (-549)) 22) (($ $ (-1048) (-549)) NIL) (($ $ (-621 (-1048)) (-621 (-549))) NIL)) (-2795 (($ (-1 |#1| |#1|) $) 67)) (-2535 (($ (-997 (-816 (-549))) (-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|)))) 13)) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-3441 (((-1124) $) NIL)) (-3405 (($ $) 150 (|has| |#1| (-38 (-400 (-549)))))) (-3467 (((-3 $ "failed") $ $ (-112)) 99)) (-1373 (($ $ $) 108)) (-3988 (((-1086) $) NIL)) (-2072 (((-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $) 15)) (-2903 (((-997 (-816 (-549))) $) 14)) (-3796 (($ $ (-549)) 45)) (-2040 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-2684 (((-1122 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-549)))))) (-3339 ((|#1| $ (-549)) 57) (($ $ $) NIL (|has| (-549) (-1078)))) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142)) NIL (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-549) |#1|)))) (($ $) 70 (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (-3977 (((-549) $) NIL)) (-3958 (($ $) 46)) (-3845 (((-834) $) NIL) (($ (-549)) 28) (($ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541))) (($ |#1|) 27 (|has| |#1| (-170)))) (-4068 ((|#1| $ (-549)) 56)) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) 37)) (-2596 ((|#1| $) NIL)) (-4043 (($ $) 186 (|has| |#1| (-38 (-400 (-549)))))) (-1554 (($ $) 158 (|has| |#1| (-38 (-400 (-549)))))) (-3548 (($ $) 190 (|has| |#1| (-38 (-400 (-549)))))) (-3874 (($ $) 163 (|has| |#1| (-38 (-400 (-549)))))) (-1399 (($ $) 189 (|has| |#1| (-38 (-400 (-549)))))) (-4297 (($ $) 162 (|has| |#1| (-38 (-400 (-549)))))) (-4253 (($ $ (-400 (-549))) 166 (|has| |#1| (-38 (-400 (-549)))))) (-3911 (($ $ |#1|) 146 (|has| |#1| (-38 (-400 (-549)))))) (-3479 (($ $) 192 (|has| |#1| (-38 (-400 (-549)))))) (-3438 (($ $) 149 (|has| |#1| (-38 (-400 (-549)))))) (-2476 (($ $) 191 (|has| |#1| (-38 (-400 (-549)))))) (-3475 (($ $) 164 (|has| |#1| (-38 (-400 (-549)))))) (-3473 (($ $) 187 (|has| |#1| (-38 (-400 (-549)))))) (-1744 (($ $) 160 (|has| |#1| (-38 (-400 (-549)))))) (-3648 (($ $) 188 (|has| |#1| (-38 (-400 (-549)))))) (-2735 (($ $) 161 (|has| |#1| (-38 (-400 (-549)))))) (-2905 (($ $) 197 (|has| |#1| (-38 (-400 (-549)))))) (-3074 (($ $) 173 (|has| |#1| (-38 (-400 (-549)))))) (-3689 (($ $) 194 (|has| |#1| (-38 (-400 (-549)))))) (-3784 (($ $) 168 (|has| |#1| (-38 (-400 (-549)))))) (-3908 (($ $) 201 (|has| |#1| (-38 (-400 (-549)))))) (-2754 (($ $) 177 (|has| |#1| (-38 (-400 (-549)))))) (-1886 (($ $) 203 (|has| |#1| (-38 (-400 (-549)))))) (-2204 (($ $) 179 (|has| |#1| (-38 (-400 (-549)))))) (-1367 (($ $) 199 (|has| |#1| (-38 (-400 (-549)))))) (-1274 (($ $) 175 (|has| |#1| (-38 (-400 (-549)))))) (-3755 (($ $) 196 (|has| |#1| (-38 (-400 (-549)))))) (-2851 (($ $) 171 (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2659 ((|#1| $ (-549)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-549)))) (|has| |#1| (-15 -3845 (|#1| (-1142))))))) (-3274 (($) 29 T CONST)) (-3286 (($) 38 T CONST)) (-1699 (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142)) NIL (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-549) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (-2387 (((-112) $ $) 65)) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2498 (($ $) 84) (($ $ $) 64)) (-2484 (($ $ $) 81)) (** (($ $ (-892)) NIL) (($ $ (-747)) 103)) (* (($ (-892) $) 89) (($ (-747) $) 87) (($ (-549) $) 85) (($ $ $) 95) (($ $ |#1|) NIL) (($ |#1| $) 115) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
+(((-576 |#1|) (-13 (-1203 |#1| (-549)) (-10 -8 (-15 -2535 ($ (-997 (-816 (-549))) (-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|))))) (-15 -2903 ((-997 (-816 (-549))) $)) (-15 -2072 ((-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $)) (-15 -2824 ($ (-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|))))) (-15 -2988 ((-112) $)) (-15 -1837 ($ (-1 |#1| (-549)) $)) (-15 -3467 ((-3 $ "failed") $ $ (-112))) (-15 -4124 ($ $)) (-15 -1373 ($ $ $)) (-15 -3000 ((-834) (-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) (-997 (-816 (-549))) (-1142) |#1| (-400 (-549)))) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -3405 ($ $)) (-15 -3911 ($ $ |#1|)) (-15 -4253 ($ $ (-400 (-549)))) (-15 -3438 ($ $)) (-15 -3479 ($ $)) (-15 -3874 ($ $)) (-15 -2735 ($ $)) (-15 -1554 ($ $)) (-15 -1744 ($ $)) (-15 -4297 ($ $)) (-15 -3475 ($ $)) (-15 -3784 ($ $)) (-15 -2851 ($ $)) (-15 -3074 ($ $)) (-15 -1274 ($ $)) (-15 -2754 ($ $)) (-15 -2204 ($ $)) (-15 -3548 ($ $)) (-15 -3648 ($ $)) (-15 -4043 ($ $)) (-15 -3473 ($ $)) (-15 -1399 ($ $)) (-15 -2476 ($ $)) (-15 -3689 ($ $)) (-15 -3755 ($ $)) (-15 -2905 ($ $)) (-15 -1367 ($ $)) (-15 -3908 ($ $)) (-15 -1886 ($ $))) |%noBranch|))) (-1018)) (T -576))
+((-2988 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-576 *3)) (-4 *3 (-1018)))) (-2535 (*1 *1 *2 *3) (-12 (-5 *2 (-997 (-816 (-549)))) (-5 *3 (-1122 (-2 (|:| |k| (-549)) (|:| |c| *4)))) (-4 *4 (-1018)) (-5 *1 (-576 *4)))) (-2903 (*1 *2 *1) (-12 (-5 *2 (-997 (-816 (-549)))) (-5 *1 (-576 *3)) (-4 *3 (-1018)))) (-2072 (*1 *2 *1) (-12 (-5 *2 (-1122 (-2 (|:| |k| (-549)) (|:| |c| *3)))) (-5 *1 (-576 *3)) (-4 *3 (-1018)))) (-2824 (*1 *1 *2) (-12 (-5 *2 (-1122 (-2 (|:| |k| (-549)) (|:| |c| *3)))) (-4 *3 (-1018)) (-5 *1 (-576 *3)))) (-1837 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-549))) (-4 *3 (-1018)) (-5 *1 (-576 *3)))) (-3467 (*1 *1 *1 *1 *2) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-576 *3)) (-4 *3 (-1018)))) (-4124 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-1018)))) (-1373 (*1 *1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-1018)))) (-3000 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-1122 (-2 (|:| |k| (-549)) (|:| |c| *6)))) (-5 *4 (-997 (-816 (-549)))) (-5 *5 (-1142)) (-5 *7 (-400 (-549))) (-4 *6 (-1018)) (-5 *2 (-834)) (-5 *1 (-576 *6)))) (-3405 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-3911 (*1 *1 *1 *2) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-4253 (*1 *1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-576 *3)) (-4 *3 (-38 *2)) (-4 *3 (-1018)))) (-3438 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-3479 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-3874 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2735 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-1554 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-1744 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-4297 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-3475 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-3784 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2851 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-3074 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-1274 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2754 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2204 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-3548 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-3648 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-4043 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-3473 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-1399 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2476 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-3689 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-3755 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-2905 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-1367 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-3908 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))) (-1886 (*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(-13 (-1203 |#1| (-549)) (-10 -8 (-15 -2535 ($ (-997 (-816 (-549))) (-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|))))) (-15 -2903 ((-997 (-816 (-549))) $)) (-15 -2072 ((-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $)) (-15 -2824 ($ (-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|))))) (-15 -2988 ((-112) $)) (-15 -1837 ($ (-1 |#1| (-549)) $)) (-15 -3467 ((-3 $ "failed") $ $ (-112))) (-15 -4124 ($ $)) (-15 -1373 ($ $ $)) (-15 -3000 ((-834) (-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) (-997 (-816 (-549))) (-1142) |#1| (-400 (-549)))) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -3405 ($ $)) (-15 -3911 ($ $ |#1|)) (-15 -4253 ($ $ (-400 (-549)))) (-15 -3438 ($ $)) (-15 -3479 ($ $)) (-15 -3874 ($ $)) (-15 -2735 ($ $)) (-15 -1554 ($ $)) (-15 -1744 ($ $)) (-15 -4297 ($ $)) (-15 -3475 ($ $)) (-15 -3784 ($ $)) (-15 -2851 ($ $)) (-15 -3074 ($ $)) (-15 -1274 ($ $)) (-15 -2754 ($ $)) (-15 -2204 ($ $)) (-15 -3548 ($ $)) (-15 -3648 ($ $)) (-15 -4043 ($ $)) (-15 -3473 ($ $)) (-15 -1399 ($ $)) (-15 -2476 ($ $)) (-15 -3689 ($ $)) (-15 -3755 ($ $)) (-15 -2905 ($ $)) (-15 -1367 ($ $)) (-15 -3908 ($ $)) (-15 -1886 ($ $))) |%noBranch|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-2824 (($ (-1122 |#1|)) 9)) (-3034 (($) NIL T CONST)) (-2612 (((-3 $ "failed") $) 42)) (-1410 (((-112) $) 52)) (-2729 (((-747) $) 55) (((-747) $ (-747)) 54)) (-2297 (((-112) $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2040 (((-3 $ "failed") $ $) 44 (|has| |#1| (-541)))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL (|has| |#1| (-541)))) (-2157 (((-1122 |#1|) $) 23)) (-2371 (((-747)) 51)) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3274 (($) 10 T CONST)) (-3286 (($) 14 T CONST)) (-2387 (((-112) $ $) 22)) (-2498 (($ $) 30) (($ $ $) 16)) (-2484 (($ $ $) 25)) (** (($ $ (-892)) NIL) (($ $ (-747)) 49)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 34) (($ $ $) 28) (($ |#1| $) 37) (($ $ |#1|) 38) (($ $ (-549)) 36)))
+(((-577 |#1|) (-13 (-1018) (-10 -8 (-15 -2157 ((-1122 |#1|) $)) (-15 -2824 ($ (-1122 |#1|))) (-15 -1410 ((-112) $)) (-15 -2729 ((-747) $)) (-15 -2729 ((-747) $ (-747))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-549))) (IF (|has| |#1| (-541)) (-6 (-541)) |%noBranch|))) (-1018)) (T -577))
+((-2157 (*1 *2 *1) (-12 (-5 *2 (-1122 *3)) (-5 *1 (-577 *3)) (-4 *3 (-1018)))) (-2824 (*1 *1 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-577 *3)))) (-1410 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-577 *3)) (-4 *3 (-1018)))) (-2729 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-577 *3)) (-4 *3 (-1018)))) (-2729 (*1 *2 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-577 *3)) (-4 *3 (-1018)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-577 *2)) (-4 *2 (-1018)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-577 *2)) (-4 *2 (-1018)))) (* (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-577 *3)) (-4 *3 (-1018)))))
+(-13 (-1018) (-10 -8 (-15 -2157 ((-1122 |#1|) $)) (-15 -2824 ($ (-1122 |#1|))) (-15 -1410 ((-112) $)) (-15 -2729 ((-747) $)) (-15 -2729 ((-747) $ (-747))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-549))) (IF (|has| |#1| (-541)) (-6 (-541)) |%noBranch|)))
+((-2795 (((-581 |#2|) (-1 |#2| |#1|) (-581 |#1|)) 15)))
+(((-578 |#1| |#2|) (-10 -7 (-15 -2795 ((-581 |#2|) (-1 |#2| |#1|) (-581 |#1|)))) (-1179) (-1179)) (T -578))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-581 *5)) (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-581 *6)) (-5 *1 (-578 *5 *6)))))
+(-10 -7 (-15 -2795 ((-581 |#2|) (-1 |#2| |#1|) (-581 |#1|))))
+((-2795 (((-1122 |#3|) (-1 |#3| |#1| |#2|) (-581 |#1|) (-1122 |#2|)) 20) (((-1122 |#3|) (-1 |#3| |#1| |#2|) (-1122 |#1|) (-581 |#2|)) 19) (((-581 |#3|) (-1 |#3| |#1| |#2|) (-581 |#1|) (-581 |#2|)) 18)))
+(((-579 |#1| |#2| |#3|) (-10 -7 (-15 -2795 ((-581 |#3|) (-1 |#3| |#1| |#2|) (-581 |#1|) (-581 |#2|))) (-15 -2795 ((-1122 |#3|) (-1 |#3| |#1| |#2|) (-1122 |#1|) (-581 |#2|))) (-15 -2795 ((-1122 |#3|) (-1 |#3| |#1| |#2|) (-581 |#1|) (-1122 |#2|)))) (-1179) (-1179) (-1179)) (T -579))
+((-2795 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-581 *6)) (-5 *5 (-1122 *7)) (-4 *6 (-1179)) (-4 *7 (-1179)) (-4 *8 (-1179)) (-5 *2 (-1122 *8)) (-5 *1 (-579 *6 *7 *8)))) (-2795 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1122 *6)) (-5 *5 (-581 *7)) (-4 *6 (-1179)) (-4 *7 (-1179)) (-4 *8 (-1179)) (-5 *2 (-1122 *8)) (-5 *1 (-579 *6 *7 *8)))) (-2795 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-581 *6)) (-5 *5 (-581 *7)) (-4 *6 (-1179)) (-4 *7 (-1179)) (-4 *8 (-1179)) (-5 *2 (-581 *8)) (-5 *1 (-579 *6 *7 *8)))))
+(-10 -7 (-15 -2795 ((-581 |#3|) (-1 |#3| |#1| |#2|) (-581 |#1|) (-581 |#2|))) (-15 -2795 ((-1122 |#3|) (-1 |#3| |#1| |#2|) (-1122 |#1|) (-581 |#2|))) (-15 -2795 ((-1122 |#3|) (-1 |#3| |#1| |#2|) (-581 |#1|) (-1122 |#2|))))
+((-2055 ((|#3| |#3| (-621 (-592 |#3|)) (-621 (-1142))) 55)) (-3597 (((-167 |#2|) |#3|) 117)) (-1455 ((|#3| (-167 |#2|)) 44)) (-3022 ((|#2| |#3|) 19)) (-1761 ((|#3| |#2|) 33)))
+(((-580 |#1| |#2| |#3|) (-10 -7 (-15 -1455 (|#3| (-167 |#2|))) (-15 -3022 (|#2| |#3|)) (-15 -1761 (|#3| |#2|)) (-15 -3597 ((-167 |#2|) |#3|)) (-15 -2055 (|#3| |#3| (-621 (-592 |#3|)) (-621 (-1142))))) (-13 (-541) (-823)) (-13 (-423 |#1|) (-973) (-1164)) (-13 (-423 (-167 |#1|)) (-973) (-1164))) (T -580))
+((-2055 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-621 (-592 *2))) (-5 *4 (-621 (-1142))) (-4 *2 (-13 (-423 (-167 *5)) (-973) (-1164))) (-4 *5 (-13 (-541) (-823))) (-5 *1 (-580 *5 *6 *2)) (-4 *6 (-13 (-423 *5) (-973) (-1164))))) (-3597 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823))) (-5 *2 (-167 *5)) (-5 *1 (-580 *4 *5 *3)) (-4 *5 (-13 (-423 *4) (-973) (-1164))) (-4 *3 (-13 (-423 (-167 *4)) (-973) (-1164))))) (-1761 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823))) (-4 *2 (-13 (-423 (-167 *4)) (-973) (-1164))) (-5 *1 (-580 *4 *3 *2)) (-4 *3 (-13 (-423 *4) (-973) (-1164))))) (-3022 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-823))) (-4 *2 (-13 (-423 *4) (-973) (-1164))) (-5 *1 (-580 *4 *2 *3)) (-4 *3 (-13 (-423 (-167 *4)) (-973) (-1164))))) (-1455 (*1 *2 *3) (-12 (-5 *3 (-167 *5)) (-4 *5 (-13 (-423 *4) (-973) (-1164))) (-4 *4 (-13 (-541) (-823))) (-4 *2 (-13 (-423 (-167 *4)) (-973) (-1164))) (-5 *1 (-580 *4 *5 *2)))))
+(-10 -7 (-15 -1455 (|#3| (-167 |#2|))) (-15 -3022 (|#2| |#3|)) (-15 -1761 (|#3| |#2|)) (-15 -3597 ((-167 |#2|) |#3|)) (-15 -2055 (|#3| |#3| (-621 (-592 |#3|)) (-621 (-1142)))))
+((-1488 (($ (-1 (-112) |#1|) $) 17)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-1411 (($ (-1 |#1| |#1|) |#1|) 9)) (-1459 (($ (-1 (-112) |#1|) $) 13)) (-1473 (($ (-1 (-112) |#1|) $) 15)) (-3853 (((-1122 |#1|) $) 18)) (-3845 (((-834) $) NIL)))
+(((-581 |#1|) (-13 (-593 (-834)) (-10 -8 (-15 -2795 ($ (-1 |#1| |#1|) $)) (-15 -1459 ($ (-1 (-112) |#1|) $)) (-15 -1473 ($ (-1 (-112) |#1|) $)) (-15 -1488 ($ (-1 (-112) |#1|) $)) (-15 -1411 ($ (-1 |#1| |#1|) |#1|)) (-15 -3853 ((-1122 |#1|) $)))) (-1179)) (T -581))
+((-2795 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1179)) (-5 *1 (-581 *3)))) (-1459 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1179)) (-5 *1 (-581 *3)))) (-1473 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1179)) (-5 *1 (-581 *3)))) (-1488 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1179)) (-5 *1 (-581 *3)))) (-1411 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1179)) (-5 *1 (-581 *3)))) (-3853 (*1 *2 *1) (-12 (-5 *2 (-1122 *3)) (-5 *1 (-581 *3)) (-4 *3 (-1179)))))
+(-13 (-593 (-834)) (-10 -8 (-15 -2795 ($ (-1 |#1| |#1|) $)) (-15 -1459 ($ (-1 (-112) |#1|) $)) (-15 -1473 ($ (-1 (-112) |#1|) $)) (-15 -1488 ($ (-1 (-112) |#1|) $)) (-15 -1411 ($ (-1 |#1| |#1|) |#1|)) (-15 -3853 ((-1122 |#1|) $))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3768 (($ (-747)) NIL (|has| |#1| (-23)))) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-2239 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-823)))) (-2015 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4337))) (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-823))))) (-3191 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-823)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) NIL (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-2918 (($ $) NIL (|has| $ (-6 -4337)))) (-3062 (($ $) NIL)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4336)))) (-1875 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) NIL)) (-2881 (((-549) (-1 (-112) |#1|) $) NIL) (((-549) |#1| $) NIL (|has| |#1| (-1066))) (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1066)))) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-4049 (((-665 |#1|) $ $) NIL (|has| |#1| (-1018)))) (-3743 (($ (-747) |#1|) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) NIL (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3050 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-823)))) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3144 ((|#1| $) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1018))))) (-3942 (((-112) $ (-747)) NIL)) (-4210 ((|#1| $) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1018))))) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-2613 (($ |#1| $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3645 ((|#1| $) NIL (|has| (-549) (-823)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1943 (($ $ |#1|) NIL (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#1| $ (-549) |#1|) NIL) ((|#1| $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-1283 ((|#1| $ $) NIL (|has| |#1| (-1018)))) (-2162 (($ $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-1918 (($ $ $) NIL (|has| |#1| (-1018)))) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2049 (($ $ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) NIL)) (-1950 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2498 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-2484 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-549) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-703))) (($ $ |#1|) NIL (|has| |#1| (-703)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-582 |#1| |#2|) (-1223 |#1|) (-1179) (-549)) (T -582))
+NIL
+(-1223 |#1|)
+((-3659 (((-1230) $ |#2| |#2|) 36)) (-2807 ((|#2| $) 23)) (-3063 ((|#2| $) 21)) (-1864 (($ (-1 |#3| |#3|) $) 32)) (-2795 (($ (-1 |#3| |#3|) $) 30)) (-3645 ((|#3| $) 26)) (-1943 (($ $ |#3|) 33)) (-2478 (((-112) |#3| $) 17)) (-3347 (((-621 |#3|) $) 15)) (-3339 ((|#3| $ |#2| |#3|) 12) ((|#3| $ |#2|) NIL)))
+(((-583 |#1| |#2| |#3|) (-10 -8 (-15 -3659 ((-1230) |#1| |#2| |#2|)) (-15 -1943 (|#1| |#1| |#3|)) (-15 -3645 (|#3| |#1|)) (-15 -2807 (|#2| |#1|)) (-15 -3063 (|#2| |#1|)) (-15 -2478 ((-112) |#3| |#1|)) (-15 -3347 ((-621 |#3|) |#1|)) (-15 -3339 (|#3| |#1| |#2|)) (-15 -3339 (|#3| |#1| |#2| |#3|)) (-15 -1864 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2795 (|#1| (-1 |#3| |#3|) |#1|))) (-584 |#2| |#3|) (-1066) (-1179)) (T -583))
+NIL
+(-10 -8 (-15 -3659 ((-1230) |#1| |#2| |#2|)) (-15 -1943 (|#1| |#1| |#3|)) (-15 -3645 (|#3| |#1|)) (-15 -2807 (|#2| |#1|)) (-15 -3063 (|#2| |#1|)) (-15 -2478 ((-112) |#3| |#1|)) (-15 -3347 ((-621 |#3|) |#1|)) (-15 -3339 (|#3| |#1| |#2|)) (-15 -3339 (|#3| |#1| |#2| |#3|)) (-15 -1864 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2795 (|#1| (-1 |#3| |#3|) |#1|)))
+((-3832 (((-112) $ $) 19 (|has| |#2| (-1066)))) (-3659 (((-1230) $ |#1| |#1|) 40 (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) 8)) (-2250 ((|#2| $ |#1| |#2|) 52 (|has| $ (-6 -4337)))) (-3034 (($) 7 T CONST)) (-1875 ((|#2| $ |#1| |#2|) 53 (|has| $ (-6 -4337)))) (-1807 ((|#2| $ |#1|) 51)) (-2987 (((-621 |#2|) $) 30 (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) 9)) (-2807 ((|#1| $) 43 (|has| |#1| (-823)))) (-3698 (((-621 |#2|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#2| $) 27 (-12 (|has| |#2| (-1066)) (|has| $ (-6 -4336))))) (-3063 ((|#1| $) 44 (|has| |#1| (-823)))) (-1864 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#2| |#2|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (|has| |#2| (-1066)))) (-2296 (((-621 |#1|) $) 46)) (-2284 (((-112) |#1| $) 47)) (-3988 (((-1086) $) 21 (|has| |#2| (-1066)))) (-3645 ((|#2| $) 42 (|has| |#1| (-823)))) (-1943 (($ $ |#2|) 41 (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#2|))) 26 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-287 |#2|)) 25 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 |#2|) (-621 |#2|)) 23 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))) (-2520 (((-112) $ $) 14)) (-2478 (((-112) |#2| $) 45 (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3347 (((-621 |#2|) $) 48)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#2| $ |#1| |#2|) 50) ((|#2| $ |#1|) 49)) (-3997 (((-747) (-1 (-112) |#2|) $) 31 (|has| $ (-6 -4336))) (((-747) |#2| $) 28 (-12 (|has| |#2| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-3845 (((-834) $) 18 (|has| |#2| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#2| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-584 |#1| |#2|) (-138) (-1066) (-1179)) (T -584))
+((-3347 (*1 *2 *1) (-12 (-4 *1 (-584 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1179)) (-5 *2 (-621 *4)))) (-2284 (*1 *2 *3 *1) (-12 (-4 *1 (-584 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1179)) (-5 *2 (-112)))) (-2296 (*1 *2 *1) (-12 (-4 *1 (-584 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1179)) (-5 *2 (-621 *3)))) (-2478 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4336)) (-4 *1 (-584 *4 *3)) (-4 *4 (-1066)) (-4 *3 (-1179)) (-4 *3 (-1066)) (-5 *2 (-112)))) (-3063 (*1 *2 *1) (-12 (-4 *1 (-584 *2 *3)) (-4 *3 (-1179)) (-4 *2 (-1066)) (-4 *2 (-823)))) (-2807 (*1 *2 *1) (-12 (-4 *1 (-584 *2 *3)) (-4 *3 (-1179)) (-4 *2 (-1066)) (-4 *2 (-823)))) (-3645 (*1 *2 *1) (-12 (-4 *1 (-584 *3 *2)) (-4 *3 (-1066)) (-4 *3 (-823)) (-4 *2 (-1179)))) (-1943 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-584 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1179)))) (-3659 (*1 *2 *1 *3 *3) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-584 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1179)) (-5 *2 (-1230)))))
+(-13 (-481 |t#2|) (-281 |t#1| |t#2|) (-10 -8 (-15 -3347 ((-621 |t#2|) $)) (-15 -2284 ((-112) |t#1| $)) (-15 -2296 ((-621 |t#1|) $)) (IF (|has| |t#2| (-1066)) (IF (|has| $ (-6 -4336)) (-15 -2478 ((-112) |t#2| $)) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-823)) (PROGN (-15 -3063 (|t#1| $)) (-15 -2807 (|t#1| $)) (-15 -3645 (|t#2| $))) |%noBranch|) (IF (|has| $ (-6 -4337)) (PROGN (-15 -1943 ($ $ |t#2|)) (-15 -3659 ((-1230) $ |t#1| |t#1|))) |%noBranch|)))
+(((-34) . T) ((-101) |has| |#2| (-1066)) ((-593 (-834)) -1536 (|has| |#2| (-1066)) (|has| |#2| (-593 (-834)))) ((-279 |#1| |#2|) . T) ((-281 |#1| |#2|) . T) ((-302 |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) ((-481 |#2|) . T) ((-505 |#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) ((-1066) |has| |#2| (-1066)) ((-1179) . T))
+((-3845 (((-834) $) 19) (((-129) $) 14) (($ (-129)) 13)))
+(((-585) (-13 (-593 (-834)) (-593 (-129)) (-10 -8 (-15 -3845 ($ (-129)))))) (T -585))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-129)) (-5 *1 (-585)))))
+(-13 (-593 (-834)) (-593 (-129)) (-10 -8 (-15 -3845 ($ (-129)))))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL) (((-1147) $) NIL) (($ (-1147)) NIL) (((-1178) $) 14) (($ (-621 (-1178))) 13)) (-3326 (((-621 (-1178)) $) 10)) (-2387 (((-112) $ $) NIL)))
+(((-586) (-13 (-1049) (-593 (-1178)) (-10 -8 (-15 -3845 ($ (-621 (-1178)))) (-15 -3326 ((-621 (-1178)) $))))) (T -586))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-621 (-1178))) (-5 *1 (-586)))) (-3326 (*1 *2 *1) (-12 (-5 *2 (-621 (-1178))) (-5 *1 (-586)))))
+(-13 (-1049) (-593 (-1178)) (-10 -8 (-15 -3845 ($ (-621 (-1178)))) (-15 -3326 ((-621 (-1178)) $))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-1951 (((-3 $ "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-2416 (((-3 $ "failed") $ $) NIL)) (-2893 (((-1225 (-665 |#1|))) NIL (|has| |#2| (-410 |#1|))) (((-1225 (-665 |#1|)) (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-3349 (((-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-3034 (($) NIL T CONST)) (-1760 (((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-3372 (((-3 $ "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-1657 (((-665 |#1|)) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-2872 ((|#1| $) NIL (|has| |#2| (-360 |#1|)))) (-1785 (((-665 |#1|) $) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) $ (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-2013 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-3781 (((-1138 (-923 |#1|))) NIL (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-356))))) (-2039 (($ $ (-892)) NIL)) (-4301 ((|#1| $) NIL (|has| |#2| (-360 |#1|)))) (-1442 (((-1138 |#1|) $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-2733 ((|#1|) NIL (|has| |#2| (-410 |#1|))) ((|#1| (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-3163 (((-1138 |#1|) $) NIL (|has| |#2| (-360 |#1|)))) (-2634 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-2397 (($ (-1225 |#1|)) NIL (|has| |#2| (-410 |#1|))) (($ (-1225 |#1|) (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-2612 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-3121 (((-892)) NIL (|has| |#2| (-360 |#1|)))) (-2639 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3764 (($ $ (-892)) NIL)) (-2915 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-1670 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-4034 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-4001 (((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-3583 (((-3 $ "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-2686 (((-665 |#1|)) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-3458 ((|#1| $) NIL (|has| |#2| (-360 |#1|)))) (-3364 (((-665 |#1|) $) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) $ (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-1540 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-4128 (((-1138 (-923 |#1|))) NIL (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-356))))) (-4304 (($ $ (-892)) NIL)) (-3432 ((|#1| $) NIL (|has| |#2| (-360 |#1|)))) (-2085 (((-1138 |#1|) $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-1405 ((|#1|) NIL (|has| |#2| (-410 |#1|))) ((|#1| (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-4257 (((-1138 |#1|) $) NIL (|has| |#2| (-360 |#1|)))) (-4115 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3441 (((-1124) $) NIL)) (-3775 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3875 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-4055 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3988 (((-1086) $) NIL)) (-2924 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3339 ((|#1| $ (-549)) NIL (|has| |#2| (-410 |#1|)))) (-1981 (((-665 |#1|) (-1225 $)) NIL (|has| |#2| (-410 |#1|))) (((-1225 |#1|) $) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) (-1225 $) (-1225 $)) NIL (|has| |#2| (-360 |#1|))) (((-1225 |#1|) $ (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-2843 (($ (-1225 |#1|)) NIL (|has| |#2| (-410 |#1|))) (((-1225 |#1|) $) NIL (|has| |#2| (-410 |#1|)))) (-3166 (((-621 (-923 |#1|))) NIL (|has| |#2| (-410 |#1|))) (((-621 (-923 |#1|)) (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-3870 (($ $ $) NIL)) (-3083 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3845 (((-834) $) NIL) ((|#2| $) 21) (($ |#2|) 22)) (-2619 (((-1225 $)) NIL (|has| |#2| (-410 |#1|)))) (-3445 (((-621 (-1225 |#1|))) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-3515 (($ $ $ $) NIL)) (-3011 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3593 (($ (-665 |#1|) $) NIL (|has| |#2| (-410 |#1|)))) (-3485 (($ $ $) NIL)) (-3338 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-2959 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-1379 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3274 (($) NIL T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) 24)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 20) (($ $ |#1|) 19) (($ |#1| $) NIL)))
+(((-587 |#1| |#2|) (-13 (-721 |#1|) (-593 |#2|) (-10 -8 (-15 -3845 ($ |#2|)) (IF (|has| |#2| (-410 |#1|)) (-6 (-410 |#1|)) |%noBranch|) (IF (|has| |#2| (-360 |#1|)) (-6 (-360 |#1|)) |%noBranch|))) (-170) (-721 |#1|)) (T -587))
+((-3845 (*1 *1 *2) (-12 (-4 *3 (-170)) (-5 *1 (-587 *3 *2)) (-4 *2 (-721 *3)))))
+(-13 (-721 |#1|) (-593 |#2|) (-10 -8 (-15 -3845 ($ |#2|)) (IF (|has| |#2| (-410 |#1|)) (-6 (-410 |#1|)) |%noBranch|) (IF (|has| |#2| (-360 |#1|)) (-6 (-360 |#1|)) |%noBranch|)))
+((-3832 (((-112) $ $) NIL)) (-2145 (((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) $ (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) 33)) (-3732 (($ (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) NIL) (($) NIL)) (-3659 (((-1230) $ (-1124) (-1124)) NIL (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 ((|#1| $ (-1124) |#1|) 43)) (-3827 (($ (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336)))) (-3489 (((-3 |#1| "failed") (-1124) $) 46)) (-3034 (($) NIL T CONST)) (-4295 (($ $ (-1124)) 24)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066))))) (-3546 (((-3 |#1| "failed") (-1124) $) 47) (($ (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336))) (($ (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) $) NIL (|has| $ (-6 -4336)))) (-3812 (($ (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336))) (($ (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066))))) (-2556 (((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336))) (((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $ (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) NIL (|has| $ (-6 -4336))) (((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $ (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066))))) (-3937 (((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) $) 32)) (-1875 ((|#1| $ (-1124) |#1|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-1124)) NIL)) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336))) (((-621 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336)))) (-2235 (($ $) 48)) (-1358 (($ (-381)) 22) (($ (-381) (-1124)) 21)) (-2479 (((-381) $) 34)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-1124) $) NIL (|has| (-1124) (-823)))) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336))) (((-621 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) (((-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066))))) (-3063 (((-1124) $) NIL (|has| (-1124) (-823)))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337))) (($ (-1 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL)) (-3448 (((-621 (-1124)) $) 39)) (-2130 (((-112) (-1124) $) NIL)) (-3939 (((-1124) $) 35)) (-2548 (((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) $) NIL)) (-1799 (($ (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) $) NIL)) (-2296 (((-621 (-1124)) $) NIL)) (-2284 (((-112) (-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3645 ((|#1| $) NIL (|has| (-1124) (-823)))) (-3959 (((-3 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) "failed") (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL)) (-1943 (($ $ |#1|) NIL (|has| $ (-6 -4337)))) (-3536 (((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) $) NIL)) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) NIL (-12 (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066)))) (($ $ (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) NIL (-12 (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066)))) (($ $ (-287 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) NIL (-12 (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066)))) (($ $ (-621 (-287 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))))) NIL (-12 (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) 37)) (-3339 ((|#1| $ (-1124) |#1|) NIL) ((|#1| $ (-1124)) 42)) (-3226 (($ (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) NIL) (($) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) (((-747) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066)))) (((-747) (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-594 (-525))))) (-3853 (($ (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) NIL)) (-3845 (((-834) $) 20)) (-2384 (($ $) 25)) (-4213 (($ (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) NIL)) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 19)) (-3774 (((-747) $) 41 (|has| $ (-6 -4336)))))
+(((-588 |#1|) (-13 (-357 (-381) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) (-1155 (-1124) |#1|) (-10 -8 (-6 -4336) (-15 -2235 ($ $)))) (-1066)) (T -588))
+((-2235 (*1 *1 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1066)))))
+(-13 (-357 (-381) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) (-1155 (-1124) |#1|) (-10 -8 (-6 -4336) (-15 -2235 ($ $))))
+((-1593 (((-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) $) 15)) (-3448 (((-621 |#2|) $) 19)) (-2130 (((-112) |#2| $) 12)))
+(((-589 |#1| |#2| |#3|) (-10 -8 (-15 -3448 ((-621 |#2|) |#1|)) (-15 -2130 ((-112) |#2| |#1|)) (-15 -1593 ((-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) |#1|))) (-590 |#2| |#3|) (-1066) (-1066)) (T -589))
+NIL
+(-10 -8 (-15 -3448 ((-621 |#2|) |#1|)) (-15 -2130 ((-112) |#2| |#1|)) (-15 -1593 ((-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) |#1|)))
+((-3832 (((-112) $ $) 19 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (-2850 (((-112) $ (-747)) 8)) (-3827 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 45 (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 55 (|has| $ (-6 -4336)))) (-3489 (((-3 |#2| "failed") |#1| $) 61)) (-3034 (($) 7 T CONST)) (-3675 (($ $) 58 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336))))) (-3546 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 47 (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 46 (|has| $ (-6 -4336))) (((-3 |#2| "failed") |#1| $) 62)) (-3812 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 57 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 54 (|has| $ (-6 -4336)))) (-2556 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 56 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336)))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 53 (|has| $ (-6 -4336))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 52 (|has| $ (-6 -4336)))) (-2987 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 30 (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) 9)) (-3698 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 27 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (-3448 (((-621 |#1|) $) 63)) (-2130 (((-112) |#1| $) 64)) (-2548 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 39)) (-1799 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 40)) (-3988 (((-1086) $) 21 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (-3959 (((-3 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) "failed") (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 51)) (-3536 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 41)) (-3360 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))))) 26 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 25 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 24 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 23 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3226 (($) 49) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 48)) (-3997 (((-747) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 31 (|has| $ (-6 -4336))) (((-747) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 28 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-2843 (((-525) $) 59 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-594 (-525))))) (-3853 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 50)) (-3845 (((-834) $) 18 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-593 (-834))))) (-4213 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 42)) (-3025 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-590 |#1| |#2|) (-138) (-1066) (-1066)) (T -590))
+((-2130 (*1 *2 *3 *1) (-12 (-4 *1 (-590 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-5 *2 (-112)))) (-3448 (*1 *2 *1) (-12 (-4 *1 (-590 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-5 *2 (-621 *3)))) (-3546 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-590 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1066)))) (-3489 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-590 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1066)))))
+(-13 (-223 (-2 (|:| -3336 |t#1|) (|:| -1791 |t#2|))) (-10 -8 (-15 -2130 ((-112) |t#1| $)) (-15 -3448 ((-621 |t#1|) $)) (-15 -3546 ((-3 |t#2| "failed") |t#1| $)) (-15 -3489 ((-3 |t#2| "failed") |t#1| $))))
+(((-34) . T) ((-106 #0=(-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T) ((-101) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) ((-593 (-834)) -1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-593 (-834)))) ((-149 #0#) . T) ((-594 (-525)) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-594 (-525))) ((-223 #0#) . T) ((-229 #0#) . T) ((-302 #0#) -12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))) ((-481 #0#) . T) ((-505 #0# #0#) -12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))) ((-1066) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) ((-1179) . T))
+((-3995 (((-592 |#2|) |#1|) 15)) (-3017 (((-3 |#1| "failed") (-592 |#2|)) 19)))
+(((-591 |#1| |#2|) (-10 -7 (-15 -3995 ((-592 |#2|) |#1|)) (-15 -3017 ((-3 |#1| "failed") (-592 |#2|)))) (-823) (-823)) (T -591))
+((-3017 (*1 *2 *3) (|partial| -12 (-5 *3 (-592 *4)) (-4 *4 (-823)) (-4 *2 (-823)) (-5 *1 (-591 *2 *4)))) (-3995 (*1 *2 *3) (-12 (-5 *2 (-592 *4)) (-5 *1 (-591 *3 *4)) (-4 *3 (-823)) (-4 *4 (-823)))))
+(-10 -7 (-15 -3995 ((-592 |#2|) |#1|)) (-15 -3017 ((-3 |#1| "failed") (-592 |#2|))))
+((-3832 (((-112) $ $) NIL)) (-2501 (((-3 (-1142) "failed") $) 37)) (-1387 (((-1230) $ (-747)) 26)) (-2881 (((-747) $) 25)) (-3500 (((-114) $) 12)) (-2479 (((-1142) $) 20)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-1475 (($ (-114) (-621 |#1|) (-747)) 30) (($ (-1142)) 31)) (-3673 (((-112) $ (-114)) 18) (((-112) $ (-1142)) 16)) (-4036 (((-747) $) 22)) (-3988 (((-1086) $) NIL)) (-2843 (((-863 (-549)) $) 77 (|has| |#1| (-594 (-863 (-549))))) (((-863 (-372)) $) 84 (|has| |#1| (-594 (-863 (-372))))) (((-525) $) 69 (|has| |#1| (-594 (-525))))) (-3845 (((-834) $) 55)) (-2058 (((-621 |#1|) $) 24)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 41)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 42)))
+(((-592 |#1|) (-13 (-131) (-855 |#1|) (-10 -8 (-15 -2479 ((-1142) $)) (-15 -3500 ((-114) $)) (-15 -2058 ((-621 |#1|) $)) (-15 -4036 ((-747) $)) (-15 -1475 ($ (-114) (-621 |#1|) (-747))) (-15 -1475 ($ (-1142))) (-15 -2501 ((-3 (-1142) "failed") $)) (-15 -3673 ((-112) $ (-114))) (-15 -3673 ((-112) $ (-1142))) (IF (|has| |#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|))) (-823)) (T -592))
+((-2479 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-592 *3)) (-4 *3 (-823)))) (-3500 (*1 *2 *1) (-12 (-5 *2 (-114)) (-5 *1 (-592 *3)) (-4 *3 (-823)))) (-2058 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-592 *3)) (-4 *3 (-823)))) (-4036 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-592 *3)) (-4 *3 (-823)))) (-1475 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-114)) (-5 *3 (-621 *5)) (-5 *4 (-747)) (-4 *5 (-823)) (-5 *1 (-592 *5)))) (-1475 (*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-592 *3)) (-4 *3 (-823)))) (-2501 (*1 *2 *1) (|partial| -12 (-5 *2 (-1142)) (-5 *1 (-592 *3)) (-4 *3 (-823)))) (-3673 (*1 *2 *1 *3) (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-592 *4)) (-4 *4 (-823)))) (-3673 (*1 *2 *1 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-112)) (-5 *1 (-592 *4)) (-4 *4 (-823)))))
+(-13 (-131) (-855 |#1|) (-10 -8 (-15 -2479 ((-1142) $)) (-15 -3500 ((-114) $)) (-15 -2058 ((-621 |#1|) $)) (-15 -4036 ((-747) $)) (-15 -1475 ($ (-114) (-621 |#1|) (-747))) (-15 -1475 ($ (-1142))) (-15 -2501 ((-3 (-1142) "failed") $)) (-15 -3673 ((-112) $ (-114))) (-15 -3673 ((-112) $ (-1142))) (IF (|has| |#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|)))
+((-3845 ((|#1| $) 6)))
+(((-593 |#1|) (-138) (-1179)) (T -593))
+((-3845 (*1 *2 *1) (-12 (-4 *1 (-593 *2)) (-4 *2 (-1179)))))
+(-13 (-10 -8 (-15 -3845 (|t#1| $))))
+((-2843 ((|#1| $) 6)))
+(((-594 |#1|) (-138) (-1179)) (T -594))
+((-2843 (*1 *2 *1) (-12 (-4 *1 (-594 *2)) (-4 *2 (-1179)))))
+(-13 (-10 -8 (-15 -2843 (|t#1| $))))
+((-4279 (((-3 (-1138 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|) (-1 (-411 |#2|) |#2|)) 15) (((-3 (-1138 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|)) 16)))
+(((-595 |#1| |#2|) (-10 -7 (-15 -4279 ((-3 (-1138 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|))) (-15 -4279 ((-3 (-1138 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|) (-1 (-411 |#2|) |#2|)))) (-13 (-145) (-27) (-1009 (-549)) (-1009 (-400 (-549)))) (-1201 |#1|)) (T -595))
+((-4279 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 (-411 *6) *6)) (-4 *6 (-1201 *5)) (-4 *5 (-13 (-145) (-27) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-1138 (-400 *6))) (-5 *1 (-595 *5 *6)) (-5 *3 (-400 *6)))) (-4279 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-145) (-27) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *5 (-1201 *4)) (-5 *2 (-1138 (-400 *5))) (-5 *1 (-595 *4 *5)) (-5 *3 (-400 *5)))))
+(-10 -7 (-15 -4279 ((-3 (-1138 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|))) (-15 -4279 ((-3 (-1138 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|) (-1 (-411 |#2|) |#2|))))
+((-3832 (((-112) $ $) NIL)) (-1749 (($) 11 T CONST)) (-1808 (($) 12 T CONST)) (-4206 (($ $ $) 24)) (-4007 (($ $) 22)) (-3441 (((-1124) $) NIL)) (-2440 (($ $ $) 25)) (-3988 (((-1086) $) NIL)) (-3736 (($) 10 T CONST)) (-2765 (($ $ $) 26)) (-3845 (((-834) $) 30)) (-3263 (((-112) $ (|[\|\|]| -3736)) 19) (((-112) $ (|[\|\|]| -1749)) 21) (((-112) $ (|[\|\|]| -1808)) 17)) (-1819 (($ $ $) 23)) (-2387 (((-112) $ $) 15)))
+(((-596) (-13 (-938) (-10 -8 (-15 -3736 ($) -2587) (-15 -1749 ($) -2587) (-15 -1808 ($) -2587) (-15 -3263 ((-112) $ (|[\|\|]| -3736))) (-15 -3263 ((-112) $ (|[\|\|]| -1749))) (-15 -3263 ((-112) $ (|[\|\|]| -1808)))))) (T -596))
+((-3736 (*1 *1) (-5 *1 (-596))) (-1749 (*1 *1) (-5 *1 (-596))) (-1808 (*1 *1) (-5 *1 (-596))) (-3263 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -3736)) (-5 *2 (-112)) (-5 *1 (-596)))) (-3263 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1749)) (-5 *2 (-112)) (-5 *1 (-596)))) (-3263 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1808)) (-5 *2 (-112)) (-5 *1 (-596)))))
+(-13 (-938) (-10 -8 (-15 -3736 ($) -2587) (-15 -1749 ($) -2587) (-15 -1808 ($) -2587) (-15 -3263 ((-112) $ (|[\|\|]| -3736))) (-15 -3263 ((-112) $ (|[\|\|]| -1749))) (-15 -3263 ((-112) $ (|[\|\|]| -1808)))))
+((-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) 10)))
+(((-597 |#1| |#2|) (-10 -8 (-15 -3845 (|#1| |#2|)) (-15 -3845 (|#1| (-549))) (-15 -3845 ((-834) |#1|))) (-598 |#2|) (-1018)) (T -597))
+NIL
+(-10 -8 (-15 -3845 (|#1| |#2|)) (-15 -3845 (|#1| (-549))) (-15 -3845 ((-834) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 34)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ |#1| $) 35)))
(((-598 |#1|) (-138) (-1018)) (T -598))
-((-3846 (*1 *1 *2) (-12 (-4 *1 (-598 *2)) (-4 *2 (-1018)))))
-(-13 (-1018) (-624 |t#1|) (-10 -8 (-15 -3846 ($ |t#1|))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-703) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1872 (((-549) $) NIL (|has| |#1| (-821)))) (-1682 (($) NIL T CONST)) (-2114 (((-3 $ "failed") $) NIL)) (-2772 (((-112) $) NIL (|has| |#1| (-821)))) (-2675 (((-112) $) NIL)) (-1394 ((|#1| $) 13)) (-2374 (((-112) $) NIL (|has| |#1| (-821)))) (-2863 (($ $ $) NIL (|has| |#1| (-821)))) (-3575 (($ $ $) NIL (|has| |#1| (-821)))) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-1403 ((|#3| $) 15)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) NIL)) (-2082 (((-747)) 20)) (-3212 (($ $) NIL (|has| |#1| (-821)))) (-3276 (($) NIL T CONST)) (-3287 (($) 12 T CONST)) (-2448 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2513 (($ $ |#3|) NIL) (($ |#1| |#3|) 11)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 17) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-599 |#1| |#2| |#3|) (-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-821)) (-6 (-821)) |%noBranch|) (-15 -2513 ($ $ |#3|)) (-15 -2513 ($ |#1| |#3|)) (-15 -1394 (|#1| $)) (-15 -1403 (|#3| $)))) (-38 |#2|) (-170) (|SubsetCategory| (-703) |#2|)) (T -599))
-((-2513 (*1 *1 *1 *2) (-12 (-4 *4 (-170)) (-5 *1 (-599 *3 *4 *2)) (-4 *3 (-38 *4)) (-4 *2 (|SubsetCategory| (-703) *4)))) (-2513 (*1 *1 *2 *3) (-12 (-4 *4 (-170)) (-5 *1 (-599 *2 *4 *3)) (-4 *2 (-38 *4)) (-4 *3 (|SubsetCategory| (-703) *4)))) (-1394 (*1 *2 *1) (-12 (-4 *3 (-170)) (-4 *2 (-38 *3)) (-5 *1 (-599 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-703) *3)))) (-1403 (*1 *2 *1) (-12 (-4 *4 (-170)) (-4 *2 (|SubsetCategory| (-703) *4)) (-5 *1 (-599 *3 *4 *2)) (-4 *3 (-38 *4)))))
-(-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-821)) (-6 (-821)) |%noBranch|) (-15 -2513 ($ $ |#3|)) (-15 -2513 ($ |#1| |#3|)) (-15 -1394 (|#1| $)) (-15 -1403 (|#3| $))))
-((-3794 ((|#2| |#2| (-1143) (-1143)) 18)))
-(((-600 |#1| |#2|) (-10 -7 (-15 -3794 (|#2| |#2| (-1143) (-1143)))) (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))) (-13 (-1165) (-930) (-29 |#1|))) (T -600))
-((-3794 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-600 *4 *2)) (-4 *2 (-13 (-1165) (-930) (-29 *4))))))
-(-10 -7 (-15 -3794 (|#2| |#2| (-1143) (-1143))))
-((-3834 (((-112) $ $) 56)) (-1763 (((-112) $) 52)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-1892 ((|#1| $) 49)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3866 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1358 (((-2 (|:| -2285 $) (|:| -3658 (-400 |#2|))) (-400 |#2|)) 97 (|has| |#1| (-356)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 85) (((-3 |#2| "failed") $) 81)) (-2659 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL) ((|#2| $) NIL)) (-2095 (($ $ $) NIL (|has| |#1| (-356)))) (-2070 (($ $) 24)) (-2114 (((-3 $ "failed") $) 75)) (-2067 (($ $ $) NIL (|has| |#1| (-356)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-2088 (((-549) $) 19)) (-2675 (((-112) $) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2205 (((-112) $) 36)) (-2246 (($ |#1| (-549)) 21)) (-2043 ((|#1| $) 51)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-356)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) 87 (|has| |#1| (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 100 (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-2042 (((-3 $ "failed") $ $) 79)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-3684 (((-747) $) 99 (|has| |#1| (-356)))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 98 (|has| |#1| (-356)))) (-3456 (($ $ (-1 |#2| |#2|)) 66) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1143)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-747)) NIL (|has| |#2| (-227))) (($ $) NIL (|has| |#2| (-227)))) (-3701 (((-549) $) 34)) (-2845 (((-400 |#2|) $) 42)) (-3846 (((-834) $) 62) (($ (-549)) 32) (($ $) NIL) (($ (-400 (-549))) NIL (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) 31) (($ |#2|) 22)) (-2152 ((|#1| $ (-549)) 63)) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) 29)) (-1498 (((-112) $ $) NIL)) (-3276 (($) 9 T CONST)) (-3287 (($) 12 T CONST)) (-1702 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1143)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-747)) NIL (|has| |#2| (-227))) (($ $) NIL (|has| |#2| (-227)))) (-2389 (((-112) $ $) 17)) (-2500 (($ $) 46) (($ $ $) NIL)) (-2486 (($ $ $) 76)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 26) (($ $ $) 44)))
-(((-601 |#1| |#2|) (-13 (-225 |#2|) (-541) (-594 (-400 |#2|)) (-404 |#1|) (-1009 |#2|) (-10 -8 (-15 -2205 ((-112) $)) (-15 -3701 ((-549) $)) (-15 -2088 ((-549) $)) (-15 -2070 ($ $)) (-15 -2043 (|#1| $)) (-15 -1892 (|#1| $)) (-15 -2152 (|#1| $ (-549))) (-15 -2246 ($ |#1| (-549))) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-6 (-300)) (-15 -1358 ((-2 (|:| -2285 $) (|:| -3658 (-400 |#2|))) (-400 |#2|)))) |%noBranch|))) (-541) (-1202 |#1|)) (T -601))
-((-2205 (*1 *2 *1) (-12 (-4 *3 (-541)) (-5 *2 (-112)) (-5 *1 (-601 *3 *4)) (-4 *4 (-1202 *3)))) (-3701 (*1 *2 *1) (-12 (-4 *3 (-541)) (-5 *2 (-549)) (-5 *1 (-601 *3 *4)) (-4 *4 (-1202 *3)))) (-2088 (*1 *2 *1) (-12 (-4 *3 (-541)) (-5 *2 (-549)) (-5 *1 (-601 *3 *4)) (-4 *4 (-1202 *3)))) (-2070 (*1 *1 *1) (-12 (-4 *2 (-541)) (-5 *1 (-601 *2 *3)) (-4 *3 (-1202 *2)))) (-2043 (*1 *2 *1) (-12 (-4 *2 (-541)) (-5 *1 (-601 *2 *3)) (-4 *3 (-1202 *2)))) (-1892 (*1 *2 *1) (-12 (-4 *2 (-541)) (-5 *1 (-601 *2 *3)) (-4 *3 (-1202 *2)))) (-2152 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *2 (-541)) (-5 *1 (-601 *2 *4)) (-4 *4 (-1202 *2)))) (-2246 (*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-4 *2 (-541)) (-5 *1 (-601 *2 *4)) (-4 *4 (-1202 *2)))) (-1358 (*1 *2 *3) (-12 (-4 *4 (-356)) (-4 *4 (-541)) (-4 *5 (-1202 *4)) (-5 *2 (-2 (|:| -2285 (-601 *4 *5)) (|:| -3658 (-400 *5)))) (-5 *1 (-601 *4 *5)) (-5 *3 (-400 *5)))))
-(-13 (-225 |#2|) (-541) (-594 (-400 |#2|)) (-404 |#1|) (-1009 |#2|) (-10 -8 (-15 -2205 ((-112) $)) (-15 -3701 ((-549) $)) (-15 -2088 ((-549) $)) (-15 -2070 ($ $)) (-15 -2043 (|#1| $)) (-15 -1892 (|#1| $)) (-15 -2152 (|#1| $ (-549))) (-15 -2246 ($ |#1| (-549))) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-6 (-300)) (-15 -1358 ((-2 (|:| -2285 $) (|:| -3658 (-400 |#2|))) (-400 |#2|)))) |%noBranch|)))
-((-2866 (((-621 |#6|) (-621 |#4|) (-112)) 47)) (-2967 ((|#6| |#6|) 40)))
-(((-602 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2967 (|#6| |#6|)) (-15 -2866 ((-621 |#6|) (-621 |#4|) (-112)))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1038 |#1| |#2| |#3| |#4|) (-1076 |#1| |#2| |#3| |#4|)) (T -602))
-((-2866 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 *10)) (-5 *1 (-602 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *10 (-1076 *5 *6 *7 *8)))) (-2967 (*1 *2 *2) (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *1 (-602 *3 *4 *5 *6 *7 *2)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *2 (-1076 *3 *4 *5 *6)))))
-(-10 -7 (-15 -2967 (|#6| |#6|)) (-15 -2866 ((-621 |#6|) (-621 |#4|) (-112))))
-((-1936 (((-112) |#3| (-747) (-621 |#3|)) 23)) (-2256 (((-3 (-2 (|:| |polfac| (-621 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-621 (-1139 |#3|)))) "failed") |#3| (-621 (-1139 |#3|)) (-2 (|:| |contp| |#3|) (|:| -4024 (-621 (-2 (|:| |irr| |#4|) (|:| -2495 (-549)))))) (-621 |#3|) (-621 |#1|) (-621 |#3|)) 55)))
-(((-603 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1936 ((-112) |#3| (-747) (-621 |#3|))) (-15 -2256 ((-3 (-2 (|:| |polfac| (-621 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-621 (-1139 |#3|)))) "failed") |#3| (-621 (-1139 |#3|)) (-2 (|:| |contp| |#3|) (|:| -4024 (-621 (-2 (|:| |irr| |#4|) (|:| -2495 (-549)))))) (-621 |#3|) (-621 |#1|) (-621 |#3|)))) (-823) (-769) (-300) (-920 |#3| |#2| |#1|)) (T -603))
-((-2256 (*1 *2 *3 *4 *5 *6 *7 *6) (|partial| -12 (-5 *5 (-2 (|:| |contp| *3) (|:| -4024 (-621 (-2 (|:| |irr| *10) (|:| -2495 (-549))))))) (-5 *6 (-621 *3)) (-5 *7 (-621 *8)) (-4 *8 (-823)) (-4 *3 (-300)) (-4 *10 (-920 *3 *9 *8)) (-4 *9 (-769)) (-5 *2 (-2 (|:| |polfac| (-621 *10)) (|:| |correct| *3) (|:| |corrfact| (-621 (-1139 *3))))) (-5 *1 (-603 *8 *9 *3 *10)) (-5 *4 (-621 (-1139 *3))))) (-1936 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-747)) (-5 *5 (-621 *3)) (-4 *3 (-300)) (-4 *6 (-823)) (-4 *7 (-769)) (-5 *2 (-112)) (-5 *1 (-603 *6 *7 *3 *8)) (-4 *8 (-920 *3 *7 *6)))))
-(-10 -7 (-15 -1936 ((-112) |#3| (-747) (-621 |#3|))) (-15 -2256 ((-3 (-2 (|:| |polfac| (-621 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-621 (-1139 |#3|)))) "failed") |#3| (-621 (-1139 |#3|)) (-2 (|:| |contp| |#3|) (|:| -4024 (-621 (-2 (|:| |irr| |#4|) (|:| -2495 (-549)))))) (-621 |#3|) (-621 |#1|) (-621 |#3|))))
-((-3834 (((-112) $ $) NIL)) (-2203 (((-1148) $) 11)) (-2190 (((-1148) $) 9)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-604) (-13 (-1050) (-10 -8 (-15 -2190 ((-1148) $)) (-15 -2203 ((-1148) $))))) (T -604))
-((-2190 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-604)))) (-2203 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-604)))))
-(-13 (-1050) (-10 -8 (-15 -2190 ((-1148) $)) (-15 -2203 ((-1148) $))))
-((-3834 (((-112) $ $) NIL)) (-3304 (((-621 |#1|) $) NIL)) (-1682 (($) NIL T CONST)) (-2114 (((-3 $ "failed") $) NIL)) (-2675 (((-112) $) NIL)) (-4273 (($ $) 67)) (-3632 (((-640 |#1| |#2|) $) 52)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 70)) (-3008 (((-621 (-287 |#2|)) $ $) 33)) (-3990 (((-1087) $) NIL)) (-2719 (($ (-640 |#1| |#2|)) 48)) (-1955 (($ $ $) NIL)) (-3293 (($ $ $) NIL)) (-3846 (((-834) $) 58) (((-1241 |#1| |#2|) $) NIL) (((-1246 |#1| |#2|) $) 66)) (-3287 (($) 53 T CONST)) (-2018 (((-621 (-2 (|:| |k| (-648 |#1|)) (|:| |c| |#2|))) $) 31)) (-2130 (((-621 (-640 |#1| |#2|)) (-621 |#1|)) 65)) (-2631 (((-621 (-2 (|:| |k| (-864 |#1|)) (|:| |c| |#2|))) $) 37)) (-2389 (((-112) $ $) 54)) (-2513 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ $ $) 44)))
-(((-605 |#1| |#2| |#3|) (-13 (-465) (-10 -8 (-15 -2719 ($ (-640 |#1| |#2|))) (-15 -3632 ((-640 |#1| |#2|) $)) (-15 -2631 ((-621 (-2 (|:| |k| (-864 |#1|)) (|:| |c| |#2|))) $)) (-15 -3846 ((-1241 |#1| |#2|) $)) (-15 -3846 ((-1246 |#1| |#2|) $)) (-15 -4273 ($ $)) (-15 -3304 ((-621 |#1|) $)) (-15 -2130 ((-621 (-640 |#1| |#2|)) (-621 |#1|))) (-15 -2018 ((-621 (-2 (|:| |k| (-648 |#1|)) (|:| |c| |#2|))) $)) (-15 -3008 ((-621 (-287 |#2|)) $ $)))) (-823) (-13 (-170) (-694 (-400 (-549)))) (-892)) (T -605))
-((-2719 (*1 *1 *2) (-12 (-5 *2 (-640 *3 *4)) (-4 *3 (-823)) (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-5 *1 (-605 *3 *4 *5)) (-14 *5 (-892)))) (-3632 (*1 *2 *1) (-12 (-5 *2 (-640 *3 *4)) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))) (-2631 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |k| (-864 *3)) (|:| |c| *4)))) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-1241 *3 *4)) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-1246 *3 *4)) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))) (-4273 (*1 *1 *1) (-12 (-5 *1 (-605 *2 *3 *4)) (-4 *2 (-823)) (-4 *3 (-13 (-170) (-694 (-400 (-549))))) (-14 *4 (-892)))) (-3304 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))) (-2130 (*1 *2 *3) (-12 (-5 *3 (-621 *4)) (-4 *4 (-823)) (-5 *2 (-621 (-640 *4 *5))) (-5 *1 (-605 *4 *5 *6)) (-4 *5 (-13 (-170) (-694 (-400 (-549))))) (-14 *6 (-892)))) (-2018 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |k| (-648 *3)) (|:| |c| *4)))) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))) (-3008 (*1 *2 *1 *1) (-12 (-5 *2 (-621 (-287 *4))) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))))
-(-13 (-465) (-10 -8 (-15 -2719 ($ (-640 |#1| |#2|))) (-15 -3632 ((-640 |#1| |#2|) $)) (-15 -2631 ((-621 (-2 (|:| |k| (-864 |#1|)) (|:| |c| |#2|))) $)) (-15 -3846 ((-1241 |#1| |#2|) $)) (-15 -3846 ((-1246 |#1| |#2|) $)) (-15 -4273 ($ $)) (-15 -3304 ((-621 |#1|) $)) (-15 -2130 ((-621 (-640 |#1| |#2|)) (-621 |#1|))) (-15 -2018 ((-621 (-2 (|:| |k| (-648 |#1|)) (|:| |c| |#2|))) $)) (-15 -3008 ((-621 (-287 |#2|)) $ $))))
-((-2866 (((-621 (-1113 |#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|)))) (-621 (-756 |#1| (-836 |#2|))) (-112)) 72) (((-621 (-1015 |#1| |#2|)) (-621 (-756 |#1| (-836 |#2|))) (-112)) 58)) (-2819 (((-112) (-621 (-756 |#1| (-836 |#2|)))) 23)) (-2672 (((-621 (-1113 |#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|)))) (-621 (-756 |#1| (-836 |#2|))) (-112)) 71)) (-2220 (((-621 (-1015 |#1| |#2|)) (-621 (-756 |#1| (-836 |#2|))) (-112)) 57)) (-3989 (((-621 (-756 |#1| (-836 |#2|))) (-621 (-756 |#1| (-836 |#2|)))) 27)) (-3532 (((-3 (-621 (-756 |#1| (-836 |#2|))) "failed") (-621 (-756 |#1| (-836 |#2|)))) 26)))
-(((-606 |#1| |#2|) (-10 -7 (-15 -2819 ((-112) (-621 (-756 |#1| (-836 |#2|))))) (-15 -3532 ((-3 (-621 (-756 |#1| (-836 |#2|))) "failed") (-621 (-756 |#1| (-836 |#2|))))) (-15 -3989 ((-621 (-756 |#1| (-836 |#2|))) (-621 (-756 |#1| (-836 |#2|))))) (-15 -2220 ((-621 (-1015 |#1| |#2|)) (-621 (-756 |#1| (-836 |#2|))) (-112))) (-15 -2672 ((-621 (-1113 |#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|)))) (-621 (-756 |#1| (-836 |#2|))) (-112))) (-15 -2866 ((-621 (-1015 |#1| |#2|)) (-621 (-756 |#1| (-836 |#2|))) (-112))) (-15 -2866 ((-621 (-1113 |#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|)))) (-621 (-756 |#1| (-836 |#2|))) (-112)))) (-444) (-621 (-1143))) (T -606))
-((-2866 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444)) (-14 *6 (-621 (-1143))) (-5 *2 (-621 (-1113 *5 (-521 (-836 *6)) (-836 *6) (-756 *5 (-836 *6))))) (-5 *1 (-606 *5 *6)))) (-2866 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444)) (-14 *6 (-621 (-1143))) (-5 *2 (-621 (-1015 *5 *6))) (-5 *1 (-606 *5 *6)))) (-2672 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444)) (-14 *6 (-621 (-1143))) (-5 *2 (-621 (-1113 *5 (-521 (-836 *6)) (-836 *6) (-756 *5 (-836 *6))))) (-5 *1 (-606 *5 *6)))) (-2220 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444)) (-14 *6 (-621 (-1143))) (-5 *2 (-621 (-1015 *5 *6))) (-5 *1 (-606 *5 *6)))) (-3989 (*1 *2 *2) (-12 (-5 *2 (-621 (-756 *3 (-836 *4)))) (-4 *3 (-444)) (-14 *4 (-621 (-1143))) (-5 *1 (-606 *3 *4)))) (-3532 (*1 *2 *2) (|partial| -12 (-5 *2 (-621 (-756 *3 (-836 *4)))) (-4 *3 (-444)) (-14 *4 (-621 (-1143))) (-5 *1 (-606 *3 *4)))) (-2819 (*1 *2 *3) (-12 (-5 *3 (-621 (-756 *4 (-836 *5)))) (-4 *4 (-444)) (-14 *5 (-621 (-1143))) (-5 *2 (-112)) (-5 *1 (-606 *4 *5)))))
-(-10 -7 (-15 -2819 ((-112) (-621 (-756 |#1| (-836 |#2|))))) (-15 -3532 ((-3 (-621 (-756 |#1| (-836 |#2|))) "failed") (-621 (-756 |#1| (-836 |#2|))))) (-15 -3989 ((-621 (-756 |#1| (-836 |#2|))) (-621 (-756 |#1| (-836 |#2|))))) (-15 -2220 ((-621 (-1015 |#1| |#2|)) (-621 (-756 |#1| (-836 |#2|))) (-112))) (-15 -2672 ((-621 (-1113 |#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|)))) (-621 (-756 |#1| (-836 |#2|))) (-112))) (-15 -2866 ((-621 (-1015 |#1| |#2|)) (-621 (-756 |#1| (-836 |#2|))) (-112))) (-15 -2866 ((-621 (-1113 |#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|)))) (-621 (-756 |#1| (-836 |#2|))) (-112))))
-((-1664 (($ $) 38)) (-1512 (($ $) 21)) (-1640 (($ $) 37)) (-1486 (($ $) 22)) (-1685 (($ $) 36)) (-1539 (($ $) 23)) (-1425 (($) 48)) (-3632 (($ $) 45)) (-1714 (($ $) 17)) (-2204 (($ $ (-1059 $)) 7) (($ $ (-1143)) 6)) (-2719 (($ $) 46)) (-1430 (($ $) 15)) (-1469 (($ $) 16)) (-1698 (($ $) 35)) (-1552 (($ $) 24)) (-1675 (($ $) 34)) (-1526 (($ $) 25)) (-1651 (($ $) 33)) (-1501 (($ $) 26)) (-1733 (($ $) 44)) (-1587 (($ $) 32)) (-1710 (($ $) 43)) (-1564 (($ $) 31)) (-1758 (($ $) 42)) (-1612 (($ $) 30)) (-1934 (($ $) 41)) (-1627 (($ $) 29)) (-1745 (($ $) 40)) (-1600 (($ $) 28)) (-1722 (($ $) 39)) (-1576 (($ $) 27)) (-2024 (($ $) 19)) (-3320 (($ $) 20)) (-1846 (($ $) 18)) (** (($ $ $) 47)))
+((-3845 (*1 *1 *2) (-12 (-4 *1 (-598 *2)) (-4 *2 (-1018)))))
+(-13 (-1018) (-624 |t#1|) (-10 -8 (-15 -3845 ($ |t#1|))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-703) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-1741 (((-549) $) NIL (|has| |#1| (-821)))) (-3034 (($) NIL T CONST)) (-2612 (((-3 $ "failed") $) NIL)) (-2357 (((-112) $) NIL (|has| |#1| (-821)))) (-2297 (((-112) $) NIL)) (-1392 ((|#1| $) 13)) (-1992 (((-112) $) NIL (|has| |#1| (-821)))) (-2861 (($ $ $) NIL (|has| |#1| (-821)))) (-3574 (($ $ $) NIL (|has| |#1| (-821)))) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-1404 ((|#3| $) 15)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) NIL)) (-2371 (((-747)) 20)) (-2199 (($ $) NIL (|has| |#1| (-821)))) (-3274 (($) NIL T CONST)) (-3286 (($) 12 T CONST)) (-2447 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2511 (($ $ |#3|) NIL) (($ |#1| |#3|) 11)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 17) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-599 |#1| |#2| |#3|) (-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-821)) (-6 (-821)) |%noBranch|) (-15 -2511 ($ $ |#3|)) (-15 -2511 ($ |#1| |#3|)) (-15 -1392 (|#1| $)) (-15 -1404 (|#3| $)))) (-38 |#2|) (-170) (|SubsetCategory| (-703) |#2|)) (T -599))
+((-2511 (*1 *1 *1 *2) (-12 (-4 *4 (-170)) (-5 *1 (-599 *3 *4 *2)) (-4 *3 (-38 *4)) (-4 *2 (|SubsetCategory| (-703) *4)))) (-2511 (*1 *1 *2 *3) (-12 (-4 *4 (-170)) (-5 *1 (-599 *2 *4 *3)) (-4 *2 (-38 *4)) (-4 *3 (|SubsetCategory| (-703) *4)))) (-1392 (*1 *2 *1) (-12 (-4 *3 (-170)) (-4 *2 (-38 *3)) (-5 *1 (-599 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-703) *3)))) (-1404 (*1 *2 *1) (-12 (-4 *4 (-170)) (-4 *2 (|SubsetCategory| (-703) *4)) (-5 *1 (-599 *3 *4 *2)) (-4 *3 (-38 *4)))))
+(-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-821)) (-6 (-821)) |%noBranch|) (-15 -2511 ($ $ |#3|)) (-15 -2511 ($ |#1| |#3|)) (-15 -1392 (|#1| $)) (-15 -1404 (|#3| $))))
+((-2817 ((|#2| |#2| (-1142) (-1142)) 18)))
+(((-600 |#1| |#2|) (-10 -7 (-15 -2817 (|#2| |#2| (-1142) (-1142)))) (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))) (-13 (-1164) (-930) (-29 |#1|))) (T -600))
+((-2817 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-600 *4 *2)) (-4 *2 (-13 (-1164) (-930) (-29 *4))))))
+(-10 -7 (-15 -2817 (|#2| |#2| (-1142) (-1142))))
+((-3832 (((-112) $ $) 56)) (-3210 (((-112) $) 52)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-1994 ((|#1| $) 49)) (-2416 (((-3 $ "failed") $ $) NIL)) (-2680 (((-112) $ $) NIL (|has| |#1| (-356)))) (-3921 (((-2 (|:| -2507 $) (|:| -2848 (-400 |#2|))) (-400 |#2|)) 97 (|has| |#1| (-356)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 85) (((-3 |#2| "failed") $) 81)) (-2657 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL) ((|#2| $) NIL)) (-2091 (($ $ $) NIL (|has| |#1| (-356)))) (-2068 (($ $) 24)) (-2612 (((-3 $ "failed") $) 75)) (-2065 (($ $ $) NIL (|has| |#1| (-356)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-2729 (((-549) $) 19)) (-2297 (((-112) $) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2988 (((-112) $) 36)) (-2244 (($ |#1| (-549)) 21)) (-2042 ((|#1| $) 51)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-356)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) 87 (|has| |#1| (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 100 (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-2040 (((-3 $ "failed") $ $) 79)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-1335 (((-747) $) 99 (|has| |#1| (-356)))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 98 (|has| |#1| (-356)))) (-3455 (($ $ (-1 |#2| |#2|)) 66) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1142)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-747)) NIL (|has| |#2| (-227))) (($ $) NIL (|has| |#2| (-227)))) (-3977 (((-549) $) 34)) (-2843 (((-400 |#2|) $) 42)) (-3845 (((-834) $) 62) (($ (-549)) 32) (($ $) NIL) (($ (-400 (-549))) NIL (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) 31) (($ |#2|) 22)) (-4068 ((|#1| $ (-549)) 63)) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) 29)) (-2441 (((-112) $ $) NIL)) (-3274 (($) 9 T CONST)) (-3286 (($) 12 T CONST)) (-1699 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1142)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-747)) NIL (|has| |#2| (-227))) (($ $) NIL (|has| |#2| (-227)))) (-2387 (((-112) $ $) 17)) (-2498 (($ $) 46) (($ $ $) NIL)) (-2484 (($ $ $) 76)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 26) (($ $ $) 44)))
+(((-601 |#1| |#2|) (-13 (-225 |#2|) (-541) (-594 (-400 |#2|)) (-404 |#1|) (-1009 |#2|) (-10 -8 (-15 -2988 ((-112) $)) (-15 -3977 ((-549) $)) (-15 -2729 ((-549) $)) (-15 -2068 ($ $)) (-15 -2042 (|#1| $)) (-15 -1994 (|#1| $)) (-15 -4068 (|#1| $ (-549))) (-15 -2244 ($ |#1| (-549))) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-6 (-300)) (-15 -3921 ((-2 (|:| -2507 $) (|:| -2848 (-400 |#2|))) (-400 |#2|)))) |%noBranch|))) (-541) (-1201 |#1|)) (T -601))
+((-2988 (*1 *2 *1) (-12 (-4 *3 (-541)) (-5 *2 (-112)) (-5 *1 (-601 *3 *4)) (-4 *4 (-1201 *3)))) (-3977 (*1 *2 *1) (-12 (-4 *3 (-541)) (-5 *2 (-549)) (-5 *1 (-601 *3 *4)) (-4 *4 (-1201 *3)))) (-2729 (*1 *2 *1) (-12 (-4 *3 (-541)) (-5 *2 (-549)) (-5 *1 (-601 *3 *4)) (-4 *4 (-1201 *3)))) (-2068 (*1 *1 *1) (-12 (-4 *2 (-541)) (-5 *1 (-601 *2 *3)) (-4 *3 (-1201 *2)))) (-2042 (*1 *2 *1) (-12 (-4 *2 (-541)) (-5 *1 (-601 *2 *3)) (-4 *3 (-1201 *2)))) (-1994 (*1 *2 *1) (-12 (-4 *2 (-541)) (-5 *1 (-601 *2 *3)) (-4 *3 (-1201 *2)))) (-4068 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *2 (-541)) (-5 *1 (-601 *2 *4)) (-4 *4 (-1201 *2)))) (-2244 (*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-4 *2 (-541)) (-5 *1 (-601 *2 *4)) (-4 *4 (-1201 *2)))) (-3921 (*1 *2 *3) (-12 (-4 *4 (-356)) (-4 *4 (-541)) (-4 *5 (-1201 *4)) (-5 *2 (-2 (|:| -2507 (-601 *4 *5)) (|:| -2848 (-400 *5)))) (-5 *1 (-601 *4 *5)) (-5 *3 (-400 *5)))))
+(-13 (-225 |#2|) (-541) (-594 (-400 |#2|)) (-404 |#1|) (-1009 |#2|) (-10 -8 (-15 -2988 ((-112) $)) (-15 -3977 ((-549) $)) (-15 -2729 ((-549) $)) (-15 -2068 ($ $)) (-15 -2042 (|#1| $)) (-15 -1994 (|#1| $)) (-15 -4068 (|#1| $ (-549))) (-15 -2244 ($ |#1| (-549))) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-6 (-300)) (-15 -3921 ((-2 (|:| -2507 $) (|:| -2848 (-400 |#2|))) (-400 |#2|)))) |%noBranch|)))
+((-3587 (((-621 |#6|) (-621 |#4|) (-112)) 47)) (-4272 ((|#6| |#6|) 40)))
+(((-602 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -4272 (|#6| |#6|)) (-15 -3587 ((-621 |#6|) (-621 |#4|) (-112)))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1038 |#1| |#2| |#3| |#4|) (-1075 |#1| |#2| |#3| |#4|)) (T -602))
+((-3587 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 *10)) (-5 *1 (-602 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *10 (-1075 *5 *6 *7 *8)))) (-4272 (*1 *2 *2) (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *1 (-602 *3 *4 *5 *6 *7 *2)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *2 (-1075 *3 *4 *5 *6)))))
+(-10 -7 (-15 -4272 (|#6| |#6|)) (-15 -3587 ((-621 |#6|) (-621 |#4|) (-112))))
+((-3690 (((-112) |#3| (-747) (-621 |#3|)) 23)) (-2888 (((-3 (-2 (|:| |polfac| (-621 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-621 (-1138 |#3|)))) "failed") |#3| (-621 (-1138 |#3|)) (-2 (|:| |contp| |#3|) (|:| -3390 (-621 (-2 (|:| |irr| |#4|) (|:| -2129 (-549)))))) (-621 |#3|) (-621 |#1|) (-621 |#3|)) 55)))
+(((-603 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3690 ((-112) |#3| (-747) (-621 |#3|))) (-15 -2888 ((-3 (-2 (|:| |polfac| (-621 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-621 (-1138 |#3|)))) "failed") |#3| (-621 (-1138 |#3|)) (-2 (|:| |contp| |#3|) (|:| -3390 (-621 (-2 (|:| |irr| |#4|) (|:| -2129 (-549)))))) (-621 |#3|) (-621 |#1|) (-621 |#3|)))) (-823) (-769) (-300) (-920 |#3| |#2| |#1|)) (T -603))
+((-2888 (*1 *2 *3 *4 *5 *6 *7 *6) (|partial| -12 (-5 *5 (-2 (|:| |contp| *3) (|:| -3390 (-621 (-2 (|:| |irr| *10) (|:| -2129 (-549))))))) (-5 *6 (-621 *3)) (-5 *7 (-621 *8)) (-4 *8 (-823)) (-4 *3 (-300)) (-4 *10 (-920 *3 *9 *8)) (-4 *9 (-769)) (-5 *2 (-2 (|:| |polfac| (-621 *10)) (|:| |correct| *3) (|:| |corrfact| (-621 (-1138 *3))))) (-5 *1 (-603 *8 *9 *3 *10)) (-5 *4 (-621 (-1138 *3))))) (-3690 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-747)) (-5 *5 (-621 *3)) (-4 *3 (-300)) (-4 *6 (-823)) (-4 *7 (-769)) (-5 *2 (-112)) (-5 *1 (-603 *6 *7 *3 *8)) (-4 *8 (-920 *3 *7 *6)))))
+(-10 -7 (-15 -3690 ((-112) |#3| (-747) (-621 |#3|))) (-15 -2888 ((-3 (-2 (|:| |polfac| (-621 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-621 (-1138 |#3|)))) "failed") |#3| (-621 (-1138 |#3|)) (-2 (|:| |contp| |#3|) (|:| -3390 (-621 (-2 (|:| |irr| |#4|) (|:| -2129 (-549)))))) (-621 |#3|) (-621 |#1|) (-621 |#3|))))
+((-3832 (((-112) $ $) NIL)) (-2200 (((-1101) $) 11)) (-2187 (((-1101) $) 9)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 19) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-604) (-13 (-1049) (-10 -8 (-15 -2187 ((-1101) $)) (-15 -2200 ((-1101) $))))) (T -604))
+((-2187 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-604)))) (-2200 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-604)))))
+(-13 (-1049) (-10 -8 (-15 -2187 ((-1101) $)) (-15 -2200 ((-1101) $))))
+((-3832 (((-112) $ $) NIL)) (-3302 (((-621 |#1|) $) NIL)) (-3034 (($) NIL T CONST)) (-2612 (((-3 $ "failed") $) NIL)) (-2297 (((-112) $) NIL)) (-3626 (($ $) 67)) (-3631 (((-640 |#1| |#2|) $) 52)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 70)) (-3392 (((-621 (-287 |#2|)) $ $) 33)) (-3988 (((-1086) $) NIL)) (-2717 (($ (-640 |#1| |#2|)) 48)) (-1795 (($ $ $) NIL)) (-3870 (($ $ $) NIL)) (-3845 (((-834) $) 58) (((-1240 |#1| |#2|) $) NIL) (((-1245 |#1| |#2|) $) 66)) (-3286 (($) 53 T CONST)) (-3264 (((-621 (-2 (|:| |k| (-648 |#1|)) (|:| |c| |#2|))) $) 31)) (-3666 (((-621 (-640 |#1| |#2|)) (-621 |#1|)) 65)) (-2087 (((-621 (-2 (|:| |k| (-864 |#1|)) (|:| |c| |#2|))) $) 37)) (-2387 (((-112) $ $) 54)) (-2511 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ $ $) 44)))
+(((-605 |#1| |#2| |#3|) (-13 (-465) (-10 -8 (-15 -2717 ($ (-640 |#1| |#2|))) (-15 -3631 ((-640 |#1| |#2|) $)) (-15 -2087 ((-621 (-2 (|:| |k| (-864 |#1|)) (|:| |c| |#2|))) $)) (-15 -3845 ((-1240 |#1| |#2|) $)) (-15 -3845 ((-1245 |#1| |#2|) $)) (-15 -3626 ($ $)) (-15 -3302 ((-621 |#1|) $)) (-15 -3666 ((-621 (-640 |#1| |#2|)) (-621 |#1|))) (-15 -3264 ((-621 (-2 (|:| |k| (-648 |#1|)) (|:| |c| |#2|))) $)) (-15 -3392 ((-621 (-287 |#2|)) $ $)))) (-823) (-13 (-170) (-694 (-400 (-549)))) (-892)) (T -605))
+((-2717 (*1 *1 *2) (-12 (-5 *2 (-640 *3 *4)) (-4 *3 (-823)) (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-5 *1 (-605 *3 *4 *5)) (-14 *5 (-892)))) (-3631 (*1 *2 *1) (-12 (-5 *2 (-640 *3 *4)) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))) (-2087 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |k| (-864 *3)) (|:| |c| *4)))) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-1240 *3 *4)) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-1245 *3 *4)) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))) (-3626 (*1 *1 *1) (-12 (-5 *1 (-605 *2 *3 *4)) (-4 *2 (-823)) (-4 *3 (-13 (-170) (-694 (-400 (-549))))) (-14 *4 (-892)))) (-3302 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))) (-3666 (*1 *2 *3) (-12 (-5 *3 (-621 *4)) (-4 *4 (-823)) (-5 *2 (-621 (-640 *4 *5))) (-5 *1 (-605 *4 *5 *6)) (-4 *5 (-13 (-170) (-694 (-400 (-549))))) (-14 *6 (-892)))) (-3264 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |k| (-648 *3)) (|:| |c| *4)))) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))) (-3392 (*1 *2 *1 *1) (-12 (-5 *2 (-621 (-287 *4))) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))))
+(-13 (-465) (-10 -8 (-15 -2717 ($ (-640 |#1| |#2|))) (-15 -3631 ((-640 |#1| |#2|) $)) (-15 -2087 ((-621 (-2 (|:| |k| (-864 |#1|)) (|:| |c| |#2|))) $)) (-15 -3845 ((-1240 |#1| |#2|) $)) (-15 -3845 ((-1245 |#1| |#2|) $)) (-15 -3626 ($ $)) (-15 -3302 ((-621 |#1|) $)) (-15 -3666 ((-621 (-640 |#1| |#2|)) (-621 |#1|))) (-15 -3264 ((-621 (-2 (|:| |k| (-648 |#1|)) (|:| |c| |#2|))) $)) (-15 -3392 ((-621 (-287 |#2|)) $ $))))
+((-3587 (((-621 (-1112 |#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|)))) (-621 (-756 |#1| (-836 |#2|))) (-112)) 72) (((-621 (-1015 |#1| |#2|)) (-621 (-756 |#1| (-836 |#2|))) (-112)) 58)) (-1717 (((-112) (-621 (-756 |#1| (-836 |#2|)))) 23)) (-2182 (((-621 (-1112 |#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|)))) (-621 (-756 |#1| (-836 |#2|))) (-112)) 71)) (-3981 (((-621 (-1015 |#1| |#2|)) (-621 (-756 |#1| (-836 |#2|))) (-112)) 57)) (-1557 (((-621 (-756 |#1| (-836 |#2|))) (-621 (-756 |#1| (-836 |#2|)))) 27)) (-2264 (((-3 (-621 (-756 |#1| (-836 |#2|))) "failed") (-621 (-756 |#1| (-836 |#2|)))) 26)))
+(((-606 |#1| |#2|) (-10 -7 (-15 -1717 ((-112) (-621 (-756 |#1| (-836 |#2|))))) (-15 -2264 ((-3 (-621 (-756 |#1| (-836 |#2|))) "failed") (-621 (-756 |#1| (-836 |#2|))))) (-15 -1557 ((-621 (-756 |#1| (-836 |#2|))) (-621 (-756 |#1| (-836 |#2|))))) (-15 -3981 ((-621 (-1015 |#1| |#2|)) (-621 (-756 |#1| (-836 |#2|))) (-112))) (-15 -2182 ((-621 (-1112 |#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|)))) (-621 (-756 |#1| (-836 |#2|))) (-112))) (-15 -3587 ((-621 (-1015 |#1| |#2|)) (-621 (-756 |#1| (-836 |#2|))) (-112))) (-15 -3587 ((-621 (-1112 |#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|)))) (-621 (-756 |#1| (-836 |#2|))) (-112)))) (-444) (-621 (-1142))) (T -606))
+((-3587 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444)) (-14 *6 (-621 (-1142))) (-5 *2 (-621 (-1112 *5 (-521 (-836 *6)) (-836 *6) (-756 *5 (-836 *6))))) (-5 *1 (-606 *5 *6)))) (-3587 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444)) (-14 *6 (-621 (-1142))) (-5 *2 (-621 (-1015 *5 *6))) (-5 *1 (-606 *5 *6)))) (-2182 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444)) (-14 *6 (-621 (-1142))) (-5 *2 (-621 (-1112 *5 (-521 (-836 *6)) (-836 *6) (-756 *5 (-836 *6))))) (-5 *1 (-606 *5 *6)))) (-3981 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444)) (-14 *6 (-621 (-1142))) (-5 *2 (-621 (-1015 *5 *6))) (-5 *1 (-606 *5 *6)))) (-1557 (*1 *2 *2) (-12 (-5 *2 (-621 (-756 *3 (-836 *4)))) (-4 *3 (-444)) (-14 *4 (-621 (-1142))) (-5 *1 (-606 *3 *4)))) (-2264 (*1 *2 *2) (|partial| -12 (-5 *2 (-621 (-756 *3 (-836 *4)))) (-4 *3 (-444)) (-14 *4 (-621 (-1142))) (-5 *1 (-606 *3 *4)))) (-1717 (*1 *2 *3) (-12 (-5 *3 (-621 (-756 *4 (-836 *5)))) (-4 *4 (-444)) (-14 *5 (-621 (-1142))) (-5 *2 (-112)) (-5 *1 (-606 *4 *5)))))
+(-10 -7 (-15 -1717 ((-112) (-621 (-756 |#1| (-836 |#2|))))) (-15 -2264 ((-3 (-621 (-756 |#1| (-836 |#2|))) "failed") (-621 (-756 |#1| (-836 |#2|))))) (-15 -1557 ((-621 (-756 |#1| (-836 |#2|))) (-621 (-756 |#1| (-836 |#2|))))) (-15 -3981 ((-621 (-1015 |#1| |#2|)) (-621 (-756 |#1| (-836 |#2|))) (-112))) (-15 -2182 ((-621 (-1112 |#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|)))) (-621 (-756 |#1| (-836 |#2|))) (-112))) (-15 -3587 ((-621 (-1015 |#1| |#2|)) (-621 (-756 |#1| (-836 |#2|))) (-112))) (-15 -3587 ((-621 (-1112 |#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|)))) (-621 (-756 |#1| (-836 |#2|))) (-112))))
+((-1662 (($ $) 38)) (-1510 (($ $) 21)) (-1638 (($ $) 37)) (-1483 (($ $) 22)) (-1684 (($ $) 36)) (-1538 (($ $) 23)) (-1425 (($) 48)) (-3631 (($ $) 45)) (-1712 (($ $) 17)) (-2883 (($ $ (-1058 $)) 7) (($ $ (-1142)) 6)) (-2717 (($ $) 46)) (-1431 (($ $) 15)) (-1470 (($ $) 16)) (-1696 (($ $) 35)) (-1551 (($ $) 24)) (-1673 (($ $) 34)) (-1525 (($ $) 25)) (-1648 (($ $) 33)) (-1500 (($ $) 26)) (-1731 (($ $) 44)) (-1585 (($ $) 32)) (-1708 (($ $) 43)) (-1562 (($ $) 31)) (-1753 (($ $) 42)) (-1611 (($ $) 30)) (-1932 (($ $) 41)) (-1625 (($ $) 29)) (-1743 (($ $) 40)) (-1598 (($ $) 28)) (-1719 (($ $) 39)) (-1575 (($ $) 27)) (-3771 (($ $) 19)) (-4212 (($ $) 20)) (-2405 (($ $) 18)) (** (($ $ $) 47)))
(((-607) (-138)) (T -607))
-((-3320 (*1 *1 *1) (-4 *1 (-607))) (-2024 (*1 *1 *1) (-4 *1 (-607))) (-1846 (*1 *1 *1) (-4 *1 (-607))) (-1714 (*1 *1 *1) (-4 *1 (-607))) (-1469 (*1 *1 *1) (-4 *1 (-607))) (-1430 (*1 *1 *1) (-4 *1 (-607))))
-(-13 (-930) (-1165) (-10 -8 (-15 -3320 ($ $)) (-15 -2024 ($ $)) (-15 -1846 ($ $)) (-15 -1714 ($ $)) (-15 -1469 ($ $)) (-15 -1430 ($ $))))
-(((-35) . T) ((-94) . T) ((-277) . T) ((-484) . T) ((-930) . T) ((-1165) . T) ((-1168) . T))
-((-2834 (((-114) (-114)) 83)) (-1714 ((|#2| |#2|) 30)) (-2204 ((|#2| |#2| (-1059 |#2|)) 79) ((|#2| |#2| (-1143)) 52)) (-1430 ((|#2| |#2|) 29)) (-1469 ((|#2| |#2|) 31)) (-4285 (((-112) (-114)) 34)) (-2024 ((|#2| |#2|) 26)) (-3320 ((|#2| |#2|) 28)) (-1846 ((|#2| |#2|) 27)))
-(((-608 |#1| |#2|) (-10 -7 (-15 -4285 ((-112) (-114))) (-15 -2834 ((-114) (-114))) (-15 -3320 (|#2| |#2|)) (-15 -2024 (|#2| |#2|)) (-15 -1846 (|#2| |#2|)) (-15 -1714 (|#2| |#2|)) (-15 -1430 (|#2| |#2|)) (-15 -1469 (|#2| |#2|)) (-15 -2204 (|#2| |#2| (-1143))) (-15 -2204 (|#2| |#2| (-1059 |#2|)))) (-13 (-823) (-541)) (-13 (-423 |#1|) (-973) (-1165))) (T -608))
-((-2204 (*1 *2 *2 *3) (-12 (-5 *3 (-1059 *2)) (-4 *2 (-13 (-423 *4) (-973) (-1165))) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-608 *4 *2)))) (-2204 (*1 *2 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-608 *4 *2)) (-4 *2 (-13 (-423 *4) (-973) (-1165))))) (-1469 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2)) (-4 *2 (-13 (-423 *3) (-973) (-1165))))) (-1430 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2)) (-4 *2 (-13 (-423 *3) (-973) (-1165))))) (-1714 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2)) (-4 *2 (-13 (-423 *3) (-973) (-1165))))) (-1846 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2)) (-4 *2 (-13 (-423 *3) (-973) (-1165))))) (-2024 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2)) (-4 *2 (-13 (-423 *3) (-973) (-1165))))) (-3320 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2)) (-4 *2 (-13 (-423 *3) (-973) (-1165))))) (-2834 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *4)) (-4 *4 (-13 (-423 *3) (-973) (-1165))))) (-4285 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112)) (-5 *1 (-608 *4 *5)) (-4 *5 (-13 (-423 *4) (-973) (-1165))))))
-(-10 -7 (-15 -4285 ((-112) (-114))) (-15 -2834 ((-114) (-114))) (-15 -3320 (|#2| |#2|)) (-15 -2024 (|#2| |#2|)) (-15 -1846 (|#2| |#2|)) (-15 -1714 (|#2| |#2|)) (-15 -1430 (|#2| |#2|)) (-15 -1469 (|#2| |#2|)) (-15 -2204 (|#2| |#2| (-1143))) (-15 -2204 (|#2| |#2| (-1059 |#2|))))
-((-2651 (((-473 |#1| |#2|) (-241 |#1| |#2|)) 53)) (-3035 (((-621 (-241 |#1| |#2|)) (-621 (-473 |#1| |#2|))) 68)) (-1646 (((-473 |#1| |#2|) (-621 (-473 |#1| |#2|)) (-836 |#1|)) 70) (((-473 |#1| |#2|) (-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|)) (-836 |#1|)) 69)) (-3089 (((-2 (|:| |gblist| (-621 (-241 |#1| |#2|))) (|:| |gvlist| (-621 (-549)))) (-621 (-473 |#1| |#2|))) 108)) (-1814 (((-621 (-473 |#1| |#2|)) (-836 |#1|) (-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|))) 83)) (-3291 (((-2 (|:| |glbase| (-621 (-241 |#1| |#2|))) (|:| |glval| (-621 (-549)))) (-621 (-241 |#1| |#2|))) 118)) (-1994 (((-1226 |#2|) (-473 |#1| |#2|) (-621 (-473 |#1| |#2|))) 58)) (-3209 (((-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|))) 41)) (-3625 (((-241 |#1| |#2|) (-241 |#1| |#2|) (-621 (-241 |#1| |#2|))) 50)) (-1283 (((-241 |#1| |#2|) (-621 |#2|) (-241 |#1| |#2|) (-621 (-241 |#1| |#2|))) 91)))
-(((-609 |#1| |#2|) (-10 -7 (-15 -3089 ((-2 (|:| |gblist| (-621 (-241 |#1| |#2|))) (|:| |gvlist| (-621 (-549)))) (-621 (-473 |#1| |#2|)))) (-15 -3291 ((-2 (|:| |glbase| (-621 (-241 |#1| |#2|))) (|:| |glval| (-621 (-549)))) (-621 (-241 |#1| |#2|)))) (-15 -3035 ((-621 (-241 |#1| |#2|)) (-621 (-473 |#1| |#2|)))) (-15 -1646 ((-473 |#1| |#2|) (-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|)) (-836 |#1|))) (-15 -1646 ((-473 |#1| |#2|) (-621 (-473 |#1| |#2|)) (-836 |#1|))) (-15 -3209 ((-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|)))) (-15 -1994 ((-1226 |#2|) (-473 |#1| |#2|) (-621 (-473 |#1| |#2|)))) (-15 -1283 ((-241 |#1| |#2|) (-621 |#2|) (-241 |#1| |#2|) (-621 (-241 |#1| |#2|)))) (-15 -1814 ((-621 (-473 |#1| |#2|)) (-836 |#1|) (-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|)))) (-15 -3625 ((-241 |#1| |#2|) (-241 |#1| |#2|) (-621 (-241 |#1| |#2|)))) (-15 -2651 ((-473 |#1| |#2|) (-241 |#1| |#2|)))) (-621 (-1143)) (-444)) (T -609))
-((-2651 (*1 *2 *3) (-12 (-5 *3 (-241 *4 *5)) (-14 *4 (-621 (-1143))) (-4 *5 (-444)) (-5 *2 (-473 *4 *5)) (-5 *1 (-609 *4 *5)))) (-3625 (*1 *2 *2 *3) (-12 (-5 *3 (-621 (-241 *4 *5))) (-5 *2 (-241 *4 *5)) (-14 *4 (-621 (-1143))) (-4 *5 (-444)) (-5 *1 (-609 *4 *5)))) (-1814 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-621 (-473 *4 *5))) (-5 *3 (-836 *4)) (-14 *4 (-621 (-1143))) (-4 *5 (-444)) (-5 *1 (-609 *4 *5)))) (-1283 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-621 *6)) (-5 *4 (-621 (-241 *5 *6))) (-4 *6 (-444)) (-5 *2 (-241 *5 *6)) (-14 *5 (-621 (-1143))) (-5 *1 (-609 *5 *6)))) (-1994 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-473 *5 *6))) (-5 *3 (-473 *5 *6)) (-14 *5 (-621 (-1143))) (-4 *6 (-444)) (-5 *2 (-1226 *6)) (-5 *1 (-609 *5 *6)))) (-3209 (*1 *2 *2) (-12 (-5 *2 (-621 (-473 *3 *4))) (-14 *3 (-621 (-1143))) (-4 *4 (-444)) (-5 *1 (-609 *3 *4)))) (-1646 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-473 *5 *6))) (-5 *4 (-836 *5)) (-14 *5 (-621 (-1143))) (-5 *2 (-473 *5 *6)) (-5 *1 (-609 *5 *6)) (-4 *6 (-444)))) (-1646 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-621 (-473 *5 *6))) (-5 *4 (-836 *5)) (-14 *5 (-621 (-1143))) (-5 *2 (-473 *5 *6)) (-5 *1 (-609 *5 *6)) (-4 *6 (-444)))) (-3035 (*1 *2 *3) (-12 (-5 *3 (-621 (-473 *4 *5))) (-14 *4 (-621 (-1143))) (-4 *5 (-444)) (-5 *2 (-621 (-241 *4 *5))) (-5 *1 (-609 *4 *5)))) (-3291 (*1 *2 *3) (-12 (-14 *4 (-621 (-1143))) (-4 *5 (-444)) (-5 *2 (-2 (|:| |glbase| (-621 (-241 *4 *5))) (|:| |glval| (-621 (-549))))) (-5 *1 (-609 *4 *5)) (-5 *3 (-621 (-241 *4 *5))))) (-3089 (*1 *2 *3) (-12 (-5 *3 (-621 (-473 *4 *5))) (-14 *4 (-621 (-1143))) (-4 *5 (-444)) (-5 *2 (-2 (|:| |gblist| (-621 (-241 *4 *5))) (|:| |gvlist| (-621 (-549))))) (-5 *1 (-609 *4 *5)))))
-(-10 -7 (-15 -3089 ((-2 (|:| |gblist| (-621 (-241 |#1| |#2|))) (|:| |gvlist| (-621 (-549)))) (-621 (-473 |#1| |#2|)))) (-15 -3291 ((-2 (|:| |glbase| (-621 (-241 |#1| |#2|))) (|:| |glval| (-621 (-549)))) (-621 (-241 |#1| |#2|)))) (-15 -3035 ((-621 (-241 |#1| |#2|)) (-621 (-473 |#1| |#2|)))) (-15 -1646 ((-473 |#1| |#2|) (-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|)) (-836 |#1|))) (-15 -1646 ((-473 |#1| |#2|) (-621 (-473 |#1| |#2|)) (-836 |#1|))) (-15 -3209 ((-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|)))) (-15 -1994 ((-1226 |#2|) (-473 |#1| |#2|) (-621 (-473 |#1| |#2|)))) (-15 -1283 ((-241 |#1| |#2|) (-621 |#2|) (-241 |#1| |#2|) (-621 (-241 |#1| |#2|)))) (-15 -1814 ((-621 (-473 |#1| |#2|)) (-836 |#1|) (-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|)))) (-15 -3625 ((-241 |#1| |#2|) (-241 |#1| |#2|) (-621 (-241 |#1| |#2|)))) (-15 -2651 ((-473 |#1| |#2|) (-241 |#1| |#2|))))
-((-3834 (((-112) $ $) NIL (-1536 (|has| (-52) (-1067)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-1067))))) (-3733 (($) NIL) (($ (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))))) NIL)) (-1535 (((-1231) $ (-1125) (-1125)) NIL (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 (((-52) $ (-1125) (-52)) 16) (((-52) $ (-1143) (-52)) 17)) (-1717 (($ (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337)))) (-3490 (((-3 (-52) "failed") (-1125) $) NIL)) (-1682 (($) NIL T CONST)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-1067))))) (-2129 (($ (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) $) NIL (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337))) (((-3 (-52) "failed") (-1125) $) NIL)) (-3812 (($ (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-1067)))) (($ (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337)))) (-2557 (((-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-1 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) $ (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-1067)))) (((-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-1 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) $ (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-1 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337)))) (-1879 (((-52) $ (-1125) (-52)) NIL (|has| $ (-6 -4338)))) (-1809 (((-52) $ (-1125)) NIL)) (-2989 (((-621 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337))) (((-621 (-52)) $) NIL (|has| $ (-6 -4337)))) (-4114 (($ $) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-1125) $) NIL (|has| (-1125) (-823)))) (-1562 (((-621 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337))) (((-621 (-52)) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-1067)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-52) (-1067))))) (-1569 (((-1125) $) NIL (|has| (-1125) (-823)))) (-1868 (($ (-1 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4338))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-2753 (($ (-381)) 9)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (-1536 (|has| (-52) (-1067)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-1067))))) (-3449 (((-621 (-1125)) $) NIL)) (-2427 (((-112) (-1125) $) NIL)) (-3504 (((-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) $) NIL)) (-2751 (($ (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) $) NIL)) (-3303 (((-621 (-1125)) $) NIL)) (-3761 (((-112) (-1125) $) NIL)) (-3990 (((-1087) $) NIL (-1536 (|has| (-52) (-1067)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-1067))))) (-3646 (((-52) $) NIL (|has| (-1125) (-823)))) (-3779 (((-3 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) "failed") (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) $) NIL)) (-1642 (($ $ (-52)) NIL (|has| $ (-6 -4338)))) (-3325 (((-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) $) NIL)) (-1780 (((-112) (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))))) NIL (-12 (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))))) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-1067)))) (($ $ (-287 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))))) NIL (-12 (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))))) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-1067)))) (($ $ (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) NIL (-12 (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))))) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-1067)))) (($ $ (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))))) NIL (-12 (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))))) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-1067)))) (($ $ (-621 (-52)) (-621 (-52))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1067)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1067)))) (($ $ (-287 (-52))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1067)))) (($ $ (-621 (-287 (-52)))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-52) (-1067))))) (-2696 (((-621 (-52)) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 (((-52) $ (-1125)) 14) (((-52) $ (-1125) (-52)) NIL) (((-52) $ (-1143)) 15)) (-2898 (($) NIL) (($ (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))))) NIL)) (-4000 (((-747) (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337))) (((-747) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-1067)))) (((-747) (-52) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-52) (-1067)))) (((-747) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-594 (-525))))) (-3854 (($ (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))))) NIL)) (-3846 (((-834) $) NIL (-1536 (|has| (-52) (-593 (-834))) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-593 (-834)))))) (-3624 (($ (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))))) NIL)) (-3527 (((-112) (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (-1536 (|has| (-52) (-1067)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 (-52))) (-1067))))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-610) (-13 (-1156 (-1125) (-52)) (-10 -8 (-15 -2753 ($ (-381))) (-15 -4114 ($ $)) (-15 -3341 ((-52) $ (-1143))) (-15 -2254 ((-52) $ (-1143) (-52)))))) (T -610))
-((-2753 (*1 *1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-610)))) (-4114 (*1 *1 *1) (-5 *1 (-610))) (-3341 (*1 *2 *1 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-52)) (-5 *1 (-610)))) (-2254 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1143)) (-5 *1 (-610)))))
-(-13 (-1156 (-1125) (-52)) (-10 -8 (-15 -2753 ($ (-381))) (-15 -4114 ($ $)) (-15 -3341 ((-52) $ (-1143))) (-15 -2254 ((-52) $ (-1143) (-52)))))
-((-2513 (($ $ |#2|) 10)))
-(((-611 |#1| |#2|) (-10 -8 (-15 -2513 (|#1| |#1| |#2|))) (-612 |#2|) (-170)) (T -611))
-NIL
-(-10 -8 (-15 -2513 (|#1| |#1| |#2|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3854 (($ $ $) 29)) (-3846 (((-834) $) 11)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2513 (($ $ |#1|) 28 (|has| |#1| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
+((-4212 (*1 *1 *1) (-4 *1 (-607))) (-3771 (*1 *1 *1) (-4 *1 (-607))) (-2405 (*1 *1 *1) (-4 *1 (-607))) (-1712 (*1 *1 *1) (-4 *1 (-607))) (-1470 (*1 *1 *1) (-4 *1 (-607))) (-1431 (*1 *1 *1) (-4 *1 (-607))))
+(-13 (-930) (-1164) (-10 -8 (-15 -4212 ($ $)) (-15 -3771 ($ $)) (-15 -2405 ($ $)) (-15 -1712 ($ $)) (-15 -1470 ($ $)) (-15 -1431 ($ $))))
+(((-35) . T) ((-94) . T) ((-277) . T) ((-484) . T) ((-930) . T) ((-1164) . T) ((-1167) . T))
+((-3500 (((-114) (-114)) 83)) (-1712 ((|#2| |#2|) 30)) (-2883 ((|#2| |#2| (-1058 |#2|)) 79) ((|#2| |#2| (-1142)) 52)) (-1431 ((|#2| |#2|) 29)) (-1470 ((|#2| |#2|) 31)) (-2444 (((-112) (-114)) 34)) (-3771 ((|#2| |#2|) 26)) (-4212 ((|#2| |#2|) 28)) (-2405 ((|#2| |#2|) 27)))
+(((-608 |#1| |#2|) (-10 -7 (-15 -2444 ((-112) (-114))) (-15 -3500 ((-114) (-114))) (-15 -4212 (|#2| |#2|)) (-15 -3771 (|#2| |#2|)) (-15 -2405 (|#2| |#2|)) (-15 -1712 (|#2| |#2|)) (-15 -1431 (|#2| |#2|)) (-15 -1470 (|#2| |#2|)) (-15 -2883 (|#2| |#2| (-1142))) (-15 -2883 (|#2| |#2| (-1058 |#2|)))) (-13 (-823) (-541)) (-13 (-423 |#1|) (-973) (-1164))) (T -608))
+((-2883 (*1 *2 *2 *3) (-12 (-5 *3 (-1058 *2)) (-4 *2 (-13 (-423 *4) (-973) (-1164))) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-608 *4 *2)))) (-2883 (*1 *2 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-608 *4 *2)) (-4 *2 (-13 (-423 *4) (-973) (-1164))))) (-1470 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2)) (-4 *2 (-13 (-423 *3) (-973) (-1164))))) (-1431 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2)) (-4 *2 (-13 (-423 *3) (-973) (-1164))))) (-1712 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2)) (-4 *2 (-13 (-423 *3) (-973) (-1164))))) (-2405 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2)) (-4 *2 (-13 (-423 *3) (-973) (-1164))))) (-3771 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2)) (-4 *2 (-13 (-423 *3) (-973) (-1164))))) (-4212 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2)) (-4 *2 (-13 (-423 *3) (-973) (-1164))))) (-3500 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *4)) (-4 *4 (-13 (-423 *3) (-973) (-1164))))) (-2444 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112)) (-5 *1 (-608 *4 *5)) (-4 *5 (-13 (-423 *4) (-973) (-1164))))))
+(-10 -7 (-15 -2444 ((-112) (-114))) (-15 -3500 ((-114) (-114))) (-15 -4212 (|#2| |#2|)) (-15 -3771 (|#2| |#2|)) (-15 -2405 (|#2| |#2|)) (-15 -1712 (|#2| |#2|)) (-15 -1431 (|#2| |#2|)) (-15 -1470 (|#2| |#2|)) (-15 -2883 (|#2| |#2| (-1142))) (-15 -2883 (|#2| |#2| (-1058 |#2|))))
+((-3276 (((-473 |#1| |#2|) (-241 |#1| |#2|)) 53)) (-1816 (((-621 (-241 |#1| |#2|)) (-621 (-473 |#1| |#2|))) 68)) (-4169 (((-473 |#1| |#2|) (-621 (-473 |#1| |#2|)) (-836 |#1|)) 70) (((-473 |#1| |#2|) (-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|)) (-836 |#1|)) 69)) (-1568 (((-2 (|:| |gblist| (-621 (-241 |#1| |#2|))) (|:| |gvlist| (-621 (-549)))) (-621 (-473 |#1| |#2|))) 108)) (-2705 (((-621 (-473 |#1| |#2|)) (-836 |#1|) (-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|))) 83)) (-1792 (((-2 (|:| |glbase| (-621 (-241 |#1| |#2|))) (|:| |glval| (-621 (-549)))) (-621 (-241 |#1| |#2|))) 118)) (-3006 (((-1225 |#2|) (-473 |#1| |#2|) (-621 (-473 |#1| |#2|))) 58)) (-3072 (((-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|))) 41)) (-4316 (((-241 |#1| |#2|) (-241 |#1| |#2|) (-621 (-241 |#1| |#2|))) 50)) (-2912 (((-241 |#1| |#2|) (-621 |#2|) (-241 |#1| |#2|) (-621 (-241 |#1| |#2|))) 91)))
+(((-609 |#1| |#2|) (-10 -7 (-15 -1568 ((-2 (|:| |gblist| (-621 (-241 |#1| |#2|))) (|:| |gvlist| (-621 (-549)))) (-621 (-473 |#1| |#2|)))) (-15 -1792 ((-2 (|:| |glbase| (-621 (-241 |#1| |#2|))) (|:| |glval| (-621 (-549)))) (-621 (-241 |#1| |#2|)))) (-15 -1816 ((-621 (-241 |#1| |#2|)) (-621 (-473 |#1| |#2|)))) (-15 -4169 ((-473 |#1| |#2|) (-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|)) (-836 |#1|))) (-15 -4169 ((-473 |#1| |#2|) (-621 (-473 |#1| |#2|)) (-836 |#1|))) (-15 -3072 ((-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|)))) (-15 -3006 ((-1225 |#2|) (-473 |#1| |#2|) (-621 (-473 |#1| |#2|)))) (-15 -2912 ((-241 |#1| |#2|) (-621 |#2|) (-241 |#1| |#2|) (-621 (-241 |#1| |#2|)))) (-15 -2705 ((-621 (-473 |#1| |#2|)) (-836 |#1|) (-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|)))) (-15 -4316 ((-241 |#1| |#2|) (-241 |#1| |#2|) (-621 (-241 |#1| |#2|)))) (-15 -3276 ((-473 |#1| |#2|) (-241 |#1| |#2|)))) (-621 (-1142)) (-444)) (T -609))
+((-3276 (*1 *2 *3) (-12 (-5 *3 (-241 *4 *5)) (-14 *4 (-621 (-1142))) (-4 *5 (-444)) (-5 *2 (-473 *4 *5)) (-5 *1 (-609 *4 *5)))) (-4316 (*1 *2 *2 *3) (-12 (-5 *3 (-621 (-241 *4 *5))) (-5 *2 (-241 *4 *5)) (-14 *4 (-621 (-1142))) (-4 *5 (-444)) (-5 *1 (-609 *4 *5)))) (-2705 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-621 (-473 *4 *5))) (-5 *3 (-836 *4)) (-14 *4 (-621 (-1142))) (-4 *5 (-444)) (-5 *1 (-609 *4 *5)))) (-2912 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-621 *6)) (-5 *4 (-621 (-241 *5 *6))) (-4 *6 (-444)) (-5 *2 (-241 *5 *6)) (-14 *5 (-621 (-1142))) (-5 *1 (-609 *5 *6)))) (-3006 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-473 *5 *6))) (-5 *3 (-473 *5 *6)) (-14 *5 (-621 (-1142))) (-4 *6 (-444)) (-5 *2 (-1225 *6)) (-5 *1 (-609 *5 *6)))) (-3072 (*1 *2 *2) (-12 (-5 *2 (-621 (-473 *3 *4))) (-14 *3 (-621 (-1142))) (-4 *4 (-444)) (-5 *1 (-609 *3 *4)))) (-4169 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-473 *5 *6))) (-5 *4 (-836 *5)) (-14 *5 (-621 (-1142))) (-5 *2 (-473 *5 *6)) (-5 *1 (-609 *5 *6)) (-4 *6 (-444)))) (-4169 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-621 (-473 *5 *6))) (-5 *4 (-836 *5)) (-14 *5 (-621 (-1142))) (-5 *2 (-473 *5 *6)) (-5 *1 (-609 *5 *6)) (-4 *6 (-444)))) (-1816 (*1 *2 *3) (-12 (-5 *3 (-621 (-473 *4 *5))) (-14 *4 (-621 (-1142))) (-4 *5 (-444)) (-5 *2 (-621 (-241 *4 *5))) (-5 *1 (-609 *4 *5)))) (-1792 (*1 *2 *3) (-12 (-14 *4 (-621 (-1142))) (-4 *5 (-444)) (-5 *2 (-2 (|:| |glbase| (-621 (-241 *4 *5))) (|:| |glval| (-621 (-549))))) (-5 *1 (-609 *4 *5)) (-5 *3 (-621 (-241 *4 *5))))) (-1568 (*1 *2 *3) (-12 (-5 *3 (-621 (-473 *4 *5))) (-14 *4 (-621 (-1142))) (-4 *5 (-444)) (-5 *2 (-2 (|:| |gblist| (-621 (-241 *4 *5))) (|:| |gvlist| (-621 (-549))))) (-5 *1 (-609 *4 *5)))))
+(-10 -7 (-15 -1568 ((-2 (|:| |gblist| (-621 (-241 |#1| |#2|))) (|:| |gvlist| (-621 (-549)))) (-621 (-473 |#1| |#2|)))) (-15 -1792 ((-2 (|:| |glbase| (-621 (-241 |#1| |#2|))) (|:| |glval| (-621 (-549)))) (-621 (-241 |#1| |#2|)))) (-15 -1816 ((-621 (-241 |#1| |#2|)) (-621 (-473 |#1| |#2|)))) (-15 -4169 ((-473 |#1| |#2|) (-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|)) (-836 |#1|))) (-15 -4169 ((-473 |#1| |#2|) (-621 (-473 |#1| |#2|)) (-836 |#1|))) (-15 -3072 ((-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|)))) (-15 -3006 ((-1225 |#2|) (-473 |#1| |#2|) (-621 (-473 |#1| |#2|)))) (-15 -2912 ((-241 |#1| |#2|) (-621 |#2|) (-241 |#1| |#2|) (-621 (-241 |#1| |#2|)))) (-15 -2705 ((-621 (-473 |#1| |#2|)) (-836 |#1|) (-621 (-473 |#1| |#2|)) (-621 (-473 |#1| |#2|)))) (-15 -4316 ((-241 |#1| |#2|) (-241 |#1| |#2|) (-621 (-241 |#1| |#2|)))) (-15 -3276 ((-473 |#1| |#2|) (-241 |#1| |#2|))))
+((-3832 (((-112) $ $) NIL (-1536 (|has| (-52) (-1066)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-1066))))) (-3732 (($) NIL) (($ (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))))) NIL)) (-3659 (((-1230) $ (-1124) (-1124)) NIL (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 (((-52) $ (-1124) (-52)) 16) (((-52) $ (-1142) (-52)) 17)) (-3827 (($ (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336)))) (-3489 (((-3 (-52) "failed") (-1124) $) NIL)) (-3034 (($) NIL T CONST)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-1066))))) (-3546 (($ (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) $) NIL (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336))) (((-3 (-52) "failed") (-1124) $) NIL)) (-3812 (($ (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-1066)))) (($ (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336)))) (-2556 (((-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-1 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) $ (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-1066)))) (((-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-1 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) $ (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) NIL (|has| $ (-6 -4336))) (((-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-1 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336)))) (-1875 (((-52) $ (-1124) (-52)) NIL (|has| $ (-6 -4337)))) (-1807 (((-52) $ (-1124)) NIL)) (-2987 (((-621 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336))) (((-621 (-52)) $) NIL (|has| $ (-6 -4336)))) (-2235 (($ $) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-1124) $) NIL (|has| (-1124) (-823)))) (-3698 (((-621 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336))) (((-621 (-52)) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-1066)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-52) (-1066))))) (-3063 (((-1124) $) NIL (|has| (-1124) (-823)))) (-1864 (($ (-1 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4337))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-2751 (($ (-381)) 9)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (-1536 (|has| (-52) (-1066)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-1066))))) (-3448 (((-621 (-1124)) $) NIL)) (-2130 (((-112) (-1124) $) NIL)) (-2548 (((-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) $) NIL)) (-1799 (($ (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) $) NIL)) (-2296 (((-621 (-1124)) $) NIL)) (-2284 (((-112) (-1124) $) NIL)) (-3988 (((-1086) $) NIL (-1536 (|has| (-52) (-1066)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-1066))))) (-3645 (((-52) $) NIL (|has| (-1124) (-823)))) (-3959 (((-3 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) "failed") (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) $) NIL)) (-1943 (($ $ (-52)) NIL (|has| $ (-6 -4337)))) (-3536 (((-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) $) NIL)) (-3360 (((-112) (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))))) NIL (-12 (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))))) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-1066)))) (($ $ (-287 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))))) NIL (-12 (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))))) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-1066)))) (($ $ (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) NIL (-12 (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))))) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-1066)))) (($ $ (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))))) NIL (-12 (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))))) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-1066)))) (($ $ (-621 (-52)) (-621 (-52))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1066)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1066)))) (($ $ (-287 (-52))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1066)))) (($ $ (-621 (-287 (-52)))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-52) (-1066))))) (-3347 (((-621 (-52)) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 (((-52) $ (-1124)) 14) (((-52) $ (-1124) (-52)) NIL) (((-52) $ (-1142)) 15)) (-3226 (($) NIL) (($ (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))))) NIL)) (-3997 (((-747) (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336))) (((-747) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-1066)))) (((-747) (-52) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-52) (-1066)))) (((-747) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-594 (-525))))) (-3853 (($ (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))))) NIL)) (-3845 (((-834) $) NIL (-1536 (|has| (-52) (-593 (-834))) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-593 (-834)))))) (-4213 (($ (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))))) NIL)) (-3025 (((-112) (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (-1536 (|has| (-52) (-1066)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 (-52))) (-1066))))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-610) (-13 (-1155 (-1124) (-52)) (-10 -8 (-15 -2751 ($ (-381))) (-15 -2235 ($ $)) (-15 -3339 ((-52) $ (-1142))) (-15 -2250 ((-52) $ (-1142) (-52)))))) (T -610))
+((-2751 (*1 *1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-610)))) (-2235 (*1 *1 *1) (-5 *1 (-610))) (-3339 (*1 *2 *1 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-52)) (-5 *1 (-610)))) (-2250 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1142)) (-5 *1 (-610)))))
+(-13 (-1155 (-1124) (-52)) (-10 -8 (-15 -2751 ($ (-381))) (-15 -2235 ($ $)) (-15 -3339 ((-52) $ (-1142))) (-15 -2250 ((-52) $ (-1142) (-52)))))
+((-2511 (($ $ |#2|) 10)))
+(((-611 |#1| |#2|) (-10 -8 (-15 -2511 (|#1| |#1| |#2|))) (-612 |#2|) (-170)) (T -611))
+NIL
+(-10 -8 (-15 -2511 (|#1| |#1| |#2|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3853 (($ $ $) 29)) (-3845 (((-834) $) 11)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2511 (($ $ |#1|) 28 (|has| |#1| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
(((-612 |#1|) (-138) (-170)) (T -612))
-((-3854 (*1 *1 *1 *1) (-12 (-4 *1 (-612 *2)) (-4 *2 (-170)))) (-2513 (*1 *1 *1 *2) (-12 (-4 *1 (-612 *2)) (-4 *2 (-170)) (-4 *2 (-356)))))
-(-13 (-694 |t#1|) (-10 -8 (-6 |NullSquare|) (-6 |JacobiIdentity|) (-15 -3854 ($ $ $)) (IF (|has| |t#1| (-356)) (-15 -2513 ($ $ |t#1|)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-694 |#1|) . T) ((-1024 |#1|) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2207 (((-3 $ "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3277 (((-1226 (-665 |#1|))) NIL (|has| |#2| (-410 |#1|))) (((-1226 (-665 |#1|)) (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-3945 (((-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-1682 (($) NIL T CONST)) (-3219 (((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-3550 (((-3 $ "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-4212 (((-665 |#1|)) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-2840 ((|#1| $) NIL (|has| |#2| (-360 |#1|)))) (-3841 (((-665 |#1|) $) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) $ (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-3038 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-2478 (((-1139 (-923 |#1|))) NIL (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-356))))) (-3117 (($ $ (-892)) NIL)) (-2182 ((|#1| $) NIL (|has| |#2| (-360 |#1|)))) (-2289 (((-1139 |#1|) $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-3076 ((|#1|) NIL (|has| |#2| (-410 |#1|))) ((|#1| (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-3266 (((-1139 |#1|) $) NIL (|has| |#2| (-360 |#1|)))) (-1368 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3492 (($ (-1226 |#1|)) NIL (|has| |#2| (-410 |#1|))) (($ (-1226 |#1|) (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-2114 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-3123 (((-892)) NIL (|has| |#2| (-360 |#1|)))) (-3601 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-2943 (($ $ (-892)) NIL)) (-3975 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-2291 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-2647 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-1742 (((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-4101 (((-3 $ "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-2870 (((-665 |#1|)) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-2654 ((|#1| $) NIL (|has| |#2| (-360 |#1|)))) (-2303 (((-665 |#1|) $) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) $ (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-1919 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-2014 (((-1139 (-923 |#1|))) NIL (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-356))))) (-2884 (($ $ (-892)) NIL)) (-2248 ((|#1| $) NIL (|has| |#2| (-360 |#1|)))) (-1378 (((-1139 |#1|) $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-2920 ((|#1|) NIL (|has| |#2| (-410 |#1|))) ((|#1| (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-2443 (((-1139 |#1|) $) NIL (|has| |#2| (-360 |#1|)))) (-3623 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3851 (((-1125) $) NIL)) (-3260 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-2754 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-2055 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3990 (((-1087) $) NIL)) (-2392 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3341 ((|#1| $ (-549)) NIL (|has| |#2| (-410 |#1|)))) (-4263 (((-665 |#1|) (-1226 $)) NIL (|has| |#2| (-410 |#1|))) (((-1226 |#1|) $) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) (-1226 $) (-1226 $)) NIL (|has| |#2| (-360 |#1|))) (((-1226 |#1|) $ (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-2845 (($ (-1226 |#1|)) NIL (|has| |#2| (-410 |#1|))) (((-1226 |#1|) $) NIL (|has| |#2| (-410 |#1|)))) (-4111 (((-621 (-923 |#1|))) NIL (|has| |#2| (-410 |#1|))) (((-621 (-923 |#1|)) (-1226 $)) NIL (|has| |#2| (-360 |#1|)))) (-3293 (($ $ $) NIL)) (-1942 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3846 (((-834) $) NIL) ((|#2| $) 12) (($ |#2|) 13)) (-1949 (((-1226 $)) NIL (|has| |#2| (-410 |#1|)))) (-4315 (((-621 (-1226 |#1|))) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-4272 (($ $ $ $) NIL)) (-3430 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3596 (($ (-665 |#1|) $) NIL (|has| |#2| (-410 |#1|)))) (-2174 (($ $ $) NIL)) (-2864 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-4257 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-1898 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3276 (($) 15 T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) 17)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 11) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-613 |#1| |#2|) (-13 (-721 |#1|) (-593 |#2|) (-10 -8 (-15 -3846 ($ |#2|)) (IF (|has| |#2| (-410 |#1|)) (-6 (-410 |#1|)) |%noBranch|) (IF (|has| |#2| (-360 |#1|)) (-6 (-360 |#1|)) |%noBranch|))) (-170) (-721 |#1|)) (T -613))
-((-3846 (*1 *1 *2) (-12 (-4 *3 (-170)) (-5 *1 (-613 *3 *2)) (-4 *2 (-721 *3)))))
-(-13 (-721 |#1|) (-593 |#2|) (-10 -8 (-15 -3846 ($ |#2|)) (IF (|has| |#2| (-410 |#1|)) (-6 (-410 |#1|)) |%noBranch|) (IF (|has| |#2| (-360 |#1|)) (-6 (-360 |#1|)) |%noBranch|)))
-((-1297 (((-3 (-816 |#2|) "failed") |#2| (-287 |#2|) (-1125)) 82) (((-3 (-816 |#2|) (-2 (|:| |leftHandLimit| (-3 (-816 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-816 |#2|) "failed"))) "failed") |#2| (-287 (-816 |#2|))) 104)) (-2041 (((-3 (-809 |#2|) "failed") |#2| (-287 (-809 |#2|))) 109)))
-(((-614 |#1| |#2|) (-10 -7 (-15 -1297 ((-3 (-816 |#2|) (-2 (|:| |leftHandLimit| (-3 (-816 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-816 |#2|) "failed"))) "failed") |#2| (-287 (-816 |#2|)))) (-15 -2041 ((-3 (-809 |#2|) "failed") |#2| (-287 (-809 |#2|)))) (-15 -1297 ((-3 (-816 |#2|) "failed") |#2| (-287 |#2|) (-1125)))) (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-27) (-1165) (-423 |#1|))) (T -614))
-((-1297 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-287 *3)) (-5 *5 (-1125)) (-4 *3 (-13 (-27) (-1165) (-423 *6))) (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-816 *3)) (-5 *1 (-614 *6 *3)))) (-2041 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-287 (-809 *3))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-809 *3)) (-5 *1 (-614 *5 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5))))) (-1297 (*1 *2 *3 *4) (-12 (-5 *4 (-287 (-816 *3))) (-4 *3 (-13 (-27) (-1165) (-423 *5))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 (-816 *3) (-2 (|:| |leftHandLimit| (-3 (-816 *3) "failed")) (|:| |rightHandLimit| (-3 (-816 *3) "failed"))) "failed")) (-5 *1 (-614 *5 *3)))))
-(-10 -7 (-15 -1297 ((-3 (-816 |#2|) (-2 (|:| |leftHandLimit| (-3 (-816 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-816 |#2|) "failed"))) "failed") |#2| (-287 (-816 |#2|)))) (-15 -2041 ((-3 (-809 |#2|) "failed") |#2| (-287 (-809 |#2|)))) (-15 -1297 ((-3 (-816 |#2|) "failed") |#2| (-287 |#2|) (-1125))))
-((-1297 (((-3 (-816 (-400 (-923 |#1|))) "failed") (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))) (-1125)) 80) (((-3 (-816 (-400 (-923 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed"))) "failed") (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|)))) 20) (((-3 (-816 (-400 (-923 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed"))) "failed") (-400 (-923 |#1|)) (-287 (-816 (-923 |#1|)))) 35)) (-2041 (((-809 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|)))) 23) (((-809 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-287 (-809 (-923 |#1|)))) 43)))
-(((-615 |#1|) (-10 -7 (-15 -1297 ((-3 (-816 (-400 (-923 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed"))) "failed") (-400 (-923 |#1|)) (-287 (-816 (-923 |#1|))))) (-15 -1297 ((-3 (-816 (-400 (-923 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed"))) "failed") (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))))) (-15 -2041 ((-809 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-287 (-809 (-923 |#1|))))) (-15 -2041 ((-809 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))))) (-15 -1297 ((-3 (-816 (-400 (-923 |#1|))) "failed") (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))) (-1125)))) (-444)) (T -615))
-((-1297 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-287 (-400 (-923 *6)))) (-5 *5 (-1125)) (-5 *3 (-400 (-923 *6))) (-4 *6 (-444)) (-5 *2 (-816 *3)) (-5 *1 (-615 *6)))) (-2041 (*1 *2 *3 *4) (-12 (-5 *4 (-287 (-400 (-923 *5)))) (-5 *3 (-400 (-923 *5))) (-4 *5 (-444)) (-5 *2 (-809 *3)) (-5 *1 (-615 *5)))) (-2041 (*1 *2 *3 *4) (-12 (-5 *4 (-287 (-809 (-923 *5)))) (-4 *5 (-444)) (-5 *2 (-809 (-400 (-923 *5)))) (-5 *1 (-615 *5)) (-5 *3 (-400 (-923 *5))))) (-1297 (*1 *2 *3 *4) (-12 (-5 *4 (-287 (-400 (-923 *5)))) (-5 *3 (-400 (-923 *5))) (-4 *5 (-444)) (-5 *2 (-3 (-816 *3) (-2 (|:| |leftHandLimit| (-3 (-816 *3) "failed")) (|:| |rightHandLimit| (-3 (-816 *3) "failed"))) "failed")) (-5 *1 (-615 *5)))) (-1297 (*1 *2 *3 *4) (-12 (-5 *4 (-287 (-816 (-923 *5)))) (-4 *5 (-444)) (-5 *2 (-3 (-816 (-400 (-923 *5))) (-2 (|:| |leftHandLimit| (-3 (-816 (-400 (-923 *5))) "failed")) (|:| |rightHandLimit| (-3 (-816 (-400 (-923 *5))) "failed"))) "failed")) (-5 *1 (-615 *5)) (-5 *3 (-400 (-923 *5))))))
-(-10 -7 (-15 -1297 ((-3 (-816 (-400 (-923 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed"))) "failed") (-400 (-923 |#1|)) (-287 (-816 (-923 |#1|))))) (-15 -1297 ((-3 (-816 (-400 (-923 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed"))) "failed") (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))))) (-15 -2041 ((-809 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-287 (-809 (-923 |#1|))))) (-15 -2041 ((-809 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))))) (-15 -1297 ((-3 (-816 (-400 (-923 |#1|))) "failed") (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))) (-1125))))
-((-1830 (((-3 (-1226 (-400 |#1|)) "failed") (-1226 |#2|) |#2|) 57 (-4008 (|has| |#1| (-356)))) (((-3 (-1226 |#1|) "failed") (-1226 |#2|) |#2|) 42 (|has| |#1| (-356)))) (-4001 (((-112) (-1226 |#2|)) 30)) (-4157 (((-3 (-1226 |#1|) "failed") (-1226 |#2|)) 33)))
-(((-616 |#1| |#2|) (-10 -7 (-15 -4001 ((-112) (-1226 |#2|))) (-15 -4157 ((-3 (-1226 |#1|) "failed") (-1226 |#2|))) (IF (|has| |#1| (-356)) (-15 -1830 ((-3 (-1226 |#1|) "failed") (-1226 |#2|) |#2|)) (-15 -1830 ((-3 (-1226 (-400 |#1|)) "failed") (-1226 |#2|) |#2|)))) (-541) (-617 |#1|)) (T -616))
-((-1830 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1226 *4)) (-4 *4 (-617 *5)) (-4008 (-4 *5 (-356))) (-4 *5 (-541)) (-5 *2 (-1226 (-400 *5))) (-5 *1 (-616 *5 *4)))) (-1830 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1226 *4)) (-4 *4 (-617 *5)) (-4 *5 (-356)) (-4 *5 (-541)) (-5 *2 (-1226 *5)) (-5 *1 (-616 *5 *4)))) (-4157 (*1 *2 *3) (|partial| -12 (-5 *3 (-1226 *5)) (-4 *5 (-617 *4)) (-4 *4 (-541)) (-5 *2 (-1226 *4)) (-5 *1 (-616 *4 *5)))) (-4001 (*1 *2 *3) (-12 (-5 *3 (-1226 *5)) (-4 *5 (-617 *4)) (-4 *4 (-541)) (-5 *2 (-112)) (-5 *1 (-616 *4 *5)))))
-(-10 -7 (-15 -4001 ((-112) (-1226 |#2|))) (-15 -4157 ((-3 (-1226 |#1|) "failed") (-1226 |#2|))) (IF (|has| |#1| (-356)) (-15 -1830 ((-3 (-1226 |#1|) "failed") (-1226 |#2|) |#2|)) (-15 -1830 ((-3 (-1226 (-400 |#1|)) "failed") (-1226 |#2|) |#2|))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-3879 (((-665 |#1|) (-665 $)) 34) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) 33)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11) (($ (-549)) 27)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+((-3853 (*1 *1 *1 *1) (-12 (-4 *1 (-612 *2)) (-4 *2 (-170)))) (-2511 (*1 *1 *1 *2) (-12 (-4 *1 (-612 *2)) (-4 *2 (-170)) (-4 *2 (-356)))))
+(-13 (-694 |t#1|) (-10 -8 (-6 |NullSquare|) (-6 |JacobiIdentity|) (-15 -3853 ($ $ $)) (IF (|has| |t#1| (-356)) (-15 -2511 ($ $ |t#1|)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-694 |#1|) . T) ((-1024 |#1|) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-1951 (((-3 $ "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-2416 (((-3 $ "failed") $ $) NIL)) (-2893 (((-1225 (-665 |#1|))) NIL (|has| |#2| (-410 |#1|))) (((-1225 (-665 |#1|)) (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-3349 (((-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-3034 (($) NIL T CONST)) (-1760 (((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-3372 (((-3 $ "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-1657 (((-665 |#1|)) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-2872 ((|#1| $) NIL (|has| |#2| (-360 |#1|)))) (-1785 (((-665 |#1|) $) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) $ (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-2013 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-3781 (((-1138 (-923 |#1|))) NIL (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-356))))) (-2039 (($ $ (-892)) NIL)) (-4301 ((|#1| $) NIL (|has| |#2| (-360 |#1|)))) (-1442 (((-1138 |#1|) $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-2733 ((|#1|) NIL (|has| |#2| (-410 |#1|))) ((|#1| (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-3163 (((-1138 |#1|) $) NIL (|has| |#2| (-360 |#1|)))) (-2634 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-2397 (($ (-1225 |#1|)) NIL (|has| |#2| (-410 |#1|))) (($ (-1225 |#1|) (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-2612 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-3121 (((-892)) NIL (|has| |#2| (-360 |#1|)))) (-2639 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3764 (($ $ (-892)) NIL)) (-2915 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-1670 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-4034 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-4001 (((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-3583 (((-3 $ "failed")) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-2686 (((-665 |#1|)) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-3458 ((|#1| $) NIL (|has| |#2| (-360 |#1|)))) (-3364 (((-665 |#1|) $) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) $ (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-1540 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-4128 (((-1138 (-923 |#1|))) NIL (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-356))))) (-4304 (($ $ (-892)) NIL)) (-3432 ((|#1| $) NIL (|has| |#2| (-360 |#1|)))) (-2085 (((-1138 |#1|) $) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-1405 ((|#1|) NIL (|has| |#2| (-410 |#1|))) ((|#1| (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-4257 (((-1138 |#1|) $) NIL (|has| |#2| (-360 |#1|)))) (-4115 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3441 (((-1124) $) NIL)) (-3775 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3875 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-4055 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3988 (((-1086) $) NIL)) (-2924 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3339 ((|#1| $ (-549)) NIL (|has| |#2| (-410 |#1|)))) (-1981 (((-665 |#1|) (-1225 $)) NIL (|has| |#2| (-410 |#1|))) (((-1225 |#1|) $) NIL (|has| |#2| (-410 |#1|))) (((-665 |#1|) (-1225 $) (-1225 $)) NIL (|has| |#2| (-360 |#1|))) (((-1225 |#1|) $ (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-2843 (($ (-1225 |#1|)) NIL (|has| |#2| (-410 |#1|))) (((-1225 |#1|) $) NIL (|has| |#2| (-410 |#1|)))) (-3166 (((-621 (-923 |#1|))) NIL (|has| |#2| (-410 |#1|))) (((-621 (-923 |#1|)) (-1225 $)) NIL (|has| |#2| (-360 |#1|)))) (-3870 (($ $ $) NIL)) (-3083 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3845 (((-834) $) NIL) ((|#2| $) 12) (($ |#2|) 13)) (-2619 (((-1225 $)) NIL (|has| |#2| (-410 |#1|)))) (-3445 (((-621 (-1225 |#1|))) NIL (-1536 (-12 (|has| |#2| (-360 |#1|)) (|has| |#1| (-541))) (-12 (|has| |#2| (-410 |#1|)) (|has| |#1| (-541)))))) (-3515 (($ $ $ $) NIL)) (-3011 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3593 (($ (-665 |#1|) $) NIL (|has| |#2| (-410 |#1|)))) (-3485 (($ $ $) NIL)) (-3338 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-2959 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-1379 (((-112)) NIL (|has| |#2| (-360 |#1|)))) (-3274 (($) 15 T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) 17)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 11) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-613 |#1| |#2|) (-13 (-721 |#1|) (-593 |#2|) (-10 -8 (-15 -3845 ($ |#2|)) (IF (|has| |#2| (-410 |#1|)) (-6 (-410 |#1|)) |%noBranch|) (IF (|has| |#2| (-360 |#1|)) (-6 (-360 |#1|)) |%noBranch|))) (-170) (-721 |#1|)) (T -613))
+((-3845 (*1 *1 *2) (-12 (-4 *3 (-170)) (-5 *1 (-613 *3 *2)) (-4 *2 (-721 *3)))))
+(-13 (-721 |#1|) (-593 |#2|) (-10 -8 (-15 -3845 ($ |#2|)) (IF (|has| |#2| (-410 |#1|)) (-6 (-410 |#1|)) |%noBranch|) (IF (|has| |#2| (-360 |#1|)) (-6 (-360 |#1|)) |%noBranch|)))
+((-3486 (((-3 (-816 |#2|) "failed") |#2| (-287 |#2|) (-1124)) 82) (((-3 (-816 |#2|) (-2 (|:| |leftHandLimit| (-3 (-816 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-816 |#2|) "failed"))) "failed") |#2| (-287 (-816 |#2|))) 104)) (-2550 (((-3 (-809 |#2|) "failed") |#2| (-287 (-809 |#2|))) 109)))
+(((-614 |#1| |#2|) (-10 -7 (-15 -3486 ((-3 (-816 |#2|) (-2 (|:| |leftHandLimit| (-3 (-816 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-816 |#2|) "failed"))) "failed") |#2| (-287 (-816 |#2|)))) (-15 -2550 ((-3 (-809 |#2|) "failed") |#2| (-287 (-809 |#2|)))) (-15 -3486 ((-3 (-816 |#2|) "failed") |#2| (-287 |#2|) (-1124)))) (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-27) (-1164) (-423 |#1|))) (T -614))
+((-3486 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-287 *3)) (-5 *5 (-1124)) (-4 *3 (-13 (-27) (-1164) (-423 *6))) (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-816 *3)) (-5 *1 (-614 *6 *3)))) (-2550 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-287 (-809 *3))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-809 *3)) (-5 *1 (-614 *5 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5))))) (-3486 (*1 *2 *3 *4) (-12 (-5 *4 (-287 (-816 *3))) (-4 *3 (-13 (-27) (-1164) (-423 *5))) (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-3 (-816 *3) (-2 (|:| |leftHandLimit| (-3 (-816 *3) "failed")) (|:| |rightHandLimit| (-3 (-816 *3) "failed"))) "failed")) (-5 *1 (-614 *5 *3)))))
+(-10 -7 (-15 -3486 ((-3 (-816 |#2|) (-2 (|:| |leftHandLimit| (-3 (-816 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-816 |#2|) "failed"))) "failed") |#2| (-287 (-816 |#2|)))) (-15 -2550 ((-3 (-809 |#2|) "failed") |#2| (-287 (-809 |#2|)))) (-15 -3486 ((-3 (-816 |#2|) "failed") |#2| (-287 |#2|) (-1124))))
+((-3486 (((-3 (-816 (-400 (-923 |#1|))) "failed") (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))) (-1124)) 80) (((-3 (-816 (-400 (-923 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed"))) "failed") (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|)))) 20) (((-3 (-816 (-400 (-923 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed"))) "failed") (-400 (-923 |#1|)) (-287 (-816 (-923 |#1|)))) 35)) (-2550 (((-809 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|)))) 23) (((-809 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-287 (-809 (-923 |#1|)))) 43)))
+(((-615 |#1|) (-10 -7 (-15 -3486 ((-3 (-816 (-400 (-923 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed"))) "failed") (-400 (-923 |#1|)) (-287 (-816 (-923 |#1|))))) (-15 -3486 ((-3 (-816 (-400 (-923 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed"))) "failed") (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))))) (-15 -2550 ((-809 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-287 (-809 (-923 |#1|))))) (-15 -2550 ((-809 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))))) (-15 -3486 ((-3 (-816 (-400 (-923 |#1|))) "failed") (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))) (-1124)))) (-444)) (T -615))
+((-3486 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-287 (-400 (-923 *6)))) (-5 *5 (-1124)) (-5 *3 (-400 (-923 *6))) (-4 *6 (-444)) (-5 *2 (-816 *3)) (-5 *1 (-615 *6)))) (-2550 (*1 *2 *3 *4) (-12 (-5 *4 (-287 (-400 (-923 *5)))) (-5 *3 (-400 (-923 *5))) (-4 *5 (-444)) (-5 *2 (-809 *3)) (-5 *1 (-615 *5)))) (-2550 (*1 *2 *3 *4) (-12 (-5 *4 (-287 (-809 (-923 *5)))) (-4 *5 (-444)) (-5 *2 (-809 (-400 (-923 *5)))) (-5 *1 (-615 *5)) (-5 *3 (-400 (-923 *5))))) (-3486 (*1 *2 *3 *4) (-12 (-5 *4 (-287 (-400 (-923 *5)))) (-5 *3 (-400 (-923 *5))) (-4 *5 (-444)) (-5 *2 (-3 (-816 *3) (-2 (|:| |leftHandLimit| (-3 (-816 *3) "failed")) (|:| |rightHandLimit| (-3 (-816 *3) "failed"))) "failed")) (-5 *1 (-615 *5)))) (-3486 (*1 *2 *3 *4) (-12 (-5 *4 (-287 (-816 (-923 *5)))) (-4 *5 (-444)) (-5 *2 (-3 (-816 (-400 (-923 *5))) (-2 (|:| |leftHandLimit| (-3 (-816 (-400 (-923 *5))) "failed")) (|:| |rightHandLimit| (-3 (-816 (-400 (-923 *5))) "failed"))) "failed")) (-5 *1 (-615 *5)) (-5 *3 (-400 (-923 *5))))))
+(-10 -7 (-15 -3486 ((-3 (-816 (-400 (-923 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed"))) "failed") (-400 (-923 |#1|)) (-287 (-816 (-923 |#1|))))) (-15 -3486 ((-3 (-816 (-400 (-923 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-816 (-400 (-923 |#1|))) "failed"))) "failed") (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))))) (-15 -2550 ((-809 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-287 (-809 (-923 |#1|))))) (-15 -2550 ((-809 (-400 (-923 |#1|))) (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))))) (-15 -3486 ((-3 (-816 (-400 (-923 |#1|))) "failed") (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))) (-1124))))
+((-1817 (((-3 (-1225 (-400 |#1|)) "failed") (-1225 |#2|) |#2|) 57 (-4007 (|has| |#1| (-356)))) (((-3 (-1225 |#1|) "failed") (-1225 |#2|) |#2|) 42 (|has| |#1| (-356)))) (-1316 (((-112) (-1225 |#2|)) 30)) (-3256 (((-3 (-1225 |#1|) "failed") (-1225 |#2|)) 33)))
+(((-616 |#1| |#2|) (-10 -7 (-15 -1316 ((-112) (-1225 |#2|))) (-15 -3256 ((-3 (-1225 |#1|) "failed") (-1225 |#2|))) (IF (|has| |#1| (-356)) (-15 -1817 ((-3 (-1225 |#1|) "failed") (-1225 |#2|) |#2|)) (-15 -1817 ((-3 (-1225 (-400 |#1|)) "failed") (-1225 |#2|) |#2|)))) (-541) (-617 |#1|)) (T -616))
+((-1817 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1225 *4)) (-4 *4 (-617 *5)) (-4007 (-4 *5 (-356))) (-4 *5 (-541)) (-5 *2 (-1225 (-400 *5))) (-5 *1 (-616 *5 *4)))) (-1817 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1225 *4)) (-4 *4 (-617 *5)) (-4 *5 (-356)) (-4 *5 (-541)) (-5 *2 (-1225 *5)) (-5 *1 (-616 *5 *4)))) (-3256 (*1 *2 *3) (|partial| -12 (-5 *3 (-1225 *5)) (-4 *5 (-617 *4)) (-4 *4 (-541)) (-5 *2 (-1225 *4)) (-5 *1 (-616 *4 *5)))) (-1316 (*1 *2 *3) (-12 (-5 *3 (-1225 *5)) (-4 *5 (-617 *4)) (-4 *4 (-541)) (-5 *2 (-112)) (-5 *1 (-616 *4 *5)))))
+(-10 -7 (-15 -1316 ((-112) (-1225 |#2|))) (-15 -3256 ((-3 (-1225 |#1|) "failed") (-1225 |#2|))) (IF (|has| |#1| (-356)) (-15 -1817 ((-3 (-1225 |#1|) "failed") (-1225 |#2|) |#2|)) (-15 -1817 ((-3 (-1225 (-400 |#1|)) "failed") (-1225 |#2|) |#2|))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-3446 (((-665 |#1|) (-665 $)) 34) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) 33)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11) (($ (-549)) 27)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-617 |#1|) (-138) (-1018)) (T -617))
-((-3879 (*1 *2 *3) (-12 (-5 *3 (-665 *1)) (-4 *1 (-617 *4)) (-4 *4 (-1018)) (-5 *2 (-665 *4)))) (-3879 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *1)) (-5 *4 (-1226 *1)) (-4 *1 (-617 *5)) (-4 *5 (-1018)) (-5 *2 (-2 (|:| -3521 (-665 *5)) (|:| |vec| (-1226 *5)))))))
-(-13 (-1018) (-10 -8 (-15 -3879 ((-665 |t#1|) (-665 $))) (-15 -3879 ((-2 (|:| -3521 (-665 |t#1|)) (|:| |vec| (-1226 |t#1|))) (-665 $) (-1226 $)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-2475 ((|#2| (-621 |#1|) (-621 |#2|) |#1| (-1 |#2| |#1|)) 18) (((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|) (-1 |#2| |#1|)) 19) ((|#2| (-621 |#1|) (-621 |#2|) |#1| |#2|) 16) (((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|) |#2|) 17) ((|#2| (-621 |#1|) (-621 |#2|) |#1|) 10) (((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|)) 12)))
-(((-618 |#1| |#2|) (-10 -7 (-15 -2475 ((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|))) (-15 -2475 (|#2| (-621 |#1|) (-621 |#2|) |#1|)) (-15 -2475 ((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|) |#2|)) (-15 -2475 (|#2| (-621 |#1|) (-621 |#2|) |#1| |#2|)) (-15 -2475 ((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|) (-1 |#2| |#1|))) (-15 -2475 (|#2| (-621 |#1|) (-621 |#2|) |#1| (-1 |#2| |#1|)))) (-1067) (-1180)) (T -618))
-((-2475 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 *2)) (-5 *6 (-1 *2 *5)) (-4 *5 (-1067)) (-4 *2 (-1180)) (-5 *1 (-618 *5 *2)))) (-2475 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-621 *5)) (-5 *4 (-621 *6)) (-4 *5 (-1067)) (-4 *6 (-1180)) (-5 *1 (-618 *5 *6)))) (-2475 (*1 *2 *3 *4 *5 *2) (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 *2)) (-4 *5 (-1067)) (-4 *2 (-1180)) (-5 *1 (-618 *5 *2)))) (-2475 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 *6)) (-5 *4 (-621 *5)) (-4 *6 (-1067)) (-4 *5 (-1180)) (-5 *2 (-1 *5 *6)) (-5 *1 (-618 *6 *5)))) (-2475 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 *2)) (-4 *5 (-1067)) (-4 *2 (-1180)) (-5 *1 (-618 *5 *2)))) (-2475 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 *6)) (-4 *5 (-1067)) (-4 *6 (-1180)) (-5 *2 (-1 *6 *5)) (-5 *1 (-618 *5 *6)))))
-(-10 -7 (-15 -2475 ((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|))) (-15 -2475 (|#2| (-621 |#1|) (-621 |#2|) |#1|)) (-15 -2475 ((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|) |#2|)) (-15 -2475 (|#2| (-621 |#1|) (-621 |#2|) |#1| |#2|)) (-15 -2475 ((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|) (-1 |#2| |#1|))) (-15 -2475 (|#2| (-621 |#1|) (-621 |#2|) |#1| (-1 |#2| |#1|))))
-((-3804 (((-621 |#2|) (-1 |#2| |#1| |#2|) (-621 |#1|) |#2|) 16)) (-2557 ((|#2| (-1 |#2| |#1| |#2|) (-621 |#1|) |#2|) 18)) (-2797 (((-621 |#2|) (-1 |#2| |#1|) (-621 |#1|)) 13)))
-(((-619 |#1| |#2|) (-10 -7 (-15 -3804 ((-621 |#2|) (-1 |#2| |#1| |#2|) (-621 |#1|) |#2|)) (-15 -2557 (|#2| (-1 |#2| |#1| |#2|) (-621 |#1|) |#2|)) (-15 -2797 ((-621 |#2|) (-1 |#2| |#1|) (-621 |#1|)))) (-1180) (-1180)) (T -619))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-621 *5)) (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-621 *6)) (-5 *1 (-619 *5 *6)))) (-2557 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-621 *5)) (-4 *5 (-1180)) (-4 *2 (-1180)) (-5 *1 (-619 *5 *2)))) (-3804 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-621 *6)) (-4 *6 (-1180)) (-4 *5 (-1180)) (-5 *2 (-621 *5)) (-5 *1 (-619 *6 *5)))))
-(-10 -7 (-15 -3804 ((-621 |#2|) (-1 |#2| |#1| |#2|) (-621 |#1|) |#2|)) (-15 -2557 (|#2| (-1 |#2| |#1| |#2|) (-621 |#1|) |#2|)) (-15 -2797 ((-621 |#2|) (-1 |#2| |#1|) (-621 |#1|))))
-((-2797 (((-621 |#3|) (-1 |#3| |#1| |#2|) (-621 |#1|) (-621 |#2|)) 13)))
-(((-620 |#1| |#2| |#3|) (-10 -7 (-15 -2797 ((-621 |#3|) (-1 |#3| |#1| |#2|) (-621 |#1|) (-621 |#2|)))) (-1180) (-1180) (-1180)) (T -620))
-((-2797 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-621 *6)) (-5 *5 (-621 *7)) (-4 *6 (-1180)) (-4 *7 (-1180)) (-4 *8 (-1180)) (-5 *2 (-621 *8)) (-5 *1 (-620 *6 *7 *8)))))
-(-10 -7 (-15 -2797 ((-621 |#3|) (-1 |#3| |#1| |#2|) (-621 |#1|) (-621 |#2|))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-4161 ((|#1| $) NIL)) (-2839 ((|#1| $) NIL)) (-1343 (($ $) NIL)) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-3174 (($ $ (-549)) NIL (|has| $ (-6 -4338)))) (-4142 (((-112) $) NIL (|has| |#1| (-823))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-4311 (($ $) NIL (-12 (|has| $ (-6 -4338)) (|has| |#1| (-823)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-3193 (($ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-2838 ((|#1| $ |#1|) NIL (|has| $ (-6 -4338)))) (-4179 (($ $ $) NIL (|has| $ (-6 -4338)))) (-2780 ((|#1| $ |#1|) NIL (|has| $ (-6 -4338)))) (-4135 ((|#1| $ |#1|) NIL (|has| $ (-6 -4338)))) (-2254 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4338))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4338))) (($ $ "rest" $) NIL (|has| $ (-6 -4338))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) NIL (|has| $ (-6 -4338))) ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) NIL (|has| $ (-6 -4338)))) (-3582 (($ $ $) 32 (|has| |#1| (-1067)))) (-3570 (($ $ $) 34 (|has| |#1| (-1067)))) (-3557 (($ $ $) 37 (|has| |#1| (-1067)))) (-1717 (($ (-1 (-112) |#1|) $) NIL)) (-1489 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2830 ((|#1| $) NIL)) (-1682 (($) NIL T CONST)) (-1585 (($ $) NIL (|has| $ (-6 -4338)))) (-3064 (($ $) NIL)) (-3657 (($ $) NIL) (($ $ (-747)) NIL)) (-3745 (($ $) NIL (|has| |#1| (-1067)))) (-3676 (($ $) 31 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2129 (($ |#1| $) NIL (|has| |#1| (-1067))) (($ (-1 (-112) |#1|) $) NIL)) (-3812 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1879 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) NIL)) (-3331 (((-112) $) NIL)) (-2883 (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1067))) (((-549) |#1| $) NIL (|has| |#1| (-1067))) (((-549) (-1 (-112) |#1|) $) NIL)) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3256 (((-112) $) 9)) (-3075 (((-621 $) $) NIL)) (-3895 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2624 (($) 7)) (-3743 (($ (-747) |#1|) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) NIL (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-1303 (($ $ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3890 (($ $ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 33 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3525 (($ |#1|) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3591 (((-621 |#1|) $) NIL)) (-2076 (((-112) $) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3829 ((|#1| $) NIL) (($ $ (-747)) NIL)) (-2751 (($ $ $ (-549)) NIL) (($ |#1| $ (-549)) NIL)) (-2616 (($ $ $ (-549)) NIL) (($ |#1| $ (-549)) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-3646 ((|#1| $) NIL) (($ $ (-747)) NIL)) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1642 (($ $ |#1|) NIL (|has| $ (-6 -4338)))) (-3016 (((-112) $) NIL)) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1193 (-549))) NIL) ((|#1| $ (-549)) 36) ((|#1| $ (-549) |#1|) NIL)) (-3230 (((-549) $ $) NIL)) (-3531 (($ $ (-1193 (-549))) NIL) (($ $ (-549)) NIL)) (-2167 (($ $ (-1193 (-549))) NIL) (($ $ (-549)) NIL)) (-3497 (((-112) $) NIL)) (-1999 (($ $) NIL)) (-2643 (($ $) NIL (|has| $ (-6 -4338)))) (-3798 (((-747) $) NIL)) (-3612 (($ $) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2730 (($ $ $ (-549)) NIL (|has| $ (-6 -4338)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) 45 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) NIL)) (-3173 (($ |#1| $) 10)) (-3196 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1952 (($ $ $) 30) (($ |#1| $) NIL) (($ (-621 $)) NIL) (($ $ |#1|) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) NIL)) (-1987 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3718 (($ $ $) 11)) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-4245 (((-1125) $) 26 (|has| |#1| (-804))) (((-1125) $ (-112)) 27 (|has| |#1| (-804))) (((-1231) (-798) $) 28 (|has| |#1| (-804))) (((-1231) (-798) $ (-112)) 29 (|has| |#1| (-804)))) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-621 |#1|) (-13 (-642 |#1|) (-10 -8 (-15 -2624 ($)) (-15 -3256 ((-112) $)) (-15 -3173 ($ |#1| $)) (-15 -3718 ($ $ $)) (IF (|has| |#1| (-1067)) (PROGN (-15 -3582 ($ $ $)) (-15 -3570 ($ $ $)) (-15 -3557 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-804)) (-6 (-804)) |%noBranch|))) (-1180)) (T -621))
-((-2624 (*1 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1180)))) (-3256 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-621 *3)) (-4 *3 (-1180)))) (-3173 (*1 *1 *2 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1180)))) (-3718 (*1 *1 *1 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1180)))) (-3582 (*1 *1 *1 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1067)) (-4 *2 (-1180)))) (-3570 (*1 *1 *1 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1067)) (-4 *2 (-1180)))) (-3557 (*1 *1 *1 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1067)) (-4 *2 (-1180)))))
-(-13 (-642 |#1|) (-10 -8 (-15 -2624 ($)) (-15 -3256 ((-112) $)) (-15 -3173 ($ |#1| $)) (-15 -3718 ($ $ $)) (IF (|has| |#1| (-1067)) (PROGN (-15 -3582 ($ $ $)) (-15 -3570 ($ $ $)) (-15 -3557 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-804)) (-6 (-804)) |%noBranch|)))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 11) (((-1148) $) NIL) ((|#1| $) 8)) (-2389 (((-112) $ $) NIL)))
-(((-622 |#1|) (-13 (-1050) (-593 |#1|)) (-1067)) (T -622))
-NIL
-(-13 (-1050) (-593 |#1|))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3667 (($ |#1| |#1| $) 43)) (-1584 (((-112) $ (-747)) NIL)) (-1717 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-3745 (($ $) 45)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2129 (($ |#1| $) 52 (|has| $ (-6 -4337))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4337)))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2989 (((-621 |#1|) $) 9 (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1868 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 37)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3504 ((|#1| $) 46)) (-2751 (($ |#1| $) 26) (($ |#1| $ (-747)) 42)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3325 ((|#1| $) 48)) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) 21)) (-3742 (($) 25)) (-2930 (((-112) $) 50)) (-3458 (((-621 (-2 (|:| -1793 |#1|) (|:| -4000 (-747)))) $) 59)) (-2898 (($) 23) (($ (-621 |#1|)) 18)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) 56 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) 19)) (-2845 (((-525) $) 34 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) NIL)) (-3846 (((-834) $) 14 (|has| |#1| (-593 (-834))))) (-3624 (($ (-621 |#1|)) 22)) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 61 (|has| |#1| (-1067)))) (-3775 (((-747) $) 16 (|has| $ (-6 -4337)))))
-(((-623 |#1|) (-13 (-671 |#1|) (-10 -8 (-6 -4337) (-15 -2930 ((-112) $)) (-15 -3667 ($ |#1| |#1| $)))) (-1067)) (T -623))
-((-2930 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-623 *3)) (-4 *3 (-1067)))) (-3667 (*1 *1 *2 *2 *1) (-12 (-5 *1 (-623 *2)) (-4 *2 (-1067)))))
-(-13 (-671 |#1|) (-10 -8 (-6 -4337) (-15 -2930 ((-112) $)) (-15 -3667 ($ |#1| |#1| $))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ |#1| $) 23)))
+((-3446 (*1 *2 *3) (-12 (-5 *3 (-665 *1)) (-4 *1 (-617 *4)) (-4 *4 (-1018)) (-5 *2 (-665 *4)))) (-3446 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *1)) (-5 *4 (-1225 *1)) (-4 *1 (-617 *5)) (-4 *5 (-1018)) (-5 *2 (-2 (|:| -3697 (-665 *5)) (|:| |vec| (-1225 *5)))))))
+(-13 (-1018) (-10 -8 (-15 -3446 ((-665 |t#1|) (-665 $))) (-15 -3446 ((-2 (|:| -3697 (-665 |t#1|)) (|:| |vec| (-1225 |t#1|))) (-665 $) (-1225 $)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-2472 ((|#2| (-621 |#1|) (-621 |#2|) |#1| (-1 |#2| |#1|)) 18) (((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|) (-1 |#2| |#1|)) 19) ((|#2| (-621 |#1|) (-621 |#2|) |#1| |#2|) 16) (((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|) |#2|) 17) ((|#2| (-621 |#1|) (-621 |#2|) |#1|) 10) (((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|)) 12)))
+(((-618 |#1| |#2|) (-10 -7 (-15 -2472 ((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|))) (-15 -2472 (|#2| (-621 |#1|) (-621 |#2|) |#1|)) (-15 -2472 ((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|) |#2|)) (-15 -2472 (|#2| (-621 |#1|) (-621 |#2|) |#1| |#2|)) (-15 -2472 ((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|) (-1 |#2| |#1|))) (-15 -2472 (|#2| (-621 |#1|) (-621 |#2|) |#1| (-1 |#2| |#1|)))) (-1066) (-1179)) (T -618))
+((-2472 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 *2)) (-5 *6 (-1 *2 *5)) (-4 *5 (-1066)) (-4 *2 (-1179)) (-5 *1 (-618 *5 *2)))) (-2472 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-621 *5)) (-5 *4 (-621 *6)) (-4 *5 (-1066)) (-4 *6 (-1179)) (-5 *1 (-618 *5 *6)))) (-2472 (*1 *2 *3 *4 *5 *2) (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 *2)) (-4 *5 (-1066)) (-4 *2 (-1179)) (-5 *1 (-618 *5 *2)))) (-2472 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 *6)) (-5 *4 (-621 *5)) (-4 *6 (-1066)) (-4 *5 (-1179)) (-5 *2 (-1 *5 *6)) (-5 *1 (-618 *6 *5)))) (-2472 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 *2)) (-4 *5 (-1066)) (-4 *2 (-1179)) (-5 *1 (-618 *5 *2)))) (-2472 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 *6)) (-4 *5 (-1066)) (-4 *6 (-1179)) (-5 *2 (-1 *6 *5)) (-5 *1 (-618 *5 *6)))))
+(-10 -7 (-15 -2472 ((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|))) (-15 -2472 (|#2| (-621 |#1|) (-621 |#2|) |#1|)) (-15 -2472 ((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|) |#2|)) (-15 -2472 (|#2| (-621 |#1|) (-621 |#2|) |#1| |#2|)) (-15 -2472 ((-1 |#2| |#1|) (-621 |#1|) (-621 |#2|) (-1 |#2| |#1|))) (-15 -2472 (|#2| (-621 |#1|) (-621 |#2|) |#1| (-1 |#2| |#1|))))
+((-2394 (((-621 |#2|) (-1 |#2| |#1| |#2|) (-621 |#1|) |#2|) 16)) (-2556 ((|#2| (-1 |#2| |#1| |#2|) (-621 |#1|) |#2|) 18)) (-2795 (((-621 |#2|) (-1 |#2| |#1|) (-621 |#1|)) 13)))
+(((-619 |#1| |#2|) (-10 -7 (-15 -2394 ((-621 |#2|) (-1 |#2| |#1| |#2|) (-621 |#1|) |#2|)) (-15 -2556 (|#2| (-1 |#2| |#1| |#2|) (-621 |#1|) |#2|)) (-15 -2795 ((-621 |#2|) (-1 |#2| |#1|) (-621 |#1|)))) (-1179) (-1179)) (T -619))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-621 *5)) (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-621 *6)) (-5 *1 (-619 *5 *6)))) (-2556 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-621 *5)) (-4 *5 (-1179)) (-4 *2 (-1179)) (-5 *1 (-619 *5 *2)))) (-2394 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-621 *6)) (-4 *6 (-1179)) (-4 *5 (-1179)) (-5 *2 (-621 *5)) (-5 *1 (-619 *6 *5)))))
+(-10 -7 (-15 -2394 ((-621 |#2|) (-1 |#2| |#1| |#2|) (-621 |#1|) |#2|)) (-15 -2556 (|#2| (-1 |#2| |#1| |#2|) (-621 |#1|) |#2|)) (-15 -2795 ((-621 |#2|) (-1 |#2| |#1|) (-621 |#1|))))
+((-2795 (((-621 |#3|) (-1 |#3| |#1| |#2|) (-621 |#1|) (-621 |#2|)) 13)))
+(((-620 |#1| |#2| |#3|) (-10 -7 (-15 -2795 ((-621 |#3|) (-1 |#3| |#1| |#2|) (-621 |#1|) (-621 |#2|)))) (-1179) (-1179) (-1179)) (T -620))
+((-2795 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-621 *6)) (-5 *5 (-621 *7)) (-4 *6 (-1179)) (-4 *7 (-1179)) (-4 *8 (-1179)) (-5 *2 (-621 *8)) (-5 *1 (-620 *6 *7 *8)))))
+(-10 -7 (-15 -2795 ((-621 |#3|) (-1 |#3| |#1| |#2|) (-621 |#1|) (-621 |#2|))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-4160 ((|#1| $) NIL)) (-2837 ((|#1| $) NIL)) (-1342 (($ $) NIL)) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-3327 (($ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2239 (((-112) $) NIL (|has| |#1| (-823))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-2015 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-823)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-3191 (($ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-2797 ((|#1| $ |#1|) NIL (|has| $ (-6 -4337)))) (-3931 (($ $ $) NIL (|has| $ (-6 -4337)))) (-1806 ((|#1| $ |#1|) NIL (|has| $ (-6 -4337)))) (-1368 ((|#1| $ |#1|) NIL (|has| $ (-6 -4337)))) (-2250 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4337))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4337))) (($ $ "rest" $) NIL (|has| $ (-6 -4337))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) NIL (|has| $ (-6 -4337))) ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) NIL (|has| $ (-6 -4337)))) (-3581 (($ $ $) 32 (|has| |#1| (-1066)))) (-3571 (($ $ $) 34 (|has| |#1| (-1066)))) (-3557 (($ $ $) 37 (|has| |#1| (-1066)))) (-3827 (($ (-1 (-112) |#1|) $) NIL)) (-1488 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2827 ((|#1| $) NIL)) (-3034 (($) NIL T CONST)) (-2918 (($ $) NIL (|has| $ (-6 -4337)))) (-3062 (($ $) NIL)) (-3656 (($ $) NIL) (($ $ (-747)) NIL)) (-3469 (($ $) NIL (|has| |#1| (-1066)))) (-3675 (($ $) 31 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3546 (($ |#1| $) NIL (|has| |#1| (-1066))) (($ (-1 (-112) |#1|) $) NIL)) (-3812 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1875 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) NIL)) (-2897 (((-112) $) NIL)) (-2881 (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1066))) (((-549) |#1| $) NIL (|has| |#1| (-1066))) (((-549) (-1 (-112) |#1|) $) NIL)) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-3253 (((-112) $) 9)) (-3747 (((-621 $) $) NIL)) (-3585 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2623 (($) 7)) (-3743 (($ (-747) |#1|) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) NIL (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3021 (($ $ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3050 (($ $ $) NIL (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 33 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3521 (($ |#1|) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3590 (((-621 |#1|) $) NIL)) (-3028 (((-112) $) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-3828 ((|#1| $) NIL) (($ $ (-747)) NIL)) (-1799 (($ $ $ (-549)) NIL) (($ |#1| $ (-549)) NIL)) (-2613 (($ $ $ (-549)) NIL) (($ |#1| $ (-549)) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3645 ((|#1| $) NIL) (($ $ (-747)) NIL)) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1943 (($ $ |#1|) NIL (|has| $ (-6 -4337)))) (-2791 (((-112) $) NIL)) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1192 (-549))) NIL) ((|#1| $ (-549)) 36) ((|#1| $ (-549) |#1|) NIL)) (-3541 (((-549) $ $) NIL)) (-2149 (($ $ (-1192 (-549))) NIL) (($ $ (-549)) NIL)) (-2162 (($ $ (-1192 (-549))) NIL) (($ $ (-549)) NIL)) (-2917 (((-112) $) NIL)) (-2188 (($ $) NIL)) (-1829 (($ $) NIL (|has| $ (-6 -4337)))) (-3117 (((-747) $) NIL)) (-2528 (($ $) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2049 (($ $ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) 45 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) NIL)) (-3171 (($ |#1| $) 10)) (-3859 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1950 (($ $ $) 30) (($ |#1| $) NIL) (($ (-621 $)) NIL) (($ $ |#1|) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) NIL)) (-3605 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3717 (($ $ $) 11)) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-4035 (((-1124) $) 26 (|has| |#1| (-804))) (((-1124) $ (-112)) 27 (|has| |#1| (-804))) (((-1230) (-798) $) 28 (|has| |#1| (-804))) (((-1230) (-798) $ (-112)) 29 (|has| |#1| (-804)))) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-621 |#1|) (-13 (-642 |#1|) (-10 -8 (-15 -2623 ($)) (-15 -3253 ((-112) $)) (-15 -3171 ($ |#1| $)) (-15 -3717 ($ $ $)) (IF (|has| |#1| (-1066)) (PROGN (-15 -3581 ($ $ $)) (-15 -3571 ($ $ $)) (-15 -3557 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-804)) (-6 (-804)) |%noBranch|))) (-1179)) (T -621))
+((-2623 (*1 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1179)))) (-3253 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-621 *3)) (-4 *3 (-1179)))) (-3171 (*1 *1 *2 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1179)))) (-3717 (*1 *1 *1 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1179)))) (-3581 (*1 *1 *1 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1066)) (-4 *2 (-1179)))) (-3571 (*1 *1 *1 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1066)) (-4 *2 (-1179)))) (-3557 (*1 *1 *1 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1066)) (-4 *2 (-1179)))))
+(-13 (-642 |#1|) (-10 -8 (-15 -2623 ($)) (-15 -3253 ((-112) $)) (-15 -3171 ($ |#1| $)) (-15 -3717 ($ $ $)) (IF (|has| |#1| (-1066)) (PROGN (-15 -3581 ($ $ $)) (-15 -3571 ($ $ $)) (-15 -3557 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-804)) (-6 (-804)) |%noBranch|)))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 11) (((-1147) $) NIL) (($ (-1147)) NIL) ((|#1| $) 8)) (-2387 (((-112) $ $) NIL)))
+(((-622 |#1|) (-13 (-1049) (-593 |#1|)) (-1066)) (T -622))
+NIL
+(-13 (-1049) (-593 |#1|))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3667 (($ |#1| |#1| $) 43)) (-2850 (((-112) $ (-747)) NIL)) (-3827 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-3469 (($ $) 45)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3546 (($ |#1| $) 52 (|has| $ (-6 -4336))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4336)))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4336)))) (-2987 (((-621 |#1|) $) 9 (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1864 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 37)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-2548 ((|#1| $) 46)) (-1799 (($ |#1| $) 26) (($ |#1| $ (-747)) 42)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3536 ((|#1| $) 48)) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) 21)) (-3288 (($) 25)) (-1983 (((-112) $) 50)) (-1359 (((-621 (-2 (|:| -1791 |#1|) (|:| -3997 (-747)))) $) 59)) (-3226 (($) 23) (($ (-621 |#1|)) 18)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) 56 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) 19)) (-2843 (((-525) $) 34 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) NIL)) (-3845 (((-834) $) 14 (|has| |#1| (-593 (-834))))) (-4213 (($ (-621 |#1|)) 22)) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 61 (|has| |#1| (-1066)))) (-3774 (((-747) $) 16 (|has| $ (-6 -4336)))))
+(((-623 |#1|) (-13 (-671 |#1|) (-10 -8 (-6 -4336) (-15 -1983 ((-112) $)) (-15 -3667 ($ |#1| |#1| $)))) (-1066)) (T -623))
+((-1983 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-623 *3)) (-4 *3 (-1066)))) (-3667 (*1 *1 *2 *2 *1) (-12 (-5 *1 (-623 *2)) (-4 *2 (-1066)))))
+(-13 (-671 |#1|) (-10 -8 (-6 -4336) (-15 -1983 ((-112) $)) (-15 -3667 ($ |#1| |#1| $))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ |#1| $) 23)))
(((-624 |#1|) (-138) (-1025)) (T -624))
((* (*1 *1 *2 *1) (-12 (-4 *1 (-624 *2)) (-4 *2 (-1025)))))
(-13 (-21) (-10 -8 (-15 * ($ |t#1| $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-3614 (((-747) $) 15)) (-1652 (($ $ |#1|) 56)) (-1585 (($ $) 32)) (-3064 (($ $) 31)) (-2714 (((-3 |#1| "failed") $) 48)) (-2659 ((|#1| $) NIL)) (-3441 (($ |#1| |#2| $) 63) (($ $ $) 64)) (-2573 (((-834) $ (-1 (-834) (-834) (-834)) (-1 (-834) (-834) (-834)) (-549)) 46)) (-1302 ((|#1| $ (-549)) 30)) (-2009 ((|#2| $ (-549)) 29)) (-3482 (($ (-1 |#1| |#1|) $) 34)) (-3653 (($ (-1 |#2| |#2|) $) 38)) (-2436 (($) 10)) (-2021 (($ |#1| |#2|) 22)) (-4147 (($ (-621 (-2 (|:| |gen| |#1|) (|:| -2719 |#2|)))) 23)) (-3617 (((-621 (-2 (|:| |gen| |#1|) (|:| -2719 |#2|))) $) 13)) (-2698 (($ |#1| $) 57)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2806 (((-112) $ $) 60)) (-3846 (((-834) $) 19) (($ |#1|) 16)) (-2389 (((-112) $ $) 25)))
-(((-625 |#1| |#2| |#3|) (-13 (-1067) (-1009 |#1|) (-10 -8 (-15 -2573 ((-834) $ (-1 (-834) (-834) (-834)) (-1 (-834) (-834) (-834)) (-549))) (-15 -3617 ((-621 (-2 (|:| |gen| |#1|) (|:| -2719 |#2|))) $)) (-15 -2021 ($ |#1| |#2|)) (-15 -4147 ($ (-621 (-2 (|:| |gen| |#1|) (|:| -2719 |#2|))))) (-15 -2009 (|#2| $ (-549))) (-15 -1302 (|#1| $ (-549))) (-15 -3064 ($ $)) (-15 -1585 ($ $)) (-15 -3614 ((-747) $)) (-15 -2436 ($)) (-15 -1652 ($ $ |#1|)) (-15 -2698 ($ |#1| $)) (-15 -3441 ($ |#1| |#2| $)) (-15 -3441 ($ $ $)) (-15 -2806 ((-112) $ $)) (-15 -3653 ($ (-1 |#2| |#2|) $)) (-15 -3482 ($ (-1 |#1| |#1|) $)))) (-1067) (-23) |#2|) (T -625))
-((-2573 (*1 *2 *1 *3 *3 *4) (-12 (-5 *3 (-1 (-834) (-834) (-834))) (-5 *4 (-549)) (-5 *2 (-834)) (-5 *1 (-625 *5 *6 *7)) (-4 *5 (-1067)) (-4 *6 (-23)) (-14 *7 *6))) (-3617 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2719 *4)))) (-5 *1 (-625 *3 *4 *5)) (-4 *3 (-1067)) (-4 *4 (-23)) (-14 *5 *4))) (-2021 (*1 *1 *2 *3) (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1067)) (-4 *3 (-23)) (-14 *4 *3))) (-4147 (*1 *1 *2) (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2719 *4)))) (-4 *3 (-1067)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-625 *3 *4 *5)))) (-2009 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *2 (-23)) (-5 *1 (-625 *4 *2 *5)) (-4 *4 (-1067)) (-14 *5 *2))) (-1302 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *2 (-1067)) (-5 *1 (-625 *2 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))) (-3064 (*1 *1 *1) (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1067)) (-4 *3 (-23)) (-14 *4 *3))) (-1585 (*1 *1 *1) (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1067)) (-4 *3 (-23)) (-14 *4 *3))) (-3614 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-625 *3 *4 *5)) (-4 *3 (-1067)) (-4 *4 (-23)) (-14 *5 *4))) (-2436 (*1 *1) (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1067)) (-4 *3 (-23)) (-14 *4 *3))) (-1652 (*1 *1 *1 *2) (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1067)) (-4 *3 (-23)) (-14 *4 *3))) (-2698 (*1 *1 *2 *1) (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1067)) (-4 *3 (-23)) (-14 *4 *3))) (-3441 (*1 *1 *2 *3 *1) (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1067)) (-4 *3 (-23)) (-14 *4 *3))) (-3441 (*1 *1 *1 *1) (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1067)) (-4 *3 (-23)) (-14 *4 *3))) (-2806 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-625 *3 *4 *5)) (-4 *3 (-1067)) (-4 *4 (-23)) (-14 *5 *4))) (-3653 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-625 *3 *4 *5)) (-4 *3 (-1067)))) (-3482 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1067)) (-5 *1 (-625 *3 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))))
-(-13 (-1067) (-1009 |#1|) (-10 -8 (-15 -2573 ((-834) $ (-1 (-834) (-834) (-834)) (-1 (-834) (-834) (-834)) (-549))) (-15 -3617 ((-621 (-2 (|:| |gen| |#1|) (|:| -2719 |#2|))) $)) (-15 -2021 ($ |#1| |#2|)) (-15 -4147 ($ (-621 (-2 (|:| |gen| |#1|) (|:| -2719 |#2|))))) (-15 -2009 (|#2| $ (-549))) (-15 -1302 (|#1| $ (-549))) (-15 -3064 ($ $)) (-15 -1585 ($ $)) (-15 -3614 ((-747) $)) (-15 -2436 ($)) (-15 -1652 ($ $ |#1|)) (-15 -2698 ($ |#1| $)) (-15 -3441 ($ |#1| |#2| $)) (-15 -3441 ($ $ $)) (-15 -2806 ((-112) $ $)) (-15 -3653 ($ (-1 |#2| |#2|) $)) (-15 -3482 ($ (-1 |#1| |#1|) $))))
-((-1569 (((-549) $) 24)) (-2616 (($ |#2| $ (-549)) 22) (($ $ $ (-549)) NIL)) (-3303 (((-621 (-549)) $) 12)) (-3761 (((-112) (-549) $) 15)) (-1952 (($ $ |#2|) 19) (($ |#2| $) 20) (($ $ $) NIL) (($ (-621 $)) NIL)))
-(((-626 |#1| |#2|) (-10 -8 (-15 -2616 (|#1| |#1| |#1| (-549))) (-15 -2616 (|#1| |#2| |#1| (-549))) (-15 -1952 (|#1| (-621 |#1|))) (-15 -1952 (|#1| |#1| |#1|)) (-15 -1952 (|#1| |#2| |#1|)) (-15 -1952 (|#1| |#1| |#2|)) (-15 -1569 ((-549) |#1|)) (-15 -3303 ((-621 (-549)) |#1|)) (-15 -3761 ((-112) (-549) |#1|))) (-627 |#2|) (-1180)) (T -626))
-NIL
-(-10 -8 (-15 -2616 (|#1| |#1| |#1| (-549))) (-15 -2616 (|#1| |#2| |#1| (-549))) (-15 -1952 (|#1| (-621 |#1|))) (-15 -1952 (|#1| |#1| |#1|)) (-15 -1952 (|#1| |#2| |#1|)) (-15 -1952 (|#1| |#1| |#2|)) (-15 -1569 ((-549) |#1|)) (-15 -3303 ((-621 (-549)) |#1|)) (-15 -3761 ((-112) (-549) |#1|)))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-1535 (((-1231) $ (-549) (-549)) 40 (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) 8)) (-2254 ((|#1| $ (-549) |#1|) 52 (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) 58 (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4337)))) (-1682 (($) 7 T CONST)) (-3676 (($ $) 78 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ |#1| $) 77 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4337)))) (-1879 ((|#1| $ (-549) |#1|) 53 (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) 51)) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3743 (($ (-747) |#1|) 69)) (-3194 (((-112) $ (-747)) 9)) (-4031 (((-549) $) 43 (|has| (-549) (-823)))) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1569 (((-549) $) 44 (|has| (-549) (-823)))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-2616 (($ |#1| $ (-549)) 60) (($ $ $ (-549)) 59)) (-3303 (((-621 (-549)) $) 46)) (-3761 (((-112) (-549) $) 47)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-3646 ((|#1| $) 42 (|has| (-549) (-823)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-1642 (($ $ |#1|) 41 (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-2265 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) 48)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#1| $ (-549) |#1|) 50) ((|#1| $ (-549)) 49) (($ $ (-1193 (-549))) 63)) (-2167 (($ $ (-549)) 62) (($ $ (-1193 (-549))) 61)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-2845 (((-525) $) 79 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 70)) (-1952 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-621 $)) 65)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-627 |#1|) (-138) (-1180)) (T -627))
-((-3743 (*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-4 *1 (-627 *3)) (-4 *3 (-1180)))) (-1952 (*1 *1 *1 *2) (-12 (-4 *1 (-627 *2)) (-4 *2 (-1180)))) (-1952 (*1 *1 *2 *1) (-12 (-4 *1 (-627 *2)) (-4 *2 (-1180)))) (-1952 (*1 *1 *1 *1) (-12 (-4 *1 (-627 *2)) (-4 *2 (-1180)))) (-1952 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-627 *3)) (-4 *3 (-1180)))) (-2797 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-627 *3)) (-4 *3 (-1180)))) (-3341 (*1 *1 *1 *2) (-12 (-5 *2 (-1193 (-549))) (-4 *1 (-627 *3)) (-4 *3 (-1180)))) (-2167 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-627 *3)) (-4 *3 (-1180)))) (-2167 (*1 *1 *1 *2) (-12 (-5 *2 (-1193 (-549))) (-4 *1 (-627 *3)) (-4 *3 (-1180)))) (-2616 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-627 *2)) (-4 *2 (-1180)))) (-2616 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-627 *3)) (-4 *3 (-1180)))) (-2254 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-1193 (-549))) (|has| *1 (-6 -4338)) (-4 *1 (-627 *2)) (-4 *2 (-1180)))))
-(-13 (-584 (-549) |t#1|) (-149 |t#1|) (-10 -8 (-15 -3743 ($ (-747) |t#1|)) (-15 -1952 ($ $ |t#1|)) (-15 -1952 ($ |t#1| $)) (-15 -1952 ($ $ $)) (-15 -1952 ($ (-621 $))) (-15 -2797 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -3341 ($ $ (-1193 (-549)))) (-15 -2167 ($ $ (-549))) (-15 -2167 ($ $ (-1193 (-549)))) (-15 -2616 ($ |t#1| $ (-549))) (-15 -2616 ($ $ $ (-549))) (IF (|has| $ (-6 -4338)) (-15 -2254 (|t#1| $ (-1193 (-549)) |t#1|)) |%noBranch|)))
-(((-34) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-1067) |has| |#1| (-1067)) ((-1180) . T))
-((-2227 (((-3 |#2| "failed") |#3| |#2| (-1143) |#2| (-621 |#2|)) 160) (((-3 (-2 (|:| |particular| |#2|) (|:| -1949 (-621 |#2|))) "failed") |#3| |#2| (-1143)) 44)))
-(((-628 |#1| |#2| |#3|) (-10 -7 (-15 -2227 ((-3 (-2 (|:| |particular| |#2|) (|:| -1949 (-621 |#2|))) "failed") |#3| |#2| (-1143))) (-15 -2227 ((-3 |#2| "failed") |#3| |#2| (-1143) |#2| (-621 |#2|)))) (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)) (-13 (-29 |#1|) (-1165) (-930)) (-632 |#2|)) (T -628))
-((-2227 (*1 *2 *3 *2 *4 *2 *5) (|partial| -12 (-5 *4 (-1143)) (-5 *5 (-621 *2)) (-4 *2 (-13 (-29 *6) (-1165) (-930))) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *1 (-628 *6 *2 *3)) (-4 *3 (-632 *2)))) (-2227 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1143)) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-4 *4 (-13 (-29 *6) (-1165) (-930))) (-5 *2 (-2 (|:| |particular| *4) (|:| -1949 (-621 *4)))) (-5 *1 (-628 *6 *4 *3)) (-4 *3 (-632 *4)))))
-(-10 -7 (-15 -2227 ((-3 (-2 (|:| |particular| |#2|) (|:| -1949 (-621 |#2|))) "failed") |#3| |#2| (-1143))) (-15 -2227 ((-3 |#2| "failed") |#3| |#2| (-1143) |#2| (-621 |#2|))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-4250 (($ $) NIL (|has| |#1| (-356)))) (-3411 (($ $ $) NIL (|has| |#1| (-356)))) (-3167 (($ $ (-747)) NIL (|has| |#1| (-356)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2408 (($ $ $) NIL (|has| |#1| (-356)))) (-2047 (($ $ $) NIL (|has| |#1| (-356)))) (-3723 (($ $ $) NIL (|has| |#1| (-356)))) (-3816 (($ $ $) NIL (|has| |#1| (-356)))) (-2367 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-1599 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-3216 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-356)))) (-2714 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) NIL)) (-2659 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-2070 (($ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1285 (($ $) NIL (|has| |#1| (-444)))) (-2675 (((-112) $) NIL)) (-2246 (($ |#1| (-747)) NIL)) (-2057 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-541)))) (-3771 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-541)))) (-3611 (((-747) $) NIL)) (-2990 (($ $ $) NIL (|has| |#1| (-356)))) (-3494 (($ $ $) NIL (|has| |#1| (-356)))) (-1993 (($ $ $) NIL (|has| |#1| (-356)))) (-1944 (($ $ $) NIL (|has| |#1| (-356)))) (-2739 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-2322 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-3350 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-356)))) (-2043 ((|#1| $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2042 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541)))) (-3341 ((|#1| $ |#1|) NIL)) (-3485 (($ $ $) NIL (|has| |#1| (-356)))) (-3701 (((-747) $) NIL)) (-2216 ((|#1| $) NIL (|has| |#1| (-444)))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ (-400 (-549))) NIL (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) NIL)) (-4141 (((-621 |#1|) $) NIL)) (-2152 ((|#1| $ (-747)) NIL)) (-2082 (((-747)) NIL)) (-3596 ((|#1| $ |#1| |#1|) NIL)) (-1709 (($ $) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($) NIL)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-3614 (((-747) $) 15)) (-2269 (($ $ |#1|) 56)) (-2918 (($ $) 32)) (-3062 (($ $) 31)) (-2712 (((-3 |#1| "failed") $) 48)) (-2657 ((|#1| $) NIL)) (-3439 (($ |#1| |#2| $) 63) (($ $ $) 64)) (-2856 (((-834) $ (-1 (-834) (-834) (-834)) (-1 (-834) (-834) (-834)) (-549)) 46)) (-2941 ((|#1| $ (-549)) 30)) (-1805 ((|#2| $ (-549)) 29)) (-1634 (($ (-1 |#1| |#1|) $) 34)) (-3702 (($ (-1 |#2| |#2|) $) 38)) (-1835 (($) 10)) (-3530 (($ |#1| |#2|) 22)) (-1608 (($ (-621 (-2 (|:| |gen| |#1|) (|:| -2717 |#2|)))) 23)) (-1630 (((-621 (-2 (|:| |gen| |#1|) (|:| -2717 |#2|))) $) 13)) (-3526 (($ |#1| $) 57)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3393 (((-112) $ $) 60)) (-3845 (((-834) $) 19) (($ |#1|) 16)) (-2387 (((-112) $ $) 25)))
+(((-625 |#1| |#2| |#3|) (-13 (-1066) (-1009 |#1|) (-10 -8 (-15 -2856 ((-834) $ (-1 (-834) (-834) (-834)) (-1 (-834) (-834) (-834)) (-549))) (-15 -1630 ((-621 (-2 (|:| |gen| |#1|) (|:| -2717 |#2|))) $)) (-15 -3530 ($ |#1| |#2|)) (-15 -1608 ($ (-621 (-2 (|:| |gen| |#1|) (|:| -2717 |#2|))))) (-15 -1805 (|#2| $ (-549))) (-15 -2941 (|#1| $ (-549))) (-15 -3062 ($ $)) (-15 -2918 ($ $)) (-15 -3614 ((-747) $)) (-15 -1835 ($)) (-15 -2269 ($ $ |#1|)) (-15 -3526 ($ |#1| $)) (-15 -3439 ($ |#1| |#2| $)) (-15 -3439 ($ $ $)) (-15 -3393 ((-112) $ $)) (-15 -3702 ($ (-1 |#2| |#2|) $)) (-15 -1634 ($ (-1 |#1| |#1|) $)))) (-1066) (-23) |#2|) (T -625))
+((-2856 (*1 *2 *1 *3 *3 *4) (-12 (-5 *3 (-1 (-834) (-834) (-834))) (-5 *4 (-549)) (-5 *2 (-834)) (-5 *1 (-625 *5 *6 *7)) (-4 *5 (-1066)) (-4 *6 (-23)) (-14 *7 *6))) (-1630 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2717 *4)))) (-5 *1 (-625 *3 *4 *5)) (-4 *3 (-1066)) (-4 *4 (-23)) (-14 *5 *4))) (-3530 (*1 *1 *2 *3) (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1066)) (-4 *3 (-23)) (-14 *4 *3))) (-1608 (*1 *1 *2) (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2717 *4)))) (-4 *3 (-1066)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-625 *3 *4 *5)))) (-1805 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *2 (-23)) (-5 *1 (-625 *4 *2 *5)) (-4 *4 (-1066)) (-14 *5 *2))) (-2941 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *2 (-1066)) (-5 *1 (-625 *2 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))) (-3062 (*1 *1 *1) (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1066)) (-4 *3 (-23)) (-14 *4 *3))) (-2918 (*1 *1 *1) (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1066)) (-4 *3 (-23)) (-14 *4 *3))) (-3614 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-625 *3 *4 *5)) (-4 *3 (-1066)) (-4 *4 (-23)) (-14 *5 *4))) (-1835 (*1 *1) (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1066)) (-4 *3 (-23)) (-14 *4 *3))) (-2269 (*1 *1 *1 *2) (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1066)) (-4 *3 (-23)) (-14 *4 *3))) (-3526 (*1 *1 *2 *1) (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1066)) (-4 *3 (-23)) (-14 *4 *3))) (-3439 (*1 *1 *2 *3 *1) (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1066)) (-4 *3 (-23)) (-14 *4 *3))) (-3439 (*1 *1 *1 *1) (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1066)) (-4 *3 (-23)) (-14 *4 *3))) (-3393 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-625 *3 *4 *5)) (-4 *3 (-1066)) (-4 *4 (-23)) (-14 *5 *4))) (-3702 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-625 *3 *4 *5)) (-4 *3 (-1066)))) (-1634 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1066)) (-5 *1 (-625 *3 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))))
+(-13 (-1066) (-1009 |#1|) (-10 -8 (-15 -2856 ((-834) $ (-1 (-834) (-834) (-834)) (-1 (-834) (-834) (-834)) (-549))) (-15 -1630 ((-621 (-2 (|:| |gen| |#1|) (|:| -2717 |#2|))) $)) (-15 -3530 ($ |#1| |#2|)) (-15 -1608 ($ (-621 (-2 (|:| |gen| |#1|) (|:| -2717 |#2|))))) (-15 -1805 (|#2| $ (-549))) (-15 -2941 (|#1| $ (-549))) (-15 -3062 ($ $)) (-15 -2918 ($ $)) (-15 -3614 ((-747) $)) (-15 -1835 ($)) (-15 -2269 ($ $ |#1|)) (-15 -3526 ($ |#1| $)) (-15 -3439 ($ |#1| |#2| $)) (-15 -3439 ($ $ $)) (-15 -3393 ((-112) $ $)) (-15 -3702 ($ (-1 |#2| |#2|) $)) (-15 -1634 ($ (-1 |#1| |#1|) $))))
+((-3063 (((-549) $) 24)) (-2613 (($ |#2| $ (-549)) 22) (($ $ $ (-549)) NIL)) (-2296 (((-621 (-549)) $) 12)) (-2284 (((-112) (-549) $) 15)) (-1950 (($ $ |#2|) 19) (($ |#2| $) 20) (($ $ $) NIL) (($ (-621 $)) NIL)))
+(((-626 |#1| |#2|) (-10 -8 (-15 -2613 (|#1| |#1| |#1| (-549))) (-15 -2613 (|#1| |#2| |#1| (-549))) (-15 -1950 (|#1| (-621 |#1|))) (-15 -1950 (|#1| |#1| |#1|)) (-15 -1950 (|#1| |#2| |#1|)) (-15 -1950 (|#1| |#1| |#2|)) (-15 -3063 ((-549) |#1|)) (-15 -2296 ((-621 (-549)) |#1|)) (-15 -2284 ((-112) (-549) |#1|))) (-627 |#2|) (-1179)) (T -626))
+NIL
+(-10 -8 (-15 -2613 (|#1| |#1| |#1| (-549))) (-15 -2613 (|#1| |#2| |#1| (-549))) (-15 -1950 (|#1| (-621 |#1|))) (-15 -1950 (|#1| |#1| |#1|)) (-15 -1950 (|#1| |#2| |#1|)) (-15 -1950 (|#1| |#1| |#2|)) (-15 -3063 ((-549) |#1|)) (-15 -2296 ((-621 (-549)) |#1|)) (-15 -2284 ((-112) (-549) |#1|)))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-3659 (((-1230) $ (-549) (-549)) 40 (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) 8)) (-2250 ((|#1| $ (-549) |#1|) 52 (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) 58 (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4336)))) (-3034 (($) 7 T CONST)) (-3675 (($ $) 78 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ |#1| $) 77 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4336)))) (-1875 ((|#1| $ (-549) |#1|) 53 (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) 51)) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-3743 (($ (-747) |#1|) 69)) (-1777 (((-112) $ (-747)) 9)) (-2807 (((-549) $) 43 (|has| (-549) (-823)))) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3063 (((-549) $) 44 (|has| (-549) (-823)))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-2613 (($ |#1| $ (-549)) 60) (($ $ $ (-549)) 59)) (-2296 (((-621 (-549)) $) 46)) (-2284 (((-112) (-549) $) 47)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3645 ((|#1| $) 42 (|has| (-549) (-823)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-1943 (($ $ |#1|) 41 (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2478 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) 48)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#1| $ (-549) |#1|) 50) ((|#1| $ (-549)) 49) (($ $ (-1192 (-549))) 63)) (-2162 (($ $ (-549)) 62) (($ $ (-1192 (-549))) 61)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-2843 (((-525) $) 79 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 70)) (-1950 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-621 $)) 65)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-627 |#1|) (-138) (-1179)) (T -627))
+((-3743 (*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-4 *1 (-627 *3)) (-4 *3 (-1179)))) (-1950 (*1 *1 *1 *2) (-12 (-4 *1 (-627 *2)) (-4 *2 (-1179)))) (-1950 (*1 *1 *2 *1) (-12 (-4 *1 (-627 *2)) (-4 *2 (-1179)))) (-1950 (*1 *1 *1 *1) (-12 (-4 *1 (-627 *2)) (-4 *2 (-1179)))) (-1950 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-627 *3)) (-4 *3 (-1179)))) (-2795 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-627 *3)) (-4 *3 (-1179)))) (-3339 (*1 *1 *1 *2) (-12 (-5 *2 (-1192 (-549))) (-4 *1 (-627 *3)) (-4 *3 (-1179)))) (-2162 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-627 *3)) (-4 *3 (-1179)))) (-2162 (*1 *1 *1 *2) (-12 (-5 *2 (-1192 (-549))) (-4 *1 (-627 *3)) (-4 *3 (-1179)))) (-2613 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-627 *2)) (-4 *2 (-1179)))) (-2613 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-627 *3)) (-4 *3 (-1179)))) (-2250 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-1192 (-549))) (|has| *1 (-6 -4337)) (-4 *1 (-627 *2)) (-4 *2 (-1179)))))
+(-13 (-584 (-549) |t#1|) (-149 |t#1|) (-10 -8 (-15 -3743 ($ (-747) |t#1|)) (-15 -1950 ($ $ |t#1|)) (-15 -1950 ($ |t#1| $)) (-15 -1950 ($ $ $)) (-15 -1950 ($ (-621 $))) (-15 -2795 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -3339 ($ $ (-1192 (-549)))) (-15 -2162 ($ $ (-549))) (-15 -2162 ($ $ (-1192 (-549)))) (-15 -2613 ($ |t#1| $ (-549))) (-15 -2613 ($ $ $ (-549))) (IF (|has| $ (-6 -4337)) (-15 -2250 (|t#1| $ (-1192 (-549)) |t#1|)) |%noBranch|)))
+(((-34) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-1066) |has| |#1| (-1066)) ((-1179) . T))
+((-2310 (((-3 |#2| "failed") |#3| |#2| (-1142) |#2| (-621 |#2|)) 160) (((-3 (-2 (|:| |particular| |#2|) (|:| -2619 (-621 |#2|))) "failed") |#3| |#2| (-1142)) 44)))
+(((-628 |#1| |#2| |#3|) (-10 -7 (-15 -2310 ((-3 (-2 (|:| |particular| |#2|) (|:| -2619 (-621 |#2|))) "failed") |#3| |#2| (-1142))) (-15 -2310 ((-3 |#2| "failed") |#3| |#2| (-1142) |#2| (-621 |#2|)))) (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)) (-13 (-29 |#1|) (-1164) (-930)) (-632 |#2|)) (T -628))
+((-2310 (*1 *2 *3 *2 *4 *2 *5) (|partial| -12 (-5 *4 (-1142)) (-5 *5 (-621 *2)) (-4 *2 (-13 (-29 *6) (-1164) (-930))) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *1 (-628 *6 *2 *3)) (-4 *3 (-632 *2)))) (-2310 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1142)) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-4 *4 (-13 (-29 *6) (-1164) (-930))) (-5 *2 (-2 (|:| |particular| *4) (|:| -2619 (-621 *4)))) (-5 *1 (-628 *6 *4 *3)) (-4 *3 (-632 *4)))))
+(-10 -7 (-15 -2310 ((-3 (-2 (|:| |particular| |#2|) (|:| -2619 (-621 |#2|))) "failed") |#3| |#2| (-1142))) (-15 -2310 ((-3 |#2| "failed") |#3| |#2| (-1142) |#2| (-621 |#2|))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3294 (($ $) NIL (|has| |#1| (-356)))) (-3897 (($ $ $) NIL (|has| |#1| (-356)))) (-3742 (($ $ (-747)) NIL (|has| |#1| (-356)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-1891 (($ $ $) NIL (|has| |#1| (-356)))) (-1456 (($ $ $) NIL (|has| |#1| (-356)))) (-2315 (($ $ $) NIL (|has| |#1| (-356)))) (-1944 (($ $ $) NIL (|has| |#1| (-356)))) (-2687 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-2723 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-1363 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-356)))) (-2712 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) NIL)) (-2657 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-2068 (($ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3004 (($ $) NIL (|has| |#1| (-444)))) (-2297 (((-112) $) NIL)) (-2244 (($ |#1| (-747)) NIL)) (-4155 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-541)))) (-1588 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-541)))) (-2391 (((-747) $) NIL)) (-2438 (($ $ $) NIL (|has| |#1| (-356)))) (-3723 (($ $ $) NIL (|has| |#1| (-356)))) (-2929 (($ $ $) NIL (|has| |#1| (-356)))) (-3249 (($ $ $) NIL (|has| |#1| (-356)))) (-3076 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-2368 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-2063 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-356)))) (-2042 ((|#1| $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2040 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541)))) (-3339 ((|#1| $ |#1|) NIL)) (-1880 (($ $ $) NIL (|has| |#1| (-356)))) (-3977 (((-747) $) NIL)) (-1700 ((|#1| $) NIL (|has| |#1| (-444)))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ (-400 (-549))) NIL (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) NIL)) (-2157 (((-621 |#1|) $) NIL)) (-4068 ((|#1| $ (-747)) NIL)) (-2371 (((-747)) NIL)) (-3593 ((|#1| $ |#1| |#1|) NIL)) (-3478 (($ $) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($) NIL)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-629 |#1|) (-632 |#1|) (-227)) (T -629))
NIL
(-632 |#1|)
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-4250 (($ $) NIL (|has| |#1| (-356)))) (-3411 (($ $ $) NIL (|has| |#1| (-356)))) (-3167 (($ $ (-747)) NIL (|has| |#1| (-356)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2408 (($ $ $) NIL (|has| |#1| (-356)))) (-2047 (($ $ $) NIL (|has| |#1| (-356)))) (-3723 (($ $ $) NIL (|has| |#1| (-356)))) (-3816 (($ $ $) NIL (|has| |#1| (-356)))) (-2367 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-1599 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-3216 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-356)))) (-2714 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) NIL)) (-2659 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-2070 (($ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1285 (($ $) NIL (|has| |#1| (-444)))) (-2675 (((-112) $) NIL)) (-2246 (($ |#1| (-747)) NIL)) (-2057 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-541)))) (-3771 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-541)))) (-3611 (((-747) $) NIL)) (-2990 (($ $ $) NIL (|has| |#1| (-356)))) (-3494 (($ $ $) NIL (|has| |#1| (-356)))) (-1993 (($ $ $) NIL (|has| |#1| (-356)))) (-1944 (($ $ $) NIL (|has| |#1| (-356)))) (-2739 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-2322 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-3350 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-356)))) (-2043 ((|#1| $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2042 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541)))) (-3341 ((|#1| $ |#1|) NIL) ((|#2| $ |#2|) 13)) (-3485 (($ $ $) NIL (|has| |#1| (-356)))) (-3701 (((-747) $) NIL)) (-2216 ((|#1| $) NIL (|has| |#1| (-444)))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ (-400 (-549))) NIL (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) NIL)) (-4141 (((-621 |#1|) $) NIL)) (-2152 ((|#1| $ (-747)) NIL)) (-2082 (((-747)) NIL)) (-3596 ((|#1| $ |#1| |#1|) NIL)) (-1709 (($ $) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($) NIL)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-630 |#1| |#2|) (-13 (-632 |#1|) (-279 |#2| |#2|)) (-227) (-13 (-624 |#1|) (-10 -8 (-15 -3456 ($ $))))) (T -630))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3294 (($ $) NIL (|has| |#1| (-356)))) (-3897 (($ $ $) NIL (|has| |#1| (-356)))) (-3742 (($ $ (-747)) NIL (|has| |#1| (-356)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-1891 (($ $ $) NIL (|has| |#1| (-356)))) (-1456 (($ $ $) NIL (|has| |#1| (-356)))) (-2315 (($ $ $) NIL (|has| |#1| (-356)))) (-1944 (($ $ $) NIL (|has| |#1| (-356)))) (-2687 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-2723 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-1363 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-356)))) (-2712 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) NIL)) (-2657 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-2068 (($ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3004 (($ $) NIL (|has| |#1| (-444)))) (-2297 (((-112) $) NIL)) (-2244 (($ |#1| (-747)) NIL)) (-4155 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-541)))) (-1588 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-541)))) (-2391 (((-747) $) NIL)) (-2438 (($ $ $) NIL (|has| |#1| (-356)))) (-3723 (($ $ $) NIL (|has| |#1| (-356)))) (-2929 (($ $ $) NIL (|has| |#1| (-356)))) (-3249 (($ $ $) NIL (|has| |#1| (-356)))) (-3076 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-2368 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-2063 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-356)))) (-2042 ((|#1| $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2040 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541)))) (-3339 ((|#1| $ |#1|) NIL) ((|#2| $ |#2|) 13)) (-1880 (($ $ $) NIL (|has| |#1| (-356)))) (-3977 (((-747) $) NIL)) (-1700 ((|#1| $) NIL (|has| |#1| (-444)))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ (-400 (-549))) NIL (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) NIL)) (-2157 (((-621 |#1|) $) NIL)) (-4068 ((|#1| $ (-747)) NIL)) (-2371 (((-747)) NIL)) (-3593 ((|#1| $ |#1| |#1|) NIL)) (-3478 (($ $) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($) NIL)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-630 |#1| |#2|) (-13 (-632 |#1|) (-279 |#2| |#2|)) (-227) (-13 (-624 |#1|) (-10 -8 (-15 -3455 ($ $))))) (T -630))
NIL
(-13 (-632 |#1|) (-279 |#2| |#2|))
-((-4250 (($ $) 26)) (-1709 (($ $) 24)) (-1702 (($) 12)))
-(((-631 |#1| |#2|) (-10 -8 (-15 -4250 (|#1| |#1|)) (-15 -1709 (|#1| |#1|)) (-15 -1702 (|#1|))) (-632 |#2|) (-1018)) (T -631))
+((-3294 (($ $) 26)) (-3478 (($ $) 24)) (-1699 (($) 12)))
+(((-631 |#1| |#2|) (-10 -8 (-15 -3294 (|#1| |#1|)) (-15 -3478 (|#1| |#1|)) (-15 -1699 (|#1|))) (-632 |#2|) (-1018)) (T -631))
NIL
-(-10 -8 (-15 -4250 (|#1| |#1|)) (-15 -1709 (|#1| |#1|)) (-15 -1702 (|#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-4250 (($ $) 80 (|has| |#1| (-356)))) (-3411 (($ $ $) 82 (|has| |#1| (-356)))) (-3167 (($ $ (-747)) 81 (|has| |#1| (-356)))) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2408 (($ $ $) 43 (|has| |#1| (-356)))) (-2047 (($ $ $) 44 (|has| |#1| (-356)))) (-3723 (($ $ $) 46 (|has| |#1| (-356)))) (-3816 (($ $ $) 41 (|has| |#1| (-356)))) (-2367 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 40 (|has| |#1| (-356)))) (-1599 (((-3 $ "failed") $ $) 42 (|has| |#1| (-356)))) (-3216 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 45 (|has| |#1| (-356)))) (-2714 (((-3 (-549) "failed") $) 72 (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 70 (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 67)) (-2659 (((-549) $) 73 (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) 71 (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 66)) (-2070 (($ $) 62)) (-2114 (((-3 $ "failed") $) 32)) (-1285 (($ $) 53 (|has| |#1| (-444)))) (-2675 (((-112) $) 30)) (-2246 (($ |#1| (-747)) 60)) (-2057 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 55 (|has| |#1| (-541)))) (-3771 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 56 (|has| |#1| (-541)))) (-3611 (((-747) $) 64)) (-2990 (($ $ $) 50 (|has| |#1| (-356)))) (-3494 (($ $ $) 51 (|has| |#1| (-356)))) (-1993 (($ $ $) 39 (|has| |#1| (-356)))) (-1944 (($ $ $) 48 (|has| |#1| (-356)))) (-2739 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 47 (|has| |#1| (-356)))) (-2322 (((-3 $ "failed") $ $) 49 (|has| |#1| (-356)))) (-3350 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 52 (|has| |#1| (-356)))) (-2043 ((|#1| $) 63)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-2042 (((-3 $ "failed") $ |#1|) 57 (|has| |#1| (-541)))) (-3341 ((|#1| $ |#1|) 85)) (-3485 (($ $ $) 79 (|has| |#1| (-356)))) (-3701 (((-747) $) 65)) (-2216 ((|#1| $) 54 (|has| |#1| (-444)))) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 69 (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) 68)) (-4141 (((-621 |#1|) $) 59)) (-2152 ((|#1| $ (-747)) 61)) (-2082 (((-747)) 28)) (-3596 ((|#1| $ |#1| |#1|) 58)) (-1709 (($ $) 83)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($) 84)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 75) (($ |#1| $) 74)))
+(-10 -8 (-15 -3294 (|#1| |#1|)) (-15 -3478 (|#1| |#1|)) (-15 -1699 (|#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-3294 (($ $) 80 (|has| |#1| (-356)))) (-3897 (($ $ $) 82 (|has| |#1| (-356)))) (-3742 (($ $ (-747)) 81 (|has| |#1| (-356)))) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-1891 (($ $ $) 43 (|has| |#1| (-356)))) (-1456 (($ $ $) 44 (|has| |#1| (-356)))) (-2315 (($ $ $) 46 (|has| |#1| (-356)))) (-1944 (($ $ $) 41 (|has| |#1| (-356)))) (-2687 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 40 (|has| |#1| (-356)))) (-2723 (((-3 $ "failed") $ $) 42 (|has| |#1| (-356)))) (-1363 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 45 (|has| |#1| (-356)))) (-2712 (((-3 (-549) "failed") $) 72 (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 70 (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 67)) (-2657 (((-549) $) 73 (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) 71 (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 66)) (-2068 (($ $) 62)) (-2612 (((-3 $ "failed") $) 32)) (-3004 (($ $) 53 (|has| |#1| (-444)))) (-2297 (((-112) $) 30)) (-2244 (($ |#1| (-747)) 60)) (-4155 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 55 (|has| |#1| (-541)))) (-1588 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 56 (|has| |#1| (-541)))) (-2391 (((-747) $) 64)) (-2438 (($ $ $) 50 (|has| |#1| (-356)))) (-3723 (($ $ $) 51 (|has| |#1| (-356)))) (-2929 (($ $ $) 39 (|has| |#1| (-356)))) (-3249 (($ $ $) 48 (|has| |#1| (-356)))) (-3076 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 47 (|has| |#1| (-356)))) (-2368 (((-3 $ "failed") $ $) 49 (|has| |#1| (-356)))) (-2063 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 52 (|has| |#1| (-356)))) (-2042 ((|#1| $) 63)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2040 (((-3 $ "failed") $ |#1|) 57 (|has| |#1| (-541)))) (-3339 ((|#1| $ |#1|) 85)) (-1880 (($ $ $) 79 (|has| |#1| (-356)))) (-3977 (((-747) $) 65)) (-1700 ((|#1| $) 54 (|has| |#1| (-444)))) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 69 (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) 68)) (-2157 (((-621 |#1|) $) 59)) (-4068 ((|#1| $ (-747)) 61)) (-2371 (((-747)) 28)) (-3593 ((|#1| $ |#1| |#1|) 58)) (-3478 (($ $) 83)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($) 84)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 75) (($ |#1| $) 74)))
(((-632 |#1|) (-138) (-1018)) (T -632))
-((-1702 (*1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018)))) (-1709 (*1 *1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018)))) (-3411 (*1 *1 *1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-3167 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-632 *3)) (-4 *3 (-1018)) (-4 *3 (-356)))) (-4250 (*1 *1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-3485 (*1 *1 *1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
-(-13 (-825 |t#1|) (-279 |t#1| |t#1|) (-10 -8 (-15 -1702 ($)) (-15 -1709 ($ $)) (IF (|has| |t#1| (-356)) (PROGN (-15 -3411 ($ $ $)) (-15 -3167 ($ $ (-747))) (-15 -4250 ($ $)) (-15 -3485 ($ $ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-170)) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-279 |#1| |#1|) . T) ((-404 |#1|) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 |#1|) |has| |#1| (-170)) ((-703) . T) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1024 |#1|) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-825 |#1|) . T))
-((-1466 (((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|))) 74 (|has| |#1| (-27)))) (-2121 (((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|))) 73 (|has| |#1| (-27))) (((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|)) 17)))
-(((-633 |#1| |#2|) (-10 -7 (-15 -2121 ((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2121 ((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|)))) (-15 -1466 ((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|))))) |%noBranch|)) (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))) (-1202 |#1|)) (T -633))
-((-1466 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *5 (-1202 *4)) (-5 *2 (-621 (-629 (-400 *5)))) (-5 *1 (-633 *4 *5)) (-5 *3 (-629 (-400 *5))))) (-2121 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *5 (-1202 *4)) (-5 *2 (-621 (-629 (-400 *5)))) (-5 *1 (-633 *4 *5)) (-5 *3 (-629 (-400 *5))))) (-2121 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-621 *5) *6)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *6 (-1202 *5)) (-5 *2 (-621 (-629 (-400 *6)))) (-5 *1 (-633 *5 *6)) (-5 *3 (-629 (-400 *6))))))
-(-10 -7 (-15 -2121 ((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2121 ((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|)))) (-15 -1466 ((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|))))) |%noBranch|))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-4250 (($ $) NIL (|has| |#1| (-356)))) (-3411 (($ $ $) 28 (|has| |#1| (-356)))) (-3167 (($ $ (-747)) 31 (|has| |#1| (-356)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2408 (($ $ $) NIL (|has| |#1| (-356)))) (-2047 (($ $ $) NIL (|has| |#1| (-356)))) (-3723 (($ $ $) NIL (|has| |#1| (-356)))) (-3816 (($ $ $) NIL (|has| |#1| (-356)))) (-2367 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-1599 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-3216 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-356)))) (-2714 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) NIL)) (-2659 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-2070 (($ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1285 (($ $) NIL (|has| |#1| (-444)))) (-2675 (((-112) $) NIL)) (-2246 (($ |#1| (-747)) NIL)) (-2057 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-541)))) (-3771 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-541)))) (-3611 (((-747) $) NIL)) (-2990 (($ $ $) NIL (|has| |#1| (-356)))) (-3494 (($ $ $) NIL (|has| |#1| (-356)))) (-1993 (($ $ $) NIL (|has| |#1| (-356)))) (-1944 (($ $ $) NIL (|has| |#1| (-356)))) (-2739 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-2322 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-3350 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-356)))) (-2043 ((|#1| $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2042 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541)))) (-3341 ((|#1| $ |#1|) 24)) (-3485 (($ $ $) 33 (|has| |#1| (-356)))) (-3701 (((-747) $) NIL)) (-2216 ((|#1| $) NIL (|has| |#1| (-444)))) (-3846 (((-834) $) 20) (($ (-549)) NIL) (($ (-400 (-549))) NIL (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) NIL)) (-4141 (((-621 |#1|) $) NIL)) (-2152 ((|#1| $ (-747)) NIL)) (-2082 (((-747)) NIL)) (-3596 ((|#1| $ |#1| |#1|) 23)) (-1709 (($ $) NIL)) (-3276 (($) 21 T CONST)) (-3287 (($) 8 T CONST)) (-1702 (($) NIL)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-1699 (*1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018)))) (-3478 (*1 *1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018)))) (-3897 (*1 *1 *1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-3742 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-632 *3)) (-4 *3 (-1018)) (-4 *3 (-356)))) (-3294 (*1 *1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-1880 (*1 *1 *1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
+(-13 (-825 |t#1|) (-279 |t#1| |t#1|) (-10 -8 (-15 -1699 ($)) (-15 -3478 ($ $)) (IF (|has| |t#1| (-356)) (PROGN (-15 -3897 ($ $ $)) (-15 -3742 ($ $ (-747))) (-15 -3294 ($ $)) (-15 -1880 ($ $ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-170)) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-279 |#1| |#1|) . T) ((-404 |#1|) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 |#1|) |has| |#1| (-170)) ((-703) . T) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1024 |#1|) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-825 |#1|) . T))
+((-1356 (((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|))) 74 (|has| |#1| (-27)))) (-2119 (((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|))) 73 (|has| |#1| (-27))) (((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|)) 17)))
+(((-633 |#1| |#2|) (-10 -7 (-15 -2119 ((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2119 ((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|)))) (-15 -1356 ((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|))))) |%noBranch|)) (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))) (-1201 |#1|)) (T -633))
+((-1356 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *5 (-1201 *4)) (-5 *2 (-621 (-629 (-400 *5)))) (-5 *1 (-633 *4 *5)) (-5 *3 (-629 (-400 *5))))) (-2119 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *5 (-1201 *4)) (-5 *2 (-621 (-629 (-400 *5)))) (-5 *1 (-633 *4 *5)) (-5 *3 (-629 (-400 *5))))) (-2119 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-621 *5) *6)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *6 (-1201 *5)) (-5 *2 (-621 (-629 (-400 *6)))) (-5 *1 (-633 *5 *6)) (-5 *3 (-629 (-400 *6))))))
+(-10 -7 (-15 -2119 ((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2119 ((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|)))) (-15 -1356 ((-621 (-629 (-400 |#2|))) (-629 (-400 |#2|))))) |%noBranch|))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3294 (($ $) NIL (|has| |#1| (-356)))) (-3897 (($ $ $) 28 (|has| |#1| (-356)))) (-3742 (($ $ (-747)) 31 (|has| |#1| (-356)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-1891 (($ $ $) NIL (|has| |#1| (-356)))) (-1456 (($ $ $) NIL (|has| |#1| (-356)))) (-2315 (($ $ $) NIL (|has| |#1| (-356)))) (-1944 (($ $ $) NIL (|has| |#1| (-356)))) (-2687 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-2723 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-1363 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-356)))) (-2712 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) NIL)) (-2657 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-2068 (($ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3004 (($ $) NIL (|has| |#1| (-444)))) (-2297 (((-112) $) NIL)) (-2244 (($ |#1| (-747)) NIL)) (-4155 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-541)))) (-1588 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-541)))) (-2391 (((-747) $) NIL)) (-2438 (($ $ $) NIL (|has| |#1| (-356)))) (-3723 (($ $ $) NIL (|has| |#1| (-356)))) (-2929 (($ $ $) NIL (|has| |#1| (-356)))) (-3249 (($ $ $) NIL (|has| |#1| (-356)))) (-3076 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-2368 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-2063 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-356)))) (-2042 ((|#1| $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2040 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541)))) (-3339 ((|#1| $ |#1|) 24)) (-1880 (($ $ $) 33 (|has| |#1| (-356)))) (-3977 (((-747) $) NIL)) (-1700 ((|#1| $) NIL (|has| |#1| (-444)))) (-3845 (((-834) $) 20) (($ (-549)) NIL) (($ (-400 (-549))) NIL (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) NIL)) (-2157 (((-621 |#1|) $) NIL)) (-4068 ((|#1| $ (-747)) NIL)) (-2371 (((-747)) NIL)) (-3593 ((|#1| $ |#1| |#1|) 23)) (-3478 (($ $) NIL)) (-3274 (($) 21 T CONST)) (-3286 (($) 8 T CONST)) (-1699 (($) NIL)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-634 |#1| |#2|) (-632 |#1|) (-1018) (-1 |#1| |#1|)) (T -634))
NIL
(-632 |#1|)
-((-3411 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 59)) (-3167 ((|#2| |#2| (-747) (-1 |#1| |#1|)) 40)) (-3485 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 61)))
-(((-635 |#1| |#2|) (-10 -7 (-15 -3411 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -3167 (|#2| |#2| (-747) (-1 |#1| |#1|))) (-15 -3485 (|#2| |#2| |#2| (-1 |#1| |#1|)))) (-356) (-632 |#1|)) (T -635))
-((-3485 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-356)) (-5 *1 (-635 *4 *2)) (-4 *2 (-632 *4)))) (-3167 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-747)) (-5 *4 (-1 *5 *5)) (-4 *5 (-356)) (-5 *1 (-635 *5 *2)) (-4 *2 (-632 *5)))) (-3411 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-356)) (-5 *1 (-635 *4 *2)) (-4 *2 (-632 *4)))))
-(-10 -7 (-15 -3411 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -3167 (|#2| |#2| (-747) (-1 |#1| |#1|))) (-15 -3485 (|#2| |#2| |#2| (-1 |#1| |#1|))))
-((-3708 (($ $ $) 9)))
-(((-636 |#1|) (-10 -8 (-15 -3708 (|#1| |#1| |#1|))) (-637)) (T -636))
-NIL
-(-10 -8 (-15 -3708 (|#1| |#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-1340 (($ $) 10)) (-3708 (($ $ $) 8)) (-2389 (((-112) $ $) 6)) (-3695 (($ $ $) 9)))
+((-3897 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 59)) (-3742 ((|#2| |#2| (-747) (-1 |#1| |#1|)) 40)) (-1880 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 61)))
+(((-635 |#1| |#2|) (-10 -7 (-15 -3897 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -3742 (|#2| |#2| (-747) (-1 |#1| |#1|))) (-15 -1880 (|#2| |#2| |#2| (-1 |#1| |#1|)))) (-356) (-632 |#1|)) (T -635))
+((-1880 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-356)) (-5 *1 (-635 *4 *2)) (-4 *2 (-632 *4)))) (-3742 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-747)) (-5 *4 (-1 *5 *5)) (-4 *5 (-356)) (-5 *1 (-635 *5 *2)) (-4 *2 (-632 *5)))) (-3897 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-356)) (-5 *1 (-635 *4 *2)) (-4 *2 (-632 *4)))))
+(-10 -7 (-15 -3897 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -3742 (|#2| |#2| (-747) (-1 |#1| |#1|))) (-15 -1880 (|#2| |#2| |#2| (-1 |#1| |#1|))))
+((-3707 (($ $ $) 9)))
+(((-636 |#1|) (-10 -8 (-15 -3707 (|#1| |#1| |#1|))) (-637)) (T -636))
+NIL
+(-10 -8 (-15 -3707 (|#1| |#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-1339 (($ $) 10)) (-3707 (($ $ $) 8)) (-2387 (((-112) $ $) 6)) (-3694 (($ $ $) 9)))
(((-637) (-138)) (T -637))
-((-1340 (*1 *1 *1) (-4 *1 (-637))) (-3695 (*1 *1 *1 *1) (-4 *1 (-637))) (-3708 (*1 *1 *1 *1) (-4 *1 (-637))))
-(-13 (-101) (-10 -8 (-15 -1340 ($ $)) (-15 -3695 ($ $ $)) (-15 -3708 ($ $ $))))
+((-1339 (*1 *1 *1) (-4 *1 (-637))) (-3694 (*1 *1 *1 *1) (-4 *1 (-637))) (-3707 (*1 *1 *1 *1) (-4 *1 (-637))))
+(-13 (-101) (-10 -8 (-15 -1339 ($ $)) (-15 -3694 ($ $ $)) (-15 -3707 ($ $ $))))
(((-101) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 15)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-1394 ((|#1| $) 21)) (-2863 (($ $ $) NIL (|has| |#1| (-767)))) (-3575 (($ $ $) NIL (|has| |#1| (-767)))) (-3851 (((-1125) $) 46)) (-3990 (((-1087) $) NIL)) (-1403 ((|#3| $) 22)) (-3846 (((-834) $) 42)) (-3276 (($) 10 T CONST)) (-2448 (((-112) $ $) NIL (|has| |#1| (-767)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-767)))) (-2389 (((-112) $ $) 20)) (-2438 (((-112) $ $) NIL (|has| |#1| (-767)))) (-2412 (((-112) $ $) 24 (|has| |#1| (-767)))) (-2513 (($ $ |#3|) 34) (($ |#1| |#3|) 35)) (-2500 (($ $) 17) (($ $ $) NIL)) (-2486 (($ $ $) 27)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 30) (($ |#2| $) 32) (($ $ |#2|) NIL)))
-(((-638 |#1| |#2| |#3|) (-13 (-694 |#2|) (-10 -8 (IF (|has| |#1| (-767)) (-6 (-767)) |%noBranch|) (-15 -2513 ($ $ |#3|)) (-15 -2513 ($ |#1| |#3|)) (-15 -1394 (|#1| $)) (-15 -1403 (|#3| $)))) (-694 |#2|) (-170) (|SubsetCategory| (-703) |#2|)) (T -638))
-((-2513 (*1 *1 *1 *2) (-12 (-4 *4 (-170)) (-5 *1 (-638 *3 *4 *2)) (-4 *3 (-694 *4)) (-4 *2 (|SubsetCategory| (-703) *4)))) (-2513 (*1 *1 *2 *3) (-12 (-4 *4 (-170)) (-5 *1 (-638 *2 *4 *3)) (-4 *2 (-694 *4)) (-4 *3 (|SubsetCategory| (-703) *4)))) (-1394 (*1 *2 *1) (-12 (-4 *3 (-170)) (-4 *2 (-694 *3)) (-5 *1 (-638 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-703) *3)))) (-1403 (*1 *2 *1) (-12 (-4 *4 (-170)) (-4 *2 (|SubsetCategory| (-703) *4)) (-5 *1 (-638 *3 *4 *2)) (-4 *3 (-694 *4)))))
-(-13 (-694 |#2|) (-10 -8 (IF (|has| |#1| (-767)) (-6 (-767)) |%noBranch|) (-15 -2513 ($ $ |#3|)) (-15 -2513 ($ |#1| |#3|)) (-15 -1394 (|#1| $)) (-15 -1403 (|#3| $))))
-((-2477 (((-3 (-621 (-1139 |#1|)) "failed") (-621 (-1139 |#1|)) (-1139 |#1|)) 33)))
-(((-639 |#1|) (-10 -7 (-15 -2477 ((-3 (-621 (-1139 |#1|)) "failed") (-621 (-1139 |#1|)) (-1139 |#1|)))) (-880)) (T -639))
-((-2477 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-621 (-1139 *4))) (-5 *3 (-1139 *4)) (-4 *4 (-880)) (-5 *1 (-639 *4)))))
-(-10 -7 (-15 -2477 ((-3 (-621 (-1139 |#1|)) "failed") (-621 (-1139 |#1|)) (-1139 |#1|))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3304 (((-621 |#1|) $) 82)) (-3210 (($ $ (-747)) 90)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-1869 (((-1250 |#1| |#2|) (-1250 |#1| |#2|) $) 48)) (-2714 (((-3 (-648 |#1|) "failed") $) NIL)) (-2659 (((-648 |#1|) $) NIL)) (-2070 (($ $) 89)) (-3347 (((-747) $) NIL)) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) NIL)) (-3526 (($ (-648 |#1|) |#2|) 68)) (-4273 (($ $) 86)) (-2797 (($ (-1 |#2| |#2|) $) NIL)) (-2694 (((-1250 |#1| |#2|) (-1250 |#1| |#2|) $) 47)) (-3647 (((-2 (|:| |k| (-648 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2028 (((-648 |#1|) $) NIL)) (-2043 ((|#2| $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2686 (($ $ |#1| $) 30) (($ $ (-621 |#1|) (-621 $)) 32)) (-3701 (((-747) $) 88)) (-3854 (($ $ $) 20) (($ (-648 |#1|) (-648 |#1|)) 77) (($ (-648 |#1|) $) 75) (($ $ (-648 |#1|)) 76)) (-3846 (((-834) $) NIL) (($ |#1|) 74) (((-1241 |#1| |#2|) $) 58) (((-1250 |#1| |#2|) $) 41) (($ (-648 |#1|)) 25)) (-4141 (((-621 |#2|) $) NIL)) (-2152 ((|#2| $ (-648 |#1|)) NIL)) (-1570 ((|#2| (-1250 |#1| |#2|) $) 43)) (-3276 (($) 23 T CONST)) (-2631 (((-621 (-2 (|:| |k| (-648 |#1|)) (|:| |c| |#2|))) $) NIL)) (-1467 (((-3 $ "failed") (-1241 |#1| |#2|)) 60)) (-3037 (($ (-648 |#1|)) 14)) (-2389 (((-112) $ $) 44)) (-2513 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2500 (($ $) 66) (($ $ $) NIL)) (-2486 (($ $ $) 29)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ |#2| $) 28) (($ $ |#2|) NIL) (($ |#2| (-648 |#1|)) NIL)))
-(((-640 |#1| |#2|) (-13 (-367 |#1| |#2|) (-375 |#2| (-648 |#1|)) (-10 -8 (-15 -1467 ((-3 $ "failed") (-1241 |#1| |#2|))) (-15 -3854 ($ (-648 |#1|) (-648 |#1|))) (-15 -3854 ($ (-648 |#1|) $)) (-15 -3854 ($ $ (-648 |#1|))))) (-823) (-170)) (T -640))
-((-1467 (*1 *1 *2) (|partial| -12 (-5 *2 (-1241 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)) (-5 *1 (-640 *3 *4)))) (-3854 (*1 *1 *2 *2) (-12 (-5 *2 (-648 *3)) (-4 *3 (-823)) (-5 *1 (-640 *3 *4)) (-4 *4 (-170)))) (-3854 (*1 *1 *2 *1) (-12 (-5 *2 (-648 *3)) (-4 *3 (-823)) (-5 *1 (-640 *3 *4)) (-4 *4 (-170)))) (-3854 (*1 *1 *1 *2) (-12 (-5 *2 (-648 *3)) (-4 *3 (-823)) (-5 *1 (-640 *3 *4)) (-4 *4 (-170)))))
-(-13 (-367 |#1| |#2|) (-375 |#2| (-648 |#1|)) (-10 -8 (-15 -1467 ((-3 $ "failed") (-1241 |#1| |#2|))) (-15 -3854 ($ (-648 |#1|) (-648 |#1|))) (-15 -3854 ($ (-648 |#1|) $)) (-15 -3854 ($ $ (-648 |#1|)))))
-((-4142 (((-112) $) NIL) (((-112) (-1 (-112) |#2| |#2|) $) 50)) (-4311 (($ $) NIL) (($ (-1 (-112) |#2| |#2|) $) 12)) (-1717 (($ (-1 (-112) |#2|) $) 28)) (-1585 (($ $) 56)) (-3745 (($ $) 64)) (-2129 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 37)) (-2557 ((|#2| (-1 |#2| |#2| |#2|) $) 21) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 51) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 53)) (-2883 (((-549) |#2| $ (-549)) 61) (((-549) |#2| $) NIL) (((-549) (-1 (-112) |#2|) $) 47)) (-3743 (($ (-747) |#2|) 54)) (-1303 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 30)) (-3890 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 24)) (-2797 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 55)) (-3525 (($ |#2|) 15)) (-2751 (($ $ $ (-549)) 36) (($ |#2| $ (-549)) 34)) (-3779 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 46)) (-3531 (($ $ (-1193 (-549))) 44) (($ $ (-549)) 38)) (-2730 (($ $ $ (-549)) 60)) (-2281 (($ $) 58)) (-2412 (((-112) $ $) 66)))
-(((-641 |#1| |#2|) (-10 -8 (-15 -3525 (|#1| |#2|)) (-15 -3531 (|#1| |#1| (-549))) (-15 -3531 (|#1| |#1| (-1193 (-549)))) (-15 -2129 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2751 (|#1| |#2| |#1| (-549))) (-15 -2751 (|#1| |#1| |#1| (-549))) (-15 -1303 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -1717 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2129 (|#1| |#2| |#1|)) (-15 -3745 (|#1| |#1|)) (-15 -1303 (|#1| |#1| |#1|)) (-15 -3890 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4142 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -2883 ((-549) (-1 (-112) |#2|) |#1|)) (-15 -2883 ((-549) |#2| |#1|)) (-15 -2883 ((-549) |#2| |#1| (-549))) (-15 -3890 (|#1| |#1| |#1|)) (-15 -4142 ((-112) |#1|)) (-15 -2730 (|#1| |#1| |#1| (-549))) (-15 -1585 (|#1| |#1|)) (-15 -4311 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4311 (|#1| |#1|)) (-15 -2412 ((-112) |#1| |#1|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3779 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3743 (|#1| (-747) |#2|)) (-15 -2797 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2797 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2281 (|#1| |#1|))) (-642 |#2|) (-1180)) (T -641))
-NIL
-(-10 -8 (-15 -3525 (|#1| |#2|)) (-15 -3531 (|#1| |#1| (-549))) (-15 -3531 (|#1| |#1| (-1193 (-549)))) (-15 -2129 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2751 (|#1| |#2| |#1| (-549))) (-15 -2751 (|#1| |#1| |#1| (-549))) (-15 -1303 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -1717 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2129 (|#1| |#2| |#1|)) (-15 -3745 (|#1| |#1|)) (-15 -1303 (|#1| |#1| |#1|)) (-15 -3890 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4142 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -2883 ((-549) (-1 (-112) |#2|) |#1|)) (-15 -2883 ((-549) |#2| |#1|)) (-15 -2883 ((-549) |#2| |#1| (-549))) (-15 -3890 (|#1| |#1| |#1|)) (-15 -4142 ((-112) |#1|)) (-15 -2730 (|#1| |#1| |#1| (-549))) (-15 -1585 (|#1| |#1|)) (-15 -4311 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4311 (|#1| |#1|)) (-15 -2412 ((-112) |#1| |#1|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2557 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3779 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3743 (|#1| (-747) |#2|)) (-15 -2797 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2797 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2281 (|#1| |#1|)))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-4161 ((|#1| $) 48)) (-2839 ((|#1| $) 65)) (-1343 (($ $) 67)) (-1535 (((-1231) $ (-549) (-549)) 97 (|has| $ (-6 -4338)))) (-3174 (($ $ (-549)) 52 (|has| $ (-6 -4338)))) (-4142 (((-112) $) 142 (|has| |#1| (-823))) (((-112) (-1 (-112) |#1| |#1|) $) 136)) (-4311 (($ $) 146 (-12 (|has| |#1| (-823)) (|has| $ (-6 -4338)))) (($ (-1 (-112) |#1| |#1|) $) 145 (|has| $ (-6 -4338)))) (-3193 (($ $) 141 (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $) 135)) (-1584 (((-112) $ (-747)) 8)) (-2838 ((|#1| $ |#1|) 39 (|has| $ (-6 -4338)))) (-4179 (($ $ $) 56 (|has| $ (-6 -4338)))) (-2780 ((|#1| $ |#1|) 54 (|has| $ (-6 -4338)))) (-4135 ((|#1| $ |#1|) 58 (|has| $ (-6 -4338)))) (-2254 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4338))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4338))) (($ $ "rest" $) 55 (|has| $ (-6 -4338))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) 117 (|has| $ (-6 -4338))) ((|#1| $ (-549) |#1|) 86 (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) 41 (|has| $ (-6 -4338)))) (-1717 (($ (-1 (-112) |#1|) $) 129)) (-1489 (($ (-1 (-112) |#1|) $) 102 (|has| $ (-6 -4337)))) (-2830 ((|#1| $) 66)) (-1682 (($) 7 T CONST)) (-1585 (($ $) 144 (|has| $ (-6 -4338)))) (-3064 (($ $) 134)) (-3657 (($ $) 73) (($ $ (-747)) 71)) (-3745 (($ $) 131 (|has| |#1| (-1067)))) (-3676 (($ $) 99 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2129 (($ |#1| $) 130 (|has| |#1| (-1067))) (($ (-1 (-112) |#1|) $) 125)) (-3812 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4337))) (($ |#1| $) 100 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1879 ((|#1| $ (-549) |#1|) 85 (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) 87)) (-3331 (((-112) $) 83)) (-2883 (((-549) |#1| $ (-549)) 139 (|has| |#1| (-1067))) (((-549) |#1| $) 138 (|has| |#1| (-1067))) (((-549) (-1 (-112) |#1|) $) 137)) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) 50)) (-3895 (((-112) $ $) 42 (|has| |#1| (-1067)))) (-3743 (($ (-747) |#1|) 108)) (-3194 (((-112) $ (-747)) 9)) (-4031 (((-549) $) 95 (|has| (-549) (-823)))) (-2863 (($ $ $) 147 (|has| |#1| (-823)))) (-1303 (($ $ $) 132 (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) 128)) (-3890 (($ $ $) 140 (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) 133)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1569 (((-549) $) 94 (|has| (-549) (-823)))) (-3575 (($ $ $) 148 (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-3525 (($ |#1|) 122)) (-1508 (((-112) $ (-747)) 10)) (-3591 (((-621 |#1|) $) 45)) (-2076 (((-112) $) 49)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3829 ((|#1| $) 70) (($ $ (-747)) 68)) (-2751 (($ $ $ (-549)) 127) (($ |#1| $ (-549)) 126)) (-2616 (($ $ $ (-549)) 116) (($ |#1| $ (-549)) 115)) (-3303 (((-621 (-549)) $) 92)) (-3761 (((-112) (-549) $) 91)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-3646 ((|#1| $) 76) (($ $ (-747)) 74)) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-1642 (($ $ |#1|) 96 (|has| $ (-6 -4338)))) (-3016 (((-112) $) 84)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-2265 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) 90)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1193 (-549))) 112) ((|#1| $ (-549)) 89) ((|#1| $ (-549) |#1|) 88)) (-3230 (((-549) $ $) 44)) (-3531 (($ $ (-1193 (-549))) 124) (($ $ (-549)) 123)) (-2167 (($ $ (-1193 (-549))) 114) (($ $ (-549)) 113)) (-3497 (((-112) $) 46)) (-1999 (($ $) 62)) (-2643 (($ $) 59 (|has| $ (-6 -4338)))) (-3798 (((-747) $) 63)) (-3612 (($ $) 64)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2730 (($ $ $ (-549)) 143 (|has| $ (-6 -4338)))) (-2281 (($ $) 13)) (-2845 (((-525) $) 98 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 107)) (-3196 (($ $ $) 61) (($ $ |#1|) 60)) (-1952 (($ $ $) 78) (($ |#1| $) 77) (($ (-621 $)) 110) (($ $ |#1|) 109)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) 51)) (-1987 (((-112) $ $) 43 (|has| |#1| (-1067)))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) 150 (|has| |#1| (-823)))) (-2425 (((-112) $ $) 151 (|has| |#1| (-823)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-2438 (((-112) $ $) 149 (|has| |#1| (-823)))) (-2412 (((-112) $ $) 152 (|has| |#1| (-823)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-642 |#1|) (-138) (-1180)) (T -642))
-((-3525 (*1 *1 *2) (-12 (-4 *1 (-642 *2)) (-4 *2 (-1180)))))
-(-13 (-1116 |t#1|) (-366 |t#1|) (-275 |t#1|) (-10 -8 (-15 -3525 ($ |t#1|))))
-(((-34) . T) ((-101) -1536 (|has| |#1| (-1067)) (|has| |#1| (-823))) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-823)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-275 |#1|) . T) ((-366 |#1|) . T) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-627 |#1|) . T) ((-823) |has| |#1| (-823)) ((-981 |#1|) . T) ((-1067) -1536 (|has| |#1| (-1067)) (|has| |#1| (-823))) ((-1116 |#1|) . T) ((-1180) . T) ((-1214 |#1|) . T))
-((-2227 (((-621 (-2 (|:| |particular| (-3 (-1226 |#1|) "failed")) (|:| -1949 (-621 (-1226 |#1|))))) (-621 (-621 |#1|)) (-621 (-1226 |#1|))) 22) (((-621 (-2 (|:| |particular| (-3 (-1226 |#1|) "failed")) (|:| -1949 (-621 (-1226 |#1|))))) (-665 |#1|) (-621 (-1226 |#1|))) 21) (((-2 (|:| |particular| (-3 (-1226 |#1|) "failed")) (|:| -1949 (-621 (-1226 |#1|)))) (-621 (-621 |#1|)) (-1226 |#1|)) 18) (((-2 (|:| |particular| (-3 (-1226 |#1|) "failed")) (|:| -1949 (-621 (-1226 |#1|)))) (-665 |#1|) (-1226 |#1|)) 14)) (-3123 (((-747) (-665 |#1|) (-1226 |#1|)) 30)) (-2079 (((-3 (-1226 |#1|) "failed") (-665 |#1|) (-1226 |#1|)) 24)) (-2479 (((-112) (-665 |#1|) (-1226 |#1|)) 27)))
-(((-643 |#1|) (-10 -7 (-15 -2227 ((-2 (|:| |particular| (-3 (-1226 |#1|) "failed")) (|:| -1949 (-621 (-1226 |#1|)))) (-665 |#1|) (-1226 |#1|))) (-15 -2227 ((-2 (|:| |particular| (-3 (-1226 |#1|) "failed")) (|:| -1949 (-621 (-1226 |#1|)))) (-621 (-621 |#1|)) (-1226 |#1|))) (-15 -2227 ((-621 (-2 (|:| |particular| (-3 (-1226 |#1|) "failed")) (|:| -1949 (-621 (-1226 |#1|))))) (-665 |#1|) (-621 (-1226 |#1|)))) (-15 -2227 ((-621 (-2 (|:| |particular| (-3 (-1226 |#1|) "failed")) (|:| -1949 (-621 (-1226 |#1|))))) (-621 (-621 |#1|)) (-621 (-1226 |#1|)))) (-15 -2079 ((-3 (-1226 |#1|) "failed") (-665 |#1|) (-1226 |#1|))) (-15 -2479 ((-112) (-665 |#1|) (-1226 |#1|))) (-15 -3123 ((-747) (-665 |#1|) (-1226 |#1|)))) (-356)) (T -643))
-((-3123 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *5)) (-5 *4 (-1226 *5)) (-4 *5 (-356)) (-5 *2 (-747)) (-5 *1 (-643 *5)))) (-2479 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *5)) (-5 *4 (-1226 *5)) (-4 *5 (-356)) (-5 *2 (-112)) (-5 *1 (-643 *5)))) (-2079 (*1 *2 *3 *2) (|partial| -12 (-5 *2 (-1226 *4)) (-5 *3 (-665 *4)) (-4 *4 (-356)) (-5 *1 (-643 *4)))) (-2227 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-621 *5))) (-4 *5 (-356)) (-5 *2 (-621 (-2 (|:| |particular| (-3 (-1226 *5) "failed")) (|:| -1949 (-621 (-1226 *5)))))) (-5 *1 (-643 *5)) (-5 *4 (-621 (-1226 *5))))) (-2227 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *5)) (-4 *5 (-356)) (-5 *2 (-621 (-2 (|:| |particular| (-3 (-1226 *5) "failed")) (|:| -1949 (-621 (-1226 *5)))))) (-5 *1 (-643 *5)) (-5 *4 (-621 (-1226 *5))))) (-2227 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-621 *5))) (-4 *5 (-356)) (-5 *2 (-2 (|:| |particular| (-3 (-1226 *5) "failed")) (|:| -1949 (-621 (-1226 *5))))) (-5 *1 (-643 *5)) (-5 *4 (-1226 *5)))) (-2227 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *5)) (-4 *5 (-356)) (-5 *2 (-2 (|:| |particular| (-3 (-1226 *5) "failed")) (|:| -1949 (-621 (-1226 *5))))) (-5 *1 (-643 *5)) (-5 *4 (-1226 *5)))))
-(-10 -7 (-15 -2227 ((-2 (|:| |particular| (-3 (-1226 |#1|) "failed")) (|:| -1949 (-621 (-1226 |#1|)))) (-665 |#1|) (-1226 |#1|))) (-15 -2227 ((-2 (|:| |particular| (-3 (-1226 |#1|) "failed")) (|:| -1949 (-621 (-1226 |#1|)))) (-621 (-621 |#1|)) (-1226 |#1|))) (-15 -2227 ((-621 (-2 (|:| |particular| (-3 (-1226 |#1|) "failed")) (|:| -1949 (-621 (-1226 |#1|))))) (-665 |#1|) (-621 (-1226 |#1|)))) (-15 -2227 ((-621 (-2 (|:| |particular| (-3 (-1226 |#1|) "failed")) (|:| -1949 (-621 (-1226 |#1|))))) (-621 (-621 |#1|)) (-621 (-1226 |#1|)))) (-15 -2079 ((-3 (-1226 |#1|) "failed") (-665 |#1|) (-1226 |#1|))) (-15 -2479 ((-112) (-665 |#1|) (-1226 |#1|))) (-15 -3123 ((-747) (-665 |#1|) (-1226 |#1|))))
-((-2227 (((-621 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1949 (-621 |#3|)))) |#4| (-621 |#3|)) 47) (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1949 (-621 |#3|))) |#4| |#3|) 45)) (-3123 (((-747) |#4| |#3|) 17)) (-2079 (((-3 |#3| "failed") |#4| |#3|) 20)) (-2479 (((-112) |#4| |#3|) 13)))
-(((-644 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2227 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1949 (-621 |#3|))) |#4| |#3|)) (-15 -2227 ((-621 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1949 (-621 |#3|)))) |#4| (-621 |#3|))) (-15 -2079 ((-3 |#3| "failed") |#4| |#3|)) (-15 -2479 ((-112) |#4| |#3|)) (-15 -3123 ((-747) |#4| |#3|))) (-356) (-13 (-366 |#1|) (-10 -7 (-6 -4338))) (-13 (-366 |#1|) (-10 -7 (-6 -4338))) (-663 |#1| |#2| |#3|)) (T -644))
-((-3123 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-4 *6 (-13 (-366 *5) (-10 -7 (-6 -4338)))) (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4338)))) (-5 *2 (-747)) (-5 *1 (-644 *5 *6 *4 *3)) (-4 *3 (-663 *5 *6 *4)))) (-2479 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-4 *6 (-13 (-366 *5) (-10 -7 (-6 -4338)))) (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4338)))) (-5 *2 (-112)) (-5 *1 (-644 *5 *6 *4 *3)) (-4 *3 (-663 *5 *6 *4)))) (-2079 (*1 *2 *3 *2) (|partial| -12 (-4 *4 (-356)) (-4 *5 (-13 (-366 *4) (-10 -7 (-6 -4338)))) (-4 *2 (-13 (-366 *4) (-10 -7 (-6 -4338)))) (-5 *1 (-644 *4 *5 *2 *3)) (-4 *3 (-663 *4 *5 *2)))) (-2227 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-4 *6 (-13 (-366 *5) (-10 -7 (-6 -4338)))) (-4 *7 (-13 (-366 *5) (-10 -7 (-6 -4338)))) (-5 *2 (-621 (-2 (|:| |particular| (-3 *7 "failed")) (|:| -1949 (-621 *7))))) (-5 *1 (-644 *5 *6 *7 *3)) (-5 *4 (-621 *7)) (-4 *3 (-663 *5 *6 *7)))) (-2227 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-4 *6 (-13 (-366 *5) (-10 -7 (-6 -4338)))) (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4338)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1949 (-621 *4)))) (-5 *1 (-644 *5 *6 *4 *3)) (-4 *3 (-663 *5 *6 *4)))))
-(-10 -7 (-15 -2227 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1949 (-621 |#3|))) |#4| |#3|)) (-15 -2227 ((-621 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1949 (-621 |#3|)))) |#4| (-621 |#3|))) (-15 -2079 ((-3 |#3| "failed") |#4| |#3|)) (-15 -2479 ((-112) |#4| |#3|)) (-15 -3123 ((-747) |#4| |#3|)))
-((-4312 (((-2 (|:| |particular| (-3 (-1226 (-400 |#4|)) "failed")) (|:| -1949 (-621 (-1226 (-400 |#4|))))) (-621 |#4|) (-621 |#3|)) 45)))
-(((-645 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4312 ((-2 (|:| |particular| (-3 (-1226 (-400 |#4|)) "failed")) (|:| -1949 (-621 (-1226 (-400 |#4|))))) (-621 |#4|) (-621 |#3|)))) (-541) (-769) (-823) (-920 |#1| |#2| |#3|)) (T -645))
-((-4312 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *7)) (-4 *7 (-823)) (-4 *8 (-920 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-5 *2 (-2 (|:| |particular| (-3 (-1226 (-400 *8)) "failed")) (|:| -1949 (-621 (-1226 (-400 *8)))))) (-5 *1 (-645 *5 *6 *7 *8)))))
-(-10 -7 (-15 -4312 ((-2 (|:| |particular| (-3 (-1226 (-400 |#4|)) "failed")) (|:| -1949 (-621 (-1226 (-400 |#4|))))) (-621 |#4|) (-621 |#3|))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2207 (((-3 $ "failed")) NIL (|has| |#2| (-541)))) (-2906 ((|#2| $) NIL)) (-2092 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3277 (((-1226 (-665 |#2|))) NIL) (((-1226 (-665 |#2|)) (-1226 $)) NIL)) (-2340 (((-112) $) NIL)) (-3945 (((-1226 $)) 37)) (-1584 (((-112) $ (-747)) NIL)) (-2228 (($ |#2|) NIL)) (-1682 (($) NIL T CONST)) (-3460 (($ $) NIL (|has| |#2| (-300)))) (-4060 (((-234 |#1| |#2|) $ (-549)) NIL)) (-3219 (((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed")) NIL (|has| |#2| (-541)))) (-3550 (((-3 $ "failed")) NIL (|has| |#2| (-541)))) (-4212 (((-665 |#2|)) NIL) (((-665 |#2|) (-1226 $)) NIL)) (-2840 ((|#2| $) NIL)) (-3841 (((-665 |#2|) $) NIL) (((-665 |#2|) $ (-1226 $)) NIL)) (-3038 (((-3 $ "failed") $) NIL (|has| |#2| (-541)))) (-2478 (((-1139 (-923 |#2|))) NIL (|has| |#2| (-356)))) (-3117 (($ $ (-892)) NIL)) (-2182 ((|#2| $) NIL)) (-2289 (((-1139 |#2|) $) NIL (|has| |#2| (-541)))) (-3076 ((|#2|) NIL) ((|#2| (-1226 $)) NIL)) (-3266 (((-1139 |#2|) $) NIL)) (-1368 (((-112)) NIL)) (-2714 (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-3 |#2| "failed") $) NIL)) (-2659 (((-549) $) NIL (|has| |#2| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-400 (-549))))) ((|#2| $) NIL)) (-3492 (($ (-1226 |#2|)) NIL) (($ (-1226 |#2|) (-1226 $)) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) NIL) (((-665 |#2|) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3123 (((-747) $) NIL (|has| |#2| (-541))) (((-892)) 38)) (-1809 ((|#2| $ (-549) (-549)) NIL)) (-3601 (((-112)) NIL)) (-2943 (($ $ (-892)) NIL)) (-2989 (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-2675 (((-112) $) NIL)) (-1323 (((-747) $) NIL (|has| |#2| (-541)))) (-1479 (((-621 (-234 |#1| |#2|)) $) NIL (|has| |#2| (-541)))) (-2142 (((-747) $) NIL)) (-3975 (((-112)) NIL)) (-2155 (((-747) $) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-1929 ((|#2| $) NIL (|has| |#2| (-6 (-4339 "*"))))) (-1761 (((-549) $) NIL)) (-2703 (((-549) $) NIL)) (-1562 (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-1661 (((-549) $) NIL)) (-1887 (((-549) $) NIL)) (-3946 (($ (-621 (-621 |#2|))) NIL)) (-1868 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-2913 (((-621 (-621 |#2|)) $) NIL)) (-2291 (((-112)) NIL)) (-2647 (((-112)) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-1742 (((-3 (-2 (|:| |particular| $) (|:| -1949 (-621 $))) "failed")) NIL (|has| |#2| (-541)))) (-4101 (((-3 $ "failed")) NIL (|has| |#2| (-541)))) (-2870 (((-665 |#2|)) NIL) (((-665 |#2|) (-1226 $)) NIL)) (-2654 ((|#2| $) NIL)) (-2303 (((-665 |#2|) $) NIL) (((-665 |#2|) $ (-1226 $)) NIL)) (-1919 (((-3 $ "failed") $) NIL (|has| |#2| (-541)))) (-2014 (((-1139 (-923 |#2|))) NIL (|has| |#2| (-356)))) (-2884 (($ $ (-892)) NIL)) (-2248 ((|#2| $) NIL)) (-1378 (((-1139 |#2|) $) NIL (|has| |#2| (-541)))) (-2920 ((|#2|) NIL) ((|#2| (-1226 $)) NIL)) (-2443 (((-1139 |#2|) $) NIL)) (-3623 (((-112)) NIL)) (-3851 (((-1125) $) NIL)) (-3260 (((-112)) NIL)) (-2754 (((-112)) NIL)) (-2055 (((-112)) NIL)) (-3849 (((-3 $ "failed") $) NIL (|has| |#2| (-356)))) (-3990 (((-1087) $) NIL)) (-2392 (((-112)) NIL)) (-2042 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-541)))) (-1780 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#2| $ (-549) (-549) |#2|) NIL) ((|#2| $ (-549) (-549)) 22) ((|#2| $ (-549)) NIL)) (-3456 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1143)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-747)) NIL (|has| |#2| (-227))) (($ $) NIL (|has| |#2| (-227)))) (-3136 ((|#2| $) NIL)) (-2133 (($ (-621 |#2|)) NIL)) (-1757 (((-112) $) NIL)) (-2081 (((-234 |#1| |#2|) $) NIL)) (-2029 ((|#2| $) NIL (|has| |#2| (-6 (-4339 "*"))))) (-4000 (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-2281 (($ $) NIL)) (-4263 (((-665 |#2|) (-1226 $)) NIL) (((-1226 |#2|) $) NIL) (((-665 |#2|) (-1226 $) (-1226 $)) NIL) (((-1226 |#2|) $ (-1226 $)) 25)) (-2845 (($ (-1226 |#2|)) NIL) (((-1226 |#2|) $) NIL)) (-4111 (((-621 (-923 |#2|))) NIL) (((-621 (-923 |#2|)) (-1226 $)) NIL)) (-3293 (($ $ $) NIL)) (-1942 (((-112)) NIL)) (-2851 (((-234 |#1| |#2|) $ (-549)) NIL)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ (-400 (-549))) NIL (|has| |#2| (-1009 (-400 (-549))))) (($ |#2|) NIL) (((-665 |#2|) $) NIL)) (-2082 (((-747)) NIL)) (-1949 (((-1226 $)) 36)) (-4315 (((-621 (-1226 |#2|))) NIL (|has| |#2| (-541)))) (-4272 (($ $ $ $) NIL)) (-3430 (((-112)) NIL)) (-3596 (($ (-665 |#2|) $) NIL)) (-3527 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2974 (((-112) $) NIL)) (-2174 (($ $ $) NIL)) (-2864 (((-112)) NIL)) (-4257 (((-112)) NIL)) (-1898 (((-112)) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1143)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-747)) NIL (|has| |#2| (-227))) (($ $) NIL (|has| |#2| (-227)))) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#2| (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-234 |#1| |#2|) $ (-234 |#1| |#2|)) NIL) (((-234 |#1| |#2|) (-234 |#1| |#2|) $) NIL)) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-646 |#1| |#2|) (-13 (-1090 |#1| |#2| (-234 |#1| |#2|) (-234 |#1| |#2|)) (-593 (-665 |#2|)) (-410 |#2|)) (-892) (-170)) (T -646))
-NIL
-(-13 (-1090 |#1| |#2| (-234 |#1| |#2|) (-234 |#1| |#2|)) (-593 (-665 |#2|)) (-410 |#2|))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-1845 (((-621 (-1148)) $) 10)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-647) (-13 (-1050) (-10 -8 (-15 -1845 ((-621 (-1148)) $))))) (T -647))
-((-1845 (*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-647)))))
-(-13 (-1050) (-10 -8 (-15 -1845 ((-621 (-1148)) $))))
-((-3834 (((-112) $ $) NIL)) (-3304 (((-621 |#1|) $) NIL)) (-3848 (($ $) 52)) (-4304 (((-112) $) NIL)) (-2714 (((-3 |#1| "failed") $) NIL)) (-2659 ((|#1| $) NIL)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-3541 (((-3 $ "failed") (-795 |#1|)) 23)) (-3772 (((-112) (-795 |#1|)) 15)) (-2599 (($ (-795 |#1|)) 24)) (-4192 (((-112) $ $) 30)) (-4210 (((-892) $) 37)) (-3838 (($ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2121 (((-621 $) (-795 |#1|)) 17)) (-3846 (((-834) $) 43) (($ |#1|) 34) (((-795 |#1|) $) 39) (((-653 |#1|) $) 44)) (-2224 (((-58 (-621 $)) (-621 |#1|) (-892)) 57)) (-2404 (((-621 $) (-621 |#1|) (-892)) 60)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 53)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 38)))
-(((-648 |#1|) (-13 (-823) (-1009 |#1|) (-10 -8 (-15 -4304 ((-112) $)) (-15 -3838 ($ $)) (-15 -3848 ($ $)) (-15 -4210 ((-892) $)) (-15 -4192 ((-112) $ $)) (-15 -3846 ((-795 |#1|) $)) (-15 -3846 ((-653 |#1|) $)) (-15 -2121 ((-621 $) (-795 |#1|))) (-15 -3772 ((-112) (-795 |#1|))) (-15 -2599 ($ (-795 |#1|))) (-15 -3541 ((-3 $ "failed") (-795 |#1|))) (-15 -3304 ((-621 |#1|) $)) (-15 -2224 ((-58 (-621 $)) (-621 |#1|) (-892))) (-15 -2404 ((-621 $) (-621 |#1|) (-892))))) (-823)) (T -648))
-((-4304 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-648 *3)) (-4 *3 (-823)))) (-3838 (*1 *1 *1) (-12 (-5 *1 (-648 *2)) (-4 *2 (-823)))) (-3848 (*1 *1 *1) (-12 (-5 *1 (-648 *2)) (-4 *2 (-823)))) (-4210 (*1 *2 *1) (-12 (-5 *2 (-892)) (-5 *1 (-648 *3)) (-4 *3 (-823)))) (-4192 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-648 *3)) (-4 *3 (-823)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-795 *3)) (-5 *1 (-648 *3)) (-4 *3 (-823)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-653 *3)) (-5 *1 (-648 *3)) (-4 *3 (-823)))) (-2121 (*1 *2 *3) (-12 (-5 *3 (-795 *4)) (-4 *4 (-823)) (-5 *2 (-621 (-648 *4))) (-5 *1 (-648 *4)))) (-3772 (*1 *2 *3) (-12 (-5 *3 (-795 *4)) (-4 *4 (-823)) (-5 *2 (-112)) (-5 *1 (-648 *4)))) (-2599 (*1 *1 *2) (-12 (-5 *2 (-795 *3)) (-4 *3 (-823)) (-5 *1 (-648 *3)))) (-3541 (*1 *1 *2) (|partial| -12 (-5 *2 (-795 *3)) (-4 *3 (-823)) (-5 *1 (-648 *3)))) (-3304 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-648 *3)) (-4 *3 (-823)))) (-2224 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *5)) (-5 *4 (-892)) (-4 *5 (-823)) (-5 *2 (-58 (-621 (-648 *5)))) (-5 *1 (-648 *5)))) (-2404 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *5)) (-5 *4 (-892)) (-4 *5 (-823)) (-5 *2 (-621 (-648 *5))) (-5 *1 (-648 *5)))))
-(-13 (-823) (-1009 |#1|) (-10 -8 (-15 -4304 ((-112) $)) (-15 -3838 ($ $)) (-15 -3848 ($ $)) (-15 -4210 ((-892) $)) (-15 -4192 ((-112) $ $)) (-15 -3846 ((-795 |#1|) $)) (-15 -3846 ((-653 |#1|) $)) (-15 -2121 ((-621 $) (-795 |#1|))) (-15 -3772 ((-112) (-795 |#1|))) (-15 -2599 ($ (-795 |#1|))) (-15 -3541 ((-3 $ "failed") (-795 |#1|))) (-15 -3304 ((-621 |#1|) $)) (-15 -2224 ((-58 (-621 $)) (-621 |#1|) (-892))) (-15 -2404 ((-621 $) (-621 |#1|) (-892)))))
-((-4161 ((|#2| $) 76)) (-1343 (($ $) 96)) (-1584 (((-112) $ (-747)) 26)) (-3657 (($ $) 85) (($ $ (-747)) 88)) (-3331 (((-112) $) 97)) (-3075 (((-621 $) $) 72)) (-3895 (((-112) $ $) 71)) (-3194 (((-112) $ (-747)) 24)) (-4031 (((-549) $) 46)) (-1569 (((-549) $) 45)) (-1508 (((-112) $ (-747)) 22)) (-2076 (((-112) $) 74)) (-3829 ((|#2| $) 89) (($ $ (-747)) 92)) (-2616 (($ $ $ (-549)) 62) (($ |#2| $ (-549)) 61)) (-3303 (((-621 (-549)) $) 44)) (-3761 (((-112) (-549) $) 42)) (-3646 ((|#2| $) NIL) (($ $ (-747)) 84)) (-2763 (($ $ (-549)) 100)) (-3016 (((-112) $) 99)) (-1780 (((-112) (-1 (-112) |#2|) $) 32)) (-2696 (((-621 |#2|) $) 33)) (-3341 ((|#2| $ "value") NIL) ((|#2| $ "first") 83) (($ $ "rest") 87) ((|#2| $ "last") 95) (($ $ (-1193 (-549))) 58) ((|#2| $ (-549)) 40) ((|#2| $ (-549) |#2|) 41)) (-3230 (((-549) $ $) 70)) (-2167 (($ $ (-1193 (-549))) 57) (($ $ (-549)) 51)) (-3497 (((-112) $) 66)) (-1999 (($ $) 81)) (-3798 (((-747) $) 80)) (-3612 (($ $) 79)) (-3854 (($ (-621 |#2|)) 37)) (-1977 (($ $) 101)) (-2742 (((-621 $) $) 69)) (-1987 (((-112) $ $) 68)) (-3527 (((-112) (-1 (-112) |#2|) $) 31)) (-2389 (((-112) $ $) 18)) (-3775 (((-747) $) 29)))
-(((-649 |#1| |#2|) (-10 -8 (-15 -1977 (|#1| |#1|)) (-15 -2763 (|#1| |#1| (-549))) (-15 -3331 ((-112) |#1|)) (-15 -3016 ((-112) |#1|)) (-15 -3341 (|#2| |#1| (-549) |#2|)) (-15 -3341 (|#2| |#1| (-549))) (-15 -2696 ((-621 |#2|) |#1|)) (-15 -3761 ((-112) (-549) |#1|)) (-15 -3303 ((-621 (-549)) |#1|)) (-15 -1569 ((-549) |#1|)) (-15 -4031 ((-549) |#1|)) (-15 -3854 (|#1| (-621 |#2|))) (-15 -3341 (|#1| |#1| (-1193 (-549)))) (-15 -2167 (|#1| |#1| (-549))) (-15 -2167 (|#1| |#1| (-1193 (-549)))) (-15 -2616 (|#1| |#2| |#1| (-549))) (-15 -2616 (|#1| |#1| |#1| (-549))) (-15 -1999 (|#1| |#1|)) (-15 -3798 ((-747) |#1|)) (-15 -3612 (|#1| |#1|)) (-15 -1343 (|#1| |#1|)) (-15 -3829 (|#1| |#1| (-747))) (-15 -3341 (|#2| |#1| "last")) (-15 -3829 (|#2| |#1|)) (-15 -3657 (|#1| |#1| (-747))) (-15 -3341 (|#1| |#1| "rest")) (-15 -3657 (|#1| |#1|)) (-15 -3646 (|#1| |#1| (-747))) (-15 -3341 (|#2| |#1| "first")) (-15 -3646 (|#2| |#1|)) (-15 -3895 ((-112) |#1| |#1|)) (-15 -1987 ((-112) |#1| |#1|)) (-15 -3230 ((-549) |#1| |#1|)) (-15 -3497 ((-112) |#1|)) (-15 -3341 (|#2| |#1| "value")) (-15 -4161 (|#2| |#1|)) (-15 -2076 ((-112) |#1|)) (-15 -3075 ((-621 |#1|) |#1|)) (-15 -2742 ((-621 |#1|) |#1|)) (-15 -2389 ((-112) |#1| |#1|)) (-15 -1780 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3527 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3775 ((-747) |#1|)) (-15 -1584 ((-112) |#1| (-747))) (-15 -3194 ((-112) |#1| (-747))) (-15 -1508 ((-112) |#1| (-747)))) (-650 |#2|) (-1180)) (T -649))
-NIL
-(-10 -8 (-15 -1977 (|#1| |#1|)) (-15 -2763 (|#1| |#1| (-549))) (-15 -3331 ((-112) |#1|)) (-15 -3016 ((-112) |#1|)) (-15 -3341 (|#2| |#1| (-549) |#2|)) (-15 -3341 (|#2| |#1| (-549))) (-15 -2696 ((-621 |#2|) |#1|)) (-15 -3761 ((-112) (-549) |#1|)) (-15 -3303 ((-621 (-549)) |#1|)) (-15 -1569 ((-549) |#1|)) (-15 -4031 ((-549) |#1|)) (-15 -3854 (|#1| (-621 |#2|))) (-15 -3341 (|#1| |#1| (-1193 (-549)))) (-15 -2167 (|#1| |#1| (-549))) (-15 -2167 (|#1| |#1| (-1193 (-549)))) (-15 -2616 (|#1| |#2| |#1| (-549))) (-15 -2616 (|#1| |#1| |#1| (-549))) (-15 -1999 (|#1| |#1|)) (-15 -3798 ((-747) |#1|)) (-15 -3612 (|#1| |#1|)) (-15 -1343 (|#1| |#1|)) (-15 -3829 (|#1| |#1| (-747))) (-15 -3341 (|#2| |#1| "last")) (-15 -3829 (|#2| |#1|)) (-15 -3657 (|#1| |#1| (-747))) (-15 -3341 (|#1| |#1| "rest")) (-15 -3657 (|#1| |#1|)) (-15 -3646 (|#1| |#1| (-747))) (-15 -3341 (|#2| |#1| "first")) (-15 -3646 (|#2| |#1|)) (-15 -3895 ((-112) |#1| |#1|)) (-15 -1987 ((-112) |#1| |#1|)) (-15 -3230 ((-549) |#1| |#1|)) (-15 -3497 ((-112) |#1|)) (-15 -3341 (|#2| |#1| "value")) (-15 -4161 (|#2| |#1|)) (-15 -2076 ((-112) |#1|)) (-15 -3075 ((-621 |#1|) |#1|)) (-15 -2742 ((-621 |#1|) |#1|)) (-15 -2389 ((-112) |#1| |#1|)) (-15 -1780 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3527 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3775 ((-747) |#1|)) (-15 -1584 ((-112) |#1| (-747))) (-15 -3194 ((-112) |#1| (-747))) (-15 -1508 ((-112) |#1| (-747))))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-4161 ((|#1| $) 48)) (-2839 ((|#1| $) 65)) (-1343 (($ $) 67)) (-1535 (((-1231) $ (-549) (-549)) 97 (|has| $ (-6 -4338)))) (-3174 (($ $ (-549)) 52 (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) 8)) (-2838 ((|#1| $ |#1|) 39 (|has| $ (-6 -4338)))) (-4179 (($ $ $) 56 (|has| $ (-6 -4338)))) (-2780 ((|#1| $ |#1|) 54 (|has| $ (-6 -4338)))) (-4135 ((|#1| $ |#1|) 58 (|has| $ (-6 -4338)))) (-2254 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4338))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4338))) (($ $ "rest" $) 55 (|has| $ (-6 -4338))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) 117 (|has| $ (-6 -4338))) ((|#1| $ (-549) |#1|) 86 (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) 41 (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) |#1|) $) 102)) (-2830 ((|#1| $) 66)) (-1682 (($) 7 T CONST)) (-2670 (($ $) 124)) (-3657 (($ $) 73) (($ $ (-747)) 71)) (-3676 (($ $) 99 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ |#1| $) 100 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#1|) $) 103)) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1879 ((|#1| $ (-549) |#1|) 85 (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) 87)) (-3331 (((-112) $) 83)) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-1545 (((-747) $) 123)) (-3075 (((-621 $) $) 50)) (-3895 (((-112) $ $) 42 (|has| |#1| (-1067)))) (-3743 (($ (-747) |#1|) 108)) (-3194 (((-112) $ (-747)) 9)) (-4031 (((-549) $) 95 (|has| (-549) (-823)))) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1569 (((-549) $) 94 (|has| (-549) (-823)))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-1508 (((-112) $ (-747)) 10)) (-3591 (((-621 |#1|) $) 45)) (-2076 (((-112) $) 49)) (-2948 (($ $) 126)) (-1558 (((-112) $) 127)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3829 ((|#1| $) 70) (($ $ (-747)) 68)) (-2616 (($ $ $ (-549)) 116) (($ |#1| $ (-549)) 115)) (-3303 (((-621 (-549)) $) 92)) (-3761 (((-112) (-549) $) 91)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-3217 ((|#1| $) 125)) (-3646 ((|#1| $) 76) (($ $ (-747)) 74)) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-1642 (($ $ |#1|) 96 (|has| $ (-6 -4338)))) (-2763 (($ $ (-549)) 122)) (-3016 (((-112) $) 84)) (-1551 (((-112) $) 128)) (-2510 (((-112) $) 129)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-2265 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) 90)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1193 (-549))) 112) ((|#1| $ (-549)) 89) ((|#1| $ (-549) |#1|) 88)) (-3230 (((-549) $ $) 44)) (-2167 (($ $ (-1193 (-549))) 114) (($ $ (-549)) 113)) (-3497 (((-112) $) 46)) (-1999 (($ $) 62)) (-2643 (($ $) 59 (|has| $ (-6 -4338)))) (-3798 (((-747) $) 63)) (-3612 (($ $) 64)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-2845 (((-525) $) 98 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 107)) (-3196 (($ $ $) 61 (|has| $ (-6 -4338))) (($ $ |#1|) 60 (|has| $ (-6 -4338)))) (-1952 (($ $ $) 78) (($ |#1| $) 77) (($ (-621 $)) 110) (($ $ |#1|) 109)) (-1977 (($ $) 121)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) 51)) (-1987 (((-112) $ $) 43 (|has| |#1| (-1067)))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-650 |#1|) (-138) (-1180)) (T -650))
-((-3812 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-650 *3)) (-4 *3 (-1180)))) (-1489 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-650 *3)) (-4 *3 (-1180)))) (-2510 (*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-1180)) (-5 *2 (-112)))) (-1551 (*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-1180)) (-5 *2 (-112)))) (-1558 (*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-1180)) (-5 *2 (-112)))) (-2948 (*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1180)))) (-3217 (*1 *2 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1180)))) (-2670 (*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1180)))) (-1545 (*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-1180)) (-5 *2 (-747)))) (-2763 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-650 *3)) (-4 *3 (-1180)))) (-1977 (*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1180)))))
-(-13 (-1116 |t#1|) (-10 -8 (-15 -3812 ($ (-1 (-112) |t#1|) $)) (-15 -1489 ($ (-1 (-112) |t#1|) $)) (-15 -2510 ((-112) $)) (-15 -1551 ((-112) $)) (-15 -1558 ((-112) $)) (-15 -2948 ($ $)) (-15 -3217 (|t#1| $)) (-15 -2670 ($ $)) (-15 -1545 ((-747) $)) (-15 -2763 ($ $ (-549))) (-15 -1977 ($ $))))
-(((-34) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-627 |#1|) . T) ((-981 |#1|) . T) ((-1067) |has| |#1| (-1067)) ((-1116 |#1|) . T) ((-1180) . T) ((-1214 |#1|) . T))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3985 (($ (-747) (-747) (-747)) 33 (|has| |#1| (-1018)))) (-1584 (((-112) $ (-747)) NIL)) (-3994 ((|#1| $ (-747) (-747) (-747) |#1|) 27)) (-1682 (($) NIL T CONST)) (-3441 (($ $ $) 37 (|has| |#1| (-1018)))) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-3290 (((-1226 (-747)) $) 9)) (-1791 (($ (-1143) $ $) 22)) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-1301 (($ (-747)) 35 (|has| |#1| (-1018)))) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#1| $ (-747) (-747) (-747)) 25)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) NIL)) (-3854 (($ (-621 (-621 (-621 |#1|)))) 44)) (-3846 (($ (-929 (-929 (-929 |#1|)))) 15) (((-929 (-929 (-929 |#1|))) $) 12) (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-651 |#1|) (-13 (-481 |#1|) (-10 -8 (IF (|has| |#1| (-1018)) (PROGN (-15 -3985 ($ (-747) (-747) (-747))) (-15 -1301 ($ (-747))) (-15 -3441 ($ $ $))) |%noBranch|) (-15 -3854 ($ (-621 (-621 (-621 |#1|))))) (-15 -3341 (|#1| $ (-747) (-747) (-747))) (-15 -3994 (|#1| $ (-747) (-747) (-747) |#1|)) (-15 -3846 ($ (-929 (-929 (-929 |#1|))))) (-15 -3846 ((-929 (-929 (-929 |#1|))) $)) (-15 -1791 ($ (-1143) $ $)) (-15 -3290 ((-1226 (-747)) $)))) (-1067)) (T -651))
-((-3985 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-747)) (-5 *1 (-651 *3)) (-4 *3 (-1018)) (-4 *3 (-1067)))) (-1301 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-651 *3)) (-4 *3 (-1018)) (-4 *3 (-1067)))) (-3441 (*1 *1 *1 *1) (-12 (-5 *1 (-651 *2)) (-4 *2 (-1018)) (-4 *2 (-1067)))) (-3854 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 (-621 *3)))) (-4 *3 (-1067)) (-5 *1 (-651 *3)))) (-3341 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-747)) (-5 *1 (-651 *2)) (-4 *2 (-1067)))) (-3994 (*1 *2 *1 *3 *3 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-651 *2)) (-4 *2 (-1067)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-929 (-929 (-929 *3)))) (-4 *3 (-1067)) (-5 *1 (-651 *3)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-929 (-929 (-929 *3)))) (-5 *1 (-651 *3)) (-4 *3 (-1067)))) (-1791 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-651 *3)) (-4 *3 (-1067)))) (-3290 (*1 *2 *1) (-12 (-5 *2 (-1226 (-747))) (-5 *1 (-651 *3)) (-4 *3 (-1067)))))
-(-13 (-481 |#1|) (-10 -8 (IF (|has| |#1| (-1018)) (PROGN (-15 -3985 ($ (-747) (-747) (-747))) (-15 -1301 ($ (-747))) (-15 -3441 ($ $ $))) |%noBranch|) (-15 -3854 ($ (-621 (-621 (-621 |#1|))))) (-15 -3341 (|#1| $ (-747) (-747) (-747))) (-15 -3994 (|#1| $ (-747) (-747) (-747) |#1|)) (-15 -3846 ($ (-929 (-929 (-929 |#1|))))) (-15 -3846 ((-929 (-929 (-929 |#1|))) $)) (-15 -1791 ($ (-1143) $ $)) (-15 -3290 ((-1226 (-747)) $))))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3477 (((-621 (-497)) $) 11)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2492 (((-1148) $) 13)) (-2389 (((-112) $ $) NIL)))
-(((-652) (-13 (-1050) (-10 -8 (-15 -3477 ((-621 (-497)) $)) (-15 -2492 ((-1148) $))))) (T -652))
-((-3477 (*1 *2 *1) (-12 (-5 *2 (-621 (-497))) (-5 *1 (-652)))) (-2492 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-652)))))
-(-13 (-1050) (-10 -8 (-15 -3477 ((-621 (-497)) $)) (-15 -2492 ((-1148) $))))
-((-3834 (((-112) $ $) NIL)) (-3304 (((-621 |#1|) $) 14)) (-3848 (($ $) 18)) (-4304 (((-112) $) 19)) (-2714 (((-3 |#1| "failed") $) 22)) (-2659 ((|#1| $) 20)) (-3657 (($ $) 36)) (-4273 (($ $) 24)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-4192 (((-112) $ $) 42)) (-4210 (((-892) $) 38)) (-3838 (($ $) 17)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3646 ((|#1| $) 35)) (-3846 (((-834) $) 31) (($ |#1|) 23) (((-795 |#1|) $) 27)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 12)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 40)) (* (($ $ $) 34)))
-(((-653 |#1|) (-13 (-823) (-1009 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3846 ((-795 |#1|) $)) (-15 -3646 (|#1| $)) (-15 -3838 ($ $)) (-15 -4210 ((-892) $)) (-15 -4192 ((-112) $ $)) (-15 -4273 ($ $)) (-15 -3657 ($ $)) (-15 -4304 ((-112) $)) (-15 -3848 ($ $)) (-15 -3304 ((-621 |#1|) $)))) (-823)) (T -653))
-((* (*1 *1 *1 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-795 *3)) (-5 *1 (-653 *3)) (-4 *3 (-823)))) (-3646 (*1 *2 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823)))) (-3838 (*1 *1 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823)))) (-4210 (*1 *2 *1) (-12 (-5 *2 (-892)) (-5 *1 (-653 *3)) (-4 *3 (-823)))) (-4192 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-653 *3)) (-4 *3 (-823)))) (-4273 (*1 *1 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823)))) (-3657 (*1 *1 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823)))) (-4304 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-653 *3)) (-4 *3 (-823)))) (-3848 (*1 *1 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823)))) (-3304 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-653 *3)) (-4 *3 (-823)))))
-(-13 (-823) (-1009 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3846 ((-795 |#1|) $)) (-15 -3646 (|#1| $)) (-15 -3838 ($ $)) (-15 -4210 ((-892) $)) (-15 -4192 ((-112) $ $)) (-15 -4273 ($ $)) (-15 -3657 ($ $)) (-15 -4304 ((-112) $)) (-15 -3848 ($ $)) (-15 -3304 ((-621 |#1|) $))))
-((-1477 ((|#1| (-1 |#1| (-747) |#1|) (-747) |#1|) 11)) (-2665 ((|#1| (-1 |#1| |#1|) (-747) |#1|) 9)))
-(((-654 |#1|) (-10 -7 (-15 -2665 (|#1| (-1 |#1| |#1|) (-747) |#1|)) (-15 -1477 (|#1| (-1 |#1| (-747) |#1|) (-747) |#1|))) (-1067)) (T -654))
-((-1477 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 (-747) *2)) (-5 *4 (-747)) (-4 *2 (-1067)) (-5 *1 (-654 *2)))) (-2665 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-747)) (-4 *2 (-1067)) (-5 *1 (-654 *2)))))
-(-10 -7 (-15 -2665 (|#1| (-1 |#1| |#1|) (-747) |#1|)) (-15 -1477 (|#1| (-1 |#1| (-747) |#1|) (-747) |#1|)))
-((-3567 ((|#2| |#1| |#2|) 9)) (-3554 ((|#1| |#1| |#2|) 8)))
-(((-655 |#1| |#2|) (-10 -7 (-15 -3554 (|#1| |#1| |#2|)) (-15 -3567 (|#2| |#1| |#2|))) (-1067) (-1067)) (T -655))
-((-3567 (*1 *2 *3 *2) (-12 (-5 *1 (-655 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1067)))) (-3554 (*1 *2 *2 *3) (-12 (-5 *1 (-655 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067)))))
-(-10 -7 (-15 -3554 (|#1| |#1| |#2|)) (-15 -3567 (|#2| |#1| |#2|)))
-((-3774 ((|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|) 11)))
-(((-656 |#1| |#2| |#3|) (-10 -7 (-15 -3774 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|))) (-1067) (-1067) (-1067)) (T -656))
-((-3774 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *2 (-1067)) (-5 *1 (-656 *5 *6 *2)))))
-(-10 -7 (-15 -3774 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|)))
-((-3834 (((-112) $ $) NIL)) (-2100 (((-1179) $) 20)) (-3224 (((-621 (-1179)) $) 18)) (-2305 (($ (-621 (-1179)) (-1179)) 13)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL) (((-1179) $) 21) (($ (-1085)) 10)) (-2389 (((-112) $ $) NIL)))
-(((-657) (-13 (-1050) (-593 (-1179)) (-10 -8 (-15 -3846 ($ (-1085))) (-15 -2305 ($ (-621 (-1179)) (-1179))) (-15 -3224 ((-621 (-1179)) $)) (-15 -2100 ((-1179) $))))) (T -657))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-657)))) (-2305 (*1 *1 *2 *3) (-12 (-5 *2 (-621 (-1179))) (-5 *3 (-1179)) (-5 *1 (-657)))) (-3224 (*1 *2 *1) (-12 (-5 *2 (-621 (-1179))) (-5 *1 (-657)))) (-2100 (*1 *2 *1) (-12 (-5 *2 (-1179)) (-5 *1 (-657)))))
-(-13 (-1050) (-593 (-1179)) (-10 -8 (-15 -3846 ($ (-1085))) (-15 -2305 ($ (-621 (-1179)) (-1179))) (-15 -3224 ((-621 (-1179)) $)) (-15 -2100 ((-1179) $))))
-((-1477 (((-1 |#1| (-747) |#1|) (-1 |#1| (-747) |#1|)) 23)) (-3722 (((-1 |#1|) |#1|) 8)) (-3715 ((|#1| |#1|) 16)) (-4196 (((-621 |#1|) (-1 (-621 |#1|) (-621 |#1|)) (-549)) 15) ((|#1| (-1 |#1| |#1|)) 11)) (-3846 (((-1 |#1|) |#1|) 9)) (** (((-1 |#1| |#1|) (-1 |#1| |#1|) (-747)) 20)))
-(((-658 |#1|) (-10 -7 (-15 -3722 ((-1 |#1|) |#1|)) (-15 -3846 ((-1 |#1|) |#1|)) (-15 -4196 (|#1| (-1 |#1| |#1|))) (-15 -4196 ((-621 |#1|) (-1 (-621 |#1|) (-621 |#1|)) (-549))) (-15 -3715 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-747))) (-15 -1477 ((-1 |#1| (-747) |#1|) (-1 |#1| (-747) |#1|)))) (-1067)) (T -658))
-((-1477 (*1 *2 *2) (-12 (-5 *2 (-1 *3 (-747) *3)) (-4 *3 (-1067)) (-5 *1 (-658 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-747)) (-4 *4 (-1067)) (-5 *1 (-658 *4)))) (-3715 (*1 *2 *2) (-12 (-5 *1 (-658 *2)) (-4 *2 (-1067)))) (-4196 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-621 *5) (-621 *5))) (-5 *4 (-549)) (-5 *2 (-621 *5)) (-5 *1 (-658 *5)) (-4 *5 (-1067)))) (-4196 (*1 *2 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-658 *2)) (-4 *2 (-1067)))) (-3846 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-658 *3)) (-4 *3 (-1067)))) (-3722 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-658 *3)) (-4 *3 (-1067)))))
-(-10 -7 (-15 -3722 ((-1 |#1|) |#1|)) (-15 -3846 ((-1 |#1|) |#1|)) (-15 -4196 (|#1| (-1 |#1| |#1|))) (-15 -4196 ((-621 |#1|) (-1 (-621 |#1|) (-621 |#1|)) (-549))) (-15 -3715 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-747))) (-15 -1477 ((-1 |#1| (-747) |#1|) (-1 |#1| (-747) |#1|))))
-((-2287 (((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)) 16)) (-1609 (((-1 |#2|) (-1 |#2| |#1|) |#1|) 13)) (-2589 (((-1 |#2| |#1|) (-1 |#2|)) 14)) (-1759 (((-1 |#2| |#1|) |#2|) 11)))
-(((-659 |#1| |#2|) (-10 -7 (-15 -1759 ((-1 |#2| |#1|) |#2|)) (-15 -1609 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -2589 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -2287 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)))) (-1067) (-1067)) (T -659))
-((-2287 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-5 *2 (-1 *5 *4)) (-5 *1 (-659 *4 *5)))) (-2589 (*1 *2 *3) (-12 (-5 *3 (-1 *5)) (-4 *5 (-1067)) (-5 *2 (-1 *5 *4)) (-5 *1 (-659 *4 *5)) (-4 *4 (-1067)))) (-1609 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-5 *2 (-1 *5)) (-5 *1 (-659 *4 *5)))) (-1759 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-659 *4 *3)) (-4 *4 (-1067)) (-4 *3 (-1067)))))
-(-10 -7 (-15 -1759 ((-1 |#2| |#1|) |#2|)) (-15 -1609 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -2589 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -2287 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|))))
-((-3513 (((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|)) 17)) (-1471 (((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|) 11)) (-3558 (((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|) 13)) (-3141 (((-1 |#3| |#1| |#2|) (-1 |#3| |#1|)) 14)) (-2201 (((-1 |#3| |#1| |#2|) (-1 |#3| |#2|)) 15)) (* (((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)) 21)))
-(((-660 |#1| |#2| |#3|) (-10 -7 (-15 -1471 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -3558 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -3141 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -2201 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -3513 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)))) (-1067) (-1067) (-1067)) (T -660))
-((* (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-1 *7 *5)) (-5 *1 (-660 *5 *6 *7)))) (-3513 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-660 *4 *5 *6)))) (-2201 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-660 *4 *5 *6)) (-4 *4 (-1067)))) (-3141 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1067)) (-4 *6 (-1067)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-660 *4 *5 *6)) (-4 *5 (-1067)))) (-3558 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-5 *2 (-1 *6 *5)) (-5 *1 (-660 *4 *5 *6)))) (-1471 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1067)) (-4 *4 (-1067)) (-4 *6 (-1067)) (-5 *2 (-1 *6 *5)) (-5 *1 (-660 *5 *4 *6)))))
-(-10 -7 (-15 -1471 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -3558 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -3141 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -2201 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -3513 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|))))
-((-2557 ((|#5| (-1 |#5| |#1| |#5|) |#4| |#5|) 39)) (-2797 (((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|) 37) ((|#8| (-1 |#5| |#1|) |#4|) 31)))
-(((-661 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2797 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -2797 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -2557 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|))) (-1018) (-366 |#1|) (-366 |#1|) (-663 |#1| |#2| |#3|) (-1018) (-366 |#5|) (-366 |#5|) (-663 |#5| |#6| |#7|)) (T -661))
-((-2557 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1018)) (-4 *2 (-1018)) (-4 *6 (-366 *5)) (-4 *7 (-366 *5)) (-4 *8 (-366 *2)) (-4 *9 (-366 *2)) (-5 *1 (-661 *5 *6 *7 *4 *2 *8 *9 *10)) (-4 *4 (-663 *5 *6 *7)) (-4 *10 (-663 *2 *8 *9)))) (-2797 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-1018)) (-4 *8 (-1018)) (-4 *6 (-366 *5)) (-4 *7 (-366 *5)) (-4 *2 (-663 *8 *9 *10)) (-5 *1 (-661 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-663 *5 *6 *7)) (-4 *9 (-366 *8)) (-4 *10 (-366 *8)))) (-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1018)) (-4 *8 (-1018)) (-4 *6 (-366 *5)) (-4 *7 (-366 *5)) (-4 *2 (-663 *8 *9 *10)) (-5 *1 (-661 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-663 *5 *6 *7)) (-4 *9 (-366 *8)) (-4 *10 (-366 *8)))))
-(-10 -7 (-15 -2797 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -2797 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -2557 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|)))
-((-3769 (($ (-747) (-747)) 33)) (-1648 (($ $ $) 56)) (-3682 (($ |#3|) 52) (($ $) 53)) (-2092 (((-112) $) 28)) (-4206 (($ $ (-549) (-549)) 58)) (-1769 (($ $ (-549) (-549)) 59)) (-1624 (($ $ (-549) (-549) (-549) (-549)) 63)) (-4218 (($ $) 54)) (-2340 (((-112) $) 14)) (-1756 (($ $ (-549) (-549) $) 64)) (-2254 ((|#2| $ (-549) (-549) |#2|) NIL) (($ $ (-621 (-549)) (-621 (-549)) $) 62)) (-2228 (($ (-747) |#2|) 39)) (-3946 (($ (-621 (-621 |#2|))) 37)) (-2913 (((-621 (-621 |#2|)) $) 57)) (-3571 (($ $ $) 55)) (-2042 (((-3 $ "failed") $ |#2|) 91)) (-3341 ((|#2| $ (-549) (-549)) NIL) ((|#2| $ (-549) (-549) |#2|) NIL) (($ $ (-621 (-549)) (-621 (-549))) 61)) (-2133 (($ (-621 |#2|)) 40) (($ (-621 $)) 42)) (-1757 (((-112) $) 24)) (-3846 (($ |#4|) 47) (((-834) $) NIL)) (-2974 (((-112) $) 30)) (-2513 (($ $ |#2|) 93)) (-2500 (($ $ $) 68) (($ $) 71)) (-2486 (($ $ $) 66)) (** (($ $ (-747)) 80) (($ $ (-549)) 96)) (* (($ $ $) 77) (($ |#2| $) 73) (($ $ |#2|) 74) (($ (-549) $) 76) ((|#4| $ |#4|) 84) ((|#3| |#3| $) 88)))
-(((-662 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3846 ((-834) |#1|)) (-15 ** (|#1| |#1| (-549))) (-15 -2513 (|#1| |#1| |#2|)) (-15 -2042 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-747))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2500 (|#1| |#1|)) (-15 -2500 (|#1| |#1| |#1|)) (-15 -2486 (|#1| |#1| |#1|)) (-15 -1756 (|#1| |#1| (-549) (-549) |#1|)) (-15 -1624 (|#1| |#1| (-549) (-549) (-549) (-549))) (-15 -1769 (|#1| |#1| (-549) (-549))) (-15 -4206 (|#1| |#1| (-549) (-549))) (-15 -2254 (|#1| |#1| (-621 (-549)) (-621 (-549)) |#1|)) (-15 -3341 (|#1| |#1| (-621 (-549)) (-621 (-549)))) (-15 -2913 ((-621 (-621 |#2|)) |#1|)) (-15 -1648 (|#1| |#1| |#1|)) (-15 -3571 (|#1| |#1| |#1|)) (-15 -4218 (|#1| |#1|)) (-15 -3682 (|#1| |#1|)) (-15 -3682 (|#1| |#3|)) (-15 -3846 (|#1| |#4|)) (-15 -2133 (|#1| (-621 |#1|))) (-15 -2133 (|#1| (-621 |#2|))) (-15 -2228 (|#1| (-747) |#2|)) (-15 -3946 (|#1| (-621 (-621 |#2|)))) (-15 -3769 (|#1| (-747) (-747))) (-15 -2974 ((-112) |#1|)) (-15 -2092 ((-112) |#1|)) (-15 -1757 ((-112) |#1|)) (-15 -2340 ((-112) |#1|)) (-15 -2254 (|#2| |#1| (-549) (-549) |#2|)) (-15 -3341 (|#2| |#1| (-549) (-549) |#2|)) (-15 -3341 (|#2| |#1| (-549) (-549)))) (-663 |#2| |#3| |#4|) (-1018) (-366 |#2|) (-366 |#2|)) (T -662))
-NIL
-(-10 -8 (-15 -3846 ((-834) |#1|)) (-15 ** (|#1| |#1| (-549))) (-15 -2513 (|#1| |#1| |#2|)) (-15 -2042 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-747))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2500 (|#1| |#1|)) (-15 -2500 (|#1| |#1| |#1|)) (-15 -2486 (|#1| |#1| |#1|)) (-15 -1756 (|#1| |#1| (-549) (-549) |#1|)) (-15 -1624 (|#1| |#1| (-549) (-549) (-549) (-549))) (-15 -1769 (|#1| |#1| (-549) (-549))) (-15 -4206 (|#1| |#1| (-549) (-549))) (-15 -2254 (|#1| |#1| (-621 (-549)) (-621 (-549)) |#1|)) (-15 -3341 (|#1| |#1| (-621 (-549)) (-621 (-549)))) (-15 -2913 ((-621 (-621 |#2|)) |#1|)) (-15 -1648 (|#1| |#1| |#1|)) (-15 -3571 (|#1| |#1| |#1|)) (-15 -4218 (|#1| |#1|)) (-15 -3682 (|#1| |#1|)) (-15 -3682 (|#1| |#3|)) (-15 -3846 (|#1| |#4|)) (-15 -2133 (|#1| (-621 |#1|))) (-15 -2133 (|#1| (-621 |#2|))) (-15 -2228 (|#1| (-747) |#2|)) (-15 -3946 (|#1| (-621 (-621 |#2|)))) (-15 -3769 (|#1| (-747) (-747))) (-15 -2974 ((-112) |#1|)) (-15 -2092 ((-112) |#1|)) (-15 -1757 ((-112) |#1|)) (-15 -2340 ((-112) |#1|)) (-15 -2254 (|#2| |#1| (-549) (-549) |#2|)) (-15 -3341 (|#2| |#1| (-549) (-549) |#2|)) (-15 -3341 (|#2| |#1| (-549) (-549))))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-3769 (($ (-747) (-747)) 97)) (-1648 (($ $ $) 87)) (-3682 (($ |#2|) 91) (($ $) 90)) (-2092 (((-112) $) 99)) (-4206 (($ $ (-549) (-549)) 83)) (-1769 (($ $ (-549) (-549)) 82)) (-1624 (($ $ (-549) (-549) (-549) (-549)) 81)) (-4218 (($ $) 89)) (-2340 (((-112) $) 101)) (-1584 (((-112) $ (-747)) 8)) (-1756 (($ $ (-549) (-549) $) 80)) (-2254 ((|#1| $ (-549) (-549) |#1|) 44) (($ $ (-621 (-549)) (-621 (-549)) $) 84)) (-3537 (($ $ (-549) |#2|) 42)) (-3815 (($ $ (-549) |#3|) 41)) (-2228 (($ (-747) |#1|) 95)) (-1682 (($) 7 T CONST)) (-3460 (($ $) 67 (|has| |#1| (-300)))) (-4060 ((|#2| $ (-549)) 46)) (-3123 (((-747) $) 66 (|has| |#1| (-541)))) (-1879 ((|#1| $ (-549) (-549) |#1|) 43)) (-1809 ((|#1| $ (-549) (-549)) 48)) (-2989 (((-621 |#1|) $) 30)) (-1323 (((-747) $) 65 (|has| |#1| (-541)))) (-1479 (((-621 |#3|) $) 64 (|has| |#1| (-541)))) (-2142 (((-747) $) 51)) (-3743 (($ (-747) (-747) |#1|) 57)) (-2155 (((-747) $) 50)) (-3194 (((-112) $ (-747)) 9)) (-1929 ((|#1| $) 62 (|has| |#1| (-6 (-4339 "*"))))) (-1761 (((-549) $) 55)) (-2703 (((-549) $) 53)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1661 (((-549) $) 54)) (-1887 (((-549) $) 52)) (-3946 (($ (-621 (-621 |#1|))) 96)) (-1868 (($ (-1 |#1| |#1|) $) 34)) (-2797 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-2913 (((-621 (-621 |#1|)) $) 86)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3849 (((-3 $ "failed") $) 61 (|has| |#1| (-356)))) (-3571 (($ $ $) 88)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-1642 (($ $ |#1|) 56)) (-2042 (((-3 $ "failed") $ |#1|) 69 (|has| |#1| (-541)))) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#1| $ (-549) (-549)) 49) ((|#1| $ (-549) (-549) |#1|) 47) (($ $ (-621 (-549)) (-621 (-549))) 85)) (-2133 (($ (-621 |#1|)) 94) (($ (-621 $)) 93)) (-1757 (((-112) $) 100)) (-2029 ((|#1| $) 63 (|has| |#1| (-6 (-4339 "*"))))) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-2851 ((|#3| $ (-549)) 45)) (-3846 (($ |#3|) 92) (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2974 (((-112) $) 98)) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-2513 (($ $ |#1|) 68 (|has| |#1| (-356)))) (-2500 (($ $ $) 78) (($ $) 77)) (-2486 (($ $ $) 79)) (** (($ $ (-747)) 70) (($ $ (-549)) 60 (|has| |#1| (-356)))) (* (($ $ $) 76) (($ |#1| $) 75) (($ $ |#1|) 74) (($ (-549) $) 73) ((|#3| $ |#3|) 72) ((|#2| |#2| $) 71)) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 15)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-1392 ((|#1| $) 21)) (-2861 (($ $ $) NIL (|has| |#1| (-767)))) (-3574 (($ $ $) NIL (|has| |#1| (-767)))) (-3441 (((-1124) $) 46)) (-3988 (((-1086) $) NIL)) (-1404 ((|#3| $) 22)) (-3845 (((-834) $) 42)) (-3274 (($) 10 T CONST)) (-2447 (((-112) $ $) NIL (|has| |#1| (-767)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-767)))) (-2387 (((-112) $ $) 20)) (-2436 (((-112) $ $) NIL (|has| |#1| (-767)))) (-2409 (((-112) $ $) 24 (|has| |#1| (-767)))) (-2511 (($ $ |#3|) 34) (($ |#1| |#3|) 35)) (-2498 (($ $) 17) (($ $ $) NIL)) (-2484 (($ $ $) 27)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 30) (($ |#2| $) 32) (($ $ |#2|) NIL)))
+(((-638 |#1| |#2| |#3|) (-13 (-694 |#2|) (-10 -8 (IF (|has| |#1| (-767)) (-6 (-767)) |%noBranch|) (-15 -2511 ($ $ |#3|)) (-15 -2511 ($ |#1| |#3|)) (-15 -1392 (|#1| $)) (-15 -1404 (|#3| $)))) (-694 |#2|) (-170) (|SubsetCategory| (-703) |#2|)) (T -638))
+((-2511 (*1 *1 *1 *2) (-12 (-4 *4 (-170)) (-5 *1 (-638 *3 *4 *2)) (-4 *3 (-694 *4)) (-4 *2 (|SubsetCategory| (-703) *4)))) (-2511 (*1 *1 *2 *3) (-12 (-4 *4 (-170)) (-5 *1 (-638 *2 *4 *3)) (-4 *2 (-694 *4)) (-4 *3 (|SubsetCategory| (-703) *4)))) (-1392 (*1 *2 *1) (-12 (-4 *3 (-170)) (-4 *2 (-694 *3)) (-5 *1 (-638 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-703) *3)))) (-1404 (*1 *2 *1) (-12 (-4 *4 (-170)) (-4 *2 (|SubsetCategory| (-703) *4)) (-5 *1 (-638 *3 *4 *2)) (-4 *3 (-694 *4)))))
+(-13 (-694 |#2|) (-10 -8 (IF (|has| |#1| (-767)) (-6 (-767)) |%noBranch|) (-15 -2511 ($ $ |#3|)) (-15 -2511 ($ |#1| |#3|)) (-15 -1392 (|#1| $)) (-15 -1404 (|#3| $))))
+((-3684 (((-3 (-621 (-1138 |#1|)) "failed") (-621 (-1138 |#1|)) (-1138 |#1|)) 33)))
+(((-639 |#1|) (-10 -7 (-15 -3684 ((-3 (-621 (-1138 |#1|)) "failed") (-621 (-1138 |#1|)) (-1138 |#1|)))) (-880)) (T -639))
+((-3684 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-621 (-1138 *4))) (-5 *3 (-1138 *4)) (-4 *4 (-880)) (-5 *1 (-639 *4)))))
+(-10 -7 (-15 -3684 ((-3 (-621 (-1138 |#1|)) "failed") (-621 (-1138 |#1|)) (-1138 |#1|))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3302 (((-621 |#1|) $) 82)) (-3175 (($ $ (-747)) 90)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-1376 (((-1249 |#1| |#2|) (-1249 |#1| |#2|) $) 48)) (-2712 (((-3 (-648 |#1|) "failed") $) NIL)) (-2657 (((-648 |#1|) $) NIL)) (-2068 (($ $) 89)) (-1751 (((-747) $) NIL)) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) NIL)) (-3525 (($ (-648 |#1|) |#2|) 68)) (-3626 (($ $) 86)) (-2795 (($ (-1 |#2| |#2|) $) NIL)) (-4315 (((-1249 |#1| |#2|) (-1249 |#1| |#2|) $) 47)) (-4249 (((-2 (|:| |k| (-648 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2027 (((-648 |#1|) $) NIL)) (-2042 ((|#2| $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2684 (($ $ |#1| $) 30) (($ $ (-621 |#1|) (-621 $)) 32)) (-3977 (((-747) $) 88)) (-3853 (($ $ $) 20) (($ (-648 |#1|) (-648 |#1|)) 77) (($ (-648 |#1|) $) 75) (($ $ (-648 |#1|)) 76)) (-3845 (((-834) $) NIL) (($ |#1|) 74) (((-1240 |#1| |#2|) $) 58) (((-1249 |#1| |#2|) $) 41) (($ (-648 |#1|)) 25)) (-2157 (((-621 |#2|) $) NIL)) (-4068 ((|#2| $ (-648 |#1|)) NIL)) (-1569 ((|#2| (-1249 |#1| |#2|) $) 43)) (-3274 (($) 23 T CONST)) (-2087 (((-621 (-2 (|:| |k| (-648 |#1|)) (|:| |c| |#2|))) $) NIL)) (-1486 (((-3 $ "failed") (-1240 |#1| |#2|)) 60)) (-2022 (($ (-648 |#1|)) 14)) (-2387 (((-112) $ $) 44)) (-2511 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2498 (($ $) 66) (($ $ $) NIL)) (-2484 (($ $ $) 29)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ |#2| $) 28) (($ $ |#2|) NIL) (($ |#2| (-648 |#1|)) NIL)))
+(((-640 |#1| |#2|) (-13 (-367 |#1| |#2|) (-375 |#2| (-648 |#1|)) (-10 -8 (-15 -1486 ((-3 $ "failed") (-1240 |#1| |#2|))) (-15 -3853 ($ (-648 |#1|) (-648 |#1|))) (-15 -3853 ($ (-648 |#1|) $)) (-15 -3853 ($ $ (-648 |#1|))))) (-823) (-170)) (T -640))
+((-1486 (*1 *1 *2) (|partial| -12 (-5 *2 (-1240 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)) (-5 *1 (-640 *3 *4)))) (-3853 (*1 *1 *2 *2) (-12 (-5 *2 (-648 *3)) (-4 *3 (-823)) (-5 *1 (-640 *3 *4)) (-4 *4 (-170)))) (-3853 (*1 *1 *2 *1) (-12 (-5 *2 (-648 *3)) (-4 *3 (-823)) (-5 *1 (-640 *3 *4)) (-4 *4 (-170)))) (-3853 (*1 *1 *1 *2) (-12 (-5 *2 (-648 *3)) (-4 *3 (-823)) (-5 *1 (-640 *3 *4)) (-4 *4 (-170)))))
+(-13 (-367 |#1| |#2|) (-375 |#2| (-648 |#1|)) (-10 -8 (-15 -1486 ((-3 $ "failed") (-1240 |#1| |#2|))) (-15 -3853 ($ (-648 |#1|) (-648 |#1|))) (-15 -3853 ($ (-648 |#1|) $)) (-15 -3853 ($ $ (-648 |#1|)))))
+((-2239 (((-112) $) NIL) (((-112) (-1 (-112) |#2| |#2|) $) 50)) (-2015 (($ $) NIL) (($ (-1 (-112) |#2| |#2|) $) 12)) (-3827 (($ (-1 (-112) |#2|) $) 28)) (-2918 (($ $) 56)) (-3469 (($ $) 64)) (-3546 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 37)) (-2556 ((|#2| (-1 |#2| |#2| |#2|) $) 21) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 51) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 53)) (-2881 (((-549) |#2| $ (-549)) 61) (((-549) |#2| $) NIL) (((-549) (-1 (-112) |#2|) $) 47)) (-3743 (($ (-747) |#2|) 54)) (-3021 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 30)) (-3050 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 24)) (-2795 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 55)) (-3521 (($ |#2|) 15)) (-1799 (($ $ $ (-549)) 36) (($ |#2| $ (-549)) 34)) (-3959 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 46)) (-2149 (($ $ (-1192 (-549))) 44) (($ $ (-549)) 38)) (-2049 (($ $ $ (-549)) 60)) (-2279 (($ $) 58)) (-2409 (((-112) $ $) 66)))
+(((-641 |#1| |#2|) (-10 -8 (-15 -3521 (|#1| |#2|)) (-15 -2149 (|#1| |#1| (-549))) (-15 -2149 (|#1| |#1| (-1192 (-549)))) (-15 -3546 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1799 (|#1| |#2| |#1| (-549))) (-15 -1799 (|#1| |#1| |#1| (-549))) (-15 -3021 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3827 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3546 (|#1| |#2| |#1|)) (-15 -3469 (|#1| |#1|)) (-15 -3021 (|#1| |#1| |#1|)) (-15 -3050 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2239 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -2881 ((-549) (-1 (-112) |#2|) |#1|)) (-15 -2881 ((-549) |#2| |#1|)) (-15 -2881 ((-549) |#2| |#1| (-549))) (-15 -3050 (|#1| |#1| |#1|)) (-15 -2239 ((-112) |#1|)) (-15 -2049 (|#1| |#1| |#1| (-549))) (-15 -2918 (|#1| |#1|)) (-15 -2015 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2015 (|#1| |#1|)) (-15 -2409 ((-112) |#1| |#1|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3959 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3743 (|#1| (-747) |#2|)) (-15 -2795 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2795 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2279 (|#1| |#1|))) (-642 |#2|) (-1179)) (T -641))
+NIL
+(-10 -8 (-15 -3521 (|#1| |#2|)) (-15 -2149 (|#1| |#1| (-549))) (-15 -2149 (|#1| |#1| (-1192 (-549)))) (-15 -3546 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1799 (|#1| |#2| |#1| (-549))) (-15 -1799 (|#1| |#1| |#1| (-549))) (-15 -3021 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3827 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3546 (|#1| |#2| |#1|)) (-15 -3469 (|#1| |#1|)) (-15 -3021 (|#1| |#1| |#1|)) (-15 -3050 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2239 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -2881 ((-549) (-1 (-112) |#2|) |#1|)) (-15 -2881 ((-549) |#2| |#1|)) (-15 -2881 ((-549) |#2| |#1| (-549))) (-15 -3050 (|#1| |#1| |#1|)) (-15 -2239 ((-112) |#1|)) (-15 -2049 (|#1| |#1| |#1| (-549))) (-15 -2918 (|#1| |#1|)) (-15 -2015 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2015 (|#1| |#1|)) (-15 -2409 ((-112) |#1| |#1|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -2556 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3959 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3743 (|#1| (-747) |#2|)) (-15 -2795 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2795 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2279 (|#1| |#1|)))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-4160 ((|#1| $) 48)) (-2837 ((|#1| $) 65)) (-1342 (($ $) 67)) (-3659 (((-1230) $ (-549) (-549)) 97 (|has| $ (-6 -4337)))) (-3327 (($ $ (-549)) 52 (|has| $ (-6 -4337)))) (-2239 (((-112) $) 142 (|has| |#1| (-823))) (((-112) (-1 (-112) |#1| |#1|) $) 136)) (-2015 (($ $) 146 (-12 (|has| |#1| (-823)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#1| |#1|) $) 145 (|has| $ (-6 -4337)))) (-3191 (($ $) 141 (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $) 135)) (-2850 (((-112) $ (-747)) 8)) (-2797 ((|#1| $ |#1|) 39 (|has| $ (-6 -4337)))) (-3931 (($ $ $) 56 (|has| $ (-6 -4337)))) (-1806 ((|#1| $ |#1|) 54 (|has| $ (-6 -4337)))) (-1368 ((|#1| $ |#1|) 58 (|has| $ (-6 -4337)))) (-2250 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4337))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4337))) (($ $ "rest" $) 55 (|has| $ (-6 -4337))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) 117 (|has| $ (-6 -4337))) ((|#1| $ (-549) |#1|) 86 (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) 41 (|has| $ (-6 -4337)))) (-3827 (($ (-1 (-112) |#1|) $) 129)) (-1488 (($ (-1 (-112) |#1|) $) 102 (|has| $ (-6 -4336)))) (-2827 ((|#1| $) 66)) (-3034 (($) 7 T CONST)) (-2918 (($ $) 144 (|has| $ (-6 -4337)))) (-3062 (($ $) 134)) (-3656 (($ $) 73) (($ $ (-747)) 71)) (-3469 (($ $) 131 (|has| |#1| (-1066)))) (-3675 (($ $) 99 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3546 (($ |#1| $) 130 (|has| |#1| (-1066))) (($ (-1 (-112) |#1|) $) 125)) (-3812 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4336))) (($ |#1| $) 100 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1875 ((|#1| $ (-549) |#1|) 85 (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) 87)) (-2897 (((-112) $) 83)) (-2881 (((-549) |#1| $ (-549)) 139 (|has| |#1| (-1066))) (((-549) |#1| $) 138 (|has| |#1| (-1066))) (((-549) (-1 (-112) |#1|) $) 137)) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) 50)) (-3585 (((-112) $ $) 42 (|has| |#1| (-1066)))) (-3743 (($ (-747) |#1|) 108)) (-1777 (((-112) $ (-747)) 9)) (-2807 (((-549) $) 95 (|has| (-549) (-823)))) (-2861 (($ $ $) 147 (|has| |#1| (-823)))) (-3021 (($ $ $) 132 (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) 128)) (-3050 (($ $ $) 140 (|has| |#1| (-823))) (($ (-1 (-112) |#1| |#1|) $ $) 133)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3063 (((-549) $) 94 (|has| (-549) (-823)))) (-3574 (($ $ $) 148 (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-3521 (($ |#1|) 122)) (-3942 (((-112) $ (-747)) 10)) (-3590 (((-621 |#1|) $) 45)) (-3028 (((-112) $) 49)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-3828 ((|#1| $) 70) (($ $ (-747)) 68)) (-1799 (($ $ $ (-549)) 127) (($ |#1| $ (-549)) 126)) (-2613 (($ $ $ (-549)) 116) (($ |#1| $ (-549)) 115)) (-2296 (((-621 (-549)) $) 92)) (-2284 (((-112) (-549) $) 91)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3645 ((|#1| $) 76) (($ $ (-747)) 74)) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-1943 (($ $ |#1|) 96 (|has| $ (-6 -4337)))) (-2791 (((-112) $) 84)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2478 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) 90)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1192 (-549))) 112) ((|#1| $ (-549)) 89) ((|#1| $ (-549) |#1|) 88)) (-3541 (((-549) $ $) 44)) (-2149 (($ $ (-1192 (-549))) 124) (($ $ (-549)) 123)) (-2162 (($ $ (-1192 (-549))) 114) (($ $ (-549)) 113)) (-2917 (((-112) $) 46)) (-2188 (($ $) 62)) (-1829 (($ $) 59 (|has| $ (-6 -4337)))) (-3117 (((-747) $) 63)) (-2528 (($ $) 64)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2049 (($ $ $ (-549)) 143 (|has| $ (-6 -4337)))) (-2279 (($ $) 13)) (-2843 (((-525) $) 98 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 107)) (-3859 (($ $ $) 61) (($ $ |#1|) 60)) (-1950 (($ $ $) 78) (($ |#1| $) 77) (($ (-621 $)) 110) (($ $ |#1|) 109)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) 51)) (-3605 (((-112) $ $) 43 (|has| |#1| (-1066)))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) 150 (|has| |#1| (-823)))) (-2423 (((-112) $ $) 151 (|has| |#1| (-823)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-2436 (((-112) $ $) 149 (|has| |#1| (-823)))) (-2409 (((-112) $ $) 152 (|has| |#1| (-823)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-642 |#1|) (-138) (-1179)) (T -642))
+((-3521 (*1 *1 *2) (-12 (-4 *1 (-642 *2)) (-4 *2 (-1179)))))
+(-13 (-1115 |t#1|) (-366 |t#1|) (-275 |t#1|) (-10 -8 (-15 -3521 ($ |t#1|))))
+(((-34) . T) ((-101) -1536 (|has| |#1| (-1066)) (|has| |#1| (-823))) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-823)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-275 |#1|) . T) ((-366 |#1|) . T) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-627 |#1|) . T) ((-823) |has| |#1| (-823)) ((-981 |#1|) . T) ((-1066) -1536 (|has| |#1| (-1066)) (|has| |#1| (-823))) ((-1115 |#1|) . T) ((-1179) . T) ((-1213 |#1|) . T))
+((-2310 (((-621 (-2 (|:| |particular| (-3 (-1225 |#1|) "failed")) (|:| -2619 (-621 (-1225 |#1|))))) (-621 (-621 |#1|)) (-621 (-1225 |#1|))) 22) (((-621 (-2 (|:| |particular| (-3 (-1225 |#1|) "failed")) (|:| -2619 (-621 (-1225 |#1|))))) (-665 |#1|) (-621 (-1225 |#1|))) 21) (((-2 (|:| |particular| (-3 (-1225 |#1|) "failed")) (|:| -2619 (-621 (-1225 |#1|)))) (-621 (-621 |#1|)) (-1225 |#1|)) 18) (((-2 (|:| |particular| (-3 (-1225 |#1|) "failed")) (|:| -2619 (-621 (-1225 |#1|)))) (-665 |#1|) (-1225 |#1|)) 14)) (-3121 (((-747) (-665 |#1|) (-1225 |#1|)) 30)) (-3250 (((-3 (-1225 |#1|) "failed") (-665 |#1|) (-1225 |#1|)) 24)) (-3838 (((-112) (-665 |#1|) (-1225 |#1|)) 27)))
+(((-643 |#1|) (-10 -7 (-15 -2310 ((-2 (|:| |particular| (-3 (-1225 |#1|) "failed")) (|:| -2619 (-621 (-1225 |#1|)))) (-665 |#1|) (-1225 |#1|))) (-15 -2310 ((-2 (|:| |particular| (-3 (-1225 |#1|) "failed")) (|:| -2619 (-621 (-1225 |#1|)))) (-621 (-621 |#1|)) (-1225 |#1|))) (-15 -2310 ((-621 (-2 (|:| |particular| (-3 (-1225 |#1|) "failed")) (|:| -2619 (-621 (-1225 |#1|))))) (-665 |#1|) (-621 (-1225 |#1|)))) (-15 -2310 ((-621 (-2 (|:| |particular| (-3 (-1225 |#1|) "failed")) (|:| -2619 (-621 (-1225 |#1|))))) (-621 (-621 |#1|)) (-621 (-1225 |#1|)))) (-15 -3250 ((-3 (-1225 |#1|) "failed") (-665 |#1|) (-1225 |#1|))) (-15 -3838 ((-112) (-665 |#1|) (-1225 |#1|))) (-15 -3121 ((-747) (-665 |#1|) (-1225 |#1|)))) (-356)) (T -643))
+((-3121 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *5)) (-5 *4 (-1225 *5)) (-4 *5 (-356)) (-5 *2 (-747)) (-5 *1 (-643 *5)))) (-3838 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *5)) (-5 *4 (-1225 *5)) (-4 *5 (-356)) (-5 *2 (-112)) (-5 *1 (-643 *5)))) (-3250 (*1 *2 *3 *2) (|partial| -12 (-5 *2 (-1225 *4)) (-5 *3 (-665 *4)) (-4 *4 (-356)) (-5 *1 (-643 *4)))) (-2310 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-621 *5))) (-4 *5 (-356)) (-5 *2 (-621 (-2 (|:| |particular| (-3 (-1225 *5) "failed")) (|:| -2619 (-621 (-1225 *5)))))) (-5 *1 (-643 *5)) (-5 *4 (-621 (-1225 *5))))) (-2310 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *5)) (-4 *5 (-356)) (-5 *2 (-621 (-2 (|:| |particular| (-3 (-1225 *5) "failed")) (|:| -2619 (-621 (-1225 *5)))))) (-5 *1 (-643 *5)) (-5 *4 (-621 (-1225 *5))))) (-2310 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-621 *5))) (-4 *5 (-356)) (-5 *2 (-2 (|:| |particular| (-3 (-1225 *5) "failed")) (|:| -2619 (-621 (-1225 *5))))) (-5 *1 (-643 *5)) (-5 *4 (-1225 *5)))) (-2310 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *5)) (-4 *5 (-356)) (-5 *2 (-2 (|:| |particular| (-3 (-1225 *5) "failed")) (|:| -2619 (-621 (-1225 *5))))) (-5 *1 (-643 *5)) (-5 *4 (-1225 *5)))))
+(-10 -7 (-15 -2310 ((-2 (|:| |particular| (-3 (-1225 |#1|) "failed")) (|:| -2619 (-621 (-1225 |#1|)))) (-665 |#1|) (-1225 |#1|))) (-15 -2310 ((-2 (|:| |particular| (-3 (-1225 |#1|) "failed")) (|:| -2619 (-621 (-1225 |#1|)))) (-621 (-621 |#1|)) (-1225 |#1|))) (-15 -2310 ((-621 (-2 (|:| |particular| (-3 (-1225 |#1|) "failed")) (|:| -2619 (-621 (-1225 |#1|))))) (-665 |#1|) (-621 (-1225 |#1|)))) (-15 -2310 ((-621 (-2 (|:| |particular| (-3 (-1225 |#1|) "failed")) (|:| -2619 (-621 (-1225 |#1|))))) (-621 (-621 |#1|)) (-621 (-1225 |#1|)))) (-15 -3250 ((-3 (-1225 |#1|) "failed") (-665 |#1|) (-1225 |#1|))) (-15 -3838 ((-112) (-665 |#1|) (-1225 |#1|))) (-15 -3121 ((-747) (-665 |#1|) (-1225 |#1|))))
+((-2310 (((-621 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2619 (-621 |#3|)))) |#4| (-621 |#3|)) 47) (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2619 (-621 |#3|))) |#4| |#3|) 45)) (-3121 (((-747) |#4| |#3|) 17)) (-3250 (((-3 |#3| "failed") |#4| |#3|) 20)) (-3838 (((-112) |#4| |#3|) 13)))
+(((-644 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2310 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2619 (-621 |#3|))) |#4| |#3|)) (-15 -2310 ((-621 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2619 (-621 |#3|)))) |#4| (-621 |#3|))) (-15 -3250 ((-3 |#3| "failed") |#4| |#3|)) (-15 -3838 ((-112) |#4| |#3|)) (-15 -3121 ((-747) |#4| |#3|))) (-356) (-13 (-366 |#1|) (-10 -7 (-6 -4337))) (-13 (-366 |#1|) (-10 -7 (-6 -4337))) (-663 |#1| |#2| |#3|)) (T -644))
+((-3121 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-4 *6 (-13 (-366 *5) (-10 -7 (-6 -4337)))) (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4337)))) (-5 *2 (-747)) (-5 *1 (-644 *5 *6 *4 *3)) (-4 *3 (-663 *5 *6 *4)))) (-3838 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-4 *6 (-13 (-366 *5) (-10 -7 (-6 -4337)))) (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4337)))) (-5 *2 (-112)) (-5 *1 (-644 *5 *6 *4 *3)) (-4 *3 (-663 *5 *6 *4)))) (-3250 (*1 *2 *3 *2) (|partial| -12 (-4 *4 (-356)) (-4 *5 (-13 (-366 *4) (-10 -7 (-6 -4337)))) (-4 *2 (-13 (-366 *4) (-10 -7 (-6 -4337)))) (-5 *1 (-644 *4 *5 *2 *3)) (-4 *3 (-663 *4 *5 *2)))) (-2310 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-4 *6 (-13 (-366 *5) (-10 -7 (-6 -4337)))) (-4 *7 (-13 (-366 *5) (-10 -7 (-6 -4337)))) (-5 *2 (-621 (-2 (|:| |particular| (-3 *7 "failed")) (|:| -2619 (-621 *7))))) (-5 *1 (-644 *5 *6 *7 *3)) (-5 *4 (-621 *7)) (-4 *3 (-663 *5 *6 *7)))) (-2310 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-4 *6 (-13 (-366 *5) (-10 -7 (-6 -4337)))) (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4337)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2619 (-621 *4)))) (-5 *1 (-644 *5 *6 *4 *3)) (-4 *3 (-663 *5 *6 *4)))))
+(-10 -7 (-15 -2310 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2619 (-621 |#3|))) |#4| |#3|)) (-15 -2310 ((-621 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2619 (-621 |#3|)))) |#4| (-621 |#3|))) (-15 -3250 ((-3 |#3| "failed") |#4| |#3|)) (-15 -3838 ((-112) |#4| |#3|)) (-15 -3121 ((-747) |#4| |#3|)))
+((-2953 (((-2 (|:| |particular| (-3 (-1225 (-400 |#4|)) "failed")) (|:| -2619 (-621 (-1225 (-400 |#4|))))) (-621 |#4|) (-621 |#3|)) 45)))
+(((-645 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2953 ((-2 (|:| |particular| (-3 (-1225 (-400 |#4|)) "failed")) (|:| -2619 (-621 (-1225 (-400 |#4|))))) (-621 |#4|) (-621 |#3|)))) (-541) (-769) (-823) (-920 |#1| |#2| |#3|)) (T -645))
+((-2953 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *7)) (-4 *7 (-823)) (-4 *8 (-920 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-5 *2 (-2 (|:| |particular| (-3 (-1225 (-400 *8)) "failed")) (|:| -2619 (-621 (-1225 (-400 *8)))))) (-5 *1 (-645 *5 *6 *7 *8)))))
+(-10 -7 (-15 -2953 ((-2 (|:| |particular| (-3 (-1225 (-400 |#4|)) "failed")) (|:| -2619 (-621 (-1225 (-400 |#4|))))) (-621 |#4|) (-621 |#3|))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-1951 (((-3 $ "failed")) NIL (|has| |#2| (-541)))) (-2904 ((|#2| $) NIL)) (-1831 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-2893 (((-1225 (-665 |#2|))) NIL) (((-1225 (-665 |#2|)) (-1225 $)) NIL)) (-1295 (((-112) $) NIL)) (-3349 (((-1225 $)) 37)) (-2850 (((-112) $ (-747)) NIL)) (-2411 (($ |#2|) NIL)) (-3034 (($) NIL T CONST)) (-3474 (($ $) NIL (|has| |#2| (-300)))) (-3437 (((-234 |#1| |#2|) $ (-549)) NIL)) (-1760 (((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed")) NIL (|has| |#2| (-541)))) (-3372 (((-3 $ "failed")) NIL (|has| |#2| (-541)))) (-1657 (((-665 |#2|)) NIL) (((-665 |#2|) (-1225 $)) NIL)) (-2872 ((|#2| $) NIL)) (-1785 (((-665 |#2|) $) NIL) (((-665 |#2|) $ (-1225 $)) NIL)) (-2013 (((-3 $ "failed") $) NIL (|has| |#2| (-541)))) (-3781 (((-1138 (-923 |#2|))) NIL (|has| |#2| (-356)))) (-2039 (($ $ (-892)) NIL)) (-4301 ((|#2| $) NIL)) (-1442 (((-1138 |#2|) $) NIL (|has| |#2| (-541)))) (-2733 ((|#2|) NIL) ((|#2| (-1225 $)) NIL)) (-3163 (((-1138 |#2|) $) NIL)) (-2634 (((-112)) NIL)) (-2712 (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-3 |#2| "failed") $) NIL)) (-2657 (((-549) $) NIL (|has| |#2| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-400 (-549))))) ((|#2| $) NIL)) (-2397 (($ (-1225 |#2|)) NIL) (($ (-1225 |#2|) (-1225 $)) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) NIL) (((-665 |#2|) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3121 (((-747) $) NIL (|has| |#2| (-541))) (((-892)) 38)) (-1807 ((|#2| $ (-549) (-549)) NIL)) (-2639 (((-112)) NIL)) (-3764 (($ $ (-892)) NIL)) (-2987 (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-2297 (((-112) $) NIL)) (-4303 (((-747) $) NIL (|has| |#2| (-541)))) (-3290 (((-621 (-234 |#1| |#2|)) $) NIL (|has| |#2| (-541)))) (-2140 (((-747) $) NIL)) (-2915 (((-112)) NIL)) (-2153 (((-747) $) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-4239 ((|#2| $) NIL (|has| |#2| (-6 (-4338 "*"))))) (-3057 (((-549) $) NIL)) (-3861 (((-549) $) NIL)) (-3698 (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-1766 (((-549) $) NIL)) (-2813 (((-549) $) NIL)) (-3944 (($ (-621 (-621 |#2|))) NIL)) (-1864 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-1987 (((-621 (-621 |#2|)) $) NIL)) (-1670 (((-112)) NIL)) (-4034 (((-112)) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-4001 (((-3 (-2 (|:| |particular| $) (|:| -2619 (-621 $))) "failed")) NIL (|has| |#2| (-541)))) (-3583 (((-3 $ "failed")) NIL (|has| |#2| (-541)))) (-2686 (((-665 |#2|)) NIL) (((-665 |#2|) (-1225 $)) NIL)) (-3458 ((|#2| $) NIL)) (-3364 (((-665 |#2|) $) NIL) (((-665 |#2|) $ (-1225 $)) NIL)) (-1540 (((-3 $ "failed") $) NIL (|has| |#2| (-541)))) (-4128 (((-1138 (-923 |#2|))) NIL (|has| |#2| (-356)))) (-4304 (($ $ (-892)) NIL)) (-3432 ((|#2| $) NIL)) (-2085 (((-1138 |#2|) $) NIL (|has| |#2| (-541)))) (-1405 ((|#2|) NIL) ((|#2| (-1225 $)) NIL)) (-4257 (((-1138 |#2|) $) NIL)) (-4115 (((-112)) NIL)) (-3441 (((-1124) $) NIL)) (-3775 (((-112)) NIL)) (-3875 (((-112)) NIL)) (-4055 (((-112)) NIL)) (-1299 (((-3 $ "failed") $) NIL (|has| |#2| (-356)))) (-3988 (((-1086) $) NIL)) (-2924 (((-112)) NIL)) (-2040 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-541)))) (-3360 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#2| $ (-549) (-549) |#2|) NIL) ((|#2| $ (-549) (-549)) 22) ((|#2| $ (-549)) NIL)) (-3455 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1142)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-747)) NIL (|has| |#2| (-227))) (($ $) NIL (|has| |#2| (-227)))) (-3354 ((|#2| $) NIL)) (-2874 (($ (-621 |#2|)) NIL)) (-2839 (((-112) $) NIL)) (-2267 (((-234 |#1| |#2|) $) NIL)) (-2842 ((|#2| $) NIL (|has| |#2| (-6 (-4338 "*"))))) (-3997 (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-2279 (($ $) NIL)) (-1981 (((-665 |#2|) (-1225 $)) NIL) (((-1225 |#2|) $) NIL) (((-665 |#2|) (-1225 $) (-1225 $)) NIL) (((-1225 |#2|) $ (-1225 $)) 25)) (-2843 (($ (-1225 |#2|)) NIL) (((-1225 |#2|) $) NIL)) (-3166 (((-621 (-923 |#2|))) NIL) (((-621 (-923 |#2|)) (-1225 $)) NIL)) (-3870 (($ $ $) NIL)) (-3083 (((-112)) NIL)) (-1476 (((-234 |#1| |#2|) $ (-549)) NIL)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ (-400 (-549))) NIL (|has| |#2| (-1009 (-400 (-549))))) (($ |#2|) NIL) (((-665 |#2|) $) NIL)) (-2371 (((-747)) NIL)) (-2619 (((-1225 $)) 36)) (-3445 (((-621 (-1225 |#2|))) NIL (|has| |#2| (-541)))) (-3515 (($ $ $ $) NIL)) (-3011 (((-112)) NIL)) (-3593 (($ (-665 |#2|) $) NIL)) (-3025 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-3752 (((-112) $) NIL)) (-3485 (($ $ $) NIL)) (-3338 (((-112)) NIL)) (-2959 (((-112)) NIL)) (-1379 (((-112)) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1142)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-747)) NIL (|has| |#2| (-227))) (($ $) NIL (|has| |#2| (-227)))) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#2| (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-234 |#1| |#2|) $ (-234 |#1| |#2|)) NIL) (((-234 |#1| |#2|) (-234 |#1| |#2|) $) NIL)) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-646 |#1| |#2|) (-13 (-1089 |#1| |#2| (-234 |#1| |#2|) (-234 |#1| |#2|)) (-593 (-665 |#2|)) (-410 |#2|)) (-892) (-170)) (T -646))
+NIL
+(-13 (-1089 |#1| |#2| (-234 |#1| |#2|) (-234 |#1| |#2|)) (-593 (-665 |#2|)) (-410 |#2|))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2292 (((-621 (-1101)) $) 10)) (-3845 (((-834) $) 18) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-647) (-13 (-1049) (-10 -8 (-15 -2292 ((-621 (-1101)) $))))) (T -647))
+((-2292 (*1 *2 *1) (-12 (-5 *2 (-621 (-1101))) (-5 *1 (-647)))))
+(-13 (-1049) (-10 -8 (-15 -2292 ((-621 (-1101)) $))))
+((-3832 (((-112) $ $) NIL)) (-3302 (((-621 |#1|) $) NIL)) (-3847 (($ $) 52)) (-1998 (((-112) $) NIL)) (-2712 (((-3 |#1| "failed") $) NIL)) (-2657 ((|#1| $) NIL)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-1952 (((-3 $ "failed") (-795 |#1|)) 23)) (-1685 (((-112) (-795 |#1|)) 15)) (-1601 (($ (-795 |#1|)) 24)) (-2910 (((-112) $ $) 30)) (-4210 (((-892) $) 37)) (-3837 (($ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2119 (((-621 $) (-795 |#1|)) 17)) (-3845 (((-834) $) 43) (($ |#1|) 34) (((-795 |#1|) $) 39) (((-653 |#1|) $) 44)) (-3213 (((-58 (-621 $)) (-621 |#1|) (-892)) 57)) (-1438 (((-621 $) (-621 |#1|) (-892)) 60)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 53)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 38)))
+(((-648 |#1|) (-13 (-823) (-1009 |#1|) (-10 -8 (-15 -1998 ((-112) $)) (-15 -3837 ($ $)) (-15 -3847 ($ $)) (-15 -4210 ((-892) $)) (-15 -2910 ((-112) $ $)) (-15 -3845 ((-795 |#1|) $)) (-15 -3845 ((-653 |#1|) $)) (-15 -2119 ((-621 $) (-795 |#1|))) (-15 -1685 ((-112) (-795 |#1|))) (-15 -1601 ($ (-795 |#1|))) (-15 -1952 ((-3 $ "failed") (-795 |#1|))) (-15 -3302 ((-621 |#1|) $)) (-15 -3213 ((-58 (-621 $)) (-621 |#1|) (-892))) (-15 -1438 ((-621 $) (-621 |#1|) (-892))))) (-823)) (T -648))
+((-1998 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-648 *3)) (-4 *3 (-823)))) (-3837 (*1 *1 *1) (-12 (-5 *1 (-648 *2)) (-4 *2 (-823)))) (-3847 (*1 *1 *1) (-12 (-5 *1 (-648 *2)) (-4 *2 (-823)))) (-4210 (*1 *2 *1) (-12 (-5 *2 (-892)) (-5 *1 (-648 *3)) (-4 *3 (-823)))) (-2910 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-648 *3)) (-4 *3 (-823)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-795 *3)) (-5 *1 (-648 *3)) (-4 *3 (-823)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-653 *3)) (-5 *1 (-648 *3)) (-4 *3 (-823)))) (-2119 (*1 *2 *3) (-12 (-5 *3 (-795 *4)) (-4 *4 (-823)) (-5 *2 (-621 (-648 *4))) (-5 *1 (-648 *4)))) (-1685 (*1 *2 *3) (-12 (-5 *3 (-795 *4)) (-4 *4 (-823)) (-5 *2 (-112)) (-5 *1 (-648 *4)))) (-1601 (*1 *1 *2) (-12 (-5 *2 (-795 *3)) (-4 *3 (-823)) (-5 *1 (-648 *3)))) (-1952 (*1 *1 *2) (|partial| -12 (-5 *2 (-795 *3)) (-4 *3 (-823)) (-5 *1 (-648 *3)))) (-3302 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-648 *3)) (-4 *3 (-823)))) (-3213 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *5)) (-5 *4 (-892)) (-4 *5 (-823)) (-5 *2 (-58 (-621 (-648 *5)))) (-5 *1 (-648 *5)))) (-1438 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *5)) (-5 *4 (-892)) (-4 *5 (-823)) (-5 *2 (-621 (-648 *5))) (-5 *1 (-648 *5)))))
+(-13 (-823) (-1009 |#1|) (-10 -8 (-15 -1998 ((-112) $)) (-15 -3837 ($ $)) (-15 -3847 ($ $)) (-15 -4210 ((-892) $)) (-15 -2910 ((-112) $ $)) (-15 -3845 ((-795 |#1|) $)) (-15 -3845 ((-653 |#1|) $)) (-15 -2119 ((-621 $) (-795 |#1|))) (-15 -1685 ((-112) (-795 |#1|))) (-15 -1601 ($ (-795 |#1|))) (-15 -1952 ((-3 $ "failed") (-795 |#1|))) (-15 -3302 ((-621 |#1|) $)) (-15 -3213 ((-58 (-621 $)) (-621 |#1|) (-892))) (-15 -1438 ((-621 $) (-621 |#1|) (-892)))))
+((-4160 ((|#2| $) 76)) (-1342 (($ $) 96)) (-2850 (((-112) $ (-747)) 26)) (-3656 (($ $) 85) (($ $ (-747)) 88)) (-2897 (((-112) $) 97)) (-3747 (((-621 $) $) 72)) (-3585 (((-112) $ $) 71)) (-1777 (((-112) $ (-747)) 24)) (-2807 (((-549) $) 46)) (-3063 (((-549) $) 45)) (-3942 (((-112) $ (-747)) 22)) (-3028 (((-112) $) 74)) (-3828 ((|#2| $) 89) (($ $ (-747)) 92)) (-2613 (($ $ $ (-549)) 62) (($ |#2| $ (-549)) 61)) (-2296 (((-621 (-549)) $) 44)) (-2284 (((-112) (-549) $) 42)) (-3645 ((|#2| $) NIL) (($ $ (-747)) 84)) (-3796 (($ $ (-549)) 100)) (-2791 (((-112) $) 99)) (-3360 (((-112) (-1 (-112) |#2|) $) 32)) (-3347 (((-621 |#2|) $) 33)) (-3339 ((|#2| $ "value") NIL) ((|#2| $ "first") 83) (($ $ "rest") 87) ((|#2| $ "last") 95) (($ $ (-1192 (-549))) 58) ((|#2| $ (-549)) 40) ((|#2| $ (-549) |#2|) 41)) (-3541 (((-549) $ $) 70)) (-2162 (($ $ (-1192 (-549))) 57) (($ $ (-549)) 51)) (-2917 (((-112) $) 66)) (-2188 (($ $) 81)) (-3117 (((-747) $) 80)) (-2528 (($ $) 79)) (-3853 (($ (-621 |#2|)) 37)) (-3958 (($ $) 101)) (-2095 (((-621 $) $) 69)) (-3605 (((-112) $ $) 68)) (-3025 (((-112) (-1 (-112) |#2|) $) 31)) (-2387 (((-112) $ $) 18)) (-3774 (((-747) $) 29)))
+(((-649 |#1| |#2|) (-10 -8 (-15 -3958 (|#1| |#1|)) (-15 -3796 (|#1| |#1| (-549))) (-15 -2897 ((-112) |#1|)) (-15 -2791 ((-112) |#1|)) (-15 -3339 (|#2| |#1| (-549) |#2|)) (-15 -3339 (|#2| |#1| (-549))) (-15 -3347 ((-621 |#2|) |#1|)) (-15 -2284 ((-112) (-549) |#1|)) (-15 -2296 ((-621 (-549)) |#1|)) (-15 -3063 ((-549) |#1|)) (-15 -2807 ((-549) |#1|)) (-15 -3853 (|#1| (-621 |#2|))) (-15 -3339 (|#1| |#1| (-1192 (-549)))) (-15 -2162 (|#1| |#1| (-549))) (-15 -2162 (|#1| |#1| (-1192 (-549)))) (-15 -2613 (|#1| |#2| |#1| (-549))) (-15 -2613 (|#1| |#1| |#1| (-549))) (-15 -2188 (|#1| |#1|)) (-15 -3117 ((-747) |#1|)) (-15 -2528 (|#1| |#1|)) (-15 -1342 (|#1| |#1|)) (-15 -3828 (|#1| |#1| (-747))) (-15 -3339 (|#2| |#1| "last")) (-15 -3828 (|#2| |#1|)) (-15 -3656 (|#1| |#1| (-747))) (-15 -3339 (|#1| |#1| "rest")) (-15 -3656 (|#1| |#1|)) (-15 -3645 (|#1| |#1| (-747))) (-15 -3339 (|#2| |#1| "first")) (-15 -3645 (|#2| |#1|)) (-15 -3585 ((-112) |#1| |#1|)) (-15 -3605 ((-112) |#1| |#1|)) (-15 -3541 ((-549) |#1| |#1|)) (-15 -2917 ((-112) |#1|)) (-15 -3339 (|#2| |#1| "value")) (-15 -4160 (|#2| |#1|)) (-15 -3028 ((-112) |#1|)) (-15 -3747 ((-621 |#1|) |#1|)) (-15 -2095 ((-621 |#1|) |#1|)) (-15 -2387 ((-112) |#1| |#1|)) (-15 -3360 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3025 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3774 ((-747) |#1|)) (-15 -2850 ((-112) |#1| (-747))) (-15 -1777 ((-112) |#1| (-747))) (-15 -3942 ((-112) |#1| (-747)))) (-650 |#2|) (-1179)) (T -649))
+NIL
+(-10 -8 (-15 -3958 (|#1| |#1|)) (-15 -3796 (|#1| |#1| (-549))) (-15 -2897 ((-112) |#1|)) (-15 -2791 ((-112) |#1|)) (-15 -3339 (|#2| |#1| (-549) |#2|)) (-15 -3339 (|#2| |#1| (-549))) (-15 -3347 ((-621 |#2|) |#1|)) (-15 -2284 ((-112) (-549) |#1|)) (-15 -2296 ((-621 (-549)) |#1|)) (-15 -3063 ((-549) |#1|)) (-15 -2807 ((-549) |#1|)) (-15 -3853 (|#1| (-621 |#2|))) (-15 -3339 (|#1| |#1| (-1192 (-549)))) (-15 -2162 (|#1| |#1| (-549))) (-15 -2162 (|#1| |#1| (-1192 (-549)))) (-15 -2613 (|#1| |#2| |#1| (-549))) (-15 -2613 (|#1| |#1| |#1| (-549))) (-15 -2188 (|#1| |#1|)) (-15 -3117 ((-747) |#1|)) (-15 -2528 (|#1| |#1|)) (-15 -1342 (|#1| |#1|)) (-15 -3828 (|#1| |#1| (-747))) (-15 -3339 (|#2| |#1| "last")) (-15 -3828 (|#2| |#1|)) (-15 -3656 (|#1| |#1| (-747))) (-15 -3339 (|#1| |#1| "rest")) (-15 -3656 (|#1| |#1|)) (-15 -3645 (|#1| |#1| (-747))) (-15 -3339 (|#2| |#1| "first")) (-15 -3645 (|#2| |#1|)) (-15 -3585 ((-112) |#1| |#1|)) (-15 -3605 ((-112) |#1| |#1|)) (-15 -3541 ((-549) |#1| |#1|)) (-15 -2917 ((-112) |#1|)) (-15 -3339 (|#2| |#1| "value")) (-15 -4160 (|#2| |#1|)) (-15 -3028 ((-112) |#1|)) (-15 -3747 ((-621 |#1|) |#1|)) (-15 -2095 ((-621 |#1|) |#1|)) (-15 -2387 ((-112) |#1| |#1|)) (-15 -3360 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3025 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3774 ((-747) |#1|)) (-15 -2850 ((-112) |#1| (-747))) (-15 -1777 ((-112) |#1| (-747))) (-15 -3942 ((-112) |#1| (-747))))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-4160 ((|#1| $) 48)) (-2837 ((|#1| $) 65)) (-1342 (($ $) 67)) (-3659 (((-1230) $ (-549) (-549)) 97 (|has| $ (-6 -4337)))) (-3327 (($ $ (-549)) 52 (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) 8)) (-2797 ((|#1| $ |#1|) 39 (|has| $ (-6 -4337)))) (-3931 (($ $ $) 56 (|has| $ (-6 -4337)))) (-1806 ((|#1| $ |#1|) 54 (|has| $ (-6 -4337)))) (-1368 ((|#1| $ |#1|) 58 (|has| $ (-6 -4337)))) (-2250 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4337))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4337))) (($ $ "rest" $) 55 (|has| $ (-6 -4337))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) 117 (|has| $ (-6 -4337))) ((|#1| $ (-549) |#1|) 86 (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) 41 (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) |#1|) $) 102)) (-2827 ((|#1| $) 66)) (-3034 (($) 7 T CONST)) (-3187 (($ $) 124)) (-3656 (($ $) 73) (($ $ (-747)) 71)) (-3675 (($ $) 99 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ |#1| $) 100 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#1|) $) 103)) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1875 ((|#1| $ (-549) |#1|) 85 (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) 87)) (-2897 (((-112) $) 83)) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-1336 (((-747) $) 123)) (-3747 (((-621 $) $) 50)) (-3585 (((-112) $ $) 42 (|has| |#1| (-1066)))) (-3743 (($ (-747) |#1|) 108)) (-1777 (((-112) $ (-747)) 9)) (-2807 (((-549) $) 95 (|has| (-549) (-823)))) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3063 (((-549) $) 94 (|has| (-549) (-823)))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-3942 (((-112) $ (-747)) 10)) (-3590 (((-621 |#1|) $) 45)) (-3028 (((-112) $) 49)) (-3065 (($ $) 126)) (-3266 (((-112) $) 127)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-3828 ((|#1| $) 70) (($ $ (-747)) 68)) (-2613 (($ $ $ (-549)) 116) (($ |#1| $ (-549)) 115)) (-2296 (((-621 (-549)) $) 92)) (-2284 (((-112) (-549) $) 91)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-1461 ((|#1| $) 125)) (-3645 ((|#1| $) 76) (($ $ (-747)) 74)) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-1943 (($ $ |#1|) 96 (|has| $ (-6 -4337)))) (-3796 (($ $ (-549)) 122)) (-2791 (((-112) $) 84)) (-3783 (((-112) $) 128)) (-4161 (((-112) $) 129)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2478 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) 90)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1192 (-549))) 112) ((|#1| $ (-549)) 89) ((|#1| $ (-549) |#1|) 88)) (-3541 (((-549) $ $) 44)) (-2162 (($ $ (-1192 (-549))) 114) (($ $ (-549)) 113)) (-2917 (((-112) $) 46)) (-2188 (($ $) 62)) (-1829 (($ $) 59 (|has| $ (-6 -4337)))) (-3117 (((-747) $) 63)) (-2528 (($ $) 64)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-2843 (((-525) $) 98 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 107)) (-3859 (($ $ $) 61 (|has| $ (-6 -4337))) (($ $ |#1|) 60 (|has| $ (-6 -4337)))) (-1950 (($ $ $) 78) (($ |#1| $) 77) (($ (-621 $)) 110) (($ $ |#1|) 109)) (-3958 (($ $) 121)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) 51)) (-3605 (((-112) $ $) 43 (|has| |#1| (-1066)))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-650 |#1|) (-138) (-1179)) (T -650))
+((-3812 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-650 *3)) (-4 *3 (-1179)))) (-1488 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-650 *3)) (-4 *3 (-1179)))) (-4161 (*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-1179)) (-5 *2 (-112)))) (-3783 (*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-1179)) (-5 *2 (-112)))) (-3266 (*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-1179)) (-5 *2 (-112)))) (-3065 (*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1179)))) (-1461 (*1 *2 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1179)))) (-3187 (*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1179)))) (-1336 (*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-1179)) (-5 *2 (-747)))) (-3796 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-650 *3)) (-4 *3 (-1179)))) (-3958 (*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1179)))))
+(-13 (-1115 |t#1|) (-10 -8 (-15 -3812 ($ (-1 (-112) |t#1|) $)) (-15 -1488 ($ (-1 (-112) |t#1|) $)) (-15 -4161 ((-112) $)) (-15 -3783 ((-112) $)) (-15 -3266 ((-112) $)) (-15 -3065 ($ $)) (-15 -1461 (|t#1| $)) (-15 -3187 ($ $)) (-15 -1336 ((-747) $)) (-15 -3796 ($ $ (-549))) (-15 -3958 ($ $))))
+(((-34) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-627 |#1|) . T) ((-981 |#1|) . T) ((-1066) |has| |#1| (-1066)) ((-1115 |#1|) . T) ((-1179) . T) ((-1213 |#1|) . T))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2599 (($ (-747) (-747) (-747)) 33 (|has| |#1| (-1018)))) (-2850 (((-112) $ (-747)) NIL)) (-1973 ((|#1| $ (-747) (-747) (-747) |#1|) 27)) (-3034 (($) NIL T CONST)) (-3439 (($ $ $) 37 (|has| |#1| (-1018)))) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1687 (((-1225 (-747)) $) 9)) (-2117 (($ (-1142) $ $) 22)) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-2849 (($ (-747)) 35 (|has| |#1| (-1018)))) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#1| $ (-747) (-747) (-747)) 25)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) NIL)) (-3853 (($ (-621 (-621 (-621 |#1|)))) 44)) (-3845 (($ (-929 (-929 (-929 |#1|)))) 15) (((-929 (-929 (-929 |#1|))) $) 12) (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-651 |#1|) (-13 (-481 |#1|) (-10 -8 (IF (|has| |#1| (-1018)) (PROGN (-15 -2599 ($ (-747) (-747) (-747))) (-15 -2849 ($ (-747))) (-15 -3439 ($ $ $))) |%noBranch|) (-15 -3853 ($ (-621 (-621 (-621 |#1|))))) (-15 -3339 (|#1| $ (-747) (-747) (-747))) (-15 -1973 (|#1| $ (-747) (-747) (-747) |#1|)) (-15 -3845 ($ (-929 (-929 (-929 |#1|))))) (-15 -3845 ((-929 (-929 (-929 |#1|))) $)) (-15 -2117 ($ (-1142) $ $)) (-15 -1687 ((-1225 (-747)) $)))) (-1066)) (T -651))
+((-2599 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-747)) (-5 *1 (-651 *3)) (-4 *3 (-1018)) (-4 *3 (-1066)))) (-2849 (*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-651 *3)) (-4 *3 (-1018)) (-4 *3 (-1066)))) (-3439 (*1 *1 *1 *1) (-12 (-5 *1 (-651 *2)) (-4 *2 (-1018)) (-4 *2 (-1066)))) (-3853 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 (-621 *3)))) (-4 *3 (-1066)) (-5 *1 (-651 *3)))) (-3339 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-747)) (-5 *1 (-651 *2)) (-4 *2 (-1066)))) (-1973 (*1 *2 *1 *3 *3 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-651 *2)) (-4 *2 (-1066)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-929 (-929 (-929 *3)))) (-4 *3 (-1066)) (-5 *1 (-651 *3)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-929 (-929 (-929 *3)))) (-5 *1 (-651 *3)) (-4 *3 (-1066)))) (-2117 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-651 *3)) (-4 *3 (-1066)))) (-1687 (*1 *2 *1) (-12 (-5 *2 (-1225 (-747))) (-5 *1 (-651 *3)) (-4 *3 (-1066)))))
+(-13 (-481 |#1|) (-10 -8 (IF (|has| |#1| (-1018)) (PROGN (-15 -2599 ($ (-747) (-747) (-747))) (-15 -2849 ($ (-747))) (-15 -3439 ($ $ $))) |%noBranch|) (-15 -3853 ($ (-621 (-621 (-621 |#1|))))) (-15 -3339 (|#1| $ (-747) (-747) (-747))) (-15 -1973 (|#1| $ (-747) (-747) (-747) |#1|)) (-15 -3845 ($ (-929 (-929 (-929 |#1|))))) (-15 -3845 ((-929 (-929 (-929 |#1|))) $)) (-15 -2117 ($ (-1142) $ $)) (-15 -1687 ((-1225 (-747)) $))))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-2532 (((-475) $) 10)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 21) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2492 (((-1101) $) 12)) (-2387 (((-112) $ $) NIL)))
+(((-652) (-13 (-1049) (-10 -8 (-15 -2532 ((-475) $)) (-15 -2492 ((-1101) $))))) (T -652))
+((-2532 (*1 *2 *1) (-12 (-5 *2 (-475)) (-5 *1 (-652)))) (-2492 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-652)))))
+(-13 (-1049) (-10 -8 (-15 -2532 ((-475) $)) (-15 -2492 ((-1101) $))))
+((-3832 (((-112) $ $) NIL)) (-3302 (((-621 |#1|) $) 14)) (-3847 (($ $) 18)) (-1998 (((-112) $) 19)) (-2712 (((-3 |#1| "failed") $) 22)) (-2657 ((|#1| $) 20)) (-3656 (($ $) 36)) (-3626 (($ $) 24)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-2910 (((-112) $ $) 42)) (-4210 (((-892) $) 38)) (-3837 (($ $) 17)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3645 ((|#1| $) 35)) (-3845 (((-834) $) 31) (($ |#1|) 23) (((-795 |#1|) $) 27)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 12)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 40)) (* (($ $ $) 34)))
+(((-653 |#1|) (-13 (-823) (-1009 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3845 ((-795 |#1|) $)) (-15 -3645 (|#1| $)) (-15 -3837 ($ $)) (-15 -4210 ((-892) $)) (-15 -2910 ((-112) $ $)) (-15 -3626 ($ $)) (-15 -3656 ($ $)) (-15 -1998 ((-112) $)) (-15 -3847 ($ $)) (-15 -3302 ((-621 |#1|) $)))) (-823)) (T -653))
+((* (*1 *1 *1 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-795 *3)) (-5 *1 (-653 *3)) (-4 *3 (-823)))) (-3645 (*1 *2 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823)))) (-3837 (*1 *1 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823)))) (-4210 (*1 *2 *1) (-12 (-5 *2 (-892)) (-5 *1 (-653 *3)) (-4 *3 (-823)))) (-2910 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-653 *3)) (-4 *3 (-823)))) (-3626 (*1 *1 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823)))) (-3656 (*1 *1 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823)))) (-1998 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-653 *3)) (-4 *3 (-823)))) (-3847 (*1 *1 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823)))) (-3302 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-653 *3)) (-4 *3 (-823)))))
+(-13 (-823) (-1009 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3845 ((-795 |#1|) $)) (-15 -3645 (|#1| $)) (-15 -3837 ($ $)) (-15 -4210 ((-892) $)) (-15 -2910 ((-112) $ $)) (-15 -3626 ($ $)) (-15 -3656 ($ $)) (-15 -1998 ((-112) $)) (-15 -3847 ($ $)) (-15 -3302 ((-621 |#1|) $))))
+((-4209 ((|#1| (-1 |#1| (-747) |#1|) (-747) |#1|) 11)) (-2663 ((|#1| (-1 |#1| |#1|) (-747) |#1|) 9)))
+(((-654 |#1|) (-10 -7 (-15 -2663 (|#1| (-1 |#1| |#1|) (-747) |#1|)) (-15 -4209 (|#1| (-1 |#1| (-747) |#1|) (-747) |#1|))) (-1066)) (T -654))
+((-4209 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 (-747) *2)) (-5 *4 (-747)) (-4 *2 (-1066)) (-5 *1 (-654 *2)))) (-2663 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-747)) (-4 *2 (-1066)) (-5 *1 (-654 *2)))))
+(-10 -7 (-15 -2663 (|#1| (-1 |#1| |#1|) (-747) |#1|)) (-15 -4209 (|#1| (-1 |#1| (-747) |#1|) (-747) |#1|)))
+((-3566 ((|#2| |#1| |#2|) 9)) (-3553 ((|#1| |#1| |#2|) 8)))
+(((-655 |#1| |#2|) (-10 -7 (-15 -3553 (|#1| |#1| |#2|)) (-15 -3566 (|#2| |#1| |#2|))) (-1066) (-1066)) (T -655))
+((-3566 (*1 *2 *3 *2) (-12 (-5 *1 (-655 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1066)))) (-3553 (*1 *2 *2 *3) (-12 (-5 *1 (-655 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066)))))
+(-10 -7 (-15 -3553 (|#1| |#1| |#2|)) (-15 -3566 (|#2| |#1| |#2|)))
+((-3772 ((|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|) 11)))
+(((-656 |#1| |#2| |#3|) (-10 -7 (-15 -3772 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|))) (-1066) (-1066) (-1066)) (T -656))
+((-3772 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *2 (-1066)) (-5 *1 (-656 *5 *6 *2)))))
+(-10 -7 (-15 -3772 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|)))
+((-3832 (((-112) $ $) NIL)) (-2098 (((-1178) $) 20)) (-3221 (((-621 (-1178)) $) 18)) (-3558 (($ (-621 (-1178)) (-1178)) 13)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 29) (((-1147) $) NIL) (($ (-1147)) NIL) (((-1178) $) 21) (($ (-1084)) 10)) (-2387 (((-112) $ $) NIL)))
+(((-657) (-13 (-1049) (-593 (-1178)) (-10 -8 (-15 -3845 ($ (-1084))) (-15 -3558 ($ (-621 (-1178)) (-1178))) (-15 -3221 ((-621 (-1178)) $)) (-15 -2098 ((-1178) $))))) (T -657))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1084)) (-5 *1 (-657)))) (-3558 (*1 *1 *2 *3) (-12 (-5 *2 (-621 (-1178))) (-5 *3 (-1178)) (-5 *1 (-657)))) (-3221 (*1 *2 *1) (-12 (-5 *2 (-621 (-1178))) (-5 *1 (-657)))) (-2098 (*1 *2 *1) (-12 (-5 *2 (-1178)) (-5 *1 (-657)))))
+(-13 (-1049) (-593 (-1178)) (-10 -8 (-15 -3845 ($ (-1084))) (-15 -3558 ($ (-621 (-1178)) (-1178))) (-15 -3221 ((-621 (-1178)) $)) (-15 -2098 ((-1178) $))))
+((-4209 (((-1 |#1| (-747) |#1|) (-1 |#1| (-747) |#1|)) 23)) (-2211 (((-1 |#1|) |#1|) 8)) (-3713 ((|#1| |#1|) 16)) (-3168 (((-621 |#1|) (-1 (-621 |#1|) (-621 |#1|)) (-549)) 15) ((|#1| (-1 |#1| |#1|)) 11)) (-3845 (((-1 |#1|) |#1|) 9)) (** (((-1 |#1| |#1|) (-1 |#1| |#1|) (-747)) 20)))
+(((-658 |#1|) (-10 -7 (-15 -2211 ((-1 |#1|) |#1|)) (-15 -3845 ((-1 |#1|) |#1|)) (-15 -3168 (|#1| (-1 |#1| |#1|))) (-15 -3168 ((-621 |#1|) (-1 (-621 |#1|) (-621 |#1|)) (-549))) (-15 -3713 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-747))) (-15 -4209 ((-1 |#1| (-747) |#1|) (-1 |#1| (-747) |#1|)))) (-1066)) (T -658))
+((-4209 (*1 *2 *2) (-12 (-5 *2 (-1 *3 (-747) *3)) (-4 *3 (-1066)) (-5 *1 (-658 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-747)) (-4 *4 (-1066)) (-5 *1 (-658 *4)))) (-3713 (*1 *2 *2) (-12 (-5 *1 (-658 *2)) (-4 *2 (-1066)))) (-3168 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-621 *5) (-621 *5))) (-5 *4 (-549)) (-5 *2 (-621 *5)) (-5 *1 (-658 *5)) (-4 *5 (-1066)))) (-3168 (*1 *2 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-658 *2)) (-4 *2 (-1066)))) (-3845 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-658 *3)) (-4 *3 (-1066)))) (-2211 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-658 *3)) (-4 *3 (-1066)))))
+(-10 -7 (-15 -2211 ((-1 |#1|) |#1|)) (-15 -3845 ((-1 |#1|) |#1|)) (-15 -3168 (|#1| (-1 |#1| |#1|))) (-15 -3168 ((-621 |#1|) (-1 (-621 |#1|) (-621 |#1|)) (-549))) (-15 -3713 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-747))) (-15 -4209 ((-1 |#1| (-747) |#1|) (-1 |#1| (-747) |#1|))))
+((-2579 (((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)) 16)) (-4103 (((-1 |#2|) (-1 |#2| |#1|) |#1|) 13)) (-2587 (((-1 |#2| |#1|) (-1 |#2|)) 14)) (-2916 (((-1 |#2| |#1|) |#2|) 11)))
+(((-659 |#1| |#2|) (-10 -7 (-15 -2916 ((-1 |#2| |#1|) |#2|)) (-15 -4103 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -2587 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -2579 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)))) (-1066) (-1066)) (T -659))
+((-2579 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-5 *2 (-1 *5 *4)) (-5 *1 (-659 *4 *5)))) (-2587 (*1 *2 *3) (-12 (-5 *3 (-1 *5)) (-4 *5 (-1066)) (-5 *2 (-1 *5 *4)) (-5 *1 (-659 *4 *5)) (-4 *4 (-1066)))) (-4103 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-5 *2 (-1 *5)) (-5 *1 (-659 *4 *5)))) (-2916 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-659 *4 *3)) (-4 *4 (-1066)) (-4 *3 (-1066)))))
+(-10 -7 (-15 -2916 ((-1 |#2| |#1|) |#2|)) (-15 -4103 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -2587 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -2579 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|))))
+((-3909 (((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|)) 17)) (-1882 (((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|) 11)) (-2737 (((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|) 13)) (-2759 (((-1 |#3| |#1| |#2|) (-1 |#3| |#1|)) 14)) (-2696 (((-1 |#3| |#1| |#2|) (-1 |#3| |#2|)) 15)) (* (((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)) 21)))
+(((-660 |#1| |#2| |#3|) (-10 -7 (-15 -1882 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -2737 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -2759 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -2696 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -3909 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)))) (-1066) (-1066) (-1066)) (T -660))
+((* (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-1 *7 *5)) (-5 *1 (-660 *5 *6 *7)))) (-3909 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-660 *4 *5 *6)))) (-2696 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-660 *4 *5 *6)) (-4 *4 (-1066)))) (-2759 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1066)) (-4 *6 (-1066)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-660 *4 *5 *6)) (-4 *5 (-1066)))) (-2737 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-5 *2 (-1 *6 *5)) (-5 *1 (-660 *4 *5 *6)))) (-1882 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1066)) (-4 *4 (-1066)) (-4 *6 (-1066)) (-5 *2 (-1 *6 *5)) (-5 *1 (-660 *5 *4 *6)))))
+(-10 -7 (-15 -1882 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -2737 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -2759 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -2696 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -3909 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|))))
+((-2556 ((|#5| (-1 |#5| |#1| |#5|) |#4| |#5|) 39)) (-2795 (((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|) 37) ((|#8| (-1 |#5| |#1|) |#4|) 31)))
+(((-661 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2795 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -2795 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -2556 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|))) (-1018) (-366 |#1|) (-366 |#1|) (-663 |#1| |#2| |#3|) (-1018) (-366 |#5|) (-366 |#5|) (-663 |#5| |#6| |#7|)) (T -661))
+((-2556 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1018)) (-4 *2 (-1018)) (-4 *6 (-366 *5)) (-4 *7 (-366 *5)) (-4 *8 (-366 *2)) (-4 *9 (-366 *2)) (-5 *1 (-661 *5 *6 *7 *4 *2 *8 *9 *10)) (-4 *4 (-663 *5 *6 *7)) (-4 *10 (-663 *2 *8 *9)))) (-2795 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-1018)) (-4 *8 (-1018)) (-4 *6 (-366 *5)) (-4 *7 (-366 *5)) (-4 *2 (-663 *8 *9 *10)) (-5 *1 (-661 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-663 *5 *6 *7)) (-4 *9 (-366 *8)) (-4 *10 (-366 *8)))) (-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1018)) (-4 *8 (-1018)) (-4 *6 (-366 *5)) (-4 *7 (-366 *5)) (-4 *2 (-663 *8 *9 *10)) (-5 *1 (-661 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-663 *5 *6 *7)) (-4 *9 (-366 *8)) (-4 *10 (-366 *8)))))
+(-10 -7 (-15 -2795 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -2795 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -2556 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|)))
+((-3768 (($ (-747) (-747)) 33)) (-1976 (($ $ $) 56)) (-4235 (($ |#3|) 52) (($ $) 53)) (-1831 (((-112) $) 28)) (-2558 (($ $ (-549) (-549)) 58)) (-2600 (($ $ (-549) (-549)) 59)) (-3036 (($ $ (-549) (-549) (-549) (-549)) 63)) (-4179 (($ $) 54)) (-1295 (((-112) $) 14)) (-3868 (($ $ (-549) (-549) $) 64)) (-2250 ((|#2| $ (-549) (-549) |#2|) NIL) (($ $ (-621 (-549)) (-621 (-549)) $) 62)) (-2411 (($ (-747) |#2|) 39)) (-3944 (($ (-621 (-621 |#2|))) 37)) (-1987 (((-621 (-621 |#2|)) $) 57)) (-3516 (($ $ $) 55)) (-2040 (((-3 $ "failed") $ |#2|) 91)) (-3339 ((|#2| $ (-549) (-549)) NIL) ((|#2| $ (-549) (-549) |#2|) NIL) (($ $ (-621 (-549)) (-621 (-549))) 61)) (-2874 (($ (-621 |#2|)) 40) (($ (-621 $)) 42)) (-2839 (((-112) $) 24)) (-3845 (($ |#4|) 47) (((-834) $) NIL)) (-3752 (((-112) $) 30)) (-2511 (($ $ |#2|) 93)) (-2498 (($ $ $) 68) (($ $) 71)) (-2484 (($ $ $) 66)) (** (($ $ (-747)) 80) (($ $ (-549)) 96)) (* (($ $ $) 77) (($ |#2| $) 73) (($ $ |#2|) 74) (($ (-549) $) 76) ((|#4| $ |#4|) 84) ((|#3| |#3| $) 88)))
+(((-662 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3845 ((-834) |#1|)) (-15 ** (|#1| |#1| (-549))) (-15 -2511 (|#1| |#1| |#2|)) (-15 -2040 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-747))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2498 (|#1| |#1|)) (-15 -2498 (|#1| |#1| |#1|)) (-15 -2484 (|#1| |#1| |#1|)) (-15 -3868 (|#1| |#1| (-549) (-549) |#1|)) (-15 -3036 (|#1| |#1| (-549) (-549) (-549) (-549))) (-15 -2600 (|#1| |#1| (-549) (-549))) (-15 -2558 (|#1| |#1| (-549) (-549))) (-15 -2250 (|#1| |#1| (-621 (-549)) (-621 (-549)) |#1|)) (-15 -3339 (|#1| |#1| (-621 (-549)) (-621 (-549)))) (-15 -1987 ((-621 (-621 |#2|)) |#1|)) (-15 -1976 (|#1| |#1| |#1|)) (-15 -3516 (|#1| |#1| |#1|)) (-15 -4179 (|#1| |#1|)) (-15 -4235 (|#1| |#1|)) (-15 -4235 (|#1| |#3|)) (-15 -3845 (|#1| |#4|)) (-15 -2874 (|#1| (-621 |#1|))) (-15 -2874 (|#1| (-621 |#2|))) (-15 -2411 (|#1| (-747) |#2|)) (-15 -3944 (|#1| (-621 (-621 |#2|)))) (-15 -3768 (|#1| (-747) (-747))) (-15 -3752 ((-112) |#1|)) (-15 -1831 ((-112) |#1|)) (-15 -2839 ((-112) |#1|)) (-15 -1295 ((-112) |#1|)) (-15 -2250 (|#2| |#1| (-549) (-549) |#2|)) (-15 -3339 (|#2| |#1| (-549) (-549) |#2|)) (-15 -3339 (|#2| |#1| (-549) (-549)))) (-663 |#2| |#3| |#4|) (-1018) (-366 |#2|) (-366 |#2|)) (T -662))
+NIL
+(-10 -8 (-15 -3845 ((-834) |#1|)) (-15 ** (|#1| |#1| (-549))) (-15 -2511 (|#1| |#1| |#2|)) (-15 -2040 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-747))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2498 (|#1| |#1|)) (-15 -2498 (|#1| |#1| |#1|)) (-15 -2484 (|#1| |#1| |#1|)) (-15 -3868 (|#1| |#1| (-549) (-549) |#1|)) (-15 -3036 (|#1| |#1| (-549) (-549) (-549) (-549))) (-15 -2600 (|#1| |#1| (-549) (-549))) (-15 -2558 (|#1| |#1| (-549) (-549))) (-15 -2250 (|#1| |#1| (-621 (-549)) (-621 (-549)) |#1|)) (-15 -3339 (|#1| |#1| (-621 (-549)) (-621 (-549)))) (-15 -1987 ((-621 (-621 |#2|)) |#1|)) (-15 -1976 (|#1| |#1| |#1|)) (-15 -3516 (|#1| |#1| |#1|)) (-15 -4179 (|#1| |#1|)) (-15 -4235 (|#1| |#1|)) (-15 -4235 (|#1| |#3|)) (-15 -3845 (|#1| |#4|)) (-15 -2874 (|#1| (-621 |#1|))) (-15 -2874 (|#1| (-621 |#2|))) (-15 -2411 (|#1| (-747) |#2|)) (-15 -3944 (|#1| (-621 (-621 |#2|)))) (-15 -3768 (|#1| (-747) (-747))) (-15 -3752 ((-112) |#1|)) (-15 -1831 ((-112) |#1|)) (-15 -2839 ((-112) |#1|)) (-15 -1295 ((-112) |#1|)) (-15 -2250 (|#2| |#1| (-549) (-549) |#2|)) (-15 -3339 (|#2| |#1| (-549) (-549) |#2|)) (-15 -3339 (|#2| |#1| (-549) (-549))))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-3768 (($ (-747) (-747)) 97)) (-1976 (($ $ $) 87)) (-4235 (($ |#2|) 91) (($ $) 90)) (-1831 (((-112) $) 99)) (-2558 (($ $ (-549) (-549)) 83)) (-2600 (($ $ (-549) (-549)) 82)) (-3036 (($ $ (-549) (-549) (-549) (-549)) 81)) (-4179 (($ $) 89)) (-1295 (((-112) $) 101)) (-2850 (((-112) $ (-747)) 8)) (-3868 (($ $ (-549) (-549) $) 80)) (-2250 ((|#1| $ (-549) (-549) |#1|) 44) (($ $ (-621 (-549)) (-621 (-549)) $) 84)) (-1389 (($ $ (-549) |#2|) 42)) (-1843 (($ $ (-549) |#3|) 41)) (-2411 (($ (-747) |#1|) 95)) (-3034 (($) 7 T CONST)) (-3474 (($ $) 67 (|has| |#1| (-300)))) (-3437 ((|#2| $ (-549)) 46)) (-3121 (((-747) $) 66 (|has| |#1| (-541)))) (-1875 ((|#1| $ (-549) (-549) |#1|) 43)) (-1807 ((|#1| $ (-549) (-549)) 48)) (-2987 (((-621 |#1|) $) 30)) (-4303 (((-747) $) 65 (|has| |#1| (-541)))) (-3290 (((-621 |#3|) $) 64 (|has| |#1| (-541)))) (-2140 (((-747) $) 51)) (-3743 (($ (-747) (-747) |#1|) 57)) (-2153 (((-747) $) 50)) (-1777 (((-112) $ (-747)) 9)) (-4239 ((|#1| $) 62 (|has| |#1| (-6 (-4338 "*"))))) (-3057 (((-549) $) 55)) (-3861 (((-549) $) 53)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1766 (((-549) $) 54)) (-2813 (((-549) $) 52)) (-3944 (($ (-621 (-621 |#1|))) 96)) (-1864 (($ (-1 |#1| |#1|) $) 34)) (-2795 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-1987 (((-621 (-621 |#1|)) $) 86)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-1299 (((-3 $ "failed") $) 61 (|has| |#1| (-356)))) (-3516 (($ $ $) 88)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-1943 (($ $ |#1|) 56)) (-2040 (((-3 $ "failed") $ |#1|) 69 (|has| |#1| (-541)))) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#1| $ (-549) (-549)) 49) ((|#1| $ (-549) (-549) |#1|) 47) (($ $ (-621 (-549)) (-621 (-549))) 85)) (-2874 (($ (-621 |#1|)) 94) (($ (-621 $)) 93)) (-2839 (((-112) $) 100)) (-2842 ((|#1| $) 63 (|has| |#1| (-6 (-4338 "*"))))) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-1476 ((|#3| $ (-549)) 45)) (-3845 (($ |#3|) 92) (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-3752 (((-112) $) 98)) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-2511 (($ $ |#1|) 68 (|has| |#1| (-356)))) (-2498 (($ $ $) 78) (($ $) 77)) (-2484 (($ $ $) 79)) (** (($ $ (-747)) 70) (($ $ (-549)) 60 (|has| |#1| (-356)))) (* (($ $ $) 76) (($ |#1| $) 75) (($ $ |#1|) 74) (($ (-549) $) 73) ((|#3| $ |#3|) 72) ((|#2| |#2| $) 71)) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
(((-663 |#1| |#2| |#3|) (-138) (-1018) (-366 |t#1|) (-366 |t#1|)) (T -663))
-((-2340 (*1 *2 *1) (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-112)))) (-1757 (*1 *2 *1) (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-112)))) (-2092 (*1 *2 *1) (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-112)))) (-2974 (*1 *2 *1) (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-112)))) (-3769 (*1 *1 *2 *2) (-12 (-5 *2 (-747)) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-3946 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2228 (*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2133 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2133 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-3846 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *2)) (-4 *4 (-366 *3)) (-4 *2 (-366 *3)))) (-3682 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-4 *1 (-663 *3 *2 *4)) (-4 *2 (-366 *3)) (-4 *4 (-366 *3)))) (-3682 (*1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (-4218 (*1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (-3571 (*1 *1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (-1648 (*1 *1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (-2913 (*1 *2 *1) (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-621 (-621 *3))))) (-3341 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-621 (-549))) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2254 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-621 (-549))) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-4206 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-1769 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-1624 (*1 *1 *1 *2 *2 *2 *2) (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-1756 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2486 (*1 *1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (-2500 (*1 *1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (-2500 (*1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (* (*1 *1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-663 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *2 (-366 *3)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-663 *3 *2 *4)) (-4 *3 (-1018)) (-4 *2 (-366 *3)) (-4 *4 (-366 *3)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2042 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)) (-4 *2 (-541)))) (-2513 (*1 *1 *1 *2) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)) (-4 *2 (-356)))) (-3460 (*1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)) (-4 *2 (-300)))) (-3123 (*1 *2 *1) (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-4 *3 (-541)) (-5 *2 (-747)))) (-1323 (*1 *2 *1) (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-4 *3 (-541)) (-5 *2 (-747)))) (-1479 (*1 *2 *1) (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-4 *3 (-541)) (-5 *2 (-621 *5)))) (-2029 (*1 *2 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)) (|has| *2 (-6 (-4339 "*"))) (-4 *2 (-1018)))) (-1929 (*1 *2 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)) (|has| *2 (-6 (-4339 "*"))) (-4 *2 (-1018)))) (-3849 (*1 *1 *1) (|partial| -12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)) (-4 *2 (-356)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-4 *3 (-356)))))
-(-13 (-56 |t#1| |t#2| |t#3|) (-10 -8 (-6 -4338) (-6 -4337) (-15 -2340 ((-112) $)) (-15 -1757 ((-112) $)) (-15 -2092 ((-112) $)) (-15 -2974 ((-112) $)) (-15 -3769 ($ (-747) (-747))) (-15 -3946 ($ (-621 (-621 |t#1|)))) (-15 -2228 ($ (-747) |t#1|)) (-15 -2133 ($ (-621 |t#1|))) (-15 -2133 ($ (-621 $))) (-15 -3846 ($ |t#3|)) (-15 -3682 ($ |t#2|)) (-15 -3682 ($ $)) (-15 -4218 ($ $)) (-15 -3571 ($ $ $)) (-15 -1648 ($ $ $)) (-15 -2913 ((-621 (-621 |t#1|)) $)) (-15 -3341 ($ $ (-621 (-549)) (-621 (-549)))) (-15 -2254 ($ $ (-621 (-549)) (-621 (-549)) $)) (-15 -4206 ($ $ (-549) (-549))) (-15 -1769 ($ $ (-549) (-549))) (-15 -1624 ($ $ (-549) (-549) (-549) (-549))) (-15 -1756 ($ $ (-549) (-549) $)) (-15 -2486 ($ $ $)) (-15 -2500 ($ $ $)) (-15 -2500 ($ $)) (-15 * ($ $ $)) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 * ($ (-549) $)) (-15 * (|t#3| $ |t#3|)) (-15 * (|t#2| |t#2| $)) (-15 ** ($ $ (-747))) (IF (|has| |t#1| (-541)) (-15 -2042 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-356)) (-15 -2513 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-300)) (-15 -3460 ($ $)) |%noBranch|) (IF (|has| |t#1| (-541)) (PROGN (-15 -3123 ((-747) $)) (-15 -1323 ((-747) $)) (-15 -1479 ((-621 |t#3|) $))) |%noBranch|) (IF (|has| |t#1| (-6 (-4339 "*"))) (PROGN (-15 -2029 (|t#1| $)) (-15 -1929 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-356)) (PROGN (-15 -3849 ((-3 $ "failed") $)) (-15 ** ($ $ (-549)))) |%noBranch|)))
-(((-34) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-1067) |has| |#1| (-1067)) ((-56 |#1| |#2| |#3|) . T) ((-1180) . T))
-((-3460 ((|#4| |#4|) 72 (|has| |#1| (-300)))) (-3123 (((-747) |#4|) 99 (|has| |#1| (-541)))) (-1323 (((-747) |#4|) 76 (|has| |#1| (-541)))) (-1479 (((-621 |#3|) |#4|) 83 (|has| |#1| (-541)))) (-4297 (((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|) 111 (|has| |#1| (-300)))) (-1929 ((|#1| |#4|) 35)) (-4177 (((-3 |#4| "failed") |#4|) 64 (|has| |#1| (-541)))) (-3849 (((-3 |#4| "failed") |#4|) 80 (|has| |#1| (-356)))) (-2125 ((|#4| |#4|) 68 (|has| |#1| (-541)))) (-4070 ((|#4| |#4| |#1| (-549) (-549)) 43)) (-3462 ((|#4| |#4| (-549) (-549)) 38)) (-2720 ((|#4| |#4| |#1| (-549) (-549)) 48)) (-2029 ((|#1| |#4|) 78)) (-1709 (((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) 69 (|has| |#1| (-541)))))
-(((-664 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2029 (|#1| |#4|)) (-15 -1929 (|#1| |#4|)) (-15 -3462 (|#4| |#4| (-549) (-549))) (-15 -4070 (|#4| |#4| |#1| (-549) (-549))) (-15 -2720 (|#4| |#4| |#1| (-549) (-549))) (IF (|has| |#1| (-541)) (PROGN (-15 -3123 ((-747) |#4|)) (-15 -1323 ((-747) |#4|)) (-15 -1479 ((-621 |#3|) |#4|)) (-15 -2125 (|#4| |#4|)) (-15 -4177 ((-3 |#4| "failed") |#4|)) (-15 -1709 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-300)) (PROGN (-15 -3460 (|#4| |#4|)) (-15 -4297 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-356)) (-15 -3849 ((-3 |#4| "failed") |#4|)) |%noBranch|)) (-170) (-366 |#1|) (-366 |#1|) (-663 |#1| |#2| |#3|)) (T -664))
-((-3849 (*1 *2 *2) (|partial| -12 (-4 *3 (-356)) (-4 *3 (-170)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-664 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))) (-4297 (*1 *2 *3 *3) (-12 (-4 *3 (-300)) (-4 *3 (-170)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3))) (-5 *1 (-664 *3 *4 *5 *6)) (-4 *6 (-663 *3 *4 *5)))) (-3460 (*1 *2 *2) (-12 (-4 *3 (-300)) (-4 *3 (-170)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-664 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))) (-1709 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *4 (-170)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4))) (-5 *1 (-664 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-4177 (*1 *2 *2) (|partial| -12 (-4 *3 (-541)) (-4 *3 (-170)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-664 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))) (-2125 (*1 *2 *2) (-12 (-4 *3 (-541)) (-4 *3 (-170)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-664 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))) (-1479 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *4 (-170)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-621 *6)) (-5 *1 (-664 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-1323 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *4 (-170)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-747)) (-5 *1 (-664 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-3123 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *4 (-170)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-747)) (-5 *1 (-664 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-2720 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-549)) (-4 *3 (-170)) (-4 *5 (-366 *3)) (-4 *6 (-366 *3)) (-5 *1 (-664 *3 *5 *6 *2)) (-4 *2 (-663 *3 *5 *6)))) (-4070 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-549)) (-4 *3 (-170)) (-4 *5 (-366 *3)) (-4 *6 (-366 *3)) (-5 *1 (-664 *3 *5 *6 *2)) (-4 *2 (-663 *3 *5 *6)))) (-3462 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-549)) (-4 *4 (-170)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *1 (-664 *4 *5 *6 *2)) (-4 *2 (-663 *4 *5 *6)))) (-1929 (*1 *2 *3) (-12 (-4 *4 (-366 *2)) (-4 *5 (-366 *2)) (-4 *2 (-170)) (-5 *1 (-664 *2 *4 *5 *3)) (-4 *3 (-663 *2 *4 *5)))) (-2029 (*1 *2 *3) (-12 (-4 *4 (-366 *2)) (-4 *5 (-366 *2)) (-4 *2 (-170)) (-5 *1 (-664 *2 *4 *5 *3)) (-4 *3 (-663 *2 *4 *5)))))
-(-10 -7 (-15 -2029 (|#1| |#4|)) (-15 -1929 (|#1| |#4|)) (-15 -3462 (|#4| |#4| (-549) (-549))) (-15 -4070 (|#4| |#4| |#1| (-549) (-549))) (-15 -2720 (|#4| |#4| |#1| (-549) (-549))) (IF (|has| |#1| (-541)) (PROGN (-15 -3123 ((-747) |#4|)) (-15 -1323 ((-747) |#4|)) (-15 -1479 ((-621 |#3|) |#4|)) (-15 -2125 (|#4| |#4|)) (-15 -4177 ((-3 |#4| "failed") |#4|)) (-15 -1709 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-300)) (PROGN (-15 -3460 (|#4| |#4|)) (-15 -4297 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-356)) (-15 -3849 ((-3 |#4| "failed") |#4|)) |%noBranch|))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3769 (($ (-747) (-747)) 47)) (-1648 (($ $ $) NIL)) (-3682 (($ (-1226 |#1|)) NIL) (($ $) NIL)) (-2092 (((-112) $) NIL)) (-4206 (($ $ (-549) (-549)) 12)) (-1769 (($ $ (-549) (-549)) NIL)) (-1624 (($ $ (-549) (-549) (-549) (-549)) NIL)) (-4218 (($ $) NIL)) (-2340 (((-112) $) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-1756 (($ $ (-549) (-549) $) NIL)) (-2254 ((|#1| $ (-549) (-549) |#1|) NIL) (($ $ (-621 (-549)) (-621 (-549)) $) NIL)) (-3537 (($ $ (-549) (-1226 |#1|)) NIL)) (-3815 (($ $ (-549) (-1226 |#1|)) NIL)) (-2228 (($ (-747) |#1|) 22)) (-1682 (($) NIL T CONST)) (-3460 (($ $) 31 (|has| |#1| (-300)))) (-4060 (((-1226 |#1|) $ (-549)) NIL)) (-3123 (((-747) $) 33 (|has| |#1| (-541)))) (-1879 ((|#1| $ (-549) (-549) |#1|) 51)) (-1809 ((|#1| $ (-549) (-549)) NIL)) (-2989 (((-621 |#1|) $) NIL)) (-1323 (((-747) $) 35 (|has| |#1| (-541)))) (-1479 (((-621 (-1226 |#1|)) $) 38 (|has| |#1| (-541)))) (-2142 (((-747) $) 20)) (-3743 (($ (-747) (-747) |#1|) 16)) (-2155 (((-747) $) 21)) (-3194 (((-112) $ (-747)) NIL)) (-1929 ((|#1| $) 29 (|has| |#1| (-6 (-4339 "*"))))) (-1761 (((-549) $) 9)) (-2703 (((-549) $) 10)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1661 (((-549) $) 11)) (-1887 (((-549) $) 48)) (-3946 (($ (-621 (-621 |#1|))) NIL)) (-1868 (($ (-1 |#1| |#1|) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2913 (((-621 (-621 |#1|)) $) 60)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3849 (((-3 $ "failed") $) 45 (|has| |#1| (-356)))) (-3571 (($ $ $) NIL)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1642 (($ $ |#1|) NIL)) (-2042 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541)))) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#1| $ (-549) (-549)) NIL) ((|#1| $ (-549) (-549) |#1|) NIL) (($ $ (-621 (-549)) (-621 (-549))) NIL)) (-2133 (($ (-621 |#1|)) NIL) (($ (-621 $)) NIL) (($ (-1226 |#1|)) 52)) (-1757 (((-112) $) NIL)) (-2029 ((|#1| $) 27 (|has| |#1| (-6 (-4339 "*"))))) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) NIL)) (-2845 (((-525) $) 64 (|has| |#1| (-594 (-525))))) (-2851 (((-1226 |#1|) $ (-549)) NIL)) (-3846 (($ (-1226 |#1|)) NIL) (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2974 (((-112) $) NIL)) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2500 (($ $ $) NIL) (($ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-747)) 23) (($ $ (-549)) 46 (|has| |#1| (-356)))) (* (($ $ $) 13) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-549) $) NIL) (((-1226 |#1|) $ (-1226 |#1|)) NIL) (((-1226 |#1|) (-1226 |#1|) $) NIL)) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-665 |#1|) (-13 (-663 |#1| (-1226 |#1|) (-1226 |#1|)) (-10 -8 (-15 -2133 ($ (-1226 |#1|))) (IF (|has| |#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (IF (|has| |#1| (-356)) (-15 -3849 ((-3 $ "failed") $)) |%noBranch|))) (-1018)) (T -665))
-((-3849 (*1 *1 *1) (|partial| -12 (-5 *1 (-665 *2)) (-4 *2 (-356)) (-4 *2 (-1018)))) (-2133 (*1 *1 *2) (-12 (-5 *2 (-1226 *3)) (-4 *3 (-1018)) (-5 *1 (-665 *3)))))
-(-13 (-663 |#1| (-1226 |#1|) (-1226 |#1|)) (-10 -8 (-15 -2133 ($ (-1226 |#1|))) (IF (|has| |#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (IF (|has| |#1| (-356)) (-15 -3849 ((-3 $ "failed") $)) |%noBranch|)))
-((-2489 (((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|)) 25)) (-2407 (((-665 |#1|) (-665 |#1|) (-665 |#1|) |#1|) 21)) (-3830 (((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|) (-747)) 26)) (-2771 (((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|)) 14)) (-1478 (((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|)) 18) (((-665 |#1|) (-665 |#1|) (-665 |#1|)) 16)) (-2226 (((-665 |#1|) (-665 |#1|) |#1| (-665 |#1|)) 20)) (-1453 (((-665 |#1|) (-665 |#1|) (-665 |#1|)) 12)) (** (((-665 |#1|) (-665 |#1|) (-747)) 30)))
-(((-666 |#1|) (-10 -7 (-15 -1453 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -2771 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -1478 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -1478 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -2226 ((-665 |#1|) (-665 |#1|) |#1| (-665 |#1|))) (-15 -2407 ((-665 |#1|) (-665 |#1|) (-665 |#1|) |#1|)) (-15 -2489 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -3830 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|) (-747))) (-15 ** ((-665 |#1|) (-665 |#1|) (-747)))) (-1018)) (T -666))
-((** (*1 *2 *2 *3) (-12 (-5 *2 (-665 *4)) (-5 *3 (-747)) (-4 *4 (-1018)) (-5 *1 (-666 *4)))) (-3830 (*1 *2 *2 *2 *2 *2 *3) (-12 (-5 *2 (-665 *4)) (-5 *3 (-747)) (-4 *4 (-1018)) (-5 *1 (-666 *4)))) (-2489 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))) (-2407 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))) (-2226 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))) (-1478 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))) (-1478 (*1 *2 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))) (-2771 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))) (-1453 (*1 *2 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))))
-(-10 -7 (-15 -1453 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -2771 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -1478 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -1478 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -2226 ((-665 |#1|) (-665 |#1|) |#1| (-665 |#1|))) (-15 -2407 ((-665 |#1|) (-665 |#1|) (-665 |#1|) |#1|)) (-15 -2489 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -3830 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|) (-747))) (-15 ** ((-665 |#1|) (-665 |#1|) (-747))))
-((-4095 (($) 8 T CONST)) (-3846 (((-834) $) 21) (($ |#1|) 9) ((|#1| $) 10)) (-3264 (((-112) $ (|[\|\|]| |#1|)) 14) (((-112) $ (|[\|\|]| -4095)) 16)) (-2321 ((|#1| $) 11)))
-(((-667 |#1|) (-13 (-1221) (-593 (-834)) (-10 -8 (-15 -3264 ((-112) $ (|[\|\|]| |#1|))) (-15 -3264 ((-112) $ (|[\|\|]| -4095))) (-15 -3846 ($ |#1|)) (-15 -3846 (|#1| $)) (-15 -2321 (|#1| $)) (-15 -4095 ($) -2589))) (-593 (-834))) (T -667))
-((-3264 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| *4)) (-4 *4 (-593 (-834))) (-5 *2 (-112)) (-5 *1 (-667 *4)))) (-3264 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -4095)) (-5 *2 (-112)) (-5 *1 (-667 *4)) (-4 *4 (-593 (-834))))) (-3846 (*1 *1 *2) (-12 (-5 *1 (-667 *2)) (-4 *2 (-593 (-834))))) (-3846 (*1 *2 *1) (-12 (-5 *1 (-667 *2)) (-4 *2 (-593 (-834))))) (-2321 (*1 *2 *1) (-12 (-5 *1 (-667 *2)) (-4 *2 (-593 (-834))))) (-4095 (*1 *1) (-12 (-5 *1 (-667 *2)) (-4 *2 (-593 (-834))))))
-(-13 (-1221) (-593 (-834)) (-10 -8 (-15 -3264 ((-112) $ (|[\|\|]| |#1|))) (-15 -3264 ((-112) $ (|[\|\|]| -4095))) (-15 -3846 ($ |#1|)) (-15 -3846 (|#1| $)) (-15 -2321 (|#1| $)) (-15 -4095 ($) -2589)))
-((-4316 ((|#2| |#2| |#4|) 25)) (-4204 (((-665 |#2|) |#3| |#4|) 31)) (-1711 (((-665 |#2|) |#2| |#4|) 30)) (-2268 (((-1226 |#2|) |#2| |#4|) 16)) (-3448 ((|#2| |#3| |#4|) 24)) (-2188 (((-665 |#2|) |#3| |#4| (-747) (-747)) 38)) (-2311 (((-665 |#2|) |#2| |#4| (-747)) 37)))
-(((-668 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2268 ((-1226 |#2|) |#2| |#4|)) (-15 -3448 (|#2| |#3| |#4|)) (-15 -4316 (|#2| |#2| |#4|)) (-15 -1711 ((-665 |#2|) |#2| |#4|)) (-15 -2311 ((-665 |#2|) |#2| |#4| (-747))) (-15 -4204 ((-665 |#2|) |#3| |#4|)) (-15 -2188 ((-665 |#2|) |#3| |#4| (-747) (-747)))) (-1067) (-871 |#1|) (-366 |#2|) (-13 (-366 |#1|) (-10 -7 (-6 -4337)))) (T -668))
-((-2188 (*1 *2 *3 *4 *5 *5) (-12 (-5 *5 (-747)) (-4 *6 (-1067)) (-4 *7 (-871 *6)) (-5 *2 (-665 *7)) (-5 *1 (-668 *6 *7 *3 *4)) (-4 *3 (-366 *7)) (-4 *4 (-13 (-366 *6) (-10 -7 (-6 -4337)))))) (-4204 (*1 *2 *3 *4) (-12 (-4 *5 (-1067)) (-4 *6 (-871 *5)) (-5 *2 (-665 *6)) (-5 *1 (-668 *5 *6 *3 *4)) (-4 *3 (-366 *6)) (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4337)))))) (-2311 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-747)) (-4 *6 (-1067)) (-4 *3 (-871 *6)) (-5 *2 (-665 *3)) (-5 *1 (-668 *6 *3 *7 *4)) (-4 *7 (-366 *3)) (-4 *4 (-13 (-366 *6) (-10 -7 (-6 -4337)))))) (-1711 (*1 *2 *3 *4) (-12 (-4 *5 (-1067)) (-4 *3 (-871 *5)) (-5 *2 (-665 *3)) (-5 *1 (-668 *5 *3 *6 *4)) (-4 *6 (-366 *3)) (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4337)))))) (-4316 (*1 *2 *2 *3) (-12 (-4 *4 (-1067)) (-4 *2 (-871 *4)) (-5 *1 (-668 *4 *2 *5 *3)) (-4 *5 (-366 *2)) (-4 *3 (-13 (-366 *4) (-10 -7 (-6 -4337)))))) (-3448 (*1 *2 *3 *4) (-12 (-4 *5 (-1067)) (-4 *2 (-871 *5)) (-5 *1 (-668 *5 *2 *3 *4)) (-4 *3 (-366 *2)) (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4337)))))) (-2268 (*1 *2 *3 *4) (-12 (-4 *5 (-1067)) (-4 *3 (-871 *5)) (-5 *2 (-1226 *3)) (-5 *1 (-668 *5 *3 *6 *4)) (-4 *6 (-366 *3)) (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4337)))))))
-(-10 -7 (-15 -2268 ((-1226 |#2|) |#2| |#4|)) (-15 -3448 (|#2| |#3| |#4|)) (-15 -4316 (|#2| |#2| |#4|)) (-15 -1711 ((-665 |#2|) |#2| |#4|)) (-15 -2311 ((-665 |#2|) |#2| |#4| (-747))) (-15 -4204 ((-665 |#2|) |#3| |#4|)) (-15 -2188 ((-665 |#2|) |#3| |#4| (-747) (-747))))
-((-2050 (((-2 (|:| |num| (-665 |#1|)) (|:| |den| |#1|)) (-665 |#2|)) 20)) (-2836 ((|#1| (-665 |#2|)) 9)) (-1308 (((-665 |#1|) (-665 |#2|)) 18)))
-(((-669 |#1| |#2|) (-10 -7 (-15 -2836 (|#1| (-665 |#2|))) (-15 -1308 ((-665 |#1|) (-665 |#2|))) (-15 -2050 ((-2 (|:| |num| (-665 |#1|)) (|:| |den| |#1|)) (-665 |#2|)))) (-541) (-963 |#1|)) (T -669))
-((-2050 (*1 *2 *3) (-12 (-5 *3 (-665 *5)) (-4 *5 (-963 *4)) (-4 *4 (-541)) (-5 *2 (-2 (|:| |num| (-665 *4)) (|:| |den| *4))) (-5 *1 (-669 *4 *5)))) (-1308 (*1 *2 *3) (-12 (-5 *3 (-665 *5)) (-4 *5 (-963 *4)) (-4 *4 (-541)) (-5 *2 (-665 *4)) (-5 *1 (-669 *4 *5)))) (-2836 (*1 *2 *3) (-12 (-5 *3 (-665 *4)) (-4 *4 (-963 *2)) (-4 *2 (-541)) (-5 *1 (-669 *2 *4)))))
-(-10 -7 (-15 -2836 (|#1| (-665 |#2|))) (-15 -1308 ((-665 |#1|) (-665 |#2|))) (-15 -2050 ((-2 (|:| |num| (-665 |#1|)) (|:| |den| |#1|)) (-665 |#2|))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-1738 (((-665 (-675))) NIL) (((-665 (-675)) (-1226 $)) NIL)) (-2906 (((-675) $) NIL)) (-1664 (($ $) NIL (|has| (-675) (-1165)))) (-1512 (($ $) NIL (|has| (-675) (-1165)))) (-3062 (((-1153 (-892) (-747)) (-549)) NIL (|has| (-675) (-342)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (-12 (|has| (-675) (-300)) (|has| (-675) (-880))))) (-3979 (($ $) NIL (-1536 (-12 (|has| (-675) (-300)) (|has| (-675) (-880))) (|has| (-675) (-356))))) (-2402 (((-411 $) $) NIL (-1536 (-12 (|has| (-675) (-300)) (|has| (-675) (-880))) (|has| (-675) (-356))))) (-2134 (($ $) NIL (-12 (|has| (-675) (-973)) (|has| (-675) (-1165))))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (-12 (|has| (-675) (-300)) (|has| (-675) (-880))))) (-3866 (((-112) $ $) NIL (|has| (-675) (-300)))) (-3614 (((-747)) NIL (|has| (-675) (-361)))) (-1640 (($ $) NIL (|has| (-675) (-1165)))) (-1486 (($ $) NIL (|has| (-675) (-1165)))) (-1685 (($ $) NIL (|has| (-675) (-1165)))) (-1539 (($ $) NIL (|has| (-675) (-1165)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL) (((-3 (-675) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-675) (-1009 (-400 (-549)))))) (-2659 (((-549) $) NIL) (((-675) $) NIL) (((-400 (-549)) $) NIL (|has| (-675) (-1009 (-400 (-549)))))) (-3492 (($ (-1226 (-675))) NIL) (($ (-1226 (-675)) (-1226 $)) NIL)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-675) (-342)))) (-2095 (($ $ $) NIL (|has| (-675) (-300)))) (-3506 (((-665 (-675)) $) NIL) (((-665 (-675)) $ (-1226 $)) NIL)) (-3879 (((-665 (-675)) (-665 $)) NIL) (((-2 (|:| -3521 (-665 (-675))) (|:| |vec| (-1226 (-675)))) (-665 $) (-1226 $)) NIL) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| (-675) (-617 (-549)))) (((-665 (-549)) (-665 $)) NIL (|has| (-675) (-617 (-549))))) (-2557 (((-3 $ "failed") (-400 (-1139 (-675)))) NIL (|has| (-675) (-356))) (($ (-1139 (-675))) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-2145 (((-675) $) 29)) (-3405 (((-3 (-400 (-549)) "failed") $) NIL (|has| (-675) (-534)))) (-3679 (((-112) $) NIL (|has| (-675) (-534)))) (-2532 (((-400 (-549)) $) NIL (|has| (-675) (-534)))) (-3123 (((-892)) NIL)) (-3239 (($) NIL (|has| (-675) (-361)))) (-2067 (($ $ $) NIL (|has| (-675) (-300)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| (-675) (-300)))) (-2405 (($) NIL (|has| (-675) (-342)))) (-2288 (((-112) $) NIL (|has| (-675) (-342)))) (-3165 (($ $) NIL (|has| (-675) (-342))) (($ $ (-747)) NIL (|has| (-675) (-342)))) (-1420 (((-112) $) NIL (-1536 (-12 (|has| (-675) (-300)) (|has| (-675) (-880))) (|has| (-675) (-356))))) (-2467 (((-2 (|:| |r| (-675)) (|:| |phi| (-675))) $) NIL (-12 (|has| (-675) (-1027)) (|has| (-675) (-1165))))) (-1425 (($) NIL (|has| (-675) (-1165)))) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| (-675) (-857 (-372)))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| (-675) (-857 (-549))))) (-2088 (((-809 (-892)) $) NIL (|has| (-675) (-342))) (((-892) $) NIL (|has| (-675) (-342)))) (-2675 (((-112) $) NIL)) (-4187 (($ $ (-549)) NIL (-12 (|has| (-675) (-973)) (|has| (-675) (-1165))))) (-3630 (((-675) $) NIL)) (-1681 (((-3 $ "failed") $) NIL (|has| (-675) (-342)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| (-675) (-300)))) (-3788 (((-1139 (-675)) $) NIL (|has| (-675) (-356)))) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-2797 (($ (-1 (-675) (-675)) $) NIL)) (-1881 (((-892) $) NIL (|has| (-675) (-361)))) (-3632 (($ $) NIL (|has| (-675) (-1165)))) (-2548 (((-1139 (-675)) $) NIL)) (-3697 (($ (-621 $)) NIL (|has| (-675) (-300))) (($ $ $) NIL (|has| (-675) (-300)))) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL (|has| (-675) (-356)))) (-3060 (($) NIL (|has| (-675) (-342)) CONST)) (-3493 (($ (-892)) NIL (|has| (-675) (-361)))) (-1429 (($) NIL)) (-2160 (((-675) $) 31)) (-3990 (((-1087) $) NIL)) (-4248 (($) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| (-675) (-300)))) (-3727 (($ (-621 $)) NIL (|has| (-675) (-300))) (($ $ $) NIL (|has| (-675) (-300)))) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) NIL (|has| (-675) (-342)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (-12 (|has| (-675) (-300)) (|has| (-675) (-880))))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (-12 (|has| (-675) (-300)) (|has| (-675) (-880))))) (-2121 (((-411 $) $) NIL (-1536 (-12 (|has| (-675) (-300)) (|has| (-675) (-880))) (|has| (-675) (-356))))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-675) (-300))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| (-675) (-300)))) (-2042 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ (-675)) NIL (|has| (-675) (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| (-675) (-300)))) (-2719 (($ $) NIL (|has| (-675) (-1165)))) (-2686 (($ $ (-1143) (-675)) NIL (|has| (-675) (-505 (-1143) (-675)))) (($ $ (-621 (-1143)) (-621 (-675))) NIL (|has| (-675) (-505 (-1143) (-675)))) (($ $ (-621 (-287 (-675)))) NIL (|has| (-675) (-302 (-675)))) (($ $ (-287 (-675))) NIL (|has| (-675) (-302 (-675)))) (($ $ (-675) (-675)) NIL (|has| (-675) (-302 (-675)))) (($ $ (-621 (-675)) (-621 (-675))) NIL (|has| (-675) (-302 (-675))))) (-3684 (((-747) $) NIL (|has| (-675) (-300)))) (-3341 (($ $ (-675)) NIL (|has| (-675) (-279 (-675) (-675))))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| (-675) (-300)))) (-3602 (((-675)) NIL) (((-675) (-1226 $)) NIL)) (-3914 (((-3 (-747) "failed") $ $) NIL (|has| (-675) (-342))) (((-747) $) NIL (|has| (-675) (-342)))) (-3456 (($ $ (-1 (-675) (-675))) NIL) (($ $ (-1 (-675) (-675)) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| (-675) (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| (-675) (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| (-675) (-871 (-1143)))) (($ $ (-1143)) NIL (|has| (-675) (-871 (-1143)))) (($ $ (-747)) NIL (|has| (-675) (-227))) (($ $) NIL (|has| (-675) (-227)))) (-2901 (((-665 (-675)) (-1226 $) (-1 (-675) (-675))) NIL (|has| (-675) (-356)))) (-2815 (((-1139 (-675))) NIL)) (-1698 (($ $) NIL (|has| (-675) (-1165)))) (-1552 (($ $) NIL (|has| (-675) (-1165)))) (-3170 (($) NIL (|has| (-675) (-342)))) (-1675 (($ $) NIL (|has| (-675) (-1165)))) (-1526 (($ $) NIL (|has| (-675) (-1165)))) (-1651 (($ $) NIL (|has| (-675) (-1165)))) (-1501 (($ $) NIL (|has| (-675) (-1165)))) (-4263 (((-665 (-675)) (-1226 $)) NIL) (((-1226 (-675)) $) NIL) (((-665 (-675)) (-1226 $) (-1226 $)) NIL) (((-1226 (-675)) $ (-1226 $)) NIL)) (-2845 (((-525) $) NIL (|has| (-675) (-594 (-525)))) (((-167 (-219)) $) NIL (|has| (-675) (-993))) (((-167 (-372)) $) NIL (|has| (-675) (-993))) (((-863 (-372)) $) NIL (|has| (-675) (-594 (-863 (-372))))) (((-863 (-549)) $) NIL (|has| (-675) (-594 (-863 (-549))))) (($ (-1139 (-675))) NIL) (((-1139 (-675)) $) NIL) (($ (-1226 (-675))) NIL) (((-1226 (-675)) $) NIL)) (-1955 (($ $) NIL)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-1536 (-12 (|has| (-675) (-300)) (|has| $ (-143)) (|has| (-675) (-880))) (|has| (-675) (-342))))) (-3410 (($ (-675) (-675)) 12)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-549)) NIL) (($ (-675)) NIL) (($ (-167 (-372))) 13) (($ (-167 (-549))) 19) (($ (-167 (-675))) 28) (($ (-167 (-677))) 25) (((-167 (-372)) $) 33) (($ (-400 (-549))) NIL (-1536 (|has| (-675) (-1009 (-400 (-549)))) (|has| (-675) (-356))))) (-2210 (($ $) NIL (|has| (-675) (-342))) (((-3 $ "failed") $) NIL (-1536 (-12 (|has| (-675) (-300)) (|has| $ (-143)) (|has| (-675) (-880))) (|has| (-675) (-143))))) (-4154 (((-1139 (-675)) $) NIL)) (-2082 (((-747)) NIL)) (-1949 (((-1226 $)) NIL)) (-1733 (($ $) NIL (|has| (-675) (-1165)))) (-1587 (($ $) NIL (|has| (-675) (-1165)))) (-1498 (((-112) $ $) NIL)) (-1710 (($ $) NIL (|has| (-675) (-1165)))) (-1564 (($ $) NIL (|has| (-675) (-1165)))) (-1758 (($ $) NIL (|has| (-675) (-1165)))) (-1612 (($ $) NIL (|has| (-675) (-1165)))) (-1572 (((-675) $) NIL (|has| (-675) (-1165)))) (-1934 (($ $) NIL (|has| (-675) (-1165)))) (-1627 (($ $) NIL (|has| (-675) (-1165)))) (-1745 (($ $) NIL (|has| (-675) (-1165)))) (-1600 (($ $) NIL (|has| (-675) (-1165)))) (-1722 (($ $) NIL (|has| (-675) (-1165)))) (-1576 (($ $) NIL (|has| (-675) (-1165)))) (-3212 (($ $) NIL (|has| (-675) (-1027)))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $ (-1 (-675) (-675))) NIL) (($ $ (-1 (-675) (-675)) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| (-675) (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| (-675) (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| (-675) (-871 (-1143)))) (($ $ (-1143)) NIL (|has| (-675) (-871 (-1143)))) (($ $ (-747)) NIL (|has| (-675) (-227))) (($ $) NIL (|has| (-675) (-227)))) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) NIL)) (-2513 (($ $ $) NIL (|has| (-675) (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ $) NIL (|has| (-675) (-1165))) (($ $ (-400 (-549))) NIL (-12 (|has| (-675) (-973)) (|has| (-675) (-1165)))) (($ $ (-549)) NIL (|has| (-675) (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ (-675) $) NIL) (($ $ (-675)) NIL) (($ (-400 (-549)) $) NIL (|has| (-675) (-356))) (($ $ (-400 (-549))) NIL (|has| (-675) (-356)))))
-(((-670) (-13 (-380) (-164 (-675)) (-10 -8 (-15 -3846 ($ (-167 (-372)))) (-15 -3846 ($ (-167 (-549)))) (-15 -3846 ($ (-167 (-675)))) (-15 -3846 ($ (-167 (-677)))) (-15 -3846 ((-167 (-372)) $))))) (T -670))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-167 (-372))) (-5 *1 (-670)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-167 (-549))) (-5 *1 (-670)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-167 (-675))) (-5 *1 (-670)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-167 (-677))) (-5 *1 (-670)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-167 (-372))) (-5 *1 (-670)))))
-(-13 (-380) (-164 (-675)) (-10 -8 (-15 -3846 ($ (-167 (-372)))) (-15 -3846 ($ (-167 (-549)))) (-15 -3846 ($ (-167 (-675)))) (-15 -3846 ($ (-167 (-677)))) (-15 -3846 ((-167 (-372)) $))))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-1584 (((-112) $ (-747)) 8)) (-1717 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4337)))) (-1682 (($) 7 T CONST)) (-3745 (($ $) 62)) (-3676 (($ $) 58 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2129 (($ |#1| $) 47 (|has| $ (-6 -4337))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4337)))) (-3812 (($ |#1| $) 57 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4337)))) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) 9)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3504 ((|#1| $) 39)) (-2751 (($ |#1| $) 40) (($ |#1| $ (-747)) 63)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3325 ((|#1| $) 41)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3458 (((-621 (-2 (|:| -1793 |#1|) (|:| -4000 (-747)))) $) 61)) (-2898 (($) 49) (($ (-621 |#1|)) 48)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-2845 (((-525) $) 59 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 50)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3624 (($ (-621 |#1|)) 42)) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-671 |#1|) (-138) (-1067)) (T -671))
-((-2751 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *1 (-671 *2)) (-4 *2 (-1067)))) (-3745 (*1 *1 *1) (-12 (-4 *1 (-671 *2)) (-4 *2 (-1067)))) (-3458 (*1 *2 *1) (-12 (-4 *1 (-671 *3)) (-4 *3 (-1067)) (-5 *2 (-621 (-2 (|:| -1793 *3) (|:| -4000 (-747))))))))
-(-13 (-229 |t#1|) (-10 -8 (-15 -2751 ($ |t#1| $ (-747))) (-15 -3745 ($ $)) (-15 -3458 ((-621 (-2 (|:| -1793 |t#1|) (|:| -4000 (-747)))) $))))
-(((-34) . T) ((-106 |#1|) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-229 |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-1067) |has| |#1| (-1067)) ((-1180) . T))
-((-3369 (((-621 |#1|) (-621 (-2 (|:| -2121 |#1|) (|:| -3701 (-549)))) (-549)) 47)) (-1743 ((|#1| |#1| (-549)) 46)) (-3727 ((|#1| |#1| |#1| (-549)) 36)) (-2121 (((-621 |#1|) |#1| (-549)) 39)) (-3003 ((|#1| |#1| (-549) |#1| (-549)) 32)) (-1884 (((-621 (-2 (|:| -2121 |#1|) (|:| -3701 (-549)))) |#1| (-549)) 45)))
-(((-672 |#1|) (-10 -7 (-15 -3727 (|#1| |#1| |#1| (-549))) (-15 -1743 (|#1| |#1| (-549))) (-15 -2121 ((-621 |#1|) |#1| (-549))) (-15 -1884 ((-621 (-2 (|:| -2121 |#1|) (|:| -3701 (-549)))) |#1| (-549))) (-15 -3369 ((-621 |#1|) (-621 (-2 (|:| -2121 |#1|) (|:| -3701 (-549)))) (-549))) (-15 -3003 (|#1| |#1| (-549) |#1| (-549)))) (-1202 (-549))) (T -672))
-((-3003 (*1 *2 *2 *3 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-672 *2)) (-4 *2 (-1202 *3)))) (-3369 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-2 (|:| -2121 *5) (|:| -3701 (-549))))) (-5 *4 (-549)) (-4 *5 (-1202 *4)) (-5 *2 (-621 *5)) (-5 *1 (-672 *5)))) (-1884 (*1 *2 *3 *4) (-12 (-5 *4 (-549)) (-5 *2 (-621 (-2 (|:| -2121 *3) (|:| -3701 *4)))) (-5 *1 (-672 *3)) (-4 *3 (-1202 *4)))) (-2121 (*1 *2 *3 *4) (-12 (-5 *4 (-549)) (-5 *2 (-621 *3)) (-5 *1 (-672 *3)) (-4 *3 (-1202 *4)))) (-1743 (*1 *2 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-672 *2)) (-4 *2 (-1202 *3)))) (-3727 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-672 *2)) (-4 *2 (-1202 *3)))))
-(-10 -7 (-15 -3727 (|#1| |#1| |#1| (-549))) (-15 -1743 (|#1| |#1| (-549))) (-15 -2121 ((-621 |#1|) |#1| (-549))) (-15 -1884 ((-621 (-2 (|:| -2121 |#1|) (|:| -3701 (-549)))) |#1| (-549))) (-15 -3369 ((-621 |#1|) (-621 (-2 (|:| -2121 |#1|) (|:| -3701 (-549)))) (-549))) (-15 -3003 (|#1| |#1| (-549) |#1| (-549))))
-((-2304 (((-1 (-914 (-219)) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219) (-219))) 17)) (-1454 (((-1100 (-219)) (-1100 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-219)) (-1061 (-219)) (-621 (-256))) 40) (((-1100 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-219)) (-1061 (-219)) (-621 (-256))) 42) (((-1100 (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-3 (-1 (-219) (-219) (-219) (-219)) "undefined") (-1061 (-219)) (-1061 (-219)) (-621 (-256))) 44)) (-2551 (((-1100 (-219)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1061 (-219)) (-621 (-256))) NIL)) (-3801 (((-1100 (-219)) (-1 (-219) (-219) (-219)) (-3 (-1 (-219) (-219) (-219) (-219)) "undefined") (-1061 (-219)) (-1061 (-219)) (-621 (-256))) 45)))
-(((-673) (-10 -7 (-15 -1454 ((-1100 (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-3 (-1 (-219) (-219) (-219) (-219)) "undefined") (-1061 (-219)) (-1061 (-219)) (-621 (-256)))) (-15 -1454 ((-1100 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-219)) (-1061 (-219)) (-621 (-256)))) (-15 -1454 ((-1100 (-219)) (-1100 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-219)) (-1061 (-219)) (-621 (-256)))) (-15 -3801 ((-1100 (-219)) (-1 (-219) (-219) (-219)) (-3 (-1 (-219) (-219) (-219) (-219)) "undefined") (-1061 (-219)) (-1061 (-219)) (-621 (-256)))) (-15 -2551 ((-1100 (-219)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1061 (-219)) (-621 (-256)))) (-15 -2304 ((-1 (-914 (-219)) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219) (-219)))))) (T -673))
-((-2304 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1 (-219) (-219) (-219) (-219))) (-5 *2 (-1 (-914 (-219)) (-219) (-219))) (-5 *1 (-673)))) (-2551 (*1 *2 *3 *3 *3 *4 *5 *6) (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219))) (-5 *5 (-1061 (-219))) (-5 *6 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-673)))) (-3801 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-3 (-1 (-219) (-219) (-219) (-219)) "undefined")) (-5 *5 (-1061 (-219))) (-5 *6 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-673)))) (-1454 (*1 *2 *2 *3 *4 *4 *5) (-12 (-5 *2 (-1100 (-219))) (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1061 (-219))) (-5 *5 (-621 (-256))) (-5 *1 (-673)))) (-1454 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1061 (-219))) (-5 *5 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-673)))) (-1454 (*1 *2 *3 *3 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-3 (-1 (-219) (-219) (-219) (-219)) "undefined")) (-5 *5 (-1061 (-219))) (-5 *6 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-673)))))
-(-10 -7 (-15 -1454 ((-1100 (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-3 (-1 (-219) (-219) (-219) (-219)) "undefined") (-1061 (-219)) (-1061 (-219)) (-621 (-256)))) (-15 -1454 ((-1100 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-219)) (-1061 (-219)) (-621 (-256)))) (-15 -1454 ((-1100 (-219)) (-1100 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1061 (-219)) (-1061 (-219)) (-621 (-256)))) (-15 -3801 ((-1100 (-219)) (-1 (-219) (-219) (-219)) (-3 (-1 (-219) (-219) (-219) (-219)) "undefined") (-1061 (-219)) (-1061 (-219)) (-621 (-256)))) (-15 -2551 ((-1100 (-219)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1061 (-219)) (-621 (-256)))) (-15 -2304 ((-1 (-914 (-219)) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219) (-219)))))
-((-2121 (((-411 (-1139 |#4|)) (-1139 |#4|)) 73) (((-411 |#4|) |#4|) 221)))
-(((-674 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2121 ((-411 |#4|) |#4|)) (-15 -2121 ((-411 (-1139 |#4|)) (-1139 |#4|)))) (-823) (-769) (-342) (-920 |#3| |#2| |#1|)) (T -674))
-((-2121 (*1 *2 *3) (-12 (-4 *4 (-823)) (-4 *5 (-769)) (-4 *6 (-342)) (-4 *7 (-920 *6 *5 *4)) (-5 *2 (-411 (-1139 *7))) (-5 *1 (-674 *4 *5 *6 *7)) (-5 *3 (-1139 *7)))) (-2121 (*1 *2 *3) (-12 (-4 *4 (-823)) (-4 *5 (-769)) (-4 *6 (-342)) (-5 *2 (-411 *3)) (-5 *1 (-674 *4 *5 *6 *3)) (-4 *3 (-920 *6 *5 *4)))))
-(-10 -7 (-15 -2121 ((-411 |#4|) |#4|)) (-15 -2121 ((-411 (-1139 |#4|)) (-1139 |#4|))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 84)) (-3329 (((-549) $) 30)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-3896 (($ $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-2134 (($ $) NIL)) (-3866 (((-112) $ $) NIL)) (-1872 (((-549) $) NIL)) (-1682 (($) NIL T CONST)) (-3252 (($ $) NIL)) (-2714 (((-3 (-549) "failed") $) 73) (((-3 (-400 (-549)) "failed") $) 26) (((-3 (-372) "failed") $) 70)) (-2659 (((-549) $) 75) (((-400 (-549)) $) 67) (((-372) $) 68)) (-2095 (($ $ $) 96)) (-2114 (((-3 $ "failed") $) 87)) (-2067 (($ $ $) 95)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-3236 (((-892)) 77) (((-892) (-892)) 76)) (-2772 (((-112) $) NIL)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL)) (-2088 (((-549) $) NIL)) (-2675 (((-112) $) NIL)) (-4187 (($ $ (-549)) NIL)) (-3630 (($ $) NIL)) (-2374 (((-112) $) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-4158 (((-549) (-549)) 81) (((-549)) 82)) (-2863 (($ $ $) NIL) (($) NIL (-12 (-4008 (|has| $ (-6 -4320))) (-4008 (|has| $ (-6 -4328)))))) (-2586 (((-549) (-549)) 79) (((-549)) 80)) (-3575 (($ $ $) NIL) (($) NIL (-12 (-4008 (|has| $ (-6 -4320))) (-4008 (|has| $ (-6 -4328)))))) (-1461 (((-549) $) 16)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 91)) (-2429 (((-892) (-549)) NIL (|has| $ (-6 -4328)))) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2873 (($ $) NIL)) (-3967 (($ $) NIL)) (-1355 (($ (-549) (-549)) NIL) (($ (-549) (-549) (-892)) NIL)) (-2121 (((-411 $) $) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) 92)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3731 (((-549) $) 22)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 94)) (-3862 (((-892)) NIL) (((-892) (-892)) NIL (|has| $ (-6 -4328)))) (-2324 (((-892) (-549)) NIL (|has| $ (-6 -4328)))) (-2845 (((-372) $) NIL) (((-219) $) NIL) (((-863 (-372)) $) NIL)) (-3846 (((-834) $) 52) (($ (-549)) 63) (($ $) NIL) (($ (-400 (-549))) 66) (($ (-549)) 63) (($ (-400 (-549))) 66) (($ (-372)) 60) (((-372) $) 50) (($ (-677)) 55)) (-2082 (((-747)) 103)) (-4216 (($ (-549) (-549) (-892)) 44)) (-2546 (($ $) NIL)) (-1502 (((-892)) NIL) (((-892) (-892)) NIL (|has| $ (-6 -4328)))) (-1864 (((-892)) 35) (((-892) (-892)) 78)) (-1498 (((-112) $ $) NIL)) (-3212 (($ $) NIL)) (-3276 (($) 32 T CONST)) (-3287 (($) 17 T CONST)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 83)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 101)) (-2513 (($ $ $) 65)) (-2500 (($ $) 99) (($ $ $) 100)) (-2486 (($ $ $) 98)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL) (($ $ (-400 (-549))) 90)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 97) (($ $ $) 88) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL)))
-(((-675) (-13 (-397) (-380) (-356) (-1009 (-372)) (-1009 (-400 (-549))) (-145) (-10 -8 (-15 -3236 ((-892) (-892))) (-15 -3236 ((-892))) (-15 -1864 ((-892) (-892))) (-15 -1864 ((-892))) (-15 -2586 ((-549) (-549))) (-15 -2586 ((-549))) (-15 -4158 ((-549) (-549))) (-15 -4158 ((-549))) (-15 -3846 ((-372) $)) (-15 -3846 ($ (-677))) (-15 -1461 ((-549) $)) (-15 -3731 ((-549) $)) (-15 -4216 ($ (-549) (-549) (-892)))))) (T -675))
-((-1864 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-675)))) (-3731 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-675)))) (-1461 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-675)))) (-3236 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-675)))) (-3236 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-675)))) (-1864 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-675)))) (-2586 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-675)))) (-2586 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-675)))) (-4158 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-675)))) (-4158 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-675)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-372)) (-5 *1 (-675)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-677)) (-5 *1 (-675)))) (-4216 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-549)) (-5 *3 (-892)) (-5 *1 (-675)))))
-(-13 (-397) (-380) (-356) (-1009 (-372)) (-1009 (-400 (-549))) (-145) (-10 -8 (-15 -3236 ((-892) (-892))) (-15 -3236 ((-892))) (-15 -1864 ((-892) (-892))) (-15 -1864 ((-892))) (-15 -2586 ((-549) (-549))) (-15 -2586 ((-549))) (-15 -4158 ((-549) (-549))) (-15 -4158 ((-549))) (-15 -3846 ((-372) $)) (-15 -3846 ($ (-677))) (-15 -1461 ((-549) $)) (-15 -3731 ((-549) $)) (-15 -4216 ($ (-549) (-549) (-892)))))
-((-1902 (((-665 |#1|) (-665 |#1|) |#1| |#1|) 65)) (-3460 (((-665 |#1|) (-665 |#1|) |#1|) 48)) (-4271 (((-665 |#1|) (-665 |#1|) |#1|) 66)) (-3085 (((-665 |#1|) (-665 |#1|)) 49)) (-4297 (((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|) 64)))
-(((-676 |#1|) (-10 -7 (-15 -3085 ((-665 |#1|) (-665 |#1|))) (-15 -3460 ((-665 |#1|) (-665 |#1|) |#1|)) (-15 -4271 ((-665 |#1|) (-665 |#1|) |#1|)) (-15 -1902 ((-665 |#1|) (-665 |#1|) |#1| |#1|)) (-15 -4297 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|))) (-300)) (T -676))
-((-4297 (*1 *2 *3 *3) (-12 (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3))) (-5 *1 (-676 *3)) (-4 *3 (-300)))) (-1902 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-665 *3)) (-4 *3 (-300)) (-5 *1 (-676 *3)))) (-4271 (*1 *2 *2 *3) (-12 (-5 *2 (-665 *3)) (-4 *3 (-300)) (-5 *1 (-676 *3)))) (-3460 (*1 *2 *2 *3) (-12 (-5 *2 (-665 *3)) (-4 *3 (-300)) (-5 *1 (-676 *3)))) (-3085 (*1 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-300)) (-5 *1 (-676 *3)))))
-(-10 -7 (-15 -3085 ((-665 |#1|) (-665 |#1|))) (-15 -3460 ((-665 |#1|) (-665 |#1|) |#1|)) (-15 -4271 ((-665 |#1|) (-665 |#1|) |#1|)) (-15 -1902 ((-665 |#1|) (-665 |#1|) |#1| |#1|)) (-15 -4297 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2831 (($ $ $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3332 (($ $ $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1872 (((-549) $) NIL)) (-1310 (($ $ $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) 27)) (-2659 (((-549) $) 25)) (-2095 (($ $ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3405 (((-3 (-400 (-549)) "failed") $) NIL)) (-3679 (((-112) $) NIL)) (-2532 (((-400 (-549)) $) NIL)) (-3239 (($ $) NIL) (($) NIL)) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-3806 (($ $ $ $) NIL)) (-3947 (($ $ $) NIL)) (-2772 (((-112) $) NIL)) (-1271 (($ $ $) NIL)) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL)) (-2675 (((-112) $) NIL)) (-3559 (((-112) $) NIL)) (-1681 (((-3 $ "failed") $) NIL)) (-2374 (((-112) $) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3030 (($ $ $ $) NIL)) (-2863 (($ $ $) NIL)) (-4267 (((-892) (-892)) 10) (((-892)) 9)) (-3575 (($ $ $) NIL)) (-2433 (($ $) NIL)) (-4210 (($ $) NIL)) (-3697 (($ (-621 $)) NIL) (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-2950 (($ $ $) NIL)) (-3060 (($) NIL T CONST)) (-3781 (($ $) NIL)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ (-621 $)) NIL) (($ $ $) NIL)) (-4005 (($ $) NIL)) (-2121 (((-411 $) $) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3450 (((-112) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3456 (($ $) NIL) (($ $ (-747)) NIL)) (-1900 (($ $) NIL)) (-2281 (($ $) NIL)) (-2845 (((-219) $) NIL) (((-372) $) NIL) (((-863 (-549)) $) NIL) (((-525) $) NIL) (((-549) $) NIL)) (-3846 (((-834) $) NIL) (($ (-549)) 24) (($ $) NIL) (($ (-549)) 24) (((-309 $) (-309 (-549))) 18)) (-2082 (((-747)) NIL)) (-3935 (((-112) $ $) NIL)) (-3179 (($ $ $) NIL)) (-1864 (($) NIL)) (-1498 (((-112) $ $) NIL)) (-3610 (($ $ $ $) NIL)) (-3212 (($ $) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $) NIL) (($ $ (-747)) NIL)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL)))
-(((-677) (-13 (-380) (-534) (-10 -8 (-15 -4267 ((-892) (-892))) (-15 -4267 ((-892))) (-15 -3846 ((-309 $) (-309 (-549))))))) (T -677))
-((-4267 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-677)))) (-4267 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-677)))) (-3846 (*1 *2 *3) (-12 (-5 *3 (-309 (-549))) (-5 *2 (-309 (-677))) (-5 *1 (-677)))))
-(-13 (-380) (-534) (-10 -8 (-15 -4267 ((-892) (-892))) (-15 -4267 ((-892))) (-15 -3846 ((-309 $) (-309 (-549))))))
-((-2530 (((-1 |#4| |#2| |#3|) |#1| (-1143) (-1143)) 19)) (-1541 (((-1 |#4| |#2| |#3|) (-1143)) 12)))
-(((-678 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1541 ((-1 |#4| |#2| |#3|) (-1143))) (-15 -2530 ((-1 |#4| |#2| |#3|) |#1| (-1143) (-1143)))) (-594 (-525)) (-1180) (-1180) (-1180)) (T -678))
-((-2530 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1143)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-678 *3 *5 *6 *7)) (-4 *3 (-594 (-525))) (-4 *5 (-1180)) (-4 *6 (-1180)) (-4 *7 (-1180)))) (-1541 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-678 *4 *5 *6 *7)) (-4 *4 (-594 (-525))) (-4 *5 (-1180)) (-4 *6 (-1180)) (-4 *7 (-1180)))))
-(-10 -7 (-15 -1541 ((-1 |#4| |#2| |#3|) (-1143))) (-15 -2530 ((-1 |#4| |#2| |#3|) |#1| (-1143) (-1143))))
-((-3834 (((-112) $ $) NIL)) (-3309 (((-1231) $ (-747)) 14)) (-2883 (((-747) $) 12)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 18) ((|#1| $) 15) (($ |#1|) 23)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 25)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 24)))
-(((-679 |#1|) (-13 (-131) (-593 |#1|) (-10 -8 (-15 -3846 ($ |#1|)))) (-1067)) (T -679))
-((-3846 (*1 *1 *2) (-12 (-5 *1 (-679 *2)) (-4 *2 (-1067)))))
-(-13 (-131) (-593 |#1|) (-10 -8 (-15 -3846 ($ |#1|))))
-((-3307 (((-1 (-219) (-219) (-219)) |#1| (-1143) (-1143)) 34) (((-1 (-219) (-219)) |#1| (-1143)) 39)))
-(((-680 |#1|) (-10 -7 (-15 -3307 ((-1 (-219) (-219)) |#1| (-1143))) (-15 -3307 ((-1 (-219) (-219) (-219)) |#1| (-1143) (-1143)))) (-594 (-525))) (T -680))
-((-3307 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1143)) (-5 *2 (-1 (-219) (-219) (-219))) (-5 *1 (-680 *3)) (-4 *3 (-594 (-525))))) (-3307 (*1 *2 *3 *4) (-12 (-5 *4 (-1143)) (-5 *2 (-1 (-219) (-219))) (-5 *1 (-680 *3)) (-4 *3 (-594 (-525))))))
-(-10 -7 (-15 -3307 ((-1 (-219) (-219)) |#1| (-1143))) (-15 -3307 ((-1 (-219) (-219) (-219)) |#1| (-1143) (-1143))))
-((-3568 (((-1143) |#1| (-1143) (-621 (-1143))) 9) (((-1143) |#1| (-1143) (-1143) (-1143)) 12) (((-1143) |#1| (-1143) (-1143)) 11) (((-1143) |#1| (-1143)) 10)))
-(((-681 |#1|) (-10 -7 (-15 -3568 ((-1143) |#1| (-1143))) (-15 -3568 ((-1143) |#1| (-1143) (-1143))) (-15 -3568 ((-1143) |#1| (-1143) (-1143) (-1143))) (-15 -3568 ((-1143) |#1| (-1143) (-621 (-1143))))) (-594 (-525))) (T -681))
-((-3568 (*1 *2 *3 *2 *4) (-12 (-5 *4 (-621 (-1143))) (-5 *2 (-1143)) (-5 *1 (-681 *3)) (-4 *3 (-594 (-525))))) (-3568 (*1 *2 *3 *2 *2 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-681 *3)) (-4 *3 (-594 (-525))))) (-3568 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-681 *3)) (-4 *3 (-594 (-525))))) (-3568 (*1 *2 *3 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-681 *3)) (-4 *3 (-594 (-525))))))
-(-10 -7 (-15 -3568 ((-1143) |#1| (-1143))) (-15 -3568 ((-1143) |#1| (-1143) (-1143))) (-15 -3568 ((-1143) |#1| (-1143) (-1143) (-1143))) (-15 -3568 ((-1143) |#1| (-1143) (-621 (-1143)))))
-((-1566 (((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|) 9)))
-(((-682 |#1| |#2|) (-10 -7 (-15 -1566 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|))) (-1180) (-1180)) (T -682))
-((-1566 (*1 *2 *3 *4) (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4))) (-5 *1 (-682 *3 *4)) (-4 *3 (-1180)) (-4 *4 (-1180)))))
-(-10 -7 (-15 -1566 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|)))
-((-3757 (((-1 |#3| |#2|) (-1143)) 11)) (-2530 (((-1 |#3| |#2|) |#1| (-1143)) 21)))
-(((-683 |#1| |#2| |#3|) (-10 -7 (-15 -3757 ((-1 |#3| |#2|) (-1143))) (-15 -2530 ((-1 |#3| |#2|) |#1| (-1143)))) (-594 (-525)) (-1180) (-1180)) (T -683))
-((-2530 (*1 *2 *3 *4) (-12 (-5 *4 (-1143)) (-5 *2 (-1 *6 *5)) (-5 *1 (-683 *3 *5 *6)) (-4 *3 (-594 (-525))) (-4 *5 (-1180)) (-4 *6 (-1180)))) (-3757 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-1 *6 *5)) (-5 *1 (-683 *4 *5 *6)) (-4 *4 (-594 (-525))) (-4 *5 (-1180)) (-4 *6 (-1180)))))
-(-10 -7 (-15 -3757 ((-1 |#3| |#2|) (-1143))) (-15 -2530 ((-1 |#3| |#2|) |#1| (-1143))))
-((-2159 (((-3 (-621 (-1139 |#4|)) "failed") (-1139 |#4|) (-621 |#2|) (-621 (-1139 |#4|)) (-621 |#3|) (-621 |#4|) (-621 (-621 (-2 (|:| -2099 (-747)) (|:| |pcoef| |#4|)))) (-621 (-747)) (-1226 (-621 (-1139 |#3|))) |#3|) 62)) (-2030 (((-3 (-621 (-1139 |#4|)) "failed") (-1139 |#4|) (-621 |#2|) (-621 (-1139 |#3|)) (-621 |#3|) (-621 |#4|) (-621 (-747)) |#3|) 75)) (-3911 (((-3 (-621 (-1139 |#4|)) "failed") (-1139 |#4|) (-621 |#2|) (-621 |#3|) (-621 (-747)) (-621 (-1139 |#4|)) (-1226 (-621 (-1139 |#3|))) |#3|) 34)))
-(((-684 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3911 ((-3 (-621 (-1139 |#4|)) "failed") (-1139 |#4|) (-621 |#2|) (-621 |#3|) (-621 (-747)) (-621 (-1139 |#4|)) (-1226 (-621 (-1139 |#3|))) |#3|)) (-15 -2030 ((-3 (-621 (-1139 |#4|)) "failed") (-1139 |#4|) (-621 |#2|) (-621 (-1139 |#3|)) (-621 |#3|) (-621 |#4|) (-621 (-747)) |#3|)) (-15 -2159 ((-3 (-621 (-1139 |#4|)) "failed") (-1139 |#4|) (-621 |#2|) (-621 (-1139 |#4|)) (-621 |#3|) (-621 |#4|) (-621 (-621 (-2 (|:| -2099 (-747)) (|:| |pcoef| |#4|)))) (-621 (-747)) (-1226 (-621 (-1139 |#3|))) |#3|))) (-769) (-823) (-300) (-920 |#3| |#1| |#2|)) (T -684))
-((-2159 (*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10) (|partial| -12 (-5 *2 (-621 (-1139 *13))) (-5 *3 (-1139 *13)) (-5 *4 (-621 *12)) (-5 *5 (-621 *10)) (-5 *6 (-621 *13)) (-5 *7 (-621 (-621 (-2 (|:| -2099 (-747)) (|:| |pcoef| *13))))) (-5 *8 (-621 (-747))) (-5 *9 (-1226 (-621 (-1139 *10)))) (-4 *12 (-823)) (-4 *10 (-300)) (-4 *13 (-920 *10 *11 *12)) (-4 *11 (-769)) (-5 *1 (-684 *11 *12 *10 *13)))) (-2030 (*1 *2 *3 *4 *5 *6 *7 *8 *9) (|partial| -12 (-5 *4 (-621 *11)) (-5 *5 (-621 (-1139 *9))) (-5 *6 (-621 *9)) (-5 *7 (-621 *12)) (-5 *8 (-621 (-747))) (-4 *11 (-823)) (-4 *9 (-300)) (-4 *12 (-920 *9 *10 *11)) (-4 *10 (-769)) (-5 *2 (-621 (-1139 *12))) (-5 *1 (-684 *10 *11 *9 *12)) (-5 *3 (-1139 *12)))) (-3911 (*1 *2 *3 *4 *5 *6 *2 *7 *8) (|partial| -12 (-5 *2 (-621 (-1139 *11))) (-5 *3 (-1139 *11)) (-5 *4 (-621 *10)) (-5 *5 (-621 *8)) (-5 *6 (-621 (-747))) (-5 *7 (-1226 (-621 (-1139 *8)))) (-4 *10 (-823)) (-4 *8 (-300)) (-4 *11 (-920 *8 *9 *10)) (-4 *9 (-769)) (-5 *1 (-684 *9 *10 *8 *11)))))
-(-10 -7 (-15 -3911 ((-3 (-621 (-1139 |#4|)) "failed") (-1139 |#4|) (-621 |#2|) (-621 |#3|) (-621 (-747)) (-621 (-1139 |#4|)) (-1226 (-621 (-1139 |#3|))) |#3|)) (-15 -2030 ((-3 (-621 (-1139 |#4|)) "failed") (-1139 |#4|) (-621 |#2|) (-621 (-1139 |#3|)) (-621 |#3|) (-621 |#4|) (-621 (-747)) |#3|)) (-15 -2159 ((-3 (-621 (-1139 |#4|)) "failed") (-1139 |#4|) (-621 |#2|) (-621 (-1139 |#4|)) (-621 |#3|) (-621 |#4|) (-621 (-621 (-2 (|:| -2099 (-747)) (|:| |pcoef| |#4|)))) (-621 (-747)) (-1226 (-621 (-1139 |#3|))) |#3|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2070 (($ $) 39)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-2246 (($ |#1| (-747)) 37)) (-3611 (((-747) $) 41)) (-2043 ((|#1| $) 40)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3701 (((-747) $) 42)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 36 (|has| |#1| (-170)))) (-2152 ((|#1| $ (-747)) 38)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 44) (($ |#1| $) 43)))
+((-1295 (*1 *2 *1) (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-112)))) (-2839 (*1 *2 *1) (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-112)))) (-1831 (*1 *2 *1) (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-112)))) (-3752 (*1 *2 *1) (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-112)))) (-3768 (*1 *1 *2 *2) (-12 (-5 *2 (-747)) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-3944 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2411 (*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2874 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2874 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-3845 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *2)) (-4 *4 (-366 *3)) (-4 *2 (-366 *3)))) (-4235 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-4 *1 (-663 *3 *2 *4)) (-4 *2 (-366 *3)) (-4 *4 (-366 *3)))) (-4235 (*1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (-4179 (*1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (-3516 (*1 *1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (-1976 (*1 *1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (-1987 (*1 *2 *1) (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-621 (-621 *3))))) (-3339 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-621 (-549))) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2250 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-621 (-549))) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2558 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2600 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-3036 (*1 *1 *1 *2 *2 *2 *2) (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-3868 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2484 (*1 *1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (-2498 (*1 *1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (-2498 (*1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (* (*1 *1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-663 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *2 (-366 *3)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-663 *3 *2 *4)) (-4 *3 (-1018)) (-4 *2 (-366 *3)) (-4 *4 (-366 *3)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))) (-2040 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)) (-4 *2 (-541)))) (-2511 (*1 *1 *1 *2) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)) (-4 *2 (-356)))) (-3474 (*1 *1 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)) (-4 *2 (-300)))) (-3121 (*1 *2 *1) (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-4 *3 (-541)) (-5 *2 (-747)))) (-4303 (*1 *2 *1) (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-4 *3 (-541)) (-5 *2 (-747)))) (-3290 (*1 *2 *1) (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-4 *3 (-541)) (-5 *2 (-621 *5)))) (-2842 (*1 *2 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)) (|has| *2 (-6 (-4338 "*"))) (-4 *2 (-1018)))) (-4239 (*1 *2 *1) (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)) (|has| *2 (-6 (-4338 "*"))) (-4 *2 (-1018)))) (-1299 (*1 *1 *1) (|partial| -12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2)) (-4 *2 (-356)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-4 *3 (-356)))))
+(-13 (-56 |t#1| |t#2| |t#3|) (-10 -8 (-6 -4337) (-6 -4336) (-15 -1295 ((-112) $)) (-15 -2839 ((-112) $)) (-15 -1831 ((-112) $)) (-15 -3752 ((-112) $)) (-15 -3768 ($ (-747) (-747))) (-15 -3944 ($ (-621 (-621 |t#1|)))) (-15 -2411 ($ (-747) |t#1|)) (-15 -2874 ($ (-621 |t#1|))) (-15 -2874 ($ (-621 $))) (-15 -3845 ($ |t#3|)) (-15 -4235 ($ |t#2|)) (-15 -4235 ($ $)) (-15 -4179 ($ $)) (-15 -3516 ($ $ $)) (-15 -1976 ($ $ $)) (-15 -1987 ((-621 (-621 |t#1|)) $)) (-15 -3339 ($ $ (-621 (-549)) (-621 (-549)))) (-15 -2250 ($ $ (-621 (-549)) (-621 (-549)) $)) (-15 -2558 ($ $ (-549) (-549))) (-15 -2600 ($ $ (-549) (-549))) (-15 -3036 ($ $ (-549) (-549) (-549) (-549))) (-15 -3868 ($ $ (-549) (-549) $)) (-15 -2484 ($ $ $)) (-15 -2498 ($ $ $)) (-15 -2498 ($ $)) (-15 * ($ $ $)) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 * ($ (-549) $)) (-15 * (|t#3| $ |t#3|)) (-15 * (|t#2| |t#2| $)) (-15 ** ($ $ (-747))) (IF (|has| |t#1| (-541)) (-15 -2040 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-356)) (-15 -2511 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-300)) (-15 -3474 ($ $)) |%noBranch|) (IF (|has| |t#1| (-541)) (PROGN (-15 -3121 ((-747) $)) (-15 -4303 ((-747) $)) (-15 -3290 ((-621 |t#3|) $))) |%noBranch|) (IF (|has| |t#1| (-6 (-4338 "*"))) (PROGN (-15 -2842 (|t#1| $)) (-15 -4239 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-356)) (PROGN (-15 -1299 ((-3 $ "failed") $)) (-15 ** ($ $ (-549)))) |%noBranch|)))
+(((-34) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-1066) |has| |#1| (-1066)) ((-56 |#1| |#2| |#3|) . T) ((-1179) . T))
+((-3474 ((|#4| |#4|) 72 (|has| |#1| (-300)))) (-3121 (((-747) |#4|) 99 (|has| |#1| (-541)))) (-4303 (((-747) |#4|) 76 (|has| |#1| (-541)))) (-3290 (((-621 |#3|) |#4|) 83 (|has| |#1| (-541)))) (-4159 (((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|) 111 (|has| |#1| (-300)))) (-4239 ((|#1| |#4|) 35)) (-1851 (((-3 |#4| "failed") |#4|) 64 (|has| |#1| (-541)))) (-1299 (((-3 |#4| "failed") |#4|) 80 (|has| |#1| (-356)))) (-4217 ((|#4| |#4|) 68 (|has| |#1| (-541)))) (-3086 ((|#4| |#4| |#1| (-549) (-549)) 43)) (-3657 ((|#4| |#4| (-549) (-549)) 38)) (-2743 ((|#4| |#4| |#1| (-549) (-549)) 48)) (-2842 ((|#1| |#4|) 78)) (-3478 (((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) 69 (|has| |#1| (-541)))))
+(((-664 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2842 (|#1| |#4|)) (-15 -4239 (|#1| |#4|)) (-15 -3657 (|#4| |#4| (-549) (-549))) (-15 -3086 (|#4| |#4| |#1| (-549) (-549))) (-15 -2743 (|#4| |#4| |#1| (-549) (-549))) (IF (|has| |#1| (-541)) (PROGN (-15 -3121 ((-747) |#4|)) (-15 -4303 ((-747) |#4|)) (-15 -3290 ((-621 |#3|) |#4|)) (-15 -4217 (|#4| |#4|)) (-15 -1851 ((-3 |#4| "failed") |#4|)) (-15 -3478 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-300)) (PROGN (-15 -3474 (|#4| |#4|)) (-15 -4159 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-356)) (-15 -1299 ((-3 |#4| "failed") |#4|)) |%noBranch|)) (-170) (-366 |#1|) (-366 |#1|) (-663 |#1| |#2| |#3|)) (T -664))
+((-1299 (*1 *2 *2) (|partial| -12 (-4 *3 (-356)) (-4 *3 (-170)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-664 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))) (-4159 (*1 *2 *3 *3) (-12 (-4 *3 (-300)) (-4 *3 (-170)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3))) (-5 *1 (-664 *3 *4 *5 *6)) (-4 *6 (-663 *3 *4 *5)))) (-3474 (*1 *2 *2) (-12 (-4 *3 (-300)) (-4 *3 (-170)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-664 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))) (-3478 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *4 (-170)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4))) (-5 *1 (-664 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-1851 (*1 *2 *2) (|partial| -12 (-4 *3 (-541)) (-4 *3 (-170)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-664 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))) (-4217 (*1 *2 *2) (-12 (-4 *3 (-541)) (-4 *3 (-170)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-664 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))) (-3290 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *4 (-170)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-621 *6)) (-5 *1 (-664 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-4303 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *4 (-170)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-747)) (-5 *1 (-664 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-3121 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *4 (-170)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-747)) (-5 *1 (-664 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-2743 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-549)) (-4 *3 (-170)) (-4 *5 (-366 *3)) (-4 *6 (-366 *3)) (-5 *1 (-664 *3 *5 *6 *2)) (-4 *2 (-663 *3 *5 *6)))) (-3086 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-549)) (-4 *3 (-170)) (-4 *5 (-366 *3)) (-4 *6 (-366 *3)) (-5 *1 (-664 *3 *5 *6 *2)) (-4 *2 (-663 *3 *5 *6)))) (-3657 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-549)) (-4 *4 (-170)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *1 (-664 *4 *5 *6 *2)) (-4 *2 (-663 *4 *5 *6)))) (-4239 (*1 *2 *3) (-12 (-4 *4 (-366 *2)) (-4 *5 (-366 *2)) (-4 *2 (-170)) (-5 *1 (-664 *2 *4 *5 *3)) (-4 *3 (-663 *2 *4 *5)))) (-2842 (*1 *2 *3) (-12 (-4 *4 (-366 *2)) (-4 *5 (-366 *2)) (-4 *2 (-170)) (-5 *1 (-664 *2 *4 *5 *3)) (-4 *3 (-663 *2 *4 *5)))))
+(-10 -7 (-15 -2842 (|#1| |#4|)) (-15 -4239 (|#1| |#4|)) (-15 -3657 (|#4| |#4| (-549) (-549))) (-15 -3086 (|#4| |#4| |#1| (-549) (-549))) (-15 -2743 (|#4| |#4| |#1| (-549) (-549))) (IF (|has| |#1| (-541)) (PROGN (-15 -3121 ((-747) |#4|)) (-15 -4303 ((-747) |#4|)) (-15 -3290 ((-621 |#3|) |#4|)) (-15 -4217 (|#4| |#4|)) (-15 -1851 ((-3 |#4| "failed") |#4|)) (-15 -3478 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-300)) (PROGN (-15 -3474 (|#4| |#4|)) (-15 -4159 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-356)) (-15 -1299 ((-3 |#4| "failed") |#4|)) |%noBranch|))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3768 (($ (-747) (-747)) 47)) (-1976 (($ $ $) NIL)) (-4235 (($ (-1225 |#1|)) NIL) (($ $) NIL)) (-1831 (((-112) $) NIL)) (-2558 (($ $ (-549) (-549)) 12)) (-2600 (($ $ (-549) (-549)) NIL)) (-3036 (($ $ (-549) (-549) (-549) (-549)) NIL)) (-4179 (($ $) NIL)) (-1295 (((-112) $) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-3868 (($ $ (-549) (-549) $) NIL)) (-2250 ((|#1| $ (-549) (-549) |#1|) NIL) (($ $ (-621 (-549)) (-621 (-549)) $) NIL)) (-1389 (($ $ (-549) (-1225 |#1|)) NIL)) (-1843 (($ $ (-549) (-1225 |#1|)) NIL)) (-2411 (($ (-747) |#1|) 22)) (-3034 (($) NIL T CONST)) (-3474 (($ $) 31 (|has| |#1| (-300)))) (-3437 (((-1225 |#1|) $ (-549)) NIL)) (-3121 (((-747) $) 33 (|has| |#1| (-541)))) (-1875 ((|#1| $ (-549) (-549) |#1|) 51)) (-1807 ((|#1| $ (-549) (-549)) NIL)) (-2987 (((-621 |#1|) $) NIL)) (-4303 (((-747) $) 35 (|has| |#1| (-541)))) (-3290 (((-621 (-1225 |#1|)) $) 38 (|has| |#1| (-541)))) (-2140 (((-747) $) 20)) (-3743 (($ (-747) (-747) |#1|) 16)) (-2153 (((-747) $) 21)) (-1777 (((-112) $ (-747)) NIL)) (-4239 ((|#1| $) 29 (|has| |#1| (-6 (-4338 "*"))))) (-3057 (((-549) $) 9)) (-3861 (((-549) $) 10)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1766 (((-549) $) 11)) (-2813 (((-549) $) 48)) (-3944 (($ (-621 (-621 |#1|))) NIL)) (-1864 (($ (-1 |#1| |#1|) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-1987 (((-621 (-621 |#1|)) $) 60)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-1299 (((-3 $ "failed") $) 45 (|has| |#1| (-356)))) (-3516 (($ $ $) NIL)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-1943 (($ $ |#1|) NIL)) (-2040 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541)))) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#1| $ (-549) (-549)) NIL) ((|#1| $ (-549) (-549) |#1|) NIL) (($ $ (-621 (-549)) (-621 (-549))) NIL)) (-2874 (($ (-621 |#1|)) NIL) (($ (-621 $)) NIL) (($ (-1225 |#1|)) 52)) (-2839 (((-112) $) NIL)) (-2842 ((|#1| $) 27 (|has| |#1| (-6 (-4338 "*"))))) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) NIL)) (-2843 (((-525) $) 64 (|has| |#1| (-594 (-525))))) (-1476 (((-1225 |#1|) $ (-549)) NIL)) (-3845 (($ (-1225 |#1|)) NIL) (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-3752 (((-112) $) NIL)) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2498 (($ $ $) NIL) (($ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-747)) 23) (($ $ (-549)) 46 (|has| |#1| (-356)))) (* (($ $ $) 13) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-549) $) NIL) (((-1225 |#1|) $ (-1225 |#1|)) NIL) (((-1225 |#1|) (-1225 |#1|) $) NIL)) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-665 |#1|) (-13 (-663 |#1| (-1225 |#1|) (-1225 |#1|)) (-10 -8 (-15 -2874 ($ (-1225 |#1|))) (IF (|has| |#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (IF (|has| |#1| (-356)) (-15 -1299 ((-3 $ "failed") $)) |%noBranch|))) (-1018)) (T -665))
+((-1299 (*1 *1 *1) (|partial| -12 (-5 *1 (-665 *2)) (-4 *2 (-356)) (-4 *2 (-1018)))) (-2874 (*1 *1 *2) (-12 (-5 *2 (-1225 *3)) (-4 *3 (-1018)) (-5 *1 (-665 *3)))))
+(-13 (-663 |#1| (-1225 |#1|) (-1225 |#1|)) (-10 -8 (-15 -2874 ($ (-1225 |#1|))) (IF (|has| |#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (IF (|has| |#1| (-356)) (-15 -1299 ((-3 $ "failed") $)) |%noBranch|)))
+((-3434 (((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|)) 25)) (-1783 (((-665 |#1|) (-665 |#1|) (-665 |#1|) |#1|) 21)) (-2078 (((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|) (-747)) 26)) (-2222 (((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|)) 14)) (-4312 (((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|)) 18) (((-665 |#1|) (-665 |#1|) (-665 |#1|)) 16)) (-2219 (((-665 |#1|) (-665 |#1|) |#1| (-665 |#1|)) 20)) (-2736 (((-665 |#1|) (-665 |#1|) (-665 |#1|)) 12)) (** (((-665 |#1|) (-665 |#1|) (-747)) 30)))
+(((-666 |#1|) (-10 -7 (-15 -2736 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -2222 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -4312 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -4312 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -2219 ((-665 |#1|) (-665 |#1|) |#1| (-665 |#1|))) (-15 -1783 ((-665 |#1|) (-665 |#1|) (-665 |#1|) |#1|)) (-15 -3434 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -2078 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|) (-747))) (-15 ** ((-665 |#1|) (-665 |#1|) (-747)))) (-1018)) (T -666))
+((** (*1 *2 *2 *3) (-12 (-5 *2 (-665 *4)) (-5 *3 (-747)) (-4 *4 (-1018)) (-5 *1 (-666 *4)))) (-2078 (*1 *2 *2 *2 *2 *2 *3) (-12 (-5 *2 (-665 *4)) (-5 *3 (-747)) (-4 *4 (-1018)) (-5 *1 (-666 *4)))) (-3434 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))) (-1783 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))) (-2219 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))) (-4312 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))) (-4312 (*1 *2 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))) (-2222 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))) (-2736 (*1 *2 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))))
+(-10 -7 (-15 -2736 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -2222 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -4312 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -4312 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -2219 ((-665 |#1|) (-665 |#1|) |#1| (-665 |#1|))) (-15 -1783 ((-665 |#1|) (-665 |#1|) (-665 |#1|) |#1|)) (-15 -3434 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -2078 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|) (-665 |#1|) (-747))) (-15 ** ((-665 |#1|) (-665 |#1|) (-747))))
+((-4094 (($) 8 T CONST)) (-3845 (((-834) $) 21) (($ |#1|) 9) ((|#1| $) 10)) (-3263 (((-112) $ (|[\|\|]| |#1|)) 14) (((-112) $ (|[\|\|]| -4094)) 16)) (-2319 ((|#1| $) 11)))
+(((-667 |#1|) (-13 (-1220) (-593 (-834)) (-10 -8 (-15 -3263 ((-112) $ (|[\|\|]| |#1|))) (-15 -3263 ((-112) $ (|[\|\|]| -4094))) (-15 -3845 ($ |#1|)) (-15 -3845 (|#1| $)) (-15 -2319 (|#1| $)) (-15 -4094 ($) -2587))) (-593 (-834))) (T -667))
+((-3263 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| *4)) (-4 *4 (-593 (-834))) (-5 *2 (-112)) (-5 *1 (-667 *4)))) (-3263 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -4094)) (-5 *2 (-112)) (-5 *1 (-667 *4)) (-4 *4 (-593 (-834))))) (-3845 (*1 *1 *2) (-12 (-5 *1 (-667 *2)) (-4 *2 (-593 (-834))))) (-3845 (*1 *2 *1) (-12 (-5 *1 (-667 *2)) (-4 *2 (-593 (-834))))) (-2319 (*1 *2 *1) (-12 (-5 *1 (-667 *2)) (-4 *2 (-593 (-834))))) (-4094 (*1 *1) (-12 (-5 *1 (-667 *2)) (-4 *2 (-593 (-834))))))
+(-13 (-1220) (-593 (-834)) (-10 -8 (-15 -3263 ((-112) $ (|[\|\|]| |#1|))) (-15 -3263 ((-112) $ (|[\|\|]| -4094))) (-15 -3845 ($ |#1|)) (-15 -3845 (|#1| $)) (-15 -2319 (|#1| $)) (-15 -4094 ($) -2587)))
+((-4189 ((|#2| |#2| |#4|) 25)) (-2306 (((-665 |#2|) |#3| |#4|) 31)) (-3564 (((-665 |#2|) |#2| |#4|) 30)) (-2755 (((-1225 |#2|) |#2| |#4|) 16)) (-1894 ((|#2| |#3| |#4|) 24)) (-3793 (((-665 |#2|) |#3| |#4| (-747) (-747)) 38)) (-2971 (((-665 |#2|) |#2| |#4| (-747)) 37)))
+(((-668 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2755 ((-1225 |#2|) |#2| |#4|)) (-15 -1894 (|#2| |#3| |#4|)) (-15 -4189 (|#2| |#2| |#4|)) (-15 -3564 ((-665 |#2|) |#2| |#4|)) (-15 -2971 ((-665 |#2|) |#2| |#4| (-747))) (-15 -2306 ((-665 |#2|) |#3| |#4|)) (-15 -3793 ((-665 |#2|) |#3| |#4| (-747) (-747)))) (-1066) (-871 |#1|) (-366 |#2|) (-13 (-366 |#1|) (-10 -7 (-6 -4336)))) (T -668))
+((-3793 (*1 *2 *3 *4 *5 *5) (-12 (-5 *5 (-747)) (-4 *6 (-1066)) (-4 *7 (-871 *6)) (-5 *2 (-665 *7)) (-5 *1 (-668 *6 *7 *3 *4)) (-4 *3 (-366 *7)) (-4 *4 (-13 (-366 *6) (-10 -7 (-6 -4336)))))) (-2306 (*1 *2 *3 *4) (-12 (-4 *5 (-1066)) (-4 *6 (-871 *5)) (-5 *2 (-665 *6)) (-5 *1 (-668 *5 *6 *3 *4)) (-4 *3 (-366 *6)) (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4336)))))) (-2971 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-747)) (-4 *6 (-1066)) (-4 *3 (-871 *6)) (-5 *2 (-665 *3)) (-5 *1 (-668 *6 *3 *7 *4)) (-4 *7 (-366 *3)) (-4 *4 (-13 (-366 *6) (-10 -7 (-6 -4336)))))) (-3564 (*1 *2 *3 *4) (-12 (-4 *5 (-1066)) (-4 *3 (-871 *5)) (-5 *2 (-665 *3)) (-5 *1 (-668 *5 *3 *6 *4)) (-4 *6 (-366 *3)) (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4336)))))) (-4189 (*1 *2 *2 *3) (-12 (-4 *4 (-1066)) (-4 *2 (-871 *4)) (-5 *1 (-668 *4 *2 *5 *3)) (-4 *5 (-366 *2)) (-4 *3 (-13 (-366 *4) (-10 -7 (-6 -4336)))))) (-1894 (*1 *2 *3 *4) (-12 (-4 *5 (-1066)) (-4 *2 (-871 *5)) (-5 *1 (-668 *5 *2 *3 *4)) (-4 *3 (-366 *2)) (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4336)))))) (-2755 (*1 *2 *3 *4) (-12 (-4 *5 (-1066)) (-4 *3 (-871 *5)) (-5 *2 (-1225 *3)) (-5 *1 (-668 *5 *3 *6 *4)) (-4 *6 (-366 *3)) (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4336)))))))
+(-10 -7 (-15 -2755 ((-1225 |#2|) |#2| |#4|)) (-15 -1894 (|#2| |#3| |#4|)) (-15 -4189 (|#2| |#2| |#4|)) (-15 -3564 ((-665 |#2|) |#2| |#4|)) (-15 -2971 ((-665 |#2|) |#2| |#4| (-747))) (-15 -2306 ((-665 |#2|) |#3| |#4|)) (-15 -3793 ((-665 |#2|) |#3| |#4| (-747) (-747))))
+((-1758 (((-2 (|:| |num| (-665 |#1|)) (|:| |den| |#1|)) (-665 |#2|)) 20)) (-3727 ((|#1| (-665 |#2|)) 9)) (-2308 (((-665 |#1|) (-665 |#2|)) 18)))
+(((-669 |#1| |#2|) (-10 -7 (-15 -3727 (|#1| (-665 |#2|))) (-15 -2308 ((-665 |#1|) (-665 |#2|))) (-15 -1758 ((-2 (|:| |num| (-665 |#1|)) (|:| |den| |#1|)) (-665 |#2|)))) (-541) (-963 |#1|)) (T -669))
+((-1758 (*1 *2 *3) (-12 (-5 *3 (-665 *5)) (-4 *5 (-963 *4)) (-4 *4 (-541)) (-5 *2 (-2 (|:| |num| (-665 *4)) (|:| |den| *4))) (-5 *1 (-669 *4 *5)))) (-2308 (*1 *2 *3) (-12 (-5 *3 (-665 *5)) (-4 *5 (-963 *4)) (-4 *4 (-541)) (-5 *2 (-665 *4)) (-5 *1 (-669 *4 *5)))) (-3727 (*1 *2 *3) (-12 (-5 *3 (-665 *4)) (-4 *4 (-963 *2)) (-4 *2 (-541)) (-5 *1 (-669 *2 *4)))))
+(-10 -7 (-15 -3727 (|#1| (-665 |#2|))) (-15 -2308 ((-665 |#1|) (-665 |#2|))) (-15 -1758 ((-2 (|:| |num| (-665 |#1|)) (|:| |den| |#1|)) (-665 |#2|))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-1789 (((-665 (-675))) NIL) (((-665 (-675)) (-1225 $)) NIL)) (-2904 (((-675) $) NIL)) (-1662 (($ $) NIL (|has| (-675) (-1164)))) (-1510 (($ $) NIL (|has| (-675) (-1164)))) (-1597 (((-1152 (-892) (-747)) (-549)) NIL (|has| (-675) (-342)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (-12 (|has| (-675) (-300)) (|has| (-675) (-880))))) (-3239 (($ $) NIL (-1536 (-12 (|has| (-675) (-300)) (|has| (-675) (-880))) (|has| (-675) (-356))))) (-2620 (((-411 $) $) NIL (-1536 (-12 (|has| (-675) (-300)) (|has| (-675) (-880))) (|has| (-675) (-356))))) (-2132 (($ $) NIL (-12 (|has| (-675) (-973)) (|has| (-675) (-1164))))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (-12 (|has| (-675) (-300)) (|has| (-675) (-880))))) (-2680 (((-112) $ $) NIL (|has| (-675) (-300)))) (-3614 (((-747)) NIL (|has| (-675) (-361)))) (-1638 (($ $) NIL (|has| (-675) (-1164)))) (-1483 (($ $) NIL (|has| (-675) (-1164)))) (-1684 (($ $) NIL (|has| (-675) (-1164)))) (-1538 (($ $) NIL (|has| (-675) (-1164)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL) (((-3 (-675) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-675) (-1009 (-400 (-549)))))) (-2657 (((-549) $) NIL) (((-675) $) NIL) (((-400 (-549)) $) NIL (|has| (-675) (-1009 (-400 (-549)))))) (-2397 (($ (-1225 (-675))) NIL) (($ (-1225 (-675)) (-1225 $)) NIL)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-675) (-342)))) (-2091 (($ $ $) NIL (|has| (-675) (-300)))) (-1408 (((-665 (-675)) $) NIL) (((-665 (-675)) $ (-1225 $)) NIL)) (-3446 (((-665 (-675)) (-665 $)) NIL) (((-2 (|:| -3697 (-665 (-675))) (|:| |vec| (-1225 (-675)))) (-665 $) (-1225 $)) NIL) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| (-675) (-617 (-549)))) (((-665 (-549)) (-665 $)) NIL (|has| (-675) (-617 (-549))))) (-2556 (((-3 $ "failed") (-400 (-1138 (-675)))) NIL (|has| (-675) (-356))) (($ (-1138 (-675))) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-2146 (((-675) $) 29)) (-1531 (((-3 (-400 (-549)) "failed") $) NIL (|has| (-675) (-534)))) (-3945 (((-112) $) NIL (|has| (-675) (-534)))) (-1390 (((-400 (-549)) $) NIL (|has| (-675) (-534)))) (-3121 (((-892)) NIL)) (-3237 (($) NIL (|has| (-675) (-361)))) (-2065 (($ $ $) NIL (|has| (-675) (-300)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| (-675) (-300)))) (-1545 (($) NIL (|has| (-675) (-342)))) (-1315 (((-112) $) NIL (|has| (-675) (-342)))) (-3517 (($ $) NIL (|has| (-675) (-342))) (($ $ (-747)) NIL (|has| (-675) (-342)))) (-1464 (((-112) $) NIL (-1536 (-12 (|has| (-675) (-300)) (|has| (-675) (-880))) (|has| (-675) (-356))))) (-3896 (((-2 (|:| |r| (-675)) (|:| |phi| (-675))) $) NIL (-12 (|has| (-675) (-1027)) (|has| (-675) (-1164))))) (-1425 (($) NIL (|has| (-675) (-1164)))) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| (-675) (-857 (-372)))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| (-675) (-857 (-549))))) (-2729 (((-809 (-892)) $) NIL (|has| (-675) (-342))) (((-892) $) NIL (|has| (-675) (-342)))) (-2297 (((-112) $) NIL)) (-3621 (($ $ (-549)) NIL (-12 (|has| (-675) (-973)) (|has| (-675) (-1164))))) (-2469 (((-675) $) NIL)) (-2964 (((-3 $ "failed") $) NIL (|has| (-675) (-342)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| (-675) (-300)))) (-3514 (((-1138 (-675)) $) NIL (|has| (-675) (-356)))) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-2795 (($ (-1 (-675) (-675)) $) NIL)) (-3309 (((-892) $) NIL (|has| (-675) (-361)))) (-3631 (($ $) NIL (|has| (-675) (-1164)))) (-2545 (((-1138 (-675)) $) NIL)) (-3696 (($ (-621 $)) NIL (|has| (-675) (-300))) (($ $ $) NIL (|has| (-675) (-300)))) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL (|has| (-675) (-356)))) (-3059 (($) NIL (|has| (-675) (-342)) CONST)) (-3494 (($ (-892)) NIL (|has| (-675) (-361)))) (-4015 (($) NIL)) (-2158 (((-675) $) 31)) (-3988 (((-1086) $) NIL)) (-4247 (($) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| (-675) (-300)))) (-3726 (($ (-621 $)) NIL (|has| (-675) (-300))) (($ $ $) NIL (|has| (-675) (-300)))) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) NIL (|has| (-675) (-342)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (-12 (|has| (-675) (-300)) (|has| (-675) (-880))))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (-12 (|has| (-675) (-300)) (|has| (-675) (-880))))) (-2119 (((-411 $) $) NIL (-1536 (-12 (|has| (-675) (-300)) (|has| (-675) (-880))) (|has| (-675) (-356))))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-675) (-300))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| (-675) (-300)))) (-2040 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ (-675)) NIL (|has| (-675) (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| (-675) (-300)))) (-2717 (($ $) NIL (|has| (-675) (-1164)))) (-2684 (($ $ (-1142) (-675)) NIL (|has| (-675) (-505 (-1142) (-675)))) (($ $ (-621 (-1142)) (-621 (-675))) NIL (|has| (-675) (-505 (-1142) (-675)))) (($ $ (-621 (-287 (-675)))) NIL (|has| (-675) (-302 (-675)))) (($ $ (-287 (-675))) NIL (|has| (-675) (-302 (-675)))) (($ $ (-675) (-675)) NIL (|has| (-675) (-302 (-675)))) (($ $ (-621 (-675)) (-621 (-675))) NIL (|has| (-675) (-302 (-675))))) (-1335 (((-747) $) NIL (|has| (-675) (-300)))) (-3339 (($ $ (-675)) NIL (|has| (-675) (-279 (-675) (-675))))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| (-675) (-300)))) (-2740 (((-675)) NIL) (((-675) (-1225 $)) NIL)) (-3189 (((-3 (-747) "failed") $ $) NIL (|has| (-675) (-342))) (((-747) $) NIL (|has| (-675) (-342)))) (-3455 (($ $ (-1 (-675) (-675))) NIL) (($ $ (-1 (-675) (-675)) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| (-675) (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| (-675) (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| (-675) (-871 (-1142)))) (($ $ (-1142)) NIL (|has| (-675) (-871 (-1142)))) (($ $ (-747)) NIL (|has| (-675) (-227))) (($ $) NIL (|has| (-675) (-227)))) (-2381 (((-665 (-675)) (-1225 $) (-1 (-675) (-675))) NIL (|has| (-675) (-356)))) (-1262 (((-1138 (-675))) NIL)) (-1696 (($ $) NIL (|has| (-675) (-1164)))) (-1551 (($ $) NIL (|has| (-675) (-1164)))) (-2950 (($) NIL (|has| (-675) (-342)))) (-1673 (($ $) NIL (|has| (-675) (-1164)))) (-1525 (($ $) NIL (|has| (-675) (-1164)))) (-1648 (($ $) NIL (|has| (-675) (-1164)))) (-1500 (($ $) NIL (|has| (-675) (-1164)))) (-1981 (((-665 (-675)) (-1225 $)) NIL) (((-1225 (-675)) $) NIL) (((-665 (-675)) (-1225 $) (-1225 $)) NIL) (((-1225 (-675)) $ (-1225 $)) NIL)) (-2843 (((-525) $) NIL (|has| (-675) (-594 (-525)))) (((-167 (-219)) $) NIL (|has| (-675) (-993))) (((-167 (-372)) $) NIL (|has| (-675) (-993))) (((-863 (-372)) $) NIL (|has| (-675) (-594 (-863 (-372))))) (((-863 (-549)) $) NIL (|has| (-675) (-594 (-863 (-549))))) (($ (-1138 (-675))) NIL) (((-1138 (-675)) $) NIL) (($ (-1225 (-675))) NIL) (((-1225 (-675)) $) NIL)) (-1795 (($ $) NIL)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-1536 (-12 (|has| (-675) (-300)) (|has| $ (-143)) (|has| (-675) (-880))) (|has| (-675) (-342))))) (-3409 (($ (-675) (-675)) 12)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-549)) NIL) (($ (-675)) NIL) (($ (-167 (-372))) 13) (($ (-167 (-549))) 19) (($ (-167 (-675))) 28) (($ (-167 (-677))) 25) (((-167 (-372)) $) 33) (($ (-400 (-549))) NIL (-1536 (|has| (-675) (-1009 (-400 (-549)))) (|has| (-675) (-356))))) (-2343 (($ $) NIL (|has| (-675) (-342))) (((-3 $ "failed") $) NIL (-1536 (-12 (|has| (-675) (-300)) (|has| $ (-143)) (|has| (-675) (-880))) (|has| (-675) (-143))))) (-4019 (((-1138 (-675)) $) NIL)) (-2371 (((-747)) NIL)) (-2619 (((-1225 $)) NIL)) (-1731 (($ $) NIL (|has| (-675) (-1164)))) (-1585 (($ $) NIL (|has| (-675) (-1164)))) (-2441 (((-112) $ $) NIL)) (-1708 (($ $) NIL (|has| (-675) (-1164)))) (-1562 (($ $) NIL (|has| (-675) (-1164)))) (-1753 (($ $) NIL (|has| (-675) (-1164)))) (-1611 (($ $) NIL (|has| (-675) (-1164)))) (-2058 (((-675) $) NIL (|has| (-675) (-1164)))) (-1932 (($ $) NIL (|has| (-675) (-1164)))) (-1625 (($ $) NIL (|has| (-675) (-1164)))) (-1743 (($ $) NIL (|has| (-675) (-1164)))) (-1598 (($ $) NIL (|has| (-675) (-1164)))) (-1719 (($ $) NIL (|has| (-675) (-1164)))) (-1575 (($ $) NIL (|has| (-675) (-1164)))) (-2199 (($ $) NIL (|has| (-675) (-1027)))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $ (-1 (-675) (-675))) NIL) (($ $ (-1 (-675) (-675)) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| (-675) (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| (-675) (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| (-675) (-871 (-1142)))) (($ $ (-1142)) NIL (|has| (-675) (-871 (-1142)))) (($ $ (-747)) NIL (|has| (-675) (-227))) (($ $) NIL (|has| (-675) (-227)))) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) NIL)) (-2511 (($ $ $) NIL (|has| (-675) (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ $) NIL (|has| (-675) (-1164))) (($ $ (-400 (-549))) NIL (-12 (|has| (-675) (-973)) (|has| (-675) (-1164)))) (($ $ (-549)) NIL (|has| (-675) (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ (-675) $) NIL) (($ $ (-675)) NIL) (($ (-400 (-549)) $) NIL (|has| (-675) (-356))) (($ $ (-400 (-549))) NIL (|has| (-675) (-356)))))
+(((-670) (-13 (-380) (-164 (-675)) (-10 -8 (-15 -3845 ($ (-167 (-372)))) (-15 -3845 ($ (-167 (-549)))) (-15 -3845 ($ (-167 (-675)))) (-15 -3845 ($ (-167 (-677)))) (-15 -3845 ((-167 (-372)) $))))) (T -670))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-167 (-372))) (-5 *1 (-670)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-167 (-549))) (-5 *1 (-670)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-167 (-675))) (-5 *1 (-670)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-167 (-677))) (-5 *1 (-670)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-167 (-372))) (-5 *1 (-670)))))
+(-13 (-380) (-164 (-675)) (-10 -8 (-15 -3845 ($ (-167 (-372)))) (-15 -3845 ($ (-167 (-549)))) (-15 -3845 ($ (-167 (-675)))) (-15 -3845 ($ (-167 (-677)))) (-15 -3845 ((-167 (-372)) $))))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-2850 (((-112) $ (-747)) 8)) (-3827 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4336)))) (-3034 (($) 7 T CONST)) (-3469 (($ $) 62)) (-3675 (($ $) 58 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3546 (($ |#1| $) 47 (|has| $ (-6 -4336))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4336)))) (-3812 (($ |#1| $) 57 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4336)))) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) 9)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-2548 ((|#1| $) 39)) (-1799 (($ |#1| $) 40) (($ |#1| $ (-747)) 63)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3536 ((|#1| $) 41)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-1359 (((-621 (-2 (|:| -1791 |#1|) (|:| -3997 (-747)))) $) 61)) (-3226 (($) 49) (($ (-621 |#1|)) 48)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-2843 (((-525) $) 59 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 50)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-4213 (($ (-621 |#1|)) 42)) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-671 |#1|) (-138) (-1066)) (T -671))
+((-1799 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *1 (-671 *2)) (-4 *2 (-1066)))) (-3469 (*1 *1 *1) (-12 (-4 *1 (-671 *2)) (-4 *2 (-1066)))) (-1359 (*1 *2 *1) (-12 (-4 *1 (-671 *3)) (-4 *3 (-1066)) (-5 *2 (-621 (-2 (|:| -1791 *3) (|:| -3997 (-747))))))))
+(-13 (-229 |t#1|) (-10 -8 (-15 -1799 ($ |t#1| $ (-747))) (-15 -3469 ($ $)) (-15 -1359 ((-621 (-2 (|:| -1791 |t#1|) (|:| -3997 (-747)))) $))))
+(((-34) . T) ((-106 |#1|) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-229 |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-1066) |has| |#1| (-1066)) ((-1179) . T))
+((-1892 (((-621 |#1|) (-621 (-2 (|:| -2119 |#1|) (|:| -3977 (-549)))) (-549)) 47)) (-4092 ((|#1| |#1| (-549)) 46)) (-3726 ((|#1| |#1| |#1| (-549)) 36)) (-2119 (((-621 |#1|) |#1| (-549)) 39)) (-4133 ((|#1| |#1| (-549) |#1| (-549)) 32)) (-3633 (((-621 (-2 (|:| -2119 |#1|) (|:| -3977 (-549)))) |#1| (-549)) 45)))
+(((-672 |#1|) (-10 -7 (-15 -3726 (|#1| |#1| |#1| (-549))) (-15 -4092 (|#1| |#1| (-549))) (-15 -2119 ((-621 |#1|) |#1| (-549))) (-15 -3633 ((-621 (-2 (|:| -2119 |#1|) (|:| -3977 (-549)))) |#1| (-549))) (-15 -1892 ((-621 |#1|) (-621 (-2 (|:| -2119 |#1|) (|:| -3977 (-549)))) (-549))) (-15 -4133 (|#1| |#1| (-549) |#1| (-549)))) (-1201 (-549))) (T -672))
+((-4133 (*1 *2 *2 *3 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-672 *2)) (-4 *2 (-1201 *3)))) (-1892 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-2 (|:| -2119 *5) (|:| -3977 (-549))))) (-5 *4 (-549)) (-4 *5 (-1201 *4)) (-5 *2 (-621 *5)) (-5 *1 (-672 *5)))) (-3633 (*1 *2 *3 *4) (-12 (-5 *4 (-549)) (-5 *2 (-621 (-2 (|:| -2119 *3) (|:| -3977 *4)))) (-5 *1 (-672 *3)) (-4 *3 (-1201 *4)))) (-2119 (*1 *2 *3 *4) (-12 (-5 *4 (-549)) (-5 *2 (-621 *3)) (-5 *1 (-672 *3)) (-4 *3 (-1201 *4)))) (-4092 (*1 *2 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-672 *2)) (-4 *2 (-1201 *3)))) (-3726 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-672 *2)) (-4 *2 (-1201 *3)))))
+(-10 -7 (-15 -3726 (|#1| |#1| |#1| (-549))) (-15 -4092 (|#1| |#1| (-549))) (-15 -2119 ((-621 |#1|) |#1| (-549))) (-15 -3633 ((-621 (-2 (|:| -2119 |#1|) (|:| -3977 (-549)))) |#1| (-549))) (-15 -1892 ((-621 |#1|) (-621 (-2 (|:| -2119 |#1|) (|:| -3977 (-549)))) (-549))) (-15 -4133 (|#1| |#1| (-549) |#1| (-549))))
+((-3451 (((-1 (-914 (-219)) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219) (-219))) 17)) (-2858 (((-1099 (-219)) (-1099 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-219)) (-1060 (-219)) (-621 (-256))) 40) (((-1099 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-219)) (-1060 (-219)) (-621 (-256))) 42) (((-1099 (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-3 (-1 (-219) (-219) (-219) (-219)) "undefined") (-1060 (-219)) (-1060 (-219)) (-621 (-256))) 44)) (-2637 (((-1099 (-219)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1060 (-219)) (-621 (-256))) NIL)) (-3269 (((-1099 (-219)) (-1 (-219) (-219) (-219)) (-3 (-1 (-219) (-219) (-219) (-219)) "undefined") (-1060 (-219)) (-1060 (-219)) (-621 (-256))) 45)))
+(((-673) (-10 -7 (-15 -2858 ((-1099 (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-3 (-1 (-219) (-219) (-219) (-219)) "undefined") (-1060 (-219)) (-1060 (-219)) (-621 (-256)))) (-15 -2858 ((-1099 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-219)) (-1060 (-219)) (-621 (-256)))) (-15 -2858 ((-1099 (-219)) (-1099 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-219)) (-1060 (-219)) (-621 (-256)))) (-15 -3269 ((-1099 (-219)) (-1 (-219) (-219) (-219)) (-3 (-1 (-219) (-219) (-219) (-219)) "undefined") (-1060 (-219)) (-1060 (-219)) (-621 (-256)))) (-15 -2637 ((-1099 (-219)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1060 (-219)) (-621 (-256)))) (-15 -3451 ((-1 (-914 (-219)) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219) (-219)))))) (T -673))
+((-3451 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1 (-219) (-219) (-219) (-219))) (-5 *2 (-1 (-914 (-219)) (-219) (-219))) (-5 *1 (-673)))) (-2637 (*1 *2 *3 *3 *3 *4 *5 *6) (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219))) (-5 *5 (-1060 (-219))) (-5 *6 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-673)))) (-3269 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-3 (-1 (-219) (-219) (-219) (-219)) "undefined")) (-5 *5 (-1060 (-219))) (-5 *6 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-673)))) (-2858 (*1 *2 *2 *3 *4 *4 *5) (-12 (-5 *2 (-1099 (-219))) (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1060 (-219))) (-5 *5 (-621 (-256))) (-5 *1 (-673)))) (-2858 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1060 (-219))) (-5 *5 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-673)))) (-2858 (*1 *2 *3 *3 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-3 (-1 (-219) (-219) (-219) (-219)) "undefined")) (-5 *5 (-1060 (-219))) (-5 *6 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-673)))))
+(-10 -7 (-15 -2858 ((-1099 (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-3 (-1 (-219) (-219) (-219) (-219)) "undefined") (-1060 (-219)) (-1060 (-219)) (-621 (-256)))) (-15 -2858 ((-1099 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-219)) (-1060 (-219)) (-621 (-256)))) (-15 -2858 ((-1099 (-219)) (-1099 (-219)) (-1 (-914 (-219)) (-219) (-219)) (-1060 (-219)) (-1060 (-219)) (-621 (-256)))) (-15 -3269 ((-1099 (-219)) (-1 (-219) (-219) (-219)) (-3 (-1 (-219) (-219) (-219) (-219)) "undefined") (-1060 (-219)) (-1060 (-219)) (-621 (-256)))) (-15 -2637 ((-1099 (-219)) (-309 (-549)) (-309 (-549)) (-309 (-549)) (-1 (-219) (-219)) (-1060 (-219)) (-621 (-256)))) (-15 -3451 ((-1 (-914 (-219)) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219)) (-1 (-219) (-219) (-219) (-219)))))
+((-2119 (((-411 (-1138 |#4|)) (-1138 |#4|)) 73) (((-411 |#4|) |#4|) 221)))
+(((-674 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2119 ((-411 |#4|) |#4|)) (-15 -2119 ((-411 (-1138 |#4|)) (-1138 |#4|)))) (-823) (-769) (-342) (-920 |#3| |#2| |#1|)) (T -674))
+((-2119 (*1 *2 *3) (-12 (-4 *4 (-823)) (-4 *5 (-769)) (-4 *6 (-342)) (-4 *7 (-920 *6 *5 *4)) (-5 *2 (-411 (-1138 *7))) (-5 *1 (-674 *4 *5 *6 *7)) (-5 *3 (-1138 *7)))) (-2119 (*1 *2 *3) (-12 (-4 *4 (-823)) (-4 *5 (-769)) (-4 *6 (-342)) (-5 *2 (-411 *3)) (-5 *1 (-674 *4 *5 *6 *3)) (-4 *3 (-920 *6 *5 *4)))))
+(-10 -7 (-15 -2119 ((-411 |#4|) |#4|)) (-15 -2119 ((-411 (-1138 |#4|)) (-1138 |#4|))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 84)) (-3833 (((-549) $) 30)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-3691 (($ $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2132 (($ $) NIL)) (-2680 (((-112) $ $) NIL)) (-1741 (((-549) $) NIL)) (-3034 (($) NIL T CONST)) (-2468 (($ $) NIL)) (-2712 (((-3 (-549) "failed") $) 73) (((-3 (-400 (-549)) "failed") $) 26) (((-3 (-372) "failed") $) 70)) (-2657 (((-549) $) 75) (((-400 (-549)) $) 67) (((-372) $) 68)) (-2091 (($ $ $) 96)) (-2612 (((-3 $ "failed") $) 87)) (-2065 (($ $ $) 95)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-3234 (((-892)) 77) (((-892) (-892)) 76)) (-2357 (((-112) $) NIL)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL)) (-2729 (((-549) $) NIL)) (-2297 (((-112) $) NIL)) (-3621 (($ $ (-549)) NIL)) (-2469 (($ $) NIL)) (-1992 (((-112) $) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3366 (((-549) (-549)) 81) (((-549)) 82)) (-2861 (($ $ $) NIL) (($) NIL (-12 (-4007 (|has| $ (-6 -4319))) (-4007 (|has| $ (-6 -4327)))))) (-1606 (((-549) (-549)) 79) (((-549)) 80)) (-3574 (($ $ $) NIL) (($) NIL (-12 (-4007 (|has| $ (-6 -4319))) (-4007 (|has| $ (-6 -4327)))))) (-1460 (((-549) $) 16)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 91)) (-2385 (((-892) (-549)) NIL (|has| $ (-6 -4327)))) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1512 (($ $) NIL)) (-1349 (($ $) NIL)) (-1354 (($ (-549) (-549)) NIL) (($ (-549) (-549) (-892)) NIL)) (-2119 (((-411 $) $) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) 92)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1714 (((-549) $) 22)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 94)) (-2234 (((-892)) NIL) (((-892) (-892)) NIL (|has| $ (-6 -4327)))) (-2584 (((-892) (-549)) NIL (|has| $ (-6 -4327)))) (-2843 (((-372) $) NIL) (((-219) $) NIL) (((-863 (-372)) $) NIL)) (-3845 (((-834) $) 52) (($ (-549)) 63) (($ $) NIL) (($ (-400 (-549))) 66) (($ (-549)) 63) (($ (-400 (-549))) 66) (($ (-372)) 60) (((-372) $) 50) (($ (-677)) 55)) (-2371 (((-747)) 103)) (-3946 (($ (-549) (-549) (-892)) 44)) (-3497 (($ $) NIL)) (-2690 (((-892)) NIL) (((-892) (-892)) NIL (|has| $ (-6 -4327)))) (-1863 (((-892)) 35) (((-892) (-892)) 78)) (-2441 (((-112) $ $) NIL)) (-2199 (($ $) NIL)) (-3274 (($) 32 T CONST)) (-3286 (($) 17 T CONST)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 83)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 101)) (-2511 (($ $ $) 65)) (-2498 (($ $) 99) (($ $ $) 100)) (-2484 (($ $ $) 98)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL) (($ $ (-400 (-549))) 90)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 97) (($ $ $) 88) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL)))
+(((-675) (-13 (-397) (-380) (-356) (-1009 (-372)) (-1009 (-400 (-549))) (-145) (-10 -8 (-15 -3234 ((-892) (-892))) (-15 -3234 ((-892))) (-15 -1863 ((-892) (-892))) (-15 -1863 ((-892))) (-15 -1606 ((-549) (-549))) (-15 -1606 ((-549))) (-15 -3366 ((-549) (-549))) (-15 -3366 ((-549))) (-15 -3845 ((-372) $)) (-15 -3845 ($ (-677))) (-15 -1460 ((-549) $)) (-15 -1714 ((-549) $)) (-15 -3946 ($ (-549) (-549) (-892)))))) (T -675))
+((-1863 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-675)))) (-1714 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-675)))) (-1460 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-675)))) (-3234 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-675)))) (-3234 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-675)))) (-1863 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-675)))) (-1606 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-675)))) (-1606 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-675)))) (-3366 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-675)))) (-3366 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-675)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-372)) (-5 *1 (-675)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-677)) (-5 *1 (-675)))) (-3946 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-549)) (-5 *3 (-892)) (-5 *1 (-675)))))
+(-13 (-397) (-380) (-356) (-1009 (-372)) (-1009 (-400 (-549))) (-145) (-10 -8 (-15 -3234 ((-892) (-892))) (-15 -3234 ((-892))) (-15 -1863 ((-892) (-892))) (-15 -1863 ((-892))) (-15 -1606 ((-549) (-549))) (-15 -1606 ((-549))) (-15 -3366 ((-549) (-549))) (-15 -3366 ((-549))) (-15 -3845 ((-372) $)) (-15 -3845 ($ (-677))) (-15 -1460 ((-549) $)) (-15 -1714 ((-549) $)) (-15 -3946 ($ (-549) (-549) (-892)))))
+((-1734 (((-665 |#1|) (-665 |#1|) |#1| |#1|) 65)) (-3474 (((-665 |#1|) (-665 |#1|) |#1|) 48)) (-3414 (((-665 |#1|) (-665 |#1|) |#1|) 66)) (-2417 (((-665 |#1|) (-665 |#1|)) 49)) (-4159 (((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|) 64)))
+(((-676 |#1|) (-10 -7 (-15 -2417 ((-665 |#1|) (-665 |#1|))) (-15 -3474 ((-665 |#1|) (-665 |#1|) |#1|)) (-15 -3414 ((-665 |#1|) (-665 |#1|) |#1|)) (-15 -1734 ((-665 |#1|) (-665 |#1|) |#1| |#1|)) (-15 -4159 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|))) (-300)) (T -676))
+((-4159 (*1 *2 *3 *3) (-12 (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3))) (-5 *1 (-676 *3)) (-4 *3 (-300)))) (-1734 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-665 *3)) (-4 *3 (-300)) (-5 *1 (-676 *3)))) (-3414 (*1 *2 *2 *3) (-12 (-5 *2 (-665 *3)) (-4 *3 (-300)) (-5 *1 (-676 *3)))) (-3474 (*1 *2 *2 *3) (-12 (-5 *2 (-665 *3)) (-4 *3 (-300)) (-5 *1 (-676 *3)))) (-2417 (*1 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-300)) (-5 *1 (-676 *3)))))
+(-10 -7 (-15 -2417 ((-665 |#1|) (-665 |#1|))) (-15 -3474 ((-665 |#1|) (-665 |#1|) |#1|)) (-15 -3414 ((-665 |#1|) (-665 |#1|) |#1|)) (-15 -1734 ((-665 |#1|) (-665 |#1|) |#1| |#1|)) (-15 -4159 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-3198 (($ $ $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-2973 (($ $ $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2680 (((-112) $ $) NIL)) (-1741 (((-549) $) NIL)) (-1309 (($ $ $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) 27)) (-2657 (((-549) $) 25)) (-2091 (($ $ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-1531 (((-3 (-400 (-549)) "failed") $) NIL)) (-3945 (((-112) $) NIL)) (-1390 (((-400 (-549)) $) NIL)) (-3237 (($ $) NIL) (($) NIL)) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-2576 (($ $ $ $) NIL)) (-3457 (($ $ $) NIL)) (-2357 (((-112) $) NIL)) (-1926 (($ $ $) NIL)) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL)) (-2297 (((-112) $) NIL)) (-2803 (((-112) $) NIL)) (-2964 (((-3 $ "failed") $) NIL)) (-1992 (((-112) $) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2633 (($ $ $ $) NIL)) (-2861 (($ $ $) NIL)) (-4182 (((-892) (-892)) 10) (((-892)) 9)) (-3574 (($ $ $) NIL)) (-2429 (($ $) NIL)) (-4210 (($ $) NIL)) (-3696 (($ (-621 $)) NIL) (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3200 (($ $ $) NIL)) (-3059 (($) NIL T CONST)) (-3782 (($ $) NIL)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ (-621 $)) NIL) (($ $ $) NIL)) (-3674 (($ $) NIL)) (-2119 (((-411 $) $) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1980 (((-112) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3455 (($ $) NIL) (($ $ (-747)) NIL)) (-1896 (($ $) NIL)) (-2279 (($ $) NIL)) (-2843 (((-219) $) NIL) (((-372) $) NIL) (((-863 (-549)) $) NIL) (((-525) $) NIL) (((-549) $) NIL)) (-3845 (((-834) $) NIL) (($ (-549)) 24) (($ $) NIL) (($ (-549)) 24) (((-309 $) (-309 (-549))) 18)) (-2371 (((-747)) NIL)) (-1815 (((-112) $ $) NIL)) (-2772 (($ $ $) NIL)) (-1863 (($) NIL)) (-2441 (((-112) $ $) NIL)) (-2263 (($ $ $ $) NIL)) (-2199 (($ $) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $) NIL) (($ $ (-747)) NIL)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL)))
+(((-677) (-13 (-380) (-534) (-10 -8 (-15 -4182 ((-892) (-892))) (-15 -4182 ((-892))) (-15 -3845 ((-309 $) (-309 (-549))))))) (T -677))
+((-4182 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-677)))) (-4182 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-677)))) (-3845 (*1 *2 *3) (-12 (-5 *3 (-309 (-549))) (-5 *2 (-309 (-677))) (-5 *1 (-677)))))
+(-13 (-380) (-534) (-10 -8 (-15 -4182 ((-892) (-892))) (-15 -4182 ((-892))) (-15 -3845 ((-309 $) (-309 (-549))))))
+((-2515 (((-1 |#4| |#2| |#3|) |#1| (-1142) (-1142)) 19)) (-2349 (((-1 |#4| |#2| |#3|) (-1142)) 12)))
+(((-678 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2349 ((-1 |#4| |#2| |#3|) (-1142))) (-15 -2515 ((-1 |#4| |#2| |#3|) |#1| (-1142) (-1142)))) (-594 (-525)) (-1179) (-1179) (-1179)) (T -678))
+((-2515 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1142)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-678 *3 *5 *6 *7)) (-4 *3 (-594 (-525))) (-4 *5 (-1179)) (-4 *6 (-1179)) (-4 *7 (-1179)))) (-2349 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-678 *4 *5 *6 *7)) (-4 *4 (-594 (-525))) (-4 *5 (-1179)) (-4 *6 (-1179)) (-4 *7 (-1179)))))
+(-10 -7 (-15 -2349 ((-1 |#4| |#2| |#3|) (-1142))) (-15 -2515 ((-1 |#4| |#2| |#3|) |#1| (-1142) (-1142))))
+((-3832 (((-112) $ $) NIL)) (-1387 (((-1230) $ (-747)) 14)) (-2881 (((-747) $) 12)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 18) ((|#1| $) 15) (($ |#1|) 23)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 25)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 24)))
+(((-679 |#1|) (-13 (-131) (-593 |#1|) (-10 -8 (-15 -3845 ($ |#1|)))) (-1066)) (T -679))
+((-3845 (*1 *1 *2) (-12 (-5 *1 (-679 *2)) (-4 *2 (-1066)))))
+(-13 (-131) (-593 |#1|) (-10 -8 (-15 -3845 ($ |#1|))))
+((-2592 (((-1 (-219) (-219) (-219)) |#1| (-1142) (-1142)) 34) (((-1 (-219) (-219)) |#1| (-1142)) 39)))
+(((-680 |#1|) (-10 -7 (-15 -2592 ((-1 (-219) (-219)) |#1| (-1142))) (-15 -2592 ((-1 (-219) (-219) (-219)) |#1| (-1142) (-1142)))) (-594 (-525))) (T -680))
+((-2592 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1142)) (-5 *2 (-1 (-219) (-219) (-219))) (-5 *1 (-680 *3)) (-4 *3 (-594 (-525))))) (-2592 (*1 *2 *3 *4) (-12 (-5 *4 (-1142)) (-5 *2 (-1 (-219) (-219))) (-5 *1 (-680 *3)) (-4 *3 (-594 (-525))))))
+(-10 -7 (-15 -2592 ((-1 (-219) (-219)) |#1| (-1142))) (-15 -2592 ((-1 (-219) (-219) (-219)) |#1| (-1142) (-1142))))
+((-3567 (((-1142) |#1| (-1142) (-621 (-1142))) 9) (((-1142) |#1| (-1142) (-1142) (-1142)) 12) (((-1142) |#1| (-1142) (-1142)) 11) (((-1142) |#1| (-1142)) 10)))
+(((-681 |#1|) (-10 -7 (-15 -3567 ((-1142) |#1| (-1142))) (-15 -3567 ((-1142) |#1| (-1142) (-1142))) (-15 -3567 ((-1142) |#1| (-1142) (-1142) (-1142))) (-15 -3567 ((-1142) |#1| (-1142) (-621 (-1142))))) (-594 (-525))) (T -681))
+((-3567 (*1 *2 *3 *2 *4) (-12 (-5 *4 (-621 (-1142))) (-5 *2 (-1142)) (-5 *1 (-681 *3)) (-4 *3 (-594 (-525))))) (-3567 (*1 *2 *3 *2 *2 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-681 *3)) (-4 *3 (-594 (-525))))) (-3567 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-681 *3)) (-4 *3 (-594 (-525))))) (-3567 (*1 *2 *3 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-681 *3)) (-4 *3 (-594 (-525))))))
+(-10 -7 (-15 -3567 ((-1142) |#1| (-1142))) (-15 -3567 ((-1142) |#1| (-1142) (-1142))) (-15 -3567 ((-1142) |#1| (-1142) (-1142) (-1142))) (-15 -3567 ((-1142) |#1| (-1142) (-621 (-1142)))))
+((-1560 (((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|) 9)))
+(((-682 |#1| |#2|) (-10 -7 (-15 -1560 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|))) (-1179) (-1179)) (T -682))
+((-1560 (*1 *2 *3 *4) (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4))) (-5 *1 (-682 *3 *4)) (-4 *3 (-1179)) (-4 *4 (-1179)))))
+(-10 -7 (-15 -1560 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|)))
+((-2080 (((-1 |#3| |#2|) (-1142)) 11)) (-2515 (((-1 |#3| |#2|) |#1| (-1142)) 21)))
+(((-683 |#1| |#2| |#3|) (-10 -7 (-15 -2080 ((-1 |#3| |#2|) (-1142))) (-15 -2515 ((-1 |#3| |#2|) |#1| (-1142)))) (-594 (-525)) (-1179) (-1179)) (T -683))
+((-2515 (*1 *2 *3 *4) (-12 (-5 *4 (-1142)) (-5 *2 (-1 *6 *5)) (-5 *1 (-683 *3 *5 *6)) (-4 *3 (-594 (-525))) (-4 *5 (-1179)) (-4 *6 (-1179)))) (-2080 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-1 *6 *5)) (-5 *1 (-683 *4 *5 *6)) (-4 *4 (-594 (-525))) (-4 *5 (-1179)) (-4 *6 (-1179)))))
+(-10 -7 (-15 -2080 ((-1 |#3| |#2|) (-1142))) (-15 -2515 ((-1 |#3| |#2|) |#1| (-1142))))
+((-3531 (((-3 (-621 (-1138 |#4|)) "failed") (-1138 |#4|) (-621 |#2|) (-621 (-1138 |#4|)) (-621 |#3|) (-621 |#4|) (-621 (-621 (-2 (|:| -3447 (-747)) (|:| |pcoef| |#4|)))) (-621 (-747)) (-1225 (-621 (-1138 |#3|))) |#3|) 62)) (-2919 (((-3 (-621 (-1138 |#4|)) "failed") (-1138 |#4|) (-621 |#2|) (-621 (-1138 |#3|)) (-621 |#3|) (-621 |#4|) (-621 (-747)) |#3|) 75)) (-4008 (((-3 (-621 (-1138 |#4|)) "failed") (-1138 |#4|) (-621 |#2|) (-621 |#3|) (-621 (-747)) (-621 (-1138 |#4|)) (-1225 (-621 (-1138 |#3|))) |#3|) 34)))
+(((-684 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4008 ((-3 (-621 (-1138 |#4|)) "failed") (-1138 |#4|) (-621 |#2|) (-621 |#3|) (-621 (-747)) (-621 (-1138 |#4|)) (-1225 (-621 (-1138 |#3|))) |#3|)) (-15 -2919 ((-3 (-621 (-1138 |#4|)) "failed") (-1138 |#4|) (-621 |#2|) (-621 (-1138 |#3|)) (-621 |#3|) (-621 |#4|) (-621 (-747)) |#3|)) (-15 -3531 ((-3 (-621 (-1138 |#4|)) "failed") (-1138 |#4|) (-621 |#2|) (-621 (-1138 |#4|)) (-621 |#3|) (-621 |#4|) (-621 (-621 (-2 (|:| -3447 (-747)) (|:| |pcoef| |#4|)))) (-621 (-747)) (-1225 (-621 (-1138 |#3|))) |#3|))) (-769) (-823) (-300) (-920 |#3| |#1| |#2|)) (T -684))
+((-3531 (*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10) (|partial| -12 (-5 *2 (-621 (-1138 *13))) (-5 *3 (-1138 *13)) (-5 *4 (-621 *12)) (-5 *5 (-621 *10)) (-5 *6 (-621 *13)) (-5 *7 (-621 (-621 (-2 (|:| -3447 (-747)) (|:| |pcoef| *13))))) (-5 *8 (-621 (-747))) (-5 *9 (-1225 (-621 (-1138 *10)))) (-4 *12 (-823)) (-4 *10 (-300)) (-4 *13 (-920 *10 *11 *12)) (-4 *11 (-769)) (-5 *1 (-684 *11 *12 *10 *13)))) (-2919 (*1 *2 *3 *4 *5 *6 *7 *8 *9) (|partial| -12 (-5 *4 (-621 *11)) (-5 *5 (-621 (-1138 *9))) (-5 *6 (-621 *9)) (-5 *7 (-621 *12)) (-5 *8 (-621 (-747))) (-4 *11 (-823)) (-4 *9 (-300)) (-4 *12 (-920 *9 *10 *11)) (-4 *10 (-769)) (-5 *2 (-621 (-1138 *12))) (-5 *1 (-684 *10 *11 *9 *12)) (-5 *3 (-1138 *12)))) (-4008 (*1 *2 *3 *4 *5 *6 *2 *7 *8) (|partial| -12 (-5 *2 (-621 (-1138 *11))) (-5 *3 (-1138 *11)) (-5 *4 (-621 *10)) (-5 *5 (-621 *8)) (-5 *6 (-621 (-747))) (-5 *7 (-1225 (-621 (-1138 *8)))) (-4 *10 (-823)) (-4 *8 (-300)) (-4 *11 (-920 *8 *9 *10)) (-4 *9 (-769)) (-5 *1 (-684 *9 *10 *8 *11)))))
+(-10 -7 (-15 -4008 ((-3 (-621 (-1138 |#4|)) "failed") (-1138 |#4|) (-621 |#2|) (-621 |#3|) (-621 (-747)) (-621 (-1138 |#4|)) (-1225 (-621 (-1138 |#3|))) |#3|)) (-15 -2919 ((-3 (-621 (-1138 |#4|)) "failed") (-1138 |#4|) (-621 |#2|) (-621 (-1138 |#3|)) (-621 |#3|) (-621 |#4|) (-621 (-747)) |#3|)) (-15 -3531 ((-3 (-621 (-1138 |#4|)) "failed") (-1138 |#4|) (-621 |#2|) (-621 (-1138 |#4|)) (-621 |#3|) (-621 |#4|) (-621 (-621 (-2 (|:| -3447 (-747)) (|:| |pcoef| |#4|)))) (-621 (-747)) (-1225 (-621 (-1138 |#3|))) |#3|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2068 (($ $) 39)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-2244 (($ |#1| (-747)) 37)) (-2391 (((-747) $) 41)) (-2042 ((|#1| $) 40)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3977 (((-747) $) 42)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 36 (|has| |#1| (-170)))) (-4068 ((|#1| $ (-747)) 38)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 44) (($ |#1| $) 43)))
(((-685 |#1|) (-138) (-1018)) (T -685))
-((-3701 (*1 *2 *1) (-12 (-4 *1 (-685 *3)) (-4 *3 (-1018)) (-5 *2 (-747)))) (-3611 (*1 *2 *1) (-12 (-4 *1 (-685 *3)) (-4 *3 (-1018)) (-5 *2 (-747)))) (-2043 (*1 *2 *1) (-12 (-4 *1 (-685 *2)) (-4 *2 (-1018)))) (-2070 (*1 *1 *1) (-12 (-4 *1 (-685 *2)) (-4 *2 (-1018)))) (-2152 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *1 (-685 *2)) (-4 *2 (-1018)))) (-2246 (*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-685 *2)) (-4 *2 (-1018)))))
-(-13 (-1018) (-111 |t#1| |t#1|) (-10 -8 (IF (|has| |t#1| (-170)) (-6 (-38 |t#1|)) |%noBranch|) (-15 -3701 ((-747) $)) (-15 -3611 ((-747) $)) (-15 -2043 (|t#1| $)) (-15 -2070 ($ $)) (-15 -2152 (|t#1| $ (-747))) (-15 -2246 ($ |t#1| (-747)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-170)) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 |#1|) |has| |#1| (-170)) ((-703) . T) ((-1024 |#1|) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-2797 ((|#6| (-1 |#4| |#1|) |#3|) 23)))
-(((-686 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2797 (|#6| (-1 |#4| |#1|) |#3|))) (-541) (-1202 |#1|) (-1202 (-400 |#2|)) (-541) (-1202 |#4|) (-1202 (-400 |#5|))) (T -686))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-541)) (-4 *7 (-541)) (-4 *6 (-1202 *5)) (-4 *2 (-1202 (-400 *8))) (-5 *1 (-686 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1202 (-400 *6))) (-4 *8 (-1202 *7)))))
-(-10 -7 (-15 -2797 (|#6| (-1 |#4| |#1|) |#3|)))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3864 (((-1125) (-834)) 31)) (-2699 (((-1231) (-1125)) 28)) (-3333 (((-1125) (-834)) 24)) (-3386 (((-1125) (-834)) 25)) (-3846 (((-834) $) NIL) (((-1125) (-834)) 23)) (-2389 (((-112) $ $) NIL)))
-(((-687) (-13 (-1067) (-10 -7 (-15 -3846 ((-1125) (-834))) (-15 -3333 ((-1125) (-834))) (-15 -3386 ((-1125) (-834))) (-15 -3864 ((-1125) (-834))) (-15 -2699 ((-1231) (-1125)))))) (T -687))
-((-3846 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1125)) (-5 *1 (-687)))) (-3333 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1125)) (-5 *1 (-687)))) (-3386 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1125)) (-5 *1 (-687)))) (-3864 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1125)) (-5 *1 (-687)))) (-2699 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-687)))))
-(-13 (-1067) (-10 -7 (-15 -3846 ((-1125) (-834))) (-15 -3333 ((-1125) (-834))) (-15 -3386 ((-1125) (-834))) (-15 -3864 ((-1125) (-834))) (-15 -2699 ((-1231) (-1125)))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1682 (($) NIL T CONST)) (-2095 (($ $ $) NIL)) (-2557 (($ |#1| |#2|) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-2675 (((-112) $) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1591 ((|#2| $) NIL)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2121 (((-411 $) $) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3147 (((-3 $ "failed") $ $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) ((|#1| $) NIL)) (-2082 (((-747)) NIL)) (-1498 (((-112) $ $) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL)))
-(((-688 |#1| |#2| |#3| |#4| |#5|) (-13 (-356) (-10 -8 (-15 -1591 (|#2| $)) (-15 -3846 (|#1| $)) (-15 -2557 ($ |#1| |#2|)) (-15 -3147 ((-3 $ "failed") $ $)))) (-170) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -688))
-((-1591 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-688 *3 *2 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-3846 (*1 *2 *1) (-12 (-4 *2 (-170)) (-5 *1 (-688 *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)))) (-2557 (*1 *1 *2 *3) (-12 (-5 *1 (-688 *2 *3 *4 *5 *6)) (-4 *2 (-170)) (-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)))) (-3147 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-688 *2 *3 *4 *5 *6)) (-4 *2 (-170)) (-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 (-356) (-10 -8 (-15 -1591 (|#2| $)) (-15 -3846 (|#1| $)) (-15 -2557 ($ |#1| |#2|)) (-15 -3147 ((-3 $ "failed") $ $))))
-((-3834 (((-112) $ $) 78)) (-1763 (((-112) $) 30)) (-2432 (((-1226 |#1|) $ (-747)) NIL)) (-2272 (((-621 (-1048)) $) NIL)) (-3371 (($ (-1139 |#1|)) NIL)) (-2084 (((-1139 $) $ (-1048)) NIL) (((-1139 |#1|) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-3186 (((-747) $) NIL) (((-747) $ (-621 (-1048))) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1910 (($ $ $) NIL (|has| |#1| (-541)))) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-3979 (($ $) NIL (|has| |#1| (-444)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-3866 (((-112) $ $) NIL (|has| |#1| (-356)))) (-3614 (((-747)) 47 (|has| |#1| (-361)))) (-3154 (($ $ (-747)) NIL)) (-2434 (($ $ (-747)) NIL)) (-2094 ((|#2| |#2|) 44)) (-1358 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-444)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-1048) "failed") $) NIL)) (-2659 ((|#1| $) NIL) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-1048) $) NIL)) (-1353 (($ $ $ (-1048)) NIL (|has| |#1| (-170))) ((|#1| $ $) NIL (|has| |#1| (-170)))) (-2095 (($ $ $) NIL (|has| |#1| (-356)))) (-2070 (($ $) 34)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2557 (($ |#2|) 42)) (-2114 (((-3 $ "failed") $) 86)) (-3239 (($) 51 (|has| |#1| (-361)))) (-2067 (($ $ $) NIL (|has| |#1| (-356)))) (-4289 (($ $ $) NIL)) (-2290 (($ $ $) NIL (|has| |#1| (-541)))) (-3921 (((-2 (|:| -1570 |#1|) (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-541)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1285 (($ $) NIL (|has| |#1| (-444))) (($ $ (-1048)) NIL (|has| |#1| (-444)))) (-2058 (((-621 $) $) NIL)) (-1420 (((-112) $) NIL (|has| |#1| (-880)))) (-2495 (((-929 $)) 80)) (-2691 (($ $ |#1| (-747) $) NIL)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-1048) (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-1048) (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2088 (((-747) $ $) NIL (|has| |#1| (-541)))) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) NIL)) (-1681 (((-3 $ "failed") $) NIL (|has| |#1| (-1118)))) (-2261 (($ (-1139 |#1|) (-1048)) NIL) (($ (-1139 $) (-1048)) NIL)) (-2992 (($ $ (-747)) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-747)) 77) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ (-1048)) NIL) (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-1591 ((|#2|) 45)) (-3611 (((-747) $) NIL) (((-747) $ (-1048)) NIL) (((-621 (-747)) $ (-621 (-1048))) NIL)) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-3705 (($ (-1 (-747) (-747)) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-3598 (((-1139 |#1|) $) NIL)) (-1520 (((-3 (-1048) "failed") $) NIL)) (-1881 (((-892) $) NIL (|has| |#1| (-361)))) (-2548 ((|#2| $) 41)) (-2028 (($ $) NIL)) (-2043 ((|#1| $) 28)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-3851 (((-1125) $) NIL)) (-3098 (((-2 (|:| -4013 $) (|:| -3675 $)) $ (-747)) NIL)) (-4266 (((-3 (-621 $) "failed") $) NIL)) (-2533 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-2 (|:| |var| (-1048)) (|:| -3731 (-747))) "failed") $) NIL)) (-3893 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3060 (($) NIL (|has| |#1| (-1118)) CONST)) (-3493 (($ (-892)) NIL (|has| |#1| (-361)))) (-3990 (((-1087) $) NIL)) (-2004 (((-112) $) NIL)) (-2016 ((|#1| $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-444)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-3114 (($ $) 79 (|has| |#1| (-342)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-2121 (((-411 $) $) NIL (|has| |#1| (-880)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-2042 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ $) 85 (|has| |#1| (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2686 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-1048) |#1|) NIL) (($ $ (-621 (-1048)) (-621 |#1|)) NIL) (($ $ (-1048) $) NIL) (($ $ (-621 (-1048)) (-621 $)) NIL)) (-3684 (((-747) $) NIL (|has| |#1| (-356)))) (-3341 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-400 $) (-400 $) (-400 $)) NIL (|has| |#1| (-541))) ((|#1| (-400 $) |#1|) NIL (|has| |#1| (-356))) (((-400 $) $ (-400 $)) NIL (|has| |#1| (-541)))) (-3668 (((-3 $ "failed") $ (-747)) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 87 (|has| |#1| (-356)))) (-3602 (($ $ (-1048)) NIL (|has| |#1| (-170))) ((|#1| $) NIL (|has| |#1| (-170)))) (-3456 (($ $ (-1048)) NIL) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) NIL) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3701 (((-747) $) 32) (((-747) $ (-1048)) NIL) (((-621 (-747)) $ (-621 (-1048))) NIL)) (-2845 (((-863 (-372)) $) NIL (-12 (|has| (-1048) (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-1048) (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-1048) (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-2216 ((|#1| $) NIL (|has| |#1| (-444))) (($ $ (-1048)) NIL (|has| |#1| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-2982 (((-929 $)) 36)) (-3033 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541))) (((-3 (-400 $) "failed") (-400 $) $) NIL (|has| |#1| (-541)))) (-3846 (((-834) $) 61) (($ (-549)) NIL) (($ |#1|) 58) (($ (-1048)) NIL) (($ |#2|) 68) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#1| (-541)))) (-4141 (((-621 |#1|) $) NIL)) (-2152 ((|#1| $ (-747)) 63) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2082 (((-747)) NIL)) (-1509 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3276 (($) 20 T CONST)) (-2233 (((-1226 |#1|) $) 75)) (-1692 (($ (-1226 |#1|)) 50)) (-3287 (($) 8 T CONST)) (-1702 (($ $ (-1048)) NIL) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) NIL) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4098 (((-1226 |#1|) $) NIL)) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) 69)) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2500 (($ $) 72) (($ $ $) NIL)) (-2486 (($ $ $) 33)) (** (($ $ (-892)) NIL) (($ $ (-747)) 81)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 57) (($ $ $) 74) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 55) (($ $ |#1|) NIL)))
-(((-689 |#1| |#2|) (-13 (-1202 |#1|) (-10 -8 (-15 -2094 (|#2| |#2|)) (-15 -1591 (|#2|)) (-15 -2557 ($ |#2|)) (-15 -2548 (|#2| $)) (-15 -3846 ($ |#2|)) (-15 -2233 ((-1226 |#1|) $)) (-15 -1692 ($ (-1226 |#1|))) (-15 -4098 ((-1226 |#1|) $)) (-15 -2495 ((-929 $))) (-15 -2982 ((-929 $))) (IF (|has| |#1| (-342)) (-15 -3114 ($ $)) |%noBranch|) (IF (|has| |#1| (-361)) (-6 (-361)) |%noBranch|))) (-1018) (-1202 |#1|)) (T -689))
-((-2094 (*1 *2 *2) (-12 (-4 *3 (-1018)) (-5 *1 (-689 *3 *2)) (-4 *2 (-1202 *3)))) (-1591 (*1 *2) (-12 (-4 *2 (-1202 *3)) (-5 *1 (-689 *3 *2)) (-4 *3 (-1018)))) (-2557 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-5 *1 (-689 *3 *2)) (-4 *2 (-1202 *3)))) (-2548 (*1 *2 *1) (-12 (-4 *2 (-1202 *3)) (-5 *1 (-689 *3 *2)) (-4 *3 (-1018)))) (-3846 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-5 *1 (-689 *3 *2)) (-4 *2 (-1202 *3)))) (-2233 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-5 *2 (-1226 *3)) (-5 *1 (-689 *3 *4)) (-4 *4 (-1202 *3)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-1226 *3)) (-4 *3 (-1018)) (-5 *1 (-689 *3 *4)) (-4 *4 (-1202 *3)))) (-4098 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-5 *2 (-1226 *3)) (-5 *1 (-689 *3 *4)) (-4 *4 (-1202 *3)))) (-2495 (*1 *2) (-12 (-4 *3 (-1018)) (-5 *2 (-929 (-689 *3 *4))) (-5 *1 (-689 *3 *4)) (-4 *4 (-1202 *3)))) (-2982 (*1 *2) (-12 (-4 *3 (-1018)) (-5 *2 (-929 (-689 *3 *4))) (-5 *1 (-689 *3 *4)) (-4 *4 (-1202 *3)))) (-3114 (*1 *1 *1) (-12 (-4 *2 (-342)) (-4 *2 (-1018)) (-5 *1 (-689 *2 *3)) (-4 *3 (-1202 *2)))))
-(-13 (-1202 |#1|) (-10 -8 (-15 -2094 (|#2| |#2|)) (-15 -1591 (|#2|)) (-15 -2557 ($ |#2|)) (-15 -2548 (|#2| $)) (-15 -3846 ($ |#2|)) (-15 -2233 ((-1226 |#1|) $)) (-15 -1692 ($ (-1226 |#1|))) (-15 -4098 ((-1226 |#1|) $)) (-15 -2495 ((-929 $))) (-15 -2982 ((-929 $))) (IF (|has| |#1| (-342)) (-15 -3114 ($ $)) |%noBranch|) (IF (|has| |#1| (-361)) (-6 (-361)) |%noBranch|)))
-((-3834 (((-112) $ $) NIL)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3493 ((|#1| $) 13)) (-3990 (((-1087) $) NIL)) (-3731 ((|#2| $) 12)) (-3854 (($ |#1| |#2|) 16)) (-3846 (((-834) $) NIL) (($ (-2 (|:| -3493 |#1|) (|:| -3731 |#2|))) 15) (((-2 (|:| -3493 |#1|) (|:| -3731 |#2|)) $) 14)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 11)))
-(((-690 |#1| |#2| |#3|) (-13 (-823) (-10 -8 (-15 -3731 (|#2| $)) (-15 -3493 (|#1| $)) (-15 -3846 ($ (-2 (|:| -3493 |#1|) (|:| -3731 |#2|)))) (-15 -3846 ((-2 (|:| -3493 |#1|) (|:| -3731 |#2|)) $)) (-15 -3854 ($ |#1| |#2|)))) (-823) (-1067) (-1 (-112) (-2 (|:| -3493 |#1|) (|:| -3731 |#2|)) (-2 (|:| -3493 |#1|) (|:| -3731 |#2|)))) (T -690))
-((-3731 (*1 *2 *1) (-12 (-4 *2 (-1067)) (-5 *1 (-690 *3 *2 *4)) (-4 *3 (-823)) (-14 *4 (-1 (-112) (-2 (|:| -3493 *3) (|:| -3731 *2)) (-2 (|:| -3493 *3) (|:| -3731 *2)))))) (-3493 (*1 *2 *1) (-12 (-4 *2 (-823)) (-5 *1 (-690 *2 *3 *4)) (-4 *3 (-1067)) (-14 *4 (-1 (-112) (-2 (|:| -3493 *2) (|:| -3731 *3)) (-2 (|:| -3493 *2) (|:| -3731 *3)))))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -3493 *3) (|:| -3731 *4))) (-4 *3 (-823)) (-4 *4 (-1067)) (-5 *1 (-690 *3 *4 *5)) (-14 *5 (-1 (-112) *2 *2)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -3493 *3) (|:| -3731 *4))) (-5 *1 (-690 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-1067)) (-14 *5 (-1 (-112) *2 *2)))) (-3854 (*1 *1 *2 *3) (-12 (-5 *1 (-690 *2 *3 *4)) (-4 *2 (-823)) (-4 *3 (-1067)) (-14 *4 (-1 (-112) (-2 (|:| -3493 *2) (|:| -3731 *3)) (-2 (|:| -3493 *2) (|:| -3731 *3)))))))
-(-13 (-823) (-10 -8 (-15 -3731 (|#2| $)) (-15 -3493 (|#1| $)) (-15 -3846 ($ (-2 (|:| -3493 |#1|) (|:| -3731 |#2|)))) (-15 -3846 ((-2 (|:| -3493 |#1|) (|:| -3731 |#2|)) $)) (-15 -3854 ($ |#1| |#2|))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 59)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) 89) (((-3 (-114) "failed") $) 95)) (-2659 ((|#1| $) NIL) (((-114) $) 39)) (-2114 (((-3 $ "failed") $) 90)) (-3297 ((|#2| (-114) |#2|) 82)) (-2675 (((-112) $) NIL)) (-3566 (($ |#1| (-354 (-114))) 14)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2630 (($ $ (-1 |#2| |#2|)) 58)) (-3686 (($ $ (-1 |#2| |#2|)) 44)) (-3341 ((|#2| $ |#2|) 33)) (-2817 ((|#1| |#1|) 105 (|has| |#1| (-170)))) (-3846 (((-834) $) 66) (($ (-549)) 18) (($ |#1|) 17) (($ (-114)) 23)) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) 37)) (-1709 (($ $) 99 (|has| |#1| (-170))) (($ $ $) 103 (|has| |#1| (-170)))) (-3276 (($) 21 T CONST)) (-3287 (($) 9 T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) 48) (($ $ $) NIL)) (-2486 (($ $ $) 73)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ (-114) (-549)) NIL) (($ $ (-549)) 57)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 98) (($ $ $) 50) (($ |#1| $) 96 (|has| |#1| (-170))) (($ $ |#1|) 97 (|has| |#1| (-170)))))
-(((-691 |#1| |#2|) (-13 (-1018) (-1009 |#1|) (-1009 (-114)) (-279 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |#1| (-170)) (PROGN (-6 (-38 |#1|)) (-15 -1709 ($ $)) (-15 -1709 ($ $ $)) (-15 -2817 (|#1| |#1|))) |%noBranch|) (-15 -3686 ($ $ (-1 |#2| |#2|))) (-15 -2630 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-114) (-549))) (-15 ** ($ $ (-549))) (-15 -3297 (|#2| (-114) |#2|)) (-15 -3566 ($ |#1| (-354 (-114)))))) (-1018) (-624 |#1|)) (T -691))
-((-1709 (*1 *1 *1) (-12 (-4 *2 (-170)) (-4 *2 (-1018)) (-5 *1 (-691 *2 *3)) (-4 *3 (-624 *2)))) (-1709 (*1 *1 *1 *1) (-12 (-4 *2 (-170)) (-4 *2 (-1018)) (-5 *1 (-691 *2 *3)) (-4 *3 (-624 *2)))) (-2817 (*1 *2 *2) (-12 (-4 *2 (-170)) (-4 *2 (-1018)) (-5 *1 (-691 *2 *3)) (-4 *3 (-624 *2)))) (-3686 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-624 *3)) (-4 *3 (-1018)) (-5 *1 (-691 *3 *4)))) (-2630 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-624 *3)) (-4 *3 (-1018)) (-5 *1 (-691 *3 *4)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-549)) (-4 *4 (-1018)) (-5 *1 (-691 *4 *5)) (-4 *5 (-624 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *3 (-1018)) (-5 *1 (-691 *3 *4)) (-4 *4 (-624 *3)))) (-3297 (*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-4 *4 (-1018)) (-5 *1 (-691 *4 *2)) (-4 *2 (-624 *4)))) (-3566 (*1 *1 *2 *3) (-12 (-5 *3 (-354 (-114))) (-4 *2 (-1018)) (-5 *1 (-691 *2 *4)) (-4 *4 (-624 *2)))))
-(-13 (-1018) (-1009 |#1|) (-1009 (-114)) (-279 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |#1| (-170)) (PROGN (-6 (-38 |#1|)) (-15 -1709 ($ $)) (-15 -1709 ($ $ $)) (-15 -2817 (|#1| |#1|))) |%noBranch|) (-15 -3686 ($ $ (-1 |#2| |#2|))) (-15 -2630 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-114) (-549))) (-15 ** ($ $ (-549))) (-15 -3297 (|#2| (-114) |#2|)) (-15 -3566 ($ |#1| (-354 (-114))))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 33)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2557 (($ |#1| |#2|) 25)) (-2114 (((-3 $ "failed") $) 48)) (-2675 (((-112) $) 35)) (-1591 ((|#2| $) 12)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 49)) (-3990 (((-1087) $) NIL)) (-3147 (((-3 $ "failed") $ $) 47)) (-3846 (((-834) $) 24) (($ (-549)) 19) ((|#1| $) 13)) (-2082 (((-747)) 28)) (-3276 (($) 16 T CONST)) (-3287 (($) 30 T CONST)) (-2389 (((-112) $ $) 38)) (-2500 (($ $) 43) (($ $ $) 37)) (-2486 (($ $ $) 40)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 21) (($ $ $) 20)))
-(((-692 |#1| |#2| |#3| |#4| |#5|) (-13 (-1018) (-10 -8 (-15 -1591 (|#2| $)) (-15 -3846 (|#1| $)) (-15 -2557 ($ |#1| |#2|)) (-15 -3147 ((-3 $ "failed") $ $)) (-15 -2114 ((-3 $ "failed") $)) (-15 -1992 ($ $)))) (-170) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -692))
-((-2114 (*1 *1 *1) (|partial| -12 (-5 *1 (-692 *2 *3 *4 *5 *6)) (-4 *2 (-170)) (-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)))) (-1591 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-692 *3 *2 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-3846 (*1 *2 *1) (-12 (-4 *2 (-170)) (-5 *1 (-692 *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)))) (-2557 (*1 *1 *2 *3) (-12 (-5 *1 (-692 *2 *3 *4 *5 *6)) (-4 *2 (-170)) (-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)))) (-3147 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-692 *2 *3 *4 *5 *6)) (-4 *2 (-170)) (-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)))) (-1992 (*1 *1 *1) (-12 (-5 *1 (-692 *2 *3 *4 *5 *6)) (-4 *2 (-170)) (-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 (-1018) (-10 -8 (-15 -1591 (|#2| $)) (-15 -3846 (|#1| $)) (-15 -2557 ($ |#1| |#2|)) (-15 -3147 ((-3 $ "failed") $ $)) (-15 -2114 ((-3 $ "failed") $)) (-15 -1992 ($ $))))
+((-3977 (*1 *2 *1) (-12 (-4 *1 (-685 *3)) (-4 *3 (-1018)) (-5 *2 (-747)))) (-2391 (*1 *2 *1) (-12 (-4 *1 (-685 *3)) (-4 *3 (-1018)) (-5 *2 (-747)))) (-2042 (*1 *2 *1) (-12 (-4 *1 (-685 *2)) (-4 *2 (-1018)))) (-2068 (*1 *1 *1) (-12 (-4 *1 (-685 *2)) (-4 *2 (-1018)))) (-4068 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *1 (-685 *2)) (-4 *2 (-1018)))) (-2244 (*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-685 *2)) (-4 *2 (-1018)))))
+(-13 (-1018) (-111 |t#1| |t#1|) (-10 -8 (IF (|has| |t#1| (-170)) (-6 (-38 |t#1|)) |%noBranch|) (-15 -3977 ((-747) $)) (-15 -2391 ((-747) $)) (-15 -2042 (|t#1| $)) (-15 -2068 ($ $)) (-15 -4068 (|t#1| $ (-747))) (-15 -2244 ($ |t#1| (-747)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-170)) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 |#1|) |has| |#1| (-170)) ((-703) . T) ((-1024 |#1|) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-2795 ((|#6| (-1 |#4| |#1|) |#3|) 23)))
+(((-686 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2795 (|#6| (-1 |#4| |#1|) |#3|))) (-541) (-1201 |#1|) (-1201 (-400 |#2|)) (-541) (-1201 |#4|) (-1201 (-400 |#5|))) (T -686))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-541)) (-4 *7 (-541)) (-4 *6 (-1201 *5)) (-4 *2 (-1201 (-400 *8))) (-5 *1 (-686 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1201 (-400 *6))) (-4 *8 (-1201 *7)))))
+(-10 -7 (-15 -2795 (|#6| (-1 |#4| |#1|) |#3|)))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2477 (((-1124) (-834)) 31)) (-2697 (((-1230) (-1124)) 28)) (-3054 (((-1124) (-834)) 24)) (-3746 (((-1124) (-834)) 25)) (-3845 (((-834) $) NIL) (((-1124) (-834)) 23)) (-2387 (((-112) $ $) NIL)))
+(((-687) (-13 (-1066) (-10 -7 (-15 -3845 ((-1124) (-834))) (-15 -3054 ((-1124) (-834))) (-15 -3746 ((-1124) (-834))) (-15 -2477 ((-1124) (-834))) (-15 -2697 ((-1230) (-1124)))))) (T -687))
+((-3845 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1124)) (-5 *1 (-687)))) (-3054 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1124)) (-5 *1 (-687)))) (-3746 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1124)) (-5 *1 (-687)))) (-2477 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1124)) (-5 *1 (-687)))) (-2697 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-687)))))
+(-13 (-1066) (-10 -7 (-15 -3845 ((-1124) (-834))) (-15 -3054 ((-1124) (-834))) (-15 -3746 ((-1124) (-834))) (-15 -2477 ((-1124) (-834))) (-15 -2697 ((-1230) (-1124)))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2680 (((-112) $ $) NIL)) (-3034 (($) NIL T CONST)) (-2091 (($ $ $) NIL)) (-2556 (($ |#1| |#2|) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-2297 (((-112) $) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2107 ((|#2| $) NIL)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2119 (((-411 $) $) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2173 (((-3 $ "failed") $ $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) ((|#1| $) NIL)) (-2371 (((-747)) NIL)) (-2441 (((-112) $ $) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL)))
+(((-688 |#1| |#2| |#3| |#4| |#5|) (-13 (-356) (-10 -8 (-15 -2107 (|#2| $)) (-15 -3845 (|#1| $)) (-15 -2556 ($ |#1| |#2|)) (-15 -2173 ((-3 $ "failed") $ $)))) (-170) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -688))
+((-2107 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-688 *3 *2 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-3845 (*1 *2 *1) (-12 (-4 *2 (-170)) (-5 *1 (-688 *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)))) (-2556 (*1 *1 *2 *3) (-12 (-5 *1 (-688 *2 *3 *4 *5 *6)) (-4 *2 (-170)) (-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)))) (-2173 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-688 *2 *3 *4 *5 *6)) (-4 *2 (-170)) (-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 (-356) (-10 -8 (-15 -2107 (|#2| $)) (-15 -3845 (|#1| $)) (-15 -2556 ($ |#1| |#2|)) (-15 -2173 ((-3 $ "failed") $ $))))
+((-3832 (((-112) $ $) 78)) (-3210 (((-112) $) 30)) (-1432 (((-1225 |#1|) $ (-747)) NIL)) (-2270 (((-621 (-1048)) $) NIL)) (-3842 (($ (-1138 |#1|)) NIL)) (-2082 (((-1138 $) $ (-1048)) NIL) (((-1138 |#1|) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-2216 (((-747) $) NIL) (((-747) $ (-621 (-1048))) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-2070 (($ $ $) NIL (|has| |#1| (-541)))) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-3239 (($ $) NIL (|has| |#1| (-444)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2680 (((-112) $ $) NIL (|has| |#1| (-356)))) (-3614 (((-747)) 47 (|has| |#1| (-361)))) (-1665 (($ $ (-747)) NIL)) (-1586 (($ $ (-747)) NIL)) (-1933 ((|#2| |#2|) 44)) (-3921 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-444)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-1048) "failed") $) NIL)) (-2657 ((|#1| $) NIL) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-1048) $) NIL)) (-4114 (($ $ $ (-1048)) NIL (|has| |#1| (-170))) ((|#1| $ $) NIL (|has| |#1| (-170)))) (-2091 (($ $ $) NIL (|has| |#1| (-356)))) (-2068 (($ $) 34)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2556 (($ |#2|) 42)) (-2612 (((-3 $ "failed") $) 86)) (-3237 (($) 51 (|has| |#1| (-361)))) (-2065 (($ $ $) NIL (|has| |#1| (-356)))) (-1507 (($ $ $) NIL)) (-1563 (($ $ $) NIL (|has| |#1| (-541)))) (-2805 (((-2 (|:| -1569 |#1|) (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-541)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-3004 (($ $) NIL (|has| |#1| (-444))) (($ $ (-1048)) NIL (|has| |#1| (-444)))) (-2056 (((-621 $) $) NIL)) (-1464 (((-112) $) NIL (|has| |#1| (-880)))) (-2129 (((-929 $)) 80)) (-4064 (($ $ |#1| (-747) $) NIL)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-1048) (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-1048) (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2729 (((-747) $ $) NIL (|has| |#1| (-541)))) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) NIL)) (-2964 (((-3 $ "failed") $) NIL (|has| |#1| (-1117)))) (-2259 (($ (-1138 |#1|) (-1048)) NIL) (($ (-1138 $) (-1048)) NIL)) (-2625 (($ $ (-747)) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-747)) 77) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ (-1048)) NIL) (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-2107 ((|#2|) 45)) (-2391 (((-747) $) NIL) (((-747) $ (-1048)) NIL) (((-621 (-747)) $ (-621 (-1048))) NIL)) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-3224 (($ (-1 (-747) (-747)) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3440 (((-1138 |#1|) $) NIL)) (-2236 (((-3 (-1048) "failed") $) NIL)) (-3309 (((-892) $) NIL (|has| |#1| (-361)))) (-2545 ((|#2| $) 41)) (-2027 (($ $) NIL)) (-2042 ((|#1| $) 28)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-3441 (((-1124) $) NIL)) (-3297 (((-2 (|:| -2262 $) (|:| -1809 $)) $ (-747)) NIL)) (-4093 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-621 $) "failed") $) NIL)) (-1477 (((-3 (-2 (|:| |var| (-1048)) (|:| -1714 (-747))) "failed") $) NIL)) (-3405 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3059 (($) NIL (|has| |#1| (-1117)) CONST)) (-3494 (($ (-892)) NIL (|has| |#1| (-361)))) (-3988 (((-1086) $) NIL)) (-2001 (((-112) $) NIL)) (-2011 ((|#1| $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-444)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-2256 (($ $) 79 (|has| |#1| (-342)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2119 (((-411 $) $) NIL (|has| |#1| (-880)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-2040 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ $) 85 (|has| |#1| (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2684 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-1048) |#1|) NIL) (($ $ (-621 (-1048)) (-621 |#1|)) NIL) (($ $ (-1048) $) NIL) (($ $ (-621 (-1048)) (-621 $)) NIL)) (-1335 (((-747) $) NIL (|has| |#1| (-356)))) (-3339 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-400 $) (-400 $) (-400 $)) NIL (|has| |#1| (-541))) ((|#1| (-400 $) |#1|) NIL (|has| |#1| (-356))) (((-400 $) $ (-400 $)) NIL (|has| |#1| (-541)))) (-2432 (((-3 $ "failed") $ (-747)) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 87 (|has| |#1| (-356)))) (-2740 (($ $ (-1048)) NIL (|has| |#1| (-170))) ((|#1| $) NIL (|has| |#1| (-170)))) (-3455 (($ $ (-1048)) NIL) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) NIL) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3977 (((-747) $) 32) (((-747) $ (-1048)) NIL) (((-621 (-747)) $ (-621 (-1048))) NIL)) (-2843 (((-863 (-372)) $) NIL (-12 (|has| (-1048) (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-1048) (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-1048) (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-1700 ((|#1| $) NIL (|has| |#1| (-444))) (($ $ (-1048)) NIL (|has| |#1| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-3159 (((-929 $)) 36)) (-1582 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541))) (((-3 (-400 $) "failed") (-400 $) $) NIL (|has| |#1| (-541)))) (-3845 (((-834) $) 61) (($ (-549)) NIL) (($ |#1|) 58) (($ (-1048)) NIL) (($ |#2|) 68) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#1| (-541)))) (-2157 (((-621 |#1|) $) NIL)) (-4068 ((|#1| $ (-747)) 63) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2371 (((-747)) NIL)) (-4046 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3274 (($) 20 T CONST)) (-1487 (((-1225 |#1|) $) 75)) (-2664 (($ (-1225 |#1|)) 50)) (-3286 (($) 8 T CONST)) (-1699 (($ $ (-1048)) NIL) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) NIL) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3403 (((-1225 |#1|) $) NIL)) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) 69)) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2498 (($ $) 72) (($ $ $) NIL)) (-2484 (($ $ $) 33)) (** (($ $ (-892)) NIL) (($ $ (-747)) 81)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 57) (($ $ $) 74) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 55) (($ $ |#1|) NIL)))
+(((-689 |#1| |#2|) (-13 (-1201 |#1|) (-10 -8 (-15 -1933 (|#2| |#2|)) (-15 -2107 (|#2|)) (-15 -2556 ($ |#2|)) (-15 -2545 (|#2| $)) (-15 -3845 ($ |#2|)) (-15 -1487 ((-1225 |#1|) $)) (-15 -2664 ($ (-1225 |#1|))) (-15 -3403 ((-1225 |#1|) $)) (-15 -2129 ((-929 $))) (-15 -3159 ((-929 $))) (IF (|has| |#1| (-342)) (-15 -2256 ($ $)) |%noBranch|) (IF (|has| |#1| (-361)) (-6 (-361)) |%noBranch|))) (-1018) (-1201 |#1|)) (T -689))
+((-1933 (*1 *2 *2) (-12 (-4 *3 (-1018)) (-5 *1 (-689 *3 *2)) (-4 *2 (-1201 *3)))) (-2107 (*1 *2) (-12 (-4 *2 (-1201 *3)) (-5 *1 (-689 *3 *2)) (-4 *3 (-1018)))) (-2556 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-5 *1 (-689 *3 *2)) (-4 *2 (-1201 *3)))) (-2545 (*1 *2 *1) (-12 (-4 *2 (-1201 *3)) (-5 *1 (-689 *3 *2)) (-4 *3 (-1018)))) (-3845 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-5 *1 (-689 *3 *2)) (-4 *2 (-1201 *3)))) (-1487 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-5 *2 (-1225 *3)) (-5 *1 (-689 *3 *4)) (-4 *4 (-1201 *3)))) (-2664 (*1 *1 *2) (-12 (-5 *2 (-1225 *3)) (-4 *3 (-1018)) (-5 *1 (-689 *3 *4)) (-4 *4 (-1201 *3)))) (-3403 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-5 *2 (-1225 *3)) (-5 *1 (-689 *3 *4)) (-4 *4 (-1201 *3)))) (-2129 (*1 *2) (-12 (-4 *3 (-1018)) (-5 *2 (-929 (-689 *3 *4))) (-5 *1 (-689 *3 *4)) (-4 *4 (-1201 *3)))) (-3159 (*1 *2) (-12 (-4 *3 (-1018)) (-5 *2 (-929 (-689 *3 *4))) (-5 *1 (-689 *3 *4)) (-4 *4 (-1201 *3)))) (-2256 (*1 *1 *1) (-12 (-4 *2 (-342)) (-4 *2 (-1018)) (-5 *1 (-689 *2 *3)) (-4 *3 (-1201 *2)))))
+(-13 (-1201 |#1|) (-10 -8 (-15 -1933 (|#2| |#2|)) (-15 -2107 (|#2|)) (-15 -2556 ($ |#2|)) (-15 -2545 (|#2| $)) (-15 -3845 ($ |#2|)) (-15 -1487 ((-1225 |#1|) $)) (-15 -2664 ($ (-1225 |#1|))) (-15 -3403 ((-1225 |#1|) $)) (-15 -2129 ((-929 $))) (-15 -3159 ((-929 $))) (IF (|has| |#1| (-342)) (-15 -2256 ($ $)) |%noBranch|) (IF (|has| |#1| (-361)) (-6 (-361)) |%noBranch|)))
+((-3832 (((-112) $ $) NIL)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3494 ((|#1| $) 13)) (-3988 (((-1086) $) NIL)) (-1714 ((|#2| $) 12)) (-3853 (($ |#1| |#2|) 16)) (-3845 (((-834) $) NIL) (($ (-2 (|:| -3494 |#1|) (|:| -1714 |#2|))) 15) (((-2 (|:| -3494 |#1|) (|:| -1714 |#2|)) $) 14)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 11)))
+(((-690 |#1| |#2| |#3|) (-13 (-823) (-10 -8 (-15 -1714 (|#2| $)) (-15 -3494 (|#1| $)) (-15 -3845 ($ (-2 (|:| -3494 |#1|) (|:| -1714 |#2|)))) (-15 -3845 ((-2 (|:| -3494 |#1|) (|:| -1714 |#2|)) $)) (-15 -3853 ($ |#1| |#2|)))) (-823) (-1066) (-1 (-112) (-2 (|:| -3494 |#1|) (|:| -1714 |#2|)) (-2 (|:| -3494 |#1|) (|:| -1714 |#2|)))) (T -690))
+((-1714 (*1 *2 *1) (-12 (-4 *2 (-1066)) (-5 *1 (-690 *3 *2 *4)) (-4 *3 (-823)) (-14 *4 (-1 (-112) (-2 (|:| -3494 *3) (|:| -1714 *2)) (-2 (|:| -3494 *3) (|:| -1714 *2)))))) (-3494 (*1 *2 *1) (-12 (-4 *2 (-823)) (-5 *1 (-690 *2 *3 *4)) (-4 *3 (-1066)) (-14 *4 (-1 (-112) (-2 (|:| -3494 *2) (|:| -1714 *3)) (-2 (|:| -3494 *2) (|:| -1714 *3)))))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -3494 *3) (|:| -1714 *4))) (-4 *3 (-823)) (-4 *4 (-1066)) (-5 *1 (-690 *3 *4 *5)) (-14 *5 (-1 (-112) *2 *2)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -3494 *3) (|:| -1714 *4))) (-5 *1 (-690 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-1066)) (-14 *5 (-1 (-112) *2 *2)))) (-3853 (*1 *1 *2 *3) (-12 (-5 *1 (-690 *2 *3 *4)) (-4 *2 (-823)) (-4 *3 (-1066)) (-14 *4 (-1 (-112) (-2 (|:| -3494 *2) (|:| -1714 *3)) (-2 (|:| -3494 *2) (|:| -1714 *3)))))))
+(-13 (-823) (-10 -8 (-15 -1714 (|#2| $)) (-15 -3494 (|#1| $)) (-15 -3845 ($ (-2 (|:| -3494 |#1|) (|:| -1714 |#2|)))) (-15 -3845 ((-2 (|:| -3494 |#1|) (|:| -1714 |#2|)) $)) (-15 -3853 ($ |#1| |#2|))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 59)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) 89) (((-3 (-114) "failed") $) 95)) (-2657 ((|#1| $) NIL) (((-114) $) 39)) (-2612 (((-3 $ "failed") $) 90)) (-4184 ((|#2| (-114) |#2|) 82)) (-2297 (((-112) $) NIL)) (-3325 (($ |#1| (-354 (-114))) 14)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3192 (($ $ (-1 |#2| |#2|)) 58)) (-3295 (($ $ (-1 |#2| |#2|)) 44)) (-3339 ((|#2| $ |#2|) 33)) (-1481 ((|#1| |#1|) 105 (|has| |#1| (-170)))) (-3845 (((-834) $) 66) (($ (-549)) 18) (($ |#1|) 17) (($ (-114)) 23)) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) 37)) (-3478 (($ $) 99 (|has| |#1| (-170))) (($ $ $) 103 (|has| |#1| (-170)))) (-3274 (($) 21 T CONST)) (-3286 (($) 9 T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) 48) (($ $ $) NIL)) (-2484 (($ $ $) 73)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ (-114) (-549)) NIL) (($ $ (-549)) 57)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 98) (($ $ $) 50) (($ |#1| $) 96 (|has| |#1| (-170))) (($ $ |#1|) 97 (|has| |#1| (-170)))))
+(((-691 |#1| |#2|) (-13 (-1018) (-1009 |#1|) (-1009 (-114)) (-279 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |#1| (-170)) (PROGN (-6 (-38 |#1|)) (-15 -3478 ($ $)) (-15 -3478 ($ $ $)) (-15 -1481 (|#1| |#1|))) |%noBranch|) (-15 -3295 ($ $ (-1 |#2| |#2|))) (-15 -3192 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-114) (-549))) (-15 ** ($ $ (-549))) (-15 -4184 (|#2| (-114) |#2|)) (-15 -3325 ($ |#1| (-354 (-114)))))) (-1018) (-624 |#1|)) (T -691))
+((-3478 (*1 *1 *1) (-12 (-4 *2 (-170)) (-4 *2 (-1018)) (-5 *1 (-691 *2 *3)) (-4 *3 (-624 *2)))) (-3478 (*1 *1 *1 *1) (-12 (-4 *2 (-170)) (-4 *2 (-1018)) (-5 *1 (-691 *2 *3)) (-4 *3 (-624 *2)))) (-1481 (*1 *2 *2) (-12 (-4 *2 (-170)) (-4 *2 (-1018)) (-5 *1 (-691 *2 *3)) (-4 *3 (-624 *2)))) (-3295 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-624 *3)) (-4 *3 (-1018)) (-5 *1 (-691 *3 *4)))) (-3192 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-624 *3)) (-4 *3 (-1018)) (-5 *1 (-691 *3 *4)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-549)) (-4 *4 (-1018)) (-5 *1 (-691 *4 *5)) (-4 *5 (-624 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *3 (-1018)) (-5 *1 (-691 *3 *4)) (-4 *4 (-624 *3)))) (-4184 (*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-4 *4 (-1018)) (-5 *1 (-691 *4 *2)) (-4 *2 (-624 *4)))) (-3325 (*1 *1 *2 *3) (-12 (-5 *3 (-354 (-114))) (-4 *2 (-1018)) (-5 *1 (-691 *2 *4)) (-4 *4 (-624 *2)))))
+(-13 (-1018) (-1009 |#1|) (-1009 (-114)) (-279 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |#1| (-170)) (PROGN (-6 (-38 |#1|)) (-15 -3478 ($ $)) (-15 -3478 ($ $ $)) (-15 -1481 (|#1| |#1|))) |%noBranch|) (-15 -3295 ($ $ (-1 |#2| |#2|))) (-15 -3192 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-114) (-549))) (-15 ** ($ $ (-549))) (-15 -4184 (|#2| (-114) |#2|)) (-15 -3325 ($ |#1| (-354 (-114))))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 33)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2556 (($ |#1| |#2|) 25)) (-2612 (((-3 $ "failed") $) 48)) (-2297 (((-112) $) 35)) (-2107 ((|#2| $) 12)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 49)) (-3988 (((-1086) $) NIL)) (-2173 (((-3 $ "failed") $ $) 47)) (-3845 (((-834) $) 24) (($ (-549)) 19) ((|#1| $) 13)) (-2371 (((-747)) 28)) (-3274 (($) 16 T CONST)) (-3286 (($) 30 T CONST)) (-2387 (((-112) $ $) 38)) (-2498 (($ $) 43) (($ $ $) 37)) (-2484 (($ $ $) 40)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 21) (($ $ $) 20)))
+(((-692 |#1| |#2| |#3| |#4| |#5|) (-13 (-1018) (-10 -8 (-15 -2107 (|#2| $)) (-15 -3845 (|#1| $)) (-15 -2556 ($ |#1| |#2|)) (-15 -2173 ((-3 $ "failed") $ $)) (-15 -2612 ((-3 $ "failed") $)) (-15 -1990 ($ $)))) (-170) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -692))
+((-2612 (*1 *1 *1) (|partial| -12 (-5 *1 (-692 *2 *3 *4 *5 *6)) (-4 *2 (-170)) (-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)))) (-2107 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-692 *3 *2 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-3845 (*1 *2 *1) (-12 (-4 *2 (-170)) (-5 *1 (-692 *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)))) (-2556 (*1 *1 *2 *3) (-12 (-5 *1 (-692 *2 *3 *4 *5 *6)) (-4 *2 (-170)) (-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)))) (-2173 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-692 *2 *3 *4 *5 *6)) (-4 *2 (-170)) (-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)))) (-1990 (*1 *1 *1) (-12 (-5 *1 (-692 *2 *3 *4 *5 *6)) (-4 *2 (-170)) (-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 (-1018) (-10 -8 (-15 -2107 (|#2| $)) (-15 -3845 (|#1| $)) (-15 -2556 ($ |#1| |#2|)) (-15 -2173 ((-3 $ "failed") $ $)) (-15 -2612 ((-3 $ "failed") $)) (-15 -1990 ($ $))))
((* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ |#2| $) NIL) (($ $ |#2|) 9)))
(((-693 |#1| |#2|) (-10 -8 (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|))) (-694 |#2|) (-170)) (T -693))
NIL
(-10 -8 (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
(((-694 |#1|) (-138) (-170)) (T -694))
NIL
(-13 (-111 |t#1| |t#1|))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-1024 |#1|) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-1310 (($ |#1|) 17) (($ $ |#1|) 20)) (-2945 (($ |#1|) 18) (($ $ |#1|) 21)) (-1682 (($) NIL T CONST)) (-2114 (((-3 $ "failed") $) NIL) (($) 19) (($ $) 22)) (-2675 (((-112) $) NIL)) (-3933 (($ |#1| |#1| |#1| |#1|) 8)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 16)) (-3990 (((-1087) $) NIL)) (-2686 ((|#1| $ |#1|) 24) (((-809 |#1|) $ (-809 |#1|)) 32)) (-1955 (($ $ $) NIL)) (-3293 (($ $ $) NIL)) (-3846 (((-834) $) 39)) (-3287 (($) 9 T CONST)) (-2389 (((-112) $ $) 44)) (-2513 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ $ $) 14)))
-(((-695 |#1|) (-13 (-465) (-10 -8 (-15 -3933 ($ |#1| |#1| |#1| |#1|)) (-15 -1310 ($ |#1|)) (-15 -2945 ($ |#1|)) (-15 -2114 ($)) (-15 -1310 ($ $ |#1|)) (-15 -2945 ($ $ |#1|)) (-15 -2114 ($ $)) (-15 -2686 (|#1| $ |#1|)) (-15 -2686 ((-809 |#1|) $ (-809 |#1|))))) (-356)) (T -695))
-((-3933 (*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))) (-1310 (*1 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))) (-2945 (*1 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))) (-2114 (*1 *1) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))) (-1310 (*1 *1 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))) (-2945 (*1 *1 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))) (-2114 (*1 *1 *1) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))) (-2686 (*1 *2 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))) (-2686 (*1 *2 *1 *2) (-12 (-5 *2 (-809 *3)) (-4 *3 (-356)) (-5 *1 (-695 *3)))))
-(-13 (-465) (-10 -8 (-15 -3933 ($ |#1| |#1| |#1| |#1|)) (-15 -1310 ($ |#1|)) (-15 -2945 ($ |#1|)) (-15 -2114 ($)) (-15 -1310 ($ $ |#1|)) (-15 -2945 ($ $ |#1|)) (-15 -2114 ($ $)) (-15 -2686 (|#1| $ |#1|)) (-15 -2686 ((-809 |#1|) $ (-809 |#1|)))))
-((-3117 (($ $ (-892)) 12)) (-2884 (($ $ (-892)) 13)) (** (($ $ (-892)) 10)))
-(((-696 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-892))) (-15 -2884 (|#1| |#1| (-892))) (-15 -3117 (|#1| |#1| (-892)))) (-697)) (T -696))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-892))) (-15 -2884 (|#1| |#1| (-892))) (-15 -3117 (|#1| |#1| (-892))))
-((-3834 (((-112) $ $) 7)) (-3117 (($ $ (-892)) 15)) (-2884 (($ $ (-892)) 14)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-2389 (((-112) $ $) 6)) (** (($ $ (-892)) 13)) (* (($ $ $) 16)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-1024 |#1|) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-1309 (($ |#1|) 17) (($ $ |#1|) 20)) (-2828 (($ |#1|) 18) (($ $ |#1|) 21)) (-3034 (($) NIL T CONST)) (-2612 (((-3 $ "failed") $) NIL) (($) 19) (($ $) 22)) (-2297 (((-112) $) NIL)) (-1602 (($ |#1| |#1| |#1| |#1|) 8)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 16)) (-3988 (((-1086) $) NIL)) (-2684 ((|#1| $ |#1|) 24) (((-809 |#1|) $ (-809 |#1|)) 32)) (-1795 (($ $ $) NIL)) (-3870 (($ $ $) NIL)) (-3845 (((-834) $) 39)) (-3286 (($) 9 T CONST)) (-2387 (((-112) $ $) 44)) (-2511 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ $ $) 14)))
+(((-695 |#1|) (-13 (-465) (-10 -8 (-15 -1602 ($ |#1| |#1| |#1| |#1|)) (-15 -1309 ($ |#1|)) (-15 -2828 ($ |#1|)) (-15 -2612 ($)) (-15 -1309 ($ $ |#1|)) (-15 -2828 ($ $ |#1|)) (-15 -2612 ($ $)) (-15 -2684 (|#1| $ |#1|)) (-15 -2684 ((-809 |#1|) $ (-809 |#1|))))) (-356)) (T -695))
+((-1602 (*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))) (-1309 (*1 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))) (-2828 (*1 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))) (-2612 (*1 *1) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))) (-1309 (*1 *1 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))) (-2828 (*1 *1 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))) (-2612 (*1 *1 *1) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))) (-2684 (*1 *2 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))) (-2684 (*1 *2 *1 *2) (-12 (-5 *2 (-809 *3)) (-4 *3 (-356)) (-5 *1 (-695 *3)))))
+(-13 (-465) (-10 -8 (-15 -1602 ($ |#1| |#1| |#1| |#1|)) (-15 -1309 ($ |#1|)) (-15 -2828 ($ |#1|)) (-15 -2612 ($)) (-15 -1309 ($ $ |#1|)) (-15 -2828 ($ $ |#1|)) (-15 -2612 ($ $)) (-15 -2684 (|#1| $ |#1|)) (-15 -2684 ((-809 |#1|) $ (-809 |#1|)))))
+((-2039 (($ $ (-892)) 12)) (-4304 (($ $ (-892)) 13)) (** (($ $ (-892)) 10)))
+(((-696 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-892))) (-15 -4304 (|#1| |#1| (-892))) (-15 -2039 (|#1| |#1| (-892)))) (-697)) (T -696))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-892))) (-15 -4304 (|#1| |#1| (-892))) (-15 -2039 (|#1| |#1| (-892))))
+((-3832 (((-112) $ $) 7)) (-2039 (($ $ (-892)) 15)) (-4304 (($ $ (-892)) 14)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-2387 (((-112) $ $) 6)) (** (($ $ (-892)) 13)) (* (($ $ $) 16)))
(((-697) (-138)) (T -697))
-((* (*1 *1 *1 *1) (-4 *1 (-697))) (-3117 (*1 *1 *1 *2) (-12 (-4 *1 (-697)) (-5 *2 (-892)))) (-2884 (*1 *1 *1 *2) (-12 (-4 *1 (-697)) (-5 *2 (-892)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-697)) (-5 *2 (-892)))))
-(-13 (-1067) (-10 -8 (-15 * ($ $ $)) (-15 -3117 ($ $ (-892))) (-15 -2884 ($ $ (-892))) (-15 ** ($ $ (-892)))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-3117 (($ $ (-892)) NIL) (($ $ (-747)) 17)) (-2675 (((-112) $) 10)) (-2884 (($ $ (-892)) NIL) (($ $ (-747)) 18)) (** (($ $ (-892)) NIL) (($ $ (-747)) 15)))
-(((-698 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-747))) (-15 -2884 (|#1| |#1| (-747))) (-15 -3117 (|#1| |#1| (-747))) (-15 -2675 ((-112) |#1|)) (-15 ** (|#1| |#1| (-892))) (-15 -2884 (|#1| |#1| (-892))) (-15 -3117 (|#1| |#1| (-892)))) (-699)) (T -698))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-747))) (-15 -2884 (|#1| |#1| (-747))) (-15 -3117 (|#1| |#1| (-747))) (-15 -2675 ((-112) |#1|)) (-15 ** (|#1| |#1| (-892))) (-15 -2884 (|#1| |#1| (-892))) (-15 -3117 (|#1| |#1| (-892))))
-((-3834 (((-112) $ $) 7)) (-3038 (((-3 $ "failed") $) 17)) (-3117 (($ $ (-892)) 15) (($ $ (-747)) 22)) (-2114 (((-3 $ "failed") $) 19)) (-2675 (((-112) $) 23)) (-1919 (((-3 $ "failed") $) 18)) (-2884 (($ $ (-892)) 14) (($ $ (-747)) 21)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-3287 (($) 24 T CONST)) (-2389 (((-112) $ $) 6)) (** (($ $ (-892)) 13) (($ $ (-747)) 20)) (* (($ $ $) 16)))
+((* (*1 *1 *1 *1) (-4 *1 (-697))) (-2039 (*1 *1 *1 *2) (-12 (-4 *1 (-697)) (-5 *2 (-892)))) (-4304 (*1 *1 *1 *2) (-12 (-4 *1 (-697)) (-5 *2 (-892)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-697)) (-5 *2 (-892)))))
+(-13 (-1066) (-10 -8 (-15 * ($ $ $)) (-15 -2039 ($ $ (-892))) (-15 -4304 ($ $ (-892))) (-15 ** ($ $ (-892)))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-2039 (($ $ (-892)) NIL) (($ $ (-747)) 17)) (-2297 (((-112) $) 10)) (-4304 (($ $ (-892)) NIL) (($ $ (-747)) 18)) (** (($ $ (-892)) NIL) (($ $ (-747)) 15)))
+(((-698 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-747))) (-15 -4304 (|#1| |#1| (-747))) (-15 -2039 (|#1| |#1| (-747))) (-15 -2297 ((-112) |#1|)) (-15 ** (|#1| |#1| (-892))) (-15 -4304 (|#1| |#1| (-892))) (-15 -2039 (|#1| |#1| (-892)))) (-699)) (T -698))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-747))) (-15 -4304 (|#1| |#1| (-747))) (-15 -2039 (|#1| |#1| (-747))) (-15 -2297 ((-112) |#1|)) (-15 ** (|#1| |#1| (-892))) (-15 -4304 (|#1| |#1| (-892))) (-15 -2039 (|#1| |#1| (-892))))
+((-3832 (((-112) $ $) 7)) (-2013 (((-3 $ "failed") $) 17)) (-2039 (($ $ (-892)) 15) (($ $ (-747)) 22)) (-2612 (((-3 $ "failed") $) 19)) (-2297 (((-112) $) 23)) (-1540 (((-3 $ "failed") $) 18)) (-4304 (($ $ (-892)) 14) (($ $ (-747)) 21)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-3286 (($) 24 T CONST)) (-2387 (((-112) $ $) 6)) (** (($ $ (-892)) 13) (($ $ (-747)) 20)) (* (($ $ $) 16)))
(((-699) (-138)) (T -699))
-((-3287 (*1 *1) (-4 *1 (-699))) (-2675 (*1 *2 *1) (-12 (-4 *1 (-699)) (-5 *2 (-112)))) (-3117 (*1 *1 *1 *2) (-12 (-4 *1 (-699)) (-5 *2 (-747)))) (-2884 (*1 *1 *1 *2) (-12 (-4 *1 (-699)) (-5 *2 (-747)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-699)) (-5 *2 (-747)))) (-2114 (*1 *1 *1) (|partial| -4 *1 (-699))) (-1919 (*1 *1 *1) (|partial| -4 *1 (-699))) (-3038 (*1 *1 *1) (|partial| -4 *1 (-699))))
-(-13 (-697) (-10 -8 (-15 (-3287) ($) -2589) (-15 -2675 ((-112) $)) (-15 -3117 ($ $ (-747))) (-15 -2884 ($ $ (-747))) (-15 ** ($ $ (-747))) (-15 -2114 ((-3 $ "failed") $)) (-15 -1919 ((-3 $ "failed") $)) (-15 -3038 ((-3 $ "failed") $))))
-(((-101) . T) ((-593 (-834)) . T) ((-697) . T) ((-1067) . T))
-((-3614 (((-747)) 34)) (-2714 (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-2659 (((-549) $) NIL) (((-400 (-549)) $) NIL) ((|#2| $) 22)) (-2557 (($ |#3|) NIL) (((-3 $ "failed") (-400 |#3|)) 44)) (-2114 (((-3 $ "failed") $) 64)) (-3239 (($) 38)) (-3630 ((|#2| $) 20)) (-4248 (($) 17)) (-3456 (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) 52) (($ $ (-621 (-1143)) (-621 (-747))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143)) NIL) (($ $ (-747)) NIL) (($ $) NIL)) (-2901 (((-665 |#2|) (-1226 $) (-1 |#2| |#2|)) 59)) (-2845 (((-1226 |#2|) $) NIL) (($ (-1226 |#2|)) NIL) ((|#3| $) 10) (($ |#3|) 12)) (-4154 ((|#3| $) 32)) (-1949 (((-1226 $)) 29)))
-(((-700 |#1| |#2| |#3|) (-10 -8 (-15 -3456 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3239 (|#1|)) (-15 -3614 ((-747))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -2901 ((-665 |#2|) (-1226 |#1|) (-1 |#2| |#2|))) (-15 -2557 ((-3 |#1| "failed") (-400 |#3|))) (-15 -2845 (|#1| |#3|)) (-15 -2557 (|#1| |#3|)) (-15 -4248 (|#1|)) (-15 -2659 (|#2| |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -2845 (|#3| |#1|)) (-15 -2845 (|#1| (-1226 |#2|))) (-15 -2845 ((-1226 |#2|) |#1|)) (-15 -1949 ((-1226 |#1|))) (-15 -4154 (|#3| |#1|)) (-15 -3630 (|#2| |#1|)) (-15 -2114 ((-3 |#1| "failed") |#1|))) (-701 |#2| |#3|) (-170) (-1202 |#2|)) (T -700))
-((-3614 (*1 *2) (-12 (-4 *4 (-170)) (-4 *5 (-1202 *4)) (-5 *2 (-747)) (-5 *1 (-700 *3 *4 *5)) (-4 *3 (-701 *4 *5)))))
-(-10 -8 (-15 -3456 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3239 (|#1|)) (-15 -3614 ((-747))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -2901 ((-665 |#2|) (-1226 |#1|) (-1 |#2| |#2|))) (-15 -2557 ((-3 |#1| "failed") (-400 |#3|))) (-15 -2845 (|#1| |#3|)) (-15 -2557 (|#1| |#3|)) (-15 -4248 (|#1|)) (-15 -2659 (|#2| |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -2845 (|#3| |#1|)) (-15 -2845 (|#1| (-1226 |#2|))) (-15 -2845 ((-1226 |#2|) |#1|)) (-15 -1949 ((-1226 |#1|))) (-15 -4154 (|#3| |#1|)) (-15 -3630 (|#2| |#1|)) (-15 -2114 ((-3 |#1| "failed") |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 91 (|has| |#1| (-356)))) (-2258 (($ $) 92 (|has| |#1| (-356)))) (-2799 (((-112) $) 94 (|has| |#1| (-356)))) (-1738 (((-665 |#1|) (-1226 $)) 44) (((-665 |#1|)) 59)) (-2906 ((|#1| $) 50)) (-3062 (((-1153 (-892) (-747)) (-549)) 144 (|has| |#1| (-342)))) (-2001 (((-3 $ "failed") $ $) 19)) (-3979 (($ $) 111 (|has| |#1| (-356)))) (-2402 (((-411 $) $) 112 (|has| |#1| (-356)))) (-3866 (((-112) $ $) 102 (|has| |#1| (-356)))) (-3614 (((-747)) 85 (|has| |#1| (-361)))) (-1682 (($) 17 T CONST)) (-2714 (((-3 (-549) "failed") $) 166 (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 164 (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 163)) (-2659 (((-549) $) 167 (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) 165 (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 162)) (-3492 (($ (-1226 |#1|) (-1226 $)) 46) (($ (-1226 |#1|)) 62)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) 150 (|has| |#1| (-342)))) (-2095 (($ $ $) 106 (|has| |#1| (-356)))) (-3506 (((-665 |#1|) $ (-1226 $)) 51) (((-665 |#1|) $) 57)) (-3879 (((-665 (-549)) (-665 $)) 161 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 160 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) 159) (((-665 |#1|) (-665 $)) 158)) (-2557 (($ |#2|) 155) (((-3 $ "failed") (-400 |#2|)) 152 (|has| |#1| (-356)))) (-2114 (((-3 $ "failed") $) 32)) (-3123 (((-892)) 52)) (-3239 (($) 88 (|has| |#1| (-361)))) (-2067 (($ $ $) 105 (|has| |#1| (-356)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 100 (|has| |#1| (-356)))) (-2405 (($) 146 (|has| |#1| (-342)))) (-2288 (((-112) $) 147 (|has| |#1| (-342)))) (-3165 (($ $ (-747)) 138 (|has| |#1| (-342))) (($ $) 137 (|has| |#1| (-342)))) (-1420 (((-112) $) 113 (|has| |#1| (-356)))) (-2088 (((-892) $) 149 (|has| |#1| (-342))) (((-809 (-892)) $) 135 (|has| |#1| (-342)))) (-2675 (((-112) $) 30)) (-3630 ((|#1| $) 49)) (-1681 (((-3 $ "failed") $) 139 (|has| |#1| (-342)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 109 (|has| |#1| (-356)))) (-3788 ((|#2| $) 42 (|has| |#1| (-356)))) (-1881 (((-892) $) 87 (|has| |#1| (-361)))) (-2548 ((|#2| $) 153)) (-3697 (($ (-621 $)) 98 (|has| |#1| (-356))) (($ $ $) 97 (|has| |#1| (-356)))) (-3851 (((-1125) $) 9)) (-1992 (($ $) 114 (|has| |#1| (-356)))) (-3060 (($) 140 (|has| |#1| (-342)) CONST)) (-3493 (($ (-892)) 86 (|has| |#1| (-361)))) (-3990 (((-1087) $) 10)) (-4248 (($) 157)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 99 (|has| |#1| (-356)))) (-3727 (($ (-621 $)) 96 (|has| |#1| (-356))) (($ $ $) 95 (|has| |#1| (-356)))) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) 143 (|has| |#1| (-342)))) (-2121 (((-411 $) $) 110 (|has| |#1| (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 108 (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 107 (|has| |#1| (-356)))) (-2042 (((-3 $ "failed") $ $) 90 (|has| |#1| (-356)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 101 (|has| |#1| (-356)))) (-3684 (((-747) $) 103 (|has| |#1| (-356)))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 104 (|has| |#1| (-356)))) (-3602 ((|#1| (-1226 $)) 45) ((|#1|) 58)) (-3914 (((-747) $) 148 (|has| |#1| (-342))) (((-3 (-747) "failed") $ $) 136 (|has| |#1| (-342)))) (-3456 (($ $) 134 (-1536 (-1821 (|has| |#1| (-227)) (|has| |#1| (-356))) (|has| |#1| (-342)))) (($ $ (-747)) 132 (-1536 (-1821 (|has| |#1| (-227)) (|has| |#1| (-356))) (|has| |#1| (-342)))) (($ $ (-1143)) 130 (-1821 (|has| |#1| (-871 (-1143))) (|has| |#1| (-356)))) (($ $ (-621 (-1143))) 129 (-1821 (|has| |#1| (-871 (-1143))) (|has| |#1| (-356)))) (($ $ (-1143) (-747)) 128 (-1821 (|has| |#1| (-871 (-1143))) (|has| |#1| (-356)))) (($ $ (-621 (-1143)) (-621 (-747))) 127 (-1821 (|has| |#1| (-871 (-1143))) (|has| |#1| (-356)))) (($ $ (-1 |#1| |#1|) (-747)) 120 (|has| |#1| (-356))) (($ $ (-1 |#1| |#1|)) 119 (|has| |#1| (-356)))) (-2901 (((-665 |#1|) (-1226 $) (-1 |#1| |#1|)) 151 (|has| |#1| (-356)))) (-2815 ((|#2|) 156)) (-3170 (($) 145 (|has| |#1| (-342)))) (-4263 (((-1226 |#1|) $ (-1226 $)) 48) (((-665 |#1|) (-1226 $) (-1226 $)) 47) (((-1226 |#1|) $) 64) (((-665 |#1|) (-1226 $)) 63)) (-2845 (((-1226 |#1|) $) 61) (($ (-1226 |#1|)) 60) ((|#2| $) 168) (($ |#2|) 154)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) 142 (|has| |#1| (-342)))) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 35) (($ $) 89 (|has| |#1| (-356))) (($ (-400 (-549))) 84 (-1536 (|has| |#1| (-356)) (|has| |#1| (-1009 (-400 (-549))))))) (-2210 (($ $) 141 (|has| |#1| (-342))) (((-3 $ "failed") $) 41 (|has| |#1| (-143)))) (-4154 ((|#2| $) 43)) (-2082 (((-747)) 28)) (-1949 (((-1226 $)) 65)) (-1498 (((-112) $ $) 93 (|has| |#1| (-356)))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $) 133 (-1536 (-1821 (|has| |#1| (-227)) (|has| |#1| (-356))) (|has| |#1| (-342)))) (($ $ (-747)) 131 (-1536 (-1821 (|has| |#1| (-227)) (|has| |#1| (-356))) (|has| |#1| (-342)))) (($ $ (-1143)) 126 (-1821 (|has| |#1| (-871 (-1143))) (|has| |#1| (-356)))) (($ $ (-621 (-1143))) 125 (-1821 (|has| |#1| (-871 (-1143))) (|has| |#1| (-356)))) (($ $ (-1143) (-747)) 124 (-1821 (|has| |#1| (-871 (-1143))) (|has| |#1| (-356)))) (($ $ (-621 (-1143)) (-621 (-747))) 123 (-1821 (|has| |#1| (-871 (-1143))) (|has| |#1| (-356)))) (($ $ (-1 |#1| |#1|) (-747)) 122 (|has| |#1| (-356))) (($ $ (-1 |#1| |#1|)) 121 (|has| |#1| (-356)))) (-2389 (((-112) $ $) 6)) (-2513 (($ $ $) 118 (|has| |#1| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 115 (|has| |#1| (-356)))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 37) (($ |#1| $) 36) (($ (-400 (-549)) $) 117 (|has| |#1| (-356))) (($ $ (-400 (-549))) 116 (|has| |#1| (-356)))))
-(((-701 |#1| |#2|) (-138) (-170) (-1202 |t#1|)) (T -701))
-((-4248 (*1 *1) (-12 (-4 *2 (-170)) (-4 *1 (-701 *2 *3)) (-4 *3 (-1202 *2)))) (-2815 (*1 *2) (-12 (-4 *1 (-701 *3 *2)) (-4 *3 (-170)) (-4 *2 (-1202 *3)))) (-2557 (*1 *1 *2) (-12 (-4 *3 (-170)) (-4 *1 (-701 *3 *2)) (-4 *2 (-1202 *3)))) (-2845 (*1 *1 *2) (-12 (-4 *3 (-170)) (-4 *1 (-701 *3 *2)) (-4 *2 (-1202 *3)))) (-2548 (*1 *2 *1) (-12 (-4 *1 (-701 *3 *2)) (-4 *3 (-170)) (-4 *2 (-1202 *3)))) (-2557 (*1 *1 *2) (|partial| -12 (-5 *2 (-400 *4)) (-4 *4 (-1202 *3)) (-4 *3 (-356)) (-4 *3 (-170)) (-4 *1 (-701 *3 *4)))) (-2901 (*1 *2 *3 *4) (-12 (-5 *3 (-1226 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-356)) (-4 *1 (-701 *5 *6)) (-4 *5 (-170)) (-4 *6 (-1202 *5)) (-5 *2 (-665 *5)))))
-(-13 (-402 |t#1| |t#2|) (-170) (-594 |t#2|) (-404 |t#1|) (-370 |t#1|) (-10 -8 (-15 -4248 ($)) (-15 -2815 (|t#2|)) (-15 -2557 ($ |t#2|)) (-15 -2845 ($ |t#2|)) (-15 -2548 (|t#2| $)) (IF (|has| |t#1| (-361)) (-6 (-361)) |%noBranch|) (IF (|has| |t#1| (-356)) (PROGN (-6 (-356)) (-6 (-225 |t#1|)) (-15 -2557 ((-3 $ "failed") (-400 |t#2|))) (-15 -2901 ((-665 |t#1|) (-1226 $) (-1 |t#1| |t#1|)))) |%noBranch|) (IF (|has| |t#1| (-342)) (-6 (-342)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-38 |#1|) . T) ((-38 $) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-101) . T) ((-111 #0# #0#) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-130) . T) ((-143) -1536 (|has| |#1| (-342)) (|has| |#1| (-143))) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) . T) ((-594 |#2|) . T) ((-225 |#1|) |has| |#1| (-356)) ((-227) -1536 (|has| |#1| (-342)) (-12 (|has| |#1| (-227)) (|has| |#1| (-356)))) ((-237) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-283) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-300) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-356) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-395) |has| |#1| (-342)) ((-361) -1536 (|has| |#1| (-361)) (|has| |#1| (-342))) ((-342) |has| |#1| (-342)) ((-363 |#1| |#2|) . T) ((-402 |#1| |#2|) . T) ((-370 |#1|) . T) ((-404 |#1|) . T) ((-444) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-541) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-624 #0#) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-624 |#1|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-694 #0#) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-694 |#1|) . T) ((-694 $) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-703) . T) ((-871 (-1143)) -12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1143)))) ((-891) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1024 #0#) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-1024 |#1|) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1118) |has| |#1| (-342)) ((-1184) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))))
-((-1682 (($) 11)) (-2114 (((-3 $ "failed") $) 13)) (-2675 (((-112) $) 10)) (** (($ $ (-892)) NIL) (($ $ (-747)) 18)))
-(((-702 |#1|) (-10 -8 (-15 -2114 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-747))) (-15 -2675 ((-112) |#1|)) (-15 -1682 (|#1|)) (-15 ** (|#1| |#1| (-892)))) (-703)) (T -702))
-NIL
-(-10 -8 (-15 -2114 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-747))) (-15 -2675 ((-112) |#1|)) (-15 -1682 (|#1|)) (-15 ** (|#1| |#1| (-892))))
-((-3834 (((-112) $ $) 7)) (-1682 (($) 18 T CONST)) (-2114 (((-3 $ "failed") $) 15)) (-2675 (((-112) $) 17)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-3287 (($) 19 T CONST)) (-2389 (((-112) $ $) 6)) (** (($ $ (-892)) 13) (($ $ (-747)) 16)) (* (($ $ $) 14)))
+((-3286 (*1 *1) (-4 *1 (-699))) (-2297 (*1 *2 *1) (-12 (-4 *1 (-699)) (-5 *2 (-112)))) (-2039 (*1 *1 *1 *2) (-12 (-4 *1 (-699)) (-5 *2 (-747)))) (-4304 (*1 *1 *1 *2) (-12 (-4 *1 (-699)) (-5 *2 (-747)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-699)) (-5 *2 (-747)))) (-2612 (*1 *1 *1) (|partial| -4 *1 (-699))) (-1540 (*1 *1 *1) (|partial| -4 *1 (-699))) (-2013 (*1 *1 *1) (|partial| -4 *1 (-699))))
+(-13 (-697) (-10 -8 (-15 (-3286) ($) -2587) (-15 -2297 ((-112) $)) (-15 -2039 ($ $ (-747))) (-15 -4304 ($ $ (-747))) (-15 ** ($ $ (-747))) (-15 -2612 ((-3 $ "failed") $)) (-15 -1540 ((-3 $ "failed") $)) (-15 -2013 ((-3 $ "failed") $))))
+(((-101) . T) ((-593 (-834)) . T) ((-697) . T) ((-1066) . T))
+((-3614 (((-747)) 34)) (-2712 (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-2657 (((-549) $) NIL) (((-400 (-549)) $) NIL) ((|#2| $) 22)) (-2556 (($ |#3|) NIL) (((-3 $ "failed") (-400 |#3|)) 44)) (-2612 (((-3 $ "failed") $) 64)) (-3237 (($) 38)) (-2469 ((|#2| $) 20)) (-4247 (($) 17)) (-3455 (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) 52) (($ $ (-621 (-1142)) (-621 (-747))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142)) NIL) (($ $ (-747)) NIL) (($ $) NIL)) (-2381 (((-665 |#2|) (-1225 $) (-1 |#2| |#2|)) 59)) (-2843 (((-1225 |#2|) $) NIL) (($ (-1225 |#2|)) NIL) ((|#3| $) 10) (($ |#3|) 12)) (-4019 ((|#3| $) 32)) (-2619 (((-1225 $)) 29)))
+(((-700 |#1| |#2| |#3|) (-10 -8 (-15 -3455 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -3237 (|#1|)) (-15 -3614 ((-747))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -2381 ((-665 |#2|) (-1225 |#1|) (-1 |#2| |#2|))) (-15 -2556 ((-3 |#1| "failed") (-400 |#3|))) (-15 -2843 (|#1| |#3|)) (-15 -2556 (|#1| |#3|)) (-15 -4247 (|#1|)) (-15 -2657 (|#2| |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -2843 (|#3| |#1|)) (-15 -2843 (|#1| (-1225 |#2|))) (-15 -2843 ((-1225 |#2|) |#1|)) (-15 -2619 ((-1225 |#1|))) (-15 -4019 (|#3| |#1|)) (-15 -2469 (|#2| |#1|)) (-15 -2612 ((-3 |#1| "failed") |#1|))) (-701 |#2| |#3|) (-170) (-1201 |#2|)) (T -700))
+((-3614 (*1 *2) (-12 (-4 *4 (-170)) (-4 *5 (-1201 *4)) (-5 *2 (-747)) (-5 *1 (-700 *3 *4 *5)) (-4 *3 (-701 *4 *5)))))
+(-10 -8 (-15 -3455 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -3237 (|#1|)) (-15 -3614 ((-747))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -2381 ((-665 |#2|) (-1225 |#1|) (-1 |#2| |#2|))) (-15 -2556 ((-3 |#1| "failed") (-400 |#3|))) (-15 -2843 (|#1| |#3|)) (-15 -2556 (|#1| |#3|)) (-15 -4247 (|#1|)) (-15 -2657 (|#2| |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -2843 (|#3| |#1|)) (-15 -2843 (|#1| (-1225 |#2|))) (-15 -2843 ((-1225 |#2|) |#1|)) (-15 -2619 ((-1225 |#1|))) (-15 -4019 (|#3| |#1|)) (-15 -2469 (|#2| |#1|)) (-15 -2612 ((-3 |#1| "failed") |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 91 (|has| |#1| (-356)))) (-3044 (($ $) 92 (|has| |#1| (-356)))) (-2774 (((-112) $) 94 (|has| |#1| (-356)))) (-1789 (((-665 |#1|) (-1225 $)) 44) (((-665 |#1|)) 59)) (-2904 ((|#1| $) 50)) (-1597 (((-1152 (-892) (-747)) (-549)) 144 (|has| |#1| (-342)))) (-2416 (((-3 $ "failed") $ $) 19)) (-3239 (($ $) 111 (|has| |#1| (-356)))) (-2620 (((-411 $) $) 112 (|has| |#1| (-356)))) (-2680 (((-112) $ $) 102 (|has| |#1| (-356)))) (-3614 (((-747)) 85 (|has| |#1| (-361)))) (-3034 (($) 17 T CONST)) (-2712 (((-3 (-549) "failed") $) 166 (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 164 (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 163)) (-2657 (((-549) $) 167 (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) 165 (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 162)) (-2397 (($ (-1225 |#1|) (-1225 $)) 46) (($ (-1225 |#1|)) 62)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) 150 (|has| |#1| (-342)))) (-2091 (($ $ $) 106 (|has| |#1| (-356)))) (-1408 (((-665 |#1|) $ (-1225 $)) 51) (((-665 |#1|) $) 57)) (-3446 (((-665 (-549)) (-665 $)) 161 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 160 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) 159) (((-665 |#1|) (-665 $)) 158)) (-2556 (($ |#2|) 155) (((-3 $ "failed") (-400 |#2|)) 152 (|has| |#1| (-356)))) (-2612 (((-3 $ "failed") $) 32)) (-3121 (((-892)) 52)) (-3237 (($) 88 (|has| |#1| (-361)))) (-2065 (($ $ $) 105 (|has| |#1| (-356)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 100 (|has| |#1| (-356)))) (-1545 (($) 146 (|has| |#1| (-342)))) (-1315 (((-112) $) 147 (|has| |#1| (-342)))) (-3517 (($ $ (-747)) 138 (|has| |#1| (-342))) (($ $) 137 (|has| |#1| (-342)))) (-1464 (((-112) $) 113 (|has| |#1| (-356)))) (-2729 (((-892) $) 149 (|has| |#1| (-342))) (((-809 (-892)) $) 135 (|has| |#1| (-342)))) (-2297 (((-112) $) 30)) (-2469 ((|#1| $) 49)) (-2964 (((-3 $ "failed") $) 139 (|has| |#1| (-342)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 109 (|has| |#1| (-356)))) (-3514 ((|#2| $) 42 (|has| |#1| (-356)))) (-3309 (((-892) $) 87 (|has| |#1| (-361)))) (-2545 ((|#2| $) 153)) (-3696 (($ (-621 $)) 98 (|has| |#1| (-356))) (($ $ $) 97 (|has| |#1| (-356)))) (-3441 (((-1124) $) 9)) (-1990 (($ $) 114 (|has| |#1| (-356)))) (-3059 (($) 140 (|has| |#1| (-342)) CONST)) (-3494 (($ (-892)) 86 (|has| |#1| (-361)))) (-3988 (((-1086) $) 10)) (-4247 (($) 157)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 99 (|has| |#1| (-356)))) (-3726 (($ (-621 $)) 96 (|has| |#1| (-356))) (($ $ $) 95 (|has| |#1| (-356)))) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) 143 (|has| |#1| (-342)))) (-2119 (((-411 $) $) 110 (|has| |#1| (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 108 (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 107 (|has| |#1| (-356)))) (-2040 (((-3 $ "failed") $ $) 90 (|has| |#1| (-356)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 101 (|has| |#1| (-356)))) (-1335 (((-747) $) 103 (|has| |#1| (-356)))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 104 (|has| |#1| (-356)))) (-2740 ((|#1| (-1225 $)) 45) ((|#1|) 58)) (-3189 (((-747) $) 148 (|has| |#1| (-342))) (((-3 (-747) "failed") $ $) 136 (|has| |#1| (-342)))) (-3455 (($ $) 134 (-1536 (-1819 (|has| |#1| (-227)) (|has| |#1| (-356))) (|has| |#1| (-342)))) (($ $ (-747)) 132 (-1536 (-1819 (|has| |#1| (-227)) (|has| |#1| (-356))) (|has| |#1| (-342)))) (($ $ (-1142)) 130 (-1819 (|has| |#1| (-871 (-1142))) (|has| |#1| (-356)))) (($ $ (-621 (-1142))) 129 (-1819 (|has| |#1| (-871 (-1142))) (|has| |#1| (-356)))) (($ $ (-1142) (-747)) 128 (-1819 (|has| |#1| (-871 (-1142))) (|has| |#1| (-356)))) (($ $ (-621 (-1142)) (-621 (-747))) 127 (-1819 (|has| |#1| (-871 (-1142))) (|has| |#1| (-356)))) (($ $ (-1 |#1| |#1|) (-747)) 120 (|has| |#1| (-356))) (($ $ (-1 |#1| |#1|)) 119 (|has| |#1| (-356)))) (-2381 (((-665 |#1|) (-1225 $) (-1 |#1| |#1|)) 151 (|has| |#1| (-356)))) (-1262 ((|#2|) 156)) (-2950 (($) 145 (|has| |#1| (-342)))) (-1981 (((-1225 |#1|) $ (-1225 $)) 48) (((-665 |#1|) (-1225 $) (-1225 $)) 47) (((-1225 |#1|) $) 64) (((-665 |#1|) (-1225 $)) 63)) (-2843 (((-1225 |#1|) $) 61) (($ (-1225 |#1|)) 60) ((|#2| $) 168) (($ |#2|) 154)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) 142 (|has| |#1| (-342)))) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 35) (($ $) 89 (|has| |#1| (-356))) (($ (-400 (-549))) 84 (-1536 (|has| |#1| (-356)) (|has| |#1| (-1009 (-400 (-549))))))) (-2343 (($ $) 141 (|has| |#1| (-342))) (((-3 $ "failed") $) 41 (|has| |#1| (-143)))) (-4019 ((|#2| $) 43)) (-2371 (((-747)) 28)) (-2619 (((-1225 $)) 65)) (-2441 (((-112) $ $) 93 (|has| |#1| (-356)))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $) 133 (-1536 (-1819 (|has| |#1| (-227)) (|has| |#1| (-356))) (|has| |#1| (-342)))) (($ $ (-747)) 131 (-1536 (-1819 (|has| |#1| (-227)) (|has| |#1| (-356))) (|has| |#1| (-342)))) (($ $ (-1142)) 126 (-1819 (|has| |#1| (-871 (-1142))) (|has| |#1| (-356)))) (($ $ (-621 (-1142))) 125 (-1819 (|has| |#1| (-871 (-1142))) (|has| |#1| (-356)))) (($ $ (-1142) (-747)) 124 (-1819 (|has| |#1| (-871 (-1142))) (|has| |#1| (-356)))) (($ $ (-621 (-1142)) (-621 (-747))) 123 (-1819 (|has| |#1| (-871 (-1142))) (|has| |#1| (-356)))) (($ $ (-1 |#1| |#1|) (-747)) 122 (|has| |#1| (-356))) (($ $ (-1 |#1| |#1|)) 121 (|has| |#1| (-356)))) (-2387 (((-112) $ $) 6)) (-2511 (($ $ $) 118 (|has| |#1| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 115 (|has| |#1| (-356)))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 37) (($ |#1| $) 36) (($ (-400 (-549)) $) 117 (|has| |#1| (-356))) (($ $ (-400 (-549))) 116 (|has| |#1| (-356)))))
+(((-701 |#1| |#2|) (-138) (-170) (-1201 |t#1|)) (T -701))
+((-4247 (*1 *1) (-12 (-4 *2 (-170)) (-4 *1 (-701 *2 *3)) (-4 *3 (-1201 *2)))) (-1262 (*1 *2) (-12 (-4 *1 (-701 *3 *2)) (-4 *3 (-170)) (-4 *2 (-1201 *3)))) (-2556 (*1 *1 *2) (-12 (-4 *3 (-170)) (-4 *1 (-701 *3 *2)) (-4 *2 (-1201 *3)))) (-2843 (*1 *1 *2) (-12 (-4 *3 (-170)) (-4 *1 (-701 *3 *2)) (-4 *2 (-1201 *3)))) (-2545 (*1 *2 *1) (-12 (-4 *1 (-701 *3 *2)) (-4 *3 (-170)) (-4 *2 (-1201 *3)))) (-2556 (*1 *1 *2) (|partial| -12 (-5 *2 (-400 *4)) (-4 *4 (-1201 *3)) (-4 *3 (-356)) (-4 *3 (-170)) (-4 *1 (-701 *3 *4)))) (-2381 (*1 *2 *3 *4) (-12 (-5 *3 (-1225 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-356)) (-4 *1 (-701 *5 *6)) (-4 *5 (-170)) (-4 *6 (-1201 *5)) (-5 *2 (-665 *5)))))
+(-13 (-402 |t#1| |t#2|) (-170) (-594 |t#2|) (-404 |t#1|) (-370 |t#1|) (-10 -8 (-15 -4247 ($)) (-15 -1262 (|t#2|)) (-15 -2556 ($ |t#2|)) (-15 -2843 ($ |t#2|)) (-15 -2545 (|t#2| $)) (IF (|has| |t#1| (-361)) (-6 (-361)) |%noBranch|) (IF (|has| |t#1| (-356)) (PROGN (-6 (-356)) (-6 (-225 |t#1|)) (-15 -2556 ((-3 $ "failed") (-400 |t#2|))) (-15 -2381 ((-665 |t#1|) (-1225 $) (-1 |t#1| |t#1|)))) |%noBranch|) (IF (|has| |t#1| (-342)) (-6 (-342)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-38 |#1|) . T) ((-38 $) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-101) . T) ((-111 #0# #0#) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-130) . T) ((-143) -1536 (|has| |#1| (-342)) (|has| |#1| (-143))) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) . T) ((-594 |#2|) . T) ((-225 |#1|) |has| |#1| (-356)) ((-227) -1536 (|has| |#1| (-342)) (-12 (|has| |#1| (-227)) (|has| |#1| (-356)))) ((-237) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-283) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-300) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-356) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-395) |has| |#1| (-342)) ((-361) -1536 (|has| |#1| (-361)) (|has| |#1| (-342))) ((-342) |has| |#1| (-342)) ((-363 |#1| |#2|) . T) ((-402 |#1| |#2|) . T) ((-370 |#1|) . T) ((-404 |#1|) . T) ((-444) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-541) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-624 #0#) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-624 |#1|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-694 #0#) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-694 |#1|) . T) ((-694 $) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-703) . T) ((-871 (-1142)) -12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1142)))) ((-891) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1024 #0#) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))) ((-1024 |#1|) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1117) |has| |#1| (-342)) ((-1183) -1536 (|has| |#1| (-342)) (|has| |#1| (-356))))
+((-3034 (($) 11)) (-2612 (((-3 $ "failed") $) 13)) (-2297 (((-112) $) 10)) (** (($ $ (-892)) NIL) (($ $ (-747)) 18)))
+(((-702 |#1|) (-10 -8 (-15 -2612 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-747))) (-15 -2297 ((-112) |#1|)) (-15 -3034 (|#1|)) (-15 ** (|#1| |#1| (-892)))) (-703)) (T -702))
+NIL
+(-10 -8 (-15 -2612 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-747))) (-15 -2297 ((-112) |#1|)) (-15 -3034 (|#1|)) (-15 ** (|#1| |#1| (-892))))
+((-3832 (((-112) $ $) 7)) (-3034 (($) 18 T CONST)) (-2612 (((-3 $ "failed") $) 15)) (-2297 (((-112) $) 17)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-3286 (($) 19 T CONST)) (-2387 (((-112) $ $) 6)) (** (($ $ (-892)) 13) (($ $ (-747)) 16)) (* (($ $ $) 14)))
(((-703) (-138)) (T -703))
-((-3287 (*1 *1) (-4 *1 (-703))) (-1682 (*1 *1) (-4 *1 (-703))) (-2675 (*1 *2 *1) (-12 (-4 *1 (-703)) (-5 *2 (-112)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-703)) (-5 *2 (-747)))) (-2114 (*1 *1 *1) (|partial| -4 *1 (-703))))
-(-13 (-1079) (-10 -8 (-15 (-3287) ($) -2589) (-15 -1682 ($) -2589) (-15 -2675 ((-112) $)) (-15 ** ($ $ (-747))) (-15 -2114 ((-3 $ "failed") $))))
-(((-101) . T) ((-593 (-834)) . T) ((-1079) . T) ((-1067) . T))
-((-4313 (((-2 (|:| -4041 (-411 |#2|)) (|:| |special| (-411 |#2|))) |#2| (-1 |#2| |#2|)) 38)) (-3628 (((-2 (|:| -4041 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|)) 12)) (-1699 ((|#2| (-400 |#2|) (-1 |#2| |#2|)) 13)) (-1655 (((-2 (|:| |poly| |#2|) (|:| -4041 (-400 |#2|)) (|:| |special| (-400 |#2|))) (-400 |#2|) (-1 |#2| |#2|)) 47)))
-(((-704 |#1| |#2|) (-10 -7 (-15 -3628 ((-2 (|:| -4041 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -4313 ((-2 (|:| -4041 (-411 |#2|)) (|:| |special| (-411 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -1699 (|#2| (-400 |#2|) (-1 |#2| |#2|))) (-15 -1655 ((-2 (|:| |poly| |#2|) (|:| -4041 (-400 |#2|)) (|:| |special| (-400 |#2|))) (-400 |#2|) (-1 |#2| |#2|)))) (-356) (-1202 |#1|)) (T -704))
-((-1655 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1202 *5)) (-4 *5 (-356)) (-5 *2 (-2 (|:| |poly| *6) (|:| -4041 (-400 *6)) (|:| |special| (-400 *6)))) (-5 *1 (-704 *5 *6)) (-5 *3 (-400 *6)))) (-1699 (*1 *2 *3 *4) (-12 (-5 *3 (-400 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1202 *5)) (-5 *1 (-704 *5 *2)) (-4 *5 (-356)))) (-4313 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1202 *5)) (-4 *5 (-356)) (-5 *2 (-2 (|:| -4041 (-411 *3)) (|:| |special| (-411 *3)))) (-5 *1 (-704 *5 *3)))) (-3628 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1202 *5)) (-4 *5 (-356)) (-5 *2 (-2 (|:| -4041 *3) (|:| |special| *3))) (-5 *1 (-704 *5 *3)))))
-(-10 -7 (-15 -3628 ((-2 (|:| -4041 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -4313 ((-2 (|:| -4041 (-411 |#2|)) (|:| |special| (-411 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -1699 (|#2| (-400 |#2|) (-1 |#2| |#2|))) (-15 -1655 ((-2 (|:| |poly| |#2|) (|:| -4041 (-400 |#2|)) (|:| |special| (-400 |#2|))) (-400 |#2|) (-1 |#2| |#2|))))
-((-3881 ((|#7| (-621 |#5|) |#6|) NIL)) (-2797 ((|#7| (-1 |#5| |#4|) |#6|) 26)))
-(((-705 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -2797 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3881 (|#7| (-621 |#5|) |#6|))) (-823) (-769) (-769) (-1018) (-1018) (-920 |#4| |#2| |#1|) (-920 |#5| |#3| |#1|)) (T -705))
-((-3881 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *9)) (-4 *9 (-1018)) (-4 *5 (-823)) (-4 *6 (-769)) (-4 *8 (-1018)) (-4 *2 (-920 *9 *7 *5)) (-5 *1 (-705 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-769)) (-4 *4 (-920 *8 *6 *5)))) (-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-1018)) (-4 *9 (-1018)) (-4 *5 (-823)) (-4 *6 (-769)) (-4 *2 (-920 *9 *7 *5)) (-5 *1 (-705 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-769)) (-4 *4 (-920 *8 *6 *5)))))
-(-10 -7 (-15 -2797 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3881 (|#7| (-621 |#5|) |#6|)))
-((-2797 ((|#7| (-1 |#2| |#1|) |#6|) 28)))
-(((-706 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -2797 (|#7| (-1 |#2| |#1|) |#6|))) (-823) (-823) (-769) (-769) (-1018) (-920 |#5| |#3| |#1|) (-920 |#5| |#4| |#2|)) (T -706))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-823)) (-4 *6 (-823)) (-4 *7 (-769)) (-4 *9 (-1018)) (-4 *2 (-920 *9 *8 *6)) (-5 *1 (-706 *5 *6 *7 *8 *9 *4 *2)) (-4 *8 (-769)) (-4 *4 (-920 *9 *7 *5)))))
-(-10 -7 (-15 -2797 (|#7| (-1 |#2| |#1|) |#6|)))
-((-2121 (((-411 |#4|) |#4|) 41)))
-(((-707 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2121 ((-411 |#4|) |#4|))) (-769) (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $)) (-15 -3011 ((-3 $ "failed") (-1143))))) (-300) (-920 (-923 |#3|) |#1| |#2|)) (T -707))
-((-2121 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $)) (-15 -3011 ((-3 $ "failed") (-1143)))))) (-4 *6 (-300)) (-5 *2 (-411 *3)) (-5 *1 (-707 *4 *5 *6 *3)) (-4 *3 (-920 (-923 *6) *4 *5)))))
-(-10 -7 (-15 -2121 ((-411 |#4|) |#4|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2272 (((-621 (-836 |#1|)) $) NIL)) (-2084 (((-1139 $) $ (-836 |#1|)) NIL) (((-1139 |#2|) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#2| (-541)))) (-2258 (($ $) NIL (|has| |#2| (-541)))) (-2799 (((-112) $) NIL (|has| |#2| (-541)))) (-3186 (((-747) $) NIL) (((-747) $ (-621 (-836 |#1|))) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-3979 (($ $) NIL (|has| |#2| (-444)))) (-2402 (((-411 $) $) NIL (|has| |#2| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#2| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-836 |#1|) "failed") $) NIL)) (-2659 ((|#2| $) NIL) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#2| (-1009 (-549)))) (((-836 |#1|) $) NIL)) (-1353 (($ $ $ (-836 |#1|)) NIL (|has| |#2| (-170)))) (-2070 (($ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) NIL) (((-665 |#2|) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1285 (($ $) NIL (|has| |#2| (-444))) (($ $ (-836 |#1|)) NIL (|has| |#2| (-444)))) (-2058 (((-621 $) $) NIL)) (-1420 (((-112) $) NIL (|has| |#2| (-880)))) (-2691 (($ $ |#2| (-521 (-836 |#1|)) $) NIL)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-836 |#1|) (-857 (-372))) (|has| |#2| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-836 |#1|) (-857 (-549))) (|has| |#2| (-857 (-549)))))) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) NIL)) (-2261 (($ (-1139 |#2|) (-836 |#1|)) NIL) (($ (-1139 $) (-836 |#1|)) NIL)) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) NIL)) (-2246 (($ |#2| (-521 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ (-836 |#1|)) NIL)) (-3611 (((-521 (-836 |#1|)) $) NIL) (((-747) $ (-836 |#1|)) NIL) (((-621 (-747)) $ (-621 (-836 |#1|))) NIL)) (-2863 (($ $ $) NIL (|has| |#2| (-823)))) (-3575 (($ $ $) NIL (|has| |#2| (-823)))) (-3705 (($ (-1 (-521 (-836 |#1|)) (-521 (-836 |#1|))) $) NIL)) (-2797 (($ (-1 |#2| |#2|) $) NIL)) (-1520 (((-3 (-836 |#1|) "failed") $) NIL)) (-2028 (($ $) NIL)) (-2043 ((|#2| $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-3851 (((-1125) $) NIL)) (-4266 (((-3 (-621 $) "failed") $) NIL)) (-2533 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-2 (|:| |var| (-836 |#1|)) (|:| -3731 (-747))) "failed") $) NIL)) (-3990 (((-1087) $) NIL)) (-2004 (((-112) $) NIL)) (-2016 ((|#2| $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#2| (-444)))) (-3727 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-2121 (((-411 $) $) NIL (|has| |#2| (-880)))) (-2042 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-541)))) (-2686 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-836 |#1|) |#2|) NIL) (($ $ (-621 (-836 |#1|)) (-621 |#2|)) NIL) (($ $ (-836 |#1|) $) NIL) (($ $ (-621 (-836 |#1|)) (-621 $)) NIL)) (-3602 (($ $ (-836 |#1|)) NIL (|has| |#2| (-170)))) (-3456 (($ $ (-836 |#1|)) NIL) (($ $ (-621 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-3701 (((-521 (-836 |#1|)) $) NIL) (((-747) $ (-836 |#1|)) NIL) (((-621 (-747)) $ (-621 (-836 |#1|))) NIL)) (-2845 (((-863 (-372)) $) NIL (-12 (|has| (-836 |#1|) (-594 (-863 (-372)))) (|has| |#2| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-836 |#1|) (-594 (-863 (-549)))) (|has| |#2| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-836 |#1|) (-594 (-525))) (|has| |#2| (-594 (-525)))))) (-2216 ((|#2| $) NIL (|has| |#2| (-444))) (($ $ (-836 |#1|)) NIL (|has| |#2| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#2| (-880))))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) NIL) (($ (-836 |#1|)) NIL) (($ $) NIL (|has| |#2| (-541))) (($ (-400 (-549))) NIL (-1536 (|has| |#2| (-38 (-400 (-549)))) (|has| |#2| (-1009 (-400 (-549))))))) (-4141 (((-621 |#2|) $) NIL)) (-2152 ((|#2| $ (-521 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#2| (-880))) (|has| |#2| (-143))))) (-2082 (((-747)) NIL)) (-1509 (($ $ $ (-747)) NIL (|has| |#2| (-170)))) (-1498 (((-112) $ $) NIL (|has| |#2| (-541)))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $ (-836 |#1|)) NIL) (($ $ (-621 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-2448 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2513 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#2| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#2| (-38 (-400 (-549))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-708 |#1| |#2|) (-920 |#2| (-521 (-836 |#1|)) (-836 |#1|)) (-621 (-1143)) (-1018)) (T -708))
+((-3286 (*1 *1) (-4 *1 (-703))) (-3034 (*1 *1) (-4 *1 (-703))) (-2297 (*1 *2 *1) (-12 (-4 *1 (-703)) (-5 *2 (-112)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-703)) (-5 *2 (-747)))) (-2612 (*1 *1 *1) (|partial| -4 *1 (-703))))
+(-13 (-1078) (-10 -8 (-15 (-3286) ($) -2587) (-15 -3034 ($) -2587) (-15 -2297 ((-112) $)) (-15 ** ($ $ (-747))) (-15 -2612 ((-3 $ "failed") $))))
+(((-101) . T) ((-593 (-834)) . T) ((-1078) . T) ((-1066) . T))
+((-3154 (((-2 (|:| -4039 (-411 |#2|)) (|:| |special| (-411 |#2|))) |#2| (-1 |#2| |#2|)) 38)) (-3506 (((-2 (|:| -4039 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|)) 12)) (-1941 ((|#2| (-400 |#2|) (-1 |#2| |#2|)) 13)) (-2570 (((-2 (|:| |poly| |#2|) (|:| -4039 (-400 |#2|)) (|:| |special| (-400 |#2|))) (-400 |#2|) (-1 |#2| |#2|)) 47)))
+(((-704 |#1| |#2|) (-10 -7 (-15 -3506 ((-2 (|:| -4039 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -3154 ((-2 (|:| -4039 (-411 |#2|)) (|:| |special| (-411 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -1941 (|#2| (-400 |#2|) (-1 |#2| |#2|))) (-15 -2570 ((-2 (|:| |poly| |#2|) (|:| -4039 (-400 |#2|)) (|:| |special| (-400 |#2|))) (-400 |#2|) (-1 |#2| |#2|)))) (-356) (-1201 |#1|)) (T -704))
+((-2570 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1201 *5)) (-4 *5 (-356)) (-5 *2 (-2 (|:| |poly| *6) (|:| -4039 (-400 *6)) (|:| |special| (-400 *6)))) (-5 *1 (-704 *5 *6)) (-5 *3 (-400 *6)))) (-1941 (*1 *2 *3 *4) (-12 (-5 *3 (-400 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1201 *5)) (-5 *1 (-704 *5 *2)) (-4 *5 (-356)))) (-3154 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1201 *5)) (-4 *5 (-356)) (-5 *2 (-2 (|:| -4039 (-411 *3)) (|:| |special| (-411 *3)))) (-5 *1 (-704 *5 *3)))) (-3506 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1201 *5)) (-4 *5 (-356)) (-5 *2 (-2 (|:| -4039 *3) (|:| |special| *3))) (-5 *1 (-704 *5 *3)))))
+(-10 -7 (-15 -3506 ((-2 (|:| -4039 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -3154 ((-2 (|:| -4039 (-411 |#2|)) (|:| |special| (-411 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -1941 (|#2| (-400 |#2|) (-1 |#2| |#2|))) (-15 -2570 ((-2 (|:| |poly| |#2|) (|:| -4039 (-400 |#2|)) (|:| |special| (-400 |#2|))) (-400 |#2|) (-1 |#2| |#2|))))
+((-3880 ((|#7| (-621 |#5|) |#6|) NIL)) (-2795 ((|#7| (-1 |#5| |#4|) |#6|) 26)))
+(((-705 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -2795 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3880 (|#7| (-621 |#5|) |#6|))) (-823) (-769) (-769) (-1018) (-1018) (-920 |#4| |#2| |#1|) (-920 |#5| |#3| |#1|)) (T -705))
+((-3880 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *9)) (-4 *9 (-1018)) (-4 *5 (-823)) (-4 *6 (-769)) (-4 *8 (-1018)) (-4 *2 (-920 *9 *7 *5)) (-5 *1 (-705 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-769)) (-4 *4 (-920 *8 *6 *5)))) (-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-1018)) (-4 *9 (-1018)) (-4 *5 (-823)) (-4 *6 (-769)) (-4 *2 (-920 *9 *7 *5)) (-5 *1 (-705 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-769)) (-4 *4 (-920 *8 *6 *5)))))
+(-10 -7 (-15 -2795 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3880 (|#7| (-621 |#5|) |#6|)))
+((-2795 ((|#7| (-1 |#2| |#1|) |#6|) 28)))
+(((-706 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -2795 (|#7| (-1 |#2| |#1|) |#6|))) (-823) (-823) (-769) (-769) (-1018) (-920 |#5| |#3| |#1|) (-920 |#5| |#4| |#2|)) (T -706))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-823)) (-4 *6 (-823)) (-4 *7 (-769)) (-4 *9 (-1018)) (-4 *2 (-920 *9 *8 *6)) (-5 *1 (-706 *5 *6 *7 *8 *9 *4 *2)) (-4 *8 (-769)) (-4 *4 (-920 *9 *7 *5)))))
+(-10 -7 (-15 -2795 (|#7| (-1 |#2| |#1|) |#6|)))
+((-2119 (((-411 |#4|) |#4|) 41)))
+(((-707 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2119 ((-411 |#4|) |#4|))) (-769) (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $)) (-15 -3009 ((-3 $ "failed") (-1142))))) (-300) (-920 (-923 |#3|) |#1| |#2|)) (T -707))
+((-2119 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $)) (-15 -3009 ((-3 $ "failed") (-1142)))))) (-4 *6 (-300)) (-5 *2 (-411 *3)) (-5 *1 (-707 *4 *5 *6 *3)) (-4 *3 (-920 (-923 *6) *4 *5)))))
+(-10 -7 (-15 -2119 ((-411 |#4|) |#4|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2270 (((-621 (-836 |#1|)) $) NIL)) (-2082 (((-1138 $) $ (-836 |#1|)) NIL) (((-1138 |#2|) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#2| (-541)))) (-3044 (($ $) NIL (|has| |#2| (-541)))) (-2774 (((-112) $) NIL (|has| |#2| (-541)))) (-2216 (((-747) $) NIL) (((-747) $ (-621 (-836 |#1|))) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-3239 (($ $) NIL (|has| |#2| (-444)))) (-2620 (((-411 $) $) NIL (|has| |#2| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#2| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-836 |#1|) "failed") $) NIL)) (-2657 ((|#2| $) NIL) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#2| (-1009 (-549)))) (((-836 |#1|) $) NIL)) (-4114 (($ $ $ (-836 |#1|)) NIL (|has| |#2| (-170)))) (-2068 (($ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) NIL) (((-665 |#2|) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3004 (($ $) NIL (|has| |#2| (-444))) (($ $ (-836 |#1|)) NIL (|has| |#2| (-444)))) (-2056 (((-621 $) $) NIL)) (-1464 (((-112) $) NIL (|has| |#2| (-880)))) (-4064 (($ $ |#2| (-521 (-836 |#1|)) $) NIL)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-836 |#1|) (-857 (-372))) (|has| |#2| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-836 |#1|) (-857 (-549))) (|has| |#2| (-857 (-549)))))) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) NIL)) (-2259 (($ (-1138 |#2|) (-836 |#1|)) NIL) (($ (-1138 $) (-836 |#1|)) NIL)) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) NIL)) (-2244 (($ |#2| (-521 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ (-836 |#1|)) NIL)) (-2391 (((-521 (-836 |#1|)) $) NIL) (((-747) $ (-836 |#1|)) NIL) (((-621 (-747)) $ (-621 (-836 |#1|))) NIL)) (-2861 (($ $ $) NIL (|has| |#2| (-823)))) (-3574 (($ $ $) NIL (|has| |#2| (-823)))) (-3224 (($ (-1 (-521 (-836 |#1|)) (-521 (-836 |#1|))) $) NIL)) (-2795 (($ (-1 |#2| |#2|) $) NIL)) (-2236 (((-3 (-836 |#1|) "failed") $) NIL)) (-2027 (($ $) NIL)) (-2042 ((|#2| $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-3441 (((-1124) $) NIL)) (-4093 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-621 $) "failed") $) NIL)) (-1477 (((-3 (-2 (|:| |var| (-836 |#1|)) (|:| -1714 (-747))) "failed") $) NIL)) (-3988 (((-1086) $) NIL)) (-2001 (((-112) $) NIL)) (-2011 ((|#2| $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#2| (-444)))) (-3726 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-2119 (((-411 $) $) NIL (|has| |#2| (-880)))) (-2040 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-541)))) (-2684 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-836 |#1|) |#2|) NIL) (($ $ (-621 (-836 |#1|)) (-621 |#2|)) NIL) (($ $ (-836 |#1|) $) NIL) (($ $ (-621 (-836 |#1|)) (-621 $)) NIL)) (-2740 (($ $ (-836 |#1|)) NIL (|has| |#2| (-170)))) (-3455 (($ $ (-836 |#1|)) NIL) (($ $ (-621 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-3977 (((-521 (-836 |#1|)) $) NIL) (((-747) $ (-836 |#1|)) NIL) (((-621 (-747)) $ (-621 (-836 |#1|))) NIL)) (-2843 (((-863 (-372)) $) NIL (-12 (|has| (-836 |#1|) (-594 (-863 (-372)))) (|has| |#2| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-836 |#1|) (-594 (-863 (-549)))) (|has| |#2| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-836 |#1|) (-594 (-525))) (|has| |#2| (-594 (-525)))))) (-1700 ((|#2| $) NIL (|has| |#2| (-444))) (($ $ (-836 |#1|)) NIL (|has| |#2| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#2| (-880))))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) NIL) (($ (-836 |#1|)) NIL) (($ $) NIL (|has| |#2| (-541))) (($ (-400 (-549))) NIL (-1536 (|has| |#2| (-38 (-400 (-549)))) (|has| |#2| (-1009 (-400 (-549))))))) (-2157 (((-621 |#2|) $) NIL)) (-4068 ((|#2| $ (-521 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#2| (-880))) (|has| |#2| (-143))))) (-2371 (((-747)) NIL)) (-4046 (($ $ $ (-747)) NIL (|has| |#2| (-170)))) (-2441 (((-112) $ $) NIL (|has| |#2| (-541)))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $ (-836 |#1|)) NIL) (($ $ (-621 (-836 |#1|))) NIL) (($ $ (-836 |#1|) (-747)) NIL) (($ $ (-621 (-836 |#1|)) (-621 (-747))) NIL)) (-2447 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2511 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#2| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#2| (-38 (-400 (-549))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-708 |#1| |#2|) (-920 |#2| (-521 (-836 |#1|)) (-836 |#1|)) (-621 (-1142)) (-1018)) (T -708))
NIL
(-920 |#2| (-521 (-836 |#1|)) (-836 |#1|))
-((-4291 (((-2 (|:| -2861 (-923 |#3|)) (|:| -3019 (-923 |#3|))) |#4|) 14)) (-1825 ((|#4| |#4| |#2|) 33)) (-3826 ((|#4| (-400 (-923 |#3|)) |#2|) 64)) (-3237 ((|#4| (-1139 (-923 |#3|)) |#2|) 77)) (-2924 ((|#4| (-1139 |#4|) |#2|) 51)) (-1361 ((|#4| |#4| |#2|) 54)) (-2121 (((-411 |#4|) |#4|) 40)))
-(((-709 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4291 ((-2 (|:| -2861 (-923 |#3|)) (|:| -3019 (-923 |#3|))) |#4|)) (-15 -1361 (|#4| |#4| |#2|)) (-15 -2924 (|#4| (-1139 |#4|) |#2|)) (-15 -1825 (|#4| |#4| |#2|)) (-15 -3237 (|#4| (-1139 (-923 |#3|)) |#2|)) (-15 -3826 (|#4| (-400 (-923 |#3|)) |#2|)) (-15 -2121 ((-411 |#4|) |#4|))) (-769) (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $)))) (-541) (-920 (-400 (-923 |#3|)) |#1| |#2|)) (T -709))
-((-2121 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $))))) (-4 *6 (-541)) (-5 *2 (-411 *3)) (-5 *1 (-709 *4 *5 *6 *3)) (-4 *3 (-920 (-400 (-923 *6)) *4 *5)))) (-3826 (*1 *2 *3 *4) (-12 (-4 *6 (-541)) (-4 *2 (-920 *3 *5 *4)) (-5 *1 (-709 *5 *4 *6 *2)) (-5 *3 (-400 (-923 *6))) (-4 *5 (-769)) (-4 *4 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $))))))) (-3237 (*1 *2 *3 *4) (-12 (-5 *3 (-1139 (-923 *6))) (-4 *6 (-541)) (-4 *2 (-920 (-400 (-923 *6)) *5 *4)) (-5 *1 (-709 *5 *4 *6 *2)) (-4 *5 (-769)) (-4 *4 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $))))))) (-1825 (*1 *2 *2 *3) (-12 (-4 *4 (-769)) (-4 *3 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $))))) (-4 *5 (-541)) (-5 *1 (-709 *4 *3 *5 *2)) (-4 *2 (-920 (-400 (-923 *5)) *4 *3)))) (-2924 (*1 *2 *3 *4) (-12 (-5 *3 (-1139 *2)) (-4 *2 (-920 (-400 (-923 *6)) *5 *4)) (-5 *1 (-709 *5 *4 *6 *2)) (-4 *5 (-769)) (-4 *4 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $))))) (-4 *6 (-541)))) (-1361 (*1 *2 *2 *3) (-12 (-4 *4 (-769)) (-4 *3 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $))))) (-4 *5 (-541)) (-5 *1 (-709 *4 *3 *5 *2)) (-4 *2 (-920 (-400 (-923 *5)) *4 *3)))) (-4291 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $))))) (-4 *6 (-541)) (-5 *2 (-2 (|:| -2861 (-923 *6)) (|:| -3019 (-923 *6)))) (-5 *1 (-709 *4 *5 *6 *3)) (-4 *3 (-920 (-400 (-923 *6)) *4 *5)))))
-(-10 -7 (-15 -4291 ((-2 (|:| -2861 (-923 |#3|)) (|:| -3019 (-923 |#3|))) |#4|)) (-15 -1361 (|#4| |#4| |#2|)) (-15 -2924 (|#4| (-1139 |#4|) |#2|)) (-15 -1825 (|#4| |#4| |#2|)) (-15 -3237 (|#4| (-1139 (-923 |#3|)) |#2|)) (-15 -3826 (|#4| (-400 (-923 |#3|)) |#2|)) (-15 -2121 ((-411 |#4|) |#4|)))
-((-2121 (((-411 |#4|) |#4|) 52)))
-(((-710 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2121 ((-411 |#4|) |#4|))) (-769) (-823) (-13 (-300) (-145)) (-920 (-400 |#3|) |#1| |#2|)) (T -710))
-((-2121 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-13 (-300) (-145))) (-5 *2 (-411 *3)) (-5 *1 (-710 *4 *5 *6 *3)) (-4 *3 (-920 (-400 *6) *4 *5)))))
-(-10 -7 (-15 -2121 ((-411 |#4|) |#4|)))
-((-2797 (((-712 |#2| |#3|) (-1 |#2| |#1|) (-712 |#1| |#3|)) 18)))
-(((-711 |#1| |#2| |#3|) (-10 -7 (-15 -2797 ((-712 |#2| |#3|) (-1 |#2| |#1|) (-712 |#1| |#3|)))) (-1018) (-1018) (-703)) (T -711))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-712 *5 *7)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-703)) (-5 *2 (-712 *6 *7)) (-5 *1 (-711 *5 *6 *7)))))
-(-10 -7 (-15 -2797 ((-712 |#2| |#3|) (-1 |#2| |#1|) (-712 |#1| |#3|))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 28)) (-2212 (((-621 (-2 (|:| -1570 |#1|) (|:| -3526 |#2|))) $) 29)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3614 (((-747)) 20 (-12 (|has| |#2| (-361)) (|has| |#1| (-361))))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#2| "failed") $) 57) (((-3 |#1| "failed") $) 60)) (-2659 ((|#2| $) NIL) ((|#1| $) NIL)) (-2070 (($ $) 79 (|has| |#2| (-823)))) (-2114 (((-3 $ "failed") $) 65)) (-3239 (($) 35 (-12 (|has| |#2| (-361)) (|has| |#1| (-361))))) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) 55)) (-3750 (((-621 $) $) 39)) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| |#2|) 16)) (-2797 (($ (-1 |#1| |#1|) $) 54)) (-1881 (((-892) $) 32 (-12 (|has| |#2| (-361)) (|has| |#1| (-361))))) (-2028 ((|#2| $) 78 (|has| |#2| (-823)))) (-2043 ((|#1| $) 77 (|has| |#2| (-823)))) (-3851 (((-1125) $) NIL)) (-3493 (($ (-892)) 27 (-12 (|has| |#2| (-361)) (|has| |#1| (-361))))) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 76) (($ (-549)) 45) (($ |#2|) 42) (($ |#1|) 43) (($ (-621 (-2 (|:| -1570 |#1|) (|:| -3526 |#2|)))) 11)) (-4141 (((-621 |#1|) $) 41)) (-2152 ((|#1| $ |#2|) 88)) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) NIL)) (-3276 (($) 12 T CONST)) (-3287 (($) 33 T CONST)) (-2389 (((-112) $ $) 80)) (-2500 (($ $) 47) (($ $ $) NIL)) (-2486 (($ $ $) 26)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 52) (($ $ $) 90) (($ |#1| $) 49 (|has| |#1| (-170))) (($ $ |#1|) NIL (|has| |#1| (-170)))))
-(((-712 |#1| |#2|) (-13 (-1018) (-1009 |#2|) (-1009 |#1|) (-10 -8 (-15 -2246 ($ |#1| |#2|)) (-15 -2152 (|#1| $ |#2|)) (-15 -3846 ($ (-621 (-2 (|:| -1570 |#1|) (|:| -3526 |#2|))))) (-15 -2212 ((-621 (-2 (|:| -1570 |#1|) (|:| -3526 |#2|))) $)) (-15 -2797 ($ (-1 |#1| |#1|) $)) (-15 -2205 ((-112) $)) (-15 -4141 ((-621 |#1|) $)) (-15 -3750 ((-621 $) $)) (-15 -3347 ((-747) $)) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |#1| (-170)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-361)) (IF (|has| |#2| (-361)) (-6 (-361)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-823)) (PROGN (-15 -2028 (|#2| $)) (-15 -2043 (|#1| $)) (-15 -2070 ($ $))) |%noBranch|))) (-1018) (-703)) (T -712))
-((-2246 (*1 *1 *2 *3) (-12 (-5 *1 (-712 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-703)))) (-2152 (*1 *2 *1 *3) (-12 (-4 *2 (-1018)) (-5 *1 (-712 *2 *3)) (-4 *3 (-703)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-621 (-2 (|:| -1570 *3) (|:| -3526 *4)))) (-4 *3 (-1018)) (-4 *4 (-703)) (-5 *1 (-712 *3 *4)))) (-2212 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| -1570 *3) (|:| -3526 *4)))) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-703)))) (-2797 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-712 *3 *4)) (-4 *4 (-703)))) (-2205 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-703)))) (-4141 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-703)))) (-3750 (*1 *2 *1) (-12 (-5 *2 (-621 (-712 *3 *4))) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-703)))) (-3347 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-703)))) (-2028 (*1 *2 *1) (-12 (-4 *2 (-703)) (-4 *2 (-823)) (-5 *1 (-712 *3 *2)) (-4 *3 (-1018)))) (-2043 (*1 *2 *1) (-12 (-4 *2 (-1018)) (-5 *1 (-712 *2 *3)) (-4 *3 (-823)) (-4 *3 (-703)))) (-2070 (*1 *1 *1) (-12 (-5 *1 (-712 *2 *3)) (-4 *3 (-823)) (-4 *2 (-1018)) (-4 *3 (-703)))))
-(-13 (-1018) (-1009 |#2|) (-1009 |#1|) (-10 -8 (-15 -2246 ($ |#1| |#2|)) (-15 -2152 (|#1| $ |#2|)) (-15 -3846 ($ (-621 (-2 (|:| -1570 |#1|) (|:| -3526 |#2|))))) (-15 -2212 ((-621 (-2 (|:| -1570 |#1|) (|:| -3526 |#2|))) $)) (-15 -2797 ($ (-1 |#1| |#1|) $)) (-15 -2205 ((-112) $)) (-15 -4141 ((-621 |#1|) $)) (-15 -3750 ((-621 $) $)) (-15 -3347 ((-747) $)) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |#1| (-170)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-361)) (IF (|has| |#2| (-361)) (-6 (-361)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-823)) (PROGN (-15 -2028 (|#2| $)) (-15 -2043 (|#1| $)) (-15 -2070 ($ $))) |%noBranch|)))
-((-3834 (((-112) $ $) 19)) (-1442 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-2440 (($ $ $) 72)) (-2695 (((-112) $ $) 73)) (-1584 (((-112) $ (-747)) 8)) (-2787 (($ (-621 |#1|)) 68) (($) 67)) (-1717 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4337)))) (-1682 (($) 7 T CONST)) (-3745 (($ $) 62)) (-3676 (($ $) 58 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2129 (($ |#1| $) 47 (|has| $ (-6 -4337))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4337)))) (-3812 (($ |#1| $) 57 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4337)))) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-2369 (((-112) $ $) 64)) (-3194 (((-112) $ (-747)) 9)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22)) (-3655 (($ $ $) 69)) (-3504 ((|#1| $) 39)) (-2751 (($ |#1| $) 40) (($ |#1| $ (-747)) 63)) (-3990 (((-1087) $) 21)) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3325 ((|#1| $) 41)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3458 (((-621 (-2 (|:| -1793 |#1|) (|:| -4000 (-747)))) $) 61)) (-1334 (($ $ |#1|) 71) (($ $ $) 70)) (-2898 (($) 49) (($ (-621 |#1|)) 48)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-2845 (((-525) $) 59 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 50)) (-3846 (((-834) $) 18)) (-4120 (($ (-621 |#1|)) 66) (($) 65)) (-3624 (($ (-621 |#1|)) 42)) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20)) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-713 |#1|) (-138) (-1067)) (T -713))
-NIL
-(-13 (-671 |t#1|) (-1065 |t#1|))
-(((-34) . T) ((-106 |#1|) . T) ((-101) . T) ((-593 (-834)) . T) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-229 |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-671 |#1|) . T) ((-1065 |#1|) . T) ((-1067) . T) ((-1180) . T))
-((-3834 (((-112) $ $) NIL)) (-1442 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 76)) (-2440 (($ $ $) 79)) (-2695 (((-112) $ $) 83)) (-1584 (((-112) $ (-747)) NIL)) (-2787 (($ (-621 |#1|)) 24) (($) 16)) (-1717 (($ (-1 (-112) |#1|) $) 70 (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-3745 (($ $) 71)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2129 (($ |#1| $) 61 (|has| $ (-6 -4337))) (($ (-1 (-112) |#1|) $) 64 (|has| $ (-6 -4337))) (($ |#1| $ (-549)) 62) (($ (-1 (-112) |#1|) $ (-549)) 65)) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (($ |#1| $ (-549)) 67) (($ (-1 (-112) |#1|) $ (-549)) 68)) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2989 (((-621 |#1|) $) 32 (|has| $ (-6 -4337)))) (-2369 (((-112) $ $) 82)) (-3680 (($) 14) (($ |#1|) 26) (($ (-621 |#1|)) 21)) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 |#1|) $) 38)) (-2090 (((-112) |#1| $) 58 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1868 (($ (-1 |#1| |#1|) $) 74 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 75)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL)) (-3655 (($ $ $) 77)) (-3504 ((|#1| $) 55)) (-2751 (($ |#1| $) 56) (($ |#1| $ (-747)) 72)) (-3990 (((-1087) $) NIL)) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3325 ((|#1| $) 54)) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) 50)) (-3742 (($) 13)) (-3458 (((-621 (-2 (|:| -1793 |#1|) (|:| -4000 (-747)))) $) 48)) (-1334 (($ $ |#1|) NIL) (($ $ $) 78)) (-2898 (($) 15) (($ (-621 |#1|)) 23)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) 60 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) 66)) (-2845 (((-525) $) 36 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 20)) (-3846 (((-834) $) 44)) (-4120 (($ (-621 |#1|)) 25) (($) 17)) (-3624 (($ (-621 |#1|)) 22)) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 81)) (-3775 (((-747) $) 59 (|has| $ (-6 -4337)))))
-(((-714 |#1|) (-13 (-713 |#1|) (-10 -8 (-6 -4337) (-6 -4338) (-15 -3680 ($)) (-15 -3680 ($ |#1|)) (-15 -3680 ($ (-621 |#1|))) (-15 -1562 ((-621 |#1|) $)) (-15 -3812 ($ |#1| $ (-549))) (-15 -3812 ($ (-1 (-112) |#1|) $ (-549))) (-15 -2129 ($ |#1| $ (-549))) (-15 -2129 ($ (-1 (-112) |#1|) $ (-549))))) (-1067)) (T -714))
-((-3680 (*1 *1) (-12 (-5 *1 (-714 *2)) (-4 *2 (-1067)))) (-3680 (*1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-1067)))) (-3680 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-5 *1 (-714 *3)))) (-1562 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-714 *3)) (-4 *3 (-1067)))) (-3812 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-714 *2)) (-4 *2 (-1067)))) (-3812 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-549)) (-4 *4 (-1067)) (-5 *1 (-714 *4)))) (-2129 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-714 *2)) (-4 *2 (-1067)))) (-2129 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-549)) (-4 *4 (-1067)) (-5 *1 (-714 *4)))))
-(-13 (-713 |#1|) (-10 -8 (-6 -4337) (-6 -4338) (-15 -3680 ($)) (-15 -3680 ($ |#1|)) (-15 -3680 ($ (-621 |#1|))) (-15 -1562 ((-621 |#1|) $)) (-15 -3812 ($ |#1| $ (-549))) (-15 -3812 ($ (-1 (-112) |#1|) $ (-549))) (-15 -2129 ($ |#1| $ (-549))) (-15 -2129 ($ (-1 (-112) |#1|) $ (-549)))))
-((-4009 (((-1231) (-1125)) 8)))
-(((-715) (-10 -7 (-15 -4009 ((-1231) (-1125))))) (T -715))
-((-4009 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-715)))))
-(-10 -7 (-15 -4009 ((-1231) (-1125))))
-((-3583 (((-621 |#1|) (-621 |#1|) (-621 |#1|)) 10)))
-(((-716 |#1|) (-10 -7 (-15 -3583 ((-621 |#1|) (-621 |#1|) (-621 |#1|)))) (-823)) (T -716))
-((-3583 (*1 *2 *2 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-716 *3)))))
-(-10 -7 (-15 -3583 ((-621 |#1|) (-621 |#1|) (-621 |#1|))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2272 (((-621 |#2|) $) 134)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 127 (|has| |#1| (-541)))) (-2258 (($ $) 126 (|has| |#1| (-541)))) (-2799 (((-112) $) 124 (|has| |#1| (-541)))) (-1664 (($ $) 83 (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) 66 (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) 19)) (-2134 (($ $) 65 (|has| |#1| (-38 (-400 (-549)))))) (-1640 (($ $) 82 (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) 67 (|has| |#1| (-38 (-400 (-549)))))) (-1685 (($ $) 81 (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) 68 (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) 17 T CONST)) (-2070 (($ $) 118)) (-2114 (((-3 $ "failed") $) 32)) (-1414 (((-923 |#1|) $ (-747)) 96) (((-923 |#1|) $ (-747) (-747)) 95)) (-2871 (((-112) $) 135)) (-1425 (($) 93 (|has| |#1| (-38 (-400 (-549)))))) (-2088 (((-747) $ |#2|) 98) (((-747) $ |#2| (-747)) 97)) (-2675 (((-112) $) 30)) (-4187 (($ $ (-549)) 64 (|has| |#1| (-38 (-400 (-549)))))) (-2205 (((-112) $) 116)) (-2246 (($ $ (-621 |#2|) (-621 (-521 |#2|))) 133) (($ $ |#2| (-521 |#2|)) 132) (($ |#1| (-521 |#2|)) 117) (($ $ |#2| (-747)) 100) (($ $ (-621 |#2|) (-621 (-747))) 99)) (-2797 (($ (-1 |#1| |#1|) $) 115)) (-3632 (($ $) 90 (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) 113)) (-2043 ((|#1| $) 112)) (-3851 (((-1125) $) 9)) (-3893 (($ $ |#2|) 94 (|has| |#1| (-38 (-400 (-549)))))) (-3990 (((-1087) $) 10)) (-2763 (($ $ (-747)) 101)) (-2042 (((-3 $ "failed") $ $) 128 (|has| |#1| (-541)))) (-2719 (($ $) 91 (|has| |#1| (-38 (-400 (-549)))))) (-2686 (($ $ |#2| $) 109) (($ $ (-621 |#2|) (-621 $)) 108) (($ $ (-621 (-287 $))) 107) (($ $ (-287 $)) 106) (($ $ $ $) 105) (($ $ (-621 $) (-621 $)) 104)) (-3456 (($ $ |#2|) 40) (($ $ (-621 |#2|)) 39) (($ $ |#2| (-747)) 38) (($ $ (-621 |#2|) (-621 (-747))) 37)) (-3701 (((-521 |#2|) $) 114)) (-1698 (($ $) 80 (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) 69 (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) 79 (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) 70 (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) 78 (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) 71 (|has| |#1| (-38 (-400 (-549)))))) (-1977 (($ $) 136)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 131 (|has| |#1| (-170))) (($ $) 129 (|has| |#1| (-541))) (($ (-400 (-549))) 121 (|has| |#1| (-38 (-400 (-549)))))) (-2152 ((|#1| $ (-521 |#2|)) 119) (($ $ |#2| (-747)) 103) (($ $ (-621 |#2|) (-621 (-747))) 102)) (-2210 (((-3 $ "failed") $) 130 (|has| |#1| (-143)))) (-2082 (((-747)) 28)) (-1733 (($ $) 89 (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) 77 (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) 125 (|has| |#1| (-541)))) (-1710 (($ $) 88 (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) 76 (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) 87 (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) 75 (|has| |#1| (-38 (-400 (-549)))))) (-1934 (($ $) 86 (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) 74 (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) 85 (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) 73 (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) 84 (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) 72 (|has| |#1| (-38 (-400 (-549)))))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ |#2|) 36) (($ $ (-621 |#2|)) 35) (($ $ |#2| (-747)) 34) (($ $ (-621 |#2|) (-621 (-747))) 33)) (-2389 (((-112) $ $) 6)) (-2513 (($ $ |#1|) 120 (|has| |#1| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ $) 92 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 63 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 123 (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) 122 (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 111) (($ $ |#1|) 110)))
+((-1727 (((-2 (|:| -4280 (-923 |#3|)) (|:| -3007 (-923 |#3|))) |#4|) 14)) (-2641 ((|#4| |#4| |#2|) 33)) (-2984 ((|#4| (-400 (-923 |#3|)) |#2|) 64)) (-3247 ((|#4| (-1138 (-923 |#3|)) |#2|) 77)) (-2050 ((|#4| (-1138 |#4|) |#2|) 51)) (-3384 ((|#4| |#4| |#2|) 54)) (-2119 (((-411 |#4|) |#4|) 40)))
+(((-709 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1727 ((-2 (|:| -4280 (-923 |#3|)) (|:| -3007 (-923 |#3|))) |#4|)) (-15 -3384 (|#4| |#4| |#2|)) (-15 -2050 (|#4| (-1138 |#4|) |#2|)) (-15 -2641 (|#4| |#4| |#2|)) (-15 -3247 (|#4| (-1138 (-923 |#3|)) |#2|)) (-15 -2984 (|#4| (-400 (-923 |#3|)) |#2|)) (-15 -2119 ((-411 |#4|) |#4|))) (-769) (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $)))) (-541) (-920 (-400 (-923 |#3|)) |#1| |#2|)) (T -709))
+((-2119 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $))))) (-4 *6 (-541)) (-5 *2 (-411 *3)) (-5 *1 (-709 *4 *5 *6 *3)) (-4 *3 (-920 (-400 (-923 *6)) *4 *5)))) (-2984 (*1 *2 *3 *4) (-12 (-4 *6 (-541)) (-4 *2 (-920 *3 *5 *4)) (-5 *1 (-709 *5 *4 *6 *2)) (-5 *3 (-400 (-923 *6))) (-4 *5 (-769)) (-4 *4 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $))))))) (-3247 (*1 *2 *3 *4) (-12 (-5 *3 (-1138 (-923 *6))) (-4 *6 (-541)) (-4 *2 (-920 (-400 (-923 *6)) *5 *4)) (-5 *1 (-709 *5 *4 *6 *2)) (-4 *5 (-769)) (-4 *4 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $))))))) (-2641 (*1 *2 *2 *3) (-12 (-4 *4 (-769)) (-4 *3 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $))))) (-4 *5 (-541)) (-5 *1 (-709 *4 *3 *5 *2)) (-4 *2 (-920 (-400 (-923 *5)) *4 *3)))) (-2050 (*1 *2 *3 *4) (-12 (-5 *3 (-1138 *2)) (-4 *2 (-920 (-400 (-923 *6)) *5 *4)) (-5 *1 (-709 *5 *4 *6 *2)) (-4 *5 (-769)) (-4 *4 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $))))) (-4 *6 (-541)))) (-3384 (*1 *2 *2 *3) (-12 (-4 *4 (-769)) (-4 *3 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $))))) (-4 *5 (-541)) (-5 *1 (-709 *4 *3 *5 *2)) (-4 *2 (-920 (-400 (-923 *5)) *4 *3)))) (-1727 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $))))) (-4 *6 (-541)) (-5 *2 (-2 (|:| -4280 (-923 *6)) (|:| -3007 (-923 *6)))) (-5 *1 (-709 *4 *5 *6 *3)) (-4 *3 (-920 (-400 (-923 *6)) *4 *5)))))
+(-10 -7 (-15 -1727 ((-2 (|:| -4280 (-923 |#3|)) (|:| -3007 (-923 |#3|))) |#4|)) (-15 -3384 (|#4| |#4| |#2|)) (-15 -2050 (|#4| (-1138 |#4|) |#2|)) (-15 -2641 (|#4| |#4| |#2|)) (-15 -3247 (|#4| (-1138 (-923 |#3|)) |#2|)) (-15 -2984 (|#4| (-400 (-923 |#3|)) |#2|)) (-15 -2119 ((-411 |#4|) |#4|)))
+((-2119 (((-411 |#4|) |#4|) 52)))
+(((-710 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2119 ((-411 |#4|) |#4|))) (-769) (-823) (-13 (-300) (-145)) (-920 (-400 |#3|) |#1| |#2|)) (T -710))
+((-2119 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-13 (-300) (-145))) (-5 *2 (-411 *3)) (-5 *1 (-710 *4 *5 *6 *3)) (-4 *3 (-920 (-400 *6) *4 *5)))))
+(-10 -7 (-15 -2119 ((-411 |#4|) |#4|)))
+((-2795 (((-712 |#2| |#3|) (-1 |#2| |#1|) (-712 |#1| |#3|)) 18)))
+(((-711 |#1| |#2| |#3|) (-10 -7 (-15 -2795 ((-712 |#2| |#3|) (-1 |#2| |#1|) (-712 |#1| |#3|)))) (-1018) (-1018) (-703)) (T -711))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-712 *5 *7)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *7 (-703)) (-5 *2 (-712 *6 *7)) (-5 *1 (-711 *5 *6 *7)))))
+(-10 -7 (-15 -2795 ((-712 |#2| |#3|) (-1 |#2| |#1|) (-712 |#1| |#3|))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 28)) (-2585 (((-621 (-2 (|:| -1569 |#1|) (|:| -3525 |#2|))) $) 29)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3614 (((-747)) 20 (-12 (|has| |#2| (-361)) (|has| |#1| (-361))))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#2| "failed") $) 57) (((-3 |#1| "failed") $) 60)) (-2657 ((|#2| $) NIL) ((|#1| $) NIL)) (-2068 (($ $) 79 (|has| |#2| (-823)))) (-2612 (((-3 $ "failed") $) 65)) (-3237 (($) 35 (-12 (|has| |#2| (-361)) (|has| |#1| (-361))))) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) 55)) (-2758 (((-621 $) $) 39)) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| |#2|) 16)) (-2795 (($ (-1 |#1| |#1|) $) 54)) (-3309 (((-892) $) 32 (-12 (|has| |#2| (-361)) (|has| |#1| (-361))))) (-2027 ((|#2| $) 78 (|has| |#2| (-823)))) (-2042 ((|#1| $) 77 (|has| |#2| (-823)))) (-3441 (((-1124) $) NIL)) (-3494 (($ (-892)) 27 (-12 (|has| |#2| (-361)) (|has| |#1| (-361))))) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 76) (($ (-549)) 45) (($ |#2|) 42) (($ |#1|) 43) (($ (-621 (-2 (|:| -1569 |#1|) (|:| -3525 |#2|)))) 11)) (-2157 (((-621 |#1|) $) 41)) (-4068 ((|#1| $ |#2|) 88)) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) NIL)) (-3274 (($) 12 T CONST)) (-3286 (($) 33 T CONST)) (-2387 (((-112) $ $) 80)) (-2498 (($ $) 47) (($ $ $) NIL)) (-2484 (($ $ $) 26)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 52) (($ $ $) 90) (($ |#1| $) 49 (|has| |#1| (-170))) (($ $ |#1|) NIL (|has| |#1| (-170)))))
+(((-712 |#1| |#2|) (-13 (-1018) (-1009 |#2|) (-1009 |#1|) (-10 -8 (-15 -2244 ($ |#1| |#2|)) (-15 -4068 (|#1| $ |#2|)) (-15 -3845 ($ (-621 (-2 (|:| -1569 |#1|) (|:| -3525 |#2|))))) (-15 -2585 ((-621 (-2 (|:| -1569 |#1|) (|:| -3525 |#2|))) $)) (-15 -2795 ($ (-1 |#1| |#1|) $)) (-15 -2988 ((-112) $)) (-15 -2157 ((-621 |#1|) $)) (-15 -2758 ((-621 $) $)) (-15 -1751 ((-747) $)) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |#1| (-170)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-361)) (IF (|has| |#2| (-361)) (-6 (-361)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-823)) (PROGN (-15 -2027 (|#2| $)) (-15 -2042 (|#1| $)) (-15 -2068 ($ $))) |%noBranch|))) (-1018) (-703)) (T -712))
+((-2244 (*1 *1 *2 *3) (-12 (-5 *1 (-712 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-703)))) (-4068 (*1 *2 *1 *3) (-12 (-4 *2 (-1018)) (-5 *1 (-712 *2 *3)) (-4 *3 (-703)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-621 (-2 (|:| -1569 *3) (|:| -3525 *4)))) (-4 *3 (-1018)) (-4 *4 (-703)) (-5 *1 (-712 *3 *4)))) (-2585 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| -1569 *3) (|:| -3525 *4)))) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-703)))) (-2795 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-712 *3 *4)) (-4 *4 (-703)))) (-2988 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-703)))) (-2157 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-703)))) (-2758 (*1 *2 *1) (-12 (-5 *2 (-621 (-712 *3 *4))) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-703)))) (-1751 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-703)))) (-2027 (*1 *2 *1) (-12 (-4 *2 (-703)) (-4 *2 (-823)) (-5 *1 (-712 *3 *2)) (-4 *3 (-1018)))) (-2042 (*1 *2 *1) (-12 (-4 *2 (-1018)) (-5 *1 (-712 *2 *3)) (-4 *3 (-823)) (-4 *3 (-703)))) (-2068 (*1 *1 *1) (-12 (-5 *1 (-712 *2 *3)) (-4 *3 (-823)) (-4 *2 (-1018)) (-4 *3 (-703)))))
+(-13 (-1018) (-1009 |#2|) (-1009 |#1|) (-10 -8 (-15 -2244 ($ |#1| |#2|)) (-15 -4068 (|#1| $ |#2|)) (-15 -3845 ($ (-621 (-2 (|:| -1569 |#1|) (|:| -3525 |#2|))))) (-15 -2585 ((-621 (-2 (|:| -1569 |#1|) (|:| -3525 |#2|))) $)) (-15 -2795 ($ (-1 |#1| |#1|) $)) (-15 -2988 ((-112) $)) (-15 -2157 ((-621 |#1|) $)) (-15 -2758 ((-621 $) $)) (-15 -1751 ((-747) $)) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |#1| (-170)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-361)) (IF (|has| |#2| (-361)) (-6 (-361)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-823)) (PROGN (-15 -2027 (|#2| $)) (-15 -2042 (|#1| $)) (-15 -2068 ($ $))) |%noBranch|)))
+((-3832 (((-112) $ $) 19)) (-1441 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-4029 (($ $ $) 72)) (-1341 (((-112) $ $) 73)) (-2850 (((-112) $ (-747)) 8)) (-2787 (($ (-621 |#1|)) 68) (($) 67)) (-3827 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4336)))) (-3034 (($) 7 T CONST)) (-3469 (($ $) 62)) (-3675 (($ $) 58 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3546 (($ |#1| $) 47 (|has| $ (-6 -4336))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4336)))) (-3812 (($ |#1| $) 57 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4336)))) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-1513 (((-112) $ $) 64)) (-1777 (((-112) $ (-747)) 9)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22)) (-3869 (($ $ $) 69)) (-2548 ((|#1| $) 39)) (-1799 (($ |#1| $) 40) (($ |#1| $ (-747)) 63)) (-3988 (((-1086) $) 21)) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3536 ((|#1| $) 41)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-1359 (((-621 (-2 (|:| -1791 |#1|) (|:| -3997 (-747)))) $) 61)) (-4020 (($ $ |#1|) 71) (($ $ $) 70)) (-3226 (($) 49) (($ (-621 |#1|)) 48)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-2843 (((-525) $) 59 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 50)) (-3845 (((-834) $) 18)) (-4119 (($ (-621 |#1|)) 66) (($) 65)) (-4213 (($ (-621 |#1|)) 42)) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20)) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-713 |#1|) (-138) (-1066)) (T -713))
+NIL
+(-13 (-671 |t#1|) (-1064 |t#1|))
+(((-34) . T) ((-106 |#1|) . T) ((-101) . T) ((-593 (-834)) . T) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-229 |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-671 |#1|) . T) ((-1064 |#1|) . T) ((-1066) . T) ((-1179) . T))
+((-3832 (((-112) $ $) NIL)) (-1441 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 76)) (-4029 (($ $ $) 79)) (-1341 (((-112) $ $) 83)) (-2850 (((-112) $ (-747)) NIL)) (-2787 (($ (-621 |#1|)) 24) (($) 16)) (-3827 (($ (-1 (-112) |#1|) $) 70 (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-3469 (($ $) 71)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3546 (($ |#1| $) 61 (|has| $ (-6 -4336))) (($ (-1 (-112) |#1|) $) 64 (|has| $ (-6 -4336))) (($ |#1| $ (-549)) 62) (($ (-1 (-112) |#1|) $ (-549)) 65)) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (($ |#1| $ (-549)) 67) (($ (-1 (-112) |#1|) $ (-549)) 68)) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4336)))) (-2987 (((-621 |#1|) $) 32 (|has| $ (-6 -4336)))) (-1513 (((-112) $ $) 82)) (-4050 (($) 14) (($ |#1|) 26) (($ (-621 |#1|)) 21)) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 |#1|) $) 38)) (-1593 (((-112) |#1| $) 58 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1864 (($ (-1 |#1| |#1|) $) 74 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 75)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL)) (-3869 (($ $ $) 77)) (-2548 ((|#1| $) 55)) (-1799 (($ |#1| $) 56) (($ |#1| $ (-747)) 72)) (-3988 (((-1086) $) NIL)) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3536 ((|#1| $) 54)) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) 50)) (-3288 (($) 13)) (-1359 (((-621 (-2 (|:| -1791 |#1|) (|:| -3997 (-747)))) $) 48)) (-4020 (($ $ |#1|) NIL) (($ $ $) 78)) (-3226 (($) 15) (($ (-621 |#1|)) 23)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) 60 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) 66)) (-2843 (((-525) $) 36 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 20)) (-3845 (((-834) $) 44)) (-4119 (($ (-621 |#1|)) 25) (($) 17)) (-4213 (($ (-621 |#1|)) 22)) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 81)) (-3774 (((-747) $) 59 (|has| $ (-6 -4336)))))
+(((-714 |#1|) (-13 (-713 |#1|) (-10 -8 (-6 -4336) (-6 -4337) (-15 -4050 ($)) (-15 -4050 ($ |#1|)) (-15 -4050 ($ (-621 |#1|))) (-15 -3698 ((-621 |#1|) $)) (-15 -3812 ($ |#1| $ (-549))) (-15 -3812 ($ (-1 (-112) |#1|) $ (-549))) (-15 -3546 ($ |#1| $ (-549))) (-15 -3546 ($ (-1 (-112) |#1|) $ (-549))))) (-1066)) (T -714))
+((-4050 (*1 *1) (-12 (-5 *1 (-714 *2)) (-4 *2 (-1066)))) (-4050 (*1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-1066)))) (-4050 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-5 *1 (-714 *3)))) (-3698 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-714 *3)) (-4 *3 (-1066)))) (-3812 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-714 *2)) (-4 *2 (-1066)))) (-3812 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-549)) (-4 *4 (-1066)) (-5 *1 (-714 *4)))) (-3546 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-714 *2)) (-4 *2 (-1066)))) (-3546 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-549)) (-4 *4 (-1066)) (-5 *1 (-714 *4)))))
+(-13 (-713 |#1|) (-10 -8 (-6 -4336) (-6 -4337) (-15 -4050 ($)) (-15 -4050 ($ |#1|)) (-15 -4050 ($ (-621 |#1|))) (-15 -3698 ((-621 |#1|) $)) (-15 -3812 ($ |#1| $ (-549))) (-15 -3812 ($ (-1 (-112) |#1|) $ (-549))) (-15 -3546 ($ |#1| $ (-549))) (-15 -3546 ($ (-1 (-112) |#1|) $ (-549)))))
+((-4009 (((-1230) (-1124)) 8)))
+(((-715) (-10 -7 (-15 -4009 ((-1230) (-1124))))) (T -715))
+((-4009 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-715)))))
+(-10 -7 (-15 -4009 ((-1230) (-1124))))
+((-1521 (((-621 |#1|) (-621 |#1|) (-621 |#1|)) 10)))
+(((-716 |#1|) (-10 -7 (-15 -1521 ((-621 |#1|) (-621 |#1|) (-621 |#1|)))) (-823)) (T -716))
+((-1521 (*1 *2 *2 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-716 *3)))))
+(-10 -7 (-15 -1521 ((-621 |#1|) (-621 |#1|) (-621 |#1|))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2270 (((-621 |#2|) $) 134)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 127 (|has| |#1| (-541)))) (-3044 (($ $) 126 (|has| |#1| (-541)))) (-2774 (((-112) $) 124 (|has| |#1| (-541)))) (-1662 (($ $) 83 (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) 66 (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) 19)) (-2132 (($ $) 65 (|has| |#1| (-38 (-400 (-549)))))) (-1638 (($ $) 82 (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) 67 (|has| |#1| (-38 (-400 (-549)))))) (-1684 (($ $) 81 (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) 68 (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) 17 T CONST)) (-2068 (($ $) 118)) (-2612 (((-3 $ "failed") $) 32)) (-1413 (((-923 |#1|) $ (-747)) 96) (((-923 |#1|) $ (-747) (-747)) 95)) (-1410 (((-112) $) 135)) (-1425 (($) 93 (|has| |#1| (-38 (-400 (-549)))))) (-2729 (((-747) $ |#2|) 98) (((-747) $ |#2| (-747)) 97)) (-2297 (((-112) $) 30)) (-3621 (($ $ (-549)) 64 (|has| |#1| (-38 (-400 (-549)))))) (-2988 (((-112) $) 116)) (-2244 (($ $ (-621 |#2|) (-621 (-521 |#2|))) 133) (($ $ |#2| (-521 |#2|)) 132) (($ |#1| (-521 |#2|)) 117) (($ $ |#2| (-747)) 100) (($ $ (-621 |#2|) (-621 (-747))) 99)) (-2795 (($ (-1 |#1| |#1|) $) 115)) (-3631 (($ $) 90 (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) 113)) (-2042 ((|#1| $) 112)) (-3441 (((-1124) $) 9)) (-3405 (($ $ |#2|) 94 (|has| |#1| (-38 (-400 (-549)))))) (-3988 (((-1086) $) 10)) (-3796 (($ $ (-747)) 101)) (-2040 (((-3 $ "failed") $ $) 128 (|has| |#1| (-541)))) (-2717 (($ $) 91 (|has| |#1| (-38 (-400 (-549)))))) (-2684 (($ $ |#2| $) 109) (($ $ (-621 |#2|) (-621 $)) 108) (($ $ (-621 (-287 $))) 107) (($ $ (-287 $)) 106) (($ $ $ $) 105) (($ $ (-621 $) (-621 $)) 104)) (-3455 (($ $ |#2|) 40) (($ $ (-621 |#2|)) 39) (($ $ |#2| (-747)) 38) (($ $ (-621 |#2|) (-621 (-747))) 37)) (-3977 (((-521 |#2|) $) 114)) (-1696 (($ $) 80 (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) 69 (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) 79 (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) 70 (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) 78 (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) 71 (|has| |#1| (-38 (-400 (-549)))))) (-3958 (($ $) 136)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 131 (|has| |#1| (-170))) (($ $) 129 (|has| |#1| (-541))) (($ (-400 (-549))) 121 (|has| |#1| (-38 (-400 (-549)))))) (-4068 ((|#1| $ (-521 |#2|)) 119) (($ $ |#2| (-747)) 103) (($ $ (-621 |#2|) (-621 (-747))) 102)) (-2343 (((-3 $ "failed") $) 130 (|has| |#1| (-143)))) (-2371 (((-747)) 28)) (-1731 (($ $) 89 (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) 77 (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) 125 (|has| |#1| (-541)))) (-1708 (($ $) 88 (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) 76 (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) 87 (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) 75 (|has| |#1| (-38 (-400 (-549)))))) (-1932 (($ $) 86 (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) 74 (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) 85 (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) 73 (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) 84 (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) 72 (|has| |#1| (-38 (-400 (-549)))))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ |#2|) 36) (($ $ (-621 |#2|)) 35) (($ $ |#2| (-747)) 34) (($ $ (-621 |#2|) (-621 (-747))) 33)) (-2387 (((-112) $ $) 6)) (-2511 (($ $ |#1|) 120 (|has| |#1| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ $) 92 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 63 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 123 (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) 122 (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 111) (($ $ |#1|) 110)))
(((-717 |#1| |#2|) (-138) (-1018) (-823)) (T -717))
-((-2152 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-717 *4 *2)) (-4 *4 (-1018)) (-4 *2 (-823)))) (-2152 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *5)) (-5 *3 (-621 (-747))) (-4 *1 (-717 *4 *5)) (-4 *4 (-1018)) (-4 *5 (-823)))) (-2763 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-717 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-823)))) (-2246 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-717 *4 *2)) (-4 *4 (-1018)) (-4 *2 (-823)))) (-2246 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *5)) (-5 *3 (-621 (-747))) (-4 *1 (-717 *4 *5)) (-4 *4 (-1018)) (-4 *5 (-823)))) (-2088 (*1 *2 *1 *3) (-12 (-4 *1 (-717 *4 *3)) (-4 *4 (-1018)) (-4 *3 (-823)) (-5 *2 (-747)))) (-2088 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-747)) (-4 *1 (-717 *4 *3)) (-4 *4 (-1018)) (-4 *3 (-823)))) (-1414 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *1 (-717 *4 *5)) (-4 *4 (-1018)) (-4 *5 (-823)) (-5 *2 (-923 *4)))) (-1414 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-747)) (-4 *1 (-717 *4 *5)) (-4 *4 (-1018)) (-4 *5 (-823)) (-5 *2 (-923 *4)))) (-3893 (*1 *1 *1 *2) (-12 (-4 *1 (-717 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-823)) (-4 *3 (-38 (-400 (-549)))))))
-(-13 (-871 |t#2|) (-944 |t#1| (-521 |t#2|) |t#2|) (-505 |t#2| $) (-302 $) (-10 -8 (-15 -2152 ($ $ |t#2| (-747))) (-15 -2152 ($ $ (-621 |t#2|) (-621 (-747)))) (-15 -2763 ($ $ (-747))) (-15 -2246 ($ $ |t#2| (-747))) (-15 -2246 ($ $ (-621 |t#2|) (-621 (-747)))) (-15 -2088 ((-747) $ |t#2|)) (-15 -2088 ((-747) $ |t#2| (-747))) (-15 -1414 ((-923 |t#1|) $ (-747))) (-15 -1414 ((-923 |t#1|) $ (-747) (-747))) (IF (|has| |t#1| (-38 (-400 (-549)))) (PROGN (-15 -3893 ($ $ |t#2|)) (-6 (-973)) (-6 (-1165))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-521 |#2|)) . T) ((-25) . T) ((-38 #1=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) |has| |#1| (-541)) ((-35) |has| |#1| (-38 (-400 (-549)))) ((-94) |has| |#1| (-38 (-400 (-549)))) ((-101) . T) ((-111 #1# #1#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-277) |has| |#1| (-38 (-400 (-549)))) ((-283) |has| |#1| (-541)) ((-302 $) . T) ((-484) |has| |#1| (-38 (-400 (-549)))) ((-505 |#2| $) . T) ((-505 $ $) . T) ((-541) |has| |#1| (-541)) ((-624 #1#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #1#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) |has| |#1| (-541)) ((-703) . T) ((-871 |#2|) . T) ((-944 |#1| #0# |#2|) . T) ((-973) |has| |#1| (-38 (-400 (-549)))) ((-1024 #1#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1165) |has| |#1| (-38 (-400 (-549)))) ((-1168) |has| |#1| (-38 (-400 (-549)))))
-((-2121 (((-411 (-1139 |#4|)) (-1139 |#4|)) 30) (((-411 |#4|) |#4|) 26)))
-(((-718 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2121 ((-411 |#4|) |#4|)) (-15 -2121 ((-411 (-1139 |#4|)) (-1139 |#4|)))) (-823) (-769) (-13 (-300) (-145)) (-920 |#3| |#2| |#1|)) (T -718))
-((-2121 (*1 *2 *3) (-12 (-4 *4 (-823)) (-4 *5 (-769)) (-4 *6 (-13 (-300) (-145))) (-4 *7 (-920 *6 *5 *4)) (-5 *2 (-411 (-1139 *7))) (-5 *1 (-718 *4 *5 *6 *7)) (-5 *3 (-1139 *7)))) (-2121 (*1 *2 *3) (-12 (-4 *4 (-823)) (-4 *5 (-769)) (-4 *6 (-13 (-300) (-145))) (-5 *2 (-411 *3)) (-5 *1 (-718 *4 *5 *6 *3)) (-4 *3 (-920 *6 *5 *4)))))
-(-10 -7 (-15 -2121 ((-411 |#4|) |#4|)) (-15 -2121 ((-411 (-1139 |#4|)) (-1139 |#4|))))
-((-1287 (((-411 |#4|) |#4| |#2|) 120)) (-1951 (((-411 |#4|) |#4|) NIL)) (-2402 (((-411 (-1139 |#4|)) (-1139 |#4|)) 111) (((-411 |#4|) |#4|) 41)) (-1325 (((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-621 (-2 (|:| -2121 (-1139 |#4|)) (|:| -3731 (-549)))))) (-1139 |#4|) (-621 |#2|) (-621 (-621 |#3|))) 69)) (-2496 (((-1139 |#3|) (-1139 |#3|) (-549)) 139)) (-4252 (((-621 (-747)) (-1139 |#4|) (-621 |#2|) (-747)) 61)) (-2548 (((-3 (-621 (-1139 |#4|)) "failed") (-1139 |#4|) (-1139 |#3|) (-1139 |#3|) |#4| (-621 |#2|) (-621 (-747)) (-621 |#3|)) 65)) (-4075 (((-2 (|:| |upol| (-1139 |#3|)) (|:| |Lval| (-621 |#3|)) (|:| |Lfact| (-621 (-2 (|:| -2121 (-1139 |#3|)) (|:| -3731 (-549))))) (|:| |ctpol| |#3|)) (-1139 |#4|) (-621 |#2|) (-621 (-621 |#3|))) 26)) (-2132 (((-2 (|:| -3028 (-1139 |#4|)) (|:| |polval| (-1139 |#3|))) (-1139 |#4|) (-1139 |#3|) (-549)) 57)) (-1688 (((-549) (-621 (-2 (|:| -2121 (-1139 |#3|)) (|:| -3731 (-549))))) 136)) (-1450 ((|#4| (-549) (-411 |#4|)) 58)) (-3097 (((-112) (-621 (-2 (|:| -2121 (-1139 |#3|)) (|:| -3731 (-549)))) (-621 (-2 (|:| -2121 (-1139 |#3|)) (|:| -3731 (-549))))) NIL)))
-(((-719 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2402 ((-411 |#4|) |#4|)) (-15 -2402 ((-411 (-1139 |#4|)) (-1139 |#4|))) (-15 -1951 ((-411 |#4|) |#4|)) (-15 -1688 ((-549) (-621 (-2 (|:| -2121 (-1139 |#3|)) (|:| -3731 (-549)))))) (-15 -1287 ((-411 |#4|) |#4| |#2|)) (-15 -2132 ((-2 (|:| -3028 (-1139 |#4|)) (|:| |polval| (-1139 |#3|))) (-1139 |#4|) (-1139 |#3|) (-549))) (-15 -1325 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-621 (-2 (|:| -2121 (-1139 |#4|)) (|:| -3731 (-549)))))) (-1139 |#4|) (-621 |#2|) (-621 (-621 |#3|)))) (-15 -4075 ((-2 (|:| |upol| (-1139 |#3|)) (|:| |Lval| (-621 |#3|)) (|:| |Lfact| (-621 (-2 (|:| -2121 (-1139 |#3|)) (|:| -3731 (-549))))) (|:| |ctpol| |#3|)) (-1139 |#4|) (-621 |#2|) (-621 (-621 |#3|)))) (-15 -1450 (|#4| (-549) (-411 |#4|))) (-15 -3097 ((-112) (-621 (-2 (|:| -2121 (-1139 |#3|)) (|:| -3731 (-549)))) (-621 (-2 (|:| -2121 (-1139 |#3|)) (|:| -3731 (-549)))))) (-15 -2548 ((-3 (-621 (-1139 |#4|)) "failed") (-1139 |#4|) (-1139 |#3|) (-1139 |#3|) |#4| (-621 |#2|) (-621 (-747)) (-621 |#3|))) (-15 -4252 ((-621 (-747)) (-1139 |#4|) (-621 |#2|) (-747))) (-15 -2496 ((-1139 |#3|) (-1139 |#3|) (-549)))) (-769) (-823) (-300) (-920 |#3| |#1| |#2|)) (T -719))
-((-2496 (*1 *2 *2 *3) (-12 (-5 *2 (-1139 *6)) (-5 *3 (-549)) (-4 *6 (-300)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-719 *4 *5 *6 *7)) (-4 *7 (-920 *6 *4 *5)))) (-4252 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1139 *9)) (-5 *4 (-621 *7)) (-4 *7 (-823)) (-4 *9 (-920 *8 *6 *7)) (-4 *6 (-769)) (-4 *8 (-300)) (-5 *2 (-621 (-747))) (-5 *1 (-719 *6 *7 *8 *9)) (-5 *5 (-747)))) (-2548 (*1 *2 *3 *4 *4 *5 *6 *7 *8) (|partial| -12 (-5 *4 (-1139 *11)) (-5 *6 (-621 *10)) (-5 *7 (-621 (-747))) (-5 *8 (-621 *11)) (-4 *10 (-823)) (-4 *11 (-300)) (-4 *9 (-769)) (-4 *5 (-920 *11 *9 *10)) (-5 *2 (-621 (-1139 *5))) (-5 *1 (-719 *9 *10 *11 *5)) (-5 *3 (-1139 *5)))) (-3097 (*1 *2 *3 *3) (-12 (-5 *3 (-621 (-2 (|:| -2121 (-1139 *6)) (|:| -3731 (-549))))) (-4 *6 (-300)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-719 *4 *5 *6 *7)) (-4 *7 (-920 *6 *4 *5)))) (-1450 (*1 *2 *3 *4) (-12 (-5 *3 (-549)) (-5 *4 (-411 *2)) (-4 *2 (-920 *7 *5 *6)) (-5 *1 (-719 *5 *6 *7 *2)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-300)))) (-4075 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1139 *9)) (-5 *4 (-621 *7)) (-5 *5 (-621 (-621 *8))) (-4 *7 (-823)) (-4 *8 (-300)) (-4 *9 (-920 *8 *6 *7)) (-4 *6 (-769)) (-5 *2 (-2 (|:| |upol| (-1139 *8)) (|:| |Lval| (-621 *8)) (|:| |Lfact| (-621 (-2 (|:| -2121 (-1139 *8)) (|:| -3731 (-549))))) (|:| |ctpol| *8))) (-5 *1 (-719 *6 *7 *8 *9)))) (-1325 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-621 *7)) (-5 *5 (-621 (-621 *8))) (-4 *7 (-823)) (-4 *8 (-300)) (-4 *6 (-769)) (-4 *9 (-920 *8 *6 *7)) (-5 *2 (-2 (|:| |unitPart| *9) (|:| |suPart| (-621 (-2 (|:| -2121 (-1139 *9)) (|:| -3731 (-549))))))) (-5 *1 (-719 *6 *7 *8 *9)) (-5 *3 (-1139 *9)))) (-2132 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-549)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-300)) (-4 *9 (-920 *8 *6 *7)) (-5 *2 (-2 (|:| -3028 (-1139 *9)) (|:| |polval| (-1139 *8)))) (-5 *1 (-719 *6 *7 *8 *9)) (-5 *3 (-1139 *9)) (-5 *4 (-1139 *8)))) (-1287 (*1 *2 *3 *4) (-12 (-4 *5 (-769)) (-4 *4 (-823)) (-4 *6 (-300)) (-5 *2 (-411 *3)) (-5 *1 (-719 *5 *4 *6 *3)) (-4 *3 (-920 *6 *5 *4)))) (-1688 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| -2121 (-1139 *6)) (|:| -3731 (-549))))) (-4 *6 (-300)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-549)) (-5 *1 (-719 *4 *5 *6 *7)) (-4 *7 (-920 *6 *4 *5)))) (-1951 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)) (-5 *2 (-411 *3)) (-5 *1 (-719 *4 *5 *6 *3)) (-4 *3 (-920 *6 *4 *5)))) (-2402 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)) (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-411 (-1139 *7))) (-5 *1 (-719 *4 *5 *6 *7)) (-5 *3 (-1139 *7)))) (-2402 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)) (-5 *2 (-411 *3)) (-5 *1 (-719 *4 *5 *6 *3)) (-4 *3 (-920 *6 *4 *5)))))
-(-10 -7 (-15 -2402 ((-411 |#4|) |#4|)) (-15 -2402 ((-411 (-1139 |#4|)) (-1139 |#4|))) (-15 -1951 ((-411 |#4|) |#4|)) (-15 -1688 ((-549) (-621 (-2 (|:| -2121 (-1139 |#3|)) (|:| -3731 (-549)))))) (-15 -1287 ((-411 |#4|) |#4| |#2|)) (-15 -2132 ((-2 (|:| -3028 (-1139 |#4|)) (|:| |polval| (-1139 |#3|))) (-1139 |#4|) (-1139 |#3|) (-549))) (-15 -1325 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-621 (-2 (|:| -2121 (-1139 |#4|)) (|:| -3731 (-549)))))) (-1139 |#4|) (-621 |#2|) (-621 (-621 |#3|)))) (-15 -4075 ((-2 (|:| |upol| (-1139 |#3|)) (|:| |Lval| (-621 |#3|)) (|:| |Lfact| (-621 (-2 (|:| -2121 (-1139 |#3|)) (|:| -3731 (-549))))) (|:| |ctpol| |#3|)) (-1139 |#4|) (-621 |#2|) (-621 (-621 |#3|)))) (-15 -1450 (|#4| (-549) (-411 |#4|))) (-15 -3097 ((-112) (-621 (-2 (|:| -2121 (-1139 |#3|)) (|:| -3731 (-549)))) (-621 (-2 (|:| -2121 (-1139 |#3|)) (|:| -3731 (-549)))))) (-15 -2548 ((-3 (-621 (-1139 |#4|)) "failed") (-1139 |#4|) (-1139 |#3|) (-1139 |#3|) |#4| (-621 |#2|) (-621 (-747)) (-621 |#3|))) (-15 -4252 ((-621 (-747)) (-1139 |#4|) (-621 |#2|) (-747))) (-15 -2496 ((-1139 |#3|) (-1139 |#3|) (-549))))
-((-2943 (($ $ (-892)) 12)))
-(((-720 |#1| |#2|) (-10 -8 (-15 -2943 (|#1| |#1| (-892)))) (-721 |#2|) (-170)) (T -720))
-NIL
-(-10 -8 (-15 -2943 (|#1| |#1| (-892))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-3117 (($ $ (-892)) 28)) (-2943 (($ $ (-892)) 33)) (-2884 (($ $ (-892)) 29)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3293 (($ $ $) 25)) (-3846 (((-834) $) 11)) (-4272 (($ $ $ $) 26)) (-2174 (($ $ $) 24)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 30)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
+((-4068 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-717 *4 *2)) (-4 *4 (-1018)) (-4 *2 (-823)))) (-4068 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *5)) (-5 *3 (-621 (-747))) (-4 *1 (-717 *4 *5)) (-4 *4 (-1018)) (-4 *5 (-823)))) (-3796 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-717 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-823)))) (-2244 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-717 *4 *2)) (-4 *4 (-1018)) (-4 *2 (-823)))) (-2244 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *5)) (-5 *3 (-621 (-747))) (-4 *1 (-717 *4 *5)) (-4 *4 (-1018)) (-4 *5 (-823)))) (-2729 (*1 *2 *1 *3) (-12 (-4 *1 (-717 *4 *3)) (-4 *4 (-1018)) (-4 *3 (-823)) (-5 *2 (-747)))) (-2729 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-747)) (-4 *1 (-717 *4 *3)) (-4 *4 (-1018)) (-4 *3 (-823)))) (-1413 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *1 (-717 *4 *5)) (-4 *4 (-1018)) (-4 *5 (-823)) (-5 *2 (-923 *4)))) (-1413 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-747)) (-4 *1 (-717 *4 *5)) (-4 *4 (-1018)) (-4 *5 (-823)) (-5 *2 (-923 *4)))) (-3405 (*1 *1 *1 *2) (-12 (-4 *1 (-717 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-823)) (-4 *3 (-38 (-400 (-549)))))))
+(-13 (-871 |t#2|) (-944 |t#1| (-521 |t#2|) |t#2|) (-505 |t#2| $) (-302 $) (-10 -8 (-15 -4068 ($ $ |t#2| (-747))) (-15 -4068 ($ $ (-621 |t#2|) (-621 (-747)))) (-15 -3796 ($ $ (-747))) (-15 -2244 ($ $ |t#2| (-747))) (-15 -2244 ($ $ (-621 |t#2|) (-621 (-747)))) (-15 -2729 ((-747) $ |t#2|)) (-15 -2729 ((-747) $ |t#2| (-747))) (-15 -1413 ((-923 |t#1|) $ (-747))) (-15 -1413 ((-923 |t#1|) $ (-747) (-747))) (IF (|has| |t#1| (-38 (-400 (-549)))) (PROGN (-15 -3405 ($ $ |t#2|)) (-6 (-973)) (-6 (-1164))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-521 |#2|)) . T) ((-25) . T) ((-38 #1=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) |has| |#1| (-541)) ((-35) |has| |#1| (-38 (-400 (-549)))) ((-94) |has| |#1| (-38 (-400 (-549)))) ((-101) . T) ((-111 #1# #1#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-277) |has| |#1| (-38 (-400 (-549)))) ((-283) |has| |#1| (-541)) ((-302 $) . T) ((-484) |has| |#1| (-38 (-400 (-549)))) ((-505 |#2| $) . T) ((-505 $ $) . T) ((-541) |has| |#1| (-541)) ((-624 #1#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #1#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) |has| |#1| (-541)) ((-703) . T) ((-871 |#2|) . T) ((-944 |#1| #0# |#2|) . T) ((-973) |has| |#1| (-38 (-400 (-549)))) ((-1024 #1#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1164) |has| |#1| (-38 (-400 (-549)))) ((-1167) |has| |#1| (-38 (-400 (-549)))))
+((-2119 (((-411 (-1138 |#4|)) (-1138 |#4|)) 30) (((-411 |#4|) |#4|) 26)))
+(((-718 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2119 ((-411 |#4|) |#4|)) (-15 -2119 ((-411 (-1138 |#4|)) (-1138 |#4|)))) (-823) (-769) (-13 (-300) (-145)) (-920 |#3| |#2| |#1|)) (T -718))
+((-2119 (*1 *2 *3) (-12 (-4 *4 (-823)) (-4 *5 (-769)) (-4 *6 (-13 (-300) (-145))) (-4 *7 (-920 *6 *5 *4)) (-5 *2 (-411 (-1138 *7))) (-5 *1 (-718 *4 *5 *6 *7)) (-5 *3 (-1138 *7)))) (-2119 (*1 *2 *3) (-12 (-4 *4 (-823)) (-4 *5 (-769)) (-4 *6 (-13 (-300) (-145))) (-5 *2 (-411 *3)) (-5 *1 (-718 *4 *5 *6 *3)) (-4 *3 (-920 *6 *5 *4)))))
+(-10 -7 (-15 -2119 ((-411 |#4|) |#4|)) (-15 -2119 ((-411 (-1138 |#4|)) (-1138 |#4|))))
+((-1380 (((-411 |#4|) |#4| |#2|) 120)) (-1465 (((-411 |#4|) |#4|) NIL)) (-2620 (((-411 (-1138 |#4|)) (-1138 |#4|)) 111) (((-411 |#4|) |#4|) 41)) (-3389 (((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-621 (-2 (|:| -2119 (-1138 |#4|)) (|:| -1714 (-549)))))) (-1138 |#4|) (-621 |#2|) (-621 (-621 |#3|))) 69)) (-2293 (((-1138 |#3|) (-1138 |#3|) (-549)) 139)) (-3529 (((-621 (-747)) (-1138 |#4|) (-621 |#2|) (-747)) 61)) (-2545 (((-3 (-621 (-1138 |#4|)) "failed") (-1138 |#4|) (-1138 |#3|) (-1138 |#3|) |#4| (-621 |#2|) (-621 (-747)) (-621 |#3|)) 65)) (-2243 (((-2 (|:| |upol| (-1138 |#3|)) (|:| |Lval| (-621 |#3|)) (|:| |Lfact| (-621 (-2 (|:| -2119 (-1138 |#3|)) (|:| -1714 (-549))))) (|:| |ctpol| |#3|)) (-1138 |#4|) (-621 |#2|) (-621 (-621 |#3|))) 26)) (-2767 (((-2 (|:| -2443 (-1138 |#4|)) (|:| |polval| (-1138 |#3|))) (-1138 |#4|) (-1138 |#3|) (-549)) 57)) (-2356 (((-549) (-621 (-2 (|:| -2119 (-1138 |#3|)) (|:| -1714 (-549))))) 136)) (-3550 ((|#4| (-549) (-411 |#4|)) 58)) (-1282 (((-112) (-621 (-2 (|:| -2119 (-1138 |#3|)) (|:| -1714 (-549)))) (-621 (-2 (|:| -2119 (-1138 |#3|)) (|:| -1714 (-549))))) NIL)))
+(((-719 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2620 ((-411 |#4|) |#4|)) (-15 -2620 ((-411 (-1138 |#4|)) (-1138 |#4|))) (-15 -1465 ((-411 |#4|) |#4|)) (-15 -2356 ((-549) (-621 (-2 (|:| -2119 (-1138 |#3|)) (|:| -1714 (-549)))))) (-15 -1380 ((-411 |#4|) |#4| |#2|)) (-15 -2767 ((-2 (|:| -2443 (-1138 |#4|)) (|:| |polval| (-1138 |#3|))) (-1138 |#4|) (-1138 |#3|) (-549))) (-15 -3389 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-621 (-2 (|:| -2119 (-1138 |#4|)) (|:| -1714 (-549)))))) (-1138 |#4|) (-621 |#2|) (-621 (-621 |#3|)))) (-15 -2243 ((-2 (|:| |upol| (-1138 |#3|)) (|:| |Lval| (-621 |#3|)) (|:| |Lfact| (-621 (-2 (|:| -2119 (-1138 |#3|)) (|:| -1714 (-549))))) (|:| |ctpol| |#3|)) (-1138 |#4|) (-621 |#2|) (-621 (-621 |#3|)))) (-15 -3550 (|#4| (-549) (-411 |#4|))) (-15 -1282 ((-112) (-621 (-2 (|:| -2119 (-1138 |#3|)) (|:| -1714 (-549)))) (-621 (-2 (|:| -2119 (-1138 |#3|)) (|:| -1714 (-549)))))) (-15 -2545 ((-3 (-621 (-1138 |#4|)) "failed") (-1138 |#4|) (-1138 |#3|) (-1138 |#3|) |#4| (-621 |#2|) (-621 (-747)) (-621 |#3|))) (-15 -3529 ((-621 (-747)) (-1138 |#4|) (-621 |#2|) (-747))) (-15 -2293 ((-1138 |#3|) (-1138 |#3|) (-549)))) (-769) (-823) (-300) (-920 |#3| |#1| |#2|)) (T -719))
+((-2293 (*1 *2 *2 *3) (-12 (-5 *2 (-1138 *6)) (-5 *3 (-549)) (-4 *6 (-300)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-719 *4 *5 *6 *7)) (-4 *7 (-920 *6 *4 *5)))) (-3529 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1138 *9)) (-5 *4 (-621 *7)) (-4 *7 (-823)) (-4 *9 (-920 *8 *6 *7)) (-4 *6 (-769)) (-4 *8 (-300)) (-5 *2 (-621 (-747))) (-5 *1 (-719 *6 *7 *8 *9)) (-5 *5 (-747)))) (-2545 (*1 *2 *3 *4 *4 *5 *6 *7 *8) (|partial| -12 (-5 *4 (-1138 *11)) (-5 *6 (-621 *10)) (-5 *7 (-621 (-747))) (-5 *8 (-621 *11)) (-4 *10 (-823)) (-4 *11 (-300)) (-4 *9 (-769)) (-4 *5 (-920 *11 *9 *10)) (-5 *2 (-621 (-1138 *5))) (-5 *1 (-719 *9 *10 *11 *5)) (-5 *3 (-1138 *5)))) (-1282 (*1 *2 *3 *3) (-12 (-5 *3 (-621 (-2 (|:| -2119 (-1138 *6)) (|:| -1714 (-549))))) (-4 *6 (-300)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)) (-5 *1 (-719 *4 *5 *6 *7)) (-4 *7 (-920 *6 *4 *5)))) (-3550 (*1 *2 *3 *4) (-12 (-5 *3 (-549)) (-5 *4 (-411 *2)) (-4 *2 (-920 *7 *5 *6)) (-5 *1 (-719 *5 *6 *7 *2)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-300)))) (-2243 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1138 *9)) (-5 *4 (-621 *7)) (-5 *5 (-621 (-621 *8))) (-4 *7 (-823)) (-4 *8 (-300)) (-4 *9 (-920 *8 *6 *7)) (-4 *6 (-769)) (-5 *2 (-2 (|:| |upol| (-1138 *8)) (|:| |Lval| (-621 *8)) (|:| |Lfact| (-621 (-2 (|:| -2119 (-1138 *8)) (|:| -1714 (-549))))) (|:| |ctpol| *8))) (-5 *1 (-719 *6 *7 *8 *9)))) (-3389 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-621 *7)) (-5 *5 (-621 (-621 *8))) (-4 *7 (-823)) (-4 *8 (-300)) (-4 *6 (-769)) (-4 *9 (-920 *8 *6 *7)) (-5 *2 (-2 (|:| |unitPart| *9) (|:| |suPart| (-621 (-2 (|:| -2119 (-1138 *9)) (|:| -1714 (-549))))))) (-5 *1 (-719 *6 *7 *8 *9)) (-5 *3 (-1138 *9)))) (-2767 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-549)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-300)) (-4 *9 (-920 *8 *6 *7)) (-5 *2 (-2 (|:| -2443 (-1138 *9)) (|:| |polval| (-1138 *8)))) (-5 *1 (-719 *6 *7 *8 *9)) (-5 *3 (-1138 *9)) (-5 *4 (-1138 *8)))) (-1380 (*1 *2 *3 *4) (-12 (-4 *5 (-769)) (-4 *4 (-823)) (-4 *6 (-300)) (-5 *2 (-411 *3)) (-5 *1 (-719 *5 *4 *6 *3)) (-4 *3 (-920 *6 *5 *4)))) (-2356 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| -2119 (-1138 *6)) (|:| -1714 (-549))))) (-4 *6 (-300)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-549)) (-5 *1 (-719 *4 *5 *6 *7)) (-4 *7 (-920 *6 *4 *5)))) (-1465 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)) (-5 *2 (-411 *3)) (-5 *1 (-719 *4 *5 *6 *3)) (-4 *3 (-920 *6 *4 *5)))) (-2620 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)) (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-411 (-1138 *7))) (-5 *1 (-719 *4 *5 *6 *7)) (-5 *3 (-1138 *7)))) (-2620 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)) (-5 *2 (-411 *3)) (-5 *1 (-719 *4 *5 *6 *3)) (-4 *3 (-920 *6 *4 *5)))))
+(-10 -7 (-15 -2620 ((-411 |#4|) |#4|)) (-15 -2620 ((-411 (-1138 |#4|)) (-1138 |#4|))) (-15 -1465 ((-411 |#4|) |#4|)) (-15 -2356 ((-549) (-621 (-2 (|:| -2119 (-1138 |#3|)) (|:| -1714 (-549)))))) (-15 -1380 ((-411 |#4|) |#4| |#2|)) (-15 -2767 ((-2 (|:| -2443 (-1138 |#4|)) (|:| |polval| (-1138 |#3|))) (-1138 |#4|) (-1138 |#3|) (-549))) (-15 -3389 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-621 (-2 (|:| -2119 (-1138 |#4|)) (|:| -1714 (-549)))))) (-1138 |#4|) (-621 |#2|) (-621 (-621 |#3|)))) (-15 -2243 ((-2 (|:| |upol| (-1138 |#3|)) (|:| |Lval| (-621 |#3|)) (|:| |Lfact| (-621 (-2 (|:| -2119 (-1138 |#3|)) (|:| -1714 (-549))))) (|:| |ctpol| |#3|)) (-1138 |#4|) (-621 |#2|) (-621 (-621 |#3|)))) (-15 -3550 (|#4| (-549) (-411 |#4|))) (-15 -1282 ((-112) (-621 (-2 (|:| -2119 (-1138 |#3|)) (|:| -1714 (-549)))) (-621 (-2 (|:| -2119 (-1138 |#3|)) (|:| -1714 (-549)))))) (-15 -2545 ((-3 (-621 (-1138 |#4|)) "failed") (-1138 |#4|) (-1138 |#3|) (-1138 |#3|) |#4| (-621 |#2|) (-621 (-747)) (-621 |#3|))) (-15 -3529 ((-621 (-747)) (-1138 |#4|) (-621 |#2|) (-747))) (-15 -2293 ((-1138 |#3|) (-1138 |#3|) (-549))))
+((-3764 (($ $ (-892)) 12)))
+(((-720 |#1| |#2|) (-10 -8 (-15 -3764 (|#1| |#1| (-892)))) (-721 |#2|) (-170)) (T -720))
+NIL
+(-10 -8 (-15 -3764 (|#1| |#1| (-892))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2039 (($ $ (-892)) 28)) (-3764 (($ $ (-892)) 33)) (-4304 (($ $ (-892)) 29)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3870 (($ $ $) 25)) (-3845 (((-834) $) 11)) (-3515 (($ $ $ $) 26)) (-3485 (($ $ $) 24)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 30)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
(((-721 |#1|) (-138) (-170)) (T -721))
-((-2943 (*1 *1 *1 *2) (-12 (-5 *2 (-892)) (-4 *1 (-721 *3)) (-4 *3 (-170)))))
-(-13 (-738) (-694 |t#1|) (-10 -8 (-15 -2943 ($ $ (-892)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-694 |#1|) . T) ((-697) . T) ((-738) . T) ((-1024 |#1|) . T) ((-1067) . T))
-((-2292 (((-1006) (-665 (-219)) (-549) (-112) (-549)) 25)) (-3589 (((-1006) (-665 (-219)) (-549) (-112) (-549)) 24)))
-(((-722) (-10 -7 (-15 -3589 ((-1006) (-665 (-219)) (-549) (-112) (-549))) (-15 -2292 ((-1006) (-665 (-219)) (-549) (-112) (-549))))) (T -722))
-((-2292 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-112)) (-5 *2 (-1006)) (-5 *1 (-722)))) (-3589 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-112)) (-5 *2 (-1006)) (-5 *1 (-722)))))
-(-10 -7 (-15 -3589 ((-1006) (-665 (-219)) (-549) (-112) (-549))) (-15 -2292 ((-1006) (-665 (-219)) (-549) (-112) (-549))))
-((-2061 (((-1006) (-549) (-549) (-549) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-73 FCN)))) 43)) (-3746 (((-1006) (-549) (-549) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-80 FCN)))) 39)) (-1837 (((-1006) (-219) (-219) (-219) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422)))) 32)))
-(((-723) (-10 -7 (-15 -1837 ((-1006) (-219) (-219) (-219) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422))))) (-15 -3746 ((-1006) (-549) (-549) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-80 FCN))))) (-15 -2061 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-73 FCN))))))) (T -723))
-((-2061 (*1 *2 *3 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-73 FCN)))) (-5 *2 (-1006)) (-5 *1 (-723)))) (-3746 (*1 *2 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-80 FCN)))) (-5 *2 (-1006)) (-5 *1 (-723)))) (-1837 (*1 *2 *3 *3 *3 *3 *4 *5) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422)))) (-5 *2 (-1006)) (-5 *1 (-723)))))
-(-10 -7 (-15 -1837 ((-1006) (-219) (-219) (-219) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422))))) (-15 -3746 ((-1006) (-549) (-549) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-80 FCN))))) (-15 -2061 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-73 FCN))))))
-((-3518 (((-1006) (-549) (-549) (-665 (-219)) (-549)) 34)) (-2666 (((-1006) (-549) (-549) (-665 (-219)) (-549)) 33)) (-1848 (((-1006) (-549) (-665 (-219)) (-549)) 32)) (-1810 (((-1006) (-549) (-665 (-219)) (-549)) 31)) (-2260 (((-1006) (-549) (-549) (-1125) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 30)) (-1989 (((-1006) (-549) (-549) (-1125) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 29)) (-2669 (((-1006) (-549) (-549) (-1125) (-665 (-219)) (-665 (-219)) (-549)) 28)) (-3400 (((-1006) (-549) (-549) (-1125) (-665 (-219)) (-665 (-219)) (-549)) 27)) (-3867 (((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549)) 24)) (-1281 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549)) 23)) (-1653 (((-1006) (-549) (-665 (-219)) (-549)) 22)) (-3929 (((-1006) (-549) (-665 (-219)) (-549)) 21)))
-(((-724) (-10 -7 (-15 -3929 ((-1006) (-549) (-665 (-219)) (-549))) (-15 -1653 ((-1006) (-549) (-665 (-219)) (-549))) (-15 -1281 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3867 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3400 ((-1006) (-549) (-549) (-1125) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2669 ((-1006) (-549) (-549) (-1125) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1989 ((-1006) (-549) (-549) (-1125) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2260 ((-1006) (-549) (-549) (-1125) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1810 ((-1006) (-549) (-665 (-219)) (-549))) (-15 -1848 ((-1006) (-549) (-665 (-219)) (-549))) (-15 -2666 ((-1006) (-549) (-549) (-665 (-219)) (-549))) (-15 -3518 ((-1006) (-549) (-549) (-665 (-219)) (-549))))) (T -724))
-((-3518 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-2666 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-1848 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-1810 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-2260 (*1 *2 *3 *3 *4 *5 *5 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-1125)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-1989 (*1 *2 *3 *3 *4 *5 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-1125)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-2669 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-1125)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-3400 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-1125)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-3867 (*1 *2 *3 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-1281 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-1653 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-3929 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))))
-(-10 -7 (-15 -3929 ((-1006) (-549) (-665 (-219)) (-549))) (-15 -1653 ((-1006) (-549) (-665 (-219)) (-549))) (-15 -1281 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3867 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3400 ((-1006) (-549) (-549) (-1125) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2669 ((-1006) (-549) (-549) (-1125) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1989 ((-1006) (-549) (-549) (-1125) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2260 ((-1006) (-549) (-549) (-1125) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1810 ((-1006) (-549) (-665 (-219)) (-549))) (-15 -1848 ((-1006) (-549) (-665 (-219)) (-549))) (-15 -2666 ((-1006) (-549) (-549) (-665 (-219)) (-549))) (-15 -3518 ((-1006) (-549) (-549) (-665 (-219)) (-549))))
-((-2676 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-219) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN)))) 52)) (-2991 (((-1006) (-665 (-219)) (-665 (-219)) (-549) (-549)) 51)) (-3413 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN)))) 50)) (-2463 (((-1006) (-219) (-219) (-549) (-549) (-549) (-549)) 46)) (-3584 (((-1006) (-219) (-219) (-549) (-219) (-549) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) 45)) (-4299 (((-1006) (-219) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) 44)) (-3823 (((-1006) (-219) (-219) (-219) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) 43)) (-2833 (((-1006) (-219) (-219) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) 42)) (-2215 (((-1006) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422)))) 38)) (-4265 (((-1006) (-219) (-219) (-549) (-665 (-219)) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422)))) 37)) (-1770 (((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422)))) 33)) (-3901 (((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422)))) 32)))
-(((-725) (-10 -7 (-15 -3901 ((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422))))) (-15 -1770 ((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422))))) (-15 -4265 ((-1006) (-219) (-219) (-549) (-665 (-219)) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422))))) (-15 -2215 ((-1006) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422))))) (-15 -2833 ((-1006) (-219) (-219) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G))))) (-15 -3823 ((-1006) (-219) (-219) (-219) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G))))) (-15 -4299 ((-1006) (-219) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G))))) (-15 -3584 ((-1006) (-219) (-219) (-549) (-219) (-549) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G))))) (-15 -2463 ((-1006) (-219) (-219) (-549) (-549) (-549) (-549))) (-15 -3413 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN))))) (-15 -2991 ((-1006) (-665 (-219)) (-665 (-219)) (-549) (-549))) (-15 -2676 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-219) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN))))))) (T -725))
-((-2676 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN)))) (-5 *2 (-1006)) (-5 *1 (-725)))) (-2991 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-725)))) (-3413 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN)))) (-5 *2 (-1006)) (-5 *1 (-725)))) (-2463 (*1 *2 *3 *3 *4 *4 *4 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-725)))) (-3584 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) (-5 *2 (-1006)) (-5 *1 (-725)))) (-4299 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) (-5 *2 (-1006)) (-5 *1 (-725)))) (-3823 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) (-5 *2 (-1006)) (-5 *1 (-725)))) (-2833 (*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) (-5 *2 (-1006)) (-5 *1 (-725)))) (-2215 (*1 *2 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422)))) (-5 *2 (-1006)) (-5 *1 (-725)))) (-4265 (*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6) (-12 (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422)))) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-725)))) (-1770 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422)))) (-5 *2 (-1006)) (-5 *1 (-725)))) (-3901 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422)))) (-5 *2 (-1006)) (-5 *1 (-725)))))
-(-10 -7 (-15 -3901 ((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422))))) (-15 -1770 ((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422))))) (-15 -4265 ((-1006) (-219) (-219) (-549) (-665 (-219)) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422))))) (-15 -2215 ((-1006) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422))))) (-15 -2833 ((-1006) (-219) (-219) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G))))) (-15 -3823 ((-1006) (-219) (-219) (-219) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G))))) (-15 -4299 ((-1006) (-219) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G))))) (-15 -3584 ((-1006) (-219) (-219) (-549) (-219) (-549) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G))))) (-15 -2463 ((-1006) (-219) (-219) (-549) (-549) (-549) (-549))) (-15 -3413 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN))))) (-15 -2991 ((-1006) (-665 (-219)) (-665 (-219)) (-549) (-549))) (-15 -2676 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-219) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN))))))
-((-1684 (((-1006) (-549) (-549) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-74 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-381)) (|:| |fp| (-75 G JACOBG JACGEP)))) 76)) (-1610 (((-1006) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL))) (-381) (-381)) 69) (((-1006) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL)))) 68)) (-4188 (((-1006) (-219) (-219) (-549) (-219) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-83 FCNF))) (-3 (|:| |fn| (-381)) (|:| |fp| (-84 FCNG)))) 57)) (-3609 (((-1006) (-665 (-219)) (-665 (-219)) (-549) (-219) (-219) (-219) (-549) (-549) (-549) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) 50)) (-3678 (((-1006) (-219) (-549) (-549) (-1125) (-549) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-70 PEDERV))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT)))) 49)) (-4205 (((-1006) (-219) (-549) (-549) (-219) (-1125) (-219) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT)))) 45)) (-3215 (((-1006) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) 42)) (-1510 (((-1006) (-219) (-549) (-549) (-549) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT)))) 38)))
-(((-726) (-10 -7 (-15 -1510 ((-1006) (-219) (-549) (-549) (-549) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))) (-15 -3215 ((-1006) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))))) (-15 -4205 ((-1006) (-219) (-549) (-549) (-219) (-1125) (-219) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))) (-15 -3678 ((-1006) (-219) (-549) (-549) (-1125) (-549) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-70 PEDERV))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))) (-15 -3609 ((-1006) (-665 (-219)) (-665 (-219)) (-549) (-219) (-219) (-219) (-549) (-549) (-549) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))))) (-15 -4188 ((-1006) (-219) (-219) (-549) (-219) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-83 FCNF))) (-3 (|:| |fn| (-381)) (|:| |fp| (-84 FCNG))))) (-15 -1610 ((-1006) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL))))) (-15 -1610 ((-1006) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL))) (-381) (-381))) (-15 -1684 ((-1006) (-549) (-549) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-74 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-381)) (|:| |fp| (-75 G JACOBG JACGEP))))))) (T -726))
-((-1684 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-74 FCN JACOBF JACEPS)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-75 G JACOBG JACGEP)))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))) (-1610 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-219)) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL)))) (-5 *8 (-381)) (-5 *2 (-1006)) (-5 *1 (-726)))) (-1610 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-219)) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL)))) (-5 *2 (-1006)) (-5 *1 (-726)))) (-4188 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7) (-12 (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-83 FCNF)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-84 FCNG)))) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))) (-3609 (*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-219)) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) (-5 *2 (-1006)) (-5 *1 (-726)))) (-3678 (*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10) (-12 (-5 *4 (-549)) (-5 *5 (-1125)) (-5 *6 (-665 (-219))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G)))) (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) (-5 *9 (-3 (|:| |fn| (-381)) (|:| |fp| (-70 PEDERV)))) (-5 *10 (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT)))) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))) (-4205 (*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9) (-12 (-5 *4 (-549)) (-5 *5 (-1125)) (-5 *6 (-665 (-219))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G)))) (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) (-5 *9 (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT)))) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))) (-3215 (*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))) (-1510 (*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT)))) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))))
-(-10 -7 (-15 -1510 ((-1006) (-219) (-549) (-549) (-549) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))) (-15 -3215 ((-1006) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))))) (-15 -4205 ((-1006) (-219) (-549) (-549) (-219) (-1125) (-219) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))) (-15 -3678 ((-1006) (-219) (-549) (-549) (-1125) (-549) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-70 PEDERV))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))) (-15 -3609 ((-1006) (-665 (-219)) (-665 (-219)) (-549) (-219) (-219) (-219) (-549) (-549) (-549) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))))) (-15 -4188 ((-1006) (-219) (-219) (-549) (-219) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-83 FCNF))) (-3 (|:| |fn| (-381)) (|:| |fp| (-84 FCNG))))) (-15 -1610 ((-1006) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL))))) (-15 -1610 ((-1006) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL))) (-381) (-381))) (-15 -1684 ((-1006) (-549) (-549) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-74 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-381)) (|:| |fp| (-75 G JACOBG JACGEP))))))
-((-2031 (((-1006) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-651 (-219)) (-549)) 45)) (-2164 (((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-1125) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-81 PDEF))) (-3 (|:| |fn| (-381)) (|:| |fp| (-82 BNDY)))) 41)) (-2062 (((-1006) (-549) (-549) (-549) (-549) (-219) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 23)))
-(((-727) (-10 -7 (-15 -2062 ((-1006) (-549) (-549) (-549) (-549) (-219) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2164 ((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-1125) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-81 PDEF))) (-3 (|:| |fn| (-381)) (|:| |fp| (-82 BNDY))))) (-15 -2031 ((-1006) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-651 (-219)) (-549))))) (T -727))
-((-2031 (*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 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-651 (-219))) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-727)))) (-2164 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-1125)) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-81 PDEF)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-82 BNDY)))) (-5 *2 (-1006)) (-5 *1 (-727)))) (-2062 (*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-727)))))
-(-10 -7 (-15 -2062 ((-1006) (-549) (-549) (-549) (-549) (-219) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2164 ((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-1125) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-81 PDEF))) (-3 (|:| |fn| (-381)) (|:| |fp| (-82 BNDY))))) (-15 -2031 ((-1006) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-651 (-219)) (-549))))
-((-1265 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-665 (-219)) (-219) (-219) (-549)) 35)) (-3685 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-219) (-219) (-549)) 34)) (-1860 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-665 (-219)) (-219) (-219) (-549)) 33)) (-1523 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 29)) (-3330 (((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 28)) (-1870 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549)) 27)) (-2315 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-549)) 24)) (-3773 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-549)) 23)) (-3957 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549)) 22)) (-3802 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549)) 21)))
-(((-728) (-10 -7 (-15 -3802 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549))) (-15 -3957 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3773 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-549))) (-15 -2315 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-549))) (-15 -1870 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549))) (-15 -3330 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1523 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1860 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-665 (-219)) (-219) (-219) (-549))) (-15 -3685 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-219) (-219) (-549))) (-15 -1265 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-665 (-219)) (-219) (-219) (-549))))) (T -728))
-((-1265 (*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *2 (-1006)) (-5 *1 (-728)))) (-3685 (*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *2 (-1006)) (-5 *1 (-728)))) (-1860 (*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3) (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *6 (-219)) (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-728)))) (-1523 (*1 *2 *3 *4 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-728)))) (-3330 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-728)))) (-1870 (*1 *2 *3 *4 *4 *4 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *2 (-1006)) (-5 *1 (-728)))) (-2315 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-728)))) (-3773 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-728)))) (-3957 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-728)))) (-3802 (*1 *2 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-728)))))
-(-10 -7 (-15 -3802 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549))) (-15 -3957 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3773 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-549))) (-15 -2315 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-549))) (-15 -1870 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549))) (-15 -3330 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1523 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1860 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-665 (-219)) (-219) (-219) (-549))) (-15 -3685 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-219) (-219) (-549))) (-15 -1265 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-665 (-219)) (-219) (-219) (-549))))
-((-3832 (((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549)) 45)) (-3171 (((-1006) (-549) (-549) (-549) (-219) (-665 (-219)) (-665 (-219)) (-549)) 44)) (-2437 (((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549)) 43)) (-1833 (((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 42)) (-3793 (((-1006) (-1125) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549)) 41)) (-3824 (((-1006) (-1125) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549)) 40)) (-3593 (((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549) (-549) (-549) (-219) (-665 (-219)) (-549)) 39)) (-3713 (((-1006) (-1125) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-549))) 38)) (-1932 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549)) 35)) (-4047 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549)) 34)) (-3132 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549)) 33)) (-1901 (((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 32)) (-2983 (((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-219) (-549)) 31)) (-2487 (((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-549)) 30)) (-1462 (((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-549) (-549) (-549)) 29)) (-4128 (((-1006) (-549) (-549) (-549) (-219) (-219) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549) (-665 (-549)) (-549) (-549) (-549)) 28)) (-2879 (((-1006) (-549) (-665 (-219)) (-219) (-549)) 24)) (-3732 (((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 21)))
-(((-729) (-10 -7 (-15 -3732 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2879 ((-1006) (-549) (-665 (-219)) (-219) (-549))) (-15 -4128 ((-1006) (-549) (-549) (-549) (-219) (-219) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549) (-665 (-549)) (-549) (-549) (-549))) (-15 -1462 ((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-549) (-549) (-549))) (-15 -2487 ((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-549))) (-15 -2983 ((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-219) (-549))) (-15 -1901 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3132 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549))) (-15 -4047 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549))) (-15 -1932 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3713 ((-1006) (-1125) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-549)))) (-15 -3593 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549) (-549) (-549) (-219) (-665 (-219)) (-549))) (-15 -3824 ((-1006) (-1125) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549))) (-15 -3793 ((-1006) (-1125) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1833 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2437 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549))) (-15 -3171 ((-1006) (-549) (-549) (-549) (-219) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3832 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549))))) (T -729))
-((-3832 (*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-729)))) (-3171 (*1 *2 *3 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-2437 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-729)))) (-1833 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-729)))) (-3793 (*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4) (-12 (-5 *3 (-1125)) (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-3824 (*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4) (-12 (-5 *3 (-1125)) (-5 *5 (-665 (-219))) (-5 *6 (-219)) (-5 *7 (-665 (-549))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-3593 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3) (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *6 (-219)) (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-3713 (*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7) (-12 (-5 *3 (-1125)) (-5 *5 (-665 (-219))) (-5 *6 (-219)) (-5 *7 (-665 (-549))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-1932 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-729)))) (-4047 (*1 *2 *3 *4 *4 *5 *3 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-3132 (*1 *2 *3 *4 *4 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-1901 (*1 *2 *3 *3 *4 *4 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-729)))) (-2983 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-2487 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-1462 (*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-4128 (*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3) (-12 (-5 *5 (-665 (-219))) (-5 *6 (-665 (-549))) (-5 *3 (-549)) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-2879 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-3732 (*1 *2 *3 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-729)))))
-(-10 -7 (-15 -3732 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2879 ((-1006) (-549) (-665 (-219)) (-219) (-549))) (-15 -4128 ((-1006) (-549) (-549) (-549) (-219) (-219) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549) (-665 (-549)) (-549) (-549) (-549))) (-15 -1462 ((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-549) (-549) (-549))) (-15 -2487 ((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-549))) (-15 -2983 ((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-219) (-549))) (-15 -1901 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3132 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549))) (-15 -4047 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549))) (-15 -1932 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3713 ((-1006) (-1125) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-549)))) (-15 -3593 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549) (-549) (-549) (-219) (-665 (-219)) (-549))) (-15 -3824 ((-1006) (-1125) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549))) (-15 -3793 ((-1006) (-1125) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1833 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2437 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549))) (-15 -3171 ((-1006) (-549) (-549) (-549) (-219) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3832 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549))))
-((-3605 (((-1006) (-549) (-549) (-549) (-219) (-665 (-219)) (-549) (-665 (-219)) (-549)) 63)) (-2622 (((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-112) (-219) (-549) (-219) (-219) (-112) (-219) (-219) (-219) (-219) (-112) (-549) (-549) (-549) (-549) (-549) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-549)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-79 CONFUN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN)))) 62)) (-2332 (((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-219) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-112) (-112) (-112) (-549) (-549) (-665 (-219)) (-665 (-549)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-64 QPHESS)))) 58)) (-2547 (((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-112) (-549) (-549) (-665 (-219)) (-549)) 51)) (-1928 (((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-65 FUNCT1)))) 50)) (-2344 (((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-62 LSFUN2)))) 46)) (-1574 (((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-78 LSFUN1)))) 42)) (-3122 (((-1006) (-549) (-219) (-219) (-549) (-219) (-112) (-219) (-219) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN)))) 38)))
-(((-730) (-10 -7 (-15 -3122 ((-1006) (-549) (-219) (-219) (-549) (-219) (-112) (-219) (-219) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN))))) (-15 -1574 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-78 LSFUN1))))) (-15 -2344 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-62 LSFUN2))))) (-15 -1928 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-65 FUNCT1))))) (-15 -2547 ((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-112) (-549) (-549) (-665 (-219)) (-549))) (-15 -2332 ((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-219) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-112) (-112) (-112) (-549) (-549) (-665 (-219)) (-665 (-549)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-64 QPHESS))))) (-15 -2622 ((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-112) (-219) (-549) (-219) (-219) (-112) (-219) (-219) (-219) (-219) (-112) (-549) (-549) (-549) (-549) (-549) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-549)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-79 CONFUN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN))))) (-15 -3605 ((-1006) (-549) (-549) (-549) (-219) (-665 (-219)) (-549) (-665 (-219)) (-549))))) (T -730))
-((-3605 (*1 *2 *3 *3 *3 *4 *5 *3 *5 *3) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-730)))) (-2622 (*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 (-665 (-219))) (-5 *5 (-112)) (-5 *6 (-219)) (-5 *7 (-665 (-549))) (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-79 CONFUN)))) (-5 *9 (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN)))) (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-730)))) (-2332 (*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 (-665 (-219))) (-5 *6 (-112)) (-5 *7 (-665 (-549))) (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-64 QPHESS)))) (-5 *3 (-549)) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-730)))) (-2547 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-112)) (-5 *2 (-1006)) (-5 *1 (-730)))) (-1928 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-65 FUNCT1)))) (-5 *2 (-1006)) (-5 *1 (-730)))) (-2344 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-62 LSFUN2)))) (-5 *2 (-1006)) (-5 *1 (-730)))) (-1574 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-78 LSFUN1)))) (-5 *2 (-1006)) (-5 *1 (-730)))) (-3122 (*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7) (-12 (-5 *3 (-549)) (-5 *5 (-112)) (-5 *6 (-665 (-219))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN)))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-730)))))
-(-10 -7 (-15 -3122 ((-1006) (-549) (-219) (-219) (-549) (-219) (-112) (-219) (-219) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN))))) (-15 -1574 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-78 LSFUN1))))) (-15 -2344 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-62 LSFUN2))))) (-15 -1928 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-65 FUNCT1))))) (-15 -2547 ((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-112) (-549) (-549) (-665 (-219)) (-549))) (-15 -2332 ((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-219) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-112) (-112) (-112) (-549) (-549) (-665 (-219)) (-665 (-549)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-64 QPHESS))))) (-15 -2622 ((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-112) (-219) (-549) (-219) (-219) (-112) (-219) (-219) (-219) (-219) (-112) (-549) (-549) (-549) (-549) (-549) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-549)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-79 CONFUN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN))))) (-15 -3605 ((-1006) (-549) (-549) (-549) (-219) (-665 (-219)) (-549) (-665 (-219)) (-549))))
-((-2080 (((-1006) (-1125) (-549) (-549) (-549) (-549) (-665 (-167 (-219))) (-665 (-167 (-219))) (-549)) 47)) (-3454 (((-1006) (-1125) (-1125) (-549) (-549) (-665 (-167 (-219))) (-549) (-665 (-167 (-219))) (-549) (-549) (-665 (-167 (-219))) (-549)) 46)) (-1943 (((-1006) (-549) (-549) (-549) (-665 (-167 (-219))) (-549)) 45)) (-2822 (((-1006) (-1125) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549)) 40)) (-4054 (((-1006) (-1125) (-1125) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-665 (-219)) (-549)) 39)) (-4077 (((-1006) (-549) (-549) (-549) (-665 (-219)) (-549)) 36)) (-1701 (((-1006) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549)) 35)) (-3432 (((-1006) (-549) (-549) (-549) (-549) (-621 (-112)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-219) (-219) (-549)) 34)) (-3444 (((-1006) (-549) (-549) (-549) (-665 (-549)) (-665 (-549)) (-665 (-549)) (-665 (-549)) (-112) (-219) (-112) (-665 (-549)) (-665 (-219)) (-549)) 33)) (-1647 (((-1006) (-549) (-549) (-549) (-549) (-219) (-112) (-112) (-621 (-112)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-549)) 32)))
-(((-731) (-10 -7 (-15 -1647 ((-1006) (-549) (-549) (-549) (-549) (-219) (-112) (-112) (-621 (-112)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-549))) (-15 -3444 ((-1006) (-549) (-549) (-549) (-665 (-549)) (-665 (-549)) (-665 (-549)) (-665 (-549)) (-112) (-219) (-112) (-665 (-549)) (-665 (-219)) (-549))) (-15 -3432 ((-1006) (-549) (-549) (-549) (-549) (-621 (-112)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-219) (-219) (-549))) (-15 -1701 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549))) (-15 -4077 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-549))) (-15 -4054 ((-1006) (-1125) (-1125) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-665 (-219)) (-549))) (-15 -2822 ((-1006) (-1125) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1943 ((-1006) (-549) (-549) (-549) (-665 (-167 (-219))) (-549))) (-15 -3454 ((-1006) (-1125) (-1125) (-549) (-549) (-665 (-167 (-219))) (-549) (-665 (-167 (-219))) (-549) (-549) (-665 (-167 (-219))) (-549))) (-15 -2080 ((-1006) (-1125) (-549) (-549) (-549) (-549) (-665 (-167 (-219))) (-665 (-167 (-219))) (-549))))) (T -731))
-((-2080 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1125)) (-5 *4 (-549)) (-5 *5 (-665 (-167 (-219)))) (-5 *2 (-1006)) (-5 *1 (-731)))) (-3454 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1125)) (-5 *4 (-549)) (-5 *5 (-665 (-167 (-219)))) (-5 *2 (-1006)) (-5 *1 (-731)))) (-1943 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-167 (-219)))) (-5 *2 (-1006)) (-5 *1 (-731)))) (-2822 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1125)) (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-731)))) (-4054 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1125)) (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-731)))) (-4077 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-731)))) (-1701 (*1 *2 *3 *4 *3 *5 *3) (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-731)))) (-3432 (*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3) (-12 (-5 *4 (-621 (-112))) (-5 *5 (-665 (-219))) (-5 *6 (-665 (-549))) (-5 *7 (-219)) (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-731)))) (-3444 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3) (-12 (-5 *4 (-665 (-549))) (-5 *5 (-112)) (-5 *7 (-665 (-219))) (-5 *3 (-549)) (-5 *6 (-219)) (-5 *2 (-1006)) (-5 *1 (-731)))) (-1647 (*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3) (-12 (-5 *6 (-621 (-112))) (-5 *7 (-665 (-219))) (-5 *8 (-665 (-549))) (-5 *3 (-549)) (-5 *4 (-219)) (-5 *5 (-112)) (-5 *2 (-1006)) (-5 *1 (-731)))))
-(-10 -7 (-15 -1647 ((-1006) (-549) (-549) (-549) (-549) (-219) (-112) (-112) (-621 (-112)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-549))) (-15 -3444 ((-1006) (-549) (-549) (-549) (-665 (-549)) (-665 (-549)) (-665 (-549)) (-665 (-549)) (-112) (-219) (-112) (-665 (-549)) (-665 (-219)) (-549))) (-15 -3432 ((-1006) (-549) (-549) (-549) (-549) (-621 (-112)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-219) (-219) (-549))) (-15 -1701 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549))) (-15 -4077 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-549))) (-15 -4054 ((-1006) (-1125) (-1125) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-665 (-219)) (-549))) (-15 -2822 ((-1006) (-1125) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1943 ((-1006) (-549) (-549) (-549) (-665 (-167 (-219))) (-549))) (-15 -3454 ((-1006) (-1125) (-1125) (-549) (-549) (-665 (-167 (-219))) (-549) (-665 (-167 (-219))) (-549) (-549) (-665 (-167 (-219))) (-549))) (-15 -2080 ((-1006) (-1125) (-549) (-549) (-549) (-549) (-665 (-167 (-219))) (-665 (-167 (-219))) (-549))))
-((-2949 (((-1006) (-549) (-549) (-549) (-549) (-549) (-112) (-549) (-112) (-549) (-665 (-167 (-219))) (-665 (-167 (-219))) (-549)) 65)) (-2417 (((-1006) (-549) (-549) (-549) (-549) (-549) (-112) (-549) (-112) (-549) (-665 (-219)) (-665 (-219)) (-549)) 60)) (-1614 (((-1006) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT))) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE))) (-381)) 56) (((-1006) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT))) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE)))) 55)) (-3544 (((-1006) (-549) (-549) (-549) (-219) (-112) (-549) (-665 (-219)) (-665 (-219)) (-549)) 37)) (-1415 (((-1006) (-549) (-549) (-219) (-219) (-549) (-549) (-665 (-219)) (-549)) 33)) (-1799 (((-1006) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-549) (-549) (-549)) 30)) (-1597 (((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549)) 29)) (-1862 (((-1006) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549)) 28)) (-4172 (((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549)) 27)) (-1603 (((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549)) 26)) (-3652 (((-1006) (-549) (-549) (-665 (-219)) (-549)) 25)) (-1720 (((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549)) 24)) (-3175 (((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549)) 23)) (-2358 (((-1006) (-665 (-219)) (-549) (-549) (-549) (-549)) 22)) (-1386 (((-1006) (-549) (-549) (-665 (-219)) (-549)) 21)))
-(((-732) (-10 -7 (-15 -1386 ((-1006) (-549) (-549) (-665 (-219)) (-549))) (-15 -2358 ((-1006) (-665 (-219)) (-549) (-549) (-549) (-549))) (-15 -3175 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1720 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3652 ((-1006) (-549) (-549) (-665 (-219)) (-549))) (-15 -1603 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549))) (-15 -4172 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1862 ((-1006) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1597 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1799 ((-1006) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-549) (-549) (-549))) (-15 -1415 ((-1006) (-549) (-549) (-219) (-219) (-549) (-549) (-665 (-219)) (-549))) (-15 -3544 ((-1006) (-549) (-549) (-549) (-219) (-112) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1614 ((-1006) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT))) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE))))) (-15 -1614 ((-1006) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT))) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE))) (-381))) (-15 -2417 ((-1006) (-549) (-549) (-549) (-549) (-549) (-112) (-549) (-112) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2949 ((-1006) (-549) (-549) (-549) (-549) (-549) (-112) (-549) (-112) (-549) (-665 (-167 (-219))) (-665 (-167 (-219))) (-549))))) (T -732))
-((-2949 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-112)) (-5 *5 (-665 (-167 (-219)))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-2417 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-112)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-1614 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE)))) (-5 *8 (-381)) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-732)))) (-1614 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE)))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-732)))) (-3544 (*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3) (-12 (-5 *3 (-549)) (-5 *5 (-112)) (-5 *6 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-732)))) (-1415 (*1 *2 *3 *3 *4 *4 *3 *3 *5 *3) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-732)))) (-1799 (*1 *2 *3 *4 *3 *4 *4 *4 *4 *4) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-732)))) (-1597 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-1862 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-4172 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-1603 (*1 *2 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-3652 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-1720 (*1 *2 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-3175 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-2358 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-732)))) (-1386 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))))
-(-10 -7 (-15 -1386 ((-1006) (-549) (-549) (-665 (-219)) (-549))) (-15 -2358 ((-1006) (-665 (-219)) (-549) (-549) (-549) (-549))) (-15 -3175 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1720 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3652 ((-1006) (-549) (-549) (-665 (-219)) (-549))) (-15 -1603 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549))) (-15 -4172 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1862 ((-1006) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1597 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1799 ((-1006) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-549) (-549) (-549))) (-15 -1415 ((-1006) (-549) (-549) (-219) (-219) (-549) (-549) (-665 (-219)) (-549))) (-15 -3544 ((-1006) (-549) (-549) (-549) (-219) (-112) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1614 ((-1006) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT))) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE))))) (-15 -1614 ((-1006) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT))) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE))) (-381))) (-15 -2417 ((-1006) (-549) (-549) (-549) (-549) (-549) (-112) (-549) (-112) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2949 ((-1006) (-549) (-549) (-549) (-549) (-549) (-112) (-549) (-112) (-549) (-665 (-167 (-219))) (-665 (-167 (-219))) (-549))))
-((-3936 (((-1006) (-549) (-549) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-69 APROD)))) 61)) (-2591 (((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-549)) (-549) (-665 (-219)) (-549) (-549) (-549) (-549)) 57)) (-3931 (((-1006) (-549) (-665 (-219)) (-112) (-219) (-549) (-549) (-549) (-549) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 APROD))) (-3 (|:| |fn| (-381)) (|:| |fp| (-72 MSOLVE)))) 56)) (-1704 (((-1006) (-549) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549) (-665 (-549)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549)) 37)) (-4102 (((-1006) (-549) (-549) (-549) (-219) (-549) (-665 (-219)) (-665 (-219)) (-549)) 36)) (-3124 (((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 33)) (-2988 (((-1006) (-549) (-665 (-219)) (-549) (-665 (-549)) (-665 (-549)) (-549) (-665 (-549)) (-665 (-219))) 32)) (-4281 (((-1006) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-549)) 28)) (-3335 (((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549)) 27)) (-4079 (((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549)) 26)) (-3168 (((-1006) (-549) (-665 (-167 (-219))) (-549) (-549) (-549) (-549) (-665 (-167 (-219))) (-549)) 22)))
-(((-733) (-10 -7 (-15 -3168 ((-1006) (-549) (-665 (-167 (-219))) (-549) (-549) (-549) (-549) (-665 (-167 (-219))) (-549))) (-15 -4079 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549))) (-15 -3335 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549))) (-15 -4281 ((-1006) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-549))) (-15 -2988 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-549)) (-665 (-549)) (-549) (-665 (-549)) (-665 (-219)))) (-15 -3124 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -4102 ((-1006) (-549) (-549) (-549) (-219) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1704 ((-1006) (-549) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549) (-665 (-549)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549))) (-15 -3931 ((-1006) (-549) (-665 (-219)) (-112) (-219) (-549) (-549) (-549) (-549) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 APROD))) (-3 (|:| |fn| (-381)) (|:| |fp| (-72 MSOLVE))))) (-15 -2591 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-549)) (-549) (-665 (-219)) (-549) (-549) (-549) (-549))) (-15 -3936 ((-1006) (-549) (-549) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-69 APROD))))))) (T -733))
-((-3936 (*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-69 APROD)))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-733)))) (-2591 (*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3) (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-733)))) (-3931 (*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-112)) (-5 *6 (-219)) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-67 APROD)))) (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-72 MSOLVE)))) (-5 *2 (-1006)) (-5 *1 (-733)))) (-1704 (*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3) (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-733)))) (-4102 (*1 *2 *3 *3 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-733)))) (-3124 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-733)))) (-2988 (*1 *2 *3 *4 *3 *5 *5 *3 *5 *4) (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-733)))) (-4281 (*1 *2 *3 *4 *3 *4 *4 *4) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-733)))) (-3335 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-733)))) (-4079 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-733)))) (-3168 (*1 *2 *3 *4 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-167 (-219)))) (-5 *2 (-1006)) (-5 *1 (-733)))))
-(-10 -7 (-15 -3168 ((-1006) (-549) (-665 (-167 (-219))) (-549) (-549) (-549) (-549) (-665 (-167 (-219))) (-549))) (-15 -4079 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549))) (-15 -3335 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549))) (-15 -4281 ((-1006) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-549))) (-15 -2988 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-549)) (-665 (-549)) (-549) (-665 (-549)) (-665 (-219)))) (-15 -3124 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -4102 ((-1006) (-549) (-549) (-549) (-219) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1704 ((-1006) (-549) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549) (-665 (-549)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549))) (-15 -3931 ((-1006) (-549) (-665 (-219)) (-112) (-219) (-549) (-549) (-549) (-549) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 APROD))) (-3 (|:| |fn| (-381)) (|:| |fp| (-72 MSOLVE))))) (-15 -2591 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-549)) (-549) (-665 (-219)) (-549) (-549) (-549) (-549))) (-15 -3936 ((-1006) (-549) (-549) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-69 APROD))))))
-((-2245 (((-1006) (-1125) (-549) (-549) (-665 (-219)) (-549) (-549) (-665 (-219))) 29)) (-3635 (((-1006) (-1125) (-549) (-549) (-665 (-219))) 28)) (-3572 (((-1006) (-1125) (-549) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549) (-665 (-219))) 27)) (-2488 (((-1006) (-549) (-549) (-549) (-665 (-219))) 21)))
-(((-734) (-10 -7 (-15 -2488 ((-1006) (-549) (-549) (-549) (-665 (-219)))) (-15 -3572 ((-1006) (-1125) (-549) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549) (-665 (-219)))) (-15 -3635 ((-1006) (-1125) (-549) (-549) (-665 (-219)))) (-15 -2245 ((-1006) (-1125) (-549) (-549) (-665 (-219)) (-549) (-549) (-665 (-219)))))) (T -734))
-((-2245 (*1 *2 *3 *4 *4 *5 *4 *4 *5) (-12 (-5 *3 (-1125)) (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-734)))) (-3635 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1125)) (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-734)))) (-3572 (*1 *2 *3 *4 *4 *5 *4 *6 *4 *5) (-12 (-5 *3 (-1125)) (-5 *5 (-665 (-219))) (-5 *6 (-665 (-549))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-734)))) (-2488 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-734)))))
-(-10 -7 (-15 -2488 ((-1006) (-549) (-549) (-549) (-665 (-219)))) (-15 -3572 ((-1006) (-1125) (-549) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549) (-665 (-219)))) (-15 -3635 ((-1006) (-1125) (-549) (-549) (-665 (-219)))) (-15 -2245 ((-1006) (-1125) (-549) (-549) (-665 (-219)) (-549) (-549) (-665 (-219)))))
-((-4035 (((-1006) (-219) (-219) (-219) (-219) (-549)) 62)) (-2726 (((-1006) (-219) (-219) (-219) (-549)) 61)) (-3442 (((-1006) (-219) (-219) (-219) (-549)) 60)) (-3878 (((-1006) (-219) (-219) (-549)) 59)) (-1961 (((-1006) (-219) (-549)) 58)) (-2181 (((-1006) (-219) (-549)) 57)) (-1828 (((-1006) (-219) (-549)) 56)) (-1352 (((-1006) (-219) (-549)) 55)) (-1581 (((-1006) (-219) (-549)) 54)) (-3607 (((-1006) (-219) (-549)) 53)) (-3778 (((-1006) (-219) (-167 (-219)) (-549) (-1125) (-549)) 52)) (-1380 (((-1006) (-219) (-167 (-219)) (-549) (-1125) (-549)) 51)) (-2039 (((-1006) (-219) (-549)) 50)) (-2921 (((-1006) (-219) (-549)) 49)) (-2657 (((-1006) (-219) (-549)) 48)) (-3766 (((-1006) (-219) (-549)) 47)) (-2011 (((-1006) (-549) (-219) (-167 (-219)) (-549) (-1125) (-549)) 46)) (-2025 (((-1006) (-1125) (-167 (-219)) (-1125) (-549)) 45)) (-4121 (((-1006) (-1125) (-167 (-219)) (-1125) (-549)) 44)) (-3068 (((-1006) (-219) (-167 (-219)) (-549) (-1125) (-549)) 43)) (-2909 (((-1006) (-219) (-167 (-219)) (-549) (-1125) (-549)) 42)) (-2177 (((-1006) (-219) (-549)) 39)) (-3982 (((-1006) (-219) (-549)) 38)) (-1911 (((-1006) (-219) (-549)) 37)) (-4258 (((-1006) (-219) (-549)) 36)) (-1315 (((-1006) (-219) (-549)) 35)) (-1986 (((-1006) (-219) (-549)) 34)) (-2594 (((-1006) (-219) (-549)) 33)) (-3792 (((-1006) (-219) (-549)) 32)) (-1366 (((-1006) (-219) (-549)) 31)) (-3298 (((-1006) (-219) (-549)) 30)) (-3382 (((-1006) (-219) (-219) (-219) (-549)) 29)) (-2501 (((-1006) (-219) (-549)) 28)) (-3711 (((-1006) (-219) (-549)) 27)) (-4189 (((-1006) (-219) (-549)) 26)) (-3050 (((-1006) (-219) (-549)) 25)) (-1740 (((-1006) (-219) (-549)) 24)) (-2119 (((-1006) (-167 (-219)) (-549)) 21)))
-(((-735) (-10 -7 (-15 -2119 ((-1006) (-167 (-219)) (-549))) (-15 -1740 ((-1006) (-219) (-549))) (-15 -3050 ((-1006) (-219) (-549))) (-15 -4189 ((-1006) (-219) (-549))) (-15 -3711 ((-1006) (-219) (-549))) (-15 -2501 ((-1006) (-219) (-549))) (-15 -3382 ((-1006) (-219) (-219) (-219) (-549))) (-15 -3298 ((-1006) (-219) (-549))) (-15 -1366 ((-1006) (-219) (-549))) (-15 -3792 ((-1006) (-219) (-549))) (-15 -2594 ((-1006) (-219) (-549))) (-15 -1986 ((-1006) (-219) (-549))) (-15 -1315 ((-1006) (-219) (-549))) (-15 -4258 ((-1006) (-219) (-549))) (-15 -1911 ((-1006) (-219) (-549))) (-15 -3982 ((-1006) (-219) (-549))) (-15 -2177 ((-1006) (-219) (-549))) (-15 -2909 ((-1006) (-219) (-167 (-219)) (-549) (-1125) (-549))) (-15 -3068 ((-1006) (-219) (-167 (-219)) (-549) (-1125) (-549))) (-15 -4121 ((-1006) (-1125) (-167 (-219)) (-1125) (-549))) (-15 -2025 ((-1006) (-1125) (-167 (-219)) (-1125) (-549))) (-15 -2011 ((-1006) (-549) (-219) (-167 (-219)) (-549) (-1125) (-549))) (-15 -3766 ((-1006) (-219) (-549))) (-15 -2657 ((-1006) (-219) (-549))) (-15 -2921 ((-1006) (-219) (-549))) (-15 -2039 ((-1006) (-219) (-549))) (-15 -1380 ((-1006) (-219) (-167 (-219)) (-549) (-1125) (-549))) (-15 -3778 ((-1006) (-219) (-167 (-219)) (-549) (-1125) (-549))) (-15 -3607 ((-1006) (-219) (-549))) (-15 -1581 ((-1006) (-219) (-549))) (-15 -1352 ((-1006) (-219) (-549))) (-15 -1828 ((-1006) (-219) (-549))) (-15 -2181 ((-1006) (-219) (-549))) (-15 -1961 ((-1006) (-219) (-549))) (-15 -3878 ((-1006) (-219) (-219) (-549))) (-15 -3442 ((-1006) (-219) (-219) (-219) (-549))) (-15 -2726 ((-1006) (-219) (-219) (-219) (-549))) (-15 -4035 ((-1006) (-219) (-219) (-219) (-219) (-549))))) (T -735))
-((-4035 (*1 *2 *3 *3 *3 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2726 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3442 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3878 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1961 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2181 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1828 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1352 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1581 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3607 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3778 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *6 (-1125)) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1380 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *6 (-1125)) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2039 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2921 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2657 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3766 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2011 (*1 *2 *3 *4 *5 *3 *6 *3) (-12 (-5 *3 (-549)) (-5 *5 (-167 (-219))) (-5 *6 (-1125)) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2025 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1125)) (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-4121 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1125)) (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3068 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *6 (-1125)) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2909 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *6 (-1125)) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2177 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3982 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1911 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-4258 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1315 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1986 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2594 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3792 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1366 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3298 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3382 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2501 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3711 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-4189 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3050 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1740 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2119 (*1 *2 *3 *4) (-12 (-5 *3 (-167 (-219))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(-10 -7 (-15 -2119 ((-1006) (-167 (-219)) (-549))) (-15 -1740 ((-1006) (-219) (-549))) (-15 -3050 ((-1006) (-219) (-549))) (-15 -4189 ((-1006) (-219) (-549))) (-15 -3711 ((-1006) (-219) (-549))) (-15 -2501 ((-1006) (-219) (-549))) (-15 -3382 ((-1006) (-219) (-219) (-219) (-549))) (-15 -3298 ((-1006) (-219) (-549))) (-15 -1366 ((-1006) (-219) (-549))) (-15 -3792 ((-1006) (-219) (-549))) (-15 -2594 ((-1006) (-219) (-549))) (-15 -1986 ((-1006) (-219) (-549))) (-15 -1315 ((-1006) (-219) (-549))) (-15 -4258 ((-1006) (-219) (-549))) (-15 -1911 ((-1006) (-219) (-549))) (-15 -3982 ((-1006) (-219) (-549))) (-15 -2177 ((-1006) (-219) (-549))) (-15 -2909 ((-1006) (-219) (-167 (-219)) (-549) (-1125) (-549))) (-15 -3068 ((-1006) (-219) (-167 (-219)) (-549) (-1125) (-549))) (-15 -4121 ((-1006) (-1125) (-167 (-219)) (-1125) (-549))) (-15 -2025 ((-1006) (-1125) (-167 (-219)) (-1125) (-549))) (-15 -2011 ((-1006) (-549) (-219) (-167 (-219)) (-549) (-1125) (-549))) (-15 -3766 ((-1006) (-219) (-549))) (-15 -2657 ((-1006) (-219) (-549))) (-15 -2921 ((-1006) (-219) (-549))) (-15 -2039 ((-1006) (-219) (-549))) (-15 -1380 ((-1006) (-219) (-167 (-219)) (-549) (-1125) (-549))) (-15 -3778 ((-1006) (-219) (-167 (-219)) (-549) (-1125) (-549))) (-15 -3607 ((-1006) (-219) (-549))) (-15 -1581 ((-1006) (-219) (-549))) (-15 -1352 ((-1006) (-219) (-549))) (-15 -1828 ((-1006) (-219) (-549))) (-15 -2181 ((-1006) (-219) (-549))) (-15 -1961 ((-1006) (-219) (-549))) (-15 -3878 ((-1006) (-219) (-219) (-549))) (-15 -3442 ((-1006) (-219) (-219) (-219) (-549))) (-15 -2726 ((-1006) (-219) (-219) (-219) (-549))) (-15 -4035 ((-1006) (-219) (-219) (-219) (-219) (-549))))
-((-3927 (((-1231)) 18)) (-4213 (((-1125)) 22)) (-1400 (((-1125)) 21)) (-3342 (((-1071) (-1143) (-665 (-549))) 37) (((-1071) (-1143) (-665 (-219))) 32)) (-3563 (((-112)) 16)) (-1327 (((-1125) (-1125)) 25)))
-(((-736) (-10 -7 (-15 -1400 ((-1125))) (-15 -4213 ((-1125))) (-15 -1327 ((-1125) (-1125))) (-15 -3342 ((-1071) (-1143) (-665 (-219)))) (-15 -3342 ((-1071) (-1143) (-665 (-549)))) (-15 -3563 ((-112))) (-15 -3927 ((-1231))))) (T -736))
-((-3927 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-736)))) (-3563 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-736)))) (-3342 (*1 *2 *3 *4) (-12 (-5 *3 (-1143)) (-5 *4 (-665 (-549))) (-5 *2 (-1071)) (-5 *1 (-736)))) (-3342 (*1 *2 *3 *4) (-12 (-5 *3 (-1143)) (-5 *4 (-665 (-219))) (-5 *2 (-1071)) (-5 *1 (-736)))) (-1327 (*1 *2 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-736)))) (-4213 (*1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-736)))) (-1400 (*1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-736)))))
-(-10 -7 (-15 -1400 ((-1125))) (-15 -4213 ((-1125))) (-15 -1327 ((-1125) (-1125))) (-15 -3342 ((-1071) (-1143) (-665 (-219)))) (-15 -3342 ((-1071) (-1143) (-665 (-549)))) (-15 -3563 ((-112))) (-15 -3927 ((-1231))))
-((-3293 (($ $ $) 10)) (-4272 (($ $ $ $) 9)) (-2174 (($ $ $) 12)))
-(((-737 |#1|) (-10 -8 (-15 -2174 (|#1| |#1| |#1|)) (-15 -3293 (|#1| |#1| |#1|)) (-15 -4272 (|#1| |#1| |#1| |#1|))) (-738)) (T -737))
-NIL
-(-10 -8 (-15 -2174 (|#1| |#1| |#1|)) (-15 -3293 (|#1| |#1| |#1|)) (-15 -4272 (|#1| |#1| |#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-3117 (($ $ (-892)) 28)) (-2884 (($ $ (-892)) 29)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3293 (($ $ $) 25)) (-3846 (((-834) $) 11)) (-4272 (($ $ $ $) 26)) (-2174 (($ $ $) 24)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 30)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 27)))
+((-3764 (*1 *1 *1 *2) (-12 (-5 *2 (-892)) (-4 *1 (-721 *3)) (-4 *3 (-170)))))
+(-13 (-738) (-694 |t#1|) (-10 -8 (-15 -3764 ($ $ (-892)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-694 |#1|) . T) ((-697) . T) ((-738) . T) ((-1024 |#1|) . T) ((-1066) . T))
+((-1774 (((-1006) (-665 (-219)) (-549) (-112) (-549)) 25)) (-4052 (((-1006) (-665 (-219)) (-549) (-112) (-549)) 24)))
+(((-722) (-10 -7 (-15 -4052 ((-1006) (-665 (-219)) (-549) (-112) (-549))) (-15 -1774 ((-1006) (-665 (-219)) (-549) (-112) (-549))))) (T -722))
+((-1774 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-112)) (-5 *2 (-1006)) (-5 *1 (-722)))) (-4052 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-112)) (-5 *2 (-1006)) (-5 *1 (-722)))))
+(-10 -7 (-15 -4052 ((-1006) (-665 (-219)) (-549) (-112) (-549))) (-15 -1774 ((-1006) (-665 (-219)) (-549) (-112) (-549))))
+((-1322 (((-1006) (-549) (-549) (-549) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-73 FCN)))) 43)) (-3540 (((-1006) (-549) (-549) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-80 FCN)))) 39)) (-4290 (((-1006) (-219) (-219) (-219) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421)))) 32)))
+(((-723) (-10 -7 (-15 -4290 ((-1006) (-219) (-219) (-219) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421))))) (-15 -3540 ((-1006) (-549) (-549) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-80 FCN))))) (-15 -1322 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-73 FCN))))))) (T -723))
+((-1322 (*1 *2 *3 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-73 FCN)))) (-5 *2 (-1006)) (-5 *1 (-723)))) (-3540 (*1 *2 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-80 FCN)))) (-5 *2 (-1006)) (-5 *1 (-723)))) (-4290 (*1 *2 *3 *3 *3 *3 *4 *5) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421)))) (-5 *2 (-1006)) (-5 *1 (-723)))))
+(-10 -7 (-15 -4290 ((-1006) (-219) (-219) (-219) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421))))) (-15 -3540 ((-1006) (-549) (-549) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-80 FCN))))) (-15 -1322 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-73 FCN))))))
+((-3377 (((-1006) (-549) (-549) (-665 (-219)) (-549)) 34)) (-2900 (((-1006) (-549) (-549) (-665 (-219)) (-549)) 33)) (-2537 (((-1006) (-549) (-665 (-219)) (-549)) 32)) (-3356 (((-1006) (-549) (-665 (-219)) (-549)) 31)) (-3209 (((-1006) (-549) (-549) (-1124) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 30)) (-3785 (((-1006) (-549) (-549) (-1124) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 29)) (-3140 (((-1006) (-549) (-549) (-1124) (-665 (-219)) (-665 (-219)) (-549)) 28)) (-2595 (((-1006) (-549) (-549) (-1124) (-665 (-219)) (-665 (-219)) (-549)) 27)) (-1504 (((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549)) 24)) (-4018 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549)) 23)) (-2373 (((-1006) (-549) (-665 (-219)) (-549)) 22)) (-2475 (((-1006) (-549) (-665 (-219)) (-549)) 21)))
+(((-724) (-10 -7 (-15 -2475 ((-1006) (-549) (-665 (-219)) (-549))) (-15 -2373 ((-1006) (-549) (-665 (-219)) (-549))) (-15 -4018 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1504 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2595 ((-1006) (-549) (-549) (-1124) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3140 ((-1006) (-549) (-549) (-1124) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3785 ((-1006) (-549) (-549) (-1124) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3209 ((-1006) (-549) (-549) (-1124) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3356 ((-1006) (-549) (-665 (-219)) (-549))) (-15 -2537 ((-1006) (-549) (-665 (-219)) (-549))) (-15 -2900 ((-1006) (-549) (-549) (-665 (-219)) (-549))) (-15 -3377 ((-1006) (-549) (-549) (-665 (-219)) (-549))))) (T -724))
+((-3377 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-2900 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-2537 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-3356 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-3209 (*1 *2 *3 *3 *4 *5 *5 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-1124)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-3785 (*1 *2 *3 *3 *4 *5 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-1124)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-3140 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-1124)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-2595 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-1124)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-1504 (*1 *2 *3 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-4018 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-2373 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))) (-2475 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-724)))))
+(-10 -7 (-15 -2475 ((-1006) (-549) (-665 (-219)) (-549))) (-15 -2373 ((-1006) (-549) (-665 (-219)) (-549))) (-15 -4018 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1504 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2595 ((-1006) (-549) (-549) (-1124) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3140 ((-1006) (-549) (-549) (-1124) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3785 ((-1006) (-549) (-549) (-1124) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3209 ((-1006) (-549) (-549) (-1124) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3356 ((-1006) (-549) (-665 (-219)) (-549))) (-15 -2537 ((-1006) (-549) (-665 (-219)) (-549))) (-15 -2900 ((-1006) (-549) (-549) (-665 (-219)) (-549))) (-15 -3377 ((-1006) (-549) (-549) (-665 (-219)) (-549))))
+((-2375 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-219) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN)))) 52)) (-2539 (((-1006) (-665 (-219)) (-665 (-219)) (-549) (-549)) 51)) (-4067 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN)))) 50)) (-1701 (((-1006) (-219) (-219) (-549) (-549) (-549) (-549)) 46)) (-1636 (((-1006) (-219) (-219) (-549) (-219) (-549) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) 45)) (-1260 (((-1006) (-219) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) 44)) (-2549 (((-1006) (-219) (-219) (-219) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) 43)) (-3410 (((-1006) (-219) (-219) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) 42)) (-1578 (((-1006) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421)))) 38)) (-4002 (((-1006) (-219) (-219) (-549) (-665 (-219)) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421)))) 37)) (-2681 (((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421)))) 33)) (-2482 (((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421)))) 32)))
+(((-725) (-10 -7 (-15 -2482 ((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421))))) (-15 -2681 ((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421))))) (-15 -4002 ((-1006) (-219) (-219) (-549) (-665 (-219)) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421))))) (-15 -1578 ((-1006) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421))))) (-15 -3410 ((-1006) (-219) (-219) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G))))) (-15 -2549 ((-1006) (-219) (-219) (-219) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G))))) (-15 -1260 ((-1006) (-219) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G))))) (-15 -1636 ((-1006) (-219) (-219) (-549) (-219) (-549) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G))))) (-15 -1701 ((-1006) (-219) (-219) (-549) (-549) (-549) (-549))) (-15 -4067 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN))))) (-15 -2539 ((-1006) (-665 (-219)) (-665 (-219)) (-549) (-549))) (-15 -2375 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-219) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN))))))) (T -725))
+((-2375 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN)))) (-5 *2 (-1006)) (-5 *1 (-725)))) (-2539 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-725)))) (-4067 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN)))) (-5 *2 (-1006)) (-5 *1 (-725)))) (-1701 (*1 *2 *3 *3 *4 *4 *4 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-725)))) (-1636 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) (-5 *2 (-1006)) (-5 *1 (-725)))) (-1260 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) (-5 *2 (-1006)) (-5 *1 (-725)))) (-2549 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) (-5 *2 (-1006)) (-5 *1 (-725)))) (-3410 (*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) (-5 *2 (-1006)) (-5 *1 (-725)))) (-1578 (*1 *2 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421)))) (-5 *2 (-1006)) (-5 *1 (-725)))) (-4002 (*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6) (-12 (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421)))) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-725)))) (-2681 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421)))) (-5 *2 (-1006)) (-5 *1 (-725)))) (-2482 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421)))) (-5 *2 (-1006)) (-5 *1 (-725)))))
+(-10 -7 (-15 -2482 ((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421))))) (-15 -2681 ((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421))))) (-15 -4002 ((-1006) (-219) (-219) (-549) (-665 (-219)) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421))))) (-15 -1578 ((-1006) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421))))) (-15 -3410 ((-1006) (-219) (-219) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G))))) (-15 -2549 ((-1006) (-219) (-219) (-219) (-219) (-549) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G))))) (-15 -1260 ((-1006) (-219) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G))))) (-15 -1636 ((-1006) (-219) (-219) (-549) (-219) (-549) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G))))) (-15 -1701 ((-1006) (-219) (-219) (-549) (-549) (-549) (-549))) (-15 -4067 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-219) (-549) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN))))) (-15 -2539 ((-1006) (-665 (-219)) (-665 (-219)) (-549) (-549))) (-15 -2375 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-219) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN))))))
+((-3207 (((-1006) (-549) (-549) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-74 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-381)) (|:| |fp| (-75 G JACOBG JACGEP)))) 76)) (-4201 (((-1006) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL))) (-381) (-381)) 69) (((-1006) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL)))) 68)) (-3704 (((-1006) (-219) (-219) (-549) (-219) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-83 FCNF))) (-3 (|:| |fn| (-381)) (|:| |fp| (-84 FCNG)))) 57)) (-2135 (((-1006) (-665 (-219)) (-665 (-219)) (-549) (-219) (-219) (-219) (-549) (-549) (-549) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) 50)) (-2009 (((-1006) (-219) (-549) (-549) (-1124) (-549) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-70 PEDERV))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT)))) 49)) (-2434 (((-1006) (-219) (-549) (-549) (-219) (-1124) (-219) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT)))) 45)) (-2597 (((-1006) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) 42)) (-4147 (((-1006) (-219) (-549) (-549) (-549) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT)))) 38)))
+(((-726) (-10 -7 (-15 -4147 ((-1006) (-219) (-549) (-549) (-549) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))) (-15 -2597 ((-1006) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))))) (-15 -2434 ((-1006) (-219) (-549) (-549) (-219) (-1124) (-219) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))) (-15 -2009 ((-1006) (-219) (-549) (-549) (-1124) (-549) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-70 PEDERV))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))) (-15 -2135 ((-1006) (-665 (-219)) (-665 (-219)) (-549) (-219) (-219) (-219) (-549) (-549) (-549) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))))) (-15 -3704 ((-1006) (-219) (-219) (-549) (-219) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-83 FCNF))) (-3 (|:| |fn| (-381)) (|:| |fp| (-84 FCNG))))) (-15 -4201 ((-1006) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL))))) (-15 -4201 ((-1006) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL))) (-381) (-381))) (-15 -3207 ((-1006) (-549) (-549) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-74 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-381)) (|:| |fp| (-75 G JACOBG JACGEP))))))) (T -726))
+((-3207 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-74 FCN JACOBF JACEPS)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-75 G JACOBG JACGEP)))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))) (-4201 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-219)) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL)))) (-5 *8 (-381)) (-5 *2 (-1006)) (-5 *1 (-726)))) (-4201 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-219)) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL)))) (-5 *2 (-1006)) (-5 *1 (-726)))) (-3704 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7) (-12 (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-83 FCNF)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-84 FCNG)))) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))) (-2135 (*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-219)) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) (-5 *2 (-1006)) (-5 *1 (-726)))) (-2009 (*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10) (-12 (-5 *4 (-549)) (-5 *5 (-1124)) (-5 *6 (-665 (-219))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G)))) (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) (-5 *9 (-3 (|:| |fn| (-381)) (|:| |fp| (-70 PEDERV)))) (-5 *10 (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT)))) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))) (-2434 (*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9) (-12 (-5 *4 (-549)) (-5 *5 (-1124)) (-5 *6 (-665 (-219))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G)))) (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) (-5 *9 (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT)))) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))) (-2597 (*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))) (-4147 (*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT)))) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))))
+(-10 -7 (-15 -4147 ((-1006) (-219) (-549) (-549) (-549) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))) (-15 -2597 ((-1006) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))))) (-15 -2434 ((-1006) (-219) (-549) (-549) (-219) (-1124) (-219) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))) (-15 -2009 ((-1006) (-219) (-549) (-549) (-1124) (-549) (-219) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-70 PEDERV))) (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))) (-15 -2135 ((-1006) (-665 (-219)) (-665 (-219)) (-549) (-219) (-219) (-219) (-549) (-549) (-549) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))))) (-15 -3704 ((-1006) (-219) (-219) (-549) (-219) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-83 FCNF))) (-3 (|:| |fn| (-381)) (|:| |fp| (-84 FCNG))))) (-15 -4201 ((-1006) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL))))) (-15 -4201 ((-1006) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL))) (-381) (-381))) (-15 -3207 ((-1006) (-549) (-549) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-74 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-381)) (|:| |fp| (-75 G JACOBG JACGEP))))))
+((-2968 (((-1006) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-651 (-219)) (-549)) 45)) (-2370 (((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-1124) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-81 PDEF))) (-3 (|:| |fn| (-381)) (|:| |fp| (-82 BNDY)))) 41)) (-3323 (((-1006) (-549) (-549) (-549) (-549) (-219) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 23)))
+(((-727) (-10 -7 (-15 -3323 ((-1006) (-549) (-549) (-549) (-549) (-219) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2370 ((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-1124) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-81 PDEF))) (-3 (|:| |fn| (-381)) (|:| |fp| (-82 BNDY))))) (-15 -2968 ((-1006) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-651 (-219)) (-549))))) (T -727))
+((-2968 (*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 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-651 (-219))) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-727)))) (-2370 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-1124)) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-81 PDEF)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-82 BNDY)))) (-5 *2 (-1006)) (-5 *1 (-727)))) (-3323 (*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-727)))))
+(-10 -7 (-15 -3323 ((-1006) (-549) (-549) (-549) (-549) (-219) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2370 ((-1006) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-1124) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-81 PDEF))) (-3 (|:| |fn| (-381)) (|:| |fp| (-82 BNDY))))) (-15 -2968 ((-1006) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-651 (-219)) (-549))))
+((-1377 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-665 (-219)) (-219) (-219) (-549)) 35)) (-1614 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-219) (-219) (-549)) 34)) (-2002 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-665 (-219)) (-219) (-219) (-549)) 33)) (-3235 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 29)) (-2800 (((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 28)) (-1508 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549)) 27)) (-3125 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-549)) 24)) (-1767 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-549)) 23)) (-1733 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549)) 22)) (-2174 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549)) 21)))
+(((-728) (-10 -7 (-15 -2174 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549))) (-15 -1733 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1767 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-549))) (-15 -3125 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-549))) (-15 -1508 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549))) (-15 -2800 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3235 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2002 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-665 (-219)) (-219) (-219) (-549))) (-15 -1614 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-219) (-219) (-549))) (-15 -1377 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-665 (-219)) (-219) (-219) (-549))))) (T -728))
+((-1377 (*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *2 (-1006)) (-5 *1 (-728)))) (-1614 (*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *2 (-1006)) (-5 *1 (-728)))) (-2002 (*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3) (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *6 (-219)) (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-728)))) (-3235 (*1 *2 *3 *4 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-728)))) (-2800 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-728)))) (-1508 (*1 *2 *3 *4 *4 *4 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *2 (-1006)) (-5 *1 (-728)))) (-3125 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-728)))) (-1767 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-728)))) (-1733 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-728)))) (-2174 (*1 *2 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-728)))))
+(-10 -7 (-15 -2174 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549))) (-15 -1733 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1767 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-549))) (-15 -3125 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-549))) (-15 -1508 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-219) (-549))) (-15 -2800 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3235 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2002 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-665 (-219)) (-219) (-219) (-549))) (-15 -1614 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-219) (-219) (-549))) (-15 -1377 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-665 (-219)) (-219) (-219) (-549))))
+((-2350 (((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549)) 45)) (-3029 (((-1006) (-549) (-549) (-549) (-219) (-665 (-219)) (-665 (-219)) (-549)) 44)) (-1958 (((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549)) 43)) (-3904 (((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 42)) (-3852 (((-1006) (-1124) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549)) 41)) (-2656 (((-1006) (-1124) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549)) 40)) (-4170 (((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549) (-549) (-549) (-219) (-665 (-219)) (-549)) 39)) (-2768 (((-1006) (-1124) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-549))) 38)) (-3379 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549)) 35)) (-1678 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549)) 34)) (-4080 (((-1006) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549)) 33)) (-1615 (((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 32)) (-3242 (((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-219) (-549)) 31)) (-3135 (((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-549)) 30)) (-2336 (((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-549) (-549) (-549)) 29)) (-2026 (((-1006) (-549) (-549) (-549) (-219) (-219) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549) (-665 (-549)) (-549) (-549) (-549)) 28)) (-3950 (((-1006) (-549) (-665 (-219)) (-219) (-549)) 24)) (-1818 (((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 21)))
+(((-729) (-10 -7 (-15 -1818 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3950 ((-1006) (-549) (-665 (-219)) (-219) (-549))) (-15 -2026 ((-1006) (-549) (-549) (-549) (-219) (-219) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549) (-665 (-549)) (-549) (-549) (-549))) (-15 -2336 ((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-549) (-549) (-549))) (-15 -3135 ((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-549))) (-15 -3242 ((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-219) (-549))) (-15 -1615 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -4080 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549))) (-15 -1678 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549))) (-15 -3379 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2768 ((-1006) (-1124) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-549)))) (-15 -4170 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549) (-549) (-549) (-219) (-665 (-219)) (-549))) (-15 -2656 ((-1006) (-1124) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549))) (-15 -3852 ((-1006) (-1124) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3904 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1958 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549))) (-15 -3029 ((-1006) (-549) (-549) (-549) (-219) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2350 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549))))) (T -729))
+((-2350 (*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-729)))) (-3029 (*1 *2 *3 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-1958 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-729)))) (-3904 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-729)))) (-3852 (*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4) (-12 (-5 *3 (-1124)) (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-2656 (*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4) (-12 (-5 *3 (-1124)) (-5 *5 (-665 (-219))) (-5 *6 (-219)) (-5 *7 (-665 (-549))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-4170 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3) (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *6 (-219)) (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-2768 (*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7) (-12 (-5 *3 (-1124)) (-5 *5 (-665 (-219))) (-5 *6 (-219)) (-5 *7 (-665 (-549))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-3379 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-729)))) (-1678 (*1 *2 *3 *4 *4 *5 *3 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-4080 (*1 *2 *3 *4 *4 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-1615 (*1 *2 *3 *3 *4 *4 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-729)))) (-3242 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-3135 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-2336 (*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-2026 (*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3) (-12 (-5 *5 (-665 (-219))) (-5 *6 (-665 (-549))) (-5 *3 (-549)) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-3950 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))) (-1818 (*1 *2 *3 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-729)))))
+(-10 -7 (-15 -1818 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3950 ((-1006) (-549) (-665 (-219)) (-219) (-549))) (-15 -2026 ((-1006) (-549) (-549) (-549) (-219) (-219) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549) (-665 (-549)) (-549) (-549) (-549))) (-15 -2336 ((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-549) (-549) (-549))) (-15 -3135 ((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-219) (-549) (-549) (-549))) (-15 -3242 ((-1006) (-549) (-219) (-219) (-665 (-219)) (-549) (-549) (-219) (-549))) (-15 -1615 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -4080 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549))) (-15 -1678 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549))) (-15 -3379 ((-1006) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2768 ((-1006) (-1124) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-549)))) (-15 -4170 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549) (-549) (-549) (-219) (-665 (-219)) (-549))) (-15 -2656 ((-1006) (-1124) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549))) (-15 -3852 ((-1006) (-1124) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3904 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1958 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549))) (-15 -3029 ((-1006) (-549) (-549) (-549) (-219) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2350 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549) (-665 (-219)) (-665 (-219)) (-549) (-549) (-549))))
+((-2936 (((-1006) (-549) (-549) (-549) (-219) (-665 (-219)) (-549) (-665 (-219)) (-549)) 63)) (-3710 (((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-112) (-219) (-549) (-219) (-219) (-112) (-219) (-219) (-219) (-219) (-112) (-549) (-549) (-549) (-549) (-549) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-549)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-79 CONFUN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN)))) 62)) (-1840 (((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-219) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-112) (-112) (-112) (-549) (-549) (-665 (-219)) (-665 (-549)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-64 QPHESS)))) 58)) (-2376 (((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-112) (-549) (-549) (-665 (-219)) (-549)) 51)) (-4164 (((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-65 FUNCT1)))) 50)) (-3487 (((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-62 LSFUN2)))) 46)) (-2314 (((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-78 LSFUN1)))) 42)) (-1317 (((-1006) (-549) (-219) (-219) (-549) (-219) (-112) (-219) (-219) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN)))) 38)))
+(((-730) (-10 -7 (-15 -1317 ((-1006) (-549) (-219) (-219) (-549) (-219) (-112) (-219) (-219) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN))))) (-15 -2314 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-78 LSFUN1))))) (-15 -3487 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-62 LSFUN2))))) (-15 -4164 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-65 FUNCT1))))) (-15 -2376 ((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-112) (-549) (-549) (-665 (-219)) (-549))) (-15 -1840 ((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-219) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-112) (-112) (-112) (-549) (-549) (-665 (-219)) (-665 (-549)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-64 QPHESS))))) (-15 -3710 ((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-112) (-219) (-549) (-219) (-219) (-112) (-219) (-219) (-219) (-219) (-112) (-549) (-549) (-549) (-549) (-549) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-549)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-79 CONFUN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN))))) (-15 -2936 ((-1006) (-549) (-549) (-549) (-219) (-665 (-219)) (-549) (-665 (-219)) (-549))))) (T -730))
+((-2936 (*1 *2 *3 *3 *3 *4 *5 *3 *5 *3) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-730)))) (-3710 (*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 (-665 (-219))) (-5 *5 (-112)) (-5 *6 (-219)) (-5 *7 (-665 (-549))) (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-79 CONFUN)))) (-5 *9 (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN)))) (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-730)))) (-1840 (*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 (-665 (-219))) (-5 *6 (-112)) (-5 *7 (-665 (-549))) (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-64 QPHESS)))) (-5 *3 (-549)) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-730)))) (-2376 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-112)) (-5 *2 (-1006)) (-5 *1 (-730)))) (-4164 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-65 FUNCT1)))) (-5 *2 (-1006)) (-5 *1 (-730)))) (-3487 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-62 LSFUN2)))) (-5 *2 (-1006)) (-5 *1 (-730)))) (-2314 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-78 LSFUN1)))) (-5 *2 (-1006)) (-5 *1 (-730)))) (-1317 (*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7) (-12 (-5 *3 (-549)) (-5 *5 (-112)) (-5 *6 (-665 (-219))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN)))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-730)))))
+(-10 -7 (-15 -1317 ((-1006) (-549) (-219) (-219) (-549) (-219) (-112) (-219) (-219) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN))))) (-15 -2314 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-78 LSFUN1))))) (-15 -3487 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-62 LSFUN2))))) (-15 -4164 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-65 FUNCT1))))) (-15 -2376 ((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-112) (-549) (-549) (-665 (-219)) (-549))) (-15 -1840 ((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-219) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-112) (-112) (-112) (-549) (-549) (-665 (-219)) (-665 (-549)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-64 QPHESS))))) (-15 -3710 ((-1006) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-549) (-112) (-219) (-549) (-219) (-219) (-112) (-219) (-219) (-219) (-219) (-112) (-549) (-549) (-549) (-549) (-549) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-549) (-665 (-549)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-79 CONFUN))) (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN))))) (-15 -2936 ((-1006) (-549) (-549) (-549) (-219) (-665 (-219)) (-549) (-665 (-219)) (-549))))
+((-2163 (((-1006) (-1124) (-549) (-549) (-549) (-549) (-665 (-167 (-219))) (-665 (-167 (-219))) (-549)) 47)) (-4183 (((-1006) (-1124) (-1124) (-549) (-549) (-665 (-167 (-219))) (-549) (-665 (-167 (-219))) (-549) (-549) (-665 (-167 (-219))) (-549)) 46)) (-3167 (((-1006) (-549) (-549) (-549) (-665 (-167 (-219))) (-549)) 45)) (-3814 (((-1006) (-1124) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549)) 40)) (-4004 (((-1006) (-1124) (-1124) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-665 (-219)) (-549)) 39)) (-2437 (((-1006) (-549) (-549) (-549) (-665 (-219)) (-549)) 36)) (-3973 (((-1006) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549)) 35)) (-3141 (((-1006) (-549) (-549) (-549) (-549) (-621 (-112)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-219) (-219) (-549)) 34)) (-1599 (((-1006) (-549) (-549) (-549) (-665 (-549)) (-665 (-549)) (-665 (-549)) (-665 (-549)) (-112) (-219) (-112) (-665 (-549)) (-665 (-219)) (-549)) 33)) (-1986 (((-1006) (-549) (-549) (-549) (-549) (-219) (-112) (-112) (-621 (-112)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-549)) 32)))
+(((-731) (-10 -7 (-15 -1986 ((-1006) (-549) (-549) (-549) (-549) (-219) (-112) (-112) (-621 (-112)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-549))) (-15 -1599 ((-1006) (-549) (-549) (-549) (-665 (-549)) (-665 (-549)) (-665 (-549)) (-665 (-549)) (-112) (-219) (-112) (-665 (-549)) (-665 (-219)) (-549))) (-15 -3141 ((-1006) (-549) (-549) (-549) (-549) (-621 (-112)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-219) (-219) (-549))) (-15 -3973 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549))) (-15 -2437 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-549))) (-15 -4004 ((-1006) (-1124) (-1124) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-665 (-219)) (-549))) (-15 -3814 ((-1006) (-1124) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3167 ((-1006) (-549) (-549) (-549) (-665 (-167 (-219))) (-549))) (-15 -4183 ((-1006) (-1124) (-1124) (-549) (-549) (-665 (-167 (-219))) (-549) (-665 (-167 (-219))) (-549) (-549) (-665 (-167 (-219))) (-549))) (-15 -2163 ((-1006) (-1124) (-549) (-549) (-549) (-549) (-665 (-167 (-219))) (-665 (-167 (-219))) (-549))))) (T -731))
+((-2163 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1124)) (-5 *4 (-549)) (-5 *5 (-665 (-167 (-219)))) (-5 *2 (-1006)) (-5 *1 (-731)))) (-4183 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1124)) (-5 *4 (-549)) (-5 *5 (-665 (-167 (-219)))) (-5 *2 (-1006)) (-5 *1 (-731)))) (-3167 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-167 (-219)))) (-5 *2 (-1006)) (-5 *1 (-731)))) (-3814 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1124)) (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-731)))) (-4004 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1124)) (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-731)))) (-2437 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-731)))) (-3973 (*1 *2 *3 *4 *3 *5 *3) (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-731)))) (-3141 (*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3) (-12 (-5 *4 (-621 (-112))) (-5 *5 (-665 (-219))) (-5 *6 (-665 (-549))) (-5 *7 (-219)) (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-731)))) (-1599 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3) (-12 (-5 *4 (-665 (-549))) (-5 *5 (-112)) (-5 *7 (-665 (-219))) (-5 *3 (-549)) (-5 *6 (-219)) (-5 *2 (-1006)) (-5 *1 (-731)))) (-1986 (*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3) (-12 (-5 *6 (-621 (-112))) (-5 *7 (-665 (-219))) (-5 *8 (-665 (-549))) (-5 *3 (-549)) (-5 *4 (-219)) (-5 *5 (-112)) (-5 *2 (-1006)) (-5 *1 (-731)))))
+(-10 -7 (-15 -1986 ((-1006) (-549) (-549) (-549) (-549) (-219) (-112) (-112) (-621 (-112)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-549))) (-15 -1599 ((-1006) (-549) (-549) (-549) (-665 (-549)) (-665 (-549)) (-665 (-549)) (-665 (-549)) (-112) (-219) (-112) (-665 (-549)) (-665 (-219)) (-549))) (-15 -3141 ((-1006) (-549) (-549) (-549) (-549) (-621 (-112)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-219) (-219) (-549))) (-15 -3973 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549))) (-15 -2437 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-549))) (-15 -4004 ((-1006) (-1124) (-1124) (-549) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-665 (-219)) (-549))) (-15 -3814 ((-1006) (-1124) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3167 ((-1006) (-549) (-549) (-549) (-665 (-167 (-219))) (-549))) (-15 -4183 ((-1006) (-1124) (-1124) (-549) (-549) (-665 (-167 (-219))) (-549) (-665 (-167 (-219))) (-549) (-549) (-665 (-167 (-219))) (-549))) (-15 -2163 ((-1006) (-1124) (-549) (-549) (-549) (-549) (-665 (-167 (-219))) (-665 (-167 (-219))) (-549))))
+((-3143 (((-1006) (-549) (-549) (-549) (-549) (-549) (-112) (-549) (-112) (-549) (-665 (-167 (-219))) (-665 (-167 (-219))) (-549)) 65)) (-3714 (((-1006) (-549) (-549) (-549) (-549) (-549) (-112) (-549) (-112) (-549) (-665 (-219)) (-665 (-219)) (-549)) 60)) (-3324 (((-1006) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT))) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE))) (-381)) 56) (((-1006) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT))) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE)))) 55)) (-4005 (((-1006) (-549) (-549) (-549) (-219) (-112) (-549) (-665 (-219)) (-665 (-219)) (-549)) 37)) (-2287 (((-1006) (-549) (-549) (-219) (-219) (-549) (-549) (-665 (-219)) (-549)) 33)) (-1695 (((-1006) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-549) (-549) (-549)) 30)) (-2582 (((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549)) 29)) (-2281 (((-1006) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549)) 28)) (-2544 (((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549)) 27)) (-1686 (((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549)) 26)) (-3607 (((-1006) (-549) (-549) (-665 (-219)) (-549)) 25)) (-2942 (((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549)) 24)) (-3425 (((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549)) 23)) (-3160 (((-1006) (-665 (-219)) (-549) (-549) (-549) (-549)) 22)) (-1610 (((-1006) (-549) (-549) (-665 (-219)) (-549)) 21)))
+(((-732) (-10 -7 (-15 -1610 ((-1006) (-549) (-549) (-665 (-219)) (-549))) (-15 -3160 ((-1006) (-665 (-219)) (-549) (-549) (-549) (-549))) (-15 -3425 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2942 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3607 ((-1006) (-549) (-549) (-665 (-219)) (-549))) (-15 -1686 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549))) (-15 -2544 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2281 ((-1006) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2582 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1695 ((-1006) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-549) (-549) (-549))) (-15 -2287 ((-1006) (-549) (-549) (-219) (-219) (-549) (-549) (-665 (-219)) (-549))) (-15 -4005 ((-1006) (-549) (-549) (-549) (-219) (-112) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3324 ((-1006) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT))) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE))))) (-15 -3324 ((-1006) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT))) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE))) (-381))) (-15 -3714 ((-1006) (-549) (-549) (-549) (-549) (-549) (-112) (-549) (-112) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3143 ((-1006) (-549) (-549) (-549) (-549) (-549) (-112) (-549) (-112) (-549) (-665 (-167 (-219))) (-665 (-167 (-219))) (-549))))) (T -732))
+((-3143 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-112)) (-5 *5 (-665 (-167 (-219)))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-3714 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *4 (-112)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-3324 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE)))) (-5 *8 (-381)) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-732)))) (-3324 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT)))) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE)))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-732)))) (-4005 (*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3) (-12 (-5 *3 (-549)) (-5 *5 (-112)) (-5 *6 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-732)))) (-2287 (*1 *2 *3 *3 *4 *4 *3 *3 *5 *3) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-732)))) (-1695 (*1 *2 *3 *4 *3 *4 *4 *4 *4 *4) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-732)))) (-2582 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-2281 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-2544 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-1686 (*1 *2 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-3607 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-2942 (*1 *2 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-3425 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))) (-3160 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-732)))) (-1610 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-732)))))
+(-10 -7 (-15 -1610 ((-1006) (-549) (-549) (-665 (-219)) (-549))) (-15 -3160 ((-1006) (-665 (-219)) (-549) (-549) (-549) (-549))) (-15 -3425 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2942 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3607 ((-1006) (-549) (-549) (-665 (-219)) (-549))) (-15 -1686 ((-1006) (-549) (-549) (-549) (-549) (-665 (-219)) (-549))) (-15 -2544 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2281 ((-1006) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -2582 ((-1006) (-549) (-549) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -1695 ((-1006) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-549) (-549) (-549))) (-15 -2287 ((-1006) (-549) (-549) (-219) (-219) (-549) (-549) (-665 (-219)) (-549))) (-15 -4005 ((-1006) (-549) (-549) (-549) (-219) (-112) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3324 ((-1006) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT))) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE))))) (-15 -3324 ((-1006) (-549) (-549) (-219) (-549) (-549) (-549) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT))) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE))) (-381))) (-15 -3714 ((-1006) (-549) (-549) (-549) (-549) (-549) (-112) (-549) (-112) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3143 ((-1006) (-549) (-549) (-549) (-549) (-549) (-112) (-549) (-112) (-549) (-665 (-167 (-219))) (-665 (-167 (-219))) (-549))))
+((-3799 (((-1006) (-549) (-549) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-69 APROD)))) 61)) (-2023 (((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-549)) (-549) (-665 (-219)) (-549) (-549) (-549) (-549)) 57)) (-1343 (((-1006) (-549) (-665 (-219)) (-112) (-219) (-549) (-549) (-549) (-549) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 APROD))) (-3 (|:| |fn| (-381)) (|:| |fp| (-72 MSOLVE)))) 56)) (-4157 (((-1006) (-549) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549) (-665 (-549)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549)) 37)) (-3679 (((-1006) (-549) (-549) (-549) (-219) (-549) (-665 (-219)) (-665 (-219)) (-549)) 36)) (-1407 (((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549)) 33)) (-2540 (((-1006) (-549) (-665 (-219)) (-549) (-665 (-549)) (-665 (-549)) (-549) (-665 (-549)) (-665 (-219))) 32)) (-3193 (((-1006) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-549)) 28)) (-3216 (((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549)) 27)) (-2426 (((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549)) 26)) (-2756 (((-1006) (-549) (-665 (-167 (-219))) (-549) (-549) (-549) (-549) (-665 (-167 (-219))) (-549)) 22)))
+(((-733) (-10 -7 (-15 -2756 ((-1006) (-549) (-665 (-167 (-219))) (-549) (-549) (-549) (-549) (-665 (-167 (-219))) (-549))) (-15 -2426 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549))) (-15 -3216 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549))) (-15 -3193 ((-1006) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-549))) (-15 -2540 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-549)) (-665 (-549)) (-549) (-665 (-549)) (-665 (-219)))) (-15 -1407 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3679 ((-1006) (-549) (-549) (-549) (-219) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -4157 ((-1006) (-549) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549) (-665 (-549)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549))) (-15 -1343 ((-1006) (-549) (-665 (-219)) (-112) (-219) (-549) (-549) (-549) (-549) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 APROD))) (-3 (|:| |fn| (-381)) (|:| |fp| (-72 MSOLVE))))) (-15 -2023 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-549)) (-549) (-665 (-219)) (-549) (-549) (-549) (-549))) (-15 -3799 ((-1006) (-549) (-549) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-69 APROD))))))) (T -733))
+((-3799 (*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-69 APROD)))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-733)))) (-2023 (*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3) (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-733)))) (-1343 (*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-112)) (-5 *6 (-219)) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-67 APROD)))) (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-72 MSOLVE)))) (-5 *2 (-1006)) (-5 *1 (-733)))) (-4157 (*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3) (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-733)))) (-3679 (*1 *2 *3 *3 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-733)))) (-1407 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-733)))) (-2540 (*1 *2 *3 *4 *3 *5 *5 *3 *5 *4) (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-733)))) (-3193 (*1 *2 *3 *4 *3 *4 *4 *4) (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-733)))) (-3216 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-733)))) (-2426 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-733)))) (-2756 (*1 *2 *3 *4 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-167 (-219)))) (-5 *2 (-1006)) (-5 *1 (-733)))))
+(-10 -7 (-15 -2756 ((-1006) (-549) (-665 (-167 (-219))) (-549) (-549) (-549) (-549) (-665 (-167 (-219))) (-549))) (-15 -2426 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549))) (-15 -3216 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-549))) (-15 -3193 ((-1006) (-665 (-219)) (-549) (-665 (-219)) (-549) (-549) (-549))) (-15 -2540 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-549)) (-665 (-549)) (-549) (-665 (-549)) (-665 (-219)))) (-15 -1407 ((-1006) (-549) (-549) (-665 (-219)) (-665 (-219)) (-665 (-219)) (-549))) (-15 -3679 ((-1006) (-549) (-549) (-549) (-219) (-549) (-665 (-219)) (-665 (-219)) (-549))) (-15 -4157 ((-1006) (-549) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549) (-665 (-549)) (-665 (-219)) (-665 (-549)) (-665 (-549)) (-665 (-219)) (-665 (-219)) (-665 (-549)) (-549))) (-15 -1343 ((-1006) (-549) (-665 (-219)) (-112) (-219) (-549) (-549) (-549) (-549) (-219) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-67 APROD))) (-3 (|:| |fn| (-381)) (|:| |fp| (-72 MSOLVE))))) (-15 -2023 ((-1006) (-549) (-665 (-219)) (-549) (-665 (-219)) (-665 (-549)) (-549) (-665 (-219)) (-549) (-549) (-549) (-549))) (-15 -3799 ((-1006) (-549) (-549) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-665 (-219)) (-549) (-3 (|:| |fn| (-381)) (|:| |fp| (-69 APROD))))))
+((-1331 (((-1006) (-1124) (-549) (-549) (-665 (-219)) (-549) (-549) (-665 (-219))) 29)) (-1444 (((-1006) (-1124) (-549) (-549) (-665 (-219))) 28)) (-3598 (((-1006) (-1124) (-549) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549) (-665 (-219))) 27)) (-3305 (((-1006) (-549) (-549) (-549) (-665 (-219))) 21)))
+(((-734) (-10 -7 (-15 -3305 ((-1006) (-549) (-549) (-549) (-665 (-219)))) (-15 -3598 ((-1006) (-1124) (-549) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549) (-665 (-219)))) (-15 -1444 ((-1006) (-1124) (-549) (-549) (-665 (-219)))) (-15 -1331 ((-1006) (-1124) (-549) (-549) (-665 (-219)) (-549) (-549) (-665 (-219)))))) (T -734))
+((-1331 (*1 *2 *3 *4 *4 *5 *4 *4 *5) (-12 (-5 *3 (-1124)) (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-734)))) (-1444 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1124)) (-5 *4 (-549)) (-5 *5 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-734)))) (-3598 (*1 *2 *3 *4 *4 *5 *4 *6 *4 *5) (-12 (-5 *3 (-1124)) (-5 *5 (-665 (-219))) (-5 *6 (-665 (-549))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-734)))) (-3305 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006)) (-5 *1 (-734)))))
+(-10 -7 (-15 -3305 ((-1006) (-549) (-549) (-549) (-665 (-219)))) (-15 -3598 ((-1006) (-1124) (-549) (-549) (-665 (-219)) (-549) (-665 (-549)) (-549) (-665 (-219)))) (-15 -1444 ((-1006) (-1124) (-549) (-549) (-665 (-219)))) (-15 -1331 ((-1006) (-1124) (-549) (-549) (-665 (-219)) (-549) (-549) (-665 (-219)))))
+((-3155 (((-1006) (-219) (-219) (-219) (-219) (-549)) 62)) (-1855 (((-1006) (-219) (-219) (-219) (-549)) 61)) (-1418 (((-1006) (-219) (-219) (-219) (-549)) 60)) (-3328 (((-1006) (-219) (-219) (-549)) 59)) (-4216 (((-1006) (-219) (-549)) 58)) (-2446 (((-1006) (-219) (-549)) 57)) (-1530 (((-1006) (-219) (-549)) 56)) (-4012 (((-1006) (-219) (-549)) 55)) (-1676 (((-1006) (-219) (-549)) 54)) (-3113 (((-1006) (-219) (-549)) 53)) (-2044 (((-1006) (-219) (-167 (-219)) (-549) (-1124) (-549)) 52)) (-2172 (((-1006) (-219) (-167 (-219)) (-549) (-1124) (-549)) 51)) (-2351 (((-1006) (-219) (-549)) 50)) (-3285 (((-1006) (-219) (-549)) 49)) (-3715 (((-1006) (-219) (-549)) 48)) (-2572 (((-1006) (-219) (-549)) 47)) (-3863 (((-1006) (-549) (-219) (-167 (-219)) (-549) (-1124) (-549)) 46)) (-2738 (((-1006) (-1124) (-167 (-219)) (-1124) (-549)) 45)) (-1452 (((-1006) (-1124) (-167 (-219)) (-1124) (-549)) 44)) (-4011 (((-1006) (-219) (-167 (-219)) (-549) (-1124) (-549)) 43)) (-1570 (((-1006) (-219) (-167 (-219)) (-549) (-1124) (-549)) 42)) (-1956 (((-1006) (-219) (-549)) 39)) (-2392 (((-1006) (-219) (-549)) 38)) (-2171 (((-1006) (-219) (-549)) 37)) (-3037 (((-1006) (-219) (-549)) 36)) (-1706 (((-1006) (-219) (-549)) 35)) (-3501 (((-1006) (-219) (-549)) 34)) (-4139 (((-1006) (-219) (-549)) 33)) (-3779 (((-1006) (-219) (-549)) 32)) (-3682 (((-1006) (-219) (-549)) 31)) (-4270 (((-1006) (-219) (-549)) 30)) (-3463 (((-1006) (-219) (-219) (-219) (-549)) 29)) (-1297 (((-1006) (-219) (-549)) 28)) (-3720 (((-1006) (-219) (-549)) 27)) (-3801 (((-1006) (-219) (-549)) 26)) (-1573 (((-1006) (-219) (-549)) 25)) (-1967 (((-1006) (-219) (-549)) 24)) (-1893 (((-1006) (-167 (-219)) (-549)) 21)))
+(((-735) (-10 -7 (-15 -1893 ((-1006) (-167 (-219)) (-549))) (-15 -1967 ((-1006) (-219) (-549))) (-15 -1573 ((-1006) (-219) (-549))) (-15 -3801 ((-1006) (-219) (-549))) (-15 -3720 ((-1006) (-219) (-549))) (-15 -1297 ((-1006) (-219) (-549))) (-15 -3463 ((-1006) (-219) (-219) (-219) (-549))) (-15 -4270 ((-1006) (-219) (-549))) (-15 -3682 ((-1006) (-219) (-549))) (-15 -3779 ((-1006) (-219) (-549))) (-15 -4139 ((-1006) (-219) (-549))) (-15 -3501 ((-1006) (-219) (-549))) (-15 -1706 ((-1006) (-219) (-549))) (-15 -3037 ((-1006) (-219) (-549))) (-15 -2171 ((-1006) (-219) (-549))) (-15 -2392 ((-1006) (-219) (-549))) (-15 -1956 ((-1006) (-219) (-549))) (-15 -1570 ((-1006) (-219) (-167 (-219)) (-549) (-1124) (-549))) (-15 -4011 ((-1006) (-219) (-167 (-219)) (-549) (-1124) (-549))) (-15 -1452 ((-1006) (-1124) (-167 (-219)) (-1124) (-549))) (-15 -2738 ((-1006) (-1124) (-167 (-219)) (-1124) (-549))) (-15 -3863 ((-1006) (-549) (-219) (-167 (-219)) (-549) (-1124) (-549))) (-15 -2572 ((-1006) (-219) (-549))) (-15 -3715 ((-1006) (-219) (-549))) (-15 -3285 ((-1006) (-219) (-549))) (-15 -2351 ((-1006) (-219) (-549))) (-15 -2172 ((-1006) (-219) (-167 (-219)) (-549) (-1124) (-549))) (-15 -2044 ((-1006) (-219) (-167 (-219)) (-549) (-1124) (-549))) (-15 -3113 ((-1006) (-219) (-549))) (-15 -1676 ((-1006) (-219) (-549))) (-15 -4012 ((-1006) (-219) (-549))) (-15 -1530 ((-1006) (-219) (-549))) (-15 -2446 ((-1006) (-219) (-549))) (-15 -4216 ((-1006) (-219) (-549))) (-15 -3328 ((-1006) (-219) (-219) (-549))) (-15 -1418 ((-1006) (-219) (-219) (-219) (-549))) (-15 -1855 ((-1006) (-219) (-219) (-219) (-549))) (-15 -3155 ((-1006) (-219) (-219) (-219) (-219) (-549))))) (T -735))
+((-3155 (*1 *2 *3 *3 *3 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1855 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1418 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3328 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-4216 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2446 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1530 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-4012 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1676 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3113 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2044 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *6 (-1124)) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2172 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *6 (-1124)) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2351 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3285 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3715 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2572 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3863 (*1 *2 *3 *4 *5 *3 *6 *3) (-12 (-5 *3 (-549)) (-5 *5 (-167 (-219))) (-5 *6 (-1124)) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2738 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1124)) (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1452 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1124)) (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-4011 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *6 (-1124)) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1570 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *6 (-1124)) (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1956 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2392 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-2171 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3037 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1706 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3501 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-4139 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3779 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3682 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-4270 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3463 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1297 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3720 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-3801 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1573 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1967 (*1 *2 *3 *4) (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))) (-1893 (*1 *2 *3 *4) (-12 (-5 *3 (-167 (-219))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(-10 -7 (-15 -1893 ((-1006) (-167 (-219)) (-549))) (-15 -1967 ((-1006) (-219) (-549))) (-15 -1573 ((-1006) (-219) (-549))) (-15 -3801 ((-1006) (-219) (-549))) (-15 -3720 ((-1006) (-219) (-549))) (-15 -1297 ((-1006) (-219) (-549))) (-15 -3463 ((-1006) (-219) (-219) (-219) (-549))) (-15 -4270 ((-1006) (-219) (-549))) (-15 -3682 ((-1006) (-219) (-549))) (-15 -3779 ((-1006) (-219) (-549))) (-15 -4139 ((-1006) (-219) (-549))) (-15 -3501 ((-1006) (-219) (-549))) (-15 -1706 ((-1006) (-219) (-549))) (-15 -3037 ((-1006) (-219) (-549))) (-15 -2171 ((-1006) (-219) (-549))) (-15 -2392 ((-1006) (-219) (-549))) (-15 -1956 ((-1006) (-219) (-549))) (-15 -1570 ((-1006) (-219) (-167 (-219)) (-549) (-1124) (-549))) (-15 -4011 ((-1006) (-219) (-167 (-219)) (-549) (-1124) (-549))) (-15 -1452 ((-1006) (-1124) (-167 (-219)) (-1124) (-549))) (-15 -2738 ((-1006) (-1124) (-167 (-219)) (-1124) (-549))) (-15 -3863 ((-1006) (-549) (-219) (-167 (-219)) (-549) (-1124) (-549))) (-15 -2572 ((-1006) (-219) (-549))) (-15 -3715 ((-1006) (-219) (-549))) (-15 -3285 ((-1006) (-219) (-549))) (-15 -2351 ((-1006) (-219) (-549))) (-15 -2172 ((-1006) (-219) (-167 (-219)) (-549) (-1124) (-549))) (-15 -2044 ((-1006) (-219) (-167 (-219)) (-549) (-1124) (-549))) (-15 -3113 ((-1006) (-219) (-549))) (-15 -1676 ((-1006) (-219) (-549))) (-15 -4012 ((-1006) (-219) (-549))) (-15 -1530 ((-1006) (-219) (-549))) (-15 -2446 ((-1006) (-219) (-549))) (-15 -4216 ((-1006) (-219) (-549))) (-15 -3328 ((-1006) (-219) (-219) (-549))) (-15 -1418 ((-1006) (-219) (-219) (-219) (-549))) (-15 -1855 ((-1006) (-219) (-219) (-219) (-549))) (-15 -3155 ((-1006) (-219) (-219) (-219) (-219) (-549))))
+((-2221 (((-1230)) 18)) (-1775 (((-1124)) 22)) (-3492 (((-1124)) 21)) (-2577 (((-1070) (-1142) (-665 (-549))) 37) (((-1070) (-1142) (-665 (-219))) 32)) (-3561 (((-112)) 16)) (-3604 (((-1124) (-1124)) 25)))
+(((-736) (-10 -7 (-15 -3492 ((-1124))) (-15 -1775 ((-1124))) (-15 -3604 ((-1124) (-1124))) (-15 -2577 ((-1070) (-1142) (-665 (-219)))) (-15 -2577 ((-1070) (-1142) (-665 (-549)))) (-15 -3561 ((-112))) (-15 -2221 ((-1230))))) (T -736))
+((-2221 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-736)))) (-3561 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-736)))) (-2577 (*1 *2 *3 *4) (-12 (-5 *3 (-1142)) (-5 *4 (-665 (-549))) (-5 *2 (-1070)) (-5 *1 (-736)))) (-2577 (*1 *2 *3 *4) (-12 (-5 *3 (-1142)) (-5 *4 (-665 (-219))) (-5 *2 (-1070)) (-5 *1 (-736)))) (-3604 (*1 *2 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-736)))) (-1775 (*1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-736)))) (-3492 (*1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-736)))))
+(-10 -7 (-15 -3492 ((-1124))) (-15 -1775 ((-1124))) (-15 -3604 ((-1124) (-1124))) (-15 -2577 ((-1070) (-1142) (-665 (-219)))) (-15 -2577 ((-1070) (-1142) (-665 (-549)))) (-15 -3561 ((-112))) (-15 -2221 ((-1230))))
+((-3870 (($ $ $) 10)) (-3515 (($ $ $ $) 9)) (-3485 (($ $ $) 12)))
+(((-737 |#1|) (-10 -8 (-15 -3485 (|#1| |#1| |#1|)) (-15 -3870 (|#1| |#1| |#1|)) (-15 -3515 (|#1| |#1| |#1| |#1|))) (-738)) (T -737))
+NIL
+(-10 -8 (-15 -3485 (|#1| |#1| |#1|)) (-15 -3870 (|#1| |#1| |#1|)) (-15 -3515 (|#1| |#1| |#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2039 (($ $ (-892)) 28)) (-4304 (($ $ (-892)) 29)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3870 (($ $ $) 25)) (-3845 (((-834) $) 11)) (-3515 (($ $ $ $) 26)) (-3485 (($ $ $) 24)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 30)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 27)))
(((-738) (-138)) (T -738))
-((-4272 (*1 *1 *1 *1 *1) (-4 *1 (-738))) (-3293 (*1 *1 *1 *1) (-4 *1 (-738))) (-2174 (*1 *1 *1 *1) (-4 *1 (-738))))
-(-13 (-21) (-697) (-10 -8 (-15 -4272 ($ $ $ $)) (-15 -3293 ($ $ $)) (-15 -2174 ($ $ $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-697) . T) ((-1067) . T))
-((-3846 (((-834) $) NIL) (($ (-549)) 10)))
-(((-739 |#1|) (-10 -8 (-15 -3846 (|#1| (-549))) (-15 -3846 ((-834) |#1|))) (-740)) (T -739))
-NIL
-(-10 -8 (-15 -3846 (|#1| (-549))) (-15 -3846 ((-834) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-3038 (((-3 $ "failed") $) 40)) (-3117 (($ $ (-892)) 28) (($ $ (-747)) 35)) (-2114 (((-3 $ "failed") $) 38)) (-2675 (((-112) $) 34)) (-1919 (((-3 $ "failed") $) 39)) (-2884 (($ $ (-892)) 29) (($ $ (-747)) 36)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3293 (($ $ $) 25)) (-3846 (((-834) $) 11) (($ (-549)) 31)) (-2082 (((-747)) 32)) (-4272 (($ $ $ $) 26)) (-2174 (($ $ $) 24)) (-3276 (($) 18 T CONST)) (-3287 (($) 33 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 30) (($ $ (-747)) 37)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 27)))
+((-3515 (*1 *1 *1 *1 *1) (-4 *1 (-738))) (-3870 (*1 *1 *1 *1) (-4 *1 (-738))) (-3485 (*1 *1 *1 *1) (-4 *1 (-738))))
+(-13 (-21) (-697) (-10 -8 (-15 -3515 ($ $ $ $)) (-15 -3870 ($ $ $)) (-15 -3485 ($ $ $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-697) . T) ((-1066) . T))
+((-3845 (((-834) $) NIL) (($ (-549)) 10)))
+(((-739 |#1|) (-10 -8 (-15 -3845 (|#1| (-549))) (-15 -3845 ((-834) |#1|))) (-740)) (T -739))
+NIL
+(-10 -8 (-15 -3845 (|#1| (-549))) (-15 -3845 ((-834) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2013 (((-3 $ "failed") $) 40)) (-2039 (($ $ (-892)) 28) (($ $ (-747)) 35)) (-2612 (((-3 $ "failed") $) 38)) (-2297 (((-112) $) 34)) (-1540 (((-3 $ "failed") $) 39)) (-4304 (($ $ (-892)) 29) (($ $ (-747)) 36)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3870 (($ $ $) 25)) (-3845 (((-834) $) 11) (($ (-549)) 31)) (-2371 (((-747)) 32)) (-3515 (($ $ $ $) 26)) (-3485 (($ $ $) 24)) (-3274 (($) 18 T CONST)) (-3286 (($) 33 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 30) (($ $ (-747)) 37)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 27)))
(((-740) (-138)) (T -740))
-((-2082 (*1 *2) (-12 (-4 *1 (-740)) (-5 *2 (-747)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-740)))))
-(-13 (-738) (-699) (-10 -8 (-15 -2082 ((-747))) (-15 -3846 ($ (-549)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-697) . T) ((-699) . T) ((-738) . T) ((-1067) . T))
-((-2912 (((-621 (-2 (|:| |outval| (-167 |#1|)) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 (-167 |#1|)))))) (-665 (-167 (-400 (-549)))) |#1|) 33)) (-3545 (((-621 (-167 |#1|)) (-665 (-167 (-400 (-549)))) |#1|) 23)) (-4154 (((-923 (-167 (-400 (-549)))) (-665 (-167 (-400 (-549)))) (-1143)) 20) (((-923 (-167 (-400 (-549)))) (-665 (-167 (-400 (-549))))) 19)))
-(((-741 |#1|) (-10 -7 (-15 -4154 ((-923 (-167 (-400 (-549)))) (-665 (-167 (-400 (-549)))))) (-15 -4154 ((-923 (-167 (-400 (-549)))) (-665 (-167 (-400 (-549)))) (-1143))) (-15 -3545 ((-621 (-167 |#1|)) (-665 (-167 (-400 (-549)))) |#1|)) (-15 -2912 ((-621 (-2 (|:| |outval| (-167 |#1|)) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 (-167 |#1|)))))) (-665 (-167 (-400 (-549)))) |#1|))) (-13 (-356) (-821))) (T -741))
-((-2912 (*1 *2 *3 *4) (-12 (-5 *3 (-665 (-167 (-400 (-549))))) (-5 *2 (-621 (-2 (|:| |outval| (-167 *4)) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 (-167 *4))))))) (-5 *1 (-741 *4)) (-4 *4 (-13 (-356) (-821))))) (-3545 (*1 *2 *3 *4) (-12 (-5 *3 (-665 (-167 (-400 (-549))))) (-5 *2 (-621 (-167 *4))) (-5 *1 (-741 *4)) (-4 *4 (-13 (-356) (-821))))) (-4154 (*1 *2 *3 *4) (-12 (-5 *3 (-665 (-167 (-400 (-549))))) (-5 *4 (-1143)) (-5 *2 (-923 (-167 (-400 (-549))))) (-5 *1 (-741 *5)) (-4 *5 (-13 (-356) (-821))))) (-4154 (*1 *2 *3) (-12 (-5 *3 (-665 (-167 (-400 (-549))))) (-5 *2 (-923 (-167 (-400 (-549))))) (-5 *1 (-741 *4)) (-4 *4 (-13 (-356) (-821))))))
-(-10 -7 (-15 -4154 ((-923 (-167 (-400 (-549)))) (-665 (-167 (-400 (-549)))))) (-15 -4154 ((-923 (-167 (-400 (-549)))) (-665 (-167 (-400 (-549)))) (-1143))) (-15 -3545 ((-621 (-167 |#1|)) (-665 (-167 (-400 (-549)))) |#1|)) (-15 -2912 ((-621 (-2 (|:| |outval| (-167 |#1|)) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 (-167 |#1|)))))) (-665 (-167 (-400 (-549)))) |#1|)))
-((-4116 (((-172 (-549)) |#1|) 25)))
-(((-742 |#1|) (-10 -7 (-15 -4116 ((-172 (-549)) |#1|))) (-397)) (T -742))
-((-4116 (*1 *2 *3) (-12 (-5 *2 (-172 (-549))) (-5 *1 (-742 *3)) (-4 *3 (-397)))))
-(-10 -7 (-15 -4116 ((-172 (-549)) |#1|)))
-((-2990 ((|#1| |#1| |#1|) 24)) (-3494 ((|#1| |#1| |#1|) 23)) (-1993 ((|#1| |#1| |#1|) 32)) (-1944 ((|#1| |#1| |#1|) 28)) (-2322 (((-3 |#1| "failed") |#1| |#1|) 27)) (-3350 (((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|) 22)))
-(((-743 |#1| |#2|) (-10 -7 (-15 -3350 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|)) (-15 -3494 (|#1| |#1| |#1|)) (-15 -2990 (|#1| |#1| |#1|)) (-15 -2322 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1944 (|#1| |#1| |#1|)) (-15 -1993 (|#1| |#1| |#1|))) (-685 |#2|) (-356)) (T -743))
-((-1993 (*1 *2 *2 *2) (-12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3)))) (-1944 (*1 *2 *2 *2) (-12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3)))) (-2322 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3)))) (-2990 (*1 *2 *2 *2) (-12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3)))) (-3494 (*1 *2 *2 *2) (-12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3)))) (-3350 (*1 *2 *3 *3) (-12 (-4 *4 (-356)) (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3))) (-5 *1 (-743 *3 *4)) (-4 *3 (-685 *4)))))
-(-10 -7 (-15 -3350 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|)) (-15 -3494 (|#1| |#1| |#1|)) (-15 -2990 (|#1| |#1| |#1|)) (-15 -2322 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1944 (|#1| |#1| |#1|)) (-15 -1993 (|#1| |#1| |#1|)))
-((-1784 (((-2 (|:| -1949 (-665 (-549))) (|:| |basisDen| (-549)) (|:| |basisInv| (-665 (-549)))) (-549)) 59)) (-1613 (((-2 (|:| -1949 (-665 (-549))) (|:| |basisDen| (-549)) (|:| |basisInv| (-665 (-549))))) 57)) (-3602 (((-549)) 71)))
-(((-744 |#1| |#2|) (-10 -7 (-15 -3602 ((-549))) (-15 -1613 ((-2 (|:| -1949 (-665 (-549))) (|:| |basisDen| (-549)) (|:| |basisInv| (-665 (-549)))))) (-15 -1784 ((-2 (|:| -1949 (-665 (-549))) (|:| |basisDen| (-549)) (|:| |basisInv| (-665 (-549)))) (-549)))) (-1202 (-549)) (-402 (-549) |#1|)) (T -744))
-((-1784 (*1 *2 *3) (-12 (-5 *3 (-549)) (-4 *4 (-1202 *3)) (-5 *2 (-2 (|:| -1949 (-665 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-665 *3)))) (-5 *1 (-744 *4 *5)) (-4 *5 (-402 *3 *4)))) (-1613 (*1 *2) (-12 (-4 *3 (-1202 (-549))) (-5 *2 (-2 (|:| -1949 (-665 (-549))) (|:| |basisDen| (-549)) (|:| |basisInv| (-665 (-549))))) (-5 *1 (-744 *3 *4)) (-4 *4 (-402 (-549) *3)))) (-3602 (*1 *2) (-12 (-4 *3 (-1202 *2)) (-5 *2 (-549)) (-5 *1 (-744 *3 *4)) (-4 *4 (-402 *2 *3)))))
-(-10 -7 (-15 -3602 ((-549))) (-15 -1613 ((-2 (|:| -1949 (-665 (-549))) (|:| |basisDen| (-549)) (|:| |basisInv| (-665 (-549)))))) (-15 -1784 ((-2 (|:| -1949 (-665 (-549))) (|:| |basisDen| (-549)) (|:| |basisInv| (-665 (-549)))) (-549))))
-((-3834 (((-112) $ $) NIL)) (-2659 (((-3 (|:| |nia| (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| |mdnia| (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) $) 21)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 20) (($ (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 13) (($ (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 16) (($ (-3 (|:| |nia| (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| |mdnia| (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))))) 18)) (-2389 (((-112) $ $) NIL)))
-(((-745) (-13 (-1067) (-10 -8 (-15 -3846 ($ (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3846 ($ (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3846 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| |mdnia| (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))) (-15 -3846 ((-834) $)) (-15 -2659 ((-3 (|:| |nia| (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| |mdnia| (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) $))))) (T -745))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-745)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *1 (-745)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *1 (-745)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| |mdnia| (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))))) (-5 *1 (-745)))) (-2659 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| |mdnia| (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))))) (-5 *1 (-745)))))
-(-13 (-1067) (-10 -8 (-15 -3846 ($ (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3846 ($ (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3846 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| |mdnia| (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))) (-15 -3846 ((-834) $)) (-15 -2659 ((-3 (|:| |nia| (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| |mdnia| (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) $))))
-((-1670 (((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|))) 18) (((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)) (-621 (-1143))) 17)) (-2227 (((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|))) 20) (((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)) (-621 (-1143))) 19)))
-(((-746 |#1|) (-10 -7 (-15 -1670 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)) (-621 (-1143)))) (-15 -1670 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)))) (-15 -2227 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)) (-621 (-1143)))) (-15 -2227 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|))))) (-541)) (T -746))
-((-2227 (*1 *2 *3) (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *4)))))) (-5 *1 (-746 *4)))) (-2227 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-621 (-1143))) (-4 *5 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *5)))))) (-5 *1 (-746 *5)))) (-1670 (*1 *2 *3) (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *4)))))) (-5 *1 (-746 *4)))) (-1670 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-621 (-1143))) (-4 *5 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *5)))))) (-5 *1 (-746 *5)))))
-(-10 -7 (-15 -1670 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)) (-621 (-1143)))) (-15 -1670 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)))) (-15 -2227 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)) (-621 (-1143)))) (-15 -2227 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2861 (($ $ $) 6)) (-2001 (((-3 $ "failed") $ $) 9)) (-1310 (($ $ (-549)) 7)) (-1682 (($) NIL T CONST)) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($ $) NIL)) (-2067 (($ $ $) NIL)) (-2675 (((-112) $) NIL)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3727 (($ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3846 (((-834) $) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-747)) NIL) (($ $ (-892)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ $ $) NIL)))
-(((-747) (-13 (-769) (-703) (-10 -8 (-15 -2067 ($ $ $)) (-15 -2095 ($ $ $)) (-15 -3727 ($ $ $)) (-15 -3148 ((-2 (|:| -4013 $) (|:| -3675 $)) $ $)) (-15 -2042 ((-3 $ "failed") $ $)) (-15 -1310 ($ $ (-549))) (-15 -3239 ($ $)) (-6 (-4339 "*"))))) (T -747))
-((-2067 (*1 *1 *1 *1) (-5 *1 (-747))) (-2095 (*1 *1 *1 *1) (-5 *1 (-747))) (-3727 (*1 *1 *1 *1) (-5 *1 (-747))) (-3148 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -4013 (-747)) (|:| -3675 (-747)))) (-5 *1 (-747)))) (-2042 (*1 *1 *1 *1) (|partial| -5 *1 (-747))) (-1310 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-747)))) (-3239 (*1 *1 *1) (-5 *1 (-747))))
-(-13 (-769) (-703) (-10 -8 (-15 -2067 ($ $ $)) (-15 -2095 ($ $ $)) (-15 -3727 ($ $ $)) (-15 -3148 ((-2 (|:| -4013 $) (|:| -3675 $)) $ $)) (-15 -2042 ((-3 $ "failed") $ $)) (-15 -1310 ($ $ (-549))) (-15 -3239 ($ $)) (-6 (-4339 "*"))))
-((-2227 (((-3 |#2| "failed") |#2| |#2| (-114) (-1143)) 35)))
-(((-748 |#1| |#2|) (-10 -7 (-15 -2227 ((-3 |#2| "failed") |#2| |#2| (-114) (-1143)))) (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)) (-13 (-29 |#1|) (-1165) (-930))) (T -748))
-((-2227 (*1 *2 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-1143)) (-4 *5 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *1 (-748 *5 *2)) (-4 *2 (-13 (-29 *5) (-1165) (-930))))))
-(-10 -7 (-15 -2227 ((-3 |#2| "failed") |#2| |#2| (-114) (-1143))))
-((-3846 (((-750) |#1|) 8)))
-(((-749 |#1|) (-10 -7 (-15 -3846 ((-750) |#1|))) (-1180)) (T -749))
-((-3846 (*1 *2 *3) (-12 (-5 *2 (-750)) (-5 *1 (-749 *3)) (-4 *3 (-1180)))))
-(-10 -7 (-15 -3846 ((-750) |#1|)))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 7)) (-2389 (((-112) $ $) 9)))
-(((-750) (-1067)) (T -750))
-NIL
-(-1067)
-((-3630 ((|#2| |#4|) 35)))
-(((-751 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3630 (|#2| |#4|))) (-444) (-1202 |#1|) (-701 |#1| |#2|) (-1202 |#3|)) (T -751))
-((-3630 (*1 *2 *3) (-12 (-4 *4 (-444)) (-4 *5 (-701 *4 *2)) (-4 *2 (-1202 *4)) (-5 *1 (-751 *4 *2 *5 *3)) (-4 *3 (-1202 *5)))))
-(-10 -7 (-15 -3630 (|#2| |#4|)))
-((-2114 (((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) 56)) (-2108 (((-1231) (-1125) (-1125) |#4| |#5|) 33)) (-2577 ((|#4| |#4| |#5|) 73)) (-1322 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#5|) 77)) (-1563 (((-621 (-2 (|:| |val| (-112)) (|:| -1981 |#5|))) |#4| |#5|) 16)))
-(((-752 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2114 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -2577 (|#4| |#4| |#5|)) (-15 -1322 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#5|)) (-15 -2108 ((-1231) (-1125) (-1125) |#4| |#5|)) (-15 -1563 ((-621 (-2 (|:| |val| (-112)) (|:| -1981 |#5|))) |#4| |#5|))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1038 |#1| |#2| |#3| |#4|)) (T -752))
-((-1563 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1981 *4)))) (-5 *1 (-752 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-2108 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-1125)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *4 (-1032 *6 *7 *8)) (-5 *2 (-1231)) (-5 *1 (-752 *6 *7 *8 *4 *5)) (-4 *5 (-1038 *6 *7 *8 *4)))) (-1322 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4)))) (-5 *1 (-752 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-2577 (*1 *2 *2 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *2 (-1032 *4 *5 *6)) (-5 *1 (-752 *4 *5 *6 *2 *3)) (-4 *3 (-1038 *4 *5 *6 *2)))) (-2114 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3))) (-5 *1 (-752 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
-(-10 -7 (-15 -2114 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -2577 (|#4| |#4| |#5|)) (-15 -1322 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#5|)) (-15 -2108 ((-1231) (-1125) (-1125) |#4| |#5|)) (-15 -1563 ((-621 (-2 (|:| |val| (-112)) (|:| -1981 |#5|))) |#4| |#5|)))
-((-2714 (((-3 (-1139 (-1139 |#1|)) "failed") |#4|) 43)) (-2418 (((-621 |#4|) |#4|) 15)) (-1933 ((|#4| |#4|) 11)))
-(((-753 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2418 ((-621 |#4|) |#4|)) (-15 -2714 ((-3 (-1139 (-1139 |#1|)) "failed") |#4|)) (-15 -1933 (|#4| |#4|))) (-342) (-322 |#1|) (-1202 |#2|) (-1202 |#3|) (-892)) (T -753))
-((-1933 (*1 *2 *2) (-12 (-4 *3 (-342)) (-4 *4 (-322 *3)) (-4 *5 (-1202 *4)) (-5 *1 (-753 *3 *4 *5 *2 *6)) (-4 *2 (-1202 *5)) (-14 *6 (-892)))) (-2714 (*1 *2 *3) (|partial| -12 (-4 *4 (-342)) (-4 *5 (-322 *4)) (-4 *6 (-1202 *5)) (-5 *2 (-1139 (-1139 *4))) (-5 *1 (-753 *4 *5 *6 *3 *7)) (-4 *3 (-1202 *6)) (-14 *7 (-892)))) (-2418 (*1 *2 *3) (-12 (-4 *4 (-342)) (-4 *5 (-322 *4)) (-4 *6 (-1202 *5)) (-5 *2 (-621 *3)) (-5 *1 (-753 *4 *5 *6 *3 *7)) (-4 *3 (-1202 *6)) (-14 *7 (-892)))))
-(-10 -7 (-15 -2418 ((-621 |#4|) |#4|)) (-15 -2714 ((-3 (-1139 (-1139 |#1|)) "failed") |#4|)) (-15 -1933 (|#4| |#4|)))
-((-3419 (((-2 (|:| |deter| (-621 (-1139 |#5|))) (|:| |dterm| (-621 (-621 (-2 (|:| -2099 (-747)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-621 |#1|)) (|:| |nlead| (-621 |#5|))) (-1139 |#5|) (-621 |#1|) (-621 |#5|)) 54)) (-3125 (((-621 (-747)) |#1|) 13)))
-(((-754 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3419 ((-2 (|:| |deter| (-621 (-1139 |#5|))) (|:| |dterm| (-621 (-621 (-2 (|:| -2099 (-747)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-621 |#1|)) (|:| |nlead| (-621 |#5|))) (-1139 |#5|) (-621 |#1|) (-621 |#5|))) (-15 -3125 ((-621 (-747)) |#1|))) (-1202 |#4|) (-769) (-823) (-300) (-920 |#4| |#2| |#3|)) (T -754))
-((-3125 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)) (-5 *2 (-621 (-747))) (-5 *1 (-754 *3 *4 *5 *6 *7)) (-4 *3 (-1202 *6)) (-4 *7 (-920 *6 *4 *5)))) (-3419 (*1 *2 *3 *4 *5) (-12 (-4 *6 (-1202 *9)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *9 (-300)) (-4 *10 (-920 *9 *7 *8)) (-5 *2 (-2 (|:| |deter| (-621 (-1139 *10))) (|:| |dterm| (-621 (-621 (-2 (|:| -2099 (-747)) (|:| |pcoef| *10))))) (|:| |nfacts| (-621 *6)) (|:| |nlead| (-621 *10)))) (-5 *1 (-754 *6 *7 *8 *9 *10)) (-5 *3 (-1139 *10)) (-5 *4 (-621 *6)) (-5 *5 (-621 *10)))))
-(-10 -7 (-15 -3419 ((-2 (|:| |deter| (-621 (-1139 |#5|))) (|:| |dterm| (-621 (-621 (-2 (|:| -2099 (-747)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-621 |#1|)) (|:| |nlead| (-621 |#5|))) (-1139 |#5|) (-621 |#1|) (-621 |#5|))) (-15 -3125 ((-621 (-747)) |#1|)))
-((-3501 (((-621 (-2 (|:| |outval| |#1|) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 |#1|))))) (-665 (-400 (-549))) |#1|) 31)) (-2232 (((-621 |#1|) (-665 (-400 (-549))) |#1|) 21)) (-4154 (((-923 (-400 (-549))) (-665 (-400 (-549))) (-1143)) 18) (((-923 (-400 (-549))) (-665 (-400 (-549)))) 17)))
-(((-755 |#1|) (-10 -7 (-15 -4154 ((-923 (-400 (-549))) (-665 (-400 (-549))))) (-15 -4154 ((-923 (-400 (-549))) (-665 (-400 (-549))) (-1143))) (-15 -2232 ((-621 |#1|) (-665 (-400 (-549))) |#1|)) (-15 -3501 ((-621 (-2 (|:| |outval| |#1|) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 |#1|))))) (-665 (-400 (-549))) |#1|))) (-13 (-356) (-821))) (T -755))
-((-3501 (*1 *2 *3 *4) (-12 (-5 *3 (-665 (-400 (-549)))) (-5 *2 (-621 (-2 (|:| |outval| *4) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 *4)))))) (-5 *1 (-755 *4)) (-4 *4 (-13 (-356) (-821))))) (-2232 (*1 *2 *3 *4) (-12 (-5 *3 (-665 (-400 (-549)))) (-5 *2 (-621 *4)) (-5 *1 (-755 *4)) (-4 *4 (-13 (-356) (-821))))) (-4154 (*1 *2 *3 *4) (-12 (-5 *3 (-665 (-400 (-549)))) (-5 *4 (-1143)) (-5 *2 (-923 (-400 (-549)))) (-5 *1 (-755 *5)) (-4 *5 (-13 (-356) (-821))))) (-4154 (*1 *2 *3) (-12 (-5 *3 (-665 (-400 (-549)))) (-5 *2 (-923 (-400 (-549)))) (-5 *1 (-755 *4)) (-4 *4 (-13 (-356) (-821))))))
-(-10 -7 (-15 -4154 ((-923 (-400 (-549))) (-665 (-400 (-549))))) (-15 -4154 ((-923 (-400 (-549))) (-665 (-400 (-549))) (-1143))) (-15 -2232 ((-621 |#1|) (-665 (-400 (-549))) |#1|)) (-15 -3501 ((-621 (-2 (|:| |outval| |#1|) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 |#1|))))) (-665 (-400 (-549))) |#1|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 34)) (-2272 (((-621 |#2|) $) NIL)) (-2084 (((-1139 $) $ |#2|) NIL) (((-1139 |#1|) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-3186 (((-747) $) NIL) (((-747) $ (-621 |#2|)) NIL)) (-1343 (($ $) 28)) (-2635 (((-112) $ $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1910 (($ $ $) 93 (|has| |#1| (-541)))) (-1506 (((-621 $) $ $) 106 (|has| |#1| (-541)))) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-3979 (($ $) NIL (|has| |#1| (-444)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 |#2| "failed") $) NIL) (((-3 $ "failed") (-923 (-400 (-549)))) NIL (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#2| (-594 (-1143))))) (((-3 $ "failed") (-923 (-549))) NIL (-1536 (-12 (|has| |#1| (-38 (-549))) (|has| |#2| (-594 (-1143))) (-4008 (|has| |#1| (-38 (-400 (-549)))))) (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#2| (-594 (-1143)))))) (((-3 $ "failed") (-923 |#1|)) NIL (-1536 (-12 (|has| |#2| (-594 (-1143))) (-4008 (|has| |#1| (-38 (-400 (-549))))) (-4008 (|has| |#1| (-38 (-549))))) (-12 (|has| |#1| (-38 (-549))) (|has| |#2| (-594 (-1143))) (-4008 (|has| |#1| (-38 (-400 (-549))))) (-4008 (|has| |#1| (-534)))) (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#2| (-594 (-1143))) (-4008 (|has| |#1| (-963 (-549))))))) (((-3 (-1092 |#1| |#2|) "failed") $) 18)) (-2659 ((|#1| $) NIL) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) ((|#2| $) NIL) (($ (-923 (-400 (-549)))) NIL (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#2| (-594 (-1143))))) (($ (-923 (-549))) NIL (-1536 (-12 (|has| |#1| (-38 (-549))) (|has| |#2| (-594 (-1143))) (-4008 (|has| |#1| (-38 (-400 (-549)))))) (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#2| (-594 (-1143)))))) (($ (-923 |#1|)) NIL (-1536 (-12 (|has| |#2| (-594 (-1143))) (-4008 (|has| |#1| (-38 (-400 (-549))))) (-4008 (|has| |#1| (-38 (-549))))) (-12 (|has| |#1| (-38 (-549))) (|has| |#2| (-594 (-1143))) (-4008 (|has| |#1| (-38 (-400 (-549))))) (-4008 (|has| |#1| (-534)))) (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#2| (-594 (-1143))) (-4008 (|has| |#1| (-963 (-549))))))) (((-1092 |#1| |#2|) $) NIL)) (-1353 (($ $ $ |#2|) NIL (|has| |#1| (-170))) (($ $ $) 104 (|has| |#1| (-541)))) (-2070 (($ $) NIL) (($ $ |#2|) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2217 (((-112) $ $) NIL) (((-112) $ (-621 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-2316 (((-112) $) NIL)) (-3921 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 70)) (-2653 (($ $) 119 (|has| |#1| (-444)))) (-1285 (($ $) NIL (|has| |#1| (-444))) (($ $ |#2|) NIL (|has| |#1| (-444)))) (-2058 (((-621 $) $) NIL)) (-1420 (((-112) $) NIL (|has| |#1| (-880)))) (-2348 (($ $) NIL (|has| |#1| (-541)))) (-2582 (($ $) NIL (|has| |#1| (-541)))) (-2882 (($ $ $) 65) (($ $ $ |#2|) NIL)) (-2854 (($ $ $) 68) (($ $ $ |#2|) NIL)) (-2691 (($ $ |#1| (-521 |#2|) $) NIL)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| |#1| (-857 (-372))) (|has| |#2| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| |#1| (-857 (-549))) (|has| |#2| (-857 (-549)))))) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) NIL)) (-2812 (((-112) $ $) NIL) (((-112) $ (-621 $)) NIL)) (-2937 (($ $ $ $ $) 90 (|has| |#1| (-541)))) (-2745 ((|#2| $) 19)) (-2261 (($ (-1139 |#1|) |#2|) NIL) (($ (-1139 $) |#2|) NIL)) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-521 |#2|)) NIL) (($ $ |#2| (-747)) 36) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-2083 (($ $ $) 60)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ |#2|) NIL)) (-2600 (((-112) $) NIL)) (-3611 (((-521 |#2|) $) NIL) (((-747) $ |#2|) NIL) (((-621 (-747)) $ (-621 |#2|)) NIL)) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-4247 (((-747) $) 20)) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-3705 (($ (-1 (-521 |#2|) (-521 |#2|)) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1520 (((-3 |#2| "failed") $) NIL)) (-2280 (($ $) NIL (|has| |#1| (-444)))) (-1915 (($ $) NIL (|has| |#1| (-444)))) (-4239 (((-621 $) $) NIL)) (-3070 (($ $) 37)) (-2878 (($ $) NIL (|has| |#1| (-444)))) (-1876 (((-621 $) $) 41)) (-2801 (($ $) 39)) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL) (($ $ |#2|) 45)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-2926 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3063 (-747))) $ $) 82)) (-4163 (((-2 (|:| -1570 $) (|:| |gap| (-747)) (|:| -4013 $) (|:| -3675 $)) $ $) 67) (((-2 (|:| -1570 $) (|:| |gap| (-747)) (|:| -4013 $) (|:| -3675 $)) $ $ |#2|) NIL)) (-3507 (((-2 (|:| -1570 $) (|:| |gap| (-747)) (|:| -3675 $)) $ $) NIL) (((-2 (|:| -1570 $) (|:| |gap| (-747)) (|:| -3675 $)) $ $ |#2|) NIL)) (-3564 (($ $ $) 72) (($ $ $ |#2|) NIL)) (-3420 (($ $ $) 75) (($ $ $ |#2|) NIL)) (-3851 (((-1125) $) NIL)) (-3072 (($ $ $) 108 (|has| |#1| (-541)))) (-3263 (((-621 $) $) 30)) (-4266 (((-3 (-621 $) "failed") $) NIL)) (-2533 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-2 (|:| |var| |#2|) (|:| -3731 (-747))) "failed") $) NIL)) (-2170 (((-112) $ $) NIL) (((-112) $ (-621 $)) NIL)) (-3270 (($ $ $) NIL)) (-3060 (($ $) 21)) (-2473 (((-112) $ $) NIL)) (-1335 (((-112) $ $) NIL) (((-112) $ (-621 $)) NIL)) (-4298 (($ $ $) NIL)) (-3477 (($ $) 23)) (-3990 (((-1087) $) NIL)) (-3542 (((-2 (|:| -3727 $) (|:| |coef2| $)) $ $) 99 (|has| |#1| (-541)))) (-2214 (((-2 (|:| -3727 $) (|:| |coef1| $)) $ $) 96 (|has| |#1| (-541)))) (-2004 (((-112) $) 52)) (-2016 ((|#1| $) 55)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-444)))) (-3727 ((|#1| |#1| $) 116 (|has| |#1| (-444))) (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-2121 (((-411 $) $) NIL (|has| |#1| (-880)))) (-1444 (((-2 (|:| -3727 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 102 (|has| |#1| (-541)))) (-2042 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-541)))) (-2191 (($ $ |#1|) 112 (|has| |#1| (-541))) (($ $ $) NIL (|has| |#1| (-541)))) (-3535 (($ $ |#1|) 111 (|has| |#1| (-541))) (($ $ $) NIL (|has| |#1| (-541)))) (-2686 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ |#2| |#1|) NIL) (($ $ (-621 |#2|) (-621 |#1|)) NIL) (($ $ |#2| $) NIL) (($ $ (-621 |#2|) (-621 $)) NIL)) (-3602 (($ $ |#2|) NIL (|has| |#1| (-170)))) (-3456 (($ $ |#2|) NIL) (($ $ (-621 |#2|)) NIL) (($ $ |#2| (-747)) NIL) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-3701 (((-521 |#2|) $) NIL) (((-747) $ |#2|) 43) (((-621 (-747)) $ (-621 |#2|)) NIL)) (-3828 (($ $) NIL)) (-1608 (($ $) 33)) (-2845 (((-863 (-372)) $) NIL (-12 (|has| |#1| (-594 (-863 (-372)))) (|has| |#2| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| |#1| (-594 (-863 (-549)))) (|has| |#2| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| |#1| (-594 (-525))) (|has| |#2| (-594 (-525))))) (($ (-923 (-400 (-549)))) NIL (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#2| (-594 (-1143))))) (($ (-923 (-549))) NIL (-1536 (-12 (|has| |#1| (-38 (-549))) (|has| |#2| (-594 (-1143))) (-4008 (|has| |#1| (-38 (-400 (-549)))))) (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#2| (-594 (-1143)))))) (($ (-923 |#1|)) NIL (|has| |#2| (-594 (-1143)))) (((-1125) $) NIL (-12 (|has| |#1| (-1009 (-549))) (|has| |#2| (-594 (-1143))))) (((-923 |#1|) $) NIL (|has| |#2| (-594 (-1143))))) (-2216 ((|#1| $) 115 (|has| |#1| (-444))) (($ $ |#2|) NIL (|has| |#1| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ |#2|) NIL) (((-923 |#1|) $) NIL (|has| |#2| (-594 (-1143)))) (((-1092 |#1| |#2|) $) 15) (($ (-1092 |#1| |#2|)) 16) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#1| (-541)))) (-4141 (((-621 |#1|) $) NIL)) (-2152 ((|#1| $ (-521 |#2|)) NIL) (($ $ |#2| (-747)) 44) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2082 (((-747)) NIL)) (-1509 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3276 (($) 13 T CONST)) (-1712 (((-3 (-112) "failed") $ $) NIL)) (-3287 (($) 35 T CONST)) (-3706 (($ $ $ $ (-747)) 88 (|has| |#1| (-541)))) (-2938 (($ $ $ (-747)) 87 (|has| |#1| (-541)))) (-1702 (($ $ |#2|) NIL) (($ $ (-621 |#2|)) NIL) (($ $ |#2| (-747)) NIL) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) 54)) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) 64)) (-2486 (($ $ $) 74)) (** (($ $ (-892)) NIL) (($ $ (-747)) 61)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 59) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 58) (($ $ |#1|) NIL)))
-(((-756 |#1| |#2|) (-13 (-1032 |#1| (-521 |#2|) |#2|) (-593 (-1092 |#1| |#2|)) (-1009 (-1092 |#1| |#2|))) (-1018) (-823)) (T -756))
-NIL
-(-13 (-1032 |#1| (-521 |#2|) |#2|) (-593 (-1092 |#1| |#2|)) (-1009 (-1092 |#1| |#2|)))
-((-2797 (((-758 |#2|) (-1 |#2| |#1|) (-758 |#1|)) 13)))
-(((-757 |#1| |#2|) (-10 -7 (-15 -2797 ((-758 |#2|) (-1 |#2| |#1|) (-758 |#1|)))) (-1018) (-1018)) (T -757))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-758 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *2 (-758 *6)) (-5 *1 (-757 *5 *6)))))
-(-10 -7 (-15 -2797 ((-758 |#2|) (-1 |#2| |#1|) (-758 |#1|))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 12)) (-2432 (((-1226 |#1|) $ (-747)) NIL)) (-2272 (((-621 (-1048)) $) NIL)) (-3371 (($ (-1139 |#1|)) NIL)) (-2084 (((-1139 $) $ (-1048)) NIL) (((-1139 |#1|) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-3186 (((-747) $) NIL) (((-747) $ (-621 (-1048))) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3404 (((-621 $) $ $) 39 (|has| |#1| (-541)))) (-1910 (($ $ $) 35 (|has| |#1| (-541)))) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-3979 (($ $) NIL (|has| |#1| (-444)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-3866 (((-112) $ $) NIL (|has| |#1| (-356)))) (-3154 (($ $ (-747)) NIL)) (-2434 (($ $ (-747)) NIL)) (-1358 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-444)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-1048) "failed") $) NIL) (((-3 (-1139 |#1|) "failed") $) 10)) (-2659 ((|#1| $) NIL) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-1048) $) NIL) (((-1139 |#1|) $) NIL)) (-1353 (($ $ $ (-1048)) NIL (|has| |#1| (-170))) ((|#1| $ $) 43 (|has| |#1| (-170)))) (-2095 (($ $ $) NIL (|has| |#1| (-356)))) (-2070 (($ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-2067 (($ $ $) NIL (|has| |#1| (-356)))) (-4289 (($ $ $) NIL)) (-2290 (($ $ $) 71 (|has| |#1| (-541)))) (-3921 (((-2 (|:| -1570 |#1|) (|:| -4013 $) (|:| -3675 $)) $ $) 70 (|has| |#1| (-541)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1285 (($ $) NIL (|has| |#1| (-444))) (($ $ (-1048)) NIL (|has| |#1| (-444)))) (-2058 (((-621 $) $) NIL)) (-1420 (((-112) $) NIL (|has| |#1| (-880)))) (-2691 (($ $ |#1| (-747) $) NIL)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-1048) (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-1048) (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2088 (((-747) $ $) NIL (|has| |#1| (-541)))) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) NIL)) (-1681 (((-3 $ "failed") $) NIL (|has| |#1| (-1118)))) (-2261 (($ (-1139 |#1|) (-1048)) NIL) (($ (-1139 $) (-1048)) NIL)) (-2992 (($ $ (-747)) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-747)) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-2083 (($ $ $) 20)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ (-1048)) NIL) (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3611 (((-747) $) NIL) (((-747) $ (-1048)) NIL) (((-621 (-747)) $ (-621 (-1048))) NIL)) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-3705 (($ (-1 (-747) (-747)) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-3598 (((-1139 |#1|) $) NIL)) (-1520 (((-3 (-1048) "failed") $) NIL)) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-2926 (((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -3063 (-747))) $ $) 26)) (-1639 (($ $ $) 29)) (-2468 (($ $ $) 32)) (-4163 (((-2 (|:| -1570 |#1|) (|:| |gap| (-747)) (|:| -4013 $) (|:| -3675 $)) $ $) 31)) (-3851 (((-1125) $) NIL)) (-3072 (($ $ $) 41 (|has| |#1| (-541)))) (-3098 (((-2 (|:| -4013 $) (|:| -3675 $)) $ (-747)) NIL)) (-4266 (((-3 (-621 $) "failed") $) NIL)) (-2533 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-2 (|:| |var| (-1048)) (|:| -3731 (-747))) "failed") $) NIL)) (-3893 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3060 (($) NIL (|has| |#1| (-1118)) CONST)) (-3990 (((-1087) $) NIL)) (-3542 (((-2 (|:| -3727 $) (|:| |coef2| $)) $ $) 67 (|has| |#1| (-541)))) (-2214 (((-2 (|:| -3727 $) (|:| |coef1| $)) $ $) 63 (|has| |#1| (-541)))) (-4032 (((-2 (|:| -1353 |#1|) (|:| |coef2| $)) $ $) 55 (|has| |#1| (-541)))) (-1778 (((-2 (|:| -1353 |#1|) (|:| |coef1| $)) $ $) 51 (|has| |#1| (-541)))) (-2004 (((-112) $) 13)) (-2016 ((|#1| $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-444)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-1835 (($ $ (-747) |#1| $) 19)) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-2121 (((-411 $) $) NIL (|has| |#1| (-880)))) (-1444 (((-2 (|:| -3727 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 59 (|has| |#1| (-541)))) (-3396 (((-2 (|:| -1353 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) 47 (|has| |#1| (-541)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-2042 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2686 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-1048) |#1|) NIL) (($ $ (-621 (-1048)) (-621 |#1|)) NIL) (($ $ (-1048) $) NIL) (($ $ (-621 (-1048)) (-621 $)) NIL)) (-3684 (((-747) $) NIL (|has| |#1| (-356)))) (-3341 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-400 $) (-400 $) (-400 $)) NIL (|has| |#1| (-541))) ((|#1| (-400 $) |#1|) NIL (|has| |#1| (-356))) (((-400 $) $ (-400 $)) NIL (|has| |#1| (-541)))) (-3668 (((-3 $ "failed") $ (-747)) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-356)))) (-3602 (($ $ (-1048)) NIL (|has| |#1| (-170))) ((|#1| $) NIL (|has| |#1| (-170)))) (-3456 (($ $ (-1048)) NIL) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) NIL) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3701 (((-747) $) NIL) (((-747) $ (-1048)) NIL) (((-621 (-747)) $ (-621 (-1048))) NIL)) (-2845 (((-863 (-372)) $) NIL (-12 (|has| (-1048) (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-1048) (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-1048) (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-2216 ((|#1| $) NIL (|has| |#1| (-444))) (($ $ (-1048)) NIL (|has| |#1| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-3033 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541))) (((-3 (-400 $) "failed") (-400 $) $) NIL (|has| |#1| (-541)))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-1048)) NIL) (((-1139 |#1|) $) 7) (($ (-1139 |#1|)) 8) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#1| (-541)))) (-4141 (((-621 |#1|) $) NIL)) (-2152 ((|#1| $ (-747)) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2082 (((-747)) NIL)) (-1509 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3276 (($) 21 T CONST)) (-3287 (($) 24 T CONST)) (-1702 (($ $ (-1048)) NIL) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) NIL) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2500 (($ $) 28) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 23) (($ $ |#1|) NIL)))
-(((-758 |#1|) (-13 (-1202 |#1|) (-593 (-1139 |#1|)) (-1009 (-1139 |#1|)) (-10 -8 (-15 -1835 ($ $ (-747) |#1| $)) (-15 -2083 ($ $ $)) (-15 -2926 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -3063 (-747))) $ $)) (-15 -1639 ($ $ $)) (-15 -4163 ((-2 (|:| -1570 |#1|) (|:| |gap| (-747)) (|:| -4013 $) (|:| -3675 $)) $ $)) (-15 -2468 ($ $ $)) (IF (|has| |#1| (-541)) (PROGN (-15 -3404 ((-621 $) $ $)) (-15 -3072 ($ $ $)) (-15 -1444 ((-2 (|:| -3727 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -2214 ((-2 (|:| -3727 $) (|:| |coef1| $)) $ $)) (-15 -3542 ((-2 (|:| -3727 $) (|:| |coef2| $)) $ $)) (-15 -3396 ((-2 (|:| -1353 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1778 ((-2 (|:| -1353 |#1|) (|:| |coef1| $)) $ $)) (-15 -4032 ((-2 (|:| -1353 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|))) (-1018)) (T -758))
-((-1835 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-747)) (-5 *1 (-758 *3)) (-4 *3 (-1018)))) (-2083 (*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-1018)))) (-2926 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |polnum| (-758 *3)) (|:| |polden| *3) (|:| -3063 (-747)))) (-5 *1 (-758 *3)) (-4 *3 (-1018)))) (-1639 (*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-1018)))) (-4163 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1570 *3) (|:| |gap| (-747)) (|:| -4013 (-758 *3)) (|:| -3675 (-758 *3)))) (-5 *1 (-758 *3)) (-4 *3 (-1018)))) (-2468 (*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-1018)))) (-3404 (*1 *2 *1 *1) (-12 (-5 *2 (-621 (-758 *3))) (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))) (-3072 (*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-541)) (-4 *2 (-1018)))) (-1444 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3727 (-758 *3)) (|:| |coef1| (-758 *3)) (|:| |coef2| (-758 *3)))) (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))) (-2214 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3727 (-758 *3)) (|:| |coef1| (-758 *3)))) (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))) (-3542 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3727 (-758 *3)) (|:| |coef2| (-758 *3)))) (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))) (-3396 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1353 *3) (|:| |coef1| (-758 *3)) (|:| |coef2| (-758 *3)))) (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))) (-1778 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1353 *3) (|:| |coef1| (-758 *3)))) (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))) (-4032 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1353 *3) (|:| |coef2| (-758 *3)))) (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))))
-(-13 (-1202 |#1|) (-593 (-1139 |#1|)) (-1009 (-1139 |#1|)) (-10 -8 (-15 -1835 ($ $ (-747) |#1| $)) (-15 -2083 ($ $ $)) (-15 -2926 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -3063 (-747))) $ $)) (-15 -1639 ($ $ $)) (-15 -4163 ((-2 (|:| -1570 |#1|) (|:| |gap| (-747)) (|:| -4013 $) (|:| -3675 $)) $ $)) (-15 -2468 ($ $ $)) (IF (|has| |#1| (-541)) (PROGN (-15 -3404 ((-621 $) $ $)) (-15 -3072 ($ $ $)) (-15 -1444 ((-2 (|:| -3727 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -2214 ((-2 (|:| -3727 $) (|:| |coef1| $)) $ $)) (-15 -3542 ((-2 (|:| -3727 $) (|:| |coef2| $)) $ $)) (-15 -3396 ((-2 (|:| -1353 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1778 ((-2 (|:| -1353 |#1|) (|:| |coef1| $)) $ $)) (-15 -4032 ((-2 (|:| -1353 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|)))
-((-3856 ((|#1| (-747) |#1|) 32 (|has| |#1| (-38 (-400 (-549)))))) (-2856 ((|#1| (-747) |#1|) 22)) (-2202 ((|#1| (-747) |#1|) 34 (|has| |#1| (-38 (-400 (-549)))))))
-(((-759 |#1|) (-10 -7 (-15 -2856 (|#1| (-747) |#1|)) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -2202 (|#1| (-747) |#1|)) (-15 -3856 (|#1| (-747) |#1|))) |%noBranch|)) (-170)) (T -759))
-((-3856 (*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-759 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-170)))) (-2202 (*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-759 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-170)))) (-2856 (*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-759 *2)) (-4 *2 (-170)))))
-(-10 -7 (-15 -2856 (|#1| (-747) |#1|)) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -2202 (|#1| (-747) |#1|)) (-15 -3856 (|#1| (-747) |#1|))) |%noBranch|))
-((-3834 (((-112) $ $) 7)) (-3514 (((-621 (-2 (|:| -2681 $) (|:| -1359 (-621 |#4|)))) (-621 |#4|)) 85)) (-2866 (((-621 $) (-621 |#4|)) 86) (((-621 $) (-621 |#4|) (-112)) 111)) (-2272 (((-621 |#3|) $) 33)) (-3422 (((-112) $) 26)) (-2527 (((-112) $) 17 (|has| |#1| (-541)))) (-3282 (((-112) |#4| $) 101) (((-112) $) 97)) (-2731 ((|#4| |#4| $) 92)) (-3979 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 $))) |#4| $) 126)) (-3193 (((-2 (|:| |under| $) (|:| -3967 $) (|:| |upper| $)) $ |#3|) 27)) (-1584 (((-112) $ (-747)) 44)) (-1489 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4337))) (((-3 |#4| "failed") $ |#3|) 79)) (-1682 (($) 45 T CONST)) (-1433 (((-112) $) 22 (|has| |#1| (-541)))) (-2555 (((-112) $ $) 24 (|has| |#1| (-541)))) (-2595 (((-112) $ $) 23 (|has| |#1| (-541)))) (-2397 (((-112) $) 25 (|has| |#1| (-541)))) (-2737 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3269 (((-621 |#4|) (-621 |#4|) $) 18 (|has| |#1| (-541)))) (-2953 (((-621 |#4|) (-621 |#4|) $) 19 (|has| |#1| (-541)))) (-2714 (((-3 $ "failed") (-621 |#4|)) 36)) (-2659 (($ (-621 |#4|)) 35)) (-3657 (((-3 $ "failed") $) 82)) (-1903 ((|#4| |#4| $) 89)) (-3676 (($ $) 68 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ |#4| $) 67 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4337)))) (-3675 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-541)))) (-2217 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-3615 ((|#4| |#4| $) 87)) (-2557 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4337))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4337))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-1439 (((-2 (|:| -2681 (-621 |#4|)) (|:| -1359 (-621 |#4|))) $) 105)) (-3516 (((-112) |#4| $) 136)) (-3150 (((-112) |#4| $) 133)) (-2064 (((-112) |#4| $) 137) (((-112) $) 134)) (-2989 (((-621 |#4|) $) 52 (|has| $ (-6 -4337)))) (-2812 (((-112) |#4| $) 104) (((-112) $) 103)) (-2745 ((|#3| $) 34)) (-3194 (((-112) $ (-747)) 43)) (-1562 (((-621 |#4|) $) 53 (|has| $ (-6 -4337)))) (-2090 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#4| |#4|) $) 47)) (-2561 (((-621 |#3|) $) 32)) (-2378 (((-112) |#3| $) 31)) (-1508 (((-112) $ (-747)) 42)) (-3851 (((-1125) $) 9)) (-1878 (((-3 |#4| (-621 $)) |#4| |#4| $) 128)) (-3072 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 $))) |#4| |#4| $) 127)) (-3829 (((-3 |#4| "failed") $) 83)) (-3689 (((-621 $) |#4| $) 129)) (-1514 (((-3 (-112) (-621 $)) |#4| $) 132)) (-4184 (((-621 (-2 (|:| |val| (-112)) (|:| -1981 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-3655 (((-621 $) |#4| $) 125) (((-621 $) (-621 |#4|) $) 124) (((-621 $) (-621 |#4|) (-621 $)) 123) (((-621 $) |#4| (-621 $)) 122)) (-4283 (($ |#4| $) 117) (($ (-621 |#4|) $) 116)) (-1638 (((-621 |#4|) $) 107)) (-2170 (((-112) |#4| $) 99) (((-112) $) 95)) (-3270 ((|#4| |#4| $) 90)) (-2473 (((-112) $ $) 110)) (-4203 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-541)))) (-1335 (((-112) |#4| $) 100) (((-112) $) 96)) (-4298 ((|#4| |#4| $) 91)) (-3990 (((-1087) $) 10)) (-3646 (((-3 |#4| "failed") $) 84)) (-3779 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-2640 (((-3 $ "failed") $ |#4|) 78)) (-2763 (($ $ |#4|) 77) (((-621 $) |#4| $) 115) (((-621 $) |#4| (-621 $)) 114) (((-621 $) (-621 |#4|) $) 113) (((-621 $) (-621 |#4|) (-621 $)) 112)) (-1780 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 |#4|) (-621 |#4|)) 59 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-287 |#4|)) 57 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-621 (-287 |#4|))) 56 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))) (-4144 (((-112) $ $) 38)) (-3670 (((-112) $) 41)) (-3742 (($) 40)) (-3701 (((-747) $) 106)) (-4000 (((-747) |#4| $) 54 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) (((-747) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4337)))) (-2281 (($ $) 39)) (-2845 (((-525) $) 69 (|has| |#4| (-594 (-525))))) (-3854 (($ (-621 |#4|)) 60)) (-2858 (($ $ |#3|) 28)) (-3758 (($ $ |#3|) 30)) (-1962 (($ $) 88)) (-4317 (($ $ |#3|) 29)) (-3846 (((-834) $) 11) (((-621 |#4|) $) 37)) (-1824 (((-747) $) 76 (|has| |#3| (-361)))) (-2574 (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-1716 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) 98)) (-1518 (((-621 $) |#4| $) 121) (((-621 $) |#4| (-621 $)) 120) (((-621 $) (-621 |#4|) $) 119) (((-621 $) (-621 |#4|) (-621 $)) 118)) (-3527 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4337)))) (-3002 (((-621 |#3|) $) 81)) (-3524 (((-112) |#4| $) 135)) (-1606 (((-112) |#3| $) 80)) (-2389 (((-112) $ $) 6)) (-3775 (((-747) $) 46 (|has| $ (-6 -4337)))))
+((-2371 (*1 *2) (-12 (-4 *1 (-740)) (-5 *2 (-747)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-740)))))
+(-13 (-738) (-699) (-10 -8 (-15 -2371 ((-747))) (-15 -3845 ($ (-549)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-697) . T) ((-699) . T) ((-738) . T) ((-1066) . T))
+((-1890 (((-621 (-2 (|:| |outval| (-167 |#1|)) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 (-167 |#1|)))))) (-665 (-167 (-400 (-549)))) |#1|) 33)) (-4117 (((-621 (-167 |#1|)) (-665 (-167 (-400 (-549)))) |#1|) 23)) (-4019 (((-923 (-167 (-400 (-549)))) (-665 (-167 (-400 (-549)))) (-1142)) 20) (((-923 (-167 (-400 (-549)))) (-665 (-167 (-400 (-549))))) 19)))
+(((-741 |#1|) (-10 -7 (-15 -4019 ((-923 (-167 (-400 (-549)))) (-665 (-167 (-400 (-549)))))) (-15 -4019 ((-923 (-167 (-400 (-549)))) (-665 (-167 (-400 (-549)))) (-1142))) (-15 -4117 ((-621 (-167 |#1|)) (-665 (-167 (-400 (-549)))) |#1|)) (-15 -1890 ((-621 (-2 (|:| |outval| (-167 |#1|)) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 (-167 |#1|)))))) (-665 (-167 (-400 (-549)))) |#1|))) (-13 (-356) (-821))) (T -741))
+((-1890 (*1 *2 *3 *4) (-12 (-5 *3 (-665 (-167 (-400 (-549))))) (-5 *2 (-621 (-2 (|:| |outval| (-167 *4)) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 (-167 *4))))))) (-5 *1 (-741 *4)) (-4 *4 (-13 (-356) (-821))))) (-4117 (*1 *2 *3 *4) (-12 (-5 *3 (-665 (-167 (-400 (-549))))) (-5 *2 (-621 (-167 *4))) (-5 *1 (-741 *4)) (-4 *4 (-13 (-356) (-821))))) (-4019 (*1 *2 *3 *4) (-12 (-5 *3 (-665 (-167 (-400 (-549))))) (-5 *4 (-1142)) (-5 *2 (-923 (-167 (-400 (-549))))) (-5 *1 (-741 *5)) (-4 *5 (-13 (-356) (-821))))) (-4019 (*1 *2 *3) (-12 (-5 *3 (-665 (-167 (-400 (-549))))) (-5 *2 (-923 (-167 (-400 (-549))))) (-5 *1 (-741 *4)) (-4 *4 (-13 (-356) (-821))))))
+(-10 -7 (-15 -4019 ((-923 (-167 (-400 (-549)))) (-665 (-167 (-400 (-549)))))) (-15 -4019 ((-923 (-167 (-400 (-549)))) (-665 (-167 (-400 (-549)))) (-1142))) (-15 -4117 ((-621 (-167 |#1|)) (-665 (-167 (-400 (-549)))) |#1|)) (-15 -1890 ((-621 (-2 (|:| |outval| (-167 |#1|)) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 (-167 |#1|)))))) (-665 (-167 (-400 (-549)))) |#1|)))
+((-2455 (((-172 (-549)) |#1|) 25)))
+(((-742 |#1|) (-10 -7 (-15 -2455 ((-172 (-549)) |#1|))) (-397)) (T -742))
+((-2455 (*1 *2 *3) (-12 (-5 *2 (-172 (-549))) (-5 *1 (-742 *3)) (-4 *3 (-397)))))
+(-10 -7 (-15 -2455 ((-172 (-549)) |#1|)))
+((-2438 ((|#1| |#1| |#1|) 24)) (-3723 ((|#1| |#1| |#1|) 23)) (-2929 ((|#1| |#1| |#1|) 32)) (-3249 ((|#1| |#1| |#1|) 28)) (-2368 (((-3 |#1| "failed") |#1| |#1|) 27)) (-2063 (((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|) 22)))
+(((-743 |#1| |#2|) (-10 -7 (-15 -2063 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|)) (-15 -3723 (|#1| |#1| |#1|)) (-15 -2438 (|#1| |#1| |#1|)) (-15 -2368 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3249 (|#1| |#1| |#1|)) (-15 -2929 (|#1| |#1| |#1|))) (-685 |#2|) (-356)) (T -743))
+((-2929 (*1 *2 *2 *2) (-12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3)))) (-3249 (*1 *2 *2 *2) (-12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3)))) (-2368 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3)))) (-2438 (*1 *2 *2 *2) (-12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3)))) (-3723 (*1 *2 *2 *2) (-12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3)))) (-2063 (*1 *2 *3 *3) (-12 (-4 *4 (-356)) (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3))) (-5 *1 (-743 *3 *4)) (-4 *3 (-685 *4)))))
+(-10 -7 (-15 -2063 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|)) (-15 -3723 (|#1| |#1| |#1|)) (-15 -2438 (|#1| |#1| |#1|)) (-15 -2368 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3249 (|#1| |#1| |#1|)) (-15 -2929 (|#1| |#1| |#1|)))
+((-2720 (((-2 (|:| -2619 (-665 (-549))) (|:| |basisDen| (-549)) (|:| |basisInv| (-665 (-549)))) (-549)) 59)) (-1311 (((-2 (|:| -2619 (-665 (-549))) (|:| |basisDen| (-549)) (|:| |basisInv| (-665 (-549))))) 57)) (-2740 (((-549)) 71)))
+(((-744 |#1| |#2|) (-10 -7 (-15 -2740 ((-549))) (-15 -1311 ((-2 (|:| -2619 (-665 (-549))) (|:| |basisDen| (-549)) (|:| |basisInv| (-665 (-549)))))) (-15 -2720 ((-2 (|:| -2619 (-665 (-549))) (|:| |basisDen| (-549)) (|:| |basisInv| (-665 (-549)))) (-549)))) (-1201 (-549)) (-402 (-549) |#1|)) (T -744))
+((-2720 (*1 *2 *3) (-12 (-5 *3 (-549)) (-4 *4 (-1201 *3)) (-5 *2 (-2 (|:| -2619 (-665 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-665 *3)))) (-5 *1 (-744 *4 *5)) (-4 *5 (-402 *3 *4)))) (-1311 (*1 *2) (-12 (-4 *3 (-1201 (-549))) (-5 *2 (-2 (|:| -2619 (-665 (-549))) (|:| |basisDen| (-549)) (|:| |basisInv| (-665 (-549))))) (-5 *1 (-744 *3 *4)) (-4 *4 (-402 (-549) *3)))) (-2740 (*1 *2) (-12 (-4 *3 (-1201 *2)) (-5 *2 (-549)) (-5 *1 (-744 *3 *4)) (-4 *4 (-402 *2 *3)))))
+(-10 -7 (-15 -2740 ((-549))) (-15 -1311 ((-2 (|:| -2619 (-665 (-549))) (|:| |basisDen| (-549)) (|:| |basisInv| (-665 (-549)))))) (-15 -2720 ((-2 (|:| -2619 (-665 (-549))) (|:| |basisDen| (-549)) (|:| |basisInv| (-665 (-549)))) (-549))))
+((-3832 (((-112) $ $) NIL)) (-2657 (((-3 (|:| |nia| (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| |mdnia| (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) $) 21)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 20) (($ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 13) (($ (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 16) (($ (-3 (|:| |nia| (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| |mdnia| (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))))) 18)) (-2387 (((-112) $ $) NIL)))
+(((-745) (-13 (-1066) (-10 -8 (-15 -3845 ($ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3845 ($ (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3845 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| |mdnia| (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))) (-15 -3845 ((-834) $)) (-15 -2657 ((-3 (|:| |nia| (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| |mdnia| (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) $))))) (T -745))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-745)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *1 (-745)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *1 (-745)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| |mdnia| (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))))) (-5 *1 (-745)))) (-2657 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| |mdnia| (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))))) (-5 *1 (-745)))))
+(-13 (-1066) (-10 -8 (-15 -3845 ($ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3845 ($ (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3845 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| |mdnia| (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))) (-15 -3845 ((-834) $)) (-15 -2657 ((-3 (|:| |nia| (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| |mdnia| (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) $))))
+((-4302 (((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|))) 18) (((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)) (-621 (-1142))) 17)) (-2310 (((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|))) 20) (((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)) (-621 (-1142))) 19)))
+(((-746 |#1|) (-10 -7 (-15 -4302 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)) (-621 (-1142)))) (-15 -4302 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)))) (-15 -2310 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)) (-621 (-1142)))) (-15 -2310 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|))))) (-541)) (T -746))
+((-2310 (*1 *2 *3) (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *4)))))) (-5 *1 (-746 *4)))) (-2310 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-621 (-1142))) (-4 *5 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *5)))))) (-5 *1 (-746 *5)))) (-4302 (*1 *2 *3) (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *4)))))) (-5 *1 (-746 *4)))) (-4302 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-621 (-1142))) (-4 *5 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *5)))))) (-5 *1 (-746 *5)))))
+(-10 -7 (-15 -4302 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)) (-621 (-1142)))) (-15 -4302 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)))) (-15 -2310 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)) (-621 (-1142)))) (-15 -2310 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-923 |#1|)))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4280 (($ $ $) 6)) (-2416 (((-3 $ "failed") $ $) 9)) (-1309 (($ $ (-549)) 7)) (-3034 (($) NIL T CONST)) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($ $) NIL)) (-2065 (($ $ $) NIL)) (-2297 (((-112) $) NIL)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3726 (($ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3845 (((-834) $) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-747)) NIL) (($ $ (-892)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ $ $) NIL)))
+(((-747) (-13 (-769) (-703) (-10 -8 (-15 -2065 ($ $ $)) (-15 -2091 ($ $ $)) (-15 -3726 ($ $ $)) (-15 -2288 ((-2 (|:| -2262 $) (|:| -1809 $)) $ $)) (-15 -2040 ((-3 $ "failed") $ $)) (-15 -1309 ($ $ (-549))) (-15 -3237 ($ $)) (-6 (-4338 "*"))))) (T -747))
+((-2065 (*1 *1 *1 *1) (-5 *1 (-747))) (-2091 (*1 *1 *1 *1) (-5 *1 (-747))) (-3726 (*1 *1 *1 *1) (-5 *1 (-747))) (-2288 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2262 (-747)) (|:| -1809 (-747)))) (-5 *1 (-747)))) (-2040 (*1 *1 *1 *1) (|partial| -5 *1 (-747))) (-1309 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-747)))) (-3237 (*1 *1 *1) (-5 *1 (-747))))
+(-13 (-769) (-703) (-10 -8 (-15 -2065 ($ $ $)) (-15 -2091 ($ $ $)) (-15 -3726 ($ $ $)) (-15 -2288 ((-2 (|:| -2262 $) (|:| -1809 $)) $ $)) (-15 -2040 ((-3 $ "failed") $ $)) (-15 -1309 ($ $ (-549))) (-15 -3237 ($ $)) (-6 (-4338 "*"))))
+((-2310 (((-3 |#2| "failed") |#2| |#2| (-114) (-1142)) 35)))
+(((-748 |#1| |#2|) (-10 -7 (-15 -2310 ((-3 |#2| "failed") |#2| |#2| (-114) (-1142)))) (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)) (-13 (-29 |#1|) (-1164) (-930))) (T -748))
+((-2310 (*1 *2 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-1142)) (-4 *5 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *1 (-748 *5 *2)) (-4 *2 (-13 (-29 *5) (-1164) (-930))))))
+(-10 -7 (-15 -2310 ((-3 |#2| "failed") |#2| |#2| (-114) (-1142))))
+((-3845 (((-750) |#1|) 8)))
+(((-749 |#1|) (-10 -7 (-15 -3845 ((-750) |#1|))) (-1179)) (T -749))
+((-3845 (*1 *2 *3) (-12 (-5 *2 (-750)) (-5 *1 (-749 *3)) (-4 *3 (-1179)))))
+(-10 -7 (-15 -3845 ((-750) |#1|)))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 7)) (-2387 (((-112) $ $) 9)))
+(((-750) (-1066)) (T -750))
+NIL
+(-1066)
+((-2469 ((|#2| |#4|) 35)))
+(((-751 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2469 (|#2| |#4|))) (-444) (-1201 |#1|) (-701 |#1| |#2|) (-1201 |#3|)) (T -751))
+((-2469 (*1 *2 *3) (-12 (-4 *4 (-444)) (-4 *5 (-701 *4 *2)) (-4 *2 (-1201 *4)) (-5 *1 (-751 *4 *2 *5 *3)) (-4 *3 (-1201 *5)))))
+(-10 -7 (-15 -2469 (|#2| |#4|)))
+((-2612 (((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) 56)) (-3058 (((-1230) (-1124) (-1124) |#4| |#5|) 33)) (-3177 ((|#4| |#4| |#5|) 73)) (-4190 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#5|) 77)) (-2688 (((-621 (-2 (|:| |val| (-112)) (|:| -1979 |#5|))) |#4| |#5|) 16)))
+(((-752 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2612 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -3177 (|#4| |#4| |#5|)) (-15 -4190 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#5|)) (-15 -3058 ((-1230) (-1124) (-1124) |#4| |#5|)) (-15 -2688 ((-621 (-2 (|:| |val| (-112)) (|:| -1979 |#5|))) |#4| |#5|))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1038 |#1| |#2| |#3| |#4|)) (T -752))
+((-2688 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1979 *4)))) (-5 *1 (-752 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-3058 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-1124)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *4 (-1032 *6 *7 *8)) (-5 *2 (-1230)) (-5 *1 (-752 *6 *7 *8 *4 *5)) (-4 *5 (-1038 *6 *7 *8 *4)))) (-4190 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4)))) (-5 *1 (-752 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-3177 (*1 *2 *2 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *2 (-1032 *4 *5 *6)) (-5 *1 (-752 *4 *5 *6 *2 *3)) (-4 *3 (-1038 *4 *5 *6 *2)))) (-2612 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3))) (-5 *1 (-752 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+(-10 -7 (-15 -2612 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -3177 (|#4| |#4| |#5|)) (-15 -4190 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#5|)) (-15 -3058 ((-1230) (-1124) (-1124) |#4| |#5|)) (-15 -2688 ((-621 (-2 (|:| |val| (-112)) (|:| -1979 |#5|))) |#4| |#5|)))
+((-2712 (((-3 (-1138 (-1138 |#1|)) "failed") |#4|) 43)) (-2709 (((-621 |#4|) |#4|) 15)) (-3495 ((|#4| |#4|) 11)))
+(((-753 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2709 ((-621 |#4|) |#4|)) (-15 -2712 ((-3 (-1138 (-1138 |#1|)) "failed") |#4|)) (-15 -3495 (|#4| |#4|))) (-342) (-322 |#1|) (-1201 |#2|) (-1201 |#3|) (-892)) (T -753))
+((-3495 (*1 *2 *2) (-12 (-4 *3 (-342)) (-4 *4 (-322 *3)) (-4 *5 (-1201 *4)) (-5 *1 (-753 *3 *4 *5 *2 *6)) (-4 *2 (-1201 *5)) (-14 *6 (-892)))) (-2712 (*1 *2 *3) (|partial| -12 (-4 *4 (-342)) (-4 *5 (-322 *4)) (-4 *6 (-1201 *5)) (-5 *2 (-1138 (-1138 *4))) (-5 *1 (-753 *4 *5 *6 *3 *7)) (-4 *3 (-1201 *6)) (-14 *7 (-892)))) (-2709 (*1 *2 *3) (-12 (-4 *4 (-342)) (-4 *5 (-322 *4)) (-4 *6 (-1201 *5)) (-5 *2 (-621 *3)) (-5 *1 (-753 *4 *5 *6 *3 *7)) (-4 *3 (-1201 *6)) (-14 *7 (-892)))))
+(-10 -7 (-15 -2709 ((-621 |#4|) |#4|)) (-15 -2712 ((-3 (-1138 (-1138 |#1|)) "failed") |#4|)) (-15 -3495 (|#4| |#4|)))
+((-3498 (((-2 (|:| |deter| (-621 (-1138 |#5|))) (|:| |dterm| (-621 (-621 (-2 (|:| -3447 (-747)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-621 |#1|)) (|:| |nlead| (-621 |#5|))) (-1138 |#5|) (-621 |#1|) (-621 |#5|)) 54)) (-1535 (((-621 (-747)) |#1|) 13)))
+(((-754 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3498 ((-2 (|:| |deter| (-621 (-1138 |#5|))) (|:| |dterm| (-621 (-621 (-2 (|:| -3447 (-747)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-621 |#1|)) (|:| |nlead| (-621 |#5|))) (-1138 |#5|) (-621 |#1|) (-621 |#5|))) (-15 -1535 ((-621 (-747)) |#1|))) (-1201 |#4|) (-769) (-823) (-300) (-920 |#4| |#2| |#3|)) (T -754))
+((-1535 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)) (-5 *2 (-621 (-747))) (-5 *1 (-754 *3 *4 *5 *6 *7)) (-4 *3 (-1201 *6)) (-4 *7 (-920 *6 *4 *5)))) (-3498 (*1 *2 *3 *4 *5) (-12 (-4 *6 (-1201 *9)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *9 (-300)) (-4 *10 (-920 *9 *7 *8)) (-5 *2 (-2 (|:| |deter| (-621 (-1138 *10))) (|:| |dterm| (-621 (-621 (-2 (|:| -3447 (-747)) (|:| |pcoef| *10))))) (|:| |nfacts| (-621 *6)) (|:| |nlead| (-621 *10)))) (-5 *1 (-754 *6 *7 *8 *9 *10)) (-5 *3 (-1138 *10)) (-5 *4 (-621 *6)) (-5 *5 (-621 *10)))))
+(-10 -7 (-15 -3498 ((-2 (|:| |deter| (-621 (-1138 |#5|))) (|:| |dterm| (-621 (-621 (-2 (|:| -3447 (-747)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-621 |#1|)) (|:| |nlead| (-621 |#5|))) (-1138 |#5|) (-621 |#1|) (-621 |#5|))) (-15 -1535 ((-621 (-747)) |#1|)))
+((-2144 (((-621 (-2 (|:| |outval| |#1|) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 |#1|))))) (-665 (-400 (-549))) |#1|) 31)) (-1400 (((-621 |#1|) (-665 (-400 (-549))) |#1|) 21)) (-4019 (((-923 (-400 (-549))) (-665 (-400 (-549))) (-1142)) 18) (((-923 (-400 (-549))) (-665 (-400 (-549)))) 17)))
+(((-755 |#1|) (-10 -7 (-15 -4019 ((-923 (-400 (-549))) (-665 (-400 (-549))))) (-15 -4019 ((-923 (-400 (-549))) (-665 (-400 (-549))) (-1142))) (-15 -1400 ((-621 |#1|) (-665 (-400 (-549))) |#1|)) (-15 -2144 ((-621 (-2 (|:| |outval| |#1|) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 |#1|))))) (-665 (-400 (-549))) |#1|))) (-13 (-356) (-821))) (T -755))
+((-2144 (*1 *2 *3 *4) (-12 (-5 *3 (-665 (-400 (-549)))) (-5 *2 (-621 (-2 (|:| |outval| *4) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 *4)))))) (-5 *1 (-755 *4)) (-4 *4 (-13 (-356) (-821))))) (-1400 (*1 *2 *3 *4) (-12 (-5 *3 (-665 (-400 (-549)))) (-5 *2 (-621 *4)) (-5 *1 (-755 *4)) (-4 *4 (-13 (-356) (-821))))) (-4019 (*1 *2 *3 *4) (-12 (-5 *3 (-665 (-400 (-549)))) (-5 *4 (-1142)) (-5 *2 (-923 (-400 (-549)))) (-5 *1 (-755 *5)) (-4 *5 (-13 (-356) (-821))))) (-4019 (*1 *2 *3) (-12 (-5 *3 (-665 (-400 (-549)))) (-5 *2 (-923 (-400 (-549)))) (-5 *1 (-755 *4)) (-4 *4 (-13 (-356) (-821))))))
+(-10 -7 (-15 -4019 ((-923 (-400 (-549))) (-665 (-400 (-549))))) (-15 -4019 ((-923 (-400 (-549))) (-665 (-400 (-549))) (-1142))) (-15 -1400 ((-621 |#1|) (-665 (-400 (-549))) |#1|)) (-15 -2144 ((-621 (-2 (|:| |outval| |#1|) (|:| |outmult| (-549)) (|:| |outvect| (-621 (-665 |#1|))))) (-665 (-400 (-549))) |#1|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 34)) (-2270 (((-621 |#2|) $) NIL)) (-2082 (((-1138 $) $ |#2|) NIL) (((-1138 |#1|) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-2216 (((-747) $) NIL) (((-747) $ (-621 |#2|)) NIL)) (-1342 (($ $) 28)) (-2331 (((-112) $ $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-2070 (($ $ $) 93 (|has| |#1| (-541)))) (-1898 (((-621 $) $ $) 106 (|has| |#1| (-541)))) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-3239 (($ $) NIL (|has| |#1| (-444)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 |#2| "failed") $) NIL) (((-3 $ "failed") (-923 (-400 (-549)))) NIL (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#2| (-594 (-1142))))) (((-3 $ "failed") (-923 (-549))) NIL (-1536 (-12 (|has| |#1| (-38 (-549))) (|has| |#2| (-594 (-1142))) (-4007 (|has| |#1| (-38 (-400 (-549)))))) (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#2| (-594 (-1142)))))) (((-3 $ "failed") (-923 |#1|)) NIL (-1536 (-12 (|has| |#2| (-594 (-1142))) (-4007 (|has| |#1| (-38 (-400 (-549))))) (-4007 (|has| |#1| (-38 (-549))))) (-12 (|has| |#1| (-38 (-549))) (|has| |#2| (-594 (-1142))) (-4007 (|has| |#1| (-38 (-400 (-549))))) (-4007 (|has| |#1| (-534)))) (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#2| (-594 (-1142))) (-4007 (|has| |#1| (-963 (-549))))))) (((-3 (-1091 |#1| |#2|) "failed") $) 18)) (-2657 ((|#1| $) NIL) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) ((|#2| $) NIL) (($ (-923 (-400 (-549)))) NIL (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#2| (-594 (-1142))))) (($ (-923 (-549))) NIL (-1536 (-12 (|has| |#1| (-38 (-549))) (|has| |#2| (-594 (-1142))) (-4007 (|has| |#1| (-38 (-400 (-549)))))) (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#2| (-594 (-1142)))))) (($ (-923 |#1|)) NIL (-1536 (-12 (|has| |#2| (-594 (-1142))) (-4007 (|has| |#1| (-38 (-400 (-549))))) (-4007 (|has| |#1| (-38 (-549))))) (-12 (|has| |#1| (-38 (-549))) (|has| |#2| (-594 (-1142))) (-4007 (|has| |#1| (-38 (-400 (-549))))) (-4007 (|has| |#1| (-534)))) (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#2| (-594 (-1142))) (-4007 (|has| |#1| (-963 (-549))))))) (((-1091 |#1| |#2|) $) NIL)) (-4114 (($ $ $ |#2|) NIL (|has| |#1| (-170))) (($ $ $) 104 (|has| |#1| (-541)))) (-2068 (($ $) NIL) (($ $ |#2|) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-1804 (((-112) $ $) NIL) (((-112) $ (-621 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-2020 (((-112) $) NIL)) (-2805 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 70)) (-3361 (($ $) 119 (|has| |#1| (-444)))) (-3004 (($ $) NIL (|has| |#1| (-444))) (($ $ |#2|) NIL (|has| |#1| (-444)))) (-2056 (((-621 $) $) NIL)) (-1464 (((-112) $) NIL (|has| |#1| (-880)))) (-3818 (($ $) NIL (|has| |#1| (-541)))) (-2546 (($ $) NIL (|has| |#1| (-541)))) (-4222 (($ $ $) 65) (($ $ $ |#2|) NIL)) (-1828 (($ $ $) 68) (($ $ $ |#2|) NIL)) (-4064 (($ $ |#1| (-521 |#2|) $) NIL)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| |#1| (-857 (-372))) (|has| |#2| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| |#1| (-857 (-549))) (|has| |#2| (-857 (-549)))))) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) NIL)) (-2240 (((-112) $ $) NIL) (((-112) $ (-621 $)) NIL)) (-1276 (($ $ $ $ $) 90 (|has| |#1| (-541)))) (-2510 ((|#2| $) 19)) (-2259 (($ (-1138 |#1|) |#2|) NIL) (($ (-1138 $) |#2|) NIL)) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-521 |#2|)) NIL) (($ $ |#2| (-747)) 36) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-2466 (($ $ $) 60)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ |#2|) NIL)) (-4313 (((-112) $) NIL)) (-2391 (((-521 |#2|) $) NIL) (((-747) $ |#2|) NIL) (((-621 (-747)) $ (-621 |#2|)) NIL)) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-4241 (((-747) $) 20)) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-3224 (($ (-1 (-521 |#2|) (-521 |#2|)) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-2236 (((-3 |#2| "failed") $) NIL)) (-1284 (($ $) NIL (|has| |#1| (-444)))) (-2551 (($ $) NIL (|has| |#1| (-444)))) (-1542 (((-621 $) $) NIL)) (-4286 (($ $) 37)) (-2045 (($ $) NIL (|has| |#1| (-444)))) (-4040 (((-621 $) $) 41)) (-2935 (($ $) 39)) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL) (($ $ |#2|) 45)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-2280 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1742 (-747))) $ $) 82)) (-2742 (((-2 (|:| -1569 $) (|:| |gap| (-747)) (|:| -2262 $) (|:| -1809 $)) $ $) 67) (((-2 (|:| -1569 $) (|:| |gap| (-747)) (|:| -2262 $) (|:| -1809 $)) $ $ |#2|) NIL)) (-1561 (((-2 (|:| -1569 $) (|:| |gap| (-747)) (|:| -1809 $)) $ $) NIL) (((-2 (|:| -1569 $) (|:| |gap| (-747)) (|:| -1809 $)) $ $ |#2|) NIL)) (-2944 (($ $ $) 72) (($ $ $ |#2|) NIL)) (-3578 (($ $ $) 75) (($ $ $ |#2|) NIL)) (-3441 (((-1124) $) NIL)) (-3402 (($ $ $) 108 (|has| |#1| (-541)))) (-4110 (((-621 $) $) 30)) (-4093 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-621 $) "failed") $) NIL)) (-1477 (((-3 (-2 (|:| |var| |#2|) (|:| -1714 (-747))) "failed") $) NIL)) (-1304 (((-112) $ $) NIL) (((-112) $ (-621 $)) NIL)) (-3603 (($ $ $) NIL)) (-3059 (($ $) 21)) (-3386 (((-112) $ $) NIL)) (-4122 (((-112) $ $) NIL) (((-112) $ (-621 $)) NIL)) (-4244 (($ $ $) NIL)) (-2532 (($ $) 23)) (-3988 (((-1086) $) NIL)) (-3913 (((-2 (|:| -3726 $) (|:| |coef2| $)) $ $) 99 (|has| |#1| (-541)))) (-1462 (((-2 (|:| -3726 $) (|:| |coef1| $)) $ $) 96 (|has| |#1| (-541)))) (-2001 (((-112) $) 52)) (-2011 ((|#1| $) 55)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-444)))) (-3726 ((|#1| |#1| $) 116 (|has| |#1| (-444))) (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2119 (((-411 $) $) NIL (|has| |#1| (-880)))) (-4251 (((-2 (|:| -3726 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 102 (|has| |#1| (-541)))) (-2040 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-541)))) (-3998 (($ $ |#1|) 112 (|has| |#1| (-541))) (($ $ $) NIL (|has| |#1| (-541)))) (-2650 (($ $ |#1|) 111 (|has| |#1| (-541))) (($ $ $) NIL (|has| |#1| (-541)))) (-2684 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ |#2| |#1|) NIL) (($ $ (-621 |#2|) (-621 |#1|)) NIL) (($ $ |#2| $) NIL) (($ $ (-621 |#2|) (-621 $)) NIL)) (-2740 (($ $ |#2|) NIL (|has| |#1| (-170)))) (-3455 (($ $ |#2|) NIL) (($ $ (-621 |#2|)) NIL) (($ $ |#2| (-747)) NIL) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-3977 (((-521 |#2|) $) NIL) (((-747) $ |#2|) 43) (((-621 (-747)) $ (-621 |#2|)) NIL)) (-3178 (($ $) NIL)) (-4013 (($ $) 33)) (-2843 (((-863 (-372)) $) NIL (-12 (|has| |#1| (-594 (-863 (-372)))) (|has| |#2| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| |#1| (-594 (-863 (-549)))) (|has| |#2| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| |#1| (-594 (-525))) (|has| |#2| (-594 (-525))))) (($ (-923 (-400 (-549)))) NIL (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#2| (-594 (-1142))))) (($ (-923 (-549))) NIL (-1536 (-12 (|has| |#1| (-38 (-549))) (|has| |#2| (-594 (-1142))) (-4007 (|has| |#1| (-38 (-400 (-549)))))) (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#2| (-594 (-1142)))))) (($ (-923 |#1|)) NIL (|has| |#2| (-594 (-1142)))) (((-1124) $) NIL (-12 (|has| |#1| (-1009 (-549))) (|has| |#2| (-594 (-1142))))) (((-923 |#1|) $) NIL (|has| |#2| (-594 (-1142))))) (-1700 ((|#1| $) 115 (|has| |#1| (-444))) (($ $ |#2|) NIL (|has| |#1| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ |#2|) NIL) (((-923 |#1|) $) NIL (|has| |#2| (-594 (-1142)))) (((-1091 |#1| |#2|) $) 15) (($ (-1091 |#1| |#2|)) 16) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#1| (-541)))) (-2157 (((-621 |#1|) $) NIL)) (-4068 ((|#1| $ (-521 |#2|)) NIL) (($ $ |#2| (-747)) 44) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2371 (((-747)) NIL)) (-4046 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3274 (($) 13 T CONST)) (-3651 (((-3 (-112) "failed") $ $) NIL)) (-3286 (($) 35 T CONST)) (-3334 (($ $ $ $ (-747)) 88 (|has| |#1| (-541)))) (-3291 (($ $ $ (-747)) 87 (|has| |#1| (-541)))) (-1699 (($ $ |#2|) NIL) (($ $ (-621 |#2|)) NIL) (($ $ |#2| (-747)) NIL) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) 54)) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) 64)) (-2484 (($ $ $) 74)) (** (($ $ (-892)) NIL) (($ $ (-747)) 61)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 59) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 58) (($ $ |#1|) NIL)))
+(((-756 |#1| |#2|) (-13 (-1032 |#1| (-521 |#2|) |#2|) (-593 (-1091 |#1| |#2|)) (-1009 (-1091 |#1| |#2|))) (-1018) (-823)) (T -756))
+NIL
+(-13 (-1032 |#1| (-521 |#2|) |#2|) (-593 (-1091 |#1| |#2|)) (-1009 (-1091 |#1| |#2|)))
+((-2795 (((-758 |#2|) (-1 |#2| |#1|) (-758 |#1|)) 13)))
+(((-757 |#1| |#2|) (-10 -7 (-15 -2795 ((-758 |#2|) (-1 |#2| |#1|) (-758 |#1|)))) (-1018) (-1018)) (T -757))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-758 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *2 (-758 *6)) (-5 *1 (-757 *5 *6)))))
+(-10 -7 (-15 -2795 ((-758 |#2|) (-1 |#2| |#1|) (-758 |#1|))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 12)) (-1432 (((-1225 |#1|) $ (-747)) NIL)) (-2270 (((-621 (-1048)) $) NIL)) (-3842 (($ (-1138 |#1|)) NIL)) (-2082 (((-1138 $) $ (-1048)) NIL) (((-1138 |#1|) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-2216 (((-747) $) NIL) (((-747) $ (-621 (-1048))) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-1424 (((-621 $) $ $) 39 (|has| |#1| (-541)))) (-2070 (($ $ $) 35 (|has| |#1| (-541)))) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-3239 (($ $) NIL (|has| |#1| (-444)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2680 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1665 (($ $ (-747)) NIL)) (-1586 (($ $ (-747)) NIL)) (-3921 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-444)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-1048) "failed") $) NIL) (((-3 (-1138 |#1|) "failed") $) 10)) (-2657 ((|#1| $) NIL) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-1048) $) NIL) (((-1138 |#1|) $) NIL)) (-4114 (($ $ $ (-1048)) NIL (|has| |#1| (-170))) ((|#1| $ $) 43 (|has| |#1| (-170)))) (-2091 (($ $ $) NIL (|has| |#1| (-356)))) (-2068 (($ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-2065 (($ $ $) NIL (|has| |#1| (-356)))) (-1507 (($ $ $) NIL)) (-1563 (($ $ $) 71 (|has| |#1| (-541)))) (-2805 (((-2 (|:| -1569 |#1|) (|:| -2262 $) (|:| -1809 $)) $ $) 70 (|has| |#1| (-541)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-3004 (($ $) NIL (|has| |#1| (-444))) (($ $ (-1048)) NIL (|has| |#1| (-444)))) (-2056 (((-621 $) $) NIL)) (-1464 (((-112) $) NIL (|has| |#1| (-880)))) (-4064 (($ $ |#1| (-747) $) NIL)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-1048) (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-1048) (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2729 (((-747) $ $) NIL (|has| |#1| (-541)))) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) NIL)) (-2964 (((-3 $ "failed") $) NIL (|has| |#1| (-1117)))) (-2259 (($ (-1138 |#1|) (-1048)) NIL) (($ (-1138 $) (-1048)) NIL)) (-2625 (($ $ (-747)) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-747)) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-2466 (($ $ $) 20)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ (-1048)) NIL) (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-2391 (((-747) $) NIL) (((-747) $ (-1048)) NIL) (((-621 (-747)) $ (-621 (-1048))) NIL)) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-3224 (($ (-1 (-747) (-747)) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3440 (((-1138 |#1|) $) NIL)) (-2236 (((-3 (-1048) "failed") $) NIL)) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-2280 (((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1742 (-747))) $ $) 26)) (-1737 (($ $ $) 29)) (-4016 (($ $ $) 32)) (-2742 (((-2 (|:| -1569 |#1|) (|:| |gap| (-747)) (|:| -2262 $) (|:| -1809 $)) $ $) 31)) (-3441 (((-1124) $) NIL)) (-3402 (($ $ $) 41 (|has| |#1| (-541)))) (-3297 (((-2 (|:| -2262 $) (|:| -1809 $)) $ (-747)) NIL)) (-4093 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-621 $) "failed") $) NIL)) (-1477 (((-3 (-2 (|:| |var| (-1048)) (|:| -1714 (-747))) "failed") $) NIL)) (-3405 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3059 (($) NIL (|has| |#1| (-1117)) CONST)) (-3988 (((-1086) $) NIL)) (-3913 (((-2 (|:| -3726 $) (|:| |coef2| $)) $ $) 67 (|has| |#1| (-541)))) (-1462 (((-2 (|:| -3726 $) (|:| |coef1| $)) $ $) 63 (|has| |#1| (-541)))) (-2906 (((-2 (|:| -4114 |#1|) (|:| |coef2| $)) $ $) 55 (|has| |#1| (-541)))) (-3240 (((-2 (|:| -4114 |#1|) (|:| |coef1| $)) $ $) 51 (|has| |#1| (-541)))) (-2001 (((-112) $) 13)) (-2011 ((|#1| $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-444)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-4097 (($ $ (-747) |#1| $) 19)) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2119 (((-411 $) $) NIL (|has| |#1| (-880)))) (-4251 (((-2 (|:| -3726 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 59 (|has| |#1| (-541)))) (-2233 (((-2 (|:| -4114 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) 47 (|has| |#1| (-541)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-2040 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2684 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-1048) |#1|) NIL) (($ $ (-621 (-1048)) (-621 |#1|)) NIL) (($ $ (-1048) $) NIL) (($ $ (-621 (-1048)) (-621 $)) NIL)) (-1335 (((-747) $) NIL (|has| |#1| (-356)))) (-3339 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-400 $) (-400 $) (-400 $)) NIL (|has| |#1| (-541))) ((|#1| (-400 $) |#1|) NIL (|has| |#1| (-356))) (((-400 $) $ (-400 $)) NIL (|has| |#1| (-541)))) (-2432 (((-3 $ "failed") $ (-747)) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-356)))) (-2740 (($ $ (-1048)) NIL (|has| |#1| (-170))) ((|#1| $) NIL (|has| |#1| (-170)))) (-3455 (($ $ (-1048)) NIL) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) NIL) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3977 (((-747) $) NIL) (((-747) $ (-1048)) NIL) (((-621 (-747)) $ (-621 (-1048))) NIL)) (-2843 (((-863 (-372)) $) NIL (-12 (|has| (-1048) (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-1048) (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-1048) (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-1700 ((|#1| $) NIL (|has| |#1| (-444))) (($ $ (-1048)) NIL (|has| |#1| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-1582 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541))) (((-3 (-400 $) "failed") (-400 $) $) NIL (|has| |#1| (-541)))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-1048)) NIL) (((-1138 |#1|) $) 7) (($ (-1138 |#1|)) 8) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#1| (-541)))) (-2157 (((-621 |#1|) $) NIL)) (-4068 ((|#1| $ (-747)) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2371 (((-747)) NIL)) (-4046 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3274 (($) 21 T CONST)) (-3286 (($) 24 T CONST)) (-1699 (($ $ (-1048)) NIL) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) NIL) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2498 (($ $) 28) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 23) (($ $ |#1|) NIL)))
+(((-758 |#1|) (-13 (-1201 |#1|) (-593 (-1138 |#1|)) (-1009 (-1138 |#1|)) (-10 -8 (-15 -4097 ($ $ (-747) |#1| $)) (-15 -2466 ($ $ $)) (-15 -2280 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1742 (-747))) $ $)) (-15 -1737 ($ $ $)) (-15 -2742 ((-2 (|:| -1569 |#1|) (|:| |gap| (-747)) (|:| -2262 $) (|:| -1809 $)) $ $)) (-15 -4016 ($ $ $)) (IF (|has| |#1| (-541)) (PROGN (-15 -1424 ((-621 $) $ $)) (-15 -3402 ($ $ $)) (-15 -4251 ((-2 (|:| -3726 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1462 ((-2 (|:| -3726 $) (|:| |coef1| $)) $ $)) (-15 -3913 ((-2 (|:| -3726 $) (|:| |coef2| $)) $ $)) (-15 -2233 ((-2 (|:| -4114 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3240 ((-2 (|:| -4114 |#1|) (|:| |coef1| $)) $ $)) (-15 -2906 ((-2 (|:| -4114 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|))) (-1018)) (T -758))
+((-4097 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-747)) (-5 *1 (-758 *3)) (-4 *3 (-1018)))) (-2466 (*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-1018)))) (-2280 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |polnum| (-758 *3)) (|:| |polden| *3) (|:| -1742 (-747)))) (-5 *1 (-758 *3)) (-4 *3 (-1018)))) (-1737 (*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-1018)))) (-2742 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1569 *3) (|:| |gap| (-747)) (|:| -2262 (-758 *3)) (|:| -1809 (-758 *3)))) (-5 *1 (-758 *3)) (-4 *3 (-1018)))) (-4016 (*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-1018)))) (-1424 (*1 *2 *1 *1) (-12 (-5 *2 (-621 (-758 *3))) (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))) (-3402 (*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-541)) (-4 *2 (-1018)))) (-4251 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3726 (-758 *3)) (|:| |coef1| (-758 *3)) (|:| |coef2| (-758 *3)))) (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))) (-1462 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3726 (-758 *3)) (|:| |coef1| (-758 *3)))) (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))) (-3913 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3726 (-758 *3)) (|:| |coef2| (-758 *3)))) (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))) (-2233 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -4114 *3) (|:| |coef1| (-758 *3)) (|:| |coef2| (-758 *3)))) (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))) (-3240 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -4114 *3) (|:| |coef1| (-758 *3)))) (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))) (-2906 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -4114 *3) (|:| |coef2| (-758 *3)))) (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))))
+(-13 (-1201 |#1|) (-593 (-1138 |#1|)) (-1009 (-1138 |#1|)) (-10 -8 (-15 -4097 ($ $ (-747) |#1| $)) (-15 -2466 ($ $ $)) (-15 -2280 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1742 (-747))) $ $)) (-15 -1737 ($ $ $)) (-15 -2742 ((-2 (|:| -1569 |#1|) (|:| |gap| (-747)) (|:| -2262 $) (|:| -1809 $)) $ $)) (-15 -4016 ($ $ $)) (IF (|has| |#1| (-541)) (PROGN (-15 -1424 ((-621 $) $ $)) (-15 -3402 ($ $ $)) (-15 -4251 ((-2 (|:| -3726 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1462 ((-2 (|:| -3726 $) (|:| |coef1| $)) $ $)) (-15 -3913 ((-2 (|:| -3726 $) (|:| |coef2| $)) $ $)) (-15 -2233 ((-2 (|:| -4114 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3240 ((-2 (|:| -4114 |#1|) (|:| |coef1| $)) $ $)) (-15 -2906 ((-2 (|:| -4114 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|)))
+((-2776 ((|#1| (-747) |#1|) 32 (|has| |#1| (-38 (-400 (-549)))))) (-3895 ((|#1| (-747) |#1|) 22)) (-2786 ((|#1| (-747) |#1|) 34 (|has| |#1| (-38 (-400 (-549)))))))
+(((-759 |#1|) (-10 -7 (-15 -3895 (|#1| (-747) |#1|)) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -2786 (|#1| (-747) |#1|)) (-15 -2776 (|#1| (-747) |#1|))) |%noBranch|)) (-170)) (T -759))
+((-2776 (*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-759 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-170)))) (-2786 (*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-759 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-170)))) (-3895 (*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-759 *2)) (-4 *2 (-170)))))
+(-10 -7 (-15 -3895 (|#1| (-747) |#1|)) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -2786 (|#1| (-747) |#1|)) (-15 -2776 (|#1| (-747) |#1|))) |%noBranch|))
+((-3832 (((-112) $ $) 7)) (-4063 (((-621 (-2 (|:| -2679 $) (|:| -1358 (-621 |#4|)))) (-621 |#4|)) 85)) (-3587 (((-621 $) (-621 |#4|)) 86) (((-621 $) (-621 |#4|) (-112)) 111)) (-2270 (((-621 |#3|) $) 33)) (-3735 (((-112) $) 26)) (-2148 (((-112) $) 17 (|has| |#1| (-541)))) (-2210 (((-112) |#4| $) 101) (((-112) $) 97)) (-2156 ((|#4| |#4| $) 92)) (-3239 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 $))) |#4| $) 126)) (-3191 (((-2 (|:| |under| $) (|:| -1349 $) (|:| |upper| $)) $ |#3|) 27)) (-2850 (((-112) $ (-747)) 44)) (-1488 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4336))) (((-3 |#4| "failed") $ |#3|) 79)) (-3034 (($) 45 T CONST)) (-4291 (((-112) $) 22 (|has| |#1| (-541)))) (-1663 (((-112) $ $) 24 (|has| |#1| (-541)))) (-4226 (((-112) $ $) 23 (|has| |#1| (-541)))) (-2113 (((-112) $) 25 (|has| |#1| (-541)))) (-1409 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3480 (((-621 |#4|) (-621 |#4|) $) 18 (|has| |#1| (-541)))) (-2393 (((-621 |#4|) (-621 |#4|) $) 19 (|has| |#1| (-541)))) (-2712 (((-3 $ "failed") (-621 |#4|)) 36)) (-2657 (($ (-621 |#4|)) 35)) (-3656 (((-3 $ "failed") $) 82)) (-1852 ((|#4| |#4| $) 89)) (-3675 (($ $) 68 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ |#4| $) 67 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4336)))) (-1809 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-541)))) (-1804 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-1402 ((|#4| |#4| $) 87)) (-2556 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4336))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4336))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-3862 (((-2 (|:| -2679 (-621 |#4|)) (|:| -1358 (-621 |#4|))) $) 105)) (-4267 (((-112) |#4| $) 136)) (-2553 (((-112) |#4| $) 133)) (-3504 (((-112) |#4| $) 137) (((-112) $) 134)) (-2987 (((-621 |#4|) $) 52 (|has| $ (-6 -4336)))) (-2240 (((-112) |#4| $) 104) (((-112) $) 103)) (-2510 ((|#3| $) 34)) (-1777 (((-112) $ (-747)) 43)) (-3698 (((-621 |#4|) $) 53 (|has| $ (-6 -4336)))) (-1593 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#4| |#4|) $) 47)) (-3991 (((-621 |#3|) $) 32)) (-4192 (((-112) |#3| $) 31)) (-3942 (((-112) $ (-747)) 42)) (-3441 (((-1124) $) 9)) (-4246 (((-3 |#4| (-621 $)) |#4| |#4| $) 128)) (-3402 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 $))) |#4| |#4| $) 127)) (-3828 (((-3 |#4| "failed") $) 83)) (-2114 (((-621 $) |#4| $) 129)) (-3219 (((-3 (-112) (-621 $)) |#4| $) 132)) (-3287 (((-621 (-2 (|:| |val| (-112)) (|:| -1979 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-3869 (((-621 $) |#4| $) 125) (((-621 $) (-621 |#4|) $) 124) (((-621 $) (-621 |#4|) (-621 $)) 123) (((-621 $) |#4| (-621 $)) 122)) (-2214 (($ |#4| $) 117) (($ (-621 |#4|) $) 116)) (-1645 (((-621 |#4|) $) 107)) (-1304 (((-112) |#4| $) 99) (((-112) $) 95)) (-3603 ((|#4| |#4| $) 90)) (-3386 (((-112) $ $) 110)) (-2179 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-541)))) (-4122 (((-112) |#4| $) 100) (((-112) $) 96)) (-4244 ((|#4| |#4| $) 91)) (-3988 (((-1086) $) 10)) (-3645 (((-3 |#4| "failed") $) 84)) (-3959 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-1505 (((-3 $ "failed") $ |#4|) 78)) (-3796 (($ $ |#4|) 77) (((-621 $) |#4| $) 115) (((-621 $) |#4| (-621 $)) 114) (((-621 $) (-621 |#4|) $) 113) (((-621 $) (-621 |#4|) (-621 $)) 112)) (-3360 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 |#4|) (-621 |#4|)) 59 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-287 |#4|)) 57 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-621 (-287 |#4|))) 56 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))) (-2520 (((-112) $ $) 38)) (-2643 (((-112) $) 41)) (-3288 (($) 40)) (-3977 (((-747) $) 106)) (-3997 (((-747) |#4| $) 54 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) (((-747) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4336)))) (-2279 (($ $) 39)) (-2843 (((-525) $) 69 (|has| |#4| (-594 (-525))))) (-3853 (($ (-621 |#4|)) 60)) (-4085 (($ $ |#3|) 28)) (-2195 (($ $ |#3|) 30)) (-4292 (($ $) 88)) (-4285 (($ $ |#3|) 29)) (-3845 (((-834) $) 11) (((-621 |#4|) $) 37)) (-2503 (((-747) $) 76 (|has| |#3| (-361)))) (-2940 (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-3760 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) 98)) (-2008 (((-621 $) |#4| $) 121) (((-621 $) |#4| (-621 $)) 120) (((-621 $) (-621 |#4|) $) 119) (((-621 $) (-621 |#4|) (-621 $)) 118)) (-3025 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4336)))) (-4044 (((-621 |#3|) $) 81)) (-2930 (((-112) |#4| $) 135)) (-1993 (((-112) |#3| $) 80)) (-2387 (((-112) $ $) 6)) (-3774 (((-747) $) 46 (|has| $ (-6 -4336)))))
(((-760 |#1| |#2| |#3| |#4|) (-138) (-444) (-769) (-823) (-1032 |t#1| |t#2| |t#3|)) (T -760))
NIL
(-13 (-1038 |t#1| |t#2| |t#3| |t#4|))
-(((-34) . T) ((-101) . T) ((-593 (-621 |#4|)) . T) ((-593 (-834)) . T) ((-149 |#4|) . T) ((-594 (-525)) |has| |#4| (-594 (-525))) ((-302 |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))) ((-481 |#4|) . T) ((-505 |#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))) ((-947 |#1| |#2| |#3| |#4|) . T) ((-1038 |#1| |#2| |#3| |#4|) . T) ((-1067) . T) ((-1173 |#1| |#2| |#3| |#4|) . T) ((-1180) . T))
-((-1844 (((-3 (-372) "failed") (-309 |#1|) (-892)) 62 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-3 (-372) "failed") (-309 |#1|)) 54 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-3 (-372) "failed") (-400 (-923 |#1|)) (-892)) 41 (|has| |#1| (-541))) (((-3 (-372) "failed") (-400 (-923 |#1|))) 40 (|has| |#1| (-541))) (((-3 (-372) "failed") (-923 |#1|) (-892)) 31 (|has| |#1| (-1018))) (((-3 (-372) "failed") (-923 |#1|)) 30 (|has| |#1| (-1018)))) (-1618 (((-372) (-309 |#1|) (-892)) 99 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-372) (-309 |#1|)) 94 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-372) (-400 (-923 |#1|)) (-892)) 91 (|has| |#1| (-541))) (((-372) (-400 (-923 |#1|))) 90 (|has| |#1| (-541))) (((-372) (-923 |#1|) (-892)) 86 (|has| |#1| (-1018))) (((-372) (-923 |#1|)) 85 (|has| |#1| (-1018))) (((-372) |#1| (-892)) 76) (((-372) |#1|) 22)) (-1575 (((-3 (-167 (-372)) "failed") (-309 (-167 |#1|)) (-892)) 71 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-3 (-167 (-372)) "failed") (-309 (-167 |#1|))) 70 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-3 (-167 (-372)) "failed") (-309 |#1|) (-892)) 63 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-3 (-167 (-372)) "failed") (-309 |#1|)) 61 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-3 (-167 (-372)) "failed") (-400 (-923 (-167 |#1|))) (-892)) 46 (|has| |#1| (-541))) (((-3 (-167 (-372)) "failed") (-400 (-923 (-167 |#1|)))) 45 (|has| |#1| (-541))) (((-3 (-167 (-372)) "failed") (-400 (-923 |#1|)) (-892)) 39 (|has| |#1| (-541))) (((-3 (-167 (-372)) "failed") (-400 (-923 |#1|))) 38 (|has| |#1| (-541))) (((-3 (-167 (-372)) "failed") (-923 |#1|) (-892)) 28 (|has| |#1| (-1018))) (((-3 (-167 (-372)) "failed") (-923 |#1|)) 26 (|has| |#1| (-1018))) (((-3 (-167 (-372)) "failed") (-923 (-167 |#1|)) (-892)) 18 (|has| |#1| (-170))) (((-3 (-167 (-372)) "failed") (-923 (-167 |#1|))) 15 (|has| |#1| (-170)))) (-2045 (((-167 (-372)) (-309 (-167 |#1|)) (-892)) 102 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-167 (-372)) (-309 (-167 |#1|))) 101 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-167 (-372)) (-309 |#1|) (-892)) 100 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-167 (-372)) (-309 |#1|)) 98 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-167 (-372)) (-400 (-923 (-167 |#1|))) (-892)) 93 (|has| |#1| (-541))) (((-167 (-372)) (-400 (-923 (-167 |#1|)))) 92 (|has| |#1| (-541))) (((-167 (-372)) (-400 (-923 |#1|)) (-892)) 89 (|has| |#1| (-541))) (((-167 (-372)) (-400 (-923 |#1|))) 88 (|has| |#1| (-541))) (((-167 (-372)) (-923 |#1|) (-892)) 84 (|has| |#1| (-1018))) (((-167 (-372)) (-923 |#1|)) 83 (|has| |#1| (-1018))) (((-167 (-372)) (-923 (-167 |#1|)) (-892)) 78 (|has| |#1| (-170))) (((-167 (-372)) (-923 (-167 |#1|))) 77 (|has| |#1| (-170))) (((-167 (-372)) (-167 |#1|) (-892)) 80 (|has| |#1| (-170))) (((-167 (-372)) (-167 |#1|)) 79 (|has| |#1| (-170))) (((-167 (-372)) |#1| (-892)) 27) (((-167 (-372)) |#1|) 25)))
-(((-761 |#1|) (-10 -7 (-15 -1618 ((-372) |#1|)) (-15 -1618 ((-372) |#1| (-892))) (-15 -2045 ((-167 (-372)) |#1|)) (-15 -2045 ((-167 (-372)) |#1| (-892))) (IF (|has| |#1| (-170)) (PROGN (-15 -2045 ((-167 (-372)) (-167 |#1|))) (-15 -2045 ((-167 (-372)) (-167 |#1|) (-892))) (-15 -2045 ((-167 (-372)) (-923 (-167 |#1|)))) (-15 -2045 ((-167 (-372)) (-923 (-167 |#1|)) (-892)))) |%noBranch|) (IF (|has| |#1| (-1018)) (PROGN (-15 -1618 ((-372) (-923 |#1|))) (-15 -1618 ((-372) (-923 |#1|) (-892))) (-15 -2045 ((-167 (-372)) (-923 |#1|))) (-15 -2045 ((-167 (-372)) (-923 |#1|) (-892)))) |%noBranch|) (IF (|has| |#1| (-541)) (PROGN (-15 -1618 ((-372) (-400 (-923 |#1|)))) (-15 -1618 ((-372) (-400 (-923 |#1|)) (-892))) (-15 -2045 ((-167 (-372)) (-400 (-923 |#1|)))) (-15 -2045 ((-167 (-372)) (-400 (-923 |#1|)) (-892))) (-15 -2045 ((-167 (-372)) (-400 (-923 (-167 |#1|))))) (-15 -2045 ((-167 (-372)) (-400 (-923 (-167 |#1|))) (-892))) (IF (|has| |#1| (-823)) (PROGN (-15 -1618 ((-372) (-309 |#1|))) (-15 -1618 ((-372) (-309 |#1|) (-892))) (-15 -2045 ((-167 (-372)) (-309 |#1|))) (-15 -2045 ((-167 (-372)) (-309 |#1|) (-892))) (-15 -2045 ((-167 (-372)) (-309 (-167 |#1|)))) (-15 -2045 ((-167 (-372)) (-309 (-167 |#1|)) (-892)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-170)) (PROGN (-15 -1575 ((-3 (-167 (-372)) "failed") (-923 (-167 |#1|)))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-923 (-167 |#1|)) (-892)))) |%noBranch|) (IF (|has| |#1| (-1018)) (PROGN (-15 -1844 ((-3 (-372) "failed") (-923 |#1|))) (-15 -1844 ((-3 (-372) "failed") (-923 |#1|) (-892))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-923 |#1|))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-923 |#1|) (-892)))) |%noBranch|) (IF (|has| |#1| (-541)) (PROGN (-15 -1844 ((-3 (-372) "failed") (-400 (-923 |#1|)))) (-15 -1844 ((-3 (-372) "failed") (-400 (-923 |#1|)) (-892))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-400 (-923 |#1|)))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-400 (-923 |#1|)) (-892))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-400 (-923 (-167 |#1|))))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-400 (-923 (-167 |#1|))) (-892))) (IF (|has| |#1| (-823)) (PROGN (-15 -1844 ((-3 (-372) "failed") (-309 |#1|))) (-15 -1844 ((-3 (-372) "failed") (-309 |#1|) (-892))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-309 |#1|))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-309 |#1|) (-892))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-309 (-167 |#1|)))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-309 (-167 |#1|)) (-892)))) |%noBranch|)) |%noBranch|)) (-594 (-372))) (T -761))
-((-1575 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-309 (-167 *5))) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-823)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-1575 (*1 *2 *3) (|partial| -12 (-5 *3 (-309 (-167 *4))) (-4 *4 (-541)) (-4 *4 (-823)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-1575 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-309 *5)) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-823)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-1575 (*1 *2 *3) (|partial| -12 (-5 *3 (-309 *4)) (-4 *4 (-541)) (-4 *4 (-823)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-1844 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-309 *5)) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-823)) (-4 *5 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *5)))) (-1844 (*1 *2 *3) (|partial| -12 (-5 *3 (-309 *4)) (-4 *4 (-541)) (-4 *4 (-823)) (-4 *4 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *4)))) (-1575 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-400 (-923 (-167 *5)))) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-1575 (*1 *2 *3) (|partial| -12 (-5 *3 (-400 (-923 (-167 *4)))) (-4 *4 (-541)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-1575 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-1575 (*1 *2 *3) (|partial| -12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-1844 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *5)))) (-1844 (*1 *2 *3) (|partial| -12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541)) (-4 *4 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *4)))) (-1575 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-923 *5)) (-5 *4 (-892)) (-4 *5 (-1018)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-1575 (*1 *2 *3) (|partial| -12 (-5 *3 (-923 *4)) (-4 *4 (-1018)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-1844 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-923 *5)) (-5 *4 (-892)) (-4 *5 (-1018)) (-4 *5 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *5)))) (-1844 (*1 *2 *3) (|partial| -12 (-5 *3 (-923 *4)) (-4 *4 (-1018)) (-4 *4 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *4)))) (-1575 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-923 (-167 *5))) (-5 *4 (-892)) (-4 *5 (-170)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-1575 (*1 *2 *3) (|partial| -12 (-5 *3 (-923 (-167 *4))) (-4 *4 (-170)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-2045 (*1 *2 *3 *4) (-12 (-5 *3 (-309 (-167 *5))) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-823)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2045 (*1 *2 *3) (-12 (-5 *3 (-309 (-167 *4))) (-4 *4 (-541)) (-4 *4 (-823)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-2045 (*1 *2 *3 *4) (-12 (-5 *3 (-309 *5)) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-823)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2045 (*1 *2 *3) (-12 (-5 *3 (-309 *4)) (-4 *4 (-541)) (-4 *4 (-823)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-1618 (*1 *2 *3 *4) (-12 (-5 *3 (-309 *5)) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-823)) (-4 *5 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *5)))) (-1618 (*1 *2 *3) (-12 (-5 *3 (-309 *4)) (-4 *4 (-541)) (-4 *4 (-823)) (-4 *4 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *4)))) (-2045 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 (-167 *5)))) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2045 (*1 *2 *3) (-12 (-5 *3 (-400 (-923 (-167 *4)))) (-4 *4 (-541)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-2045 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2045 (*1 *2 *3) (-12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-1618 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *5)))) (-1618 (*1 *2 *3) (-12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541)) (-4 *4 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *4)))) (-2045 (*1 *2 *3 *4) (-12 (-5 *3 (-923 *5)) (-5 *4 (-892)) (-4 *5 (-1018)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2045 (*1 *2 *3) (-12 (-5 *3 (-923 *4)) (-4 *4 (-1018)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-1618 (*1 *2 *3 *4) (-12 (-5 *3 (-923 *5)) (-5 *4 (-892)) (-4 *5 (-1018)) (-4 *5 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *5)))) (-1618 (*1 *2 *3) (-12 (-5 *3 (-923 *4)) (-4 *4 (-1018)) (-4 *4 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *4)))) (-2045 (*1 *2 *3 *4) (-12 (-5 *3 (-923 (-167 *5))) (-5 *4 (-892)) (-4 *5 (-170)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2045 (*1 *2 *3) (-12 (-5 *3 (-923 (-167 *4))) (-4 *4 (-170)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-2045 (*1 *2 *3 *4) (-12 (-5 *3 (-167 *5)) (-5 *4 (-892)) (-4 *5 (-170)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2045 (*1 *2 *3) (-12 (-5 *3 (-167 *4)) (-4 *4 (-170)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-2045 (*1 *2 *3 *4) (-12 (-5 *4 (-892)) (-5 *2 (-167 (-372))) (-5 *1 (-761 *3)) (-4 *3 (-594 (-372))))) (-2045 (*1 *2 *3) (-12 (-5 *2 (-167 (-372))) (-5 *1 (-761 *3)) (-4 *3 (-594 (-372))))) (-1618 (*1 *2 *3 *4) (-12 (-5 *4 (-892)) (-5 *2 (-372)) (-5 *1 (-761 *3)) (-4 *3 (-594 *2)))) (-1618 (*1 *2 *3) (-12 (-5 *2 (-372)) (-5 *1 (-761 *3)) (-4 *3 (-594 *2)))))
-(-10 -7 (-15 -1618 ((-372) |#1|)) (-15 -1618 ((-372) |#1| (-892))) (-15 -2045 ((-167 (-372)) |#1|)) (-15 -2045 ((-167 (-372)) |#1| (-892))) (IF (|has| |#1| (-170)) (PROGN (-15 -2045 ((-167 (-372)) (-167 |#1|))) (-15 -2045 ((-167 (-372)) (-167 |#1|) (-892))) (-15 -2045 ((-167 (-372)) (-923 (-167 |#1|)))) (-15 -2045 ((-167 (-372)) (-923 (-167 |#1|)) (-892)))) |%noBranch|) (IF (|has| |#1| (-1018)) (PROGN (-15 -1618 ((-372) (-923 |#1|))) (-15 -1618 ((-372) (-923 |#1|) (-892))) (-15 -2045 ((-167 (-372)) (-923 |#1|))) (-15 -2045 ((-167 (-372)) (-923 |#1|) (-892)))) |%noBranch|) (IF (|has| |#1| (-541)) (PROGN (-15 -1618 ((-372) (-400 (-923 |#1|)))) (-15 -1618 ((-372) (-400 (-923 |#1|)) (-892))) (-15 -2045 ((-167 (-372)) (-400 (-923 |#1|)))) (-15 -2045 ((-167 (-372)) (-400 (-923 |#1|)) (-892))) (-15 -2045 ((-167 (-372)) (-400 (-923 (-167 |#1|))))) (-15 -2045 ((-167 (-372)) (-400 (-923 (-167 |#1|))) (-892))) (IF (|has| |#1| (-823)) (PROGN (-15 -1618 ((-372) (-309 |#1|))) (-15 -1618 ((-372) (-309 |#1|) (-892))) (-15 -2045 ((-167 (-372)) (-309 |#1|))) (-15 -2045 ((-167 (-372)) (-309 |#1|) (-892))) (-15 -2045 ((-167 (-372)) (-309 (-167 |#1|)))) (-15 -2045 ((-167 (-372)) (-309 (-167 |#1|)) (-892)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-170)) (PROGN (-15 -1575 ((-3 (-167 (-372)) "failed") (-923 (-167 |#1|)))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-923 (-167 |#1|)) (-892)))) |%noBranch|) (IF (|has| |#1| (-1018)) (PROGN (-15 -1844 ((-3 (-372) "failed") (-923 |#1|))) (-15 -1844 ((-3 (-372) "failed") (-923 |#1|) (-892))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-923 |#1|))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-923 |#1|) (-892)))) |%noBranch|) (IF (|has| |#1| (-541)) (PROGN (-15 -1844 ((-3 (-372) "failed") (-400 (-923 |#1|)))) (-15 -1844 ((-3 (-372) "failed") (-400 (-923 |#1|)) (-892))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-400 (-923 |#1|)))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-400 (-923 |#1|)) (-892))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-400 (-923 (-167 |#1|))))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-400 (-923 (-167 |#1|))) (-892))) (IF (|has| |#1| (-823)) (PROGN (-15 -1844 ((-3 (-372) "failed") (-309 |#1|))) (-15 -1844 ((-3 (-372) "failed") (-309 |#1|) (-892))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-309 |#1|))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-309 |#1|) (-892))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-309 (-167 |#1|)))) (-15 -1575 ((-3 (-167 (-372)) "failed") (-309 (-167 |#1|)) (-892)))) |%noBranch|)) |%noBranch|))
-((-3393 (((-892) (-1125)) 66)) (-2975 (((-3 (-372) "failed") (-1125)) 33)) (-1958 (((-372) (-1125)) 31)) (-3703 (((-892) (-1125)) 54)) (-3096 (((-1125) (-892)) 56)) (-3747 (((-1125) (-892)) 53)))
-(((-762) (-10 -7 (-15 -3747 ((-1125) (-892))) (-15 -3703 ((-892) (-1125))) (-15 -3096 ((-1125) (-892))) (-15 -3393 ((-892) (-1125))) (-15 -1958 ((-372) (-1125))) (-15 -2975 ((-3 (-372) "failed") (-1125))))) (T -762))
-((-2975 (*1 *2 *3) (|partial| -12 (-5 *3 (-1125)) (-5 *2 (-372)) (-5 *1 (-762)))) (-1958 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-372)) (-5 *1 (-762)))) (-3393 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-892)) (-5 *1 (-762)))) (-3096 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1125)) (-5 *1 (-762)))) (-3703 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-892)) (-5 *1 (-762)))) (-3747 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1125)) (-5 *1 (-762)))))
-(-10 -7 (-15 -3747 ((-1125) (-892))) (-15 -3703 ((-892) (-1125))) (-15 -3096 ((-1125) (-892))) (-15 -3393 ((-892) (-1125))) (-15 -1958 ((-372) (-1125))) (-15 -2975 ((-3 (-372) "failed") (-1125))))
-((-3834 (((-112) $ $) 7)) (-3868 (((-1006) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 15) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 13)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 16) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 14)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-2389 (((-112) $ $) 6)))
+(((-34) . T) ((-101) . T) ((-593 (-621 |#4|)) . T) ((-593 (-834)) . T) ((-149 |#4|) . T) ((-594 (-525)) |has| |#4| (-594 (-525))) ((-302 |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))) ((-481 |#4|) . T) ((-505 |#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))) ((-947 |#1| |#2| |#3| |#4|) . T) ((-1038 |#1| |#2| |#3| |#4|) . T) ((-1066) . T) ((-1172 |#1| |#2| |#3| |#4|) . T) ((-1179) . T))
+((-2177 (((-3 (-372) "failed") (-309 |#1|) (-892)) 62 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-3 (-372) "failed") (-309 |#1|)) 54 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-3 (-372) "failed") (-400 (-923 |#1|)) (-892)) 41 (|has| |#1| (-541))) (((-3 (-372) "failed") (-400 (-923 |#1|))) 40 (|has| |#1| (-541))) (((-3 (-372) "failed") (-923 |#1|) (-892)) 31 (|has| |#1| (-1018))) (((-3 (-372) "failed") (-923 |#1|)) 30 (|has| |#1| (-1018)))) (-1616 (((-372) (-309 |#1|) (-892)) 99 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-372) (-309 |#1|)) 94 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-372) (-400 (-923 |#1|)) (-892)) 91 (|has| |#1| (-541))) (((-372) (-400 (-923 |#1|))) 90 (|has| |#1| (-541))) (((-372) (-923 |#1|) (-892)) 86 (|has| |#1| (-1018))) (((-372) (-923 |#1|)) 85 (|has| |#1| (-1018))) (((-372) |#1| (-892)) 76) (((-372) |#1|) 22)) (-2451 (((-3 (-167 (-372)) "failed") (-309 (-167 |#1|)) (-892)) 71 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-3 (-167 (-372)) "failed") (-309 (-167 |#1|))) 70 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-3 (-167 (-372)) "failed") (-309 |#1|) (-892)) 63 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-3 (-167 (-372)) "failed") (-309 |#1|)) 61 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-3 (-167 (-372)) "failed") (-400 (-923 (-167 |#1|))) (-892)) 46 (|has| |#1| (-541))) (((-3 (-167 (-372)) "failed") (-400 (-923 (-167 |#1|)))) 45 (|has| |#1| (-541))) (((-3 (-167 (-372)) "failed") (-400 (-923 |#1|)) (-892)) 39 (|has| |#1| (-541))) (((-3 (-167 (-372)) "failed") (-400 (-923 |#1|))) 38 (|has| |#1| (-541))) (((-3 (-167 (-372)) "failed") (-923 |#1|) (-892)) 28 (|has| |#1| (-1018))) (((-3 (-167 (-372)) "failed") (-923 |#1|)) 26 (|has| |#1| (-1018))) (((-3 (-167 (-372)) "failed") (-923 (-167 |#1|)) (-892)) 18 (|has| |#1| (-170))) (((-3 (-167 (-372)) "failed") (-923 (-167 |#1|))) 15 (|has| |#1| (-170)))) (-2043 (((-167 (-372)) (-309 (-167 |#1|)) (-892)) 102 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-167 (-372)) (-309 (-167 |#1|))) 101 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-167 (-372)) (-309 |#1|) (-892)) 100 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-167 (-372)) (-309 |#1|)) 98 (-12 (|has| |#1| (-541)) (|has| |#1| (-823)))) (((-167 (-372)) (-400 (-923 (-167 |#1|))) (-892)) 93 (|has| |#1| (-541))) (((-167 (-372)) (-400 (-923 (-167 |#1|)))) 92 (|has| |#1| (-541))) (((-167 (-372)) (-400 (-923 |#1|)) (-892)) 89 (|has| |#1| (-541))) (((-167 (-372)) (-400 (-923 |#1|))) 88 (|has| |#1| (-541))) (((-167 (-372)) (-923 |#1|) (-892)) 84 (|has| |#1| (-1018))) (((-167 (-372)) (-923 |#1|)) 83 (|has| |#1| (-1018))) (((-167 (-372)) (-923 (-167 |#1|)) (-892)) 78 (|has| |#1| (-170))) (((-167 (-372)) (-923 (-167 |#1|))) 77 (|has| |#1| (-170))) (((-167 (-372)) (-167 |#1|) (-892)) 80 (|has| |#1| (-170))) (((-167 (-372)) (-167 |#1|)) 79 (|has| |#1| (-170))) (((-167 (-372)) |#1| (-892)) 27) (((-167 (-372)) |#1|) 25)))
+(((-761 |#1|) (-10 -7 (-15 -1616 ((-372) |#1|)) (-15 -1616 ((-372) |#1| (-892))) (-15 -2043 ((-167 (-372)) |#1|)) (-15 -2043 ((-167 (-372)) |#1| (-892))) (IF (|has| |#1| (-170)) (PROGN (-15 -2043 ((-167 (-372)) (-167 |#1|))) (-15 -2043 ((-167 (-372)) (-167 |#1|) (-892))) (-15 -2043 ((-167 (-372)) (-923 (-167 |#1|)))) (-15 -2043 ((-167 (-372)) (-923 (-167 |#1|)) (-892)))) |%noBranch|) (IF (|has| |#1| (-1018)) (PROGN (-15 -1616 ((-372) (-923 |#1|))) (-15 -1616 ((-372) (-923 |#1|) (-892))) (-15 -2043 ((-167 (-372)) (-923 |#1|))) (-15 -2043 ((-167 (-372)) (-923 |#1|) (-892)))) |%noBranch|) (IF (|has| |#1| (-541)) (PROGN (-15 -1616 ((-372) (-400 (-923 |#1|)))) (-15 -1616 ((-372) (-400 (-923 |#1|)) (-892))) (-15 -2043 ((-167 (-372)) (-400 (-923 |#1|)))) (-15 -2043 ((-167 (-372)) (-400 (-923 |#1|)) (-892))) (-15 -2043 ((-167 (-372)) (-400 (-923 (-167 |#1|))))) (-15 -2043 ((-167 (-372)) (-400 (-923 (-167 |#1|))) (-892))) (IF (|has| |#1| (-823)) (PROGN (-15 -1616 ((-372) (-309 |#1|))) (-15 -1616 ((-372) (-309 |#1|) (-892))) (-15 -2043 ((-167 (-372)) (-309 |#1|))) (-15 -2043 ((-167 (-372)) (-309 |#1|) (-892))) (-15 -2043 ((-167 (-372)) (-309 (-167 |#1|)))) (-15 -2043 ((-167 (-372)) (-309 (-167 |#1|)) (-892)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-170)) (PROGN (-15 -2451 ((-3 (-167 (-372)) "failed") (-923 (-167 |#1|)))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-923 (-167 |#1|)) (-892)))) |%noBranch|) (IF (|has| |#1| (-1018)) (PROGN (-15 -2177 ((-3 (-372) "failed") (-923 |#1|))) (-15 -2177 ((-3 (-372) "failed") (-923 |#1|) (-892))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-923 |#1|))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-923 |#1|) (-892)))) |%noBranch|) (IF (|has| |#1| (-541)) (PROGN (-15 -2177 ((-3 (-372) "failed") (-400 (-923 |#1|)))) (-15 -2177 ((-3 (-372) "failed") (-400 (-923 |#1|)) (-892))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-400 (-923 |#1|)))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-400 (-923 |#1|)) (-892))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-400 (-923 (-167 |#1|))))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-400 (-923 (-167 |#1|))) (-892))) (IF (|has| |#1| (-823)) (PROGN (-15 -2177 ((-3 (-372) "failed") (-309 |#1|))) (-15 -2177 ((-3 (-372) "failed") (-309 |#1|) (-892))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-309 |#1|))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-309 |#1|) (-892))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-309 (-167 |#1|)))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-309 (-167 |#1|)) (-892)))) |%noBranch|)) |%noBranch|)) (-594 (-372))) (T -761))
+((-2451 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-309 (-167 *5))) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-823)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2451 (*1 *2 *3) (|partial| -12 (-5 *3 (-309 (-167 *4))) (-4 *4 (-541)) (-4 *4 (-823)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-2451 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-309 *5)) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-823)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2451 (*1 *2 *3) (|partial| -12 (-5 *3 (-309 *4)) (-4 *4 (-541)) (-4 *4 (-823)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-2177 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-309 *5)) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-823)) (-4 *5 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *5)))) (-2177 (*1 *2 *3) (|partial| -12 (-5 *3 (-309 *4)) (-4 *4 (-541)) (-4 *4 (-823)) (-4 *4 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *4)))) (-2451 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-400 (-923 (-167 *5)))) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2451 (*1 *2 *3) (|partial| -12 (-5 *3 (-400 (-923 (-167 *4)))) (-4 *4 (-541)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-2451 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2451 (*1 *2 *3) (|partial| -12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-2177 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *5)))) (-2177 (*1 *2 *3) (|partial| -12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541)) (-4 *4 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *4)))) (-2451 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-923 *5)) (-5 *4 (-892)) (-4 *5 (-1018)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2451 (*1 *2 *3) (|partial| -12 (-5 *3 (-923 *4)) (-4 *4 (-1018)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-2177 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-923 *5)) (-5 *4 (-892)) (-4 *5 (-1018)) (-4 *5 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *5)))) (-2177 (*1 *2 *3) (|partial| -12 (-5 *3 (-923 *4)) (-4 *4 (-1018)) (-4 *4 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *4)))) (-2451 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-923 (-167 *5))) (-5 *4 (-892)) (-4 *5 (-170)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2451 (*1 *2 *3) (|partial| -12 (-5 *3 (-923 (-167 *4))) (-4 *4 (-170)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-2043 (*1 *2 *3 *4) (-12 (-5 *3 (-309 (-167 *5))) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-823)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2043 (*1 *2 *3) (-12 (-5 *3 (-309 (-167 *4))) (-4 *4 (-541)) (-4 *4 (-823)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-2043 (*1 *2 *3 *4) (-12 (-5 *3 (-309 *5)) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-823)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2043 (*1 *2 *3) (-12 (-5 *3 (-309 *4)) (-4 *4 (-541)) (-4 *4 (-823)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-1616 (*1 *2 *3 *4) (-12 (-5 *3 (-309 *5)) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-823)) (-4 *5 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *5)))) (-1616 (*1 *2 *3) (-12 (-5 *3 (-309 *4)) (-4 *4 (-541)) (-4 *4 (-823)) (-4 *4 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *4)))) (-2043 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 (-167 *5)))) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2043 (*1 *2 *3) (-12 (-5 *3 (-400 (-923 (-167 *4)))) (-4 *4 (-541)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-2043 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2043 (*1 *2 *3) (-12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-1616 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *5)))) (-1616 (*1 *2 *3) (-12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541)) (-4 *4 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *4)))) (-2043 (*1 *2 *3 *4) (-12 (-5 *3 (-923 *5)) (-5 *4 (-892)) (-4 *5 (-1018)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2043 (*1 *2 *3) (-12 (-5 *3 (-923 *4)) (-4 *4 (-1018)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-1616 (*1 *2 *3 *4) (-12 (-5 *3 (-923 *5)) (-5 *4 (-892)) (-4 *5 (-1018)) (-4 *5 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *5)))) (-1616 (*1 *2 *3) (-12 (-5 *3 (-923 *4)) (-4 *4 (-1018)) (-4 *4 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *4)))) (-2043 (*1 *2 *3 *4) (-12 (-5 *3 (-923 (-167 *5))) (-5 *4 (-892)) (-4 *5 (-170)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2043 (*1 *2 *3) (-12 (-5 *3 (-923 (-167 *4))) (-4 *4 (-170)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-2043 (*1 *2 *3 *4) (-12 (-5 *3 (-167 *5)) (-5 *4 (-892)) (-4 *5 (-170)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5)))) (-2043 (*1 *2 *3) (-12 (-5 *3 (-167 *4)) (-4 *4 (-170)) (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4)))) (-2043 (*1 *2 *3 *4) (-12 (-5 *4 (-892)) (-5 *2 (-167 (-372))) (-5 *1 (-761 *3)) (-4 *3 (-594 (-372))))) (-2043 (*1 *2 *3) (-12 (-5 *2 (-167 (-372))) (-5 *1 (-761 *3)) (-4 *3 (-594 (-372))))) (-1616 (*1 *2 *3 *4) (-12 (-5 *4 (-892)) (-5 *2 (-372)) (-5 *1 (-761 *3)) (-4 *3 (-594 *2)))) (-1616 (*1 *2 *3) (-12 (-5 *2 (-372)) (-5 *1 (-761 *3)) (-4 *3 (-594 *2)))))
+(-10 -7 (-15 -1616 ((-372) |#1|)) (-15 -1616 ((-372) |#1| (-892))) (-15 -2043 ((-167 (-372)) |#1|)) (-15 -2043 ((-167 (-372)) |#1| (-892))) (IF (|has| |#1| (-170)) (PROGN (-15 -2043 ((-167 (-372)) (-167 |#1|))) (-15 -2043 ((-167 (-372)) (-167 |#1|) (-892))) (-15 -2043 ((-167 (-372)) (-923 (-167 |#1|)))) (-15 -2043 ((-167 (-372)) (-923 (-167 |#1|)) (-892)))) |%noBranch|) (IF (|has| |#1| (-1018)) (PROGN (-15 -1616 ((-372) (-923 |#1|))) (-15 -1616 ((-372) (-923 |#1|) (-892))) (-15 -2043 ((-167 (-372)) (-923 |#1|))) (-15 -2043 ((-167 (-372)) (-923 |#1|) (-892)))) |%noBranch|) (IF (|has| |#1| (-541)) (PROGN (-15 -1616 ((-372) (-400 (-923 |#1|)))) (-15 -1616 ((-372) (-400 (-923 |#1|)) (-892))) (-15 -2043 ((-167 (-372)) (-400 (-923 |#1|)))) (-15 -2043 ((-167 (-372)) (-400 (-923 |#1|)) (-892))) (-15 -2043 ((-167 (-372)) (-400 (-923 (-167 |#1|))))) (-15 -2043 ((-167 (-372)) (-400 (-923 (-167 |#1|))) (-892))) (IF (|has| |#1| (-823)) (PROGN (-15 -1616 ((-372) (-309 |#1|))) (-15 -1616 ((-372) (-309 |#1|) (-892))) (-15 -2043 ((-167 (-372)) (-309 |#1|))) (-15 -2043 ((-167 (-372)) (-309 |#1|) (-892))) (-15 -2043 ((-167 (-372)) (-309 (-167 |#1|)))) (-15 -2043 ((-167 (-372)) (-309 (-167 |#1|)) (-892)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-170)) (PROGN (-15 -2451 ((-3 (-167 (-372)) "failed") (-923 (-167 |#1|)))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-923 (-167 |#1|)) (-892)))) |%noBranch|) (IF (|has| |#1| (-1018)) (PROGN (-15 -2177 ((-3 (-372) "failed") (-923 |#1|))) (-15 -2177 ((-3 (-372) "failed") (-923 |#1|) (-892))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-923 |#1|))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-923 |#1|) (-892)))) |%noBranch|) (IF (|has| |#1| (-541)) (PROGN (-15 -2177 ((-3 (-372) "failed") (-400 (-923 |#1|)))) (-15 -2177 ((-3 (-372) "failed") (-400 (-923 |#1|)) (-892))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-400 (-923 |#1|)))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-400 (-923 |#1|)) (-892))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-400 (-923 (-167 |#1|))))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-400 (-923 (-167 |#1|))) (-892))) (IF (|has| |#1| (-823)) (PROGN (-15 -2177 ((-3 (-372) "failed") (-309 |#1|))) (-15 -2177 ((-3 (-372) "failed") (-309 |#1|) (-892))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-309 |#1|))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-309 |#1|) (-892))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-309 (-167 |#1|)))) (-15 -2451 ((-3 (-167 (-372)) "failed") (-309 (-167 |#1|)) (-892)))) |%noBranch|)) |%noBranch|))
+((-3136 (((-892) (-1124)) 66)) (-3839 (((-3 (-372) "failed") (-1124)) 33)) (-3924 (((-372) (-1124)) 31)) (-4172 (((-892) (-1124)) 54)) (-4234 (((-1124) (-892)) 56)) (-3640 (((-1124) (-892)) 53)))
+(((-762) (-10 -7 (-15 -3640 ((-1124) (-892))) (-15 -4172 ((-892) (-1124))) (-15 -4234 ((-1124) (-892))) (-15 -3136 ((-892) (-1124))) (-15 -3924 ((-372) (-1124))) (-15 -3839 ((-3 (-372) "failed") (-1124))))) (T -762))
+((-3839 (*1 *2 *3) (|partial| -12 (-5 *3 (-1124)) (-5 *2 (-372)) (-5 *1 (-762)))) (-3924 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-372)) (-5 *1 (-762)))) (-3136 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-892)) (-5 *1 (-762)))) (-4234 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1124)) (-5 *1 (-762)))) (-4172 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-892)) (-5 *1 (-762)))) (-3640 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1124)) (-5 *1 (-762)))))
+(-10 -7 (-15 -3640 ((-1124) (-892))) (-15 -4172 ((-892) (-1124))) (-15 -4234 ((-1124) (-892))) (-15 -3136 ((-892) (-1124))) (-15 -3924 ((-372) (-1124))) (-15 -3839 ((-3 (-372) "failed") (-1124))))
+((-3832 (((-112) $ $) 7)) (-1617 (((-1006) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 15) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)) 13)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 16) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 14)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-2387 (((-112) $ $) 6)))
(((-763) (-138)) (T -763))
-((-1391 (*1 *2 *3 *4) (-12 (-4 *1 (-763)) (-5 *3 (-1030)) (-5 *4 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006)))))) (-3868 (*1 *2 *3 *2) (-12 (-4 *1 (-763)) (-5 *2 (-1006)) (-5 *3 (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))))) (-1391 (*1 *2 *3 *4) (-12 (-4 *1 (-763)) (-5 *3 (-1030)) (-5 *4 (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006)))))) (-3868 (*1 *2 *3 *2) (-12 (-4 *1 (-763)) (-5 *2 (-1006)) (-5 *3 (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))))))
-(-13 (-1067) (-10 -7 (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3868 ((-1006) (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219))) (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006))) (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3868 ((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-3508 (((-1231) (-1226 (-372)) (-549) (-372) (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3043 (-372))) (-372) (-1226 (-372)) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372))) 44) (((-1231) (-1226 (-372)) (-549) (-372) (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3043 (-372))) (-372) (-1226 (-372)) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372))) 43)) (-3988 (((-1231) (-1226 (-372)) (-549) (-372) (-372) (-549) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372))) 50)) (-1280 (((-1231) (-1226 (-372)) (-549) (-372) (-372) (-372) (-372) (-549) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372))) 41)) (-1931 (((-1231) (-1226 (-372)) (-549) (-372) (-372) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372))) 52) (((-1231) (-1226 (-372)) (-549) (-372) (-372) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372))) 51)))
-(((-764) (-10 -7 (-15 -1931 ((-1231) (-1226 (-372)) (-549) (-372) (-372) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372)))) (-15 -1931 ((-1231) (-1226 (-372)) (-549) (-372) (-372) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)))) (-15 -1280 ((-1231) (-1226 (-372)) (-549) (-372) (-372) (-372) (-372) (-549) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372)))) (-15 -3508 ((-1231) (-1226 (-372)) (-549) (-372) (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3043 (-372))) (-372) (-1226 (-372)) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372)))) (-15 -3508 ((-1231) (-1226 (-372)) (-549) (-372) (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3043 (-372))) (-372) (-1226 (-372)) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)))) (-15 -3988 ((-1231) (-1226 (-372)) (-549) (-372) (-372) (-549) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372)))))) (T -764))
-((-3988 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *4 (-549)) (-5 *6 (-1 (-1231) (-1226 *5) (-1226 *5) (-372))) (-5 *3 (-1226 (-372))) (-5 *5 (-372)) (-5 *2 (-1231)) (-5 *1 (-764)))) (-3508 (*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3) (-12 (-5 *4 (-549)) (-5 *6 (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3043 (-372)))) (-5 *7 (-1 (-1231) (-1226 *5) (-1226 *5) (-372))) (-5 *3 (-1226 (-372))) (-5 *5 (-372)) (-5 *2 (-1231)) (-5 *1 (-764)))) (-3508 (*1 *2 *3 *4 *5 *6 *5 *3 *7) (-12 (-5 *4 (-549)) (-5 *6 (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3043 (-372)))) (-5 *7 (-1 (-1231) (-1226 *5) (-1226 *5) (-372))) (-5 *3 (-1226 (-372))) (-5 *5 (-372)) (-5 *2 (-1231)) (-5 *1 (-764)))) (-1280 (*1 *2 *3 *4 *5 *5 *5 *5 *4 *6) (-12 (-5 *4 (-549)) (-5 *6 (-1 (-1231) (-1226 *5) (-1226 *5) (-372))) (-5 *3 (-1226 (-372))) (-5 *5 (-372)) (-5 *2 (-1231)) (-5 *1 (-764)))) (-1931 (*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3) (-12 (-5 *4 (-549)) (-5 *6 (-1 (-1231) (-1226 *5) (-1226 *5) (-372))) (-5 *3 (-1226 (-372))) (-5 *5 (-372)) (-5 *2 (-1231)) (-5 *1 (-764)))) (-1931 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-549)) (-5 *6 (-1 (-1231) (-1226 *5) (-1226 *5) (-372))) (-5 *3 (-1226 (-372))) (-5 *5 (-372)) (-5 *2 (-1231)) (-5 *1 (-764)))))
-(-10 -7 (-15 -1931 ((-1231) (-1226 (-372)) (-549) (-372) (-372) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372)))) (-15 -1931 ((-1231) (-1226 (-372)) (-549) (-372) (-372) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)))) (-15 -1280 ((-1231) (-1226 (-372)) (-549) (-372) (-372) (-372) (-372) (-549) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372)))) (-15 -3508 ((-1231) (-1226 (-372)) (-549) (-372) (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3043 (-372))) (-372) (-1226 (-372)) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372)))) (-15 -3508 ((-1231) (-1226 (-372)) (-549) (-372) (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3043 (-372))) (-372) (-1226 (-372)) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)) (-1226 (-372)))) (-15 -3988 ((-1231) (-1226 (-372)) (-549) (-372) (-372) (-549) (-1 (-1231) (-1226 (-372)) (-1226 (-372)) (-372)))))
-((-1406 (((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549)) 53)) (-3523 (((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549)) 31)) (-3729 (((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549)) 52)) (-3744 (((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549)) 29)) (-4033 (((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549)) 51)) (-3197 (((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549)) 19)) (-1463 (((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549)) 32)) (-4026 (((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549)) 30)) (-3242 (((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549)) 28)))
-(((-765) (-10 -7 (-15 -3242 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549))) (-15 -4026 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549))) (-15 -1463 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549))) (-15 -3197 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -3744 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -3523 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -4033 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -3729 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -1406 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))))) (T -765))
-((-1406 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))) (-3729 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))) (-4033 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))) (-3523 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))) (-3744 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))) (-3197 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))) (-1463 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))) (-4026 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))) (-3242 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))))
-(-10 -7 (-15 -3242 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549))) (-15 -4026 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549))) (-15 -1463 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549))) (-15 -3197 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -3744 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -3523 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -4033 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -3729 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -1406 ((-2 (|:| -4161 (-372)) (|:| -3042 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))))
-((-3618 (((-1175 |#1|) |#1| (-219) (-549)) 46)))
-(((-766 |#1|) (-10 -7 (-15 -3618 ((-1175 |#1|) |#1| (-219) (-549)))) (-945)) (T -766))
-((-3618 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-219)) (-5 *5 (-549)) (-5 *2 (-1175 *3)) (-5 *1 (-766 *3)) (-4 *3 (-945)))))
-(-10 -7 (-15 -3618 ((-1175 |#1|) |#1| (-219) (-549))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 24)) (-2001 (((-3 $ "failed") $ $) 26)) (-1682 (($) 23 T CONST)) (-2863 (($ $ $) 13)) (-3575 (($ $ $) 14)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-3276 (($) 22 T CONST)) (-2448 (((-112) $ $) 16)) (-2425 (((-112) $ $) 17)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 15)) (-2412 (((-112) $ $) 18)) (-2500 (($ $ $) 28) (($ $) 27)) (-2486 (($ $ $) 20)) (* (($ (-892) $) 21) (($ (-747) $) 25) (($ (-549) $) 29)))
+((-3947 (*1 *2 *3 *4) (-12 (-4 *1 (-763)) (-5 *3 (-1030)) (-5 *4 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006)))))) (-1617 (*1 *2 *3 *2) (-12 (-4 *1 (-763)) (-5 *2 (-1006)) (-5 *3 (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))))) (-3947 (*1 *2 *3 *4) (-12 (-4 *1 (-763)) (-5 *3 (-1030)) (-5 *4 (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006)))))) (-1617 (*1 *2 *3 *2) (-12 (-4 *1 (-763)) (-5 *2 (-1006)) (-5 *3 (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))))))
+(-13 (-1066) (-10 -7 (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -1617 ((-1006) (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219))) (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006))) (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)) (|:| |extra| (-1006))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -1617 ((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) (-1006)))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-1718 (((-1230) (-1225 (-372)) (-549) (-372) (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3042 (-372))) (-372) (-1225 (-372)) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372))) 44) (((-1230) (-1225 (-372)) (-549) (-372) (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3042 (-372))) (-372) (-1225 (-372)) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372))) 43)) (-1440 (((-1230) (-1225 (-372)) (-549) (-372) (-372) (-549) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372))) 50)) (-1271 (((-1230) (-1225 (-372)) (-549) (-372) (-372) (-372) (-372) (-549) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372))) 41)) (-1360 (((-1230) (-1225 (-372)) (-549) (-372) (-372) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372))) 52) (((-1230) (-1225 (-372)) (-549) (-372) (-372) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372))) 51)))
+(((-764) (-10 -7 (-15 -1360 ((-1230) (-1225 (-372)) (-549) (-372) (-372) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372)))) (-15 -1360 ((-1230) (-1225 (-372)) (-549) (-372) (-372) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)))) (-15 -1271 ((-1230) (-1225 (-372)) (-549) (-372) (-372) (-372) (-372) (-549) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372)))) (-15 -1718 ((-1230) (-1225 (-372)) (-549) (-372) (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3042 (-372))) (-372) (-1225 (-372)) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372)))) (-15 -1718 ((-1230) (-1225 (-372)) (-549) (-372) (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3042 (-372))) (-372) (-1225 (-372)) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)))) (-15 -1440 ((-1230) (-1225 (-372)) (-549) (-372) (-372) (-549) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372)))))) (T -764))
+((-1440 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *4 (-549)) (-5 *6 (-1 (-1230) (-1225 *5) (-1225 *5) (-372))) (-5 *3 (-1225 (-372))) (-5 *5 (-372)) (-5 *2 (-1230)) (-5 *1 (-764)))) (-1718 (*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3) (-12 (-5 *4 (-549)) (-5 *6 (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3042 (-372)))) (-5 *7 (-1 (-1230) (-1225 *5) (-1225 *5) (-372))) (-5 *3 (-1225 (-372))) (-5 *5 (-372)) (-5 *2 (-1230)) (-5 *1 (-764)))) (-1718 (*1 *2 *3 *4 *5 *6 *5 *3 *7) (-12 (-5 *4 (-549)) (-5 *6 (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3042 (-372)))) (-5 *7 (-1 (-1230) (-1225 *5) (-1225 *5) (-372))) (-5 *3 (-1225 (-372))) (-5 *5 (-372)) (-5 *2 (-1230)) (-5 *1 (-764)))) (-1271 (*1 *2 *3 *4 *5 *5 *5 *5 *4 *6) (-12 (-5 *4 (-549)) (-5 *6 (-1 (-1230) (-1225 *5) (-1225 *5) (-372))) (-5 *3 (-1225 (-372))) (-5 *5 (-372)) (-5 *2 (-1230)) (-5 *1 (-764)))) (-1360 (*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3) (-12 (-5 *4 (-549)) (-5 *6 (-1 (-1230) (-1225 *5) (-1225 *5) (-372))) (-5 *3 (-1225 (-372))) (-5 *5 (-372)) (-5 *2 (-1230)) (-5 *1 (-764)))) (-1360 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-549)) (-5 *6 (-1 (-1230) (-1225 *5) (-1225 *5) (-372))) (-5 *3 (-1225 (-372))) (-5 *5 (-372)) (-5 *2 (-1230)) (-5 *1 (-764)))))
+(-10 -7 (-15 -1360 ((-1230) (-1225 (-372)) (-549) (-372) (-372) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372)))) (-15 -1360 ((-1230) (-1225 (-372)) (-549) (-372) (-372) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)))) (-15 -1271 ((-1230) (-1225 (-372)) (-549) (-372) (-372) (-372) (-372) (-549) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372)))) (-15 -1718 ((-1230) (-1225 (-372)) (-549) (-372) (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3042 (-372))) (-372) (-1225 (-372)) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372)))) (-15 -1718 ((-1230) (-1225 (-372)) (-549) (-372) (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3042 (-372))) (-372) (-1225 (-372)) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)) (-1225 (-372)))) (-15 -1440 ((-1230) (-1225 (-372)) (-549) (-372) (-372) (-549) (-1 (-1230) (-1225 (-372)) (-1225 (-372)) (-372)))))
+((-2835 (((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549)) 53)) (-2814 (((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549)) 31)) (-1491 (((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549)) 52)) (-3385 (((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549)) 29)) (-2989 (((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549)) 51)) (-3976 (((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549)) 19)) (-2471 (((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549)) 32)) (-3582 (((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549)) 30)) (-3261 (((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549)) 28)))
+(((-765) (-10 -7 (-15 -3261 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549))) (-15 -3582 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549))) (-15 -2471 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549))) (-15 -3976 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -3385 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -2814 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -2989 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -1491 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -2835 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))))) (T -765))
+((-2835 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))) (-1491 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))) (-2989 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))) (-2814 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))) (-3385 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))) (-3976 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))) (-2471 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))) (-3582 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))) (-3261 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372)) (-5 *2 (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549)) (|:| |success| (-112)))) (-5 *1 (-765)) (-5 *5 (-549)))))
+(-10 -7 (-15 -3261 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549))) (-15 -3582 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549))) (-15 -2471 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549) (-549))) (-15 -3976 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -3385 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -2814 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -2989 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -1491 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))) (-15 -2835 ((-2 (|:| -4160 (-372)) (|:| -3040 (-372)) (|:| |totalpts| (-549)) (|:| |success| (-112))) (-1 (-372) (-372)) (-372) (-372) (-372) (-372) (-549) (-549))))
+((-1759 (((-1174 |#1|) |#1| (-219) (-549)) 46)))
+(((-766 |#1|) (-10 -7 (-15 -1759 ((-1174 |#1|) |#1| (-219) (-549)))) (-945)) (T -766))
+((-1759 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-219)) (-5 *5 (-549)) (-5 *2 (-1174 *3)) (-5 *1 (-766 *3)) (-4 *3 (-945)))))
+(-10 -7 (-15 -1759 ((-1174 |#1|) |#1| (-219) (-549))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 24)) (-2416 (((-3 $ "failed") $ $) 26)) (-3034 (($) 23 T CONST)) (-2861 (($ $ $) 13)) (-3574 (($ $ $) 14)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-3274 (($) 22 T CONST)) (-2447 (((-112) $ $) 16)) (-2423 (((-112) $ $) 17)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 15)) (-2409 (((-112) $ $) 18)) (-2498 (($ $ $) 28) (($ $) 27)) (-2484 (($ $ $) 20)) (* (($ (-892) $) 21) (($ (-747) $) 25) (($ (-549) $) 29)))
(((-767) (-138)) (T -767))
NIL
(-13 (-771) (-21))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-768) . T) ((-770) . T) ((-771) . T) ((-823) . T) ((-1067) . T))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 24)) (-1682 (($) 23 T CONST)) (-2863 (($ $ $) 13)) (-3575 (($ $ $) 14)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-3276 (($) 22 T CONST)) (-2448 (((-112) $ $) 16)) (-2425 (((-112) $ $) 17)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 15)) (-2412 (((-112) $ $) 18)) (-2486 (($ $ $) 20)) (* (($ (-892) $) 21) (($ (-747) $) 25)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-768) . T) ((-770) . T) ((-771) . T) ((-823) . T) ((-1066) . T))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 24)) (-3034 (($) 23 T CONST)) (-2861 (($ $ $) 13)) (-3574 (($ $ $) 14)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-3274 (($) 22 T CONST)) (-2447 (((-112) $ $) 16)) (-2423 (((-112) $ $) 17)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 15)) (-2409 (((-112) $ $) 18)) (-2484 (($ $ $) 20)) (* (($ (-892) $) 21) (($ (-747) $) 25)))
(((-768) (-138)) (T -768))
NIL
(-13 (-770) (-23))
-(((-23) . T) ((-25) . T) ((-101) . T) ((-593 (-834)) . T) ((-770) . T) ((-823) . T) ((-1067) . T))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 24)) (-2861 (($ $ $) 27)) (-2001 (((-3 $ "failed") $ $) 26)) (-1682 (($) 23 T CONST)) (-2863 (($ $ $) 13)) (-3575 (($ $ $) 14)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-3276 (($) 22 T CONST)) (-2448 (((-112) $ $) 16)) (-2425 (((-112) $ $) 17)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 15)) (-2412 (((-112) $ $) 18)) (-2486 (($ $ $) 20)) (* (($ (-892) $) 21) (($ (-747) $) 25)))
+(((-23) . T) ((-25) . T) ((-101) . T) ((-593 (-834)) . T) ((-770) . T) ((-823) . T) ((-1066) . T))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 24)) (-4280 (($ $ $) 27)) (-2416 (((-3 $ "failed") $ $) 26)) (-3034 (($) 23 T CONST)) (-2861 (($ $ $) 13)) (-3574 (($ $ $) 14)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-3274 (($) 22 T CONST)) (-2447 (((-112) $ $) 16)) (-2423 (((-112) $ $) 17)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 15)) (-2409 (((-112) $ $) 18)) (-2484 (($ $ $) 20)) (* (($ (-892) $) 21) (($ (-747) $) 25)))
(((-769) (-138)) (T -769))
-((-2861 (*1 *1 *1 *1) (-4 *1 (-769))))
-(-13 (-771) (-10 -8 (-15 -2861 ($ $ $))))
-(((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-768) . T) ((-770) . T) ((-771) . T) ((-823) . T) ((-1067) . T))
-((-3834 (((-112) $ $) 7)) (-2863 (($ $ $) 13)) (-3575 (($ $ $) 14)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-2448 (((-112) $ $) 16)) (-2425 (((-112) $ $) 17)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 15)) (-2412 (((-112) $ $) 18)) (-2486 (($ $ $) 20)) (* (($ (-892) $) 21)))
+((-4280 (*1 *1 *1 *1) (-4 *1 (-769))))
+(-13 (-771) (-10 -8 (-15 -4280 ($ $ $))))
+(((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-768) . T) ((-770) . T) ((-771) . T) ((-823) . T) ((-1066) . T))
+((-3832 (((-112) $ $) 7)) (-2861 (($ $ $) 13)) (-3574 (($ $ $) 14)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-2447 (((-112) $ $) 16)) (-2423 (((-112) $ $) 17)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 15)) (-2409 (((-112) $ $) 18)) (-2484 (($ $ $) 20)) (* (($ (-892) $) 21)))
(((-770) (-138)) (T -770))
NIL
(-13 (-823) (-25))
-(((-25) . T) ((-101) . T) ((-593 (-834)) . T) ((-823) . T) ((-1067) . T))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 24)) (-2001 (((-3 $ "failed") $ $) 26)) (-1682 (($) 23 T CONST)) (-2863 (($ $ $) 13)) (-3575 (($ $ $) 14)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-3276 (($) 22 T CONST)) (-2448 (((-112) $ $) 16)) (-2425 (((-112) $ $) 17)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 15)) (-2412 (((-112) $ $) 18)) (-2486 (($ $ $) 20)) (* (($ (-892) $) 21) (($ (-747) $) 25)))
+(((-25) . T) ((-101) . T) ((-593 (-834)) . T) ((-823) . T) ((-1066) . T))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 24)) (-2416 (((-3 $ "failed") $ $) 26)) (-3034 (($) 23 T CONST)) (-2861 (($ $ $) 13)) (-3574 (($ $ $) 14)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-3274 (($) 22 T CONST)) (-2447 (((-112) $ $) 16)) (-2423 (((-112) $ $) 17)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 15)) (-2409 (((-112) $ $) 18)) (-2484 (($ $ $) 20)) (* (($ (-892) $) 21) (($ (-747) $) 25)))
(((-771) (-138)) (T -771))
NIL
(-13 (-768) (-130))
-(((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-768) . T) ((-770) . T) ((-823) . T) ((-1067) . T))
-((-1763 (((-112) $) 41)) (-2714 (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 |#2| "failed") $) 44)) (-2659 (((-549) $) NIL) (((-400 (-549)) $) NIL) ((|#2| $) 42)) (-3405 (((-3 (-400 (-549)) "failed") $) 78)) (-3679 (((-112) $) 72)) (-2532 (((-400 (-549)) $) 76)) (-3630 ((|#2| $) 26)) (-2797 (($ (-1 |#2| |#2|) $) 23)) (-1992 (($ $) 61)) (-2845 (((-525) $) 67)) (-1955 (($ $) 21)) (-3846 (((-834) $) 56) (($ (-549)) 39) (($ |#2|) 37) (($ (-400 (-549))) NIL)) (-2082 (((-747)) 10)) (-3212 ((|#2| $) 71)) (-2389 (((-112) $ $) 29)) (-2412 (((-112) $ $) 69)) (-2500 (($ $) 31) (($ $ $) NIL)) (-2486 (($ $ $) 30)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 35) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 32)))
-(((-772 |#1| |#2|) (-10 -8 (-15 -2412 ((-112) |#1| |#1|)) (-15 -2845 ((-525) |#1|)) (-15 -1992 (|#1| |#1|)) (-15 -3405 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2532 ((-400 (-549)) |#1|)) (-15 -3679 ((-112) |#1|)) (-15 -3212 (|#2| |#1|)) (-15 -3630 (|#2| |#1|)) (-15 -1955 (|#1| |#1|)) (-15 -2797 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2659 (|#2| |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -3846 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3846 (|#1| (-549))) (-15 -2082 ((-747))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 -2500 (|#1| |#1| |#1|)) (-15 -2500 (|#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 -1763 ((-112) |#1|)) (-15 * (|#1| (-892) |#1|)) (-15 -2486 (|#1| |#1| |#1|)) (-15 -3846 ((-834) |#1|)) (-15 -2389 ((-112) |#1| |#1|))) (-773 |#2|) (-170)) (T -772))
-((-2082 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-747)) (-5 *1 (-772 *3 *4)) (-4 *3 (-773 *4)))))
-(-10 -8 (-15 -2412 ((-112) |#1| |#1|)) (-15 -2845 ((-525) |#1|)) (-15 -1992 (|#1| |#1|)) (-15 -3405 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2532 ((-400 (-549)) |#1|)) (-15 -3679 ((-112) |#1|)) (-15 -3212 (|#2| |#1|)) (-15 -3630 (|#2| |#1|)) (-15 -1955 (|#1| |#1|)) (-15 -2797 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2659 (|#2| |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -3846 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3846 (|#1| (-549))) (-15 -2082 ((-747))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 -2500 (|#1| |#1| |#1|)) (-15 -2500 (|#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 -1763 ((-112) |#1|)) (-15 * (|#1| (-892) |#1|)) (-15 -2486 (|#1| |#1| |#1|)) (-15 -3846 ((-834) |#1|)) (-15 -2389 ((-112) |#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-3614 (((-747)) 51 (|has| |#1| (-361)))) (-1682 (($) 17 T CONST)) (-2714 (((-3 (-549) "failed") $) 92 (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 90 (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 88)) (-2659 (((-549) $) 93 (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) 91 (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 87)) (-2114 (((-3 $ "failed") $) 32)) (-2145 ((|#1| $) 77)) (-3405 (((-3 (-400 (-549)) "failed") $) 64 (|has| |#1| (-534)))) (-3679 (((-112) $) 66 (|has| |#1| (-534)))) (-2532 (((-400 (-549)) $) 65 (|has| |#1| (-534)))) (-3239 (($) 54 (|has| |#1| (-361)))) (-2675 (((-112) $) 30)) (-3199 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 68)) (-3630 ((|#1| $) 69)) (-2863 (($ $ $) 60 (|has| |#1| (-823)))) (-3575 (($ $ $) 59 (|has| |#1| (-823)))) (-2797 (($ (-1 |#1| |#1|) $) 79)) (-1881 (((-892) $) 53 (|has| |#1| (-361)))) (-3851 (((-1125) $) 9)) (-1992 (($ $) 63 (|has| |#1| (-356)))) (-3493 (($ (-892)) 52 (|has| |#1| (-361)))) (-2068 ((|#1| $) 74)) (-1633 ((|#1| $) 75)) (-2127 ((|#1| $) 76)) (-2318 ((|#1| $) 70)) (-2697 ((|#1| $) 71)) (-2194 ((|#1| $) 72)) (-1492 ((|#1| $) 73)) (-3990 (((-1087) $) 10)) (-2686 (($ $ (-621 |#1|) (-621 |#1|)) 85 (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) 84 (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) 83 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) 82 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1143)) (-621 |#1|)) 81 (|has| |#1| (-505 (-1143) |#1|))) (($ $ (-1143) |#1|) 80 (|has| |#1| (-505 (-1143) |#1|)))) (-3341 (($ $ |#1|) 86 (|has| |#1| (-279 |#1| |#1|)))) (-2845 (((-525) $) 61 (|has| |#1| (-594 (-525))))) (-1955 (($ $) 78)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 35) (($ (-400 (-549))) 89 (|has| |#1| (-1009 (-400 (-549)))))) (-2210 (((-3 $ "failed") $) 62 (|has| |#1| (-143)))) (-2082 (((-747)) 28)) (-3212 ((|#1| $) 67 (|has| |#1| (-1027)))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2448 (((-112) $ $) 57 (|has| |#1| (-823)))) (-2425 (((-112) $ $) 56 (|has| |#1| (-823)))) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 58 (|has| |#1| (-823)))) (-2412 (((-112) $ $) 55 (|has| |#1| (-823)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 37) (($ |#1| $) 36)))
+(((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-768) . T) ((-770) . T) ((-823) . T) ((-1066) . T))
+((-3210 (((-112) $) 41)) (-2712 (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 |#2| "failed") $) 44)) (-2657 (((-549) $) NIL) (((-400 (-549)) $) NIL) ((|#2| $) 42)) (-1531 (((-3 (-400 (-549)) "failed") $) 78)) (-3945 (((-112) $) 72)) (-1390 (((-400 (-549)) $) 76)) (-2469 ((|#2| $) 26)) (-2795 (($ (-1 |#2| |#2|) $) 23)) (-1990 (($ $) 61)) (-2843 (((-525) $) 67)) (-1795 (($ $) 21)) (-3845 (((-834) $) 56) (($ (-549)) 39) (($ |#2|) 37) (($ (-400 (-549))) NIL)) (-2371 (((-747)) 10)) (-2199 ((|#2| $) 71)) (-2387 (((-112) $ $) 29)) (-2409 (((-112) $ $) 69)) (-2498 (($ $) 31) (($ $ $) NIL)) (-2484 (($ $ $) 30)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 35) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 32)))
+(((-772 |#1| |#2|) (-10 -8 (-15 -2409 ((-112) |#1| |#1|)) (-15 -2843 ((-525) |#1|)) (-15 -1990 (|#1| |#1|)) (-15 -1531 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -1390 ((-400 (-549)) |#1|)) (-15 -3945 ((-112) |#1|)) (-15 -2199 (|#2| |#1|)) (-15 -2469 (|#2| |#1|)) (-15 -1795 (|#1| |#1|)) (-15 -2795 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2657 (|#2| |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -3845 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3845 (|#1| (-549))) (-15 -2371 ((-747))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 -2498 (|#1| |#1| |#1|)) (-15 -2498 (|#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 -3210 ((-112) |#1|)) (-15 * (|#1| (-892) |#1|)) (-15 -2484 (|#1| |#1| |#1|)) (-15 -3845 ((-834) |#1|)) (-15 -2387 ((-112) |#1| |#1|))) (-773 |#2|) (-170)) (T -772))
+((-2371 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-747)) (-5 *1 (-772 *3 *4)) (-4 *3 (-773 *4)))))
+(-10 -8 (-15 -2409 ((-112) |#1| |#1|)) (-15 -2843 ((-525) |#1|)) (-15 -1990 (|#1| |#1|)) (-15 -1531 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -1390 ((-400 (-549)) |#1|)) (-15 -3945 ((-112) |#1|)) (-15 -2199 (|#2| |#1|)) (-15 -2469 (|#2| |#1|)) (-15 -1795 (|#1| |#1|)) (-15 -2795 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2657 (|#2| |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -3845 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3845 (|#1| (-549))) (-15 -2371 ((-747))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 -2498 (|#1| |#1| |#1|)) (-15 -2498 (|#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 -3210 ((-112) |#1|)) (-15 * (|#1| (-892) |#1|)) (-15 -2484 (|#1| |#1| |#1|)) (-15 -3845 ((-834) |#1|)) (-15 -2387 ((-112) |#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3614 (((-747)) 51 (|has| |#1| (-361)))) (-3034 (($) 17 T CONST)) (-2712 (((-3 (-549) "failed") $) 92 (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 90 (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 88)) (-2657 (((-549) $) 93 (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) 91 (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 87)) (-2612 (((-3 $ "failed") $) 32)) (-2146 ((|#1| $) 77)) (-1531 (((-3 (-400 (-549)) "failed") $) 64 (|has| |#1| (-534)))) (-3945 (((-112) $) 66 (|has| |#1| (-534)))) (-1390 (((-400 (-549)) $) 65 (|has| |#1| (-534)))) (-3237 (($) 54 (|has| |#1| (-361)))) (-2297 (((-112) $) 30)) (-4229 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 68)) (-2469 ((|#1| $) 69)) (-2861 (($ $ $) 60 (|has| |#1| (-823)))) (-3574 (($ $ $) 59 (|has| |#1| (-823)))) (-2795 (($ (-1 |#1| |#1|) $) 79)) (-3309 (((-892) $) 53 (|has| |#1| (-361)))) (-3441 (((-1124) $) 9)) (-1990 (($ $) 63 (|has| |#1| (-356)))) (-3494 (($ (-892)) 52 (|has| |#1| (-361)))) (-3766 ((|#1| $) 74)) (-2454 ((|#1| $) 75)) (-3311 ((|#1| $) 76)) (-2136 ((|#1| $) 70)) (-3423 ((|#1| $) 71)) (-3182 ((|#1| $) 72)) (-3055 ((|#1| $) 73)) (-3988 (((-1086) $) 10)) (-2684 (($ $ (-621 |#1|) (-621 |#1|)) 85 (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) 84 (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) 83 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) 82 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1142)) (-621 |#1|)) 81 (|has| |#1| (-505 (-1142) |#1|))) (($ $ (-1142) |#1|) 80 (|has| |#1| (-505 (-1142) |#1|)))) (-3339 (($ $ |#1|) 86 (|has| |#1| (-279 |#1| |#1|)))) (-2843 (((-525) $) 61 (|has| |#1| (-594 (-525))))) (-1795 (($ $) 78)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 35) (($ (-400 (-549))) 89 (|has| |#1| (-1009 (-400 (-549)))))) (-2343 (((-3 $ "failed") $) 62 (|has| |#1| (-143)))) (-2371 (((-747)) 28)) (-2199 ((|#1| $) 67 (|has| |#1| (-1027)))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2447 (((-112) $ $) 57 (|has| |#1| (-823)))) (-2423 (((-112) $ $) 56 (|has| |#1| (-823)))) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 58 (|has| |#1| (-823)))) (-2409 (((-112) $ $) 55 (|has| |#1| (-823)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 37) (($ |#1| $) 36)))
(((-773 |#1|) (-138) (-170)) (T -773))
-((-1955 (*1 *1 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-2145 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-2127 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-1633 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-2068 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-1492 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-2194 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-2697 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-2318 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-3630 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-3199 (*1 *1 *2 *2 *2 *2 *2 *2 *2 *2) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-3212 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)) (-4 *2 (-1027)))) (-3679 (*1 *2 *1) (-12 (-4 *1 (-773 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-112)))) (-2532 (*1 *2 *1) (-12 (-4 *1 (-773 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-400 (-549))))) (-3405 (*1 *2 *1) (|partial| -12 (-4 *1 (-773 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-400 (-549))))) (-1992 (*1 *1 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)) (-4 *2 (-356)))))
-(-13 (-38 |t#1|) (-404 |t#1|) (-331 |t#1|) (-10 -8 (-15 -1955 ($ $)) (-15 -2145 (|t#1| $)) (-15 -2127 (|t#1| $)) (-15 -1633 (|t#1| $)) (-15 -2068 (|t#1| $)) (-15 -1492 (|t#1| $)) (-15 -2194 (|t#1| $)) (-15 -2697 (|t#1| $)) (-15 -2318 (|t#1| $)) (-15 -3630 (|t#1| $)) (-15 -3199 ($ |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1|)) (IF (|has| |t#1| (-361)) (-6 (-361)) |%noBranch|) (IF (|has| |t#1| (-823)) (-6 (-823)) |%noBranch|) (IF (|has| |t#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |t#1| (-1027)) (-15 -3212 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-534)) (PROGN (-15 -3679 ((-112) $)) (-15 -2532 ((-400 (-549)) $)) (-15 -3405 ((-3 (-400 (-549)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-356)) (-15 -1992 ($ $)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 |#1| $) |has| |#1| (-279 |#1| |#1|)) ((-302 |#1|) |has| |#1| (-302 |#1|)) ((-361) |has| |#1| (-361)) ((-331 |#1|) . T) ((-404 |#1|) . T) ((-505 (-1143) |#1|) |has| |#1| (-505 (-1143) |#1|)) ((-505 |#1| |#1|) |has| |#1| (-302 |#1|)) ((-624 |#1|) . T) ((-624 $) . T) ((-694 |#1|) . T) ((-703) . T) ((-823) |has| |#1| (-823)) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1024 |#1|) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-2797 ((|#3| (-1 |#4| |#2|) |#1|) 20)))
-(((-774 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2797 (|#3| (-1 |#4| |#2|) |#1|))) (-773 |#2|) (-170) (-773 |#4|) (-170)) (T -774))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-170)) (-4 *6 (-170)) (-4 *2 (-773 *6)) (-5 *1 (-774 *4 *5 *2 *6)) (-4 *4 (-773 *5)))))
-(-10 -7 (-15 -2797 (|#3| (-1 |#4| |#2|) |#1|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3614 (((-747)) NIL (|has| |#1| (-361)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) NIL) (((-3 (-970 |#1|) "failed") $) 35) (((-3 (-549) "failed") $) NIL (-1536 (|has| (-970 |#1|) (-1009 (-549))) (|has| |#1| (-1009 (-549))))) (((-3 (-400 (-549)) "failed") $) NIL (-1536 (|has| (-970 |#1|) (-1009 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549))))))) (-2659 ((|#1| $) NIL) (((-970 |#1|) $) 33) (((-549) $) NIL (-1536 (|has| (-970 |#1|) (-1009 (-549))) (|has| |#1| (-1009 (-549))))) (((-400 (-549)) $) NIL (-1536 (|has| (-970 |#1|) (-1009 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549))))))) (-2114 (((-3 $ "failed") $) NIL)) (-2145 ((|#1| $) 16)) (-3405 (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-534)))) (-3679 (((-112) $) NIL (|has| |#1| (-534)))) (-2532 (((-400 (-549)) $) NIL (|has| |#1| (-534)))) (-3239 (($) NIL (|has| |#1| (-361)))) (-2675 (((-112) $) NIL)) (-3199 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 28) (($ (-970 |#1|) (-970 |#1|)) 29)) (-3630 ((|#1| $) NIL)) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1881 (((-892) $) NIL (|has| |#1| (-361)))) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL (|has| |#1| (-356)))) (-3493 (($ (-892)) NIL (|has| |#1| (-361)))) (-2068 ((|#1| $) 22)) (-1633 ((|#1| $) 20)) (-2127 ((|#1| $) 18)) (-2318 ((|#1| $) 26)) (-2697 ((|#1| $) 25)) (-2194 ((|#1| $) 24)) (-1492 ((|#1| $) 23)) (-3990 (((-1087) $) NIL)) (-2686 (($ $ (-621 |#1|) (-621 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1143)) (-621 |#1|)) NIL (|has| |#1| (-505 (-1143) |#1|))) (($ $ (-1143) |#1|) NIL (|has| |#1| (-505 (-1143) |#1|)))) (-3341 (($ $ |#1|) NIL (|has| |#1| (-279 |#1| |#1|)))) (-2845 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-1955 (($ $) NIL)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-970 |#1|)) 30) (($ (-400 (-549))) NIL (-1536 (|has| (-970 |#1|) (-1009 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549))))))) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) NIL)) (-3212 ((|#1| $) NIL (|has| |#1| (-1027)))) (-3276 (($) 8 T CONST)) (-3287 (($) 12 T CONST)) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 40) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-775 |#1|) (-13 (-773 |#1|) (-404 (-970 |#1|)) (-10 -8 (-15 -3199 ($ (-970 |#1|) (-970 |#1|))))) (-170)) (T -775))
-((-3199 (*1 *1 *2 *2) (-12 (-5 *2 (-970 *3)) (-4 *3 (-170)) (-5 *1 (-775 *3)))))
-(-13 (-773 |#1|) (-404 (-970 |#1|)) (-10 -8 (-15 -3199 ($ (-970 |#1|) (-970 |#1|)))))
-((-3834 (((-112) $ $) 7)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 14)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-3919 (((-1006) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 13)) (-2389 (((-112) $ $) 6)))
+((-1795 (*1 *1 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-2146 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-3311 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-2454 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-3766 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-3055 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-3182 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-3423 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-2136 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-2469 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-4229 (*1 *1 *2 *2 *2 *2 *2 *2 *2 *2) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))) (-2199 (*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)) (-4 *2 (-1027)))) (-3945 (*1 *2 *1) (-12 (-4 *1 (-773 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-112)))) (-1390 (*1 *2 *1) (-12 (-4 *1 (-773 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-400 (-549))))) (-1531 (*1 *2 *1) (|partial| -12 (-4 *1 (-773 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-400 (-549))))) (-1990 (*1 *1 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)) (-4 *2 (-356)))))
+(-13 (-38 |t#1|) (-404 |t#1|) (-331 |t#1|) (-10 -8 (-15 -1795 ($ $)) (-15 -2146 (|t#1| $)) (-15 -3311 (|t#1| $)) (-15 -2454 (|t#1| $)) (-15 -3766 (|t#1| $)) (-15 -3055 (|t#1| $)) (-15 -3182 (|t#1| $)) (-15 -3423 (|t#1| $)) (-15 -2136 (|t#1| $)) (-15 -2469 (|t#1| $)) (-15 -4229 ($ |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1|)) (IF (|has| |t#1| (-361)) (-6 (-361)) |%noBranch|) (IF (|has| |t#1| (-823)) (-6 (-823)) |%noBranch|) (IF (|has| |t#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |t#1| (-1027)) (-15 -2199 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-534)) (PROGN (-15 -3945 ((-112) $)) (-15 -1390 ((-400 (-549)) $)) (-15 -1531 ((-3 (-400 (-549)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-356)) (-15 -1990 ($ $)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 |#1| $) |has| |#1| (-279 |#1| |#1|)) ((-302 |#1|) |has| |#1| (-302 |#1|)) ((-361) |has| |#1| (-361)) ((-331 |#1|) . T) ((-404 |#1|) . T) ((-505 (-1142) |#1|) |has| |#1| (-505 (-1142) |#1|)) ((-505 |#1| |#1|) |has| |#1| (-302 |#1|)) ((-624 |#1|) . T) ((-624 $) . T) ((-694 |#1|) . T) ((-703) . T) ((-823) |has| |#1| (-823)) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1024 |#1|) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-2795 ((|#3| (-1 |#4| |#2|) |#1|) 20)))
+(((-774 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2795 (|#3| (-1 |#4| |#2|) |#1|))) (-773 |#2|) (-170) (-773 |#4|) (-170)) (T -774))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-170)) (-4 *6 (-170)) (-4 *2 (-773 *6)) (-5 *1 (-774 *4 *5 *2 *6)) (-4 *4 (-773 *5)))))
+(-10 -7 (-15 -2795 (|#3| (-1 |#4| |#2|) |#1|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3614 (((-747)) NIL (|has| |#1| (-361)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) NIL) (((-3 (-970 |#1|) "failed") $) 35) (((-3 (-549) "failed") $) NIL (-1536 (|has| (-970 |#1|) (-1009 (-549))) (|has| |#1| (-1009 (-549))))) (((-3 (-400 (-549)) "failed") $) NIL (-1536 (|has| (-970 |#1|) (-1009 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549))))))) (-2657 ((|#1| $) NIL) (((-970 |#1|) $) 33) (((-549) $) NIL (-1536 (|has| (-970 |#1|) (-1009 (-549))) (|has| |#1| (-1009 (-549))))) (((-400 (-549)) $) NIL (-1536 (|has| (-970 |#1|) (-1009 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549))))))) (-2612 (((-3 $ "failed") $) NIL)) (-2146 ((|#1| $) 16)) (-1531 (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-534)))) (-3945 (((-112) $) NIL (|has| |#1| (-534)))) (-1390 (((-400 (-549)) $) NIL (|has| |#1| (-534)))) (-3237 (($) NIL (|has| |#1| (-361)))) (-2297 (((-112) $) NIL)) (-4229 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 28) (($ (-970 |#1|) (-970 |#1|)) 29)) (-2469 ((|#1| $) NIL)) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3309 (((-892) $) NIL (|has| |#1| (-361)))) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL (|has| |#1| (-356)))) (-3494 (($ (-892)) NIL (|has| |#1| (-361)))) (-3766 ((|#1| $) 22)) (-2454 ((|#1| $) 20)) (-3311 ((|#1| $) 18)) (-2136 ((|#1| $) 26)) (-3423 ((|#1| $) 25)) (-3182 ((|#1| $) 24)) (-3055 ((|#1| $) 23)) (-3988 (((-1086) $) NIL)) (-2684 (($ $ (-621 |#1|) (-621 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1142)) (-621 |#1|)) NIL (|has| |#1| (-505 (-1142) |#1|))) (($ $ (-1142) |#1|) NIL (|has| |#1| (-505 (-1142) |#1|)))) (-3339 (($ $ |#1|) NIL (|has| |#1| (-279 |#1| |#1|)))) (-2843 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-1795 (($ $) NIL)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-970 |#1|)) 30) (($ (-400 (-549))) NIL (-1536 (|has| (-970 |#1|) (-1009 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549))))))) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) NIL)) (-2199 ((|#1| $) NIL (|has| |#1| (-1027)))) (-3274 (($) 8 T CONST)) (-3286 (($) 12 T CONST)) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 40) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-775 |#1|) (-13 (-773 |#1|) (-404 (-970 |#1|)) (-10 -8 (-15 -4229 ($ (-970 |#1|) (-970 |#1|))))) (-170)) (T -775))
+((-4229 (*1 *1 *2 *2) (-12 (-5 *2 (-970 *3)) (-4 *3 (-170)) (-5 *1 (-775 *3)))))
+(-13 (-773 |#1|) (-404 (-970 |#1|)) (-10 -8 (-15 -4229 ($ (-970 |#1|) (-970 |#1|)))))
+((-3832 (((-112) $ $) 7)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 14)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-3718 (((-1006) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 13)) (-2387 (((-112) $ $) 6)))
(((-776) (-138)) (T -776))
-((-1391 (*1 *2 *3 *4) (-12 (-4 *1 (-776)) (-5 *3 (-1030)) (-5 *4 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)))))) (-3919 (*1 *2 *3) (-12 (-4 *1 (-776)) (-5 *3 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-1006)))))
-(-13 (-1067) (-10 -7 (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3919 ((-1006) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-2072 (((-2 (|:| |particular| |#2|) (|:| -1949 (-621 |#2|))) |#3| |#2| (-1143)) 19)))
-(((-777 |#1| |#2| |#3|) (-10 -7 (-15 -2072 ((-2 (|:| |particular| |#2|) (|:| -1949 (-621 |#2|))) |#3| |#2| (-1143)))) (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)) (-13 (-29 |#1|) (-1165) (-930)) (-632 |#2|)) (T -777))
-((-2072 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1143)) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-4 *4 (-13 (-29 *6) (-1165) (-930))) (-5 *2 (-2 (|:| |particular| *4) (|:| -1949 (-621 *4)))) (-5 *1 (-777 *6 *4 *3)) (-4 *3 (-632 *4)))))
-(-10 -7 (-15 -2072 ((-2 (|:| |particular| |#2|) (|:| -1949 (-621 |#2|))) |#3| |#2| (-1143))))
-((-2227 (((-3 |#2| "failed") |#2| (-114) (-287 |#2|) (-621 |#2|)) 28) (((-3 |#2| "failed") (-287 |#2|) (-114) (-287 |#2|) (-621 |#2|)) 29) (((-3 (-2 (|:| |particular| |#2|) (|:| -1949 (-621 |#2|))) |#2| "failed") |#2| (-114) (-1143)) 17) (((-3 (-2 (|:| |particular| |#2|) (|:| -1949 (-621 |#2|))) |#2| "failed") (-287 |#2|) (-114) (-1143)) 18) (((-3 (-2 (|:| |particular| (-1226 |#2|)) (|:| -1949 (-621 (-1226 |#2|)))) "failed") (-621 |#2|) (-621 (-114)) (-1143)) 24) (((-3 (-2 (|:| |particular| (-1226 |#2|)) (|:| -1949 (-621 (-1226 |#2|)))) "failed") (-621 (-287 |#2|)) (-621 (-114)) (-1143)) 26) (((-3 (-621 (-1226 |#2|)) "failed") (-665 |#2|) (-1143)) 37) (((-3 (-2 (|:| |particular| (-1226 |#2|)) (|:| -1949 (-621 (-1226 |#2|)))) "failed") (-665 |#2|) (-1226 |#2|) (-1143)) 35)))
-(((-778 |#1| |#2|) (-10 -7 (-15 -2227 ((-3 (-2 (|:| |particular| (-1226 |#2|)) (|:| -1949 (-621 (-1226 |#2|)))) "failed") (-665 |#2|) (-1226 |#2|) (-1143))) (-15 -2227 ((-3 (-621 (-1226 |#2|)) "failed") (-665 |#2|) (-1143))) (-15 -2227 ((-3 (-2 (|:| |particular| (-1226 |#2|)) (|:| -1949 (-621 (-1226 |#2|)))) "failed") (-621 (-287 |#2|)) (-621 (-114)) (-1143))) (-15 -2227 ((-3 (-2 (|:| |particular| (-1226 |#2|)) (|:| -1949 (-621 (-1226 |#2|)))) "failed") (-621 |#2|) (-621 (-114)) (-1143))) (-15 -2227 ((-3 (-2 (|:| |particular| |#2|) (|:| -1949 (-621 |#2|))) |#2| "failed") (-287 |#2|) (-114) (-1143))) (-15 -2227 ((-3 (-2 (|:| |particular| |#2|) (|:| -1949 (-621 |#2|))) |#2| "failed") |#2| (-114) (-1143))) (-15 -2227 ((-3 |#2| "failed") (-287 |#2|) (-114) (-287 |#2|) (-621 |#2|))) (-15 -2227 ((-3 |#2| "failed") |#2| (-114) (-287 |#2|) (-621 |#2|)))) (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)) (-13 (-29 |#1|) (-1165) (-930))) (T -778))
-((-2227 (*1 *2 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-287 *2)) (-5 *5 (-621 *2)) (-4 *2 (-13 (-29 *6) (-1165) (-930))) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *1 (-778 *6 *2)))) (-2227 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-287 *2)) (-5 *4 (-114)) (-5 *5 (-621 *2)) (-4 *2 (-13 (-29 *6) (-1165) (-930))) (-5 *1 (-778 *6 *2)) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))))) (-2227 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-114)) (-5 *5 (-1143)) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-3 (-2 (|:| |particular| *3) (|:| -1949 (-621 *3))) *3 "failed")) (-5 *1 (-778 *6 *3)) (-4 *3 (-13 (-29 *6) (-1165) (-930))))) (-2227 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-287 *7)) (-5 *4 (-114)) (-5 *5 (-1143)) (-4 *7 (-13 (-29 *6) (-1165) (-930))) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-3 (-2 (|:| |particular| *7) (|:| -1949 (-621 *7))) *7 "failed")) (-5 *1 (-778 *6 *7)))) (-2227 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-621 *7)) (-5 *4 (-621 (-114))) (-5 *5 (-1143)) (-4 *7 (-13 (-29 *6) (-1165) (-930))) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-2 (|:| |particular| (-1226 *7)) (|:| -1949 (-621 (-1226 *7))))) (-5 *1 (-778 *6 *7)))) (-2227 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-621 (-287 *7))) (-5 *4 (-621 (-114))) (-5 *5 (-1143)) (-4 *7 (-13 (-29 *6) (-1165) (-930))) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-2 (|:| |particular| (-1226 *7)) (|:| -1949 (-621 (-1226 *7))))) (-5 *1 (-778 *6 *7)))) (-2227 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-665 *6)) (-5 *4 (-1143)) (-4 *6 (-13 (-29 *5) (-1165) (-930))) (-4 *5 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-621 (-1226 *6))) (-5 *1 (-778 *5 *6)))) (-2227 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-665 *7)) (-5 *5 (-1143)) (-4 *7 (-13 (-29 *6) (-1165) (-930))) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-2 (|:| |particular| (-1226 *7)) (|:| -1949 (-621 (-1226 *7))))) (-5 *1 (-778 *6 *7)) (-5 *4 (-1226 *7)))))
-(-10 -7 (-15 -2227 ((-3 (-2 (|:| |particular| (-1226 |#2|)) (|:| -1949 (-621 (-1226 |#2|)))) "failed") (-665 |#2|) (-1226 |#2|) (-1143))) (-15 -2227 ((-3 (-621 (-1226 |#2|)) "failed") (-665 |#2|) (-1143))) (-15 -2227 ((-3 (-2 (|:| |particular| (-1226 |#2|)) (|:| -1949 (-621 (-1226 |#2|)))) "failed") (-621 (-287 |#2|)) (-621 (-114)) (-1143))) (-15 -2227 ((-3 (-2 (|:| |particular| (-1226 |#2|)) (|:| -1949 (-621 (-1226 |#2|)))) "failed") (-621 |#2|) (-621 (-114)) (-1143))) (-15 -2227 ((-3 (-2 (|:| |particular| |#2|) (|:| -1949 (-621 |#2|))) |#2| "failed") (-287 |#2|) (-114) (-1143))) (-15 -2227 ((-3 (-2 (|:| |particular| |#2|) (|:| -1949 (-621 |#2|))) |#2| "failed") |#2| (-114) (-1143))) (-15 -2227 ((-3 |#2| "failed") (-287 |#2|) (-114) (-287 |#2|) (-621 |#2|))) (-15 -2227 ((-3 |#2| "failed") |#2| (-114) (-287 |#2|) (-621 |#2|))))
-((-3093 (($) 9)) (-4021 (((-3 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))) "failed") (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 31)) (-3449 (((-621 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) $) 28)) (-2751 (($ (-2 (|:| -3337 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372)))))) 25)) (-3870 (($ (-621 (-2 (|:| -3337 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))))))) 23)) (-3185 (((-1231)) 12)))
-(((-779) (-10 -8 (-15 -3093 ($)) (-15 -3185 ((-1231))) (-15 -3449 ((-621 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) $)) (-15 -3870 ($ (-621 (-2 (|:| -3337 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372)))))))) (-15 -2751 ($ (-2 (|:| -3337 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))))))) (-15 -4021 ((-3 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))) "failed") (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))) (T -779))
-((-4021 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372)))) (-5 *1 (-779)))) (-2751 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -3337 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372)))))) (-5 *1 (-779)))) (-3870 (*1 *1 *2) (-12 (-5 *2 (-621 (-2 (|:| -3337 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))))))) (-5 *1 (-779)))) (-3449 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-5 *1 (-779)))) (-3185 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-779)))) (-3093 (*1 *1) (-5 *1 (-779))))
-(-10 -8 (-15 -3093 ($)) (-15 -3185 ((-1231))) (-15 -3449 ((-621 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) $)) (-15 -3870 ($ (-621 (-2 (|:| -3337 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372)))))))) (-15 -2751 ($ (-2 (|:| -3337 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1793 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))))))) (-15 -4021 ((-3 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))) "failed") (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))
-((-4292 ((|#2| |#2| (-1143)) 16)) (-3362 ((|#2| |#2| (-1143)) 51)) (-1875 (((-1 |#2| |#2|) (-1143)) 11)))
-(((-780 |#1| |#2|) (-10 -7 (-15 -4292 (|#2| |#2| (-1143))) (-15 -3362 (|#2| |#2| (-1143))) (-15 -1875 ((-1 |#2| |#2|) (-1143)))) (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)) (-13 (-29 |#1|) (-1165) (-930))) (T -780))
-((-1875 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-1 *5 *5)) (-5 *1 (-780 *4 *5)) (-4 *5 (-13 (-29 *4) (-1165) (-930))))) (-3362 (*1 *2 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *1 (-780 *4 *2)) (-4 *2 (-13 (-29 *4) (-1165) (-930))))) (-4292 (*1 *2 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *1 (-780 *4 *2)) (-4 *2 (-13 (-29 *4) (-1165) (-930))))))
-(-10 -7 (-15 -4292 (|#2| |#2| (-1143))) (-15 -3362 (|#2| |#2| (-1143))) (-15 -1875 ((-1 |#2| |#2|) (-1143))))
-((-2227 (((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-621 (-372)) (-372) (-372)) 116) (((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-621 (-372)) (-372)) 117) (((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372)) (-621 (-372)) (-372)) 119) (((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-372)) 120) (((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372)) (-372)) 121) (((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372))) 122) (((-1006) (-784) (-1030)) 108) (((-1006) (-784)) 109)) (-1391 (((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-784) (-1030)) 75) (((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-784)) 77)))
-(((-781) (-10 -7 (-15 -2227 ((-1006) (-784))) (-15 -2227 ((-1006) (-784) (-1030))) (-15 -2227 ((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372)))) (-15 -2227 ((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372)) (-372))) (-15 -2227 ((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-372))) (-15 -2227 ((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372)) (-621 (-372)) (-372))) (-15 -2227 ((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-621 (-372)) (-372))) (-15 -2227 ((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-621 (-372)) (-372) (-372))) (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-784))) (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-784) (-1030))))) (T -781))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-784)) (-5 *4 (-1030)) (-5 *2 (-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))))) (-5 *1 (-781)))) (-1391 (*1 *2 *3) (-12 (-5 *3 (-784)) (-5 *2 (-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))))) (-5 *1 (-781)))) (-2227 (*1 *2 *3 *4 *4 *5 *6 *5 *4 *4) (-12 (-5 *3 (-1226 (-309 *4))) (-5 *5 (-621 (-372))) (-5 *6 (-309 (-372))) (-5 *4 (-372)) (-5 *2 (-1006)) (-5 *1 (-781)))) (-2227 (*1 *2 *3 *4 *4 *5 *6 *5 *4) (-12 (-5 *3 (-1226 (-309 *4))) (-5 *5 (-621 (-372))) (-5 *6 (-309 (-372))) (-5 *4 (-372)) (-5 *2 (-1006)) (-5 *1 (-781)))) (-2227 (*1 *2 *3 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1226 (-309 (-372)))) (-5 *4 (-372)) (-5 *5 (-621 *4)) (-5 *2 (-1006)) (-5 *1 (-781)))) (-2227 (*1 *2 *3 *4 *4 *5 *6 *4) (-12 (-5 *3 (-1226 (-309 *4))) (-5 *5 (-621 (-372))) (-5 *6 (-309 (-372))) (-5 *4 (-372)) (-5 *2 (-1006)) (-5 *1 (-781)))) (-2227 (*1 *2 *3 *4 *4 *5 *4) (-12 (-5 *3 (-1226 (-309 (-372)))) (-5 *4 (-372)) (-5 *5 (-621 *4)) (-5 *2 (-1006)) (-5 *1 (-781)))) (-2227 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1226 (-309 (-372)))) (-5 *4 (-372)) (-5 *5 (-621 *4)) (-5 *2 (-1006)) (-5 *1 (-781)))) (-2227 (*1 *2 *3 *4) (-12 (-5 *3 (-784)) (-5 *4 (-1030)) (-5 *2 (-1006)) (-5 *1 (-781)))) (-2227 (*1 *2 *3) (-12 (-5 *3 (-784)) (-5 *2 (-1006)) (-5 *1 (-781)))))
-(-10 -7 (-15 -2227 ((-1006) (-784))) (-15 -2227 ((-1006) (-784) (-1030))) (-15 -2227 ((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372)))) (-15 -2227 ((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372)) (-372))) (-15 -2227 ((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-372))) (-15 -2227 ((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372)) (-621 (-372)) (-372))) (-15 -2227 ((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-621 (-372)) (-372))) (-15 -2227 ((-1006) (-1226 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-621 (-372)) (-372) (-372))) (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-784))) (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-784) (-1030))))
-((-2206 (((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -1949 (-621 |#4|))) (-629 |#4|) |#4|) 35)))
-(((-782 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2206 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -1949 (-621 |#4|))) (-629 |#4|) |#4|))) (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))) (-1202 |#1|) (-1202 (-400 |#2|)) (-335 |#1| |#2| |#3|)) (T -782))
-((-2206 (*1 *2 *3 *4) (-12 (-5 *3 (-629 *4)) (-4 *4 (-335 *5 *6 *7)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *6 (-1202 *5)) (-4 *7 (-1202 (-400 *6))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1949 (-621 *4)))) (-5 *1 (-782 *5 *6 *7 *4)))))
-(-10 -7 (-15 -2206 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -1949 (-621 |#4|))) (-629 |#4|) |#4|)))
-((-2050 (((-2 (|:| -2652 |#3|) (|:| |rh| (-621 (-400 |#2|)))) |#4| (-621 (-400 |#2|))) 52)) (-1511 (((-621 (-2 (|:| -2597 |#2|) (|:| -2391 |#2|))) |#4| |#2|) 60) (((-621 (-2 (|:| -2597 |#2|) (|:| -2391 |#2|))) |#4|) 59) (((-621 (-2 (|:| -2597 |#2|) (|:| -2391 |#2|))) |#3| |#2|) 20) (((-621 (-2 (|:| -2597 |#2|) (|:| -2391 |#2|))) |#3|) 21)) (-2758 ((|#2| |#4| |#1|) 61) ((|#2| |#3| |#1|) 27)) (-1904 ((|#2| |#3| (-621 (-400 |#2|))) 93) (((-3 |#2| "failed") |#3| (-400 |#2|)) 90)))
-(((-783 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1904 ((-3 |#2| "failed") |#3| (-400 |#2|))) (-15 -1904 (|#2| |#3| (-621 (-400 |#2|)))) (-15 -1511 ((-621 (-2 (|:| -2597 |#2|) (|:| -2391 |#2|))) |#3|)) (-15 -1511 ((-621 (-2 (|:| -2597 |#2|) (|:| -2391 |#2|))) |#3| |#2|)) (-15 -2758 (|#2| |#3| |#1|)) (-15 -1511 ((-621 (-2 (|:| -2597 |#2|) (|:| -2391 |#2|))) |#4|)) (-15 -1511 ((-621 (-2 (|:| -2597 |#2|) (|:| -2391 |#2|))) |#4| |#2|)) (-15 -2758 (|#2| |#4| |#1|)) (-15 -2050 ((-2 (|:| -2652 |#3|) (|:| |rh| (-621 (-400 |#2|)))) |#4| (-621 (-400 |#2|))))) (-13 (-356) (-145) (-1009 (-400 (-549)))) (-1202 |#1|) (-632 |#2|) (-632 (-400 |#2|))) (T -783))
-((-2050 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *6 (-1202 *5)) (-5 *2 (-2 (|:| -2652 *7) (|:| |rh| (-621 (-400 *6))))) (-5 *1 (-783 *5 *6 *7 *3)) (-5 *4 (-621 (-400 *6))) (-4 *7 (-632 *6)) (-4 *3 (-632 (-400 *6))))) (-2758 (*1 *2 *3 *4) (-12 (-4 *2 (-1202 *4)) (-5 *1 (-783 *4 *2 *5 *3)) (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *5 (-632 *2)) (-4 *3 (-632 (-400 *2))))) (-1511 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *4 (-1202 *5)) (-5 *2 (-621 (-2 (|:| -2597 *4) (|:| -2391 *4)))) (-5 *1 (-783 *5 *4 *6 *3)) (-4 *6 (-632 *4)) (-4 *3 (-632 (-400 *4))))) (-1511 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *5 (-1202 *4)) (-5 *2 (-621 (-2 (|:| -2597 *5) (|:| -2391 *5)))) (-5 *1 (-783 *4 *5 *6 *3)) (-4 *6 (-632 *5)) (-4 *3 (-632 (-400 *5))))) (-2758 (*1 *2 *3 *4) (-12 (-4 *2 (-1202 *4)) (-5 *1 (-783 *4 *2 *3 *5)) (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *3 (-632 *2)) (-4 *5 (-632 (-400 *2))))) (-1511 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *4 (-1202 *5)) (-5 *2 (-621 (-2 (|:| -2597 *4) (|:| -2391 *4)))) (-5 *1 (-783 *5 *4 *3 *6)) (-4 *3 (-632 *4)) (-4 *6 (-632 (-400 *4))))) (-1511 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *5 (-1202 *4)) (-5 *2 (-621 (-2 (|:| -2597 *5) (|:| -2391 *5)))) (-5 *1 (-783 *4 *5 *3 *6)) (-4 *3 (-632 *5)) (-4 *6 (-632 (-400 *5))))) (-1904 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-400 *2))) (-4 *2 (-1202 *5)) (-5 *1 (-783 *5 *2 *3 *6)) (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *3 (-632 *2)) (-4 *6 (-632 (-400 *2))))) (-1904 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-400 *2)) (-4 *2 (-1202 *5)) (-5 *1 (-783 *5 *2 *3 *6)) (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *3 (-632 *2)) (-4 *6 (-632 *4)))))
-(-10 -7 (-15 -1904 ((-3 |#2| "failed") |#3| (-400 |#2|))) (-15 -1904 (|#2| |#3| (-621 (-400 |#2|)))) (-15 -1511 ((-621 (-2 (|:| -2597 |#2|) (|:| -2391 |#2|))) |#3|)) (-15 -1511 ((-621 (-2 (|:| -2597 |#2|) (|:| -2391 |#2|))) |#3| |#2|)) (-15 -2758 (|#2| |#3| |#1|)) (-15 -1511 ((-621 (-2 (|:| -2597 |#2|) (|:| -2391 |#2|))) |#4|)) (-15 -1511 ((-621 (-2 (|:| -2597 |#2|) (|:| -2391 |#2|))) |#4| |#2|)) (-15 -2758 (|#2| |#4| |#1|)) (-15 -2050 ((-2 (|:| -2652 |#3|) (|:| |rh| (-621 (-400 |#2|)))) |#4| (-621 (-400 |#2|)))))
-((-3834 (((-112) $ $) NIL)) (-2659 (((-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) $) 13)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 15) (($ (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 12)) (-2389 (((-112) $ $) NIL)))
-(((-784) (-13 (-1067) (-10 -8 (-15 -3846 ($ (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3846 ((-834) $)) (-15 -2659 ((-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) $))))) (T -784))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-784)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *1 (-784)))) (-2659 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *1 (-784)))))
-(-13 (-1067) (-10 -8 (-15 -3846 ($ (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3846 ((-834) $)) (-15 -2659 ((-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) $))))
-((-4303 (((-621 (-2 (|:| |frac| (-400 |#2|)) (|:| -2652 |#3|))) |#3| (-1 (-621 |#2|) |#2| (-1139 |#2|)) (-1 (-411 |#2|) |#2|)) 118)) (-2180 (((-621 (-2 (|:| |poly| |#2|) (|:| -2652 |#3|))) |#3| (-1 (-621 |#1|) |#2|)) 46)) (-3495 (((-621 (-2 (|:| |deg| (-747)) (|:| -2652 |#2|))) |#3|) 95)) (-3381 ((|#2| |#3|) 37)) (-2658 (((-621 (-2 (|:| -2589 |#1|) (|:| -2652 |#3|))) |#3| (-1 (-621 |#1|) |#2|)) 82)) (-2048 ((|#3| |#3| (-400 |#2|)) 63) ((|#3| |#3| |#2|) 79)))
-(((-785 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3381 (|#2| |#3|)) (-15 -3495 ((-621 (-2 (|:| |deg| (-747)) (|:| -2652 |#2|))) |#3|)) (-15 -2658 ((-621 (-2 (|:| -2589 |#1|) (|:| -2652 |#3|))) |#3| (-1 (-621 |#1|) |#2|))) (-15 -2180 ((-621 (-2 (|:| |poly| |#2|) (|:| -2652 |#3|))) |#3| (-1 (-621 |#1|) |#2|))) (-15 -4303 ((-621 (-2 (|:| |frac| (-400 |#2|)) (|:| -2652 |#3|))) |#3| (-1 (-621 |#2|) |#2| (-1139 |#2|)) (-1 (-411 |#2|) |#2|))) (-15 -2048 (|#3| |#3| |#2|)) (-15 -2048 (|#3| |#3| (-400 |#2|)))) (-13 (-356) (-145) (-1009 (-400 (-549)))) (-1202 |#1|) (-632 |#2|) (-632 (-400 |#2|))) (T -785))
-((-2048 (*1 *2 *2 *3) (-12 (-5 *3 (-400 *5)) (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *5 (-1202 *4)) (-5 *1 (-785 *4 *5 *2 *6)) (-4 *2 (-632 *5)) (-4 *6 (-632 *3)))) (-2048 (*1 *2 *2 *3) (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *3 (-1202 *4)) (-5 *1 (-785 *4 *3 *2 *5)) (-4 *2 (-632 *3)) (-4 *5 (-632 (-400 *3))))) (-4303 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 (-621 *7) *7 (-1139 *7))) (-5 *5 (-1 (-411 *7) *7)) (-4 *7 (-1202 *6)) (-4 *6 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-5 *2 (-621 (-2 (|:| |frac| (-400 *7)) (|:| -2652 *3)))) (-5 *1 (-785 *6 *7 *3 *8)) (-4 *3 (-632 *7)) (-4 *8 (-632 (-400 *7))))) (-2180 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-621 *5) *6)) (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *6 (-1202 *5)) (-5 *2 (-621 (-2 (|:| |poly| *6) (|:| -2652 *3)))) (-5 *1 (-785 *5 *6 *3 *7)) (-4 *3 (-632 *6)) (-4 *7 (-632 (-400 *6))))) (-2658 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-621 *5) *6)) (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *6 (-1202 *5)) (-5 *2 (-621 (-2 (|:| -2589 *5) (|:| -2652 *3)))) (-5 *1 (-785 *5 *6 *3 *7)) (-4 *3 (-632 *6)) (-4 *7 (-632 (-400 *6))))) (-3495 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *5 (-1202 *4)) (-5 *2 (-621 (-2 (|:| |deg| (-747)) (|:| -2652 *5)))) (-5 *1 (-785 *4 *5 *3 *6)) (-4 *3 (-632 *5)) (-4 *6 (-632 (-400 *5))))) (-3381 (*1 *2 *3) (-12 (-4 *2 (-1202 *4)) (-5 *1 (-785 *4 *2 *3 *5)) (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *3 (-632 *2)) (-4 *5 (-632 (-400 *2))))))
-(-10 -7 (-15 -3381 (|#2| |#3|)) (-15 -3495 ((-621 (-2 (|:| |deg| (-747)) (|:| -2652 |#2|))) |#3|)) (-15 -2658 ((-621 (-2 (|:| -2589 |#1|) (|:| -2652 |#3|))) |#3| (-1 (-621 |#1|) |#2|))) (-15 -2180 ((-621 (-2 (|:| |poly| |#2|) (|:| -2652 |#3|))) |#3| (-1 (-621 |#1|) |#2|))) (-15 -4303 ((-621 (-2 (|:| |frac| (-400 |#2|)) (|:| -2652 |#3|))) |#3| (-1 (-621 |#2|) |#2| (-1139 |#2|)) (-1 (-411 |#2|) |#2|))) (-15 -2048 (|#3| |#3| |#2|)) (-15 -2048 (|#3| |#3| (-400 |#2|))))
-((-4132 (((-2 (|:| -1949 (-621 (-400 |#2|))) (|:| -3521 (-665 |#1|))) (-630 |#2| (-400 |#2|)) (-621 (-400 |#2|))) 121) (((-2 (|:| |particular| (-3 (-400 |#2|) "failed")) (|:| -1949 (-621 (-400 |#2|)))) (-630 |#2| (-400 |#2|)) (-400 |#2|)) 120) (((-2 (|:| -1949 (-621 (-400 |#2|))) (|:| -3521 (-665 |#1|))) (-629 (-400 |#2|)) (-621 (-400 |#2|))) 115) (((-2 (|:| |particular| (-3 (-400 |#2|) "failed")) (|:| -1949 (-621 (-400 |#2|)))) (-629 (-400 |#2|)) (-400 |#2|)) 113)) (-1326 ((|#2| (-630 |#2| (-400 |#2|))) 80) ((|#2| (-629 (-400 |#2|))) 83)))
-(((-786 |#1| |#2|) (-10 -7 (-15 -4132 ((-2 (|:| |particular| (-3 (-400 |#2|) "failed")) (|:| -1949 (-621 (-400 |#2|)))) (-629 (-400 |#2|)) (-400 |#2|))) (-15 -4132 ((-2 (|:| -1949 (-621 (-400 |#2|))) (|:| -3521 (-665 |#1|))) (-629 (-400 |#2|)) (-621 (-400 |#2|)))) (-15 -4132 ((-2 (|:| |particular| (-3 (-400 |#2|) "failed")) (|:| -1949 (-621 (-400 |#2|)))) (-630 |#2| (-400 |#2|)) (-400 |#2|))) (-15 -4132 ((-2 (|:| -1949 (-621 (-400 |#2|))) (|:| -3521 (-665 |#1|))) (-630 |#2| (-400 |#2|)) (-621 (-400 |#2|)))) (-15 -1326 (|#2| (-629 (-400 |#2|)))) (-15 -1326 (|#2| (-630 |#2| (-400 |#2|))))) (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))) (-1202 |#1|)) (T -786))
-((-1326 (*1 *2 *3) (-12 (-5 *3 (-630 *2 (-400 *2))) (-4 *2 (-1202 *4)) (-5 *1 (-786 *4 *2)) (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))))) (-1326 (*1 *2 *3) (-12 (-5 *3 (-629 (-400 *2))) (-4 *2 (-1202 *4)) (-5 *1 (-786 *4 *2)) (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))))) (-4132 (*1 *2 *3 *4) (-12 (-5 *3 (-630 *6 (-400 *6))) (-4 *6 (-1202 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-2 (|:| -1949 (-621 (-400 *6))) (|:| -3521 (-665 *5)))) (-5 *1 (-786 *5 *6)) (-5 *4 (-621 (-400 *6))))) (-4132 (*1 *2 *3 *4) (-12 (-5 *3 (-630 *6 (-400 *6))) (-5 *4 (-400 *6)) (-4 *6 (-1202 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1949 (-621 *4)))) (-5 *1 (-786 *5 *6)))) (-4132 (*1 *2 *3 *4) (-12 (-5 *3 (-629 (-400 *6))) (-4 *6 (-1202 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-2 (|:| -1949 (-621 (-400 *6))) (|:| -3521 (-665 *5)))) (-5 *1 (-786 *5 *6)) (-5 *4 (-621 (-400 *6))))) (-4132 (*1 *2 *3 *4) (-12 (-5 *3 (-629 (-400 *6))) (-5 *4 (-400 *6)) (-4 *6 (-1202 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1949 (-621 *4)))) (-5 *1 (-786 *5 *6)))))
-(-10 -7 (-15 -4132 ((-2 (|:| |particular| (-3 (-400 |#2|) "failed")) (|:| -1949 (-621 (-400 |#2|)))) (-629 (-400 |#2|)) (-400 |#2|))) (-15 -4132 ((-2 (|:| -1949 (-621 (-400 |#2|))) (|:| -3521 (-665 |#1|))) (-629 (-400 |#2|)) (-621 (-400 |#2|)))) (-15 -4132 ((-2 (|:| |particular| (-3 (-400 |#2|) "failed")) (|:| -1949 (-621 (-400 |#2|)))) (-630 |#2| (-400 |#2|)) (-400 |#2|))) (-15 -4132 ((-2 (|:| -1949 (-621 (-400 |#2|))) (|:| -3521 (-665 |#1|))) (-630 |#2| (-400 |#2|)) (-621 (-400 |#2|)))) (-15 -1326 (|#2| (-629 (-400 |#2|)))) (-15 -1326 (|#2| (-630 |#2| (-400 |#2|)))))
-((-1432 (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#1|))) |#5| |#4|) 48)))
-(((-787 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1432 ((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#1|))) |#5| |#4|))) (-356) (-632 |#1|) (-1202 |#1|) (-701 |#1| |#3|) (-632 |#4|)) (T -787))
-((-1432 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-4 *7 (-1202 *5)) (-4 *4 (-701 *5 *7)) (-5 *2 (-2 (|:| -3521 (-665 *6)) (|:| |vec| (-1226 *5)))) (-5 *1 (-787 *5 *6 *7 *4 *3)) (-4 *6 (-632 *5)) (-4 *3 (-632 *4)))))
-(-10 -7 (-15 -1432 ((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#1|))) |#5| |#4|)))
-((-4303 (((-621 (-2 (|:| |frac| (-400 |#2|)) (|:| -2652 (-630 |#2| (-400 |#2|))))) (-630 |#2| (-400 |#2|)) (-1 (-411 |#2|) |#2|)) 47)) (-2250 (((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-411 |#2|) |#2|)) 141 (|has| |#1| (-27))) (((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|))) 138 (|has| |#1| (-27))) (((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-411 |#2|) |#2|)) 142 (|has| |#1| (-27))) (((-621 (-400 |#2|)) (-629 (-400 |#2|))) 140 (|has| |#1| (-27))) (((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|) (-1 (-411 |#2|) |#2|)) 38) (((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|)) 39) (((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|) (-1 (-411 |#2|) |#2|)) 36) (((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|)) 37)) (-2180 (((-621 (-2 (|:| |poly| |#2|) (|:| -2652 (-630 |#2| (-400 |#2|))))) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|)) 83)))
-(((-788 |#1| |#2|) (-10 -7 (-15 -2250 ((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|))) (-15 -2250 ((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|) (-1 (-411 |#2|) |#2|))) (-15 -2250 ((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|))) (-15 -2250 ((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|) (-1 (-411 |#2|) |#2|))) (-15 -4303 ((-621 (-2 (|:| |frac| (-400 |#2|)) (|:| -2652 (-630 |#2| (-400 |#2|))))) (-630 |#2| (-400 |#2|)) (-1 (-411 |#2|) |#2|))) (-15 -2180 ((-621 (-2 (|:| |poly| |#2|) (|:| -2652 (-630 |#2| (-400 |#2|))))) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2250 ((-621 (-400 |#2|)) (-629 (-400 |#2|)))) (-15 -2250 ((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-411 |#2|) |#2|))) (-15 -2250 ((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)))) (-15 -2250 ((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-411 |#2|) |#2|)))) |%noBranch|)) (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))) (-1202 |#1|)) (T -788))
-((-2250 (*1 *2 *3 *4) (-12 (-5 *3 (-630 *6 (-400 *6))) (-5 *4 (-1 (-411 *6) *6)) (-4 *6 (-1202 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-621 (-400 *6))) (-5 *1 (-788 *5 *6)))) (-2250 (*1 *2 *3) (-12 (-5 *3 (-630 *5 (-400 *5))) (-4 *5 (-1202 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-621 (-400 *5))) (-5 *1 (-788 *4 *5)))) (-2250 (*1 *2 *3 *4) (-12 (-5 *3 (-629 (-400 *6))) (-5 *4 (-1 (-411 *6) *6)) (-4 *6 (-1202 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-621 (-400 *6))) (-5 *1 (-788 *5 *6)))) (-2250 (*1 *2 *3) (-12 (-5 *3 (-629 (-400 *5))) (-4 *5 (-1202 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-621 (-400 *5))) (-5 *1 (-788 *4 *5)))) (-2180 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-621 *5) *6)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *6 (-1202 *5)) (-5 *2 (-621 (-2 (|:| |poly| *6) (|:| -2652 (-630 *6 (-400 *6)))))) (-5 *1 (-788 *5 *6)) (-5 *3 (-630 *6 (-400 *6))))) (-4303 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-411 *6) *6)) (-4 *6 (-1202 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-621 (-2 (|:| |frac| (-400 *6)) (|:| -2652 (-630 *6 (-400 *6)))))) (-5 *1 (-788 *5 *6)) (-5 *3 (-630 *6 (-400 *6))))) (-2250 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-630 *7 (-400 *7))) (-5 *4 (-1 (-621 *6) *7)) (-5 *5 (-1 (-411 *7) *7)) (-4 *6 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *7 (-1202 *6)) (-5 *2 (-621 (-400 *7))) (-5 *1 (-788 *6 *7)))) (-2250 (*1 *2 *3 *4) (-12 (-5 *3 (-630 *6 (-400 *6))) (-5 *4 (-1 (-621 *5) *6)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *6 (-1202 *5)) (-5 *2 (-621 (-400 *6))) (-5 *1 (-788 *5 *6)))) (-2250 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-629 (-400 *7))) (-5 *4 (-1 (-621 *6) *7)) (-5 *5 (-1 (-411 *7) *7)) (-4 *6 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *7 (-1202 *6)) (-5 *2 (-621 (-400 *7))) (-5 *1 (-788 *6 *7)))) (-2250 (*1 *2 *3 *4) (-12 (-5 *3 (-629 (-400 *6))) (-5 *4 (-1 (-621 *5) *6)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *6 (-1202 *5)) (-5 *2 (-621 (-400 *6))) (-5 *1 (-788 *5 *6)))))
-(-10 -7 (-15 -2250 ((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|))) (-15 -2250 ((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|) (-1 (-411 |#2|) |#2|))) (-15 -2250 ((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|))) (-15 -2250 ((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|) (-1 (-411 |#2|) |#2|))) (-15 -4303 ((-621 (-2 (|:| |frac| (-400 |#2|)) (|:| -2652 (-630 |#2| (-400 |#2|))))) (-630 |#2| (-400 |#2|)) (-1 (-411 |#2|) |#2|))) (-15 -2180 ((-621 (-2 (|:| |poly| |#2|) (|:| -2652 (-630 |#2| (-400 |#2|))))) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2250 ((-621 (-400 |#2|)) (-629 (-400 |#2|)))) (-15 -2250 ((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-411 |#2|) |#2|))) (-15 -2250 ((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)))) (-15 -2250 ((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-411 |#2|) |#2|)))) |%noBranch|))
-((-1971 (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#1|))) (-665 |#2|) (-1226 |#1|)) 85) (((-2 (|:| A (-665 |#1|)) (|:| |eqs| (-621 (-2 (|:| C (-665 |#1|)) (|:| |g| (-1226 |#1|)) (|:| -2652 |#2|) (|:| |rh| |#1|))))) (-665 |#1|) (-1226 |#1|)) 15)) (-1670 (((-2 (|:| |particular| (-3 (-1226 |#1|) "failed")) (|:| -1949 (-621 (-1226 |#1|)))) (-665 |#2|) (-1226 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -1949 (-621 |#1|))) |#2| |#1|)) 92)) (-2227 (((-3 (-2 (|:| |particular| (-1226 |#1|)) (|:| -1949 (-665 |#1|))) "failed") (-665 |#1|) (-1226 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -1949 (-621 |#1|))) "failed") |#2| |#1|)) 43)))
-(((-789 |#1| |#2|) (-10 -7 (-15 -1971 ((-2 (|:| A (-665 |#1|)) (|:| |eqs| (-621 (-2 (|:| C (-665 |#1|)) (|:| |g| (-1226 |#1|)) (|:| -2652 |#2|) (|:| |rh| |#1|))))) (-665 |#1|) (-1226 |#1|))) (-15 -1971 ((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#1|))) (-665 |#2|) (-1226 |#1|))) (-15 -2227 ((-3 (-2 (|:| |particular| (-1226 |#1|)) (|:| -1949 (-665 |#1|))) "failed") (-665 |#1|) (-1226 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -1949 (-621 |#1|))) "failed") |#2| |#1|))) (-15 -1670 ((-2 (|:| |particular| (-3 (-1226 |#1|) "failed")) (|:| -1949 (-621 (-1226 |#1|)))) (-665 |#2|) (-1226 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -1949 (-621 |#1|))) |#2| |#1|)))) (-356) (-632 |#1|)) (T -789))
-((-1670 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-665 *7)) (-5 *5 (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -1949 (-621 *6))) *7 *6)) (-4 *6 (-356)) (-4 *7 (-632 *6)) (-5 *2 (-2 (|:| |particular| (-3 (-1226 *6) "failed")) (|:| -1949 (-621 (-1226 *6))))) (-5 *1 (-789 *6 *7)) (-5 *4 (-1226 *6)))) (-2227 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-2 (|:| |particular| *6) (|:| -1949 (-621 *6))) "failed") *7 *6)) (-4 *6 (-356)) (-4 *7 (-632 *6)) (-5 *2 (-2 (|:| |particular| (-1226 *6)) (|:| -1949 (-665 *6)))) (-5 *1 (-789 *6 *7)) (-5 *3 (-665 *6)) (-5 *4 (-1226 *6)))) (-1971 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-4 *6 (-632 *5)) (-5 *2 (-2 (|:| -3521 (-665 *6)) (|:| |vec| (-1226 *5)))) (-5 *1 (-789 *5 *6)) (-5 *3 (-665 *6)) (-5 *4 (-1226 *5)))) (-1971 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-5 *2 (-2 (|:| A (-665 *5)) (|:| |eqs| (-621 (-2 (|:| C (-665 *5)) (|:| |g| (-1226 *5)) (|:| -2652 *6) (|:| |rh| *5)))))) (-5 *1 (-789 *5 *6)) (-5 *3 (-665 *5)) (-5 *4 (-1226 *5)) (-4 *6 (-632 *5)))))
-(-10 -7 (-15 -1971 ((-2 (|:| A (-665 |#1|)) (|:| |eqs| (-621 (-2 (|:| C (-665 |#1|)) (|:| |g| (-1226 |#1|)) (|:| -2652 |#2|) (|:| |rh| |#1|))))) (-665 |#1|) (-1226 |#1|))) (-15 -1971 ((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#1|))) (-665 |#2|) (-1226 |#1|))) (-15 -2227 ((-3 (-2 (|:| |particular| (-1226 |#1|)) (|:| -1949 (-665 |#1|))) "failed") (-665 |#1|) (-1226 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -1949 (-621 |#1|))) "failed") |#2| |#1|))) (-15 -1670 ((-2 (|:| |particular| (-3 (-1226 |#1|) "failed")) (|:| -1949 (-621 (-1226 |#1|)))) (-665 |#2|) (-1226 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -1949 (-621 |#1|))) |#2| |#1|))))
-((-2717 (((-665 |#1|) (-621 |#1|) (-747)) 13) (((-665 |#1|) (-621 |#1|)) 14)) (-1493 (((-3 (-1226 |#1|) "failed") |#2| |#1| (-621 |#1|)) 34)) (-2079 (((-3 |#1| "failed") |#2| |#1| (-621 |#1|) (-1 |#1| |#1|)) 42)))
-(((-790 |#1| |#2|) (-10 -7 (-15 -2717 ((-665 |#1|) (-621 |#1|))) (-15 -2717 ((-665 |#1|) (-621 |#1|) (-747))) (-15 -1493 ((-3 (-1226 |#1|) "failed") |#2| |#1| (-621 |#1|))) (-15 -2079 ((-3 |#1| "failed") |#2| |#1| (-621 |#1|) (-1 |#1| |#1|)))) (-356) (-632 |#1|)) (T -790))
-((-2079 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *4 (-621 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-356)) (-5 *1 (-790 *2 *3)) (-4 *3 (-632 *2)))) (-1493 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-621 *4)) (-4 *4 (-356)) (-5 *2 (-1226 *4)) (-5 *1 (-790 *4 *3)) (-4 *3 (-632 *4)))) (-2717 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *5)) (-5 *4 (-747)) (-4 *5 (-356)) (-5 *2 (-665 *5)) (-5 *1 (-790 *5 *6)) (-4 *6 (-632 *5)))) (-2717 (*1 *2 *3) (-12 (-5 *3 (-621 *4)) (-4 *4 (-356)) (-5 *2 (-665 *4)) (-5 *1 (-790 *4 *5)) (-4 *5 (-632 *4)))))
-(-10 -7 (-15 -2717 ((-665 |#1|) (-621 |#1|))) (-15 -2717 ((-665 |#1|) (-621 |#1|) (-747))) (-15 -1493 ((-3 (-1226 |#1|) "failed") |#2| |#1| (-621 |#1|))) (-15 -2079 ((-3 |#1| "failed") |#2| |#1| (-621 |#1|) (-1 |#1| |#1|))))
-((-3834 (((-112) $ $) NIL (|has| |#2| (-1067)))) (-1763 (((-112) $) NIL (|has| |#2| (-130)))) (-3956 (($ (-892)) NIL (|has| |#2| (-1018)))) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-2861 (($ $ $) NIL (|has| |#2| (-769)))) (-2001 (((-3 $ "failed") $ $) NIL (|has| |#2| (-130)))) (-1584 (((-112) $ (-747)) NIL)) (-3614 (((-747)) NIL (|has| |#2| (-361)))) (-1872 (((-549) $) NIL (|has| |#2| (-821)))) (-2254 ((|#2| $ (-549) |#2|) NIL (|has| $ (-6 -4338)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1067)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1067)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1067)))) (-2659 (((-549) $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1067)))) (((-400 (-549)) $) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1067)))) ((|#2| $) NIL (|has| |#2| (-1067)))) (-3879 (((-665 (-549)) (-665 $)) NIL (-12 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (-12 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018)))) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) NIL (|has| |#2| (-1018))) (((-665 |#2|) (-665 $)) NIL (|has| |#2| (-1018)))) (-2114 (((-3 $ "failed") $) NIL (|has| |#2| (-703)))) (-3239 (($) NIL (|has| |#2| (-361)))) (-1879 ((|#2| $ (-549) |#2|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#2| $ (-549)) NIL)) (-2772 (((-112) $) NIL (|has| |#2| (-821)))) (-2989 (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-2675 (((-112) $) NIL (|has| |#2| (-703)))) (-2374 (((-112) $) NIL (|has| |#2| (-821)))) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) NIL (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-1562 (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-1868 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#2| |#2|) $) NIL)) (-1881 (((-892) $) NIL (|has| |#2| (-361)))) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#2| (-1067)))) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3493 (($ (-892)) NIL (|has| |#2| (-361)))) (-3990 (((-1087) $) NIL (|has| |#2| (-1067)))) (-3646 ((|#2| $) NIL (|has| (-549) (-823)))) (-1642 (($ $ |#2|) NIL (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-2696 (((-621 |#2|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#2| $ (-549) |#2|) NIL) ((|#2| $ (-549)) NIL)) (-1706 ((|#2| $ $) NIL (|has| |#2| (-1018)))) (-2169 (($ (-1226 |#2|)) NIL)) (-2985 (((-133)) NIL (|has| |#2| (-356)))) (-3456 (($ $) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-1143)) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-1 |#2| |#2|) (-747)) NIL (|has| |#2| (-1018))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1018)))) (-4000 (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-2281 (($ $) NIL)) (-3846 (((-1226 |#2|) $) NIL) (($ (-549)) NIL (-1536 (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1067))) (|has| |#2| (-1018)))) (($ (-400 (-549))) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1067)))) (($ |#2|) NIL (|has| |#2| (-1067))) (((-834) $) NIL (|has| |#2| (-593 (-834))))) (-2082 (((-747)) NIL (|has| |#2| (-1018)))) (-3527 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-3212 (($ $) NIL (|has| |#2| (-821)))) (-3276 (($) NIL (|has| |#2| (-130)) CONST)) (-3287 (($) NIL (|has| |#2| (-703)) CONST)) (-1702 (($ $) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-1143)) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#2| (-871 (-1143))) (|has| |#2| (-1018)))) (($ $ (-1 |#2| |#2|) (-747)) NIL (|has| |#2| (-1018))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1018)))) (-2448 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2425 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2389 (((-112) $ $) NIL (|has| |#2| (-1067)))) (-2438 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2412 (((-112) $ $) 11 (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2513 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2500 (($ $ $) NIL (|has| |#2| (-1018))) (($ $) NIL (|has| |#2| (-1018)))) (-2486 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-747)) NIL (|has| |#2| (-703))) (($ $ (-892)) NIL (|has| |#2| (-703)))) (* (($ (-549) $) NIL (|has| |#2| (-1018))) (($ $ $) NIL (|has| |#2| (-703))) (($ $ |#2|) NIL (|has| |#2| (-703))) (($ |#2| $) NIL (|has| |#2| (-703))) (($ (-747) $) NIL (|has| |#2| (-130))) (($ (-892) $) NIL (|has| |#2| (-25)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-791 |#1| |#2| |#3|) (-232 |#1| |#2|) (-747) (-769) (-1 (-112) (-1226 |#2|) (-1226 |#2|))) (T -791))
+((-3947 (*1 *2 *3 *4) (-12 (-4 *1 (-776)) (-5 *3 (-1030)) (-5 *4 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)))))) (-3718 (*1 *2 *3) (-12 (-4 *1 (-776)) (-5 *3 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-1006)))))
+(-13 (-1066) (-10 -7 (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3718 ((-1006) (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-2808 (((-2 (|:| |particular| |#2|) (|:| -2619 (-621 |#2|))) |#3| |#2| (-1142)) 19)))
+(((-777 |#1| |#2| |#3|) (-10 -7 (-15 -2808 ((-2 (|:| |particular| |#2|) (|:| -2619 (-621 |#2|))) |#3| |#2| (-1142)))) (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)) (-13 (-29 |#1|) (-1164) (-930)) (-632 |#2|)) (T -777))
+((-2808 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1142)) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-4 *4 (-13 (-29 *6) (-1164) (-930))) (-5 *2 (-2 (|:| |particular| *4) (|:| -2619 (-621 *4)))) (-5 *1 (-777 *6 *4 *3)) (-4 *3 (-632 *4)))))
+(-10 -7 (-15 -2808 ((-2 (|:| |particular| |#2|) (|:| -2619 (-621 |#2|))) |#3| |#2| (-1142))))
+((-2310 (((-3 |#2| "failed") |#2| (-114) (-287 |#2|) (-621 |#2|)) 28) (((-3 |#2| "failed") (-287 |#2|) (-114) (-287 |#2|) (-621 |#2|)) 29) (((-3 (-2 (|:| |particular| |#2|) (|:| -2619 (-621 |#2|))) |#2| "failed") |#2| (-114) (-1142)) 17) (((-3 (-2 (|:| |particular| |#2|) (|:| -2619 (-621 |#2|))) |#2| "failed") (-287 |#2|) (-114) (-1142)) 18) (((-3 (-2 (|:| |particular| (-1225 |#2|)) (|:| -2619 (-621 (-1225 |#2|)))) "failed") (-621 |#2|) (-621 (-114)) (-1142)) 24) (((-3 (-2 (|:| |particular| (-1225 |#2|)) (|:| -2619 (-621 (-1225 |#2|)))) "failed") (-621 (-287 |#2|)) (-621 (-114)) (-1142)) 26) (((-3 (-621 (-1225 |#2|)) "failed") (-665 |#2|) (-1142)) 37) (((-3 (-2 (|:| |particular| (-1225 |#2|)) (|:| -2619 (-621 (-1225 |#2|)))) "failed") (-665 |#2|) (-1225 |#2|) (-1142)) 35)))
+(((-778 |#1| |#2|) (-10 -7 (-15 -2310 ((-3 (-2 (|:| |particular| (-1225 |#2|)) (|:| -2619 (-621 (-1225 |#2|)))) "failed") (-665 |#2|) (-1225 |#2|) (-1142))) (-15 -2310 ((-3 (-621 (-1225 |#2|)) "failed") (-665 |#2|) (-1142))) (-15 -2310 ((-3 (-2 (|:| |particular| (-1225 |#2|)) (|:| -2619 (-621 (-1225 |#2|)))) "failed") (-621 (-287 |#2|)) (-621 (-114)) (-1142))) (-15 -2310 ((-3 (-2 (|:| |particular| (-1225 |#2|)) (|:| -2619 (-621 (-1225 |#2|)))) "failed") (-621 |#2|) (-621 (-114)) (-1142))) (-15 -2310 ((-3 (-2 (|:| |particular| |#2|) (|:| -2619 (-621 |#2|))) |#2| "failed") (-287 |#2|) (-114) (-1142))) (-15 -2310 ((-3 (-2 (|:| |particular| |#2|) (|:| -2619 (-621 |#2|))) |#2| "failed") |#2| (-114) (-1142))) (-15 -2310 ((-3 |#2| "failed") (-287 |#2|) (-114) (-287 |#2|) (-621 |#2|))) (-15 -2310 ((-3 |#2| "failed") |#2| (-114) (-287 |#2|) (-621 |#2|)))) (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)) (-13 (-29 |#1|) (-1164) (-930))) (T -778))
+((-2310 (*1 *2 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-287 *2)) (-5 *5 (-621 *2)) (-4 *2 (-13 (-29 *6) (-1164) (-930))) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *1 (-778 *6 *2)))) (-2310 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-287 *2)) (-5 *4 (-114)) (-5 *5 (-621 *2)) (-4 *2 (-13 (-29 *6) (-1164) (-930))) (-5 *1 (-778 *6 *2)) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))))) (-2310 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-114)) (-5 *5 (-1142)) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-3 (-2 (|:| |particular| *3) (|:| -2619 (-621 *3))) *3 "failed")) (-5 *1 (-778 *6 *3)) (-4 *3 (-13 (-29 *6) (-1164) (-930))))) (-2310 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-287 *7)) (-5 *4 (-114)) (-5 *5 (-1142)) (-4 *7 (-13 (-29 *6) (-1164) (-930))) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-3 (-2 (|:| |particular| *7) (|:| -2619 (-621 *7))) *7 "failed")) (-5 *1 (-778 *6 *7)))) (-2310 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-621 *7)) (-5 *4 (-621 (-114))) (-5 *5 (-1142)) (-4 *7 (-13 (-29 *6) (-1164) (-930))) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-2 (|:| |particular| (-1225 *7)) (|:| -2619 (-621 (-1225 *7))))) (-5 *1 (-778 *6 *7)))) (-2310 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-621 (-287 *7))) (-5 *4 (-621 (-114))) (-5 *5 (-1142)) (-4 *7 (-13 (-29 *6) (-1164) (-930))) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-2 (|:| |particular| (-1225 *7)) (|:| -2619 (-621 (-1225 *7))))) (-5 *1 (-778 *6 *7)))) (-2310 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-665 *6)) (-5 *4 (-1142)) (-4 *6 (-13 (-29 *5) (-1164) (-930))) (-4 *5 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-621 (-1225 *6))) (-5 *1 (-778 *5 *6)))) (-2310 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-665 *7)) (-5 *5 (-1142)) (-4 *7 (-13 (-29 *6) (-1164) (-930))) (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-2 (|:| |particular| (-1225 *7)) (|:| -2619 (-621 (-1225 *7))))) (-5 *1 (-778 *6 *7)) (-5 *4 (-1225 *7)))))
+(-10 -7 (-15 -2310 ((-3 (-2 (|:| |particular| (-1225 |#2|)) (|:| -2619 (-621 (-1225 |#2|)))) "failed") (-665 |#2|) (-1225 |#2|) (-1142))) (-15 -2310 ((-3 (-621 (-1225 |#2|)) "failed") (-665 |#2|) (-1142))) (-15 -2310 ((-3 (-2 (|:| |particular| (-1225 |#2|)) (|:| -2619 (-621 (-1225 |#2|)))) "failed") (-621 (-287 |#2|)) (-621 (-114)) (-1142))) (-15 -2310 ((-3 (-2 (|:| |particular| (-1225 |#2|)) (|:| -2619 (-621 (-1225 |#2|)))) "failed") (-621 |#2|) (-621 (-114)) (-1142))) (-15 -2310 ((-3 (-2 (|:| |particular| |#2|) (|:| -2619 (-621 |#2|))) |#2| "failed") (-287 |#2|) (-114) (-1142))) (-15 -2310 ((-3 (-2 (|:| |particular| |#2|) (|:| -2619 (-621 |#2|))) |#2| "failed") |#2| (-114) (-1142))) (-15 -2310 ((-3 |#2| "failed") (-287 |#2|) (-114) (-287 |#2|) (-621 |#2|))) (-15 -2310 ((-3 |#2| "failed") |#2| (-114) (-287 |#2|) (-621 |#2|))))
+((-3923 (($) 9)) (-4237 (((-3 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))) "failed") (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 31)) (-3448 (((-621 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) $) 28)) (-1799 (($ (-2 (|:| -3336 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372)))))) 25)) (-1909 (($ (-621 (-2 (|:| -3336 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))))))) 23)) (-2067 (((-1230)) 12)))
+(((-779) (-10 -8 (-15 -3923 ($)) (-15 -2067 ((-1230))) (-15 -3448 ((-621 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) $)) (-15 -1909 ($ (-621 (-2 (|:| -3336 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372)))))))) (-15 -1799 ($ (-2 (|:| -3336 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))))))) (-15 -4237 ((-3 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))) "failed") (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))) (T -779))
+((-4237 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *2 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372)))) (-5 *1 (-779)))) (-1799 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -3336 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372)))))) (-5 *1 (-779)))) (-1909 (*1 *1 *2) (-12 (-5 *2 (-621 (-2 (|:| -3336 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))))))) (-5 *1 (-779)))) (-3448 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-5 *1 (-779)))) (-2067 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-779)))) (-3923 (*1 *1) (-5 *1 (-779))))
+(-10 -8 (-15 -3923 ($)) (-15 -2067 ((-1230))) (-15 -3448 ((-621 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) $)) (-15 -1909 ($ (-621 (-2 (|:| -3336 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372)))))))) (-15 -1799 ($ (-2 (|:| -3336 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (|:| -1791 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))))))) (-15 -4237 ((-3 (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372)) (|:| |expense| (-372)) (|:| |accuracy| (-372)) (|:| |intermediateResults| (-372))) "failed") (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))))
+((-1832 ((|#2| |#2| (-1142)) 16)) (-2590 ((|#2| |#2| (-1142)) 51)) (-3916 (((-1 |#2| |#2|) (-1142)) 11)))
+(((-780 |#1| |#2|) (-10 -7 (-15 -1832 (|#2| |#2| (-1142))) (-15 -2590 (|#2| |#2| (-1142))) (-15 -3916 ((-1 |#2| |#2|) (-1142)))) (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)) (-13 (-29 |#1|) (-1164) (-930))) (T -780))
+((-3916 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-1 *5 *5)) (-5 *1 (-780 *4 *5)) (-4 *5 (-13 (-29 *4) (-1164) (-930))))) (-2590 (*1 *2 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *1 (-780 *4 *2)) (-4 *2 (-13 (-29 *4) (-1164) (-930))))) (-1832 (*1 *2 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *1 (-780 *4 *2)) (-4 *2 (-13 (-29 *4) (-1164) (-930))))))
+(-10 -7 (-15 -1832 (|#2| |#2| (-1142))) (-15 -2590 (|#2| |#2| (-1142))) (-15 -3916 ((-1 |#2| |#2|) (-1142))))
+((-2310 (((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-621 (-372)) (-372) (-372)) 116) (((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-621 (-372)) (-372)) 117) (((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372)) (-621 (-372)) (-372)) 119) (((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-372)) 120) (((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372)) (-372)) 121) (((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372))) 122) (((-1006) (-784) (-1030)) 108) (((-1006) (-784)) 109)) (-3947 (((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-784) (-1030)) 75) (((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-784)) 77)))
+(((-781) (-10 -7 (-15 -2310 ((-1006) (-784))) (-15 -2310 ((-1006) (-784) (-1030))) (-15 -2310 ((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372)))) (-15 -2310 ((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372)) (-372))) (-15 -2310 ((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-372))) (-15 -2310 ((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372)) (-621 (-372)) (-372))) (-15 -2310 ((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-621 (-372)) (-372))) (-15 -2310 ((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-621 (-372)) (-372) (-372))) (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-784))) (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-784) (-1030))))) (T -781))
+((-3947 (*1 *2 *3 *4) (-12 (-5 *3 (-784)) (-5 *4 (-1030)) (-5 *2 (-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))))) (-5 *1 (-781)))) (-3947 (*1 *2 *3) (-12 (-5 *3 (-784)) (-5 *2 (-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))))) (-5 *1 (-781)))) (-2310 (*1 *2 *3 *4 *4 *5 *6 *5 *4 *4) (-12 (-5 *3 (-1225 (-309 *4))) (-5 *5 (-621 (-372))) (-5 *6 (-309 (-372))) (-5 *4 (-372)) (-5 *2 (-1006)) (-5 *1 (-781)))) (-2310 (*1 *2 *3 *4 *4 *5 *6 *5 *4) (-12 (-5 *3 (-1225 (-309 *4))) (-5 *5 (-621 (-372))) (-5 *6 (-309 (-372))) (-5 *4 (-372)) (-5 *2 (-1006)) (-5 *1 (-781)))) (-2310 (*1 *2 *3 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1225 (-309 (-372)))) (-5 *4 (-372)) (-5 *5 (-621 *4)) (-5 *2 (-1006)) (-5 *1 (-781)))) (-2310 (*1 *2 *3 *4 *4 *5 *6 *4) (-12 (-5 *3 (-1225 (-309 *4))) (-5 *5 (-621 (-372))) (-5 *6 (-309 (-372))) (-5 *4 (-372)) (-5 *2 (-1006)) (-5 *1 (-781)))) (-2310 (*1 *2 *3 *4 *4 *5 *4) (-12 (-5 *3 (-1225 (-309 (-372)))) (-5 *4 (-372)) (-5 *5 (-621 *4)) (-5 *2 (-1006)) (-5 *1 (-781)))) (-2310 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1225 (-309 (-372)))) (-5 *4 (-372)) (-5 *5 (-621 *4)) (-5 *2 (-1006)) (-5 *1 (-781)))) (-2310 (*1 *2 *3 *4) (-12 (-5 *3 (-784)) (-5 *4 (-1030)) (-5 *2 (-1006)) (-5 *1 (-781)))) (-2310 (*1 *2 *3) (-12 (-5 *3 (-784)) (-5 *2 (-1006)) (-5 *1 (-781)))))
+(-10 -7 (-15 -2310 ((-1006) (-784))) (-15 -2310 ((-1006) (-784) (-1030))) (-15 -2310 ((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372)))) (-15 -2310 ((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372)) (-372))) (-15 -2310 ((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-372))) (-15 -2310 ((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372)) (-621 (-372)) (-372))) (-15 -2310 ((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-621 (-372)) (-372))) (-15 -2310 ((-1006) (-1225 (-309 (-372))) (-372) (-372) (-621 (-372)) (-309 (-372)) (-621 (-372)) (-372) (-372))) (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-784))) (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-784) (-1030))))
+((-3071 (((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -2619 (-621 |#4|))) (-629 |#4|) |#4|) 35)))
+(((-782 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3071 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -2619 (-621 |#4|))) (-629 |#4|) |#4|))) (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))) (-1201 |#1|) (-1201 (-400 |#2|)) (-335 |#1| |#2| |#3|)) (T -782))
+((-3071 (*1 *2 *3 *4) (-12 (-5 *3 (-629 *4)) (-4 *4 (-335 *5 *6 *7)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *6 (-1201 *5)) (-4 *7 (-1201 (-400 *6))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2619 (-621 *4)))) (-5 *1 (-782 *5 *6 *7 *4)))))
+(-10 -7 (-15 -3071 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -2619 (-621 |#4|))) (-629 |#4|) |#4|)))
+((-1758 (((-2 (|:| -2649 |#3|) (|:| |rh| (-621 (-400 |#2|)))) |#4| (-621 (-400 |#2|))) 52)) (-1272 (((-621 (-2 (|:| -2596 |#2|) (|:| -2388 |#2|))) |#4| |#2|) 60) (((-621 (-2 (|:| -2596 |#2|) (|:| -2388 |#2|))) |#4|) 59) (((-621 (-2 (|:| -2596 |#2|) (|:| -2388 |#2|))) |#3| |#2|) 20) (((-621 (-2 (|:| -2596 |#2|) (|:| -2388 |#2|))) |#3|) 21)) (-1289 ((|#2| |#4| |#1|) 61) ((|#2| |#3| |#1|) 27)) (-3817 ((|#2| |#3| (-621 (-400 |#2|))) 93) (((-3 |#2| "failed") |#3| (-400 |#2|)) 90)))
+(((-783 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3817 ((-3 |#2| "failed") |#3| (-400 |#2|))) (-15 -3817 (|#2| |#3| (-621 (-400 |#2|)))) (-15 -1272 ((-621 (-2 (|:| -2596 |#2|) (|:| -2388 |#2|))) |#3|)) (-15 -1272 ((-621 (-2 (|:| -2596 |#2|) (|:| -2388 |#2|))) |#3| |#2|)) (-15 -1289 (|#2| |#3| |#1|)) (-15 -1272 ((-621 (-2 (|:| -2596 |#2|) (|:| -2388 |#2|))) |#4|)) (-15 -1272 ((-621 (-2 (|:| -2596 |#2|) (|:| -2388 |#2|))) |#4| |#2|)) (-15 -1289 (|#2| |#4| |#1|)) (-15 -1758 ((-2 (|:| -2649 |#3|) (|:| |rh| (-621 (-400 |#2|)))) |#4| (-621 (-400 |#2|))))) (-13 (-356) (-145) (-1009 (-400 (-549)))) (-1201 |#1|) (-632 |#2|) (-632 (-400 |#2|))) (T -783))
+((-1758 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *6 (-1201 *5)) (-5 *2 (-2 (|:| -2649 *7) (|:| |rh| (-621 (-400 *6))))) (-5 *1 (-783 *5 *6 *7 *3)) (-5 *4 (-621 (-400 *6))) (-4 *7 (-632 *6)) (-4 *3 (-632 (-400 *6))))) (-1289 (*1 *2 *3 *4) (-12 (-4 *2 (-1201 *4)) (-5 *1 (-783 *4 *2 *5 *3)) (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *5 (-632 *2)) (-4 *3 (-632 (-400 *2))))) (-1272 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *4 (-1201 *5)) (-5 *2 (-621 (-2 (|:| -2596 *4) (|:| -2388 *4)))) (-5 *1 (-783 *5 *4 *6 *3)) (-4 *6 (-632 *4)) (-4 *3 (-632 (-400 *4))))) (-1272 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *5 (-1201 *4)) (-5 *2 (-621 (-2 (|:| -2596 *5) (|:| -2388 *5)))) (-5 *1 (-783 *4 *5 *6 *3)) (-4 *6 (-632 *5)) (-4 *3 (-632 (-400 *5))))) (-1289 (*1 *2 *3 *4) (-12 (-4 *2 (-1201 *4)) (-5 *1 (-783 *4 *2 *3 *5)) (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *3 (-632 *2)) (-4 *5 (-632 (-400 *2))))) (-1272 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *4 (-1201 *5)) (-5 *2 (-621 (-2 (|:| -2596 *4) (|:| -2388 *4)))) (-5 *1 (-783 *5 *4 *3 *6)) (-4 *3 (-632 *4)) (-4 *6 (-632 (-400 *4))))) (-1272 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *5 (-1201 *4)) (-5 *2 (-621 (-2 (|:| -2596 *5) (|:| -2388 *5)))) (-5 *1 (-783 *4 *5 *3 *6)) (-4 *3 (-632 *5)) (-4 *6 (-632 (-400 *5))))) (-3817 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-400 *2))) (-4 *2 (-1201 *5)) (-5 *1 (-783 *5 *2 *3 *6)) (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *3 (-632 *2)) (-4 *6 (-632 (-400 *2))))) (-3817 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-400 *2)) (-4 *2 (-1201 *5)) (-5 *1 (-783 *5 *2 *3 *6)) (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *3 (-632 *2)) (-4 *6 (-632 *4)))))
+(-10 -7 (-15 -3817 ((-3 |#2| "failed") |#3| (-400 |#2|))) (-15 -3817 (|#2| |#3| (-621 (-400 |#2|)))) (-15 -1272 ((-621 (-2 (|:| -2596 |#2|) (|:| -2388 |#2|))) |#3|)) (-15 -1272 ((-621 (-2 (|:| -2596 |#2|) (|:| -2388 |#2|))) |#3| |#2|)) (-15 -1289 (|#2| |#3| |#1|)) (-15 -1272 ((-621 (-2 (|:| -2596 |#2|) (|:| -2388 |#2|))) |#4|)) (-15 -1272 ((-621 (-2 (|:| -2596 |#2|) (|:| -2388 |#2|))) |#4| |#2|)) (-15 -1289 (|#2| |#4| |#1|)) (-15 -1758 ((-2 (|:| -2649 |#3|) (|:| |rh| (-621 (-400 |#2|)))) |#4| (-621 (-400 |#2|)))))
+((-3832 (((-112) $ $) NIL)) (-2657 (((-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) $) 13)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 15) (($ (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) 12)) (-2387 (((-112) $ $) NIL)))
+(((-784) (-13 (-1066) (-10 -8 (-15 -3845 ($ (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3845 ((-834) $)) (-15 -2657 ((-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) $))))) (T -784))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-784)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *1 (-784)))) (-2657 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219)))) (-5 *1 (-784)))))
+(-13 (-1066) (-10 -8 (-15 -3845 ($ (-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))))) (-15 -3845 ((-834) $)) (-15 -2657 ((-2 (|:| |xinit| (-219)) (|:| |xend| (-219)) (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219))) (|:| |abserr| (-219)) (|:| |relerr| (-219))) $))))
+((-1757 (((-621 (-2 (|:| |frac| (-400 |#2|)) (|:| -2649 |#3|))) |#3| (-1 (-621 |#2|) |#2| (-1138 |#2|)) (-1 (-411 |#2|) |#2|)) 118)) (-2361 (((-621 (-2 (|:| |poly| |#2|) (|:| -2649 |#3|))) |#3| (-1 (-621 |#1|) |#2|)) 46)) (-2730 (((-621 (-2 (|:| |deg| (-747)) (|:| -2649 |#2|))) |#3|) 95)) (-3380 ((|#2| |#3|) 37)) (-3791 (((-621 (-2 (|:| -2587 |#1|) (|:| -2649 |#3|))) |#3| (-1 (-621 |#1|) |#2|)) 82)) (-1564 ((|#3| |#3| (-400 |#2|)) 63) ((|#3| |#3| |#2|) 79)))
+(((-785 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3380 (|#2| |#3|)) (-15 -2730 ((-621 (-2 (|:| |deg| (-747)) (|:| -2649 |#2|))) |#3|)) (-15 -3791 ((-621 (-2 (|:| -2587 |#1|) (|:| -2649 |#3|))) |#3| (-1 (-621 |#1|) |#2|))) (-15 -2361 ((-621 (-2 (|:| |poly| |#2|) (|:| -2649 |#3|))) |#3| (-1 (-621 |#1|) |#2|))) (-15 -1757 ((-621 (-2 (|:| |frac| (-400 |#2|)) (|:| -2649 |#3|))) |#3| (-1 (-621 |#2|) |#2| (-1138 |#2|)) (-1 (-411 |#2|) |#2|))) (-15 -1564 (|#3| |#3| |#2|)) (-15 -1564 (|#3| |#3| (-400 |#2|)))) (-13 (-356) (-145) (-1009 (-400 (-549)))) (-1201 |#1|) (-632 |#2|) (-632 (-400 |#2|))) (T -785))
+((-1564 (*1 *2 *2 *3) (-12 (-5 *3 (-400 *5)) (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *5 (-1201 *4)) (-5 *1 (-785 *4 *5 *2 *6)) (-4 *2 (-632 *5)) (-4 *6 (-632 *3)))) (-1564 (*1 *2 *2 *3) (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *3 (-1201 *4)) (-5 *1 (-785 *4 *3 *2 *5)) (-4 *2 (-632 *3)) (-4 *5 (-632 (-400 *3))))) (-1757 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 (-621 *7) *7 (-1138 *7))) (-5 *5 (-1 (-411 *7) *7)) (-4 *7 (-1201 *6)) (-4 *6 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-5 *2 (-621 (-2 (|:| |frac| (-400 *7)) (|:| -2649 *3)))) (-5 *1 (-785 *6 *7 *3 *8)) (-4 *3 (-632 *7)) (-4 *8 (-632 (-400 *7))))) (-2361 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-621 *5) *6)) (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *6 (-1201 *5)) (-5 *2 (-621 (-2 (|:| |poly| *6) (|:| -2649 *3)))) (-5 *1 (-785 *5 *6 *3 *7)) (-4 *3 (-632 *6)) (-4 *7 (-632 (-400 *6))))) (-3791 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-621 *5) *6)) (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *6 (-1201 *5)) (-5 *2 (-621 (-2 (|:| -2587 *5) (|:| -2649 *3)))) (-5 *1 (-785 *5 *6 *3 *7)) (-4 *3 (-632 *6)) (-4 *7 (-632 (-400 *6))))) (-2730 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *5 (-1201 *4)) (-5 *2 (-621 (-2 (|:| |deg| (-747)) (|:| -2649 *5)))) (-5 *1 (-785 *4 *5 *3 *6)) (-4 *3 (-632 *5)) (-4 *6 (-632 (-400 *5))))) (-3380 (*1 *2 *3) (-12 (-4 *2 (-1201 *4)) (-5 *1 (-785 *4 *2 *3 *5)) (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *3 (-632 *2)) (-4 *5 (-632 (-400 *2))))))
+(-10 -7 (-15 -3380 (|#2| |#3|)) (-15 -2730 ((-621 (-2 (|:| |deg| (-747)) (|:| -2649 |#2|))) |#3|)) (-15 -3791 ((-621 (-2 (|:| -2587 |#1|) (|:| -2649 |#3|))) |#3| (-1 (-621 |#1|) |#2|))) (-15 -2361 ((-621 (-2 (|:| |poly| |#2|) (|:| -2649 |#3|))) |#3| (-1 (-621 |#1|) |#2|))) (-15 -1757 ((-621 (-2 (|:| |frac| (-400 |#2|)) (|:| -2649 |#3|))) |#3| (-1 (-621 |#2|) |#2| (-1138 |#2|)) (-1 (-411 |#2|) |#2|))) (-15 -1564 (|#3| |#3| |#2|)) (-15 -1564 (|#3| |#3| (-400 |#2|))))
+((-2422 (((-2 (|:| -2619 (-621 (-400 |#2|))) (|:| -3697 (-665 |#1|))) (-630 |#2| (-400 |#2|)) (-621 (-400 |#2|))) 121) (((-2 (|:| |particular| (-3 (-400 |#2|) "failed")) (|:| -2619 (-621 (-400 |#2|)))) (-630 |#2| (-400 |#2|)) (-400 |#2|)) 120) (((-2 (|:| -2619 (-621 (-400 |#2|))) (|:| -3697 (-665 |#1|))) (-629 (-400 |#2|)) (-621 (-400 |#2|))) 115) (((-2 (|:| |particular| (-3 (-400 |#2|) "failed")) (|:| -2619 (-621 (-400 |#2|)))) (-629 (-400 |#2|)) (-400 |#2|)) 113)) (-3512 ((|#2| (-630 |#2| (-400 |#2|))) 80) ((|#2| (-629 (-400 |#2|))) 83)))
+(((-786 |#1| |#2|) (-10 -7 (-15 -2422 ((-2 (|:| |particular| (-3 (-400 |#2|) "failed")) (|:| -2619 (-621 (-400 |#2|)))) (-629 (-400 |#2|)) (-400 |#2|))) (-15 -2422 ((-2 (|:| -2619 (-621 (-400 |#2|))) (|:| -3697 (-665 |#1|))) (-629 (-400 |#2|)) (-621 (-400 |#2|)))) (-15 -2422 ((-2 (|:| |particular| (-3 (-400 |#2|) "failed")) (|:| -2619 (-621 (-400 |#2|)))) (-630 |#2| (-400 |#2|)) (-400 |#2|))) (-15 -2422 ((-2 (|:| -2619 (-621 (-400 |#2|))) (|:| -3697 (-665 |#1|))) (-630 |#2| (-400 |#2|)) (-621 (-400 |#2|)))) (-15 -3512 (|#2| (-629 (-400 |#2|)))) (-15 -3512 (|#2| (-630 |#2| (-400 |#2|))))) (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))) (-1201 |#1|)) (T -786))
+((-3512 (*1 *2 *3) (-12 (-5 *3 (-630 *2 (-400 *2))) (-4 *2 (-1201 *4)) (-5 *1 (-786 *4 *2)) (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))))) (-3512 (*1 *2 *3) (-12 (-5 *3 (-629 (-400 *2))) (-4 *2 (-1201 *4)) (-5 *1 (-786 *4 *2)) (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))))) (-2422 (*1 *2 *3 *4) (-12 (-5 *3 (-630 *6 (-400 *6))) (-4 *6 (-1201 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-2 (|:| -2619 (-621 (-400 *6))) (|:| -3697 (-665 *5)))) (-5 *1 (-786 *5 *6)) (-5 *4 (-621 (-400 *6))))) (-2422 (*1 *2 *3 *4) (-12 (-5 *3 (-630 *6 (-400 *6))) (-5 *4 (-400 *6)) (-4 *6 (-1201 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2619 (-621 *4)))) (-5 *1 (-786 *5 *6)))) (-2422 (*1 *2 *3 *4) (-12 (-5 *3 (-629 (-400 *6))) (-4 *6 (-1201 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-2 (|:| -2619 (-621 (-400 *6))) (|:| -3697 (-665 *5)))) (-5 *1 (-786 *5 *6)) (-5 *4 (-621 (-400 *6))))) (-2422 (*1 *2 *3 *4) (-12 (-5 *3 (-629 (-400 *6))) (-5 *4 (-400 *6)) (-4 *6 (-1201 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2619 (-621 *4)))) (-5 *1 (-786 *5 *6)))))
+(-10 -7 (-15 -2422 ((-2 (|:| |particular| (-3 (-400 |#2|) "failed")) (|:| -2619 (-621 (-400 |#2|)))) (-629 (-400 |#2|)) (-400 |#2|))) (-15 -2422 ((-2 (|:| -2619 (-621 (-400 |#2|))) (|:| -3697 (-665 |#1|))) (-629 (-400 |#2|)) (-621 (-400 |#2|)))) (-15 -2422 ((-2 (|:| |particular| (-3 (-400 |#2|) "failed")) (|:| -2619 (-621 (-400 |#2|)))) (-630 |#2| (-400 |#2|)) (-400 |#2|))) (-15 -2422 ((-2 (|:| -2619 (-621 (-400 |#2|))) (|:| -3697 (-665 |#1|))) (-630 |#2| (-400 |#2|)) (-621 (-400 |#2|)))) (-15 -3512 (|#2| (-629 (-400 |#2|)))) (-15 -3512 (|#2| (-630 |#2| (-400 |#2|)))))
+((-4195 (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#1|))) |#5| |#4|) 48)))
+(((-787 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4195 ((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#1|))) |#5| |#4|))) (-356) (-632 |#1|) (-1201 |#1|) (-701 |#1| |#3|) (-632 |#4|)) (T -787))
+((-4195 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-4 *7 (-1201 *5)) (-4 *4 (-701 *5 *7)) (-5 *2 (-2 (|:| -3697 (-665 *6)) (|:| |vec| (-1225 *5)))) (-5 *1 (-787 *5 *6 *7 *4 *3)) (-4 *6 (-632 *5)) (-4 *3 (-632 *4)))))
+(-10 -7 (-15 -4195 ((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#1|))) |#5| |#4|)))
+((-1757 (((-621 (-2 (|:| |frac| (-400 |#2|)) (|:| -2649 (-630 |#2| (-400 |#2|))))) (-630 |#2| (-400 |#2|)) (-1 (-411 |#2|) |#2|)) 47)) (-3658 (((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-411 |#2|) |#2|)) 141 (|has| |#1| (-27))) (((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|))) 138 (|has| |#1| (-27))) (((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-411 |#2|) |#2|)) 142 (|has| |#1| (-27))) (((-621 (-400 |#2|)) (-629 (-400 |#2|))) 140 (|has| |#1| (-27))) (((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|) (-1 (-411 |#2|) |#2|)) 38) (((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|)) 39) (((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|) (-1 (-411 |#2|) |#2|)) 36) (((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|)) 37)) (-2361 (((-621 (-2 (|:| |poly| |#2|) (|:| -2649 (-630 |#2| (-400 |#2|))))) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|)) 83)))
+(((-788 |#1| |#2|) (-10 -7 (-15 -3658 ((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|))) (-15 -3658 ((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|) (-1 (-411 |#2|) |#2|))) (-15 -3658 ((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|))) (-15 -3658 ((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|) (-1 (-411 |#2|) |#2|))) (-15 -1757 ((-621 (-2 (|:| |frac| (-400 |#2|)) (|:| -2649 (-630 |#2| (-400 |#2|))))) (-630 |#2| (-400 |#2|)) (-1 (-411 |#2|) |#2|))) (-15 -2361 ((-621 (-2 (|:| |poly| |#2|) (|:| -2649 (-630 |#2| (-400 |#2|))))) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3658 ((-621 (-400 |#2|)) (-629 (-400 |#2|)))) (-15 -3658 ((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-411 |#2|) |#2|))) (-15 -3658 ((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)))) (-15 -3658 ((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-411 |#2|) |#2|)))) |%noBranch|)) (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))) (-1201 |#1|)) (T -788))
+((-3658 (*1 *2 *3 *4) (-12 (-5 *3 (-630 *6 (-400 *6))) (-5 *4 (-1 (-411 *6) *6)) (-4 *6 (-1201 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-621 (-400 *6))) (-5 *1 (-788 *5 *6)))) (-3658 (*1 *2 *3) (-12 (-5 *3 (-630 *5 (-400 *5))) (-4 *5 (-1201 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-621 (-400 *5))) (-5 *1 (-788 *4 *5)))) (-3658 (*1 *2 *3 *4) (-12 (-5 *3 (-629 (-400 *6))) (-5 *4 (-1 (-411 *6) *6)) (-4 *6 (-1201 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-621 (-400 *6))) (-5 *1 (-788 *5 *6)))) (-3658 (*1 *2 *3) (-12 (-5 *3 (-629 (-400 *5))) (-4 *5 (-1201 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-621 (-400 *5))) (-5 *1 (-788 *4 *5)))) (-2361 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-621 *5) *6)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *6 (-1201 *5)) (-5 *2 (-621 (-2 (|:| |poly| *6) (|:| -2649 (-630 *6 (-400 *6)))))) (-5 *1 (-788 *5 *6)) (-5 *3 (-630 *6 (-400 *6))))) (-1757 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-411 *6) *6)) (-4 *6 (-1201 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-5 *2 (-621 (-2 (|:| |frac| (-400 *6)) (|:| -2649 (-630 *6 (-400 *6)))))) (-5 *1 (-788 *5 *6)) (-5 *3 (-630 *6 (-400 *6))))) (-3658 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-630 *7 (-400 *7))) (-5 *4 (-1 (-621 *6) *7)) (-5 *5 (-1 (-411 *7) *7)) (-4 *6 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *7 (-1201 *6)) (-5 *2 (-621 (-400 *7))) (-5 *1 (-788 *6 *7)))) (-3658 (*1 *2 *3 *4) (-12 (-5 *3 (-630 *6 (-400 *6))) (-5 *4 (-1 (-621 *5) *6)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *6 (-1201 *5)) (-5 *2 (-621 (-400 *6))) (-5 *1 (-788 *5 *6)))) (-3658 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-629 (-400 *7))) (-5 *4 (-1 (-621 *6) *7)) (-5 *5 (-1 (-411 *7) *7)) (-4 *6 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *7 (-1201 *6)) (-5 *2 (-621 (-400 *7))) (-5 *1 (-788 *6 *7)))) (-3658 (*1 *2 *3 *4) (-12 (-5 *3 (-629 (-400 *6))) (-5 *4 (-1 (-621 *5) *6)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))) (-4 *6 (-1201 *5)) (-5 *2 (-621 (-400 *6))) (-5 *1 (-788 *5 *6)))))
+(-10 -7 (-15 -3658 ((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|))) (-15 -3658 ((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-621 |#1|) |#2|) (-1 (-411 |#2|) |#2|))) (-15 -3658 ((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|))) (-15 -3658 ((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|) (-1 (-411 |#2|) |#2|))) (-15 -1757 ((-621 (-2 (|:| |frac| (-400 |#2|)) (|:| -2649 (-630 |#2| (-400 |#2|))))) (-630 |#2| (-400 |#2|)) (-1 (-411 |#2|) |#2|))) (-15 -2361 ((-621 (-2 (|:| |poly| |#2|) (|:| -2649 (-630 |#2| (-400 |#2|))))) (-630 |#2| (-400 |#2|)) (-1 (-621 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3658 ((-621 (-400 |#2|)) (-629 (-400 |#2|)))) (-15 -3658 ((-621 (-400 |#2|)) (-629 (-400 |#2|)) (-1 (-411 |#2|) |#2|))) (-15 -3658 ((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)))) (-15 -3658 ((-621 (-400 |#2|)) (-630 |#2| (-400 |#2|)) (-1 (-411 |#2|) |#2|)))) |%noBranch|))
+((-1509 (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#1|))) (-665 |#2|) (-1225 |#1|)) 85) (((-2 (|:| A (-665 |#1|)) (|:| |eqs| (-621 (-2 (|:| C (-665 |#1|)) (|:| |g| (-1225 |#1|)) (|:| -2649 |#2|) (|:| |rh| |#1|))))) (-665 |#1|) (-1225 |#1|)) 15)) (-4302 (((-2 (|:| |particular| (-3 (-1225 |#1|) "failed")) (|:| -2619 (-621 (-1225 |#1|)))) (-665 |#2|) (-1225 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -2619 (-621 |#1|))) |#2| |#1|)) 92)) (-2310 (((-3 (-2 (|:| |particular| (-1225 |#1|)) (|:| -2619 (-665 |#1|))) "failed") (-665 |#1|) (-1225 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -2619 (-621 |#1|))) "failed") |#2| |#1|)) 43)))
+(((-789 |#1| |#2|) (-10 -7 (-15 -1509 ((-2 (|:| A (-665 |#1|)) (|:| |eqs| (-621 (-2 (|:| C (-665 |#1|)) (|:| |g| (-1225 |#1|)) (|:| -2649 |#2|) (|:| |rh| |#1|))))) (-665 |#1|) (-1225 |#1|))) (-15 -1509 ((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#1|))) (-665 |#2|) (-1225 |#1|))) (-15 -2310 ((-3 (-2 (|:| |particular| (-1225 |#1|)) (|:| -2619 (-665 |#1|))) "failed") (-665 |#1|) (-1225 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -2619 (-621 |#1|))) "failed") |#2| |#1|))) (-15 -4302 ((-2 (|:| |particular| (-3 (-1225 |#1|) "failed")) (|:| -2619 (-621 (-1225 |#1|)))) (-665 |#2|) (-1225 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -2619 (-621 |#1|))) |#2| |#1|)))) (-356) (-632 |#1|)) (T -789))
+((-4302 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-665 *7)) (-5 *5 (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -2619 (-621 *6))) *7 *6)) (-4 *6 (-356)) (-4 *7 (-632 *6)) (-5 *2 (-2 (|:| |particular| (-3 (-1225 *6) "failed")) (|:| -2619 (-621 (-1225 *6))))) (-5 *1 (-789 *6 *7)) (-5 *4 (-1225 *6)))) (-2310 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-2 (|:| |particular| *6) (|:| -2619 (-621 *6))) "failed") *7 *6)) (-4 *6 (-356)) (-4 *7 (-632 *6)) (-5 *2 (-2 (|:| |particular| (-1225 *6)) (|:| -2619 (-665 *6)))) (-5 *1 (-789 *6 *7)) (-5 *3 (-665 *6)) (-5 *4 (-1225 *6)))) (-1509 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-4 *6 (-632 *5)) (-5 *2 (-2 (|:| -3697 (-665 *6)) (|:| |vec| (-1225 *5)))) (-5 *1 (-789 *5 *6)) (-5 *3 (-665 *6)) (-5 *4 (-1225 *5)))) (-1509 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-5 *2 (-2 (|:| A (-665 *5)) (|:| |eqs| (-621 (-2 (|:| C (-665 *5)) (|:| |g| (-1225 *5)) (|:| -2649 *6) (|:| |rh| *5)))))) (-5 *1 (-789 *5 *6)) (-5 *3 (-665 *5)) (-5 *4 (-1225 *5)) (-4 *6 (-632 *5)))))
+(-10 -7 (-15 -1509 ((-2 (|:| A (-665 |#1|)) (|:| |eqs| (-621 (-2 (|:| C (-665 |#1|)) (|:| |g| (-1225 |#1|)) (|:| -2649 |#2|) (|:| |rh| |#1|))))) (-665 |#1|) (-1225 |#1|))) (-15 -1509 ((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#1|))) (-665 |#2|) (-1225 |#1|))) (-15 -2310 ((-3 (-2 (|:| |particular| (-1225 |#1|)) (|:| -2619 (-665 |#1|))) "failed") (-665 |#1|) (-1225 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -2619 (-621 |#1|))) "failed") |#2| |#1|))) (-15 -4302 ((-2 (|:| |particular| (-3 (-1225 |#1|) "failed")) (|:| -2619 (-621 (-1225 |#1|)))) (-665 |#2|) (-1225 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -2619 (-621 |#1|))) |#2| |#1|))))
+((-2588 (((-665 |#1|) (-621 |#1|) (-747)) 13) (((-665 |#1|) (-621 |#1|)) 14)) (-3164 (((-3 (-1225 |#1|) "failed") |#2| |#1| (-621 |#1|)) 34)) (-3250 (((-3 |#1| "failed") |#2| |#1| (-621 |#1|) (-1 |#1| |#1|)) 42)))
+(((-790 |#1| |#2|) (-10 -7 (-15 -2588 ((-665 |#1|) (-621 |#1|))) (-15 -2588 ((-665 |#1|) (-621 |#1|) (-747))) (-15 -3164 ((-3 (-1225 |#1|) "failed") |#2| |#1| (-621 |#1|))) (-15 -3250 ((-3 |#1| "failed") |#2| |#1| (-621 |#1|) (-1 |#1| |#1|)))) (-356) (-632 |#1|)) (T -790))
+((-3250 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *4 (-621 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-356)) (-5 *1 (-790 *2 *3)) (-4 *3 (-632 *2)))) (-3164 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-621 *4)) (-4 *4 (-356)) (-5 *2 (-1225 *4)) (-5 *1 (-790 *4 *3)) (-4 *3 (-632 *4)))) (-2588 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *5)) (-5 *4 (-747)) (-4 *5 (-356)) (-5 *2 (-665 *5)) (-5 *1 (-790 *5 *6)) (-4 *6 (-632 *5)))) (-2588 (*1 *2 *3) (-12 (-5 *3 (-621 *4)) (-4 *4 (-356)) (-5 *2 (-665 *4)) (-5 *1 (-790 *4 *5)) (-4 *5 (-632 *4)))))
+(-10 -7 (-15 -2588 ((-665 |#1|) (-621 |#1|))) (-15 -2588 ((-665 |#1|) (-621 |#1|) (-747))) (-15 -3164 ((-3 (-1225 |#1|) "failed") |#2| |#1| (-621 |#1|))) (-15 -3250 ((-3 |#1| "failed") |#2| |#1| (-621 |#1|) (-1 |#1| |#1|))))
+((-3832 (((-112) $ $) NIL (|has| |#2| (-1066)))) (-3210 (((-112) $) NIL (|has| |#2| (-130)))) (-1627 (($ (-892)) NIL (|has| |#2| (-1018)))) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-4280 (($ $ $) NIL (|has| |#2| (-769)))) (-2416 (((-3 $ "failed") $ $) NIL (|has| |#2| (-130)))) (-2850 (((-112) $ (-747)) NIL)) (-3614 (((-747)) NIL (|has| |#2| (-361)))) (-1741 (((-549) $) NIL (|has| |#2| (-821)))) (-2250 ((|#2| $ (-549) |#2|) NIL (|has| $ (-6 -4337)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1066)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1066)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1066)))) (-2657 (((-549) $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1066)))) (((-400 (-549)) $) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1066)))) ((|#2| $) NIL (|has| |#2| (-1066)))) (-3446 (((-665 (-549)) (-665 $)) NIL (-12 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (-12 (|has| |#2| (-617 (-549))) (|has| |#2| (-1018)))) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) NIL (|has| |#2| (-1018))) (((-665 |#2|) (-665 $)) NIL (|has| |#2| (-1018)))) (-2612 (((-3 $ "failed") $) NIL (|has| |#2| (-703)))) (-3237 (($) NIL (|has| |#2| (-361)))) (-1875 ((|#2| $ (-549) |#2|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#2| $ (-549)) NIL)) (-2357 (((-112) $) NIL (|has| |#2| (-821)))) (-2987 (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-2297 (((-112) $) NIL (|has| |#2| (-703)))) (-1992 (((-112) $) NIL (|has| |#2| (-821)))) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) NIL (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-3698 (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-1864 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#2| |#2|) $) NIL)) (-3309 (((-892) $) NIL (|has| |#2| (-361)))) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#2| (-1066)))) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3494 (($ (-892)) NIL (|has| |#2| (-361)))) (-3988 (((-1086) $) NIL (|has| |#2| (-1066)))) (-3645 ((|#2| $) NIL (|has| (-549) (-823)))) (-1943 (($ $ |#2|) NIL (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3347 (((-621 |#2|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#2| $ (-549) |#2|) NIL) ((|#2| $ (-549)) NIL)) (-1283 ((|#2| $ $) NIL (|has| |#2| (-1018)))) (-2167 (($ (-1225 |#2|)) NIL)) (-2260 (((-133)) NIL (|has| |#2| (-356)))) (-3455 (($ $) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-1142)) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-1 |#2| |#2|) (-747)) NIL (|has| |#2| (-1018))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1018)))) (-3997 (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-2279 (($ $) NIL)) (-3845 (((-1225 |#2|) $) NIL) (($ (-549)) NIL (-1536 (-12 (|has| |#2| (-1009 (-549))) (|has| |#2| (-1066))) (|has| |#2| (-1018)))) (($ (-400 (-549))) NIL (-12 (|has| |#2| (-1009 (-400 (-549)))) (|has| |#2| (-1066)))) (($ |#2|) NIL (|has| |#2| (-1066))) (((-834) $) NIL (|has| |#2| (-593 (-834))))) (-2371 (((-747)) NIL (|has| |#2| (-1018)))) (-3025 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2199 (($ $) NIL (|has| |#2| (-821)))) (-3274 (($) NIL (|has| |#2| (-130)) CONST)) (-3286 (($) NIL (|has| |#2| (-703)) CONST)) (-1699 (($ $) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#2| (-227)) (|has| |#2| (-1018)))) (($ $ (-1142)) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#2| (-871 (-1142))) (|has| |#2| (-1018)))) (($ $ (-1 |#2| |#2|) (-747)) NIL (|has| |#2| (-1018))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1018)))) (-2447 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2423 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2387 (((-112) $ $) NIL (|has| |#2| (-1066)))) (-2436 (((-112) $ $) NIL (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2409 (((-112) $ $) 11 (-1536 (|has| |#2| (-769)) (|has| |#2| (-821))))) (-2511 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2498 (($ $ $) NIL (|has| |#2| (-1018))) (($ $) NIL (|has| |#2| (-1018)))) (-2484 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-747)) NIL (|has| |#2| (-703))) (($ $ (-892)) NIL (|has| |#2| (-703)))) (* (($ (-549) $) NIL (|has| |#2| (-1018))) (($ $ $) NIL (|has| |#2| (-703))) (($ $ |#2|) NIL (|has| |#2| (-703))) (($ |#2| $) NIL (|has| |#2| (-703))) (($ (-747) $) NIL (|has| |#2| (-130))) (($ (-892) $) NIL (|has| |#2| (-25)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-791 |#1| |#2| |#3|) (-232 |#1| |#2|) (-747) (-769) (-1 (-112) (-1225 |#2|) (-1225 |#2|))) (T -791))
NIL
(-232 |#1| |#2|)
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3977 (((-621 (-747)) $) NIL) (((-621 (-747)) $ (-1143)) NIL)) (-1637 (((-747) $) NIL) (((-747) $ (-1143)) NIL)) (-2272 (((-621 (-794 (-1143))) $) NIL)) (-2084 (((-1139 $) $ (-794 (-1143))) NIL) (((-1139 |#1|) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-3186 (((-747) $) NIL) (((-747) $ (-621 (-794 (-1143)))) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-3979 (($ $) NIL (|has| |#1| (-444)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-3920 (($ $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-794 (-1143)) "failed") $) NIL) (((-3 (-1143) "failed") $) NIL) (((-3 (-1092 |#1| (-1143)) "failed") $) NIL)) (-2659 ((|#1| $) NIL) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-794 (-1143)) $) NIL) (((-1143) $) NIL) (((-1092 |#1| (-1143)) $) NIL)) (-1353 (($ $ $ (-794 (-1143))) NIL (|has| |#1| (-170)))) (-2070 (($ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1285 (($ $) NIL (|has| |#1| (-444))) (($ $ (-794 (-1143))) NIL (|has| |#1| (-444)))) (-2058 (((-621 $) $) NIL)) (-1420 (((-112) $) NIL (|has| |#1| (-880)))) (-2691 (($ $ |#1| (-521 (-794 (-1143))) $) NIL)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-794 (-1143)) (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-794 (-1143)) (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2088 (((-747) $ (-1143)) NIL) (((-747) $) NIL)) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) NIL)) (-2261 (($ (-1139 |#1|) (-794 (-1143))) NIL) (($ (-1139 $) (-794 (-1143))) NIL)) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-521 (-794 (-1143)))) NIL) (($ $ (-794 (-1143)) (-747)) NIL) (($ $ (-621 (-794 (-1143))) (-621 (-747))) NIL)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ (-794 (-1143))) NIL)) (-3611 (((-521 (-794 (-1143))) $) NIL) (((-747) $ (-794 (-1143))) NIL) (((-621 (-747)) $ (-621 (-794 (-1143)))) NIL)) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-3705 (($ (-1 (-521 (-794 (-1143))) (-521 (-794 (-1143)))) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-3040 (((-1 $ (-747)) (-1143)) NIL) (((-1 $ (-747)) $) NIL (|has| |#1| (-227)))) (-1520 (((-3 (-794 (-1143)) "failed") $) NIL)) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-4052 (((-794 (-1143)) $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-3851 (((-1125) $) NIL)) (-2709 (((-112) $) NIL)) (-4266 (((-3 (-621 $) "failed") $) NIL)) (-2533 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-2 (|:| |var| (-794 (-1143))) (|:| -3731 (-747))) "failed") $) NIL)) (-2255 (($ $) NIL)) (-3990 (((-1087) $) NIL)) (-2004 (((-112) $) NIL)) (-2016 ((|#1| $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-444)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-2121 (((-411 $) $) NIL (|has| |#1| (-880)))) (-2042 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-2686 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-794 (-1143)) |#1|) NIL) (($ $ (-621 (-794 (-1143))) (-621 |#1|)) NIL) (($ $ (-794 (-1143)) $) NIL) (($ $ (-621 (-794 (-1143))) (-621 $)) NIL) (($ $ (-1143) $) NIL (|has| |#1| (-227))) (($ $ (-621 (-1143)) (-621 $)) NIL (|has| |#1| (-227))) (($ $ (-1143) |#1|) NIL (|has| |#1| (-227))) (($ $ (-621 (-1143)) (-621 |#1|)) NIL (|has| |#1| (-227)))) (-3602 (($ $ (-794 (-1143))) NIL (|has| |#1| (-170)))) (-3456 (($ $ (-794 (-1143))) NIL) (($ $ (-621 (-794 (-1143)))) NIL) (($ $ (-794 (-1143)) (-747)) NIL) (($ $ (-621 (-794 (-1143))) (-621 (-747))) NIL) (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1920 (((-621 (-1143)) $) NIL)) (-3701 (((-521 (-794 (-1143))) $) NIL) (((-747) $ (-794 (-1143))) NIL) (((-621 (-747)) $ (-621 (-794 (-1143)))) NIL) (((-747) $ (-1143)) NIL)) (-2845 (((-863 (-372)) $) NIL (-12 (|has| (-794 (-1143)) (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-794 (-1143)) (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-794 (-1143)) (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-2216 ((|#1| $) NIL (|has| |#1| (-444))) (($ $ (-794 (-1143))) NIL (|has| |#1| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-794 (-1143))) NIL) (($ (-1143)) NIL) (($ (-1092 |#1| (-1143))) NIL) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#1| (-541)))) (-4141 (((-621 |#1|) $) NIL)) (-2152 ((|#1| $ (-521 (-794 (-1143)))) NIL) (($ $ (-794 (-1143)) (-747)) NIL) (($ $ (-621 (-794 (-1143))) (-621 (-747))) NIL)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2082 (((-747)) NIL)) (-1509 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $ (-794 (-1143))) NIL) (($ $ (-621 (-794 (-1143)))) NIL) (($ $ (-794 (-1143)) (-747)) NIL) (($ $ (-621 (-794 (-1143))) (-621 (-747))) NIL) (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-792 |#1|) (-13 (-246 |#1| (-1143) (-794 (-1143)) (-521 (-794 (-1143)))) (-1009 (-1092 |#1| (-1143)))) (-1018)) (T -792))
-NIL
-(-13 (-246 |#1| (-1143) (-794 (-1143)) (-521 (-794 (-1143)))) (-1009 (-1092 |#1| (-1143))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#2| (-356)))) (-2258 (($ $) NIL (|has| |#2| (-356)))) (-2799 (((-112) $) NIL (|has| |#2| (-356)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL (|has| |#2| (-356)))) (-2402 (((-411 $) $) NIL (|has| |#2| (-356)))) (-3866 (((-112) $ $) NIL (|has| |#2| (-356)))) (-1682 (($) NIL T CONST)) (-2095 (($ $ $) NIL (|has| |#2| (-356)))) (-2114 (((-3 $ "failed") $) NIL)) (-2067 (($ $ $) NIL (|has| |#2| (-356)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| |#2| (-356)))) (-1420 (((-112) $) NIL (|has| |#2| (-356)))) (-2675 (((-112) $) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#2| (-356)))) (-3697 (($ (-621 $)) NIL (|has| |#2| (-356))) (($ $ $) NIL (|has| |#2| (-356)))) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 20 (|has| |#2| (-356)))) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#2| (-356)))) (-3727 (($ (-621 $)) NIL (|has| |#2| (-356))) (($ $ $) NIL (|has| |#2| (-356)))) (-2121 (((-411 $) $) NIL (|has| |#2| (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#2| (-356)))) (-2042 (((-3 $ "failed") $ $) NIL (|has| |#2| (-356)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#2| (-356)))) (-3684 (((-747) $) NIL (|has| |#2| (-356)))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#2| (-356)))) (-3456 (($ $ (-747)) NIL) (($ $) 13)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) 10) ((|#2| $) 11) (($ (-400 (-549))) NIL (|has| |#2| (-356))) (($ $) NIL (|has| |#2| (-356)))) (-2082 (((-747)) NIL)) (-1498 (((-112) $ $) NIL (|has| |#2| (-356)))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $ (-747)) NIL) (($ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ $) 15 (|has| |#2| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-747)) NIL) (($ $ (-892)) NIL) (($ $ (-549)) 18 (|has| |#2| (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ $) NIL) (($ (-400 (-549)) $) NIL (|has| |#2| (-356))) (($ $ (-400 (-549))) NIL (|has| |#2| (-356)))))
-(((-793 |#1| |#2| |#3|) (-13 (-111 $ $) (-227) (-10 -8 (IF (|has| |#2| (-356)) (-6 (-356)) |%noBranch|) (-15 -3846 ($ |#2|)) (-15 -3846 (|#2| $)))) (-1067) (-871 |#1|) |#1|) (T -793))
-((-3846 (*1 *1 *2) (-12 (-4 *3 (-1067)) (-14 *4 *3) (-5 *1 (-793 *3 *2 *4)) (-4 *2 (-871 *3)))) (-3846 (*1 *2 *1) (-12 (-4 *2 (-871 *3)) (-5 *1 (-793 *3 *2 *4)) (-4 *3 (-1067)) (-14 *4 *3))))
-(-13 (-111 $ $) (-227) (-10 -8 (IF (|has| |#2| (-356)) (-6 (-356)) |%noBranch|) (-15 -3846 ($ |#2|)) (-15 -3846 (|#2| $))))
-((-3834 (((-112) $ $) NIL)) (-1637 (((-747) $) NIL)) (-3011 ((|#1| $) 10)) (-2714 (((-3 |#1| "failed") $) NIL)) (-2659 ((|#1| $) NIL)) (-2088 (((-747) $) 11)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-3040 (($ |#1| (-747)) 9)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3456 (($ $) NIL) (($ $ (-747)) NIL)) (-3846 (((-834) $) NIL) (($ |#1|) NIL)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) NIL)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3066 (((-621 (-747)) $) NIL) (((-621 (-747)) $ (-1142)) NIL)) (-1518 (((-747) $) NIL) (((-747) $ (-1142)) NIL)) (-2270 (((-621 (-794 (-1142))) $) NIL)) (-2082 (((-1138 $) $ (-794 (-1142))) NIL) (((-1138 |#1|) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-2216 (((-747) $) NIL) (((-747) $ (-621 (-794 (-1142)))) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-3239 (($ $) NIL (|has| |#1| (-444)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2703 (($ $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-794 (-1142)) "failed") $) NIL) (((-3 (-1142) "failed") $) NIL) (((-3 (-1091 |#1| (-1142)) "failed") $) NIL)) (-2657 ((|#1| $) NIL) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-794 (-1142)) $) NIL) (((-1142) $) NIL) (((-1091 |#1| (-1142)) $) NIL)) (-4114 (($ $ $ (-794 (-1142))) NIL (|has| |#1| (-170)))) (-2068 (($ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3004 (($ $) NIL (|has| |#1| (-444))) (($ $ (-794 (-1142))) NIL (|has| |#1| (-444)))) (-2056 (((-621 $) $) NIL)) (-1464 (((-112) $) NIL (|has| |#1| (-880)))) (-4064 (($ $ |#1| (-521 (-794 (-1142))) $) NIL)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-794 (-1142)) (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-794 (-1142)) (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2729 (((-747) $ (-1142)) NIL) (((-747) $) NIL)) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) NIL)) (-2259 (($ (-1138 |#1|) (-794 (-1142))) NIL) (($ (-1138 $) (-794 (-1142))) NIL)) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-521 (-794 (-1142)))) NIL) (($ $ (-794 (-1142)) (-747)) NIL) (($ $ (-621 (-794 (-1142))) (-621 (-747))) NIL)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ (-794 (-1142))) NIL)) (-2391 (((-521 (-794 (-1142))) $) NIL) (((-747) $ (-794 (-1142))) NIL) (((-621 (-747)) $ (-621 (-794 (-1142)))) NIL)) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-3224 (($ (-1 (-521 (-794 (-1142))) (-521 (-794 (-1142)))) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-2205 (((-1 $ (-747)) (-1142)) NIL) (((-1 $ (-747)) $) NIL (|has| |#1| (-227)))) (-2236 (((-3 (-794 (-1142)) "failed") $) NIL)) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-4051 (((-794 (-1142)) $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-3441 (((-1124) $) NIL)) (-3104 (((-112) $) NIL)) (-4093 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-621 $) "failed") $) NIL)) (-1477 (((-3 (-2 (|:| |var| (-794 (-1142))) (|:| -1714 (-747))) "failed") $) NIL)) (-2255 (($ $) NIL)) (-3988 (((-1086) $) NIL)) (-2001 (((-112) $) NIL)) (-2011 ((|#1| $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-444)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2119 (((-411 $) $) NIL (|has| |#1| (-880)))) (-2040 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-2684 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-794 (-1142)) |#1|) NIL) (($ $ (-621 (-794 (-1142))) (-621 |#1|)) NIL) (($ $ (-794 (-1142)) $) NIL) (($ $ (-621 (-794 (-1142))) (-621 $)) NIL) (($ $ (-1142) $) NIL (|has| |#1| (-227))) (($ $ (-621 (-1142)) (-621 $)) NIL (|has| |#1| (-227))) (($ $ (-1142) |#1|) NIL (|has| |#1| (-227))) (($ $ (-621 (-1142)) (-621 |#1|)) NIL (|has| |#1| (-227)))) (-2740 (($ $ (-794 (-1142))) NIL (|has| |#1| (-170)))) (-3455 (($ $ (-794 (-1142))) NIL) (($ $ (-621 (-794 (-1142)))) NIL) (($ $ (-794 (-1142)) (-747)) NIL) (($ $ (-621 (-794 (-1142))) (-621 (-747))) NIL) (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1640 (((-621 (-1142)) $) NIL)) (-3977 (((-521 (-794 (-1142))) $) NIL) (((-747) $ (-794 (-1142))) NIL) (((-621 (-747)) $ (-621 (-794 (-1142)))) NIL) (((-747) $ (-1142)) NIL)) (-2843 (((-863 (-372)) $) NIL (-12 (|has| (-794 (-1142)) (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-794 (-1142)) (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-794 (-1142)) (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-1700 ((|#1| $) NIL (|has| |#1| (-444))) (($ $ (-794 (-1142))) NIL (|has| |#1| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-794 (-1142))) NIL) (($ (-1142)) NIL) (($ (-1091 |#1| (-1142))) NIL) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#1| (-541)))) (-2157 (((-621 |#1|) $) NIL)) (-4068 ((|#1| $ (-521 (-794 (-1142)))) NIL) (($ $ (-794 (-1142)) (-747)) NIL) (($ $ (-621 (-794 (-1142))) (-621 (-747))) NIL)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2371 (((-747)) NIL)) (-4046 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $ (-794 (-1142))) NIL) (($ $ (-621 (-794 (-1142)))) NIL) (($ $ (-794 (-1142)) (-747)) NIL) (($ $ (-621 (-794 (-1142))) (-621 (-747))) NIL) (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-792 |#1|) (-13 (-246 |#1| (-1142) (-794 (-1142)) (-521 (-794 (-1142)))) (-1009 (-1091 |#1| (-1142)))) (-1018)) (T -792))
+NIL
+(-13 (-246 |#1| (-1142) (-794 (-1142)) (-521 (-794 (-1142)))) (-1009 (-1091 |#1| (-1142))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#2| (-356)))) (-3044 (($ $) NIL (|has| |#2| (-356)))) (-2774 (((-112) $) NIL (|has| |#2| (-356)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL (|has| |#2| (-356)))) (-2620 (((-411 $) $) NIL (|has| |#2| (-356)))) (-2680 (((-112) $ $) NIL (|has| |#2| (-356)))) (-3034 (($) NIL T CONST)) (-2091 (($ $ $) NIL (|has| |#2| (-356)))) (-2612 (((-3 $ "failed") $) NIL)) (-2065 (($ $ $) NIL (|has| |#2| (-356)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| |#2| (-356)))) (-1464 (((-112) $) NIL (|has| |#2| (-356)))) (-2297 (((-112) $) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#2| (-356)))) (-3696 (($ (-621 $)) NIL (|has| |#2| (-356))) (($ $ $) NIL (|has| |#2| (-356)))) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 20 (|has| |#2| (-356)))) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#2| (-356)))) (-3726 (($ (-621 $)) NIL (|has| |#2| (-356))) (($ $ $) NIL (|has| |#2| (-356)))) (-2119 (((-411 $) $) NIL (|has| |#2| (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#2| (-356)))) (-2040 (((-3 $ "failed") $ $) NIL (|has| |#2| (-356)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#2| (-356)))) (-1335 (((-747) $) NIL (|has| |#2| (-356)))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#2| (-356)))) (-3455 (($ $ (-747)) NIL) (($ $) 13)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) 10) ((|#2| $) 11) (($ (-400 (-549))) NIL (|has| |#2| (-356))) (($ $) NIL (|has| |#2| (-356)))) (-2371 (((-747)) NIL)) (-2441 (((-112) $ $) NIL (|has| |#2| (-356)))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $ (-747)) NIL) (($ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ $) 15 (|has| |#2| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-747)) NIL) (($ $ (-892)) NIL) (($ $ (-549)) 18 (|has| |#2| (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ $) NIL) (($ (-400 (-549)) $) NIL (|has| |#2| (-356))) (($ $ (-400 (-549))) NIL (|has| |#2| (-356)))))
+(((-793 |#1| |#2| |#3|) (-13 (-111 $ $) (-227) (-10 -8 (IF (|has| |#2| (-356)) (-6 (-356)) |%noBranch|) (-15 -3845 ($ |#2|)) (-15 -3845 (|#2| $)))) (-1066) (-871 |#1|) |#1|) (T -793))
+((-3845 (*1 *1 *2) (-12 (-4 *3 (-1066)) (-14 *4 *3) (-5 *1 (-793 *3 *2 *4)) (-4 *2 (-871 *3)))) (-3845 (*1 *2 *1) (-12 (-4 *2 (-871 *3)) (-5 *1 (-793 *3 *2 *4)) (-4 *3 (-1066)) (-14 *4 *3))))
+(-13 (-111 $ $) (-227) (-10 -8 (IF (|has| |#2| (-356)) (-6 (-356)) |%noBranch|) (-15 -3845 ($ |#2|)) (-15 -3845 (|#2| $))))
+((-3832 (((-112) $ $) NIL)) (-1518 (((-747) $) NIL)) (-3009 ((|#1| $) 10)) (-2712 (((-3 |#1| "failed") $) NIL)) (-2657 ((|#1| $) NIL)) (-2729 (((-747) $) 11)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-2205 (($ |#1| (-747)) 9)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3455 (($ $) NIL) (($ $ (-747)) NIL)) (-3845 (((-834) $) NIL) (($ |#1|) NIL)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) NIL)))
(((-794 |#1|) (-259 |#1|) (-823)) (T -794))
NIL
(-259 |#1|)
-((-3834 (((-112) $ $) NIL)) (-3304 (((-621 |#1|) $) 29)) (-3614 (((-747) $) NIL)) (-1682 (($) NIL T CONST)) (-1869 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 20)) (-2714 (((-3 |#1| "failed") $) NIL)) (-2659 ((|#1| $) NIL)) (-3657 (($ $) 31)) (-2114 (((-3 $ "failed") $) NIL)) (-1707 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) NIL)) (-2675 (((-112) $) NIL)) (-1302 ((|#1| $ (-549)) NIL)) (-2009 (((-747) $ (-549)) NIL)) (-4273 (($ $) 36)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-2694 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 17)) (-4192 (((-112) $ $) 34)) (-4210 (((-747) $) 25)) (-3851 (((-1125) $) NIL)) (-4039 (($ $ $) NIL)) (-4122 (($ $ $) NIL)) (-3990 (((-1087) $) NIL)) (-3646 ((|#1| $) 30)) (-4024 (((-621 (-2 (|:| |gen| |#1|) (|:| -2719 (-747)))) $) NIL)) (-2056 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-3846 (((-834) $) NIL) (($ |#1|) NIL)) (-3287 (($) 15 T CONST)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 35)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ |#1| (-747)) NIL)) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-795 |#1|) (-13 (-819) (-1009 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-747))) (-15 -3646 (|#1| $)) (-15 -3657 ($ $)) (-15 -4273 ($ $)) (-15 -4192 ((-112) $ $)) (-15 -4122 ($ $ $)) (-15 -4039 ($ $ $)) (-15 -2694 ((-3 $ "failed") $ $)) (-15 -1869 ((-3 $ "failed") $ $)) (-15 -2694 ((-3 $ "failed") $ |#1|)) (-15 -1869 ((-3 $ "failed") $ |#1|)) (-15 -2056 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1707 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3614 ((-747) $)) (-15 -2009 ((-747) $ (-549))) (-15 -1302 (|#1| $ (-549))) (-15 -4024 ((-621 (-2 (|:| |gen| |#1|) (|:| -2719 (-747)))) $)) (-15 -4210 ((-747) $)) (-15 -3304 ((-621 |#1|) $)))) (-823)) (T -795))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-3646 (*1 *2 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-3657 (*1 *1 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-4273 (*1 *1 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-4192 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-795 *3)) (-4 *3 (-823)))) (-4122 (*1 *1 *1 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-4039 (*1 *1 *1 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-2694 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-1869 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-2694 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-1869 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-2056 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-795 *3)) (|:| |rm| (-795 *3)))) (-5 *1 (-795 *3)) (-4 *3 (-823)))) (-1707 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-795 *3)) (|:| |mm| (-795 *3)) (|:| |rm| (-795 *3)))) (-5 *1 (-795 *3)) (-4 *3 (-823)))) (-3614 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-795 *3)) (-4 *3 (-823)))) (-2009 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-747)) (-5 *1 (-795 *4)) (-4 *4 (-823)))) (-1302 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-4024 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2719 (-747))))) (-5 *1 (-795 *3)) (-4 *3 (-823)))) (-4210 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-795 *3)) (-4 *3 (-823)))) (-3304 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-795 *3)) (-4 *3 (-823)))))
-(-13 (-819) (-1009 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-747))) (-15 -3646 (|#1| $)) (-15 -3657 ($ $)) (-15 -4273 ($ $)) (-15 -4192 ((-112) $ $)) (-15 -4122 ($ $ $)) (-15 -4039 ($ $ $)) (-15 -2694 ((-3 $ "failed") $ $)) (-15 -1869 ((-3 $ "failed") $ $)) (-15 -2694 ((-3 $ "failed") $ |#1|)) (-15 -1869 ((-3 $ "failed") $ |#1|)) (-15 -2056 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1707 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3614 ((-747) $)) (-15 -2009 ((-747) $ (-549))) (-15 -1302 (|#1| $ (-549))) (-15 -4024 ((-621 (-2 (|:| |gen| |#1|) (|:| -2719 (-747)))) $)) (-15 -4210 ((-747) $)) (-15 -3304 ((-621 |#1|) $))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-2001 (((-3 $ "failed") $ $) 19)) (-1872 (((-549) $) 51)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-2772 (((-112) $) 49)) (-2675 (((-112) $) 30)) (-2374 (((-112) $) 50)) (-2863 (($ $ $) 48)) (-3575 (($ $ $) 47)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-2042 (((-3 $ "failed") $ $) 40)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41)) (-2082 (((-747)) 28)) (-1498 (((-112) $ $) 37)) (-3212 (($ $) 52)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2448 (((-112) $ $) 45)) (-2425 (((-112) $ $) 44)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 46)) (-2412 (((-112) $ $) 43)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+((-3832 (((-112) $ $) NIL)) (-3302 (((-621 |#1|) $) 29)) (-3614 (((-747) $) NIL)) (-3034 (($) NIL T CONST)) (-1376 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 20)) (-2712 (((-3 |#1| "failed") $) NIL)) (-2657 ((|#1| $) NIL)) (-3656 (($ $) 31)) (-2612 (((-3 $ "failed") $) NIL)) (-3296 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) NIL)) (-2297 (((-112) $) NIL)) (-2941 ((|#1| $ (-549)) NIL)) (-1805 (((-747) $ (-549)) NIL)) (-3626 (($ $) 36)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-4315 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 17)) (-2910 (((-112) $ $) 34)) (-4210 (((-747) $) 25)) (-3441 (((-1124) $) NIL)) (-2265 (($ $ $) NIL)) (-1571 (($ $ $) NIL)) (-3988 (((-1086) $) NIL)) (-3645 ((|#1| $) 30)) (-3390 (((-621 (-2 (|:| |gen| |#1|) (|:| -2717 (-747)))) $) NIL)) (-2053 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-3845 (((-834) $) NIL) (($ |#1|) NIL)) (-3286 (($) 15 T CONST)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 35)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ |#1| (-747)) NIL)) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-795 |#1|) (-13 (-819) (-1009 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-747))) (-15 -3645 (|#1| $)) (-15 -3656 ($ $)) (-15 -3626 ($ $)) (-15 -2910 ((-112) $ $)) (-15 -1571 ($ $ $)) (-15 -2265 ($ $ $)) (-15 -4315 ((-3 $ "failed") $ $)) (-15 -1376 ((-3 $ "failed") $ $)) (-15 -4315 ((-3 $ "failed") $ |#1|)) (-15 -1376 ((-3 $ "failed") $ |#1|)) (-15 -2053 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -3296 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3614 ((-747) $)) (-15 -1805 ((-747) $ (-549))) (-15 -2941 (|#1| $ (-549))) (-15 -3390 ((-621 (-2 (|:| |gen| |#1|) (|:| -2717 (-747)))) $)) (-15 -4210 ((-747) $)) (-15 -3302 ((-621 |#1|) $)))) (-823)) (T -795))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-3645 (*1 *2 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-3656 (*1 *1 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-3626 (*1 *1 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-2910 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-795 *3)) (-4 *3 (-823)))) (-1571 (*1 *1 *1 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-2265 (*1 *1 *1 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-4315 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-1376 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-4315 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-1376 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-2053 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-795 *3)) (|:| |rm| (-795 *3)))) (-5 *1 (-795 *3)) (-4 *3 (-823)))) (-3296 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-795 *3)) (|:| |mm| (-795 *3)) (|:| |rm| (-795 *3)))) (-5 *1 (-795 *3)) (-4 *3 (-823)))) (-3614 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-795 *3)) (-4 *3 (-823)))) (-1805 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-747)) (-5 *1 (-795 *4)) (-4 *4 (-823)))) (-2941 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-795 *2)) (-4 *2 (-823)))) (-3390 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2717 (-747))))) (-5 *1 (-795 *3)) (-4 *3 (-823)))) (-4210 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-795 *3)) (-4 *3 (-823)))) (-3302 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-795 *3)) (-4 *3 (-823)))))
+(-13 (-819) (-1009 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-747))) (-15 -3645 (|#1| $)) (-15 -3656 ($ $)) (-15 -3626 ($ $)) (-15 -2910 ((-112) $ $)) (-15 -1571 ($ $ $)) (-15 -2265 ($ $ $)) (-15 -4315 ((-3 $ "failed") $ $)) (-15 -1376 ((-3 $ "failed") $ $)) (-15 -4315 ((-3 $ "failed") $ |#1|)) (-15 -1376 ((-3 $ "failed") $ |#1|)) (-15 -2053 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -3296 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3614 ((-747) $)) (-15 -1805 ((-747) $ (-549))) (-15 -2941 (|#1| $ (-549))) (-15 -3390 ((-621 (-2 (|:| |gen| |#1|) (|:| -2717 (-747)))) $)) (-15 -4210 ((-747) $)) (-15 -3302 ((-621 |#1|) $))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-2416 (((-3 $ "failed") $ $) 19)) (-1741 (((-549) $) 51)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-2357 (((-112) $) 49)) (-2297 (((-112) $) 30)) (-1992 (((-112) $) 50)) (-2861 (($ $ $) 48)) (-3574 (($ $ $) 47)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2040 (((-3 $ "failed") $ $) 40)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41)) (-2371 (((-747)) 28)) (-2441 (((-112) $ $) 37)) (-2199 (($ $) 52)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2447 (((-112) $ $) 45)) (-2423 (((-112) $ $) 44)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 46)) (-2409 (((-112) $ $) 43)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-796) (-138)) (T -796))
NIL
(-13 (-541) (-821))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-767) . T) ((-768) . T) ((-770) . T) ((-771) . T) ((-821) . T) ((-823) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-2000 (($ (-1087)) 7)) (-4133 (((-112) $ (-1125) (-1087)) 15)) (-1628 (((-798) $) 12)) (-3620 (((-798) $) 11)) (-1306 (((-1231) $) 9)) (-1953 (((-112) $ (-1087)) 16)))
-(((-797) (-10 -8 (-15 -2000 ($ (-1087))) (-15 -1306 ((-1231) $)) (-15 -3620 ((-798) $)) (-15 -1628 ((-798) $)) (-15 -4133 ((-112) $ (-1125) (-1087))) (-15 -1953 ((-112) $ (-1087))))) (T -797))
-((-1953 (*1 *2 *1 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-112)) (-5 *1 (-797)))) (-4133 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-1125)) (-5 *4 (-1087)) (-5 *2 (-112)) (-5 *1 (-797)))) (-1628 (*1 *2 *1) (-12 (-5 *2 (-798)) (-5 *1 (-797)))) (-3620 (*1 *2 *1) (-12 (-5 *2 (-798)) (-5 *1 (-797)))) (-1306 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-797)))) (-2000 (*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-797)))))
-(-10 -8 (-15 -2000 ($ (-1087))) (-15 -1306 ((-1231) $)) (-15 -3620 ((-798) $)) (-15 -1628 ((-798) $)) (-15 -4133 ((-112) $ (-1125) (-1087))) (-15 -1953 ((-112) $ (-1087))))
-((-3139 (((-1231) $ (-799)) 12)) (-2354 (((-1231) $ (-1143)) 32)) (-3157 (((-1231) $ (-1125) (-1125)) 34)) (-3683 (((-1231) $ (-1125)) 33)) (-2491 (((-1231) $) 19)) (-2931 (((-1231) $ (-549)) 28)) (-1751 (((-1231) $ (-219)) 30)) (-3677 (((-1231) $) 18)) (-1626 (((-1231) $) 26)) (-3595 (((-1231) $) 25)) (-3782 (((-1231) $) 23)) (-4293 (((-1231) $) 24)) (-1319 (((-1231) $) 22)) (-1331 (((-1231) $) 21)) (-3024 (((-1231) $) 20)) (-1970 (((-1231) $) 16)) (-2693 (((-1231) $) 17)) (-1659 (((-1231) $) 15)) (-2743 (((-1231) $) 14)) (-2010 (((-1231) $) 13)) (-2306 (($ (-1125) (-799)) 9)) (-4042 (($ (-1125) (-1125) (-799)) 8)) (-2512 (((-1143) $) 51)) (-3600 (((-1143) $) 55)) (-2891 (((-2 (|:| |cd| (-1125)) (|:| -2481 (-1125))) $) 54)) (-4048 (((-1125) $) 52)) (-3045 (((-1231) $) 41)) (-3455 (((-549) $) 49)) (-1841 (((-219) $) 50)) (-2234 (((-1231) $) 40)) (-3102 (((-1231) $) 48)) (-2908 (((-1231) $) 47)) (-4222 (((-1231) $) 45)) (-4269 (((-1231) $) 46)) (-2641 (((-1231) $) 44)) (-2507 (((-1231) $) 43)) (-1697 (((-1231) $) 42)) (-3046 (((-1231) $) 38)) (-2027 (((-1231) $) 39)) (-1452 (((-1231) $) 37)) (-4175 (((-1231) $) 36)) (-2251 (((-1231) $) 35)) (-3970 (((-1231) $) 11)))
-(((-798) (-10 -8 (-15 -4042 ($ (-1125) (-1125) (-799))) (-15 -2306 ($ (-1125) (-799))) (-15 -3970 ((-1231) $)) (-15 -3139 ((-1231) $ (-799))) (-15 -2010 ((-1231) $)) (-15 -2743 ((-1231) $)) (-15 -1659 ((-1231) $)) (-15 -1970 ((-1231) $)) (-15 -2693 ((-1231) $)) (-15 -3677 ((-1231) $)) (-15 -2491 ((-1231) $)) (-15 -3024 ((-1231) $)) (-15 -1331 ((-1231) $)) (-15 -1319 ((-1231) $)) (-15 -3782 ((-1231) $)) (-15 -4293 ((-1231) $)) (-15 -3595 ((-1231) $)) (-15 -1626 ((-1231) $)) (-15 -2931 ((-1231) $ (-549))) (-15 -1751 ((-1231) $ (-219))) (-15 -2354 ((-1231) $ (-1143))) (-15 -3683 ((-1231) $ (-1125))) (-15 -3157 ((-1231) $ (-1125) (-1125))) (-15 -2251 ((-1231) $)) (-15 -4175 ((-1231) $)) (-15 -1452 ((-1231) $)) (-15 -3046 ((-1231) $)) (-15 -2027 ((-1231) $)) (-15 -2234 ((-1231) $)) (-15 -3045 ((-1231) $)) (-15 -1697 ((-1231) $)) (-15 -2507 ((-1231) $)) (-15 -2641 ((-1231) $)) (-15 -4222 ((-1231) $)) (-15 -4269 ((-1231) $)) (-15 -2908 ((-1231) $)) (-15 -3102 ((-1231) $)) (-15 -3455 ((-549) $)) (-15 -1841 ((-219) $)) (-15 -2512 ((-1143) $)) (-15 -4048 ((-1125) $)) (-15 -2891 ((-2 (|:| |cd| (-1125)) (|:| -2481 (-1125))) $)) (-15 -3600 ((-1143) $)))) (T -798))
-((-3600 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-798)))) (-2891 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |cd| (-1125)) (|:| -2481 (-1125)))) (-5 *1 (-798)))) (-4048 (*1 *2 *1) (-12 (-5 *2 (-1125)) (-5 *1 (-798)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-798)))) (-1841 (*1 *2 *1) (-12 (-5 *2 (-219)) (-5 *1 (-798)))) (-3455 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-798)))) (-3102 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-2908 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-4269 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-4222 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-2641 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-2507 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-1697 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-3045 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-2234 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-2027 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-3046 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-1452 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-4175 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-2251 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-3157 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-798)))) (-3683 (*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-798)))) (-2354 (*1 *2 *1 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-1231)) (-5 *1 (-798)))) (-1751 (*1 *2 *1 *3) (-12 (-5 *3 (-219)) (-5 *2 (-1231)) (-5 *1 (-798)))) (-2931 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1231)) (-5 *1 (-798)))) (-1626 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-3595 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-4293 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-3782 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-1319 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-1331 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-3024 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-2491 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-3677 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-2693 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-1970 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-1659 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-2743 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-2010 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-3139 (*1 *2 *1 *3) (-12 (-5 *3 (-799)) (-5 *2 (-1231)) (-5 *1 (-798)))) (-3970 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))) (-2306 (*1 *1 *2 *3) (-12 (-5 *2 (-1125)) (-5 *3 (-799)) (-5 *1 (-798)))) (-4042 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1125)) (-5 *3 (-799)) (-5 *1 (-798)))))
-(-10 -8 (-15 -4042 ($ (-1125) (-1125) (-799))) (-15 -2306 ($ (-1125) (-799))) (-15 -3970 ((-1231) $)) (-15 -3139 ((-1231) $ (-799))) (-15 -2010 ((-1231) $)) (-15 -2743 ((-1231) $)) (-15 -1659 ((-1231) $)) (-15 -1970 ((-1231) $)) (-15 -2693 ((-1231) $)) (-15 -3677 ((-1231) $)) (-15 -2491 ((-1231) $)) (-15 -3024 ((-1231) $)) (-15 -1331 ((-1231) $)) (-15 -1319 ((-1231) $)) (-15 -3782 ((-1231) $)) (-15 -4293 ((-1231) $)) (-15 -3595 ((-1231) $)) (-15 -1626 ((-1231) $)) (-15 -2931 ((-1231) $ (-549))) (-15 -1751 ((-1231) $ (-219))) (-15 -2354 ((-1231) $ (-1143))) (-15 -3683 ((-1231) $ (-1125))) (-15 -3157 ((-1231) $ (-1125) (-1125))) (-15 -2251 ((-1231) $)) (-15 -4175 ((-1231) $)) (-15 -1452 ((-1231) $)) (-15 -3046 ((-1231) $)) (-15 -2027 ((-1231) $)) (-15 -2234 ((-1231) $)) (-15 -3045 ((-1231) $)) (-15 -1697 ((-1231) $)) (-15 -2507 ((-1231) $)) (-15 -2641 ((-1231) $)) (-15 -4222 ((-1231) $)) (-15 -4269 ((-1231) $)) (-15 -2908 ((-1231) $)) (-15 -3102 ((-1231) $)) (-15 -3455 ((-549) $)) (-15 -1841 ((-219) $)) (-15 -2512 ((-1143) $)) (-15 -4048 ((-1125) $)) (-15 -2891 ((-2 (|:| |cd| (-1125)) (|:| -2481 (-1125))) $)) (-15 -3600 ((-1143) $)))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 12)) (-3486 (($) 15)) (-1883 (($) 13)) (-1644 (($) 16)) (-1338 (($) 14)) (-2389 (((-112) $ $) 8)))
-(((-799) (-13 (-1067) (-10 -8 (-15 -1883 ($)) (-15 -3486 ($)) (-15 -1644 ($)) (-15 -1338 ($))))) (T -799))
-((-1883 (*1 *1) (-5 *1 (-799))) (-3486 (*1 *1) (-5 *1 (-799))) (-1644 (*1 *1) (-5 *1 (-799))) (-1338 (*1 *1) (-5 *1 (-799))))
-(-13 (-1067) (-10 -8 (-15 -1883 ($)) (-15 -3486 ($)) (-15 -1644 ($)) (-15 -1338 ($))))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 21) (($ (-1143)) 17)) (-2887 (((-112) $) 10)) (-1650 (((-112) $) 9)) (-2355 (((-112) $) 11)) (-1974 (((-112) $) 8)) (-2389 (((-112) $ $) 19)))
-(((-800) (-13 (-1067) (-10 -8 (-15 -3846 ($ (-1143))) (-15 -1974 ((-112) $)) (-15 -1650 ((-112) $)) (-15 -2887 ((-112) $)) (-15 -2355 ((-112) $))))) (T -800))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-800)))) (-1974 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-800)))) (-1650 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-800)))) (-2887 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-800)))) (-2355 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-800)))))
-(-13 (-1067) (-10 -8 (-15 -3846 ($ (-1143))) (-15 -1974 ((-112) $)) (-15 -1650 ((-112) $)) (-15 -2887 ((-112) $)) (-15 -2355 ((-112) $))))
-((-3834 (((-112) $ $) NIL)) (-2400 (($ (-800) (-621 (-1143))) 24)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2372 (((-800) $) 25)) (-4215 (((-621 (-1143)) $) 26)) (-3846 (((-834) $) 23)) (-2389 (((-112) $ $) NIL)))
-(((-801) (-13 (-1067) (-10 -8 (-15 -2372 ((-800) $)) (-15 -4215 ((-621 (-1143)) $)) (-15 -2400 ($ (-800) (-621 (-1143))))))) (T -801))
-((-2372 (*1 *2 *1) (-12 (-5 *2 (-800)) (-5 *1 (-801)))) (-4215 (*1 *2 *1) (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-801)))) (-2400 (*1 *1 *2 *3) (-12 (-5 *2 (-800)) (-5 *3 (-621 (-1143))) (-5 *1 (-801)))))
-(-13 (-1067) (-10 -8 (-15 -2372 ((-800) $)) (-15 -4215 ((-621 (-1143)) $)) (-15 -2400 ($ (-800) (-621 (-1143))))))
-((-4245 (((-1231) (-798) (-309 |#1|) (-112)) 23) (((-1231) (-798) (-309 |#1|)) 79) (((-1125) (-309 |#1|) (-112)) 78) (((-1125) (-309 |#1|)) 77)))
-(((-802 |#1|) (-10 -7 (-15 -4245 ((-1125) (-309 |#1|))) (-15 -4245 ((-1125) (-309 |#1|) (-112))) (-15 -4245 ((-1231) (-798) (-309 |#1|))) (-15 -4245 ((-1231) (-798) (-309 |#1|) (-112)))) (-13 (-804) (-823) (-1018))) (T -802))
-((-4245 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-798)) (-5 *4 (-309 *6)) (-5 *5 (-112)) (-4 *6 (-13 (-804) (-823) (-1018))) (-5 *2 (-1231)) (-5 *1 (-802 *6)))) (-4245 (*1 *2 *3 *4) (-12 (-5 *3 (-798)) (-5 *4 (-309 *5)) (-4 *5 (-13 (-804) (-823) (-1018))) (-5 *2 (-1231)) (-5 *1 (-802 *5)))) (-4245 (*1 *2 *3 *4) (-12 (-5 *3 (-309 *5)) (-5 *4 (-112)) (-4 *5 (-13 (-804) (-823) (-1018))) (-5 *2 (-1125)) (-5 *1 (-802 *5)))) (-4245 (*1 *2 *3) (-12 (-5 *3 (-309 *4)) (-4 *4 (-13 (-804) (-823) (-1018))) (-5 *2 (-1125)) (-5 *1 (-802 *4)))))
-(-10 -7 (-15 -4245 ((-1125) (-309 |#1|))) (-15 -4245 ((-1125) (-309 |#1|) (-112))) (-15 -4245 ((-1231) (-798) (-309 |#1|))) (-15 -4245 ((-1231) (-798) (-309 |#1|) (-112))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2070 (($ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1853 ((|#1| $) 10)) (-2721 (($ |#1|) 9)) (-2675 (((-112) $) NIL)) (-2246 (($ |#2| (-747)) NIL)) (-3611 (((-747) $) NIL)) (-2043 ((|#2| $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3456 (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $) NIL (|has| |#1| (-227)))) (-3701 (((-747) $) NIL)) (-3846 (((-834) $) 17) (($ (-549)) NIL) (($ |#2|) NIL (|has| |#2| (-170)))) (-2152 ((|#2| $ (-747)) NIL)) (-2082 (((-747)) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $) NIL (|has| |#1| (-227)))) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 12) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-803 |#1| |#2|) (-13 (-685 |#2|) (-10 -8 (IF (|has| |#1| (-227)) (-6 (-227)) |%noBranch|) (-15 -2721 ($ |#1|)) (-15 -1853 (|#1| $)))) (-685 |#2|) (-1018)) (T -803))
-((-2721 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-5 *1 (-803 *2 *3)) (-4 *2 (-685 *3)))) (-1853 (*1 *2 *1) (-12 (-4 *2 (-685 *3)) (-5 *1 (-803 *2 *3)) (-4 *3 (-1018)))))
-(-13 (-685 |#2|) (-10 -8 (IF (|has| |#1| (-227)) (-6 (-227)) |%noBranch|) (-15 -2721 ($ |#1|)) (-15 -1853 (|#1| $))))
-((-4245 (((-1231) (-798) $ (-112)) 9) (((-1231) (-798) $) 8) (((-1125) $ (-112)) 7) (((-1125) $) 6)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-767) . T) ((-768) . T) ((-770) . T) ((-771) . T) ((-821) . T) ((-823) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-2302 (($ (-1086)) 7)) (-2497 (((-112) $ (-1124) (-1086)) 15)) (-2112 (((-798) $) 12)) (-3835 (((-798) $) 11)) (-2169 (((-1230) $) 9)) (-1581 (((-112) $ (-1086)) 16)))
+(((-797) (-10 -8 (-15 -2302 ($ (-1086))) (-15 -2169 ((-1230) $)) (-15 -3835 ((-798) $)) (-15 -2112 ((-798) $)) (-15 -2497 ((-112) $ (-1124) (-1086))) (-15 -1581 ((-112) $ (-1086))))) (T -797))
+((-1581 (*1 *2 *1 *3) (-12 (-5 *3 (-1086)) (-5 *2 (-112)) (-5 *1 (-797)))) (-2497 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-1124)) (-5 *4 (-1086)) (-5 *2 (-112)) (-5 *1 (-797)))) (-2112 (*1 *2 *1) (-12 (-5 *2 (-798)) (-5 *1 (-797)))) (-3835 (*1 *2 *1) (-12 (-5 *2 (-798)) (-5 *1 (-797)))) (-2169 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-797)))) (-2302 (*1 *1 *2) (-12 (-5 *2 (-1086)) (-5 *1 (-797)))))
+(-10 -8 (-15 -2302 ($ (-1086))) (-15 -2169 ((-1230) $)) (-15 -3835 ((-798) $)) (-15 -2112 ((-798) $)) (-15 -2497 ((-112) $ (-1124) (-1086))) (-15 -1581 ((-112) $ (-1086))))
+((-3676 (((-1230) $ (-799)) 12)) (-3012 (((-1230) $ (-1142)) 32)) (-3854 (((-1230) $ (-1124) (-1124)) 34)) (-4309 (((-1230) $ (-1124)) 33)) (-3618 (((-1230) $) 19)) (-1382 (((-1230) $ (-549)) 28)) (-3453 (((-1230) $ (-219)) 30)) (-1922 (((-1230) $) 18)) (-3202 (((-1230) $) 26)) (-3215 (((-1230) $) 25)) (-4143 (((-1230) $) 23)) (-1934 (((-1230) $) 24)) (-4072 (((-1230) $) 22)) (-2946 (((-1230) $) 21)) (-3217 (((-1230) $) 20)) (-1386 (((-1230) $) 16)) (-4230 (((-1230) $) 17)) (-1661 (((-1230) $) 15)) (-2227 (((-1230) $) 14)) (-1910 (((-1230) $) 13)) (-3653 (($ (-1124) (-799)) 9)) (-2489 (($ (-1124) (-1124) (-799)) 8)) (-3223 (((-1142) $) 51)) (-3654 (((-1142) $) 55)) (-3767 (((-2 (|:| |cd| (-1124)) (|:| -2479 (-1124))) $) 54)) (-1771 (((-1124) $) 52)) (-2509 (((-1230) $) 41)) (-4268 (((-549) $) 49)) (-2626 (((-219) $) 50)) (-1587 (((-1230) $) 40)) (-3716 (((-1230) $) 48)) (-1453 (((-1230) $) 47)) (-3343 (((-1230) $) 45)) (-1300 (((-1230) $) 46)) (-1603 (((-1230) $) 44)) (-3848 (((-1230) $) 43)) (-1853 (((-1230) $) 42)) (-2601 (((-1230) $) 38)) (-2764 (((-1230) $) 39)) (-3770 (((-1230) $) 37)) (-1579 (((-1230) $) 36)) (-3748 (((-1230) $) 35)) (-3572 (((-1230) $) 11)))
+(((-798) (-10 -8 (-15 -2489 ($ (-1124) (-1124) (-799))) (-15 -3653 ($ (-1124) (-799))) (-15 -3572 ((-1230) $)) (-15 -3676 ((-1230) $ (-799))) (-15 -1910 ((-1230) $)) (-15 -2227 ((-1230) $)) (-15 -1661 ((-1230) $)) (-15 -1386 ((-1230) $)) (-15 -4230 ((-1230) $)) (-15 -1922 ((-1230) $)) (-15 -3618 ((-1230) $)) (-15 -3217 ((-1230) $)) (-15 -2946 ((-1230) $)) (-15 -4072 ((-1230) $)) (-15 -4143 ((-1230) $)) (-15 -1934 ((-1230) $)) (-15 -3215 ((-1230) $)) (-15 -3202 ((-1230) $)) (-15 -1382 ((-1230) $ (-549))) (-15 -3453 ((-1230) $ (-219))) (-15 -3012 ((-1230) $ (-1142))) (-15 -4309 ((-1230) $ (-1124))) (-15 -3854 ((-1230) $ (-1124) (-1124))) (-15 -3748 ((-1230) $)) (-15 -1579 ((-1230) $)) (-15 -3770 ((-1230) $)) (-15 -2601 ((-1230) $)) (-15 -2764 ((-1230) $)) (-15 -1587 ((-1230) $)) (-15 -2509 ((-1230) $)) (-15 -1853 ((-1230) $)) (-15 -3848 ((-1230) $)) (-15 -1603 ((-1230) $)) (-15 -3343 ((-1230) $)) (-15 -1300 ((-1230) $)) (-15 -1453 ((-1230) $)) (-15 -3716 ((-1230) $)) (-15 -4268 ((-549) $)) (-15 -2626 ((-219) $)) (-15 -3223 ((-1142) $)) (-15 -1771 ((-1124) $)) (-15 -3767 ((-2 (|:| |cd| (-1124)) (|:| -2479 (-1124))) $)) (-15 -3654 ((-1142) $)))) (T -798))
+((-3654 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-798)))) (-3767 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |cd| (-1124)) (|:| -2479 (-1124)))) (-5 *1 (-798)))) (-1771 (*1 *2 *1) (-12 (-5 *2 (-1124)) (-5 *1 (-798)))) (-3223 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-798)))) (-2626 (*1 *2 *1) (-12 (-5 *2 (-219)) (-5 *1 (-798)))) (-4268 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-798)))) (-3716 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-1453 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-1300 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-3343 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-1603 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-3848 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-1853 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-2509 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-1587 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-2764 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-2601 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-3770 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-1579 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-3748 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-3854 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-798)))) (-4309 (*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-798)))) (-3012 (*1 *2 *1 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-1230)) (-5 *1 (-798)))) (-3453 (*1 *2 *1 *3) (-12 (-5 *3 (-219)) (-5 *2 (-1230)) (-5 *1 (-798)))) (-1382 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1230)) (-5 *1 (-798)))) (-3202 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-3215 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-1934 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-4143 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-4072 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-2946 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-3217 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-3618 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-1922 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-4230 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-1386 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-1661 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-2227 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-1910 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-3676 (*1 *2 *1 *3) (-12 (-5 *3 (-799)) (-5 *2 (-1230)) (-5 *1 (-798)))) (-3572 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))) (-3653 (*1 *1 *2 *3) (-12 (-5 *2 (-1124)) (-5 *3 (-799)) (-5 *1 (-798)))) (-2489 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1124)) (-5 *3 (-799)) (-5 *1 (-798)))))
+(-10 -8 (-15 -2489 ($ (-1124) (-1124) (-799))) (-15 -3653 ($ (-1124) (-799))) (-15 -3572 ((-1230) $)) (-15 -3676 ((-1230) $ (-799))) (-15 -1910 ((-1230) $)) (-15 -2227 ((-1230) $)) (-15 -1661 ((-1230) $)) (-15 -1386 ((-1230) $)) (-15 -4230 ((-1230) $)) (-15 -1922 ((-1230) $)) (-15 -3618 ((-1230) $)) (-15 -3217 ((-1230) $)) (-15 -2946 ((-1230) $)) (-15 -4072 ((-1230) $)) (-15 -4143 ((-1230) $)) (-15 -1934 ((-1230) $)) (-15 -3215 ((-1230) $)) (-15 -3202 ((-1230) $)) (-15 -1382 ((-1230) $ (-549))) (-15 -3453 ((-1230) $ (-219))) (-15 -3012 ((-1230) $ (-1142))) (-15 -4309 ((-1230) $ (-1124))) (-15 -3854 ((-1230) $ (-1124) (-1124))) (-15 -3748 ((-1230) $)) (-15 -1579 ((-1230) $)) (-15 -3770 ((-1230) $)) (-15 -2601 ((-1230) $)) (-15 -2764 ((-1230) $)) (-15 -1587 ((-1230) $)) (-15 -2509 ((-1230) $)) (-15 -1853 ((-1230) $)) (-15 -3848 ((-1230) $)) (-15 -1603 ((-1230) $)) (-15 -3343 ((-1230) $)) (-15 -1300 ((-1230) $)) (-15 -1453 ((-1230) $)) (-15 -3716 ((-1230) $)) (-15 -4268 ((-549) $)) (-15 -2626 ((-219) $)) (-15 -3223 ((-1142) $)) (-15 -1771 ((-1124) $)) (-15 -3767 ((-2 (|:| |cd| (-1124)) (|:| -2479 (-1124))) $)) (-15 -3654 ((-1142) $)))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 12)) (-2010 (($) 15)) (-3523 (($) 13)) (-3974 (($) 16)) (-1868 (($) 14)) (-2387 (((-112) $ $) 8)))
+(((-799) (-13 (-1066) (-10 -8 (-15 -3523 ($)) (-15 -2010 ($)) (-15 -3974 ($)) (-15 -1868 ($))))) (T -799))
+((-3523 (*1 *1) (-5 *1 (-799))) (-2010 (*1 *1) (-5 *1 (-799))) (-3974 (*1 *1) (-5 *1 (-799))) (-1868 (*1 *1) (-5 *1 (-799))))
+(-13 (-1066) (-10 -8 (-15 -3523 ($)) (-15 -2010 ($)) (-15 -3974 ($)) (-15 -1868 ($))))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 21) (($ (-1142)) 17)) (-3367 (((-112) $) 10)) (-2170 (((-112) $) 9)) (-3095 (((-112) $) 11)) (-1846 (((-112) $) 8)) (-2387 (((-112) $ $) 19)))
+(((-800) (-13 (-1066) (-10 -8 (-15 -3845 ($ (-1142))) (-15 -1846 ((-112) $)) (-15 -2170 ((-112) $)) (-15 -3367 ((-112) $)) (-15 -3095 ((-112) $))))) (T -800))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-800)))) (-1846 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-800)))) (-2170 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-800)))) (-3367 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-800)))) (-3095 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-800)))))
+(-13 (-1066) (-10 -8 (-15 -3845 ($ (-1142))) (-15 -1846 ((-112) $)) (-15 -2170 ((-112) $)) (-15 -3367 ((-112) $)) (-15 -3095 ((-112) $))))
+((-3832 (((-112) $ $) NIL)) (-2418 (($ (-800) (-621 (-1142))) 24)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-1813 (((-800) $) 25)) (-3840 (((-621 (-1142)) $) 26)) (-3845 (((-834) $) 23)) (-2387 (((-112) $ $) NIL)))
+(((-801) (-13 (-1066) (-10 -8 (-15 -1813 ((-800) $)) (-15 -3840 ((-621 (-1142)) $)) (-15 -2418 ($ (-800) (-621 (-1142))))))) (T -801))
+((-1813 (*1 *2 *1) (-12 (-5 *2 (-800)) (-5 *1 (-801)))) (-3840 (*1 *2 *1) (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-801)))) (-2418 (*1 *1 *2 *3) (-12 (-5 *2 (-800)) (-5 *3 (-621 (-1142))) (-5 *1 (-801)))))
+(-13 (-1066) (-10 -8 (-15 -1813 ((-800) $)) (-15 -3840 ((-621 (-1142)) $)) (-15 -2418 ($ (-800) (-621 (-1142))))))
+((-4035 (((-1230) (-798) (-309 |#1|) (-112)) 23) (((-1230) (-798) (-309 |#1|)) 79) (((-1124) (-309 |#1|) (-112)) 78) (((-1124) (-309 |#1|)) 77)))
+(((-802 |#1|) (-10 -7 (-15 -4035 ((-1124) (-309 |#1|))) (-15 -4035 ((-1124) (-309 |#1|) (-112))) (-15 -4035 ((-1230) (-798) (-309 |#1|))) (-15 -4035 ((-1230) (-798) (-309 |#1|) (-112)))) (-13 (-804) (-823) (-1018))) (T -802))
+((-4035 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-798)) (-5 *4 (-309 *6)) (-5 *5 (-112)) (-4 *6 (-13 (-804) (-823) (-1018))) (-5 *2 (-1230)) (-5 *1 (-802 *6)))) (-4035 (*1 *2 *3 *4) (-12 (-5 *3 (-798)) (-5 *4 (-309 *5)) (-4 *5 (-13 (-804) (-823) (-1018))) (-5 *2 (-1230)) (-5 *1 (-802 *5)))) (-4035 (*1 *2 *3 *4) (-12 (-5 *3 (-309 *5)) (-5 *4 (-112)) (-4 *5 (-13 (-804) (-823) (-1018))) (-5 *2 (-1124)) (-5 *1 (-802 *5)))) (-4035 (*1 *2 *3) (-12 (-5 *3 (-309 *4)) (-4 *4 (-13 (-804) (-823) (-1018))) (-5 *2 (-1124)) (-5 *1 (-802 *4)))))
+(-10 -7 (-15 -4035 ((-1124) (-309 |#1|))) (-15 -4035 ((-1124) (-309 |#1|) (-112))) (-15 -4035 ((-1230) (-798) (-309 |#1|))) (-15 -4035 ((-1230) (-798) (-309 |#1|) (-112))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2068 (($ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3315 ((|#1| $) 10)) (-2718 (($ |#1|) 9)) (-2297 (((-112) $) NIL)) (-2244 (($ |#2| (-747)) NIL)) (-2391 (((-747) $) NIL)) (-2042 ((|#2| $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3455 (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $) NIL (|has| |#1| (-227)))) (-3977 (((-747) $) NIL)) (-3845 (((-834) $) 17) (($ (-549)) NIL) (($ |#2|) NIL (|has| |#2| (-170)))) (-4068 ((|#2| $ (-747)) NIL)) (-2371 (((-747)) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $) NIL (|has| |#1| (-227)))) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 12) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-803 |#1| |#2|) (-13 (-685 |#2|) (-10 -8 (IF (|has| |#1| (-227)) (-6 (-227)) |%noBranch|) (-15 -2718 ($ |#1|)) (-15 -3315 (|#1| $)))) (-685 |#2|) (-1018)) (T -803))
+((-2718 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-5 *1 (-803 *2 *3)) (-4 *2 (-685 *3)))) (-3315 (*1 *2 *1) (-12 (-4 *2 (-685 *3)) (-5 *1 (-803 *2 *3)) (-4 *3 (-1018)))))
+(-13 (-685 |#2|) (-10 -8 (IF (|has| |#1| (-227)) (-6 (-227)) |%noBranch|) (-15 -2718 ($ |#1|)) (-15 -3315 (|#1| $))))
+((-4035 (((-1230) (-798) $ (-112)) 9) (((-1230) (-798) $) 8) (((-1124) $ (-112)) 7) (((-1124) $) 6)))
(((-804) (-138)) (T -804))
-((-4245 (*1 *2 *3 *1 *4) (-12 (-4 *1 (-804)) (-5 *3 (-798)) (-5 *4 (-112)) (-5 *2 (-1231)))) (-4245 (*1 *2 *3 *1) (-12 (-4 *1 (-804)) (-5 *3 (-798)) (-5 *2 (-1231)))) (-4245 (*1 *2 *1 *3) (-12 (-4 *1 (-804)) (-5 *3 (-112)) (-5 *2 (-1125)))) (-4245 (*1 *2 *1) (-12 (-4 *1 (-804)) (-5 *2 (-1125)))))
-(-13 (-10 -8 (-15 -4245 ((-1125) $)) (-15 -4245 ((-1125) $ (-112))) (-15 -4245 ((-1231) (-798) $)) (-15 -4245 ((-1231) (-798) $ (-112)))))
-((-3090 (((-305) (-1125) (-1125)) 12)) (-3427 (((-112) (-1125) (-1125)) 34)) (-4003 (((-112) (-1125)) 33)) (-2811 (((-52) (-1125)) 25)) (-2146 (((-52) (-1125)) 23)) (-1274 (((-52) (-798)) 17)) (-1533 (((-621 (-1125)) (-1125)) 28)) (-2357 (((-621 (-1125))) 27)))
-(((-805) (-10 -7 (-15 -1274 ((-52) (-798))) (-15 -2146 ((-52) (-1125))) (-15 -2811 ((-52) (-1125))) (-15 -2357 ((-621 (-1125)))) (-15 -1533 ((-621 (-1125)) (-1125))) (-15 -4003 ((-112) (-1125))) (-15 -3427 ((-112) (-1125) (-1125))) (-15 -3090 ((-305) (-1125) (-1125))))) (T -805))
-((-3090 (*1 *2 *3 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-305)) (-5 *1 (-805)))) (-3427 (*1 *2 *3 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-112)) (-5 *1 (-805)))) (-4003 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-112)) (-5 *1 (-805)))) (-1533 (*1 *2 *3) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-805)) (-5 *3 (-1125)))) (-2357 (*1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-805)))) (-2811 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-52)) (-5 *1 (-805)))) (-2146 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-52)) (-5 *1 (-805)))) (-1274 (*1 *2 *3) (-12 (-5 *3 (-798)) (-5 *2 (-52)) (-5 *1 (-805)))))
-(-10 -7 (-15 -1274 ((-52) (-798))) (-15 -2146 ((-52) (-1125))) (-15 -2811 ((-52) (-1125))) (-15 -2357 ((-621 (-1125)))) (-15 -1533 ((-621 (-1125)) (-1125))) (-15 -4003 ((-112) (-1125))) (-15 -3427 ((-112) (-1125) (-1125))) (-15 -3090 ((-305) (-1125) (-1125))))
-((-3834 (((-112) $ $) 19)) (-1442 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-2440 (($ $ $) 72)) (-2695 (((-112) $ $) 73)) (-1584 (((-112) $ (-747)) 8)) (-2787 (($ (-621 |#1|)) 68) (($) 67)) (-1717 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4337)))) (-1682 (($) 7 T CONST)) (-3745 (($ $) 62)) (-3676 (($ $) 58 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2129 (($ |#1| $) 47 (|has| $ (-6 -4337))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4337)))) (-3812 (($ |#1| $) 57 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4337)))) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-2369 (((-112) $ $) 64)) (-3194 (((-112) $ (-747)) 9)) (-2863 ((|#1| $) 78)) (-1303 (($ $ $) 81)) (-3890 (($ $ $) 80)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-3575 ((|#1| $) 79)) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22)) (-3655 (($ $ $) 69)) (-3504 ((|#1| $) 39)) (-2751 (($ |#1| $) 40) (($ |#1| $ (-747)) 63)) (-3990 (((-1087) $) 21)) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3325 ((|#1| $) 41)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3458 (((-621 (-2 (|:| -1793 |#1|) (|:| -4000 (-747)))) $) 61)) (-1334 (($ $ |#1|) 71) (($ $ $) 70)) (-2898 (($) 49) (($ (-621 |#1|)) 48)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-2845 (((-525) $) 59 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 50)) (-3846 (((-834) $) 18)) (-4120 (($ (-621 |#1|)) 66) (($) 65)) (-3624 (($ (-621 |#1|)) 42)) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20)) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
+((-4035 (*1 *2 *3 *1 *4) (-12 (-4 *1 (-804)) (-5 *3 (-798)) (-5 *4 (-112)) (-5 *2 (-1230)))) (-4035 (*1 *2 *3 *1) (-12 (-4 *1 (-804)) (-5 *3 (-798)) (-5 *2 (-1230)))) (-4035 (*1 *2 *1 *3) (-12 (-4 *1 (-804)) (-5 *3 (-112)) (-5 *2 (-1124)))) (-4035 (*1 *2 *1) (-12 (-4 *1 (-804)) (-5 *2 (-1124)))))
+(-13 (-10 -8 (-15 -4035 ((-1124) $)) (-15 -4035 ((-1124) $ (-112))) (-15 -4035 ((-1230) (-798) $)) (-15 -4035 ((-1230) (-798) $ (-112)))))
+((-1724 (((-305) (-1124) (-1124)) 12)) (-3023 (((-112) (-1124) (-1124)) 34)) (-3342 (((-112) (-1124)) 33)) (-2079 (((-52) (-1124)) 25)) (-1492 (((-52) (-1124)) 23)) (-3134 (((-52) (-798)) 17)) (-3466 (((-621 (-1124)) (-1124)) 28)) (-3087 (((-621 (-1124))) 27)))
+(((-805) (-10 -7 (-15 -3134 ((-52) (-798))) (-15 -1492 ((-52) (-1124))) (-15 -2079 ((-52) (-1124))) (-15 -3087 ((-621 (-1124)))) (-15 -3466 ((-621 (-1124)) (-1124))) (-15 -3342 ((-112) (-1124))) (-15 -3023 ((-112) (-1124) (-1124))) (-15 -1724 ((-305) (-1124) (-1124))))) (T -805))
+((-1724 (*1 *2 *3 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-305)) (-5 *1 (-805)))) (-3023 (*1 *2 *3 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-112)) (-5 *1 (-805)))) (-3342 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-112)) (-5 *1 (-805)))) (-3466 (*1 *2 *3) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-805)) (-5 *3 (-1124)))) (-3087 (*1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-805)))) (-2079 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-52)) (-5 *1 (-805)))) (-1492 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-52)) (-5 *1 (-805)))) (-3134 (*1 *2 *3) (-12 (-5 *3 (-798)) (-5 *2 (-52)) (-5 *1 (-805)))))
+(-10 -7 (-15 -3134 ((-52) (-798))) (-15 -1492 ((-52) (-1124))) (-15 -2079 ((-52) (-1124))) (-15 -3087 ((-621 (-1124)))) (-15 -3466 ((-621 (-1124)) (-1124))) (-15 -3342 ((-112) (-1124))) (-15 -3023 ((-112) (-1124) (-1124))) (-15 -1724 ((-305) (-1124) (-1124))))
+((-3832 (((-112) $ $) 19)) (-1441 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-4029 (($ $ $) 72)) (-1341 (((-112) $ $) 73)) (-2850 (((-112) $ (-747)) 8)) (-2787 (($ (-621 |#1|)) 68) (($) 67)) (-3827 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4336)))) (-3034 (($) 7 T CONST)) (-3469 (($ $) 62)) (-3675 (($ $) 58 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3546 (($ |#1| $) 47 (|has| $ (-6 -4336))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4336)))) (-3812 (($ |#1| $) 57 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4336)))) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-1513 (((-112) $ $) 64)) (-1777 (((-112) $ (-747)) 9)) (-2861 ((|#1| $) 78)) (-3021 (($ $ $) 81)) (-3050 (($ $ $) 80)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3574 ((|#1| $) 79)) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22)) (-3869 (($ $ $) 69)) (-2548 ((|#1| $) 39)) (-1799 (($ |#1| $) 40) (($ |#1| $ (-747)) 63)) (-3988 (((-1086) $) 21)) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-3536 ((|#1| $) 41)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-1359 (((-621 (-2 (|:| -1791 |#1|) (|:| -3997 (-747)))) $) 61)) (-4020 (($ $ |#1|) 71) (($ $ $) 70)) (-3226 (($) 49) (($ (-621 |#1|)) 48)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-2843 (((-525) $) 59 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 50)) (-3845 (((-834) $) 18)) (-4119 (($ (-621 |#1|)) 66) (($) 65)) (-4213 (($ (-621 |#1|)) 42)) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20)) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
(((-806 |#1|) (-138) (-823)) (T -806))
-((-2863 (*1 *2 *1) (-12 (-4 *1 (-806 *2)) (-4 *2 (-823)))))
-(-13 (-713 |t#1|) (-939 |t#1|) (-10 -8 (-15 -2863 (|t#1| $))))
-(((-34) . T) ((-106 |#1|) . T) ((-101) . T) ((-593 (-834)) . T) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-229 |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-671 |#1|) . T) ((-713 |#1|) . T) ((-939 |#1|) . T) ((-1065 |#1|) . T) ((-1067) . T) ((-1180) . T))
-((-3726 (((-1231) (-1087) (-1087)) 47)) (-3018 (((-1231) (-797) (-52)) 44)) (-1398 (((-52) (-797)) 16)))
-(((-807) (-10 -7 (-15 -1398 ((-52) (-797))) (-15 -3018 ((-1231) (-797) (-52))) (-15 -3726 ((-1231) (-1087) (-1087))))) (T -807))
-((-3726 (*1 *2 *3 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-1231)) (-5 *1 (-807)))) (-3018 (*1 *2 *3 *4) (-12 (-5 *3 (-797)) (-5 *4 (-52)) (-5 *2 (-1231)) (-5 *1 (-807)))) (-1398 (*1 *2 *3) (-12 (-5 *3 (-797)) (-5 *2 (-52)) (-5 *1 (-807)))))
-(-10 -7 (-15 -1398 ((-52) (-797))) (-15 -3018 ((-1231) (-797) (-52))) (-15 -3726 ((-1231) (-1087) (-1087))))
-((-2797 (((-809 |#2|) (-1 |#2| |#1|) (-809 |#1|) (-809 |#2|)) 12) (((-809 |#2|) (-1 |#2| |#1|) (-809 |#1|)) 13)))
-(((-808 |#1| |#2|) (-10 -7 (-15 -2797 ((-809 |#2|) (-1 |#2| |#1|) (-809 |#1|))) (-15 -2797 ((-809 |#2|) (-1 |#2| |#1|) (-809 |#1|) (-809 |#2|)))) (-1067) (-1067)) (T -808))
-((-2797 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-809 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-809 *5)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-5 *1 (-808 *5 *6)))) (-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-809 *5)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-5 *2 (-809 *6)) (-5 *1 (-808 *5 *6)))))
-(-10 -7 (-15 -2797 ((-809 |#2|) (-1 |#2| |#1|) (-809 |#1|))) (-15 -2797 ((-809 |#2|) (-1 |#2| |#1|) (-809 |#1|) (-809 |#2|))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL (|has| |#1| (-21)))) (-2001 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-1872 (((-549) $) NIL (|has| |#1| (-821)))) (-1682 (($) NIL (|has| |#1| (-21)) CONST)) (-2714 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 15)) (-2659 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 9)) (-2114 (((-3 $ "failed") $) 40 (|has| |#1| (-821)))) (-3405 (((-3 (-400 (-549)) "failed") $) 49 (|has| |#1| (-534)))) (-3679 (((-112) $) 43 (|has| |#1| (-534)))) (-2532 (((-400 (-549)) $) 46 (|has| |#1| (-534)))) (-2772 (((-112) $) NIL (|has| |#1| (-821)))) (-2675 (((-112) $) NIL (|has| |#1| (-821)))) (-2374 (((-112) $) NIL (|has| |#1| (-821)))) (-2863 (($ $ $) NIL (|has| |#1| (-821)))) (-3575 (($ $ $) NIL (|has| |#1| (-821)))) (-3851 (((-1125) $) NIL)) (-1438 (($) 13)) (-3807 (((-112) $) 12)) (-3990 (((-1087) $) NIL)) (-3195 (((-112) $) 11)) (-3846 (((-834) $) 18) (($ (-400 (-549))) NIL (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) 8) (($ (-549)) NIL (-1536 (|has| |#1| (-821)) (|has| |#1| (-1009 (-549)))))) (-2082 (((-747)) 34 (|has| |#1| (-821)))) (-3212 (($ $) NIL (|has| |#1| (-821)))) (-3276 (($) 22 (|has| |#1| (-21)) CONST)) (-3287 (($) 31 (|has| |#1| (-821)) CONST)) (-2448 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2389 (((-112) $ $) 20)) (-2438 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2412 (((-112) $ $) 42 (|has| |#1| (-821)))) (-2500 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 27 (|has| |#1| (-21)))) (-2486 (($ $ $) 29 (|has| |#1| (-21)))) (** (($ $ (-892)) NIL (|has| |#1| (-821))) (($ $ (-747)) NIL (|has| |#1| (-821)))) (* (($ $ $) 37 (|has| |#1| (-821))) (($ (-549) $) 25 (|has| |#1| (-21))) (($ (-747) $) NIL (|has| |#1| (-21))) (($ (-892) $) NIL (|has| |#1| (-21)))))
-(((-809 |#1|) (-13 (-1067) (-404 |#1|) (-10 -8 (-15 -1438 ($)) (-15 -3195 ((-112) $)) (-15 -3807 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-821)) (-6 (-821)) |%noBranch|) (IF (|has| |#1| (-534)) (PROGN (-15 -3679 ((-112) $)) (-15 -2532 ((-400 (-549)) $)) (-15 -3405 ((-3 (-400 (-549)) "failed") $))) |%noBranch|))) (-1067)) (T -809))
-((-1438 (*1 *1) (-12 (-5 *1 (-809 *2)) (-4 *2 (-1067)))) (-3195 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-809 *3)) (-4 *3 (-1067)))) (-3807 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-809 *3)) (-4 *3 (-1067)))) (-3679 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-809 *3)) (-4 *3 (-534)) (-4 *3 (-1067)))) (-2532 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-809 *3)) (-4 *3 (-534)) (-4 *3 (-1067)))) (-3405 (*1 *2 *1) (|partial| -12 (-5 *2 (-400 (-549))) (-5 *1 (-809 *3)) (-4 *3 (-534)) (-4 *3 (-1067)))))
-(-13 (-1067) (-404 |#1|) (-10 -8 (-15 -1438 ($)) (-15 -3195 ((-112) $)) (-15 -3807 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-821)) (-6 (-821)) |%noBranch|) (IF (|has| |#1| (-534)) (PROGN (-15 -3679 ((-112) $)) (-15 -2532 ((-400 (-549)) $)) (-15 -3405 ((-3 (-400 (-549)) "failed") $))) |%noBranch|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) NIL) (((-3 (-114) "failed") $) NIL)) (-2659 ((|#1| $) NIL) (((-114) $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3297 ((|#1| (-114) |#1|) NIL)) (-2675 (((-112) $) NIL)) (-3566 (($ |#1| (-354 (-114))) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2630 (($ $ (-1 |#1| |#1|)) NIL)) (-3686 (($ $ (-1 |#1| |#1|)) NIL)) (-3341 ((|#1| $ |#1|) NIL)) (-2817 ((|#1| |#1|) NIL (|has| |#1| (-170)))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-114)) NIL)) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) NIL)) (-1709 (($ $) NIL (|has| |#1| (-170))) (($ $ $) NIL (|has| |#1| (-170)))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ (-114) (-549)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-170))) (($ $ |#1|) NIL (|has| |#1| (-170)))))
-(((-810 |#1|) (-13 (-1018) (-1009 |#1|) (-1009 (-114)) (-279 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |#1| (-170)) (PROGN (-6 (-38 |#1|)) (-15 -1709 ($ $)) (-15 -1709 ($ $ $)) (-15 -2817 (|#1| |#1|))) |%noBranch|) (-15 -3686 ($ $ (-1 |#1| |#1|))) (-15 -2630 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-114) (-549))) (-15 ** ($ $ (-549))) (-15 -3297 (|#1| (-114) |#1|)) (-15 -3566 ($ |#1| (-354 (-114)))))) (-1018)) (T -810))
-((-1709 (*1 *1 *1) (-12 (-5 *1 (-810 *2)) (-4 *2 (-170)) (-4 *2 (-1018)))) (-1709 (*1 *1 *1 *1) (-12 (-5 *1 (-810 *2)) (-4 *2 (-170)) (-4 *2 (-1018)))) (-2817 (*1 *2 *2) (-12 (-5 *1 (-810 *2)) (-4 *2 (-170)) (-4 *2 (-1018)))) (-3686 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-810 *3)))) (-2630 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-810 *3)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-549)) (-5 *1 (-810 *4)) (-4 *4 (-1018)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-810 *3)) (-4 *3 (-1018)))) (-3297 (*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-5 *1 (-810 *2)) (-4 *2 (-1018)))) (-3566 (*1 *1 *2 *3) (-12 (-5 *3 (-354 (-114))) (-5 *1 (-810 *2)) (-4 *2 (-1018)))))
-(-13 (-1018) (-1009 |#1|) (-1009 (-114)) (-279 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |#1| (-170)) (PROGN (-6 (-38 |#1|)) (-15 -1709 ($ $)) (-15 -1709 ($ $ $)) (-15 -2817 (|#1| |#1|))) |%noBranch|) (-15 -3686 ($ $ (-1 |#1| |#1|))) (-15 -2630 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-114) (-549))) (-15 ** ($ $ (-549))) (-15 -3297 (|#1| (-114) |#1|)) (-15 -3566 ($ |#1| (-354 (-114))))))
-((-2970 (((-208 (-493)) (-1125)) 9)))
-(((-811) (-10 -7 (-15 -2970 ((-208 (-493)) (-1125))))) (T -811))
-((-2970 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-208 (-493))) (-5 *1 (-811)))))
-(-10 -7 (-15 -2970 ((-208 (-493)) (-1125))))
-((-3834 (((-112) $ $) 7)) (-2850 (((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) 14) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 13)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 16) (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) 15)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-2389 (((-112) $ $) 6)))
+((-2861 (*1 *2 *1) (-12 (-4 *1 (-806 *2)) (-4 *2 (-823)))))
+(-13 (-713 |t#1|) (-939 |t#1|) (-10 -8 (-15 -2861 (|t#1| $))))
+(((-34) . T) ((-106 |#1|) . T) ((-101) . T) ((-593 (-834)) . T) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-229 |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-671 |#1|) . T) ((-713 |#1|) . T) ((-939 |#1|) . T) ((-1064 |#1|) . T) ((-1066) . T) ((-1179) . T))
+((-2640 (((-1230) (-1086) (-1086)) 47)) (-2948 (((-1230) (-797) (-52)) 44)) (-3301 (((-52) (-797)) 16)))
+(((-807) (-10 -7 (-15 -3301 ((-52) (-797))) (-15 -2948 ((-1230) (-797) (-52))) (-15 -2640 ((-1230) (-1086) (-1086))))) (T -807))
+((-2640 (*1 *2 *3 *3) (-12 (-5 *3 (-1086)) (-5 *2 (-1230)) (-5 *1 (-807)))) (-2948 (*1 *2 *3 *4) (-12 (-5 *3 (-797)) (-5 *4 (-52)) (-5 *2 (-1230)) (-5 *1 (-807)))) (-3301 (*1 *2 *3) (-12 (-5 *3 (-797)) (-5 *2 (-52)) (-5 *1 (-807)))))
+(-10 -7 (-15 -3301 ((-52) (-797))) (-15 -2948 ((-1230) (-797) (-52))) (-15 -2640 ((-1230) (-1086) (-1086))))
+((-2795 (((-809 |#2|) (-1 |#2| |#1|) (-809 |#1|) (-809 |#2|)) 12) (((-809 |#2|) (-1 |#2| |#1|) (-809 |#1|)) 13)))
+(((-808 |#1| |#2|) (-10 -7 (-15 -2795 ((-809 |#2|) (-1 |#2| |#1|) (-809 |#1|))) (-15 -2795 ((-809 |#2|) (-1 |#2| |#1|) (-809 |#1|) (-809 |#2|)))) (-1066) (-1066)) (T -808))
+((-2795 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-809 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-809 *5)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-5 *1 (-808 *5 *6)))) (-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-809 *5)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-5 *2 (-809 *6)) (-5 *1 (-808 *5 *6)))))
+(-10 -7 (-15 -2795 ((-809 |#2|) (-1 |#2| |#1|) (-809 |#1|))) (-15 -2795 ((-809 |#2|) (-1 |#2| |#1|) (-809 |#1|) (-809 |#2|))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL (|has| |#1| (-21)))) (-2416 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-1741 (((-549) $) NIL (|has| |#1| (-821)))) (-3034 (($) NIL (|has| |#1| (-21)) CONST)) (-2712 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 15)) (-2657 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 9)) (-2612 (((-3 $ "failed") $) 40 (|has| |#1| (-821)))) (-1531 (((-3 (-400 (-549)) "failed") $) 49 (|has| |#1| (-534)))) (-3945 (((-112) $) 43 (|has| |#1| (-534)))) (-1390 (((-400 (-549)) $) 46 (|has| |#1| (-534)))) (-2357 (((-112) $) NIL (|has| |#1| (-821)))) (-2297 (((-112) $) NIL (|has| |#1| (-821)))) (-1992 (((-112) $) NIL (|has| |#1| (-821)))) (-2861 (($ $ $) NIL (|has| |#1| (-821)))) (-3574 (($ $ $) NIL (|has| |#1| (-821)))) (-3441 (((-1124) $) NIL)) (-1439 (($) 13)) (-2673 (((-112) $) 12)) (-3988 (((-1086) $) NIL)) (-1903 (((-112) $) 11)) (-3845 (((-834) $) 18) (($ (-400 (-549))) NIL (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) 8) (($ (-549)) NIL (-1536 (|has| |#1| (-821)) (|has| |#1| (-1009 (-549)))))) (-2371 (((-747)) 34 (|has| |#1| (-821)))) (-2199 (($ $) NIL (|has| |#1| (-821)))) (-3274 (($) 22 (|has| |#1| (-21)) CONST)) (-3286 (($) 31 (|has| |#1| (-821)) CONST)) (-2447 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2387 (((-112) $ $) 20)) (-2436 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2409 (((-112) $ $) 42 (|has| |#1| (-821)))) (-2498 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 27 (|has| |#1| (-21)))) (-2484 (($ $ $) 29 (|has| |#1| (-21)))) (** (($ $ (-892)) NIL (|has| |#1| (-821))) (($ $ (-747)) NIL (|has| |#1| (-821)))) (* (($ $ $) 37 (|has| |#1| (-821))) (($ (-549) $) 25 (|has| |#1| (-21))) (($ (-747) $) NIL (|has| |#1| (-21))) (($ (-892) $) NIL (|has| |#1| (-21)))))
+(((-809 |#1|) (-13 (-1066) (-404 |#1|) (-10 -8 (-15 -1439 ($)) (-15 -1903 ((-112) $)) (-15 -2673 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-821)) (-6 (-821)) |%noBranch|) (IF (|has| |#1| (-534)) (PROGN (-15 -3945 ((-112) $)) (-15 -1390 ((-400 (-549)) $)) (-15 -1531 ((-3 (-400 (-549)) "failed") $))) |%noBranch|))) (-1066)) (T -809))
+((-1439 (*1 *1) (-12 (-5 *1 (-809 *2)) (-4 *2 (-1066)))) (-1903 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-809 *3)) (-4 *3 (-1066)))) (-2673 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-809 *3)) (-4 *3 (-1066)))) (-3945 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-809 *3)) (-4 *3 (-534)) (-4 *3 (-1066)))) (-1390 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-809 *3)) (-4 *3 (-534)) (-4 *3 (-1066)))) (-1531 (*1 *2 *1) (|partial| -12 (-5 *2 (-400 (-549))) (-5 *1 (-809 *3)) (-4 *3 (-534)) (-4 *3 (-1066)))))
+(-13 (-1066) (-404 |#1|) (-10 -8 (-15 -1439 ($)) (-15 -1903 ((-112) $)) (-15 -2673 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-821)) (-6 (-821)) |%noBranch|) (IF (|has| |#1| (-534)) (PROGN (-15 -3945 ((-112) $)) (-15 -1390 ((-400 (-549)) $)) (-15 -1531 ((-3 (-400 (-549)) "failed") $))) |%noBranch|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) NIL) (((-3 (-114) "failed") $) NIL)) (-2657 ((|#1| $) NIL) (((-114) $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-4184 ((|#1| (-114) |#1|) NIL)) (-2297 (((-112) $) NIL)) (-3325 (($ |#1| (-354 (-114))) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3192 (($ $ (-1 |#1| |#1|)) NIL)) (-3295 (($ $ (-1 |#1| |#1|)) NIL)) (-3339 ((|#1| $ |#1|) NIL)) (-1481 ((|#1| |#1|) NIL (|has| |#1| (-170)))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-114)) NIL)) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) NIL)) (-3478 (($ $) NIL (|has| |#1| (-170))) (($ $ $) NIL (|has| |#1| (-170)))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ (-114) (-549)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-170))) (($ $ |#1|) NIL (|has| |#1| (-170)))))
+(((-810 |#1|) (-13 (-1018) (-1009 |#1|) (-1009 (-114)) (-279 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |#1| (-170)) (PROGN (-6 (-38 |#1|)) (-15 -3478 ($ $)) (-15 -3478 ($ $ $)) (-15 -1481 (|#1| |#1|))) |%noBranch|) (-15 -3295 ($ $ (-1 |#1| |#1|))) (-15 -3192 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-114) (-549))) (-15 ** ($ $ (-549))) (-15 -4184 (|#1| (-114) |#1|)) (-15 -3325 ($ |#1| (-354 (-114)))))) (-1018)) (T -810))
+((-3478 (*1 *1 *1) (-12 (-5 *1 (-810 *2)) (-4 *2 (-170)) (-4 *2 (-1018)))) (-3478 (*1 *1 *1 *1) (-12 (-5 *1 (-810 *2)) (-4 *2 (-170)) (-4 *2 (-1018)))) (-1481 (*1 *2 *2) (-12 (-5 *1 (-810 *2)) (-4 *2 (-170)) (-4 *2 (-1018)))) (-3295 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-810 *3)))) (-3192 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-810 *3)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-549)) (-5 *1 (-810 *4)) (-4 *4 (-1018)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-810 *3)) (-4 *3 (-1018)))) (-4184 (*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-5 *1 (-810 *2)) (-4 *2 (-1018)))) (-3325 (*1 *1 *2 *3) (-12 (-5 *3 (-354 (-114))) (-5 *1 (-810 *2)) (-4 *2 (-1018)))))
+(-13 (-1018) (-1009 |#1|) (-1009 (-114)) (-279 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |#1| (-170)) (PROGN (-6 (-38 |#1|)) (-15 -3478 ($ $)) (-15 -3478 ($ $ $)) (-15 -1481 (|#1| |#1|))) |%noBranch|) (-15 -3295 ($ $ (-1 |#1| |#1|))) (-15 -3192 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-114) (-549))) (-15 ** ($ $ (-549))) (-15 -4184 (|#1| (-114) |#1|)) (-15 -3325 ($ |#1| (-354 (-114))))))
+((-3427 (((-208 (-493)) (-1124)) 9)))
+(((-811) (-10 -7 (-15 -3427 ((-208 (-493)) (-1124))))) (T -811))
+((-3427 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-208 (-493))) (-5 *1 (-811)))))
+(-10 -7 (-15 -3427 ((-208 (-493)) (-1124))))
+((-3832 (((-112) $ $) 7)) (-1362 (((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) 14) (((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 13)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 16) (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) 15)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-2387 (((-112) $ $) 6)))
(((-812) (-138)) (T -812))
-((-1391 (*1 *2 *3 *4) (-12 (-4 *1 (-812)) (-5 *3 (-1030)) (-5 *4 (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (-5 *2 (-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)))))) (-1391 (*1 *2 *3 *4) (-12 (-4 *1 (-812)) (-5 *3 (-1030)) (-5 *4 (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) (-5 *2 (-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)))))) (-2850 (*1 *2 *3) (-12 (-4 *1 (-812)) (-5 *3 (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) (-5 *2 (-1006)))) (-2850 (*1 *2 *3) (-12 (-4 *1 (-812)) (-5 *3 (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (-5 *2 (-1006)))))
-(-13 (-1067) (-10 -7 (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219))))))) (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))) (-15 -2850 ((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))) (-15 -2850 ((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-1517 (((-1006) (-621 (-309 (-372))) (-621 (-372))) 147) (((-1006) (-309 (-372)) (-621 (-372))) 145) (((-1006) (-309 (-372)) (-621 (-372)) (-621 (-816 (-372))) (-621 (-816 (-372)))) 144) (((-1006) (-309 (-372)) (-621 (-372)) (-621 (-816 (-372))) (-621 (-309 (-372))) (-621 (-816 (-372)))) 143) (((-1006) (-814)) 117) (((-1006) (-814) (-1030)) 116)) (-1391 (((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-814) (-1030)) 82) (((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-814)) 84)) (-2702 (((-1006) (-621 (-309 (-372))) (-621 (-372))) 148) (((-1006) (-814)) 133)))
-(((-813) (-10 -7 (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-814))) (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-814) (-1030))) (-15 -1517 ((-1006) (-814) (-1030))) (-15 -1517 ((-1006) (-814))) (-15 -2702 ((-1006) (-814))) (-15 -1517 ((-1006) (-309 (-372)) (-621 (-372)) (-621 (-816 (-372))) (-621 (-309 (-372))) (-621 (-816 (-372))))) (-15 -1517 ((-1006) (-309 (-372)) (-621 (-372)) (-621 (-816 (-372))) (-621 (-816 (-372))))) (-15 -1517 ((-1006) (-309 (-372)) (-621 (-372)))) (-15 -1517 ((-1006) (-621 (-309 (-372))) (-621 (-372)))) (-15 -2702 ((-1006) (-621 (-309 (-372))) (-621 (-372)))))) (T -813))
-((-2702 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-309 (-372)))) (-5 *4 (-621 (-372))) (-5 *2 (-1006)) (-5 *1 (-813)))) (-1517 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-309 (-372)))) (-5 *4 (-621 (-372))) (-5 *2 (-1006)) (-5 *1 (-813)))) (-1517 (*1 *2 *3 *4) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-372))) (-5 *2 (-1006)) (-5 *1 (-813)))) (-1517 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-372))) (-5 *5 (-621 (-816 (-372)))) (-5 *2 (-1006)) (-5 *1 (-813)))) (-1517 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-621 (-372))) (-5 *5 (-621 (-816 (-372)))) (-5 *6 (-621 (-309 (-372)))) (-5 *3 (-309 (-372))) (-5 *2 (-1006)) (-5 *1 (-813)))) (-2702 (*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-1006)) (-5 *1 (-813)))) (-1517 (*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-1006)) (-5 *1 (-813)))) (-1517 (*1 *2 *3 *4) (-12 (-5 *3 (-814)) (-5 *4 (-1030)) (-5 *2 (-1006)) (-5 *1 (-813)))) (-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-814)) (-5 *4 (-1030)) (-5 *2 (-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))))) (-5 *1 (-813)))) (-1391 (*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))))) (-5 *1 (-813)))))
-(-10 -7 (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-814))) (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-814) (-1030))) (-15 -1517 ((-1006) (-814) (-1030))) (-15 -1517 ((-1006) (-814))) (-15 -2702 ((-1006) (-814))) (-15 -1517 ((-1006) (-309 (-372)) (-621 (-372)) (-621 (-816 (-372))) (-621 (-309 (-372))) (-621 (-816 (-372))))) (-15 -1517 ((-1006) (-309 (-372)) (-621 (-372)) (-621 (-816 (-372))) (-621 (-816 (-372))))) (-15 -1517 ((-1006) (-309 (-372)) (-621 (-372)))) (-15 -1517 ((-1006) (-621 (-309 (-372))) (-621 (-372)))) (-15 -2702 ((-1006) (-621 (-309 (-372))) (-621 (-372)))))
-((-3834 (((-112) $ $) NIL)) (-2659 (((-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))) $) 21)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 20) (($ (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 14) (($ (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) 16) (($ (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))))) 18)) (-2389 (((-112) $ $) NIL)))
-(((-814) (-13 (-1067) (-10 -8 (-15 -3846 ($ (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219))))))) (-15 -3846 ($ (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))) (-15 -3846 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))))) (-15 -3846 ((-834) $)) (-15 -2659 ((-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))) $))))) (T -814))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-814)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (-5 *1 (-814)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))) (-5 *1 (-814)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))))) (-5 *1 (-814)))) (-2659 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219))))))) (-5 *1 (-814)))))
-(-13 (-1067) (-10 -8 (-15 -3846 ($ (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219))))))) (-15 -3846 ($ (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))) (-15 -3846 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))))) (-15 -3846 ((-834) $)) (-15 -2659 ((-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))) $))))
-((-2797 (((-816 |#2|) (-1 |#2| |#1|) (-816 |#1|) (-816 |#2|) (-816 |#2|)) 13) (((-816 |#2|) (-1 |#2| |#1|) (-816 |#1|)) 14)))
-(((-815 |#1| |#2|) (-10 -7 (-15 -2797 ((-816 |#2|) (-1 |#2| |#1|) (-816 |#1|))) (-15 -2797 ((-816 |#2|) (-1 |#2| |#1|) (-816 |#1|) (-816 |#2|) (-816 |#2|)))) (-1067) (-1067)) (T -815))
-((-2797 (*1 *2 *3 *4 *2 *2) (-12 (-5 *2 (-816 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-816 *5)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-5 *1 (-815 *5 *6)))) (-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-816 *5)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-5 *2 (-816 *6)) (-5 *1 (-815 *5 *6)))))
-(-10 -7 (-15 -2797 ((-816 |#2|) (-1 |#2| |#1|) (-816 |#1|))) (-15 -2797 ((-816 |#2|) (-1 |#2| |#1|) (-816 |#1|) (-816 |#2|) (-816 |#2|))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL (|has| |#1| (-21)))) (-3969 (((-1087) $) 24)) (-2001 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-1872 (((-549) $) NIL (|has| |#1| (-821)))) (-1682 (($) NIL (|has| |#1| (-21)) CONST)) (-2714 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 16)) (-2659 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 9)) (-2114 (((-3 $ "failed") $) 47 (|has| |#1| (-821)))) (-3405 (((-3 (-400 (-549)) "failed") $) 54 (|has| |#1| (-534)))) (-3679 (((-112) $) 49 (|has| |#1| (-534)))) (-2532 (((-400 (-549)) $) 52 (|has| |#1| (-534)))) (-2772 (((-112) $) NIL (|has| |#1| (-821)))) (-3048 (($) 13)) (-2675 (((-112) $) NIL (|has| |#1| (-821)))) (-2374 (((-112) $) NIL (|has| |#1| (-821)))) (-3059 (($) 14)) (-2863 (($ $ $) NIL (|has| |#1| (-821)))) (-3575 (($ $ $) NIL (|has| |#1| (-821)))) (-3851 (((-1125) $) NIL)) (-3807 (((-112) $) 12)) (-3990 (((-1087) $) NIL)) (-3195 (((-112) $) 11)) (-3846 (((-834) $) 22) (($ (-400 (-549))) NIL (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) 8) (($ (-549)) NIL (-1536 (|has| |#1| (-821)) (|has| |#1| (-1009 (-549)))))) (-2082 (((-747)) 41 (|has| |#1| (-821)))) (-3212 (($ $) NIL (|has| |#1| (-821)))) (-3276 (($) 29 (|has| |#1| (-21)) CONST)) (-3287 (($) 38 (|has| |#1| (-821)) CONST)) (-2448 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2389 (((-112) $ $) 27)) (-2438 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2412 (((-112) $ $) 48 (|has| |#1| (-821)))) (-2500 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 34 (|has| |#1| (-21)))) (-2486 (($ $ $) 36 (|has| |#1| (-21)))) (** (($ $ (-892)) NIL (|has| |#1| (-821))) (($ $ (-747)) NIL (|has| |#1| (-821)))) (* (($ $ $) 44 (|has| |#1| (-821))) (($ (-549) $) 32 (|has| |#1| (-21))) (($ (-747) $) NIL (|has| |#1| (-21))) (($ (-892) $) NIL (|has| |#1| (-21)))))
-(((-816 |#1|) (-13 (-1067) (-404 |#1|) (-10 -8 (-15 -3048 ($)) (-15 -3059 ($)) (-15 -3195 ((-112) $)) (-15 -3807 ((-112) $)) (-15 -3969 ((-1087) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-821)) (-6 (-821)) |%noBranch|) (IF (|has| |#1| (-534)) (PROGN (-15 -3679 ((-112) $)) (-15 -2532 ((-400 (-549)) $)) (-15 -3405 ((-3 (-400 (-549)) "failed") $))) |%noBranch|))) (-1067)) (T -816))
-((-3048 (*1 *1) (-12 (-5 *1 (-816 *2)) (-4 *2 (-1067)))) (-3059 (*1 *1) (-12 (-5 *1 (-816 *2)) (-4 *2 (-1067)))) (-3195 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-816 *3)) (-4 *3 (-1067)))) (-3807 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-816 *3)) (-4 *3 (-1067)))) (-3969 (*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-816 *3)) (-4 *3 (-1067)))) (-3679 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-816 *3)) (-4 *3 (-534)) (-4 *3 (-1067)))) (-2532 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-816 *3)) (-4 *3 (-534)) (-4 *3 (-1067)))) (-3405 (*1 *2 *1) (|partial| -12 (-5 *2 (-400 (-549))) (-5 *1 (-816 *3)) (-4 *3 (-534)) (-4 *3 (-1067)))))
-(-13 (-1067) (-404 |#1|) (-10 -8 (-15 -3048 ($)) (-15 -3059 ($)) (-15 -3195 ((-112) $)) (-15 -3807 ((-112) $)) (-15 -3969 ((-1087) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-821)) (-6 (-821)) |%noBranch|) (IF (|has| |#1| (-534)) (PROGN (-15 -3679 ((-112) $)) (-15 -2532 ((-400 (-549)) $)) (-15 -3405 ((-3 (-400 (-549)) "failed") $))) |%noBranch|)))
-((-3834 (((-112) $ $) 7)) (-3614 (((-747)) 20)) (-3239 (($) 23)) (-2863 (($ $ $) 13)) (-3575 (($ $ $) 14)) (-1881 (((-892) $) 22)) (-3851 (((-1125) $) 9)) (-3493 (($ (-892)) 21)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-2448 (((-112) $ $) 16)) (-2425 (((-112) $ $) 17)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 15)) (-2412 (((-112) $ $) 18)))
+((-3947 (*1 *2 *3 *4) (-12 (-4 *1 (-812)) (-5 *3 (-1030)) (-5 *4 (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (-5 *2 (-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)))))) (-3947 (*1 *2 *3 *4) (-12 (-4 *1 (-812)) (-5 *3 (-1030)) (-5 *4 (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) (-5 *2 (-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)))))) (-1362 (*1 *2 *3) (-12 (-4 *1 (-812)) (-5 *3 (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) (-5 *2 (-1006)))) (-1362 (*1 *2 *3) (-12 (-4 *1 (-812)) (-5 *3 (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (-5 *2 (-1006)))))
+(-13 (-1066) (-10 -7 (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219))))))) (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))) (-15 -1362 ((-1006) (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))) (-15 -1362 ((-1006) (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-1516 (((-1006) (-621 (-309 (-372))) (-621 (-372))) 147) (((-1006) (-309 (-372)) (-621 (-372))) 145) (((-1006) (-309 (-372)) (-621 (-372)) (-621 (-816 (-372))) (-621 (-816 (-372)))) 144) (((-1006) (-309 (-372)) (-621 (-372)) (-621 (-816 (-372))) (-621 (-309 (-372))) (-621 (-816 (-372)))) 143) (((-1006) (-814)) 117) (((-1006) (-814) (-1030)) 116)) (-3947 (((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-814) (-1030)) 82) (((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-814)) 84)) (-3787 (((-1006) (-621 (-309 (-372))) (-621 (-372))) 148) (((-1006) (-814)) 133)))
+(((-813) (-10 -7 (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-814))) (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-814) (-1030))) (-15 -1516 ((-1006) (-814) (-1030))) (-15 -1516 ((-1006) (-814))) (-15 -3787 ((-1006) (-814))) (-15 -1516 ((-1006) (-309 (-372)) (-621 (-372)) (-621 (-816 (-372))) (-621 (-309 (-372))) (-621 (-816 (-372))))) (-15 -1516 ((-1006) (-309 (-372)) (-621 (-372)) (-621 (-816 (-372))) (-621 (-816 (-372))))) (-15 -1516 ((-1006) (-309 (-372)) (-621 (-372)))) (-15 -1516 ((-1006) (-621 (-309 (-372))) (-621 (-372)))) (-15 -3787 ((-1006) (-621 (-309 (-372))) (-621 (-372)))))) (T -813))
+((-3787 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-309 (-372)))) (-5 *4 (-621 (-372))) (-5 *2 (-1006)) (-5 *1 (-813)))) (-1516 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-309 (-372)))) (-5 *4 (-621 (-372))) (-5 *2 (-1006)) (-5 *1 (-813)))) (-1516 (*1 *2 *3 *4) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-372))) (-5 *2 (-1006)) (-5 *1 (-813)))) (-1516 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-372))) (-5 *5 (-621 (-816 (-372)))) (-5 *2 (-1006)) (-5 *1 (-813)))) (-1516 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-621 (-372))) (-5 *5 (-621 (-816 (-372)))) (-5 *6 (-621 (-309 (-372)))) (-5 *3 (-309 (-372))) (-5 *2 (-1006)) (-5 *1 (-813)))) (-3787 (*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-1006)) (-5 *1 (-813)))) (-1516 (*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-1006)) (-5 *1 (-813)))) (-1516 (*1 *2 *3 *4) (-12 (-5 *3 (-814)) (-5 *4 (-1030)) (-5 *2 (-1006)) (-5 *1 (-813)))) (-3947 (*1 *2 *3 *4) (-12 (-5 *3 (-814)) (-5 *4 (-1030)) (-5 *2 (-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))))) (-5 *1 (-813)))) (-3947 (*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))))) (-5 *1 (-813)))))
+(-10 -7 (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-814))) (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-814) (-1030))) (-15 -1516 ((-1006) (-814) (-1030))) (-15 -1516 ((-1006) (-814))) (-15 -3787 ((-1006) (-814))) (-15 -1516 ((-1006) (-309 (-372)) (-621 (-372)) (-621 (-816 (-372))) (-621 (-309 (-372))) (-621 (-816 (-372))))) (-15 -1516 ((-1006) (-309 (-372)) (-621 (-372)) (-621 (-816 (-372))) (-621 (-816 (-372))))) (-15 -1516 ((-1006) (-309 (-372)) (-621 (-372)))) (-15 -1516 ((-1006) (-621 (-309 (-372))) (-621 (-372)))) (-15 -3787 ((-1006) (-621 (-309 (-372))) (-621 (-372)))))
+((-3832 (((-112) $ $) NIL)) (-2657 (((-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))) $) 21)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 20) (($ (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) 14) (($ (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) 16) (($ (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))))) 18)) (-2387 (((-112) $ $) NIL)))
+(((-814) (-13 (-1066) (-10 -8 (-15 -3845 ($ (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219))))))) (-15 -3845 ($ (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))) (-15 -3845 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))))) (-15 -3845 ((-834) $)) (-15 -2657 ((-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))) $))))) (T -814))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-814)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (-5 *1 (-814)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))) (-5 *1 (-814)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))))) (-5 *1 (-814)))) (-2657 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219))))))) (-5 *1 (-814)))))
+(-13 (-1066) (-10 -8 (-15 -3845 ($ (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219))))))) (-15 -3845 ($ (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))) (-15 -3845 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))))) (-15 -3845 ((-834) $)) (-15 -2657 ((-3 (|:| |noa| (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219))) (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219)))) (|:| |ub| (-621 (-816 (-219)))))) (|:| |lsa| (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))) $))))
+((-2795 (((-816 |#2|) (-1 |#2| |#1|) (-816 |#1|) (-816 |#2|) (-816 |#2|)) 13) (((-816 |#2|) (-1 |#2| |#1|) (-816 |#1|)) 14)))
+(((-815 |#1| |#2|) (-10 -7 (-15 -2795 ((-816 |#2|) (-1 |#2| |#1|) (-816 |#1|))) (-15 -2795 ((-816 |#2|) (-1 |#2| |#1|) (-816 |#1|) (-816 |#2|) (-816 |#2|)))) (-1066) (-1066)) (T -815))
+((-2795 (*1 *2 *3 *4 *2 *2) (-12 (-5 *2 (-816 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-816 *5)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-5 *1 (-815 *5 *6)))) (-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-816 *5)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-5 *2 (-816 *6)) (-5 *1 (-815 *5 *6)))))
+(-10 -7 (-15 -2795 ((-816 |#2|) (-1 |#2| |#1|) (-816 |#1|))) (-15 -2795 ((-816 |#2|) (-1 |#2| |#1|) (-816 |#1|) (-816 |#2|) (-816 |#2|))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL (|has| |#1| (-21)))) (-3454 (((-1086) $) 24)) (-2416 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-1741 (((-549) $) NIL (|has| |#1| (-821)))) (-3034 (($) NIL (|has| |#1| (-21)) CONST)) (-2712 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 16)) (-2657 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 9)) (-2612 (((-3 $ "failed") $) 47 (|has| |#1| (-821)))) (-1531 (((-3 (-400 (-549)) "failed") $) 54 (|has| |#1| (-534)))) (-3945 (((-112) $) 49 (|has| |#1| (-534)))) (-1390 (((-400 (-549)) $) 52 (|has| |#1| (-534)))) (-2357 (((-112) $) NIL (|has| |#1| (-821)))) (-3046 (($) 13)) (-2297 (((-112) $) NIL (|has| |#1| (-821)))) (-1992 (((-112) $) NIL (|has| |#1| (-821)))) (-3056 (($) 14)) (-2861 (($ $ $) NIL (|has| |#1| (-821)))) (-3574 (($ $ $) NIL (|has| |#1| (-821)))) (-3441 (((-1124) $) NIL)) (-2673 (((-112) $) 12)) (-3988 (((-1086) $) NIL)) (-1903 (((-112) $) 11)) (-3845 (((-834) $) 22) (($ (-400 (-549))) NIL (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) 8) (($ (-549)) NIL (-1536 (|has| |#1| (-821)) (|has| |#1| (-1009 (-549)))))) (-2371 (((-747)) 41 (|has| |#1| (-821)))) (-2199 (($ $) NIL (|has| |#1| (-821)))) (-3274 (($) 29 (|has| |#1| (-21)) CONST)) (-3286 (($) 38 (|has| |#1| (-821)) CONST)) (-2447 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2387 (((-112) $ $) 27)) (-2436 (((-112) $ $) NIL (|has| |#1| (-821)))) (-2409 (((-112) $ $) 48 (|has| |#1| (-821)))) (-2498 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 34 (|has| |#1| (-21)))) (-2484 (($ $ $) 36 (|has| |#1| (-21)))) (** (($ $ (-892)) NIL (|has| |#1| (-821))) (($ $ (-747)) NIL (|has| |#1| (-821)))) (* (($ $ $) 44 (|has| |#1| (-821))) (($ (-549) $) 32 (|has| |#1| (-21))) (($ (-747) $) NIL (|has| |#1| (-21))) (($ (-892) $) NIL (|has| |#1| (-21)))))
+(((-816 |#1|) (-13 (-1066) (-404 |#1|) (-10 -8 (-15 -3046 ($)) (-15 -3056 ($)) (-15 -1903 ((-112) $)) (-15 -2673 ((-112) $)) (-15 -3454 ((-1086) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-821)) (-6 (-821)) |%noBranch|) (IF (|has| |#1| (-534)) (PROGN (-15 -3945 ((-112) $)) (-15 -1390 ((-400 (-549)) $)) (-15 -1531 ((-3 (-400 (-549)) "failed") $))) |%noBranch|))) (-1066)) (T -816))
+((-3046 (*1 *1) (-12 (-5 *1 (-816 *2)) (-4 *2 (-1066)))) (-3056 (*1 *1) (-12 (-5 *1 (-816 *2)) (-4 *2 (-1066)))) (-1903 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-816 *3)) (-4 *3 (-1066)))) (-2673 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-816 *3)) (-4 *3 (-1066)))) (-3454 (*1 *2 *1) (-12 (-5 *2 (-1086)) (-5 *1 (-816 *3)) (-4 *3 (-1066)))) (-3945 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-816 *3)) (-4 *3 (-534)) (-4 *3 (-1066)))) (-1390 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-816 *3)) (-4 *3 (-534)) (-4 *3 (-1066)))) (-1531 (*1 *2 *1) (|partial| -12 (-5 *2 (-400 (-549))) (-5 *1 (-816 *3)) (-4 *3 (-534)) (-4 *3 (-1066)))))
+(-13 (-1066) (-404 |#1|) (-10 -8 (-15 -3046 ($)) (-15 -3056 ($)) (-15 -1903 ((-112) $)) (-15 -2673 ((-112) $)) (-15 -3454 ((-1086) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-821)) (-6 (-821)) |%noBranch|) (IF (|has| |#1| (-534)) (PROGN (-15 -3945 ((-112) $)) (-15 -1390 ((-400 (-549)) $)) (-15 -1531 ((-3 (-400 (-549)) "failed") $))) |%noBranch|)))
+((-3832 (((-112) $ $) 7)) (-3614 (((-747)) 20)) (-3237 (($) 23)) (-2861 (($ $ $) 13)) (-3574 (($ $ $) 14)) (-3309 (((-892) $) 22)) (-3441 (((-1124) $) 9)) (-3494 (($ (-892)) 21)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-2447 (((-112) $ $) 16)) (-2423 (((-112) $ $) 17)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 15)) (-2409 (((-112) $ $) 18)))
(((-817) (-138)) (T -817))
NIL
(-13 (-823) (-361))
-(((-101) . T) ((-593 (-834)) . T) ((-361) . T) ((-823) . T) ((-1067) . T))
-((-1801 (((-112) (-1226 |#2|) (-1226 |#2|)) 17)) (-2411 (((-112) (-1226 |#2|) (-1226 |#2|)) 18)) (-2929 (((-112) (-1226 |#2|) (-1226 |#2|)) 14)))
-(((-818 |#1| |#2|) (-10 -7 (-15 -2929 ((-112) (-1226 |#2|) (-1226 |#2|))) (-15 -1801 ((-112) (-1226 |#2|) (-1226 |#2|))) (-15 -2411 ((-112) (-1226 |#2|) (-1226 |#2|)))) (-747) (-768)) (T -818))
-((-2411 (*1 *2 *3 *3) (-12 (-5 *3 (-1226 *5)) (-4 *5 (-768)) (-5 *2 (-112)) (-5 *1 (-818 *4 *5)) (-14 *4 (-747)))) (-1801 (*1 *2 *3 *3) (-12 (-5 *3 (-1226 *5)) (-4 *5 (-768)) (-5 *2 (-112)) (-5 *1 (-818 *4 *5)) (-14 *4 (-747)))) (-2929 (*1 *2 *3 *3) (-12 (-5 *3 (-1226 *5)) (-4 *5 (-768)) (-5 *2 (-112)) (-5 *1 (-818 *4 *5)) (-14 *4 (-747)))))
-(-10 -7 (-15 -2929 ((-112) (-1226 |#2|) (-1226 |#2|))) (-15 -1801 ((-112) (-1226 |#2|) (-1226 |#2|))) (-15 -2411 ((-112) (-1226 |#2|) (-1226 |#2|))))
-((-3834 (((-112) $ $) 7)) (-1682 (($) 23 T CONST)) (-2114 (((-3 $ "failed") $) 26)) (-2675 (((-112) $) 24)) (-2863 (($ $ $) 13)) (-3575 (($ $ $) 14)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-3287 (($) 22 T CONST)) (-2448 (((-112) $ $) 16)) (-2425 (((-112) $ $) 17)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 15)) (-2412 (((-112) $ $) 18)) (** (($ $ (-892)) 21) (($ $ (-747)) 25)) (* (($ $ $) 20)))
+(((-101) . T) ((-593 (-834)) . T) ((-361) . T) ((-823) . T) ((-1066) . T))
+((-1948 (((-112) (-1225 |#2|) (-1225 |#2|)) 17)) (-2093 (((-112) (-1225 |#2|) (-1225 |#2|)) 18)) (-4273 (((-112) (-1225 |#2|) (-1225 |#2|)) 14)))
+(((-818 |#1| |#2|) (-10 -7 (-15 -4273 ((-112) (-1225 |#2|) (-1225 |#2|))) (-15 -1948 ((-112) (-1225 |#2|) (-1225 |#2|))) (-15 -2093 ((-112) (-1225 |#2|) (-1225 |#2|)))) (-747) (-768)) (T -818))
+((-2093 (*1 *2 *3 *3) (-12 (-5 *3 (-1225 *5)) (-4 *5 (-768)) (-5 *2 (-112)) (-5 *1 (-818 *4 *5)) (-14 *4 (-747)))) (-1948 (*1 *2 *3 *3) (-12 (-5 *3 (-1225 *5)) (-4 *5 (-768)) (-5 *2 (-112)) (-5 *1 (-818 *4 *5)) (-14 *4 (-747)))) (-4273 (*1 *2 *3 *3) (-12 (-5 *3 (-1225 *5)) (-4 *5 (-768)) (-5 *2 (-112)) (-5 *1 (-818 *4 *5)) (-14 *4 (-747)))))
+(-10 -7 (-15 -4273 ((-112) (-1225 |#2|) (-1225 |#2|))) (-15 -1948 ((-112) (-1225 |#2|) (-1225 |#2|))) (-15 -2093 ((-112) (-1225 |#2|) (-1225 |#2|))))
+((-3832 (((-112) $ $) 7)) (-3034 (($) 23 T CONST)) (-2612 (((-3 $ "failed") $) 26)) (-2297 (((-112) $) 24)) (-2861 (($ $ $) 13)) (-3574 (($ $ $) 14)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-3286 (($) 22 T CONST)) (-2447 (((-112) $ $) 16)) (-2423 (((-112) $ $) 17)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 15)) (-2409 (((-112) $ $) 18)) (** (($ $ (-892)) 21) (($ $ (-747)) 25)) (* (($ $ $) 20)))
(((-819) (-138)) (T -819))
NIL
(-13 (-830) (-703))
-(((-101) . T) ((-593 (-834)) . T) ((-703) . T) ((-830) . T) ((-823) . T) ((-1079) . T) ((-1067) . T))
-((-1872 (((-549) $) 17)) (-2772 (((-112) $) 10)) (-2374 (((-112) $) 11)) (-3212 (($ $) 19)))
-(((-820 |#1|) (-10 -8 (-15 -3212 (|#1| |#1|)) (-15 -1872 ((-549) |#1|)) (-15 -2374 ((-112) |#1|)) (-15 -2772 ((-112) |#1|))) (-821)) (T -820))
+(((-101) . T) ((-593 (-834)) . T) ((-703) . T) ((-830) . T) ((-823) . T) ((-1078) . T) ((-1066) . T))
+((-1741 (((-549) $) 17)) (-2357 (((-112) $) 10)) (-1992 (((-112) $) 11)) (-2199 (($ $) 19)))
+(((-820 |#1|) (-10 -8 (-15 -2199 (|#1| |#1|)) (-15 -1741 ((-549) |#1|)) (-15 -1992 ((-112) |#1|)) (-15 -2357 ((-112) |#1|))) (-821)) (T -820))
NIL
-(-10 -8 (-15 -3212 (|#1| |#1|)) (-15 -1872 ((-549) |#1|)) (-15 -2374 ((-112) |#1|)) (-15 -2772 ((-112) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 24)) (-2001 (((-3 $ "failed") $ $) 26)) (-1872 (((-549) $) 33)) (-1682 (($) 23 T CONST)) (-2114 (((-3 $ "failed") $) 38)) (-2772 (((-112) $) 35)) (-2675 (((-112) $) 40)) (-2374 (((-112) $) 34)) (-2863 (($ $ $) 13)) (-3575 (($ $ $) 14)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11) (($ (-549)) 43)) (-2082 (((-747)) 42)) (-3212 (($ $) 32)) (-3276 (($) 22 T CONST)) (-3287 (($) 41 T CONST)) (-2448 (((-112) $ $) 16)) (-2425 (((-112) $ $) 17)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 15)) (-2412 (((-112) $ $) 18)) (-2500 (($ $ $) 28) (($ $) 27)) (-2486 (($ $ $) 20)) (** (($ $ (-747)) 39) (($ $ (-892)) 36)) (* (($ (-892) $) 21) (($ (-747) $) 25) (($ (-549) $) 29) (($ $ $) 37)))
+(-10 -8 (-15 -2199 (|#1| |#1|)) (-15 -1741 ((-549) |#1|)) (-15 -1992 ((-112) |#1|)) (-15 -2357 ((-112) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 24)) (-2416 (((-3 $ "failed") $ $) 26)) (-1741 (((-549) $) 33)) (-3034 (($) 23 T CONST)) (-2612 (((-3 $ "failed") $) 38)) (-2357 (((-112) $) 35)) (-2297 (((-112) $) 40)) (-1992 (((-112) $) 34)) (-2861 (($ $ $) 13)) (-3574 (($ $ $) 14)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11) (($ (-549)) 43)) (-2371 (((-747)) 42)) (-2199 (($ $) 32)) (-3274 (($) 22 T CONST)) (-3286 (($) 41 T CONST)) (-2447 (((-112) $ $) 16)) (-2423 (((-112) $ $) 17)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 15)) (-2409 (((-112) $ $) 18)) (-2498 (($ $ $) 28) (($ $) 27)) (-2484 (($ $ $) 20)) (** (($ $ (-747)) 39) (($ $ (-892)) 36)) (* (($ (-892) $) 21) (($ (-747) $) 25) (($ (-549) $) 29) (($ $ $) 37)))
(((-821) (-138)) (T -821))
-((-2772 (*1 *2 *1) (-12 (-4 *1 (-821)) (-5 *2 (-112)))) (-2374 (*1 *2 *1) (-12 (-4 *1 (-821)) (-5 *2 (-112)))) (-1872 (*1 *2 *1) (-12 (-4 *1 (-821)) (-5 *2 (-549)))) (-3212 (*1 *1 *1) (-4 *1 (-821))))
-(-13 (-767) (-1018) (-703) (-10 -8 (-15 -2772 ((-112) $)) (-15 -2374 ((-112) $)) (-15 -1872 ((-549) $)) (-15 -3212 ($ $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-767) . T) ((-768) . T) ((-770) . T) ((-771) . T) ((-823) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-2863 (($ $ $) 10)) (-3575 (($ $ $) 9)) (-2448 (((-112) $ $) 13)) (-2425 (((-112) $ $) 11)) (-2438 (((-112) $ $) 14)))
-(((-822 |#1|) (-10 -8 (-15 -2863 (|#1| |#1| |#1|)) (-15 -3575 (|#1| |#1| |#1|)) (-15 -2438 ((-112) |#1| |#1|)) (-15 -2448 ((-112) |#1| |#1|)) (-15 -2425 ((-112) |#1| |#1|))) (-823)) (T -822))
-NIL
-(-10 -8 (-15 -2863 (|#1| |#1| |#1|)) (-15 -3575 (|#1| |#1| |#1|)) (-15 -2438 ((-112) |#1| |#1|)) (-15 -2448 ((-112) |#1| |#1|)) (-15 -2425 ((-112) |#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-2863 (($ $ $) 13)) (-3575 (($ $ $) 14)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-2448 (((-112) $ $) 16)) (-2425 (((-112) $ $) 17)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 15)) (-2412 (((-112) $ $) 18)))
+((-2357 (*1 *2 *1) (-12 (-4 *1 (-821)) (-5 *2 (-112)))) (-1992 (*1 *2 *1) (-12 (-4 *1 (-821)) (-5 *2 (-112)))) (-1741 (*1 *2 *1) (-12 (-4 *1 (-821)) (-5 *2 (-549)))) (-2199 (*1 *1 *1) (-4 *1 (-821))))
+(-13 (-767) (-1018) (-703) (-10 -8 (-15 -2357 ((-112) $)) (-15 -1992 ((-112) $)) (-15 -1741 ((-549) $)) (-15 -2199 ($ $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-767) . T) ((-768) . T) ((-770) . T) ((-771) . T) ((-823) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-2861 (($ $ $) 10)) (-3574 (($ $ $) 9)) (-2447 (((-112) $ $) 13)) (-2423 (((-112) $ $) 11)) (-2436 (((-112) $ $) 14)))
+(((-822 |#1|) (-10 -8 (-15 -2861 (|#1| |#1| |#1|)) (-15 -3574 (|#1| |#1| |#1|)) (-15 -2436 ((-112) |#1| |#1|)) (-15 -2447 ((-112) |#1| |#1|)) (-15 -2423 ((-112) |#1| |#1|))) (-823)) (T -822))
+NIL
+(-10 -8 (-15 -2861 (|#1| |#1| |#1|)) (-15 -3574 (|#1| |#1| |#1|)) (-15 -2436 ((-112) |#1| |#1|)) (-15 -2447 ((-112) |#1| |#1|)) (-15 -2423 ((-112) |#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-2861 (($ $ $) 13)) (-3574 (($ $ $) 14)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-2447 (((-112) $ $) 16)) (-2423 (((-112) $ $) 17)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 15)) (-2409 (((-112) $ $) 18)))
(((-823) (-138)) (T -823))
-((-2412 (*1 *2 *1 *1) (-12 (-4 *1 (-823)) (-5 *2 (-112)))) (-2425 (*1 *2 *1 *1) (-12 (-4 *1 (-823)) (-5 *2 (-112)))) (-2448 (*1 *2 *1 *1) (-12 (-4 *1 (-823)) (-5 *2 (-112)))) (-2438 (*1 *2 *1 *1) (-12 (-4 *1 (-823)) (-5 *2 (-112)))) (-3575 (*1 *1 *1 *1) (-4 *1 (-823))) (-2863 (*1 *1 *1 *1) (-4 *1 (-823))))
-(-13 (-1067) (-10 -8 (-15 -2412 ((-112) $ $)) (-15 -2425 ((-112) $ $)) (-15 -2448 ((-112) $ $)) (-15 -2438 ((-112) $ $)) (-15 -3575 ($ $ $)) (-15 -2863 ($ $ $))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-2408 (($ $ $) 45)) (-2047 (($ $ $) 44)) (-3723 (($ $ $) 42)) (-3816 (($ $ $) 51)) (-2367 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 46)) (-1599 (((-3 $ "failed") $ $) 49)) (-2714 (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-1285 (($ $) 35)) (-2990 (($ $ $) 39)) (-3494 (($ $ $) 38)) (-1993 (($ $ $) 47)) (-1944 (($ $ $) 53)) (-2739 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 41)) (-2322 (((-3 $ "failed") $ $) 48)) (-2042 (((-3 $ "failed") $ |#2|) 28)) (-2216 ((|#2| $) 32)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ (-400 (-549))) NIL) (($ |#2|) 12)) (-4141 (((-621 |#2|) $) 18)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 22)))
-(((-824 |#1| |#2|) (-10 -8 (-15 -1993 (|#1| |#1| |#1|)) (-15 -2367 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4248 |#1|)) |#1| |#1|)) (-15 -3816 (|#1| |#1| |#1|)) (-15 -1599 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2408 (|#1| |#1| |#1|)) (-15 -2047 (|#1| |#1| |#1|)) (-15 -3723 (|#1| |#1| |#1|)) (-15 -2739 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4248 |#1|)) |#1| |#1|)) (-15 -1944 (|#1| |#1| |#1|)) (-15 -2322 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2990 (|#1| |#1| |#1|)) (-15 -3494 (|#1| |#1| |#1|)) (-15 -1285 (|#1| |#1|)) (-15 -2216 (|#2| |#1|)) (-15 -2042 ((-3 |#1| "failed") |#1| |#2|)) (-15 -4141 ((-621 |#2|) |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -3846 (|#1| |#2|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3846 (|#1| (-549))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|)) (-15 -3846 ((-834) |#1|))) (-825 |#2|) (-1018)) (T -824))
-NIL
-(-10 -8 (-15 -1993 (|#1| |#1| |#1|)) (-15 -2367 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4248 |#1|)) |#1| |#1|)) (-15 -3816 (|#1| |#1| |#1|)) (-15 -1599 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2408 (|#1| |#1| |#1|)) (-15 -2047 (|#1| |#1| |#1|)) (-15 -3723 (|#1| |#1| |#1|)) (-15 -2739 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4248 |#1|)) |#1| |#1|)) (-15 -1944 (|#1| |#1| |#1|)) (-15 -2322 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2990 (|#1| |#1| |#1|)) (-15 -3494 (|#1| |#1| |#1|)) (-15 -1285 (|#1| |#1|)) (-15 -2216 (|#2| |#1|)) (-15 -2042 ((-3 |#1| "failed") |#1| |#2|)) (-15 -4141 ((-621 |#2|) |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -3846 (|#1| |#2|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3846 (|#1| (-549))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|)) (-15 -3846 ((-834) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2408 (($ $ $) 43 (|has| |#1| (-356)))) (-2047 (($ $ $) 44 (|has| |#1| (-356)))) (-3723 (($ $ $) 46 (|has| |#1| (-356)))) (-3816 (($ $ $) 41 (|has| |#1| (-356)))) (-2367 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 40 (|has| |#1| (-356)))) (-1599 (((-3 $ "failed") $ $) 42 (|has| |#1| (-356)))) (-3216 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 45 (|has| |#1| (-356)))) (-2714 (((-3 (-549) "failed") $) 72 (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 70 (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 67)) (-2659 (((-549) $) 73 (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) 71 (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 66)) (-2070 (($ $) 62)) (-2114 (((-3 $ "failed") $) 32)) (-1285 (($ $) 53 (|has| |#1| (-444)))) (-2675 (((-112) $) 30)) (-2246 (($ |#1| (-747)) 60)) (-2057 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 55 (|has| |#1| (-541)))) (-3771 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 56 (|has| |#1| (-541)))) (-3611 (((-747) $) 64)) (-2990 (($ $ $) 50 (|has| |#1| (-356)))) (-3494 (($ $ $) 51 (|has| |#1| (-356)))) (-1993 (($ $ $) 39 (|has| |#1| (-356)))) (-1944 (($ $ $) 48 (|has| |#1| (-356)))) (-2739 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 47 (|has| |#1| (-356)))) (-2322 (((-3 $ "failed") $ $) 49 (|has| |#1| (-356)))) (-3350 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 52 (|has| |#1| (-356)))) (-2043 ((|#1| $) 63)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-2042 (((-3 $ "failed") $ |#1|) 57 (|has| |#1| (-541)))) (-3701 (((-747) $) 65)) (-2216 ((|#1| $) 54 (|has| |#1| (-444)))) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 69 (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) 68)) (-4141 (((-621 |#1|) $) 59)) (-2152 ((|#1| $ (-747)) 61)) (-2082 (((-747)) 28)) (-3596 ((|#1| $ |#1| |#1|) 58)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 75) (($ |#1| $) 74)))
+((-2409 (*1 *2 *1 *1) (-12 (-4 *1 (-823)) (-5 *2 (-112)))) (-2423 (*1 *2 *1 *1) (-12 (-4 *1 (-823)) (-5 *2 (-112)))) (-2447 (*1 *2 *1 *1) (-12 (-4 *1 (-823)) (-5 *2 (-112)))) (-2436 (*1 *2 *1 *1) (-12 (-4 *1 (-823)) (-5 *2 (-112)))) (-3574 (*1 *1 *1 *1) (-4 *1 (-823))) (-2861 (*1 *1 *1 *1) (-4 *1 (-823))))
+(-13 (-1066) (-10 -8 (-15 -2409 ((-112) $ $)) (-15 -2423 ((-112) $ $)) (-15 -2447 ((-112) $ $)) (-15 -2436 ((-112) $ $)) (-15 -3574 ($ $ $)) (-15 -2861 ($ $ $))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-1891 (($ $ $) 45)) (-1456 (($ $ $) 44)) (-2315 (($ $ $) 42)) (-1944 (($ $ $) 51)) (-2687 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 46)) (-2723 (((-3 $ "failed") $ $) 49)) (-2712 (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-3004 (($ $) 35)) (-2438 (($ $ $) 39)) (-3723 (($ $ $) 38)) (-2929 (($ $ $) 47)) (-3249 (($ $ $) 53)) (-3076 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 41)) (-2368 (((-3 $ "failed") $ $) 48)) (-2040 (((-3 $ "failed") $ |#2|) 28)) (-1700 ((|#2| $) 32)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ (-400 (-549))) NIL) (($ |#2|) 12)) (-2157 (((-621 |#2|) $) 18)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 22)))
+(((-824 |#1| |#2|) (-10 -8 (-15 -2929 (|#1| |#1| |#1|)) (-15 -2687 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4247 |#1|)) |#1| |#1|)) (-15 -1944 (|#1| |#1| |#1|)) (-15 -2723 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1891 (|#1| |#1| |#1|)) (-15 -1456 (|#1| |#1| |#1|)) (-15 -2315 (|#1| |#1| |#1|)) (-15 -3076 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4247 |#1|)) |#1| |#1|)) (-15 -3249 (|#1| |#1| |#1|)) (-15 -2368 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2438 (|#1| |#1| |#1|)) (-15 -3723 (|#1| |#1| |#1|)) (-15 -3004 (|#1| |#1|)) (-15 -1700 (|#2| |#1|)) (-15 -2040 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2157 ((-621 |#2|) |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -3845 (|#1| |#2|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3845 (|#1| (-549))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|)) (-15 -3845 ((-834) |#1|))) (-825 |#2|) (-1018)) (T -824))
+NIL
+(-10 -8 (-15 -2929 (|#1| |#1| |#1|)) (-15 -2687 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4247 |#1|)) |#1| |#1|)) (-15 -1944 (|#1| |#1| |#1|)) (-15 -2723 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1891 (|#1| |#1| |#1|)) (-15 -1456 (|#1| |#1| |#1|)) (-15 -2315 (|#1| |#1| |#1|)) (-15 -3076 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4247 |#1|)) |#1| |#1|)) (-15 -3249 (|#1| |#1| |#1|)) (-15 -2368 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2438 (|#1| |#1| |#1|)) (-15 -3723 (|#1| |#1| |#1|)) (-15 -3004 (|#1| |#1|)) (-15 -1700 (|#2| |#1|)) (-15 -2040 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2157 ((-621 |#2|) |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -3845 (|#1| |#2|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3845 (|#1| (-549))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|)) (-15 -3845 ((-834) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-1891 (($ $ $) 43 (|has| |#1| (-356)))) (-1456 (($ $ $) 44 (|has| |#1| (-356)))) (-2315 (($ $ $) 46 (|has| |#1| (-356)))) (-1944 (($ $ $) 41 (|has| |#1| (-356)))) (-2687 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 40 (|has| |#1| (-356)))) (-2723 (((-3 $ "failed") $ $) 42 (|has| |#1| (-356)))) (-1363 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 45 (|has| |#1| (-356)))) (-2712 (((-3 (-549) "failed") $) 72 (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 70 (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 67)) (-2657 (((-549) $) 73 (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) 71 (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 66)) (-2068 (($ $) 62)) (-2612 (((-3 $ "failed") $) 32)) (-3004 (($ $) 53 (|has| |#1| (-444)))) (-2297 (((-112) $) 30)) (-2244 (($ |#1| (-747)) 60)) (-4155 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 55 (|has| |#1| (-541)))) (-1588 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 56 (|has| |#1| (-541)))) (-2391 (((-747) $) 64)) (-2438 (($ $ $) 50 (|has| |#1| (-356)))) (-3723 (($ $ $) 51 (|has| |#1| (-356)))) (-2929 (($ $ $) 39 (|has| |#1| (-356)))) (-3249 (($ $ $) 48 (|has| |#1| (-356)))) (-3076 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 47 (|has| |#1| (-356)))) (-2368 (((-3 $ "failed") $ $) 49 (|has| |#1| (-356)))) (-2063 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 52 (|has| |#1| (-356)))) (-2042 ((|#1| $) 63)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2040 (((-3 $ "failed") $ |#1|) 57 (|has| |#1| (-541)))) (-3977 (((-747) $) 65)) (-1700 ((|#1| $) 54 (|has| |#1| (-444)))) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 69 (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) 68)) (-2157 (((-621 |#1|) $) 59)) (-4068 ((|#1| $ (-747)) 61)) (-2371 (((-747)) 28)) (-3593 ((|#1| $ |#1| |#1|) 58)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 75) (($ |#1| $) 74)))
(((-825 |#1|) (-138) (-1018)) (T -825))
-((-3701 (*1 *2 *1) (-12 (-4 *1 (-825 *3)) (-4 *3 (-1018)) (-5 *2 (-747)))) (-3611 (*1 *2 *1) (-12 (-4 *1 (-825 *3)) (-4 *3 (-1018)) (-5 *2 (-747)))) (-2043 (*1 *2 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)))) (-2070 (*1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)))) (-2152 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *1 (-825 *2)) (-4 *2 (-1018)))) (-2246 (*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-825 *2)) (-4 *2 (-1018)))) (-4141 (*1 *2 *1) (-12 (-4 *1 (-825 *3)) (-4 *3 (-1018)) (-5 *2 (-621 *3)))) (-3596 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)))) (-2042 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-541)))) (-3771 (*1 *2 *1 *1) (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-825 *3)))) (-2057 (*1 *2 *1 *1) (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-825 *3)))) (-2216 (*1 *2 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-444)))) (-1285 (*1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-444)))) (-3350 (*1 *2 *1 *1) (-12 (-4 *3 (-356)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-825 *3)))) (-3494 (*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-2990 (*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-2322 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-1944 (*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-2739 (*1 *2 *1 *1) (-12 (-4 *3 (-356)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4248 *1))) (-4 *1 (-825 *3)))) (-3723 (*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-3216 (*1 *2 *1 *1) (-12 (-4 *3 (-356)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-825 *3)))) (-2047 (*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-2408 (*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-1599 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-3816 (*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-2367 (*1 *2 *1 *1) (-12 (-4 *3 (-356)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4248 *1))) (-4 *1 (-825 *3)))) (-1993 (*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
-(-13 (-1018) (-111 |t#1| |t#1|) (-404 |t#1|) (-10 -8 (-15 -3701 ((-747) $)) (-15 -3611 ((-747) $)) (-15 -2043 (|t#1| $)) (-15 -2070 ($ $)) (-15 -2152 (|t#1| $ (-747))) (-15 -2246 ($ |t#1| (-747))) (-15 -4141 ((-621 |t#1|) $)) (-15 -3596 (|t#1| $ |t#1| |t#1|)) (IF (|has| |t#1| (-170)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-541)) (PROGN (-15 -2042 ((-3 $ "failed") $ |t#1|)) (-15 -3771 ((-2 (|:| -4013 $) (|:| -3675 $)) $ $)) (-15 -2057 ((-2 (|:| -4013 $) (|:| -3675 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-444)) (PROGN (-15 -2216 (|t#1| $)) (-15 -1285 ($ $))) |%noBranch|) (IF (|has| |t#1| (-356)) (PROGN (-15 -3350 ((-2 (|:| -4013 $) (|:| -3675 $)) $ $)) (-15 -3494 ($ $ $)) (-15 -2990 ($ $ $)) (-15 -2322 ((-3 $ "failed") $ $)) (-15 -1944 ($ $ $)) (-15 -2739 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $)) (-15 -3723 ($ $ $)) (-15 -3216 ((-2 (|:| -4013 $) (|:| -3675 $)) $ $)) (-15 -2047 ($ $ $)) (-15 -2408 ($ $ $)) (-15 -1599 ((-3 $ "failed") $ $)) (-15 -3816 ($ $ $)) (-15 -2367 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $)) (-15 -1993 ($ $ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-170)) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-404 |#1|) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 |#1|) |has| |#1| (-170)) ((-703) . T) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1024 |#1|) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-3483 ((|#2| |#2| |#2| (-98 |#1|) (-1 |#1| |#1|)) 20)) (-3216 (((-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2| (-98 |#1|)) 43 (|has| |#1| (-356)))) (-2057 (((-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2| (-98 |#1|)) 40 (|has| |#1| (-541)))) (-3771 (((-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2| (-98 |#1|)) 39 (|has| |#1| (-541)))) (-3350 (((-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2| (-98 |#1|)) 42 (|has| |#1| (-356)))) (-3596 ((|#1| |#2| |#1| |#1| (-98 |#1|) (-1 |#1| |#1|)) 31)))
-(((-826 |#1| |#2|) (-10 -7 (-15 -3483 (|#2| |#2| |#2| (-98 |#1|) (-1 |#1| |#1|))) (-15 -3596 (|#1| |#2| |#1| |#1| (-98 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-541)) (PROGN (-15 -3771 ((-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2| (-98 |#1|))) (-15 -2057 ((-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2| (-98 |#1|)))) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-15 -3350 ((-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2| (-98 |#1|))) (-15 -3216 ((-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2| (-98 |#1|)))) |%noBranch|)) (-1018) (-825 |#1|)) (T -826))
-((-3216 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-98 *5)) (-4 *5 (-356)) (-4 *5 (-1018)) (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3))) (-5 *1 (-826 *5 *3)) (-4 *3 (-825 *5)))) (-3350 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-98 *5)) (-4 *5 (-356)) (-4 *5 (-1018)) (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3))) (-5 *1 (-826 *5 *3)) (-4 *3 (-825 *5)))) (-2057 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-98 *5)) (-4 *5 (-541)) (-4 *5 (-1018)) (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3))) (-5 *1 (-826 *5 *3)) (-4 *3 (-825 *5)))) (-3771 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-98 *5)) (-4 *5 (-541)) (-4 *5 (-1018)) (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3))) (-5 *1 (-826 *5 *3)) (-4 *3 (-825 *5)))) (-3596 (*1 *2 *3 *2 *2 *4 *5) (-12 (-5 *4 (-98 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-1018)) (-5 *1 (-826 *2 *3)) (-4 *3 (-825 *2)))) (-3483 (*1 *2 *2 *2 *3 *4) (-12 (-5 *3 (-98 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-1018)) (-5 *1 (-826 *5 *2)) (-4 *2 (-825 *5)))))
-(-10 -7 (-15 -3483 (|#2| |#2| |#2| (-98 |#1|) (-1 |#1| |#1|))) (-15 -3596 (|#1| |#2| |#1| |#1| (-98 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-541)) (PROGN (-15 -3771 ((-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2| (-98 |#1|))) (-15 -2057 ((-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2| (-98 |#1|)))) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-15 -3350 ((-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2| (-98 |#1|))) (-15 -3216 ((-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2| (-98 |#1|)))) |%noBranch|))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2408 (($ $ $) NIL (|has| |#1| (-356)))) (-2047 (($ $ $) NIL (|has| |#1| (-356)))) (-3723 (($ $ $) NIL (|has| |#1| (-356)))) (-3816 (($ $ $) NIL (|has| |#1| (-356)))) (-2367 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-1599 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-3216 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 32 (|has| |#1| (-356)))) (-2714 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) NIL)) (-2659 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-2070 (($ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1285 (($ $) NIL (|has| |#1| (-444)))) (-2573 (((-834) $ (-834)) NIL)) (-2675 (((-112) $) NIL)) (-2246 (($ |#1| (-747)) NIL)) (-2057 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 28 (|has| |#1| (-541)))) (-3771 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 26 (|has| |#1| (-541)))) (-3611 (((-747) $) NIL)) (-2990 (($ $ $) NIL (|has| |#1| (-356)))) (-3494 (($ $ $) NIL (|has| |#1| (-356)))) (-1993 (($ $ $) NIL (|has| |#1| (-356)))) (-1944 (($ $ $) NIL (|has| |#1| (-356)))) (-2739 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-2322 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-3350 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 30 (|has| |#1| (-356)))) (-2043 ((|#1| $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2042 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541)))) (-3701 (((-747) $) NIL)) (-2216 ((|#1| $) NIL (|has| |#1| (-444)))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ (-400 (-549))) NIL (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) NIL)) (-4141 (((-621 |#1|) $) NIL)) (-2152 ((|#1| $ (-747)) NIL)) (-2082 (((-747)) NIL)) (-3596 ((|#1| $ |#1| |#1|) 15)) (-3276 (($) NIL T CONST)) (-3287 (($) 20 T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) 19) (($ $ (-747)) 22)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 13) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-827 |#1| |#2| |#3|) (-13 (-825 |#1|) (-10 -8 (-15 -2573 ((-834) $ (-834))))) (-1018) (-98 |#1|) (-1 |#1| |#1|)) (T -827))
-((-2573 (*1 *2 *1 *2) (-12 (-5 *2 (-834)) (-5 *1 (-827 *3 *4 *5)) (-4 *3 (-1018)) (-14 *4 (-98 *3)) (-14 *5 (-1 *3 *3)))))
-(-13 (-825 |#1|) (-10 -8 (-15 -2573 ((-834) $ (-834)))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2408 (($ $ $) NIL (|has| |#2| (-356)))) (-2047 (($ $ $) NIL (|has| |#2| (-356)))) (-3723 (($ $ $) NIL (|has| |#2| (-356)))) (-3816 (($ $ $) NIL (|has| |#2| (-356)))) (-2367 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#2| (-356)))) (-1599 (((-3 $ "failed") $ $) NIL (|has| |#2| (-356)))) (-3216 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#2| (-356)))) (-2714 (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-3 |#2| "failed") $) NIL)) (-2659 (((-549) $) NIL (|has| |#2| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-400 (-549))))) ((|#2| $) NIL)) (-2070 (($ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1285 (($ $) NIL (|has| |#2| (-444)))) (-2675 (((-112) $) NIL)) (-2246 (($ |#2| (-747)) 16)) (-2057 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#2| (-541)))) (-3771 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#2| (-541)))) (-3611 (((-747) $) NIL)) (-2990 (($ $ $) NIL (|has| |#2| (-356)))) (-3494 (($ $ $) NIL (|has| |#2| (-356)))) (-1993 (($ $ $) NIL (|has| |#2| (-356)))) (-1944 (($ $ $) NIL (|has| |#2| (-356)))) (-2739 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#2| (-356)))) (-2322 (((-3 $ "failed") $ $) NIL (|has| |#2| (-356)))) (-3350 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#2| (-356)))) (-2043 ((|#2| $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2042 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-541)))) (-3701 (((-747) $) NIL)) (-2216 ((|#2| $) NIL (|has| |#2| (-444)))) (-3846 (((-834) $) 23) (($ (-549)) NIL) (($ (-400 (-549))) NIL (|has| |#2| (-1009 (-400 (-549))))) (($ |#2|) NIL) (($ (-1222 |#1|)) 18)) (-4141 (((-621 |#2|) $) NIL)) (-2152 ((|#2| $ (-747)) NIL)) (-2082 (((-747)) NIL)) (-3596 ((|#2| $ |#2| |#2|) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) 13 T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-828 |#1| |#2| |#3| |#4|) (-13 (-825 |#2|) (-10 -8 (-15 -3846 ($ (-1222 |#1|))))) (-1143) (-1018) (-98 |#2|) (-1 |#2| |#2|)) (T -828))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1222 *3)) (-14 *3 (-1143)) (-5 *1 (-828 *3 *4 *5 *6)) (-4 *4 (-1018)) (-14 *5 (-98 *4)) (-14 *6 (-1 *4 *4)))))
-(-13 (-825 |#2|) (-10 -8 (-15 -3846 ($ (-1222 |#1|)))))
-((-3768 ((|#1| (-747) |#1|) 35 (|has| |#1| (-38 (-400 (-549)))))) (-3488 ((|#1| (-747) (-747) |#1|) 27) ((|#1| (-747) |#1|) 20)) (-3827 ((|#1| (-747) |#1|) 31)) (-2335 ((|#1| (-747) |#1|) 29)) (-3020 ((|#1| (-747) |#1|) 28)))
-(((-829 |#1|) (-10 -7 (-15 -3020 (|#1| (-747) |#1|)) (-15 -2335 (|#1| (-747) |#1|)) (-15 -3827 (|#1| (-747) |#1|)) (-15 -3488 (|#1| (-747) |#1|)) (-15 -3488 (|#1| (-747) (-747) |#1|)) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3768 (|#1| (-747) |#1|)) |%noBranch|)) (-170)) (T -829))
-((-3768 (*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-170)))) (-3488 (*1 *2 *3 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170)))) (-3488 (*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170)))) (-3827 (*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170)))) (-2335 (*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170)))) (-3020 (*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170)))))
-(-10 -7 (-15 -3020 (|#1| (-747) |#1|)) (-15 -2335 (|#1| (-747) |#1|)) (-15 -3827 (|#1| (-747) |#1|)) (-15 -3488 (|#1| (-747) |#1|)) (-15 -3488 (|#1| (-747) (-747) |#1|)) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3768 (|#1| (-747) |#1|)) |%noBranch|))
-((-3834 (((-112) $ $) 7)) (-2863 (($ $ $) 13)) (-3575 (($ $ $) 14)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-2448 (((-112) $ $) 16)) (-2425 (((-112) $ $) 17)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 15)) (-2412 (((-112) $ $) 18)) (** (($ $ (-892)) 21)) (* (($ $ $) 20)))
+((-3977 (*1 *2 *1) (-12 (-4 *1 (-825 *3)) (-4 *3 (-1018)) (-5 *2 (-747)))) (-2391 (*1 *2 *1) (-12 (-4 *1 (-825 *3)) (-4 *3 (-1018)) (-5 *2 (-747)))) (-2042 (*1 *2 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)))) (-2068 (*1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)))) (-4068 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *1 (-825 *2)) (-4 *2 (-1018)))) (-2244 (*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-825 *2)) (-4 *2 (-1018)))) (-2157 (*1 *2 *1) (-12 (-4 *1 (-825 *3)) (-4 *3 (-1018)) (-5 *2 (-621 *3)))) (-3593 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)))) (-2040 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-541)))) (-1588 (*1 *2 *1 *1) (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-825 *3)))) (-4155 (*1 *2 *1 *1) (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-825 *3)))) (-1700 (*1 *2 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-444)))) (-3004 (*1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-444)))) (-2063 (*1 *2 *1 *1) (-12 (-4 *3 (-356)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-825 *3)))) (-3723 (*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-2438 (*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-2368 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-3249 (*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-3076 (*1 *2 *1 *1) (-12 (-4 *3 (-356)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4247 *1))) (-4 *1 (-825 *3)))) (-2315 (*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-1363 (*1 *2 *1 *1) (-12 (-4 *3 (-356)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-825 *3)))) (-1456 (*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-1891 (*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-2723 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-1944 (*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-2687 (*1 *2 *1 *1) (-12 (-4 *3 (-356)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4247 *1))) (-4 *1 (-825 *3)))) (-2929 (*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
+(-13 (-1018) (-111 |t#1| |t#1|) (-404 |t#1|) (-10 -8 (-15 -3977 ((-747) $)) (-15 -2391 ((-747) $)) (-15 -2042 (|t#1| $)) (-15 -2068 ($ $)) (-15 -4068 (|t#1| $ (-747))) (-15 -2244 ($ |t#1| (-747))) (-15 -2157 ((-621 |t#1|) $)) (-15 -3593 (|t#1| $ |t#1| |t#1|)) (IF (|has| |t#1| (-170)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-541)) (PROGN (-15 -2040 ((-3 $ "failed") $ |t#1|)) (-15 -1588 ((-2 (|:| -2262 $) (|:| -1809 $)) $ $)) (-15 -4155 ((-2 (|:| -2262 $) (|:| -1809 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-444)) (PROGN (-15 -1700 (|t#1| $)) (-15 -3004 ($ $))) |%noBranch|) (IF (|has| |t#1| (-356)) (PROGN (-15 -2063 ((-2 (|:| -2262 $) (|:| -1809 $)) $ $)) (-15 -3723 ($ $ $)) (-15 -2438 ($ $ $)) (-15 -2368 ((-3 $ "failed") $ $)) (-15 -3249 ($ $ $)) (-15 -3076 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $)) (-15 -2315 ($ $ $)) (-15 -1363 ((-2 (|:| -2262 $) (|:| -1809 $)) $ $)) (-15 -1456 ($ $ $)) (-15 -1891 ($ $ $)) (-15 -2723 ((-3 $ "failed") $ $)) (-15 -1944 ($ $ $)) (-15 -2687 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $)) (-15 -2929 ($ $ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-170)) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-404 |#1|) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 |#1|) |has| |#1| (-170)) ((-703) . T) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1024 |#1|) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-3481 ((|#2| |#2| |#2| (-98 |#1|) (-1 |#1| |#1|)) 20)) (-1363 (((-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2| (-98 |#1|)) 43 (|has| |#1| (-356)))) (-4155 (((-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2| (-98 |#1|)) 40 (|has| |#1| (-541)))) (-1588 (((-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2| (-98 |#1|)) 39 (|has| |#1| (-541)))) (-2063 (((-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2| (-98 |#1|)) 42 (|has| |#1| (-356)))) (-3593 ((|#1| |#2| |#1| |#1| (-98 |#1|) (-1 |#1| |#1|)) 31)))
+(((-826 |#1| |#2|) (-10 -7 (-15 -3481 (|#2| |#2| |#2| (-98 |#1|) (-1 |#1| |#1|))) (-15 -3593 (|#1| |#2| |#1| |#1| (-98 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-541)) (PROGN (-15 -1588 ((-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2| (-98 |#1|))) (-15 -4155 ((-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2| (-98 |#1|)))) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-15 -2063 ((-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2| (-98 |#1|))) (-15 -1363 ((-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2| (-98 |#1|)))) |%noBranch|)) (-1018) (-825 |#1|)) (T -826))
+((-1363 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-98 *5)) (-4 *5 (-356)) (-4 *5 (-1018)) (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3))) (-5 *1 (-826 *5 *3)) (-4 *3 (-825 *5)))) (-2063 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-98 *5)) (-4 *5 (-356)) (-4 *5 (-1018)) (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3))) (-5 *1 (-826 *5 *3)) (-4 *3 (-825 *5)))) (-4155 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-98 *5)) (-4 *5 (-541)) (-4 *5 (-1018)) (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3))) (-5 *1 (-826 *5 *3)) (-4 *3 (-825 *5)))) (-1588 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-98 *5)) (-4 *5 (-541)) (-4 *5 (-1018)) (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3))) (-5 *1 (-826 *5 *3)) (-4 *3 (-825 *5)))) (-3593 (*1 *2 *3 *2 *2 *4 *5) (-12 (-5 *4 (-98 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-1018)) (-5 *1 (-826 *2 *3)) (-4 *3 (-825 *2)))) (-3481 (*1 *2 *2 *2 *3 *4) (-12 (-5 *3 (-98 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-1018)) (-5 *1 (-826 *5 *2)) (-4 *2 (-825 *5)))))
+(-10 -7 (-15 -3481 (|#2| |#2| |#2| (-98 |#1|) (-1 |#1| |#1|))) (-15 -3593 (|#1| |#2| |#1| |#1| (-98 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-541)) (PROGN (-15 -1588 ((-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2| (-98 |#1|))) (-15 -4155 ((-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2| (-98 |#1|)))) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-15 -2063 ((-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2| (-98 |#1|))) (-15 -1363 ((-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2| (-98 |#1|)))) |%noBranch|))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-1891 (($ $ $) NIL (|has| |#1| (-356)))) (-1456 (($ $ $) NIL (|has| |#1| (-356)))) (-2315 (($ $ $) NIL (|has| |#1| (-356)))) (-1944 (($ $ $) NIL (|has| |#1| (-356)))) (-2687 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-2723 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-1363 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 32 (|has| |#1| (-356)))) (-2712 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) NIL)) (-2657 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-2068 (($ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3004 (($ $) NIL (|has| |#1| (-444)))) (-2856 (((-834) $ (-834)) NIL)) (-2297 (((-112) $) NIL)) (-2244 (($ |#1| (-747)) NIL)) (-4155 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 28 (|has| |#1| (-541)))) (-1588 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 26 (|has| |#1| (-541)))) (-2391 (((-747) $) NIL)) (-2438 (($ $ $) NIL (|has| |#1| (-356)))) (-3723 (($ $ $) NIL (|has| |#1| (-356)))) (-2929 (($ $ $) NIL (|has| |#1| (-356)))) (-3249 (($ $ $) NIL (|has| |#1| (-356)))) (-3076 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-2368 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-2063 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 30 (|has| |#1| (-356)))) (-2042 ((|#1| $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2040 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541)))) (-3977 (((-747) $) NIL)) (-1700 ((|#1| $) NIL (|has| |#1| (-444)))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ (-400 (-549))) NIL (|has| |#1| (-1009 (-400 (-549))))) (($ |#1|) NIL)) (-2157 (((-621 |#1|) $) NIL)) (-4068 ((|#1| $ (-747)) NIL)) (-2371 (((-747)) NIL)) (-3593 ((|#1| $ |#1| |#1|) 15)) (-3274 (($) NIL T CONST)) (-3286 (($) 20 T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) 19) (($ $ (-747)) 22)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 13) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-827 |#1| |#2| |#3|) (-13 (-825 |#1|) (-10 -8 (-15 -2856 ((-834) $ (-834))))) (-1018) (-98 |#1|) (-1 |#1| |#1|)) (T -827))
+((-2856 (*1 *2 *1 *2) (-12 (-5 *2 (-834)) (-5 *1 (-827 *3 *4 *5)) (-4 *3 (-1018)) (-14 *4 (-98 *3)) (-14 *5 (-1 *3 *3)))))
+(-13 (-825 |#1|) (-10 -8 (-15 -2856 ((-834) $ (-834)))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-1891 (($ $ $) NIL (|has| |#2| (-356)))) (-1456 (($ $ $) NIL (|has| |#2| (-356)))) (-2315 (($ $ $) NIL (|has| |#2| (-356)))) (-1944 (($ $ $) NIL (|has| |#2| (-356)))) (-2687 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#2| (-356)))) (-2723 (((-3 $ "failed") $ $) NIL (|has| |#2| (-356)))) (-1363 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#2| (-356)))) (-2712 (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-3 |#2| "failed") $) NIL)) (-2657 (((-549) $) NIL (|has| |#2| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-400 (-549))))) ((|#2| $) NIL)) (-2068 (($ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3004 (($ $) NIL (|has| |#2| (-444)))) (-2297 (((-112) $) NIL)) (-2244 (($ |#2| (-747)) 16)) (-4155 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#2| (-541)))) (-1588 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#2| (-541)))) (-2391 (((-747) $) NIL)) (-2438 (($ $ $) NIL (|has| |#2| (-356)))) (-3723 (($ $ $) NIL (|has| |#2| (-356)))) (-2929 (($ $ $) NIL (|has| |#2| (-356)))) (-3249 (($ $ $) NIL (|has| |#2| (-356)))) (-3076 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#2| (-356)))) (-2368 (((-3 $ "failed") $ $) NIL (|has| |#2| (-356)))) (-2063 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#2| (-356)))) (-2042 ((|#2| $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2040 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-541)))) (-3977 (((-747) $) NIL)) (-1700 ((|#2| $) NIL (|has| |#2| (-444)))) (-3845 (((-834) $) 23) (($ (-549)) NIL) (($ (-400 (-549))) NIL (|has| |#2| (-1009 (-400 (-549))))) (($ |#2|) NIL) (($ (-1221 |#1|)) 18)) (-2157 (((-621 |#2|) $) NIL)) (-4068 ((|#2| $ (-747)) NIL)) (-2371 (((-747)) NIL)) (-3593 ((|#2| $ |#2| |#2|) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) 13 T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-828 |#1| |#2| |#3| |#4|) (-13 (-825 |#2|) (-10 -8 (-15 -3845 ($ (-1221 |#1|))))) (-1142) (-1018) (-98 |#2|) (-1 |#2| |#2|)) (T -828))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1221 *3)) (-14 *3 (-1142)) (-5 *1 (-828 *3 *4 *5 *6)) (-4 *4 (-1018)) (-14 *5 (-98 *4)) (-14 *6 (-1 *4 *4)))))
+(-13 (-825 |#2|) (-10 -8 (-15 -3845 ($ (-1221 |#1|)))))
+((-1388 ((|#1| (-747) |#1|) 35 (|has| |#1| (-38 (-400 (-549)))))) (-2106 ((|#1| (-747) (-747) |#1|) 27) ((|#1| (-747) |#1|) 20)) (-3085 ((|#1| (-747) |#1|) 31)) (-3983 ((|#1| (-747) |#1|) 29)) (-3092 ((|#1| (-747) |#1|) 28)))
+(((-829 |#1|) (-10 -7 (-15 -3092 (|#1| (-747) |#1|)) (-15 -3983 (|#1| (-747) |#1|)) (-15 -3085 (|#1| (-747) |#1|)) (-15 -2106 (|#1| (-747) |#1|)) (-15 -2106 (|#1| (-747) (-747) |#1|)) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -1388 (|#1| (-747) |#1|)) |%noBranch|)) (-170)) (T -829))
+((-1388 (*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-170)))) (-2106 (*1 *2 *3 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170)))) (-2106 (*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170)))) (-3085 (*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170)))) (-3983 (*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170)))) (-3092 (*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170)))))
+(-10 -7 (-15 -3092 (|#1| (-747) |#1|)) (-15 -3983 (|#1| (-747) |#1|)) (-15 -3085 (|#1| (-747) |#1|)) (-15 -2106 (|#1| (-747) |#1|)) (-15 -2106 (|#1| (-747) (-747) |#1|)) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -1388 (|#1| (-747) |#1|)) |%noBranch|))
+((-3832 (((-112) $ $) 7)) (-2861 (($ $ $) 13)) (-3574 (($ $ $) 14)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-2447 (((-112) $ $) 16)) (-2423 (((-112) $ $) 17)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 15)) (-2409 (((-112) $ $) 18)) (** (($ $ (-892)) 21)) (* (($ $ $) 20)))
(((-830) (-138)) (T -830))
NIL
-(-13 (-823) (-1079))
-(((-101) . T) ((-593 (-834)) . T) ((-823) . T) ((-1079) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-4161 (((-549) $) 12)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 18) (($ (-549)) 11)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 8)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 9)))
-(((-831) (-13 (-823) (-10 -8 (-15 -3846 ($ (-549))) (-15 -4161 ((-549) $))))) (T -831))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-831)))) (-4161 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-831)))))
-(-13 (-823) (-10 -8 (-15 -3846 ($ (-549))) (-15 -4161 ((-549) $))))
-((-2183 (((-1087) $ (-128)) 17)))
-(((-832 |#1|) (-10 -8 (-15 -2183 ((-1087) |#1| (-128)))) (-833)) (T -832))
-NIL
-(-10 -8 (-15 -2183 ((-1087) |#1| (-128))))
-((-2183 (((-1087) $ (-128)) 7)) (-2796 (((-1087) $ (-129)) 8)) (-3578 (($ $) 6)))
+(-13 (-823) (-1078))
+(((-101) . T) ((-593 (-834)) . T) ((-823) . T) ((-1078) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-4160 (((-549) $) 12)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 18) (($ (-549)) 11)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 8)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 9)))
+(((-831) (-13 (-823) (-10 -8 (-15 -3845 ($ (-549))) (-15 -4160 ((-549) $))))) (T -831))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-831)))) (-4160 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-831)))))
+(-13 (-823) (-10 -8 (-15 -3845 ($ (-549))) (-15 -4160 ((-549) $))))
+((-1345 (((-1086) $ (-128)) 17)))
+(((-832 |#1|) (-10 -8 (-15 -1345 ((-1086) |#1| (-128)))) (-833)) (T -832))
+NIL
+(-10 -8 (-15 -1345 ((-1086) |#1| (-128))))
+((-1345 (((-1086) $ (-128)) 7)) (-3811 (((-1086) $ (-129)) 8)) (-2384 (($ $) 6)))
(((-833) (-138)) (T -833))
-((-2796 (*1 *2 *1 *3) (-12 (-4 *1 (-833)) (-5 *3 (-129)) (-5 *2 (-1087)))) (-2183 (*1 *2 *1 *3) (-12 (-4 *1 (-833)) (-5 *3 (-128)) (-5 *2 (-1087)))))
-(-13 (-171) (-10 -8 (-15 -2796 ((-1087) $ (-129))) (-15 -2183 ((-1087) $ (-128)))))
+((-3811 (*1 *2 *1 *3) (-12 (-4 *1 (-833)) (-5 *3 (-129)) (-5 *2 (-1086)))) (-1345 (*1 *2 *1 *3) (-12 (-4 *1 (-833)) (-5 *3 (-128)) (-5 *2 (-1086)))))
+(-13 (-171) (-10 -8 (-15 -3811 ((-1086) $ (-129))) (-15 -1345 ((-1086) $ (-128)))))
(((-171) . T))
-((-3834 (((-112) $ $) NIL) (($ $ $) 77)) (-4049 (($ $ $) 115)) (-2342 (((-549) $) 30) (((-549)) 35)) (-3056 (($ (-549)) 44)) (-2019 (($ $ $) 45) (($ (-621 $)) 76)) (-3238 (($ $ (-621 $)) 74)) (-3151 (((-549) $) 33)) (-2277 (($ $ $) 63)) (-2821 (($ $) 128) (($ $ $) 129) (($ $ $ $) 130)) (-3112 (((-549) $) 32)) (-2895 (($ $ $) 62)) (-1525 (($ $) 105)) (-1819 (($ $ $) 119)) (-3937 (($ (-621 $)) 52)) (-4220 (($ $ (-621 $)) 69)) (-4051 (($ (-549) (-549)) 46)) (-1885 (($ $) 116) (($ $ $) 117)) (-3848 (($ $ (-549)) 40) (($ $) 43)) (-2095 (($ $ $) 89)) (-3842 (($ $ $) 122)) (-4145 (($ $) 106)) (-2067 (($ $ $) 90)) (-1968 (($ $) 131) (($ $ $) 132) (($ $ $ $) 133)) (-1806 (((-1231) $) 8)) (-2715 (($ $) 109) (($ $ (-747)) 112)) (-3133 (($ $ $) 65)) (-3395 (($ $ $) 64)) (-1888 (($ $ (-621 $)) 100)) (-2627 (($ $ $) 104)) (-4286 (($ (-621 $)) 50)) (-3225 (($ $) 60) (($ (-621 $)) 61)) (-2524 (($ $ $) 113)) (-2794 (($ $) 107)) (-3663 (($ $ $) 118)) (-2573 (($ (-549)) 20) (($ (-1143)) 22) (($ (-1125)) 29) (($ (-219)) 24)) (-4207 (($ $ $) 93)) (-4008 (($ $) 94)) (-2611 (((-1231) (-1125)) 14)) (-3700 (($ (-1125)) 13)) (-3946 (($ (-621 (-621 $))) 49)) (-3838 (($ $ (-549)) 39) (($ $) 42)) (-3851 (((-1125) $) NIL)) (-3402 (($ $ $) 121)) (-4292 (($ $) 134) (($ $ $) 135) (($ $ $ $) 136)) (-2420 (((-112) $) 98)) (-3487 (($ $ (-621 $)) 102) (($ $ $ $) 103)) (-4110 (($ (-549)) 36)) (-4036 (((-549) $) 31) (((-549)) 34)) (-3344 (($ $ $) 37) (($ (-621 $)) 75)) (-3990 (((-1087) $) NIL)) (-2042 (($ $ $) 91)) (-3742 (($) 12)) (-3341 (($ $ (-621 $)) 99)) (-1706 (($ $) 108) (($ $ (-747)) 111)) (-2056 (($ $ $) 88)) (-3456 (($ $ (-747)) 127)) (-4280 (($ (-621 $)) 51)) (-3846 (((-834) $) 18)) (-2597 (($ $ (-549)) 38) (($ $) 41)) (-1797 (($ $) 58) (($ (-621 $)) 59)) (-4120 (($ $) 56) (($ (-621 $)) 57)) (-4137 (($ $) 114)) (-4171 (($ (-621 $)) 55)) (-3179 (($ $ $) 97)) (-2712 (($ $ $) 120)) (-1821 (($ $ $) 92)) (-1854 (($ $ $) 95) (($ $) 96)) (-2448 (($ $ $) 81)) (-2425 (($ $ $) 79)) (-2389 (((-112) $ $) 15) (($ $ $) 16)) (-2438 (($ $ $) 80)) (-2412 (($ $ $) 78)) (-2513 (($ $ $) 86)) (-2500 (($ $ $) 83) (($ $) 84)) (-2486 (($ $ $) 82)) (** (($ $ $) 87)) (* (($ $ $) 85)))
-(((-834) (-13 (-1067) (-10 -8 (-15 -1806 ((-1231) $)) (-15 -3700 ($ (-1125))) (-15 -2611 ((-1231) (-1125))) (-15 -2573 ($ (-549))) (-15 -2573 ($ (-1143))) (-15 -2573 ($ (-1125))) (-15 -2573 ($ (-219))) (-15 -3742 ($)) (-15 -2342 ((-549) $)) (-15 -4036 ((-549) $)) (-15 -2342 ((-549))) (-15 -4036 ((-549))) (-15 -3112 ((-549) $)) (-15 -3151 ((-549) $)) (-15 -4110 ($ (-549))) (-15 -3056 ($ (-549))) (-15 -4051 ($ (-549) (-549))) (-15 -3838 ($ $ (-549))) (-15 -3848 ($ $ (-549))) (-15 -2597 ($ $ (-549))) (-15 -3838 ($ $)) (-15 -3848 ($ $)) (-15 -2597 ($ $)) (-15 -3344 ($ $ $)) (-15 -2019 ($ $ $)) (-15 -3344 ($ (-621 $))) (-15 -2019 ($ (-621 $))) (-15 -1888 ($ $ (-621 $))) (-15 -3487 ($ $ (-621 $))) (-15 -3487 ($ $ $ $)) (-15 -2627 ($ $ $)) (-15 -2420 ((-112) $)) (-15 -3341 ($ $ (-621 $))) (-15 -1525 ($ $)) (-15 -3402 ($ $ $)) (-15 -4137 ($ $)) (-15 -3946 ($ (-621 (-621 $)))) (-15 -4049 ($ $ $)) (-15 -1885 ($ $)) (-15 -1885 ($ $ $)) (-15 -3663 ($ $ $)) (-15 -1819 ($ $ $)) (-15 -2712 ($ $ $)) (-15 -3842 ($ $ $)) (-15 -3456 ($ $ (-747))) (-15 -3179 ($ $ $)) (-15 -2895 ($ $ $)) (-15 -2277 ($ $ $)) (-15 -3395 ($ $ $)) (-15 -3133 ($ $ $)) (-15 -4220 ($ $ (-621 $))) (-15 -3238 ($ $ (-621 $))) (-15 -4145 ($ $)) (-15 -1706 ($ $)) (-15 -1706 ($ $ (-747))) (-15 -2715 ($ $)) (-15 -2715 ($ $ (-747))) (-15 -2794 ($ $)) (-15 -2524 ($ $ $)) (-15 -2821 ($ $)) (-15 -2821 ($ $ $)) (-15 -2821 ($ $ $ $)) (-15 -1968 ($ $)) (-15 -1968 ($ $ $)) (-15 -1968 ($ $ $ $)) (-15 -4292 ($ $)) (-15 -4292 ($ $ $)) (-15 -4292 ($ $ $ $)) (-15 -4120 ($ $)) (-15 -4120 ($ (-621 $))) (-15 -1797 ($ $)) (-15 -1797 ($ (-621 $))) (-15 -3225 ($ $)) (-15 -3225 ($ (-621 $))) (-15 -4286 ($ (-621 $))) (-15 -4280 ($ (-621 $))) (-15 -3937 ($ (-621 $))) (-15 -4171 ($ (-621 $))) (-15 -2389 ($ $ $)) (-15 -3834 ($ $ $)) (-15 -2412 ($ $ $)) (-15 -2425 ($ $ $)) (-15 -2438 ($ $ $)) (-15 -2448 ($ $ $)) (-15 -2486 ($ $ $)) (-15 -2500 ($ $ $)) (-15 -2500 ($ $)) (-15 * ($ $ $)) (-15 -2513 ($ $ $)) (-15 ** ($ $ $)) (-15 -2056 ($ $ $)) (-15 -2095 ($ $ $)) (-15 -2067 ($ $ $)) (-15 -2042 ($ $ $)) (-15 -1821 ($ $ $)) (-15 -4207 ($ $ $)) (-15 -4008 ($ $)) (-15 -1854 ($ $ $)) (-15 -1854 ($ $))))) (T -834))
-((-1806 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-834)))) (-3700 (*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-834)))) (-2611 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-834)))) (-2573 (*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-2573 (*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-834)))) (-2573 (*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-834)))) (-2573 (*1 *1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-834)))) (-3742 (*1 *1) (-5 *1 (-834))) (-2342 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-4036 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-2342 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-4036 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-3112 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-3151 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-4110 (*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-3056 (*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-4051 (*1 *1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-3838 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-3848 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-2597 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-3838 (*1 *1 *1) (-5 *1 (-834))) (-3848 (*1 *1 *1) (-5 *1 (-834))) (-2597 (*1 *1 *1) (-5 *1 (-834))) (-3344 (*1 *1 *1 *1) (-5 *1 (-834))) (-2019 (*1 *1 *1 *1) (-5 *1 (-834))) (-3344 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-2019 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-1888 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-3487 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-3487 (*1 *1 *1 *1 *1) (-5 *1 (-834))) (-2627 (*1 *1 *1 *1) (-5 *1 (-834))) (-2420 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-834)))) (-3341 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-1525 (*1 *1 *1) (-5 *1 (-834))) (-3402 (*1 *1 *1 *1) (-5 *1 (-834))) (-4137 (*1 *1 *1) (-5 *1 (-834))) (-3946 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 (-834)))) (-5 *1 (-834)))) (-4049 (*1 *1 *1 *1) (-5 *1 (-834))) (-1885 (*1 *1 *1) (-5 *1 (-834))) (-1885 (*1 *1 *1 *1) (-5 *1 (-834))) (-3663 (*1 *1 *1 *1) (-5 *1 (-834))) (-1819 (*1 *1 *1 *1) (-5 *1 (-834))) (-2712 (*1 *1 *1 *1) (-5 *1 (-834))) (-3842 (*1 *1 *1 *1) (-5 *1 (-834))) (-3456 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-834)))) (-3179 (*1 *1 *1 *1) (-5 *1 (-834))) (-2895 (*1 *1 *1 *1) (-5 *1 (-834))) (-2277 (*1 *1 *1 *1) (-5 *1 (-834))) (-3395 (*1 *1 *1 *1) (-5 *1 (-834))) (-3133 (*1 *1 *1 *1) (-5 *1 (-834))) (-4220 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-3238 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-4145 (*1 *1 *1) (-5 *1 (-834))) (-1706 (*1 *1 *1) (-5 *1 (-834))) (-1706 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-834)))) (-2715 (*1 *1 *1) (-5 *1 (-834))) (-2715 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-834)))) (-2794 (*1 *1 *1) (-5 *1 (-834))) (-2524 (*1 *1 *1 *1) (-5 *1 (-834))) (-2821 (*1 *1 *1) (-5 *1 (-834))) (-2821 (*1 *1 *1 *1) (-5 *1 (-834))) (-2821 (*1 *1 *1 *1 *1) (-5 *1 (-834))) (-1968 (*1 *1 *1) (-5 *1 (-834))) (-1968 (*1 *1 *1 *1) (-5 *1 (-834))) (-1968 (*1 *1 *1 *1 *1) (-5 *1 (-834))) (-4292 (*1 *1 *1) (-5 *1 (-834))) (-4292 (*1 *1 *1 *1) (-5 *1 (-834))) (-4292 (*1 *1 *1 *1 *1) (-5 *1 (-834))) (-4120 (*1 *1 *1) (-5 *1 (-834))) (-4120 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-1797 (*1 *1 *1) (-5 *1 (-834))) (-1797 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-3225 (*1 *1 *1) (-5 *1 (-834))) (-3225 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-4286 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-4280 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-3937 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-4171 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-2389 (*1 *1 *1 *1) (-5 *1 (-834))) (-3834 (*1 *1 *1 *1) (-5 *1 (-834))) (-2412 (*1 *1 *1 *1) (-5 *1 (-834))) (-2425 (*1 *1 *1 *1) (-5 *1 (-834))) (-2438 (*1 *1 *1 *1) (-5 *1 (-834))) (-2448 (*1 *1 *1 *1) (-5 *1 (-834))) (-2486 (*1 *1 *1 *1) (-5 *1 (-834))) (-2500 (*1 *1 *1 *1) (-5 *1 (-834))) (-2500 (*1 *1 *1) (-5 *1 (-834))) (* (*1 *1 *1 *1) (-5 *1 (-834))) (-2513 (*1 *1 *1 *1) (-5 *1 (-834))) (** (*1 *1 *1 *1) (-5 *1 (-834))) (-2056 (*1 *1 *1 *1) (-5 *1 (-834))) (-2095 (*1 *1 *1 *1) (-5 *1 (-834))) (-2067 (*1 *1 *1 *1) (-5 *1 (-834))) (-2042 (*1 *1 *1 *1) (-5 *1 (-834))) (-1821 (*1 *1 *1 *1) (-5 *1 (-834))) (-4207 (*1 *1 *1 *1) (-5 *1 (-834))) (-4008 (*1 *1 *1) (-5 *1 (-834))) (-1854 (*1 *1 *1 *1) (-5 *1 (-834))) (-1854 (*1 *1 *1) (-5 *1 (-834))))
-(-13 (-1067) (-10 -8 (-15 -1806 ((-1231) $)) (-15 -3700 ($ (-1125))) (-15 -2611 ((-1231) (-1125))) (-15 -2573 ($ (-549))) (-15 -2573 ($ (-1143))) (-15 -2573 ($ (-1125))) (-15 -2573 ($ (-219))) (-15 -3742 ($)) (-15 -2342 ((-549) $)) (-15 -4036 ((-549) $)) (-15 -2342 ((-549))) (-15 -4036 ((-549))) (-15 -3112 ((-549) $)) (-15 -3151 ((-549) $)) (-15 -4110 ($ (-549))) (-15 -3056 ($ (-549))) (-15 -4051 ($ (-549) (-549))) (-15 -3838 ($ $ (-549))) (-15 -3848 ($ $ (-549))) (-15 -2597 ($ $ (-549))) (-15 -3838 ($ $)) (-15 -3848 ($ $)) (-15 -2597 ($ $)) (-15 -3344 ($ $ $)) (-15 -2019 ($ $ $)) (-15 -3344 ($ (-621 $))) (-15 -2019 ($ (-621 $))) (-15 -1888 ($ $ (-621 $))) (-15 -3487 ($ $ (-621 $))) (-15 -3487 ($ $ $ $)) (-15 -2627 ($ $ $)) (-15 -2420 ((-112) $)) (-15 -3341 ($ $ (-621 $))) (-15 -1525 ($ $)) (-15 -3402 ($ $ $)) (-15 -4137 ($ $)) (-15 -3946 ($ (-621 (-621 $)))) (-15 -4049 ($ $ $)) (-15 -1885 ($ $)) (-15 -1885 ($ $ $)) (-15 -3663 ($ $ $)) (-15 -1819 ($ $ $)) (-15 -2712 ($ $ $)) (-15 -3842 ($ $ $)) (-15 -3456 ($ $ (-747))) (-15 -3179 ($ $ $)) (-15 -2895 ($ $ $)) (-15 -2277 ($ $ $)) (-15 -3395 ($ $ $)) (-15 -3133 ($ $ $)) (-15 -4220 ($ $ (-621 $))) (-15 -3238 ($ $ (-621 $))) (-15 -4145 ($ $)) (-15 -1706 ($ $)) (-15 -1706 ($ $ (-747))) (-15 -2715 ($ $)) (-15 -2715 ($ $ (-747))) (-15 -2794 ($ $)) (-15 -2524 ($ $ $)) (-15 -2821 ($ $)) (-15 -2821 ($ $ $)) (-15 -2821 ($ $ $ $)) (-15 -1968 ($ $)) (-15 -1968 ($ $ $)) (-15 -1968 ($ $ $ $)) (-15 -4292 ($ $)) (-15 -4292 ($ $ $)) (-15 -4292 ($ $ $ $)) (-15 -4120 ($ $)) (-15 -4120 ($ (-621 $))) (-15 -1797 ($ $)) (-15 -1797 ($ (-621 $))) (-15 -3225 ($ $)) (-15 -3225 ($ (-621 $))) (-15 -4286 ($ (-621 $))) (-15 -4280 ($ (-621 $))) (-15 -3937 ($ (-621 $))) (-15 -4171 ($ (-621 $))) (-15 -2389 ($ $ $)) (-15 -3834 ($ $ $)) (-15 -2412 ($ $ $)) (-15 -2425 ($ $ $)) (-15 -2438 ($ $ $)) (-15 -2448 ($ $ $)) (-15 -2486 ($ $ $)) (-15 -2500 ($ $ $)) (-15 -2500 ($ $)) (-15 * ($ $ $)) (-15 -2513 ($ $ $)) (-15 ** ($ $ $)) (-15 -2056 ($ $ $)) (-15 -2095 ($ $ $)) (-15 -2067 ($ $ $)) (-15 -2042 ($ $ $)) (-15 -1821 ($ $ $)) (-15 -4207 ($ $ $)) (-15 -4008 ($ $)) (-15 -1854 ($ $ $)) (-15 -1854 ($ $))))
-((-3401 (((-1231) (-621 (-52))) 24)) (-2075 (((-1231) (-1125) (-834)) 14) (((-1231) (-834)) 9) (((-1231) (-1125)) 11)))
-(((-835) (-10 -7 (-15 -2075 ((-1231) (-1125))) (-15 -2075 ((-1231) (-834))) (-15 -2075 ((-1231) (-1125) (-834))) (-15 -3401 ((-1231) (-621 (-52)))))) (T -835))
-((-3401 (*1 *2 *3) (-12 (-5 *3 (-621 (-52))) (-5 *2 (-1231)) (-5 *1 (-835)))) (-2075 (*1 *2 *3 *4) (-12 (-5 *3 (-1125)) (-5 *4 (-834)) (-5 *2 (-1231)) (-5 *1 (-835)))) (-2075 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1231)) (-5 *1 (-835)))) (-2075 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-835)))))
-(-10 -7 (-15 -2075 ((-1231) (-1125))) (-15 -2075 ((-1231) (-834))) (-15 -2075 ((-1231) (-1125) (-834))) (-15 -3401 ((-1231) (-621 (-52)))))
-((-3834 (((-112) $ $) NIL)) (-3011 (((-3 $ "failed") (-1143)) 33)) (-3614 (((-747)) 31)) (-3239 (($) NIL)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-1881 (((-892) $) 29)) (-3851 (((-1125) $) 39)) (-3493 (($ (-892)) 28)) (-3990 (((-1087) $) NIL)) (-2845 (((-1143) $) 13) (((-525) $) 19) (((-863 (-372)) $) 26) (((-863 (-549)) $) 22)) (-3846 (((-834) $) 16)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 36)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 35)))
-(((-836 |#1|) (-13 (-817) (-594 (-1143)) (-594 (-525)) (-594 (-863 (-372))) (-594 (-863 (-549))) (-10 -8 (-15 -3011 ((-3 $ "failed") (-1143))))) (-621 (-1143))) (T -836))
-((-3011 (*1 *1 *2) (|partial| -12 (-5 *2 (-1143)) (-5 *1 (-836 *3)) (-14 *3 (-621 *2)))))
-(-13 (-817) (-594 (-1143)) (-594 (-525)) (-594 (-863 (-372))) (-594 (-863 (-549))) (-10 -8 (-15 -3011 ((-3 $ "failed") (-1143)))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2114 (((-3 $ "failed") $) NIL)) (-2675 (((-112) $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (((-923 |#1|) $) NIL) (($ (-923 |#1|)) NIL) (($ |#1|) NIL (|has| |#1| (-170)))) (-2082 (((-747)) NIL)) (-3261 (((-1231) (-747)) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-2389 (((-112) $ $) NIL)) (-2513 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-170))) (($ $ |#1|) NIL (|has| |#1| (-170)))))
-(((-837 |#1| |#2| |#3| |#4|) (-13 (-1018) (-10 -8 (IF (|has| |#1| (-170)) (-6 (-38 |#1|)) |%noBranch|) (-15 -3846 ((-923 |#1|) $)) (-15 -3846 ($ (-923 |#1|))) (IF (|has| |#1| (-356)) (-15 -2513 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3261 ((-1231) (-747))))) (-1018) (-621 (-1143)) (-621 (-747)) (-747)) (T -837))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-923 *3)) (-5 *1 (-837 *3 *4 *5 *6)) (-4 *3 (-1018)) (-14 *4 (-621 (-1143))) (-14 *5 (-621 (-747))) (-14 *6 (-747)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-923 *3)) (-4 *3 (-1018)) (-5 *1 (-837 *3 *4 *5 *6)) (-14 *4 (-621 (-1143))) (-14 *5 (-621 (-747))) (-14 *6 (-747)))) (-2513 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-837 *2 *3 *4 *5)) (-4 *2 (-356)) (-4 *2 (-1018)) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-747))) (-14 *5 (-747)))) (-3261 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1231)) (-5 *1 (-837 *4 *5 *6 *7)) (-4 *4 (-1018)) (-14 *5 (-621 (-1143))) (-14 *6 (-621 *3)) (-14 *7 *3))))
-(-13 (-1018) (-10 -8 (IF (|has| |#1| (-170)) (-6 (-38 |#1|)) |%noBranch|) (-15 -3846 ((-923 |#1|) $)) (-15 -3846 ($ (-923 |#1|))) (IF (|has| |#1| (-356)) (-15 -2513 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3261 ((-1231) (-747)))))
-((-2337 (((-3 (-172 |#3|) "failed") (-747) (-747) |#2| |#2|) 31)) (-3709 (((-3 (-400 |#3|) "failed") (-747) (-747) |#2| |#2|) 24)))
-(((-838 |#1| |#2| |#3|) (-10 -7 (-15 -3709 ((-3 (-400 |#3|) "failed") (-747) (-747) |#2| |#2|)) (-15 -2337 ((-3 (-172 |#3|) "failed") (-747) (-747) |#2| |#2|))) (-356) (-1217 |#1|) (-1202 |#1|)) (T -838))
-((-2337 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-747)) (-4 *5 (-356)) (-5 *2 (-172 *6)) (-5 *1 (-838 *5 *4 *6)) (-4 *4 (-1217 *5)) (-4 *6 (-1202 *5)))) (-3709 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-747)) (-4 *5 (-356)) (-5 *2 (-400 *6)) (-5 *1 (-838 *5 *4 *6)) (-4 *4 (-1217 *5)) (-4 *6 (-1202 *5)))))
-(-10 -7 (-15 -3709 ((-3 (-400 |#3|) "failed") (-747) (-747) |#2| |#2|)) (-15 -2337 ((-3 (-172 |#3|) "failed") (-747) (-747) |#2| |#2|)))
-((-3709 (((-3 (-400 (-1199 |#2| |#1|)) "failed") (-747) (-747) (-1218 |#1| |#2| |#3|)) 28) (((-3 (-400 (-1199 |#2| |#1|)) "failed") (-747) (-747) (-1218 |#1| |#2| |#3|) (-1218 |#1| |#2| |#3|)) 26)))
-(((-839 |#1| |#2| |#3|) (-10 -7 (-15 -3709 ((-3 (-400 (-1199 |#2| |#1|)) "failed") (-747) (-747) (-1218 |#1| |#2| |#3|) (-1218 |#1| |#2| |#3|))) (-15 -3709 ((-3 (-400 (-1199 |#2| |#1|)) "failed") (-747) (-747) (-1218 |#1| |#2| |#3|)))) (-356) (-1143) |#1|) (T -839))
-((-3709 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-747)) (-5 *4 (-1218 *5 *6 *7)) (-4 *5 (-356)) (-14 *6 (-1143)) (-14 *7 *5) (-5 *2 (-400 (-1199 *6 *5))) (-5 *1 (-839 *5 *6 *7)))) (-3709 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-747)) (-5 *4 (-1218 *5 *6 *7)) (-4 *5 (-356)) (-14 *6 (-1143)) (-14 *7 *5) (-5 *2 (-400 (-1199 *6 *5))) (-5 *1 (-839 *5 *6 *7)))))
-(-10 -7 (-15 -3709 ((-3 (-400 (-1199 |#2| |#1|)) "failed") (-747) (-747) (-1218 |#1| |#2| |#3|) (-1218 |#1| |#2| |#3|))) (-15 -3709 ((-3 (-400 (-1199 |#2| |#1|)) "failed") (-747) (-747) (-1218 |#1| |#2| |#3|))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-2001 (((-3 $ "failed") $ $) 19)) (-2134 (($ $ (-549)) 60)) (-3866 (((-112) $ $) 57)) (-1682 (($) 17 T CONST)) (-1885 (($ (-1139 (-549)) (-549)) 59)) (-2095 (($ $ $) 53)) (-2114 (((-3 $ "failed") $) 32)) (-1538 (($ $) 62)) (-2067 (($ $ $) 54)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 49)) (-2088 (((-747) $) 67)) (-2675 (((-112) $) 30)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-1591 (((-549)) 64)) (-3246 (((-549) $) 63)) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2763 (($ $ (-549)) 66)) (-2042 (((-3 $ "failed") $ $) 40)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-3684 (((-747) $) 56)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 55)) (-3862 (((-1123 (-549)) $) 68)) (-1977 (($ $) 65)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41)) (-2082 (((-747)) 28)) (-1498 (((-112) $ $) 37)) (-2661 (((-549) $ (-549)) 61)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+((-3832 (((-112) $ $) NIL) (($ $ $) 77)) (-1878 (($ $ $) 115)) (-2340 (((-549) $) 30) (((-549)) 35)) (-2424 (($ (-549)) 44)) (-3373 (($ $ $) 45) (($ (-621 $)) 76)) (-1912 (($ $ (-621 $)) 74)) (-1302 (((-549) $) 33)) (-4088 (($ $ $) 63)) (-2819 (($ $) 128) (($ $ $) 129) (($ $ $ $) 130)) (-3220 (((-549) $) 32)) (-2982 (($ $ $) 62)) (-1524 (($ $) 105)) (-3208 (($ $ $) 119)) (-3887 (($ (-621 $)) 52)) (-4219 (($ $ (-621 $)) 69)) (-1984 (($ (-549) (-549)) 46)) (-3737 (($ $) 116) (($ $ $) 117)) (-3847 (($ $ (-549)) 40) (($ $) 43)) (-2091 (($ $ $) 89)) (-1927 (($ $ $) 122)) (-1337 (($ $) 106)) (-2065 (($ $ $) 90)) (-2538 (($ $) 131) (($ $ $) 132) (($ $ $ $) 133)) (-1803 (((-1230) $) 8)) (-2382 (($ $) 109) (($ $ (-747)) 112)) (-4188 (($ $ $) 65)) (-2125 (($ $ $) 64)) (-1887 (($ $ (-621 $)) 100)) (-2947 (($ $ $) 104)) (-2557 (($ (-621 $)) 50)) (-4158 (($ $) 60) (($ (-621 $)) 61)) (-3123 (($ $ $) 113)) (-3650 (($ $) 107)) (-3186 (($ $ $) 118)) (-2856 (($ (-549)) 20) (($ (-1142)) 22) (($ (-1124)) 29) (($ (-219)) 24)) (-4206 (($ $ $) 93)) (-4007 (($ $) 94)) (-3882 (((-1230) (-1124)) 14)) (-3700 (($ (-1124)) 13)) (-3944 (($ (-621 (-621 $))) 49)) (-3837 (($ $ (-549)) 39) (($ $) 42)) (-3441 (((-1124) $) NIL)) (-3399 (($ $ $) 121)) (-1832 (($ $) 134) (($ $ $) 135) (($ $ $ $) 136)) (-2419 (((-112) $) 98)) (-2004 (($ $ (-621 $)) 102) (($ $ $ $) 103)) (-3084 (($ (-549)) 36)) (-4036 (((-549) $) 31) (((-549)) 34)) (-1427 (($ $ $) 37) (($ (-621 $)) 75)) (-3988 (((-1086) $) NIL)) (-2040 (($ $ $) 91)) (-3288 (($) 12)) (-3339 (($ $ (-621 $)) 99)) (-1283 (($ $) 108) (($ $ (-747)) 111)) (-2053 (($ $ $) 88)) (-3455 (($ $ (-747)) 127)) (-3109 (($ (-621 $)) 51)) (-3845 (((-834) $) 18)) (-2596 (($ $ (-549)) 38) (($ $) 41)) (-1419 (($ $) 58) (($ (-621 $)) 59)) (-4119 (($ $) 56) (($ (-621 $)) 57)) (-4136 (($ $) 114)) (-2430 (($ (-621 $)) 55)) (-2772 (($ $ $) 97)) (-2190 (($ $ $) 120)) (-1819 (($ $ $) 92)) (-1856 (($ $ $) 95) (($ $) 96)) (-2447 (($ $ $) 81)) (-2423 (($ $ $) 79)) (-2387 (((-112) $ $) 15) (($ $ $) 16)) (-2436 (($ $ $) 80)) (-2409 (($ $ $) 78)) (-2511 (($ $ $) 86)) (-2498 (($ $ $) 83) (($ $) 84)) (-2484 (($ $ $) 82)) (** (($ $ $) 87)) (* (($ $ $) 85)))
+(((-834) (-13 (-1066) (-10 -8 (-15 -1803 ((-1230) $)) (-15 -3700 ($ (-1124))) (-15 -3882 ((-1230) (-1124))) (-15 -2856 ($ (-549))) (-15 -2856 ($ (-1142))) (-15 -2856 ($ (-1124))) (-15 -2856 ($ (-219))) (-15 -3288 ($)) (-15 -2340 ((-549) $)) (-15 -4036 ((-549) $)) (-15 -2340 ((-549))) (-15 -4036 ((-549))) (-15 -3220 ((-549) $)) (-15 -1302 ((-549) $)) (-15 -3084 ($ (-549))) (-15 -2424 ($ (-549))) (-15 -1984 ($ (-549) (-549))) (-15 -3837 ($ $ (-549))) (-15 -3847 ($ $ (-549))) (-15 -2596 ($ $ (-549))) (-15 -3837 ($ $)) (-15 -3847 ($ $)) (-15 -2596 ($ $)) (-15 -1427 ($ $ $)) (-15 -3373 ($ $ $)) (-15 -1427 ($ (-621 $))) (-15 -3373 ($ (-621 $))) (-15 -1887 ($ $ (-621 $))) (-15 -2004 ($ $ (-621 $))) (-15 -2004 ($ $ $ $)) (-15 -2947 ($ $ $)) (-15 -2419 ((-112) $)) (-15 -3339 ($ $ (-621 $))) (-15 -1524 ($ $)) (-15 -3399 ($ $ $)) (-15 -4136 ($ $)) (-15 -3944 ($ (-621 (-621 $)))) (-15 -1878 ($ $ $)) (-15 -3737 ($ $)) (-15 -3737 ($ $ $)) (-15 -3186 ($ $ $)) (-15 -3208 ($ $ $)) (-15 -2190 ($ $ $)) (-15 -1927 ($ $ $)) (-15 -3455 ($ $ (-747))) (-15 -2772 ($ $ $)) (-15 -2982 ($ $ $)) (-15 -4088 ($ $ $)) (-15 -2125 ($ $ $)) (-15 -4188 ($ $ $)) (-15 -4219 ($ $ (-621 $))) (-15 -1912 ($ $ (-621 $))) (-15 -1337 ($ $)) (-15 -1283 ($ $)) (-15 -1283 ($ $ (-747))) (-15 -2382 ($ $)) (-15 -2382 ($ $ (-747))) (-15 -3650 ($ $)) (-15 -3123 ($ $ $)) (-15 -2819 ($ $)) (-15 -2819 ($ $ $)) (-15 -2819 ($ $ $ $)) (-15 -2538 ($ $)) (-15 -2538 ($ $ $)) (-15 -2538 ($ $ $ $)) (-15 -1832 ($ $)) (-15 -1832 ($ $ $)) (-15 -1832 ($ $ $ $)) (-15 -4119 ($ $)) (-15 -4119 ($ (-621 $))) (-15 -1419 ($ $)) (-15 -1419 ($ (-621 $))) (-15 -4158 ($ $)) (-15 -4158 ($ (-621 $))) (-15 -2557 ($ (-621 $))) (-15 -3109 ($ (-621 $))) (-15 -3887 ($ (-621 $))) (-15 -2430 ($ (-621 $))) (-15 -2387 ($ $ $)) (-15 -3832 ($ $ $)) (-15 -2409 ($ $ $)) (-15 -2423 ($ $ $)) (-15 -2436 ($ $ $)) (-15 -2447 ($ $ $)) (-15 -2484 ($ $ $)) (-15 -2498 ($ $ $)) (-15 -2498 ($ $)) (-15 * ($ $ $)) (-15 -2511 ($ $ $)) (-15 ** ($ $ $)) (-15 -2053 ($ $ $)) (-15 -2091 ($ $ $)) (-15 -2065 ($ $ $)) (-15 -2040 ($ $ $)) (-15 -1819 ($ $ $)) (-15 -4206 ($ $ $)) (-15 -4007 ($ $)) (-15 -1856 ($ $ $)) (-15 -1856 ($ $))))) (T -834))
+((-1803 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-834)))) (-3700 (*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-834)))) (-3882 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-834)))) (-2856 (*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-2856 (*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-834)))) (-2856 (*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-834)))) (-2856 (*1 *1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-834)))) (-3288 (*1 *1) (-5 *1 (-834))) (-2340 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-4036 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-2340 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-4036 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-3220 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-1302 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-3084 (*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-2424 (*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-1984 (*1 *1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-3837 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-3847 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-2596 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))) (-3837 (*1 *1 *1) (-5 *1 (-834))) (-3847 (*1 *1 *1) (-5 *1 (-834))) (-2596 (*1 *1 *1) (-5 *1 (-834))) (-1427 (*1 *1 *1 *1) (-5 *1 (-834))) (-3373 (*1 *1 *1 *1) (-5 *1 (-834))) (-1427 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-3373 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-1887 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-2004 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-2004 (*1 *1 *1 *1 *1) (-5 *1 (-834))) (-2947 (*1 *1 *1 *1) (-5 *1 (-834))) (-2419 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-834)))) (-3339 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-1524 (*1 *1 *1) (-5 *1 (-834))) (-3399 (*1 *1 *1 *1) (-5 *1 (-834))) (-4136 (*1 *1 *1) (-5 *1 (-834))) (-3944 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 (-834)))) (-5 *1 (-834)))) (-1878 (*1 *1 *1 *1) (-5 *1 (-834))) (-3737 (*1 *1 *1) (-5 *1 (-834))) (-3737 (*1 *1 *1 *1) (-5 *1 (-834))) (-3186 (*1 *1 *1 *1) (-5 *1 (-834))) (-3208 (*1 *1 *1 *1) (-5 *1 (-834))) (-2190 (*1 *1 *1 *1) (-5 *1 (-834))) (-1927 (*1 *1 *1 *1) (-5 *1 (-834))) (-3455 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-834)))) (-2772 (*1 *1 *1 *1) (-5 *1 (-834))) (-2982 (*1 *1 *1 *1) (-5 *1 (-834))) (-4088 (*1 *1 *1 *1) (-5 *1 (-834))) (-2125 (*1 *1 *1 *1) (-5 *1 (-834))) (-4188 (*1 *1 *1 *1) (-5 *1 (-834))) (-4219 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-1912 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-1337 (*1 *1 *1) (-5 *1 (-834))) (-1283 (*1 *1 *1) (-5 *1 (-834))) (-1283 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-834)))) (-2382 (*1 *1 *1) (-5 *1 (-834))) (-2382 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-834)))) (-3650 (*1 *1 *1) (-5 *1 (-834))) (-3123 (*1 *1 *1 *1) (-5 *1 (-834))) (-2819 (*1 *1 *1) (-5 *1 (-834))) (-2819 (*1 *1 *1 *1) (-5 *1 (-834))) (-2819 (*1 *1 *1 *1 *1) (-5 *1 (-834))) (-2538 (*1 *1 *1) (-5 *1 (-834))) (-2538 (*1 *1 *1 *1) (-5 *1 (-834))) (-2538 (*1 *1 *1 *1 *1) (-5 *1 (-834))) (-1832 (*1 *1 *1) (-5 *1 (-834))) (-1832 (*1 *1 *1 *1) (-5 *1 (-834))) (-1832 (*1 *1 *1 *1 *1) (-5 *1 (-834))) (-4119 (*1 *1 *1) (-5 *1 (-834))) (-4119 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-1419 (*1 *1 *1) (-5 *1 (-834))) (-1419 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-4158 (*1 *1 *1) (-5 *1 (-834))) (-4158 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-2557 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-3109 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-3887 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-2430 (*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))) (-2387 (*1 *1 *1 *1) (-5 *1 (-834))) (-3832 (*1 *1 *1 *1) (-5 *1 (-834))) (-2409 (*1 *1 *1 *1) (-5 *1 (-834))) (-2423 (*1 *1 *1 *1) (-5 *1 (-834))) (-2436 (*1 *1 *1 *1) (-5 *1 (-834))) (-2447 (*1 *1 *1 *1) (-5 *1 (-834))) (-2484 (*1 *1 *1 *1) (-5 *1 (-834))) (-2498 (*1 *1 *1 *1) (-5 *1 (-834))) (-2498 (*1 *1 *1) (-5 *1 (-834))) (* (*1 *1 *1 *1) (-5 *1 (-834))) (-2511 (*1 *1 *1 *1) (-5 *1 (-834))) (** (*1 *1 *1 *1) (-5 *1 (-834))) (-2053 (*1 *1 *1 *1) (-5 *1 (-834))) (-2091 (*1 *1 *1 *1) (-5 *1 (-834))) (-2065 (*1 *1 *1 *1) (-5 *1 (-834))) (-2040 (*1 *1 *1 *1) (-5 *1 (-834))) (-1819 (*1 *1 *1 *1) (-5 *1 (-834))) (-4206 (*1 *1 *1 *1) (-5 *1 (-834))) (-4007 (*1 *1 *1) (-5 *1 (-834))) (-1856 (*1 *1 *1 *1) (-5 *1 (-834))) (-1856 (*1 *1 *1) (-5 *1 (-834))))
+(-13 (-1066) (-10 -8 (-15 -1803 ((-1230) $)) (-15 -3700 ($ (-1124))) (-15 -3882 ((-1230) (-1124))) (-15 -2856 ($ (-549))) (-15 -2856 ($ (-1142))) (-15 -2856 ($ (-1124))) (-15 -2856 ($ (-219))) (-15 -3288 ($)) (-15 -2340 ((-549) $)) (-15 -4036 ((-549) $)) (-15 -2340 ((-549))) (-15 -4036 ((-549))) (-15 -3220 ((-549) $)) (-15 -1302 ((-549) $)) (-15 -3084 ($ (-549))) (-15 -2424 ($ (-549))) (-15 -1984 ($ (-549) (-549))) (-15 -3837 ($ $ (-549))) (-15 -3847 ($ $ (-549))) (-15 -2596 ($ $ (-549))) (-15 -3837 ($ $)) (-15 -3847 ($ $)) (-15 -2596 ($ $)) (-15 -1427 ($ $ $)) (-15 -3373 ($ $ $)) (-15 -1427 ($ (-621 $))) (-15 -3373 ($ (-621 $))) (-15 -1887 ($ $ (-621 $))) (-15 -2004 ($ $ (-621 $))) (-15 -2004 ($ $ $ $)) (-15 -2947 ($ $ $)) (-15 -2419 ((-112) $)) (-15 -3339 ($ $ (-621 $))) (-15 -1524 ($ $)) (-15 -3399 ($ $ $)) (-15 -4136 ($ $)) (-15 -3944 ($ (-621 (-621 $)))) (-15 -1878 ($ $ $)) (-15 -3737 ($ $)) (-15 -3737 ($ $ $)) (-15 -3186 ($ $ $)) (-15 -3208 ($ $ $)) (-15 -2190 ($ $ $)) (-15 -1927 ($ $ $)) (-15 -3455 ($ $ (-747))) (-15 -2772 ($ $ $)) (-15 -2982 ($ $ $)) (-15 -4088 ($ $ $)) (-15 -2125 ($ $ $)) (-15 -4188 ($ $ $)) (-15 -4219 ($ $ (-621 $))) (-15 -1912 ($ $ (-621 $))) (-15 -1337 ($ $)) (-15 -1283 ($ $)) (-15 -1283 ($ $ (-747))) (-15 -2382 ($ $)) (-15 -2382 ($ $ (-747))) (-15 -3650 ($ $)) (-15 -3123 ($ $ $)) (-15 -2819 ($ $)) (-15 -2819 ($ $ $)) (-15 -2819 ($ $ $ $)) (-15 -2538 ($ $)) (-15 -2538 ($ $ $)) (-15 -2538 ($ $ $ $)) (-15 -1832 ($ $)) (-15 -1832 ($ $ $)) (-15 -1832 ($ $ $ $)) (-15 -4119 ($ $)) (-15 -4119 ($ (-621 $))) (-15 -1419 ($ $)) (-15 -1419 ($ (-621 $))) (-15 -4158 ($ $)) (-15 -4158 ($ (-621 $))) (-15 -2557 ($ (-621 $))) (-15 -3109 ($ (-621 $))) (-15 -3887 ($ (-621 $))) (-15 -2430 ($ (-621 $))) (-15 -2387 ($ $ $)) (-15 -3832 ($ $ $)) (-15 -2409 ($ $ $)) (-15 -2423 ($ $ $)) (-15 -2436 ($ $ $)) (-15 -2447 ($ $ $)) (-15 -2484 ($ $ $)) (-15 -2498 ($ $ $)) (-15 -2498 ($ $)) (-15 * ($ $ $)) (-15 -2511 ($ $ $)) (-15 ** ($ $ $)) (-15 -2053 ($ $ $)) (-15 -2091 ($ $ $)) (-15 -2065 ($ $ $)) (-15 -2040 ($ $ $)) (-15 -1819 ($ $ $)) (-15 -4206 ($ $ $)) (-15 -4007 ($ $)) (-15 -1856 ($ $ $)) (-15 -1856 ($ $))))
+((-3400 (((-1230) (-621 (-52))) 24)) (-2073 (((-1230) (-1124) (-834)) 14) (((-1230) (-834)) 9) (((-1230) (-1124)) 11)))
+(((-835) (-10 -7 (-15 -2073 ((-1230) (-1124))) (-15 -2073 ((-1230) (-834))) (-15 -2073 ((-1230) (-1124) (-834))) (-15 -3400 ((-1230) (-621 (-52)))))) (T -835))
+((-3400 (*1 *2 *3) (-12 (-5 *3 (-621 (-52))) (-5 *2 (-1230)) (-5 *1 (-835)))) (-2073 (*1 *2 *3 *4) (-12 (-5 *3 (-1124)) (-5 *4 (-834)) (-5 *2 (-1230)) (-5 *1 (-835)))) (-2073 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1230)) (-5 *1 (-835)))) (-2073 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-835)))))
+(-10 -7 (-15 -2073 ((-1230) (-1124))) (-15 -2073 ((-1230) (-834))) (-15 -2073 ((-1230) (-1124) (-834))) (-15 -3400 ((-1230) (-621 (-52)))))
+((-3832 (((-112) $ $) NIL)) (-3009 (((-3 $ "failed") (-1142)) 33)) (-3614 (((-747)) 31)) (-3237 (($) NIL)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-3309 (((-892) $) 29)) (-3441 (((-1124) $) 39)) (-3494 (($ (-892)) 28)) (-3988 (((-1086) $) NIL)) (-2843 (((-1142) $) 13) (((-525) $) 19) (((-863 (-372)) $) 26) (((-863 (-549)) $) 22)) (-3845 (((-834) $) 16)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 36)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 35)))
+(((-836 |#1|) (-13 (-817) (-594 (-1142)) (-594 (-525)) (-594 (-863 (-372))) (-594 (-863 (-549))) (-10 -8 (-15 -3009 ((-3 $ "failed") (-1142))))) (-621 (-1142))) (T -836))
+((-3009 (*1 *1 *2) (|partial| -12 (-5 *2 (-1142)) (-5 *1 (-836 *3)) (-14 *3 (-621 *2)))))
+(-13 (-817) (-594 (-1142)) (-594 (-525)) (-594 (-863 (-372))) (-594 (-863 (-549))) (-10 -8 (-15 -3009 ((-3 $ "failed") (-1142)))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2612 (((-3 $ "failed") $) NIL)) (-2297 (((-112) $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (((-923 |#1|) $) NIL) (($ (-923 |#1|)) NIL) (($ |#1|) NIL (|has| |#1| (-170)))) (-2371 (((-747)) NIL)) (-3881 (((-1230) (-747)) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-2387 (((-112) $ $) NIL)) (-2511 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-170))) (($ $ |#1|) NIL (|has| |#1| (-170)))))
+(((-837 |#1| |#2| |#3| |#4|) (-13 (-1018) (-10 -8 (IF (|has| |#1| (-170)) (-6 (-38 |#1|)) |%noBranch|) (-15 -3845 ((-923 |#1|) $)) (-15 -3845 ($ (-923 |#1|))) (IF (|has| |#1| (-356)) (-15 -2511 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3881 ((-1230) (-747))))) (-1018) (-621 (-1142)) (-621 (-747)) (-747)) (T -837))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-923 *3)) (-5 *1 (-837 *3 *4 *5 *6)) (-4 *3 (-1018)) (-14 *4 (-621 (-1142))) (-14 *5 (-621 (-747))) (-14 *6 (-747)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-923 *3)) (-4 *3 (-1018)) (-5 *1 (-837 *3 *4 *5 *6)) (-14 *4 (-621 (-1142))) (-14 *5 (-621 (-747))) (-14 *6 (-747)))) (-2511 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-837 *2 *3 *4 *5)) (-4 *2 (-356)) (-4 *2 (-1018)) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-747))) (-14 *5 (-747)))) (-3881 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1230)) (-5 *1 (-837 *4 *5 *6 *7)) (-4 *4 (-1018)) (-14 *5 (-621 (-1142))) (-14 *6 (-621 *3)) (-14 *7 *3))))
+(-13 (-1018) (-10 -8 (IF (|has| |#1| (-170)) (-6 (-38 |#1|)) |%noBranch|) (-15 -3845 ((-923 |#1|) $)) (-15 -3845 ($ (-923 |#1|))) (IF (|has| |#1| (-356)) (-15 -2511 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3881 ((-1230) (-747)))))
+((-4077 (((-3 (-172 |#3|) "failed") (-747) (-747) |#2| |#2|) 31)) (-3513 (((-3 (-400 |#3|) "failed") (-747) (-747) |#2| |#2|) 24)))
+(((-838 |#1| |#2| |#3|) (-10 -7 (-15 -3513 ((-3 (-400 |#3|) "failed") (-747) (-747) |#2| |#2|)) (-15 -4077 ((-3 (-172 |#3|) "failed") (-747) (-747) |#2| |#2|))) (-356) (-1216 |#1|) (-1201 |#1|)) (T -838))
+((-4077 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-747)) (-4 *5 (-356)) (-5 *2 (-172 *6)) (-5 *1 (-838 *5 *4 *6)) (-4 *4 (-1216 *5)) (-4 *6 (-1201 *5)))) (-3513 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-747)) (-4 *5 (-356)) (-5 *2 (-400 *6)) (-5 *1 (-838 *5 *4 *6)) (-4 *4 (-1216 *5)) (-4 *6 (-1201 *5)))))
+(-10 -7 (-15 -3513 ((-3 (-400 |#3|) "failed") (-747) (-747) |#2| |#2|)) (-15 -4077 ((-3 (-172 |#3|) "failed") (-747) (-747) |#2| |#2|)))
+((-3513 (((-3 (-400 (-1198 |#2| |#1|)) "failed") (-747) (-747) (-1217 |#1| |#2| |#3|)) 28) (((-3 (-400 (-1198 |#2| |#1|)) "failed") (-747) (-747) (-1217 |#1| |#2| |#3|) (-1217 |#1| |#2| |#3|)) 26)))
+(((-839 |#1| |#2| |#3|) (-10 -7 (-15 -3513 ((-3 (-400 (-1198 |#2| |#1|)) "failed") (-747) (-747) (-1217 |#1| |#2| |#3|) (-1217 |#1| |#2| |#3|))) (-15 -3513 ((-3 (-400 (-1198 |#2| |#1|)) "failed") (-747) (-747) (-1217 |#1| |#2| |#3|)))) (-356) (-1142) |#1|) (T -839))
+((-3513 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-747)) (-5 *4 (-1217 *5 *6 *7)) (-4 *5 (-356)) (-14 *6 (-1142)) (-14 *7 *5) (-5 *2 (-400 (-1198 *6 *5))) (-5 *1 (-839 *5 *6 *7)))) (-3513 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-747)) (-5 *4 (-1217 *5 *6 *7)) (-4 *5 (-356)) (-14 *6 (-1142)) (-14 *7 *5) (-5 *2 (-400 (-1198 *6 *5))) (-5 *1 (-839 *5 *6 *7)))))
+(-10 -7 (-15 -3513 ((-3 (-400 (-1198 |#2| |#1|)) "failed") (-747) (-747) (-1217 |#1| |#2| |#3|) (-1217 |#1| |#2| |#3|))) (-15 -3513 ((-3 (-400 (-1198 |#2| |#1|)) "failed") (-747) (-747) (-1217 |#1| |#2| |#3|))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-2416 (((-3 $ "failed") $ $) 19)) (-2132 (($ $ (-549)) 60)) (-2680 (((-112) $ $) 57)) (-3034 (($) 17 T CONST)) (-3737 (($ (-1138 (-549)) (-549)) 59)) (-2091 (($ $ $) 53)) (-2612 (((-3 $ "failed") $) 32)) (-2066 (($ $) 62)) (-2065 (($ $ $) 54)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 49)) (-2729 (((-747) $) 67)) (-2297 (((-112) $) 30)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-2107 (((-549)) 64)) (-3575 (((-549) $) 63)) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-3796 (($ $ (-549)) 66)) (-2040 (((-3 $ "failed") $ $) 40)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-1335 (((-747) $) 56)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 55)) (-2234 (((-1122 (-549)) $) 68)) (-3958 (($ $) 65)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41)) (-2371 (((-747)) 28)) (-2441 (((-112) $ $) 37)) (-2659 (((-549) $ (-549)) 61)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-840 |#1|) (-138) (-549)) (T -840))
-((-3862 (*1 *2 *1) (-12 (-4 *1 (-840 *3)) (-5 *2 (-1123 (-549))))) (-2088 (*1 *2 *1) (-12 (-4 *1 (-840 *3)) (-5 *2 (-747)))) (-2763 (*1 *1 *1 *2) (-12 (-4 *1 (-840 *3)) (-5 *2 (-549)))) (-1977 (*1 *1 *1) (-4 *1 (-840 *2))) (-1591 (*1 *2) (-12 (-4 *1 (-840 *3)) (-5 *2 (-549)))) (-3246 (*1 *2 *1) (-12 (-4 *1 (-840 *3)) (-5 *2 (-549)))) (-1538 (*1 *1 *1) (-4 *1 (-840 *2))) (-2661 (*1 *2 *1 *2) (-12 (-4 *1 (-840 *3)) (-5 *2 (-549)))) (-2134 (*1 *1 *1 *2) (-12 (-4 *1 (-840 *3)) (-5 *2 (-549)))) (-1885 (*1 *1 *2 *3) (-12 (-5 *2 (-1139 (-549))) (-5 *3 (-549)) (-4 *1 (-840 *4)))))
-(-13 (-300) (-145) (-10 -8 (-15 -3862 ((-1123 (-549)) $)) (-15 -2088 ((-747) $)) (-15 -2763 ($ $ (-549))) (-15 -1977 ($ $)) (-15 -1591 ((-549))) (-15 -3246 ((-549) $)) (-15 -1538 ($ $)) (-15 -2661 ((-549) $ (-549))) (-15 -2134 ($ $ (-549))) (-15 -1885 ($ (-1139 (-549)) (-549)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-145) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-300) . T) ((-444) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-891) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-2134 (($ $ (-549)) NIL)) (-3866 (((-112) $ $) NIL)) (-1682 (($) NIL T CONST)) (-1885 (($ (-1139 (-549)) (-549)) NIL)) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1538 (($ $) NIL)) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-2088 (((-747) $) NIL)) (-2675 (((-112) $) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1591 (((-549)) NIL)) (-3246 (((-549) $) NIL)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2763 (($ $ (-549)) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3862 (((-1123 (-549)) $) NIL)) (-1977 (($ $) NIL)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL)) (-2082 (((-747)) NIL)) (-1498 (((-112) $ $) NIL)) (-2661 (((-549) $ (-549)) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL)))
+((-2234 (*1 *2 *1) (-12 (-4 *1 (-840 *3)) (-5 *2 (-1122 (-549))))) (-2729 (*1 *2 *1) (-12 (-4 *1 (-840 *3)) (-5 *2 (-747)))) (-3796 (*1 *1 *1 *2) (-12 (-4 *1 (-840 *3)) (-5 *2 (-549)))) (-3958 (*1 *1 *1) (-4 *1 (-840 *2))) (-2107 (*1 *2) (-12 (-4 *1 (-840 *3)) (-5 *2 (-549)))) (-3575 (*1 *2 *1) (-12 (-4 *1 (-840 *3)) (-5 *2 (-549)))) (-2066 (*1 *1 *1) (-4 *1 (-840 *2))) (-2659 (*1 *2 *1 *2) (-12 (-4 *1 (-840 *3)) (-5 *2 (-549)))) (-2132 (*1 *1 *1 *2) (-12 (-4 *1 (-840 *3)) (-5 *2 (-549)))) (-3737 (*1 *1 *2 *3) (-12 (-5 *2 (-1138 (-549))) (-5 *3 (-549)) (-4 *1 (-840 *4)))))
+(-13 (-300) (-145) (-10 -8 (-15 -2234 ((-1122 (-549)) $)) (-15 -2729 ((-747) $)) (-15 -3796 ($ $ (-549))) (-15 -3958 ($ $)) (-15 -2107 ((-549))) (-15 -3575 ((-549) $)) (-15 -2066 ($ $)) (-15 -2659 ((-549) $ (-549))) (-15 -2132 ($ $ (-549))) (-15 -3737 ($ (-1138 (-549)) (-549)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-145) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-300) . T) ((-444) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-891) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-2132 (($ $ (-549)) NIL)) (-2680 (((-112) $ $) NIL)) (-3034 (($) NIL T CONST)) (-3737 (($ (-1138 (-549)) (-549)) NIL)) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-2066 (($ $) NIL)) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-2729 (((-747) $) NIL)) (-2297 (((-112) $) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2107 (((-549)) NIL)) (-3575 (((-549) $) NIL)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3796 (($ $ (-549)) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-2234 (((-1122 (-549)) $) NIL)) (-3958 (($ $) NIL)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL)) (-2371 (((-747)) NIL)) (-2441 (((-112) $ $) NIL)) (-2659 (((-549) $ (-549)) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL)))
(((-841 |#1|) (-840 |#1|) (-549)) (T -841))
NIL
(-840 |#1|)
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3329 (((-841 |#1|) $) NIL (|has| (-841 |#1|) (-300)))) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-841 |#1|) (-880)))) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| (-841 |#1|) (-880)))) (-3866 (((-112) $ $) NIL)) (-1872 (((-549) $) NIL (|has| (-841 |#1|) (-796)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-841 |#1|) "failed") $) NIL) (((-3 (-1143) "failed") $) NIL (|has| (-841 |#1|) (-1009 (-1143)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-841 |#1|) (-1009 (-549)))) (((-3 (-549) "failed") $) NIL (|has| (-841 |#1|) (-1009 (-549))))) (-2659 (((-841 |#1|) $) NIL) (((-1143) $) NIL (|has| (-841 |#1|) (-1009 (-1143)))) (((-400 (-549)) $) NIL (|has| (-841 |#1|) (-1009 (-549)))) (((-549) $) NIL (|has| (-841 |#1|) (-1009 (-549))))) (-2294 (($ $) NIL) (($ (-549) $) NIL)) (-2095 (($ $ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| (-841 |#1|) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| (-841 |#1|) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-841 |#1|))) (|:| |vec| (-1226 (-841 |#1|)))) (-665 $) (-1226 $)) NIL) (((-665 (-841 |#1|)) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) NIL (|has| (-841 |#1|) (-534)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-2772 (((-112) $) NIL (|has| (-841 |#1|) (-796)))) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| (-841 |#1|) (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| (-841 |#1|) (-857 (-372))))) (-2675 (((-112) $) NIL)) (-1726 (($ $) NIL)) (-1394 (((-841 |#1|) $) NIL)) (-1681 (((-3 $ "failed") $) NIL (|has| (-841 |#1|) (-1118)))) (-2374 (((-112) $) NIL (|has| (-841 |#1|) (-796)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2863 (($ $ $) NIL (|has| (-841 |#1|) (-823)))) (-3575 (($ $ $) NIL (|has| (-841 |#1|) (-823)))) (-2797 (($ (-1 (-841 |#1|) (-841 |#1|)) $) NIL)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL (|has| (-841 |#1|) (-1118)) CONST)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2873 (($ $) NIL (|has| (-841 |#1|) (-300)))) (-3967 (((-841 |#1|) $) NIL (|has| (-841 |#1|) (-534)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-841 |#1|) (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-841 |#1|) (-880)))) (-2121 (((-411 $) $) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2686 (($ $ (-621 (-841 |#1|)) (-621 (-841 |#1|))) NIL (|has| (-841 |#1|) (-302 (-841 |#1|)))) (($ $ (-841 |#1|) (-841 |#1|)) NIL (|has| (-841 |#1|) (-302 (-841 |#1|)))) (($ $ (-287 (-841 |#1|))) NIL (|has| (-841 |#1|) (-302 (-841 |#1|)))) (($ $ (-621 (-287 (-841 |#1|)))) NIL (|has| (-841 |#1|) (-302 (-841 |#1|)))) (($ $ (-621 (-1143)) (-621 (-841 |#1|))) NIL (|has| (-841 |#1|) (-505 (-1143) (-841 |#1|)))) (($ $ (-1143) (-841 |#1|)) NIL (|has| (-841 |#1|) (-505 (-1143) (-841 |#1|))))) (-3684 (((-747) $) NIL)) (-3341 (($ $ (-841 |#1|)) NIL (|has| (-841 |#1|) (-279 (-841 |#1|) (-841 |#1|))))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3456 (($ $) NIL (|has| (-841 |#1|) (-227))) (($ $ (-747)) NIL (|has| (-841 |#1|) (-227))) (($ $ (-1143)) NIL (|has| (-841 |#1|) (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| (-841 |#1|) (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| (-841 |#1|) (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| (-841 |#1|) (-871 (-1143)))) (($ $ (-1 (-841 |#1|) (-841 |#1|)) (-747)) NIL) (($ $ (-1 (-841 |#1|) (-841 |#1|))) NIL)) (-3939 (($ $) NIL)) (-1403 (((-841 |#1|) $) NIL)) (-2845 (((-863 (-549)) $) NIL (|has| (-841 |#1|) (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| (-841 |#1|) (-594 (-863 (-372))))) (((-525) $) NIL (|has| (-841 |#1|) (-594 (-525)))) (((-372) $) NIL (|has| (-841 |#1|) (-993))) (((-219) $) NIL (|has| (-841 |#1|) (-993)))) (-4116 (((-172 (-400 (-549))) $) NIL)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-841 |#1|) (-880))))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-841 |#1|)) NIL) (($ (-1143)) NIL (|has| (-841 |#1|) (-1009 (-1143))))) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-841 |#1|) (-880))) (|has| (-841 |#1|) (-143))))) (-2082 (((-747)) NIL)) (-2546 (((-841 |#1|) $) NIL (|has| (-841 |#1|) (-534)))) (-1498 (((-112) $ $) NIL)) (-2661 (((-400 (-549)) $ (-549)) NIL)) (-3212 (($ $) NIL (|has| (-841 |#1|) (-796)))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $) NIL (|has| (-841 |#1|) (-227))) (($ $ (-747)) NIL (|has| (-841 |#1|) (-227))) (($ $ (-1143)) NIL (|has| (-841 |#1|) (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| (-841 |#1|) (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| (-841 |#1|) (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| (-841 |#1|) (-871 (-1143)))) (($ $ (-1 (-841 |#1|) (-841 |#1|)) (-747)) NIL) (($ $ (-1 (-841 |#1|) (-841 |#1|))) NIL)) (-2448 (((-112) $ $) NIL (|has| (-841 |#1|) (-823)))) (-2425 (((-112) $ $) NIL (|has| (-841 |#1|) (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| (-841 |#1|) (-823)))) (-2412 (((-112) $ $) NIL (|has| (-841 |#1|) (-823)))) (-2513 (($ $ $) NIL) (($ (-841 |#1|) (-841 |#1|)) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ (-841 |#1|) $) NIL) (($ $ (-841 |#1|)) NIL)))
-(((-842 |#1|) (-13 (-963 (-841 |#1|)) (-10 -8 (-15 -2661 ((-400 (-549)) $ (-549))) (-15 -4116 ((-172 (-400 (-549))) $)) (-15 -2294 ($ $)) (-15 -2294 ($ (-549) $)))) (-549)) (T -842))
-((-2661 (*1 *2 *1 *3) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-842 *4)) (-14 *4 *3) (-5 *3 (-549)))) (-4116 (*1 *2 *1) (-12 (-5 *2 (-172 (-400 (-549)))) (-5 *1 (-842 *3)) (-14 *3 (-549)))) (-2294 (*1 *1 *1) (-12 (-5 *1 (-842 *2)) (-14 *2 (-549)))) (-2294 (*1 *1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-842 *3)) (-14 *3 *2))))
-(-13 (-963 (-841 |#1|)) (-10 -8 (-15 -2661 ((-400 (-549)) $ (-549))) (-15 -4116 ((-172 (-400 (-549))) $)) (-15 -2294 ($ $)) (-15 -2294 ($ (-549) $))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3329 ((|#2| $) NIL (|has| |#2| (-300)))) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-3866 (((-112) $ $) NIL)) (-1872 (((-549) $) NIL (|has| |#2| (-796)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#2| "failed") $) NIL) (((-3 (-1143) "failed") $) NIL (|has| |#2| (-1009 (-1143)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549))))) (-2659 ((|#2| $) NIL) (((-1143) $) NIL (|has| |#2| (-1009 (-1143)))) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-549)))) (((-549) $) NIL (|has| |#2| (-1009 (-549))))) (-2294 (($ $) 31) (($ (-549) $) 32)) (-2095 (($ $ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) NIL) (((-665 |#2|) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) 53)) (-3239 (($) NIL (|has| |#2| (-534)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-2772 (((-112) $) NIL (|has| |#2| (-796)))) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| |#2| (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| |#2| (-857 (-372))))) (-2675 (((-112) $) NIL)) (-1726 (($ $) NIL)) (-1394 ((|#2| $) NIL)) (-1681 (((-3 $ "failed") $) NIL (|has| |#2| (-1118)))) (-2374 (((-112) $) NIL (|has| |#2| (-796)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2863 (($ $ $) NIL (|has| |#2| (-823)))) (-3575 (($ $ $) NIL (|has| |#2| (-823)))) (-2797 (($ (-1 |#2| |#2|) $) NIL)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 49)) (-3060 (($) NIL (|has| |#2| (-1118)) CONST)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2873 (($ $) NIL (|has| |#2| (-300)))) (-3967 ((|#2| $) NIL (|has| |#2| (-534)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-2121 (((-411 $) $) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2686 (($ $ (-621 |#2|) (-621 |#2|)) NIL (|has| |#2| (-302 |#2|))) (($ $ |#2| |#2|) NIL (|has| |#2| (-302 |#2|))) (($ $ (-287 |#2|)) NIL (|has| |#2| (-302 |#2|))) (($ $ (-621 (-287 |#2|))) NIL (|has| |#2| (-302 |#2|))) (($ $ (-621 (-1143)) (-621 |#2|)) NIL (|has| |#2| (-505 (-1143) |#2|))) (($ $ (-1143) |#2|) NIL (|has| |#2| (-505 (-1143) |#2|)))) (-3684 (((-747) $) NIL)) (-3341 (($ $ |#2|) NIL (|has| |#2| (-279 |#2| |#2|)))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3456 (($ $) NIL (|has| |#2| (-227))) (($ $ (-747)) NIL (|has| |#2| (-227))) (($ $ (-1143)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-3939 (($ $) NIL)) (-1403 ((|#2| $) NIL)) (-2845 (((-863 (-549)) $) NIL (|has| |#2| (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| |#2| (-594 (-863 (-372))))) (((-525) $) NIL (|has| |#2| (-594 (-525)))) (((-372) $) NIL (|has| |#2| (-993))) (((-219) $) NIL (|has| |#2| (-993)))) (-4116 (((-172 (-400 (-549))) $) 68)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#2| (-880))))) (-3846 (((-834) $) 87) (($ (-549)) 19) (($ $) NIL) (($ (-400 (-549))) 24) (($ |#2|) 18) (($ (-1143)) NIL (|has| |#2| (-1009 (-1143))))) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#2| (-880))) (|has| |#2| (-143))))) (-2082 (((-747)) NIL)) (-2546 ((|#2| $) NIL (|has| |#2| (-534)))) (-1498 (((-112) $ $) NIL)) (-2661 (((-400 (-549)) $ (-549)) 60)) (-3212 (($ $) NIL (|has| |#2| (-796)))) (-3276 (($) 14 T CONST)) (-3287 (($) 16 T CONST)) (-1702 (($ $) NIL (|has| |#2| (-227))) (($ $ (-747)) NIL (|has| |#2| (-227))) (($ $ (-1143)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-2448 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2389 (((-112) $ $) 35)) (-2438 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2513 (($ $ $) 23) (($ |#2| |#2|) 54)) (-2500 (($ $) 39) (($ $ $) 41)) (-2486 (($ $ $) 37)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) 50)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 42) (($ $ $) 44) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ |#2| $) 55) (($ $ |#2|) NIL)))
-(((-843 |#1| |#2|) (-13 (-963 |#2|) (-10 -8 (-15 -2661 ((-400 (-549)) $ (-549))) (-15 -4116 ((-172 (-400 (-549))) $)) (-15 -2294 ($ $)) (-15 -2294 ($ (-549) $)))) (-549) (-840 |#1|)) (T -843))
-((-2661 (*1 *2 *1 *3) (-12 (-14 *4 *3) (-5 *2 (-400 (-549))) (-5 *1 (-843 *4 *5)) (-5 *3 (-549)) (-4 *5 (-840 *4)))) (-4116 (*1 *2 *1) (-12 (-14 *3 (-549)) (-5 *2 (-172 (-400 (-549)))) (-5 *1 (-843 *3 *4)) (-4 *4 (-840 *3)))) (-2294 (*1 *1 *1) (-12 (-14 *2 (-549)) (-5 *1 (-843 *2 *3)) (-4 *3 (-840 *2)))) (-2294 (*1 *1 *2 *1) (-12 (-5 *2 (-549)) (-14 *3 *2) (-5 *1 (-843 *3 *4)) (-4 *4 (-840 *3)))))
-(-13 (-963 |#2|) (-10 -8 (-15 -2661 ((-400 (-549)) $ (-549))) (-15 -4116 ((-172 (-400 (-549))) $)) (-15 -2294 ($ $)) (-15 -2294 ($ (-549) $))))
-((-3834 (((-112) $ $) NIL (-12 (|has| |#1| (-1067)) (|has| |#2| (-1067))))) (-2830 ((|#2| $) 12)) (-3528 (($ |#1| |#2|) 9)) (-3851 (((-1125) $) NIL (-12 (|has| |#1| (-1067)) (|has| |#2| (-1067))))) (-3990 (((-1087) $) NIL (-12 (|has| |#1| (-1067)) (|has| |#2| (-1067))))) (-3646 ((|#1| $) 11)) (-3854 (($ |#1| |#2|) 10)) (-3846 (((-834) $) 18 (-1536 (-12 (|has| |#1| (-593 (-834))) (|has| |#2| (-593 (-834)))) (-12 (|has| |#1| (-1067)) (|has| |#2| (-1067)))))) (-2389 (((-112) $ $) 22 (-12 (|has| |#1| (-1067)) (|has| |#2| (-1067))))))
-(((-844 |#1| |#2|) (-13 (-1180) (-10 -8 (IF (|has| |#1| (-593 (-834))) (IF (|has| |#2| (-593 (-834))) (-6 (-593 (-834))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1067)) (IF (|has| |#2| (-1067)) (-6 (-1067)) |%noBranch|) |%noBranch|) (-15 -3528 ($ |#1| |#2|)) (-15 -3854 ($ |#1| |#2|)) (-15 -3646 (|#1| $)) (-15 -2830 (|#2| $)))) (-1180) (-1180)) (T -844))
-((-3528 (*1 *1 *2 *3) (-12 (-5 *1 (-844 *2 *3)) (-4 *2 (-1180)) (-4 *3 (-1180)))) (-3854 (*1 *1 *2 *3) (-12 (-5 *1 (-844 *2 *3)) (-4 *2 (-1180)) (-4 *3 (-1180)))) (-3646 (*1 *2 *1) (-12 (-4 *2 (-1180)) (-5 *1 (-844 *2 *3)) (-4 *3 (-1180)))) (-2830 (*1 *2 *1) (-12 (-4 *2 (-1180)) (-5 *1 (-844 *3 *2)) (-4 *3 (-1180)))))
-(-13 (-1180) (-10 -8 (IF (|has| |#1| (-593 (-834))) (IF (|has| |#2| (-593 (-834))) (-6 (-593 (-834))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1067)) (IF (|has| |#2| (-1067)) (-6 (-1067)) |%noBranch|) |%noBranch|) (-15 -3528 ($ |#1| |#2|)) (-15 -3854 ($ |#1| |#2|)) (-15 -3646 (|#1| $)) (-15 -2830 (|#2| $))))
-((-3834 (((-112) $ $) NIL)) (-3032 (((-549) $) 15)) (-2511 (($ (-155)) 11)) (-3177 (($ (-155)) 12)) (-3851 (((-1125) $) NIL)) (-1886 (((-155) $) 13)) (-3990 (((-1087) $) NIL)) (-2728 (($ (-155)) 9)) (-1385 (($ (-155)) 8)) (-3846 (((-834) $) 23) (($ (-155)) 16)) (-3274 (($ (-155)) 10)) (-2389 (((-112) $ $) NIL)))
-(((-845) (-13 (-1067) (-10 -8 (-15 -1385 ($ (-155))) (-15 -2728 ($ (-155))) (-15 -3274 ($ (-155))) (-15 -2511 ($ (-155))) (-15 -3177 ($ (-155))) (-15 -1886 ((-155) $)) (-15 -3032 ((-549) $)) (-15 -3846 ($ (-155)))))) (T -845))
-((-1385 (*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))) (-2728 (*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))) (-3274 (*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))) (-2511 (*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))) (-3177 (*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))) (-1886 (*1 *2 *1) (-12 (-5 *2 (-155)) (-5 *1 (-845)))) (-3032 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-845)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))))
-(-13 (-1067) (-10 -8 (-15 -1385 ($ (-155))) (-15 -2728 ($ (-155))) (-15 -3274 ($ (-155))) (-15 -2511 ($ (-155))) (-15 -3177 ($ (-155))) (-15 -1886 ((-155) $)) (-15 -3032 ((-549) $)) (-15 -3846 ($ (-155)))))
-((-3846 (((-309 (-549)) (-400 (-923 (-48)))) 23) (((-309 (-549)) (-923 (-48))) 18)))
-(((-846) (-10 -7 (-15 -3846 ((-309 (-549)) (-923 (-48)))) (-15 -3846 ((-309 (-549)) (-400 (-923 (-48))))))) (T -846))
-((-3846 (*1 *2 *3) (-12 (-5 *3 (-400 (-923 (-48)))) (-5 *2 (-309 (-549))) (-5 *1 (-846)))) (-3846 (*1 *2 *3) (-12 (-5 *3 (-923 (-48))) (-5 *2 (-309 (-549))) (-5 *1 (-846)))))
-(-10 -7 (-15 -3846 ((-309 (-549)) (-923 (-48)))) (-15 -3846 ((-309 (-549)) (-400 (-923 (-48))))))
-((-2797 (((-848 |#2|) (-1 |#2| |#1|) (-848 |#1|)) 14)))
-(((-847 |#1| |#2|) (-10 -7 (-15 -2797 ((-848 |#2|) (-1 |#2| |#1|) (-848 |#1|)))) (-1180) (-1180)) (T -847))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-848 *5)) (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-848 *6)) (-5 *1 (-847 *5 *6)))))
-(-10 -7 (-15 -2797 ((-848 |#2|) (-1 |#2| |#1|) (-848 |#1|))))
-((-2237 (($ |#1| |#1|) 8)) (-2449 ((|#1| $ (-747)) 10)))
-(((-848 |#1|) (-10 -8 (-15 -2237 ($ |#1| |#1|)) (-15 -2449 (|#1| $ (-747)))) (-1180)) (T -848))
-((-2449 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *1 (-848 *2)) (-4 *2 (-1180)))) (-2237 (*1 *1 *2 *2) (-12 (-5 *1 (-848 *2)) (-4 *2 (-1180)))))
-(-10 -8 (-15 -2237 ($ |#1| |#1|)) (-15 -2449 (|#1| $ (-747))))
-((-2797 (((-850 |#2|) (-1 |#2| |#1|) (-850 |#1|)) 14)))
-(((-849 |#1| |#2|) (-10 -7 (-15 -2797 ((-850 |#2|) (-1 |#2| |#1|) (-850 |#1|)))) (-1180) (-1180)) (T -849))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-850 *5)) (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-850 *6)) (-5 *1 (-849 *5 *6)))))
-(-10 -7 (-15 -2797 ((-850 |#2|) (-1 |#2| |#1|) (-850 |#1|))))
-((-2237 (($ |#1| |#1| |#1|) 8)) (-2449 ((|#1| $ (-747)) 10)))
-(((-850 |#1|) (-10 -8 (-15 -2237 ($ |#1| |#1| |#1|)) (-15 -2449 (|#1| $ (-747)))) (-1180)) (T -850))
-((-2449 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *1 (-850 *2)) (-4 *2 (-1180)))) (-2237 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-850 *2)) (-4 *2 (-1180)))))
-(-10 -8 (-15 -2237 ($ |#1| |#1| |#1|)) (-15 -2449 (|#1| $ (-747))))
-((-2346 (((-621 (-1148)) (-1125)) 9)))
-(((-851) (-10 -7 (-15 -2346 ((-621 (-1148)) (-1125))))) (T -851))
-((-2346 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-621 (-1148))) (-5 *1 (-851)))))
-(-10 -7 (-15 -2346 ((-621 (-1148)) (-1125))))
-((-2797 (((-853 |#2|) (-1 |#2| |#1|) (-853 |#1|)) 14)))
-(((-852 |#1| |#2|) (-10 -7 (-15 -2797 ((-853 |#2|) (-1 |#2| |#1|) (-853 |#1|)))) (-1180) (-1180)) (T -852))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-853 *5)) (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-853 *6)) (-5 *1 (-852 *5 *6)))))
-(-10 -7 (-15 -2797 ((-853 |#2|) (-1 |#2| |#1|) (-853 |#1|))))
-((-1792 (($ |#1| |#1| |#1|) 8)) (-2449 ((|#1| $ (-747)) 10)))
-(((-853 |#1|) (-10 -8 (-15 -1792 ($ |#1| |#1| |#1|)) (-15 -2449 (|#1| $ (-747)))) (-1180)) (T -853))
-((-2449 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *1 (-853 *2)) (-4 *2 (-1180)))) (-1792 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-853 *2)) (-4 *2 (-1180)))))
-(-10 -8 (-15 -1792 ($ |#1| |#1| |#1|)) (-15 -2449 (|#1| $ (-747))))
-((-4103 (((-1123 (-621 (-549))) (-621 (-549)) (-1123 (-621 (-549)))) 32)) (-2660 (((-1123 (-621 (-549))) (-621 (-549)) (-621 (-549))) 28)) (-1473 (((-1123 (-621 (-549))) (-621 (-549))) 41) (((-1123 (-621 (-549))) (-621 (-549)) (-621 (-549))) 40)) (-2598 (((-1123 (-621 (-549))) (-549)) 42)) (-3118 (((-1123 (-621 (-549))) (-549) (-549)) 22) (((-1123 (-621 (-549))) (-549)) 16) (((-1123 (-621 (-549))) (-549) (-549) (-549)) 12)) (-2735 (((-1123 (-621 (-549))) (-1123 (-621 (-549)))) 26)) (-1955 (((-621 (-549)) (-621 (-549))) 25)))
-(((-854) (-10 -7 (-15 -3118 ((-1123 (-621 (-549))) (-549) (-549) (-549))) (-15 -3118 ((-1123 (-621 (-549))) (-549))) (-15 -3118 ((-1123 (-621 (-549))) (-549) (-549))) (-15 -1955 ((-621 (-549)) (-621 (-549)))) (-15 -2735 ((-1123 (-621 (-549))) (-1123 (-621 (-549))))) (-15 -2660 ((-1123 (-621 (-549))) (-621 (-549)) (-621 (-549)))) (-15 -4103 ((-1123 (-621 (-549))) (-621 (-549)) (-1123 (-621 (-549))))) (-15 -1473 ((-1123 (-621 (-549))) (-621 (-549)) (-621 (-549)))) (-15 -1473 ((-1123 (-621 (-549))) (-621 (-549)))) (-15 -2598 ((-1123 (-621 (-549))) (-549))))) (T -854))
-((-2598 (*1 *2 *3) (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-549)))) (-1473 (*1 *2 *3) (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-621 (-549))))) (-1473 (*1 *2 *3 *3) (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-621 (-549))))) (-4103 (*1 *2 *3 *2) (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *3 (-621 (-549))) (-5 *1 (-854)))) (-2660 (*1 *2 *3 *3) (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-621 (-549))))) (-2735 (*1 *2 *2) (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *1 (-854)))) (-1955 (*1 *2 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-854)))) (-3118 (*1 *2 *3 *3) (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-549)))) (-3118 (*1 *2 *3) (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-549)))) (-3118 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-549)))))
-(-10 -7 (-15 -3118 ((-1123 (-621 (-549))) (-549) (-549) (-549))) (-15 -3118 ((-1123 (-621 (-549))) (-549))) (-15 -3118 ((-1123 (-621 (-549))) (-549) (-549))) (-15 -1955 ((-621 (-549)) (-621 (-549)))) (-15 -2735 ((-1123 (-621 (-549))) (-1123 (-621 (-549))))) (-15 -2660 ((-1123 (-621 (-549))) (-621 (-549)) (-621 (-549)))) (-15 -4103 ((-1123 (-621 (-549))) (-621 (-549)) (-1123 (-621 (-549))))) (-15 -1473 ((-1123 (-621 (-549))) (-621 (-549)) (-621 (-549)))) (-15 -1473 ((-1123 (-621 (-549))) (-621 (-549)))) (-15 -2598 ((-1123 (-621 (-549))) (-549))))
-((-2845 (((-863 (-372)) $) 9 (|has| |#1| (-594 (-863 (-372))))) (((-863 (-549)) $) 8 (|has| |#1| (-594 (-863 (-549)))))))
-(((-855 |#1|) (-138) (-1180)) (T -855))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3833 (((-841 |#1|) $) NIL (|has| (-841 |#1|) (-300)))) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-841 |#1|) (-880)))) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| (-841 |#1|) (-880)))) (-2680 (((-112) $ $) NIL)) (-1741 (((-549) $) NIL (|has| (-841 |#1|) (-796)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-841 |#1|) "failed") $) NIL) (((-3 (-1142) "failed") $) NIL (|has| (-841 |#1|) (-1009 (-1142)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-841 |#1|) (-1009 (-549)))) (((-3 (-549) "failed") $) NIL (|has| (-841 |#1|) (-1009 (-549))))) (-2657 (((-841 |#1|) $) NIL) (((-1142) $) NIL (|has| (-841 |#1|) (-1009 (-1142)))) (((-400 (-549)) $) NIL (|has| (-841 |#1|) (-1009 (-549)))) (((-549) $) NIL (|has| (-841 |#1|) (-1009 (-549))))) (-1904 (($ $) NIL) (($ (-549) $) NIL)) (-2091 (($ $ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| (-841 |#1|) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| (-841 |#1|) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-841 |#1|))) (|:| |vec| (-1225 (-841 |#1|)))) (-665 $) (-1225 $)) NIL) (((-665 (-841 |#1|)) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) NIL (|has| (-841 |#1|) (-534)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-2357 (((-112) $) NIL (|has| (-841 |#1|) (-796)))) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| (-841 |#1|) (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| (-841 |#1|) (-857 (-372))))) (-2297 (((-112) $) NIL)) (-2096 (($ $) NIL)) (-1392 (((-841 |#1|) $) NIL)) (-2964 (((-3 $ "failed") $) NIL (|has| (-841 |#1|) (-1117)))) (-1992 (((-112) $) NIL (|has| (-841 |#1|) (-796)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2861 (($ $ $) NIL (|has| (-841 |#1|) (-823)))) (-3574 (($ $ $) NIL (|has| (-841 |#1|) (-823)))) (-2795 (($ (-1 (-841 |#1|) (-841 |#1|)) $) NIL)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL (|has| (-841 |#1|) (-1117)) CONST)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1512 (($ $) NIL (|has| (-841 |#1|) (-300)))) (-1349 (((-841 |#1|) $) NIL (|has| (-841 |#1|) (-534)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-841 |#1|) (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-841 |#1|) (-880)))) (-2119 (((-411 $) $) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2684 (($ $ (-621 (-841 |#1|)) (-621 (-841 |#1|))) NIL (|has| (-841 |#1|) (-302 (-841 |#1|)))) (($ $ (-841 |#1|) (-841 |#1|)) NIL (|has| (-841 |#1|) (-302 (-841 |#1|)))) (($ $ (-287 (-841 |#1|))) NIL (|has| (-841 |#1|) (-302 (-841 |#1|)))) (($ $ (-621 (-287 (-841 |#1|)))) NIL (|has| (-841 |#1|) (-302 (-841 |#1|)))) (($ $ (-621 (-1142)) (-621 (-841 |#1|))) NIL (|has| (-841 |#1|) (-505 (-1142) (-841 |#1|)))) (($ $ (-1142) (-841 |#1|)) NIL (|has| (-841 |#1|) (-505 (-1142) (-841 |#1|))))) (-1335 (((-747) $) NIL)) (-3339 (($ $ (-841 |#1|)) NIL (|has| (-841 |#1|) (-279 (-841 |#1|) (-841 |#1|))))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3455 (($ $) NIL (|has| (-841 |#1|) (-227))) (($ $ (-747)) NIL (|has| (-841 |#1|) (-227))) (($ $ (-1142)) NIL (|has| (-841 |#1|) (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| (-841 |#1|) (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| (-841 |#1|) (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| (-841 |#1|) (-871 (-1142)))) (($ $ (-1 (-841 |#1|) (-841 |#1|)) (-747)) NIL) (($ $ (-1 (-841 |#1|) (-841 |#1|))) NIL)) (-4095 (($ $) NIL)) (-1404 (((-841 |#1|) $) NIL)) (-2843 (((-863 (-549)) $) NIL (|has| (-841 |#1|) (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| (-841 |#1|) (-594 (-863 (-372))))) (((-525) $) NIL (|has| (-841 |#1|) (-594 (-525)))) (((-372) $) NIL (|has| (-841 |#1|) (-993))) (((-219) $) NIL (|has| (-841 |#1|) (-993)))) (-2455 (((-172 (-400 (-549))) $) NIL)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-841 |#1|) (-880))))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL) (($ (-841 |#1|)) NIL) (($ (-1142)) NIL (|has| (-841 |#1|) (-1009 (-1142))))) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-841 |#1|) (-880))) (|has| (-841 |#1|) (-143))))) (-2371 (((-747)) NIL)) (-3497 (((-841 |#1|) $) NIL (|has| (-841 |#1|) (-534)))) (-2441 (((-112) $ $) NIL)) (-2659 (((-400 (-549)) $ (-549)) NIL)) (-2199 (($ $) NIL (|has| (-841 |#1|) (-796)))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $) NIL (|has| (-841 |#1|) (-227))) (($ $ (-747)) NIL (|has| (-841 |#1|) (-227))) (($ $ (-1142)) NIL (|has| (-841 |#1|) (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| (-841 |#1|) (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| (-841 |#1|) (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| (-841 |#1|) (-871 (-1142)))) (($ $ (-1 (-841 |#1|) (-841 |#1|)) (-747)) NIL) (($ $ (-1 (-841 |#1|) (-841 |#1|))) NIL)) (-2447 (((-112) $ $) NIL (|has| (-841 |#1|) (-823)))) (-2423 (((-112) $ $) NIL (|has| (-841 |#1|) (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| (-841 |#1|) (-823)))) (-2409 (((-112) $ $) NIL (|has| (-841 |#1|) (-823)))) (-2511 (($ $ $) NIL) (($ (-841 |#1|) (-841 |#1|)) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ (-841 |#1|) $) NIL) (($ $ (-841 |#1|)) NIL)))
+(((-842 |#1|) (-13 (-963 (-841 |#1|)) (-10 -8 (-15 -2659 ((-400 (-549)) $ (-549))) (-15 -2455 ((-172 (-400 (-549))) $)) (-15 -1904 ($ $)) (-15 -1904 ($ (-549) $)))) (-549)) (T -842))
+((-2659 (*1 *2 *1 *3) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-842 *4)) (-14 *4 *3) (-5 *3 (-549)))) (-2455 (*1 *2 *1) (-12 (-5 *2 (-172 (-400 (-549)))) (-5 *1 (-842 *3)) (-14 *3 (-549)))) (-1904 (*1 *1 *1) (-12 (-5 *1 (-842 *2)) (-14 *2 (-549)))) (-1904 (*1 *1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-842 *3)) (-14 *3 *2))))
+(-13 (-963 (-841 |#1|)) (-10 -8 (-15 -2659 ((-400 (-549)) $ (-549))) (-15 -2455 ((-172 (-400 (-549))) $)) (-15 -1904 ($ $)) (-15 -1904 ($ (-549) $))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3833 ((|#2| $) NIL (|has| |#2| (-300)))) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-2680 (((-112) $ $) NIL)) (-1741 (((-549) $) NIL (|has| |#2| (-796)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#2| "failed") $) NIL) (((-3 (-1142) "failed") $) NIL (|has| |#2| (-1009 (-1142)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549))))) (-2657 ((|#2| $) NIL) (((-1142) $) NIL (|has| |#2| (-1009 (-1142)))) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-549)))) (((-549) $) NIL (|has| |#2| (-1009 (-549))))) (-1904 (($ $) 31) (($ (-549) $) 32)) (-2091 (($ $ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) NIL) (((-665 |#2|) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) 53)) (-3237 (($) NIL (|has| |#2| (-534)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-2357 (((-112) $) NIL (|has| |#2| (-796)))) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| |#2| (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| |#2| (-857 (-372))))) (-2297 (((-112) $) NIL)) (-2096 (($ $) NIL)) (-1392 ((|#2| $) NIL)) (-2964 (((-3 $ "failed") $) NIL (|has| |#2| (-1117)))) (-1992 (((-112) $) NIL (|has| |#2| (-796)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2861 (($ $ $) NIL (|has| |#2| (-823)))) (-3574 (($ $ $) NIL (|has| |#2| (-823)))) (-2795 (($ (-1 |#2| |#2|) $) NIL)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 49)) (-3059 (($) NIL (|has| |#2| (-1117)) CONST)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1512 (($ $) NIL (|has| |#2| (-300)))) (-1349 ((|#2| $) NIL (|has| |#2| (-534)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-2119 (((-411 $) $) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2684 (($ $ (-621 |#2|) (-621 |#2|)) NIL (|has| |#2| (-302 |#2|))) (($ $ |#2| |#2|) NIL (|has| |#2| (-302 |#2|))) (($ $ (-287 |#2|)) NIL (|has| |#2| (-302 |#2|))) (($ $ (-621 (-287 |#2|))) NIL (|has| |#2| (-302 |#2|))) (($ $ (-621 (-1142)) (-621 |#2|)) NIL (|has| |#2| (-505 (-1142) |#2|))) (($ $ (-1142) |#2|) NIL (|has| |#2| (-505 (-1142) |#2|)))) (-1335 (((-747) $) NIL)) (-3339 (($ $ |#2|) NIL (|has| |#2| (-279 |#2| |#2|)))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3455 (($ $) NIL (|has| |#2| (-227))) (($ $ (-747)) NIL (|has| |#2| (-227))) (($ $ (-1142)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-4095 (($ $) NIL)) (-1404 ((|#2| $) NIL)) (-2843 (((-863 (-549)) $) NIL (|has| |#2| (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| |#2| (-594 (-863 (-372))))) (((-525) $) NIL (|has| |#2| (-594 (-525)))) (((-372) $) NIL (|has| |#2| (-993))) (((-219) $) NIL (|has| |#2| (-993)))) (-2455 (((-172 (-400 (-549))) $) 68)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#2| (-880))))) (-3845 (((-834) $) 87) (($ (-549)) 19) (($ $) NIL) (($ (-400 (-549))) 24) (($ |#2|) 18) (($ (-1142)) NIL (|has| |#2| (-1009 (-1142))))) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#2| (-880))) (|has| |#2| (-143))))) (-2371 (((-747)) NIL)) (-3497 ((|#2| $) NIL (|has| |#2| (-534)))) (-2441 (((-112) $ $) NIL)) (-2659 (((-400 (-549)) $ (-549)) 60)) (-2199 (($ $) NIL (|has| |#2| (-796)))) (-3274 (($) 14 T CONST)) (-3286 (($) 16 T CONST)) (-1699 (($ $) NIL (|has| |#2| (-227))) (($ $ (-747)) NIL (|has| |#2| (-227))) (($ $ (-1142)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-2447 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2387 (((-112) $ $) 35)) (-2436 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2511 (($ $ $) 23) (($ |#2| |#2|) 54)) (-2498 (($ $) 39) (($ $ $) 41)) (-2484 (($ $ $) 37)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) 50)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 42) (($ $ $) 44) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ |#2| $) 55) (($ $ |#2|) NIL)))
+(((-843 |#1| |#2|) (-13 (-963 |#2|) (-10 -8 (-15 -2659 ((-400 (-549)) $ (-549))) (-15 -2455 ((-172 (-400 (-549))) $)) (-15 -1904 ($ $)) (-15 -1904 ($ (-549) $)))) (-549) (-840 |#1|)) (T -843))
+((-2659 (*1 *2 *1 *3) (-12 (-14 *4 *3) (-5 *2 (-400 (-549))) (-5 *1 (-843 *4 *5)) (-5 *3 (-549)) (-4 *5 (-840 *4)))) (-2455 (*1 *2 *1) (-12 (-14 *3 (-549)) (-5 *2 (-172 (-400 (-549)))) (-5 *1 (-843 *3 *4)) (-4 *4 (-840 *3)))) (-1904 (*1 *1 *1) (-12 (-14 *2 (-549)) (-5 *1 (-843 *2 *3)) (-4 *3 (-840 *2)))) (-1904 (*1 *1 *2 *1) (-12 (-5 *2 (-549)) (-14 *3 *2) (-5 *1 (-843 *3 *4)) (-4 *4 (-840 *3)))))
+(-13 (-963 |#2|) (-10 -8 (-15 -2659 ((-400 (-549)) $ (-549))) (-15 -2455 ((-172 (-400 (-549))) $)) (-15 -1904 ($ $)) (-15 -1904 ($ (-549) $))))
+((-3832 (((-112) $ $) NIL (-12 (|has| |#1| (-1066)) (|has| |#2| (-1066))))) (-2827 ((|#2| $) 12)) (-3527 (($ |#1| |#2|) 9)) (-3441 (((-1124) $) NIL (-12 (|has| |#1| (-1066)) (|has| |#2| (-1066))))) (-3988 (((-1086) $) NIL (-12 (|has| |#1| (-1066)) (|has| |#2| (-1066))))) (-3645 ((|#1| $) 11)) (-3853 (($ |#1| |#2|) 10)) (-3845 (((-834) $) 18 (-1536 (-12 (|has| |#1| (-593 (-834))) (|has| |#2| (-593 (-834)))) (-12 (|has| |#1| (-1066)) (|has| |#2| (-1066)))))) (-2387 (((-112) $ $) 22 (-12 (|has| |#1| (-1066)) (|has| |#2| (-1066))))))
+(((-844 |#1| |#2|) (-13 (-1179) (-10 -8 (IF (|has| |#1| (-593 (-834))) (IF (|has| |#2| (-593 (-834))) (-6 (-593 (-834))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1066)) (IF (|has| |#2| (-1066)) (-6 (-1066)) |%noBranch|) |%noBranch|) (-15 -3527 ($ |#1| |#2|)) (-15 -3853 ($ |#1| |#2|)) (-15 -3645 (|#1| $)) (-15 -2827 (|#2| $)))) (-1179) (-1179)) (T -844))
+((-3527 (*1 *1 *2 *3) (-12 (-5 *1 (-844 *2 *3)) (-4 *2 (-1179)) (-4 *3 (-1179)))) (-3853 (*1 *1 *2 *3) (-12 (-5 *1 (-844 *2 *3)) (-4 *2 (-1179)) (-4 *3 (-1179)))) (-3645 (*1 *2 *1) (-12 (-4 *2 (-1179)) (-5 *1 (-844 *2 *3)) (-4 *3 (-1179)))) (-2827 (*1 *2 *1) (-12 (-4 *2 (-1179)) (-5 *1 (-844 *3 *2)) (-4 *3 (-1179)))))
+(-13 (-1179) (-10 -8 (IF (|has| |#1| (-593 (-834))) (IF (|has| |#2| (-593 (-834))) (-6 (-593 (-834))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1066)) (IF (|has| |#2| (-1066)) (-6 (-1066)) |%noBranch|) |%noBranch|) (-15 -3527 ($ |#1| |#2|)) (-15 -3853 ($ |#1| |#2|)) (-15 -3645 (|#1| $)) (-15 -2827 (|#2| $))))
+((-3832 (((-112) $ $) NIL)) (-1466 (((-549) $) 15)) (-4255 (($ (-155)) 11)) (-3660 (($ (-155)) 12)) (-3441 (((-1124) $) NIL)) (-2725 (((-155) $) 13)) (-3988 (((-1086) $) NIL)) (-2724 (($ (-155)) 9)) (-1499 (($ (-155)) 8)) (-3845 (((-834) $) 23) (($ (-155)) 16)) (-3271 (($ (-155)) 10)) (-2387 (((-112) $ $) NIL)))
+(((-845) (-13 (-1066) (-10 -8 (-15 -1499 ($ (-155))) (-15 -2724 ($ (-155))) (-15 -3271 ($ (-155))) (-15 -4255 ($ (-155))) (-15 -3660 ($ (-155))) (-15 -2725 ((-155) $)) (-15 -1466 ((-549) $)) (-15 -3845 ($ (-155)))))) (T -845))
+((-1499 (*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))) (-2724 (*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))) (-3271 (*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))) (-4255 (*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))) (-3660 (*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))) (-2725 (*1 *2 *1) (-12 (-5 *2 (-155)) (-5 *1 (-845)))) (-1466 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-845)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))))
+(-13 (-1066) (-10 -8 (-15 -1499 ($ (-155))) (-15 -2724 ($ (-155))) (-15 -3271 ($ (-155))) (-15 -4255 ($ (-155))) (-15 -3660 ($ (-155))) (-15 -2725 ((-155) $)) (-15 -1466 ((-549) $)) (-15 -3845 ($ (-155)))))
+((-3845 (((-309 (-549)) (-400 (-923 (-48)))) 23) (((-309 (-549)) (-923 (-48))) 18)))
+(((-846) (-10 -7 (-15 -3845 ((-309 (-549)) (-923 (-48)))) (-15 -3845 ((-309 (-549)) (-400 (-923 (-48))))))) (T -846))
+((-3845 (*1 *2 *3) (-12 (-5 *3 (-400 (-923 (-48)))) (-5 *2 (-309 (-549))) (-5 *1 (-846)))) (-3845 (*1 *2 *3) (-12 (-5 *3 (-923 (-48))) (-5 *2 (-309 (-549))) (-5 *1 (-846)))))
+(-10 -7 (-15 -3845 ((-309 (-549)) (-923 (-48)))) (-15 -3845 ((-309 (-549)) (-400 (-923 (-48))))))
+((-2795 (((-848 |#2|) (-1 |#2| |#1|) (-848 |#1|)) 14)))
+(((-847 |#1| |#2|) (-10 -7 (-15 -2795 ((-848 |#2|) (-1 |#2| |#1|) (-848 |#1|)))) (-1179) (-1179)) (T -847))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-848 *5)) (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-848 *6)) (-5 *1 (-847 *5 *6)))))
+(-10 -7 (-15 -2795 ((-848 |#2|) (-1 |#2| |#1|) (-848 |#1|))))
+((-1906 (($ |#1| |#1|) 8)) (-3739 ((|#1| $ (-747)) 10)))
+(((-848 |#1|) (-10 -8 (-15 -1906 ($ |#1| |#1|)) (-15 -3739 (|#1| $ (-747)))) (-1179)) (T -848))
+((-3739 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *1 (-848 *2)) (-4 *2 (-1179)))) (-1906 (*1 *1 *2 *2) (-12 (-5 *1 (-848 *2)) (-4 *2 (-1179)))))
+(-10 -8 (-15 -1906 ($ |#1| |#1|)) (-15 -3739 (|#1| $ (-747))))
+((-2795 (((-850 |#2|) (-1 |#2| |#1|) (-850 |#1|)) 14)))
+(((-849 |#1| |#2|) (-10 -7 (-15 -2795 ((-850 |#2|) (-1 |#2| |#1|) (-850 |#1|)))) (-1179) (-1179)) (T -849))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-850 *5)) (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-850 *6)) (-5 *1 (-849 *5 *6)))))
+(-10 -7 (-15 -2795 ((-850 |#2|) (-1 |#2| |#1|) (-850 |#1|))))
+((-1906 (($ |#1| |#1| |#1|) 8)) (-3739 ((|#1| $ (-747)) 10)))
+(((-850 |#1|) (-10 -8 (-15 -1906 ($ |#1| |#1| |#1|)) (-15 -3739 (|#1| $ (-747)))) (-1179)) (T -850))
+((-3739 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *1 (-850 *2)) (-4 *2 (-1179)))) (-1906 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-850 *2)) (-4 *2 (-1179)))))
+(-10 -8 (-15 -1906 ($ |#1| |#1| |#1|)) (-15 -3739 (|#1| $ (-747))))
+((-3662 (((-621 (-1147)) (-1124)) 9)))
+(((-851) (-10 -7 (-15 -3662 ((-621 (-1147)) (-1124))))) (T -851))
+((-3662 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-621 (-1147))) (-5 *1 (-851)))))
+(-10 -7 (-15 -3662 ((-621 (-1147)) (-1124))))
+((-2795 (((-853 |#2|) (-1 |#2| |#1|) (-853 |#1|)) 14)))
+(((-852 |#1| |#2|) (-10 -7 (-15 -2795 ((-853 |#2|) (-1 |#2| |#1|) (-853 |#1|)))) (-1179) (-1179)) (T -852))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-853 *5)) (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-853 *6)) (-5 *1 (-852 *5 *6)))))
+(-10 -7 (-15 -2795 ((-853 |#2|) (-1 |#2| |#1|) (-853 |#1|))))
+((-2257 (($ |#1| |#1| |#1|) 8)) (-3739 ((|#1| $ (-747)) 10)))
+(((-853 |#1|) (-10 -8 (-15 -2257 ($ |#1| |#1| |#1|)) (-15 -3739 (|#1| $ (-747)))) (-1179)) (T -853))
+((-3739 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *1 (-853 *2)) (-4 *2 (-1179)))) (-2257 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-853 *2)) (-4 *2 (-1179)))))
+(-10 -8 (-15 -2257 ($ |#1| |#1| |#1|)) (-15 -3739 (|#1| $ (-747))))
+((-3749 (((-1122 (-621 (-549))) (-621 (-549)) (-1122 (-621 (-549)))) 32)) (-2749 (((-1122 (-621 (-549))) (-621 (-549)) (-621 (-549))) 28)) (-3968 (((-1122 (-621 (-549))) (-621 (-549))) 41) (((-1122 (-621 (-549))) (-621 (-549)) (-621 (-549))) 40)) (-1344 (((-1122 (-621 (-549))) (-549)) 42)) (-2168 (((-1122 (-621 (-549))) (-549) (-549)) 22) (((-1122 (-621 (-549))) (-549)) 16) (((-1122 (-621 (-549))) (-549) (-549) (-549)) 12)) (-2559 (((-1122 (-621 (-549))) (-1122 (-621 (-549)))) 26)) (-1795 (((-621 (-549)) (-621 (-549))) 25)))
+(((-854) (-10 -7 (-15 -2168 ((-1122 (-621 (-549))) (-549) (-549) (-549))) (-15 -2168 ((-1122 (-621 (-549))) (-549))) (-15 -2168 ((-1122 (-621 (-549))) (-549) (-549))) (-15 -1795 ((-621 (-549)) (-621 (-549)))) (-15 -2559 ((-1122 (-621 (-549))) (-1122 (-621 (-549))))) (-15 -2749 ((-1122 (-621 (-549))) (-621 (-549)) (-621 (-549)))) (-15 -3749 ((-1122 (-621 (-549))) (-621 (-549)) (-1122 (-621 (-549))))) (-15 -3968 ((-1122 (-621 (-549))) (-621 (-549)) (-621 (-549)))) (-15 -3968 ((-1122 (-621 (-549))) (-621 (-549)))) (-15 -1344 ((-1122 (-621 (-549))) (-549))))) (T -854))
+((-1344 (*1 *2 *3) (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-549)))) (-3968 (*1 *2 *3) (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-621 (-549))))) (-3968 (*1 *2 *3 *3) (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-621 (-549))))) (-3749 (*1 *2 *3 *2) (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *3 (-621 (-549))) (-5 *1 (-854)))) (-2749 (*1 *2 *3 *3) (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-621 (-549))))) (-2559 (*1 *2 *2) (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *1 (-854)))) (-1795 (*1 *2 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-854)))) (-2168 (*1 *2 *3 *3) (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-549)))) (-2168 (*1 *2 *3) (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-549)))) (-2168 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-549)))))
+(-10 -7 (-15 -2168 ((-1122 (-621 (-549))) (-549) (-549) (-549))) (-15 -2168 ((-1122 (-621 (-549))) (-549))) (-15 -2168 ((-1122 (-621 (-549))) (-549) (-549))) (-15 -1795 ((-621 (-549)) (-621 (-549)))) (-15 -2559 ((-1122 (-621 (-549))) (-1122 (-621 (-549))))) (-15 -2749 ((-1122 (-621 (-549))) (-621 (-549)) (-621 (-549)))) (-15 -3749 ((-1122 (-621 (-549))) (-621 (-549)) (-1122 (-621 (-549))))) (-15 -3968 ((-1122 (-621 (-549))) (-621 (-549)) (-621 (-549)))) (-15 -3968 ((-1122 (-621 (-549))) (-621 (-549)))) (-15 -1344 ((-1122 (-621 (-549))) (-549))))
+((-2843 (((-863 (-372)) $) 9 (|has| |#1| (-594 (-863 (-372))))) (((-863 (-549)) $) 8 (|has| |#1| (-594 (-863 (-549)))))))
+(((-855 |#1|) (-138) (-1179)) (T -855))
NIL
(-13 (-10 -7 (IF (|has| |t#1| (-594 (-863 (-549)))) (-6 (-594 (-863 (-549)))) |%noBranch|) (IF (|has| |t#1| (-594 (-863 (-372)))) (-6 (-594 (-863 (-372)))) |%noBranch|)))
(((-594 (-863 (-372))) |has| |#1| (-594 (-863 (-372)))) ((-594 (-863 (-549))) |has| |#1| (-594 (-863 (-549)))))
-((-3834 (((-112) $ $) NIL)) (-3743 (($) 14)) (-3158 (($ (-860 |#1| |#2|) (-860 |#1| |#3|)) 27)) (-3183 (((-860 |#1| |#3|) $) 16)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3336 (((-112) $) 22)) (-4151 (($) 19)) (-3846 (((-834) $) 30)) (-3178 (((-860 |#1| |#2|) $) 15)) (-2389 (((-112) $ $) 25)))
-(((-856 |#1| |#2| |#3|) (-13 (-1067) (-10 -8 (-15 -3336 ((-112) $)) (-15 -4151 ($)) (-15 -3743 ($)) (-15 -3158 ($ (-860 |#1| |#2|) (-860 |#1| |#3|))) (-15 -3178 ((-860 |#1| |#2|) $)) (-15 -3183 ((-860 |#1| |#3|) $)))) (-1067) (-1067) (-642 |#2|)) (T -856))
-((-3336 (*1 *2 *1) (-12 (-4 *4 (-1067)) (-5 *2 (-112)) (-5 *1 (-856 *3 *4 *5)) (-4 *3 (-1067)) (-4 *5 (-642 *4)))) (-4151 (*1 *1) (-12 (-4 *3 (-1067)) (-5 *1 (-856 *2 *3 *4)) (-4 *2 (-1067)) (-4 *4 (-642 *3)))) (-3743 (*1 *1) (-12 (-4 *3 (-1067)) (-5 *1 (-856 *2 *3 *4)) (-4 *2 (-1067)) (-4 *4 (-642 *3)))) (-3158 (*1 *1 *2 *3) (-12 (-5 *2 (-860 *4 *5)) (-5 *3 (-860 *4 *6)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-642 *5)) (-5 *1 (-856 *4 *5 *6)))) (-3178 (*1 *2 *1) (-12 (-4 *4 (-1067)) (-5 *2 (-860 *3 *4)) (-5 *1 (-856 *3 *4 *5)) (-4 *3 (-1067)) (-4 *5 (-642 *4)))) (-3183 (*1 *2 *1) (-12 (-4 *4 (-1067)) (-5 *2 (-860 *3 *5)) (-5 *1 (-856 *3 *4 *5)) (-4 *3 (-1067)) (-4 *5 (-642 *4)))))
-(-13 (-1067) (-10 -8 (-15 -3336 ((-112) $)) (-15 -4151 ($)) (-15 -3743 ($)) (-15 -3158 ($ (-860 |#1| |#2|) (-860 |#1| |#3|))) (-15 -3178 ((-860 |#1| |#2|) $)) (-15 -3183 ((-860 |#1| |#3|) $))))
-((-3834 (((-112) $ $) 7)) (-2932 (((-860 |#1| $) $ (-863 |#1|) (-860 |#1| $)) 13)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-2389 (((-112) $ $) 6)))
-(((-857 |#1|) (-138) (-1067)) (T -857))
-((-2932 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-860 *4 *1)) (-5 *3 (-863 *4)) (-4 *1 (-857 *4)) (-4 *4 (-1067)))))
-(-13 (-1067) (-10 -8 (-15 -2932 ((-860 |t#1| $) $ (-863 |t#1|) (-860 |t#1| $)))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-3421 (((-112) (-621 |#2|) |#3|) 23) (((-112) |#2| |#3|) 18)) (-3286 (((-860 |#1| |#2|) |#2| |#3|) 43 (-12 (-4008 (|has| |#2| (-1009 (-1143)))) (-4008 (|has| |#2| (-1018))))) (((-621 (-287 (-923 |#2|))) |#2| |#3|) 42 (-12 (|has| |#2| (-1018)) (-4008 (|has| |#2| (-1009 (-1143)))))) (((-621 (-287 |#2|)) |#2| |#3|) 35 (|has| |#2| (-1009 (-1143)))) (((-856 |#1| |#2| (-621 |#2|)) (-621 |#2|) |#3|) 21)))
-(((-858 |#1| |#2| |#3|) (-10 -7 (-15 -3421 ((-112) |#2| |#3|)) (-15 -3421 ((-112) (-621 |#2|) |#3|)) (-15 -3286 ((-856 |#1| |#2| (-621 |#2|)) (-621 |#2|) |#3|)) (IF (|has| |#2| (-1009 (-1143))) (-15 -3286 ((-621 (-287 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1018)) (-15 -3286 ((-621 (-287 (-923 |#2|))) |#2| |#3|)) (-15 -3286 ((-860 |#1| |#2|) |#2| |#3|))))) (-1067) (-857 |#1|) (-594 (-863 |#1|))) (T -858))
-((-3286 (*1 *2 *3 *4) (-12 (-4 *5 (-1067)) (-5 *2 (-860 *5 *3)) (-5 *1 (-858 *5 *3 *4)) (-4008 (-4 *3 (-1009 (-1143)))) (-4008 (-4 *3 (-1018))) (-4 *3 (-857 *5)) (-4 *4 (-594 (-863 *5))))) (-3286 (*1 *2 *3 *4) (-12 (-4 *5 (-1067)) (-5 *2 (-621 (-287 (-923 *3)))) (-5 *1 (-858 *5 *3 *4)) (-4 *3 (-1018)) (-4008 (-4 *3 (-1009 (-1143)))) (-4 *3 (-857 *5)) (-4 *4 (-594 (-863 *5))))) (-3286 (*1 *2 *3 *4) (-12 (-4 *5 (-1067)) (-5 *2 (-621 (-287 *3))) (-5 *1 (-858 *5 *3 *4)) (-4 *3 (-1009 (-1143))) (-4 *3 (-857 *5)) (-4 *4 (-594 (-863 *5))))) (-3286 (*1 *2 *3 *4) (-12 (-4 *5 (-1067)) (-4 *6 (-857 *5)) (-5 *2 (-856 *5 *6 (-621 *6))) (-5 *1 (-858 *5 *6 *4)) (-5 *3 (-621 *6)) (-4 *4 (-594 (-863 *5))))) (-3421 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *6)) (-4 *6 (-857 *5)) (-4 *5 (-1067)) (-5 *2 (-112)) (-5 *1 (-858 *5 *6 *4)) (-4 *4 (-594 (-863 *5))))) (-3421 (*1 *2 *3 *4) (-12 (-4 *5 (-1067)) (-5 *2 (-112)) (-5 *1 (-858 *5 *3 *4)) (-4 *3 (-857 *5)) (-4 *4 (-594 (-863 *5))))))
-(-10 -7 (-15 -3421 ((-112) |#2| |#3|)) (-15 -3421 ((-112) (-621 |#2|) |#3|)) (-15 -3286 ((-856 |#1| |#2| (-621 |#2|)) (-621 |#2|) |#3|)) (IF (|has| |#2| (-1009 (-1143))) (-15 -3286 ((-621 (-287 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1018)) (-15 -3286 ((-621 (-287 (-923 |#2|))) |#2| |#3|)) (-15 -3286 ((-860 |#1| |#2|) |#2| |#3|)))))
-((-2797 (((-860 |#1| |#3|) (-1 |#3| |#2|) (-860 |#1| |#2|)) 22)))
-(((-859 |#1| |#2| |#3|) (-10 -7 (-15 -2797 ((-860 |#1| |#3|) (-1 |#3| |#2|) (-860 |#1| |#2|)))) (-1067) (-1067) (-1067)) (T -859))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-860 *5 *6)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-860 *5 *7)) (-5 *1 (-859 *5 *6 *7)))))
-(-10 -7 (-15 -2797 ((-860 |#1| |#3|) (-1 |#3| |#2|) (-860 |#1| |#2|))))
-((-3834 (((-112) $ $) NIL)) (-1442 (($ $ $) 39)) (-3026 (((-3 (-112) "failed") $ (-863 |#1|)) 36)) (-3743 (($) 12)) (-3851 (((-1125) $) NIL)) (-3934 (($ (-863 |#1|) |#2| $) 20)) (-3990 (((-1087) $) NIL)) (-2462 (((-3 |#2| "failed") (-863 |#1|) $) 50)) (-3336 (((-112) $) 15)) (-4151 (($) 13)) (-2197 (((-621 (-2 (|:| -3337 (-1143)) (|:| -1793 |#2|))) $) 25)) (-3854 (($ (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 |#2|)))) 23)) (-3846 (((-834) $) 44)) (-4082 (($ (-863 |#1|) |#2| $ |#2|) 48)) (-3389 (($ (-863 |#1|) |#2| $) 47)) (-2389 (((-112) $ $) 41)))
-(((-860 |#1| |#2|) (-13 (-1067) (-10 -8 (-15 -3336 ((-112) $)) (-15 -4151 ($)) (-15 -3743 ($)) (-15 -1442 ($ $ $)) (-15 -2462 ((-3 |#2| "failed") (-863 |#1|) $)) (-15 -3389 ($ (-863 |#1|) |#2| $)) (-15 -3934 ($ (-863 |#1|) |#2| $)) (-15 -4082 ($ (-863 |#1|) |#2| $ |#2|)) (-15 -2197 ((-621 (-2 (|:| -3337 (-1143)) (|:| -1793 |#2|))) $)) (-15 -3854 ($ (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 |#2|))))) (-15 -3026 ((-3 (-112) "failed") $ (-863 |#1|))))) (-1067) (-1067)) (T -860))
-((-3336 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-860 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067)))) (-4151 (*1 *1) (-12 (-5 *1 (-860 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067)))) (-3743 (*1 *1) (-12 (-5 *1 (-860 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067)))) (-1442 (*1 *1 *1 *1) (-12 (-5 *1 (-860 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067)))) (-2462 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-863 *4)) (-4 *4 (-1067)) (-4 *2 (-1067)) (-5 *1 (-860 *4 *2)))) (-3389 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-863 *4)) (-4 *4 (-1067)) (-5 *1 (-860 *4 *3)) (-4 *3 (-1067)))) (-3934 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-863 *4)) (-4 *4 (-1067)) (-5 *1 (-860 *4 *3)) (-4 *3 (-1067)))) (-4082 (*1 *1 *2 *3 *1 *3) (-12 (-5 *2 (-863 *4)) (-4 *4 (-1067)) (-5 *1 (-860 *4 *3)) (-4 *3 (-1067)))) (-2197 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 *4)))) (-5 *1 (-860 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067)))) (-3854 (*1 *1 *2) (-12 (-5 *2 (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 *4)))) (-4 *4 (-1067)) (-5 *1 (-860 *3 *4)) (-4 *3 (-1067)))) (-3026 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-863 *4)) (-4 *4 (-1067)) (-5 *2 (-112)) (-5 *1 (-860 *4 *5)) (-4 *5 (-1067)))))
-(-13 (-1067) (-10 -8 (-15 -3336 ((-112) $)) (-15 -4151 ($)) (-15 -3743 ($)) (-15 -1442 ($ $ $)) (-15 -2462 ((-3 |#2| "failed") (-863 |#1|) $)) (-15 -3389 ($ (-863 |#1|) |#2| $)) (-15 -3934 ($ (-863 |#1|) |#2| $)) (-15 -4082 ($ (-863 |#1|) |#2| $ |#2|)) (-15 -2197 ((-621 (-2 (|:| -3337 (-1143)) (|:| -1793 |#2|))) $)) (-15 -3854 ($ (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 |#2|))))) (-15 -3026 ((-3 (-112) "failed") $ (-863 |#1|)))))
-((-1863 (((-863 |#1|) (-863 |#1|) (-621 (-1143)) (-1 (-112) (-621 |#2|))) 32) (((-863 |#1|) (-863 |#1|) (-621 (-1 (-112) |#2|))) 43) (((-863 |#1|) (-863 |#1|) (-1 (-112) |#2|)) 35)) (-3026 (((-112) (-621 |#2|) (-863 |#1|)) 40) (((-112) |#2| (-863 |#1|)) 36)) (-2824 (((-1 (-112) |#2|) (-863 |#1|)) 16)) (-1324 (((-621 |#2|) (-863 |#1|)) 24)) (-3664 (((-863 |#1|) (-863 |#1|) |#2|) 20)))
-(((-861 |#1| |#2|) (-10 -7 (-15 -1863 ((-863 |#1|) (-863 |#1|) (-1 (-112) |#2|))) (-15 -1863 ((-863 |#1|) (-863 |#1|) (-621 (-1 (-112) |#2|)))) (-15 -1863 ((-863 |#1|) (-863 |#1|) (-621 (-1143)) (-1 (-112) (-621 |#2|)))) (-15 -2824 ((-1 (-112) |#2|) (-863 |#1|))) (-15 -3026 ((-112) |#2| (-863 |#1|))) (-15 -3026 ((-112) (-621 |#2|) (-863 |#1|))) (-15 -3664 ((-863 |#1|) (-863 |#1|) |#2|)) (-15 -1324 ((-621 |#2|) (-863 |#1|)))) (-1067) (-1180)) (T -861))
-((-1324 (*1 *2 *3) (-12 (-5 *3 (-863 *4)) (-4 *4 (-1067)) (-5 *2 (-621 *5)) (-5 *1 (-861 *4 *5)) (-4 *5 (-1180)))) (-3664 (*1 *2 *2 *3) (-12 (-5 *2 (-863 *4)) (-4 *4 (-1067)) (-5 *1 (-861 *4 *3)) (-4 *3 (-1180)))) (-3026 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *6)) (-5 *4 (-863 *5)) (-4 *5 (-1067)) (-4 *6 (-1180)) (-5 *2 (-112)) (-5 *1 (-861 *5 *6)))) (-3026 (*1 *2 *3 *4) (-12 (-5 *4 (-863 *5)) (-4 *5 (-1067)) (-5 *2 (-112)) (-5 *1 (-861 *5 *3)) (-4 *3 (-1180)))) (-2824 (*1 *2 *3) (-12 (-5 *3 (-863 *4)) (-4 *4 (-1067)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-861 *4 *5)) (-4 *5 (-1180)))) (-1863 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-863 *5)) (-5 *3 (-621 (-1143))) (-5 *4 (-1 (-112) (-621 *6))) (-4 *5 (-1067)) (-4 *6 (-1180)) (-5 *1 (-861 *5 *6)))) (-1863 (*1 *2 *2 *3) (-12 (-5 *2 (-863 *4)) (-5 *3 (-621 (-1 (-112) *5))) (-4 *4 (-1067)) (-4 *5 (-1180)) (-5 *1 (-861 *4 *5)))) (-1863 (*1 *2 *2 *3) (-12 (-5 *2 (-863 *4)) (-5 *3 (-1 (-112) *5)) (-4 *4 (-1067)) (-4 *5 (-1180)) (-5 *1 (-861 *4 *5)))))
-(-10 -7 (-15 -1863 ((-863 |#1|) (-863 |#1|) (-1 (-112) |#2|))) (-15 -1863 ((-863 |#1|) (-863 |#1|) (-621 (-1 (-112) |#2|)))) (-15 -1863 ((-863 |#1|) (-863 |#1|) (-621 (-1143)) (-1 (-112) (-621 |#2|)))) (-15 -2824 ((-1 (-112) |#2|) (-863 |#1|))) (-15 -3026 ((-112) |#2| (-863 |#1|))) (-15 -3026 ((-112) (-621 |#2|) (-863 |#1|))) (-15 -3664 ((-863 |#1|) (-863 |#1|) |#2|)) (-15 -1324 ((-621 |#2|) (-863 |#1|))))
-((-2797 (((-863 |#2|) (-1 |#2| |#1|) (-863 |#1|)) 19)))
-(((-862 |#1| |#2|) (-10 -7 (-15 -2797 ((-863 |#2|) (-1 |#2| |#1|) (-863 |#1|)))) (-1067) (-1067)) (T -862))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-863 *5)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-5 *2 (-863 *6)) (-5 *1 (-862 *5 *6)))))
-(-10 -7 (-15 -2797 ((-863 |#2|) (-1 |#2| |#1|) (-863 |#1|))))
-((-3834 (((-112) $ $) NIL)) (-2673 (($ $ (-621 (-52))) 64)) (-2272 (((-621 $) $) 118)) (-1312 (((-2 (|:| |var| (-621 (-1143))) (|:| |pred| (-52))) $) 24)) (-1404 (((-112) $) 30)) (-3363 (($ $ (-621 (-1143)) (-52)) 25)) (-2370 (($ $ (-621 (-52))) 63)) (-2714 (((-3 |#1| "failed") $) 61) (((-3 (-1143) "failed") $) 140)) (-2659 ((|#1| $) 58) (((-1143) $) NIL)) (-3305 (($ $) 108)) (-2552 (((-112) $) 47)) (-2521 (((-621 (-52)) $) 45)) (-3160 (($ (-1143) (-112) (-112) (-112)) 65)) (-1802 (((-3 (-621 $) "failed") (-621 $)) 72)) (-4143 (((-112) $) 50)) (-3074 (((-112) $) 49)) (-3851 (((-1125) $) NIL)) (-4266 (((-3 (-621 $) "failed") $) 36)) (-3984 (((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $) 43)) (-1671 (((-3 (-2 (|:| |val| $) (|:| -3731 $)) "failed") $) 83)) (-2533 (((-3 (-621 $) "failed") $) 33)) (-2353 (((-3 (-621 $) "failed") $ (-114)) 107) (((-3 (-2 (|:| -2721 (-114)) (|:| |arg| (-621 $))) "failed") $) 95)) (-1861 (((-3 (-621 $) "failed") $) 37)) (-1503 (((-3 (-2 (|:| |val| $) (|:| -3731 (-747))) "failed") $) 40)) (-3189 (((-112) $) 29)) (-3990 (((-1087) $) NIL)) (-3312 (((-112) $) 21)) (-2282 (((-112) $) 46)) (-3181 (((-621 (-52)) $) 111)) (-2869 (((-112) $) 48)) (-3341 (($ (-114) (-621 $)) 92)) (-1321 (((-747) $) 28)) (-2281 (($ $) 62)) (-2845 (($ (-621 $)) 59)) (-2645 (((-112) $) 26)) (-3846 (((-834) $) 53) (($ |#1|) 18) (($ (-1143)) 66)) (-3664 (($ $ (-52)) 110)) (-3276 (($) 91 T CONST)) (-3287 (($) 73 T CONST)) (-2389 (((-112) $ $) 79)) (-2513 (($ $ $) 100)) (-2486 (($ $ $) 104)) (** (($ $ (-747)) 99) (($ $ $) 54)) (* (($ $ $) 105)))
-(((-863 |#1|) (-13 (-1067) (-1009 |#1|) (-1009 (-1143)) (-10 -8 (-15 0 ($) -2589) (-15 1 ($) -2589) (-15 -2533 ((-3 (-621 $) "failed") $)) (-15 -4266 ((-3 (-621 $) "failed") $)) (-15 -2353 ((-3 (-621 $) "failed") $ (-114))) (-15 -2353 ((-3 (-2 (|:| -2721 (-114)) (|:| |arg| (-621 $))) "failed") $)) (-15 -1503 ((-3 (-2 (|:| |val| $) (|:| -3731 (-747))) "failed") $)) (-15 -3984 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -1861 ((-3 (-621 $) "failed") $)) (-15 -1671 ((-3 (-2 (|:| |val| $) (|:| -3731 $)) "failed") $)) (-15 -3341 ($ (-114) (-621 $))) (-15 -2486 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-747))) (-15 ** ($ $ $)) (-15 -2513 ($ $ $)) (-15 -1321 ((-747) $)) (-15 -2845 ($ (-621 $))) (-15 -2281 ($ $)) (-15 -3189 ((-112) $)) (-15 -2552 ((-112) $)) (-15 -1404 ((-112) $)) (-15 -2645 ((-112) $)) (-15 -2869 ((-112) $)) (-15 -3074 ((-112) $)) (-15 -4143 ((-112) $)) (-15 -2282 ((-112) $)) (-15 -2521 ((-621 (-52)) $)) (-15 -2370 ($ $ (-621 (-52)))) (-15 -2673 ($ $ (-621 (-52)))) (-15 -3160 ($ (-1143) (-112) (-112) (-112))) (-15 -3363 ($ $ (-621 (-1143)) (-52))) (-15 -1312 ((-2 (|:| |var| (-621 (-1143))) (|:| |pred| (-52))) $)) (-15 -3312 ((-112) $)) (-15 -3305 ($ $)) (-15 -3664 ($ $ (-52))) (-15 -3181 ((-621 (-52)) $)) (-15 -2272 ((-621 $) $)) (-15 -1802 ((-3 (-621 $) "failed") (-621 $))))) (-1067)) (T -863))
-((-3276 (*1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1067)))) (-3287 (*1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1067)))) (-2533 (*1 *2 *1) (|partial| -12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-4266 (*1 *2 *1) (|partial| -12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-2353 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-621 (-863 *4))) (-5 *1 (-863 *4)) (-4 *4 (-1067)))) (-2353 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| -2721 (-114)) (|:| |arg| (-621 (-863 *3))))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-1503 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-863 *3)) (|:| -3731 (-747)))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-3984 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |num| (-863 *3)) (|:| |den| (-863 *3)))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-1861 (*1 *2 *1) (|partial| -12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-1671 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-863 *3)) (|:| -3731 (-863 *3)))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-3341 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-621 (-863 *4))) (-5 *1 (-863 *4)) (-4 *4 (-1067)))) (-2486 (*1 *1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1067)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1067)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (** (*1 *1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1067)))) (-2513 (*1 *1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1067)))) (-1321 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-2845 (*1 *1 *2) (-12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-2281 (*1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1067)))) (-3189 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-2552 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-1404 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-2645 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-2869 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-3074 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-4143 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-2282 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-2521 (*1 *2 *1) (-12 (-5 *2 (-621 (-52))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-2370 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-52))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-2673 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-52))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-3160 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-112)) (-5 *1 (-863 *4)) (-4 *4 (-1067)))) (-3363 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-1143))) (-5 *3 (-52)) (-5 *1 (-863 *4)) (-4 *4 (-1067)))) (-1312 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |var| (-621 (-1143))) (|:| |pred| (-52)))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-3312 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-3305 (*1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1067)))) (-3664 (*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-3181 (*1 *2 *1) (-12 (-5 *2 (-621 (-52))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-2272 (*1 *2 *1) (-12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))) (-1802 (*1 *2 *2) (|partial| -12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))))
-(-13 (-1067) (-1009 |#1|) (-1009 (-1143)) (-10 -8 (-15 (-3276) ($) -2589) (-15 (-3287) ($) -2589) (-15 -2533 ((-3 (-621 $) "failed") $)) (-15 -4266 ((-3 (-621 $) "failed") $)) (-15 -2353 ((-3 (-621 $) "failed") $ (-114))) (-15 -2353 ((-3 (-2 (|:| -2721 (-114)) (|:| |arg| (-621 $))) "failed") $)) (-15 -1503 ((-3 (-2 (|:| |val| $) (|:| -3731 (-747))) "failed") $)) (-15 -3984 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -1861 ((-3 (-621 $) "failed") $)) (-15 -1671 ((-3 (-2 (|:| |val| $) (|:| -3731 $)) "failed") $)) (-15 -3341 ($ (-114) (-621 $))) (-15 -2486 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-747))) (-15 ** ($ $ $)) (-15 -2513 ($ $ $)) (-15 -1321 ((-747) $)) (-15 -2845 ($ (-621 $))) (-15 -2281 ($ $)) (-15 -3189 ((-112) $)) (-15 -2552 ((-112) $)) (-15 -1404 ((-112) $)) (-15 -2645 ((-112) $)) (-15 -2869 ((-112) $)) (-15 -3074 ((-112) $)) (-15 -4143 ((-112) $)) (-15 -2282 ((-112) $)) (-15 -2521 ((-621 (-52)) $)) (-15 -2370 ($ $ (-621 (-52)))) (-15 -2673 ($ $ (-621 (-52)))) (-15 -3160 ($ (-1143) (-112) (-112) (-112))) (-15 -3363 ($ $ (-621 (-1143)) (-52))) (-15 -1312 ((-2 (|:| |var| (-621 (-1143))) (|:| |pred| (-52))) $)) (-15 -3312 ((-112) $)) (-15 -3305 ($ $)) (-15 -3664 ($ $ (-52))) (-15 -3181 ((-621 (-52)) $)) (-15 -2272 ((-621 $) $)) (-15 -1802 ((-3 (-621 $) "failed") (-621 $)))))
-((-3834 (((-112) $ $) NIL)) (-3304 (((-621 |#1|) $) 16)) (-4304 (((-112) $) 38)) (-2714 (((-3 (-648 |#1|) "failed") $) 43)) (-2659 (((-648 |#1|) $) 41)) (-3657 (($ $) 18)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-4210 (((-747) $) 46)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3646 (((-648 |#1|) $) 17)) (-3846 (((-834) $) 37) (($ (-648 |#1|)) 21) (((-795 |#1|) $) 27) (($ |#1|) 20)) (-3287 (($) 8 T CONST)) (-2631 (((-621 (-648 |#1|)) $) 23)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 11)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 49)))
-(((-864 |#1|) (-13 (-823) (-1009 (-648 |#1|)) (-10 -8 (-15 1 ($) -2589) (-15 -3846 ((-795 |#1|) $)) (-15 -3846 ($ |#1|)) (-15 -3646 ((-648 |#1|) $)) (-15 -4210 ((-747) $)) (-15 -2631 ((-621 (-648 |#1|)) $)) (-15 -3657 ($ $)) (-15 -4304 ((-112) $)) (-15 -3304 ((-621 |#1|) $)))) (-823)) (T -864))
-((-3287 (*1 *1) (-12 (-5 *1 (-864 *2)) (-4 *2 (-823)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-795 *3)) (-5 *1 (-864 *3)) (-4 *3 (-823)))) (-3846 (*1 *1 *2) (-12 (-5 *1 (-864 *2)) (-4 *2 (-823)))) (-3646 (*1 *2 *1) (-12 (-5 *2 (-648 *3)) (-5 *1 (-864 *3)) (-4 *3 (-823)))) (-4210 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-864 *3)) (-4 *3 (-823)))) (-2631 (*1 *2 *1) (-12 (-5 *2 (-621 (-648 *3))) (-5 *1 (-864 *3)) (-4 *3 (-823)))) (-3657 (*1 *1 *1) (-12 (-5 *1 (-864 *2)) (-4 *2 (-823)))) (-4304 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-864 *3)) (-4 *3 (-823)))) (-3304 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-864 *3)) (-4 *3 (-823)))))
-(-13 (-823) (-1009 (-648 |#1|)) (-10 -8 (-15 (-3287) ($) -2589) (-15 -3846 ((-795 |#1|) $)) (-15 -3846 ($ |#1|)) (-15 -3646 ((-648 |#1|) $)) (-15 -4210 ((-747) $)) (-15 -2631 ((-621 (-648 |#1|)) $)) (-15 -3657 ($ $)) (-15 -4304 ((-112) $)) (-15 -3304 ((-621 |#1|) $))))
-((-1341 ((|#1| |#1| |#1|) 19)))
-(((-865 |#1| |#2|) (-10 -7 (-15 -1341 (|#1| |#1| |#1|))) (-1202 |#2|) (-1018)) (T -865))
-((-1341 (*1 *2 *2 *2) (-12 (-4 *3 (-1018)) (-5 *1 (-865 *2 *3)) (-4 *2 (-1202 *3)))))
-(-10 -7 (-15 -1341 (|#1| |#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-1391 (((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219)))) 14)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-2531 (((-1006) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219)))) 13)) (-2389 (((-112) $ $) 6)))
+((-3832 (((-112) $ $) NIL)) (-3743 (($) 14)) (-3941 (($ (-860 |#1| |#2|) (-860 |#1| |#3|)) 27)) (-3181 (((-860 |#1| |#3|) $) 16)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2126 (((-112) $) 22)) (-4150 (($) 19)) (-3845 (((-834) $) 30)) (-2675 (((-860 |#1| |#2|) $) 15)) (-2387 (((-112) $ $) 25)))
+(((-856 |#1| |#2| |#3|) (-13 (-1066) (-10 -8 (-15 -2126 ((-112) $)) (-15 -4150 ($)) (-15 -3743 ($)) (-15 -3941 ($ (-860 |#1| |#2|) (-860 |#1| |#3|))) (-15 -2675 ((-860 |#1| |#2|) $)) (-15 -3181 ((-860 |#1| |#3|) $)))) (-1066) (-1066) (-642 |#2|)) (T -856))
+((-2126 (*1 *2 *1) (-12 (-4 *4 (-1066)) (-5 *2 (-112)) (-5 *1 (-856 *3 *4 *5)) (-4 *3 (-1066)) (-4 *5 (-642 *4)))) (-4150 (*1 *1) (-12 (-4 *3 (-1066)) (-5 *1 (-856 *2 *3 *4)) (-4 *2 (-1066)) (-4 *4 (-642 *3)))) (-3743 (*1 *1) (-12 (-4 *3 (-1066)) (-5 *1 (-856 *2 *3 *4)) (-4 *2 (-1066)) (-4 *4 (-642 *3)))) (-3941 (*1 *1 *2 *3) (-12 (-5 *2 (-860 *4 *5)) (-5 *3 (-860 *4 *6)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-642 *5)) (-5 *1 (-856 *4 *5 *6)))) (-2675 (*1 *2 *1) (-12 (-4 *4 (-1066)) (-5 *2 (-860 *3 *4)) (-5 *1 (-856 *3 *4 *5)) (-4 *3 (-1066)) (-4 *5 (-642 *4)))) (-3181 (*1 *2 *1) (-12 (-4 *4 (-1066)) (-5 *2 (-860 *3 *5)) (-5 *1 (-856 *3 *4 *5)) (-4 *3 (-1066)) (-4 *5 (-642 *4)))))
+(-13 (-1066) (-10 -8 (-15 -2126 ((-112) $)) (-15 -4150 ($)) (-15 -3743 ($)) (-15 -3941 ($ (-860 |#1| |#2|) (-860 |#1| |#3|))) (-15 -2675 ((-860 |#1| |#2|) $)) (-15 -3181 ((-860 |#1| |#3|) $))))
+((-3832 (((-112) $ $) 7)) (-3849 (((-860 |#1| $) $ (-863 |#1|) (-860 |#1| $)) 13)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-2387 (((-112) $ $) 6)))
+(((-857 |#1|) (-138) (-1066)) (T -857))
+((-3849 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-860 *4 *1)) (-5 *3 (-863 *4)) (-4 *1 (-857 *4)) (-4 *4 (-1066)))))
+(-13 (-1066) (-10 -8 (-15 -3849 ((-860 |t#1| $) $ (-863 |t#1|) (-860 |t#1| $)))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-3673 (((-112) (-621 |#2|) |#3|) 23) (((-112) |#2| |#3|) 18)) (-1350 (((-860 |#1| |#2|) |#2| |#3|) 43 (-12 (-4007 (|has| |#2| (-1009 (-1142)))) (-4007 (|has| |#2| (-1018))))) (((-621 (-287 (-923 |#2|))) |#2| |#3|) 42 (-12 (|has| |#2| (-1018)) (-4007 (|has| |#2| (-1009 (-1142)))))) (((-621 (-287 |#2|)) |#2| |#3|) 35 (|has| |#2| (-1009 (-1142)))) (((-856 |#1| |#2| (-621 |#2|)) (-621 |#2|) |#3|) 21)))
+(((-858 |#1| |#2| |#3|) (-10 -7 (-15 -3673 ((-112) |#2| |#3|)) (-15 -3673 ((-112) (-621 |#2|) |#3|)) (-15 -1350 ((-856 |#1| |#2| (-621 |#2|)) (-621 |#2|) |#3|)) (IF (|has| |#2| (-1009 (-1142))) (-15 -1350 ((-621 (-287 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1018)) (-15 -1350 ((-621 (-287 (-923 |#2|))) |#2| |#3|)) (-15 -1350 ((-860 |#1| |#2|) |#2| |#3|))))) (-1066) (-857 |#1|) (-594 (-863 |#1|))) (T -858))
+((-1350 (*1 *2 *3 *4) (-12 (-4 *5 (-1066)) (-5 *2 (-860 *5 *3)) (-5 *1 (-858 *5 *3 *4)) (-4007 (-4 *3 (-1009 (-1142)))) (-4007 (-4 *3 (-1018))) (-4 *3 (-857 *5)) (-4 *4 (-594 (-863 *5))))) (-1350 (*1 *2 *3 *4) (-12 (-4 *5 (-1066)) (-5 *2 (-621 (-287 (-923 *3)))) (-5 *1 (-858 *5 *3 *4)) (-4 *3 (-1018)) (-4007 (-4 *3 (-1009 (-1142)))) (-4 *3 (-857 *5)) (-4 *4 (-594 (-863 *5))))) (-1350 (*1 *2 *3 *4) (-12 (-4 *5 (-1066)) (-5 *2 (-621 (-287 *3))) (-5 *1 (-858 *5 *3 *4)) (-4 *3 (-1009 (-1142))) (-4 *3 (-857 *5)) (-4 *4 (-594 (-863 *5))))) (-1350 (*1 *2 *3 *4) (-12 (-4 *5 (-1066)) (-4 *6 (-857 *5)) (-5 *2 (-856 *5 *6 (-621 *6))) (-5 *1 (-858 *5 *6 *4)) (-5 *3 (-621 *6)) (-4 *4 (-594 (-863 *5))))) (-3673 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *6)) (-4 *6 (-857 *5)) (-4 *5 (-1066)) (-5 *2 (-112)) (-5 *1 (-858 *5 *6 *4)) (-4 *4 (-594 (-863 *5))))) (-3673 (*1 *2 *3 *4) (-12 (-4 *5 (-1066)) (-5 *2 (-112)) (-5 *1 (-858 *5 *3 *4)) (-4 *3 (-857 *5)) (-4 *4 (-594 (-863 *5))))))
+(-10 -7 (-15 -3673 ((-112) |#2| |#3|)) (-15 -3673 ((-112) (-621 |#2|) |#3|)) (-15 -1350 ((-856 |#1| |#2| (-621 |#2|)) (-621 |#2|) |#3|)) (IF (|has| |#2| (-1009 (-1142))) (-15 -1350 ((-621 (-287 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1018)) (-15 -1350 ((-621 (-287 (-923 |#2|))) |#2| |#3|)) (-15 -1350 ((-860 |#1| |#2|) |#2| |#3|)))))
+((-2795 (((-860 |#1| |#3|) (-1 |#3| |#2|) (-860 |#1| |#2|)) 22)))
+(((-859 |#1| |#2| |#3|) (-10 -7 (-15 -2795 ((-860 |#1| |#3|) (-1 |#3| |#2|) (-860 |#1| |#2|)))) (-1066) (-1066) (-1066)) (T -859))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-860 *5 *6)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-860 *5 *7)) (-5 *1 (-859 *5 *6 *7)))))
+(-10 -7 (-15 -2795 ((-860 |#1| |#3|) (-1 |#3| |#2|) (-860 |#1| |#2|))))
+((-3832 (((-112) $ $) NIL)) (-1441 (($ $ $) 39)) (-2249 (((-3 (-112) "failed") $ (-863 |#1|)) 36)) (-3743 (($) 12)) (-3441 (((-1124) $) NIL)) (-1723 (($ (-863 |#1|) |#2| $) 20)) (-3988 (((-1086) $) NIL)) (-1543 (((-3 |#2| "failed") (-863 |#1|) $) 50)) (-2126 (((-112) $) 15)) (-4150 (($) 13)) (-2192 (((-621 (-2 (|:| -3336 (-1142)) (|:| -1791 |#2|))) $) 25)) (-3853 (($ (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 |#2|)))) 23)) (-3845 (((-834) $) 44)) (-2701 (($ (-863 |#1|) |#2| $ |#2|) 48)) (-2815 (($ (-863 |#1|) |#2| $) 47)) (-2387 (((-112) $ $) 41)))
+(((-860 |#1| |#2|) (-13 (-1066) (-10 -8 (-15 -2126 ((-112) $)) (-15 -4150 ($)) (-15 -3743 ($)) (-15 -1441 ($ $ $)) (-15 -1543 ((-3 |#2| "failed") (-863 |#1|) $)) (-15 -2815 ($ (-863 |#1|) |#2| $)) (-15 -1723 ($ (-863 |#1|) |#2| $)) (-15 -2701 ($ (-863 |#1|) |#2| $ |#2|)) (-15 -2192 ((-621 (-2 (|:| -3336 (-1142)) (|:| -1791 |#2|))) $)) (-15 -3853 ($ (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 |#2|))))) (-15 -2249 ((-3 (-112) "failed") $ (-863 |#1|))))) (-1066) (-1066)) (T -860))
+((-2126 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-860 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066)))) (-4150 (*1 *1) (-12 (-5 *1 (-860 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066)))) (-3743 (*1 *1) (-12 (-5 *1 (-860 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066)))) (-1441 (*1 *1 *1 *1) (-12 (-5 *1 (-860 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066)))) (-1543 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-863 *4)) (-4 *4 (-1066)) (-4 *2 (-1066)) (-5 *1 (-860 *4 *2)))) (-2815 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-863 *4)) (-4 *4 (-1066)) (-5 *1 (-860 *4 *3)) (-4 *3 (-1066)))) (-1723 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-863 *4)) (-4 *4 (-1066)) (-5 *1 (-860 *4 *3)) (-4 *3 (-1066)))) (-2701 (*1 *1 *2 *3 *1 *3) (-12 (-5 *2 (-863 *4)) (-4 *4 (-1066)) (-5 *1 (-860 *4 *3)) (-4 *3 (-1066)))) (-2192 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 *4)))) (-5 *1 (-860 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066)))) (-3853 (*1 *1 *2) (-12 (-5 *2 (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 *4)))) (-4 *4 (-1066)) (-5 *1 (-860 *3 *4)) (-4 *3 (-1066)))) (-2249 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-863 *4)) (-4 *4 (-1066)) (-5 *2 (-112)) (-5 *1 (-860 *4 *5)) (-4 *5 (-1066)))))
+(-13 (-1066) (-10 -8 (-15 -2126 ((-112) $)) (-15 -4150 ($)) (-15 -3743 ($)) (-15 -1441 ($ $ $)) (-15 -1543 ((-3 |#2| "failed") (-863 |#1|) $)) (-15 -2815 ($ (-863 |#1|) |#2| $)) (-15 -1723 ($ (-863 |#1|) |#2| $)) (-15 -2701 ($ (-863 |#1|) |#2| $ |#2|)) (-15 -2192 ((-621 (-2 (|:| -3336 (-1142)) (|:| -1791 |#2|))) $)) (-15 -3853 ($ (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 |#2|))))) (-15 -2249 ((-3 (-112) "failed") $ (-863 |#1|)))))
+((-1861 (((-863 |#1|) (-863 |#1|) (-621 (-1142)) (-1 (-112) (-621 |#2|))) 32) (((-863 |#1|) (-863 |#1|) (-621 (-1 (-112) |#2|))) 43) (((-863 |#1|) (-863 |#1|) (-1 (-112) |#2|)) 35)) (-2249 (((-112) (-621 |#2|) (-863 |#1|)) 40) (((-112) |#2| (-863 |#1|)) 36)) (-2822 (((-1 (-112) |#2|) (-863 |#1|)) 16)) (-3279 (((-621 |#2|) (-863 |#1|)) 24)) (-3272 (((-863 |#1|) (-863 |#1|) |#2|) 20)))
+(((-861 |#1| |#2|) (-10 -7 (-15 -1861 ((-863 |#1|) (-863 |#1|) (-1 (-112) |#2|))) (-15 -1861 ((-863 |#1|) (-863 |#1|) (-621 (-1 (-112) |#2|)))) (-15 -1861 ((-863 |#1|) (-863 |#1|) (-621 (-1142)) (-1 (-112) (-621 |#2|)))) (-15 -2822 ((-1 (-112) |#2|) (-863 |#1|))) (-15 -2249 ((-112) |#2| (-863 |#1|))) (-15 -2249 ((-112) (-621 |#2|) (-863 |#1|))) (-15 -3272 ((-863 |#1|) (-863 |#1|) |#2|)) (-15 -3279 ((-621 |#2|) (-863 |#1|)))) (-1066) (-1179)) (T -861))
+((-3279 (*1 *2 *3) (-12 (-5 *3 (-863 *4)) (-4 *4 (-1066)) (-5 *2 (-621 *5)) (-5 *1 (-861 *4 *5)) (-4 *5 (-1179)))) (-3272 (*1 *2 *2 *3) (-12 (-5 *2 (-863 *4)) (-4 *4 (-1066)) (-5 *1 (-861 *4 *3)) (-4 *3 (-1179)))) (-2249 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *6)) (-5 *4 (-863 *5)) (-4 *5 (-1066)) (-4 *6 (-1179)) (-5 *2 (-112)) (-5 *1 (-861 *5 *6)))) (-2249 (*1 *2 *3 *4) (-12 (-5 *4 (-863 *5)) (-4 *5 (-1066)) (-5 *2 (-112)) (-5 *1 (-861 *5 *3)) (-4 *3 (-1179)))) (-2822 (*1 *2 *3) (-12 (-5 *3 (-863 *4)) (-4 *4 (-1066)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-861 *4 *5)) (-4 *5 (-1179)))) (-1861 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-863 *5)) (-5 *3 (-621 (-1142))) (-5 *4 (-1 (-112) (-621 *6))) (-4 *5 (-1066)) (-4 *6 (-1179)) (-5 *1 (-861 *5 *6)))) (-1861 (*1 *2 *2 *3) (-12 (-5 *2 (-863 *4)) (-5 *3 (-621 (-1 (-112) *5))) (-4 *4 (-1066)) (-4 *5 (-1179)) (-5 *1 (-861 *4 *5)))) (-1861 (*1 *2 *2 *3) (-12 (-5 *2 (-863 *4)) (-5 *3 (-1 (-112) *5)) (-4 *4 (-1066)) (-4 *5 (-1179)) (-5 *1 (-861 *4 *5)))))
+(-10 -7 (-15 -1861 ((-863 |#1|) (-863 |#1|) (-1 (-112) |#2|))) (-15 -1861 ((-863 |#1|) (-863 |#1|) (-621 (-1 (-112) |#2|)))) (-15 -1861 ((-863 |#1|) (-863 |#1|) (-621 (-1142)) (-1 (-112) (-621 |#2|)))) (-15 -2822 ((-1 (-112) |#2|) (-863 |#1|))) (-15 -2249 ((-112) |#2| (-863 |#1|))) (-15 -2249 ((-112) (-621 |#2|) (-863 |#1|))) (-15 -3272 ((-863 |#1|) (-863 |#1|) |#2|)) (-15 -3279 ((-621 |#2|) (-863 |#1|))))
+((-2795 (((-863 |#2|) (-1 |#2| |#1|) (-863 |#1|)) 19)))
+(((-862 |#1| |#2|) (-10 -7 (-15 -2795 ((-863 |#2|) (-1 |#2| |#1|) (-863 |#1|)))) (-1066) (-1066)) (T -862))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-863 *5)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-5 *2 (-863 *6)) (-5 *1 (-862 *5 *6)))))
+(-10 -7 (-15 -2795 ((-863 |#2|) (-1 |#2| |#1|) (-863 |#1|))))
+((-3832 (((-112) $ $) NIL)) (-2083 (($ $ (-621 (-52))) 64)) (-2270 (((-621 $) $) 118)) (-1346 (((-2 (|:| |var| (-621 (-1142))) (|:| |pred| (-52))) $) 24)) (-3776 (((-112) $) 30)) (-1338 (($ $ (-621 (-1142)) (-52)) 25)) (-1626 (($ $ (-621 (-52))) 63)) (-2712 (((-3 |#1| "failed") $) 61) (((-3 (-1142) "failed") $) 140)) (-2657 ((|#1| $) 58) (((-1142) $) NIL)) (-2400 (($ $) 108)) (-2702 (((-112) $) 47)) (-2834 (((-621 (-52)) $) 45)) (-4145 (($ (-1142) (-112) (-112) (-112)) 65)) (-3900 (((-3 (-621 $) "failed") (-621 $)) 72)) (-2435 (((-112) $) 50)) (-3624 (((-112) $) 49)) (-3441 (((-1124) $) NIL)) (-4093 (((-3 (-621 $) "failed") $) 36)) (-3982 (((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $) 43)) (-3257 (((-3 (-2 (|:| |val| $) (|:| -1714 $)) "failed") $) 83)) (-1503 (((-3 (-621 $) "failed") $) 33)) (-2943 (((-3 (-621 $) "failed") $ (-114)) 107) (((-3 (-2 (|:| -2718 (-114)) (|:| |arg| (-621 $))) "failed") $) 95)) (-2142 (((-3 (-621 $) "failed") $) 37)) (-1477 (((-3 (-2 (|:| |val| $) (|:| -1714 (-747))) "failed") $) 40)) (-2602 (((-112) $) 29)) (-3988 (((-1086) $) NIL)) (-1698 (((-112) $) 21)) (-1383 (((-112) $) 46)) (-2976 (((-621 (-52)) $) 111)) (-2792 (((-112) $) 48)) (-3339 (($ (-114) (-621 $)) 92)) (-1319 (((-747) $) 28)) (-2279 (($ $) 62)) (-2843 (($ (-621 $)) 59)) (-3872 (((-112) $) 26)) (-3845 (((-834) $) 53) (($ |#1|) 18) (($ (-1142)) 66)) (-3272 (($ $ (-52)) 110)) (-3274 (($) 91 T CONST)) (-3286 (($) 73 T CONST)) (-2387 (((-112) $ $) 79)) (-2511 (($ $ $) 100)) (-2484 (($ $ $) 104)) (** (($ $ (-747)) 99) (($ $ $) 54)) (* (($ $ $) 105)))
+(((-863 |#1|) (-13 (-1066) (-1009 |#1|) (-1009 (-1142)) (-10 -8 (-15 0 ($) -2587) (-15 1 ($) -2587) (-15 -1503 ((-3 (-621 $) "failed") $)) (-15 -4093 ((-3 (-621 $) "failed") $)) (-15 -2943 ((-3 (-621 $) "failed") $ (-114))) (-15 -2943 ((-3 (-2 (|:| -2718 (-114)) (|:| |arg| (-621 $))) "failed") $)) (-15 -1477 ((-3 (-2 (|:| |val| $) (|:| -1714 (-747))) "failed") $)) (-15 -3982 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2142 ((-3 (-621 $) "failed") $)) (-15 -3257 ((-3 (-2 (|:| |val| $) (|:| -1714 $)) "failed") $)) (-15 -3339 ($ (-114) (-621 $))) (-15 -2484 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-747))) (-15 ** ($ $ $)) (-15 -2511 ($ $ $)) (-15 -1319 ((-747) $)) (-15 -2843 ($ (-621 $))) (-15 -2279 ($ $)) (-15 -2602 ((-112) $)) (-15 -2702 ((-112) $)) (-15 -3776 ((-112) $)) (-15 -3872 ((-112) $)) (-15 -2792 ((-112) $)) (-15 -3624 ((-112) $)) (-15 -2435 ((-112) $)) (-15 -1383 ((-112) $)) (-15 -2834 ((-621 (-52)) $)) (-15 -1626 ($ $ (-621 (-52)))) (-15 -2083 ($ $ (-621 (-52)))) (-15 -4145 ($ (-1142) (-112) (-112) (-112))) (-15 -1338 ($ $ (-621 (-1142)) (-52))) (-15 -1346 ((-2 (|:| |var| (-621 (-1142))) (|:| |pred| (-52))) $)) (-15 -1698 ((-112) $)) (-15 -2400 ($ $)) (-15 -3272 ($ $ (-52))) (-15 -2976 ((-621 (-52)) $)) (-15 -2270 ((-621 $) $)) (-15 -3900 ((-3 (-621 $) "failed") (-621 $))))) (-1066)) (T -863))
+((-3274 (*1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1066)))) (-3286 (*1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1066)))) (-1503 (*1 *2 *1) (|partial| -12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-4093 (*1 *2 *1) (|partial| -12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-2943 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-621 (-863 *4))) (-5 *1 (-863 *4)) (-4 *4 (-1066)))) (-2943 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| -2718 (-114)) (|:| |arg| (-621 (-863 *3))))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-1477 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-863 *3)) (|:| -1714 (-747)))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-3982 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |num| (-863 *3)) (|:| |den| (-863 *3)))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-2142 (*1 *2 *1) (|partial| -12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-3257 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-863 *3)) (|:| -1714 (-863 *3)))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-3339 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-621 (-863 *4))) (-5 *1 (-863 *4)) (-4 *4 (-1066)))) (-2484 (*1 *1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1066)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1066)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (** (*1 *1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1066)))) (-2511 (*1 *1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1066)))) (-1319 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-2843 (*1 *1 *2) (-12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-2279 (*1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1066)))) (-2602 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-2702 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-3776 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-3872 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-2792 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-3624 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-2435 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-1383 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-2834 (*1 *2 *1) (-12 (-5 *2 (-621 (-52))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-1626 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-52))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-2083 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-52))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-4145 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-112)) (-5 *1 (-863 *4)) (-4 *4 (-1066)))) (-1338 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-1142))) (-5 *3 (-52)) (-5 *1 (-863 *4)) (-4 *4 (-1066)))) (-1346 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |var| (-621 (-1142))) (|:| |pred| (-52)))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-1698 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-2400 (*1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1066)))) (-3272 (*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-2976 (*1 *2 *1) (-12 (-5 *2 (-621 (-52))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-2270 (*1 *2 *1) (-12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))) (-3900 (*1 *2 *2) (|partial| -12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))))
+(-13 (-1066) (-1009 |#1|) (-1009 (-1142)) (-10 -8 (-15 (-3274) ($) -2587) (-15 (-3286) ($) -2587) (-15 -1503 ((-3 (-621 $) "failed") $)) (-15 -4093 ((-3 (-621 $) "failed") $)) (-15 -2943 ((-3 (-621 $) "failed") $ (-114))) (-15 -2943 ((-3 (-2 (|:| -2718 (-114)) (|:| |arg| (-621 $))) "failed") $)) (-15 -1477 ((-3 (-2 (|:| |val| $) (|:| -1714 (-747))) "failed") $)) (-15 -3982 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2142 ((-3 (-621 $) "failed") $)) (-15 -3257 ((-3 (-2 (|:| |val| $) (|:| -1714 $)) "failed") $)) (-15 -3339 ($ (-114) (-621 $))) (-15 -2484 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-747))) (-15 ** ($ $ $)) (-15 -2511 ($ $ $)) (-15 -1319 ((-747) $)) (-15 -2843 ($ (-621 $))) (-15 -2279 ($ $)) (-15 -2602 ((-112) $)) (-15 -2702 ((-112) $)) (-15 -3776 ((-112) $)) (-15 -3872 ((-112) $)) (-15 -2792 ((-112) $)) (-15 -3624 ((-112) $)) (-15 -2435 ((-112) $)) (-15 -1383 ((-112) $)) (-15 -2834 ((-621 (-52)) $)) (-15 -1626 ($ $ (-621 (-52)))) (-15 -2083 ($ $ (-621 (-52)))) (-15 -4145 ($ (-1142) (-112) (-112) (-112))) (-15 -1338 ($ $ (-621 (-1142)) (-52))) (-15 -1346 ((-2 (|:| |var| (-621 (-1142))) (|:| |pred| (-52))) $)) (-15 -1698 ((-112) $)) (-15 -2400 ($ $)) (-15 -3272 ($ $ (-52))) (-15 -2976 ((-621 (-52)) $)) (-15 -2270 ((-621 $) $)) (-15 -3900 ((-3 (-621 $) "failed") (-621 $)))))
+((-3832 (((-112) $ $) NIL)) (-3302 (((-621 |#1|) $) 16)) (-1998 (((-112) $) 38)) (-2712 (((-3 (-648 |#1|) "failed") $) 43)) (-2657 (((-648 |#1|) $) 41)) (-3656 (($ $) 18)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-4210 (((-747) $) 46)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3645 (((-648 |#1|) $) 17)) (-3845 (((-834) $) 37) (($ (-648 |#1|)) 21) (((-795 |#1|) $) 27) (($ |#1|) 20)) (-3286 (($) 8 T CONST)) (-2087 (((-621 (-648 |#1|)) $) 23)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 11)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 49)))
+(((-864 |#1|) (-13 (-823) (-1009 (-648 |#1|)) (-10 -8 (-15 1 ($) -2587) (-15 -3845 ((-795 |#1|) $)) (-15 -3845 ($ |#1|)) (-15 -3645 ((-648 |#1|) $)) (-15 -4210 ((-747) $)) (-15 -2087 ((-621 (-648 |#1|)) $)) (-15 -3656 ($ $)) (-15 -1998 ((-112) $)) (-15 -3302 ((-621 |#1|) $)))) (-823)) (T -864))
+((-3286 (*1 *1) (-12 (-5 *1 (-864 *2)) (-4 *2 (-823)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-795 *3)) (-5 *1 (-864 *3)) (-4 *3 (-823)))) (-3845 (*1 *1 *2) (-12 (-5 *1 (-864 *2)) (-4 *2 (-823)))) (-3645 (*1 *2 *1) (-12 (-5 *2 (-648 *3)) (-5 *1 (-864 *3)) (-4 *3 (-823)))) (-4210 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-864 *3)) (-4 *3 (-823)))) (-2087 (*1 *2 *1) (-12 (-5 *2 (-621 (-648 *3))) (-5 *1 (-864 *3)) (-4 *3 (-823)))) (-3656 (*1 *1 *1) (-12 (-5 *1 (-864 *2)) (-4 *2 (-823)))) (-1998 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-864 *3)) (-4 *3 (-823)))) (-3302 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-864 *3)) (-4 *3 (-823)))))
+(-13 (-823) (-1009 (-648 |#1|)) (-10 -8 (-15 (-3286) ($) -2587) (-15 -3845 ((-795 |#1|) $)) (-15 -3845 ($ |#1|)) (-15 -3645 ((-648 |#1|) $)) (-15 -4210 ((-747) $)) (-15 -2087 ((-621 (-648 |#1|)) $)) (-15 -3656 ($ $)) (-15 -1998 ((-112) $)) (-15 -3302 ((-621 |#1|) $))))
+((-4054 ((|#1| |#1| |#1|) 19)))
+(((-865 |#1| |#2|) (-10 -7 (-15 -4054 (|#1| |#1| |#1|))) (-1201 |#2|) (-1018)) (T -865))
+((-4054 (*1 *2 *2 *2) (-12 (-4 *3 (-1018)) (-5 *1 (-865 *2 *3)) (-4 *2 (-1201 *3)))))
+(-10 -7 (-15 -4054 (|#1| |#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-3947 (((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219)))) 14)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-1292 (((-1006) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219)))) 13)) (-2387 (((-112) $ $) 6)))
(((-866) (-138)) (T -866))
-((-1391 (*1 *2 *3 *4) (-12 (-4 *1 (-866)) (-5 *3 (-1030)) (-5 *4 (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219)))) (-5 *2 (-2 (|:| -1391 (-372)) (|:| |explanations| (-1125)))))) (-2531 (*1 *2 *3) (-12 (-4 *1 (-866)) (-5 *3 (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219)))) (-5 *2 (-1006)))))
-(-13 (-1067) (-10 -7 (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))) (-1030) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219))))) (-15 -2531 ((-1006) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219)))))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-2804 ((|#1| |#1| (-747)) 24)) (-2613 (((-3 |#1| "failed") |#1| |#1|) 22)) (-1655 (((-3 (-2 (|:| -3838 |#1|) (|:| -3848 |#1|)) "failed") |#1| (-747) (-747)) 27) (((-621 |#1|) |#1|) 29)))
-(((-867 |#1| |#2|) (-10 -7 (-15 -1655 ((-621 |#1|) |#1|)) (-15 -1655 ((-3 (-2 (|:| -3838 |#1|) (|:| -3848 |#1|)) "failed") |#1| (-747) (-747))) (-15 -2613 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2804 (|#1| |#1| (-747)))) (-1202 |#2|) (-356)) (T -867))
-((-2804 (*1 *2 *2 *3) (-12 (-5 *3 (-747)) (-4 *4 (-356)) (-5 *1 (-867 *2 *4)) (-4 *2 (-1202 *4)))) (-2613 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-356)) (-5 *1 (-867 *2 *3)) (-4 *2 (-1202 *3)))) (-1655 (*1 *2 *3 *4 *4) (|partial| -12 (-5 *4 (-747)) (-4 *5 (-356)) (-5 *2 (-2 (|:| -3838 *3) (|:| -3848 *3))) (-5 *1 (-867 *3 *5)) (-4 *3 (-1202 *5)))) (-1655 (*1 *2 *3) (-12 (-4 *4 (-356)) (-5 *2 (-621 *3)) (-5 *1 (-867 *3 *4)) (-4 *3 (-1202 *4)))))
-(-10 -7 (-15 -1655 ((-621 |#1|) |#1|)) (-15 -1655 ((-3 (-2 (|:| -3838 |#1|) (|:| -3848 |#1|)) "failed") |#1| (-747) (-747))) (-15 -2613 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2804 (|#1| |#1| (-747))))
-((-2227 (((-1006) (-372) (-372) (-372) (-372) (-747) (-747) (-621 (-309 (-372))) (-621 (-621 (-309 (-372)))) (-1125)) 96) (((-1006) (-372) (-372) (-372) (-372) (-747) (-747) (-621 (-309 (-372))) (-621 (-621 (-309 (-372)))) (-1125) (-219)) 91) (((-1006) (-869) (-1030)) 83) (((-1006) (-869)) 84)) (-1391 (((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-869) (-1030)) 59) (((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-869)) 61)))
-(((-868) (-10 -7 (-15 -2227 ((-1006) (-869))) (-15 -2227 ((-1006) (-869) (-1030))) (-15 -2227 ((-1006) (-372) (-372) (-372) (-372) (-747) (-747) (-621 (-309 (-372))) (-621 (-621 (-309 (-372)))) (-1125) (-219))) (-15 -2227 ((-1006) (-372) (-372) (-372) (-372) (-747) (-747) (-621 (-309 (-372))) (-621 (-621 (-309 (-372)))) (-1125))) (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-869))) (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-869) (-1030))))) (T -868))
-((-1391 (*1 *2 *3 *4) (-12 (-5 *3 (-869)) (-5 *4 (-1030)) (-5 *2 (-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))))) (-5 *1 (-868)))) (-1391 (*1 *2 *3) (-12 (-5 *3 (-869)) (-5 *2 (-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125))))) (-5 *1 (-868)))) (-2227 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7) (-12 (-5 *4 (-747)) (-5 *6 (-621 (-621 (-309 *3)))) (-5 *7 (-1125)) (-5 *5 (-621 (-309 (-372)))) (-5 *3 (-372)) (-5 *2 (-1006)) (-5 *1 (-868)))) (-2227 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8) (-12 (-5 *4 (-747)) (-5 *6 (-621 (-621 (-309 *3)))) (-5 *7 (-1125)) (-5 *8 (-219)) (-5 *5 (-621 (-309 (-372)))) (-5 *3 (-372)) (-5 *2 (-1006)) (-5 *1 (-868)))) (-2227 (*1 *2 *3 *4) (-12 (-5 *3 (-869)) (-5 *4 (-1030)) (-5 *2 (-1006)) (-5 *1 (-868)))) (-2227 (*1 *2 *3) (-12 (-5 *3 (-869)) (-5 *2 (-1006)) (-5 *1 (-868)))))
-(-10 -7 (-15 -2227 ((-1006) (-869))) (-15 -2227 ((-1006) (-869) (-1030))) (-15 -2227 ((-1006) (-372) (-372) (-372) (-372) (-747) (-747) (-621 (-309 (-372))) (-621 (-621 (-309 (-372)))) (-1125) (-219))) (-15 -2227 ((-1006) (-372) (-372) (-372) (-372) (-747) (-747) (-621 (-309 (-372))) (-621 (-621 (-309 (-372)))) (-1125))) (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-869))) (-15 -1391 ((-2 (|:| -1391 (-372)) (|:| -2481 (-1125)) (|:| |explanations| (-621 (-1125)))) (-869) (-1030))))
-((-3834 (((-112) $ $) NIL)) (-2659 (((-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219))) $) 19)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 21) (($ (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219)))) 18)) (-2389 (((-112) $ $) NIL)))
-(((-869) (-13 (-1067) (-10 -8 (-15 -3846 ($ (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219))))) (-15 -3846 ((-834) $)) (-15 -2659 ((-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219))) $))))) (T -869))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-869)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219)))) (-5 *1 (-869)))) (-2659 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219)))) (-5 *1 (-869)))))
-(-13 (-1067) (-10 -8 (-15 -3846 ($ (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219))))) (-15 -3846 ((-834) $)) (-15 -2659 ((-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125)) (|:| |tol| (-219))) $))))
-((-3456 (($ $ |#2|) NIL) (($ $ (-621 |#2|)) 10) (($ $ |#2| (-747)) 12) (($ $ (-621 |#2|) (-621 (-747))) 15)) (-1702 (($ $ |#2|) 16) (($ $ (-621 |#2|)) 18) (($ $ |#2| (-747)) 19) (($ $ (-621 |#2|) (-621 (-747))) 21)))
-(((-870 |#1| |#2|) (-10 -8 (-15 -1702 (|#1| |#1| (-621 |#2|) (-621 (-747)))) (-15 -1702 (|#1| |#1| |#2| (-747))) (-15 -1702 (|#1| |#1| (-621 |#2|))) (-15 -1702 (|#1| |#1| |#2|)) (-15 -3456 (|#1| |#1| (-621 |#2|) (-621 (-747)))) (-15 -3456 (|#1| |#1| |#2| (-747))) (-15 -3456 (|#1| |#1| (-621 |#2|))) (-15 -3456 (|#1| |#1| |#2|))) (-871 |#2|) (-1067)) (T -870))
-NIL
-(-10 -8 (-15 -1702 (|#1| |#1| (-621 |#2|) (-621 (-747)))) (-15 -1702 (|#1| |#1| |#2| (-747))) (-15 -1702 (|#1| |#1| (-621 |#2|))) (-15 -1702 (|#1| |#1| |#2|)) (-15 -3456 (|#1| |#1| (-621 |#2|) (-621 (-747)))) (-15 -3456 (|#1| |#1| |#2| (-747))) (-15 -3456 (|#1| |#1| (-621 |#2|))) (-15 -3456 (|#1| |#1| |#2|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3456 (($ $ |#1|) 40) (($ $ (-621 |#1|)) 39) (($ $ |#1| (-747)) 38) (($ $ (-621 |#1|) (-621 (-747))) 37)) (-3846 (((-834) $) 11) (($ (-549)) 27)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ |#1|) 36) (($ $ (-621 |#1|)) 35) (($ $ |#1| (-747)) 34) (($ $ (-621 |#1|) (-621 (-747))) 33)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
-(((-871 |#1|) (-138) (-1067)) (T -871))
-((-3456 (*1 *1 *1 *2) (-12 (-4 *1 (-871 *2)) (-4 *2 (-1067)))) (-3456 (*1 *1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *1 (-871 *3)) (-4 *3 (-1067)))) (-3456 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-871 *2)) (-4 *2 (-1067)))) (-3456 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *4)) (-5 *3 (-621 (-747))) (-4 *1 (-871 *4)) (-4 *4 (-1067)))) (-1702 (*1 *1 *1 *2) (-12 (-4 *1 (-871 *2)) (-4 *2 (-1067)))) (-1702 (*1 *1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *1 (-871 *3)) (-4 *3 (-1067)))) (-1702 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-871 *2)) (-4 *2 (-1067)))) (-1702 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *4)) (-5 *3 (-621 (-747))) (-4 *1 (-871 *4)) (-4 *4 (-1067)))))
-(-13 (-1018) (-10 -8 (-15 -3456 ($ $ |t#1|)) (-15 -3456 ($ $ (-621 |t#1|))) (-15 -3456 ($ $ |t#1| (-747))) (-15 -3456 ($ $ (-621 |t#1|) (-621 (-747)))) (-15 -1702 ($ $ |t#1|)) (-15 -1702 ($ $ (-621 |t#1|))) (-15 -1702 ($ $ |t#1| (-747))) (-15 -1702 ($ $ (-621 |t#1|) (-621 (-747))))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-4161 ((|#1| $) 26)) (-1584 (((-112) $ (-747)) NIL)) (-2838 ((|#1| $ |#1|) NIL (|has| $ (-6 -4338)))) (-3869 (($ $ $) NIL (|has| $ (-6 -4338)))) (-3811 (($ $ $) NIL (|has| $ (-6 -4338)))) (-2254 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4338))) (($ $ "left" $) NIL (|has| $ (-6 -4338))) (($ $ "right" $) NIL (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) NIL (|has| $ (-6 -4338)))) (-1682 (($) NIL T CONST)) (-3848 (($ $) 25)) (-2778 (($ |#1|) 12) (($ $ $) 17)) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) NIL)) (-3895 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3838 (($ $) 23)) (-3591 (((-621 |#1|) $) NIL)) (-2076 (((-112) $) 20)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3230 (((-549) $ $) NIL)) (-3497 (((-112) $) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) NIL)) (-3846 (((-1166 |#1|) $) 9) (((-834) $) 29 (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) NIL)) (-1987 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 21 (|has| |#1| (-1067)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-872 |#1|) (-13 (-119 |#1|) (-10 -8 (-15 -2778 ($ |#1|)) (-15 -2778 ($ $ $)) (-15 -3846 ((-1166 |#1|) $)))) (-1067)) (T -872))
-((-2778 (*1 *1 *2) (-12 (-5 *1 (-872 *2)) (-4 *2 (-1067)))) (-2778 (*1 *1 *1 *1) (-12 (-5 *1 (-872 *2)) (-4 *2 (-1067)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-872 *3)) (-4 *3 (-1067)))))
-(-13 (-119 |#1|) (-10 -8 (-15 -2778 ($ |#1|)) (-15 -2778 ($ $ $)) (-15 -3846 ((-1166 |#1|) $))))
-((-3073 ((|#2| (-1109 |#1| |#2|)) 40)))
-(((-873 |#1| |#2|) (-10 -7 (-15 -3073 (|#2| (-1109 |#1| |#2|)))) (-892) (-13 (-1018) (-10 -7 (-6 (-4339 "*"))))) (T -873))
-((-3073 (*1 *2 *3) (-12 (-5 *3 (-1109 *4 *2)) (-14 *4 (-892)) (-4 *2 (-13 (-1018) (-10 -7 (-6 (-4339 "*"))))) (-5 *1 (-873 *4 *2)))))
-(-10 -7 (-15 -3073 (|#2| (-1109 |#1| |#2|))))
-((-3834 (((-112) $ $) 7)) (-1682 (($) 18 T CONST)) (-2114 (((-3 $ "failed") $) 15)) (-1288 (((-1069 |#1|) $ |#1|) 32)) (-2675 (((-112) $) 17)) (-2863 (($ $ $) 30 (-1536 (|has| |#1| (-823)) (|has| |#1| (-361))))) (-3575 (($ $ $) 29 (-1536 (|has| |#1| (-823)) (|has| |#1| (-361))))) (-3851 (((-1125) $) 9)) (-1992 (($ $) 24)) (-3990 (((-1087) $) 10)) (-2686 ((|#1| $ |#1|) 34)) (-3341 ((|#1| $ |#1|) 33)) (-3489 (($ (-621 (-621 |#1|))) 35)) (-3820 (($ (-621 |#1|)) 36)) (-1955 (($ $ $) 21)) (-3293 (($ $ $) 20)) (-3846 (((-834) $) 11)) (-3287 (($) 19 T CONST)) (-2448 (((-112) $ $) 27 (-1536 (|has| |#1| (-823)) (|has| |#1| (-361))))) (-2425 (((-112) $ $) 26 (-1536 (|has| |#1| (-823)) (|has| |#1| (-361))))) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 28 (-1536 (|has| |#1| (-823)) (|has| |#1| (-361))))) (-2412 (((-112) $ $) 31)) (-2513 (($ $ $) 23)) (** (($ $ (-892)) 13) (($ $ (-747)) 16) (($ $ (-549)) 22)) (* (($ $ $) 14)))
-(((-874 |#1|) (-138) (-1067)) (T -874))
-((-3820 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-4 *1 (-874 *3)))) (-3489 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1067)) (-4 *1 (-874 *3)))) (-2686 (*1 *2 *1 *2) (-12 (-4 *1 (-874 *2)) (-4 *2 (-1067)))) (-3341 (*1 *2 *1 *2) (-12 (-4 *1 (-874 *2)) (-4 *2 (-1067)))) (-1288 (*1 *2 *1 *3) (-12 (-4 *1 (-874 *3)) (-4 *3 (-1067)) (-5 *2 (-1069 *3)))) (-2412 (*1 *2 *1 *1) (-12 (-4 *1 (-874 *3)) (-4 *3 (-1067)) (-5 *2 (-112)))))
-(-13 (-465) (-10 -8 (-15 -3820 ($ (-621 |t#1|))) (-15 -3489 ($ (-621 (-621 |t#1|)))) (-15 -2686 (|t#1| $ |t#1|)) (-15 -3341 (|t#1| $ |t#1|)) (-15 -1288 ((-1069 |t#1|) $ |t#1|)) (-15 -2412 ((-112) $ $)) (IF (|has| |t#1| (-823)) (-6 (-823)) |%noBranch|) (IF (|has| |t#1| (-361)) (-6 (-823)) |%noBranch|)))
-(((-101) . T) ((-593 (-834)) . T) ((-465) . T) ((-703) . T) ((-823) -1536 (|has| |#1| (-823)) (|has| |#1| (-361))) ((-1079) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-2779 (((-621 (-621 (-747))) $) 108)) (-1798 (((-621 (-747)) (-876 |#1|) $) 130)) (-3357 (((-621 (-747)) (-876 |#1|) $) 131)) (-3961 (((-621 (-876 |#1|)) $) 98)) (-3239 (((-876 |#1|) $ (-549)) 103) (((-876 |#1|) $) 104)) (-3324 (($ (-621 (-876 |#1|))) 110)) (-2088 (((-747) $) 105)) (-2762 (((-1069 (-1069 |#1|)) $) 128)) (-1288 (((-1069 |#1|) $ |#1|) 121) (((-1069 (-1069 |#1|)) $ (-1069 |#1|)) 139) (((-1069 (-621 |#1|)) $ (-621 |#1|)) 142)) (-3091 (((-1069 |#1|) $) 101)) (-2090 (((-112) (-876 |#1|) $) 92)) (-3851 (((-1125) $) NIL)) (-2998 (((-1231) $) 95) (((-1231) $ (-549) (-549)) 143)) (-3990 (((-1087) $) NIL)) (-2384 (((-621 (-876 |#1|)) $) 96)) (-3341 (((-876 |#1|) $ (-747)) 99)) (-3701 (((-747) $) 106)) (-3846 (((-834) $) 119) (((-621 (-876 |#1|)) $) 23) (($ (-621 (-876 |#1|))) 109)) (-1864 (((-621 |#1|) $) 107)) (-2389 (((-112) $ $) 136)) (-2438 (((-112) $ $) 134)) (-2412 (((-112) $ $) 133)))
-(((-875 |#1|) (-13 (-1067) (-10 -8 (-15 -3846 ((-621 (-876 |#1|)) $)) (-15 -2384 ((-621 (-876 |#1|)) $)) (-15 -3341 ((-876 |#1|) $ (-747))) (-15 -3239 ((-876 |#1|) $ (-549))) (-15 -3239 ((-876 |#1|) $)) (-15 -2088 ((-747) $)) (-15 -3701 ((-747) $)) (-15 -1864 ((-621 |#1|) $)) (-15 -3961 ((-621 (-876 |#1|)) $)) (-15 -2779 ((-621 (-621 (-747))) $)) (-15 -3846 ($ (-621 (-876 |#1|)))) (-15 -3324 ($ (-621 (-876 |#1|)))) (-15 -1288 ((-1069 |#1|) $ |#1|)) (-15 -2762 ((-1069 (-1069 |#1|)) $)) (-15 -1288 ((-1069 (-1069 |#1|)) $ (-1069 |#1|))) (-15 -1288 ((-1069 (-621 |#1|)) $ (-621 |#1|))) (-15 -2090 ((-112) (-876 |#1|) $)) (-15 -1798 ((-621 (-747)) (-876 |#1|) $)) (-15 -3357 ((-621 (-747)) (-876 |#1|) $)) (-15 -3091 ((-1069 |#1|) $)) (-15 -2412 ((-112) $ $)) (-15 -2438 ((-112) $ $)) (-15 -2998 ((-1231) $)) (-15 -2998 ((-1231) $ (-549) (-549))))) (-1067)) (T -875))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-621 (-876 *3))) (-5 *1 (-875 *3)) (-4 *3 (-1067)))) (-2384 (*1 *2 *1) (-12 (-5 *2 (-621 (-876 *3))) (-5 *1 (-875 *3)) (-4 *3 (-1067)))) (-3341 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *2 (-876 *4)) (-5 *1 (-875 *4)) (-4 *4 (-1067)))) (-3239 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-876 *4)) (-5 *1 (-875 *4)) (-4 *4 (-1067)))) (-3239 (*1 *2 *1) (-12 (-5 *2 (-876 *3)) (-5 *1 (-875 *3)) (-4 *3 (-1067)))) (-2088 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-875 *3)) (-4 *3 (-1067)))) (-3701 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-875 *3)) (-4 *3 (-1067)))) (-1864 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-875 *3)) (-4 *3 (-1067)))) (-3961 (*1 *2 *1) (-12 (-5 *2 (-621 (-876 *3))) (-5 *1 (-875 *3)) (-4 *3 (-1067)))) (-2779 (*1 *2 *1) (-12 (-5 *2 (-621 (-621 (-747)))) (-5 *1 (-875 *3)) (-4 *3 (-1067)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-621 (-876 *3))) (-4 *3 (-1067)) (-5 *1 (-875 *3)))) (-3324 (*1 *1 *2) (-12 (-5 *2 (-621 (-876 *3))) (-4 *3 (-1067)) (-5 *1 (-875 *3)))) (-1288 (*1 *2 *1 *3) (-12 (-5 *2 (-1069 *3)) (-5 *1 (-875 *3)) (-4 *3 (-1067)))) (-2762 (*1 *2 *1) (-12 (-5 *2 (-1069 (-1069 *3))) (-5 *1 (-875 *3)) (-4 *3 (-1067)))) (-1288 (*1 *2 *1 *3) (-12 (-4 *4 (-1067)) (-5 *2 (-1069 (-1069 *4))) (-5 *1 (-875 *4)) (-5 *3 (-1069 *4)))) (-1288 (*1 *2 *1 *3) (-12 (-4 *4 (-1067)) (-5 *2 (-1069 (-621 *4))) (-5 *1 (-875 *4)) (-5 *3 (-621 *4)))) (-2090 (*1 *2 *3 *1) (-12 (-5 *3 (-876 *4)) (-4 *4 (-1067)) (-5 *2 (-112)) (-5 *1 (-875 *4)))) (-1798 (*1 *2 *3 *1) (-12 (-5 *3 (-876 *4)) (-4 *4 (-1067)) (-5 *2 (-621 (-747))) (-5 *1 (-875 *4)))) (-3357 (*1 *2 *3 *1) (-12 (-5 *3 (-876 *4)) (-4 *4 (-1067)) (-5 *2 (-621 (-747))) (-5 *1 (-875 *4)))) (-3091 (*1 *2 *1) (-12 (-5 *2 (-1069 *3)) (-5 *1 (-875 *3)) (-4 *3 (-1067)))) (-2412 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-875 *3)) (-4 *3 (-1067)))) (-2438 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-875 *3)) (-4 *3 (-1067)))) (-2998 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-875 *3)) (-4 *3 (-1067)))) (-2998 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1231)) (-5 *1 (-875 *4)) (-4 *4 (-1067)))))
-(-13 (-1067) (-10 -8 (-15 -3846 ((-621 (-876 |#1|)) $)) (-15 -2384 ((-621 (-876 |#1|)) $)) (-15 -3341 ((-876 |#1|) $ (-747))) (-15 -3239 ((-876 |#1|) $ (-549))) (-15 -3239 ((-876 |#1|) $)) (-15 -2088 ((-747) $)) (-15 -3701 ((-747) $)) (-15 -1864 ((-621 |#1|) $)) (-15 -3961 ((-621 (-876 |#1|)) $)) (-15 -2779 ((-621 (-621 (-747))) $)) (-15 -3846 ($ (-621 (-876 |#1|)))) (-15 -3324 ($ (-621 (-876 |#1|)))) (-15 -1288 ((-1069 |#1|) $ |#1|)) (-15 -2762 ((-1069 (-1069 |#1|)) $)) (-15 -1288 ((-1069 (-1069 |#1|)) $ (-1069 |#1|))) (-15 -1288 ((-1069 (-621 |#1|)) $ (-621 |#1|))) (-15 -2090 ((-112) (-876 |#1|) $)) (-15 -1798 ((-621 (-747)) (-876 |#1|) $)) (-15 -3357 ((-621 (-747)) (-876 |#1|) $)) (-15 -3091 ((-1069 |#1|) $)) (-15 -2412 ((-112) $ $)) (-15 -2438 ((-112) $ $)) (-15 -2998 ((-1231) $)) (-15 -2998 ((-1231) $ (-549) (-549)))))
-((-3834 (((-112) $ $) NIL)) (-3193 (((-621 $) (-621 $)) 77)) (-1872 (((-549) $) 60)) (-1682 (($) NIL T CONST)) (-2114 (((-3 $ "failed") $) NIL)) (-2088 (((-747) $) 58)) (-1288 (((-1069 |#1|) $ |#1|) 49)) (-2675 (((-112) $) NIL)) (-3559 (((-112) $) 63)) (-2584 (((-747) $) 61)) (-3091 (((-1069 |#1|) $) 42)) (-2863 (($ $ $) NIL (-1536 (|has| |#1| (-361)) (|has| |#1| (-823))))) (-3575 (($ $ $) NIL (-1536 (|has| |#1| (-361)) (|has| |#1| (-823))))) (-1424 (((-2 (|:| |preimage| (-621 |#1|)) (|:| |image| (-621 |#1|))) $) 37)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 93)) (-3990 (((-1087) $) NIL)) (-3845 (((-1069 |#1|) $) 100 (|has| |#1| (-361)))) (-3450 (((-112) $) 59)) (-2686 ((|#1| $ |#1|) 47)) (-3341 ((|#1| $ |#1|) 94)) (-3701 (((-747) $) 44)) (-3489 (($ (-621 (-621 |#1|))) 85)) (-1905 (((-942) $) 53)) (-3820 (($ (-621 |#1|)) 21)) (-1955 (($ $ $) NIL)) (-3293 (($ $ $) NIL)) (-3738 (($ (-621 (-621 |#1|))) 39)) (-3962 (($ (-621 (-621 |#1|))) 88)) (-2899 (($ (-621 |#1|)) 96)) (-3846 (((-834) $) 84) (($ (-621 (-621 |#1|))) 66) (($ (-621 |#1|)) 67)) (-3287 (($) 16 T CONST)) (-2448 (((-112) $ $) NIL (-1536 (|has| |#1| (-361)) (|has| |#1| (-823))))) (-2425 (((-112) $ $) NIL (-1536 (|has| |#1| (-361)) (|has| |#1| (-823))))) (-2389 (((-112) $ $) 45)) (-2438 (((-112) $ $) NIL (-1536 (|has| |#1| (-361)) (|has| |#1| (-823))))) (-2412 (((-112) $ $) 65)) (-2513 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ $ $) 22)))
-(((-876 |#1|) (-13 (-874 |#1|) (-10 -8 (-15 -1424 ((-2 (|:| |preimage| (-621 |#1|)) (|:| |image| (-621 |#1|))) $)) (-15 -3738 ($ (-621 (-621 |#1|)))) (-15 -3846 ($ (-621 (-621 |#1|)))) (-15 -3846 ($ (-621 |#1|))) (-15 -3962 ($ (-621 (-621 |#1|)))) (-15 -3701 ((-747) $)) (-15 -3091 ((-1069 |#1|) $)) (-15 -1905 ((-942) $)) (-15 -2088 ((-747) $)) (-15 -2584 ((-747) $)) (-15 -1872 ((-549) $)) (-15 -3450 ((-112) $)) (-15 -3559 ((-112) $)) (-15 -3193 ((-621 $) (-621 $))) (IF (|has| |#1| (-361)) (-15 -3845 ((-1069 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-534)) (-15 -2899 ($ (-621 |#1|))) (IF (|has| |#1| (-361)) (-15 -2899 ($ (-621 |#1|))) |%noBranch|)))) (-1067)) (T -876))
-((-1424 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |preimage| (-621 *3)) (|:| |image| (-621 *3)))) (-5 *1 (-876 *3)) (-4 *3 (-1067)))) (-3738 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1067)) (-5 *1 (-876 *3)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1067)) (-5 *1 (-876 *3)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-5 *1 (-876 *3)))) (-3962 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1067)) (-5 *1 (-876 *3)))) (-3701 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-876 *3)) (-4 *3 (-1067)))) (-3091 (*1 *2 *1) (-12 (-5 *2 (-1069 *3)) (-5 *1 (-876 *3)) (-4 *3 (-1067)))) (-1905 (*1 *2 *1) (-12 (-5 *2 (-942)) (-5 *1 (-876 *3)) (-4 *3 (-1067)))) (-2088 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-876 *3)) (-4 *3 (-1067)))) (-2584 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-876 *3)) (-4 *3 (-1067)))) (-1872 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-876 *3)) (-4 *3 (-1067)))) (-3450 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-876 *3)) (-4 *3 (-1067)))) (-3559 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-876 *3)) (-4 *3 (-1067)))) (-3193 (*1 *2 *2) (-12 (-5 *2 (-621 (-876 *3))) (-5 *1 (-876 *3)) (-4 *3 (-1067)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-1069 *3)) (-5 *1 (-876 *3)) (-4 *3 (-361)) (-4 *3 (-1067)))) (-2899 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-5 *1 (-876 *3)))))
-(-13 (-874 |#1|) (-10 -8 (-15 -1424 ((-2 (|:| |preimage| (-621 |#1|)) (|:| |image| (-621 |#1|))) $)) (-15 -3738 ($ (-621 (-621 |#1|)))) (-15 -3846 ($ (-621 (-621 |#1|)))) (-15 -3846 ($ (-621 |#1|))) (-15 -3962 ($ (-621 (-621 |#1|)))) (-15 -3701 ((-747) $)) (-15 -3091 ((-1069 |#1|) $)) (-15 -1905 ((-942) $)) (-15 -2088 ((-747) $)) (-15 -2584 ((-747) $)) (-15 -1872 ((-549) $)) (-15 -3450 ((-112) $)) (-15 -3559 ((-112) $)) (-15 -3193 ((-621 $) (-621 $))) (IF (|has| |#1| (-361)) (-15 -3845 ((-1069 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-534)) (-15 -2899 ($ (-621 |#1|))) (IF (|has| |#1| (-361)) (-15 -2899 ($ (-621 |#1|))) |%noBranch|))))
-((-3153 (((-3 (-621 (-1139 |#4|)) "failed") (-621 (-1139 |#4|)) (-1139 |#4|)) 128)) (-2971 ((|#1|) 77)) (-1480 (((-411 (-1139 |#4|)) (-1139 |#4|)) 137)) (-2218 (((-411 (-1139 |#4|)) (-621 |#3|) (-1139 |#4|)) 69)) (-1416 (((-411 (-1139 |#4|)) (-1139 |#4|)) 147)) (-1975 (((-3 (-621 (-1139 |#4|)) "failed") (-621 (-1139 |#4|)) (-1139 |#4|) |#3|) 92)))
-(((-877 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3153 ((-3 (-621 (-1139 |#4|)) "failed") (-621 (-1139 |#4|)) (-1139 |#4|))) (-15 -1416 ((-411 (-1139 |#4|)) (-1139 |#4|))) (-15 -1480 ((-411 (-1139 |#4|)) (-1139 |#4|))) (-15 -2971 (|#1|)) (-15 -1975 ((-3 (-621 (-1139 |#4|)) "failed") (-621 (-1139 |#4|)) (-1139 |#4|) |#3|)) (-15 -2218 ((-411 (-1139 |#4|)) (-621 |#3|) (-1139 |#4|)))) (-880) (-769) (-823) (-920 |#1| |#2| |#3|)) (T -877))
-((-2218 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *7)) (-4 *7 (-823)) (-4 *5 (-880)) (-4 *6 (-769)) (-4 *8 (-920 *5 *6 *7)) (-5 *2 (-411 (-1139 *8))) (-5 *1 (-877 *5 *6 *7 *8)) (-5 *4 (-1139 *8)))) (-1975 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *2 (-621 (-1139 *7))) (-5 *3 (-1139 *7)) (-4 *7 (-920 *5 *6 *4)) (-4 *5 (-880)) (-4 *6 (-769)) (-4 *4 (-823)) (-5 *1 (-877 *5 *6 *4 *7)))) (-2971 (*1 *2) (-12 (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-880)) (-5 *1 (-877 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))) (-1480 (*1 *2 *3) (-12 (-4 *4 (-880)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-411 (-1139 *7))) (-5 *1 (-877 *4 *5 *6 *7)) (-5 *3 (-1139 *7)))) (-1416 (*1 *2 *3) (-12 (-4 *4 (-880)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-411 (-1139 *7))) (-5 *1 (-877 *4 *5 *6 *7)) (-5 *3 (-1139 *7)))) (-3153 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-621 (-1139 *7))) (-5 *3 (-1139 *7)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-880)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-877 *4 *5 *6 *7)))))
-(-10 -7 (-15 -3153 ((-3 (-621 (-1139 |#4|)) "failed") (-621 (-1139 |#4|)) (-1139 |#4|))) (-15 -1416 ((-411 (-1139 |#4|)) (-1139 |#4|))) (-15 -1480 ((-411 (-1139 |#4|)) (-1139 |#4|))) (-15 -2971 (|#1|)) (-15 -1975 ((-3 (-621 (-1139 |#4|)) "failed") (-621 (-1139 |#4|)) (-1139 |#4|) |#3|)) (-15 -2218 ((-411 (-1139 |#4|)) (-621 |#3|) (-1139 |#4|))))
-((-3153 (((-3 (-621 (-1139 |#2|)) "failed") (-621 (-1139 |#2|)) (-1139 |#2|)) 36)) (-2971 ((|#1|) 54)) (-1480 (((-411 (-1139 |#2|)) (-1139 |#2|)) 102)) (-2218 (((-411 (-1139 |#2|)) (-1139 |#2|)) 90)) (-1416 (((-411 (-1139 |#2|)) (-1139 |#2|)) 113)))
-(((-878 |#1| |#2|) (-10 -7 (-15 -3153 ((-3 (-621 (-1139 |#2|)) "failed") (-621 (-1139 |#2|)) (-1139 |#2|))) (-15 -1416 ((-411 (-1139 |#2|)) (-1139 |#2|))) (-15 -1480 ((-411 (-1139 |#2|)) (-1139 |#2|))) (-15 -2971 (|#1|)) (-15 -2218 ((-411 (-1139 |#2|)) (-1139 |#2|)))) (-880) (-1202 |#1|)) (T -878))
-((-2218 (*1 *2 *3) (-12 (-4 *4 (-880)) (-4 *5 (-1202 *4)) (-5 *2 (-411 (-1139 *5))) (-5 *1 (-878 *4 *5)) (-5 *3 (-1139 *5)))) (-2971 (*1 *2) (-12 (-4 *2 (-880)) (-5 *1 (-878 *2 *3)) (-4 *3 (-1202 *2)))) (-1480 (*1 *2 *3) (-12 (-4 *4 (-880)) (-4 *5 (-1202 *4)) (-5 *2 (-411 (-1139 *5))) (-5 *1 (-878 *4 *5)) (-5 *3 (-1139 *5)))) (-1416 (*1 *2 *3) (-12 (-4 *4 (-880)) (-4 *5 (-1202 *4)) (-5 *2 (-411 (-1139 *5))) (-5 *1 (-878 *4 *5)) (-5 *3 (-1139 *5)))) (-3153 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-621 (-1139 *5))) (-5 *3 (-1139 *5)) (-4 *5 (-1202 *4)) (-4 *4 (-880)) (-5 *1 (-878 *4 *5)))))
-(-10 -7 (-15 -3153 ((-3 (-621 (-1139 |#2|)) "failed") (-621 (-1139 |#2|)) (-1139 |#2|))) (-15 -1416 ((-411 (-1139 |#2|)) (-1139 |#2|))) (-15 -1480 ((-411 (-1139 |#2|)) (-1139 |#2|))) (-15 -2971 (|#1|)) (-15 -2218 ((-411 (-1139 |#2|)) (-1139 |#2|))))
-((-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) 41)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 18)) (-2210 (((-3 $ "failed") $) 35)))
-(((-879 |#1|) (-10 -8 (-15 -2210 ((-3 |#1| "failed") |#1|)) (-15 -1348 ((-3 (-621 (-1139 |#1|)) "failed") (-621 (-1139 |#1|)) (-1139 |#1|))) (-15 -1721 ((-1139 |#1|) (-1139 |#1|) (-1139 |#1|)))) (-880)) (T -879))
-NIL
-(-10 -8 (-15 -2210 ((-3 |#1| "failed") |#1|)) (-15 -1348 ((-3 (-621 (-1139 |#1|)) "failed") (-621 (-1139 |#1|)) (-1139 |#1|))) (-15 -1721 ((-1139 |#1|) (-1139 |#1|) (-1139 |#1|))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-2001 (((-3 $ "failed") $ $) 19)) (-3231 (((-411 (-1139 $)) (-1139 $)) 58)) (-3979 (($ $) 49)) (-2402 (((-411 $) $) 50)) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) 55)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-1420 (((-112) $) 51)) (-2675 (((-112) $) 30)) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-2905 (((-411 (-1139 $)) (-1139 $)) 56)) (-2413 (((-411 (-1139 $)) (-1139 $)) 57)) (-2121 (((-411 $) $) 48)) (-2042 (((-3 $ "failed") $ $) 40)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) 54 (|has| $ (-143)))) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41)) (-2210 (((-3 $ "failed") $) 53 (|has| $ (-143)))) (-2082 (((-747)) 28)) (-1498 (((-112) $ $) 37)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+((-3947 (*1 *2 *3 *4) (-12 (-4 *1 (-866)) (-5 *3 (-1030)) (-5 *4 (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219)))) (-5 *2 (-2 (|:| -3947 (-372)) (|:| |explanations| (-1124)))))) (-1292 (*1 *2 *3) (-12 (-4 *1 (-866)) (-5 *3 (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219)))) (-5 *2 (-1006)))))
+(-13 (-1066) (-10 -7 (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))) (-1030) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219))))) (-15 -1292 ((-1006) (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219)))))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-3131 ((|#1| |#1| (-747)) 24)) (-4082 (((-3 |#1| "failed") |#1| |#1|) 22)) (-2570 (((-3 (-2 (|:| -3837 |#1|) (|:| -3847 |#1|)) "failed") |#1| (-747) (-747)) 27) (((-621 |#1|) |#1|) 29)))
+(((-867 |#1| |#2|) (-10 -7 (-15 -2570 ((-621 |#1|) |#1|)) (-15 -2570 ((-3 (-2 (|:| -3837 |#1|) (|:| -3847 |#1|)) "failed") |#1| (-747) (-747))) (-15 -4082 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3131 (|#1| |#1| (-747)))) (-1201 |#2|) (-356)) (T -867))
+((-3131 (*1 *2 *2 *3) (-12 (-5 *3 (-747)) (-4 *4 (-356)) (-5 *1 (-867 *2 *4)) (-4 *2 (-1201 *4)))) (-4082 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-356)) (-5 *1 (-867 *2 *3)) (-4 *2 (-1201 *3)))) (-2570 (*1 *2 *3 *4 *4) (|partial| -12 (-5 *4 (-747)) (-4 *5 (-356)) (-5 *2 (-2 (|:| -3837 *3) (|:| -3847 *3))) (-5 *1 (-867 *3 *5)) (-4 *3 (-1201 *5)))) (-2570 (*1 *2 *3) (-12 (-4 *4 (-356)) (-5 *2 (-621 *3)) (-5 *1 (-867 *3 *4)) (-4 *3 (-1201 *4)))))
+(-10 -7 (-15 -2570 ((-621 |#1|) |#1|)) (-15 -2570 ((-3 (-2 (|:| -3837 |#1|) (|:| -3847 |#1|)) "failed") |#1| (-747) (-747))) (-15 -4082 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3131 (|#1| |#1| (-747))))
+((-2310 (((-1006) (-372) (-372) (-372) (-372) (-747) (-747) (-621 (-309 (-372))) (-621 (-621 (-309 (-372)))) (-1124)) 96) (((-1006) (-372) (-372) (-372) (-372) (-747) (-747) (-621 (-309 (-372))) (-621 (-621 (-309 (-372)))) (-1124) (-219)) 91) (((-1006) (-869) (-1030)) 83) (((-1006) (-869)) 84)) (-3947 (((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-869) (-1030)) 59) (((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-869)) 61)))
+(((-868) (-10 -7 (-15 -2310 ((-1006) (-869))) (-15 -2310 ((-1006) (-869) (-1030))) (-15 -2310 ((-1006) (-372) (-372) (-372) (-372) (-747) (-747) (-621 (-309 (-372))) (-621 (-621 (-309 (-372)))) (-1124) (-219))) (-15 -2310 ((-1006) (-372) (-372) (-372) (-372) (-747) (-747) (-621 (-309 (-372))) (-621 (-621 (-309 (-372)))) (-1124))) (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-869))) (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-869) (-1030))))) (T -868))
+((-3947 (*1 *2 *3 *4) (-12 (-5 *3 (-869)) (-5 *4 (-1030)) (-5 *2 (-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))))) (-5 *1 (-868)))) (-3947 (*1 *2 *3) (-12 (-5 *3 (-869)) (-5 *2 (-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124))))) (-5 *1 (-868)))) (-2310 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7) (-12 (-5 *4 (-747)) (-5 *6 (-621 (-621 (-309 *3)))) (-5 *7 (-1124)) (-5 *5 (-621 (-309 (-372)))) (-5 *3 (-372)) (-5 *2 (-1006)) (-5 *1 (-868)))) (-2310 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8) (-12 (-5 *4 (-747)) (-5 *6 (-621 (-621 (-309 *3)))) (-5 *7 (-1124)) (-5 *8 (-219)) (-5 *5 (-621 (-309 (-372)))) (-5 *3 (-372)) (-5 *2 (-1006)) (-5 *1 (-868)))) (-2310 (*1 *2 *3 *4) (-12 (-5 *3 (-869)) (-5 *4 (-1030)) (-5 *2 (-1006)) (-5 *1 (-868)))) (-2310 (*1 *2 *3) (-12 (-5 *3 (-869)) (-5 *2 (-1006)) (-5 *1 (-868)))))
+(-10 -7 (-15 -2310 ((-1006) (-869))) (-15 -2310 ((-1006) (-869) (-1030))) (-15 -2310 ((-1006) (-372) (-372) (-372) (-372) (-747) (-747) (-621 (-309 (-372))) (-621 (-621 (-309 (-372)))) (-1124) (-219))) (-15 -2310 ((-1006) (-372) (-372) (-372) (-372) (-747) (-747) (-621 (-309 (-372))) (-621 (-621 (-309 (-372)))) (-1124))) (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-869))) (-15 -3947 ((-2 (|:| -3947 (-372)) (|:| -2479 (-1124)) (|:| |explanations| (-621 (-1124)))) (-869) (-1030))))
+((-3832 (((-112) $ $) NIL)) (-2657 (((-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219))) $) 19)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 21) (($ (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219)))) 18)) (-2387 (((-112) $ $) NIL)))
+(((-869) (-13 (-1066) (-10 -8 (-15 -3845 ($ (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219))))) (-15 -3845 ((-834) $)) (-15 -2657 ((-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219))) $))))) (T -869))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-869)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219)))) (-5 *1 (-869)))) (-2657 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219)))) (-5 *1 (-869)))))
+(-13 (-1066) (-10 -8 (-15 -3845 ($ (-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219))))) (-15 -3845 ((-834) $)) (-15 -2657 ((-2 (|:| |pde| (-621 (-309 (-219)))) (|:| |constraints| (-621 (-2 (|:| |start| (-219)) (|:| |finish| (-219)) (|:| |grid| (-747)) (|:| |boundaryType| (-549)) (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219)))))) (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124)) (|:| |tol| (-219))) $))))
+((-3455 (($ $ |#2|) NIL) (($ $ (-621 |#2|)) 10) (($ $ |#2| (-747)) 12) (($ $ (-621 |#2|) (-621 (-747))) 15)) (-1699 (($ $ |#2|) 16) (($ $ (-621 |#2|)) 18) (($ $ |#2| (-747)) 19) (($ $ (-621 |#2|) (-621 (-747))) 21)))
+(((-870 |#1| |#2|) (-10 -8 (-15 -1699 (|#1| |#1| (-621 |#2|) (-621 (-747)))) (-15 -1699 (|#1| |#1| |#2| (-747))) (-15 -1699 (|#1| |#1| (-621 |#2|))) (-15 -1699 (|#1| |#1| |#2|)) (-15 -3455 (|#1| |#1| (-621 |#2|) (-621 (-747)))) (-15 -3455 (|#1| |#1| |#2| (-747))) (-15 -3455 (|#1| |#1| (-621 |#2|))) (-15 -3455 (|#1| |#1| |#2|))) (-871 |#2|) (-1066)) (T -870))
+NIL
+(-10 -8 (-15 -1699 (|#1| |#1| (-621 |#2|) (-621 (-747)))) (-15 -1699 (|#1| |#1| |#2| (-747))) (-15 -1699 (|#1| |#1| (-621 |#2|))) (-15 -1699 (|#1| |#1| |#2|)) (-15 -3455 (|#1| |#1| (-621 |#2|) (-621 (-747)))) (-15 -3455 (|#1| |#1| |#2| (-747))) (-15 -3455 (|#1| |#1| (-621 |#2|))) (-15 -3455 (|#1| |#1| |#2|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3455 (($ $ |#1|) 40) (($ $ (-621 |#1|)) 39) (($ $ |#1| (-747)) 38) (($ $ (-621 |#1|) (-621 (-747))) 37)) (-3845 (((-834) $) 11) (($ (-549)) 27)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ |#1|) 36) (($ $ (-621 |#1|)) 35) (($ $ |#1| (-747)) 34) (($ $ (-621 |#1|) (-621 (-747))) 33)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+(((-871 |#1|) (-138) (-1066)) (T -871))
+((-3455 (*1 *1 *1 *2) (-12 (-4 *1 (-871 *2)) (-4 *2 (-1066)))) (-3455 (*1 *1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *1 (-871 *3)) (-4 *3 (-1066)))) (-3455 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-871 *2)) (-4 *2 (-1066)))) (-3455 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *4)) (-5 *3 (-621 (-747))) (-4 *1 (-871 *4)) (-4 *4 (-1066)))) (-1699 (*1 *1 *1 *2) (-12 (-4 *1 (-871 *2)) (-4 *2 (-1066)))) (-1699 (*1 *1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *1 (-871 *3)) (-4 *3 (-1066)))) (-1699 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-871 *2)) (-4 *2 (-1066)))) (-1699 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *4)) (-5 *3 (-621 (-747))) (-4 *1 (-871 *4)) (-4 *4 (-1066)))))
+(-13 (-1018) (-10 -8 (-15 -3455 ($ $ |t#1|)) (-15 -3455 ($ $ (-621 |t#1|))) (-15 -3455 ($ $ |t#1| (-747))) (-15 -3455 ($ $ (-621 |t#1|) (-621 (-747)))) (-15 -1699 ($ $ |t#1|)) (-15 -1699 ($ $ (-621 |t#1|))) (-15 -1699 ($ $ |t#1| (-747))) (-15 -1699 ($ $ (-621 |t#1|) (-621 (-747))))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-4160 ((|#1| $) 26)) (-2850 (((-112) $ (-747)) NIL)) (-2797 ((|#1| $ |#1|) NIL (|has| $ (-6 -4337)))) (-1735 (($ $ $) NIL (|has| $ (-6 -4337)))) (-1605 (($ $ $) NIL (|has| $ (-6 -4337)))) (-2250 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4337))) (($ $ "left" $) NIL (|has| $ (-6 -4337))) (($ $ "right" $) NIL (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) NIL (|has| $ (-6 -4337)))) (-3034 (($) NIL T CONST)) (-3847 (($ $) 25)) (-2777 (($ |#1|) 12) (($ $ $) 17)) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) NIL)) (-3585 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3837 (($ $) 23)) (-3590 (((-621 |#1|) $) NIL)) (-3028 (((-112) $) 20)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3541 (((-549) $ $) NIL)) (-2917 (((-112) $) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) NIL)) (-3845 (((-1165 |#1|) $) 9) (((-834) $) 29 (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) NIL)) (-3605 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 21 (|has| |#1| (-1066)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-872 |#1|) (-13 (-119 |#1|) (-10 -8 (-15 -2777 ($ |#1|)) (-15 -2777 ($ $ $)) (-15 -3845 ((-1165 |#1|) $)))) (-1066)) (T -872))
+((-2777 (*1 *1 *2) (-12 (-5 *1 (-872 *2)) (-4 *2 (-1066)))) (-2777 (*1 *1 *1 *1) (-12 (-5 *1 (-872 *2)) (-4 *2 (-1066)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-1165 *3)) (-5 *1 (-872 *3)) (-4 *3 (-1066)))))
+(-13 (-119 |#1|) (-10 -8 (-15 -2777 ($ |#1|)) (-15 -2777 ($ $ $)) (-15 -3845 ((-1165 |#1|) $))))
+((-3493 ((|#2| (-1108 |#1| |#2|)) 40)))
+(((-873 |#1| |#2|) (-10 -7 (-15 -3493 (|#2| (-1108 |#1| |#2|)))) (-892) (-13 (-1018) (-10 -7 (-6 (-4338 "*"))))) (T -873))
+((-3493 (*1 *2 *3) (-12 (-5 *3 (-1108 *4 *2)) (-14 *4 (-892)) (-4 *2 (-13 (-1018) (-10 -7 (-6 (-4338 "*"))))) (-5 *1 (-873 *4 *2)))))
+(-10 -7 (-15 -3493 (|#2| (-1108 |#1| |#2|))))
+((-3832 (((-112) $ $) 7)) (-3034 (($) 18 T CONST)) (-2612 (((-3 $ "failed") $) 15)) (-1517 (((-1068 |#1|) $ |#1|) 32)) (-2297 (((-112) $) 17)) (-2861 (($ $ $) 30 (-1536 (|has| |#1| (-823)) (|has| |#1| (-361))))) (-3574 (($ $ $) 29 (-1536 (|has| |#1| (-823)) (|has| |#1| (-361))))) (-3441 (((-1124) $) 9)) (-1990 (($ $) 24)) (-3988 (((-1086) $) 10)) (-2684 ((|#1| $ |#1|) 34)) (-3339 ((|#1| $ |#1|) 33)) (-2181 (($ (-621 (-621 |#1|))) 35)) (-2242 (($ (-621 |#1|)) 36)) (-1795 (($ $ $) 21)) (-3870 (($ $ $) 20)) (-3845 (((-834) $) 11)) (-3286 (($) 19 T CONST)) (-2447 (((-112) $ $) 27 (-1536 (|has| |#1| (-823)) (|has| |#1| (-361))))) (-2423 (((-112) $ $) 26 (-1536 (|has| |#1| (-823)) (|has| |#1| (-361))))) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 28 (-1536 (|has| |#1| (-823)) (|has| |#1| (-361))))) (-2409 (((-112) $ $) 31)) (-2511 (($ $ $) 23)) (** (($ $ (-892)) 13) (($ $ (-747)) 16) (($ $ (-549)) 22)) (* (($ $ $) 14)))
+(((-874 |#1|) (-138) (-1066)) (T -874))
+((-2242 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-4 *1 (-874 *3)))) (-2181 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1066)) (-4 *1 (-874 *3)))) (-2684 (*1 *2 *1 *2) (-12 (-4 *1 (-874 *2)) (-4 *2 (-1066)))) (-3339 (*1 *2 *1 *2) (-12 (-4 *1 (-874 *2)) (-4 *2 (-1066)))) (-1517 (*1 *2 *1 *3) (-12 (-4 *1 (-874 *3)) (-4 *3 (-1066)) (-5 *2 (-1068 *3)))) (-2409 (*1 *2 *1 *1) (-12 (-4 *1 (-874 *3)) (-4 *3 (-1066)) (-5 *2 (-112)))))
+(-13 (-465) (-10 -8 (-15 -2242 ($ (-621 |t#1|))) (-15 -2181 ($ (-621 (-621 |t#1|)))) (-15 -2684 (|t#1| $ |t#1|)) (-15 -3339 (|t#1| $ |t#1|)) (-15 -1517 ((-1068 |t#1|) $ |t#1|)) (-15 -2409 ((-112) $ $)) (IF (|has| |t#1| (-823)) (-6 (-823)) |%noBranch|) (IF (|has| |t#1| (-361)) (-6 (-823)) |%noBranch|)))
+(((-101) . T) ((-593 (-834)) . T) ((-465) . T) ((-703) . T) ((-823) -1536 (|has| |#1| (-823)) (|has| |#1| (-361))) ((-1078) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-1632 (((-621 (-621 (-747))) $) 108)) (-1574 (((-621 (-747)) (-876 |#1|) $) 130)) (-1395 (((-621 (-747)) (-876 |#1|) $) 131)) (-3960 (((-621 (-876 |#1|)) $) 98)) (-3237 (((-876 |#1|) $ (-549)) 103) (((-876 |#1|) $) 104)) (-3442 (($ (-621 (-876 |#1|))) 110)) (-2729 (((-747) $) 105)) (-3687 (((-1068 (-1068 |#1|)) $) 128)) (-1517 (((-1068 |#1|) $ |#1|) 121) (((-1068 (-1068 |#1|)) $ (-1068 |#1|)) 139) (((-1068 (-621 |#1|)) $ (-621 |#1|)) 142)) (-1866 (((-1068 |#1|) $) 101)) (-1593 (((-112) (-876 |#1|) $) 92)) (-3441 (((-1124) $) NIL)) (-1836 (((-1230) $) 95) (((-1230) $ (-549) (-549)) 143)) (-3988 (((-1086) $) NIL)) (-3573 (((-621 (-876 |#1|)) $) 96)) (-3339 (((-876 |#1|) $ (-747)) 99)) (-3977 (((-747) $) 106)) (-3845 (((-834) $) 119) (((-621 (-876 |#1|)) $) 23) (($ (-621 (-876 |#1|))) 109)) (-1863 (((-621 |#1|) $) 107)) (-2387 (((-112) $ $) 136)) (-2436 (((-112) $ $) 134)) (-2409 (((-112) $ $) 133)))
+(((-875 |#1|) (-13 (-1066) (-10 -8 (-15 -3845 ((-621 (-876 |#1|)) $)) (-15 -3573 ((-621 (-876 |#1|)) $)) (-15 -3339 ((-876 |#1|) $ (-747))) (-15 -3237 ((-876 |#1|) $ (-549))) (-15 -3237 ((-876 |#1|) $)) (-15 -2729 ((-747) $)) (-15 -3977 ((-747) $)) (-15 -1863 ((-621 |#1|) $)) (-15 -3960 ((-621 (-876 |#1|)) $)) (-15 -1632 ((-621 (-621 (-747))) $)) (-15 -3845 ($ (-621 (-876 |#1|)))) (-15 -3442 ($ (-621 (-876 |#1|)))) (-15 -1517 ((-1068 |#1|) $ |#1|)) (-15 -3687 ((-1068 (-1068 |#1|)) $)) (-15 -1517 ((-1068 (-1068 |#1|)) $ (-1068 |#1|))) (-15 -1517 ((-1068 (-621 |#1|)) $ (-621 |#1|))) (-15 -1593 ((-112) (-876 |#1|) $)) (-15 -1574 ((-621 (-747)) (-876 |#1|) $)) (-15 -1395 ((-621 (-747)) (-876 |#1|) $)) (-15 -1866 ((-1068 |#1|) $)) (-15 -2409 ((-112) $ $)) (-15 -2436 ((-112) $ $)) (-15 -1836 ((-1230) $)) (-15 -1836 ((-1230) $ (-549) (-549))))) (-1066)) (T -875))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-621 (-876 *3))) (-5 *1 (-875 *3)) (-4 *3 (-1066)))) (-3573 (*1 *2 *1) (-12 (-5 *2 (-621 (-876 *3))) (-5 *1 (-875 *3)) (-4 *3 (-1066)))) (-3339 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *2 (-876 *4)) (-5 *1 (-875 *4)) (-4 *4 (-1066)))) (-3237 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-876 *4)) (-5 *1 (-875 *4)) (-4 *4 (-1066)))) (-3237 (*1 *2 *1) (-12 (-5 *2 (-876 *3)) (-5 *1 (-875 *3)) (-4 *3 (-1066)))) (-2729 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-875 *3)) (-4 *3 (-1066)))) (-3977 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-875 *3)) (-4 *3 (-1066)))) (-1863 (*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-875 *3)) (-4 *3 (-1066)))) (-3960 (*1 *2 *1) (-12 (-5 *2 (-621 (-876 *3))) (-5 *1 (-875 *3)) (-4 *3 (-1066)))) (-1632 (*1 *2 *1) (-12 (-5 *2 (-621 (-621 (-747)))) (-5 *1 (-875 *3)) (-4 *3 (-1066)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-621 (-876 *3))) (-4 *3 (-1066)) (-5 *1 (-875 *3)))) (-3442 (*1 *1 *2) (-12 (-5 *2 (-621 (-876 *3))) (-4 *3 (-1066)) (-5 *1 (-875 *3)))) (-1517 (*1 *2 *1 *3) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-875 *3)) (-4 *3 (-1066)))) (-3687 (*1 *2 *1) (-12 (-5 *2 (-1068 (-1068 *3))) (-5 *1 (-875 *3)) (-4 *3 (-1066)))) (-1517 (*1 *2 *1 *3) (-12 (-4 *4 (-1066)) (-5 *2 (-1068 (-1068 *4))) (-5 *1 (-875 *4)) (-5 *3 (-1068 *4)))) (-1517 (*1 *2 *1 *3) (-12 (-4 *4 (-1066)) (-5 *2 (-1068 (-621 *4))) (-5 *1 (-875 *4)) (-5 *3 (-621 *4)))) (-1593 (*1 *2 *3 *1) (-12 (-5 *3 (-876 *4)) (-4 *4 (-1066)) (-5 *2 (-112)) (-5 *1 (-875 *4)))) (-1574 (*1 *2 *3 *1) (-12 (-5 *3 (-876 *4)) (-4 *4 (-1066)) (-5 *2 (-621 (-747))) (-5 *1 (-875 *4)))) (-1395 (*1 *2 *3 *1) (-12 (-5 *3 (-876 *4)) (-4 *4 (-1066)) (-5 *2 (-621 (-747))) (-5 *1 (-875 *4)))) (-1866 (*1 *2 *1) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-875 *3)) (-4 *3 (-1066)))) (-2409 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-875 *3)) (-4 *3 (-1066)))) (-2436 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-875 *3)) (-4 *3 (-1066)))) (-1836 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-875 *3)) (-4 *3 (-1066)))) (-1836 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1230)) (-5 *1 (-875 *4)) (-4 *4 (-1066)))))
+(-13 (-1066) (-10 -8 (-15 -3845 ((-621 (-876 |#1|)) $)) (-15 -3573 ((-621 (-876 |#1|)) $)) (-15 -3339 ((-876 |#1|) $ (-747))) (-15 -3237 ((-876 |#1|) $ (-549))) (-15 -3237 ((-876 |#1|) $)) (-15 -2729 ((-747) $)) (-15 -3977 ((-747) $)) (-15 -1863 ((-621 |#1|) $)) (-15 -3960 ((-621 (-876 |#1|)) $)) (-15 -1632 ((-621 (-621 (-747))) $)) (-15 -3845 ($ (-621 (-876 |#1|)))) (-15 -3442 ($ (-621 (-876 |#1|)))) (-15 -1517 ((-1068 |#1|) $ |#1|)) (-15 -3687 ((-1068 (-1068 |#1|)) $)) (-15 -1517 ((-1068 (-1068 |#1|)) $ (-1068 |#1|))) (-15 -1517 ((-1068 (-621 |#1|)) $ (-621 |#1|))) (-15 -1593 ((-112) (-876 |#1|) $)) (-15 -1574 ((-621 (-747)) (-876 |#1|) $)) (-15 -1395 ((-621 (-747)) (-876 |#1|) $)) (-15 -1866 ((-1068 |#1|) $)) (-15 -2409 ((-112) $ $)) (-15 -2436 ((-112) $ $)) (-15 -1836 ((-1230) $)) (-15 -1836 ((-1230) $ (-549) (-549)))))
+((-3832 (((-112) $ $) NIL)) (-3191 (((-621 $) (-621 $)) 77)) (-1741 (((-549) $) 60)) (-3034 (($) NIL T CONST)) (-2612 (((-3 $ "failed") $) NIL)) (-2729 (((-747) $) 58)) (-1517 (((-1068 |#1|) $ |#1|) 49)) (-2297 (((-112) $) NIL)) (-2803 (((-112) $) 63)) (-2719 (((-747) $) 61)) (-1866 (((-1068 |#1|) $) 42)) (-2861 (($ $ $) NIL (-1536 (|has| |#1| (-361)) (|has| |#1| (-823))))) (-3574 (($ $ $) NIL (-1536 (|has| |#1| (-361)) (|has| |#1| (-823))))) (-1793 (((-2 (|:| |preimage| (-621 |#1|)) (|:| |image| (-621 |#1|))) $) 37)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 93)) (-3988 (((-1086) $) NIL)) (-4131 (((-1068 |#1|) $) 100 (|has| |#1| (-361)))) (-1980 (((-112) $) 59)) (-2684 ((|#1| $ |#1|) 47)) (-3339 ((|#1| $ |#1|) 94)) (-3977 (((-747) $) 44)) (-2181 (($ (-621 (-621 |#1|))) 85)) (-3912 (((-942) $) 53)) (-2242 (($ (-621 |#1|)) 21)) (-1795 (($ $ $) NIL)) (-3870 (($ $ $) NIL)) (-4048 (($ (-621 (-621 |#1|))) 39)) (-4056 (($ (-621 (-621 |#1|))) 88)) (-2151 (($ (-621 |#1|)) 96)) (-3845 (((-834) $) 84) (($ (-621 (-621 |#1|))) 66) (($ (-621 |#1|)) 67)) (-3286 (($) 16 T CONST)) (-2447 (((-112) $ $) NIL (-1536 (|has| |#1| (-361)) (|has| |#1| (-823))))) (-2423 (((-112) $ $) NIL (-1536 (|has| |#1| (-361)) (|has| |#1| (-823))))) (-2387 (((-112) $ $) 45)) (-2436 (((-112) $ $) NIL (-1536 (|has| |#1| (-361)) (|has| |#1| (-823))))) (-2409 (((-112) $ $) 65)) (-2511 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ $ $) 22)))
+(((-876 |#1|) (-13 (-874 |#1|) (-10 -8 (-15 -1793 ((-2 (|:| |preimage| (-621 |#1|)) (|:| |image| (-621 |#1|))) $)) (-15 -4048 ($ (-621 (-621 |#1|)))) (-15 -3845 ($ (-621 (-621 |#1|)))) (-15 -3845 ($ (-621 |#1|))) (-15 -4056 ($ (-621 (-621 |#1|)))) (-15 -3977 ((-747) $)) (-15 -1866 ((-1068 |#1|) $)) (-15 -3912 ((-942) $)) (-15 -2729 ((-747) $)) (-15 -2719 ((-747) $)) (-15 -1741 ((-549) $)) (-15 -1980 ((-112) $)) (-15 -2803 ((-112) $)) (-15 -3191 ((-621 $) (-621 $))) (IF (|has| |#1| (-361)) (-15 -4131 ((-1068 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-534)) (-15 -2151 ($ (-621 |#1|))) (IF (|has| |#1| (-361)) (-15 -2151 ($ (-621 |#1|))) |%noBranch|)))) (-1066)) (T -876))
+((-1793 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |preimage| (-621 *3)) (|:| |image| (-621 *3)))) (-5 *1 (-876 *3)) (-4 *3 (-1066)))) (-4048 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1066)) (-5 *1 (-876 *3)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1066)) (-5 *1 (-876 *3)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-5 *1 (-876 *3)))) (-4056 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1066)) (-5 *1 (-876 *3)))) (-3977 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-876 *3)) (-4 *3 (-1066)))) (-1866 (*1 *2 *1) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-876 *3)) (-4 *3 (-1066)))) (-3912 (*1 *2 *1) (-12 (-5 *2 (-942)) (-5 *1 (-876 *3)) (-4 *3 (-1066)))) (-2729 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-876 *3)) (-4 *3 (-1066)))) (-2719 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-876 *3)) (-4 *3 (-1066)))) (-1741 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-876 *3)) (-4 *3 (-1066)))) (-1980 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-876 *3)) (-4 *3 (-1066)))) (-2803 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-876 *3)) (-4 *3 (-1066)))) (-3191 (*1 *2 *2) (-12 (-5 *2 (-621 (-876 *3))) (-5 *1 (-876 *3)) (-4 *3 (-1066)))) (-4131 (*1 *2 *1) (-12 (-5 *2 (-1068 *3)) (-5 *1 (-876 *3)) (-4 *3 (-361)) (-4 *3 (-1066)))) (-2151 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-5 *1 (-876 *3)))))
+(-13 (-874 |#1|) (-10 -8 (-15 -1793 ((-2 (|:| |preimage| (-621 |#1|)) (|:| |image| (-621 |#1|))) $)) (-15 -4048 ($ (-621 (-621 |#1|)))) (-15 -3845 ($ (-621 (-621 |#1|)))) (-15 -3845 ($ (-621 |#1|))) (-15 -4056 ($ (-621 (-621 |#1|)))) (-15 -3977 ((-747) $)) (-15 -1866 ((-1068 |#1|) $)) (-15 -3912 ((-942) $)) (-15 -2729 ((-747) $)) (-15 -2719 ((-747) $)) (-15 -1741 ((-549) $)) (-15 -1980 ((-112) $)) (-15 -2803 ((-112) $)) (-15 -3191 ((-621 $) (-621 $))) (IF (|has| |#1| (-361)) (-15 -4131 ((-1068 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-534)) (-15 -2151 ($ (-621 |#1|))) (IF (|has| |#1| (-361)) (-15 -2151 ($ (-621 |#1|))) |%noBranch|))))
+((-1529 (((-3 (-621 (-1138 |#4|)) "failed") (-621 (-1138 |#4|)) (-1138 |#4|)) 128)) (-3507 ((|#1|) 77)) (-3421 (((-411 (-1138 |#4|)) (-1138 |#4|)) 137)) (-1919 (((-411 (-1138 |#4|)) (-621 |#3|) (-1138 |#4|)) 69)) (-2403 (((-411 (-1138 |#4|)) (-1138 |#4|)) 147)) (-1937 (((-3 (-621 (-1138 |#4|)) "failed") (-621 (-1138 |#4|)) (-1138 |#4|) |#3|) 92)))
+(((-877 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1529 ((-3 (-621 (-1138 |#4|)) "failed") (-621 (-1138 |#4|)) (-1138 |#4|))) (-15 -2403 ((-411 (-1138 |#4|)) (-1138 |#4|))) (-15 -3421 ((-411 (-1138 |#4|)) (-1138 |#4|))) (-15 -3507 (|#1|)) (-15 -1937 ((-3 (-621 (-1138 |#4|)) "failed") (-621 (-1138 |#4|)) (-1138 |#4|) |#3|)) (-15 -1919 ((-411 (-1138 |#4|)) (-621 |#3|) (-1138 |#4|)))) (-880) (-769) (-823) (-920 |#1| |#2| |#3|)) (T -877))
+((-1919 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *7)) (-4 *7 (-823)) (-4 *5 (-880)) (-4 *6 (-769)) (-4 *8 (-920 *5 *6 *7)) (-5 *2 (-411 (-1138 *8))) (-5 *1 (-877 *5 *6 *7 *8)) (-5 *4 (-1138 *8)))) (-1937 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *2 (-621 (-1138 *7))) (-5 *3 (-1138 *7)) (-4 *7 (-920 *5 *6 *4)) (-4 *5 (-880)) (-4 *6 (-769)) (-4 *4 (-823)) (-5 *1 (-877 *5 *6 *4 *7)))) (-3507 (*1 *2) (-12 (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-880)) (-5 *1 (-877 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))) (-3421 (*1 *2 *3) (-12 (-4 *4 (-880)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-411 (-1138 *7))) (-5 *1 (-877 *4 *5 *6 *7)) (-5 *3 (-1138 *7)))) (-2403 (*1 *2 *3) (-12 (-4 *4 (-880)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-411 (-1138 *7))) (-5 *1 (-877 *4 *5 *6 *7)) (-5 *3 (-1138 *7)))) (-1529 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-621 (-1138 *7))) (-5 *3 (-1138 *7)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-880)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-877 *4 *5 *6 *7)))))
+(-10 -7 (-15 -1529 ((-3 (-621 (-1138 |#4|)) "failed") (-621 (-1138 |#4|)) (-1138 |#4|))) (-15 -2403 ((-411 (-1138 |#4|)) (-1138 |#4|))) (-15 -3421 ((-411 (-1138 |#4|)) (-1138 |#4|))) (-15 -3507 (|#1|)) (-15 -1937 ((-3 (-621 (-1138 |#4|)) "failed") (-621 (-1138 |#4|)) (-1138 |#4|) |#3|)) (-15 -1919 ((-411 (-1138 |#4|)) (-621 |#3|) (-1138 |#4|))))
+((-1529 (((-3 (-621 (-1138 |#2|)) "failed") (-621 (-1138 |#2|)) (-1138 |#2|)) 36)) (-3507 ((|#1|) 54)) (-3421 (((-411 (-1138 |#2|)) (-1138 |#2|)) 102)) (-1919 (((-411 (-1138 |#2|)) (-1138 |#2|)) 90)) (-2403 (((-411 (-1138 |#2|)) (-1138 |#2|)) 113)))
+(((-878 |#1| |#2|) (-10 -7 (-15 -1529 ((-3 (-621 (-1138 |#2|)) "failed") (-621 (-1138 |#2|)) (-1138 |#2|))) (-15 -2403 ((-411 (-1138 |#2|)) (-1138 |#2|))) (-15 -3421 ((-411 (-1138 |#2|)) (-1138 |#2|))) (-15 -3507 (|#1|)) (-15 -1919 ((-411 (-1138 |#2|)) (-1138 |#2|)))) (-880) (-1201 |#1|)) (T -878))
+((-1919 (*1 *2 *3) (-12 (-4 *4 (-880)) (-4 *5 (-1201 *4)) (-5 *2 (-411 (-1138 *5))) (-5 *1 (-878 *4 *5)) (-5 *3 (-1138 *5)))) (-3507 (*1 *2) (-12 (-4 *2 (-880)) (-5 *1 (-878 *2 *3)) (-4 *3 (-1201 *2)))) (-3421 (*1 *2 *3) (-12 (-4 *4 (-880)) (-4 *5 (-1201 *4)) (-5 *2 (-411 (-1138 *5))) (-5 *1 (-878 *4 *5)) (-5 *3 (-1138 *5)))) (-2403 (*1 *2 *3) (-12 (-4 *4 (-880)) (-4 *5 (-1201 *4)) (-5 *2 (-411 (-1138 *5))) (-5 *1 (-878 *4 *5)) (-5 *3 (-1138 *5)))) (-1529 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-621 (-1138 *5))) (-5 *3 (-1138 *5)) (-4 *5 (-1201 *4)) (-4 *4 (-880)) (-5 *1 (-878 *4 *5)))))
+(-10 -7 (-15 -1529 ((-3 (-621 (-1138 |#2|)) "failed") (-621 (-1138 |#2|)) (-1138 |#2|))) (-15 -2403 ((-411 (-1138 |#2|)) (-1138 |#2|))) (-15 -3421 ((-411 (-1138 |#2|)) (-1138 |#2|))) (-15 -3507 (|#1|)) (-15 -1919 ((-411 (-1138 |#2|)) (-1138 |#2|))))
+((-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) 41)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 18)) (-2343 (((-3 $ "failed") $) 35)))
+(((-879 |#1|) (-10 -8 (-15 -2343 ((-3 |#1| "failed") |#1|)) (-15 -3955 ((-3 (-621 (-1138 |#1|)) "failed") (-621 (-1138 |#1|)) (-1138 |#1|))) (-15 -2994 ((-1138 |#1|) (-1138 |#1|) (-1138 |#1|)))) (-880)) (T -879))
+NIL
+(-10 -8 (-15 -2343 ((-3 |#1| "failed") |#1|)) (-15 -3955 ((-3 (-621 (-1138 |#1|)) "failed") (-621 (-1138 |#1|)) (-1138 |#1|))) (-15 -2994 ((-1138 |#1|) (-1138 |#1|) (-1138 |#1|))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-2416 (((-3 $ "failed") $ $) 19)) (-3630 (((-411 (-1138 $)) (-1138 $)) 58)) (-3239 (($ $) 49)) (-2620 (((-411 $) $) 50)) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) 55)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-1464 (((-112) $) 51)) (-2297 (((-112) $) 30)) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-2609 (((-411 (-1138 $)) (-1138 $)) 56)) (-2193 (((-411 (-1138 $)) (-1138 $)) 57)) (-2119 (((-411 $) $) 48)) (-2040 (((-3 $ "failed") $ $) 40)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) 54 (|has| $ (-143)))) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41)) (-2343 (((-3 $ "failed") $) 53 (|has| $ (-143)))) (-2371 (((-747)) 28)) (-2441 (((-112) $ $) 37)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-880) (-138)) (T -880))
-((-1721 (*1 *2 *2 *2) (-12 (-5 *2 (-1139 *1)) (-4 *1 (-880)))) (-3231 (*1 *2 *3) (-12 (-4 *1 (-880)) (-5 *2 (-411 (-1139 *1))) (-5 *3 (-1139 *1)))) (-2413 (*1 *2 *3) (-12 (-4 *1 (-880)) (-5 *2 (-411 (-1139 *1))) (-5 *3 (-1139 *1)))) (-2905 (*1 *2 *3) (-12 (-4 *1 (-880)) (-5 *2 (-411 (-1139 *1))) (-5 *3 (-1139 *1)))) (-1348 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-621 (-1139 *1))) (-5 *3 (-1139 *1)) (-4 *1 (-880)))) (-4186 (*1 *2 *3) (|partial| -12 (-5 *3 (-665 *1)) (-4 *1 (-143)) (-4 *1 (-880)) (-5 *2 (-1226 *1)))) (-2210 (*1 *1 *1) (|partial| -12 (-4 *1 (-143)) (-4 *1 (-880)))))
-(-13 (-1184) (-10 -8 (-15 -3231 ((-411 (-1139 $)) (-1139 $))) (-15 -2413 ((-411 (-1139 $)) (-1139 $))) (-15 -2905 ((-411 (-1139 $)) (-1139 $))) (-15 -1721 ((-1139 $) (-1139 $) (-1139 $))) (-15 -1348 ((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $))) (IF (|has| $ (-143)) (PROGN (-15 -4186 ((-3 (-1226 $) "failed") (-665 $))) (-15 -2210 ((-3 $ "failed") $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-444) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1184) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2044 (((-112) $) NIL)) (-3214 (((-747)) NIL)) (-2906 (($ $ (-892)) NIL (|has| $ (-361))) (($ $) NIL)) (-3062 (((-1153 (-892) (-747)) (-549)) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3866 (((-112) $ $) NIL)) (-3614 (((-747)) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 $ "failed") $) NIL)) (-2659 (($ $) NIL)) (-3492 (($ (-1226 $)) NIL)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL)) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) NIL)) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-2405 (($) NIL)) (-2288 (((-112) $) NIL)) (-3165 (($ $) NIL) (($ $ (-747)) NIL)) (-1420 (((-112) $) NIL)) (-2088 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-2675 (((-112) $) NIL)) (-1973 (($) NIL (|has| $ (-361)))) (-4091 (((-112) $) NIL (|has| $ (-361)))) (-3630 (($ $ (-892)) NIL (|has| $ (-361))) (($ $) NIL)) (-1681 (((-3 $ "failed") $) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3788 (((-1139 $) $ (-892)) NIL (|has| $ (-361))) (((-1139 $) $) NIL)) (-1881 (((-892) $) NIL)) (-3318 (((-1139 $) $) NIL (|has| $ (-361)))) (-1983 (((-3 (-1139 $) "failed") $ $) NIL (|has| $ (-361))) (((-1139 $) $) NIL (|has| $ (-361)))) (-3719 (($ $ (-1139 $)) NIL (|has| $ (-361)))) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL T CONST)) (-3493 (($ (-892)) NIL)) (-3980 (((-112) $) NIL)) (-3990 (((-1087) $) NIL)) (-4248 (($) NIL (|has| $ (-361)))) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) NIL)) (-2121 (((-411 $) $) NIL)) (-3049 (((-892)) NIL) (((-809 (-892))) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3914 (((-3 (-747) "failed") $ $) NIL) (((-747) $) NIL)) (-2985 (((-133)) NIL)) (-3456 (($ $ (-747)) NIL) (($ $) NIL)) (-3701 (((-892) $) NIL) (((-809 (-892)) $) NIL)) (-2815 (((-1139 $)) NIL)) (-3170 (($) NIL)) (-1544 (($) NIL (|has| $ (-361)))) (-4263 (((-665 $) (-1226 $)) NIL) (((-1226 $) $) NIL)) (-2845 (((-549) $) NIL)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL)) (-2210 (((-3 $ "failed") $) NIL) (($ $) NIL)) (-2082 (((-747)) NIL)) (-1949 (((-1226 $) (-892)) NIL) (((-1226 $)) NIL)) (-1498 (((-112) $ $) NIL)) (-1606 (((-112) $) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1933 (($ $ (-747)) NIL (|has| $ (-361))) (($ $) NIL (|has| $ (-361)))) (-1702 (($ $ (-747)) NIL) (($ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL)))
+((-2994 (*1 *2 *2 *2) (-12 (-5 *2 (-1138 *1)) (-4 *1 (-880)))) (-3630 (*1 *2 *3) (-12 (-4 *1 (-880)) (-5 *2 (-411 (-1138 *1))) (-5 *3 (-1138 *1)))) (-2193 (*1 *2 *3) (-12 (-4 *1 (-880)) (-5 *2 (-411 (-1138 *1))) (-5 *3 (-1138 *1)))) (-2609 (*1 *2 *3) (-12 (-4 *1 (-880)) (-5 *2 (-411 (-1138 *1))) (-5 *3 (-1138 *1)))) (-3955 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-621 (-1138 *1))) (-5 *3 (-1138 *1)) (-4 *1 (-880)))) (-3499 (*1 *2 *3) (|partial| -12 (-5 *3 (-665 *1)) (-4 *1 (-143)) (-4 *1 (-880)) (-5 *2 (-1225 *1)))) (-2343 (*1 *1 *1) (|partial| -12 (-4 *1 (-143)) (-4 *1 (-880)))))
+(-13 (-1183) (-10 -8 (-15 -3630 ((-411 (-1138 $)) (-1138 $))) (-15 -2193 ((-411 (-1138 $)) (-1138 $))) (-15 -2609 ((-411 (-1138 $)) (-1138 $))) (-15 -2994 ((-1138 $) (-1138 $) (-1138 $))) (-15 -3955 ((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $))) (IF (|has| $ (-143)) (PROGN (-15 -3499 ((-3 (-1225 $) "failed") (-665 $))) (-15 -2343 ((-3 $ "failed") $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-444) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1183) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2638 (((-112) $) NIL)) (-2464 (((-747)) NIL)) (-2904 (($ $ (-892)) NIL (|has| $ (-361))) (($ $) NIL)) (-1597 (((-1152 (-892) (-747)) (-549)) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2680 (((-112) $ $) NIL)) (-3614 (((-747)) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 $ "failed") $) NIL)) (-2657 (($ $) NIL)) (-2397 (($ (-1225 $)) NIL)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL)) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) NIL)) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1545 (($) NIL)) (-1315 (((-112) $) NIL)) (-3517 (($ $) NIL) (($ $ (-747)) NIL)) (-1464 (((-112) $) NIL)) (-2729 (((-809 (-892)) $) NIL) (((-892) $) NIL)) (-2297 (((-112) $) NIL)) (-1728 (($) NIL (|has| $ (-361)))) (-4031 (((-112) $) NIL (|has| $ (-361)))) (-2469 (($ $ (-892)) NIL (|has| $ (-361))) (($ $) NIL)) (-2964 (((-3 $ "failed") $) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3514 (((-1138 $) $ (-892)) NIL (|has| $ (-361))) (((-1138 $) $) NIL)) (-3309 (((-892) $) NIL)) (-4021 (((-1138 $) $) NIL (|has| $ (-361)))) (-1298 (((-3 (-1138 $) "failed") $ $) NIL (|has| $ (-361))) (((-1138 $) $) NIL (|has| $ (-361)))) (-3098 (($ $ (-1138 $)) NIL (|has| $ (-361)))) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL T CONST)) (-3494 (($ (-892)) NIL)) (-2165 (((-112) $) NIL)) (-3988 (((-1086) $) NIL)) (-4247 (($) NIL (|has| $ (-361)))) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) NIL)) (-2119 (((-411 $) $) NIL)) (-1485 (((-892)) NIL) (((-809 (-892))) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3189 (((-3 (-747) "failed") $ $) NIL) (((-747) $) NIL)) (-2260 (((-133)) NIL)) (-3455 (($ $ (-747)) NIL) (($ $) NIL)) (-3977 (((-892) $) NIL) (((-809 (-892)) $) NIL)) (-1262 (((-1138 $)) NIL)) (-2950 (($) NIL)) (-2578 (($) NIL (|has| $ (-361)))) (-1981 (((-665 $) (-1225 $)) NIL) (((-1225 $) $) NIL)) (-2843 (((-549) $) NIL)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL)) (-2343 (((-3 $ "failed") $) NIL) (($ $) NIL)) (-2371 (((-747)) NIL)) (-2619 (((-1225 $) (-892)) NIL) (((-1225 $)) NIL)) (-2441 (((-112) $ $) NIL)) (-1993 (((-112) $) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-3495 (($ $ (-747)) NIL (|has| $ (-361))) (($ $) NIL (|has| $ (-361)))) (-1699 (($ $ (-747)) NIL) (($ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL)))
(((-881 |#1|) (-13 (-342) (-322 $) (-594 (-549))) (-892)) (T -881))
NIL
(-13 (-342) (-322 $) (-594 (-549)))
-((-1765 (((-3 (-2 (|:| -2088 (-747)) (|:| -3568 |#5|)) "failed") (-329 |#2| |#3| |#4| |#5|)) 79)) (-3671 (((-112) (-329 |#2| |#3| |#4| |#5|)) 17)) (-2088 (((-3 (-747) "failed") (-329 |#2| |#3| |#4| |#5|)) 15)))
-(((-882 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2088 ((-3 (-747) "failed") (-329 |#2| |#3| |#4| |#5|))) (-15 -3671 ((-112) (-329 |#2| |#3| |#4| |#5|))) (-15 -1765 ((-3 (-2 (|:| -2088 (-747)) (|:| -3568 |#5|)) "failed") (-329 |#2| |#3| |#4| |#5|)))) (-13 (-823) (-541) (-1009 (-549))) (-423 |#1|) (-1202 |#2|) (-1202 (-400 |#3|)) (-335 |#2| |#3| |#4|)) (T -882))
-((-1765 (*1 *2 *3) (|partial| -12 (-5 *3 (-329 *5 *6 *7 *8)) (-4 *5 (-423 *4)) (-4 *6 (-1202 *5)) (-4 *7 (-1202 (-400 *6))) (-4 *8 (-335 *5 *6 *7)) (-4 *4 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-2 (|:| -2088 (-747)) (|:| -3568 *8))) (-5 *1 (-882 *4 *5 *6 *7 *8)))) (-3671 (*1 *2 *3) (-12 (-5 *3 (-329 *5 *6 *7 *8)) (-4 *5 (-423 *4)) (-4 *6 (-1202 *5)) (-4 *7 (-1202 (-400 *6))) (-4 *8 (-335 *5 *6 *7)) (-4 *4 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-112)) (-5 *1 (-882 *4 *5 *6 *7 *8)))) (-2088 (*1 *2 *3) (|partial| -12 (-5 *3 (-329 *5 *6 *7 *8)) (-4 *5 (-423 *4)) (-4 *6 (-1202 *5)) (-4 *7 (-1202 (-400 *6))) (-4 *8 (-335 *5 *6 *7)) (-4 *4 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-747)) (-5 *1 (-882 *4 *5 *6 *7 *8)))))
-(-10 -7 (-15 -2088 ((-3 (-747) "failed") (-329 |#2| |#3| |#4| |#5|))) (-15 -3671 ((-112) (-329 |#2| |#3| |#4| |#5|))) (-15 -1765 ((-3 (-2 (|:| -2088 (-747)) (|:| -3568 |#5|)) "failed") (-329 |#2| |#3| |#4| |#5|))))
-((-1765 (((-3 (-2 (|:| -2088 (-747)) (|:| -3568 |#3|)) "failed") (-329 (-400 (-549)) |#1| |#2| |#3|)) 56)) (-3671 (((-112) (-329 (-400 (-549)) |#1| |#2| |#3|)) 16)) (-2088 (((-3 (-747) "failed") (-329 (-400 (-549)) |#1| |#2| |#3|)) 14)))
-(((-883 |#1| |#2| |#3|) (-10 -7 (-15 -2088 ((-3 (-747) "failed") (-329 (-400 (-549)) |#1| |#2| |#3|))) (-15 -3671 ((-112) (-329 (-400 (-549)) |#1| |#2| |#3|))) (-15 -1765 ((-3 (-2 (|:| -2088 (-747)) (|:| -3568 |#3|)) "failed") (-329 (-400 (-549)) |#1| |#2| |#3|)))) (-1202 (-400 (-549))) (-1202 (-400 |#1|)) (-335 (-400 (-549)) |#1| |#2|)) (T -883))
-((-1765 (*1 *2 *3) (|partial| -12 (-5 *3 (-329 (-400 (-549)) *4 *5 *6)) (-4 *4 (-1202 (-400 (-549)))) (-4 *5 (-1202 (-400 *4))) (-4 *6 (-335 (-400 (-549)) *4 *5)) (-5 *2 (-2 (|:| -2088 (-747)) (|:| -3568 *6))) (-5 *1 (-883 *4 *5 *6)))) (-3671 (*1 *2 *3) (-12 (-5 *3 (-329 (-400 (-549)) *4 *5 *6)) (-4 *4 (-1202 (-400 (-549)))) (-4 *5 (-1202 (-400 *4))) (-4 *6 (-335 (-400 (-549)) *4 *5)) (-5 *2 (-112)) (-5 *1 (-883 *4 *5 *6)))) (-2088 (*1 *2 *3) (|partial| -12 (-5 *3 (-329 (-400 (-549)) *4 *5 *6)) (-4 *4 (-1202 (-400 (-549)))) (-4 *5 (-1202 (-400 *4))) (-4 *6 (-335 (-400 (-549)) *4 *5)) (-5 *2 (-747)) (-5 *1 (-883 *4 *5 *6)))))
-(-10 -7 (-15 -2088 ((-3 (-747) "failed") (-329 (-400 (-549)) |#1| |#2| |#3|))) (-15 -3671 ((-112) (-329 (-400 (-549)) |#1| |#2| |#3|))) (-15 -1765 ((-3 (-2 (|:| -2088 (-747)) (|:| -3568 |#3|)) "failed") (-329 (-400 (-549)) |#1| |#2| |#3|))))
-((-4068 ((|#2| |#2|) 26)) (-1880 (((-549) (-621 (-2 (|:| |den| (-549)) (|:| |gcdnum| (-549))))) 15)) (-3104 (((-892) (-549)) 35)) (-2553 (((-549) |#2|) 42)) (-3172 (((-549) |#2|) 21) (((-2 (|:| |den| (-549)) (|:| |gcdnum| (-549))) |#1|) 20)))
-(((-884 |#1| |#2|) (-10 -7 (-15 -3104 ((-892) (-549))) (-15 -3172 ((-2 (|:| |den| (-549)) (|:| |gcdnum| (-549))) |#1|)) (-15 -3172 ((-549) |#2|)) (-15 -1880 ((-549) (-621 (-2 (|:| |den| (-549)) (|:| |gcdnum| (-549)))))) (-15 -2553 ((-549) |#2|)) (-15 -4068 (|#2| |#2|))) (-1202 (-400 (-549))) (-1202 (-400 |#1|))) (T -884))
-((-4068 (*1 *2 *2) (-12 (-4 *3 (-1202 (-400 (-549)))) (-5 *1 (-884 *3 *2)) (-4 *2 (-1202 (-400 *3))))) (-2553 (*1 *2 *3) (-12 (-4 *4 (-1202 (-400 *2))) (-5 *2 (-549)) (-5 *1 (-884 *4 *3)) (-4 *3 (-1202 (-400 *4))))) (-1880 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| |den| (-549)) (|:| |gcdnum| (-549))))) (-4 *4 (-1202 (-400 *2))) (-5 *2 (-549)) (-5 *1 (-884 *4 *5)) (-4 *5 (-1202 (-400 *4))))) (-3172 (*1 *2 *3) (-12 (-4 *4 (-1202 (-400 *2))) (-5 *2 (-549)) (-5 *1 (-884 *4 *3)) (-4 *3 (-1202 (-400 *4))))) (-3172 (*1 *2 *3) (-12 (-4 *3 (-1202 (-400 (-549)))) (-5 *2 (-2 (|:| |den| (-549)) (|:| |gcdnum| (-549)))) (-5 *1 (-884 *3 *4)) (-4 *4 (-1202 (-400 *3))))) (-3104 (*1 *2 *3) (-12 (-5 *3 (-549)) (-4 *4 (-1202 (-400 *3))) (-5 *2 (-892)) (-5 *1 (-884 *4 *5)) (-4 *5 (-1202 (-400 *4))))))
-(-10 -7 (-15 -3104 ((-892) (-549))) (-15 -3172 ((-2 (|:| |den| (-549)) (|:| |gcdnum| (-549))) |#1|)) (-15 -3172 ((-549) |#2|)) (-15 -1880 ((-549) (-621 (-2 (|:| |den| (-549)) (|:| |gcdnum| (-549)))))) (-15 -2553 ((-549) |#2|)) (-15 -4068 (|#2| |#2|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3329 ((|#1| $) 81)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1682 (($) NIL T CONST)) (-2095 (($ $ $) NIL)) (-2114 (((-3 $ "failed") $) 75)) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-2377 (($ |#1| (-411 |#1|)) 73)) (-1634 (((-1139 |#1|) |#1| |#1|) 41)) (-4301 (($ $) 49)) (-2675 (((-112) $) NIL)) (-2841 (((-549) $) 78)) (-1831 (($ $ (-549)) 80)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3882 ((|#1| $) 77)) (-1332 (((-411 |#1|) $) 76)) (-2121 (((-411 $) $) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) 74)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-4106 (($ $) 39)) (-3846 (((-834) $) 99) (($ (-549)) 54) (($ $) NIL) (($ (-400 (-549))) NIL) (($ |#1|) 31) (((-400 |#1|) $) 59) (($ (-400 (-411 |#1|))) 67)) (-2082 (((-747)) 52)) (-1498 (((-112) $ $) NIL)) (-3276 (($) 23 T CONST)) (-3287 (($) 12 T CONST)) (-2389 (((-112) $ $) 68)) (-2513 (($ $ $) NIL)) (-2500 (($ $) 88) (($ $ $) NIL)) (-2486 (($ $ $) 38)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 90) (($ $ $) 37) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ |#1| $) 89) (($ $ |#1|) NIL)))
-(((-885 |#1|) (-13 (-356) (-38 |#1|) (-10 -8 (-15 -3846 ((-400 |#1|) $)) (-15 -3846 ($ (-400 (-411 |#1|)))) (-15 -4106 ($ $)) (-15 -1332 ((-411 |#1|) $)) (-15 -3882 (|#1| $)) (-15 -1831 ($ $ (-549))) (-15 -2841 ((-549) $)) (-15 -1634 ((-1139 |#1|) |#1| |#1|)) (-15 -4301 ($ $)) (-15 -2377 ($ |#1| (-411 |#1|))) (-15 -3329 (|#1| $)))) (-300)) (T -885))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-400 *3)) (-5 *1 (-885 *3)) (-4 *3 (-300)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-400 (-411 *3))) (-4 *3 (-300)) (-5 *1 (-885 *3)))) (-4106 (*1 *1 *1) (-12 (-5 *1 (-885 *2)) (-4 *2 (-300)))) (-1332 (*1 *2 *1) (-12 (-5 *2 (-411 *3)) (-5 *1 (-885 *3)) (-4 *3 (-300)))) (-3882 (*1 *2 *1) (-12 (-5 *1 (-885 *2)) (-4 *2 (-300)))) (-1831 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-885 *3)) (-4 *3 (-300)))) (-2841 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-885 *3)) (-4 *3 (-300)))) (-1634 (*1 *2 *3 *3) (-12 (-5 *2 (-1139 *3)) (-5 *1 (-885 *3)) (-4 *3 (-300)))) (-4301 (*1 *1 *1) (-12 (-5 *1 (-885 *2)) (-4 *2 (-300)))) (-2377 (*1 *1 *2 *3) (-12 (-5 *3 (-411 *2)) (-4 *2 (-300)) (-5 *1 (-885 *2)))) (-3329 (*1 *2 *1) (-12 (-5 *1 (-885 *2)) (-4 *2 (-300)))))
-(-13 (-356) (-38 |#1|) (-10 -8 (-15 -3846 ((-400 |#1|) $)) (-15 -3846 ($ (-400 (-411 |#1|)))) (-15 -4106 ($ $)) (-15 -1332 ((-411 |#1|) $)) (-15 -3882 (|#1| $)) (-15 -1831 ($ $ (-549))) (-15 -2841 ((-549) $)) (-15 -1634 ((-1139 |#1|) |#1| |#1|)) (-15 -4301 ($ $)) (-15 -2377 ($ |#1| (-411 |#1|))) (-15 -3329 (|#1| $))))
-((-2377 (((-52) (-923 |#1|) (-411 (-923 |#1|)) (-1143)) 17) (((-52) (-400 (-923 |#1|)) (-1143)) 18)))
-(((-886 |#1|) (-10 -7 (-15 -2377 ((-52) (-400 (-923 |#1|)) (-1143))) (-15 -2377 ((-52) (-923 |#1|) (-411 (-923 |#1|)) (-1143)))) (-13 (-300) (-145))) (T -886))
-((-2377 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-411 (-923 *6))) (-5 *5 (-1143)) (-5 *3 (-923 *6)) (-4 *6 (-13 (-300) (-145))) (-5 *2 (-52)) (-5 *1 (-886 *6)))) (-2377 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1143)) (-4 *5 (-13 (-300) (-145))) (-5 *2 (-52)) (-5 *1 (-886 *5)))))
-(-10 -7 (-15 -2377 ((-52) (-400 (-923 |#1|)) (-1143))) (-15 -2377 ((-52) (-923 |#1|) (-411 (-923 |#1|)) (-1143))))
-((-1731 ((|#4| (-621 |#4|)) 121) (((-1139 |#4|) (-1139 |#4|) (-1139 |#4|)) 67) ((|#4| |#4| |#4|) 120)) (-3727 (((-1139 |#4|) (-621 (-1139 |#4|))) 114) (((-1139 |#4|) (-1139 |#4|) (-1139 |#4|)) 50) ((|#4| (-621 |#4|)) 55) ((|#4| |#4| |#4|) 84)))
-(((-887 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3727 (|#4| |#4| |#4|)) (-15 -3727 (|#4| (-621 |#4|))) (-15 -3727 ((-1139 |#4|) (-1139 |#4|) (-1139 |#4|))) (-15 -3727 ((-1139 |#4|) (-621 (-1139 |#4|)))) (-15 -1731 (|#4| |#4| |#4|)) (-15 -1731 ((-1139 |#4|) (-1139 |#4|) (-1139 |#4|))) (-15 -1731 (|#4| (-621 |#4|)))) (-769) (-823) (-300) (-920 |#3| |#1| |#2|)) (T -887))
-((-1731 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *6 *4 *5)) (-5 *1 (-887 *4 *5 *6 *2)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)))) (-1731 (*1 *2 *2 *2) (-12 (-5 *2 (-1139 *6)) (-4 *6 (-920 *5 *3 *4)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-300)) (-5 *1 (-887 *3 *4 *5 *6)))) (-1731 (*1 *2 *2 *2) (-12 (-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-300)) (-5 *1 (-887 *3 *4 *5 *2)) (-4 *2 (-920 *5 *3 *4)))) (-3727 (*1 *2 *3) (-12 (-5 *3 (-621 (-1139 *7))) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)) (-5 *2 (-1139 *7)) (-5 *1 (-887 *4 *5 *6 *7)) (-4 *7 (-920 *6 *4 *5)))) (-3727 (*1 *2 *2 *2) (-12 (-5 *2 (-1139 *6)) (-4 *6 (-920 *5 *3 *4)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-300)) (-5 *1 (-887 *3 *4 *5 *6)))) (-3727 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *6 *4 *5)) (-5 *1 (-887 *4 *5 *6 *2)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)))) (-3727 (*1 *2 *2 *2) (-12 (-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-300)) (-5 *1 (-887 *3 *4 *5 *2)) (-4 *2 (-920 *5 *3 *4)))))
-(-10 -7 (-15 -3727 (|#4| |#4| |#4|)) (-15 -3727 (|#4| (-621 |#4|))) (-15 -3727 ((-1139 |#4|) (-1139 |#4|) (-1139 |#4|))) (-15 -3727 ((-1139 |#4|) (-621 (-1139 |#4|)))) (-15 -1731 (|#4| |#4| |#4|)) (-15 -1731 ((-1139 |#4|) (-1139 |#4|) (-1139 |#4|))) (-15 -1731 (|#4| (-621 |#4|))))
-((-2846 (((-875 (-549)) (-942)) 23) (((-875 (-549)) (-621 (-549))) 20)) (-3190 (((-875 (-549)) (-621 (-549))) 48) (((-875 (-549)) (-892)) 49)) (-3942 (((-875 (-549))) 24)) (-4278 (((-875 (-549))) 38) (((-875 (-549)) (-621 (-549))) 37)) (-3857 (((-875 (-549))) 36) (((-875 (-549)) (-621 (-549))) 35)) (-1744 (((-875 (-549))) 34) (((-875 (-549)) (-621 (-549))) 33)) (-2360 (((-875 (-549))) 32) (((-875 (-549)) (-621 (-549))) 31)) (-1700 (((-875 (-549))) 30) (((-875 (-549)) (-621 (-549))) 29)) (-1873 (((-875 (-549))) 40) (((-875 (-549)) (-621 (-549))) 39)) (-2944 (((-875 (-549)) (-621 (-549))) 52) (((-875 (-549)) (-892)) 53)) (-3140 (((-875 (-549)) (-621 (-549))) 50) (((-875 (-549)) (-892)) 51)) (-3211 (((-875 (-549)) (-621 (-549))) 46) (((-875 (-549)) (-892)) 47)) (-3267 (((-875 (-549)) (-621 (-892))) 43)))
-(((-888) (-10 -7 (-15 -3190 ((-875 (-549)) (-892))) (-15 -3190 ((-875 (-549)) (-621 (-549)))) (-15 -3211 ((-875 (-549)) (-892))) (-15 -3211 ((-875 (-549)) (-621 (-549)))) (-15 -3267 ((-875 (-549)) (-621 (-892)))) (-15 -3140 ((-875 (-549)) (-892))) (-15 -3140 ((-875 (-549)) (-621 (-549)))) (-15 -2944 ((-875 (-549)) (-892))) (-15 -2944 ((-875 (-549)) (-621 (-549)))) (-15 -1700 ((-875 (-549)) (-621 (-549)))) (-15 -1700 ((-875 (-549)))) (-15 -2360 ((-875 (-549)) (-621 (-549)))) (-15 -2360 ((-875 (-549)))) (-15 -1744 ((-875 (-549)) (-621 (-549)))) (-15 -1744 ((-875 (-549)))) (-15 -3857 ((-875 (-549)) (-621 (-549)))) (-15 -3857 ((-875 (-549)))) (-15 -4278 ((-875 (-549)) (-621 (-549)))) (-15 -4278 ((-875 (-549)))) (-15 -1873 ((-875 (-549)) (-621 (-549)))) (-15 -1873 ((-875 (-549)))) (-15 -3942 ((-875 (-549)))) (-15 -2846 ((-875 (-549)) (-621 (-549)))) (-15 -2846 ((-875 (-549)) (-942))))) (T -888))
-((-2846 (*1 *2 *3) (-12 (-5 *3 (-942)) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2846 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-3942 (*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-1873 (*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-1873 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-4278 (*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-4278 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-3857 (*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-3857 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-1744 (*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-1744 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2360 (*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2360 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-1700 (*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-1700 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2944 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2944 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-3140 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-3140 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-3267 (*1 *2 *3) (-12 (-5 *3 (-621 (-892))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-3211 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-3211 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-3190 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-3190 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
-(-10 -7 (-15 -3190 ((-875 (-549)) (-892))) (-15 -3190 ((-875 (-549)) (-621 (-549)))) (-15 -3211 ((-875 (-549)) (-892))) (-15 -3211 ((-875 (-549)) (-621 (-549)))) (-15 -3267 ((-875 (-549)) (-621 (-892)))) (-15 -3140 ((-875 (-549)) (-892))) (-15 -3140 ((-875 (-549)) (-621 (-549)))) (-15 -2944 ((-875 (-549)) (-892))) (-15 -2944 ((-875 (-549)) (-621 (-549)))) (-15 -1700 ((-875 (-549)) (-621 (-549)))) (-15 -1700 ((-875 (-549)))) (-15 -2360 ((-875 (-549)) (-621 (-549)))) (-15 -2360 ((-875 (-549)))) (-15 -1744 ((-875 (-549)) (-621 (-549)))) (-15 -1744 ((-875 (-549)))) (-15 -3857 ((-875 (-549)) (-621 (-549)))) (-15 -3857 ((-875 (-549)))) (-15 -4278 ((-875 (-549)) (-621 (-549)))) (-15 -4278 ((-875 (-549)))) (-15 -1873 ((-875 (-549)) (-621 (-549)))) (-15 -1873 ((-875 (-549)))) (-15 -3942 ((-875 (-549)))) (-15 -2846 ((-875 (-549)) (-621 (-549)))) (-15 -2846 ((-875 (-549)) (-942))))
-((-1277 (((-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1143))) 12)) (-2153 (((-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1143))) 11)))
-(((-889 |#1|) (-10 -7 (-15 -2153 ((-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1143)))) (-15 -1277 ((-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1143))))) (-444)) (T -889))
-((-1277 (*1 *2 *2 *3) (-12 (-5 *2 (-621 (-923 *4))) (-5 *3 (-621 (-1143))) (-4 *4 (-444)) (-5 *1 (-889 *4)))) (-2153 (*1 *2 *2 *3) (-12 (-5 *2 (-621 (-923 *4))) (-5 *3 (-621 (-1143))) (-4 *4 (-444)) (-5 *1 (-889 *4)))))
-(-10 -7 (-15 -2153 ((-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1143)))) (-15 -1277 ((-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1143)))))
-((-3846 (((-309 |#1|) (-469)) 16)))
-(((-890 |#1|) (-10 -7 (-15 -3846 ((-309 |#1|) (-469)))) (-13 (-823) (-541))) (T -890))
-((-3846 (*1 *2 *3) (-12 (-5 *3 (-469)) (-5 *2 (-309 *4)) (-5 *1 (-890 *4)) (-4 *4 (-13 (-823) (-541))))))
-(-10 -7 (-15 -3846 ((-309 |#1|) (-469))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 49)) (-2675 (((-112) $) 30)) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-2042 (((-3 $ "failed") $ $) 40)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41)) (-2082 (((-747)) 28)) (-1498 (((-112) $ $) 37)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+((-2201 (((-3 (-2 (|:| -2729 (-747)) (|:| -3567 |#5|)) "failed") (-329 |#2| |#3| |#4| |#5|)) 79)) (-2728 (((-112) (-329 |#2| |#3| |#4| |#5|)) 17)) (-2729 (((-3 (-747) "failed") (-329 |#2| |#3| |#4| |#5|)) 15)))
+(((-882 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2729 ((-3 (-747) "failed") (-329 |#2| |#3| |#4| |#5|))) (-15 -2728 ((-112) (-329 |#2| |#3| |#4| |#5|))) (-15 -2201 ((-3 (-2 (|:| -2729 (-747)) (|:| -3567 |#5|)) "failed") (-329 |#2| |#3| |#4| |#5|)))) (-13 (-823) (-541) (-1009 (-549))) (-423 |#1|) (-1201 |#2|) (-1201 (-400 |#3|)) (-335 |#2| |#3| |#4|)) (T -882))
+((-2201 (*1 *2 *3) (|partial| -12 (-5 *3 (-329 *5 *6 *7 *8)) (-4 *5 (-423 *4)) (-4 *6 (-1201 *5)) (-4 *7 (-1201 (-400 *6))) (-4 *8 (-335 *5 *6 *7)) (-4 *4 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-2 (|:| -2729 (-747)) (|:| -3567 *8))) (-5 *1 (-882 *4 *5 *6 *7 *8)))) (-2728 (*1 *2 *3) (-12 (-5 *3 (-329 *5 *6 *7 *8)) (-4 *5 (-423 *4)) (-4 *6 (-1201 *5)) (-4 *7 (-1201 (-400 *6))) (-4 *8 (-335 *5 *6 *7)) (-4 *4 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-112)) (-5 *1 (-882 *4 *5 *6 *7 *8)))) (-2729 (*1 *2 *3) (|partial| -12 (-5 *3 (-329 *5 *6 *7 *8)) (-4 *5 (-423 *4)) (-4 *6 (-1201 *5)) (-4 *7 (-1201 (-400 *6))) (-4 *8 (-335 *5 *6 *7)) (-4 *4 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-747)) (-5 *1 (-882 *4 *5 *6 *7 *8)))))
+(-10 -7 (-15 -2729 ((-3 (-747) "failed") (-329 |#2| |#3| |#4| |#5|))) (-15 -2728 ((-112) (-329 |#2| |#3| |#4| |#5|))) (-15 -2201 ((-3 (-2 (|:| -2729 (-747)) (|:| -3567 |#5|)) "failed") (-329 |#2| |#3| |#4| |#5|))))
+((-2201 (((-3 (-2 (|:| -2729 (-747)) (|:| -3567 |#3|)) "failed") (-329 (-400 (-549)) |#1| |#2| |#3|)) 56)) (-2728 (((-112) (-329 (-400 (-549)) |#1| |#2| |#3|)) 16)) (-2729 (((-3 (-747) "failed") (-329 (-400 (-549)) |#1| |#2| |#3|)) 14)))
+(((-883 |#1| |#2| |#3|) (-10 -7 (-15 -2729 ((-3 (-747) "failed") (-329 (-400 (-549)) |#1| |#2| |#3|))) (-15 -2728 ((-112) (-329 (-400 (-549)) |#1| |#2| |#3|))) (-15 -2201 ((-3 (-2 (|:| -2729 (-747)) (|:| -3567 |#3|)) "failed") (-329 (-400 (-549)) |#1| |#2| |#3|)))) (-1201 (-400 (-549))) (-1201 (-400 |#1|)) (-335 (-400 (-549)) |#1| |#2|)) (T -883))
+((-2201 (*1 *2 *3) (|partial| -12 (-5 *3 (-329 (-400 (-549)) *4 *5 *6)) (-4 *4 (-1201 (-400 (-549)))) (-4 *5 (-1201 (-400 *4))) (-4 *6 (-335 (-400 (-549)) *4 *5)) (-5 *2 (-2 (|:| -2729 (-747)) (|:| -3567 *6))) (-5 *1 (-883 *4 *5 *6)))) (-2728 (*1 *2 *3) (-12 (-5 *3 (-329 (-400 (-549)) *4 *5 *6)) (-4 *4 (-1201 (-400 (-549)))) (-4 *5 (-1201 (-400 *4))) (-4 *6 (-335 (-400 (-549)) *4 *5)) (-5 *2 (-112)) (-5 *1 (-883 *4 *5 *6)))) (-2729 (*1 *2 *3) (|partial| -12 (-5 *3 (-329 (-400 (-549)) *4 *5 *6)) (-4 *4 (-1201 (-400 (-549)))) (-4 *5 (-1201 (-400 *4))) (-4 *6 (-335 (-400 (-549)) *4 *5)) (-5 *2 (-747)) (-5 *1 (-883 *4 *5 *6)))))
+(-10 -7 (-15 -2729 ((-3 (-747) "failed") (-329 (-400 (-549)) |#1| |#2| |#3|))) (-15 -2728 ((-112) (-329 (-400 (-549)) |#1| |#2| |#3|))) (-15 -2201 ((-3 (-2 (|:| -2729 (-747)) (|:| -3567 |#3|)) "failed") (-329 (-400 (-549)) |#1| |#2| |#3|))))
+((-2952 ((|#2| |#2|) 26)) (-3206 (((-549) (-621 (-2 (|:| |den| (-549)) (|:| |gcdnum| (-549))))) 15)) (-2757 (((-892) (-549)) 35)) (-1458 (((-549) |#2|) 42)) (-3149 (((-549) |#2|) 21) (((-2 (|:| |den| (-549)) (|:| |gcdnum| (-549))) |#1|) 20)))
+(((-884 |#1| |#2|) (-10 -7 (-15 -2757 ((-892) (-549))) (-15 -3149 ((-2 (|:| |den| (-549)) (|:| |gcdnum| (-549))) |#1|)) (-15 -3149 ((-549) |#2|)) (-15 -3206 ((-549) (-621 (-2 (|:| |den| (-549)) (|:| |gcdnum| (-549)))))) (-15 -1458 ((-549) |#2|)) (-15 -2952 (|#2| |#2|))) (-1201 (-400 (-549))) (-1201 (-400 |#1|))) (T -884))
+((-2952 (*1 *2 *2) (-12 (-4 *3 (-1201 (-400 (-549)))) (-5 *1 (-884 *3 *2)) (-4 *2 (-1201 (-400 *3))))) (-1458 (*1 *2 *3) (-12 (-4 *4 (-1201 (-400 *2))) (-5 *2 (-549)) (-5 *1 (-884 *4 *3)) (-4 *3 (-1201 (-400 *4))))) (-3206 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| |den| (-549)) (|:| |gcdnum| (-549))))) (-4 *4 (-1201 (-400 *2))) (-5 *2 (-549)) (-5 *1 (-884 *4 *5)) (-4 *5 (-1201 (-400 *4))))) (-3149 (*1 *2 *3) (-12 (-4 *4 (-1201 (-400 *2))) (-5 *2 (-549)) (-5 *1 (-884 *4 *3)) (-4 *3 (-1201 (-400 *4))))) (-3149 (*1 *2 *3) (-12 (-4 *3 (-1201 (-400 (-549)))) (-5 *2 (-2 (|:| |den| (-549)) (|:| |gcdnum| (-549)))) (-5 *1 (-884 *3 *4)) (-4 *4 (-1201 (-400 *3))))) (-2757 (*1 *2 *3) (-12 (-5 *3 (-549)) (-4 *4 (-1201 (-400 *3))) (-5 *2 (-892)) (-5 *1 (-884 *4 *5)) (-4 *5 (-1201 (-400 *4))))))
+(-10 -7 (-15 -2757 ((-892) (-549))) (-15 -3149 ((-2 (|:| |den| (-549)) (|:| |gcdnum| (-549))) |#1|)) (-15 -3149 ((-549) |#2|)) (-15 -3206 ((-549) (-621 (-2 (|:| |den| (-549)) (|:| |gcdnum| (-549)))))) (-15 -1458 ((-549) |#2|)) (-15 -2952 (|#2| |#2|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3833 ((|#1| $) 81)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2680 (((-112) $ $) NIL)) (-3034 (($) NIL T CONST)) (-2091 (($ $ $) NIL)) (-2612 (((-3 $ "failed") $) 75)) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-4104 (($ |#1| (-411 |#1|)) 73)) (-2566 (((-1138 |#1|) |#1| |#1|) 41)) (-3212 (($ $) 49)) (-2297 (((-112) $) NIL)) (-2996 (((-549) $) 78)) (-1962 (($ $ (-549)) 80)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3663 ((|#1| $) 77)) (-3045 (((-411 |#1|) $) 76)) (-2119 (((-411 $) $) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) 74)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-2875 (($ $) 39)) (-3845 (((-834) $) 99) (($ (-549)) 54) (($ $) NIL) (($ (-400 (-549))) NIL) (($ |#1|) 31) (((-400 |#1|) $) 59) (($ (-400 (-411 |#1|))) 67)) (-2371 (((-747)) 52)) (-2441 (((-112) $ $) NIL)) (-3274 (($) 23 T CONST)) (-3286 (($) 12 T CONST)) (-2387 (((-112) $ $) 68)) (-2511 (($ $ $) NIL)) (-2498 (($ $) 88) (($ $ $) NIL)) (-2484 (($ $ $) 38)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 90) (($ $ $) 37) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ |#1| $) 89) (($ $ |#1|) NIL)))
+(((-885 |#1|) (-13 (-356) (-38 |#1|) (-10 -8 (-15 -3845 ((-400 |#1|) $)) (-15 -3845 ($ (-400 (-411 |#1|)))) (-15 -2875 ($ $)) (-15 -3045 ((-411 |#1|) $)) (-15 -3663 (|#1| $)) (-15 -1962 ($ $ (-549))) (-15 -2996 ((-549) $)) (-15 -2566 ((-1138 |#1|) |#1| |#1|)) (-15 -3212 ($ $)) (-15 -4104 ($ |#1| (-411 |#1|))) (-15 -3833 (|#1| $)))) (-300)) (T -885))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-400 *3)) (-5 *1 (-885 *3)) (-4 *3 (-300)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-400 (-411 *3))) (-4 *3 (-300)) (-5 *1 (-885 *3)))) (-2875 (*1 *1 *1) (-12 (-5 *1 (-885 *2)) (-4 *2 (-300)))) (-3045 (*1 *2 *1) (-12 (-5 *2 (-411 *3)) (-5 *1 (-885 *3)) (-4 *3 (-300)))) (-3663 (*1 *2 *1) (-12 (-5 *1 (-885 *2)) (-4 *2 (-300)))) (-1962 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-885 *3)) (-4 *3 (-300)))) (-2996 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-885 *3)) (-4 *3 (-300)))) (-2566 (*1 *2 *3 *3) (-12 (-5 *2 (-1138 *3)) (-5 *1 (-885 *3)) (-4 *3 (-300)))) (-3212 (*1 *1 *1) (-12 (-5 *1 (-885 *2)) (-4 *2 (-300)))) (-4104 (*1 *1 *2 *3) (-12 (-5 *3 (-411 *2)) (-4 *2 (-300)) (-5 *1 (-885 *2)))) (-3833 (*1 *2 *1) (-12 (-5 *1 (-885 *2)) (-4 *2 (-300)))))
+(-13 (-356) (-38 |#1|) (-10 -8 (-15 -3845 ((-400 |#1|) $)) (-15 -3845 ($ (-400 (-411 |#1|)))) (-15 -2875 ($ $)) (-15 -3045 ((-411 |#1|) $)) (-15 -3663 (|#1| $)) (-15 -1962 ($ $ (-549))) (-15 -2996 ((-549) $)) (-15 -2566 ((-1138 |#1|) |#1| |#1|)) (-15 -3212 ($ $)) (-15 -4104 ($ |#1| (-411 |#1|))) (-15 -3833 (|#1| $))))
+((-4104 (((-52) (-923 |#1|) (-411 (-923 |#1|)) (-1142)) 17) (((-52) (-400 (-923 |#1|)) (-1142)) 18)))
+(((-886 |#1|) (-10 -7 (-15 -4104 ((-52) (-400 (-923 |#1|)) (-1142))) (-15 -4104 ((-52) (-923 |#1|) (-411 (-923 |#1|)) (-1142)))) (-13 (-300) (-145))) (T -886))
+((-4104 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-411 (-923 *6))) (-5 *5 (-1142)) (-5 *3 (-923 *6)) (-4 *6 (-13 (-300) (-145))) (-5 *2 (-52)) (-5 *1 (-886 *6)))) (-4104 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1142)) (-4 *5 (-13 (-300) (-145))) (-5 *2 (-52)) (-5 *1 (-886 *5)))))
+(-10 -7 (-15 -4104 ((-52) (-400 (-923 |#1|)) (-1142))) (-15 -4104 ((-52) (-923 |#1|) (-411 (-923 |#1|)) (-1142))))
+((-2593 ((|#4| (-621 |#4|)) 121) (((-1138 |#4|) (-1138 |#4|) (-1138 |#4|)) 67) ((|#4| |#4| |#4|) 120)) (-3726 (((-1138 |#4|) (-621 (-1138 |#4|))) 114) (((-1138 |#4|) (-1138 |#4|) (-1138 |#4|)) 50) ((|#4| (-621 |#4|)) 55) ((|#4| |#4| |#4|) 84)))
+(((-887 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3726 (|#4| |#4| |#4|)) (-15 -3726 (|#4| (-621 |#4|))) (-15 -3726 ((-1138 |#4|) (-1138 |#4|) (-1138 |#4|))) (-15 -3726 ((-1138 |#4|) (-621 (-1138 |#4|)))) (-15 -2593 (|#4| |#4| |#4|)) (-15 -2593 ((-1138 |#4|) (-1138 |#4|) (-1138 |#4|))) (-15 -2593 (|#4| (-621 |#4|)))) (-769) (-823) (-300) (-920 |#3| |#1| |#2|)) (T -887))
+((-2593 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *6 *4 *5)) (-5 *1 (-887 *4 *5 *6 *2)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)))) (-2593 (*1 *2 *2 *2) (-12 (-5 *2 (-1138 *6)) (-4 *6 (-920 *5 *3 *4)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-300)) (-5 *1 (-887 *3 *4 *5 *6)))) (-2593 (*1 *2 *2 *2) (-12 (-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-300)) (-5 *1 (-887 *3 *4 *5 *2)) (-4 *2 (-920 *5 *3 *4)))) (-3726 (*1 *2 *3) (-12 (-5 *3 (-621 (-1138 *7))) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)) (-5 *2 (-1138 *7)) (-5 *1 (-887 *4 *5 *6 *7)) (-4 *7 (-920 *6 *4 *5)))) (-3726 (*1 *2 *2 *2) (-12 (-5 *2 (-1138 *6)) (-4 *6 (-920 *5 *3 *4)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-300)) (-5 *1 (-887 *3 *4 *5 *6)))) (-3726 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *6 *4 *5)) (-5 *1 (-887 *4 *5 *6 *2)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)))) (-3726 (*1 *2 *2 *2) (-12 (-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-300)) (-5 *1 (-887 *3 *4 *5 *2)) (-4 *2 (-920 *5 *3 *4)))))
+(-10 -7 (-15 -3726 (|#4| |#4| |#4|)) (-15 -3726 (|#4| (-621 |#4|))) (-15 -3726 ((-1138 |#4|) (-1138 |#4|) (-1138 |#4|))) (-15 -3726 ((-1138 |#4|) (-621 (-1138 |#4|)))) (-15 -2593 (|#4| |#4| |#4|)) (-15 -2593 ((-1138 |#4|) (-1138 |#4|) (-1138 |#4|))) (-15 -2593 (|#4| (-621 |#4|))))
+((-2232 (((-875 (-549)) (-942)) 23) (((-875 (-549)) (-621 (-549))) 20)) (-1378 (((-875 (-549)) (-621 (-549))) 48) (((-875 (-549)) (-892)) 49)) (-4289 (((-875 (-549))) 24)) (-2949 (((-875 (-549))) 38) (((-875 (-549)) (-621 (-549))) 37)) (-2894 (((-875 (-549))) 36) (((-875 (-549)) (-621 (-549))) 35)) (-4173 (((-875 (-549))) 34) (((-875 (-549)) (-621 (-549))) 33)) (-2108 (((-875 (-549))) 32) (((-875 (-549)) (-621 (-549))) 31)) (-3888 (((-875 (-549))) 30) (((-875 (-549)) (-621 (-549))) 29)) (-1859 (((-875 (-549))) 40) (((-875 (-549)) (-621 (-549))) 39)) (-2741 (((-875 (-549)) (-621 (-549))) 52) (((-875 (-549)) (-892)) 53)) (-2662 (((-875 (-549)) (-621 (-549))) 50) (((-875 (-549)) (-892)) 51)) (-2088 (((-875 (-549)) (-621 (-549))) 46) (((-875 (-549)) (-892)) 47)) (-3278 (((-875 (-549)) (-621 (-892))) 43)))
+(((-888) (-10 -7 (-15 -1378 ((-875 (-549)) (-892))) (-15 -1378 ((-875 (-549)) (-621 (-549)))) (-15 -2088 ((-875 (-549)) (-892))) (-15 -2088 ((-875 (-549)) (-621 (-549)))) (-15 -3278 ((-875 (-549)) (-621 (-892)))) (-15 -2662 ((-875 (-549)) (-892))) (-15 -2662 ((-875 (-549)) (-621 (-549)))) (-15 -2741 ((-875 (-549)) (-892))) (-15 -2741 ((-875 (-549)) (-621 (-549)))) (-15 -3888 ((-875 (-549)) (-621 (-549)))) (-15 -3888 ((-875 (-549)))) (-15 -2108 ((-875 (-549)) (-621 (-549)))) (-15 -2108 ((-875 (-549)))) (-15 -4173 ((-875 (-549)) (-621 (-549)))) (-15 -4173 ((-875 (-549)))) (-15 -2894 ((-875 (-549)) (-621 (-549)))) (-15 -2894 ((-875 (-549)))) (-15 -2949 ((-875 (-549)) (-621 (-549)))) (-15 -2949 ((-875 (-549)))) (-15 -1859 ((-875 (-549)) (-621 (-549)))) (-15 -1859 ((-875 (-549)))) (-15 -4289 ((-875 (-549)))) (-15 -2232 ((-875 (-549)) (-621 (-549)))) (-15 -2232 ((-875 (-549)) (-942))))) (T -888))
+((-2232 (*1 *2 *3) (-12 (-5 *3 (-942)) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2232 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-4289 (*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-1859 (*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-1859 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2949 (*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2949 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2894 (*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2894 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-4173 (*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-4173 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2108 (*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2108 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-3888 (*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-3888 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2741 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2741 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2662 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2662 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-3278 (*1 *2 *3) (-12 (-5 *3 (-621 (-892))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2088 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-2088 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-1378 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))) (-1378 (*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
+(-10 -7 (-15 -1378 ((-875 (-549)) (-892))) (-15 -1378 ((-875 (-549)) (-621 (-549)))) (-15 -2088 ((-875 (-549)) (-892))) (-15 -2088 ((-875 (-549)) (-621 (-549)))) (-15 -3278 ((-875 (-549)) (-621 (-892)))) (-15 -2662 ((-875 (-549)) (-892))) (-15 -2662 ((-875 (-549)) (-621 (-549)))) (-15 -2741 ((-875 (-549)) (-892))) (-15 -2741 ((-875 (-549)) (-621 (-549)))) (-15 -3888 ((-875 (-549)) (-621 (-549)))) (-15 -3888 ((-875 (-549)))) (-15 -2108 ((-875 (-549)) (-621 (-549)))) (-15 -2108 ((-875 (-549)))) (-15 -4173 ((-875 (-549)) (-621 (-549)))) (-15 -4173 ((-875 (-549)))) (-15 -2894 ((-875 (-549)) (-621 (-549)))) (-15 -2894 ((-875 (-549)))) (-15 -2949 ((-875 (-549)) (-621 (-549)))) (-15 -2949 ((-875 (-549)))) (-15 -1859 ((-875 (-549)) (-621 (-549)))) (-15 -1859 ((-875 (-549)))) (-15 -4289 ((-875 (-549)))) (-15 -2232 ((-875 (-549)) (-621 (-549)))) (-15 -2232 ((-875 (-549)) (-942))))
+((-1644 (((-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1142))) 12)) (-4167 (((-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1142))) 11)))
+(((-889 |#1|) (-10 -7 (-15 -4167 ((-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1142)))) (-15 -1644 ((-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1142))))) (-444)) (T -889))
+((-1644 (*1 *2 *2 *3) (-12 (-5 *2 (-621 (-923 *4))) (-5 *3 (-621 (-1142))) (-4 *4 (-444)) (-5 *1 (-889 *4)))) (-4167 (*1 *2 *2 *3) (-12 (-5 *2 (-621 (-923 *4))) (-5 *3 (-621 (-1142))) (-4 *4 (-444)) (-5 *1 (-889 *4)))))
+(-10 -7 (-15 -4167 ((-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1142)))) (-15 -1644 ((-621 (-923 |#1|)) (-621 (-923 |#1|)) (-621 (-1142)))))
+((-3845 (((-309 |#1|) (-469)) 16)))
+(((-890 |#1|) (-10 -7 (-15 -3845 ((-309 |#1|) (-469)))) (-13 (-823) (-541))) (T -890))
+((-3845 (*1 *2 *3) (-12 (-5 *3 (-469)) (-5 *2 (-309 *4)) (-5 *1 (-890 *4)) (-4 *4 (-13 (-823) (-541))))))
+(-10 -7 (-15 -3845 ((-309 |#1|) (-469))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 49)) (-2297 (((-112) $) 30)) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-2040 (((-3 $ "failed") $ $) 40)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41)) (-2371 (((-747)) 28)) (-2441 (((-112) $ $) 37)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-891) (-138)) (T -891))
-((-1309 (*1 *2 *3) (-12 (-4 *1 (-891)) (-5 *2 (-2 (|:| -1570 (-621 *1)) (|:| -4248 *1))) (-5 *3 (-621 *1)))) (-3644 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-621 *1)) (-4 *1 (-891)))))
-(-13 (-444) (-10 -8 (-15 -1309 ((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $))) (-15 -3644 ((-3 (-621 $) "failed") (-621 $) $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-444) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-1682 (($) NIL T CONST)) (-2114 (((-3 $ "failed") $) NIL)) (-2675 (((-112) $) NIL)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3727 (($ $ $) NIL)) (-3846 (((-834) $) NIL)) (-3287 (($) NIL T CONST)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-747)) NIL) (($ $ (-892)) NIL)) (* (($ (-892) $) NIL) (($ $ $) NIL)))
-(((-892) (-13 (-770) (-703) (-10 -8 (-15 -3727 ($ $ $)) (-6 (-4339 "*"))))) (T -892))
-((-3727 (*1 *1 *1 *1) (-5 *1 (-892))))
-(-13 (-770) (-703) (-10 -8 (-15 -3727 ($ $ $)) (-6 (-4339 "*"))))
-((-2225 ((|#2| (-621 |#1|) (-621 |#1|)) 24)))
-(((-893 |#1| |#2|) (-10 -7 (-15 -2225 (|#2| (-621 |#1|) (-621 |#1|)))) (-356) (-1202 |#1|)) (T -893))
-((-2225 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *4)) (-4 *4 (-356)) (-4 *2 (-1202 *4)) (-5 *1 (-893 *4 *2)))))
-(-10 -7 (-15 -2225 (|#2| (-621 |#1|) (-621 |#1|))))
-((-1842 (((-1139 |#2|) (-621 |#2|) (-621 |#2|)) 17) (((-1199 |#1| |#2|) (-1199 |#1| |#2|) (-621 |#2|) (-621 |#2|)) 13)))
-(((-894 |#1| |#2|) (-10 -7 (-15 -1842 ((-1199 |#1| |#2|) (-1199 |#1| |#2|) (-621 |#2|) (-621 |#2|))) (-15 -1842 ((-1139 |#2|) (-621 |#2|) (-621 |#2|)))) (-1143) (-356)) (T -894))
-((-1842 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *5)) (-4 *5 (-356)) (-5 *2 (-1139 *5)) (-5 *1 (-894 *4 *5)) (-14 *4 (-1143)))) (-1842 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1199 *4 *5)) (-5 *3 (-621 *5)) (-14 *4 (-1143)) (-4 *5 (-356)) (-5 *1 (-894 *4 *5)))))
-(-10 -7 (-15 -1842 ((-1199 |#1| |#2|) (-1199 |#1| |#2|) (-621 |#2|) (-621 |#2|))) (-15 -1842 ((-1139 |#2|) (-621 |#2|) (-621 |#2|))))
-((-2514 (((-549) (-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-1125)) 139)) (-3047 ((|#4| |#4|) 155)) (-2888 (((-621 (-400 (-923 |#1|))) (-621 (-1143))) 118)) (-2458 (((-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))) (-665 |#4|) (-621 (-400 (-923 |#1|))) (-621 (-621 |#4|)) (-747) (-747) (-549)) 75)) (-4146 (((-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|)))))) (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|)))))) (-621 |#4|)) 59)) (-1293 (((-665 |#4|) (-665 |#4|) (-621 |#4|)) 55)) (-3894 (((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-1125)) 151)) (-1431 (((-549) (-665 |#4|) (-892) (-1125)) 132) (((-549) (-665 |#4|) (-621 (-1143)) (-892) (-1125)) 131) (((-549) (-665 |#4|) (-621 |#4|) (-892) (-1125)) 130) (((-549) (-665 |#4|) (-1125)) 127) (((-549) (-665 |#4|) (-621 (-1143)) (-1125)) 126) (((-549) (-665 |#4|) (-621 |#4|) (-1125)) 125) (((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|) (-892)) 124) (((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 (-1143)) (-892)) 123) (((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 |#4|) (-892)) 122) (((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|)) 120) (((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 (-1143))) 119) (((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 |#4|)) 115)) (-2605 ((|#4| (-923 |#1|)) 68)) (-3724 (((-112) (-621 |#4|) (-621 (-621 |#4|))) 152)) (-3636 (((-621 (-621 (-549))) (-549) (-549)) 129)) (-1939 (((-621 (-621 |#4|)) (-621 (-621 |#4|))) 88)) (-1330 (((-747) (-621 (-2 (|:| -3123 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|))))) 86)) (-4131 (((-747) (-621 (-2 (|:| -3123 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|))))) 85)) (-3161 (((-112) (-621 (-923 |#1|))) 17) (((-112) (-621 |#4|)) 13)) (-1615 (((-2 (|:| |sysok| (-112)) (|:| |z0| (-621 |#4|)) (|:| |n0| (-621 |#4|))) (-621 |#4|) (-621 |#4|)) 71)) (-3126 (((-621 |#4|) |#4|) 49)) (-1351 (((-621 (-400 (-923 |#1|))) (-621 |#4|)) 114) (((-665 (-400 (-923 |#1|))) (-665 |#4|)) 56) (((-400 (-923 |#1|)) |#4|) 111)) (-4018 (((-2 (|:| |rgl| (-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|)))))))))) (|:| |rgsz| (-549))) (-665 |#4|) (-621 (-400 (-923 |#1|))) (-747) (-1125) (-549)) 93)) (-1840 (((-621 (-2 (|:| -3123 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|)))) (-665 |#4|) (-747)) 84)) (-1895 (((-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549))))) (-665 |#4|) (-747)) 101)) (-1458 (((-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|)))))) (-2 (|:| -3521 (-665 (-400 (-923 |#1|)))) (|:| |vec| (-621 (-400 (-923 |#1|)))) (|:| -3123 (-747)) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549))))) 48)))
-(((-895 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1431 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 |#4|))) (-15 -1431 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 (-1143)))) (-15 -1431 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|))) (-15 -1431 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 |#4|) (-892))) (-15 -1431 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 (-1143)) (-892))) (-15 -1431 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|) (-892))) (-15 -1431 ((-549) (-665 |#4|) (-621 |#4|) (-1125))) (-15 -1431 ((-549) (-665 |#4|) (-621 (-1143)) (-1125))) (-15 -1431 ((-549) (-665 |#4|) (-1125))) (-15 -1431 ((-549) (-665 |#4|) (-621 |#4|) (-892) (-1125))) (-15 -1431 ((-549) (-665 |#4|) (-621 (-1143)) (-892) (-1125))) (-15 -1431 ((-549) (-665 |#4|) (-892) (-1125))) (-15 -2514 ((-549) (-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-1125))) (-15 -3894 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-1125))) (-15 -4018 ((-2 (|:| |rgl| (-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|)))))))))) (|:| |rgsz| (-549))) (-665 |#4|) (-621 (-400 (-923 |#1|))) (-747) (-1125) (-549))) (-15 -1351 ((-400 (-923 |#1|)) |#4|)) (-15 -1351 ((-665 (-400 (-923 |#1|))) (-665 |#4|))) (-15 -1351 ((-621 (-400 (-923 |#1|))) (-621 |#4|))) (-15 -2888 ((-621 (-400 (-923 |#1|))) (-621 (-1143)))) (-15 -2605 (|#4| (-923 |#1|))) (-15 -1615 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-621 |#4|)) (|:| |n0| (-621 |#4|))) (-621 |#4|) (-621 |#4|))) (-15 -1840 ((-621 (-2 (|:| -3123 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|)))) (-665 |#4|) (-747))) (-15 -4146 ((-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|)))))) (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|)))))) (-621 |#4|))) (-15 -1458 ((-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|)))))) (-2 (|:| -3521 (-665 (-400 (-923 |#1|)))) (|:| |vec| (-621 (-400 (-923 |#1|)))) (|:| -3123 (-747)) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (-15 -3126 ((-621 |#4|) |#4|)) (-15 -4131 ((-747) (-621 (-2 (|:| -3123 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|)))))) (-15 -1330 ((-747) (-621 (-2 (|:| -3123 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|)))))) (-15 -1939 ((-621 (-621 |#4|)) (-621 (-621 |#4|)))) (-15 -3636 ((-621 (-621 (-549))) (-549) (-549))) (-15 -3724 ((-112) (-621 |#4|) (-621 (-621 |#4|)))) (-15 -1895 ((-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549))))) (-665 |#4|) (-747))) (-15 -1293 ((-665 |#4|) (-665 |#4|) (-621 |#4|))) (-15 -2458 ((-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))) (-665 |#4|) (-621 (-400 (-923 |#1|))) (-621 (-621 |#4|)) (-747) (-747) (-549))) (-15 -3047 (|#4| |#4|)) (-15 -3161 ((-112) (-621 |#4|))) (-15 -3161 ((-112) (-621 (-923 |#1|))))) (-13 (-300) (-145)) (-13 (-823) (-594 (-1143))) (-769) (-920 |#1| |#3| |#2|)) (T -895))
-((-3161 (*1 *2 *3) (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *2 (-112)) (-5 *1 (-895 *4 *5 *6 *7)) (-4 *7 (-920 *4 *6 *5)))) (-3161 (*1 *2 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *2 (-112)) (-5 *1 (-895 *4 *5 *6 *7)))) (-3047 (*1 *2 *2) (-12 (-4 *3 (-13 (-300) (-145))) (-4 *4 (-13 (-823) (-594 (-1143)))) (-4 *5 (-769)) (-5 *1 (-895 *3 *4 *5 *2)) (-4 *2 (-920 *3 *5 *4)))) (-2458 (*1 *2 *3 *4 *5 *6 *7 *7 *8) (-12 (-5 *3 (-2 (|:| |det| *12) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549))))) (-5 *4 (-665 *12)) (-5 *5 (-621 (-400 (-923 *9)))) (-5 *6 (-621 (-621 *12))) (-5 *7 (-747)) (-5 *8 (-549)) (-4 *9 (-13 (-300) (-145))) (-4 *12 (-920 *9 *11 *10)) (-4 *10 (-13 (-823) (-594 (-1143)))) (-4 *11 (-769)) (-5 *2 (-2 (|:| |eqzro| (-621 *12)) (|:| |neqzro| (-621 *12)) (|:| |wcond| (-621 (-923 *9))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 *9)))) (|:| -1949 (-621 (-1226 (-400 (-923 *9))))))))) (-5 *1 (-895 *9 *10 *11 *12)))) (-1293 (*1 *2 *2 *3) (-12 (-5 *2 (-665 *7)) (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *1 (-895 *4 *5 *6 *7)))) (-1895 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *8)) (-5 *4 (-747)) (-4 *8 (-920 *5 *7 *6)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1143)))) (-4 *7 (-769)) (-5 *2 (-621 (-2 (|:| |det| *8) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (-5 *1 (-895 *5 *6 *7 *8)))) (-3724 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-621 *8))) (-5 *3 (-621 *8)) (-4 *8 (-920 *5 *7 *6)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1143)))) (-4 *7 (-769)) (-5 *2 (-112)) (-5 *1 (-895 *5 *6 *7 *8)))) (-3636 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *2 (-621 (-621 (-549)))) (-5 *1 (-895 *4 *5 *6 *7)) (-5 *3 (-549)) (-4 *7 (-920 *4 *6 *5)))) (-1939 (*1 *2 *2) (-12 (-5 *2 (-621 (-621 *6))) (-4 *6 (-920 *3 *5 *4)) (-4 *3 (-13 (-300) (-145))) (-4 *4 (-13 (-823) (-594 (-1143)))) (-4 *5 (-769)) (-5 *1 (-895 *3 *4 *5 *6)))) (-1330 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| -3123 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| *7) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 *7))))) (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *2 (-747)) (-5 *1 (-895 *4 *5 *6 *7)))) (-4131 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| -3123 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| *7) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 *7))))) (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *2 (-747)) (-5 *1 (-895 *4 *5 *6 *7)))) (-3126 (*1 *2 *3) (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *2 (-621 *3)) (-5 *1 (-895 *4 *5 *6 *3)) (-4 *3 (-920 *4 *6 *5)))) (-1458 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -3521 (-665 (-400 (-923 *4)))) (|:| |vec| (-621 (-400 (-923 *4)))) (|:| -3123 (-747)) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549))))) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *2 (-2 (|:| |partsol| (-1226 (-400 (-923 *4)))) (|:| -1949 (-621 (-1226 (-400 (-923 *4))))))) (-5 *1 (-895 *4 *5 *6 *7)) (-4 *7 (-920 *4 *6 *5)))) (-4146 (*1 *2 *2 *3) (-12 (-5 *2 (-2 (|:| |partsol| (-1226 (-400 (-923 *4)))) (|:| -1949 (-621 (-1226 (-400 (-923 *4))))))) (-5 *3 (-621 *7)) (-4 *4 (-13 (-300) (-145))) (-4 *7 (-920 *4 *6 *5)) (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *1 (-895 *4 *5 *6 *7)))) (-1840 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *8)) (-4 *8 (-920 *5 *7 *6)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1143)))) (-4 *7 (-769)) (-5 *2 (-621 (-2 (|:| -3123 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| *8) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 *8))))) (-5 *1 (-895 *5 *6 *7 *8)) (-5 *4 (-747)))) (-1615 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-4 *7 (-920 *4 *6 *5)) (-5 *2 (-2 (|:| |sysok| (-112)) (|:| |z0| (-621 *7)) (|:| |n0| (-621 *7)))) (-5 *1 (-895 *4 *5 *6 *7)) (-5 *3 (-621 *7)))) (-2605 (*1 *2 *3) (-12 (-5 *3 (-923 *4)) (-4 *4 (-13 (-300) (-145))) (-4 *2 (-920 *4 *6 *5)) (-5 *1 (-895 *4 *5 *6 *2)) (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)))) (-2888 (*1 *2 *3) (-12 (-5 *3 (-621 (-1143))) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *2 (-621 (-400 (-923 *4)))) (-5 *1 (-895 *4 *5 *6 *7)) (-4 *7 (-920 *4 *6 *5)))) (-1351 (*1 *2 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *2 (-621 (-400 (-923 *4)))) (-5 *1 (-895 *4 *5 *6 *7)))) (-1351 (*1 *2 *3) (-12 (-5 *3 (-665 *7)) (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *2 (-665 (-400 (-923 *4)))) (-5 *1 (-895 *4 *5 *6 *7)))) (-1351 (*1 *2 *3) (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *2 (-400 (-923 *4))) (-5 *1 (-895 *4 *5 *6 *3)) (-4 *3 (-920 *4 *6 *5)))) (-4018 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-665 *11)) (-5 *4 (-621 (-400 (-923 *8)))) (-5 *5 (-747)) (-5 *6 (-1125)) (-4 *8 (-13 (-300) (-145))) (-4 *11 (-920 *8 *10 *9)) (-4 *9 (-13 (-823) (-594 (-1143)))) (-4 *10 (-769)) (-5 *2 (-2 (|:| |rgl| (-621 (-2 (|:| |eqzro| (-621 *11)) (|:| |neqzro| (-621 *11)) (|:| |wcond| (-621 (-923 *8))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 *8)))) (|:| -1949 (-621 (-1226 (-400 (-923 *8)))))))))) (|:| |rgsz| (-549)))) (-5 *1 (-895 *8 *9 *10 *11)) (-5 *7 (-549)))) (-3894 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *2 (-621 (-2 (|:| |eqzro| (-621 *7)) (|:| |neqzro| (-621 *7)) (|:| |wcond| (-621 (-923 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 *4)))) (|:| -1949 (-621 (-1226 (-400 (-923 *4)))))))))) (-5 *1 (-895 *4 *5 *6 *7)) (-4 *7 (-920 *4 *6 *5)))) (-2514 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-2 (|:| |eqzro| (-621 *8)) (|:| |neqzro| (-621 *8)) (|:| |wcond| (-621 (-923 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 *5)))) (|:| -1949 (-621 (-1226 (-400 (-923 *5)))))))))) (-5 *4 (-1125)) (-4 *5 (-13 (-300) (-145))) (-4 *8 (-920 *5 *7 *6)) (-4 *6 (-13 (-823) (-594 (-1143)))) (-4 *7 (-769)) (-5 *2 (-549)) (-5 *1 (-895 *5 *6 *7 *8)))) (-1431 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-665 *9)) (-5 *4 (-892)) (-5 *5 (-1125)) (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145))) (-4 *7 (-13 (-823) (-594 (-1143)))) (-4 *8 (-769)) (-5 *2 (-549)) (-5 *1 (-895 *6 *7 *8 *9)))) (-1431 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-665 *10)) (-5 *4 (-621 (-1143))) (-5 *5 (-892)) (-5 *6 (-1125)) (-4 *10 (-920 *7 *9 *8)) (-4 *7 (-13 (-300) (-145))) (-4 *8 (-13 (-823) (-594 (-1143)))) (-4 *9 (-769)) (-5 *2 (-549)) (-5 *1 (-895 *7 *8 *9 *10)))) (-1431 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-665 *10)) (-5 *4 (-621 *10)) (-5 *5 (-892)) (-5 *6 (-1125)) (-4 *10 (-920 *7 *9 *8)) (-4 *7 (-13 (-300) (-145))) (-4 *8 (-13 (-823) (-594 (-1143)))) (-4 *9 (-769)) (-5 *2 (-549)) (-5 *1 (-895 *7 *8 *9 *10)))) (-1431 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *8)) (-5 *4 (-1125)) (-4 *8 (-920 *5 *7 *6)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1143)))) (-4 *7 (-769)) (-5 *2 (-549)) (-5 *1 (-895 *5 *6 *7 *8)))) (-1431 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-665 *9)) (-5 *4 (-621 (-1143))) (-5 *5 (-1125)) (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145))) (-4 *7 (-13 (-823) (-594 (-1143)))) (-4 *8 (-769)) (-5 *2 (-549)) (-5 *1 (-895 *6 *7 *8 *9)))) (-1431 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-665 *9)) (-5 *4 (-621 *9)) (-5 *5 (-1125)) (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145))) (-4 *7 (-13 (-823) (-594 (-1143)))) (-4 *8 (-769)) (-5 *2 (-549)) (-5 *1 (-895 *6 *7 *8 *9)))) (-1431 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *8)) (-5 *4 (-892)) (-4 *8 (-920 *5 *7 *6)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1143)))) (-4 *7 (-769)) (-5 *2 (-621 (-2 (|:| |eqzro| (-621 *8)) (|:| |neqzro| (-621 *8)) (|:| |wcond| (-621 (-923 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 *5)))) (|:| -1949 (-621 (-1226 (-400 (-923 *5)))))))))) (-5 *1 (-895 *5 *6 *7 *8)))) (-1431 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-665 *9)) (-5 *4 (-621 (-1143))) (-5 *5 (-892)) (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145))) (-4 *7 (-13 (-823) (-594 (-1143)))) (-4 *8 (-769)) (-5 *2 (-621 (-2 (|:| |eqzro| (-621 *9)) (|:| |neqzro| (-621 *9)) (|:| |wcond| (-621 (-923 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 *6)))) (|:| -1949 (-621 (-1226 (-400 (-923 *6)))))))))) (-5 *1 (-895 *6 *7 *8 *9)))) (-1431 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-665 *9)) (-5 *5 (-892)) (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145))) (-4 *7 (-13 (-823) (-594 (-1143)))) (-4 *8 (-769)) (-5 *2 (-621 (-2 (|:| |eqzro| (-621 *9)) (|:| |neqzro| (-621 *9)) (|:| |wcond| (-621 (-923 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 *6)))) (|:| -1949 (-621 (-1226 (-400 (-923 *6)))))))))) (-5 *1 (-895 *6 *7 *8 *9)) (-5 *4 (-621 *9)))) (-1431 (*1 *2 *3) (-12 (-5 *3 (-665 *7)) (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *2 (-621 (-2 (|:| |eqzro| (-621 *7)) (|:| |neqzro| (-621 *7)) (|:| |wcond| (-621 (-923 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 *4)))) (|:| -1949 (-621 (-1226 (-400 (-923 *4)))))))))) (-5 *1 (-895 *4 *5 *6 *7)))) (-1431 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *8)) (-5 *4 (-621 (-1143))) (-4 *8 (-920 *5 *7 *6)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1143)))) (-4 *7 (-769)) (-5 *2 (-621 (-2 (|:| |eqzro| (-621 *8)) (|:| |neqzro| (-621 *8)) (|:| |wcond| (-621 (-923 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 *5)))) (|:| -1949 (-621 (-1226 (-400 (-923 *5)))))))))) (-5 *1 (-895 *5 *6 *7 *8)))) (-1431 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *8)) (-4 *8 (-920 *5 *7 *6)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1143)))) (-4 *7 (-769)) (-5 *2 (-621 (-2 (|:| |eqzro| (-621 *8)) (|:| |neqzro| (-621 *8)) (|:| |wcond| (-621 (-923 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 *5)))) (|:| -1949 (-621 (-1226 (-400 (-923 *5)))))))))) (-5 *1 (-895 *5 *6 *7 *8)) (-5 *4 (-621 *8)))))
-(-10 -7 (-15 -1431 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 |#4|))) (-15 -1431 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 (-1143)))) (-15 -1431 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|))) (-15 -1431 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 |#4|) (-892))) (-15 -1431 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 (-1143)) (-892))) (-15 -1431 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-665 |#4|) (-892))) (-15 -1431 ((-549) (-665 |#4|) (-621 |#4|) (-1125))) (-15 -1431 ((-549) (-665 |#4|) (-621 (-1143)) (-1125))) (-15 -1431 ((-549) (-665 |#4|) (-1125))) (-15 -1431 ((-549) (-665 |#4|) (-621 |#4|) (-892) (-1125))) (-15 -1431 ((-549) (-665 |#4|) (-621 (-1143)) (-892) (-1125))) (-15 -1431 ((-549) (-665 |#4|) (-892) (-1125))) (-15 -2514 ((-549) (-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-1125))) (-15 -3894 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|))))))))) (-1125))) (-15 -4018 ((-2 (|:| |rgl| (-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|)))))))))) (|:| |rgsz| (-549))) (-665 |#4|) (-621 (-400 (-923 |#1|))) (-747) (-1125) (-549))) (-15 -1351 ((-400 (-923 |#1|)) |#4|)) (-15 -1351 ((-665 (-400 (-923 |#1|))) (-665 |#4|))) (-15 -1351 ((-621 (-400 (-923 |#1|))) (-621 |#4|))) (-15 -2888 ((-621 (-400 (-923 |#1|))) (-621 (-1143)))) (-15 -2605 (|#4| (-923 |#1|))) (-15 -1615 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-621 |#4|)) (|:| |n0| (-621 |#4|))) (-621 |#4|) (-621 |#4|))) (-15 -1840 ((-621 (-2 (|:| -3123 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|)))) (-665 |#4|) (-747))) (-15 -4146 ((-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|)))))) (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|)))))) (-621 |#4|))) (-15 -1458 ((-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|)))))) (-2 (|:| -3521 (-665 (-400 (-923 |#1|)))) (|:| |vec| (-621 (-400 (-923 |#1|)))) (|:| -3123 (-747)) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (-15 -3126 ((-621 |#4|) |#4|)) (-15 -4131 ((-747) (-621 (-2 (|:| -3123 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|)))))) (-15 -1330 ((-747) (-621 (-2 (|:| -3123 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|)))))) (-15 -1939 ((-621 (-621 |#4|)) (-621 (-621 |#4|)))) (-15 -3636 ((-621 (-621 (-549))) (-549) (-549))) (-15 -3724 ((-112) (-621 |#4|) (-621 (-621 |#4|)))) (-15 -1895 ((-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549))))) (-665 |#4|) (-747))) (-15 -1293 ((-665 |#4|) (-665 |#4|) (-621 |#4|))) (-15 -2458 ((-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1226 (-400 (-923 |#1|)))) (|:| -1949 (-621 (-1226 (-400 (-923 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))) (-665 |#4|) (-621 (-400 (-923 |#1|))) (-621 (-621 |#4|)) (-747) (-747) (-549))) (-15 -3047 (|#4| |#4|)) (-15 -3161 ((-112) (-621 |#4|))) (-15 -3161 ((-112) (-621 (-923 |#1|)))))
-((-1811 (((-898) |#1| (-1143)) 17) (((-898) |#1| (-1143) (-1061 (-219))) 21)) (-1645 (((-898) |#1| |#1| (-1143) (-1061 (-219))) 19) (((-898) |#1| (-1143) (-1061 (-219))) 15)))
-(((-896 |#1|) (-10 -7 (-15 -1645 ((-898) |#1| (-1143) (-1061 (-219)))) (-15 -1645 ((-898) |#1| |#1| (-1143) (-1061 (-219)))) (-15 -1811 ((-898) |#1| (-1143) (-1061 (-219)))) (-15 -1811 ((-898) |#1| (-1143)))) (-594 (-525))) (T -896))
-((-1811 (*1 *2 *3 *4) (-12 (-5 *4 (-1143)) (-5 *2 (-898)) (-5 *1 (-896 *3)) (-4 *3 (-594 (-525))))) (-1811 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1143)) (-5 *5 (-1061 (-219))) (-5 *2 (-898)) (-5 *1 (-896 *3)) (-4 *3 (-594 (-525))))) (-1645 (*1 *2 *3 *3 *4 *5) (-12 (-5 *4 (-1143)) (-5 *5 (-1061 (-219))) (-5 *2 (-898)) (-5 *1 (-896 *3)) (-4 *3 (-594 (-525))))) (-1645 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1143)) (-5 *5 (-1061 (-219))) (-5 *2 (-898)) (-5 *1 (-896 *3)) (-4 *3 (-594 (-525))))))
-(-10 -7 (-15 -1645 ((-898) |#1| (-1143) (-1061 (-219)))) (-15 -1645 ((-898) |#1| |#1| (-1143) (-1061 (-219)))) (-15 -1811 ((-898) |#1| (-1143) (-1061 (-219)))) (-15 -1811 ((-898) |#1| (-1143))))
-((-2740 (($ $ (-1061 (-219)) (-1061 (-219)) (-1061 (-219))) 70)) (-1856 (((-1061 (-219)) $) 40)) (-1843 (((-1061 (-219)) $) 39)) (-1832 (((-1061 (-219)) $) 38)) (-2038 (((-621 (-621 (-219))) $) 43)) (-3865 (((-1061 (-219)) $) 41)) (-3991 (((-549) (-549)) 32)) (-1446 (((-549) (-549)) 28)) (-3835 (((-549) (-549)) 30)) (-3752 (((-112) (-112)) 35)) (-3748 (((-549)) 31)) (-4166 (($ $ (-1061 (-219))) 73) (($ $) 74)) (-1586 (($ (-1 (-914 (-219)) (-219)) (-1061 (-219))) 78) (($ (-1 (-914 (-219)) (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219))) 79)) (-1645 (($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1061 (-219))) 81) (($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219))) 82) (($ $ (-1061 (-219))) 76)) (-4160 (((-549)) 36)) (-2308 (((-549)) 27)) (-2266 (((-549)) 29)) (-3928 (((-621 (-621 (-914 (-219)))) $) 95)) (-2351 (((-112) (-112)) 37)) (-3846 (((-834) $) 94)) (-3127 (((-112)) 34)))
-(((-897) (-13 (-945) (-10 -8 (-15 -1586 ($ (-1 (-914 (-219)) (-219)) (-1061 (-219)))) (-15 -1586 ($ (-1 (-914 (-219)) (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219)))) (-15 -1645 ($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1061 (-219)))) (-15 -1645 ($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219)))) (-15 -1645 ($ $ (-1061 (-219)))) (-15 -2740 ($ $ (-1061 (-219)) (-1061 (-219)) (-1061 (-219)))) (-15 -4166 ($ $ (-1061 (-219)))) (-15 -4166 ($ $)) (-15 -3865 ((-1061 (-219)) $)) (-15 -2038 ((-621 (-621 (-219))) $)) (-15 -2308 ((-549))) (-15 -1446 ((-549) (-549))) (-15 -2266 ((-549))) (-15 -3835 ((-549) (-549))) (-15 -3748 ((-549))) (-15 -3991 ((-549) (-549))) (-15 -3127 ((-112))) (-15 -3752 ((-112) (-112))) (-15 -4160 ((-549))) (-15 -2351 ((-112) (-112)))))) (T -897))
-((-1586 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-914 (-219)) (-219))) (-5 *3 (-1061 (-219))) (-5 *1 (-897)))) (-1586 (*1 *1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-914 (-219)) (-219))) (-5 *3 (-1061 (-219))) (-5 *1 (-897)))) (-1645 (*1 *1 *2 *2 *2 *2 *3) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1061 (-219))) (-5 *1 (-897)))) (-1645 (*1 *1 *2 *2 *2 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1061 (-219))) (-5 *1 (-897)))) (-1645 (*1 *1 *1 *2) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-897)))) (-2740 (*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-897)))) (-4166 (*1 *1 *1 *2) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-897)))) (-4166 (*1 *1 *1) (-5 *1 (-897))) (-3865 (*1 *2 *1) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-897)))) (-2038 (*1 *2 *1) (-12 (-5 *2 (-621 (-621 (-219)))) (-5 *1 (-897)))) (-2308 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))) (-1446 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))) (-2266 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))) (-3835 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))) (-3748 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))) (-3991 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))) (-3127 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-897)))) (-3752 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-897)))) (-4160 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))) (-2351 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-897)))))
-(-13 (-945) (-10 -8 (-15 -1586 ($ (-1 (-914 (-219)) (-219)) (-1061 (-219)))) (-15 -1586 ($ (-1 (-914 (-219)) (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219)))) (-15 -1645 ($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1061 (-219)))) (-15 -1645 ($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219)))) (-15 -1645 ($ $ (-1061 (-219)))) (-15 -2740 ($ $ (-1061 (-219)) (-1061 (-219)) (-1061 (-219)))) (-15 -4166 ($ $ (-1061 (-219)))) (-15 -4166 ($ $)) (-15 -3865 ((-1061 (-219)) $)) (-15 -2038 ((-621 (-621 (-219))) $)) (-15 -2308 ((-549))) (-15 -1446 ((-549) (-549))) (-15 -2266 ((-549))) (-15 -3835 ((-549) (-549))) (-15 -3748 ((-549))) (-15 -3991 ((-549) (-549))) (-15 -3127 ((-112))) (-15 -3752 ((-112) (-112))) (-15 -4160 ((-549))) (-15 -2351 ((-112) (-112)))))
-((-2740 (($ $ (-1061 (-219))) 70) (($ $ (-1061 (-219)) (-1061 (-219))) 71)) (-1843 (((-1061 (-219)) $) 44)) (-1832 (((-1061 (-219)) $) 43)) (-3865 (((-1061 (-219)) $) 45)) (-1568 (((-549) (-549)) 37)) (-4096 (((-549) (-549)) 33)) (-1333 (((-549) (-549)) 35)) (-2569 (((-112) (-112)) 39)) (-3654 (((-549)) 36)) (-4166 (($ $ (-1061 (-219))) 74) (($ $) 75)) (-1586 (($ (-1 (-914 (-219)) (-219)) (-1061 (-219))) 84) (($ (-1 (-914 (-219)) (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219))) 85)) (-1811 (($ (-1 (-219) (-219)) (-1061 (-219))) 92) (($ (-1 (-219) (-219))) 95)) (-1645 (($ (-1 (-219) (-219)) (-1061 (-219))) 79) (($ (-1 (-219) (-219)) (-1061 (-219)) (-1061 (-219))) 80) (($ (-621 (-1 (-219) (-219))) (-1061 (-219))) 87) (($ (-621 (-1 (-219) (-219))) (-1061 (-219)) (-1061 (-219))) 88) (($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1061 (-219))) 81) (($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219))) 82) (($ $ (-1061 (-219))) 76)) (-2667 (((-112) $) 40)) (-4197 (((-549)) 41)) (-2474 (((-549)) 32)) (-3228 (((-549)) 34)) (-3928 (((-621 (-621 (-914 (-219)))) $) 23)) (-1690 (((-112) (-112)) 42)) (-3846 (((-834) $) 106)) (-3308 (((-112)) 38)))
-(((-898) (-13 (-926) (-10 -8 (-15 -1645 ($ (-1 (-219) (-219)) (-1061 (-219)))) (-15 -1645 ($ (-1 (-219) (-219)) (-1061 (-219)) (-1061 (-219)))) (-15 -1645 ($ (-621 (-1 (-219) (-219))) (-1061 (-219)))) (-15 -1645 ($ (-621 (-1 (-219) (-219))) (-1061 (-219)) (-1061 (-219)))) (-15 -1645 ($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1061 (-219)))) (-15 -1645 ($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219)))) (-15 -1586 ($ (-1 (-914 (-219)) (-219)) (-1061 (-219)))) (-15 -1586 ($ (-1 (-914 (-219)) (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219)))) (-15 -1811 ($ (-1 (-219) (-219)) (-1061 (-219)))) (-15 -1811 ($ (-1 (-219) (-219)))) (-15 -1645 ($ $ (-1061 (-219)))) (-15 -2667 ((-112) $)) (-15 -2740 ($ $ (-1061 (-219)))) (-15 -2740 ($ $ (-1061 (-219)) (-1061 (-219)))) (-15 -4166 ($ $ (-1061 (-219)))) (-15 -4166 ($ $)) (-15 -3865 ((-1061 (-219)) $)) (-15 -2474 ((-549))) (-15 -4096 ((-549) (-549))) (-15 -3228 ((-549))) (-15 -1333 ((-549) (-549))) (-15 -3654 ((-549))) (-15 -1568 ((-549) (-549))) (-15 -3308 ((-112))) (-15 -2569 ((-112) (-112))) (-15 -4197 ((-549))) (-15 -1690 ((-112) (-112)))))) (T -898))
-((-1645 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1061 (-219))) (-5 *1 (-898)))) (-1645 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1061 (-219))) (-5 *1 (-898)))) (-1645 (*1 *1 *2 *3) (-12 (-5 *2 (-621 (-1 (-219) (-219)))) (-5 *3 (-1061 (-219))) (-5 *1 (-898)))) (-1645 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-621 (-1 (-219) (-219)))) (-5 *3 (-1061 (-219))) (-5 *1 (-898)))) (-1645 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1061 (-219))) (-5 *1 (-898)))) (-1645 (*1 *1 *2 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1061 (-219))) (-5 *1 (-898)))) (-1586 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-914 (-219)) (-219))) (-5 *3 (-1061 (-219))) (-5 *1 (-898)))) (-1586 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-914 (-219)) (-219))) (-5 *3 (-1061 (-219))) (-5 *1 (-898)))) (-1811 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1061 (-219))) (-5 *1 (-898)))) (-1811 (*1 *1 *2) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *1 (-898)))) (-1645 (*1 *1 *1 *2) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-898)))) (-2667 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-898)))) (-2740 (*1 *1 *1 *2) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-898)))) (-2740 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-898)))) (-4166 (*1 *1 *1 *2) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-898)))) (-4166 (*1 *1 *1) (-5 *1 (-898))) (-3865 (*1 *2 *1) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-898)))) (-2474 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))) (-4096 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))) (-3228 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))) (-1333 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))) (-3654 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))) (-1568 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))) (-3308 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-898)))) (-2569 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-898)))) (-4197 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))) (-1690 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-898)))))
-(-13 (-926) (-10 -8 (-15 -1645 ($ (-1 (-219) (-219)) (-1061 (-219)))) (-15 -1645 ($ (-1 (-219) (-219)) (-1061 (-219)) (-1061 (-219)))) (-15 -1645 ($ (-621 (-1 (-219) (-219))) (-1061 (-219)))) (-15 -1645 ($ (-621 (-1 (-219) (-219))) (-1061 (-219)) (-1061 (-219)))) (-15 -1645 ($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1061 (-219)))) (-15 -1645 ($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219)))) (-15 -1586 ($ (-1 (-914 (-219)) (-219)) (-1061 (-219)))) (-15 -1586 ($ (-1 (-914 (-219)) (-219)) (-1061 (-219)) (-1061 (-219)) (-1061 (-219)))) (-15 -1811 ($ (-1 (-219) (-219)) (-1061 (-219)))) (-15 -1811 ($ (-1 (-219) (-219)))) (-15 -1645 ($ $ (-1061 (-219)))) (-15 -2667 ((-112) $)) (-15 -2740 ($ $ (-1061 (-219)))) (-15 -2740 ($ $ (-1061 (-219)) (-1061 (-219)))) (-15 -4166 ($ $ (-1061 (-219)))) (-15 -4166 ($ $)) (-15 -3865 ((-1061 (-219)) $)) (-15 -2474 ((-549))) (-15 -4096 ((-549) (-549))) (-15 -3228 ((-549))) (-15 -1333 ((-549) (-549))) (-15 -3654 ((-549))) (-15 -1568 ((-549) (-549))) (-15 -3308 ((-112))) (-15 -2569 ((-112) (-112))) (-15 -4197 ((-549))) (-15 -1690 ((-112) (-112)))))
-((-1488 (((-621 (-1061 (-219))) (-621 (-621 (-914 (-219))))) 24)))
-(((-899) (-10 -7 (-15 -1488 ((-621 (-1061 (-219))) (-621 (-621 (-914 (-219)))))))) (T -899))
-((-1488 (*1 *2 *3) (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *2 (-621 (-1061 (-219)))) (-5 *1 (-899)))))
-(-10 -7 (-15 -1488 ((-621 (-1061 (-219))) (-621 (-621 (-914 (-219)))))))
-((-2415 ((|#2| |#2|) 26)) (-1779 ((|#2| |#2|) 27)) (-2589 ((|#2| |#2|) 25)) (-3053 ((|#2| |#2| (-1125)) 24)))
-(((-900 |#1| |#2|) (-10 -7 (-15 -3053 (|#2| |#2| (-1125))) (-15 -2589 (|#2| |#2|)) (-15 -2415 (|#2| |#2|)) (-15 -1779 (|#2| |#2|))) (-823) (-423 |#1|)) (T -900))
-((-1779 (*1 *2 *2) (-12 (-4 *3 (-823)) (-5 *1 (-900 *3 *2)) (-4 *2 (-423 *3)))) (-2415 (*1 *2 *2) (-12 (-4 *3 (-823)) (-5 *1 (-900 *3 *2)) (-4 *2 (-423 *3)))) (-2589 (*1 *2 *2) (-12 (-4 *3 (-823)) (-5 *1 (-900 *3 *2)) (-4 *2 (-423 *3)))) (-3053 (*1 *2 *2 *3) (-12 (-5 *3 (-1125)) (-4 *4 (-823)) (-5 *1 (-900 *4 *2)) (-4 *2 (-423 *4)))))
-(-10 -7 (-15 -3053 (|#2| |#2| (-1125))) (-15 -2589 (|#2| |#2|)) (-15 -2415 (|#2| |#2|)) (-15 -1779 (|#2| |#2|)))
-((-2415 (((-309 (-549)) (-1143)) 16)) (-1779 (((-309 (-549)) (-1143)) 14)) (-2589 (((-309 (-549)) (-1143)) 12)) (-3053 (((-309 (-549)) (-1143) (-1125)) 19)))
-(((-901) (-10 -7 (-15 -3053 ((-309 (-549)) (-1143) (-1125))) (-15 -2589 ((-309 (-549)) (-1143))) (-15 -2415 ((-309 (-549)) (-1143))) (-15 -1779 ((-309 (-549)) (-1143))))) (T -901))
-((-1779 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-309 (-549))) (-5 *1 (-901)))) (-2415 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-309 (-549))) (-5 *1 (-901)))) (-2589 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-309 (-549))) (-5 *1 (-901)))) (-3053 (*1 *2 *3 *4) (-12 (-5 *3 (-1143)) (-5 *4 (-1125)) (-5 *2 (-309 (-549))) (-5 *1 (-901)))))
-(-10 -7 (-15 -3053 ((-309 (-549)) (-1143) (-1125))) (-15 -2589 ((-309 (-549)) (-1143))) (-15 -2415 ((-309 (-549)) (-1143))) (-15 -1779 ((-309 (-549)) (-1143))))
-((-2932 (((-860 |#1| |#3|) |#2| (-863 |#1|) (-860 |#1| |#3|)) 25)) (-3233 (((-1 (-112) |#2|) (-1 (-112) |#3|)) 13)))
-(((-902 |#1| |#2| |#3|) (-10 -7 (-15 -3233 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -2932 ((-860 |#1| |#3|) |#2| (-863 |#1|) (-860 |#1| |#3|)))) (-1067) (-857 |#1|) (-13 (-1067) (-1009 |#2|))) (T -902))
-((-2932 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-860 *5 *6)) (-5 *4 (-863 *5)) (-4 *5 (-1067)) (-4 *6 (-13 (-1067) (-1009 *3))) (-4 *3 (-857 *5)) (-5 *1 (-902 *5 *3 *6)))) (-3233 (*1 *2 *3) (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1067) (-1009 *5))) (-4 *5 (-857 *4)) (-4 *4 (-1067)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-902 *4 *5 *6)))))
-(-10 -7 (-15 -3233 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -2932 ((-860 |#1| |#3|) |#2| (-863 |#1|) (-860 |#1| |#3|))))
-((-2932 (((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|)) 30)))
-(((-903 |#1| |#2| |#3|) (-10 -7 (-15 -2932 ((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|)))) (-1067) (-13 (-541) (-823) (-857 |#1|)) (-13 (-423 |#2|) (-594 (-863 |#1|)) (-857 |#1|) (-1009 (-592 $)))) (T -903))
-((-2932 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-860 *5 *3)) (-4 *5 (-1067)) (-4 *3 (-13 (-423 *6) (-594 *4) (-857 *5) (-1009 (-592 $)))) (-5 *4 (-863 *5)) (-4 *6 (-13 (-541) (-823) (-857 *5))) (-5 *1 (-903 *5 *6 *3)))))
-(-10 -7 (-15 -2932 ((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|))))
-((-2932 (((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|)) 13)))
-(((-904 |#1|) (-10 -7 (-15 -2932 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|)))) (-534)) (T -904))
-((-2932 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-860 (-549) *3)) (-5 *4 (-863 (-549))) (-4 *3 (-534)) (-5 *1 (-904 *3)))))
-(-10 -7 (-15 -2932 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))))
-((-2932 (((-860 |#1| |#2|) (-592 |#2|) (-863 |#1|) (-860 |#1| |#2|)) 54)))
-(((-905 |#1| |#2|) (-10 -7 (-15 -2932 ((-860 |#1| |#2|) (-592 |#2|) (-863 |#1|) (-860 |#1| |#2|)))) (-1067) (-13 (-823) (-1009 (-592 $)) (-594 (-863 |#1|)) (-857 |#1|))) (T -905))
-((-2932 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-860 *5 *6)) (-5 *3 (-592 *6)) (-4 *5 (-1067)) (-4 *6 (-13 (-823) (-1009 (-592 $)) (-594 *4) (-857 *5))) (-5 *4 (-863 *5)) (-5 *1 (-905 *5 *6)))))
-(-10 -7 (-15 -2932 ((-860 |#1| |#2|) (-592 |#2|) (-863 |#1|) (-860 |#1| |#2|))))
-((-2932 (((-856 |#1| |#2| |#3|) |#3| (-863 |#1|) (-856 |#1| |#2| |#3|)) 15)))
-(((-906 |#1| |#2| |#3|) (-10 -7 (-15 -2932 ((-856 |#1| |#2| |#3|) |#3| (-863 |#1|) (-856 |#1| |#2| |#3|)))) (-1067) (-857 |#1|) (-642 |#2|)) (T -906))
-((-2932 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-856 *5 *6 *3)) (-5 *4 (-863 *5)) (-4 *5 (-1067)) (-4 *6 (-857 *5)) (-4 *3 (-642 *6)) (-5 *1 (-906 *5 *6 *3)))))
-(-10 -7 (-15 -2932 ((-856 |#1| |#2| |#3|) |#3| (-863 |#1|) (-856 |#1| |#2| |#3|))))
-((-2932 (((-860 |#1| |#5|) |#5| (-863 |#1|) (-860 |#1| |#5|)) 17 (|has| |#3| (-857 |#1|))) (((-860 |#1| |#5|) |#5| (-863 |#1|) (-860 |#1| |#5|) (-1 (-860 |#1| |#5|) |#3| (-863 |#1|) (-860 |#1| |#5|))) 16)))
-(((-907 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2932 ((-860 |#1| |#5|) |#5| (-863 |#1|) (-860 |#1| |#5|) (-1 (-860 |#1| |#5|) |#3| (-863 |#1|) (-860 |#1| |#5|)))) (IF (|has| |#3| (-857 |#1|)) (-15 -2932 ((-860 |#1| |#5|) |#5| (-863 |#1|) (-860 |#1| |#5|))) |%noBranch|)) (-1067) (-769) (-823) (-13 (-1018) (-823) (-857 |#1|)) (-13 (-920 |#4| |#2| |#3|) (-594 (-863 |#1|)))) (T -907))
-((-2932 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-860 *5 *3)) (-4 *5 (-1067)) (-4 *3 (-13 (-920 *8 *6 *7) (-594 *4))) (-5 *4 (-863 *5)) (-4 *7 (-857 *5)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-13 (-1018) (-823) (-857 *5))) (-5 *1 (-907 *5 *6 *7 *8 *3)))) (-2932 (*1 *2 *3 *4 *2 *5) (-12 (-5 *5 (-1 (-860 *6 *3) *8 (-863 *6) (-860 *6 *3))) (-4 *8 (-823)) (-5 *2 (-860 *6 *3)) (-5 *4 (-863 *6)) (-4 *6 (-1067)) (-4 *3 (-13 (-920 *9 *7 *8) (-594 *4))) (-4 *7 (-769)) (-4 *9 (-13 (-1018) (-823) (-857 *6))) (-5 *1 (-907 *6 *7 *8 *9 *3)))))
-(-10 -7 (-15 -2932 ((-860 |#1| |#5|) |#5| (-863 |#1|) (-860 |#1| |#5|) (-1 (-860 |#1| |#5|) |#3| (-863 |#1|) (-860 |#1| |#5|)))) (IF (|has| |#3| (-857 |#1|)) (-15 -2932 ((-860 |#1| |#5|) |#5| (-863 |#1|) (-860 |#1| |#5|))) |%noBranch|))
-((-1863 ((|#2| |#2| (-621 (-1 (-112) |#3|))) 12) ((|#2| |#2| (-1 (-112) |#3|)) 13)))
-(((-908 |#1| |#2| |#3|) (-10 -7 (-15 -1863 (|#2| |#2| (-1 (-112) |#3|))) (-15 -1863 (|#2| |#2| (-621 (-1 (-112) |#3|))))) (-823) (-423 |#1|) (-1180)) (T -908))
-((-1863 (*1 *2 *2 *3) (-12 (-5 *3 (-621 (-1 (-112) *5))) (-4 *5 (-1180)) (-4 *4 (-823)) (-5 *1 (-908 *4 *2 *5)) (-4 *2 (-423 *4)))) (-1863 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *5)) (-4 *5 (-1180)) (-4 *4 (-823)) (-5 *1 (-908 *4 *2 *5)) (-4 *2 (-423 *4)))))
-(-10 -7 (-15 -1863 (|#2| |#2| (-1 (-112) |#3|))) (-15 -1863 (|#2| |#2| (-621 (-1 (-112) |#3|)))))
-((-1863 (((-309 (-549)) (-1143) (-621 (-1 (-112) |#1|))) 18) (((-309 (-549)) (-1143) (-1 (-112) |#1|)) 15)))
-(((-909 |#1|) (-10 -7 (-15 -1863 ((-309 (-549)) (-1143) (-1 (-112) |#1|))) (-15 -1863 ((-309 (-549)) (-1143) (-621 (-1 (-112) |#1|))))) (-1180)) (T -909))
-((-1863 (*1 *2 *3 *4) (-12 (-5 *3 (-1143)) (-5 *4 (-621 (-1 (-112) *5))) (-4 *5 (-1180)) (-5 *2 (-309 (-549))) (-5 *1 (-909 *5)))) (-1863 (*1 *2 *3 *4) (-12 (-5 *3 (-1143)) (-5 *4 (-1 (-112) *5)) (-4 *5 (-1180)) (-5 *2 (-309 (-549))) (-5 *1 (-909 *5)))))
-(-10 -7 (-15 -1863 ((-309 (-549)) (-1143) (-1 (-112) |#1|))) (-15 -1863 ((-309 (-549)) (-1143) (-621 (-1 (-112) |#1|)))))
-((-2932 (((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|)) 25)))
-(((-910 |#1| |#2| |#3|) (-10 -7 (-15 -2932 ((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|)))) (-1067) (-13 (-541) (-857 |#1|) (-594 (-863 |#1|))) (-963 |#2|)) (T -910))
-((-2932 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-860 *5 *3)) (-4 *5 (-1067)) (-4 *3 (-963 *6)) (-4 *6 (-13 (-541) (-857 *5) (-594 *4))) (-5 *4 (-863 *5)) (-5 *1 (-910 *5 *6 *3)))))
-(-10 -7 (-15 -2932 ((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|))))
-((-2932 (((-860 |#1| (-1143)) (-1143) (-863 |#1|) (-860 |#1| (-1143))) 17)))
-(((-911 |#1|) (-10 -7 (-15 -2932 ((-860 |#1| (-1143)) (-1143) (-863 |#1|) (-860 |#1| (-1143))))) (-1067)) (T -911))
-((-2932 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-860 *5 (-1143))) (-5 *3 (-1143)) (-5 *4 (-863 *5)) (-4 *5 (-1067)) (-5 *1 (-911 *5)))))
-(-10 -7 (-15 -2932 ((-860 |#1| (-1143)) (-1143) (-863 |#1|) (-860 |#1| (-1143)))))
-((-3086 (((-860 |#1| |#3|) (-621 |#3|) (-621 (-863 |#1|)) (-860 |#1| |#3|) (-1 (-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|))) 33)) (-2932 (((-860 |#1| |#3|) (-621 |#3|) (-621 (-863 |#1|)) (-1 |#3| (-621 |#3|)) (-860 |#1| |#3|) (-1 (-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|))) 32)))
-(((-912 |#1| |#2| |#3|) (-10 -7 (-15 -2932 ((-860 |#1| |#3|) (-621 |#3|) (-621 (-863 |#1|)) (-1 |#3| (-621 |#3|)) (-860 |#1| |#3|) (-1 (-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|)))) (-15 -3086 ((-860 |#1| |#3|) (-621 |#3|) (-621 (-863 |#1|)) (-860 |#1| |#3|) (-1 (-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|))))) (-1067) (-13 (-1018) (-823)) (-13 (-1018) (-594 (-863 |#1|)) (-1009 |#2|))) (T -912))
-((-3086 (*1 *2 *3 *4 *2 *5) (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 (-863 *6))) (-5 *5 (-1 (-860 *6 *8) *8 (-863 *6) (-860 *6 *8))) (-4 *6 (-1067)) (-4 *8 (-13 (-1018) (-594 (-863 *6)) (-1009 *7))) (-5 *2 (-860 *6 *8)) (-4 *7 (-13 (-1018) (-823))) (-5 *1 (-912 *6 *7 *8)))) (-2932 (*1 *2 *3 *4 *5 *2 *6) (-12 (-5 *4 (-621 (-863 *7))) (-5 *5 (-1 *9 (-621 *9))) (-5 *6 (-1 (-860 *7 *9) *9 (-863 *7) (-860 *7 *9))) (-4 *7 (-1067)) (-4 *9 (-13 (-1018) (-594 (-863 *7)) (-1009 *8))) (-5 *2 (-860 *7 *9)) (-5 *3 (-621 *9)) (-4 *8 (-13 (-1018) (-823))) (-5 *1 (-912 *7 *8 *9)))))
-(-10 -7 (-15 -2932 ((-860 |#1| |#3|) (-621 |#3|) (-621 (-863 |#1|)) (-1 |#3| (-621 |#3|)) (-860 |#1| |#3|) (-1 (-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|)))) (-15 -3086 ((-860 |#1| |#3|) (-621 |#3|) (-621 (-863 |#1|)) (-860 |#1| |#3|) (-1 (-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|)))))
-((-2497 (((-1139 (-400 (-549))) (-549)) 63)) (-2517 (((-1139 (-549)) (-549)) 66)) (-3367 (((-1139 (-549)) (-549)) 60)) (-2466 (((-549) (-1139 (-549))) 55)) (-4012 (((-1139 (-400 (-549))) (-549)) 49)) (-2856 (((-1139 (-549)) (-549)) 38)) (-2335 (((-1139 (-549)) (-549)) 68)) (-3020 (((-1139 (-549)) (-549)) 67)) (-3650 (((-1139 (-400 (-549))) (-549)) 51)))
-(((-913) (-10 -7 (-15 -3650 ((-1139 (-400 (-549))) (-549))) (-15 -3020 ((-1139 (-549)) (-549))) (-15 -2335 ((-1139 (-549)) (-549))) (-15 -2856 ((-1139 (-549)) (-549))) (-15 -4012 ((-1139 (-400 (-549))) (-549))) (-15 -2466 ((-549) (-1139 (-549)))) (-15 -3367 ((-1139 (-549)) (-549))) (-15 -2517 ((-1139 (-549)) (-549))) (-15 -2497 ((-1139 (-400 (-549))) (-549))))) (T -913))
-((-2497 (*1 *2 *3) (-12 (-5 *2 (-1139 (-400 (-549)))) (-5 *1 (-913)) (-5 *3 (-549)))) (-2517 (*1 *2 *3) (-12 (-5 *2 (-1139 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))) (-3367 (*1 *2 *3) (-12 (-5 *2 (-1139 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))) (-2466 (*1 *2 *3) (-12 (-5 *3 (-1139 (-549))) (-5 *2 (-549)) (-5 *1 (-913)))) (-4012 (*1 *2 *3) (-12 (-5 *2 (-1139 (-400 (-549)))) (-5 *1 (-913)) (-5 *3 (-549)))) (-2856 (*1 *2 *3) (-12 (-5 *2 (-1139 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))) (-2335 (*1 *2 *3) (-12 (-5 *2 (-1139 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))) (-3020 (*1 *2 *3) (-12 (-5 *2 (-1139 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))) (-3650 (*1 *2 *3) (-12 (-5 *2 (-1139 (-400 (-549)))) (-5 *1 (-913)) (-5 *3 (-549)))))
-(-10 -7 (-15 -3650 ((-1139 (-400 (-549))) (-549))) (-15 -3020 ((-1139 (-549)) (-549))) (-15 -2335 ((-1139 (-549)) (-549))) (-15 -2856 ((-1139 (-549)) (-549))) (-15 -4012 ((-1139 (-400 (-549))) (-549))) (-15 -2466 ((-549) (-1139 (-549)))) (-15 -3367 ((-1139 (-549)) (-549))) (-15 -2517 ((-1139 (-549)) (-549))) (-15 -2497 ((-1139 (-400 (-549))) (-549))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3769 (($ (-747)) NIL (|has| |#1| (-23)))) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-4142 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-823)))) (-4311 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4338))) (($ $) NIL (-12 (|has| $ (-6 -4338)) (|has| |#1| (-823))))) (-3193 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-823)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 ((|#1| $ (-549) |#1|) 11 (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) NIL (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-1585 (($ $) NIL (|has| $ (-6 -4338)))) (-3064 (($ $) NIL)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-1879 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) NIL)) (-2883 (((-549) (-1 (-112) |#1|) $) NIL) (((-549) |#1| $) NIL (|has| |#1| (-1067))) (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1067)))) (-2798 (($ (-621 |#1|)) 13)) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-4050 (((-665 |#1|) $ $) NIL (|has| |#1| (-1018)))) (-3743 (($ (-747) |#1|) 8)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) 10 (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3890 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-823)))) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3359 ((|#1| $) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1018))))) (-1508 (((-112) $ (-747)) NIL)) (-4210 ((|#1| $) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1018))))) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-2616 (($ |#1| $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-3646 ((|#1| $) NIL (|has| (-549) (-823)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1642 (($ $ |#1|) NIL (|has| $ (-6 -4338)))) (-2763 (($ $ (-621 |#1|)) 26)) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#1| $ (-549) |#1|) NIL) ((|#1| $ (-549)) 20) (($ $ (-1193 (-549))) NIL)) (-1706 ((|#1| $ $) NIL (|has| |#1| (-1018)))) (-2985 (((-892) $) 16)) (-2167 (($ $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-2168 (($ $ $) 24)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2730 (($ $ $ (-549)) NIL (|has| $ (-6 -4338)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| |#1| (-594 (-525)))) (($ (-621 |#1|)) 17)) (-3854 (($ (-621 |#1|)) NIL)) (-1952 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) 25) (($ (-621 $)) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2500 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-2486 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-549) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-703))) (($ $ |#1|) NIL (|has| |#1| (-703)))) (-3775 (((-747) $) 14 (|has| $ (-6 -4337)))))
+((-2448 (*1 *2 *3) (-12 (-4 *1 (-891)) (-5 *2 (-2 (|:| -1569 (-621 *1)) (|:| -4247 *1))) (-5 *3 (-621 *1)))) (-4075 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-621 *1)) (-4 *1 (-891)))))
+(-13 (-444) (-10 -8 (-15 -2448 ((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $))) (-15 -4075 ((-3 (-621 $) "failed") (-621 $) $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-444) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-3034 (($) NIL T CONST)) (-2612 (((-3 $ "failed") $) NIL)) (-2297 (((-112) $) NIL)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3726 (($ $ $) NIL)) (-3845 (((-834) $) NIL)) (-3286 (($) NIL T CONST)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-747)) NIL) (($ $ (-892)) NIL)) (* (($ (-892) $) NIL) (($ $ $) NIL)))
+(((-892) (-13 (-770) (-703) (-10 -8 (-15 -3726 ($ $ $)) (-6 (-4338 "*"))))) (T -892))
+((-3726 (*1 *1 *1 *1) (-5 *1 (-892))))
+(-13 (-770) (-703) (-10 -8 (-15 -3726 ($ $ $)) (-6 (-4338 "*"))))
+((-2133 ((|#2| (-621 |#1|) (-621 |#1|)) 24)))
+(((-893 |#1| |#2|) (-10 -7 (-15 -2133 (|#2| (-621 |#1|) (-621 |#1|)))) (-356) (-1201 |#1|)) (T -893))
+((-2133 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *4)) (-4 *4 (-356)) (-4 *2 (-1201 *4)) (-5 *1 (-893 *4 *2)))))
+(-10 -7 (-15 -2133 (|#2| (-621 |#1|) (-621 |#1|))))
+((-2075 (((-1138 |#2|) (-621 |#2|) (-621 |#2|)) 17) (((-1198 |#1| |#2|) (-1198 |#1| |#2|) (-621 |#2|) (-621 |#2|)) 13)))
+(((-894 |#1| |#2|) (-10 -7 (-15 -2075 ((-1198 |#1| |#2|) (-1198 |#1| |#2|) (-621 |#2|) (-621 |#2|))) (-15 -2075 ((-1138 |#2|) (-621 |#2|) (-621 |#2|)))) (-1142) (-356)) (T -894))
+((-2075 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *5)) (-4 *5 (-356)) (-5 *2 (-1138 *5)) (-5 *1 (-894 *4 *5)) (-14 *4 (-1142)))) (-2075 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1198 *4 *5)) (-5 *3 (-621 *5)) (-14 *4 (-1142)) (-4 *5 (-356)) (-5 *1 (-894 *4 *5)))))
+(-10 -7 (-15 -2075 ((-1198 |#1| |#2|) (-1198 |#1| |#2|) (-621 |#2|) (-621 |#2|))) (-15 -2075 ((-1138 |#2|) (-621 |#2|) (-621 |#2|))))
+((-3320 (((-549) (-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-1124)) 139)) (-1357 ((|#4| |#4|) 155)) (-3464 (((-621 (-400 (-923 |#1|))) (-621 (-1142))) 118)) (-2404 (((-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))) (-665 |#4|) (-621 (-400 (-923 |#1|))) (-621 (-621 |#4|)) (-747) (-747) (-549)) 75)) (-1445 (((-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|)))))) (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|)))))) (-621 |#4|)) 59)) (-3459 (((-665 |#4|) (-665 |#4|) (-621 |#4|)) 55)) (-3496 (((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-1124)) 151)) (-4107 (((-549) (-665 |#4|) (-892) (-1124)) 132) (((-549) (-665 |#4|) (-621 (-1142)) (-892) (-1124)) 131) (((-549) (-665 |#4|) (-621 |#4|) (-892) (-1124)) 130) (((-549) (-665 |#4|) (-1124)) 127) (((-549) (-665 |#4|) (-621 (-1142)) (-1124)) 126) (((-549) (-665 |#4|) (-621 |#4|) (-1124)) 125) (((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|) (-892)) 124) (((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 (-1142)) (-892)) 123) (((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 |#4|) (-892)) 122) (((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|)) 120) (((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 (-1142))) 119) (((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 |#4|)) 115)) (-2320 ((|#4| (-923 |#1|)) 68)) (-2442 (((-112) (-621 |#4|) (-621 (-621 |#4|))) 152)) (-1565 (((-621 (-621 (-549))) (-549) (-549)) 129)) (-2838 (((-621 (-621 |#4|)) (-621 (-621 |#4|))) 88)) (-2846 (((-747) (-621 (-2 (|:| -3121 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|))))) 86)) (-2307 (((-747) (-621 (-2 (|:| -3121 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|))))) 85)) (-4232 (((-112) (-621 (-923 |#1|))) 17) (((-112) (-621 |#4|)) 13)) (-3422 (((-2 (|:| |sysok| (-112)) (|:| |z0| (-621 |#4|)) (|:| |n0| (-621 |#4|))) (-621 |#4|) (-621 |#4|)) 71)) (-1671 (((-621 |#4|) |#4|) 49)) (-1920 (((-621 (-400 (-923 |#1|))) (-621 |#4|)) 114) (((-665 (-400 (-923 |#1|))) (-665 |#4|)) 56) (((-400 (-923 |#1|)) |#4|) 111)) (-3935 (((-2 (|:| |rgl| (-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|)))))))))) (|:| |rgsz| (-549))) (-665 |#4|) (-621 (-400 (-923 |#1|))) (-747) (-1124) (-549)) 93)) (-1612 (((-621 (-2 (|:| -3121 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|)))) (-665 |#4|) (-747)) 84)) (-2378 (((-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549))))) (-665 |#4|) (-747)) 101)) (-2041 (((-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|)))))) (-2 (|:| -3697 (-665 (-400 (-923 |#1|)))) (|:| |vec| (-621 (-400 (-923 |#1|)))) (|:| -3121 (-747)) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549))))) 48)))
+(((-895 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4107 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 |#4|))) (-15 -4107 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 (-1142)))) (-15 -4107 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|))) (-15 -4107 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 |#4|) (-892))) (-15 -4107 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 (-1142)) (-892))) (-15 -4107 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|) (-892))) (-15 -4107 ((-549) (-665 |#4|) (-621 |#4|) (-1124))) (-15 -4107 ((-549) (-665 |#4|) (-621 (-1142)) (-1124))) (-15 -4107 ((-549) (-665 |#4|) (-1124))) (-15 -4107 ((-549) (-665 |#4|) (-621 |#4|) (-892) (-1124))) (-15 -4107 ((-549) (-665 |#4|) (-621 (-1142)) (-892) (-1124))) (-15 -4107 ((-549) (-665 |#4|) (-892) (-1124))) (-15 -3320 ((-549) (-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-1124))) (-15 -3496 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-1124))) (-15 -3935 ((-2 (|:| |rgl| (-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|)))))))))) (|:| |rgsz| (-549))) (-665 |#4|) (-621 (-400 (-923 |#1|))) (-747) (-1124) (-549))) (-15 -1920 ((-400 (-923 |#1|)) |#4|)) (-15 -1920 ((-665 (-400 (-923 |#1|))) (-665 |#4|))) (-15 -1920 ((-621 (-400 (-923 |#1|))) (-621 |#4|))) (-15 -3464 ((-621 (-400 (-923 |#1|))) (-621 (-1142)))) (-15 -2320 (|#4| (-923 |#1|))) (-15 -3422 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-621 |#4|)) (|:| |n0| (-621 |#4|))) (-621 |#4|) (-621 |#4|))) (-15 -1612 ((-621 (-2 (|:| -3121 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|)))) (-665 |#4|) (-747))) (-15 -1445 ((-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|)))))) (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|)))))) (-621 |#4|))) (-15 -2041 ((-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|)))))) (-2 (|:| -3697 (-665 (-400 (-923 |#1|)))) (|:| |vec| (-621 (-400 (-923 |#1|)))) (|:| -3121 (-747)) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (-15 -1671 ((-621 |#4|) |#4|)) (-15 -2307 ((-747) (-621 (-2 (|:| -3121 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|)))))) (-15 -2846 ((-747) (-621 (-2 (|:| -3121 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|)))))) (-15 -2838 ((-621 (-621 |#4|)) (-621 (-621 |#4|)))) (-15 -1565 ((-621 (-621 (-549))) (-549) (-549))) (-15 -2442 ((-112) (-621 |#4|) (-621 (-621 |#4|)))) (-15 -2378 ((-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549))))) (-665 |#4|) (-747))) (-15 -3459 ((-665 |#4|) (-665 |#4|) (-621 |#4|))) (-15 -2404 ((-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))) (-665 |#4|) (-621 (-400 (-923 |#1|))) (-621 (-621 |#4|)) (-747) (-747) (-549))) (-15 -1357 (|#4| |#4|)) (-15 -4232 ((-112) (-621 |#4|))) (-15 -4232 ((-112) (-621 (-923 |#1|))))) (-13 (-300) (-145)) (-13 (-823) (-594 (-1142))) (-769) (-920 |#1| |#3| |#2|)) (T -895))
+((-4232 (*1 *2 *3) (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *2 (-112)) (-5 *1 (-895 *4 *5 *6 *7)) (-4 *7 (-920 *4 *6 *5)))) (-4232 (*1 *2 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *2 (-112)) (-5 *1 (-895 *4 *5 *6 *7)))) (-1357 (*1 *2 *2) (-12 (-4 *3 (-13 (-300) (-145))) (-4 *4 (-13 (-823) (-594 (-1142)))) (-4 *5 (-769)) (-5 *1 (-895 *3 *4 *5 *2)) (-4 *2 (-920 *3 *5 *4)))) (-2404 (*1 *2 *3 *4 *5 *6 *7 *7 *8) (-12 (-5 *3 (-2 (|:| |det| *12) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549))))) (-5 *4 (-665 *12)) (-5 *5 (-621 (-400 (-923 *9)))) (-5 *6 (-621 (-621 *12))) (-5 *7 (-747)) (-5 *8 (-549)) (-4 *9 (-13 (-300) (-145))) (-4 *12 (-920 *9 *11 *10)) (-4 *10 (-13 (-823) (-594 (-1142)))) (-4 *11 (-769)) (-5 *2 (-2 (|:| |eqzro| (-621 *12)) (|:| |neqzro| (-621 *12)) (|:| |wcond| (-621 (-923 *9))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 *9)))) (|:| -2619 (-621 (-1225 (-400 (-923 *9))))))))) (-5 *1 (-895 *9 *10 *11 *12)))) (-3459 (*1 *2 *2 *3) (-12 (-5 *2 (-665 *7)) (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *1 (-895 *4 *5 *6 *7)))) (-2378 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *8)) (-5 *4 (-747)) (-4 *8 (-920 *5 *7 *6)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1142)))) (-4 *7 (-769)) (-5 *2 (-621 (-2 (|:| |det| *8) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (-5 *1 (-895 *5 *6 *7 *8)))) (-2442 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-621 *8))) (-5 *3 (-621 *8)) (-4 *8 (-920 *5 *7 *6)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1142)))) (-4 *7 (-769)) (-5 *2 (-112)) (-5 *1 (-895 *5 *6 *7 *8)))) (-1565 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *2 (-621 (-621 (-549)))) (-5 *1 (-895 *4 *5 *6 *7)) (-5 *3 (-549)) (-4 *7 (-920 *4 *6 *5)))) (-2838 (*1 *2 *2) (-12 (-5 *2 (-621 (-621 *6))) (-4 *6 (-920 *3 *5 *4)) (-4 *3 (-13 (-300) (-145))) (-4 *4 (-13 (-823) (-594 (-1142)))) (-4 *5 (-769)) (-5 *1 (-895 *3 *4 *5 *6)))) (-2846 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| -3121 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| *7) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 *7))))) (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *2 (-747)) (-5 *1 (-895 *4 *5 *6 *7)))) (-2307 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| -3121 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| *7) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 *7))))) (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *2 (-747)) (-5 *1 (-895 *4 *5 *6 *7)))) (-1671 (*1 *2 *3) (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *2 (-621 *3)) (-5 *1 (-895 *4 *5 *6 *3)) (-4 *3 (-920 *4 *6 *5)))) (-2041 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -3697 (-665 (-400 (-923 *4)))) (|:| |vec| (-621 (-400 (-923 *4)))) (|:| -3121 (-747)) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549))))) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *2 (-2 (|:| |partsol| (-1225 (-400 (-923 *4)))) (|:| -2619 (-621 (-1225 (-400 (-923 *4))))))) (-5 *1 (-895 *4 *5 *6 *7)) (-4 *7 (-920 *4 *6 *5)))) (-1445 (*1 *2 *2 *3) (-12 (-5 *2 (-2 (|:| |partsol| (-1225 (-400 (-923 *4)))) (|:| -2619 (-621 (-1225 (-400 (-923 *4))))))) (-5 *3 (-621 *7)) (-4 *4 (-13 (-300) (-145))) (-4 *7 (-920 *4 *6 *5)) (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *1 (-895 *4 *5 *6 *7)))) (-1612 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *8)) (-4 *8 (-920 *5 *7 *6)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1142)))) (-4 *7 (-769)) (-5 *2 (-621 (-2 (|:| -3121 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| *8) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 *8))))) (-5 *1 (-895 *5 *6 *7 *8)) (-5 *4 (-747)))) (-3422 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-4 *7 (-920 *4 *6 *5)) (-5 *2 (-2 (|:| |sysok| (-112)) (|:| |z0| (-621 *7)) (|:| |n0| (-621 *7)))) (-5 *1 (-895 *4 *5 *6 *7)) (-5 *3 (-621 *7)))) (-2320 (*1 *2 *3) (-12 (-5 *3 (-923 *4)) (-4 *4 (-13 (-300) (-145))) (-4 *2 (-920 *4 *6 *5)) (-5 *1 (-895 *4 *5 *6 *2)) (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)))) (-3464 (*1 *2 *3) (-12 (-5 *3 (-621 (-1142))) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *2 (-621 (-400 (-923 *4)))) (-5 *1 (-895 *4 *5 *6 *7)) (-4 *7 (-920 *4 *6 *5)))) (-1920 (*1 *2 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *2 (-621 (-400 (-923 *4)))) (-5 *1 (-895 *4 *5 *6 *7)))) (-1920 (*1 *2 *3) (-12 (-5 *3 (-665 *7)) (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *2 (-665 (-400 (-923 *4)))) (-5 *1 (-895 *4 *5 *6 *7)))) (-1920 (*1 *2 *3) (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *2 (-400 (-923 *4))) (-5 *1 (-895 *4 *5 *6 *3)) (-4 *3 (-920 *4 *6 *5)))) (-3935 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-665 *11)) (-5 *4 (-621 (-400 (-923 *8)))) (-5 *5 (-747)) (-5 *6 (-1124)) (-4 *8 (-13 (-300) (-145))) (-4 *11 (-920 *8 *10 *9)) (-4 *9 (-13 (-823) (-594 (-1142)))) (-4 *10 (-769)) (-5 *2 (-2 (|:| |rgl| (-621 (-2 (|:| |eqzro| (-621 *11)) (|:| |neqzro| (-621 *11)) (|:| |wcond| (-621 (-923 *8))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 *8)))) (|:| -2619 (-621 (-1225 (-400 (-923 *8)))))))))) (|:| |rgsz| (-549)))) (-5 *1 (-895 *8 *9 *10 *11)) (-5 *7 (-549)))) (-3496 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *2 (-621 (-2 (|:| |eqzro| (-621 *7)) (|:| |neqzro| (-621 *7)) (|:| |wcond| (-621 (-923 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 *4)))) (|:| -2619 (-621 (-1225 (-400 (-923 *4)))))))))) (-5 *1 (-895 *4 *5 *6 *7)) (-4 *7 (-920 *4 *6 *5)))) (-3320 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-2 (|:| |eqzro| (-621 *8)) (|:| |neqzro| (-621 *8)) (|:| |wcond| (-621 (-923 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 *5)))) (|:| -2619 (-621 (-1225 (-400 (-923 *5)))))))))) (-5 *4 (-1124)) (-4 *5 (-13 (-300) (-145))) (-4 *8 (-920 *5 *7 *6)) (-4 *6 (-13 (-823) (-594 (-1142)))) (-4 *7 (-769)) (-5 *2 (-549)) (-5 *1 (-895 *5 *6 *7 *8)))) (-4107 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-665 *9)) (-5 *4 (-892)) (-5 *5 (-1124)) (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145))) (-4 *7 (-13 (-823) (-594 (-1142)))) (-4 *8 (-769)) (-5 *2 (-549)) (-5 *1 (-895 *6 *7 *8 *9)))) (-4107 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-665 *10)) (-5 *4 (-621 (-1142))) (-5 *5 (-892)) (-5 *6 (-1124)) (-4 *10 (-920 *7 *9 *8)) (-4 *7 (-13 (-300) (-145))) (-4 *8 (-13 (-823) (-594 (-1142)))) (-4 *9 (-769)) (-5 *2 (-549)) (-5 *1 (-895 *7 *8 *9 *10)))) (-4107 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-665 *10)) (-5 *4 (-621 *10)) (-5 *5 (-892)) (-5 *6 (-1124)) (-4 *10 (-920 *7 *9 *8)) (-4 *7 (-13 (-300) (-145))) (-4 *8 (-13 (-823) (-594 (-1142)))) (-4 *9 (-769)) (-5 *2 (-549)) (-5 *1 (-895 *7 *8 *9 *10)))) (-4107 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *8)) (-5 *4 (-1124)) (-4 *8 (-920 *5 *7 *6)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1142)))) (-4 *7 (-769)) (-5 *2 (-549)) (-5 *1 (-895 *5 *6 *7 *8)))) (-4107 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-665 *9)) (-5 *4 (-621 (-1142))) (-5 *5 (-1124)) (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145))) (-4 *7 (-13 (-823) (-594 (-1142)))) (-4 *8 (-769)) (-5 *2 (-549)) (-5 *1 (-895 *6 *7 *8 *9)))) (-4107 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-665 *9)) (-5 *4 (-621 *9)) (-5 *5 (-1124)) (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145))) (-4 *7 (-13 (-823) (-594 (-1142)))) (-4 *8 (-769)) (-5 *2 (-549)) (-5 *1 (-895 *6 *7 *8 *9)))) (-4107 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *8)) (-5 *4 (-892)) (-4 *8 (-920 *5 *7 *6)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1142)))) (-4 *7 (-769)) (-5 *2 (-621 (-2 (|:| |eqzro| (-621 *8)) (|:| |neqzro| (-621 *8)) (|:| |wcond| (-621 (-923 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 *5)))) (|:| -2619 (-621 (-1225 (-400 (-923 *5)))))))))) (-5 *1 (-895 *5 *6 *7 *8)))) (-4107 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-665 *9)) (-5 *4 (-621 (-1142))) (-5 *5 (-892)) (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145))) (-4 *7 (-13 (-823) (-594 (-1142)))) (-4 *8 (-769)) (-5 *2 (-621 (-2 (|:| |eqzro| (-621 *9)) (|:| |neqzro| (-621 *9)) (|:| |wcond| (-621 (-923 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 *6)))) (|:| -2619 (-621 (-1225 (-400 (-923 *6)))))))))) (-5 *1 (-895 *6 *7 *8 *9)))) (-4107 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-665 *9)) (-5 *5 (-892)) (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145))) (-4 *7 (-13 (-823) (-594 (-1142)))) (-4 *8 (-769)) (-5 *2 (-621 (-2 (|:| |eqzro| (-621 *9)) (|:| |neqzro| (-621 *9)) (|:| |wcond| (-621 (-923 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 *6)))) (|:| -2619 (-621 (-1225 (-400 (-923 *6)))))))))) (-5 *1 (-895 *6 *7 *8 *9)) (-5 *4 (-621 *9)))) (-4107 (*1 *2 *3) (-12 (-5 *3 (-665 *7)) (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *2 (-621 (-2 (|:| |eqzro| (-621 *7)) (|:| |neqzro| (-621 *7)) (|:| |wcond| (-621 (-923 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 *4)))) (|:| -2619 (-621 (-1225 (-400 (-923 *4)))))))))) (-5 *1 (-895 *4 *5 *6 *7)))) (-4107 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *8)) (-5 *4 (-621 (-1142))) (-4 *8 (-920 *5 *7 *6)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1142)))) (-4 *7 (-769)) (-5 *2 (-621 (-2 (|:| |eqzro| (-621 *8)) (|:| |neqzro| (-621 *8)) (|:| |wcond| (-621 (-923 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 *5)))) (|:| -2619 (-621 (-1225 (-400 (-923 *5)))))))))) (-5 *1 (-895 *5 *6 *7 *8)))) (-4107 (*1 *2 *3 *4) (-12 (-5 *3 (-665 *8)) (-4 *8 (-920 *5 *7 *6)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1142)))) (-4 *7 (-769)) (-5 *2 (-621 (-2 (|:| |eqzro| (-621 *8)) (|:| |neqzro| (-621 *8)) (|:| |wcond| (-621 (-923 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 *5)))) (|:| -2619 (-621 (-1225 (-400 (-923 *5)))))))))) (-5 *1 (-895 *5 *6 *7 *8)) (-5 *4 (-621 *8)))))
+(-10 -7 (-15 -4107 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 |#4|))) (-15 -4107 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 (-1142)))) (-15 -4107 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|))) (-15 -4107 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 |#4|) (-892))) (-15 -4107 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|) (-621 (-1142)) (-892))) (-15 -4107 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-665 |#4|) (-892))) (-15 -4107 ((-549) (-665 |#4|) (-621 |#4|) (-1124))) (-15 -4107 ((-549) (-665 |#4|) (-621 (-1142)) (-1124))) (-15 -4107 ((-549) (-665 |#4|) (-1124))) (-15 -4107 ((-549) (-665 |#4|) (-621 |#4|) (-892) (-1124))) (-15 -4107 ((-549) (-665 |#4|) (-621 (-1142)) (-892) (-1124))) (-15 -4107 ((-549) (-665 |#4|) (-892) (-1124))) (-15 -3320 ((-549) (-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-1124))) (-15 -3496 ((-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|))))))))) (-1124))) (-15 -3935 ((-2 (|:| |rgl| (-621 (-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|)))))))))) (|:| |rgsz| (-549))) (-665 |#4|) (-621 (-400 (-923 |#1|))) (-747) (-1124) (-549))) (-15 -1920 ((-400 (-923 |#1|)) |#4|)) (-15 -1920 ((-665 (-400 (-923 |#1|))) (-665 |#4|))) (-15 -1920 ((-621 (-400 (-923 |#1|))) (-621 |#4|))) (-15 -3464 ((-621 (-400 (-923 |#1|))) (-621 (-1142)))) (-15 -2320 (|#4| (-923 |#1|))) (-15 -3422 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-621 |#4|)) (|:| |n0| (-621 |#4|))) (-621 |#4|) (-621 |#4|))) (-15 -1612 ((-621 (-2 (|:| -3121 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|)))) (-665 |#4|) (-747))) (-15 -1445 ((-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|)))))) (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|)))))) (-621 |#4|))) (-15 -2041 ((-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|)))))) (-2 (|:| -3697 (-665 (-400 (-923 |#1|)))) (|:| |vec| (-621 (-400 (-923 |#1|)))) (|:| -3121 (-747)) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (-15 -1671 ((-621 |#4|) |#4|)) (-15 -2307 ((-747) (-621 (-2 (|:| -3121 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|)))))) (-15 -2846 ((-747) (-621 (-2 (|:| -3121 (-747)) (|:| |eqns| (-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))) (|:| |fgb| (-621 |#4|)))))) (-15 -2838 ((-621 (-621 |#4|)) (-621 (-621 |#4|)))) (-15 -1565 ((-621 (-621 (-549))) (-549) (-549))) (-15 -2442 ((-112) (-621 |#4|) (-621 (-621 |#4|)))) (-15 -2378 ((-621 (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549))))) (-665 |#4|) (-747))) (-15 -3459 ((-665 |#4|) (-665 |#4|) (-621 |#4|))) (-15 -2404 ((-2 (|:| |eqzro| (-621 |#4|)) (|:| |neqzro| (-621 |#4|)) (|:| |wcond| (-621 (-923 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1225 (-400 (-923 |#1|)))) (|:| -2619 (-621 (-1225 (-400 (-923 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))) (-665 |#4|) (-621 (-400 (-923 |#1|))) (-621 (-621 |#4|)) (-747) (-747) (-549))) (-15 -1357 (|#4| |#4|)) (-15 -4232 ((-112) (-621 |#4|))) (-15 -4232 ((-112) (-621 (-923 |#1|)))))
+((-3482 (((-898) |#1| (-1142)) 17) (((-898) |#1| (-1142) (-1060 (-219))) 21)) (-4079 (((-898) |#1| |#1| (-1142) (-1060 (-219))) 19) (((-898) |#1| (-1142) (-1060 (-219))) 15)))
+(((-896 |#1|) (-10 -7 (-15 -4079 ((-898) |#1| (-1142) (-1060 (-219)))) (-15 -4079 ((-898) |#1| |#1| (-1142) (-1060 (-219)))) (-15 -3482 ((-898) |#1| (-1142) (-1060 (-219)))) (-15 -3482 ((-898) |#1| (-1142)))) (-594 (-525))) (T -896))
+((-3482 (*1 *2 *3 *4) (-12 (-5 *4 (-1142)) (-5 *2 (-898)) (-5 *1 (-896 *3)) (-4 *3 (-594 (-525))))) (-3482 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1142)) (-5 *5 (-1060 (-219))) (-5 *2 (-898)) (-5 *1 (-896 *3)) (-4 *3 (-594 (-525))))) (-4079 (*1 *2 *3 *3 *4 *5) (-12 (-5 *4 (-1142)) (-5 *5 (-1060 (-219))) (-5 *2 (-898)) (-5 *1 (-896 *3)) (-4 *3 (-594 (-525))))) (-4079 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1142)) (-5 *5 (-1060 (-219))) (-5 *2 (-898)) (-5 *1 (-896 *3)) (-4 *3 (-594 (-525))))))
+(-10 -7 (-15 -4079 ((-898) |#1| (-1142) (-1060 (-219)))) (-15 -4079 ((-898) |#1| |#1| (-1142) (-1060 (-219)))) (-15 -3482 ((-898) |#1| (-1142) (-1060 (-219)))) (-15 -3482 ((-898) |#1| (-1142))))
+((-1977 (($ $ (-1060 (-219)) (-1060 (-219)) (-1060 (-219))) 70)) (-1854 (((-1060 (-219)) $) 40)) (-1841 (((-1060 (-219)) $) 39)) (-1830 (((-1060 (-219)) $) 38)) (-2272 (((-621 (-621 (-219))) $) 43)) (-2606 (((-1060 (-219)) $) 41)) (-1668 (((-549) (-549)) 32)) (-3306 (((-549) (-549)) 28)) (-2624 (((-549) (-549)) 30)) (-2911 (((-112) (-112)) 35)) (-3725 (((-549)) 31)) (-3033 (($ $ (-1060 (-219))) 73) (($ $) 74)) (-2995 (($ (-1 (-914 (-219)) (-219)) (-1060 (-219))) 78) (($ (-1 (-914 (-219)) (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219))) 79)) (-4079 (($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1060 (-219))) 81) (($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219))) 82) (($ $ (-1060 (-219))) 76)) (-3635 (((-549)) 36)) (-2715 (((-549)) 27)) (-2589 (((-549)) 29)) (-2355 (((-621 (-621 (-914 (-219)))) $) 95)) (-2869 (((-112) (-112)) 37)) (-3845 (((-834) $) 94)) (-1786 (((-112)) 34)))
+(((-897) (-13 (-945) (-10 -8 (-15 -2995 ($ (-1 (-914 (-219)) (-219)) (-1060 (-219)))) (-15 -2995 ($ (-1 (-914 (-219)) (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219)))) (-15 -4079 ($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1060 (-219)))) (-15 -4079 ($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219)))) (-15 -4079 ($ $ (-1060 (-219)))) (-15 -1977 ($ $ (-1060 (-219)) (-1060 (-219)) (-1060 (-219)))) (-15 -3033 ($ $ (-1060 (-219)))) (-15 -3033 ($ $)) (-15 -2606 ((-1060 (-219)) $)) (-15 -2272 ((-621 (-621 (-219))) $)) (-15 -2715 ((-549))) (-15 -3306 ((-549) (-549))) (-15 -2589 ((-549))) (-15 -2624 ((-549) (-549))) (-15 -3725 ((-549))) (-15 -1668 ((-549) (-549))) (-15 -1786 ((-112))) (-15 -2911 ((-112) (-112))) (-15 -3635 ((-549))) (-15 -2869 ((-112) (-112)))))) (T -897))
+((-2995 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-914 (-219)) (-219))) (-5 *3 (-1060 (-219))) (-5 *1 (-897)))) (-2995 (*1 *1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-914 (-219)) (-219))) (-5 *3 (-1060 (-219))) (-5 *1 (-897)))) (-4079 (*1 *1 *2 *2 *2 *2 *3) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1060 (-219))) (-5 *1 (-897)))) (-4079 (*1 *1 *2 *2 *2 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1060 (-219))) (-5 *1 (-897)))) (-4079 (*1 *1 *1 *2) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-897)))) (-1977 (*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-897)))) (-3033 (*1 *1 *1 *2) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-897)))) (-3033 (*1 *1 *1) (-5 *1 (-897))) (-2606 (*1 *2 *1) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-897)))) (-2272 (*1 *2 *1) (-12 (-5 *2 (-621 (-621 (-219)))) (-5 *1 (-897)))) (-2715 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))) (-3306 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))) (-2589 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))) (-2624 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))) (-3725 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))) (-1668 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))) (-1786 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-897)))) (-2911 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-897)))) (-3635 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))) (-2869 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-897)))))
+(-13 (-945) (-10 -8 (-15 -2995 ($ (-1 (-914 (-219)) (-219)) (-1060 (-219)))) (-15 -2995 ($ (-1 (-914 (-219)) (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219)))) (-15 -4079 ($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1060 (-219)))) (-15 -4079 ($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1 (-219) (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219)))) (-15 -4079 ($ $ (-1060 (-219)))) (-15 -1977 ($ $ (-1060 (-219)) (-1060 (-219)) (-1060 (-219)))) (-15 -3033 ($ $ (-1060 (-219)))) (-15 -3033 ($ $)) (-15 -2606 ((-1060 (-219)) $)) (-15 -2272 ((-621 (-621 (-219))) $)) (-15 -2715 ((-549))) (-15 -3306 ((-549) (-549))) (-15 -2589 ((-549))) (-15 -2624 ((-549) (-549))) (-15 -3725 ((-549))) (-15 -1668 ((-549) (-549))) (-15 -1786 ((-112))) (-15 -2911 ((-112) (-112))) (-15 -3635 ((-549))) (-15 -2869 ((-112) (-112)))))
+((-1977 (($ $ (-1060 (-219))) 70) (($ $ (-1060 (-219)) (-1060 (-219))) 71)) (-1841 (((-1060 (-219)) $) 44)) (-1830 (((-1060 (-219)) $) 43)) (-2606 (((-1060 (-219)) $) 45)) (-2979 (((-549) (-549)) 37)) (-1301 (((-549) (-549)) 33)) (-3145 (((-549) (-549)) 35)) (-3617 (((-112) (-112)) 39)) (-3797 (((-549)) 36)) (-3033 (($ $ (-1060 (-219))) 74) (($ $) 75)) (-2995 (($ (-1 (-914 (-219)) (-219)) (-1060 (-219))) 84) (($ (-1 (-914 (-219)) (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219))) 85)) (-3482 (($ (-1 (-219) (-219)) (-1060 (-219))) 92) (($ (-1 (-219) (-219))) 95)) (-4079 (($ (-1 (-219) (-219)) (-1060 (-219))) 79) (($ (-1 (-219) (-219)) (-1060 (-219)) (-1060 (-219))) 80) (($ (-621 (-1 (-219) (-219))) (-1060 (-219))) 87) (($ (-621 (-1 (-219) (-219))) (-1060 (-219)) (-1060 (-219))) 88) (($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1060 (-219))) 81) (($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219))) 82) (($ $ (-1060 (-219))) 76)) (-2969 (((-112) $) 40)) (-3231 (((-549)) 41)) (-3488 (((-549)) 32)) (-3317 (((-549)) 34)) (-2355 (((-621 (-621 (-914 (-219)))) $) 23)) (-1688 (((-112) (-112)) 42)) (-3845 (((-834) $) 106)) (-2668 (((-112)) 38)))
+(((-898) (-13 (-926) (-10 -8 (-15 -4079 ($ (-1 (-219) (-219)) (-1060 (-219)))) (-15 -4079 ($ (-1 (-219) (-219)) (-1060 (-219)) (-1060 (-219)))) (-15 -4079 ($ (-621 (-1 (-219) (-219))) (-1060 (-219)))) (-15 -4079 ($ (-621 (-1 (-219) (-219))) (-1060 (-219)) (-1060 (-219)))) (-15 -4079 ($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1060 (-219)))) (-15 -4079 ($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219)))) (-15 -2995 ($ (-1 (-914 (-219)) (-219)) (-1060 (-219)))) (-15 -2995 ($ (-1 (-914 (-219)) (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219)))) (-15 -3482 ($ (-1 (-219) (-219)) (-1060 (-219)))) (-15 -3482 ($ (-1 (-219) (-219)))) (-15 -4079 ($ $ (-1060 (-219)))) (-15 -2969 ((-112) $)) (-15 -1977 ($ $ (-1060 (-219)))) (-15 -1977 ($ $ (-1060 (-219)) (-1060 (-219)))) (-15 -3033 ($ $ (-1060 (-219)))) (-15 -3033 ($ $)) (-15 -2606 ((-1060 (-219)) $)) (-15 -3488 ((-549))) (-15 -1301 ((-549) (-549))) (-15 -3317 ((-549))) (-15 -3145 ((-549) (-549))) (-15 -3797 ((-549))) (-15 -2979 ((-549) (-549))) (-15 -2668 ((-112))) (-15 -3617 ((-112) (-112))) (-15 -3231 ((-549))) (-15 -1688 ((-112) (-112)))))) (T -898))
+((-4079 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1060 (-219))) (-5 *1 (-898)))) (-4079 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1060 (-219))) (-5 *1 (-898)))) (-4079 (*1 *1 *2 *3) (-12 (-5 *2 (-621 (-1 (-219) (-219)))) (-5 *3 (-1060 (-219))) (-5 *1 (-898)))) (-4079 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-621 (-1 (-219) (-219)))) (-5 *3 (-1060 (-219))) (-5 *1 (-898)))) (-4079 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1060 (-219))) (-5 *1 (-898)))) (-4079 (*1 *1 *2 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1060 (-219))) (-5 *1 (-898)))) (-2995 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-914 (-219)) (-219))) (-5 *3 (-1060 (-219))) (-5 *1 (-898)))) (-2995 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-914 (-219)) (-219))) (-5 *3 (-1060 (-219))) (-5 *1 (-898)))) (-3482 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1060 (-219))) (-5 *1 (-898)))) (-3482 (*1 *1 *2) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *1 (-898)))) (-4079 (*1 *1 *1 *2) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-898)))) (-2969 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-898)))) (-1977 (*1 *1 *1 *2) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-898)))) (-1977 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-898)))) (-3033 (*1 *1 *1 *2) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-898)))) (-3033 (*1 *1 *1) (-5 *1 (-898))) (-2606 (*1 *2 *1) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-898)))) (-3488 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))) (-1301 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))) (-3317 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))) (-3145 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))) (-3797 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))) (-2979 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))) (-2668 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-898)))) (-3617 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-898)))) (-3231 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))) (-1688 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-898)))))
+(-13 (-926) (-10 -8 (-15 -4079 ($ (-1 (-219) (-219)) (-1060 (-219)))) (-15 -4079 ($ (-1 (-219) (-219)) (-1060 (-219)) (-1060 (-219)))) (-15 -4079 ($ (-621 (-1 (-219) (-219))) (-1060 (-219)))) (-15 -4079 ($ (-621 (-1 (-219) (-219))) (-1060 (-219)) (-1060 (-219)))) (-15 -4079 ($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1060 (-219)))) (-15 -4079 ($ (-1 (-219) (-219)) (-1 (-219) (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219)))) (-15 -2995 ($ (-1 (-914 (-219)) (-219)) (-1060 (-219)))) (-15 -2995 ($ (-1 (-914 (-219)) (-219)) (-1060 (-219)) (-1060 (-219)) (-1060 (-219)))) (-15 -3482 ($ (-1 (-219) (-219)) (-1060 (-219)))) (-15 -3482 ($ (-1 (-219) (-219)))) (-15 -4079 ($ $ (-1060 (-219)))) (-15 -2969 ((-112) $)) (-15 -1977 ($ $ (-1060 (-219)))) (-15 -1977 ($ $ (-1060 (-219)) (-1060 (-219)))) (-15 -3033 ($ $ (-1060 (-219)))) (-15 -3033 ($ $)) (-15 -2606 ((-1060 (-219)) $)) (-15 -3488 ((-549))) (-15 -1301 ((-549) (-549))) (-15 -3317 ((-549))) (-15 -3145 ((-549) (-549))) (-15 -3797 ((-549))) (-15 -2979 ((-549) (-549))) (-15 -2668 ((-112))) (-15 -3617 ((-112) (-112))) (-15 -3231 ((-549))) (-15 -1688 ((-112) (-112)))))
+((-2853 (((-621 (-1060 (-219))) (-621 (-621 (-914 (-219))))) 24)))
+(((-899) (-10 -7 (-15 -2853 ((-621 (-1060 (-219))) (-621 (-621 (-914 (-219)))))))) (T -899))
+((-2853 (*1 *2 *3) (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *2 (-621 (-1060 (-219)))) (-5 *1 (-899)))))
+(-10 -7 (-15 -2853 ((-621 (-1060 (-219))) (-621 (-621 (-914 (-219)))))))
+((-2413 ((|#2| |#2|) 26)) (-1776 ((|#2| |#2|) 27)) (-2587 ((|#2| |#2|) 25)) (-3051 ((|#2| |#2| (-1124)) 24)))
+(((-900 |#1| |#2|) (-10 -7 (-15 -3051 (|#2| |#2| (-1124))) (-15 -2587 (|#2| |#2|)) (-15 -2413 (|#2| |#2|)) (-15 -1776 (|#2| |#2|))) (-823) (-423 |#1|)) (T -900))
+((-1776 (*1 *2 *2) (-12 (-4 *3 (-823)) (-5 *1 (-900 *3 *2)) (-4 *2 (-423 *3)))) (-2413 (*1 *2 *2) (-12 (-4 *3 (-823)) (-5 *1 (-900 *3 *2)) (-4 *2 (-423 *3)))) (-2587 (*1 *2 *2) (-12 (-4 *3 (-823)) (-5 *1 (-900 *3 *2)) (-4 *2 (-423 *3)))) (-3051 (*1 *2 *2 *3) (-12 (-5 *3 (-1124)) (-4 *4 (-823)) (-5 *1 (-900 *4 *2)) (-4 *2 (-423 *4)))))
+(-10 -7 (-15 -3051 (|#2| |#2| (-1124))) (-15 -2587 (|#2| |#2|)) (-15 -2413 (|#2| |#2|)) (-15 -1776 (|#2| |#2|)))
+((-2413 (((-309 (-549)) (-1142)) 16)) (-1776 (((-309 (-549)) (-1142)) 14)) (-2587 (((-309 (-549)) (-1142)) 12)) (-3051 (((-309 (-549)) (-1142) (-1124)) 19)))
+(((-901) (-10 -7 (-15 -3051 ((-309 (-549)) (-1142) (-1124))) (-15 -2587 ((-309 (-549)) (-1142))) (-15 -2413 ((-309 (-549)) (-1142))) (-15 -1776 ((-309 (-549)) (-1142))))) (T -901))
+((-1776 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-309 (-549))) (-5 *1 (-901)))) (-2413 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-309 (-549))) (-5 *1 (-901)))) (-2587 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-309 (-549))) (-5 *1 (-901)))) (-3051 (*1 *2 *3 *4) (-12 (-5 *3 (-1142)) (-5 *4 (-1124)) (-5 *2 (-309 (-549))) (-5 *1 (-901)))))
+(-10 -7 (-15 -3051 ((-309 (-549)) (-1142) (-1124))) (-15 -2587 ((-309 (-549)) (-1142))) (-15 -2413 ((-309 (-549)) (-1142))) (-15 -1776 ((-309 (-549)) (-1142))))
+((-3849 (((-860 |#1| |#3|) |#2| (-863 |#1|) (-860 |#1| |#3|)) 25)) (-2252 (((-1 (-112) |#2|) (-1 (-112) |#3|)) 13)))
+(((-902 |#1| |#2| |#3|) (-10 -7 (-15 -2252 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -3849 ((-860 |#1| |#3|) |#2| (-863 |#1|) (-860 |#1| |#3|)))) (-1066) (-857 |#1|) (-13 (-1066) (-1009 |#2|))) (T -902))
+((-3849 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-860 *5 *6)) (-5 *4 (-863 *5)) (-4 *5 (-1066)) (-4 *6 (-13 (-1066) (-1009 *3))) (-4 *3 (-857 *5)) (-5 *1 (-902 *5 *3 *6)))) (-2252 (*1 *2 *3) (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1066) (-1009 *5))) (-4 *5 (-857 *4)) (-4 *4 (-1066)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-902 *4 *5 *6)))))
+(-10 -7 (-15 -2252 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -3849 ((-860 |#1| |#3|) |#2| (-863 |#1|) (-860 |#1| |#3|))))
+((-3849 (((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|)) 30)))
+(((-903 |#1| |#2| |#3|) (-10 -7 (-15 -3849 ((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|)))) (-1066) (-13 (-541) (-823) (-857 |#1|)) (-13 (-423 |#2|) (-594 (-863 |#1|)) (-857 |#1|) (-1009 (-592 $)))) (T -903))
+((-3849 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-860 *5 *3)) (-4 *5 (-1066)) (-4 *3 (-13 (-423 *6) (-594 *4) (-857 *5) (-1009 (-592 $)))) (-5 *4 (-863 *5)) (-4 *6 (-13 (-541) (-823) (-857 *5))) (-5 *1 (-903 *5 *6 *3)))))
+(-10 -7 (-15 -3849 ((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|))))
+((-3849 (((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|)) 13)))
+(((-904 |#1|) (-10 -7 (-15 -3849 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|)))) (-534)) (T -904))
+((-3849 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-860 (-549) *3)) (-5 *4 (-863 (-549))) (-4 *3 (-534)) (-5 *1 (-904 *3)))))
+(-10 -7 (-15 -3849 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))))
+((-3849 (((-860 |#1| |#2|) (-592 |#2|) (-863 |#1|) (-860 |#1| |#2|)) 54)))
+(((-905 |#1| |#2|) (-10 -7 (-15 -3849 ((-860 |#1| |#2|) (-592 |#2|) (-863 |#1|) (-860 |#1| |#2|)))) (-1066) (-13 (-823) (-1009 (-592 $)) (-594 (-863 |#1|)) (-857 |#1|))) (T -905))
+((-3849 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-860 *5 *6)) (-5 *3 (-592 *6)) (-4 *5 (-1066)) (-4 *6 (-13 (-823) (-1009 (-592 $)) (-594 *4) (-857 *5))) (-5 *4 (-863 *5)) (-5 *1 (-905 *5 *6)))))
+(-10 -7 (-15 -3849 ((-860 |#1| |#2|) (-592 |#2|) (-863 |#1|) (-860 |#1| |#2|))))
+((-3849 (((-856 |#1| |#2| |#3|) |#3| (-863 |#1|) (-856 |#1| |#2| |#3|)) 15)))
+(((-906 |#1| |#2| |#3|) (-10 -7 (-15 -3849 ((-856 |#1| |#2| |#3|) |#3| (-863 |#1|) (-856 |#1| |#2| |#3|)))) (-1066) (-857 |#1|) (-642 |#2|)) (T -906))
+((-3849 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-856 *5 *6 *3)) (-5 *4 (-863 *5)) (-4 *5 (-1066)) (-4 *6 (-857 *5)) (-4 *3 (-642 *6)) (-5 *1 (-906 *5 *6 *3)))))
+(-10 -7 (-15 -3849 ((-856 |#1| |#2| |#3|) |#3| (-863 |#1|) (-856 |#1| |#2| |#3|))))
+((-3849 (((-860 |#1| |#5|) |#5| (-863 |#1|) (-860 |#1| |#5|)) 17 (|has| |#3| (-857 |#1|))) (((-860 |#1| |#5|) |#5| (-863 |#1|) (-860 |#1| |#5|) (-1 (-860 |#1| |#5|) |#3| (-863 |#1|) (-860 |#1| |#5|))) 16)))
+(((-907 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3849 ((-860 |#1| |#5|) |#5| (-863 |#1|) (-860 |#1| |#5|) (-1 (-860 |#1| |#5|) |#3| (-863 |#1|) (-860 |#1| |#5|)))) (IF (|has| |#3| (-857 |#1|)) (-15 -3849 ((-860 |#1| |#5|) |#5| (-863 |#1|) (-860 |#1| |#5|))) |%noBranch|)) (-1066) (-769) (-823) (-13 (-1018) (-823) (-857 |#1|)) (-13 (-920 |#4| |#2| |#3|) (-594 (-863 |#1|)))) (T -907))
+((-3849 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-860 *5 *3)) (-4 *5 (-1066)) (-4 *3 (-13 (-920 *8 *6 *7) (-594 *4))) (-5 *4 (-863 *5)) (-4 *7 (-857 *5)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-13 (-1018) (-823) (-857 *5))) (-5 *1 (-907 *5 *6 *7 *8 *3)))) (-3849 (*1 *2 *3 *4 *2 *5) (-12 (-5 *5 (-1 (-860 *6 *3) *8 (-863 *6) (-860 *6 *3))) (-4 *8 (-823)) (-5 *2 (-860 *6 *3)) (-5 *4 (-863 *6)) (-4 *6 (-1066)) (-4 *3 (-13 (-920 *9 *7 *8) (-594 *4))) (-4 *7 (-769)) (-4 *9 (-13 (-1018) (-823) (-857 *6))) (-5 *1 (-907 *6 *7 *8 *9 *3)))))
+(-10 -7 (-15 -3849 ((-860 |#1| |#5|) |#5| (-863 |#1|) (-860 |#1| |#5|) (-1 (-860 |#1| |#5|) |#3| (-863 |#1|) (-860 |#1| |#5|)))) (IF (|has| |#3| (-857 |#1|)) (-15 -3849 ((-860 |#1| |#5|) |#5| (-863 |#1|) (-860 |#1| |#5|))) |%noBranch|))
+((-1861 ((|#2| |#2| (-621 (-1 (-112) |#3|))) 12) ((|#2| |#2| (-1 (-112) |#3|)) 13)))
+(((-908 |#1| |#2| |#3|) (-10 -7 (-15 -1861 (|#2| |#2| (-1 (-112) |#3|))) (-15 -1861 (|#2| |#2| (-621 (-1 (-112) |#3|))))) (-823) (-423 |#1|) (-1179)) (T -908))
+((-1861 (*1 *2 *2 *3) (-12 (-5 *3 (-621 (-1 (-112) *5))) (-4 *5 (-1179)) (-4 *4 (-823)) (-5 *1 (-908 *4 *2 *5)) (-4 *2 (-423 *4)))) (-1861 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *5)) (-4 *5 (-1179)) (-4 *4 (-823)) (-5 *1 (-908 *4 *2 *5)) (-4 *2 (-423 *4)))))
+(-10 -7 (-15 -1861 (|#2| |#2| (-1 (-112) |#3|))) (-15 -1861 (|#2| |#2| (-621 (-1 (-112) |#3|)))))
+((-1861 (((-309 (-549)) (-1142) (-621 (-1 (-112) |#1|))) 18) (((-309 (-549)) (-1142) (-1 (-112) |#1|)) 15)))
+(((-909 |#1|) (-10 -7 (-15 -1861 ((-309 (-549)) (-1142) (-1 (-112) |#1|))) (-15 -1861 ((-309 (-549)) (-1142) (-621 (-1 (-112) |#1|))))) (-1179)) (T -909))
+((-1861 (*1 *2 *3 *4) (-12 (-5 *3 (-1142)) (-5 *4 (-621 (-1 (-112) *5))) (-4 *5 (-1179)) (-5 *2 (-309 (-549))) (-5 *1 (-909 *5)))) (-1861 (*1 *2 *3 *4) (-12 (-5 *3 (-1142)) (-5 *4 (-1 (-112) *5)) (-4 *5 (-1179)) (-5 *2 (-309 (-549))) (-5 *1 (-909 *5)))))
+(-10 -7 (-15 -1861 ((-309 (-549)) (-1142) (-1 (-112) |#1|))) (-15 -1861 ((-309 (-549)) (-1142) (-621 (-1 (-112) |#1|)))))
+((-3849 (((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|)) 25)))
+(((-910 |#1| |#2| |#3|) (-10 -7 (-15 -3849 ((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|)))) (-1066) (-13 (-541) (-857 |#1|) (-594 (-863 |#1|))) (-963 |#2|)) (T -910))
+((-3849 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-860 *5 *3)) (-4 *5 (-1066)) (-4 *3 (-963 *6)) (-4 *6 (-13 (-541) (-857 *5) (-594 *4))) (-5 *4 (-863 *5)) (-5 *1 (-910 *5 *6 *3)))))
+(-10 -7 (-15 -3849 ((-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|))))
+((-3849 (((-860 |#1| (-1142)) (-1142) (-863 |#1|) (-860 |#1| (-1142))) 17)))
+(((-911 |#1|) (-10 -7 (-15 -3849 ((-860 |#1| (-1142)) (-1142) (-863 |#1|) (-860 |#1| (-1142))))) (-1066)) (T -911))
+((-3849 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-860 *5 (-1142))) (-5 *3 (-1142)) (-5 *4 (-863 *5)) (-4 *5 (-1066)) (-5 *1 (-911 *5)))))
+(-10 -7 (-15 -3849 ((-860 |#1| (-1142)) (-1142) (-863 |#1|) (-860 |#1| (-1142)))))
+((-2555 (((-860 |#1| |#3|) (-621 |#3|) (-621 (-863 |#1|)) (-860 |#1| |#3|) (-1 (-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|))) 33)) (-3849 (((-860 |#1| |#3|) (-621 |#3|) (-621 (-863 |#1|)) (-1 |#3| (-621 |#3|)) (-860 |#1| |#3|) (-1 (-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|))) 32)))
+(((-912 |#1| |#2| |#3|) (-10 -7 (-15 -3849 ((-860 |#1| |#3|) (-621 |#3|) (-621 (-863 |#1|)) (-1 |#3| (-621 |#3|)) (-860 |#1| |#3|) (-1 (-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|)))) (-15 -2555 ((-860 |#1| |#3|) (-621 |#3|) (-621 (-863 |#1|)) (-860 |#1| |#3|) (-1 (-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|))))) (-1066) (-13 (-1018) (-823)) (-13 (-1018) (-594 (-863 |#1|)) (-1009 |#2|))) (T -912))
+((-2555 (*1 *2 *3 *4 *2 *5) (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 (-863 *6))) (-5 *5 (-1 (-860 *6 *8) *8 (-863 *6) (-860 *6 *8))) (-4 *6 (-1066)) (-4 *8 (-13 (-1018) (-594 (-863 *6)) (-1009 *7))) (-5 *2 (-860 *6 *8)) (-4 *7 (-13 (-1018) (-823))) (-5 *1 (-912 *6 *7 *8)))) (-3849 (*1 *2 *3 *4 *5 *2 *6) (-12 (-5 *4 (-621 (-863 *7))) (-5 *5 (-1 *9 (-621 *9))) (-5 *6 (-1 (-860 *7 *9) *9 (-863 *7) (-860 *7 *9))) (-4 *7 (-1066)) (-4 *9 (-13 (-1018) (-594 (-863 *7)) (-1009 *8))) (-5 *2 (-860 *7 *9)) (-5 *3 (-621 *9)) (-4 *8 (-13 (-1018) (-823))) (-5 *1 (-912 *7 *8 *9)))))
+(-10 -7 (-15 -3849 ((-860 |#1| |#3|) (-621 |#3|) (-621 (-863 |#1|)) (-1 |#3| (-621 |#3|)) (-860 |#1| |#3|) (-1 (-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|)))) (-15 -2555 ((-860 |#1| |#3|) (-621 |#3|) (-621 (-863 |#1|)) (-860 |#1| |#3|) (-1 (-860 |#1| |#3|) |#3| (-863 |#1|) (-860 |#1| |#3|)))))
+((-2408 (((-1138 (-400 (-549))) (-549)) 63)) (-3544 (((-1138 (-549)) (-549)) 66)) (-1683 (((-1138 (-549)) (-549)) 60)) (-1972 (((-549) (-1138 (-549))) 55)) (-2395 (((-1138 (-400 (-549))) (-549)) 49)) (-3895 (((-1138 (-549)) (-549)) 38)) (-3983 (((-1138 (-549)) (-549)) 68)) (-3092 (((-1138 (-549)) (-549)) 67)) (-3404 (((-1138 (-400 (-549))) (-549)) 51)))
+(((-913) (-10 -7 (-15 -3404 ((-1138 (-400 (-549))) (-549))) (-15 -3092 ((-1138 (-549)) (-549))) (-15 -3983 ((-1138 (-549)) (-549))) (-15 -3895 ((-1138 (-549)) (-549))) (-15 -2395 ((-1138 (-400 (-549))) (-549))) (-15 -1972 ((-549) (-1138 (-549)))) (-15 -1683 ((-1138 (-549)) (-549))) (-15 -3544 ((-1138 (-549)) (-549))) (-15 -2408 ((-1138 (-400 (-549))) (-549))))) (T -913))
+((-2408 (*1 *2 *3) (-12 (-5 *2 (-1138 (-400 (-549)))) (-5 *1 (-913)) (-5 *3 (-549)))) (-3544 (*1 *2 *3) (-12 (-5 *2 (-1138 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))) (-1683 (*1 *2 *3) (-12 (-5 *2 (-1138 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))) (-1972 (*1 *2 *3) (-12 (-5 *3 (-1138 (-549))) (-5 *2 (-549)) (-5 *1 (-913)))) (-2395 (*1 *2 *3) (-12 (-5 *2 (-1138 (-400 (-549)))) (-5 *1 (-913)) (-5 *3 (-549)))) (-3895 (*1 *2 *3) (-12 (-5 *2 (-1138 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))) (-3983 (*1 *2 *3) (-12 (-5 *2 (-1138 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))) (-3092 (*1 *2 *3) (-12 (-5 *2 (-1138 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))) (-3404 (*1 *2 *3) (-12 (-5 *2 (-1138 (-400 (-549)))) (-5 *1 (-913)) (-5 *3 (-549)))))
+(-10 -7 (-15 -3404 ((-1138 (-400 (-549))) (-549))) (-15 -3092 ((-1138 (-549)) (-549))) (-15 -3983 ((-1138 (-549)) (-549))) (-15 -3895 ((-1138 (-549)) (-549))) (-15 -2395 ((-1138 (-400 (-549))) (-549))) (-15 -1972 ((-549) (-1138 (-549)))) (-15 -1683 ((-1138 (-549)) (-549))) (-15 -3544 ((-1138 (-549)) (-549))) (-15 -2408 ((-1138 (-400 (-549))) (-549))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3768 (($ (-747)) NIL (|has| |#1| (-23)))) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-2239 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-823)))) (-2015 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4337))) (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-823))))) (-3191 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-823)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 ((|#1| $ (-549) |#1|) 11 (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) NIL (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-2918 (($ $) NIL (|has| $ (-6 -4337)))) (-3062 (($ $) NIL)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4336)))) (-1875 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) NIL)) (-2881 (((-549) (-1 (-112) |#1|) $) NIL) (((-549) |#1| $) NIL (|has| |#1| (-1066))) (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1066)))) (-2796 (($ (-621 |#1|)) 13)) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-4049 (((-665 |#1|) $ $) NIL (|has| |#1| (-1018)))) (-3743 (($ (-747) |#1|) 8)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) 10 (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3050 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-823)))) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3144 ((|#1| $) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1018))))) (-3942 (((-112) $ (-747)) NIL)) (-4210 ((|#1| $) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1018))))) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-2613 (($ |#1| $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3645 ((|#1| $) NIL (|has| (-549) (-823)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1943 (($ $ |#1|) NIL (|has| $ (-6 -4337)))) (-3796 (($ $ (-621 |#1|)) 26)) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#1| $ (-549) |#1|) NIL) ((|#1| $ (-549)) 20) (($ $ (-1192 (-549))) NIL)) (-1283 ((|#1| $ $) NIL (|has| |#1| (-1018)))) (-2260 (((-892) $) 16)) (-2162 (($ $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-1918 (($ $ $) 24)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2049 (($ $ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| |#1| (-594 (-525)))) (($ (-621 |#1|)) 17)) (-3853 (($ (-621 |#1|)) NIL)) (-1950 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) 25) (($ (-621 $)) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2498 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-2484 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-549) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-703))) (($ $ |#1|) NIL (|has| |#1| (-703)))) (-3774 (((-747) $) 14 (|has| $ (-6 -4336)))))
(((-914 |#1|) (-951 |#1|) (-1018)) (T -914))
NIL
(-951 |#1|)
-((-1838 (((-473 |#1| |#2|) (-923 |#2|)) 20)) (-3119 (((-241 |#1| |#2|) (-923 |#2|)) 33)) (-2917 (((-923 |#2|) (-473 |#1| |#2|)) 25)) (-2504 (((-241 |#1| |#2|) (-473 |#1| |#2|)) 55)) (-2161 (((-923 |#2|) (-241 |#1| |#2|)) 30)) (-1339 (((-473 |#1| |#2|) (-241 |#1| |#2|)) 46)))
-(((-915 |#1| |#2|) (-10 -7 (-15 -1339 ((-473 |#1| |#2|) (-241 |#1| |#2|))) (-15 -2504 ((-241 |#1| |#2|) (-473 |#1| |#2|))) (-15 -1838 ((-473 |#1| |#2|) (-923 |#2|))) (-15 -2917 ((-923 |#2|) (-473 |#1| |#2|))) (-15 -2161 ((-923 |#2|) (-241 |#1| |#2|))) (-15 -3119 ((-241 |#1| |#2|) (-923 |#2|)))) (-621 (-1143)) (-1018)) (T -915))
-((-3119 (*1 *2 *3) (-12 (-5 *3 (-923 *5)) (-4 *5 (-1018)) (-5 *2 (-241 *4 *5)) (-5 *1 (-915 *4 *5)) (-14 *4 (-621 (-1143))))) (-2161 (*1 *2 *3) (-12 (-5 *3 (-241 *4 *5)) (-14 *4 (-621 (-1143))) (-4 *5 (-1018)) (-5 *2 (-923 *5)) (-5 *1 (-915 *4 *5)))) (-2917 (*1 *2 *3) (-12 (-5 *3 (-473 *4 *5)) (-14 *4 (-621 (-1143))) (-4 *5 (-1018)) (-5 *2 (-923 *5)) (-5 *1 (-915 *4 *5)))) (-1838 (*1 *2 *3) (-12 (-5 *3 (-923 *5)) (-4 *5 (-1018)) (-5 *2 (-473 *4 *5)) (-5 *1 (-915 *4 *5)) (-14 *4 (-621 (-1143))))) (-2504 (*1 *2 *3) (-12 (-5 *3 (-473 *4 *5)) (-14 *4 (-621 (-1143))) (-4 *5 (-1018)) (-5 *2 (-241 *4 *5)) (-5 *1 (-915 *4 *5)))) (-1339 (*1 *2 *3) (-12 (-5 *3 (-241 *4 *5)) (-14 *4 (-621 (-1143))) (-4 *5 (-1018)) (-5 *2 (-473 *4 *5)) (-5 *1 (-915 *4 *5)))))
-(-10 -7 (-15 -1339 ((-473 |#1| |#2|) (-241 |#1| |#2|))) (-15 -2504 ((-241 |#1| |#2|) (-473 |#1| |#2|))) (-15 -1838 ((-473 |#1| |#2|) (-923 |#2|))) (-15 -2917 ((-923 |#2|) (-473 |#1| |#2|))) (-15 -2161 ((-923 |#2|) (-241 |#1| |#2|))) (-15 -3119 ((-241 |#1| |#2|) (-923 |#2|))))
-((-2505 (((-621 |#2|) |#2| |#2|) 10)) (-2994 (((-747) (-621 |#1|)) 37 (|has| |#1| (-821)))) (-1808 (((-621 |#2|) |#2|) 11)) (-2472 (((-747) (-621 |#1|) (-549) (-549)) 39 (|has| |#1| (-821)))) (-3717 ((|#1| |#2|) 32 (|has| |#1| (-821)))))
-(((-916 |#1| |#2|) (-10 -7 (-15 -2505 ((-621 |#2|) |#2| |#2|)) (-15 -1808 ((-621 |#2|) |#2|)) (IF (|has| |#1| (-821)) (PROGN (-15 -3717 (|#1| |#2|)) (-15 -2994 ((-747) (-621 |#1|))) (-15 -2472 ((-747) (-621 |#1|) (-549) (-549)))) |%noBranch|)) (-356) (-1202 |#1|)) (T -916))
-((-2472 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-621 *5)) (-5 *4 (-549)) (-4 *5 (-821)) (-4 *5 (-356)) (-5 *2 (-747)) (-5 *1 (-916 *5 *6)) (-4 *6 (-1202 *5)))) (-2994 (*1 *2 *3) (-12 (-5 *3 (-621 *4)) (-4 *4 (-821)) (-4 *4 (-356)) (-5 *2 (-747)) (-5 *1 (-916 *4 *5)) (-4 *5 (-1202 *4)))) (-3717 (*1 *2 *3) (-12 (-4 *2 (-356)) (-4 *2 (-821)) (-5 *1 (-916 *2 *3)) (-4 *3 (-1202 *2)))) (-1808 (*1 *2 *3) (-12 (-4 *4 (-356)) (-5 *2 (-621 *3)) (-5 *1 (-916 *4 *3)) (-4 *3 (-1202 *4)))) (-2505 (*1 *2 *3 *3) (-12 (-4 *4 (-356)) (-5 *2 (-621 *3)) (-5 *1 (-916 *4 *3)) (-4 *3 (-1202 *4)))))
-(-10 -7 (-15 -2505 ((-621 |#2|) |#2| |#2|)) (-15 -1808 ((-621 |#2|) |#2|)) (IF (|has| |#1| (-821)) (PROGN (-15 -3717 (|#1| |#2|)) (-15 -2994 ((-747) (-621 |#1|))) (-15 -2472 ((-747) (-621 |#1|) (-549) (-549)))) |%noBranch|))
-((-2797 (((-923 |#2|) (-1 |#2| |#1|) (-923 |#1|)) 19)))
-(((-917 |#1| |#2|) (-10 -7 (-15 -2797 ((-923 |#2|) (-1 |#2| |#1|) (-923 |#1|)))) (-1018) (-1018)) (T -917))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-923 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *2 (-923 *6)) (-5 *1 (-917 *5 *6)))))
-(-10 -7 (-15 -2797 ((-923 |#2|) (-1 |#2| |#1|) (-923 |#1|))))
-((-2084 (((-1199 |#1| (-923 |#2|)) (-923 |#2|) (-1222 |#1|)) 18)))
-(((-918 |#1| |#2|) (-10 -7 (-15 -2084 ((-1199 |#1| (-923 |#2|)) (-923 |#2|) (-1222 |#1|)))) (-1143) (-1018)) (T -918))
-((-2084 (*1 *2 *3 *4) (-12 (-5 *4 (-1222 *5)) (-14 *5 (-1143)) (-4 *6 (-1018)) (-5 *2 (-1199 *5 (-923 *6))) (-5 *1 (-918 *5 *6)) (-5 *3 (-923 *6)))))
-(-10 -7 (-15 -2084 ((-1199 |#1| (-923 |#2|)) (-923 |#2|) (-1222 |#1|))))
-((-3186 (((-747) $) 71) (((-747) $ (-621 |#4|)) 74)) (-3979 (($ $) 173)) (-2402 (((-411 $) $) 165)) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) 116)) (-2714 (((-3 |#2| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 (-549) "failed") $) NIL) (((-3 |#4| "failed") $) 60)) (-2659 ((|#2| $) NIL) (((-400 (-549)) $) NIL) (((-549) $) NIL) ((|#4| $) 59)) (-1353 (($ $ $ |#4|) 76)) (-3879 (((-665 (-549)) (-665 $)) NIL) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) 106) (((-665 |#2|) (-665 $)) 99)) (-1285 (($ $) 180) (($ $ |#4|) 183)) (-2058 (((-621 $) $) 63)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 199) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 192)) (-3750 (((-621 $) $) 28)) (-2246 (($ |#2| |#3|) NIL) (($ $ |#4| (-747)) NIL) (($ $ (-621 |#4|) (-621 (-747))) 57)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ |#4|) 162)) (-4266 (((-3 (-621 $) "failed") $) 42)) (-2533 (((-3 (-621 $) "failed") $) 31)) (-1503 (((-3 (-2 (|:| |var| |#4|) (|:| -3731 (-747))) "failed") $) 47)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 109)) (-2905 (((-411 (-1139 $)) (-1139 $)) 122)) (-2413 (((-411 (-1139 $)) (-1139 $)) 120)) (-2121 (((-411 $) $) 140)) (-2686 (($ $ (-621 (-287 $))) 21) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-621 |#4|) (-621 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-621 |#4|) (-621 $)) NIL)) (-3602 (($ $ |#4|) 78)) (-2845 (((-863 (-372)) $) 213) (((-863 (-549)) $) 206) (((-525) $) 221)) (-2216 ((|#2| $) NIL) (($ $ |#4|) 175)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) 154)) (-2152 ((|#2| $ |#3|) NIL) (($ $ |#4| (-747)) 52) (($ $ (-621 |#4|) (-621 (-747))) 55)) (-2210 (((-3 $ "failed") $) 156)) (-2412 (((-112) $ $) 186)))
-(((-919 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1721 ((-1139 |#1|) (-1139 |#1|) (-1139 |#1|))) (-15 -2402 ((-411 |#1|) |#1|)) (-15 -3979 (|#1| |#1|)) (-15 -2210 ((-3 |#1| "failed") |#1|)) (-15 -2412 ((-112) |#1| |#1|)) (-15 -2845 ((-525) |#1|)) (-15 -2845 ((-863 (-549)) |#1|)) (-15 -2845 ((-863 (-372)) |#1|)) (-15 -2932 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))) (-15 -2932 ((-860 (-372) |#1|) |#1| (-863 (-372)) (-860 (-372) |#1|))) (-15 -2121 ((-411 |#1|) |#1|)) (-15 -2413 ((-411 (-1139 |#1|)) (-1139 |#1|))) (-15 -2905 ((-411 (-1139 |#1|)) (-1139 |#1|))) (-15 -1348 ((-3 (-621 (-1139 |#1|)) "failed") (-621 (-1139 |#1|)) (-1139 |#1|))) (-15 -4186 ((-3 (-1226 |#1|) "failed") (-665 |#1|))) (-15 -1285 (|#1| |#1| |#4|)) (-15 -2216 (|#1| |#1| |#4|)) (-15 -3602 (|#1| |#1| |#4|)) (-15 -1353 (|#1| |#1| |#1| |#4|)) (-15 -2058 ((-621 |#1|) |#1|)) (-15 -3186 ((-747) |#1| (-621 |#4|))) (-15 -3186 ((-747) |#1|)) (-15 -1503 ((-3 (-2 (|:| |var| |#4|) (|:| -3731 (-747))) "failed") |#1|)) (-15 -4266 ((-3 (-621 |#1|) "failed") |#1|)) (-15 -2533 ((-3 (-621 |#1|) "failed") |#1|)) (-15 -2246 (|#1| |#1| (-621 |#4|) (-621 (-747)))) (-15 -2246 (|#1| |#1| |#4| (-747))) (-15 -3265 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1| |#4|)) (-15 -3750 ((-621 |#1|) |#1|)) (-15 -2152 (|#1| |#1| (-621 |#4|) (-621 (-747)))) (-15 -2152 (|#1| |#1| |#4| (-747))) (-15 -3879 ((-665 |#2|) (-665 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-665 (-549)) (-665 |#1|))) (-15 -2659 (|#4| |#1|)) (-15 -2714 ((-3 |#4| "failed") |#1|)) (-15 -2686 (|#1| |#1| (-621 |#4|) (-621 |#1|))) (-15 -2686 (|#1| |#1| |#4| |#1|)) (-15 -2686 (|#1| |#1| (-621 |#4|) (-621 |#2|))) (-15 -2686 (|#1| |#1| |#4| |#2|)) (-15 -2686 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2686 (|#1| |#1| |#1| |#1|)) (-15 -2686 (|#1| |#1| (-287 |#1|))) (-15 -2686 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -2246 (|#1| |#2| |#3|)) (-15 -2152 (|#2| |#1| |#3|)) (-15 -2659 ((-549) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -2659 (|#2| |#1|)) (-15 -2216 (|#2| |#1|)) (-15 -1285 (|#1| |#1|))) (-920 |#2| |#3| |#4|) (-1018) (-769) (-823)) (T -919))
-NIL
-(-10 -8 (-15 -1721 ((-1139 |#1|) (-1139 |#1|) (-1139 |#1|))) (-15 -2402 ((-411 |#1|) |#1|)) (-15 -3979 (|#1| |#1|)) (-15 -2210 ((-3 |#1| "failed") |#1|)) (-15 -2412 ((-112) |#1| |#1|)) (-15 -2845 ((-525) |#1|)) (-15 -2845 ((-863 (-549)) |#1|)) (-15 -2845 ((-863 (-372)) |#1|)) (-15 -2932 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))) (-15 -2932 ((-860 (-372) |#1|) |#1| (-863 (-372)) (-860 (-372) |#1|))) (-15 -2121 ((-411 |#1|) |#1|)) (-15 -2413 ((-411 (-1139 |#1|)) (-1139 |#1|))) (-15 -2905 ((-411 (-1139 |#1|)) (-1139 |#1|))) (-15 -1348 ((-3 (-621 (-1139 |#1|)) "failed") (-621 (-1139 |#1|)) (-1139 |#1|))) (-15 -4186 ((-3 (-1226 |#1|) "failed") (-665 |#1|))) (-15 -1285 (|#1| |#1| |#4|)) (-15 -2216 (|#1| |#1| |#4|)) (-15 -3602 (|#1| |#1| |#4|)) (-15 -1353 (|#1| |#1| |#1| |#4|)) (-15 -2058 ((-621 |#1|) |#1|)) (-15 -3186 ((-747) |#1| (-621 |#4|))) (-15 -3186 ((-747) |#1|)) (-15 -1503 ((-3 (-2 (|:| |var| |#4|) (|:| -3731 (-747))) "failed") |#1|)) (-15 -4266 ((-3 (-621 |#1|) "failed") |#1|)) (-15 -2533 ((-3 (-621 |#1|) "failed") |#1|)) (-15 -2246 (|#1| |#1| (-621 |#4|) (-621 (-747)))) (-15 -2246 (|#1| |#1| |#4| (-747))) (-15 -3265 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1| |#4|)) (-15 -3750 ((-621 |#1|) |#1|)) (-15 -2152 (|#1| |#1| (-621 |#4|) (-621 (-747)))) (-15 -2152 (|#1| |#1| |#4| (-747))) (-15 -3879 ((-665 |#2|) (-665 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-665 (-549)) (-665 |#1|))) (-15 -2659 (|#4| |#1|)) (-15 -2714 ((-3 |#4| "failed") |#1|)) (-15 -2686 (|#1| |#1| (-621 |#4|) (-621 |#1|))) (-15 -2686 (|#1| |#1| |#4| |#1|)) (-15 -2686 (|#1| |#1| (-621 |#4|) (-621 |#2|))) (-15 -2686 (|#1| |#1| |#4| |#2|)) (-15 -2686 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2686 (|#1| |#1| |#1| |#1|)) (-15 -2686 (|#1| |#1| (-287 |#1|))) (-15 -2686 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -2246 (|#1| |#2| |#3|)) (-15 -2152 (|#2| |#1| |#3|)) (-15 -2659 ((-549) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -2659 (|#2| |#1|)) (-15 -2216 (|#2| |#1|)) (-15 -1285 (|#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2272 (((-621 |#3|) $) 108)) (-2084 (((-1139 $) $ |#3|) 123) (((-1139 |#1|) $) 122)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 85 (|has| |#1| (-541)))) (-2258 (($ $) 86 (|has| |#1| (-541)))) (-2799 (((-112) $) 88 (|has| |#1| (-541)))) (-3186 (((-747) $) 110) (((-747) $ (-621 |#3|)) 109)) (-2001 (((-3 $ "failed") $ $) 19)) (-3231 (((-411 (-1139 $)) (-1139 $)) 98 (|has| |#1| (-880)))) (-3979 (($ $) 96 (|has| |#1| (-444)))) (-2402 (((-411 $) $) 95 (|has| |#1| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) 101 (|has| |#1| (-880)))) (-1682 (($) 17 T CONST)) (-2714 (((-3 |#1| "failed") $) 162) (((-3 (-400 (-549)) "failed") $) 160 (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) 158 (|has| |#1| (-1009 (-549)))) (((-3 |#3| "failed") $) 134)) (-2659 ((|#1| $) 163) (((-400 (-549)) $) 159 (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) 157 (|has| |#1| (-1009 (-549)))) ((|#3| $) 133)) (-1353 (($ $ $ |#3|) 106 (|has| |#1| (-170)))) (-2070 (($ $) 152)) (-3879 (((-665 (-549)) (-665 $)) 132 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 131 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) 130) (((-665 |#1|) (-665 $)) 129)) (-2114 (((-3 $ "failed") $) 32)) (-1285 (($ $) 174 (|has| |#1| (-444))) (($ $ |#3|) 103 (|has| |#1| (-444)))) (-2058 (((-621 $) $) 107)) (-1420 (((-112) $) 94 (|has| |#1| (-880)))) (-2691 (($ $ |#1| |#2| $) 170)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 82 (-12 (|has| |#3| (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 81 (-12 (|has| |#3| (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2675 (((-112) $) 30)) (-3347 (((-747) $) 167)) (-2261 (($ (-1139 |#1|) |#3|) 115) (($ (-1139 $) |#3|) 114)) (-3750 (((-621 $) $) 124)) (-2205 (((-112) $) 150)) (-2246 (($ |#1| |#2|) 151) (($ $ |#3| (-747)) 117) (($ $ (-621 |#3|) (-621 (-747))) 116)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ |#3|) 118)) (-3611 ((|#2| $) 168) (((-747) $ |#3|) 120) (((-621 (-747)) $ (-621 |#3|)) 119)) (-2863 (($ $ $) 77 (|has| |#1| (-823)))) (-3575 (($ $ $) 76 (|has| |#1| (-823)))) (-3705 (($ (-1 |#2| |#2|) $) 169)) (-2797 (($ (-1 |#1| |#1|) $) 149)) (-1520 (((-3 |#3| "failed") $) 121)) (-2028 (($ $) 147)) (-2043 ((|#1| $) 146)) (-3697 (($ (-621 $)) 92 (|has| |#1| (-444))) (($ $ $) 91 (|has| |#1| (-444)))) (-3851 (((-1125) $) 9)) (-4266 (((-3 (-621 $) "failed") $) 112)) (-2533 (((-3 (-621 $) "failed") $) 113)) (-1503 (((-3 (-2 (|:| |var| |#3|) (|:| -3731 (-747))) "failed") $) 111)) (-3990 (((-1087) $) 10)) (-2004 (((-112) $) 164)) (-2016 ((|#1| $) 165)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 93 (|has| |#1| (-444)))) (-3727 (($ (-621 $)) 90 (|has| |#1| (-444))) (($ $ $) 89 (|has| |#1| (-444)))) (-2905 (((-411 (-1139 $)) (-1139 $)) 100 (|has| |#1| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) 99 (|has| |#1| (-880)))) (-2121 (((-411 $) $) 97 (|has| |#1| (-880)))) (-2042 (((-3 $ "failed") $ |#1|) 172 (|has| |#1| (-541))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-541)))) (-2686 (($ $ (-621 (-287 $))) 143) (($ $ (-287 $)) 142) (($ $ $ $) 141) (($ $ (-621 $) (-621 $)) 140) (($ $ |#3| |#1|) 139) (($ $ (-621 |#3|) (-621 |#1|)) 138) (($ $ |#3| $) 137) (($ $ (-621 |#3|) (-621 $)) 136)) (-3602 (($ $ |#3|) 105 (|has| |#1| (-170)))) (-3456 (($ $ |#3|) 40) (($ $ (-621 |#3|)) 39) (($ $ |#3| (-747)) 38) (($ $ (-621 |#3|) (-621 (-747))) 37)) (-3701 ((|#2| $) 148) (((-747) $ |#3|) 128) (((-621 (-747)) $ (-621 |#3|)) 127)) (-2845 (((-863 (-372)) $) 80 (-12 (|has| |#3| (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) 79 (-12 (|has| |#3| (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) 78 (-12 (|has| |#3| (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-2216 ((|#1| $) 173 (|has| |#1| (-444))) (($ $ |#3|) 104 (|has| |#1| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) 102 (-1821 (|has| $ (-143)) (|has| |#1| (-880))))) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 161) (($ |#3|) 135) (($ $) 83 (|has| |#1| (-541))) (($ (-400 (-549))) 70 (-1536 (|has| |#1| (-1009 (-400 (-549)))) (|has| |#1| (-38 (-400 (-549))))))) (-4141 (((-621 |#1|) $) 166)) (-2152 ((|#1| $ |#2|) 153) (($ $ |#3| (-747)) 126) (($ $ (-621 |#3|) (-621 (-747))) 125)) (-2210 (((-3 $ "failed") $) 71 (-1536 (-1821 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2082 (((-747)) 28)) (-1509 (($ $ $ (-747)) 171 (|has| |#1| (-170)))) (-1498 (((-112) $ $) 87 (|has| |#1| (-541)))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ |#3|) 36) (($ $ (-621 |#3|)) 35) (($ $ |#3| (-747)) 34) (($ $ (-621 |#3|) (-621 (-747))) 33)) (-2448 (((-112) $ $) 74 (|has| |#1| (-823)))) (-2425 (((-112) $ $) 73 (|has| |#1| (-823)))) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 75 (|has| |#1| (-823)))) (-2412 (((-112) $ $) 72 (|has| |#1| (-823)))) (-2513 (($ $ |#1|) 154 (|has| |#1| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 156 (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) 155 (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 145) (($ $ |#1|) 144)))
+((-1333 (((-473 |#1| |#2|) (-923 |#2|)) 20)) (-2321 (((-241 |#1| |#2|) (-923 |#2|)) 33)) (-4205 (((-923 |#2|) (-473 |#1| |#2|)) 25)) (-1647 (((-241 |#1| |#2|) (-473 |#1| |#2|)) 55)) (-3641 (((-923 |#2|) (-241 |#1| |#2|)) 30)) (-1974 (((-473 |#1| |#2|) (-241 |#1| |#2|)) 46)))
+(((-915 |#1| |#2|) (-10 -7 (-15 -1974 ((-473 |#1| |#2|) (-241 |#1| |#2|))) (-15 -1647 ((-241 |#1| |#2|) (-473 |#1| |#2|))) (-15 -1333 ((-473 |#1| |#2|) (-923 |#2|))) (-15 -4205 ((-923 |#2|) (-473 |#1| |#2|))) (-15 -3641 ((-923 |#2|) (-241 |#1| |#2|))) (-15 -2321 ((-241 |#1| |#2|) (-923 |#2|)))) (-621 (-1142)) (-1018)) (T -915))
+((-2321 (*1 *2 *3) (-12 (-5 *3 (-923 *5)) (-4 *5 (-1018)) (-5 *2 (-241 *4 *5)) (-5 *1 (-915 *4 *5)) (-14 *4 (-621 (-1142))))) (-3641 (*1 *2 *3) (-12 (-5 *3 (-241 *4 *5)) (-14 *4 (-621 (-1142))) (-4 *5 (-1018)) (-5 *2 (-923 *5)) (-5 *1 (-915 *4 *5)))) (-4205 (*1 *2 *3) (-12 (-5 *3 (-473 *4 *5)) (-14 *4 (-621 (-1142))) (-4 *5 (-1018)) (-5 *2 (-923 *5)) (-5 *1 (-915 *4 *5)))) (-1333 (*1 *2 *3) (-12 (-5 *3 (-923 *5)) (-4 *5 (-1018)) (-5 *2 (-473 *4 *5)) (-5 *1 (-915 *4 *5)) (-14 *4 (-621 (-1142))))) (-1647 (*1 *2 *3) (-12 (-5 *3 (-473 *4 *5)) (-14 *4 (-621 (-1142))) (-4 *5 (-1018)) (-5 *2 (-241 *4 *5)) (-5 *1 (-915 *4 *5)))) (-1974 (*1 *2 *3) (-12 (-5 *3 (-241 *4 *5)) (-14 *4 (-621 (-1142))) (-4 *5 (-1018)) (-5 *2 (-473 *4 *5)) (-5 *1 (-915 *4 *5)))))
+(-10 -7 (-15 -1974 ((-473 |#1| |#2|) (-241 |#1| |#2|))) (-15 -1647 ((-241 |#1| |#2|) (-473 |#1| |#2|))) (-15 -1333 ((-473 |#1| |#2|) (-923 |#2|))) (-15 -4205 ((-923 |#2|) (-473 |#1| |#2|))) (-15 -3641 ((-923 |#2|) (-241 |#1| |#2|))) (-15 -2321 ((-241 |#1| |#2|) (-923 |#2|))))
+((-1754 (((-621 |#2|) |#2| |#2|) 10)) (-1434 (((-747) (-621 |#1|)) 37 (|has| |#1| (-821)))) (-3248 (((-621 |#2|) |#2|) 11)) (-3265 (((-747) (-621 |#1|) (-549) (-549)) 39 (|has| |#1| (-821)))) (-3016 ((|#1| |#2|) 32 (|has| |#1| (-821)))))
+(((-916 |#1| |#2|) (-10 -7 (-15 -1754 ((-621 |#2|) |#2| |#2|)) (-15 -3248 ((-621 |#2|) |#2|)) (IF (|has| |#1| (-821)) (PROGN (-15 -3016 (|#1| |#2|)) (-15 -1434 ((-747) (-621 |#1|))) (-15 -3265 ((-747) (-621 |#1|) (-549) (-549)))) |%noBranch|)) (-356) (-1201 |#1|)) (T -916))
+((-3265 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-621 *5)) (-5 *4 (-549)) (-4 *5 (-821)) (-4 *5 (-356)) (-5 *2 (-747)) (-5 *1 (-916 *5 *6)) (-4 *6 (-1201 *5)))) (-1434 (*1 *2 *3) (-12 (-5 *3 (-621 *4)) (-4 *4 (-821)) (-4 *4 (-356)) (-5 *2 (-747)) (-5 *1 (-916 *4 *5)) (-4 *5 (-1201 *4)))) (-3016 (*1 *2 *3) (-12 (-4 *2 (-356)) (-4 *2 (-821)) (-5 *1 (-916 *2 *3)) (-4 *3 (-1201 *2)))) (-3248 (*1 *2 *3) (-12 (-4 *4 (-356)) (-5 *2 (-621 *3)) (-5 *1 (-916 *4 *3)) (-4 *3 (-1201 *4)))) (-1754 (*1 *2 *3 *3) (-12 (-4 *4 (-356)) (-5 *2 (-621 *3)) (-5 *1 (-916 *4 *3)) (-4 *3 (-1201 *4)))))
+(-10 -7 (-15 -1754 ((-621 |#2|) |#2| |#2|)) (-15 -3248 ((-621 |#2|) |#2|)) (IF (|has| |#1| (-821)) (PROGN (-15 -3016 (|#1| |#2|)) (-15 -1434 ((-747) (-621 |#1|))) (-15 -3265 ((-747) (-621 |#1|) (-549) (-549)))) |%noBranch|))
+((-2795 (((-923 |#2|) (-1 |#2| |#1|) (-923 |#1|)) 19)))
+(((-917 |#1| |#2|) (-10 -7 (-15 -2795 ((-923 |#2|) (-1 |#2| |#1|) (-923 |#1|)))) (-1018) (-1018)) (T -917))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-923 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *2 (-923 *6)) (-5 *1 (-917 *5 *6)))))
+(-10 -7 (-15 -2795 ((-923 |#2|) (-1 |#2| |#1|) (-923 |#1|))))
+((-2082 (((-1198 |#1| (-923 |#2|)) (-923 |#2|) (-1221 |#1|)) 18)))
+(((-918 |#1| |#2|) (-10 -7 (-15 -2082 ((-1198 |#1| (-923 |#2|)) (-923 |#2|) (-1221 |#1|)))) (-1142) (-1018)) (T -918))
+((-2082 (*1 *2 *3 *4) (-12 (-5 *4 (-1221 *5)) (-14 *5 (-1142)) (-4 *6 (-1018)) (-5 *2 (-1198 *5 (-923 *6))) (-5 *1 (-918 *5 *6)) (-5 *3 (-923 *6)))))
+(-10 -7 (-15 -2082 ((-1198 |#1| (-923 |#2|)) (-923 |#2|) (-1221 |#1|))))
+((-2216 (((-747) $) 71) (((-747) $ (-621 |#4|)) 74)) (-3239 (($ $) 173)) (-2620 (((-411 $) $) 165)) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) 116)) (-2712 (((-3 |#2| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 (-549) "failed") $) NIL) (((-3 |#4| "failed") $) 60)) (-2657 ((|#2| $) NIL) (((-400 (-549)) $) NIL) (((-549) $) NIL) ((|#4| $) 59)) (-4114 (($ $ $ |#4|) 76)) (-3446 (((-665 (-549)) (-665 $)) NIL) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) 106) (((-665 |#2|) (-665 $)) 99)) (-3004 (($ $) 180) (($ $ |#4|) 183)) (-2056 (((-621 $) $) 63)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 199) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 192)) (-2758 (((-621 $) $) 28)) (-2244 (($ |#2| |#3|) NIL) (($ $ |#4| (-747)) NIL) (($ $ (-621 |#4|) (-621 (-747))) 57)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ |#4|) 162)) (-4093 (((-3 (-621 $) "failed") $) 42)) (-1503 (((-3 (-621 $) "failed") $) 31)) (-1477 (((-3 (-2 (|:| |var| |#4|) (|:| -1714 (-747))) "failed") $) 47)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 109)) (-2609 (((-411 (-1138 $)) (-1138 $)) 122)) (-2193 (((-411 (-1138 $)) (-1138 $)) 120)) (-2119 (((-411 $) $) 140)) (-2684 (($ $ (-621 (-287 $))) 21) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-621 |#4|) (-621 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-621 |#4|) (-621 $)) NIL)) (-2740 (($ $ |#4|) 78)) (-2843 (((-863 (-372)) $) 213) (((-863 (-549)) $) 206) (((-525) $) 221)) (-1700 ((|#2| $) NIL) (($ $ |#4|) 175)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) 154)) (-4068 ((|#2| $ |#3|) NIL) (($ $ |#4| (-747)) 52) (($ $ (-621 |#4|) (-621 (-747))) 55)) (-2343 (((-3 $ "failed") $) 156)) (-2409 (((-112) $ $) 186)))
+(((-919 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2994 ((-1138 |#1|) (-1138 |#1|) (-1138 |#1|))) (-15 -2620 ((-411 |#1|) |#1|)) (-15 -3239 (|#1| |#1|)) (-15 -2343 ((-3 |#1| "failed") |#1|)) (-15 -2409 ((-112) |#1| |#1|)) (-15 -2843 ((-525) |#1|)) (-15 -2843 ((-863 (-549)) |#1|)) (-15 -2843 ((-863 (-372)) |#1|)) (-15 -3849 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))) (-15 -3849 ((-860 (-372) |#1|) |#1| (-863 (-372)) (-860 (-372) |#1|))) (-15 -2119 ((-411 |#1|) |#1|)) (-15 -2193 ((-411 (-1138 |#1|)) (-1138 |#1|))) (-15 -2609 ((-411 (-1138 |#1|)) (-1138 |#1|))) (-15 -3955 ((-3 (-621 (-1138 |#1|)) "failed") (-621 (-1138 |#1|)) (-1138 |#1|))) (-15 -3499 ((-3 (-1225 |#1|) "failed") (-665 |#1|))) (-15 -3004 (|#1| |#1| |#4|)) (-15 -1700 (|#1| |#1| |#4|)) (-15 -2740 (|#1| |#1| |#4|)) (-15 -4114 (|#1| |#1| |#1| |#4|)) (-15 -2056 ((-621 |#1|) |#1|)) (-15 -2216 ((-747) |#1| (-621 |#4|))) (-15 -2216 ((-747) |#1|)) (-15 -1477 ((-3 (-2 (|:| |var| |#4|) (|:| -1714 (-747))) "failed") |#1|)) (-15 -4093 ((-3 (-621 |#1|) "failed") |#1|)) (-15 -1503 ((-3 (-621 |#1|) "failed") |#1|)) (-15 -2244 (|#1| |#1| (-621 |#4|) (-621 (-747)))) (-15 -2244 (|#1| |#1| |#4| (-747))) (-15 -4218 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1| |#4|)) (-15 -2758 ((-621 |#1|) |#1|)) (-15 -4068 (|#1| |#1| (-621 |#4|) (-621 (-747)))) (-15 -4068 (|#1| |#1| |#4| (-747))) (-15 -3446 ((-665 |#2|) (-665 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-665 (-549)) (-665 |#1|))) (-15 -2657 (|#4| |#1|)) (-15 -2712 ((-3 |#4| "failed") |#1|)) (-15 -2684 (|#1| |#1| (-621 |#4|) (-621 |#1|))) (-15 -2684 (|#1| |#1| |#4| |#1|)) (-15 -2684 (|#1| |#1| (-621 |#4|) (-621 |#2|))) (-15 -2684 (|#1| |#1| |#4| |#2|)) (-15 -2684 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2684 (|#1| |#1| |#1| |#1|)) (-15 -2684 (|#1| |#1| (-287 |#1|))) (-15 -2684 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -2244 (|#1| |#2| |#3|)) (-15 -4068 (|#2| |#1| |#3|)) (-15 -2657 ((-549) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -2657 (|#2| |#1|)) (-15 -1700 (|#2| |#1|)) (-15 -3004 (|#1| |#1|))) (-920 |#2| |#3| |#4|) (-1018) (-769) (-823)) (T -919))
+NIL
+(-10 -8 (-15 -2994 ((-1138 |#1|) (-1138 |#1|) (-1138 |#1|))) (-15 -2620 ((-411 |#1|) |#1|)) (-15 -3239 (|#1| |#1|)) (-15 -2343 ((-3 |#1| "failed") |#1|)) (-15 -2409 ((-112) |#1| |#1|)) (-15 -2843 ((-525) |#1|)) (-15 -2843 ((-863 (-549)) |#1|)) (-15 -2843 ((-863 (-372)) |#1|)) (-15 -3849 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))) (-15 -3849 ((-860 (-372) |#1|) |#1| (-863 (-372)) (-860 (-372) |#1|))) (-15 -2119 ((-411 |#1|) |#1|)) (-15 -2193 ((-411 (-1138 |#1|)) (-1138 |#1|))) (-15 -2609 ((-411 (-1138 |#1|)) (-1138 |#1|))) (-15 -3955 ((-3 (-621 (-1138 |#1|)) "failed") (-621 (-1138 |#1|)) (-1138 |#1|))) (-15 -3499 ((-3 (-1225 |#1|) "failed") (-665 |#1|))) (-15 -3004 (|#1| |#1| |#4|)) (-15 -1700 (|#1| |#1| |#4|)) (-15 -2740 (|#1| |#1| |#4|)) (-15 -4114 (|#1| |#1| |#1| |#4|)) (-15 -2056 ((-621 |#1|) |#1|)) (-15 -2216 ((-747) |#1| (-621 |#4|))) (-15 -2216 ((-747) |#1|)) (-15 -1477 ((-3 (-2 (|:| |var| |#4|) (|:| -1714 (-747))) "failed") |#1|)) (-15 -4093 ((-3 (-621 |#1|) "failed") |#1|)) (-15 -1503 ((-3 (-621 |#1|) "failed") |#1|)) (-15 -2244 (|#1| |#1| (-621 |#4|) (-621 (-747)))) (-15 -2244 (|#1| |#1| |#4| (-747))) (-15 -4218 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1| |#4|)) (-15 -2758 ((-621 |#1|) |#1|)) (-15 -4068 (|#1| |#1| (-621 |#4|) (-621 (-747)))) (-15 -4068 (|#1| |#1| |#4| (-747))) (-15 -3446 ((-665 |#2|) (-665 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-665 (-549)) (-665 |#1|))) (-15 -2657 (|#4| |#1|)) (-15 -2712 ((-3 |#4| "failed") |#1|)) (-15 -2684 (|#1| |#1| (-621 |#4|) (-621 |#1|))) (-15 -2684 (|#1| |#1| |#4| |#1|)) (-15 -2684 (|#1| |#1| (-621 |#4|) (-621 |#2|))) (-15 -2684 (|#1| |#1| |#4| |#2|)) (-15 -2684 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2684 (|#1| |#1| |#1| |#1|)) (-15 -2684 (|#1| |#1| (-287 |#1|))) (-15 -2684 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -2244 (|#1| |#2| |#3|)) (-15 -4068 (|#2| |#1| |#3|)) (-15 -2657 ((-549) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -2657 (|#2| |#1|)) (-15 -1700 (|#2| |#1|)) (-15 -3004 (|#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2270 (((-621 |#3|) $) 108)) (-2082 (((-1138 $) $ |#3|) 123) (((-1138 |#1|) $) 122)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 85 (|has| |#1| (-541)))) (-3044 (($ $) 86 (|has| |#1| (-541)))) (-2774 (((-112) $) 88 (|has| |#1| (-541)))) (-2216 (((-747) $) 110) (((-747) $ (-621 |#3|)) 109)) (-2416 (((-3 $ "failed") $ $) 19)) (-3630 (((-411 (-1138 $)) (-1138 $)) 98 (|has| |#1| (-880)))) (-3239 (($ $) 96 (|has| |#1| (-444)))) (-2620 (((-411 $) $) 95 (|has| |#1| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) 101 (|has| |#1| (-880)))) (-3034 (($) 17 T CONST)) (-2712 (((-3 |#1| "failed") $) 162) (((-3 (-400 (-549)) "failed") $) 160 (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) 158 (|has| |#1| (-1009 (-549)))) (((-3 |#3| "failed") $) 134)) (-2657 ((|#1| $) 163) (((-400 (-549)) $) 159 (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) 157 (|has| |#1| (-1009 (-549)))) ((|#3| $) 133)) (-4114 (($ $ $ |#3|) 106 (|has| |#1| (-170)))) (-2068 (($ $) 152)) (-3446 (((-665 (-549)) (-665 $)) 132 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 131 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) 130) (((-665 |#1|) (-665 $)) 129)) (-2612 (((-3 $ "failed") $) 32)) (-3004 (($ $) 174 (|has| |#1| (-444))) (($ $ |#3|) 103 (|has| |#1| (-444)))) (-2056 (((-621 $) $) 107)) (-1464 (((-112) $) 94 (|has| |#1| (-880)))) (-4064 (($ $ |#1| |#2| $) 170)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 82 (-12 (|has| |#3| (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 81 (-12 (|has| |#3| (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2297 (((-112) $) 30)) (-1751 (((-747) $) 167)) (-2259 (($ (-1138 |#1|) |#3|) 115) (($ (-1138 $) |#3|) 114)) (-2758 (((-621 $) $) 124)) (-2988 (((-112) $) 150)) (-2244 (($ |#1| |#2|) 151) (($ $ |#3| (-747)) 117) (($ $ (-621 |#3|) (-621 (-747))) 116)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ |#3|) 118)) (-2391 ((|#2| $) 168) (((-747) $ |#3|) 120) (((-621 (-747)) $ (-621 |#3|)) 119)) (-2861 (($ $ $) 77 (|has| |#1| (-823)))) (-3574 (($ $ $) 76 (|has| |#1| (-823)))) (-3224 (($ (-1 |#2| |#2|) $) 169)) (-2795 (($ (-1 |#1| |#1|) $) 149)) (-2236 (((-3 |#3| "failed") $) 121)) (-2027 (($ $) 147)) (-2042 ((|#1| $) 146)) (-3696 (($ (-621 $)) 92 (|has| |#1| (-444))) (($ $ $) 91 (|has| |#1| (-444)))) (-3441 (((-1124) $) 9)) (-4093 (((-3 (-621 $) "failed") $) 112)) (-1503 (((-3 (-621 $) "failed") $) 113)) (-1477 (((-3 (-2 (|:| |var| |#3|) (|:| -1714 (-747))) "failed") $) 111)) (-3988 (((-1086) $) 10)) (-2001 (((-112) $) 164)) (-2011 ((|#1| $) 165)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 93 (|has| |#1| (-444)))) (-3726 (($ (-621 $)) 90 (|has| |#1| (-444))) (($ $ $) 89 (|has| |#1| (-444)))) (-2609 (((-411 (-1138 $)) (-1138 $)) 100 (|has| |#1| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) 99 (|has| |#1| (-880)))) (-2119 (((-411 $) $) 97 (|has| |#1| (-880)))) (-2040 (((-3 $ "failed") $ |#1|) 172 (|has| |#1| (-541))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-541)))) (-2684 (($ $ (-621 (-287 $))) 143) (($ $ (-287 $)) 142) (($ $ $ $) 141) (($ $ (-621 $) (-621 $)) 140) (($ $ |#3| |#1|) 139) (($ $ (-621 |#3|) (-621 |#1|)) 138) (($ $ |#3| $) 137) (($ $ (-621 |#3|) (-621 $)) 136)) (-2740 (($ $ |#3|) 105 (|has| |#1| (-170)))) (-3455 (($ $ |#3|) 40) (($ $ (-621 |#3|)) 39) (($ $ |#3| (-747)) 38) (($ $ (-621 |#3|) (-621 (-747))) 37)) (-3977 ((|#2| $) 148) (((-747) $ |#3|) 128) (((-621 (-747)) $ (-621 |#3|)) 127)) (-2843 (((-863 (-372)) $) 80 (-12 (|has| |#3| (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) 79 (-12 (|has| |#3| (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) 78 (-12 (|has| |#3| (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-1700 ((|#1| $) 173 (|has| |#1| (-444))) (($ $ |#3|) 104 (|has| |#1| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) 102 (-1819 (|has| $ (-143)) (|has| |#1| (-880))))) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 161) (($ |#3|) 135) (($ $) 83 (|has| |#1| (-541))) (($ (-400 (-549))) 70 (-1536 (|has| |#1| (-1009 (-400 (-549)))) (|has| |#1| (-38 (-400 (-549))))))) (-2157 (((-621 |#1|) $) 166)) (-4068 ((|#1| $ |#2|) 153) (($ $ |#3| (-747)) 126) (($ $ (-621 |#3|) (-621 (-747))) 125)) (-2343 (((-3 $ "failed") $) 71 (-1536 (-1819 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2371 (((-747)) 28)) (-4046 (($ $ $ (-747)) 171 (|has| |#1| (-170)))) (-2441 (((-112) $ $) 87 (|has| |#1| (-541)))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ |#3|) 36) (($ $ (-621 |#3|)) 35) (($ $ |#3| (-747)) 34) (($ $ (-621 |#3|) (-621 (-747))) 33)) (-2447 (((-112) $ $) 74 (|has| |#1| (-823)))) (-2423 (((-112) $ $) 73 (|has| |#1| (-823)))) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 75 (|has| |#1| (-823)))) (-2409 (((-112) $ $) 72 (|has| |#1| (-823)))) (-2511 (($ $ |#1|) 154 (|has| |#1| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 156 (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) 155 (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 145) (($ $ |#1|) 144)))
(((-920 |#1| |#2| |#3|) (-138) (-1018) (-769) (-823)) (T -920))
-((-1285 (*1 *1 *1) (-12 (-4 *1 (-920 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-444)))) (-3701 (*1 *2 *1 *3) (-12 (-4 *1 (-920 *4 *5 *3)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-5 *2 (-747)))) (-3701 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *6)) (-4 *1 (-920 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 (-747))))) (-2152 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-920 *4 *5 *2)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *2 (-823)))) (-2152 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *6)) (-5 *3 (-621 (-747))) (-4 *1 (-920 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)))) (-3750 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-920 *3 *4 *5)))) (-2084 (*1 *2 *1 *3) (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-5 *2 (-1139 *1)) (-4 *1 (-920 *4 *5 *3)))) (-2084 (*1 *2 *1) (-12 (-4 *1 (-920 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-1139 *3)))) (-1520 (*1 *2 *1) (|partial| -12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)))) (-3611 (*1 *2 *1 *3) (-12 (-4 *1 (-920 *4 *5 *3)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-5 *2 (-747)))) (-3611 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *6)) (-4 *1 (-920 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 (-747))))) (-3265 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-920 *4 *5 *3)))) (-2246 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-920 *4 *5 *2)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *2 (-823)))) (-2246 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *6)) (-5 *3 (-621 (-747))) (-4 *1 (-920 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)))) (-2261 (*1 *1 *2 *3) (-12 (-5 *2 (-1139 *4)) (-4 *4 (-1018)) (-4 *1 (-920 *4 *5 *3)) (-4 *5 (-769)) (-4 *3 (-823)))) (-2261 (*1 *1 *2 *3) (-12 (-5 *2 (-1139 *1)) (-4 *1 (-920 *4 *5 *3)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)))) (-2533 (*1 *2 *1) (|partial| -12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-920 *3 *4 *5)))) (-4266 (*1 *2 *1) (|partial| -12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-920 *3 *4 *5)))) (-1503 (*1 *2 *1) (|partial| -12 (-4 *1 (-920 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-2 (|:| |var| *5) (|:| -3731 (-747)))))) (-3186 (*1 *2 *1) (-12 (-4 *1 (-920 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-747)))) (-3186 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *6)) (-4 *1 (-920 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-747)))) (-2272 (*1 *2 *1) (-12 (-4 *1 (-920 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *5)))) (-2058 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-920 *3 *4 *5)))) (-1353 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)) (-4 *3 (-170)))) (-3602 (*1 *1 *1 *2) (-12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)) (-4 *3 (-170)))) (-2216 (*1 *1 *1 *2) (-12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)) (-4 *3 (-444)))) (-1285 (*1 *1 *1 *2) (-12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)) (-4 *3 (-444)))) (-3979 (*1 *1 *1) (-12 (-4 *1 (-920 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-444)))) (-2402 (*1 *2 *1) (-12 (-4 *3 (-444)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-411 *1)) (-4 *1 (-920 *3 *4 *5)))))
-(-13 (-871 |t#3|) (-319 |t#1| |t#2|) (-302 $) (-505 |t#3| |t#1|) (-505 |t#3| $) (-1009 |t#3|) (-370 |t#1|) (-10 -8 (-15 -3701 ((-747) $ |t#3|)) (-15 -3701 ((-621 (-747)) $ (-621 |t#3|))) (-15 -2152 ($ $ |t#3| (-747))) (-15 -2152 ($ $ (-621 |t#3|) (-621 (-747)))) (-15 -3750 ((-621 $) $)) (-15 -2084 ((-1139 $) $ |t#3|)) (-15 -2084 ((-1139 |t#1|) $)) (-15 -1520 ((-3 |t#3| "failed") $)) (-15 -3611 ((-747) $ |t#3|)) (-15 -3611 ((-621 (-747)) $ (-621 |t#3|))) (-15 -3265 ((-2 (|:| -4013 $) (|:| -3675 $)) $ $ |t#3|)) (-15 -2246 ($ $ |t#3| (-747))) (-15 -2246 ($ $ (-621 |t#3|) (-621 (-747)))) (-15 -2261 ($ (-1139 |t#1|) |t#3|)) (-15 -2261 ($ (-1139 $) |t#3|)) (-15 -2533 ((-3 (-621 $) "failed") $)) (-15 -4266 ((-3 (-621 $) "failed") $)) (-15 -1503 ((-3 (-2 (|:| |var| |t#3|) (|:| -3731 (-747))) "failed") $)) (-15 -3186 ((-747) $)) (-15 -3186 ((-747) $ (-621 |t#3|))) (-15 -2272 ((-621 |t#3|) $)) (-15 -2058 ((-621 $) $)) (IF (|has| |t#1| (-823)) (-6 (-823)) |%noBranch|) (IF (|has| |t#1| (-594 (-525))) (IF (|has| |t#3| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-594 (-863 (-549)))) (IF (|has| |t#3| (-594 (-863 (-549)))) (-6 (-594 (-863 (-549)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-594 (-863 (-372)))) (IF (|has| |t#3| (-594 (-863 (-372)))) (-6 (-594 (-863 (-372)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-857 (-549))) (IF (|has| |t#3| (-857 (-549))) (-6 (-857 (-549))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-857 (-372))) (IF (|has| |t#3| (-857 (-372))) (-6 (-857 (-372))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-170)) (PROGN (-15 -1353 ($ $ $ |t#3|)) (-15 -3602 ($ $ |t#3|))) |%noBranch|) (IF (|has| |t#1| (-444)) (PROGN (-6 (-444)) (-15 -2216 ($ $ |t#3|)) (-15 -1285 ($ $)) (-15 -1285 ($ $ |t#3|)) (-15 -2402 ((-411 $) $)) (-15 -3979 ($ $))) |%noBranch|) (IF (|has| |t#1| (-6 -4335)) (-6 -4335) |%noBranch|) (IF (|has| |t#1| (-880)) (-6 (-880)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-594 (-525)) -12 (|has| |#1| (-594 (-525))) (|has| |#3| (-594 (-525)))) ((-594 (-863 (-372))) -12 (|has| |#1| (-594 (-863 (-372)))) (|has| |#3| (-594 (-863 (-372))))) ((-594 (-863 (-549))) -12 (|has| |#1| (-594 (-863 (-549)))) (|has| |#3| (-594 (-863 (-549))))) ((-283) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-302 $) . T) ((-319 |#1| |#2|) . T) ((-370 |#1|) . T) ((-404 |#1|) . T) ((-444) -1536 (|has| |#1| (-880)) (|has| |#1| (-444))) ((-505 |#3| |#1|) . T) ((-505 |#3| $) . T) ((-505 $ $) . T) ((-541) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-624 #0#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-694 #0#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-703) . T) ((-823) |has| |#1| (-823)) ((-871 |#3|) . T) ((-857 (-372)) -12 (|has| |#1| (-857 (-372))) (|has| |#3| (-857 (-372)))) ((-857 (-549)) -12 (|has| |#1| (-857 (-549))) (|has| |#3| (-857 (-549)))) ((-880) |has| |#1| (-880)) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1009 |#3|) . T) ((-1024 #0#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1184) |has| |#1| (-880)))
-((-2272 (((-621 |#2|) |#5|) 36)) (-2084 (((-1139 |#5|) |#5| |#2| (-1139 |#5|)) 23) (((-400 (-1139 |#5|)) |#5| |#2|) 16)) (-2261 ((|#5| (-400 (-1139 |#5|)) |#2|) 30)) (-1520 (((-3 |#2| "failed") |#5|) 65)) (-4266 (((-3 (-621 |#5|) "failed") |#5|) 59)) (-1671 (((-3 (-2 (|:| |val| |#5|) (|:| -3731 (-549))) "failed") |#5|) 47)) (-2533 (((-3 (-621 |#5|) "failed") |#5|) 61)) (-1503 (((-3 (-2 (|:| |var| |#2|) (|:| -3731 (-549))) "failed") |#5|) 51)))
-(((-921 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2272 ((-621 |#2|) |#5|)) (-15 -1520 ((-3 |#2| "failed") |#5|)) (-15 -2084 ((-400 (-1139 |#5|)) |#5| |#2|)) (-15 -2261 (|#5| (-400 (-1139 |#5|)) |#2|)) (-15 -2084 ((-1139 |#5|) |#5| |#2| (-1139 |#5|))) (-15 -2533 ((-3 (-621 |#5|) "failed") |#5|)) (-15 -4266 ((-3 (-621 |#5|) "failed") |#5|)) (-15 -1503 ((-3 (-2 (|:| |var| |#2|) (|:| -3731 (-549))) "failed") |#5|)) (-15 -1671 ((-3 (-2 (|:| |val| |#5|) (|:| -3731 (-549))) "failed") |#5|))) (-769) (-823) (-1018) (-920 |#3| |#1| |#2|) (-13 (-356) (-10 -8 (-15 -3846 ($ |#4|)) (-15 -1394 (|#4| $)) (-15 -1403 (|#4| $))))) (T -921))
-((-1671 (*1 *2 *3) (|partial| -12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018)) (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-2 (|:| |val| *3) (|:| -3731 (-549)))) (-5 *1 (-921 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-356) (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $)) (-15 -1403 (*7 $))))))) (-1503 (*1 *2 *3) (|partial| -12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018)) (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-2 (|:| |var| *5) (|:| -3731 (-549)))) (-5 *1 (-921 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-356) (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $)) (-15 -1403 (*7 $))))))) (-4266 (*1 *2 *3) (|partial| -12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018)) (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-621 *3)) (-5 *1 (-921 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-356) (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $)) (-15 -1403 (*7 $))))))) (-2533 (*1 *2 *3) (|partial| -12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018)) (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-621 *3)) (-5 *1 (-921 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-356) (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $)) (-15 -1403 (*7 $))))))) (-2084 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1139 *3)) (-4 *3 (-13 (-356) (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $)) (-15 -1403 (*7 $))))) (-4 *7 (-920 *6 *5 *4)) (-4 *5 (-769)) (-4 *4 (-823)) (-4 *6 (-1018)) (-5 *1 (-921 *5 *4 *6 *7 *3)))) (-2261 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-1139 *2))) (-4 *5 (-769)) (-4 *4 (-823)) (-4 *6 (-1018)) (-4 *2 (-13 (-356) (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $)) (-15 -1403 (*7 $))))) (-5 *1 (-921 *5 *4 *6 *7 *2)) (-4 *7 (-920 *6 *5 *4)))) (-2084 (*1 *2 *3 *4) (-12 (-4 *5 (-769)) (-4 *4 (-823)) (-4 *6 (-1018)) (-4 *7 (-920 *6 *5 *4)) (-5 *2 (-400 (-1139 *3))) (-5 *1 (-921 *5 *4 *6 *7 *3)) (-4 *3 (-13 (-356) (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $)) (-15 -1403 (*7 $))))))) (-1520 (*1 *2 *3) (|partial| -12 (-4 *4 (-769)) (-4 *5 (-1018)) (-4 *6 (-920 *5 *4 *2)) (-4 *2 (-823)) (-5 *1 (-921 *4 *2 *5 *6 *3)) (-4 *3 (-13 (-356) (-10 -8 (-15 -3846 ($ *6)) (-15 -1394 (*6 $)) (-15 -1403 (*6 $))))))) (-2272 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018)) (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-621 *5)) (-5 *1 (-921 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-356) (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $)) (-15 -1403 (*7 $))))))))
-(-10 -7 (-15 -2272 ((-621 |#2|) |#5|)) (-15 -1520 ((-3 |#2| "failed") |#5|)) (-15 -2084 ((-400 (-1139 |#5|)) |#5| |#2|)) (-15 -2261 (|#5| (-400 (-1139 |#5|)) |#2|)) (-15 -2084 ((-1139 |#5|) |#5| |#2| (-1139 |#5|))) (-15 -2533 ((-3 (-621 |#5|) "failed") |#5|)) (-15 -4266 ((-3 (-621 |#5|) "failed") |#5|)) (-15 -1503 ((-3 (-2 (|:| |var| |#2|) (|:| -3731 (-549))) "failed") |#5|)) (-15 -1671 ((-3 (-2 (|:| |val| |#5|) (|:| -3731 (-549))) "failed") |#5|)))
-((-2797 ((|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|) 24)))
-(((-922 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2797 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|))) (-769) (-823) (-1018) (-920 |#3| |#1| |#2|) (-13 (-1067) (-10 -8 (-15 -2486 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-747)))))) (T -922))
-((-2797 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-823)) (-4 *8 (-1018)) (-4 *6 (-769)) (-4 *2 (-13 (-1067) (-10 -8 (-15 -2486 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-747)))))) (-5 *1 (-922 *6 *7 *8 *5 *2)) (-4 *5 (-920 *8 *6 *7)))))
-(-10 -7 (-15 -2797 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2272 (((-621 (-1143)) $) 16)) (-2084 (((-1139 $) $ (-1143)) 21) (((-1139 |#1|) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-3186 (((-747) $) NIL) (((-747) $ (-621 (-1143))) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-3979 (($ $) NIL (|has| |#1| (-444)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) 8) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-1143) "failed") $) NIL)) (-2659 ((|#1| $) NIL) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-1143) $) NIL)) (-1353 (($ $ $ (-1143)) NIL (|has| |#1| (-170)))) (-2070 (($ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1285 (($ $) NIL (|has| |#1| (-444))) (($ $ (-1143)) NIL (|has| |#1| (-444)))) (-2058 (((-621 $) $) NIL)) (-1420 (((-112) $) NIL (|has| |#1| (-880)))) (-2691 (($ $ |#1| (-521 (-1143)) $) NIL)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-1143) (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-1143) (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) NIL)) (-2261 (($ (-1139 |#1|) (-1143)) NIL) (($ (-1139 $) (-1143)) NIL)) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-521 (-1143))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ (-1143)) NIL)) (-3611 (((-521 (-1143)) $) NIL) (((-747) $ (-1143)) NIL) (((-621 (-747)) $ (-621 (-1143))) NIL)) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-3705 (($ (-1 (-521 (-1143)) (-521 (-1143))) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1520 (((-3 (-1143) "failed") $) 19)) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-3851 (((-1125) $) NIL)) (-4266 (((-3 (-621 $) "failed") $) NIL)) (-2533 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-2 (|:| |var| (-1143)) (|:| -3731 (-747))) "failed") $) NIL)) (-3893 (($ $ (-1143)) 29 (|has| |#1| (-38 (-400 (-549)))))) (-3990 (((-1087) $) NIL)) (-2004 (((-112) $) NIL)) (-2016 ((|#1| $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-444)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-2121 (((-411 $) $) NIL (|has| |#1| (-880)))) (-2042 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-2686 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-1143) |#1|) NIL) (($ $ (-621 (-1143)) (-621 |#1|)) NIL) (($ $ (-1143) $) NIL) (($ $ (-621 (-1143)) (-621 $)) NIL)) (-3602 (($ $ (-1143)) NIL (|has| |#1| (-170)))) (-3456 (($ $ (-1143)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL)) (-3701 (((-521 (-1143)) $) NIL) (((-747) $ (-1143)) NIL) (((-621 (-747)) $ (-621 (-1143))) NIL)) (-2845 (((-863 (-372)) $) NIL (-12 (|has| (-1143) (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-1143) (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-1143) (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-2216 ((|#1| $) NIL (|has| |#1| (-444))) (($ $ (-1143)) NIL (|has| |#1| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-3846 (((-834) $) 25) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-1143)) 27) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#1| (-541)))) (-4141 (((-621 |#1|) $) NIL)) (-2152 ((|#1| $ (-521 (-1143))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2082 (((-747)) NIL)) (-1509 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $ (-1143)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL)) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-923 |#1|) (-13 (-920 |#1| (-521 (-1143)) (-1143)) (-10 -8 (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3893 ($ $ (-1143))) |%noBranch|))) (-1018)) (T -923))
-((-3893 (*1 *1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-923 *3)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)))))
-(-13 (-920 |#1| (-521 (-1143)) (-1143)) (-10 -8 (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3893 ($ $ (-1143))) |%noBranch|)))
-((-2034 (((-2 (|:| -3731 (-747)) (|:| -1570 |#5|) (|:| |radicand| |#5|)) |#3| (-747)) 38)) (-1907 (((-2 (|:| -3731 (-747)) (|:| -1570 |#5|) (|:| |radicand| |#5|)) (-400 (-549)) (-747)) 34)) (-3760 (((-2 (|:| -3731 (-747)) (|:| -1570 |#4|) (|:| |radicand| (-621 |#4|))) |#4| (-747)) 54)) (-4112 (((-2 (|:| -3731 (-747)) (|:| -1570 |#5|) (|:| |radicand| |#5|)) |#5| (-747)) 64 (|has| |#3| (-444)))))
-(((-924 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2034 ((-2 (|:| -3731 (-747)) (|:| -1570 |#5|) (|:| |radicand| |#5|)) |#3| (-747))) (-15 -1907 ((-2 (|:| -3731 (-747)) (|:| -1570 |#5|) (|:| |radicand| |#5|)) (-400 (-549)) (-747))) (IF (|has| |#3| (-444)) (-15 -4112 ((-2 (|:| -3731 (-747)) (|:| -1570 |#5|) (|:| |radicand| |#5|)) |#5| (-747))) |%noBranch|) (-15 -3760 ((-2 (|:| -3731 (-747)) (|:| -1570 |#4|) (|:| |radicand| (-621 |#4|))) |#4| (-747)))) (-769) (-823) (-541) (-920 |#3| |#1| |#2|) (-13 (-356) (-10 -8 (-15 -1394 (|#4| $)) (-15 -1403 (|#4| $)) (-15 -3846 ($ |#4|))))) (T -924))
-((-3760 (*1 *2 *3 *4) (-12 (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-541)) (-4 *3 (-920 *7 *5 *6)) (-5 *2 (-2 (|:| -3731 (-747)) (|:| -1570 *3) (|:| |radicand| (-621 *3)))) (-5 *1 (-924 *5 *6 *7 *3 *8)) (-5 *4 (-747)) (-4 *8 (-13 (-356) (-10 -8 (-15 -1394 (*3 $)) (-15 -1403 (*3 $)) (-15 -3846 ($ *3))))))) (-4112 (*1 *2 *3 *4) (-12 (-4 *7 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-541)) (-4 *8 (-920 *7 *5 *6)) (-5 *2 (-2 (|:| -3731 (-747)) (|:| -1570 *3) (|:| |radicand| *3))) (-5 *1 (-924 *5 *6 *7 *8 *3)) (-5 *4 (-747)) (-4 *3 (-13 (-356) (-10 -8 (-15 -1394 (*8 $)) (-15 -1403 (*8 $)) (-15 -3846 ($ *8))))))) (-1907 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-549))) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-541)) (-4 *8 (-920 *7 *5 *6)) (-5 *2 (-2 (|:| -3731 (-747)) (|:| -1570 *9) (|:| |radicand| *9))) (-5 *1 (-924 *5 *6 *7 *8 *9)) (-5 *4 (-747)) (-4 *9 (-13 (-356) (-10 -8 (-15 -1394 (*8 $)) (-15 -1403 (*8 $)) (-15 -3846 ($ *8))))))) (-2034 (*1 *2 *3 *4) (-12 (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-541)) (-4 *7 (-920 *3 *5 *6)) (-5 *2 (-2 (|:| -3731 (-747)) (|:| -1570 *8) (|:| |radicand| *8))) (-5 *1 (-924 *5 *6 *3 *7 *8)) (-5 *4 (-747)) (-4 *8 (-13 (-356) (-10 -8 (-15 -1394 (*7 $)) (-15 -1403 (*7 $)) (-15 -3846 ($ *7))))))))
-(-10 -7 (-15 -2034 ((-2 (|:| -3731 (-747)) (|:| -1570 |#5|) (|:| |radicand| |#5|)) |#3| (-747))) (-15 -1907 ((-2 (|:| -3731 (-747)) (|:| -1570 |#5|) (|:| |radicand| |#5|)) (-400 (-549)) (-747))) (IF (|has| |#3| (-444)) (-15 -4112 ((-2 (|:| -3731 (-747)) (|:| -1570 |#5|) (|:| |radicand| |#5|)) |#5| (-747))) |%noBranch|) (-15 -3760 ((-2 (|:| -3731 (-747)) (|:| -1570 |#4|) (|:| |radicand| (-621 |#4|))) |#4| (-747))))
-((-3834 (((-112) $ $) NIL)) (-3734 (($ (-1087)) 8)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 14) (((-1087) $) 11)) (-2389 (((-112) $ $) 10)))
-(((-925) (-13 (-1067) (-593 (-1087)) (-10 -8 (-15 -3734 ($ (-1087)))))) (T -925))
-((-3734 (*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-925)))))
-(-13 (-1067) (-593 (-1087)) (-10 -8 (-15 -3734 ($ (-1087)))))
-((-1843 (((-1061 (-219)) $) 8)) (-1832 (((-1061 (-219)) $) 9)) (-3928 (((-621 (-621 (-914 (-219)))) $) 10)) (-3846 (((-834) $) 6)))
+((-3004 (*1 *1 *1) (-12 (-4 *1 (-920 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-444)))) (-3977 (*1 *2 *1 *3) (-12 (-4 *1 (-920 *4 *5 *3)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-5 *2 (-747)))) (-3977 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *6)) (-4 *1 (-920 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 (-747))))) (-4068 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-920 *4 *5 *2)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *2 (-823)))) (-4068 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *6)) (-5 *3 (-621 (-747))) (-4 *1 (-920 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)))) (-2758 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-920 *3 *4 *5)))) (-2082 (*1 *2 *1 *3) (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-5 *2 (-1138 *1)) (-4 *1 (-920 *4 *5 *3)))) (-2082 (*1 *2 *1) (-12 (-4 *1 (-920 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-1138 *3)))) (-2236 (*1 *2 *1) (|partial| -12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)))) (-2391 (*1 *2 *1 *3) (-12 (-4 *1 (-920 *4 *5 *3)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-5 *2 (-747)))) (-2391 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *6)) (-4 *1 (-920 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 (-747))))) (-4218 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-920 *4 *5 *3)))) (-2244 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-920 *4 *5 *2)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *2 (-823)))) (-2244 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *6)) (-5 *3 (-621 (-747))) (-4 *1 (-920 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)))) (-2259 (*1 *1 *2 *3) (-12 (-5 *2 (-1138 *4)) (-4 *4 (-1018)) (-4 *1 (-920 *4 *5 *3)) (-4 *5 (-769)) (-4 *3 (-823)))) (-2259 (*1 *1 *2 *3) (-12 (-5 *2 (-1138 *1)) (-4 *1 (-920 *4 *5 *3)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)))) (-1503 (*1 *2 *1) (|partial| -12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-920 *3 *4 *5)))) (-4093 (*1 *2 *1) (|partial| -12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-920 *3 *4 *5)))) (-1477 (*1 *2 *1) (|partial| -12 (-4 *1 (-920 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-2 (|:| |var| *5) (|:| -1714 (-747)))))) (-2216 (*1 *2 *1) (-12 (-4 *1 (-920 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-747)))) (-2216 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *6)) (-4 *1 (-920 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-747)))) (-2270 (*1 *2 *1) (-12 (-4 *1 (-920 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *5)))) (-2056 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-920 *3 *4 *5)))) (-4114 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)) (-4 *3 (-170)))) (-2740 (*1 *1 *1 *2) (-12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)) (-4 *3 (-170)))) (-1700 (*1 *1 *1 *2) (-12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)) (-4 *3 (-444)))) (-3004 (*1 *1 *1 *2) (-12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)) (-4 *3 (-444)))) (-3239 (*1 *1 *1) (-12 (-4 *1 (-920 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-444)))) (-2620 (*1 *2 *1) (-12 (-4 *3 (-444)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-411 *1)) (-4 *1 (-920 *3 *4 *5)))))
+(-13 (-871 |t#3|) (-319 |t#1| |t#2|) (-302 $) (-505 |t#3| |t#1|) (-505 |t#3| $) (-1009 |t#3|) (-370 |t#1|) (-10 -8 (-15 -3977 ((-747) $ |t#3|)) (-15 -3977 ((-621 (-747)) $ (-621 |t#3|))) (-15 -4068 ($ $ |t#3| (-747))) (-15 -4068 ($ $ (-621 |t#3|) (-621 (-747)))) (-15 -2758 ((-621 $) $)) (-15 -2082 ((-1138 $) $ |t#3|)) (-15 -2082 ((-1138 |t#1|) $)) (-15 -2236 ((-3 |t#3| "failed") $)) (-15 -2391 ((-747) $ |t#3|)) (-15 -2391 ((-621 (-747)) $ (-621 |t#3|))) (-15 -4218 ((-2 (|:| -2262 $) (|:| -1809 $)) $ $ |t#3|)) (-15 -2244 ($ $ |t#3| (-747))) (-15 -2244 ($ $ (-621 |t#3|) (-621 (-747)))) (-15 -2259 ($ (-1138 |t#1|) |t#3|)) (-15 -2259 ($ (-1138 $) |t#3|)) (-15 -1503 ((-3 (-621 $) "failed") $)) (-15 -4093 ((-3 (-621 $) "failed") $)) (-15 -1477 ((-3 (-2 (|:| |var| |t#3|) (|:| -1714 (-747))) "failed") $)) (-15 -2216 ((-747) $)) (-15 -2216 ((-747) $ (-621 |t#3|))) (-15 -2270 ((-621 |t#3|) $)) (-15 -2056 ((-621 $) $)) (IF (|has| |t#1| (-823)) (-6 (-823)) |%noBranch|) (IF (|has| |t#1| (-594 (-525))) (IF (|has| |t#3| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-594 (-863 (-549)))) (IF (|has| |t#3| (-594 (-863 (-549)))) (-6 (-594 (-863 (-549)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-594 (-863 (-372)))) (IF (|has| |t#3| (-594 (-863 (-372)))) (-6 (-594 (-863 (-372)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-857 (-549))) (IF (|has| |t#3| (-857 (-549))) (-6 (-857 (-549))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-857 (-372))) (IF (|has| |t#3| (-857 (-372))) (-6 (-857 (-372))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-170)) (PROGN (-15 -4114 ($ $ $ |t#3|)) (-15 -2740 ($ $ |t#3|))) |%noBranch|) (IF (|has| |t#1| (-444)) (PROGN (-6 (-444)) (-15 -1700 ($ $ |t#3|)) (-15 -3004 ($ $)) (-15 -3004 ($ $ |t#3|)) (-15 -2620 ((-411 $) $)) (-15 -3239 ($ $))) |%noBranch|) (IF (|has| |t#1| (-6 -4334)) (-6 -4334) |%noBranch|) (IF (|has| |t#1| (-880)) (-6 (-880)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-594 (-525)) -12 (|has| |#1| (-594 (-525))) (|has| |#3| (-594 (-525)))) ((-594 (-863 (-372))) -12 (|has| |#1| (-594 (-863 (-372)))) (|has| |#3| (-594 (-863 (-372))))) ((-594 (-863 (-549))) -12 (|has| |#1| (-594 (-863 (-549)))) (|has| |#3| (-594 (-863 (-549))))) ((-283) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-302 $) . T) ((-319 |#1| |#2|) . T) ((-370 |#1|) . T) ((-404 |#1|) . T) ((-444) -1536 (|has| |#1| (-880)) (|has| |#1| (-444))) ((-505 |#3| |#1|) . T) ((-505 |#3| $) . T) ((-505 $ $) . T) ((-541) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-624 #0#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-694 #0#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-703) . T) ((-823) |has| |#1| (-823)) ((-871 |#3|) . T) ((-857 (-372)) -12 (|has| |#1| (-857 (-372))) (|has| |#3| (-857 (-372)))) ((-857 (-549)) -12 (|has| |#1| (-857 (-549))) (|has| |#3| (-857 (-549)))) ((-880) |has| |#1| (-880)) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1009 |#3|) . T) ((-1024 #0#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1183) |has| |#1| (-880)))
+((-2270 (((-621 |#2|) |#5|) 36)) (-2082 (((-1138 |#5|) |#5| |#2| (-1138 |#5|)) 23) (((-400 (-1138 |#5|)) |#5| |#2|) 16)) (-2259 ((|#5| (-400 (-1138 |#5|)) |#2|) 30)) (-2236 (((-3 |#2| "failed") |#5|) 65)) (-4093 (((-3 (-621 |#5|) "failed") |#5|) 59)) (-3257 (((-3 (-2 (|:| |val| |#5|) (|:| -1714 (-549))) "failed") |#5|) 47)) (-1503 (((-3 (-621 |#5|) "failed") |#5|) 61)) (-1477 (((-3 (-2 (|:| |var| |#2|) (|:| -1714 (-549))) "failed") |#5|) 51)))
+(((-921 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2270 ((-621 |#2|) |#5|)) (-15 -2236 ((-3 |#2| "failed") |#5|)) (-15 -2082 ((-400 (-1138 |#5|)) |#5| |#2|)) (-15 -2259 (|#5| (-400 (-1138 |#5|)) |#2|)) (-15 -2082 ((-1138 |#5|) |#5| |#2| (-1138 |#5|))) (-15 -1503 ((-3 (-621 |#5|) "failed") |#5|)) (-15 -4093 ((-3 (-621 |#5|) "failed") |#5|)) (-15 -1477 ((-3 (-2 (|:| |var| |#2|) (|:| -1714 (-549))) "failed") |#5|)) (-15 -3257 ((-3 (-2 (|:| |val| |#5|) (|:| -1714 (-549))) "failed") |#5|))) (-769) (-823) (-1018) (-920 |#3| |#1| |#2|) (-13 (-356) (-10 -8 (-15 -3845 ($ |#4|)) (-15 -1392 (|#4| $)) (-15 -1404 (|#4| $))))) (T -921))
+((-3257 (*1 *2 *3) (|partial| -12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018)) (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-2 (|:| |val| *3) (|:| -1714 (-549)))) (-5 *1 (-921 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-356) (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $)) (-15 -1404 (*7 $))))))) (-1477 (*1 *2 *3) (|partial| -12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018)) (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-2 (|:| |var| *5) (|:| -1714 (-549)))) (-5 *1 (-921 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-356) (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $)) (-15 -1404 (*7 $))))))) (-4093 (*1 *2 *3) (|partial| -12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018)) (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-621 *3)) (-5 *1 (-921 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-356) (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $)) (-15 -1404 (*7 $))))))) (-1503 (*1 *2 *3) (|partial| -12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018)) (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-621 *3)) (-5 *1 (-921 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-356) (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $)) (-15 -1404 (*7 $))))))) (-2082 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1138 *3)) (-4 *3 (-13 (-356) (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $)) (-15 -1404 (*7 $))))) (-4 *7 (-920 *6 *5 *4)) (-4 *5 (-769)) (-4 *4 (-823)) (-4 *6 (-1018)) (-5 *1 (-921 *5 *4 *6 *7 *3)))) (-2259 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-1138 *2))) (-4 *5 (-769)) (-4 *4 (-823)) (-4 *6 (-1018)) (-4 *2 (-13 (-356) (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $)) (-15 -1404 (*7 $))))) (-5 *1 (-921 *5 *4 *6 *7 *2)) (-4 *7 (-920 *6 *5 *4)))) (-2082 (*1 *2 *3 *4) (-12 (-4 *5 (-769)) (-4 *4 (-823)) (-4 *6 (-1018)) (-4 *7 (-920 *6 *5 *4)) (-5 *2 (-400 (-1138 *3))) (-5 *1 (-921 *5 *4 *6 *7 *3)) (-4 *3 (-13 (-356) (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $)) (-15 -1404 (*7 $))))))) (-2236 (*1 *2 *3) (|partial| -12 (-4 *4 (-769)) (-4 *5 (-1018)) (-4 *6 (-920 *5 *4 *2)) (-4 *2 (-823)) (-5 *1 (-921 *4 *2 *5 *6 *3)) (-4 *3 (-13 (-356) (-10 -8 (-15 -3845 ($ *6)) (-15 -1392 (*6 $)) (-15 -1404 (*6 $))))))) (-2270 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018)) (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-621 *5)) (-5 *1 (-921 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-356) (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $)) (-15 -1404 (*7 $))))))))
+(-10 -7 (-15 -2270 ((-621 |#2|) |#5|)) (-15 -2236 ((-3 |#2| "failed") |#5|)) (-15 -2082 ((-400 (-1138 |#5|)) |#5| |#2|)) (-15 -2259 (|#5| (-400 (-1138 |#5|)) |#2|)) (-15 -2082 ((-1138 |#5|) |#5| |#2| (-1138 |#5|))) (-15 -1503 ((-3 (-621 |#5|) "failed") |#5|)) (-15 -4093 ((-3 (-621 |#5|) "failed") |#5|)) (-15 -1477 ((-3 (-2 (|:| |var| |#2|) (|:| -1714 (-549))) "failed") |#5|)) (-15 -3257 ((-3 (-2 (|:| |val| |#5|) (|:| -1714 (-549))) "failed") |#5|)))
+((-2795 ((|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|) 24)))
+(((-922 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2795 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|))) (-769) (-823) (-1018) (-920 |#3| |#1| |#2|) (-13 (-1066) (-10 -8 (-15 -2484 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-747)))))) (T -922))
+((-2795 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-823)) (-4 *8 (-1018)) (-4 *6 (-769)) (-4 *2 (-13 (-1066) (-10 -8 (-15 -2484 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-747)))))) (-5 *1 (-922 *6 *7 *8 *5 *2)) (-4 *5 (-920 *8 *6 *7)))))
+(-10 -7 (-15 -2795 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2270 (((-621 (-1142)) $) 16)) (-2082 (((-1138 $) $ (-1142)) 21) (((-1138 |#1|) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-2216 (((-747) $) NIL) (((-747) $ (-621 (-1142))) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-3239 (($ $) NIL (|has| |#1| (-444)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) 8) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-1142) "failed") $) NIL)) (-2657 ((|#1| $) NIL) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-1142) $) NIL)) (-4114 (($ $ $ (-1142)) NIL (|has| |#1| (-170)))) (-2068 (($ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3004 (($ $) NIL (|has| |#1| (-444))) (($ $ (-1142)) NIL (|has| |#1| (-444)))) (-2056 (((-621 $) $) NIL)) (-1464 (((-112) $) NIL (|has| |#1| (-880)))) (-4064 (($ $ |#1| (-521 (-1142)) $) NIL)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-1142) (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-1142) (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) NIL)) (-2259 (($ (-1138 |#1|) (-1142)) NIL) (($ (-1138 $) (-1142)) NIL)) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-521 (-1142))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ (-1142)) NIL)) (-2391 (((-521 (-1142)) $) NIL) (((-747) $ (-1142)) NIL) (((-621 (-747)) $ (-621 (-1142))) NIL)) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-3224 (($ (-1 (-521 (-1142)) (-521 (-1142))) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-2236 (((-3 (-1142) "failed") $) 19)) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-3441 (((-1124) $) NIL)) (-4093 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-621 $) "failed") $) NIL)) (-1477 (((-3 (-2 (|:| |var| (-1142)) (|:| -1714 (-747))) "failed") $) NIL)) (-3405 (($ $ (-1142)) 29 (|has| |#1| (-38 (-400 (-549)))))) (-3988 (((-1086) $) NIL)) (-2001 (((-112) $) NIL)) (-2011 ((|#1| $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-444)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2119 (((-411 $) $) NIL (|has| |#1| (-880)))) (-2040 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-2684 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-1142) |#1|) NIL) (($ $ (-621 (-1142)) (-621 |#1|)) NIL) (($ $ (-1142) $) NIL) (($ $ (-621 (-1142)) (-621 $)) NIL)) (-2740 (($ $ (-1142)) NIL (|has| |#1| (-170)))) (-3455 (($ $ (-1142)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL)) (-3977 (((-521 (-1142)) $) NIL) (((-747) $ (-1142)) NIL) (((-621 (-747)) $ (-621 (-1142))) NIL)) (-2843 (((-863 (-372)) $) NIL (-12 (|has| (-1142) (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-1142) (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-1142) (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-1700 ((|#1| $) NIL (|has| |#1| (-444))) (($ $ (-1142)) NIL (|has| |#1| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-3845 (((-834) $) 25) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-1142)) 27) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#1| (-541)))) (-2157 (((-621 |#1|) $) NIL)) (-4068 ((|#1| $ (-521 (-1142))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2371 (((-747)) NIL)) (-4046 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $ (-1142)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL)) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-923 |#1|) (-13 (-920 |#1| (-521 (-1142)) (-1142)) (-10 -8 (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3405 ($ $ (-1142))) |%noBranch|))) (-1018)) (T -923))
+((-3405 (*1 *1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-923 *3)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)))))
+(-13 (-920 |#1| (-521 (-1142)) (-1142)) (-10 -8 (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3405 ($ $ (-1142))) |%noBranch|)))
+((-3188 (((-2 (|:| -1714 (-747)) (|:| -1569 |#5|) (|:| |radicand| |#5|)) |#3| (-747)) 38)) (-3038 (((-2 (|:| -1714 (-747)) (|:| -1569 |#5|) (|:| |radicand| |#5|)) (-400 (-549)) (-747)) 34)) (-2183 (((-2 (|:| -1714 (-747)) (|:| -1569 |#4|) (|:| |radicand| (-621 |#4|))) |#4| (-747)) 54)) (-3238 (((-2 (|:| -1714 (-747)) (|:| -1569 |#5|) (|:| |radicand| |#5|)) |#5| (-747)) 64 (|has| |#3| (-444)))))
+(((-924 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3188 ((-2 (|:| -1714 (-747)) (|:| -1569 |#5|) (|:| |radicand| |#5|)) |#3| (-747))) (-15 -3038 ((-2 (|:| -1714 (-747)) (|:| -1569 |#5|) (|:| |radicand| |#5|)) (-400 (-549)) (-747))) (IF (|has| |#3| (-444)) (-15 -3238 ((-2 (|:| -1714 (-747)) (|:| -1569 |#5|) (|:| |radicand| |#5|)) |#5| (-747))) |%noBranch|) (-15 -2183 ((-2 (|:| -1714 (-747)) (|:| -1569 |#4|) (|:| |radicand| (-621 |#4|))) |#4| (-747)))) (-769) (-823) (-541) (-920 |#3| |#1| |#2|) (-13 (-356) (-10 -8 (-15 -1392 (|#4| $)) (-15 -1404 (|#4| $)) (-15 -3845 ($ |#4|))))) (T -924))
+((-2183 (*1 *2 *3 *4) (-12 (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-541)) (-4 *3 (-920 *7 *5 *6)) (-5 *2 (-2 (|:| -1714 (-747)) (|:| -1569 *3) (|:| |radicand| (-621 *3)))) (-5 *1 (-924 *5 *6 *7 *3 *8)) (-5 *4 (-747)) (-4 *8 (-13 (-356) (-10 -8 (-15 -1392 (*3 $)) (-15 -1404 (*3 $)) (-15 -3845 ($ *3))))))) (-3238 (*1 *2 *3 *4) (-12 (-4 *7 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-541)) (-4 *8 (-920 *7 *5 *6)) (-5 *2 (-2 (|:| -1714 (-747)) (|:| -1569 *3) (|:| |radicand| *3))) (-5 *1 (-924 *5 *6 *7 *8 *3)) (-5 *4 (-747)) (-4 *3 (-13 (-356) (-10 -8 (-15 -1392 (*8 $)) (-15 -1404 (*8 $)) (-15 -3845 ($ *8))))))) (-3038 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-549))) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-541)) (-4 *8 (-920 *7 *5 *6)) (-5 *2 (-2 (|:| -1714 (-747)) (|:| -1569 *9) (|:| |radicand| *9))) (-5 *1 (-924 *5 *6 *7 *8 *9)) (-5 *4 (-747)) (-4 *9 (-13 (-356) (-10 -8 (-15 -1392 (*8 $)) (-15 -1404 (*8 $)) (-15 -3845 ($ *8))))))) (-3188 (*1 *2 *3 *4) (-12 (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-541)) (-4 *7 (-920 *3 *5 *6)) (-5 *2 (-2 (|:| -1714 (-747)) (|:| -1569 *8) (|:| |radicand| *8))) (-5 *1 (-924 *5 *6 *3 *7 *8)) (-5 *4 (-747)) (-4 *8 (-13 (-356) (-10 -8 (-15 -1392 (*7 $)) (-15 -1404 (*7 $)) (-15 -3845 ($ *7))))))))
+(-10 -7 (-15 -3188 ((-2 (|:| -1714 (-747)) (|:| -1569 |#5|) (|:| |radicand| |#5|)) |#3| (-747))) (-15 -3038 ((-2 (|:| -1714 (-747)) (|:| -1569 |#5|) (|:| |radicand| |#5|)) (-400 (-549)) (-747))) (IF (|has| |#3| (-444)) (-15 -3238 ((-2 (|:| -1714 (-747)) (|:| -1569 |#5|) (|:| |radicand| |#5|)) |#5| (-747))) |%noBranch|) (-15 -2183 ((-2 (|:| -1714 (-747)) (|:| -1569 |#4|) (|:| |radicand| (-621 |#4|))) |#4| (-747))))
+((-3832 (((-112) $ $) NIL)) (-1921 (($ (-1086)) 8)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 14) (((-1086) $) 11)) (-2387 (((-112) $ $) 10)))
+(((-925) (-13 (-1066) (-593 (-1086)) (-10 -8 (-15 -1921 ($ (-1086)))))) (T -925))
+((-1921 (*1 *1 *2) (-12 (-5 *2 (-1086)) (-5 *1 (-925)))))
+(-13 (-1066) (-593 (-1086)) (-10 -8 (-15 -1921 ($ (-1086)))))
+((-1841 (((-1060 (-219)) $) 8)) (-1830 (((-1060 (-219)) $) 9)) (-2355 (((-621 (-621 (-914 (-219)))) $) 10)) (-3845 (((-834) $) 6)))
(((-926) (-138)) (T -926))
-((-3928 (*1 *2 *1) (-12 (-4 *1 (-926)) (-5 *2 (-621 (-621 (-914 (-219))))))) (-1832 (*1 *2 *1) (-12 (-4 *1 (-926)) (-5 *2 (-1061 (-219))))) (-1843 (*1 *2 *1) (-12 (-4 *1 (-926)) (-5 *2 (-1061 (-219))))))
-(-13 (-593 (-834)) (-10 -8 (-15 -3928 ((-621 (-621 (-914 (-219)))) $)) (-15 -1832 ((-1061 (-219)) $)) (-15 -1843 ((-1061 (-219)) $))))
+((-2355 (*1 *2 *1) (-12 (-4 *1 (-926)) (-5 *2 (-621 (-621 (-914 (-219))))))) (-1830 (*1 *2 *1) (-12 (-4 *1 (-926)) (-5 *2 (-1060 (-219))))) (-1841 (*1 *2 *1) (-12 (-4 *1 (-926)) (-5 *2 (-1060 (-219))))))
+(-13 (-593 (-834)) (-10 -8 (-15 -2355 ((-621 (-621 (-914 (-219)))) $)) (-15 -1830 ((-1060 (-219)) $)) (-15 -1841 ((-1060 (-219)) $))))
(((-593 (-834)) . T))
-((-4138 (((-3 (-665 |#1|) "failed") |#2| (-892)) 15)))
-(((-927 |#1| |#2|) (-10 -7 (-15 -4138 ((-3 (-665 |#1|) "failed") |#2| (-892)))) (-541) (-632 |#1|)) (T -927))
-((-4138 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-892)) (-4 *5 (-541)) (-5 *2 (-665 *5)) (-5 *1 (-927 *5 *3)) (-4 *3 (-632 *5)))))
-(-10 -7 (-15 -4138 ((-3 (-665 |#1|) "failed") |#2| (-892))))
-((-3804 (((-929 |#2|) (-1 |#2| |#1| |#2|) (-929 |#1|) |#2|) 16)) (-2557 ((|#2| (-1 |#2| |#1| |#2|) (-929 |#1|) |#2|) 18)) (-2797 (((-929 |#2|) (-1 |#2| |#1|) (-929 |#1|)) 13)))
-(((-928 |#1| |#2|) (-10 -7 (-15 -3804 ((-929 |#2|) (-1 |#2| |#1| |#2|) (-929 |#1|) |#2|)) (-15 -2557 (|#2| (-1 |#2| |#1| |#2|) (-929 |#1|) |#2|)) (-15 -2797 ((-929 |#2|) (-1 |#2| |#1|) (-929 |#1|)))) (-1180) (-1180)) (T -928))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-929 *5)) (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-929 *6)) (-5 *1 (-928 *5 *6)))) (-2557 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-929 *5)) (-4 *5 (-1180)) (-4 *2 (-1180)) (-5 *1 (-928 *5 *2)))) (-3804 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-929 *6)) (-4 *6 (-1180)) (-4 *5 (-1180)) (-5 *2 (-929 *5)) (-5 *1 (-928 *6 *5)))))
-(-10 -7 (-15 -3804 ((-929 |#2|) (-1 |#2| |#1| |#2|) (-929 |#1|) |#2|)) (-15 -2557 (|#2| (-1 |#2| |#1| |#2|) (-929 |#1|) |#2|)) (-15 -2797 ((-929 |#2|) (-1 |#2| |#1|) (-929 |#1|))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-4142 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-823)))) (-4311 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4338))) (($ $) NIL (-12 (|has| $ (-6 -4338)) (|has| |#1| (-823))))) (-3193 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-823)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 ((|#1| $ (-549) |#1|) 16 (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) NIL (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-1585 (($ $) NIL (|has| $ (-6 -4338)))) (-3064 (($ $) NIL)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-1879 ((|#1| $ (-549) |#1|) 15 (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) 13)) (-2883 (((-549) (-1 (-112) |#1|) $) NIL) (((-549) |#1| $) NIL (|has| |#1| (-1067))) (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1067)))) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3743 (($ (-747) |#1|) 12)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) 10 (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3890 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-823)))) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-2616 (($ |#1| $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-3646 ((|#1| $) NIL (|has| (-549) (-823)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1642 (($ $ |#1|) 17 (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) 11)) (-3341 ((|#1| $ (-549) |#1|) NIL) ((|#1| $ (-549)) 14) (($ $ (-1193 (-549))) NIL)) (-2167 (($ $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2730 (($ $ $ (-549)) NIL (|has| $ (-6 -4338)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) NIL)) (-1952 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-3775 (((-747) $) 8 (|has| $ (-6 -4337)))))
-(((-929 |#1|) (-19 |#1|) (-1180)) (T -929))
+((-1584 (((-3 (-665 |#1|) "failed") |#2| (-892)) 15)))
+(((-927 |#1| |#2|) (-10 -7 (-15 -1584 ((-3 (-665 |#1|) "failed") |#2| (-892)))) (-541) (-632 |#1|)) (T -927))
+((-1584 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-892)) (-4 *5 (-541)) (-5 *2 (-665 *5)) (-5 *1 (-927 *5 *3)) (-4 *3 (-632 *5)))))
+(-10 -7 (-15 -1584 ((-3 (-665 |#1|) "failed") |#2| (-892))))
+((-2394 (((-929 |#2|) (-1 |#2| |#1| |#2|) (-929 |#1|) |#2|) 16)) (-2556 ((|#2| (-1 |#2| |#1| |#2|) (-929 |#1|) |#2|) 18)) (-2795 (((-929 |#2|) (-1 |#2| |#1|) (-929 |#1|)) 13)))
+(((-928 |#1| |#2|) (-10 -7 (-15 -2394 ((-929 |#2|) (-1 |#2| |#1| |#2|) (-929 |#1|) |#2|)) (-15 -2556 (|#2| (-1 |#2| |#1| |#2|) (-929 |#1|) |#2|)) (-15 -2795 ((-929 |#2|) (-1 |#2| |#1|) (-929 |#1|)))) (-1179) (-1179)) (T -928))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-929 *5)) (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-929 *6)) (-5 *1 (-928 *5 *6)))) (-2556 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-929 *5)) (-4 *5 (-1179)) (-4 *2 (-1179)) (-5 *1 (-928 *5 *2)))) (-2394 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-929 *6)) (-4 *6 (-1179)) (-4 *5 (-1179)) (-5 *2 (-929 *5)) (-5 *1 (-928 *6 *5)))))
+(-10 -7 (-15 -2394 ((-929 |#2|) (-1 |#2| |#1| |#2|) (-929 |#1|) |#2|)) (-15 -2556 (|#2| (-1 |#2| |#1| |#2|) (-929 |#1|) |#2|)) (-15 -2795 ((-929 |#2|) (-1 |#2| |#1|) (-929 |#1|))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-2239 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-823)))) (-2015 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4337))) (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-823))))) (-3191 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-823)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 ((|#1| $ (-549) |#1|) 16 (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) NIL (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-2918 (($ $) NIL (|has| $ (-6 -4337)))) (-3062 (($ $) NIL)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4336)))) (-1875 ((|#1| $ (-549) |#1|) 15 (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) 13)) (-2881 (((-549) (-1 (-112) |#1|) $) NIL) (((-549) |#1| $) NIL (|has| |#1| (-1066))) (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1066)))) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-3743 (($ (-747) |#1|) 12)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) 10 (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3050 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-823)))) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-2613 (($ |#1| $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3645 ((|#1| $) NIL (|has| (-549) (-823)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1943 (($ $ |#1|) 17 (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) 11)) (-3339 ((|#1| $ (-549) |#1|) NIL) ((|#1| $ (-549)) 14) (($ $ (-1192 (-549))) NIL)) (-2162 (($ $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2049 (($ $ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) NIL)) (-1950 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-3774 (((-747) $) 8 (|has| $ (-6 -4336)))))
+(((-929 |#1|) (-19 |#1|) (-1179)) (T -929))
NIL
(-19 |#1|)
-((-2204 (($ $ (-1059 $)) 7) (($ $ (-1143)) 6)))
+((-2883 (($ $ (-1058 $)) 7) (($ $ (-1142)) 6)))
(((-930) (-138)) (T -930))
-((-2204 (*1 *1 *1 *2) (-12 (-5 *2 (-1059 *1)) (-4 *1 (-930)))) (-2204 (*1 *1 *1 *2) (-12 (-4 *1 (-930)) (-5 *2 (-1143)))))
-(-13 (-10 -8 (-15 -2204 ($ $ (-1143))) (-15 -2204 ($ $ (-1059 $)))))
-((-2405 (((-2 (|:| -1570 (-621 (-549))) (|:| |poly| (-621 (-1139 |#1|))) (|:| |prim| (-1139 |#1|))) (-621 (-923 |#1|)) (-621 (-1143)) (-1143)) 25) (((-2 (|:| -1570 (-621 (-549))) (|:| |poly| (-621 (-1139 |#1|))) (|:| |prim| (-1139 |#1|))) (-621 (-923 |#1|)) (-621 (-1143))) 26) (((-2 (|:| |coef1| (-549)) (|:| |coef2| (-549)) (|:| |prim| (-1139 |#1|))) (-923 |#1|) (-1143) (-923 |#1|) (-1143)) 43)))
-(((-931 |#1|) (-10 -7 (-15 -2405 ((-2 (|:| |coef1| (-549)) (|:| |coef2| (-549)) (|:| |prim| (-1139 |#1|))) (-923 |#1|) (-1143) (-923 |#1|) (-1143))) (-15 -2405 ((-2 (|:| -1570 (-621 (-549))) (|:| |poly| (-621 (-1139 |#1|))) (|:| |prim| (-1139 |#1|))) (-621 (-923 |#1|)) (-621 (-1143)))) (-15 -2405 ((-2 (|:| -1570 (-621 (-549))) (|:| |poly| (-621 (-1139 |#1|))) (|:| |prim| (-1139 |#1|))) (-621 (-923 |#1|)) (-621 (-1143)) (-1143)))) (-13 (-356) (-145))) (T -931))
-((-2405 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 (-923 *6))) (-5 *4 (-621 (-1143))) (-5 *5 (-1143)) (-4 *6 (-13 (-356) (-145))) (-5 *2 (-2 (|:| -1570 (-621 (-549))) (|:| |poly| (-621 (-1139 *6))) (|:| |prim| (-1139 *6)))) (-5 *1 (-931 *6)))) (-2405 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-621 (-1143))) (-4 *5 (-13 (-356) (-145))) (-5 *2 (-2 (|:| -1570 (-621 (-549))) (|:| |poly| (-621 (-1139 *5))) (|:| |prim| (-1139 *5)))) (-5 *1 (-931 *5)))) (-2405 (*1 *2 *3 *4 *3 *4) (-12 (-5 *3 (-923 *5)) (-5 *4 (-1143)) (-4 *5 (-13 (-356) (-145))) (-5 *2 (-2 (|:| |coef1| (-549)) (|:| |coef2| (-549)) (|:| |prim| (-1139 *5)))) (-5 *1 (-931 *5)))))
-(-10 -7 (-15 -2405 ((-2 (|:| |coef1| (-549)) (|:| |coef2| (-549)) (|:| |prim| (-1139 |#1|))) (-923 |#1|) (-1143) (-923 |#1|) (-1143))) (-15 -2405 ((-2 (|:| -1570 (-621 (-549))) (|:| |poly| (-621 (-1139 |#1|))) (|:| |prim| (-1139 |#1|))) (-621 (-923 |#1|)) (-621 (-1143)))) (-15 -2405 ((-2 (|:| -1570 (-621 (-549))) (|:| |poly| (-621 (-1139 |#1|))) (|:| |prim| (-1139 |#1|))) (-621 (-923 |#1|)) (-621 (-1143)) (-1143))))
-((-2539 (((-621 |#1|) |#1| |#1|) 42)) (-1420 (((-112) |#1|) 39)) (-1513 ((|#1| |#1|) 65)) (-3334 ((|#1| |#1|) 64)))
-(((-932 |#1|) (-10 -7 (-15 -1420 ((-112) |#1|)) (-15 -3334 (|#1| |#1|)) (-15 -1513 (|#1| |#1|)) (-15 -2539 ((-621 |#1|) |#1| |#1|))) (-534)) (T -932))
-((-2539 (*1 *2 *3 *3) (-12 (-5 *2 (-621 *3)) (-5 *1 (-932 *3)) (-4 *3 (-534)))) (-1513 (*1 *2 *2) (-12 (-5 *1 (-932 *2)) (-4 *2 (-534)))) (-3334 (*1 *2 *2) (-12 (-5 *1 (-932 *2)) (-4 *2 (-534)))) (-1420 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-932 *3)) (-4 *3 (-534)))))
-(-10 -7 (-15 -1420 ((-112) |#1|)) (-15 -3334 (|#1| |#1|)) (-15 -1513 (|#1| |#1|)) (-15 -2539 ((-621 |#1|) |#1| |#1|)))
-((-1806 (((-1231) (-834)) 9)))
-(((-933) (-10 -7 (-15 -1806 ((-1231) (-834))))) (T -933))
-((-1806 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1231)) (-5 *1 (-933)))))
-(-10 -7 (-15 -1806 ((-1231) (-834))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 61 (|has| |#1| (-541)))) (-2258 (($ $) 62 (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 28)) (-2659 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-2070 (($ $) 24)) (-2114 (((-3 $ "failed") $) 35)) (-1285 (($ $) NIL (|has| |#1| (-444)))) (-2691 (($ $ |#1| |#2| $) 48)) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) 16)) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| |#2|) NIL)) (-3611 ((|#2| $) 19)) (-3705 (($ (-1 |#2| |#2|) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-2028 (($ $) 23)) (-2043 ((|#1| $) 21)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2004 (((-112) $) 40)) (-2016 ((|#1| $) NIL)) (-1835 (($ $ |#2| |#1| $) 73 (-12 (|has| |#2| (-130)) (|has| |#1| (-541))))) (-2042 (((-3 $ "failed") $ $) 74 (|has| |#1| (-541))) (((-3 $ "failed") $ |#1|) 68 (|has| |#1| (-541)))) (-3701 ((|#2| $) 17)) (-2216 ((|#1| $) NIL (|has| |#1| (-444)))) (-3846 (((-834) $) NIL) (($ (-549)) 39) (($ $) NIL (|has| |#1| (-541))) (($ |#1|) 34) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549))))))) (-4141 (((-621 |#1|) $) NIL)) (-2152 ((|#1| $ |#2|) 31)) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) 15)) (-1509 (($ $ $ (-747)) 57 (|has| |#1| (-170)))) (-1498 (((-112) $ $) 67 (|has| |#1| (-541)))) (-3276 (($) 22 T CONST)) (-3287 (($) 12 T CONST)) (-2389 (((-112) $ $) 66)) (-2513 (($ $ |#1|) 75 (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) 54) (($ $ (-747)) 52)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 51) (($ $ |#1|) 50) (($ |#1| $) 49) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
-(((-934 |#1| |#2|) (-13 (-319 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-541)) (IF (|has| |#2| (-130)) (-15 -1835 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4335)) (-6 -4335) |%noBranch|))) (-1018) (-768)) (T -934))
-((-1835 (*1 *1 *1 *2 *3 *1) (-12 (-5 *1 (-934 *3 *2)) (-4 *2 (-130)) (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *2 (-768)))))
-(-13 (-319 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-541)) (IF (|has| |#2| (-130)) (-15 -1835 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4335)) (-6 -4335) |%noBranch|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL (-1536 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-769)) (|has| |#2| (-769)))))) (-2861 (($ $ $) 63 (-12 (|has| |#1| (-769)) (|has| |#2| (-769))))) (-2001 (((-3 $ "failed") $ $) 50 (-1536 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-769)) (|has| |#2| (-769)))))) (-3614 (((-747)) 34 (-12 (|has| |#1| (-361)) (|has| |#2| (-361))))) (-1472 ((|#2| $) 21)) (-1376 ((|#1| $) 20)) (-1682 (($) NIL (-1536 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-465)) (|has| |#2| (-465))) (-12 (|has| |#1| (-703)) (|has| |#2| (-703))) (-12 (|has| |#1| (-769)) (|has| |#2| (-769)))) CONST)) (-2114 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#1| (-465)) (|has| |#2| (-465))) (-12 (|has| |#1| (-703)) (|has| |#2| (-703)))))) (-3239 (($) NIL (-12 (|has| |#1| (-361)) (|has| |#2| (-361))))) (-2675 (((-112) $) NIL (-1536 (-12 (|has| |#1| (-465)) (|has| |#2| (-465))) (-12 (|has| |#1| (-703)) (|has| |#2| (-703)))))) (-2863 (($ $ $) NIL (-1536 (-12 (|has| |#1| (-769)) (|has| |#2| (-769))) (-12 (|has| |#1| (-823)) (|has| |#2| (-823)))))) (-3575 (($ $ $) NIL (-1536 (-12 (|has| |#1| (-769)) (|has| |#2| (-769))) (-12 (|has| |#1| (-823)) (|has| |#2| (-823)))))) (-2781 (($ |#1| |#2|) 19)) (-1881 (((-892) $) NIL (-12 (|has| |#1| (-361)) (|has| |#2| (-361))))) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 37 (-12 (|has| |#1| (-465)) (|has| |#2| (-465))))) (-3493 (($ (-892)) NIL (-12 (|has| |#1| (-361)) (|has| |#2| (-361))))) (-3990 (((-1087) $) NIL)) (-1955 (($ $ $) NIL (-12 (|has| |#1| (-465)) (|has| |#2| (-465))))) (-3293 (($ $ $) NIL (-12 (|has| |#1| (-465)) (|has| |#2| (-465))))) (-3846 (((-834) $) 14)) (-3276 (($) 40 (-1536 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-769)) (|has| |#2| (-769)))) CONST)) (-3287 (($) 24 (-1536 (-12 (|has| |#1| (-465)) (|has| |#2| (-465))) (-12 (|has| |#1| (-703)) (|has| |#2| (-703)))) CONST)) (-2448 (((-112) $ $) NIL (-1536 (-12 (|has| |#1| (-769)) (|has| |#2| (-769))) (-12 (|has| |#1| (-823)) (|has| |#2| (-823)))))) (-2425 (((-112) $ $) NIL (-1536 (-12 (|has| |#1| (-769)) (|has| |#2| (-769))) (-12 (|has| |#1| (-823)) (|has| |#2| (-823)))))) (-2389 (((-112) $ $) 18)) (-2438 (((-112) $ $) NIL (-1536 (-12 (|has| |#1| (-769)) (|has| |#2| (-769))) (-12 (|has| |#1| (-823)) (|has| |#2| (-823)))))) (-2412 (((-112) $ $) 66 (-1536 (-12 (|has| |#1| (-769)) (|has| |#2| (-769))) (-12 (|has| |#1| (-823)) (|has| |#2| (-823)))))) (-2513 (($ $ $) NIL (-12 (|has| |#1| (-465)) (|has| |#2| (-465))))) (-2500 (($ $ $) 56 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ $) 53 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))))) (-2486 (($ $ $) 43 (-1536 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-769)) (|has| |#2| (-769)))))) (** (($ $ (-549)) NIL (-12 (|has| |#1| (-465)) (|has| |#2| (-465)))) (($ $ (-747)) 31 (-1536 (-12 (|has| |#1| (-465)) (|has| |#2| (-465))) (-12 (|has| |#1| (-703)) (|has| |#2| (-703))))) (($ $ (-892)) NIL (-1536 (-12 (|has| |#1| (-465)) (|has| |#2| (-465))) (-12 (|has| |#1| (-703)) (|has| |#2| (-703)))))) (* (($ (-549) $) 60 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ (-747) $) 46 (-1536 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-769)) (|has| |#2| (-769))))) (($ (-892) $) NIL (-1536 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-769)) (|has| |#2| (-769))))) (($ $ $) 27 (-1536 (-12 (|has| |#1| (-465)) (|has| |#2| (-465))) (-12 (|has| |#1| (-703)) (|has| |#2| (-703)))))))
-(((-935 |#1| |#2|) (-13 (-1067) (-10 -8 (IF (|has| |#1| (-361)) (IF (|has| |#2| (-361)) (-6 (-361)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-703)) (IF (|has| |#2| (-703)) (-6 (-703)) |%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| (-465)) (IF (|has| |#2| (-465)) (-6 (-465)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-769)) (IF (|has| |#2| (-769)) (-6 (-769)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-823)) (IF (|has| |#2| (-823)) (-6 (-823)) |%noBranch|) |%noBranch|) (-15 -2781 ($ |#1| |#2|)) (-15 -1376 (|#1| $)) (-15 -1472 (|#2| $)))) (-1067) (-1067)) (T -935))
-((-2781 (*1 *1 *2 *3) (-12 (-5 *1 (-935 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067)))) (-1376 (*1 *2 *1) (-12 (-4 *2 (-1067)) (-5 *1 (-935 *2 *3)) (-4 *3 (-1067)))) (-1472 (*1 *2 *1) (-12 (-4 *2 (-1067)) (-5 *1 (-935 *3 *2)) (-4 *3 (-1067)))))
-(-13 (-1067) (-10 -8 (IF (|has| |#1| (-361)) (IF (|has| |#2| (-361)) (-6 (-361)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-703)) (IF (|has| |#2| (-703)) (-6 (-703)) |%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| (-465)) (IF (|has| |#2| (-465)) (-6 (-465)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-769)) (IF (|has| |#2| (-769)) (-6 (-769)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-823)) (IF (|has| |#2| (-823)) (-6 (-823)) |%noBranch|) |%noBranch|) (-15 -2781 ($ |#1| |#2|)) (-15 -1376 (|#1| $)) (-15 -1472 (|#2| $))))
-((-4161 (((-1071) $) 12)) (-1997 (($ (-1143) (-1071)) 13)) (-2481 (((-1143) $) 10)) (-3846 (((-834) $) 22)))
-(((-936) (-13 (-593 (-834)) (-10 -8 (-15 -2481 ((-1143) $)) (-15 -4161 ((-1071) $)) (-15 -1997 ($ (-1143) (-1071)))))) (T -936))
-((-2481 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-936)))) (-4161 (*1 *2 *1) (-12 (-5 *2 (-1071)) (-5 *1 (-936)))) (-1997 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1071)) (-5 *1 (-936)))))
-(-13 (-593 (-834)) (-10 -8 (-15 -2481 ((-1143) $)) (-15 -4161 ((-1071) $)) (-15 -1997 ($ (-1143) (-1071)))))
-((-3834 (((-112) $ $) NIL)) (-2272 (((-1069 (-1143)) $) 19)) (-1945 (((-112) $) 26)) (-3011 (((-1143) $) 27)) (-3468 (((-112) $) 24)) (-2802 ((|#1| $) 25)) (-4089 (((-844 $ $) $) 34)) (-2729 (((-112) $) 33)) (-4207 (($ $ $) 12)) (-3397 (($ $) 29)) (-3370 (((-112) $) 28)) (-4008 (($ $) 10)) (-3851 (((-1125) $) NIL)) (-1812 (((-844 $ $) $) 36)) (-2325 (((-112) $) 35)) (-2442 (($ $ $) 13)) (-3990 (((-1087) $) NIL)) (-3403 (((-844 $ $) $) 38)) (-3111 (((-112) $) 37)) (-1583 (($ $ $) 14)) (-3846 (((-834) $) 40) (($ |#1|) 7) (($ (-1143)) 9)) (-3608 (((-844 $ $) $) 32)) (-2650 (((-112) $) 30)) (-1821 (($ $ $) 11)) (-2389 (((-112) $ $) NIL)))
-(((-937 |#1|) (-13 (-938) (-10 -8 (-15 -3846 ($ |#1|)) (-15 -3846 ($ (-1143))) (-15 -2272 ((-1069 (-1143)) $)) (-15 -3468 ((-112) $)) (-15 -2802 (|#1| $)) (-15 -1945 ((-112) $)) (-15 -3011 ((-1143) $)) (-15 -3370 ((-112) $)) (-15 -3397 ($ $)) (-15 -2650 ((-112) $)) (-15 -3608 ((-844 $ $) $)) (-15 -2729 ((-112) $)) (-15 -4089 ((-844 $ $) $)) (-15 -2325 ((-112) $)) (-15 -1812 ((-844 $ $) $)) (-15 -3111 ((-112) $)) (-15 -3403 ((-844 $ $) $)))) (-938)) (T -937))
-((-3846 (*1 *1 *2) (-12 (-5 *1 (-937 *2)) (-4 *2 (-938)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-2272 (*1 *2 *1) (-12 (-5 *2 (-1069 (-1143))) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-3468 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-2802 (*1 *2 *1) (-12 (-5 *1 (-937 *2)) (-4 *2 (-938)))) (-1945 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-3011 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-3370 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-3397 (*1 *1 *1) (-12 (-5 *1 (-937 *2)) (-4 *2 (-938)))) (-2650 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-3608 (*1 *2 *1) (-12 (-5 *2 (-844 (-937 *3) (-937 *3))) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-2729 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-4089 (*1 *2 *1) (-12 (-5 *2 (-844 (-937 *3) (-937 *3))) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-2325 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-1812 (*1 *2 *1) (-12 (-5 *2 (-844 (-937 *3) (-937 *3))) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-3111 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-3403 (*1 *2 *1) (-12 (-5 *2 (-844 (-937 *3) (-937 *3))) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
-(-13 (-938) (-10 -8 (-15 -3846 ($ |#1|)) (-15 -3846 ($ (-1143))) (-15 -2272 ((-1069 (-1143)) $)) (-15 -3468 ((-112) $)) (-15 -2802 (|#1| $)) (-15 -1945 ((-112) $)) (-15 -3011 ((-1143) $)) (-15 -3370 ((-112) $)) (-15 -3397 ($ $)) (-15 -2650 ((-112) $)) (-15 -3608 ((-844 $ $) $)) (-15 -2729 ((-112) $)) (-15 -4089 ((-844 $ $) $)) (-15 -2325 ((-112) $)) (-15 -1812 ((-844 $ $) $)) (-15 -3111 ((-112) $)) (-15 -3403 ((-844 $ $) $))))
-((-3834 (((-112) $ $) 7)) (-4207 (($ $ $) 15)) (-4008 (($ $) 17)) (-3851 (((-1125) $) 9)) (-2442 (($ $ $) 14)) (-3990 (((-1087) $) 10)) (-1583 (($ $ $) 13)) (-3846 (((-834) $) 11)) (-1821 (($ $ $) 16)) (-2389 (((-112) $ $) 6)))
+((-2883 (*1 *1 *1 *2) (-12 (-5 *2 (-1058 *1)) (-4 *1 (-930)))) (-2883 (*1 *1 *1 *2) (-12 (-4 *1 (-930)) (-5 *2 (-1142)))))
+(-13 (-10 -8 (-15 -2883 ($ $ (-1142))) (-15 -2883 ($ $ (-1058 $)))))
+((-1545 (((-2 (|:| -1569 (-621 (-549))) (|:| |poly| (-621 (-1138 |#1|))) (|:| |prim| (-1138 |#1|))) (-621 (-923 |#1|)) (-621 (-1142)) (-1142)) 25) (((-2 (|:| -1569 (-621 (-549))) (|:| |poly| (-621 (-1138 |#1|))) (|:| |prim| (-1138 |#1|))) (-621 (-923 |#1|)) (-621 (-1142))) 26) (((-2 (|:| |coef1| (-549)) (|:| |coef2| (-549)) (|:| |prim| (-1138 |#1|))) (-923 |#1|) (-1142) (-923 |#1|) (-1142)) 43)))
+(((-931 |#1|) (-10 -7 (-15 -1545 ((-2 (|:| |coef1| (-549)) (|:| |coef2| (-549)) (|:| |prim| (-1138 |#1|))) (-923 |#1|) (-1142) (-923 |#1|) (-1142))) (-15 -1545 ((-2 (|:| -1569 (-621 (-549))) (|:| |poly| (-621 (-1138 |#1|))) (|:| |prim| (-1138 |#1|))) (-621 (-923 |#1|)) (-621 (-1142)))) (-15 -1545 ((-2 (|:| -1569 (-621 (-549))) (|:| |poly| (-621 (-1138 |#1|))) (|:| |prim| (-1138 |#1|))) (-621 (-923 |#1|)) (-621 (-1142)) (-1142)))) (-13 (-356) (-145))) (T -931))
+((-1545 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 (-923 *6))) (-5 *4 (-621 (-1142))) (-5 *5 (-1142)) (-4 *6 (-13 (-356) (-145))) (-5 *2 (-2 (|:| -1569 (-621 (-549))) (|:| |poly| (-621 (-1138 *6))) (|:| |prim| (-1138 *6)))) (-5 *1 (-931 *6)))) (-1545 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-621 (-1142))) (-4 *5 (-13 (-356) (-145))) (-5 *2 (-2 (|:| -1569 (-621 (-549))) (|:| |poly| (-621 (-1138 *5))) (|:| |prim| (-1138 *5)))) (-5 *1 (-931 *5)))) (-1545 (*1 *2 *3 *4 *3 *4) (-12 (-5 *3 (-923 *5)) (-5 *4 (-1142)) (-4 *5 (-13 (-356) (-145))) (-5 *2 (-2 (|:| |coef1| (-549)) (|:| |coef2| (-549)) (|:| |prim| (-1138 *5)))) (-5 *1 (-931 *5)))))
+(-10 -7 (-15 -1545 ((-2 (|:| |coef1| (-549)) (|:| |coef2| (-549)) (|:| |prim| (-1138 |#1|))) (-923 |#1|) (-1142) (-923 |#1|) (-1142))) (-15 -1545 ((-2 (|:| -1569 (-621 (-549))) (|:| |poly| (-621 (-1138 |#1|))) (|:| |prim| (-1138 |#1|))) (-621 (-923 |#1|)) (-621 (-1142)))) (-15 -1545 ((-2 (|:| -1569 (-621 (-549))) (|:| |poly| (-621 (-1138 |#1|))) (|:| |prim| (-1138 |#1|))) (-621 (-923 |#1|)) (-621 (-1142)) (-1142))))
+((-3930 (((-621 |#1|) |#1| |#1|) 42)) (-1464 (((-112) |#1|) 39)) (-1365 ((|#1| |#1|) 65)) (-3138 ((|#1| |#1|) 64)))
+(((-932 |#1|) (-10 -7 (-15 -1464 ((-112) |#1|)) (-15 -3138 (|#1| |#1|)) (-15 -1365 (|#1| |#1|)) (-15 -3930 ((-621 |#1|) |#1| |#1|))) (-534)) (T -932))
+((-3930 (*1 *2 *3 *3) (-12 (-5 *2 (-621 *3)) (-5 *1 (-932 *3)) (-4 *3 (-534)))) (-1365 (*1 *2 *2) (-12 (-5 *1 (-932 *2)) (-4 *2 (-534)))) (-3138 (*1 *2 *2) (-12 (-5 *1 (-932 *2)) (-4 *2 (-534)))) (-1464 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-932 *3)) (-4 *3 (-534)))))
+(-10 -7 (-15 -1464 ((-112) |#1|)) (-15 -3138 (|#1| |#1|)) (-15 -1365 (|#1| |#1|)) (-15 -3930 ((-621 |#1|) |#1| |#1|)))
+((-1803 (((-1230) (-834)) 9)))
+(((-933) (-10 -7 (-15 -1803 ((-1230) (-834))))) (T -933))
+((-1803 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1230)) (-5 *1 (-933)))))
+(-10 -7 (-15 -1803 ((-1230) (-834))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 61 (|has| |#1| (-541)))) (-3044 (($ $) 62 (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 28)) (-2657 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-2068 (($ $) 24)) (-2612 (((-3 $ "failed") $) 35)) (-3004 (($ $) NIL (|has| |#1| (-444)))) (-4064 (($ $ |#1| |#2| $) 48)) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) 16)) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| |#2|) NIL)) (-2391 ((|#2| $) 19)) (-3224 (($ (-1 |#2| |#2|) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-2027 (($ $) 23)) (-2042 ((|#1| $) 21)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2001 (((-112) $) 40)) (-2011 ((|#1| $) NIL)) (-4097 (($ $ |#2| |#1| $) 73 (-12 (|has| |#2| (-130)) (|has| |#1| (-541))))) (-2040 (((-3 $ "failed") $ $) 74 (|has| |#1| (-541))) (((-3 $ "failed") $ |#1|) 68 (|has| |#1| (-541)))) (-3977 ((|#2| $) 17)) (-1700 ((|#1| $) NIL (|has| |#1| (-444)))) (-3845 (((-834) $) NIL) (($ (-549)) 39) (($ $) NIL (|has| |#1| (-541))) (($ |#1|) 34) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549))))))) (-2157 (((-621 |#1|) $) NIL)) (-4068 ((|#1| $ |#2|) 31)) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) 15)) (-4046 (($ $ $ (-747)) 57 (|has| |#1| (-170)))) (-2441 (((-112) $ $) 67 (|has| |#1| (-541)))) (-3274 (($) 22 T CONST)) (-3286 (($) 12 T CONST)) (-2387 (((-112) $ $) 66)) (-2511 (($ $ |#1|) 75 (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) 54) (($ $ (-747)) 52)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 51) (($ $ |#1|) 50) (($ |#1| $) 49) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
+(((-934 |#1| |#2|) (-13 (-319 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-541)) (IF (|has| |#2| (-130)) (-15 -4097 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4334)) (-6 -4334) |%noBranch|))) (-1018) (-768)) (T -934))
+((-4097 (*1 *1 *1 *2 *3 *1) (-12 (-5 *1 (-934 *3 *2)) (-4 *2 (-130)) (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *2 (-768)))))
+(-13 (-319 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-541)) (IF (|has| |#2| (-130)) (-15 -4097 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4334)) (-6 -4334) |%noBranch|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL (-1536 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-769)) (|has| |#2| (-769)))))) (-4280 (($ $ $) 63 (-12 (|has| |#1| (-769)) (|has| |#2| (-769))))) (-2416 (((-3 $ "failed") $ $) 50 (-1536 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-769)) (|has| |#2| (-769)))))) (-3614 (((-747)) 34 (-12 (|has| |#1| (-361)) (|has| |#2| (-361))))) (-3850 ((|#2| $) 21)) (-3537 ((|#1| $) 20)) (-3034 (($) NIL (-1536 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-465)) (|has| |#2| (-465))) (-12 (|has| |#1| (-703)) (|has| |#2| (-703))) (-12 (|has| |#1| (-769)) (|has| |#2| (-769)))) CONST)) (-2612 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| |#1| (-465)) (|has| |#2| (-465))) (-12 (|has| |#1| (-703)) (|has| |#2| (-703)))))) (-3237 (($) NIL (-12 (|has| |#1| (-361)) (|has| |#2| (-361))))) (-2297 (((-112) $) NIL (-1536 (-12 (|has| |#1| (-465)) (|has| |#2| (-465))) (-12 (|has| |#1| (-703)) (|has| |#2| (-703)))))) (-2861 (($ $ $) NIL (-1536 (-12 (|has| |#1| (-769)) (|has| |#2| (-769))) (-12 (|has| |#1| (-823)) (|has| |#2| (-823)))))) (-3574 (($ $ $) NIL (-1536 (-12 (|has| |#1| (-769)) (|has| |#2| (-769))) (-12 (|has| |#1| (-823)) (|has| |#2| (-823)))))) (-1930 (($ |#1| |#2|) 19)) (-3309 (((-892) $) NIL (-12 (|has| |#1| (-361)) (|has| |#2| (-361))))) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 37 (-12 (|has| |#1| (-465)) (|has| |#2| (-465))))) (-3494 (($ (-892)) NIL (-12 (|has| |#1| (-361)) (|has| |#2| (-361))))) (-3988 (((-1086) $) NIL)) (-1795 (($ $ $) NIL (-12 (|has| |#1| (-465)) (|has| |#2| (-465))))) (-3870 (($ $ $) NIL (-12 (|has| |#1| (-465)) (|has| |#2| (-465))))) (-3845 (((-834) $) 14)) (-3274 (($) 40 (-1536 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-769)) (|has| |#2| (-769)))) CONST)) (-3286 (($) 24 (-1536 (-12 (|has| |#1| (-465)) (|has| |#2| (-465))) (-12 (|has| |#1| (-703)) (|has| |#2| (-703)))) CONST)) (-2447 (((-112) $ $) NIL (-1536 (-12 (|has| |#1| (-769)) (|has| |#2| (-769))) (-12 (|has| |#1| (-823)) (|has| |#2| (-823)))))) (-2423 (((-112) $ $) NIL (-1536 (-12 (|has| |#1| (-769)) (|has| |#2| (-769))) (-12 (|has| |#1| (-823)) (|has| |#2| (-823)))))) (-2387 (((-112) $ $) 18)) (-2436 (((-112) $ $) NIL (-1536 (-12 (|has| |#1| (-769)) (|has| |#2| (-769))) (-12 (|has| |#1| (-823)) (|has| |#2| (-823)))))) (-2409 (((-112) $ $) 66 (-1536 (-12 (|has| |#1| (-769)) (|has| |#2| (-769))) (-12 (|has| |#1| (-823)) (|has| |#2| (-823)))))) (-2511 (($ $ $) NIL (-12 (|has| |#1| (-465)) (|has| |#2| (-465))))) (-2498 (($ $ $) 56 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ $) 53 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))))) (-2484 (($ $ $) 43 (-1536 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-769)) (|has| |#2| (-769)))))) (** (($ $ (-549)) NIL (-12 (|has| |#1| (-465)) (|has| |#2| (-465)))) (($ $ (-747)) 31 (-1536 (-12 (|has| |#1| (-465)) (|has| |#2| (-465))) (-12 (|has| |#1| (-703)) (|has| |#2| (-703))))) (($ $ (-892)) NIL (-1536 (-12 (|has| |#1| (-465)) (|has| |#2| (-465))) (-12 (|has| |#1| (-703)) (|has| |#2| (-703)))))) (* (($ (-549) $) 60 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ (-747) $) 46 (-1536 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-769)) (|has| |#2| (-769))))) (($ (-892) $) NIL (-1536 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-769)) (|has| |#2| (-769))))) (($ $ $) 27 (-1536 (-12 (|has| |#1| (-465)) (|has| |#2| (-465))) (-12 (|has| |#1| (-703)) (|has| |#2| (-703)))))))
+(((-935 |#1| |#2|) (-13 (-1066) (-10 -8 (IF (|has| |#1| (-361)) (IF (|has| |#2| (-361)) (-6 (-361)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-703)) (IF (|has| |#2| (-703)) (-6 (-703)) |%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| (-465)) (IF (|has| |#2| (-465)) (-6 (-465)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-769)) (IF (|has| |#2| (-769)) (-6 (-769)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-823)) (IF (|has| |#2| (-823)) (-6 (-823)) |%noBranch|) |%noBranch|) (-15 -1930 ($ |#1| |#2|)) (-15 -3537 (|#1| $)) (-15 -3850 (|#2| $)))) (-1066) (-1066)) (T -935))
+((-1930 (*1 *1 *2 *3) (-12 (-5 *1 (-935 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066)))) (-3537 (*1 *2 *1) (-12 (-4 *2 (-1066)) (-5 *1 (-935 *2 *3)) (-4 *3 (-1066)))) (-3850 (*1 *2 *1) (-12 (-4 *2 (-1066)) (-5 *1 (-935 *3 *2)) (-4 *3 (-1066)))))
+(-13 (-1066) (-10 -8 (IF (|has| |#1| (-361)) (IF (|has| |#2| (-361)) (-6 (-361)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-703)) (IF (|has| |#2| (-703)) (-6 (-703)) |%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| (-465)) (IF (|has| |#2| (-465)) (-6 (-465)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-769)) (IF (|has| |#2| (-769)) (-6 (-769)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-823)) (IF (|has| |#2| (-823)) (-6 (-823)) |%noBranch|) |%noBranch|) (-15 -1930 ($ |#1| |#2|)) (-15 -3537 (|#1| $)) (-15 -3850 (|#2| $))))
+((-4160 (((-1070) $) 12)) (-1996 (($ (-1142) (-1070)) 13)) (-2479 (((-1142) $) 10)) (-3845 (((-834) $) 22)))
+(((-936) (-13 (-593 (-834)) (-10 -8 (-15 -2479 ((-1142) $)) (-15 -4160 ((-1070) $)) (-15 -1996 ($ (-1142) (-1070)))))) (T -936))
+((-2479 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-936)))) (-4160 (*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-936)))) (-1996 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1070)) (-5 *1 (-936)))))
+(-13 (-593 (-834)) (-10 -8 (-15 -2479 ((-1142) $)) (-15 -4160 ((-1070) $)) (-15 -1996 ($ (-1142) (-1070)))))
+((-3832 (((-112) $ $) NIL)) (-2270 (((-1068 (-1142)) $) 19)) (-2178 (((-112) $) 26)) (-3009 (((-1142) $) 27)) (-2932 (((-112) $) 24)) (-2977 ((|#1| $) 25)) (-2005 (((-844 $ $) $) 34)) (-2064 (((-112) $) 33)) (-4206 (($ $ $) 12)) (-2380 (($ $) 29)) (-3368 (((-112) $) 28)) (-4007 (($ $) 10)) (-3441 (((-1124) $) NIL)) (-3594 (((-844 $ $) $) 36)) (-2682 (((-112) $) 35)) (-2440 (($ $ $) 13)) (-3988 (((-1086) $) NIL)) (-2671 (((-844 $ $) $) 38)) (-3180 (((-112) $) 37)) (-2765 (($ $ $) 14)) (-3845 (((-834) $) 40) (($ |#1|) 7) (($ (-1142)) 9)) (-2018 (((-844 $ $) $) 32)) (-4307 (((-112) $) 30)) (-1819 (($ $ $) 11)) (-2387 (((-112) $ $) NIL)))
+(((-937 |#1|) (-13 (-938) (-10 -8 (-15 -3845 ($ |#1|)) (-15 -3845 ($ (-1142))) (-15 -2270 ((-1068 (-1142)) $)) (-15 -2932 ((-112) $)) (-15 -2977 (|#1| $)) (-15 -2178 ((-112) $)) (-15 -3009 ((-1142) $)) (-15 -3368 ((-112) $)) (-15 -2380 ($ $)) (-15 -4307 ((-112) $)) (-15 -2018 ((-844 $ $) $)) (-15 -2064 ((-112) $)) (-15 -2005 ((-844 $ $) $)) (-15 -2682 ((-112) $)) (-15 -3594 ((-844 $ $) $)) (-15 -3180 ((-112) $)) (-15 -2671 ((-844 $ $) $)))) (-938)) (T -937))
+((-3845 (*1 *1 *2) (-12 (-5 *1 (-937 *2)) (-4 *2 (-938)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-2270 (*1 *2 *1) (-12 (-5 *2 (-1068 (-1142))) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-2932 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-2977 (*1 *2 *1) (-12 (-5 *1 (-937 *2)) (-4 *2 (-938)))) (-2178 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-3009 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-3368 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-2380 (*1 *1 *1) (-12 (-5 *1 (-937 *2)) (-4 *2 (-938)))) (-4307 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-2018 (*1 *2 *1) (-12 (-5 *2 (-844 (-937 *3) (-937 *3))) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-2064 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-2005 (*1 *2 *1) (-12 (-5 *2 (-844 (-937 *3) (-937 *3))) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-2682 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-3594 (*1 *2 *1) (-12 (-5 *2 (-844 (-937 *3) (-937 *3))) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-3180 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))) (-2671 (*1 *2 *1) (-12 (-5 *2 (-844 (-937 *3) (-937 *3))) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
+(-13 (-938) (-10 -8 (-15 -3845 ($ |#1|)) (-15 -3845 ($ (-1142))) (-15 -2270 ((-1068 (-1142)) $)) (-15 -2932 ((-112) $)) (-15 -2977 (|#1| $)) (-15 -2178 ((-112) $)) (-15 -3009 ((-1142) $)) (-15 -3368 ((-112) $)) (-15 -2380 ($ $)) (-15 -4307 ((-112) $)) (-15 -2018 ((-844 $ $) $)) (-15 -2064 ((-112) $)) (-15 -2005 ((-844 $ $) $)) (-15 -2682 ((-112) $)) (-15 -3594 ((-844 $ $) $)) (-15 -3180 ((-112) $)) (-15 -2671 ((-844 $ $) $))))
+((-3832 (((-112) $ $) 7)) (-4206 (($ $ $) 15)) (-4007 (($ $) 17)) (-3441 (((-1124) $) 9)) (-2440 (($ $ $) 14)) (-3988 (((-1086) $) 10)) (-2765 (($ $ $) 13)) (-3845 (((-834) $) 11)) (-1819 (($ $ $) 16)) (-2387 (((-112) $ $) 6)))
(((-938) (-138)) (T -938))
-((-4008 (*1 *1 *1) (-4 *1 (-938))) (-1821 (*1 *1 *1 *1) (-4 *1 (-938))) (-4207 (*1 *1 *1 *1) (-4 *1 (-938))) (-2442 (*1 *1 *1 *1) (-4 *1 (-938))) (-1583 (*1 *1 *1 *1) (-4 *1 (-938))))
-(-13 (-1067) (-10 -8 (-15 -4008 ($ $)) (-15 -1821 ($ $ $)) (-15 -4207 ($ $ $)) (-15 -2442 ($ $ $)) (-15 -1583 ($ $ $))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-1584 (((-112) $ (-747)) 8)) (-1682 (($) 7 T CONST)) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) 9)) (-1303 (($ $ $) 43)) (-3890 (($ $ $) 44)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-3575 ((|#1| $) 45)) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3504 ((|#1| $) 39)) (-2751 (($ |#1| $) 40)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-3325 ((|#1| $) 41)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3624 (($ (-621 |#1|)) 42)) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
+((-4007 (*1 *1 *1) (-4 *1 (-938))) (-1819 (*1 *1 *1 *1) (-4 *1 (-938))) (-4206 (*1 *1 *1 *1) (-4 *1 (-938))) (-2440 (*1 *1 *1 *1) (-4 *1 (-938))) (-2765 (*1 *1 *1 *1) (-4 *1 (-938))))
+(-13 (-1066) (-10 -8 (-15 -4007 ($ $)) (-15 -1819 ($ $ $)) (-15 -4206 ($ $ $)) (-15 -2440 ($ $ $)) (-15 -2765 ($ $ $))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-2850 (((-112) $ (-747)) 8)) (-3034 (($) 7 T CONST)) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) 9)) (-3021 (($ $ $) 43)) (-3050 (($ $ $) 44)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3574 ((|#1| $) 45)) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-2548 ((|#1| $) 39)) (-1799 (($ |#1| $) 40)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3536 ((|#1| $) 41)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-4213 (($ (-621 |#1|)) 42)) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
(((-939 |#1|) (-138) (-823)) (T -939))
-((-3575 (*1 *2 *1) (-12 (-4 *1 (-939 *2)) (-4 *2 (-823)))) (-3890 (*1 *1 *1 *1) (-12 (-4 *1 (-939 *2)) (-4 *2 (-823)))) (-1303 (*1 *1 *1 *1) (-12 (-4 *1 (-939 *2)) (-4 *2 (-823)))))
-(-13 (-106 |t#1|) (-10 -8 (-6 -4337) (-15 -3575 (|t#1| $)) (-15 -3890 ($ $ $)) (-15 -1303 ($ $ $))))
-(((-34) . T) ((-106 |#1|) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-1067) |has| |#1| (-1067)) ((-1180) . T))
-((-2885 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3727 |#2|)) |#2| |#2|) 85)) (-1910 ((|#2| |#2| |#2|) 83)) (-2499 (((-2 (|:| |coef2| |#2|) (|:| -3727 |#2|)) |#2| |#2|) 87)) (-2968 (((-2 (|:| |coef1| |#2|) (|:| -3727 |#2|)) |#2| |#2|) 89)) (-1674 (((-2 (|:| |coef2| |#2|) (|:| -2558 |#1|)) |#2| |#2|) 107 (|has| |#1| (-444)))) (-3229 (((-2 (|:| |coef2| |#2|) (|:| -1353 |#1|)) |#2| |#2|) 46)) (-3915 (((-2 (|:| |coef2| |#2|) (|:| -1353 |#1|)) |#2| |#2|) 64)) (-3797 (((-2 (|:| |coef1| |#2|) (|:| -1353 |#1|)) |#2| |#2|) 66)) (-4211 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 78)) (-3077 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747)) 71)) (-2575 (((-2 (|:| |coef2| |#2|) (|:| -3602 |#1|)) |#2|) 97)) (-3138 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747)) 74)) (-1296 (((-621 (-747)) |#2| |#2|) 82)) (-2371 ((|#1| |#2| |#2|) 42)) (-3143 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2558 |#1|)) |#2| |#2|) 105 (|has| |#1| (-444)))) (-2558 ((|#1| |#2| |#2|) 103 (|has| |#1| (-444)))) (-1399 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1353 |#1|)) |#2| |#2|) 44)) (-3704 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1353 |#1|)) |#2| |#2|) 63)) (-1353 ((|#1| |#2| |#2|) 61)) (-3921 (((-2 (|:| -1570 |#1|) (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2|) 35)) (-2952 ((|#2| |#2| |#2| |#2| |#1|) 53)) (-2381 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 76)) (-3072 ((|#2| |#2| |#2|) 75)) (-2897 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747)) 69)) (-2563 ((|#2| |#2| |#2| (-747)) 67)) (-3727 ((|#2| |#2| |#2|) 111 (|has| |#1| (-444)))) (-2042 (((-1226 |#2|) (-1226 |#2|) |#1|) 21)) (-3148 (((-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2|) 39)) (-3470 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3602 |#1|)) |#2|) 95)) (-3602 ((|#1| |#2|) 92)) (-3459 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747)) 73)) (-3313 ((|#2| |#2| |#2| (-747)) 72)) (-2172 (((-621 |#2|) |#2| |#2|) 80)) (-3424 ((|#2| |#2| |#1| |#1| (-747)) 50)) (-1632 ((|#1| |#1| |#1| (-747)) 49)) (* (((-1226 |#2|) |#1| (-1226 |#2|)) 16)))
-(((-940 |#1| |#2|) (-10 -7 (-15 -1353 (|#1| |#2| |#2|)) (-15 -3704 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1353 |#1|)) |#2| |#2|)) (-15 -3915 ((-2 (|:| |coef2| |#2|) (|:| -1353 |#1|)) |#2| |#2|)) (-15 -3797 ((-2 (|:| |coef1| |#2|) (|:| -1353 |#1|)) |#2| |#2|)) (-15 -2563 (|#2| |#2| |#2| (-747))) (-15 -2897 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747))) (-15 -3077 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747))) (-15 -3313 (|#2| |#2| |#2| (-747))) (-15 -3459 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747))) (-15 -3138 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747))) (-15 -3072 (|#2| |#2| |#2|)) (-15 -2381 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -4211 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -1910 (|#2| |#2| |#2|)) (-15 -2885 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3727 |#2|)) |#2| |#2|)) (-15 -2499 ((-2 (|:| |coef2| |#2|) (|:| -3727 |#2|)) |#2| |#2|)) (-15 -2968 ((-2 (|:| |coef1| |#2|) (|:| -3727 |#2|)) |#2| |#2|)) (-15 -3602 (|#1| |#2|)) (-15 -3470 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3602 |#1|)) |#2|)) (-15 -2575 ((-2 (|:| |coef2| |#2|) (|:| -3602 |#1|)) |#2|)) (-15 -2172 ((-621 |#2|) |#2| |#2|)) (-15 -1296 ((-621 (-747)) |#2| |#2|)) (IF (|has| |#1| (-444)) (PROGN (-15 -2558 (|#1| |#2| |#2|)) (-15 -3143 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2558 |#1|)) |#2| |#2|)) (-15 -1674 ((-2 (|:| |coef2| |#2|) (|:| -2558 |#1|)) |#2| |#2|)) (-15 -3727 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1226 |#2|) |#1| (-1226 |#2|))) (-15 -2042 ((-1226 |#2|) (-1226 |#2|) |#1|)) (-15 -3921 ((-2 (|:| -1570 |#1|) (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2|)) (-15 -3148 ((-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2|)) (-15 -1632 (|#1| |#1| |#1| (-747))) (-15 -3424 (|#2| |#2| |#1| |#1| (-747))) (-15 -2952 (|#2| |#2| |#2| |#2| |#1|)) (-15 -2371 (|#1| |#2| |#2|)) (-15 -1399 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1353 |#1|)) |#2| |#2|)) (-15 -3229 ((-2 (|:| |coef2| |#2|) (|:| -1353 |#1|)) |#2| |#2|))) (-541) (-1202 |#1|)) (T -940))
-((-3229 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1353 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-1399 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1353 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-2371 (*1 *2 *3 *3) (-12 (-4 *2 (-541)) (-5 *1 (-940 *2 *3)) (-4 *3 (-1202 *2)))) (-2952 (*1 *2 *2 *2 *2 *3) (-12 (-4 *3 (-541)) (-5 *1 (-940 *3 *2)) (-4 *2 (-1202 *3)))) (-3424 (*1 *2 *2 *3 *3 *4) (-12 (-5 *4 (-747)) (-4 *3 (-541)) (-5 *1 (-940 *3 *2)) (-4 *2 (-1202 *3)))) (-1632 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-747)) (-4 *2 (-541)) (-5 *1 (-940 *2 *4)) (-4 *4 (-1202 *2)))) (-3148 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-3921 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| -1570 *4) (|:| -4013 *3) (|:| -3675 *3))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-2042 (*1 *2 *2 *3) (-12 (-5 *2 (-1226 *4)) (-4 *4 (-1202 *3)) (-4 *3 (-541)) (-5 *1 (-940 *3 *4)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1226 *4)) (-4 *4 (-1202 *3)) (-4 *3 (-541)) (-5 *1 (-940 *3 *4)))) (-3727 (*1 *2 *2 *2) (-12 (-4 *3 (-444)) (-4 *3 (-541)) (-5 *1 (-940 *3 *2)) (-4 *2 (-1202 *3)))) (-1674 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2558 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-3143 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2558 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-2558 (*1 *2 *3 *3) (-12 (-4 *2 (-541)) (-4 *2 (-444)) (-5 *1 (-940 *2 *3)) (-4 *3 (-1202 *2)))) (-1296 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-621 (-747))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-2172 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-621 *3)) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-2575 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3602 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-3470 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3602 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-3602 (*1 *2 *3) (-12 (-4 *2 (-541)) (-5 *1 (-940 *2 *3)) (-4 *3 (-1202 *2)))) (-2968 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -3727 *3))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-2499 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3727 *3))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-2885 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3727 *3))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-1910 (*1 *2 *2 *2) (-12 (-4 *3 (-541)) (-5 *1 (-940 *3 *2)) (-4 *2 (-1202 *3)))) (-4211 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-2381 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-3072 (*1 *2 *2 *2) (-12 (-4 *3 (-541)) (-5 *1 (-940 *3 *2)) (-4 *2 (-1202 *3)))) (-3138 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-747)) (-4 *5 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-940 *5 *3)) (-4 *3 (-1202 *5)))) (-3459 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-747)) (-4 *5 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-940 *5 *3)) (-4 *3 (-1202 *5)))) (-3313 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-747)) (-4 *4 (-541)) (-5 *1 (-940 *4 *2)) (-4 *2 (-1202 *4)))) (-3077 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-747)) (-4 *5 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-940 *5 *3)) (-4 *3 (-1202 *5)))) (-2897 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-747)) (-4 *5 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-940 *5 *3)) (-4 *3 (-1202 *5)))) (-2563 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-747)) (-4 *4 (-541)) (-5 *1 (-940 *4 *2)) (-4 *2 (-1202 *4)))) (-3797 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1353 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-3915 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1353 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-3704 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1353 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))) (-1353 (*1 *2 *3 *3) (-12 (-4 *2 (-541)) (-5 *1 (-940 *2 *3)) (-4 *3 (-1202 *2)))))
-(-10 -7 (-15 -1353 (|#1| |#2| |#2|)) (-15 -3704 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1353 |#1|)) |#2| |#2|)) (-15 -3915 ((-2 (|:| |coef2| |#2|) (|:| -1353 |#1|)) |#2| |#2|)) (-15 -3797 ((-2 (|:| |coef1| |#2|) (|:| -1353 |#1|)) |#2| |#2|)) (-15 -2563 (|#2| |#2| |#2| (-747))) (-15 -2897 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747))) (-15 -3077 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747))) (-15 -3313 (|#2| |#2| |#2| (-747))) (-15 -3459 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747))) (-15 -3138 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747))) (-15 -3072 (|#2| |#2| |#2|)) (-15 -2381 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -4211 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -1910 (|#2| |#2| |#2|)) (-15 -2885 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3727 |#2|)) |#2| |#2|)) (-15 -2499 ((-2 (|:| |coef2| |#2|) (|:| -3727 |#2|)) |#2| |#2|)) (-15 -2968 ((-2 (|:| |coef1| |#2|) (|:| -3727 |#2|)) |#2| |#2|)) (-15 -3602 (|#1| |#2|)) (-15 -3470 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3602 |#1|)) |#2|)) (-15 -2575 ((-2 (|:| |coef2| |#2|) (|:| -3602 |#1|)) |#2|)) (-15 -2172 ((-621 |#2|) |#2| |#2|)) (-15 -1296 ((-621 (-747)) |#2| |#2|)) (IF (|has| |#1| (-444)) (PROGN (-15 -2558 (|#1| |#2| |#2|)) (-15 -3143 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2558 |#1|)) |#2| |#2|)) (-15 -1674 ((-2 (|:| |coef2| |#2|) (|:| -2558 |#1|)) |#2| |#2|)) (-15 -3727 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1226 |#2|) |#1| (-1226 |#2|))) (-15 -2042 ((-1226 |#2|) (-1226 |#2|) |#1|)) (-15 -3921 ((-2 (|:| -1570 |#1|) (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2|)) (-15 -3148 ((-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) |#2| |#2|)) (-15 -1632 (|#1| |#1| |#1| (-747))) (-15 -3424 (|#2| |#2| |#1| |#1| (-747))) (-15 -2952 (|#2| |#2| |#2| |#2| |#1|)) (-15 -2371 (|#1| |#2| |#2|)) (-15 -1399 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1353 |#1|)) |#2| |#2|)) (-15 -3229 ((-2 (|:| |coef2| |#2|) (|:| -1353 |#1|)) |#2| |#2|)))
-((-3834 (((-112) $ $) NIL)) (-2100 (((-1179) $) 12)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3955 (((-1148) $) 9)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-941) (-13 (-1050) (-10 -8 (-15 -3955 ((-1148) $)) (-15 -2100 ((-1179) $))))) (T -941))
-((-3955 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-941)))) (-2100 (*1 *2 *1) (-12 (-5 *2 (-1179)) (-5 *1 (-941)))))
-(-13 (-1050) (-10 -8 (-15 -3955 ((-1148) $)) (-15 -2100 ((-1179) $))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) 27)) (-1682 (($) NIL T CONST)) (-4295 (((-621 (-621 (-549))) (-621 (-549))) 29)) (-4059 (((-549) $) 45)) (-3457 (($ (-621 (-549))) 17)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2845 (((-621 (-549)) $) 12)) (-1955 (($ $) 32)) (-3846 (((-834) $) 43) (((-621 (-549)) $) 10)) (-3276 (($) 7 T CONST)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 20)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 19)) (-2486 (($ $ $) 21)) (* (($ (-892) $) NIL) (($ (-747) $) 25)))
-(((-942) (-13 (-771) (-594 (-621 (-549))) (-10 -8 (-15 -3457 ($ (-621 (-549)))) (-15 -4295 ((-621 (-621 (-549))) (-621 (-549)))) (-15 -4059 ((-549) $)) (-15 -1955 ($ $)) (-15 -3846 ((-621 (-549)) $))))) (T -942))
-((-3457 (*1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-942)))) (-4295 (*1 *2 *3) (-12 (-5 *2 (-621 (-621 (-549)))) (-5 *1 (-942)) (-5 *3 (-621 (-549))))) (-4059 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-942)))) (-1955 (*1 *1 *1) (-5 *1 (-942))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-942)))))
-(-13 (-771) (-594 (-621 (-549))) (-10 -8 (-15 -3457 ($ (-621 (-549)))) (-15 -4295 ((-621 (-621 (-549))) (-621 (-549)))) (-15 -4059 ((-549) $)) (-15 -1955 ($ $)) (-15 -3846 ((-621 (-549)) $))))
-((-2513 (($ $ |#2|) 30)) (-2500 (($ $) 22) (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 15) (($ $ $) NIL) (($ $ |#2|) 20) (($ |#2| $) 19) (($ (-400 (-549)) $) 26) (($ $ (-400 (-549))) 28)))
-(((-943 |#1| |#2| |#3| |#4|) (-10 -8 (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 -2513 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 -2500 (|#1| |#1| |#1|)) (-15 -2500 (|#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|))) (-944 |#2| |#3| |#4|) (-1018) (-768) (-823)) (T -943))
-NIL
-(-10 -8 (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 -2513 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 -2500 (|#1| |#1| |#1|)) (-15 -2500 (|#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2272 (((-621 |#3|) $) 72)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-2258 (($ $) 50 (|has| |#1| (-541)))) (-2799 (((-112) $) 52 (|has| |#1| (-541)))) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2070 (($ $) 58)) (-2114 (((-3 $ "failed") $) 32)) (-2871 (((-112) $) 71)) (-2675 (((-112) $) 30)) (-2205 (((-112) $) 60)) (-2246 (($ |#1| |#2|) 59) (($ $ |#3| |#2|) 74) (($ $ (-621 |#3|) (-621 |#2|)) 73)) (-2797 (($ (-1 |#1| |#1|) $) 61)) (-2028 (($ $) 63)) (-2043 ((|#1| $) 64)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-2042 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541)))) (-3701 ((|#2| $) 62)) (-1977 (($ $) 70)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 55 (|has| |#1| (-38 (-400 (-549))))) (($ $) 47 (|has| |#1| (-541))) (($ |#1|) 45 (|has| |#1| (-170)))) (-2152 ((|#1| $ |#2|) 57)) (-2210 (((-3 $ "failed") $) 46 (|has| |#1| (-143)))) (-2082 (((-747)) 28)) (-1498 (((-112) $ $) 51 (|has| |#1| (-541)))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2513 (($ $ |#1|) 56 (|has| |#1| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
+((-3574 (*1 *2 *1) (-12 (-4 *1 (-939 *2)) (-4 *2 (-823)))) (-3050 (*1 *1 *1 *1) (-12 (-4 *1 (-939 *2)) (-4 *2 (-823)))) (-3021 (*1 *1 *1 *1) (-12 (-4 *1 (-939 *2)) (-4 *2 (-823)))))
+(-13 (-106 |t#1|) (-10 -8 (-6 -4336) (-15 -3574 (|t#1| $)) (-15 -3050 ($ $ $)) (-15 -3021 ($ $ $))))
+(((-34) . T) ((-106 |#1|) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-1066) |has| |#1| (-1066)) ((-1179) . T))
+((-1340 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3726 |#2|)) |#2| |#2|) 85)) (-2070 ((|#2| |#2| |#2|) 83)) (-2522 (((-2 (|:| |coef2| |#2|) (|:| -3726 |#2|)) |#2| |#2|) 87)) (-1324 (((-2 (|:| |coef1| |#2|) (|:| -3726 |#2|)) |#2| |#2|) 89)) (-3543 (((-2 (|:| |coef2| |#2|) (|:| -1874 |#1|)) |#2| |#2|) 107 (|has| |#1| (-444)))) (-3436 (((-2 (|:| |coef2| |#2|) (|:| -4114 |#1|)) |#2| |#2|) 46)) (-3289 (((-2 (|:| |coef2| |#2|) (|:| -4114 |#1|)) |#2| |#2|) 64)) (-3047 (((-2 (|:| |coef1| |#2|) (|:| -4114 |#1|)) |#2| |#2|) 66)) (-1548 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 78)) (-2826 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747)) 71)) (-3008 (((-2 (|:| |coef2| |#2|) (|:| -2740 |#1|)) |#2|) 97)) (-3569 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747)) 74)) (-3978 (((-621 (-747)) |#2| |#2|) 82)) (-1722 ((|#1| |#2| |#2|) 42)) (-2954 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1874 |#1|)) |#2| |#2|) 105 (|has| |#1| (-444)))) (-1874 ((|#1| |#2| |#2|) 103 (|has| |#1| (-444)))) (-3401 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4114 |#1|)) |#2| |#2|) 44)) (-4276 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4114 |#1|)) |#2| |#2|) 63)) (-4114 ((|#1| |#2| |#2|) 61)) (-2805 (((-2 (|:| -1569 |#1|) (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2|) 35)) (-2275 ((|#2| |#2| |#2| |#2| |#1|) 53)) (-1370 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 76)) (-3402 ((|#2| |#2| |#2|) 75)) (-3148 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747)) 69)) (-4174 ((|#2| |#2| |#2| (-747)) 67)) (-3726 ((|#2| |#2| |#2|) 111 (|has| |#1| (-444)))) (-2040 (((-1225 |#2|) (-1225 |#2|) |#1|) 21)) (-2288 (((-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2|) 39)) (-3075 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2740 |#1|)) |#2|) 95)) (-2740 ((|#1| |#2|) 92)) (-3369 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747)) 73)) (-1801 ((|#2| |#2| |#2| (-747)) 72)) (-3273 (((-621 |#2|) |#2| |#2|) 80)) (-2783 ((|#2| |#2| |#1| |#1| (-747)) 50)) (-2346 ((|#1| |#1| |#1| (-747)) 49)) (* (((-1225 |#2|) |#1| (-1225 |#2|)) 16)))
+(((-940 |#1| |#2|) (-10 -7 (-15 -4114 (|#1| |#2| |#2|)) (-15 -4276 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4114 |#1|)) |#2| |#2|)) (-15 -3289 ((-2 (|:| |coef2| |#2|) (|:| -4114 |#1|)) |#2| |#2|)) (-15 -3047 ((-2 (|:| |coef1| |#2|) (|:| -4114 |#1|)) |#2| |#2|)) (-15 -4174 (|#2| |#2| |#2| (-747))) (-15 -3148 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747))) (-15 -2826 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747))) (-15 -1801 (|#2| |#2| |#2| (-747))) (-15 -3369 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747))) (-15 -3569 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747))) (-15 -3402 (|#2| |#2| |#2|)) (-15 -1370 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -1548 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2070 (|#2| |#2| |#2|)) (-15 -1340 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3726 |#2|)) |#2| |#2|)) (-15 -2522 ((-2 (|:| |coef2| |#2|) (|:| -3726 |#2|)) |#2| |#2|)) (-15 -1324 ((-2 (|:| |coef1| |#2|) (|:| -3726 |#2|)) |#2| |#2|)) (-15 -2740 (|#1| |#2|)) (-15 -3075 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2740 |#1|)) |#2|)) (-15 -3008 ((-2 (|:| |coef2| |#2|) (|:| -2740 |#1|)) |#2|)) (-15 -3273 ((-621 |#2|) |#2| |#2|)) (-15 -3978 ((-621 (-747)) |#2| |#2|)) (IF (|has| |#1| (-444)) (PROGN (-15 -1874 (|#1| |#2| |#2|)) (-15 -2954 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1874 |#1|)) |#2| |#2|)) (-15 -3543 ((-2 (|:| |coef2| |#2|) (|:| -1874 |#1|)) |#2| |#2|)) (-15 -3726 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1225 |#2|) |#1| (-1225 |#2|))) (-15 -2040 ((-1225 |#2|) (-1225 |#2|) |#1|)) (-15 -2805 ((-2 (|:| -1569 |#1|) (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2|)) (-15 -2288 ((-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2|)) (-15 -2346 (|#1| |#1| |#1| (-747))) (-15 -2783 (|#2| |#2| |#1| |#1| (-747))) (-15 -2275 (|#2| |#2| |#2| |#2| |#1|)) (-15 -1722 (|#1| |#2| |#2|)) (-15 -3401 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4114 |#1|)) |#2| |#2|)) (-15 -3436 ((-2 (|:| |coef2| |#2|) (|:| -4114 |#1|)) |#2| |#2|))) (-541) (-1201 |#1|)) (T -940))
+((-3436 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -4114 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-3401 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -4114 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-1722 (*1 *2 *3 *3) (-12 (-4 *2 (-541)) (-5 *1 (-940 *2 *3)) (-4 *3 (-1201 *2)))) (-2275 (*1 *2 *2 *2 *2 *3) (-12 (-4 *3 (-541)) (-5 *1 (-940 *3 *2)) (-4 *2 (-1201 *3)))) (-2783 (*1 *2 *2 *3 *3 *4) (-12 (-5 *4 (-747)) (-4 *3 (-541)) (-5 *1 (-940 *3 *2)) (-4 *2 (-1201 *3)))) (-2346 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-747)) (-4 *2 (-541)) (-5 *1 (-940 *2 *4)) (-4 *4 (-1201 *2)))) (-2288 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-2805 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| -1569 *4) (|:| -2262 *3) (|:| -1809 *3))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-2040 (*1 *2 *2 *3) (-12 (-5 *2 (-1225 *4)) (-4 *4 (-1201 *3)) (-4 *3 (-541)) (-5 *1 (-940 *3 *4)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1225 *4)) (-4 *4 (-1201 *3)) (-4 *3 (-541)) (-5 *1 (-940 *3 *4)))) (-3726 (*1 *2 *2 *2) (-12 (-4 *3 (-444)) (-4 *3 (-541)) (-5 *1 (-940 *3 *2)) (-4 *2 (-1201 *3)))) (-3543 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1874 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-2954 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1874 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-1874 (*1 *2 *3 *3) (-12 (-4 *2 (-541)) (-4 *2 (-444)) (-5 *1 (-940 *2 *3)) (-4 *3 (-1201 *2)))) (-3978 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-621 (-747))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-3273 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-621 *3)) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-3008 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2740 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-3075 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2740 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-2740 (*1 *2 *3) (-12 (-4 *2 (-541)) (-5 *1 (-940 *2 *3)) (-4 *3 (-1201 *2)))) (-1324 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -3726 *3))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-2522 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3726 *3))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-1340 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3726 *3))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-2070 (*1 *2 *2 *2) (-12 (-4 *3 (-541)) (-5 *1 (-940 *3 *2)) (-4 *2 (-1201 *3)))) (-1548 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-1370 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-3402 (*1 *2 *2 *2) (-12 (-4 *3 (-541)) (-5 *1 (-940 *3 *2)) (-4 *2 (-1201 *3)))) (-3569 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-747)) (-4 *5 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-940 *5 *3)) (-4 *3 (-1201 *5)))) (-3369 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-747)) (-4 *5 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-940 *5 *3)) (-4 *3 (-1201 *5)))) (-1801 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-747)) (-4 *4 (-541)) (-5 *1 (-940 *4 *2)) (-4 *2 (-1201 *4)))) (-2826 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-747)) (-4 *5 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-940 *5 *3)) (-4 *3 (-1201 *5)))) (-3148 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-747)) (-4 *5 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-940 *5 *3)) (-4 *3 (-1201 *5)))) (-4174 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-747)) (-4 *4 (-541)) (-5 *1 (-940 *4 *2)) (-4 *2 (-1201 *4)))) (-3047 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -4114 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-3289 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -4114 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-4276 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -4114 *4))) (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))) (-4114 (*1 *2 *3 *3) (-12 (-4 *2 (-541)) (-5 *1 (-940 *2 *3)) (-4 *3 (-1201 *2)))))
+(-10 -7 (-15 -4114 (|#1| |#2| |#2|)) (-15 -4276 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4114 |#1|)) |#2| |#2|)) (-15 -3289 ((-2 (|:| |coef2| |#2|) (|:| -4114 |#1|)) |#2| |#2|)) (-15 -3047 ((-2 (|:| |coef1| |#2|) (|:| -4114 |#1|)) |#2| |#2|)) (-15 -4174 (|#2| |#2| |#2| (-747))) (-15 -3148 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747))) (-15 -2826 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747))) (-15 -1801 (|#2| |#2| |#2| (-747))) (-15 -3369 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747))) (-15 -3569 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-747))) (-15 -3402 (|#2| |#2| |#2|)) (-15 -1370 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -1548 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2070 (|#2| |#2| |#2|)) (-15 -1340 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3726 |#2|)) |#2| |#2|)) (-15 -2522 ((-2 (|:| |coef2| |#2|) (|:| -3726 |#2|)) |#2| |#2|)) (-15 -1324 ((-2 (|:| |coef1| |#2|) (|:| -3726 |#2|)) |#2| |#2|)) (-15 -2740 (|#1| |#2|)) (-15 -3075 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2740 |#1|)) |#2|)) (-15 -3008 ((-2 (|:| |coef2| |#2|) (|:| -2740 |#1|)) |#2|)) (-15 -3273 ((-621 |#2|) |#2| |#2|)) (-15 -3978 ((-621 (-747)) |#2| |#2|)) (IF (|has| |#1| (-444)) (PROGN (-15 -1874 (|#1| |#2| |#2|)) (-15 -2954 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1874 |#1|)) |#2| |#2|)) (-15 -3543 ((-2 (|:| |coef2| |#2|) (|:| -1874 |#1|)) |#2| |#2|)) (-15 -3726 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1225 |#2|) |#1| (-1225 |#2|))) (-15 -2040 ((-1225 |#2|) (-1225 |#2|) |#1|)) (-15 -2805 ((-2 (|:| -1569 |#1|) (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2|)) (-15 -2288 ((-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) |#2| |#2|)) (-15 -2346 (|#1| |#1| |#1| (-747))) (-15 -2783 (|#2| |#2| |#1| |#1| (-747))) (-15 -2275 (|#2| |#2| |#2| |#2| |#1|)) (-15 -1722 (|#1| |#2| |#2|)) (-15 -3401 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4114 |#1|)) |#2| |#2|)) (-15 -3436 ((-2 (|:| |coef2| |#2|) (|:| -4114 |#1|)) |#2| |#2|)))
+((-3832 (((-112) $ $) NIL)) (-2098 (((-1178) $) 13)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3954 (((-1101) $) 10)) (-3845 (((-834) $) 22) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-941) (-13 (-1049) (-10 -8 (-15 -3954 ((-1101) $)) (-15 -2098 ((-1178) $))))) (T -941))
+((-3954 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-941)))) (-2098 (*1 *2 *1) (-12 (-5 *2 (-1178)) (-5 *1 (-941)))))
+(-13 (-1049) (-10 -8 (-15 -3954 ((-1101) $)) (-15 -2098 ((-1178) $))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) 27)) (-3034 (($) NIL T CONST)) (-3965 (((-621 (-621 (-549))) (-621 (-549))) 29)) (-3329 (((-549) $) 45)) (-1291 (($ (-621 (-549))) 17)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2843 (((-621 (-549)) $) 12)) (-1795 (($ $) 32)) (-3845 (((-834) $) 43) (((-621 (-549)) $) 10)) (-3274 (($) 7 T CONST)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 20)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 19)) (-2484 (($ $ $) 21)) (* (($ (-892) $) NIL) (($ (-747) $) 25)))
+(((-942) (-13 (-771) (-594 (-621 (-549))) (-10 -8 (-15 -1291 ($ (-621 (-549)))) (-15 -3965 ((-621 (-621 (-549))) (-621 (-549)))) (-15 -3329 ((-549) $)) (-15 -1795 ($ $)) (-15 -3845 ((-621 (-549)) $))))) (T -942))
+((-1291 (*1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-942)))) (-3965 (*1 *2 *3) (-12 (-5 *2 (-621 (-621 (-549)))) (-5 *1 (-942)) (-5 *3 (-621 (-549))))) (-3329 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-942)))) (-1795 (*1 *1 *1) (-5 *1 (-942))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-942)))))
+(-13 (-771) (-594 (-621 (-549))) (-10 -8 (-15 -1291 ($ (-621 (-549)))) (-15 -3965 ((-621 (-621 (-549))) (-621 (-549)))) (-15 -3329 ((-549) $)) (-15 -1795 ($ $)) (-15 -3845 ((-621 (-549)) $))))
+((-2511 (($ $ |#2|) 30)) (-2498 (($ $) 22) (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 15) (($ $ $) NIL) (($ $ |#2|) 20) (($ |#2| $) 19) (($ (-400 (-549)) $) 26) (($ $ (-400 (-549))) 28)))
+(((-943 |#1| |#2| |#3| |#4|) (-10 -8 (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 -2511 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 -2498 (|#1| |#1| |#1|)) (-15 -2498 (|#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|))) (-944 |#2| |#3| |#4|) (-1018) (-768) (-823)) (T -943))
+NIL
+(-10 -8 (-15 * (|#1| |#1| (-400 (-549)))) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 -2511 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 -2498 (|#1| |#1| |#1|)) (-15 -2498 (|#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 * (|#1| (-892) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2270 (((-621 |#3|) $) 72)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-3044 (($ $) 50 (|has| |#1| (-541)))) (-2774 (((-112) $) 52 (|has| |#1| (-541)))) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2068 (($ $) 58)) (-2612 (((-3 $ "failed") $) 32)) (-1410 (((-112) $) 71)) (-2297 (((-112) $) 30)) (-2988 (((-112) $) 60)) (-2244 (($ |#1| |#2|) 59) (($ $ |#3| |#2|) 74) (($ $ (-621 |#3|) (-621 |#2|)) 73)) (-2795 (($ (-1 |#1| |#1|) $) 61)) (-2027 (($ $) 63)) (-2042 ((|#1| $) 64)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2040 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541)))) (-3977 ((|#2| $) 62)) (-3958 (($ $) 70)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 55 (|has| |#1| (-38 (-400 (-549))))) (($ $) 47 (|has| |#1| (-541))) (($ |#1|) 45 (|has| |#1| (-170)))) (-4068 ((|#1| $ |#2|) 57)) (-2343 (((-3 $ "failed") $) 46 (|has| |#1| (-143)))) (-2371 (((-747)) 28)) (-2441 (((-112) $ $) 51 (|has| |#1| (-541)))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2511 (($ $ |#1|) 56 (|has| |#1| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
(((-944 |#1| |#2| |#3|) (-138) (-1018) (-768) (-823)) (T -944))
-((-2043 (*1 *2 *1) (-12 (-4 *1 (-944 *2 *3 *4)) (-4 *3 (-768)) (-4 *4 (-823)) (-4 *2 (-1018)))) (-2028 (*1 *1 *1) (-12 (-4 *1 (-944 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-768)) (-4 *4 (-823)))) (-3701 (*1 *2 *1) (-12 (-4 *1 (-944 *3 *2 *4)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *2 (-768)))) (-2246 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-944 *4 *3 *2)) (-4 *4 (-1018)) (-4 *3 (-768)) (-4 *2 (-823)))) (-2246 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *6)) (-5 *3 (-621 *5)) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-768)) (-4 *6 (-823)))) (-2272 (*1 *2 *1) (-12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-768)) (-4 *5 (-823)) (-5 *2 (-621 *5)))) (-2871 (*1 *2 *1) (-12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-768)) (-4 *5 (-823)) (-5 *2 (-112)))) (-1977 (*1 *1 *1) (-12 (-4 *1 (-944 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-768)) (-4 *4 (-823)))))
-(-13 (-47 |t#1| |t#2|) (-10 -8 (-15 -2246 ($ $ |t#3| |t#2|)) (-15 -2246 ($ $ (-621 |t#3|) (-621 |t#2|))) (-15 -2028 ($ $)) (-15 -2043 (|t#1| $)) (-15 -3701 (|t#2| $)) (-15 -2272 ((-621 |t#3|) $)) (-15 -2871 ((-112) $)) (-15 -1977 ($ $))))
-(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) |has| |#1| (-541)) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-283) |has| |#1| (-541)) ((-541) |has| |#1| (-541)) ((-624 #0#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #0#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) |has| |#1| (-541)) ((-703) . T) ((-1024 #0#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-1856 (((-1061 (-219)) $) 8)) (-1843 (((-1061 (-219)) $) 9)) (-1832 (((-1061 (-219)) $) 10)) (-3928 (((-621 (-621 (-914 (-219)))) $) 11)) (-3846 (((-834) $) 6)))
+((-2042 (*1 *2 *1) (-12 (-4 *1 (-944 *2 *3 *4)) (-4 *3 (-768)) (-4 *4 (-823)) (-4 *2 (-1018)))) (-2027 (*1 *1 *1) (-12 (-4 *1 (-944 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-768)) (-4 *4 (-823)))) (-3977 (*1 *2 *1) (-12 (-4 *1 (-944 *3 *2 *4)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *2 (-768)))) (-2244 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-944 *4 *3 *2)) (-4 *4 (-1018)) (-4 *3 (-768)) (-4 *2 (-823)))) (-2244 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 *6)) (-5 *3 (-621 *5)) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-768)) (-4 *6 (-823)))) (-2270 (*1 *2 *1) (-12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-768)) (-4 *5 (-823)) (-5 *2 (-621 *5)))) (-1410 (*1 *2 *1) (-12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-768)) (-4 *5 (-823)) (-5 *2 (-112)))) (-3958 (*1 *1 *1) (-12 (-4 *1 (-944 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-768)) (-4 *4 (-823)))))
+(-13 (-47 |t#1| |t#2|) (-10 -8 (-15 -2244 ($ $ |t#3| |t#2|)) (-15 -2244 ($ $ (-621 |t#3|) (-621 |t#2|))) (-15 -2027 ($ $)) (-15 -2042 (|t#1| $)) (-15 -3977 (|t#2| $)) (-15 -2270 ((-621 |t#3|) $)) (-15 -1410 ((-112) $)) (-15 -3958 ($ $))))
+(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) |has| |#1| (-541)) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-283) |has| |#1| (-541)) ((-541) |has| |#1| (-541)) ((-624 #0#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #0#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) |has| |#1| (-541)) ((-703) . T) ((-1024 #0#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-1854 (((-1060 (-219)) $) 8)) (-1841 (((-1060 (-219)) $) 9)) (-1830 (((-1060 (-219)) $) 10)) (-2355 (((-621 (-621 (-914 (-219)))) $) 11)) (-3845 (((-834) $) 6)))
(((-945) (-138)) (T -945))
-((-3928 (*1 *2 *1) (-12 (-4 *1 (-945)) (-5 *2 (-621 (-621 (-914 (-219))))))) (-1832 (*1 *2 *1) (-12 (-4 *1 (-945)) (-5 *2 (-1061 (-219))))) (-1843 (*1 *2 *1) (-12 (-4 *1 (-945)) (-5 *2 (-1061 (-219))))) (-1856 (*1 *2 *1) (-12 (-4 *1 (-945)) (-5 *2 (-1061 (-219))))))
-(-13 (-593 (-834)) (-10 -8 (-15 -3928 ((-621 (-621 (-914 (-219)))) $)) (-15 -1832 ((-1061 (-219)) $)) (-15 -1843 ((-1061 (-219)) $)) (-15 -1856 ((-1061 (-219)) $))))
+((-2355 (*1 *2 *1) (-12 (-4 *1 (-945)) (-5 *2 (-621 (-621 (-914 (-219))))))) (-1830 (*1 *2 *1) (-12 (-4 *1 (-945)) (-5 *2 (-1060 (-219))))) (-1841 (*1 *2 *1) (-12 (-4 *1 (-945)) (-5 *2 (-1060 (-219))))) (-1854 (*1 *2 *1) (-12 (-4 *1 (-945)) (-5 *2 (-1060 (-219))))))
+(-13 (-593 (-834)) (-10 -8 (-15 -2355 ((-621 (-621 (-914 (-219)))) $)) (-15 -1830 ((-1060 (-219)) $)) (-15 -1841 ((-1060 (-219)) $)) (-15 -1854 ((-1060 (-219)) $))))
(((-593 (-834)) . T))
-((-2272 (((-621 |#4|) $) 23)) (-3422 (((-112) $) 48)) (-2527 (((-112) $) 47)) (-3193 (((-2 (|:| |under| $) (|:| -3967 $) (|:| |upper| $)) $ |#4|) 36)) (-1433 (((-112) $) 49)) (-2555 (((-112) $ $) 55)) (-2595 (((-112) $ $) 58)) (-2397 (((-112) $) 53)) (-3269 (((-621 |#5|) (-621 |#5|) $) 90)) (-2953 (((-621 |#5|) (-621 |#5|) $) 87)) (-3675 (((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| $) 81)) (-2561 (((-621 |#4|) $) 27)) (-2378 (((-112) |#4| $) 30)) (-4203 (((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| $) 73)) (-2858 (($ $ |#4|) 33)) (-3758 (($ $ |#4|) 32)) (-4317 (($ $ |#4|) 34)) (-2389 (((-112) $ $) 40)))
-(((-946 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2527 ((-112) |#1|)) (-15 -3269 ((-621 |#5|) (-621 |#5|) |#1|)) (-15 -2953 ((-621 |#5|) (-621 |#5|) |#1|)) (-15 -3675 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -4203 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -1433 ((-112) |#1|)) (-15 -2595 ((-112) |#1| |#1|)) (-15 -2555 ((-112) |#1| |#1|)) (-15 -2397 ((-112) |#1|)) (-15 -3422 ((-112) |#1|)) (-15 -3193 ((-2 (|:| |under| |#1|) (|:| -3967 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -2858 (|#1| |#1| |#4|)) (-15 -4317 (|#1| |#1| |#4|)) (-15 -3758 (|#1| |#1| |#4|)) (-15 -2378 ((-112) |#4| |#1|)) (-15 -2561 ((-621 |#4|) |#1|)) (-15 -2272 ((-621 |#4|) |#1|)) (-15 -2389 ((-112) |#1| |#1|))) (-947 |#2| |#3| |#4| |#5|) (-1018) (-769) (-823) (-1032 |#2| |#3| |#4|)) (T -946))
+((-2270 (((-621 |#4|) $) 23)) (-3735 (((-112) $) 48)) (-2148 (((-112) $) 47)) (-3191 (((-2 (|:| |under| $) (|:| -1349 $) (|:| |upper| $)) $ |#4|) 36)) (-4291 (((-112) $) 49)) (-1663 (((-112) $ $) 55)) (-4226 (((-112) $ $) 58)) (-2113 (((-112) $) 53)) (-3480 (((-621 |#5|) (-621 |#5|) $) 90)) (-2393 (((-621 |#5|) (-621 |#5|) $) 87)) (-1809 (((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| $) 81)) (-3991 (((-621 |#4|) $) 27)) (-4192 (((-112) |#4| $) 30)) (-2179 (((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| $) 73)) (-4085 (($ $ |#4|) 33)) (-2195 (($ $ |#4|) 32)) (-4285 (($ $ |#4|) 34)) (-2387 (((-112) $ $) 40)))
+(((-946 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2148 ((-112) |#1|)) (-15 -3480 ((-621 |#5|) (-621 |#5|) |#1|)) (-15 -2393 ((-621 |#5|) (-621 |#5|) |#1|)) (-15 -1809 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2179 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -4291 ((-112) |#1|)) (-15 -4226 ((-112) |#1| |#1|)) (-15 -1663 ((-112) |#1| |#1|)) (-15 -2113 ((-112) |#1|)) (-15 -3735 ((-112) |#1|)) (-15 -3191 ((-2 (|:| |under| |#1|) (|:| -1349 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -4085 (|#1| |#1| |#4|)) (-15 -4285 (|#1| |#1| |#4|)) (-15 -2195 (|#1| |#1| |#4|)) (-15 -4192 ((-112) |#4| |#1|)) (-15 -3991 ((-621 |#4|) |#1|)) (-15 -2270 ((-621 |#4|) |#1|)) (-15 -2387 ((-112) |#1| |#1|))) (-947 |#2| |#3| |#4| |#5|) (-1018) (-769) (-823) (-1032 |#2| |#3| |#4|)) (T -946))
NIL
-(-10 -8 (-15 -2527 ((-112) |#1|)) (-15 -3269 ((-621 |#5|) (-621 |#5|) |#1|)) (-15 -2953 ((-621 |#5|) (-621 |#5|) |#1|)) (-15 -3675 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -4203 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -1433 ((-112) |#1|)) (-15 -2595 ((-112) |#1| |#1|)) (-15 -2555 ((-112) |#1| |#1|)) (-15 -2397 ((-112) |#1|)) (-15 -3422 ((-112) |#1|)) (-15 -3193 ((-2 (|:| |under| |#1|) (|:| -3967 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -2858 (|#1| |#1| |#4|)) (-15 -4317 (|#1| |#1| |#4|)) (-15 -3758 (|#1| |#1| |#4|)) (-15 -2378 ((-112) |#4| |#1|)) (-15 -2561 ((-621 |#4|) |#1|)) (-15 -2272 ((-621 |#4|) |#1|)) (-15 -2389 ((-112) |#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-2272 (((-621 |#3|) $) 33)) (-3422 (((-112) $) 26)) (-2527 (((-112) $) 17 (|has| |#1| (-541)))) (-3193 (((-2 (|:| |under| $) (|:| -3967 $) (|:| |upper| $)) $ |#3|) 27)) (-1584 (((-112) $ (-747)) 44)) (-1489 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4337)))) (-1682 (($) 45 T CONST)) (-1433 (((-112) $) 22 (|has| |#1| (-541)))) (-2555 (((-112) $ $) 24 (|has| |#1| (-541)))) (-2595 (((-112) $ $) 23 (|has| |#1| (-541)))) (-2397 (((-112) $) 25 (|has| |#1| (-541)))) (-3269 (((-621 |#4|) (-621 |#4|) $) 18 (|has| |#1| (-541)))) (-2953 (((-621 |#4|) (-621 |#4|) $) 19 (|has| |#1| (-541)))) (-2714 (((-3 $ "failed") (-621 |#4|)) 36)) (-2659 (($ (-621 |#4|)) 35)) (-3676 (($ $) 68 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ |#4| $) 67 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4337)))) (-3675 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-541)))) (-2557 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4337))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4337)))) (-2989 (((-621 |#4|) $) 52 (|has| $ (-6 -4337)))) (-2745 ((|#3| $) 34)) (-3194 (((-112) $ (-747)) 43)) (-1562 (((-621 |#4|) $) 53 (|has| $ (-6 -4337)))) (-2090 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#4| |#4|) $) 47)) (-2561 (((-621 |#3|) $) 32)) (-2378 (((-112) |#3| $) 31)) (-1508 (((-112) $ (-747)) 42)) (-3851 (((-1125) $) 9)) (-4203 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-541)))) (-3990 (((-1087) $) 10)) (-3779 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-1780 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 |#4|) (-621 |#4|)) 59 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-287 |#4|)) 57 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-621 (-287 |#4|))) 56 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))) (-4144 (((-112) $ $) 38)) (-3670 (((-112) $) 41)) (-3742 (($) 40)) (-4000 (((-747) |#4| $) 54 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) (((-747) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4337)))) (-2281 (($ $) 39)) (-2845 (((-525) $) 69 (|has| |#4| (-594 (-525))))) (-3854 (($ (-621 |#4|)) 60)) (-2858 (($ $ |#3|) 28)) (-3758 (($ $ |#3|) 30)) (-4317 (($ $ |#3|) 29)) (-3846 (((-834) $) 11) (((-621 |#4|) $) 37)) (-3527 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 6)) (-3775 (((-747) $) 46 (|has| $ (-6 -4337)))))
+(-10 -8 (-15 -2148 ((-112) |#1|)) (-15 -3480 ((-621 |#5|) (-621 |#5|) |#1|)) (-15 -2393 ((-621 |#5|) (-621 |#5|) |#1|)) (-15 -1809 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2179 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -4291 ((-112) |#1|)) (-15 -4226 ((-112) |#1| |#1|)) (-15 -1663 ((-112) |#1| |#1|)) (-15 -2113 ((-112) |#1|)) (-15 -3735 ((-112) |#1|)) (-15 -3191 ((-2 (|:| |under| |#1|) (|:| -1349 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -4085 (|#1| |#1| |#4|)) (-15 -4285 (|#1| |#1| |#4|)) (-15 -2195 (|#1| |#1| |#4|)) (-15 -4192 ((-112) |#4| |#1|)) (-15 -3991 ((-621 |#4|) |#1|)) (-15 -2270 ((-621 |#4|) |#1|)) (-15 -2387 ((-112) |#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-2270 (((-621 |#3|) $) 33)) (-3735 (((-112) $) 26)) (-2148 (((-112) $) 17 (|has| |#1| (-541)))) (-3191 (((-2 (|:| |under| $) (|:| -1349 $) (|:| |upper| $)) $ |#3|) 27)) (-2850 (((-112) $ (-747)) 44)) (-1488 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4336)))) (-3034 (($) 45 T CONST)) (-4291 (((-112) $) 22 (|has| |#1| (-541)))) (-1663 (((-112) $ $) 24 (|has| |#1| (-541)))) (-4226 (((-112) $ $) 23 (|has| |#1| (-541)))) (-2113 (((-112) $) 25 (|has| |#1| (-541)))) (-3480 (((-621 |#4|) (-621 |#4|) $) 18 (|has| |#1| (-541)))) (-2393 (((-621 |#4|) (-621 |#4|) $) 19 (|has| |#1| (-541)))) (-2712 (((-3 $ "failed") (-621 |#4|)) 36)) (-2657 (($ (-621 |#4|)) 35)) (-3675 (($ $) 68 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ |#4| $) 67 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4336)))) (-1809 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-541)))) (-2556 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4336))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4336)))) (-2987 (((-621 |#4|) $) 52 (|has| $ (-6 -4336)))) (-2510 ((|#3| $) 34)) (-1777 (((-112) $ (-747)) 43)) (-3698 (((-621 |#4|) $) 53 (|has| $ (-6 -4336)))) (-1593 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#4| |#4|) $) 47)) (-3991 (((-621 |#3|) $) 32)) (-4192 (((-112) |#3| $) 31)) (-3942 (((-112) $ (-747)) 42)) (-3441 (((-1124) $) 9)) (-2179 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-541)))) (-3988 (((-1086) $) 10)) (-3959 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-3360 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 |#4|) (-621 |#4|)) 59 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-287 |#4|)) 57 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-621 (-287 |#4|))) 56 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))) (-2520 (((-112) $ $) 38)) (-2643 (((-112) $) 41)) (-3288 (($) 40)) (-3997 (((-747) |#4| $) 54 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) (((-747) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4336)))) (-2279 (($ $) 39)) (-2843 (((-525) $) 69 (|has| |#4| (-594 (-525))))) (-3853 (($ (-621 |#4|)) 60)) (-4085 (($ $ |#3|) 28)) (-2195 (($ $ |#3|) 30)) (-4285 (($ $ |#3|) 29)) (-3845 (((-834) $) 11) (((-621 |#4|) $) 37)) (-3025 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 6)) (-3774 (((-747) $) 46 (|has| $ (-6 -4336)))))
(((-947 |#1| |#2| |#3| |#4|) (-138) (-1018) (-769) (-823) (-1032 |t#1| |t#2| |t#3|)) (T -947))
-((-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *1 (-947 *3 *4 *5 *6)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *1 (-947 *3 *4 *5 *6)))) (-2745 (*1 *2 *1) (-12 (-4 *1 (-947 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-1032 *3 *4 *2)) (-4 *2 (-823)))) (-2272 (*1 *2 *1) (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-621 *5)))) (-2561 (*1 *2 *1) (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-621 *5)))) (-2378 (*1 *2 *3 *1) (-12 (-4 *1 (-947 *4 *5 *3 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-4 *6 (-1032 *4 *5 *3)) (-5 *2 (-112)))) (-3758 (*1 *1 *1 *2) (-12 (-4 *1 (-947 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)) (-4 *5 (-1032 *3 *4 *2)))) (-4317 (*1 *1 *1 *2) (-12 (-4 *1 (-947 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)) (-4 *5 (-1032 *3 *4 *2)))) (-2858 (*1 *1 *1 *2) (-12 (-4 *1 (-947 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)) (-4 *5 (-1032 *3 *4 *2)))) (-3193 (*1 *2 *1 *3) (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-4 *6 (-1032 *4 *5 *3)) (-5 *2 (-2 (|:| |under| *1) (|:| -3967 *1) (|:| |upper| *1))) (-4 *1 (-947 *4 *5 *3 *6)))) (-3422 (*1 *2 *1) (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))) (-2397 (*1 *2 *1) (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-5 *2 (-112)))) (-2555 (*1 *2 *1 *1) (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-5 *2 (-112)))) (-2595 (*1 *2 *1 *1) (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-5 *2 (-112)))) (-1433 (*1 *2 *1) (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-5 *2 (-112)))) (-4203 (*1 *2 *3 *1) (-12 (-4 *1 (-947 *4 *5 *6 *3)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))) (-3675 (*1 *2 *3 *1) (-12 (-4 *1 (-947 *4 *5 *6 *3)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))) (-2953 (*1 *2 *2 *1) (-12 (-5 *2 (-621 *6)) (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)))) (-3269 (*1 *2 *2 *1) (-12 (-5 *2 (-621 *6)) (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)))) (-2527 (*1 *2 *1) (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-5 *2 (-112)))))
-(-13 (-1067) (-149 |t#4|) (-593 (-621 |t#4|)) (-10 -8 (-6 -4337) (-15 -2714 ((-3 $ "failed") (-621 |t#4|))) (-15 -2659 ($ (-621 |t#4|))) (-15 -2745 (|t#3| $)) (-15 -2272 ((-621 |t#3|) $)) (-15 -2561 ((-621 |t#3|) $)) (-15 -2378 ((-112) |t#3| $)) (-15 -3758 ($ $ |t#3|)) (-15 -4317 ($ $ |t#3|)) (-15 -2858 ($ $ |t#3|)) (-15 -3193 ((-2 (|:| |under| $) (|:| -3967 $) (|:| |upper| $)) $ |t#3|)) (-15 -3422 ((-112) $)) (IF (|has| |t#1| (-541)) (PROGN (-15 -2397 ((-112) $)) (-15 -2555 ((-112) $ $)) (-15 -2595 ((-112) $ $)) (-15 -1433 ((-112) $)) (-15 -4203 ((-2 (|:| |num| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -3675 ((-2 (|:| |rnum| |t#1|) (|:| |polnum| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -2953 ((-621 |t#4|) (-621 |t#4|) $)) (-15 -3269 ((-621 |t#4|) (-621 |t#4|) $)) (-15 -2527 ((-112) $))) |%noBranch|)))
-(((-34) . T) ((-101) . T) ((-593 (-621 |#4|)) . T) ((-593 (-834)) . T) ((-149 |#4|) . T) ((-594 (-525)) |has| |#4| (-594 (-525))) ((-302 |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))) ((-481 |#4|) . T) ((-505 |#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))) ((-1067) . T) ((-1180) . T))
-((-2135 (((-621 |#4|) |#4| |#4|) 118)) (-2032 (((-621 |#4|) (-621 |#4|) (-112)) 107 (|has| |#1| (-444))) (((-621 |#4|) (-621 |#4|)) 108 (|has| |#1| (-444)))) (-1867 (((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|)) 35)) (-3241 (((-112) |#4|) 34)) (-2881 (((-621 |#4|) |#4|) 103 (|has| |#1| (-444)))) (-3476 (((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-1 (-112) |#4|) (-621 |#4|)) 20)) (-4159 (((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 (-1 (-112) |#4|)) (-621 |#4|)) 22)) (-1753 (((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 (-1 (-112) |#4|)) (-621 |#4|)) 23)) (-2951 (((-3 (-2 (|:| |bas| (-468 |#1| |#2| |#3| |#4|)) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|)) 73)) (-3924 (((-621 |#4|) (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 85)) (-2628 (((-621 |#4|) (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 111)) (-3843 (((-621 |#4|) (-621 |#4|)) 110)) (-1807 (((-621 |#4|) (-621 |#4|) (-621 |#4|) (-112)) 48) (((-621 |#4|) (-621 |#4|) (-621 |#4|)) 50)) (-2052 ((|#4| |#4| (-621 |#4|)) 49)) (-2005 (((-621 |#4|) (-621 |#4|) (-621 |#4|)) 114 (|has| |#1| (-444)))) (-1696 (((-621 |#4|) (-621 |#4|) (-621 |#4|)) 117 (|has| |#1| (-444)))) (-3349 (((-621 |#4|) (-621 |#4|) (-621 |#4|)) 116 (|has| |#1| (-444)))) (-1559 (((-621 |#4|) (-621 |#4|) (-621 |#4|) (-1 (-621 |#4|) (-621 |#4|))) 87) (((-621 |#4|) (-621 |#4|) (-621 |#4|)) 89) (((-621 |#4|) (-621 |#4|) |#4|) 121) (((-621 |#4|) |#4| |#4|) 119) (((-621 |#4|) (-621 |#4|)) 88)) (-1313 (((-621 |#4|) (-621 |#4|) (-621 |#4|)) 100 (-12 (|has| |#1| (-145)) (|has| |#1| (-300))))) (-1926 (((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|)) 41)) (-3352 (((-112) (-621 |#4|)) 62)) (-3092 (((-112) (-621 |#4|) (-621 (-621 |#4|))) 53)) (-4014 (((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|)) 29)) (-2604 (((-112) |#4|) 28)) (-2387 (((-621 |#4|) (-621 |#4|)) 98 (-12 (|has| |#1| (-145)) (|has| |#1| (-300))))) (-2814 (((-621 |#4|) (-621 |#4|)) 99 (-12 (|has| |#1| (-145)) (|has| |#1| (-300))))) (-2359 (((-621 |#4|) (-621 |#4|)) 66)) (-1554 (((-621 |#4|) (-621 |#4|)) 79)) (-2253 (((-112) (-621 |#4|) (-621 |#4|)) 51)) (-3221 (((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|)) 39)) (-2542 (((-112) |#4|) 36)))
-(((-948 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1559 ((-621 |#4|) (-621 |#4|))) (-15 -1559 ((-621 |#4|) |#4| |#4|)) (-15 -3843 ((-621 |#4|) (-621 |#4|))) (-15 -2135 ((-621 |#4|) |#4| |#4|)) (-15 -1559 ((-621 |#4|) (-621 |#4|) |#4|)) (-15 -1559 ((-621 |#4|) (-621 |#4|) (-621 |#4|))) (-15 -1559 ((-621 |#4|) (-621 |#4|) (-621 |#4|) (-1 (-621 |#4|) (-621 |#4|)))) (-15 -2253 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -3092 ((-112) (-621 |#4|) (-621 (-621 |#4|)))) (-15 -3352 ((-112) (-621 |#4|))) (-15 -3476 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-1 (-112) |#4|) (-621 |#4|))) (-15 -4159 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 (-1 (-112) |#4|)) (-621 |#4|))) (-15 -1753 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 (-1 (-112) |#4|)) (-621 |#4|))) (-15 -1926 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|))) (-15 -3241 ((-112) |#4|)) (-15 -1867 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|))) (-15 -2604 ((-112) |#4|)) (-15 -4014 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|))) (-15 -2542 ((-112) |#4|)) (-15 -3221 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|))) (-15 -1807 ((-621 |#4|) (-621 |#4|) (-621 |#4|))) (-15 -1807 ((-621 |#4|) (-621 |#4|) (-621 |#4|) (-112))) (-15 -2052 (|#4| |#4| (-621 |#4|))) (-15 -2359 ((-621 |#4|) (-621 |#4|))) (-15 -2951 ((-3 (-2 (|:| |bas| (-468 |#1| |#2| |#3| |#4|)) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|))) (-15 -1554 ((-621 |#4|) (-621 |#4|))) (-15 -3924 ((-621 |#4|) (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2628 ((-621 |#4|) (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-444)) (PROGN (-15 -2881 ((-621 |#4|) |#4|)) (-15 -2032 ((-621 |#4|) (-621 |#4|))) (-15 -2032 ((-621 |#4|) (-621 |#4|) (-112))) (-15 -2005 ((-621 |#4|) (-621 |#4|) (-621 |#4|))) (-15 -3349 ((-621 |#4|) (-621 |#4|) (-621 |#4|))) (-15 -1696 ((-621 |#4|) (-621 |#4|) (-621 |#4|)))) |%noBranch|) (IF (|has| |#1| (-300)) (IF (|has| |#1| (-145)) (PROGN (-15 -2814 ((-621 |#4|) (-621 |#4|))) (-15 -2387 ((-621 |#4|) (-621 |#4|))) (-15 -1313 ((-621 |#4|) (-621 |#4|) (-621 |#4|)))) |%noBranch|) |%noBranch|)) (-541) (-769) (-823) (-1032 |#1| |#2| |#3|)) (T -948))
-((-1313 (*1 *2 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-145)) (-4 *3 (-300)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-2387 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-145)) (-4 *3 (-300)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-2814 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-145)) (-4 *3 (-300)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-1696 (*1 *2 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-444)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-3349 (*1 *2 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-444)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-2005 (*1 *2 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-444)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-2032 (*1 *2 *2 *3) (-12 (-5 *2 (-621 *7)) (-5 *3 (-112)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-948 *4 *5 *6 *7)))) (-2032 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-444)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-2881 (*1 *2 *3) (-12 (-4 *4 (-444)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *3)) (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))) (-2628 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-621 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-948 *5 *6 *7 *8)))) (-3924 (*1 *2 *2 *3 *4 *5) (-12 (-5 *2 (-621 *9)) (-5 *3 (-1 (-112) *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1032 *6 *7 *8)) (-4 *6 (-541)) (-4 *7 (-769)) (-4 *8 (-823)) (-5 *1 (-948 *6 *7 *8 *9)))) (-1554 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-2951 (*1 *2 *3) (|partial| -12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-2 (|:| |bas| (-468 *4 *5 *6 *7)) (|:| -2317 (-621 *7)))) (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))) (-2359 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-2052 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-948 *4 *5 *6 *2)))) (-1807 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-621 *7)) (-5 *3 (-112)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-948 *4 *5 *6 *7)))) (-1807 (*1 *2 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-3221 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-621 *7)) (|:| |badPols| (-621 *7)))) (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))) (-2542 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))) (-4014 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-621 *7)) (|:| |badPols| (-621 *7)))) (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))) (-2604 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))) (-1867 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-621 *7)) (|:| |badPols| (-621 *7)))) (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))) (-3241 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))) (-1926 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-621 *7)) (|:| |badPols| (-621 *7)))) (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))) (-1753 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-1 (-112) *8))) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-2 (|:| |goodPols| (-621 *8)) (|:| |badPols| (-621 *8)))) (-5 *1 (-948 *5 *6 *7 *8)) (-5 *4 (-621 *8)))) (-4159 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-1 (-112) *8))) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-2 (|:| |goodPols| (-621 *8)) (|:| |badPols| (-621 *8)))) (-5 *1 (-948 *5 *6 *7 *8)) (-5 *4 (-621 *8)))) (-3476 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-2 (|:| |goodPols| (-621 *8)) (|:| |badPols| (-621 *8)))) (-5 *1 (-948 *5 *6 *7 *8)) (-5 *4 (-621 *8)))) (-3352 (*1 *2 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-948 *4 *5 *6 *7)))) (-3092 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-621 *8))) (-5 *3 (-621 *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-112)) (-5 *1 (-948 *5 *6 *7 *8)))) (-2253 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-948 *4 *5 *6 *7)))) (-1559 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 (-621 *7) (-621 *7))) (-5 *2 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-948 *4 *5 *6 *7)))) (-1559 (*1 *2 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-1559 (*1 *2 *2 *3) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-948 *4 *5 *6 *3)))) (-2135 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *3)) (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))) (-3843 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-1559 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *3)) (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))) (-1559 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))))
-(-10 -7 (-15 -1559 ((-621 |#4|) (-621 |#4|))) (-15 -1559 ((-621 |#4|) |#4| |#4|)) (-15 -3843 ((-621 |#4|) (-621 |#4|))) (-15 -2135 ((-621 |#4|) |#4| |#4|)) (-15 -1559 ((-621 |#4|) (-621 |#4|) |#4|)) (-15 -1559 ((-621 |#4|) (-621 |#4|) (-621 |#4|))) (-15 -1559 ((-621 |#4|) (-621 |#4|) (-621 |#4|) (-1 (-621 |#4|) (-621 |#4|)))) (-15 -2253 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -3092 ((-112) (-621 |#4|) (-621 (-621 |#4|)))) (-15 -3352 ((-112) (-621 |#4|))) (-15 -3476 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-1 (-112) |#4|) (-621 |#4|))) (-15 -4159 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 (-1 (-112) |#4|)) (-621 |#4|))) (-15 -1753 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 (-1 (-112) |#4|)) (-621 |#4|))) (-15 -1926 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|))) (-15 -3241 ((-112) |#4|)) (-15 -1867 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|))) (-15 -2604 ((-112) |#4|)) (-15 -4014 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|))) (-15 -2542 ((-112) |#4|)) (-15 -3221 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|))) (-15 -1807 ((-621 |#4|) (-621 |#4|) (-621 |#4|))) (-15 -1807 ((-621 |#4|) (-621 |#4|) (-621 |#4|) (-112))) (-15 -2052 (|#4| |#4| (-621 |#4|))) (-15 -2359 ((-621 |#4|) (-621 |#4|))) (-15 -2951 ((-3 (-2 (|:| |bas| (-468 |#1| |#2| |#3| |#4|)) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|))) (-15 -1554 ((-621 |#4|) (-621 |#4|))) (-15 -3924 ((-621 |#4|) (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2628 ((-621 |#4|) (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-444)) (PROGN (-15 -2881 ((-621 |#4|) |#4|)) (-15 -2032 ((-621 |#4|) (-621 |#4|))) (-15 -2032 ((-621 |#4|) (-621 |#4|) (-112))) (-15 -2005 ((-621 |#4|) (-621 |#4|) (-621 |#4|))) (-15 -3349 ((-621 |#4|) (-621 |#4|) (-621 |#4|))) (-15 -1696 ((-621 |#4|) (-621 |#4|) (-621 |#4|)))) |%noBranch|) (IF (|has| |#1| (-300)) (IF (|has| |#1| (-145)) (PROGN (-15 -2814 ((-621 |#4|) (-621 |#4|))) (-15 -2387 ((-621 |#4|) (-621 |#4|))) (-15 -1313 ((-621 |#4|) (-621 |#4|) (-621 |#4|)))) |%noBranch|) |%noBranch|))
-((-2519 (((-2 (|:| R (-665 |#1|)) (|:| A (-665 |#1|)) (|:| |Ainv| (-665 |#1|))) (-665 |#1|) (-98 |#1|) (-1 |#1| |#1|)) 19)) (-3502 (((-621 (-2 (|:| C (-665 |#1|)) (|:| |g| (-1226 |#1|)))) (-665 |#1|) (-1226 |#1|)) 36)) (-4216 (((-665 |#1|) (-665 |#1|) (-665 |#1|) (-98 |#1|) (-1 |#1| |#1|)) 16)))
-(((-949 |#1|) (-10 -7 (-15 -2519 ((-2 (|:| R (-665 |#1|)) (|:| A (-665 |#1|)) (|:| |Ainv| (-665 |#1|))) (-665 |#1|) (-98 |#1|) (-1 |#1| |#1|))) (-15 -4216 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-98 |#1|) (-1 |#1| |#1|))) (-15 -3502 ((-621 (-2 (|:| C (-665 |#1|)) (|:| |g| (-1226 |#1|)))) (-665 |#1|) (-1226 |#1|)))) (-356)) (T -949))
-((-3502 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-5 *2 (-621 (-2 (|:| C (-665 *5)) (|:| |g| (-1226 *5))))) (-5 *1 (-949 *5)) (-5 *3 (-665 *5)) (-5 *4 (-1226 *5)))) (-4216 (*1 *2 *2 *2 *3 *4) (-12 (-5 *2 (-665 *5)) (-5 *3 (-98 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-356)) (-5 *1 (-949 *5)))) (-2519 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-98 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-356)) (-5 *2 (-2 (|:| R (-665 *6)) (|:| A (-665 *6)) (|:| |Ainv| (-665 *6)))) (-5 *1 (-949 *6)) (-5 *3 (-665 *6)))))
-(-10 -7 (-15 -2519 ((-2 (|:| R (-665 |#1|)) (|:| A (-665 |#1|)) (|:| |Ainv| (-665 |#1|))) (-665 |#1|) (-98 |#1|) (-1 |#1| |#1|))) (-15 -4216 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-98 |#1|) (-1 |#1| |#1|))) (-15 -3502 ((-621 (-2 (|:| C (-665 |#1|)) (|:| |g| (-1226 |#1|)))) (-665 |#1|) (-1226 |#1|))))
-((-2402 (((-411 |#4|) |#4|) 48)))
-(((-950 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2402 ((-411 |#4|) |#4|))) (-823) (-769) (-444) (-920 |#3| |#2| |#1|)) (T -950))
-((-2402 (*1 *2 *3) (-12 (-4 *4 (-823)) (-4 *5 (-769)) (-4 *6 (-444)) (-5 *2 (-411 *3)) (-5 *1 (-950 *4 *5 *6 *3)) (-4 *3 (-920 *6 *5 *4)))))
-(-10 -7 (-15 -2402 ((-411 |#4|) |#4|)))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-3769 (($ (-747)) 112 (|has| |#1| (-23)))) (-1535 (((-1231) $ (-549) (-549)) 40 (|has| $ (-6 -4338)))) (-4142 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-823)))) (-4311 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4338))) (($ $) 88 (-12 (|has| |#1| (-823)) (|has| $ (-6 -4338))))) (-3193 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-823)))) (-1584 (((-112) $ (-747)) 8)) (-2254 ((|#1| $ (-549) |#1|) 52 (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) 58 (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4337)))) (-1682 (($) 7 T CONST)) (-1585 (($ $) 90 (|has| $ (-6 -4338)))) (-3064 (($ $) 100)) (-3676 (($ $) 78 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ |#1| $) 77 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4337)))) (-1879 ((|#1| $ (-549) |#1|) 53 (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) 51)) (-2883 (((-549) (-1 (-112) |#1|) $) 97) (((-549) |#1| $) 96 (|has| |#1| (-1067))) (((-549) |#1| $ (-549)) 95 (|has| |#1| (-1067)))) (-2798 (($ (-621 |#1|)) 118)) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-4050 (((-665 |#1|) $ $) 105 (|has| |#1| (-1018)))) (-3743 (($ (-747) |#1|) 69)) (-3194 (((-112) $ (-747)) 9)) (-4031 (((-549) $) 43 (|has| (-549) (-823)))) (-2863 (($ $ $) 87 (|has| |#1| (-823)))) (-3890 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-823)))) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1569 (((-549) $) 44 (|has| (-549) (-823)))) (-3575 (($ $ $) 86 (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3359 ((|#1| $) 102 (-12 (|has| |#1| (-1018)) (|has| |#1| (-973))))) (-1508 (((-112) $ (-747)) 10)) (-4210 ((|#1| $) 103 (-12 (|has| |#1| (-1018)) (|has| |#1| (-973))))) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-2616 (($ |#1| $ (-549)) 60) (($ $ $ (-549)) 59)) (-3303 (((-621 (-549)) $) 46)) (-3761 (((-112) (-549) $) 47)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-3646 ((|#1| $) 42 (|has| (-549) (-823)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-1642 (($ $ |#1|) 41 (|has| $ (-6 -4338)))) (-2763 (($ $ (-621 |#1|)) 115)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-2265 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) 48)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#1| $ (-549) |#1|) 50) ((|#1| $ (-549)) 49) (($ $ (-1193 (-549))) 63)) (-1706 ((|#1| $ $) 106 (|has| |#1| (-1018)))) (-2985 (((-892) $) 117)) (-2167 (($ $ (-549)) 62) (($ $ (-1193 (-549))) 61)) (-2168 (($ $ $) 104)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2730 (($ $ $ (-549)) 91 (|has| $ (-6 -4338)))) (-2281 (($ $) 13)) (-2845 (((-525) $) 79 (|has| |#1| (-594 (-525)))) (($ (-621 |#1|)) 116)) (-3854 (($ (-621 |#1|)) 70)) (-1952 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-621 $)) 65)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) 84 (|has| |#1| (-823)))) (-2425 (((-112) $ $) 83 (|has| |#1| (-823)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-2438 (((-112) $ $) 85 (|has| |#1| (-823)))) (-2412 (((-112) $ $) 82 (|has| |#1| (-823)))) (-2500 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-2486 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-549) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-703))) (($ $ |#1|) 107 (|has| |#1| (-703)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
+((-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *1 (-947 *3 *4 *5 *6)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *1 (-947 *3 *4 *5 *6)))) (-2510 (*1 *2 *1) (-12 (-4 *1 (-947 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-1032 *3 *4 *2)) (-4 *2 (-823)))) (-2270 (*1 *2 *1) (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-621 *5)))) (-3991 (*1 *2 *1) (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-621 *5)))) (-4192 (*1 *2 *3 *1) (-12 (-4 *1 (-947 *4 *5 *3 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-4 *6 (-1032 *4 *5 *3)) (-5 *2 (-112)))) (-2195 (*1 *1 *1 *2) (-12 (-4 *1 (-947 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)) (-4 *5 (-1032 *3 *4 *2)))) (-4285 (*1 *1 *1 *2) (-12 (-4 *1 (-947 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)) (-4 *5 (-1032 *3 *4 *2)))) (-4085 (*1 *1 *1 *2) (-12 (-4 *1 (-947 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)) (-4 *5 (-1032 *3 *4 *2)))) (-3191 (*1 *2 *1 *3) (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-4 *6 (-1032 *4 *5 *3)) (-5 *2 (-2 (|:| |under| *1) (|:| -1349 *1) (|:| |upper| *1))) (-4 *1 (-947 *4 *5 *3 *6)))) (-3735 (*1 *2 *1) (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))) (-2113 (*1 *2 *1) (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-5 *2 (-112)))) (-1663 (*1 *2 *1 *1) (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-5 *2 (-112)))) (-4226 (*1 *2 *1 *1) (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-5 *2 (-112)))) (-4291 (*1 *2 *1) (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-5 *2 (-112)))) (-2179 (*1 *2 *3 *1) (-12 (-4 *1 (-947 *4 *5 *6 *3)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))) (-1809 (*1 *2 *3 *1) (-12 (-4 *1 (-947 *4 *5 *6 *3)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))) (-2393 (*1 *2 *2 *1) (-12 (-5 *2 (-621 *6)) (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)))) (-3480 (*1 *2 *2 *1) (-12 (-5 *2 (-621 *6)) (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)))) (-2148 (*1 *2 *1) (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-5 *2 (-112)))))
+(-13 (-1066) (-149 |t#4|) (-593 (-621 |t#4|)) (-10 -8 (-6 -4336) (-15 -2712 ((-3 $ "failed") (-621 |t#4|))) (-15 -2657 ($ (-621 |t#4|))) (-15 -2510 (|t#3| $)) (-15 -2270 ((-621 |t#3|) $)) (-15 -3991 ((-621 |t#3|) $)) (-15 -4192 ((-112) |t#3| $)) (-15 -2195 ($ $ |t#3|)) (-15 -4285 ($ $ |t#3|)) (-15 -4085 ($ $ |t#3|)) (-15 -3191 ((-2 (|:| |under| $) (|:| -1349 $) (|:| |upper| $)) $ |t#3|)) (-15 -3735 ((-112) $)) (IF (|has| |t#1| (-541)) (PROGN (-15 -2113 ((-112) $)) (-15 -1663 ((-112) $ $)) (-15 -4226 ((-112) $ $)) (-15 -4291 ((-112) $)) (-15 -2179 ((-2 (|:| |num| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -1809 ((-2 (|:| |rnum| |t#1|) (|:| |polnum| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -2393 ((-621 |t#4|) (-621 |t#4|) $)) (-15 -3480 ((-621 |t#4|) (-621 |t#4|) $)) (-15 -2148 ((-112) $))) |%noBranch|)))
+(((-34) . T) ((-101) . T) ((-593 (-621 |#4|)) . T) ((-593 (-834)) . T) ((-149 |#4|) . T) ((-594 (-525)) |has| |#4| (-594 (-525))) ((-302 |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))) ((-481 |#4|) . T) ((-505 |#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))) ((-1066) . T) ((-1179) . T))
+((-2963 (((-621 |#4|) |#4| |#4|) 118)) (-3039 (((-621 |#4|) (-621 |#4|) (-112)) 107 (|has| |#1| (-444))) (((-621 |#4|) (-621 |#4|)) 108 (|has| |#1| (-444)))) (-1285 (((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|)) 35)) (-2513 (((-112) |#4|) 34)) (-4134 (((-621 |#4|) |#4|) 103 (|has| |#1| (-444)))) (-2431 (((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-1 (-112) |#4|) (-621 |#4|)) 20)) (-3502 (((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 (-1 (-112) |#4|)) (-621 |#4|)) 22)) (-3636 (((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 (-1 (-112) |#4|)) (-621 |#4|)) 23)) (-2150 (((-3 (-2 (|:| |bas| (-468 |#1| |#2| |#3| |#4|)) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|)) 73)) (-3096 (((-621 |#4|) (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 85)) (-3026 (((-621 |#4|) (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 111)) (-3883 (((-621 |#4|) (-621 |#4|)) 110)) (-4277 (((-621 |#4|) (-621 |#4|) (-621 |#4|) (-112)) 48) (((-621 |#4|) (-621 |#4|) (-621 |#4|)) 50)) (-1949 ((|#4| |#4| (-621 |#4|)) 49)) (-1374 (((-621 |#4|) (-621 |#4|) (-621 |#4|)) 114 (|has| |#1| (-444)))) (-1736 (((-621 |#4|) (-621 |#4|) (-621 |#4|)) 117 (|has| |#1| (-444)))) (-1954 (((-621 |#4|) (-621 |#4|) (-621 |#4|)) 116 (|has| |#1| (-444)))) (-3378 (((-621 |#4|) (-621 |#4|) (-621 |#4|) (-1 (-621 |#4|) (-621 |#4|))) 87) (((-621 |#4|) (-621 |#4|) (-621 |#4|)) 89) (((-621 |#4|) (-621 |#4|) |#4|) 121) (((-621 |#4|) |#4| |#4|) 119) (((-621 |#4|) (-621 |#4|)) 88)) (-1471 (((-621 |#4|) (-621 |#4|) (-621 |#4|)) 100 (-12 (|has| |#1| (-145)) (|has| |#1| (-300))))) (-4065 (((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|)) 41)) (-4098 (((-112) (-621 |#4|)) 62)) (-1985 (((-112) (-621 |#4|) (-621 (-621 |#4|))) 53)) (-2527 (((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|)) 29)) (-2203 (((-112) |#4|) 28)) (-3815 (((-621 |#4|) (-621 |#4|)) 98 (-12 (|has| |#1| (-145)) (|has| |#1| (-300))))) (-2495 (((-621 |#4|) (-621 |#4|)) 99 (-12 (|has| |#1| (-145)) (|has| |#1| (-300))))) (-3214 (((-621 |#4|) (-621 |#4|)) 66)) (-3987 (((-621 |#4|) (-621 |#4|)) 79)) (-2809 (((-112) (-621 |#4|) (-621 |#4|)) 51)) (-3864 (((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|)) 39)) (-4223 (((-112) |#4|) 36)))
+(((-948 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3378 ((-621 |#4|) (-621 |#4|))) (-15 -3378 ((-621 |#4|) |#4| |#4|)) (-15 -3883 ((-621 |#4|) (-621 |#4|))) (-15 -2963 ((-621 |#4|) |#4| |#4|)) (-15 -3378 ((-621 |#4|) (-621 |#4|) |#4|)) (-15 -3378 ((-621 |#4|) (-621 |#4|) (-621 |#4|))) (-15 -3378 ((-621 |#4|) (-621 |#4|) (-621 |#4|) (-1 (-621 |#4|) (-621 |#4|)))) (-15 -2809 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -1985 ((-112) (-621 |#4|) (-621 (-621 |#4|)))) (-15 -4098 ((-112) (-621 |#4|))) (-15 -2431 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-1 (-112) |#4|) (-621 |#4|))) (-15 -3502 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 (-1 (-112) |#4|)) (-621 |#4|))) (-15 -3636 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 (-1 (-112) |#4|)) (-621 |#4|))) (-15 -4065 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|))) (-15 -2513 ((-112) |#4|)) (-15 -1285 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|))) (-15 -2203 ((-112) |#4|)) (-15 -2527 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|))) (-15 -4223 ((-112) |#4|)) (-15 -3864 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|))) (-15 -4277 ((-621 |#4|) (-621 |#4|) (-621 |#4|))) (-15 -4277 ((-621 |#4|) (-621 |#4|) (-621 |#4|) (-112))) (-15 -1949 (|#4| |#4| (-621 |#4|))) (-15 -3214 ((-621 |#4|) (-621 |#4|))) (-15 -2150 ((-3 (-2 (|:| |bas| (-468 |#1| |#2| |#3| |#4|)) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|))) (-15 -3987 ((-621 |#4|) (-621 |#4|))) (-15 -3096 ((-621 |#4|) (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3026 ((-621 |#4|) (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-444)) (PROGN (-15 -4134 ((-621 |#4|) |#4|)) (-15 -3039 ((-621 |#4|) (-621 |#4|))) (-15 -3039 ((-621 |#4|) (-621 |#4|) (-112))) (-15 -1374 ((-621 |#4|) (-621 |#4|) (-621 |#4|))) (-15 -1954 ((-621 |#4|) (-621 |#4|) (-621 |#4|))) (-15 -1736 ((-621 |#4|) (-621 |#4|) (-621 |#4|)))) |%noBranch|) (IF (|has| |#1| (-300)) (IF (|has| |#1| (-145)) (PROGN (-15 -2495 ((-621 |#4|) (-621 |#4|))) (-15 -3815 ((-621 |#4|) (-621 |#4|))) (-15 -1471 ((-621 |#4|) (-621 |#4|) (-621 |#4|)))) |%noBranch|) |%noBranch|)) (-541) (-769) (-823) (-1032 |#1| |#2| |#3|)) (T -948))
+((-1471 (*1 *2 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-145)) (-4 *3 (-300)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-3815 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-145)) (-4 *3 (-300)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-2495 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-145)) (-4 *3 (-300)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-1736 (*1 *2 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-444)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-1954 (*1 *2 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-444)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-1374 (*1 *2 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-444)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-3039 (*1 *2 *2 *3) (-12 (-5 *2 (-621 *7)) (-5 *3 (-112)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-948 *4 *5 *6 *7)))) (-3039 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-444)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-4134 (*1 *2 *3) (-12 (-4 *4 (-444)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *3)) (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))) (-3026 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-621 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-948 *5 *6 *7 *8)))) (-3096 (*1 *2 *2 *3 *4 *5) (-12 (-5 *2 (-621 *9)) (-5 *3 (-1 (-112) *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1032 *6 *7 *8)) (-4 *6 (-541)) (-4 *7 (-769)) (-4 *8 (-823)) (-5 *1 (-948 *6 *7 *8 *9)))) (-3987 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-2150 (*1 *2 *3) (|partial| -12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-2 (|:| |bas| (-468 *4 *5 *6 *7)) (|:| -2316 (-621 *7)))) (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))) (-3214 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-1949 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-948 *4 *5 *6 *2)))) (-4277 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-621 *7)) (-5 *3 (-112)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-948 *4 *5 *6 *7)))) (-4277 (*1 *2 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-3864 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-621 *7)) (|:| |badPols| (-621 *7)))) (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))) (-4223 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))) (-2527 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-621 *7)) (|:| |badPols| (-621 *7)))) (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))) (-2203 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))) (-1285 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-621 *7)) (|:| |badPols| (-621 *7)))) (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))) (-2513 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))) (-4065 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-621 *7)) (|:| |badPols| (-621 *7)))) (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))) (-3636 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-1 (-112) *8))) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-2 (|:| |goodPols| (-621 *8)) (|:| |badPols| (-621 *8)))) (-5 *1 (-948 *5 *6 *7 *8)) (-5 *4 (-621 *8)))) (-3502 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-1 (-112) *8))) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-2 (|:| |goodPols| (-621 *8)) (|:| |badPols| (-621 *8)))) (-5 *1 (-948 *5 *6 *7 *8)) (-5 *4 (-621 *8)))) (-2431 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-2 (|:| |goodPols| (-621 *8)) (|:| |badPols| (-621 *8)))) (-5 *1 (-948 *5 *6 *7 *8)) (-5 *4 (-621 *8)))) (-4098 (*1 *2 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-948 *4 *5 *6 *7)))) (-1985 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-621 *8))) (-5 *3 (-621 *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-112)) (-5 *1 (-948 *5 *6 *7 *8)))) (-2809 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-948 *4 *5 *6 *7)))) (-3378 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 (-621 *7) (-621 *7))) (-5 *2 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-948 *4 *5 *6 *7)))) (-3378 (*1 *2 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-3378 (*1 *2 *2 *3) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-948 *4 *5 *6 *3)))) (-2963 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *3)) (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))) (-3883 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))) (-3378 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *3)) (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))) (-3378 (*1 *2 *2) (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))))
+(-10 -7 (-15 -3378 ((-621 |#4|) (-621 |#4|))) (-15 -3378 ((-621 |#4|) |#4| |#4|)) (-15 -3883 ((-621 |#4|) (-621 |#4|))) (-15 -2963 ((-621 |#4|) |#4| |#4|)) (-15 -3378 ((-621 |#4|) (-621 |#4|) |#4|)) (-15 -3378 ((-621 |#4|) (-621 |#4|) (-621 |#4|))) (-15 -3378 ((-621 |#4|) (-621 |#4|) (-621 |#4|) (-1 (-621 |#4|) (-621 |#4|)))) (-15 -2809 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -1985 ((-112) (-621 |#4|) (-621 (-621 |#4|)))) (-15 -4098 ((-112) (-621 |#4|))) (-15 -2431 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-1 (-112) |#4|) (-621 |#4|))) (-15 -3502 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 (-1 (-112) |#4|)) (-621 |#4|))) (-15 -3636 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 (-1 (-112) |#4|)) (-621 |#4|))) (-15 -4065 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|))) (-15 -2513 ((-112) |#4|)) (-15 -1285 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|))) (-15 -2203 ((-112) |#4|)) (-15 -2527 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|))) (-15 -4223 ((-112) |#4|)) (-15 -3864 ((-2 (|:| |goodPols| (-621 |#4|)) (|:| |badPols| (-621 |#4|))) (-621 |#4|))) (-15 -4277 ((-621 |#4|) (-621 |#4|) (-621 |#4|))) (-15 -4277 ((-621 |#4|) (-621 |#4|) (-621 |#4|) (-112))) (-15 -1949 (|#4| |#4| (-621 |#4|))) (-15 -3214 ((-621 |#4|) (-621 |#4|))) (-15 -2150 ((-3 (-2 (|:| |bas| (-468 |#1| |#2| |#3| |#4|)) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|))) (-15 -3987 ((-621 |#4|) (-621 |#4|))) (-15 -3096 ((-621 |#4|) (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3026 ((-621 |#4|) (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-444)) (PROGN (-15 -4134 ((-621 |#4|) |#4|)) (-15 -3039 ((-621 |#4|) (-621 |#4|))) (-15 -3039 ((-621 |#4|) (-621 |#4|) (-112))) (-15 -1374 ((-621 |#4|) (-621 |#4|) (-621 |#4|))) (-15 -1954 ((-621 |#4|) (-621 |#4|) (-621 |#4|))) (-15 -1736 ((-621 |#4|) (-621 |#4|) (-621 |#4|)))) |%noBranch|) (IF (|has| |#1| (-300)) (IF (|has| |#1| (-145)) (PROGN (-15 -2495 ((-621 |#4|) (-621 |#4|))) (-15 -3815 ((-621 |#4|) (-621 |#4|))) (-15 -1471 ((-621 |#4|) (-621 |#4|) (-621 |#4|)))) |%noBranch|) |%noBranch|))
+((-2648 (((-2 (|:| R (-665 |#1|)) (|:| A (-665 |#1|)) (|:| |Ainv| (-665 |#1|))) (-665 |#1|) (-98 |#1|) (-1 |#1| |#1|)) 19)) (-2271 (((-621 (-2 (|:| C (-665 |#1|)) (|:| |g| (-1225 |#1|)))) (-665 |#1|) (-1225 |#1|)) 36)) (-3946 (((-665 |#1|) (-665 |#1|) (-665 |#1|) (-98 |#1|) (-1 |#1| |#1|)) 16)))
+(((-949 |#1|) (-10 -7 (-15 -2648 ((-2 (|:| R (-665 |#1|)) (|:| A (-665 |#1|)) (|:| |Ainv| (-665 |#1|))) (-665 |#1|) (-98 |#1|) (-1 |#1| |#1|))) (-15 -3946 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-98 |#1|) (-1 |#1| |#1|))) (-15 -2271 ((-621 (-2 (|:| C (-665 |#1|)) (|:| |g| (-1225 |#1|)))) (-665 |#1|) (-1225 |#1|)))) (-356)) (T -949))
+((-2271 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-5 *2 (-621 (-2 (|:| C (-665 *5)) (|:| |g| (-1225 *5))))) (-5 *1 (-949 *5)) (-5 *3 (-665 *5)) (-5 *4 (-1225 *5)))) (-3946 (*1 *2 *2 *2 *3 *4) (-12 (-5 *2 (-665 *5)) (-5 *3 (-98 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-356)) (-5 *1 (-949 *5)))) (-2648 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-98 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-356)) (-5 *2 (-2 (|:| R (-665 *6)) (|:| A (-665 *6)) (|:| |Ainv| (-665 *6)))) (-5 *1 (-949 *6)) (-5 *3 (-665 *6)))))
+(-10 -7 (-15 -2648 ((-2 (|:| R (-665 |#1|)) (|:| A (-665 |#1|)) (|:| |Ainv| (-665 |#1|))) (-665 |#1|) (-98 |#1|) (-1 |#1| |#1|))) (-15 -3946 ((-665 |#1|) (-665 |#1|) (-665 |#1|) (-98 |#1|) (-1 |#1| |#1|))) (-15 -2271 ((-621 (-2 (|:| C (-665 |#1|)) (|:| |g| (-1225 |#1|)))) (-665 |#1|) (-1225 |#1|))))
+((-2620 (((-411 |#4|) |#4|) 48)))
+(((-950 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2620 ((-411 |#4|) |#4|))) (-823) (-769) (-444) (-920 |#3| |#2| |#1|)) (T -950))
+((-2620 (*1 *2 *3) (-12 (-4 *4 (-823)) (-4 *5 (-769)) (-4 *6 (-444)) (-5 *2 (-411 *3)) (-5 *1 (-950 *4 *5 *6 *3)) (-4 *3 (-920 *6 *5 *4)))))
+(-10 -7 (-15 -2620 ((-411 |#4|) |#4|)))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-3768 (($ (-747)) 112 (|has| |#1| (-23)))) (-3659 (((-1230) $ (-549) (-549)) 40 (|has| $ (-6 -4337)))) (-2239 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-823)))) (-2015 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4337))) (($ $) 88 (-12 (|has| |#1| (-823)) (|has| $ (-6 -4337))))) (-3191 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-823)))) (-2850 (((-112) $ (-747)) 8)) (-2250 ((|#1| $ (-549) |#1|) 52 (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) 58 (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4336)))) (-3034 (($) 7 T CONST)) (-2918 (($ $) 90 (|has| $ (-6 -4337)))) (-3062 (($ $) 100)) (-3675 (($ $) 78 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ |#1| $) 77 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4336)))) (-1875 ((|#1| $ (-549) |#1|) 53 (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) 51)) (-2881 (((-549) (-1 (-112) |#1|) $) 97) (((-549) |#1| $) 96 (|has| |#1| (-1066))) (((-549) |#1| $ (-549)) 95 (|has| |#1| (-1066)))) (-2796 (($ (-621 |#1|)) 118)) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-4049 (((-665 |#1|) $ $) 105 (|has| |#1| (-1018)))) (-3743 (($ (-747) |#1|) 69)) (-1777 (((-112) $ (-747)) 9)) (-2807 (((-549) $) 43 (|has| (-549) (-823)))) (-2861 (($ $ $) 87 (|has| |#1| (-823)))) (-3050 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-823)))) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3063 (((-549) $) 44 (|has| (-549) (-823)))) (-3574 (($ $ $) 86 (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3144 ((|#1| $) 102 (-12 (|has| |#1| (-1018)) (|has| |#1| (-973))))) (-3942 (((-112) $ (-747)) 10)) (-4210 ((|#1| $) 103 (-12 (|has| |#1| (-1018)) (|has| |#1| (-973))))) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-2613 (($ |#1| $ (-549)) 60) (($ $ $ (-549)) 59)) (-2296 (((-621 (-549)) $) 46)) (-2284 (((-112) (-549) $) 47)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3645 ((|#1| $) 42 (|has| (-549) (-823)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-1943 (($ $ |#1|) 41 (|has| $ (-6 -4337)))) (-3796 (($ $ (-621 |#1|)) 115)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2478 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) 48)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#1| $ (-549) |#1|) 50) ((|#1| $ (-549)) 49) (($ $ (-1192 (-549))) 63)) (-1283 ((|#1| $ $) 106 (|has| |#1| (-1018)))) (-2260 (((-892) $) 117)) (-2162 (($ $ (-549)) 62) (($ $ (-1192 (-549))) 61)) (-1918 (($ $ $) 104)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2049 (($ $ $ (-549)) 91 (|has| $ (-6 -4337)))) (-2279 (($ $) 13)) (-2843 (((-525) $) 79 (|has| |#1| (-594 (-525)))) (($ (-621 |#1|)) 116)) (-3853 (($ (-621 |#1|)) 70)) (-1950 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-621 $)) 65)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) 84 (|has| |#1| (-823)))) (-2423 (((-112) $ $) 83 (|has| |#1| (-823)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-2436 (((-112) $ $) 85 (|has| |#1| (-823)))) (-2409 (((-112) $ $) 82 (|has| |#1| (-823)))) (-2498 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-2484 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-549) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-703))) (($ $ |#1|) 107 (|has| |#1| (-703)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
(((-951 |#1|) (-138) (-1018)) (T -951))
-((-2798 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1018)) (-4 *1 (-951 *3)))) (-2985 (*1 *2 *1) (-12 (-4 *1 (-951 *3)) (-4 *3 (-1018)) (-5 *2 (-892)))) (-2845 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1018)) (-4 *1 (-951 *3)))) (-2168 (*1 *1 *1 *1) (-12 (-4 *1 (-951 *2)) (-4 *2 (-1018)))) (-2763 (*1 *1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *1 (-951 *3)) (-4 *3 (-1018)))))
-(-13 (-1224 |t#1|) (-10 -8 (-15 -2798 ($ (-621 |t#1|))) (-15 -2985 ((-892) $)) (-15 -2845 ($ (-621 |t#1|))) (-15 -2168 ($ $ $)) (-15 -2763 ($ $ (-621 |t#1|)))))
-(((-34) . T) ((-101) -1536 (|has| |#1| (-1067)) (|has| |#1| (-823))) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-823)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-366 |#1|) . T) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-627 |#1|) . T) ((-19 |#1|) . T) ((-823) |has| |#1| (-823)) ((-1067) -1536 (|has| |#1| (-1067)) (|has| |#1| (-823))) ((-1180) . T) ((-1224 |#1|) . T))
-((-2797 (((-914 |#2|) (-1 |#2| |#1|) (-914 |#1|)) 17)))
-(((-952 |#1| |#2|) (-10 -7 (-15 -2797 ((-914 |#2|) (-1 |#2| |#1|) (-914 |#1|)))) (-1018) (-1018)) (T -952))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-914 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *2 (-914 *6)) (-5 *1 (-952 *5 *6)))))
-(-10 -7 (-15 -2797 ((-914 |#2|) (-1 |#2| |#1|) (-914 |#1|))))
-((-1965 ((|#1| (-914 |#1|)) 13)) (-1484 ((|#1| (-914 |#1|)) 12)) (-1891 ((|#1| (-914 |#1|)) 11)) (-2334 ((|#1| (-914 |#1|)) 15)) (-3032 ((|#1| (-914 |#1|)) 21)) (-2383 ((|#1| (-914 |#1|)) 14)) (-1402 ((|#1| (-914 |#1|)) 16)) (-1886 ((|#1| (-914 |#1|)) 20)) (-3288 ((|#1| (-914 |#1|)) 19)))
-(((-953 |#1|) (-10 -7 (-15 -1891 (|#1| (-914 |#1|))) (-15 -1484 (|#1| (-914 |#1|))) (-15 -1965 (|#1| (-914 |#1|))) (-15 -2383 (|#1| (-914 |#1|))) (-15 -2334 (|#1| (-914 |#1|))) (-15 -1402 (|#1| (-914 |#1|))) (-15 -3288 (|#1| (-914 |#1|))) (-15 -1886 (|#1| (-914 |#1|))) (-15 -3032 (|#1| (-914 |#1|)))) (-1018)) (T -953))
-((-3032 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))) (-1886 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))) (-3288 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))) (-1402 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))) (-2334 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))) (-2383 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))) (-1965 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))) (-1484 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))) (-1891 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
-(-10 -7 (-15 -1891 (|#1| (-914 |#1|))) (-15 -1484 (|#1| (-914 |#1|))) (-15 -1965 (|#1| (-914 |#1|))) (-15 -2383 (|#1| (-914 |#1|))) (-15 -2334 (|#1| (-914 |#1|))) (-15 -1402 (|#1| (-914 |#1|))) (-15 -3288 (|#1| (-914 |#1|))) (-15 -1886 (|#1| (-914 |#1|))) (-15 -3032 (|#1| (-914 |#1|))))
-((-1263 (((-3 |#1| "failed") |#1|) 18)) (-3164 (((-3 |#1| "failed") |#1|) 6)) (-2278 (((-3 |#1| "failed") |#1|) 16)) (-3310 (((-3 |#1| "failed") |#1|) 4)) (-2685 (((-3 |#1| "failed") |#1|) 20)) (-2141 (((-3 |#1| "failed") |#1|) 8)) (-2022 (((-3 |#1| "failed") |#1| (-747)) 1)) (-3284 (((-3 |#1| "failed") |#1|) 3)) (-1556 (((-3 |#1| "failed") |#1|) 2)) (-2426 (((-3 |#1| "failed") |#1|) 21)) (-2639 (((-3 |#1| "failed") |#1|) 9)) (-1736 (((-3 |#1| "failed") |#1|) 19)) (-2252 (((-3 |#1| "failed") |#1|) 7)) (-4178 (((-3 |#1| "failed") |#1|) 17)) (-3311 (((-3 |#1| "failed") |#1|) 5)) (-3696 (((-3 |#1| "failed") |#1|) 24)) (-1871 (((-3 |#1| "failed") |#1|) 12)) (-2540 (((-3 |#1| "failed") |#1|) 22)) (-1781 (((-3 |#1| "failed") |#1|) 10)) (-1528 (((-3 |#1| "failed") |#1|) 26)) (-2273 (((-3 |#1| "failed") |#1|) 14)) (-2376 (((-3 |#1| "failed") |#1|) 27)) (-4219 (((-3 |#1| "failed") |#1|) 15)) (-3943 (((-3 |#1| "failed") |#1|) 25)) (-3069 (((-3 |#1| "failed") |#1|) 13)) (-2767 (((-3 |#1| "failed") |#1|) 23)) (-1598 (((-3 |#1| "failed") |#1|) 11)))
-(((-954 |#1|) (-138) (-1165)) (T -954))
-((-2376 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-1528 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-3943 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-3696 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-2767 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-2540 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-2426 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-2685 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-1736 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-1263 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-4178 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-2278 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-4219 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-2273 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-3069 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-1871 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-1598 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-1781 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-2639 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-2141 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-2252 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-3164 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-3311 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-3310 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-3284 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-1556 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))) (-2022 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-747)) (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(-13 (-10 -7 (-15 -2022 ((-3 |t#1| "failed") |t#1| (-747))) (-15 -1556 ((-3 |t#1| "failed") |t#1|)) (-15 -3284 ((-3 |t#1| "failed") |t#1|)) (-15 -3310 ((-3 |t#1| "failed") |t#1|)) (-15 -3311 ((-3 |t#1| "failed") |t#1|)) (-15 -3164 ((-3 |t#1| "failed") |t#1|)) (-15 -2252 ((-3 |t#1| "failed") |t#1|)) (-15 -2141 ((-3 |t#1| "failed") |t#1|)) (-15 -2639 ((-3 |t#1| "failed") |t#1|)) (-15 -1781 ((-3 |t#1| "failed") |t#1|)) (-15 -1598 ((-3 |t#1| "failed") |t#1|)) (-15 -1871 ((-3 |t#1| "failed") |t#1|)) (-15 -3069 ((-3 |t#1| "failed") |t#1|)) (-15 -2273 ((-3 |t#1| "failed") |t#1|)) (-15 -4219 ((-3 |t#1| "failed") |t#1|)) (-15 -2278 ((-3 |t#1| "failed") |t#1|)) (-15 -4178 ((-3 |t#1| "failed") |t#1|)) (-15 -1263 ((-3 |t#1| "failed") |t#1|)) (-15 -1736 ((-3 |t#1| "failed") |t#1|)) (-15 -2685 ((-3 |t#1| "failed") |t#1|)) (-15 -2426 ((-3 |t#1| "failed") |t#1|)) (-15 -2540 ((-3 |t#1| "failed") |t#1|)) (-15 -2767 ((-3 |t#1| "failed") |t#1|)) (-15 -3696 ((-3 |t#1| "failed") |t#1|)) (-15 -3943 ((-3 |t#1| "failed") |t#1|)) (-15 -1528 ((-3 |t#1| "failed") |t#1|)) (-15 -2376 ((-3 |t#1| "failed") |t#1|))))
-((-1825 ((|#4| |#4| (-621 |#3|)) 56) ((|#4| |#4| |#3|) 55)) (-1361 ((|#4| |#4| (-621 |#3|)) 23) ((|#4| |#4| |#3|) 19)) (-2797 ((|#4| (-1 |#4| (-923 |#1|)) |#4|) 30)))
-(((-955 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1361 (|#4| |#4| |#3|)) (-15 -1361 (|#4| |#4| (-621 |#3|))) (-15 -1825 (|#4| |#4| |#3|)) (-15 -1825 (|#4| |#4| (-621 |#3|))) (-15 -2797 (|#4| (-1 |#4| (-923 |#1|)) |#4|))) (-1018) (-769) (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $)) (-15 -3011 ((-3 $ "failed") (-1143))))) (-920 (-923 |#1|) |#2| |#3|)) (T -955))
-((-2797 (*1 *2 *3 *2) (-12 (-5 *3 (-1 *2 (-923 *4))) (-4 *4 (-1018)) (-4 *2 (-920 (-923 *4) *5 *6)) (-4 *5 (-769)) (-4 *6 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $)) (-15 -3011 ((-3 $ "failed") (-1143)))))) (-5 *1 (-955 *4 *5 *6 *2)))) (-1825 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *6)) (-4 *6 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $)) (-15 -3011 ((-3 $ "failed") (-1143)))))) (-4 *4 (-1018)) (-4 *5 (-769)) (-5 *1 (-955 *4 *5 *6 *2)) (-4 *2 (-920 (-923 *4) *5 *6)))) (-1825 (*1 *2 *2 *3) (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $)) (-15 -3011 ((-3 $ "failed") (-1143)))))) (-5 *1 (-955 *4 *5 *3 *2)) (-4 *2 (-920 (-923 *4) *5 *3)))) (-1361 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *6)) (-4 *6 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $)) (-15 -3011 ((-3 $ "failed") (-1143)))))) (-4 *4 (-1018)) (-4 *5 (-769)) (-5 *1 (-955 *4 *5 *6 *2)) (-4 *2 (-920 (-923 *4) *5 *6)))) (-1361 (*1 *2 *2 *3) (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $)) (-15 -3011 ((-3 $ "failed") (-1143)))))) (-5 *1 (-955 *4 *5 *3 *2)) (-4 *2 (-920 (-923 *4) *5 *3)))))
-(-10 -7 (-15 -1361 (|#4| |#4| |#3|)) (-15 -1361 (|#4| |#4| (-621 |#3|))) (-15 -1825 (|#4| |#4| |#3|)) (-15 -1825 (|#4| |#4| (-621 |#3|))) (-15 -2797 (|#4| (-1 |#4| (-923 |#1|)) |#4|)))
-((-3996 ((|#2| |#3|) 35)) (-1784 (((-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) |#2|) 73)) (-1613 (((-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|)))) 89)))
-(((-956 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1613 ((-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))))) (-15 -1784 ((-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) |#2|)) (-15 -3996 (|#2| |#3|))) (-342) (-1202 |#1|) (-1202 |#2|) (-701 |#2| |#3|)) (T -956))
-((-3996 (*1 *2 *3) (-12 (-4 *3 (-1202 *2)) (-4 *2 (-1202 *4)) (-5 *1 (-956 *4 *2 *3 *5)) (-4 *4 (-342)) (-4 *5 (-701 *2 *3)))) (-1784 (*1 *2 *3) (-12 (-4 *4 (-342)) (-4 *3 (-1202 *4)) (-4 *5 (-1202 *3)) (-5 *2 (-2 (|:| -1949 (-665 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-665 *3)))) (-5 *1 (-956 *4 *3 *5 *6)) (-4 *6 (-701 *3 *5)))) (-1613 (*1 *2) (-12 (-4 *3 (-342)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 *4)) (-5 *2 (-2 (|:| -1949 (-665 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-665 *4)))) (-5 *1 (-956 *3 *4 *5 *6)) (-4 *6 (-701 *4 *5)))))
-(-10 -7 (-15 -1613 ((-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))))) (-15 -1784 ((-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) |#2|)) (-15 -3996 (|#2| |#3|)))
-((-2299 (((-958 (-400 (-549)) (-836 |#1|) (-234 |#2| (-747)) (-241 |#1| (-400 (-549)))) (-958 (-400 (-549)) (-836 |#1|) (-234 |#2| (-747)) (-241 |#1| (-400 (-549))))) 69)))
-(((-957 |#1| |#2|) (-10 -7 (-15 -2299 ((-958 (-400 (-549)) (-836 |#1|) (-234 |#2| (-747)) (-241 |#1| (-400 (-549)))) (-958 (-400 (-549)) (-836 |#1|) (-234 |#2| (-747)) (-241 |#1| (-400 (-549))))))) (-621 (-1143)) (-747)) (T -957))
-((-2299 (*1 *2 *2) (-12 (-5 *2 (-958 (-400 (-549)) (-836 *3) (-234 *4 (-747)) (-241 *3 (-400 (-549))))) (-14 *3 (-621 (-1143))) (-14 *4 (-747)) (-5 *1 (-957 *3 *4)))))
-(-10 -7 (-15 -2299 ((-958 (-400 (-549)) (-836 |#1|) (-234 |#2| (-747)) (-241 |#1| (-400 (-549)))) (-958 (-400 (-549)) (-836 |#1|) (-234 |#2| (-747)) (-241 |#1| (-400 (-549)))))))
-((-3834 (((-112) $ $) NIL)) (-1464 (((-3 (-112) "failed") $) 69)) (-4038 (($ $) 36 (-12 (|has| |#1| (-145)) (|has| |#1| (-300))))) (-2274 (($ $ (-3 (-112) "failed")) 70)) (-3885 (($ (-621 |#4|) |#4|) 25)) (-3851 (((-1125) $) NIL)) (-3249 (($ $) 67)) (-3990 (((-1087) $) NIL)) (-3670 (((-112) $) 68)) (-3742 (($) 30)) (-1530 ((|#4| $) 72)) (-2837 (((-621 |#4|) $) 71)) (-3846 (((-834) $) 66)) (-2389 (((-112) $ $) NIL)))
-(((-958 |#1| |#2| |#3| |#4|) (-13 (-1067) (-593 (-834)) (-10 -8 (-15 -3742 ($)) (-15 -3885 ($ (-621 |#4|) |#4|)) (-15 -1464 ((-3 (-112) "failed") $)) (-15 -2274 ($ $ (-3 (-112) "failed"))) (-15 -3670 ((-112) $)) (-15 -2837 ((-621 |#4|) $)) (-15 -1530 (|#4| $)) (-15 -3249 ($ $)) (IF (|has| |#1| (-300)) (IF (|has| |#1| (-145)) (-15 -4038 ($ $)) |%noBranch|) |%noBranch|))) (-444) (-823) (-769) (-920 |#1| |#3| |#2|)) (T -958))
-((-3742 (*1 *1) (-12 (-4 *2 (-444)) (-4 *3 (-823)) (-4 *4 (-769)) (-5 *1 (-958 *2 *3 *4 *5)) (-4 *5 (-920 *2 *4 *3)))) (-3885 (*1 *1 *2 *3) (-12 (-5 *2 (-621 *3)) (-4 *3 (-920 *4 *6 *5)) (-4 *4 (-444)) (-4 *5 (-823)) (-4 *6 (-769)) (-5 *1 (-958 *4 *5 *6 *3)))) (-1464 (*1 *2 *1) (|partial| -12 (-4 *3 (-444)) (-4 *4 (-823)) (-4 *5 (-769)) (-5 *2 (-112)) (-5 *1 (-958 *3 *4 *5 *6)) (-4 *6 (-920 *3 *5 *4)))) (-2274 (*1 *1 *1 *2) (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-444)) (-4 *4 (-823)) (-4 *5 (-769)) (-5 *1 (-958 *3 *4 *5 *6)) (-4 *6 (-920 *3 *5 *4)))) (-3670 (*1 *2 *1) (-12 (-4 *3 (-444)) (-4 *4 (-823)) (-4 *5 (-769)) (-5 *2 (-112)) (-5 *1 (-958 *3 *4 *5 *6)) (-4 *6 (-920 *3 *5 *4)))) (-2837 (*1 *2 *1) (-12 (-4 *3 (-444)) (-4 *4 (-823)) (-4 *5 (-769)) (-5 *2 (-621 *6)) (-5 *1 (-958 *3 *4 *5 *6)) (-4 *6 (-920 *3 *5 *4)))) (-1530 (*1 *2 *1) (-12 (-4 *2 (-920 *3 *5 *4)) (-5 *1 (-958 *3 *4 *5 *2)) (-4 *3 (-444)) (-4 *4 (-823)) (-4 *5 (-769)))) (-3249 (*1 *1 *1) (-12 (-4 *2 (-444)) (-4 *3 (-823)) (-4 *4 (-769)) (-5 *1 (-958 *2 *3 *4 *5)) (-4 *5 (-920 *2 *4 *3)))) (-4038 (*1 *1 *1) (-12 (-4 *2 (-145)) (-4 *2 (-300)) (-4 *2 (-444)) (-4 *3 (-823)) (-4 *4 (-769)) (-5 *1 (-958 *2 *3 *4 *5)) (-4 *5 (-920 *2 *4 *3)))))
-(-13 (-1067) (-593 (-834)) (-10 -8 (-15 -3742 ($)) (-15 -3885 ($ (-621 |#4|) |#4|)) (-15 -1464 ((-3 (-112) "failed") $)) (-15 -2274 ($ $ (-3 (-112) "failed"))) (-15 -3670 ((-112) $)) (-15 -2837 ((-621 |#4|) $)) (-15 -1530 (|#4| $)) (-15 -3249 ($ $)) (IF (|has| |#1| (-300)) (IF (|has| |#1| (-145)) (-15 -4038 ($ $)) |%noBranch|) |%noBranch|)))
-((-1897 (((-112) |#5| |#5|) 38)) (-2954 (((-112) |#5| |#5|) 52)) (-3417 (((-112) |#5| (-621 |#5|)) 74) (((-112) |#5| |#5|) 61)) (-3503 (((-112) (-621 |#4|) (-621 |#4|)) 58)) (-1346 (((-112) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|)) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) 63)) (-1663 (((-1231)) 33)) (-4164 (((-1231) (-1125) (-1125) (-1125)) 29)) (-1382 (((-621 |#5|) (-621 |#5|)) 81)) (-4118 (((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|)))) 79)) (-3954 (((-621 (-2 (|:| -2652 (-621 |#4|)) (|:| -1981 |#5|) (|:| |ineq| (-621 |#4|)))) (-621 |#4|) (-621 |#5|) (-112) (-112)) 101)) (-4282 (((-112) |#5| |#5|) 47)) (-3597 (((-3 (-112) "failed") |#5| |#5|) 71)) (-4083 (((-112) (-621 |#4|) (-621 |#4|)) 57)) (-2457 (((-112) (-621 |#4|) (-621 |#4|)) 59)) (-2473 (((-112) (-621 |#4|) (-621 |#4|)) 60)) (-3751 (((-3 (-2 (|:| -2652 (-621 |#4|)) (|:| -1981 |#5|) (|:| |ineq| (-621 |#4|))) "failed") (-621 |#4|) |#5| (-621 |#4|) (-112) (-112) (-112) (-112) (-112)) 97)) (-2587 (((-621 |#5|) (-621 |#5|)) 43)))
-(((-959 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4164 ((-1231) (-1125) (-1125) (-1125))) (-15 -1663 ((-1231))) (-15 -1897 ((-112) |#5| |#5|)) (-15 -2587 ((-621 |#5|) (-621 |#5|))) (-15 -4282 ((-112) |#5| |#5|)) (-15 -2954 ((-112) |#5| |#5|)) (-15 -3503 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -4083 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -2457 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -2473 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -3597 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3417 ((-112) |#5| |#5|)) (-15 -3417 ((-112) |#5| (-621 |#5|))) (-15 -1382 ((-621 |#5|) (-621 |#5|))) (-15 -1346 ((-112) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|)) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|)))) (-15 -4118 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) (-15 -3954 ((-621 (-2 (|:| -2652 (-621 |#4|)) (|:| -1981 |#5|) (|:| |ineq| (-621 |#4|)))) (-621 |#4|) (-621 |#5|) (-112) (-112))) (-15 -3751 ((-3 (-2 (|:| -2652 (-621 |#4|)) (|:| -1981 |#5|) (|:| |ineq| (-621 |#4|))) "failed") (-621 |#4|) |#5| (-621 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1038 |#1| |#2| |#3| |#4|)) (T -959))
-((-3751 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *9 (-1032 *6 *7 *8)) (-5 *2 (-2 (|:| -2652 (-621 *9)) (|:| -1981 *4) (|:| |ineq| (-621 *9)))) (-5 *1 (-959 *6 *7 *8 *9 *4)) (-5 *3 (-621 *9)) (-4 *4 (-1038 *6 *7 *8 *9)))) (-3954 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-621 *10)) (-5 *5 (-112)) (-4 *10 (-1038 *6 *7 *8 *9)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *9 (-1032 *6 *7 *8)) (-5 *2 (-621 (-2 (|:| -2652 (-621 *9)) (|:| -1981 *10) (|:| |ineq| (-621 *9))))) (-5 *1 (-959 *6 *7 *8 *9 *10)) (-5 *3 (-621 *9)))) (-4118 (*1 *2 *2) (-12 (-5 *2 (-621 (-2 (|:| |val| (-621 *6)) (|:| -1981 *7)))) (-4 *6 (-1032 *3 *4 *5)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-959 *3 *4 *5 *6 *7)))) (-1346 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-621 *7)) (|:| -1981 *8))) (-4 *7 (-1032 *4 *5 *6)) (-4 *8 (-1038 *4 *5 *6 *7)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *8)))) (-1382 (*1 *2 *2) (-12 (-5 *2 (-621 *7)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *1 (-959 *3 *4 *5 *6 *7)))) (-3417 (*1 *2 *3 *4) (-12 (-5 *4 (-621 *3)) (-4 *3 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-959 *5 *6 *7 *8 *3)))) (-3417 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-3597 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-2473 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-2457 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-4083 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-3503 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-2954 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-4282 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-2587 (*1 *2 *2) (-12 (-5 *2 (-621 *7)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *1 (-959 *3 *4 *5 *6 *7)))) (-1897 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-1663 (*1 *2) (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1231)) (-5 *1 (-959 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))) (-4164 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1125)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1231)) (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
-(-10 -7 (-15 -4164 ((-1231) (-1125) (-1125) (-1125))) (-15 -1663 ((-1231))) (-15 -1897 ((-112) |#5| |#5|)) (-15 -2587 ((-621 |#5|) (-621 |#5|))) (-15 -4282 ((-112) |#5| |#5|)) (-15 -2954 ((-112) |#5| |#5|)) (-15 -3503 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -4083 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -2457 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -2473 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -3597 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3417 ((-112) |#5| |#5|)) (-15 -3417 ((-112) |#5| (-621 |#5|))) (-15 -1382 ((-621 |#5|) (-621 |#5|))) (-15 -1346 ((-112) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|)) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|)))) (-15 -4118 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) (-15 -3954 ((-621 (-2 (|:| -2652 (-621 |#4|)) (|:| -1981 |#5|) (|:| |ineq| (-621 |#4|)))) (-621 |#4|) (-621 |#5|) (-112) (-112))) (-15 -3751 ((-3 (-2 (|:| -2652 (-621 |#4|)) (|:| -1981 |#5|) (|:| |ineq| (-621 |#4|))) "failed") (-621 |#4|) |#5| (-621 |#4|) (-112) (-112) (-112) (-112) (-112))))
-((-3011 (((-1143) $) 15)) (-4161 (((-1125) $) 16)) (-2391 (($ (-1143) (-1125)) 14)) (-3846 (((-834) $) 13)))
-(((-960) (-13 (-593 (-834)) (-10 -8 (-15 -2391 ($ (-1143) (-1125))) (-15 -3011 ((-1143) $)) (-15 -4161 ((-1125) $))))) (T -960))
-((-2391 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1125)) (-5 *1 (-960)))) (-3011 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-960)))) (-4161 (*1 *2 *1) (-12 (-5 *2 (-1125)) (-5 *1 (-960)))))
-(-13 (-593 (-834)) (-10 -8 (-15 -2391 ($ (-1143) (-1125))) (-15 -3011 ((-1143) $)) (-15 -4161 ((-1125) $))))
-((-2797 ((|#4| (-1 |#2| |#1|) |#3|) 14)))
-(((-961 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2797 (|#4| (-1 |#2| |#1|) |#3|))) (-541) (-541) (-963 |#1|) (-963 |#2|)) (T -961))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-541)) (-4 *6 (-541)) (-4 *2 (-963 *6)) (-5 *1 (-961 *5 *6 *4 *2)) (-4 *4 (-963 *5)))))
-(-10 -7 (-15 -2797 (|#4| (-1 |#2| |#1|) |#3|)))
-((-2714 (((-3 |#2| "failed") $) NIL) (((-3 (-1143) "failed") $) 65) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 (-549) "failed") $) 95)) (-2659 ((|#2| $) NIL) (((-1143) $) 60) (((-400 (-549)) $) NIL) (((-549) $) 92)) (-3879 (((-665 (-549)) (-665 $)) NIL) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) 112) (((-665 |#2|) (-665 $)) 28)) (-3239 (($) 98)) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 75) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 84)) (-1726 (($ $) 10)) (-1681 (((-3 $ "failed") $) 20)) (-2797 (($ (-1 |#2| |#2|) $) 22)) (-3060 (($) 16)) (-2873 (($ $) 54)) (-3456 (($ $) NIL) (($ $ (-747)) NIL) (($ $ (-1143)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) 36)) (-3939 (($ $) 12)) (-2845 (((-863 (-549)) $) 70) (((-863 (-372)) $) 79) (((-525) $) 40) (((-372) $) 44) (((-219) $) 47)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) 90) (($ |#2|) NIL) (($ (-1143)) 57)) (-2082 (((-747)) 31)) (-2412 (((-112) $ $) 50)))
-(((-962 |#1| |#2|) (-10 -8 (-15 -2412 ((-112) |#1| |#1|)) (-15 -3060 (|#1|)) (-15 -1681 ((-3 |#1| "failed") |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2845 ((-219) |#1|)) (-15 -2845 ((-372) |#1|)) (-15 -2845 ((-525) |#1|)) (-15 -2659 ((-1143) |#1|)) (-15 -2714 ((-3 (-1143) "failed") |#1|)) (-15 -3846 (|#1| (-1143))) (-15 -3239 (|#1|)) (-15 -2873 (|#1| |#1|)) (-15 -3939 (|#1| |#1|)) (-15 -1726 (|#1| |#1|)) (-15 -2932 ((-860 (-372) |#1|) |#1| (-863 (-372)) (-860 (-372) |#1|))) (-15 -2932 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))) (-15 -2845 ((-863 (-372)) |#1|)) (-15 -2845 ((-863 (-549)) |#1|)) (-15 -3879 ((-665 |#2|) (-665 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-665 (-549)) (-665 |#1|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1|)) (-15 -2797 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2659 (|#2| |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -3846 (|#1| |#2|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -3846 (|#1| |#1|)) (-15 -3846 (|#1| (-549))) (-15 -2082 ((-747))) (-15 -3846 ((-834) |#1|))) (-963 |#2|) (-541)) (T -962))
-((-2082 (*1 *2) (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-962 *3 *4)) (-4 *3 (-963 *4)))))
-(-10 -8 (-15 -2412 ((-112) |#1| |#1|)) (-15 -3060 (|#1|)) (-15 -1681 ((-3 |#1| "failed") |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2845 ((-219) |#1|)) (-15 -2845 ((-372) |#1|)) (-15 -2845 ((-525) |#1|)) (-15 -2659 ((-1143) |#1|)) (-15 -2714 ((-3 (-1143) "failed") |#1|)) (-15 -3846 (|#1| (-1143))) (-15 -3239 (|#1|)) (-15 -2873 (|#1| |#1|)) (-15 -3939 (|#1| |#1|)) (-15 -1726 (|#1| |#1|)) (-15 -2932 ((-860 (-372) |#1|) |#1| (-863 (-372)) (-860 (-372) |#1|))) (-15 -2932 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))) (-15 -2845 ((-863 (-372)) |#1|)) (-15 -2845 ((-863 (-549)) |#1|)) (-15 -3879 ((-665 |#2|) (-665 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-665 (-549)) (-665 |#1|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1|)) (-15 -2797 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2659 (|#2| |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -3846 (|#1| |#2|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -3846 (|#1| |#1|)) (-15 -3846 (|#1| (-549))) (-15 -2082 ((-747))) (-15 -3846 ((-834) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-3329 ((|#1| $) 136 (|has| |#1| (-300)))) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-2001 (((-3 $ "failed") $ $) 19)) (-3231 (((-411 (-1139 $)) (-1139 $)) 127 (|has| |#1| (-880)))) (-3979 (($ $) 70)) (-2402 (((-411 $) $) 69)) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) 130 (|has| |#1| (-880)))) (-3866 (((-112) $ $) 57)) (-1872 (((-549) $) 117 (|has| |#1| (-796)))) (-1682 (($) 17 T CONST)) (-2714 (((-3 |#1| "failed") $) 175) (((-3 (-1143) "failed") $) 125 (|has| |#1| (-1009 (-1143)))) (((-3 (-400 (-549)) "failed") $) 109 (|has| |#1| (-1009 (-549)))) (((-3 (-549) "failed") $) 107 (|has| |#1| (-1009 (-549))))) (-2659 ((|#1| $) 174) (((-1143) $) 124 (|has| |#1| (-1009 (-1143)))) (((-400 (-549)) $) 108 (|has| |#1| (-1009 (-549)))) (((-549) $) 106 (|has| |#1| (-1009 (-549))))) (-2095 (($ $ $) 53)) (-3879 (((-665 (-549)) (-665 $)) 149 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 148 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) 147) (((-665 |#1|) (-665 $)) 146)) (-2114 (((-3 $ "failed") $) 32)) (-3239 (($) 134 (|has| |#1| (-534)))) (-2067 (($ $ $) 54)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 49)) (-1420 (((-112) $) 68)) (-2772 (((-112) $) 119 (|has| |#1| (-796)))) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 143 (|has| |#1| (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 142 (|has| |#1| (-857 (-372))))) (-2675 (((-112) $) 30)) (-1726 (($ $) 138)) (-1394 ((|#1| $) 140)) (-1681 (((-3 $ "failed") $) 105 (|has| |#1| (-1118)))) (-2374 (((-112) $) 118 (|has| |#1| (-796)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-2863 (($ $ $) 115 (|has| |#1| (-823)))) (-3575 (($ $ $) 114 (|has| |#1| (-823)))) (-2797 (($ (-1 |#1| |#1|) $) 166)) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-1992 (($ $) 67)) (-3060 (($) 104 (|has| |#1| (-1118)) CONST)) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-2873 (($ $) 135 (|has| |#1| (-300)))) (-3967 ((|#1| $) 132 (|has| |#1| (-534)))) (-2905 (((-411 (-1139 $)) (-1139 $)) 129 (|has| |#1| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) 128 (|has| |#1| (-880)))) (-2121 (((-411 $) $) 71)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2042 (((-3 $ "failed") $ $) 40)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-2686 (($ $ (-621 |#1|) (-621 |#1|)) 172 (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) 171 (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) 170 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) 169 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1143)) (-621 |#1|)) 168 (|has| |#1| (-505 (-1143) |#1|))) (($ $ (-1143) |#1|) 167 (|has| |#1| (-505 (-1143) |#1|)))) (-3684 (((-747) $) 56)) (-3341 (($ $ |#1|) 173 (|has| |#1| (-279 |#1| |#1|)))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 55)) (-3456 (($ $) 165 (|has| |#1| (-227))) (($ $ (-747)) 163 (|has| |#1| (-227))) (($ $ (-1143)) 161 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) 160 (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) 159 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) 158 (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) 151) (($ $ (-1 |#1| |#1|)) 150)) (-3939 (($ $) 137)) (-1403 ((|#1| $) 139)) (-2845 (((-863 (-549)) $) 145 (|has| |#1| (-594 (-863 (-549))))) (((-863 (-372)) $) 144 (|has| |#1| (-594 (-863 (-372))))) (((-525) $) 122 (|has| |#1| (-594 (-525)))) (((-372) $) 121 (|has| |#1| (-993))) (((-219) $) 120 (|has| |#1| (-993)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) 131 (-1821 (|has| $ (-143)) (|has| |#1| (-880))))) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63) (($ |#1|) 178) (($ (-1143)) 126 (|has| |#1| (-1009 (-1143))))) (-2210 (((-3 $ "failed") $) 123 (-1536 (|has| |#1| (-143)) (-1821 (|has| $ (-143)) (|has| |#1| (-880)))))) (-2082 (((-747)) 28)) (-2546 ((|#1| $) 133 (|has| |#1| (-534)))) (-1498 (((-112) $ $) 37)) (-3212 (($ $) 116 (|has| |#1| (-796)))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $) 164 (|has| |#1| (-227))) (($ $ (-747)) 162 (|has| |#1| (-227))) (($ $ (-1143)) 157 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) 156 (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) 155 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) 154 (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) 153) (($ $ (-1 |#1| |#1|)) 152)) (-2448 (((-112) $ $) 112 (|has| |#1| (-823)))) (-2425 (((-112) $ $) 111 (|has| |#1| (-823)))) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 113 (|has| |#1| (-823)))) (-2412 (((-112) $ $) 110 (|has| |#1| (-823)))) (-2513 (($ $ $) 62) (($ |#1| |#1|) 141)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64) (($ |#1| $) 177) (($ $ |#1|) 176)))
+((-2796 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1018)) (-4 *1 (-951 *3)))) (-2260 (*1 *2 *1) (-12 (-4 *1 (-951 *3)) (-4 *3 (-1018)) (-5 *2 (-892)))) (-2843 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1018)) (-4 *1 (-951 *3)))) (-1918 (*1 *1 *1 *1) (-12 (-4 *1 (-951 *2)) (-4 *2 (-1018)))) (-3796 (*1 *1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *1 (-951 *3)) (-4 *3 (-1018)))))
+(-13 (-1223 |t#1|) (-10 -8 (-15 -2796 ($ (-621 |t#1|))) (-15 -2260 ((-892) $)) (-15 -2843 ($ (-621 |t#1|))) (-15 -1918 ($ $ $)) (-15 -3796 ($ $ (-621 |t#1|)))))
+(((-34) . T) ((-101) -1536 (|has| |#1| (-1066)) (|has| |#1| (-823))) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-823)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-366 |#1|) . T) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-627 |#1|) . T) ((-19 |#1|) . T) ((-823) |has| |#1| (-823)) ((-1066) -1536 (|has| |#1| (-1066)) (|has| |#1| (-823))) ((-1179) . T) ((-1223 |#1|) . T))
+((-2795 (((-914 |#2|) (-1 |#2| |#1|) (-914 |#1|)) 17)))
+(((-952 |#1| |#2|) (-10 -7 (-15 -2795 ((-914 |#2|) (-1 |#2| |#1|) (-914 |#1|)))) (-1018) (-1018)) (T -952))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-914 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *2 (-914 *6)) (-5 *1 (-952 *5 *6)))))
+(-10 -7 (-15 -2795 ((-914 |#2|) (-1 |#2| |#1|) (-914 |#1|))))
+((-2228 ((|#1| (-914 |#1|)) 13)) (-2761 ((|#1| (-914 |#1|)) 12)) (-3105 ((|#1| (-914 |#1|)) 11)) (-3905 ((|#1| (-914 |#1|)) 15)) (-1466 ((|#1| (-914 |#1|)) 21)) (-3465 ((|#1| (-914 |#1|)) 14)) (-3688 ((|#1| (-914 |#1|)) 16)) (-2725 ((|#1| (-914 |#1|)) 20)) (-1437 ((|#1| (-914 |#1|)) 19)))
+(((-953 |#1|) (-10 -7 (-15 -3105 (|#1| (-914 |#1|))) (-15 -2761 (|#1| (-914 |#1|))) (-15 -2228 (|#1| (-914 |#1|))) (-15 -3465 (|#1| (-914 |#1|))) (-15 -3905 (|#1| (-914 |#1|))) (-15 -3688 (|#1| (-914 |#1|))) (-15 -1437 (|#1| (-914 |#1|))) (-15 -2725 (|#1| (-914 |#1|))) (-15 -1466 (|#1| (-914 |#1|)))) (-1018)) (T -953))
+((-1466 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))) (-2725 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))) (-1437 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))) (-3688 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))) (-3905 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))) (-3465 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))) (-2228 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))) (-2761 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))) (-3105 (*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
+(-10 -7 (-15 -3105 (|#1| (-914 |#1|))) (-15 -2761 (|#1| (-914 |#1|))) (-15 -2228 (|#1| (-914 |#1|))) (-15 -3465 (|#1| (-914 |#1|))) (-15 -3905 (|#1| (-914 |#1|))) (-15 -3688 (|#1| (-914 |#1|))) (-15 -1437 (|#1| (-914 |#1|))) (-15 -2725 (|#1| (-914 |#1|))) (-15 -1466 (|#1| (-914 |#1|))))
+((-2635 (((-3 |#1| "failed") |#1|) 18)) (-3406 (((-3 |#1| "failed") |#1|) 6)) (-4178 (((-3 |#1| "failed") |#1|) 16)) (-1501 (((-3 |#1| "failed") |#1|) 4)) (-1779 (((-3 |#1| "failed") |#1|) 20)) (-2453 (((-3 |#1| "failed") |#1|) 8)) (-3620 (((-3 |#1| "failed") |#1| (-747)) 1)) (-2462 (((-3 |#1| "failed") |#1|) 3)) (-4208 (((-3 |#1| "failed") |#1|) 2)) (-2014 (((-3 |#1| "failed") |#1|) 21)) (-1381 (((-3 |#1| "failed") |#1|) 9)) (-1613 (((-3 |#1| "failed") |#1|) 19)) (-3824 (((-3 |#1| "failed") |#1|) 7)) (-1997 (((-3 |#1| "failed") |#1|) 17)) (-1600 (((-3 |#1| "failed") |#1|) 5)) (-1860 (((-3 |#1| "failed") |#1|) 24)) (-1623 (((-3 |#1| "failed") |#1|) 12)) (-4014 (((-3 |#1| "failed") |#1|) 22)) (-3476 (((-3 |#1| "failed") |#1|) 10)) (-2030 (((-3 |#1| "failed") |#1|) 26)) (-1869 (((-3 |#1| "failed") |#1|) 14)) (-4022 (((-3 |#1| "failed") |#1|) 27)) (-4284 (((-3 |#1| "failed") |#1|) 15)) (-3218 (((-3 |#1| "failed") |#1|) 25)) (-4198 (((-3 |#1| "failed") |#1|) 13)) (-2980 (((-3 |#1| "failed") |#1|) 23)) (-2646 (((-3 |#1| "failed") |#1|) 11)))
+(((-954 |#1|) (-138) (-1164)) (T -954))
+((-4022 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-2030 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-3218 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-1860 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-2980 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-4014 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-2014 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-1779 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-1613 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-2635 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-1997 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-4178 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-4284 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-1869 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-4198 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-1623 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-2646 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-3476 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-1381 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-2453 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-3824 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-3406 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-1600 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-1501 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-2462 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-4208 (*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))) (-3620 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-747)) (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(-13 (-10 -7 (-15 -3620 ((-3 |t#1| "failed") |t#1| (-747))) (-15 -4208 ((-3 |t#1| "failed") |t#1|)) (-15 -2462 ((-3 |t#1| "failed") |t#1|)) (-15 -1501 ((-3 |t#1| "failed") |t#1|)) (-15 -1600 ((-3 |t#1| "failed") |t#1|)) (-15 -3406 ((-3 |t#1| "failed") |t#1|)) (-15 -3824 ((-3 |t#1| "failed") |t#1|)) (-15 -2453 ((-3 |t#1| "failed") |t#1|)) (-15 -1381 ((-3 |t#1| "failed") |t#1|)) (-15 -3476 ((-3 |t#1| "failed") |t#1|)) (-15 -2646 ((-3 |t#1| "failed") |t#1|)) (-15 -1623 ((-3 |t#1| "failed") |t#1|)) (-15 -4198 ((-3 |t#1| "failed") |t#1|)) (-15 -1869 ((-3 |t#1| "failed") |t#1|)) (-15 -4284 ((-3 |t#1| "failed") |t#1|)) (-15 -4178 ((-3 |t#1| "failed") |t#1|)) (-15 -1997 ((-3 |t#1| "failed") |t#1|)) (-15 -2635 ((-3 |t#1| "failed") |t#1|)) (-15 -1613 ((-3 |t#1| "failed") |t#1|)) (-15 -1779 ((-3 |t#1| "failed") |t#1|)) (-15 -2014 ((-3 |t#1| "failed") |t#1|)) (-15 -4014 ((-3 |t#1| "failed") |t#1|)) (-15 -2980 ((-3 |t#1| "failed") |t#1|)) (-15 -1860 ((-3 |t#1| "failed") |t#1|)) (-15 -3218 ((-3 |t#1| "failed") |t#1|)) (-15 -2030 ((-3 |t#1| "failed") |t#1|)) (-15 -4022 ((-3 |t#1| "failed") |t#1|))))
+((-2641 ((|#4| |#4| (-621 |#3|)) 56) ((|#4| |#4| |#3|) 55)) (-3384 ((|#4| |#4| (-621 |#3|)) 23) ((|#4| |#4| |#3|) 19)) (-2795 ((|#4| (-1 |#4| (-923 |#1|)) |#4|) 30)))
+(((-955 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3384 (|#4| |#4| |#3|)) (-15 -3384 (|#4| |#4| (-621 |#3|))) (-15 -2641 (|#4| |#4| |#3|)) (-15 -2641 (|#4| |#4| (-621 |#3|))) (-15 -2795 (|#4| (-1 |#4| (-923 |#1|)) |#4|))) (-1018) (-769) (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $)) (-15 -3009 ((-3 $ "failed") (-1142))))) (-920 (-923 |#1|) |#2| |#3|)) (T -955))
+((-2795 (*1 *2 *3 *2) (-12 (-5 *3 (-1 *2 (-923 *4))) (-4 *4 (-1018)) (-4 *2 (-920 (-923 *4) *5 *6)) (-4 *5 (-769)) (-4 *6 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $)) (-15 -3009 ((-3 $ "failed") (-1142)))))) (-5 *1 (-955 *4 *5 *6 *2)))) (-2641 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *6)) (-4 *6 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $)) (-15 -3009 ((-3 $ "failed") (-1142)))))) (-4 *4 (-1018)) (-4 *5 (-769)) (-5 *1 (-955 *4 *5 *6 *2)) (-4 *2 (-920 (-923 *4) *5 *6)))) (-2641 (*1 *2 *2 *3) (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $)) (-15 -3009 ((-3 $ "failed") (-1142)))))) (-5 *1 (-955 *4 *5 *3 *2)) (-4 *2 (-920 (-923 *4) *5 *3)))) (-3384 (*1 *2 *2 *3) (-12 (-5 *3 (-621 *6)) (-4 *6 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $)) (-15 -3009 ((-3 $ "failed") (-1142)))))) (-4 *4 (-1018)) (-4 *5 (-769)) (-5 *1 (-955 *4 *5 *6 *2)) (-4 *2 (-920 (-923 *4) *5 *6)))) (-3384 (*1 *2 *2 *3) (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $)) (-15 -3009 ((-3 $ "failed") (-1142)))))) (-5 *1 (-955 *4 *5 *3 *2)) (-4 *2 (-920 (-923 *4) *5 *3)))))
+(-10 -7 (-15 -3384 (|#4| |#4| |#3|)) (-15 -3384 (|#4| |#4| (-621 |#3|))) (-15 -2641 (|#4| |#4| |#3|)) (-15 -2641 (|#4| |#4| (-621 |#3|))) (-15 -2795 (|#4| (-1 |#4| (-923 |#1|)) |#4|)))
+((-4017 ((|#2| |#3|) 35)) (-2720 (((-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) |#2|) 73)) (-1311 (((-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|)))) 89)))
+(((-956 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1311 ((-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))))) (-15 -2720 ((-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) |#2|)) (-15 -4017 (|#2| |#3|))) (-342) (-1201 |#1|) (-1201 |#2|) (-701 |#2| |#3|)) (T -956))
+((-4017 (*1 *2 *3) (-12 (-4 *3 (-1201 *2)) (-4 *2 (-1201 *4)) (-5 *1 (-956 *4 *2 *3 *5)) (-4 *4 (-342)) (-4 *5 (-701 *2 *3)))) (-2720 (*1 *2 *3) (-12 (-4 *4 (-342)) (-4 *3 (-1201 *4)) (-4 *5 (-1201 *3)) (-5 *2 (-2 (|:| -2619 (-665 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-665 *3)))) (-5 *1 (-956 *4 *3 *5 *6)) (-4 *6 (-701 *3 *5)))) (-1311 (*1 *2) (-12 (-4 *3 (-342)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 *4)) (-5 *2 (-2 (|:| -2619 (-665 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-665 *4)))) (-5 *1 (-956 *3 *4 *5 *6)) (-4 *6 (-701 *4 *5)))))
+(-10 -7 (-15 -1311 ((-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))))) (-15 -2720 ((-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) |#2|)) (-15 -4017 (|#2| |#3|)))
+((-4220 (((-958 (-400 (-549)) (-836 |#1|) (-234 |#2| (-747)) (-241 |#1| (-400 (-549)))) (-958 (-400 (-549)) (-836 |#1|) (-234 |#2| (-747)) (-241 |#1| (-400 (-549))))) 69)))
+(((-957 |#1| |#2|) (-10 -7 (-15 -4220 ((-958 (-400 (-549)) (-836 |#1|) (-234 |#2| (-747)) (-241 |#1| (-400 (-549)))) (-958 (-400 (-549)) (-836 |#1|) (-234 |#2| (-747)) (-241 |#1| (-400 (-549))))))) (-621 (-1142)) (-747)) (T -957))
+((-4220 (*1 *2 *2) (-12 (-5 *2 (-958 (-400 (-549)) (-836 *3) (-234 *4 (-747)) (-241 *3 (-400 (-549))))) (-14 *3 (-621 (-1142))) (-14 *4 (-747)) (-5 *1 (-957 *3 *4)))))
+(-10 -7 (-15 -4220 ((-958 (-400 (-549)) (-836 |#1|) (-234 |#2| (-747)) (-241 |#1| (-400 (-549)))) (-958 (-400 (-549)) (-836 |#1|) (-234 |#2| (-747)) (-241 |#1| (-400 (-549)))))))
+((-3832 (((-112) $ $) NIL)) (-1463 (((-3 (-112) "failed") $) 69)) (-2164 (($ $) 36 (-12 (|has| |#1| (-145)) (|has| |#1| (-300))))) (-1965 (($ $ (-3 (-112) "failed")) 70)) (-2784 (($ (-621 |#4|) |#4|) 25)) (-3441 (((-1124) $) NIL)) (-2094 (($ $) 67)) (-3988 (((-1086) $) NIL)) (-2643 (((-112) $) 68)) (-3288 (($) 30)) (-3162 ((|#4| $) 72)) (-2713 (((-621 |#4|) $) 71)) (-3845 (((-834) $) 66)) (-2387 (((-112) $ $) NIL)))
+(((-958 |#1| |#2| |#3| |#4|) (-13 (-1066) (-593 (-834)) (-10 -8 (-15 -3288 ($)) (-15 -2784 ($ (-621 |#4|) |#4|)) (-15 -1463 ((-3 (-112) "failed") $)) (-15 -1965 ($ $ (-3 (-112) "failed"))) (-15 -2643 ((-112) $)) (-15 -2713 ((-621 |#4|) $)) (-15 -3162 (|#4| $)) (-15 -2094 ($ $)) (IF (|has| |#1| (-300)) (IF (|has| |#1| (-145)) (-15 -2164 ($ $)) |%noBranch|) |%noBranch|))) (-444) (-823) (-769) (-920 |#1| |#3| |#2|)) (T -958))
+((-3288 (*1 *1) (-12 (-4 *2 (-444)) (-4 *3 (-823)) (-4 *4 (-769)) (-5 *1 (-958 *2 *3 *4 *5)) (-4 *5 (-920 *2 *4 *3)))) (-2784 (*1 *1 *2 *3) (-12 (-5 *2 (-621 *3)) (-4 *3 (-920 *4 *6 *5)) (-4 *4 (-444)) (-4 *5 (-823)) (-4 *6 (-769)) (-5 *1 (-958 *4 *5 *6 *3)))) (-1463 (*1 *2 *1) (|partial| -12 (-4 *3 (-444)) (-4 *4 (-823)) (-4 *5 (-769)) (-5 *2 (-112)) (-5 *1 (-958 *3 *4 *5 *6)) (-4 *6 (-920 *3 *5 *4)))) (-1965 (*1 *1 *1 *2) (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-444)) (-4 *4 (-823)) (-4 *5 (-769)) (-5 *1 (-958 *3 *4 *5 *6)) (-4 *6 (-920 *3 *5 *4)))) (-2643 (*1 *2 *1) (-12 (-4 *3 (-444)) (-4 *4 (-823)) (-4 *5 (-769)) (-5 *2 (-112)) (-5 *1 (-958 *3 *4 *5 *6)) (-4 *6 (-920 *3 *5 *4)))) (-2713 (*1 *2 *1) (-12 (-4 *3 (-444)) (-4 *4 (-823)) (-4 *5 (-769)) (-5 *2 (-621 *6)) (-5 *1 (-958 *3 *4 *5 *6)) (-4 *6 (-920 *3 *5 *4)))) (-3162 (*1 *2 *1) (-12 (-4 *2 (-920 *3 *5 *4)) (-5 *1 (-958 *3 *4 *5 *2)) (-4 *3 (-444)) (-4 *4 (-823)) (-4 *5 (-769)))) (-2094 (*1 *1 *1) (-12 (-4 *2 (-444)) (-4 *3 (-823)) (-4 *4 (-769)) (-5 *1 (-958 *2 *3 *4 *5)) (-4 *5 (-920 *2 *4 *3)))) (-2164 (*1 *1 *1) (-12 (-4 *2 (-145)) (-4 *2 (-300)) (-4 *2 (-444)) (-4 *3 (-823)) (-4 *4 (-769)) (-5 *1 (-958 *2 *3 *4 *5)) (-4 *5 (-920 *2 *4 *3)))))
+(-13 (-1066) (-593 (-834)) (-10 -8 (-15 -3288 ($)) (-15 -2784 ($ (-621 |#4|) |#4|)) (-15 -1463 ((-3 (-112) "failed") $)) (-15 -1965 ($ $ (-3 (-112) "failed"))) (-15 -2643 ((-112) $)) (-15 -2713 ((-621 |#4|) $)) (-15 -3162 (|#4| $)) (-15 -2094 ($ $)) (IF (|has| |#1| (-300)) (IF (|has| |#1| (-145)) (-15 -2164 ($ $)) |%noBranch|) |%noBranch|)))
+((-1280 (((-112) |#5| |#5|) 38)) (-2502 (((-112) |#5| |#5|) 52)) (-3308 (((-112) |#5| (-621 |#5|)) 74) (((-112) |#5| |#5|) 61)) (-2410 (((-112) (-621 |#4|) (-621 |#4|)) 58)) (-1347 (((-112) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|)) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) 63)) (-1883 (((-1230)) 33)) (-2836 (((-1230) (-1124) (-1124) (-1124)) 29)) (-1679 (((-621 |#5|) (-621 |#5|)) 81)) (-2642 (((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|)))) 79)) (-1526 (((-621 (-2 (|:| -2649 (-621 |#4|)) (|:| -1979 |#5|) (|:| |ineq| (-621 |#4|)))) (-621 |#4|) (-621 |#5|) (-112) (-112)) 101)) (-3282 (((-112) |#5| |#5|) 47)) (-3332 (((-3 (-112) "failed") |#5| |#5|) 71)) (-1447 (((-112) (-621 |#4|) (-621 |#4|)) 57)) (-2277 (((-112) (-621 |#4|) (-621 |#4|)) 59)) (-3386 (((-112) (-621 |#4|) (-621 |#4|)) 60)) (-2841 (((-3 (-2 (|:| -2649 (-621 |#4|)) (|:| -1979 |#5|) (|:| |ineq| (-621 |#4|))) "failed") (-621 |#4|) |#5| (-621 |#4|) (-112) (-112) (-112) (-112) (-112)) 97)) (-1703 (((-621 |#5|) (-621 |#5|)) 43)))
+(((-959 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2836 ((-1230) (-1124) (-1124) (-1124))) (-15 -1883 ((-1230))) (-15 -1280 ((-112) |#5| |#5|)) (-15 -1703 ((-621 |#5|) (-621 |#5|))) (-15 -3282 ((-112) |#5| |#5|)) (-15 -2502 ((-112) |#5| |#5|)) (-15 -2410 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -1447 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -2277 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -3386 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -3332 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3308 ((-112) |#5| |#5|)) (-15 -3308 ((-112) |#5| (-621 |#5|))) (-15 -1679 ((-621 |#5|) (-621 |#5|))) (-15 -1347 ((-112) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|)) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|)))) (-15 -2642 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) (-15 -1526 ((-621 (-2 (|:| -2649 (-621 |#4|)) (|:| -1979 |#5|) (|:| |ineq| (-621 |#4|)))) (-621 |#4|) (-621 |#5|) (-112) (-112))) (-15 -2841 ((-3 (-2 (|:| -2649 (-621 |#4|)) (|:| -1979 |#5|) (|:| |ineq| (-621 |#4|))) "failed") (-621 |#4|) |#5| (-621 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1038 |#1| |#2| |#3| |#4|)) (T -959))
+((-2841 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *9 (-1032 *6 *7 *8)) (-5 *2 (-2 (|:| -2649 (-621 *9)) (|:| -1979 *4) (|:| |ineq| (-621 *9)))) (-5 *1 (-959 *6 *7 *8 *9 *4)) (-5 *3 (-621 *9)) (-4 *4 (-1038 *6 *7 *8 *9)))) (-1526 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-621 *10)) (-5 *5 (-112)) (-4 *10 (-1038 *6 *7 *8 *9)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *9 (-1032 *6 *7 *8)) (-5 *2 (-621 (-2 (|:| -2649 (-621 *9)) (|:| -1979 *10) (|:| |ineq| (-621 *9))))) (-5 *1 (-959 *6 *7 *8 *9 *10)) (-5 *3 (-621 *9)))) (-2642 (*1 *2 *2) (-12 (-5 *2 (-621 (-2 (|:| |val| (-621 *6)) (|:| -1979 *7)))) (-4 *6 (-1032 *3 *4 *5)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-959 *3 *4 *5 *6 *7)))) (-1347 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-621 *7)) (|:| -1979 *8))) (-4 *7 (-1032 *4 *5 *6)) (-4 *8 (-1038 *4 *5 *6 *7)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *8)))) (-1679 (*1 *2 *2) (-12 (-5 *2 (-621 *7)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *1 (-959 *3 *4 *5 *6 *7)))) (-3308 (*1 *2 *3 *4) (-12 (-5 *4 (-621 *3)) (-4 *3 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-959 *5 *6 *7 *8 *3)))) (-3308 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-3332 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-3386 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-2277 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-1447 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-2410 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-2502 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-3282 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-1703 (*1 *2 *2) (-12 (-5 *2 (-621 *7)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *1 (-959 *3 *4 *5 *6 *7)))) (-1280 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-1883 (*1 *2) (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1230)) (-5 *1 (-959 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))) (-2836 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1124)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1230)) (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2836 ((-1230) (-1124) (-1124) (-1124))) (-15 -1883 ((-1230))) (-15 -1280 ((-112) |#5| |#5|)) (-15 -1703 ((-621 |#5|) (-621 |#5|))) (-15 -3282 ((-112) |#5| |#5|)) (-15 -2502 ((-112) |#5| |#5|)) (-15 -2410 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -1447 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -2277 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -3386 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -3332 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3308 ((-112) |#5| |#5|)) (-15 -3308 ((-112) |#5| (-621 |#5|))) (-15 -1679 ((-621 |#5|) (-621 |#5|))) (-15 -1347 ((-112) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|)) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|)))) (-15 -2642 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) (-15 -1526 ((-621 (-2 (|:| -2649 (-621 |#4|)) (|:| -1979 |#5|) (|:| |ineq| (-621 |#4|)))) (-621 |#4|) (-621 |#5|) (-112) (-112))) (-15 -2841 ((-3 (-2 (|:| -2649 (-621 |#4|)) (|:| -1979 |#5|) (|:| |ineq| (-621 |#4|))) "failed") (-621 |#4|) |#5| (-621 |#4|) (-112) (-112) (-112) (-112) (-112))))
+((-3009 (((-1142) $) 15)) (-4160 (((-1124) $) 16)) (-2388 (($ (-1142) (-1124)) 14)) (-3845 (((-834) $) 13)))
+(((-960) (-13 (-593 (-834)) (-10 -8 (-15 -2388 ($ (-1142) (-1124))) (-15 -3009 ((-1142) $)) (-15 -4160 ((-1124) $))))) (T -960))
+((-2388 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1124)) (-5 *1 (-960)))) (-3009 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-960)))) (-4160 (*1 *2 *1) (-12 (-5 *2 (-1124)) (-5 *1 (-960)))))
+(-13 (-593 (-834)) (-10 -8 (-15 -2388 ($ (-1142) (-1124))) (-15 -3009 ((-1142) $)) (-15 -4160 ((-1124) $))))
+((-2795 ((|#4| (-1 |#2| |#1|) |#3|) 14)))
+(((-961 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2795 (|#4| (-1 |#2| |#1|) |#3|))) (-541) (-541) (-963 |#1|) (-963 |#2|)) (T -961))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-541)) (-4 *6 (-541)) (-4 *2 (-963 *6)) (-5 *1 (-961 *5 *6 *4 *2)) (-4 *4 (-963 *5)))))
+(-10 -7 (-15 -2795 (|#4| (-1 |#2| |#1|) |#3|)))
+((-2712 (((-3 |#2| "failed") $) NIL) (((-3 (-1142) "failed") $) 65) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 (-549) "failed") $) 95)) (-2657 ((|#2| $) NIL) (((-1142) $) 60) (((-400 (-549)) $) NIL) (((-549) $) 92)) (-3446 (((-665 (-549)) (-665 $)) NIL) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) 112) (((-665 |#2|) (-665 $)) 28)) (-3237 (($) 98)) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 75) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 84)) (-2096 (($ $) 10)) (-2964 (((-3 $ "failed") $) 20)) (-2795 (($ (-1 |#2| |#2|) $) 22)) (-3059 (($) 16)) (-1512 (($ $) 54)) (-3455 (($ $) NIL) (($ $ (-747)) NIL) (($ $ (-1142)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) 36)) (-4095 (($ $) 12)) (-2843 (((-863 (-549)) $) 70) (((-863 (-372)) $) 79) (((-525) $) 40) (((-372) $) 44) (((-219) $) 47)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) 90) (($ |#2|) NIL) (($ (-1142)) 57)) (-2371 (((-747)) 31)) (-2409 (((-112) $ $) 50)))
+(((-962 |#1| |#2|) (-10 -8 (-15 -2409 ((-112) |#1| |#1|)) (-15 -3059 (|#1|)) (-15 -2964 ((-3 |#1| "failed") |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2843 ((-219) |#1|)) (-15 -2843 ((-372) |#1|)) (-15 -2843 ((-525) |#1|)) (-15 -2657 ((-1142) |#1|)) (-15 -2712 ((-3 (-1142) "failed") |#1|)) (-15 -3845 (|#1| (-1142))) (-15 -3237 (|#1|)) (-15 -1512 (|#1| |#1|)) (-15 -4095 (|#1| |#1|)) (-15 -2096 (|#1| |#1|)) (-15 -3849 ((-860 (-372) |#1|) |#1| (-863 (-372)) (-860 (-372) |#1|))) (-15 -3849 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))) (-15 -2843 ((-863 (-372)) |#1|)) (-15 -2843 ((-863 (-549)) |#1|)) (-15 -3446 ((-665 |#2|) (-665 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-665 (-549)) (-665 |#1|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1|)) (-15 -2795 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2657 (|#2| |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -3845 (|#1| |#2|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -3845 (|#1| |#1|)) (-15 -3845 (|#1| (-549))) (-15 -2371 ((-747))) (-15 -3845 ((-834) |#1|))) (-963 |#2|) (-541)) (T -962))
+((-2371 (*1 *2) (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-962 *3 *4)) (-4 *3 (-963 *4)))))
+(-10 -8 (-15 -2409 ((-112) |#1| |#1|)) (-15 -3059 (|#1|)) (-15 -2964 ((-3 |#1| "failed") |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2843 ((-219) |#1|)) (-15 -2843 ((-372) |#1|)) (-15 -2843 ((-525) |#1|)) (-15 -2657 ((-1142) |#1|)) (-15 -2712 ((-3 (-1142) "failed") |#1|)) (-15 -3845 (|#1| (-1142))) (-15 -3237 (|#1|)) (-15 -1512 (|#1| |#1|)) (-15 -4095 (|#1| |#1|)) (-15 -2096 (|#1| |#1|)) (-15 -3849 ((-860 (-372) |#1|) |#1| (-863 (-372)) (-860 (-372) |#1|))) (-15 -3849 ((-860 (-549) |#1|) |#1| (-863 (-549)) (-860 (-549) |#1|))) (-15 -2843 ((-863 (-372)) |#1|)) (-15 -2843 ((-863 (-549)) |#1|)) (-15 -3446 ((-665 |#2|) (-665 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-665 (-549)) (-665 |#1|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1|)) (-15 -2795 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2657 (|#2| |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -3845 (|#1| |#2|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -3845 (|#1| |#1|)) (-15 -3845 (|#1| (-549))) (-15 -2371 ((-747))) (-15 -3845 ((-834) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-3833 ((|#1| $) 136 (|has| |#1| (-300)))) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-2416 (((-3 $ "failed") $ $) 19)) (-3630 (((-411 (-1138 $)) (-1138 $)) 127 (|has| |#1| (-880)))) (-3239 (($ $) 70)) (-2620 (((-411 $) $) 69)) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) 130 (|has| |#1| (-880)))) (-2680 (((-112) $ $) 57)) (-1741 (((-549) $) 117 (|has| |#1| (-796)))) (-3034 (($) 17 T CONST)) (-2712 (((-3 |#1| "failed") $) 175) (((-3 (-1142) "failed") $) 125 (|has| |#1| (-1009 (-1142)))) (((-3 (-400 (-549)) "failed") $) 109 (|has| |#1| (-1009 (-549)))) (((-3 (-549) "failed") $) 107 (|has| |#1| (-1009 (-549))))) (-2657 ((|#1| $) 174) (((-1142) $) 124 (|has| |#1| (-1009 (-1142)))) (((-400 (-549)) $) 108 (|has| |#1| (-1009 (-549)))) (((-549) $) 106 (|has| |#1| (-1009 (-549))))) (-2091 (($ $ $) 53)) (-3446 (((-665 (-549)) (-665 $)) 149 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 148 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) 147) (((-665 |#1|) (-665 $)) 146)) (-2612 (((-3 $ "failed") $) 32)) (-3237 (($) 134 (|has| |#1| (-534)))) (-2065 (($ $ $) 54)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 49)) (-1464 (((-112) $) 68)) (-2357 (((-112) $) 119 (|has| |#1| (-796)))) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 143 (|has| |#1| (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 142 (|has| |#1| (-857 (-372))))) (-2297 (((-112) $) 30)) (-2096 (($ $) 138)) (-1392 ((|#1| $) 140)) (-2964 (((-3 $ "failed") $) 105 (|has| |#1| (-1117)))) (-1992 (((-112) $) 118 (|has| |#1| (-796)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-2861 (($ $ $) 115 (|has| |#1| (-823)))) (-3574 (($ $ $) 114 (|has| |#1| (-823)))) (-2795 (($ (-1 |#1| |#1|) $) 166)) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-1990 (($ $) 67)) (-3059 (($) 104 (|has| |#1| (-1117)) CONST)) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-1512 (($ $) 135 (|has| |#1| (-300)))) (-1349 ((|#1| $) 132 (|has| |#1| (-534)))) (-2609 (((-411 (-1138 $)) (-1138 $)) 129 (|has| |#1| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) 128 (|has| |#1| (-880)))) (-2119 (((-411 $) $) 71)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2040 (((-3 $ "failed") $ $) 40)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-2684 (($ $ (-621 |#1|) (-621 |#1|)) 172 (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) 171 (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) 170 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) 169 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1142)) (-621 |#1|)) 168 (|has| |#1| (-505 (-1142) |#1|))) (($ $ (-1142) |#1|) 167 (|has| |#1| (-505 (-1142) |#1|)))) (-1335 (((-747) $) 56)) (-3339 (($ $ |#1|) 173 (|has| |#1| (-279 |#1| |#1|)))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 55)) (-3455 (($ $) 165 (|has| |#1| (-227))) (($ $ (-747)) 163 (|has| |#1| (-227))) (($ $ (-1142)) 161 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) 160 (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) 159 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) 158 (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) 151) (($ $ (-1 |#1| |#1|)) 150)) (-4095 (($ $) 137)) (-1404 ((|#1| $) 139)) (-2843 (((-863 (-549)) $) 145 (|has| |#1| (-594 (-863 (-549))))) (((-863 (-372)) $) 144 (|has| |#1| (-594 (-863 (-372))))) (((-525) $) 122 (|has| |#1| (-594 (-525)))) (((-372) $) 121 (|has| |#1| (-993))) (((-219) $) 120 (|has| |#1| (-993)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) 131 (-1819 (|has| $ (-143)) (|has| |#1| (-880))))) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63) (($ |#1|) 178) (($ (-1142)) 126 (|has| |#1| (-1009 (-1142))))) (-2343 (((-3 $ "failed") $) 123 (-1536 (|has| |#1| (-143)) (-1819 (|has| $ (-143)) (|has| |#1| (-880)))))) (-2371 (((-747)) 28)) (-3497 ((|#1| $) 133 (|has| |#1| (-534)))) (-2441 (((-112) $ $) 37)) (-2199 (($ $) 116 (|has| |#1| (-796)))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $) 164 (|has| |#1| (-227))) (($ $ (-747)) 162 (|has| |#1| (-227))) (($ $ (-1142)) 157 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) 156 (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) 155 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) 154 (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) 153) (($ $ (-1 |#1| |#1|)) 152)) (-2447 (((-112) $ $) 112 (|has| |#1| (-823)))) (-2423 (((-112) $ $) 111 (|has| |#1| (-823)))) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 113 (|has| |#1| (-823)))) (-2409 (((-112) $ $) 110 (|has| |#1| (-823)))) (-2511 (($ $ $) 62) (($ |#1| |#1|) 141)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64) (($ |#1| $) 177) (($ $ |#1|) 176)))
(((-963 |#1|) (-138) (-541)) (T -963))
-((-2513 (*1 *1 *2 *2) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)))) (-1394 (*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)))) (-1403 (*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)))) (-1726 (*1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)))) (-3939 (*1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)))) (-3329 (*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)) (-4 *2 (-300)))) (-2873 (*1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)) (-4 *2 (-300)))) (-3239 (*1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-534)) (-4 *2 (-541)))) (-2546 (*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)) (-4 *2 (-534)))) (-3967 (*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)) (-4 *2 (-534)))))
-(-13 (-356) (-38 |t#1|) (-1009 |t#1|) (-331 |t#1|) (-225 |t#1|) (-370 |t#1|) (-855 |t#1|) (-393 |t#1|) (-10 -8 (-15 -2513 ($ |t#1| |t#1|)) (-15 -1394 (|t#1| $)) (-15 -1403 (|t#1| $)) (-15 -1726 ($ $)) (-15 -3939 ($ $)) (IF (|has| |t#1| (-1118)) (-6 (-1118)) |%noBranch|) (IF (|has| |t#1| (-1009 (-549))) (PROGN (-6 (-1009 (-549))) (-6 (-1009 (-400 (-549))))) |%noBranch|) (IF (|has| |t#1| (-823)) (-6 (-823)) |%noBranch|) (IF (|has| |t#1| (-796)) (-6 (-796)) |%noBranch|) (IF (|has| |t#1| (-993)) (-6 (-993)) |%noBranch|) (IF (|has| |t#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |t#1| (-1009 (-1143))) (-6 (-1009 (-1143))) |%noBranch|) (IF (|has| |t#1| (-300)) (PROGN (-15 -3329 (|t#1| $)) (-15 -2873 ($ $))) |%noBranch|) (IF (|has| |t#1| (-534)) (PROGN (-15 -3239 ($)) (-15 -2546 (|t#1| $)) (-15 -3967 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-880)) (-6 (-880)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 |#1|) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) . T) ((-594 (-219)) |has| |#1| (-993)) ((-594 (-372)) |has| |#1| (-993)) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-594 (-863 (-372))) |has| |#1| (-594 (-863 (-372)))) ((-594 (-863 (-549))) |has| |#1| (-594 (-863 (-549)))) ((-225 |#1|) . T) ((-227) |has| |#1| (-227)) ((-237) . T) ((-279 |#1| $) |has| |#1| (-279 |#1| |#1|)) ((-283) . T) ((-300) . T) ((-302 |#1|) |has| |#1| (-302 |#1|)) ((-356) . T) ((-331 |#1|) . T) ((-370 |#1|) . T) ((-393 |#1|) . T) ((-444) . T) ((-505 (-1143) |#1|) |has| |#1| (-505 (-1143) |#1|)) ((-505 |#1| |#1|) |has| |#1| (-302 |#1|)) ((-541) . T) ((-624 #0#) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-694 #0#) . T) ((-694 |#1|) . T) ((-694 $) . T) ((-703) . T) ((-767) |has| |#1| (-796)) ((-768) |has| |#1| (-796)) ((-770) |has| |#1| (-796)) ((-771) |has| |#1| (-796)) ((-796) |has| |#1| (-796)) ((-821) |has| |#1| (-796)) ((-823) -1536 (|has| |#1| (-823)) (|has| |#1| (-796))) ((-871 (-1143)) |has| |#1| (-871 (-1143))) ((-857 (-372)) |has| |#1| (-857 (-372))) ((-857 (-549)) |has| |#1| (-857 (-549))) ((-855 |#1|) . T) ((-880) |has| |#1| (-880)) ((-891) . T) ((-993) |has| |#1| (-993)) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-549))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 (-1143)) |has| |#1| (-1009 (-1143))) ((-1009 |#1|) . T) ((-1024 #0#) . T) ((-1024 |#1|) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1118) |has| |#1| (-1118)) ((-1180) . T) ((-1184) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-1790 (($ (-1109 |#1| |#2|)) 11)) (-3946 (((-1109 |#1| |#2|) $) 12)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3341 ((|#2| $ (-234 |#1| |#2|)) 16)) (-3846 (((-834) $) NIL)) (-3276 (($) NIL T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL)))
-(((-964 |#1| |#2|) (-13 (-21) (-10 -8 (-15 -1790 ($ (-1109 |#1| |#2|))) (-15 -3946 ((-1109 |#1| |#2|) $)) (-15 -3341 (|#2| $ (-234 |#1| |#2|))))) (-892) (-356)) (T -964))
-((-1790 (*1 *1 *2) (-12 (-5 *2 (-1109 *3 *4)) (-14 *3 (-892)) (-4 *4 (-356)) (-5 *1 (-964 *3 *4)))) (-3946 (*1 *2 *1) (-12 (-5 *2 (-1109 *3 *4)) (-5 *1 (-964 *3 *4)) (-14 *3 (-892)) (-4 *4 (-356)))) (-3341 (*1 *2 *1 *3) (-12 (-5 *3 (-234 *4 *2)) (-14 *4 (-892)) (-4 *2 (-356)) (-5 *1 (-964 *4 *2)))))
-(-13 (-21) (-10 -8 (-15 -1790 ($ (-1109 |#1| |#2|))) (-15 -3946 ((-1109 |#1| |#2|) $)) (-15 -3341 (|#2| $ (-234 |#1| |#2|)))))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3955 (((-1148) $) 9)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-965) (-13 (-1050) (-10 -8 (-15 -3955 ((-1148) $))))) (T -965))
-((-3955 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-965)))))
-(-13 (-1050) (-10 -8 (-15 -3955 ((-1148) $))))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-1584 (((-112) $ (-747)) 8)) (-1682 (($) 7 T CONST)) (-4194 (($ $) 46)) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) 9)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-4210 (((-747) $) 45)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3504 ((|#1| $) 39)) (-2751 (($ |#1| $) 40)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-1409 ((|#1| $) 44)) (-3325 ((|#1| $) 41)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-2502 ((|#1| |#1| $) 48)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3912 ((|#1| $) 47)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3624 (($ (-621 |#1|)) 42)) (-1410 ((|#1| $) 43)) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-966 |#1|) (-138) (-1180)) (T -966))
-((-2502 (*1 *2 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1180)))) (-3912 (*1 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1180)))) (-4194 (*1 *1 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1180)))) (-4210 (*1 *2 *1) (-12 (-4 *1 (-966 *3)) (-4 *3 (-1180)) (-5 *2 (-747)))) (-1409 (*1 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1180)))) (-1410 (*1 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1180)))))
-(-13 (-106 |t#1|) (-10 -8 (-6 -4337) (-15 -2502 (|t#1| |t#1| $)) (-15 -3912 (|t#1| $)) (-15 -4194 ($ $)) (-15 -4210 ((-747) $)) (-15 -1409 (|t#1| $)) (-15 -1410 (|t#1| $))))
-(((-34) . T) ((-106 |#1|) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-1067) |has| |#1| (-1067)) ((-1180) . T))
-((-1763 (((-112) $) 42)) (-2714 (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 |#2| "failed") $) 45)) (-2659 (((-549) $) NIL) (((-400 (-549)) $) NIL) ((|#2| $) 43)) (-3405 (((-3 (-400 (-549)) "failed") $) 78)) (-3679 (((-112) $) 72)) (-2532 (((-400 (-549)) $) 76)) (-2675 (((-112) $) 41)) (-3630 ((|#2| $) 22)) (-2797 (($ (-1 |#2| |#2|) $) 19)) (-1992 (($ $) 61)) (-3456 (($ $) NIL) (($ $ (-747)) NIL) (($ $ (-1143)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) 34)) (-2845 (((-525) $) 67)) (-1955 (($ $) 17)) (-3846 (((-834) $) 56) (($ (-549)) 38) (($ |#2|) 36) (($ (-400 (-549))) NIL)) (-2082 (((-747)) 10)) (-3212 ((|#2| $) 71)) (-2389 (((-112) $ $) 25)) (-2412 (((-112) $ $) 69)) (-2500 (($ $) 29) (($ $ $) 28)) (-2486 (($ $ $) 26)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 33) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 30) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL)))
-(((-967 |#1| |#2|) (-10 -8 (-15 -3846 (|#1| (-400 (-549)))) (-15 -2412 ((-112) |#1| |#1|)) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 * (|#1| |#1| (-400 (-549)))) (-15 -1992 (|#1| |#1|)) (-15 -2845 ((-525) |#1|)) (-15 -3405 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2532 ((-400 (-549)) |#1|)) (-15 -3679 ((-112) |#1|)) (-15 -3212 (|#2| |#1|)) (-15 -3630 (|#2| |#1|)) (-15 -1955 (|#1| |#1|)) (-15 -2797 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1|)) (-15 -2659 (|#2| |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -3846 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3846 (|#1| (-549))) (-15 -2082 ((-747))) (-15 -2675 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 -2500 (|#1| |#1| |#1|)) (-15 -2500 (|#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 -1763 ((-112) |#1|)) (-15 * (|#1| (-892) |#1|)) (-15 -2486 (|#1| |#1| |#1|)) (-15 -3846 ((-834) |#1|)) (-15 -2389 ((-112) |#1| |#1|))) (-968 |#2|) (-170)) (T -967))
-((-2082 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-747)) (-5 *1 (-967 *3 *4)) (-4 *3 (-968 *4)))))
-(-10 -8 (-15 -3846 (|#1| (-400 (-549)))) (-15 -2412 ((-112) |#1| |#1|)) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 * (|#1| |#1| (-400 (-549)))) (-15 -1992 (|#1| |#1|)) (-15 -2845 ((-525) |#1|)) (-15 -3405 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2532 ((-400 (-549)) |#1|)) (-15 -3679 ((-112) |#1|)) (-15 -3212 (|#2| |#1|)) (-15 -3630 (|#2| |#1|)) (-15 -1955 (|#1| |#1|)) (-15 -2797 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1|)) (-15 -2659 (|#2| |#1|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -3846 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3846 (|#1| (-549))) (-15 -2082 ((-747))) (-15 -2675 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 -2500 (|#1| |#1| |#1|)) (-15 -2500 (|#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 -1763 ((-112) |#1|)) (-15 * (|#1| (-892) |#1|)) (-15 -2486 (|#1| |#1| |#1|)) (-15 -3846 ((-834) |#1|)) (-15 -2389 ((-112) |#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2714 (((-3 (-549) "failed") $) 116 (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 114 (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 113)) (-2659 (((-549) $) 117 (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) 115 (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 112)) (-3879 (((-665 (-549)) (-665 $)) 87 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 86 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) 85) (((-665 |#1|) (-665 $)) 84)) (-2114 (((-3 $ "failed") $) 32)) (-2145 ((|#1| $) 77)) (-3405 (((-3 (-400 (-549)) "failed") $) 73 (|has| |#1| (-534)))) (-3679 (((-112) $) 75 (|has| |#1| (-534)))) (-2532 (((-400 (-549)) $) 74 (|has| |#1| (-534)))) (-3162 (($ |#1| |#1| |#1| |#1|) 78)) (-2675 (((-112) $) 30)) (-3630 ((|#1| $) 79)) (-2863 (($ $ $) 66 (|has| |#1| (-823)))) (-3575 (($ $ $) 65 (|has| |#1| (-823)))) (-2797 (($ (-1 |#1| |#1|) $) 88)) (-3851 (((-1125) $) 9)) (-1992 (($ $) 70 (|has| |#1| (-356)))) (-2318 ((|#1| $) 80)) (-2697 ((|#1| $) 81)) (-2194 ((|#1| $) 82)) (-3990 (((-1087) $) 10)) (-2686 (($ $ (-621 |#1|) (-621 |#1|)) 94 (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) 93 (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) 92 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) 91 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1143)) (-621 |#1|)) 90 (|has| |#1| (-505 (-1143) |#1|))) (($ $ (-1143) |#1|) 89 (|has| |#1| (-505 (-1143) |#1|)))) (-3341 (($ $ |#1|) 95 (|has| |#1| (-279 |#1| |#1|)))) (-3456 (($ $) 111 (|has| |#1| (-227))) (($ $ (-747)) 109 (|has| |#1| (-227))) (($ $ (-1143)) 107 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) 106 (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) 105 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) 104 (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) 97) (($ $ (-1 |#1| |#1|)) 96)) (-2845 (((-525) $) 71 (|has| |#1| (-594 (-525))))) (-1955 (($ $) 83)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 35) (($ (-400 (-549))) 60 (-1536 (|has| |#1| (-356)) (|has| |#1| (-1009 (-400 (-549))))))) (-2210 (((-3 $ "failed") $) 72 (|has| |#1| (-143)))) (-2082 (((-747)) 28)) (-3212 ((|#1| $) 76 (|has| |#1| (-1027)))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $) 110 (|has| |#1| (-227))) (($ $ (-747)) 108 (|has| |#1| (-227))) (($ $ (-1143)) 103 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) 102 (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) 101 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) 100 (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) 99) (($ $ (-1 |#1| |#1|)) 98)) (-2448 (((-112) $ $) 63 (|has| |#1| (-823)))) (-2425 (((-112) $ $) 62 (|has| |#1| (-823)))) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 64 (|has| |#1| (-823)))) (-2412 (((-112) $ $) 61 (|has| |#1| (-823)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 69 (|has| |#1| (-356)))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 37) (($ |#1| $) 36) (($ $ (-400 (-549))) 68 (|has| |#1| (-356))) (($ (-400 (-549)) $) 67 (|has| |#1| (-356)))))
+((-2511 (*1 *1 *2 *2) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)))) (-1392 (*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)))) (-1404 (*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)))) (-2096 (*1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)))) (-4095 (*1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)))) (-3833 (*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)) (-4 *2 (-300)))) (-1512 (*1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)) (-4 *2 (-300)))) (-3237 (*1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-534)) (-4 *2 (-541)))) (-3497 (*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)) (-4 *2 (-534)))) (-1349 (*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)) (-4 *2 (-534)))))
+(-13 (-356) (-38 |t#1|) (-1009 |t#1|) (-331 |t#1|) (-225 |t#1|) (-370 |t#1|) (-855 |t#1|) (-393 |t#1|) (-10 -8 (-15 -2511 ($ |t#1| |t#1|)) (-15 -1392 (|t#1| $)) (-15 -1404 (|t#1| $)) (-15 -2096 ($ $)) (-15 -4095 ($ $)) (IF (|has| |t#1| (-1117)) (-6 (-1117)) |%noBranch|) (IF (|has| |t#1| (-1009 (-549))) (PROGN (-6 (-1009 (-549))) (-6 (-1009 (-400 (-549))))) |%noBranch|) (IF (|has| |t#1| (-823)) (-6 (-823)) |%noBranch|) (IF (|has| |t#1| (-796)) (-6 (-796)) |%noBranch|) (IF (|has| |t#1| (-993)) (-6 (-993)) |%noBranch|) (IF (|has| |t#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |t#1| (-1009 (-1142))) (-6 (-1009 (-1142))) |%noBranch|) (IF (|has| |t#1| (-300)) (PROGN (-15 -3833 (|t#1| $)) (-15 -1512 ($ $))) |%noBranch|) (IF (|has| |t#1| (-534)) (PROGN (-15 -3237 ($)) (-15 -3497 (|t#1| $)) (-15 -1349 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-880)) (-6 (-880)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 |#1|) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) . T) ((-594 (-219)) |has| |#1| (-993)) ((-594 (-372)) |has| |#1| (-993)) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-594 (-863 (-372))) |has| |#1| (-594 (-863 (-372)))) ((-594 (-863 (-549))) |has| |#1| (-594 (-863 (-549)))) ((-225 |#1|) . T) ((-227) |has| |#1| (-227)) ((-237) . T) ((-279 |#1| $) |has| |#1| (-279 |#1| |#1|)) ((-283) . T) ((-300) . T) ((-302 |#1|) |has| |#1| (-302 |#1|)) ((-356) . T) ((-331 |#1|) . T) ((-370 |#1|) . T) ((-393 |#1|) . T) ((-444) . T) ((-505 (-1142) |#1|) |has| |#1| (-505 (-1142) |#1|)) ((-505 |#1| |#1|) |has| |#1| (-302 |#1|)) ((-541) . T) ((-624 #0#) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-694 #0#) . T) ((-694 |#1|) . T) ((-694 $) . T) ((-703) . T) ((-767) |has| |#1| (-796)) ((-768) |has| |#1| (-796)) ((-770) |has| |#1| (-796)) ((-771) |has| |#1| (-796)) ((-796) |has| |#1| (-796)) ((-821) |has| |#1| (-796)) ((-823) -1536 (|has| |#1| (-823)) (|has| |#1| (-796))) ((-871 (-1142)) |has| |#1| (-871 (-1142))) ((-857 (-372)) |has| |#1| (-857 (-372))) ((-857 (-549)) |has| |#1| (-857 (-549))) ((-855 |#1|) . T) ((-880) |has| |#1| (-880)) ((-891) . T) ((-993) |has| |#1| (-993)) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-549))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 (-1142)) |has| |#1| (-1009 (-1142))) ((-1009 |#1|) . T) ((-1024 #0#) . T) ((-1024 |#1|) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1117) |has| |#1| (-1117)) ((-1179) . T) ((-1183) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-1991 (($ (-1108 |#1| |#2|)) 11)) (-3944 (((-1108 |#1| |#2|) $) 12)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3339 ((|#2| $ (-234 |#1| |#2|)) 16)) (-3845 (((-834) $) NIL)) (-3274 (($) NIL T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL)))
+(((-964 |#1| |#2|) (-13 (-21) (-10 -8 (-15 -1991 ($ (-1108 |#1| |#2|))) (-15 -3944 ((-1108 |#1| |#2|) $)) (-15 -3339 (|#2| $ (-234 |#1| |#2|))))) (-892) (-356)) (T -964))
+((-1991 (*1 *1 *2) (-12 (-5 *2 (-1108 *3 *4)) (-14 *3 (-892)) (-4 *4 (-356)) (-5 *1 (-964 *3 *4)))) (-3944 (*1 *2 *1) (-12 (-5 *2 (-1108 *3 *4)) (-5 *1 (-964 *3 *4)) (-14 *3 (-892)) (-4 *4 (-356)))) (-3339 (*1 *2 *1 *3) (-12 (-5 *3 (-234 *4 *2)) (-14 *4 (-892)) (-4 *2 (-356)) (-5 *1 (-964 *4 *2)))))
+(-13 (-21) (-10 -8 (-15 -1991 ($ (-1108 |#1| |#2|))) (-15 -3944 ((-1108 |#1| |#2|) $)) (-15 -3339 (|#2| $ (-234 |#1| |#2|)))))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3954 (((-1101) $) 9)) (-3845 (((-834) $) 17) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-965) (-13 (-1049) (-10 -8 (-15 -3954 ((-1101) $))))) (T -965))
+((-3954 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-965)))))
+(-13 (-1049) (-10 -8 (-15 -3954 ((-1101) $))))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-2850 (((-112) $ (-747)) 8)) (-3034 (($) 7 T CONST)) (-3030 (($ $) 46)) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) 9)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-4210 (((-747) $) 45)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-2548 ((|#1| $) 39)) (-1799 (($ |#1| $) 40)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3082 ((|#1| $) 44)) (-3536 ((|#1| $) 41)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-1396 ((|#1| |#1| $) 48)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-4140 ((|#1| $) 47)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-4213 (($ (-621 |#1|)) 42)) (-3165 ((|#1| $) 43)) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-966 |#1|) (-138) (-1179)) (T -966))
+((-1396 (*1 *2 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1179)))) (-4140 (*1 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1179)))) (-3030 (*1 *1 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1179)))) (-4210 (*1 *2 *1) (-12 (-4 *1 (-966 *3)) (-4 *3 (-1179)) (-5 *2 (-747)))) (-3082 (*1 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1179)))) (-3165 (*1 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1179)))))
+(-13 (-106 |t#1|) (-10 -8 (-6 -4336) (-15 -1396 (|t#1| |t#1| $)) (-15 -4140 (|t#1| $)) (-15 -3030 ($ $)) (-15 -4210 ((-747) $)) (-15 -3082 (|t#1| $)) (-15 -3165 (|t#1| $))))
+(((-34) . T) ((-106 |#1|) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-1066) |has| |#1| (-1066)) ((-1179) . T))
+((-3210 (((-112) $) 42)) (-2712 (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 |#2| "failed") $) 45)) (-2657 (((-549) $) NIL) (((-400 (-549)) $) NIL) ((|#2| $) 43)) (-1531 (((-3 (-400 (-549)) "failed") $) 78)) (-3945 (((-112) $) 72)) (-1390 (((-400 (-549)) $) 76)) (-2297 (((-112) $) 41)) (-2469 ((|#2| $) 22)) (-2795 (($ (-1 |#2| |#2|) $) 19)) (-1990 (($ $) 61)) (-3455 (($ $) NIL) (($ $ (-747)) NIL) (($ $ (-1142)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) 34)) (-2843 (((-525) $) 67)) (-1795 (($ $) 17)) (-3845 (((-834) $) 56) (($ (-549)) 38) (($ |#2|) 36) (($ (-400 (-549))) NIL)) (-2371 (((-747)) 10)) (-2199 ((|#2| $) 71)) (-2387 (((-112) $ $) 25)) (-2409 (((-112) $ $) 69)) (-2498 (($ $) 29) (($ $ $) 28)) (-2484 (($ $ $) 26)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 33) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 30) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL)))
+(((-967 |#1| |#2|) (-10 -8 (-15 -3845 (|#1| (-400 (-549)))) (-15 -2409 ((-112) |#1| |#1|)) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 * (|#1| |#1| (-400 (-549)))) (-15 -1990 (|#1| |#1|)) (-15 -2843 ((-525) |#1|)) (-15 -1531 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -1390 ((-400 (-549)) |#1|)) (-15 -3945 ((-112) |#1|)) (-15 -2199 (|#2| |#1|)) (-15 -2469 (|#2| |#1|)) (-15 -1795 (|#1| |#1|)) (-15 -2795 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1|)) (-15 -2657 (|#2| |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -3845 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3845 (|#1| (-549))) (-15 -2371 ((-747))) (-15 -2297 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 -2498 (|#1| |#1| |#1|)) (-15 -2498 (|#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 -3210 ((-112) |#1|)) (-15 * (|#1| (-892) |#1|)) (-15 -2484 (|#1| |#1| |#1|)) (-15 -3845 ((-834) |#1|)) (-15 -2387 ((-112) |#1| |#1|))) (-968 |#2|) (-170)) (T -967))
+((-2371 (*1 *2) (-12 (-4 *4 (-170)) (-5 *2 (-747)) (-5 *1 (-967 *3 *4)) (-4 *3 (-968 *4)))))
+(-10 -8 (-15 -3845 (|#1| (-400 (-549)))) (-15 -2409 ((-112) |#1| |#1|)) (-15 * (|#1| (-400 (-549)) |#1|)) (-15 * (|#1| |#1| (-400 (-549)))) (-15 -1990 (|#1| |#1|)) (-15 -2843 ((-525) |#1|)) (-15 -1531 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -1390 ((-400 (-549)) |#1|)) (-15 -3945 ((-112) |#1|)) (-15 -2199 (|#2| |#1|)) (-15 -2469 (|#2| |#1|)) (-15 -1795 (|#1| |#1|)) (-15 -2795 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1|)) (-15 -2657 (|#2| |#1|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -3845 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3845 (|#1| (-549))) (-15 -2371 ((-747))) (-15 -2297 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 -2498 (|#1| |#1| |#1|)) (-15 -2498 (|#1| |#1|)) (-15 * (|#1| (-747) |#1|)) (-15 -3210 ((-112) |#1|)) (-15 * (|#1| (-892) |#1|)) (-15 -2484 (|#1| |#1| |#1|)) (-15 -3845 ((-834) |#1|)) (-15 -2387 ((-112) |#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2712 (((-3 (-549) "failed") $) 116 (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 114 (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) 113)) (-2657 (((-549) $) 117 (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) 115 (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) 112)) (-3446 (((-665 (-549)) (-665 $)) 87 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 86 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) 85) (((-665 |#1|) (-665 $)) 84)) (-2612 (((-3 $ "failed") $) 32)) (-2146 ((|#1| $) 77)) (-1531 (((-3 (-400 (-549)) "failed") $) 73 (|has| |#1| (-534)))) (-3945 (((-112) $) 75 (|has| |#1| (-534)))) (-1390 (((-400 (-549)) $) 74 (|has| |#1| (-534)))) (-3195 (($ |#1| |#1| |#1| |#1|) 78)) (-2297 (((-112) $) 30)) (-2469 ((|#1| $) 79)) (-2861 (($ $ $) 66 (|has| |#1| (-823)))) (-3574 (($ $ $) 65 (|has| |#1| (-823)))) (-2795 (($ (-1 |#1| |#1|) $) 88)) (-3441 (((-1124) $) 9)) (-1990 (($ $) 70 (|has| |#1| (-356)))) (-2136 ((|#1| $) 80)) (-3423 ((|#1| $) 81)) (-3182 ((|#1| $) 82)) (-3988 (((-1086) $) 10)) (-2684 (($ $ (-621 |#1|) (-621 |#1|)) 94 (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) 93 (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) 92 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) 91 (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1142)) (-621 |#1|)) 90 (|has| |#1| (-505 (-1142) |#1|))) (($ $ (-1142) |#1|) 89 (|has| |#1| (-505 (-1142) |#1|)))) (-3339 (($ $ |#1|) 95 (|has| |#1| (-279 |#1| |#1|)))) (-3455 (($ $) 111 (|has| |#1| (-227))) (($ $ (-747)) 109 (|has| |#1| (-227))) (($ $ (-1142)) 107 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) 106 (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) 105 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) 104 (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) 97) (($ $ (-1 |#1| |#1|)) 96)) (-2843 (((-525) $) 71 (|has| |#1| (-594 (-525))))) (-1795 (($ $) 83)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 35) (($ (-400 (-549))) 60 (-1536 (|has| |#1| (-356)) (|has| |#1| (-1009 (-400 (-549))))))) (-2343 (((-3 $ "failed") $) 72 (|has| |#1| (-143)))) (-2371 (((-747)) 28)) (-2199 ((|#1| $) 76 (|has| |#1| (-1027)))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $) 110 (|has| |#1| (-227))) (($ $ (-747)) 108 (|has| |#1| (-227))) (($ $ (-1142)) 103 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) 102 (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) 101 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) 100 (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) 99) (($ $ (-1 |#1| |#1|)) 98)) (-2447 (((-112) $ $) 63 (|has| |#1| (-823)))) (-2423 (((-112) $ $) 62 (|has| |#1| (-823)))) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 64 (|has| |#1| (-823)))) (-2409 (((-112) $ $) 61 (|has| |#1| (-823)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 69 (|has| |#1| (-356)))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 37) (($ |#1| $) 36) (($ $ (-400 (-549))) 68 (|has| |#1| (-356))) (($ (-400 (-549)) $) 67 (|has| |#1| (-356)))))
(((-968 |#1|) (-138) (-170)) (T -968))
-((-1955 (*1 *1 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))) (-2194 (*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))) (-2697 (*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))) (-2318 (*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))) (-3630 (*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))) (-3162 (*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))) (-2145 (*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))) (-3212 (*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)) (-4 *2 (-1027)))) (-3679 (*1 *2 *1) (-12 (-4 *1 (-968 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-112)))) (-2532 (*1 *2 *1) (-12 (-4 *1 (-968 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-400 (-549))))) (-3405 (*1 *2 *1) (|partial| -12 (-4 *1 (-968 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-400 (-549))))))
-(-13 (-38 |t#1|) (-404 |t#1|) (-225 |t#1|) (-331 |t#1|) (-370 |t#1|) (-10 -8 (-15 -1955 ($ $)) (-15 -2194 (|t#1| $)) (-15 -2697 (|t#1| $)) (-15 -2318 (|t#1| $)) (-15 -3630 (|t#1| $)) (-15 -3162 ($ |t#1| |t#1| |t#1| |t#1|)) (-15 -2145 (|t#1| $)) (IF (|has| |t#1| (-283)) (-6 (-283)) |%noBranch|) (IF (|has| |t#1| (-823)) (-6 (-823)) |%noBranch|) (IF (|has| |t#1| (-356)) (-6 (-237)) |%noBranch|) (IF (|has| |t#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |t#1| (-1027)) (-15 -3212 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-534)) (PROGN (-15 -3679 ((-112) $)) (-15 -2532 ((-400 (-549)) $)) (-15 -3405 ((-3 (-400 (-549)) "failed") $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) |has| |#1| (-356)) ((-38 |#1|) . T) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-356)) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-356)) (|has| |#1| (-283))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-225 |#1|) . T) ((-227) |has| |#1| (-227)) ((-237) |has| |#1| (-356)) ((-279 |#1| $) |has| |#1| (-279 |#1| |#1|)) ((-283) -1536 (|has| |#1| (-356)) (|has| |#1| (-283))) ((-302 |#1|) |has| |#1| (-302 |#1|)) ((-331 |#1|) . T) ((-370 |#1|) . T) ((-404 |#1|) . T) ((-505 (-1143) |#1|) |has| |#1| (-505 (-1143) |#1|)) ((-505 |#1| |#1|) |has| |#1| (-302 |#1|)) ((-624 #0#) |has| |#1| (-356)) ((-624 |#1|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-694 #0#) |has| |#1| (-356)) ((-694 |#1|) . T) ((-703) . T) ((-823) |has| |#1| (-823)) ((-871 (-1143)) |has| |#1| (-871 (-1143))) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1024 #0#) |has| |#1| (-356)) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-356)) (|has| |#1| (-283))) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-2797 ((|#3| (-1 |#4| |#2|) |#1|) 16)))
-(((-969 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2797 (|#3| (-1 |#4| |#2|) |#1|))) (-968 |#2|) (-170) (-968 |#4|) (-170)) (T -969))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-170)) (-4 *6 (-170)) (-4 *2 (-968 *6)) (-5 *1 (-969 *4 *5 *2 *6)) (-4 *4 (-968 *5)))))
-(-10 -7 (-15 -2797 (|#3| (-1 |#4| |#2|) |#1|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) NIL)) (-2659 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-2145 ((|#1| $) 12)) (-3405 (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-534)))) (-3679 (((-112) $) NIL (|has| |#1| (-534)))) (-2532 (((-400 (-549)) $) NIL (|has| |#1| (-534)))) (-3162 (($ |#1| |#1| |#1| |#1|) 16)) (-2675 (((-112) $) NIL)) (-3630 ((|#1| $) NIL)) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL (|has| |#1| (-356)))) (-2318 ((|#1| $) 15)) (-2697 ((|#1| $) 14)) (-2194 ((|#1| $) 13)) (-3990 (((-1087) $) NIL)) (-2686 (($ $ (-621 |#1|) (-621 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1143)) (-621 |#1|)) NIL (|has| |#1| (-505 (-1143) |#1|))) (($ $ (-1143) |#1|) NIL (|has| |#1| (-505 (-1143) |#1|)))) (-3341 (($ $ |#1|) NIL (|has| |#1| (-279 |#1| |#1|)))) (-3456 (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2845 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-1955 (($ $) NIL)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-356)) (|has| |#1| (-1009 (-400 (-549))))))) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) NIL)) (-3212 ((|#1| $) NIL (|has| |#1| (-1027)))) (-3276 (($) 8 T CONST)) (-3287 (($) 10 T CONST)) (-1702 (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-400 (-549))) NIL (|has| |#1| (-356))) (($ (-400 (-549)) $) NIL (|has| |#1| (-356)))))
+((-1795 (*1 *1 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))) (-3182 (*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))) (-3423 (*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))) (-2136 (*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))) (-2469 (*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))) (-3195 (*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))) (-2146 (*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))) (-2199 (*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)) (-4 *2 (-1027)))) (-3945 (*1 *2 *1) (-12 (-4 *1 (-968 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-112)))) (-1390 (*1 *2 *1) (-12 (-4 *1 (-968 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-400 (-549))))) (-1531 (*1 *2 *1) (|partial| -12 (-4 *1 (-968 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-400 (-549))))))
+(-13 (-38 |t#1|) (-404 |t#1|) (-225 |t#1|) (-331 |t#1|) (-370 |t#1|) (-10 -8 (-15 -1795 ($ $)) (-15 -3182 (|t#1| $)) (-15 -3423 (|t#1| $)) (-15 -2136 (|t#1| $)) (-15 -2469 (|t#1| $)) (-15 -3195 ($ |t#1| |t#1| |t#1| |t#1|)) (-15 -2146 (|t#1| $)) (IF (|has| |t#1| (-283)) (-6 (-283)) |%noBranch|) (IF (|has| |t#1| (-823)) (-6 (-823)) |%noBranch|) (IF (|has| |t#1| (-356)) (-6 (-237)) |%noBranch|) (IF (|has| |t#1| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-143)) (-6 (-143)) |%noBranch|) (IF (|has| |t#1| (-1027)) (-15 -2199 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-534)) (PROGN (-15 -3945 ((-112) $)) (-15 -1390 ((-400 (-549)) $)) (-15 -1531 ((-3 (-400 (-549)) "failed") $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) |has| |#1| (-356)) ((-38 |#1|) . T) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-356)) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-356)) (|has| |#1| (-283))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-225 |#1|) . T) ((-227) |has| |#1| (-227)) ((-237) |has| |#1| (-356)) ((-279 |#1| $) |has| |#1| (-279 |#1| |#1|)) ((-283) -1536 (|has| |#1| (-356)) (|has| |#1| (-283))) ((-302 |#1|) |has| |#1| (-302 |#1|)) ((-331 |#1|) . T) ((-370 |#1|) . T) ((-404 |#1|) . T) ((-505 (-1142) |#1|) |has| |#1| (-505 (-1142) |#1|)) ((-505 |#1| |#1|) |has| |#1| (-302 |#1|)) ((-624 #0#) |has| |#1| (-356)) ((-624 |#1|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-694 #0#) |has| |#1| (-356)) ((-694 |#1|) . T) ((-703) . T) ((-823) |has| |#1| (-823)) ((-871 (-1142)) |has| |#1| (-871 (-1142))) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1024 #0#) |has| |#1| (-356)) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-356)) (|has| |#1| (-283))) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-2795 ((|#3| (-1 |#4| |#2|) |#1|) 16)))
+(((-969 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2795 (|#3| (-1 |#4| |#2|) |#1|))) (-968 |#2|) (-170) (-968 |#4|) (-170)) (T -969))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-170)) (-4 *6 (-170)) (-4 *2 (-968 *6)) (-5 *1 (-969 *4 *5 *2 *6)) (-4 *4 (-968 *5)))))
+(-10 -7 (-15 -2795 (|#3| (-1 |#4| |#2|) |#1|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) NIL)) (-2657 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-2146 ((|#1| $) 12)) (-1531 (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-534)))) (-3945 (((-112) $) NIL (|has| |#1| (-534)))) (-1390 (((-400 (-549)) $) NIL (|has| |#1| (-534)))) (-3195 (($ |#1| |#1| |#1| |#1|) 16)) (-2297 (((-112) $) NIL)) (-2469 ((|#1| $) NIL)) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL (|has| |#1| (-356)))) (-2136 ((|#1| $) 15)) (-3423 ((|#1| $) 14)) (-3182 ((|#1| $) 13)) (-3988 (((-1086) $) NIL)) (-2684 (($ $ (-621 |#1|) (-621 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-302 |#1|))) (($ $ (-287 |#1|)) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-287 |#1|))) NIL (|has| |#1| (-302 |#1|))) (($ $ (-621 (-1142)) (-621 |#1|)) NIL (|has| |#1| (-505 (-1142) |#1|))) (($ $ (-1142) |#1|) NIL (|has| |#1| (-505 (-1142) |#1|)))) (-3339 (($ $ |#1|) NIL (|has| |#1| (-279 |#1| |#1|)))) (-3455 (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2843 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-1795 (($ $) NIL)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-356)) (|has| |#1| (-1009 (-400 (-549))))))) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) NIL)) (-2199 ((|#1| $) NIL (|has| |#1| (-1027)))) (-3274 (($) 8 T CONST)) (-3286 (($) 10 T CONST)) (-1699 (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-400 (-549))) NIL (|has| |#1| (-356))) (($ (-400 (-549)) $) NIL (|has| |#1| (-356)))))
(((-970 |#1|) (-968 |#1|) (-170)) (T -970))
NIL
(-968 |#1|)
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-1584 (((-112) $ (-747)) NIL)) (-1682 (($) NIL T CONST)) (-4194 (($ $) 20)) (-2808 (($ (-621 |#1|)) 29)) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-4210 (((-747) $) 22)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3504 ((|#1| $) 24)) (-2751 (($ |#1| $) 15)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1409 ((|#1| $) 23)) (-3325 ((|#1| $) 19)) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2502 ((|#1| |#1| $) 14)) (-3670 (((-112) $) 17)) (-3742 (($) NIL)) (-3912 ((|#1| $) 18)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3624 (($ (-621 |#1|)) NIL)) (-1410 ((|#1| $) 26)) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-971 |#1|) (-13 (-966 |#1|) (-10 -8 (-15 -2808 ($ (-621 |#1|))))) (-1067)) (T -971))
-((-2808 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-5 *1 (-971 *3)))))
-(-13 (-966 |#1|) (-10 -8 (-15 -2808 ($ (-621 |#1|)))))
-((-2134 (($ $) 12)) (-4187 (($ $ (-549)) 13)))
-(((-972 |#1|) (-10 -8 (-15 -2134 (|#1| |#1|)) (-15 -4187 (|#1| |#1| (-549)))) (-973)) (T -972))
-NIL
-(-10 -8 (-15 -2134 (|#1| |#1|)) (-15 -4187 (|#1| |#1| (-549))))
-((-2134 (($ $) 6)) (-4187 (($ $ (-549)) 7)) (** (($ $ (-400 (-549))) 8)))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2850 (((-112) $ (-747)) NIL)) (-3034 (($) NIL T CONST)) (-3030 (($ $) 20)) (-3562 (($ (-621 |#1|)) 29)) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-4210 (((-747) $) 22)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-2548 ((|#1| $) 24)) (-1799 (($ |#1| $) 15)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3082 ((|#1| $) 23)) (-3536 ((|#1| $) 19)) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-1396 ((|#1| |#1| $) 14)) (-2643 (((-112) $) 17)) (-3288 (($) NIL)) (-4140 ((|#1| $) 18)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-4213 (($ (-621 |#1|)) NIL)) (-3165 ((|#1| $) 26)) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-971 |#1|) (-13 (-966 |#1|) (-10 -8 (-15 -3562 ($ (-621 |#1|))))) (-1066)) (T -971))
+((-3562 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-5 *1 (-971 *3)))))
+(-13 (-966 |#1|) (-10 -8 (-15 -3562 ($ (-621 |#1|)))))
+((-2132 (($ $) 12)) (-3621 (($ $ (-549)) 13)))
+(((-972 |#1|) (-10 -8 (-15 -2132 (|#1| |#1|)) (-15 -3621 (|#1| |#1| (-549)))) (-973)) (T -972))
+NIL
+(-10 -8 (-15 -2132 (|#1| |#1|)) (-15 -3621 (|#1| |#1| (-549))))
+((-2132 (($ $) 6)) (-3621 (($ $ (-549)) 7)) (** (($ $ (-400 (-549))) 8)))
(((-973) (-138)) (T -973))
-((** (*1 *1 *1 *2) (-12 (-4 *1 (-973)) (-5 *2 (-400 (-549))))) (-4187 (*1 *1 *1 *2) (-12 (-4 *1 (-973)) (-5 *2 (-549)))) (-2134 (*1 *1 *1) (-4 *1 (-973))))
-(-13 (-10 -8 (-15 -2134 ($ $)) (-15 -4187 ($ $ (-549))) (-15 ** ($ $ (-400 (-549))))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2724 (((-2 (|:| |num| (-1226 |#2|)) (|:| |den| |#2|)) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| (-400 |#2|) (-356)))) (-2258 (($ $) NIL (|has| (-400 |#2|) (-356)))) (-2799 (((-112) $) NIL (|has| (-400 |#2|) (-356)))) (-1738 (((-665 (-400 |#2|)) (-1226 $)) NIL) (((-665 (-400 |#2|))) NIL)) (-2906 (((-400 |#2|) $) NIL)) (-3062 (((-1153 (-892) (-747)) (-549)) NIL (|has| (-400 |#2|) (-342)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL (|has| (-400 |#2|) (-356)))) (-2402 (((-411 $) $) NIL (|has| (-400 |#2|) (-356)))) (-3866 (((-112) $ $) NIL (|has| (-400 |#2|) (-356)))) (-3614 (((-747)) NIL (|has| (-400 |#2|) (-361)))) (-1279 (((-112)) NIL)) (-1388 (((-112) |#1|) 144) (((-112) |#2|) 149)) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL (|has| (-400 |#2|) (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-400 |#2|) (-1009 (-400 (-549))))) (((-3 (-400 |#2|) "failed") $) NIL)) (-2659 (((-549) $) NIL (|has| (-400 |#2|) (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| (-400 |#2|) (-1009 (-400 (-549))))) (((-400 |#2|) $) NIL)) (-3492 (($ (-1226 (-400 |#2|)) (-1226 $)) NIL) (($ (-1226 (-400 |#2|))) 70) (($ (-1226 |#2|) |#2|) NIL)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-400 |#2|) (-342)))) (-2095 (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-3506 (((-665 (-400 |#2|)) $ (-1226 $)) NIL) (((-665 (-400 |#2|)) $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| (-400 |#2|) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| (-400 |#2|) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-400 |#2|))) (|:| |vec| (-1226 (-400 |#2|)))) (-665 $) (-1226 $)) NIL) (((-665 (-400 |#2|)) (-665 $)) NIL)) (-2263 (((-1226 $) (-1226 $)) NIL)) (-2557 (($ |#3|) 65) (((-3 $ "failed") (-400 |#3|)) NIL (|has| (-400 |#2|) (-356)))) (-2114 (((-3 $ "failed") $) NIL)) (-3690 (((-621 (-621 |#1|))) NIL (|has| |#1| (-361)))) (-3465 (((-112) |#1| |#1|) NIL)) (-3123 (((-892)) NIL)) (-3239 (($) NIL (|has| (-400 |#2|) (-361)))) (-3031 (((-112)) NIL)) (-2941 (((-112) |#1|) 56) (((-112) |#2|) 146)) (-2067 (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| (-400 |#2|) (-356)))) (-1285 (($ $) NIL)) (-2405 (($) NIL (|has| (-400 |#2|) (-342)))) (-2288 (((-112) $) NIL (|has| (-400 |#2|) (-342)))) (-3165 (($ $ (-747)) NIL (|has| (-400 |#2|) (-342))) (($ $) NIL (|has| (-400 |#2|) (-342)))) (-1420 (((-112) $) NIL (|has| (-400 |#2|) (-356)))) (-2088 (((-892) $) NIL (|has| (-400 |#2|) (-342))) (((-809 (-892)) $) NIL (|has| (-400 |#2|) (-342)))) (-2675 (((-112) $) NIL)) (-2609 (((-747)) NIL)) (-2453 (((-1226 $) (-1226 $)) NIL)) (-3630 (((-400 |#2|) $) NIL)) (-1672 (((-621 (-923 |#1|)) (-1143)) NIL (|has| |#1| (-356)))) (-1681 (((-3 $ "failed") $) NIL (|has| (-400 |#2|) (-342)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| (-400 |#2|) (-356)))) (-3788 ((|#3| $) NIL (|has| (-400 |#2|) (-356)))) (-1881 (((-892) $) NIL (|has| (-400 |#2|) (-361)))) (-2548 ((|#3| $) NIL)) (-3697 (($ (-621 $)) NIL (|has| (-400 |#2|) (-356))) (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-3851 (((-1125) $) NIL)) (-2768 (((-665 (-400 |#2|))) 52)) (-1948 (((-665 (-400 |#2|))) 51)) (-1992 (($ $) NIL (|has| (-400 |#2|) (-356)))) (-3569 (($ (-1226 |#2|) |#2|) 71)) (-2955 (((-665 (-400 |#2|))) 50)) (-1519 (((-665 (-400 |#2|))) 49)) (-3621 (((-2 (|:| |num| (-665 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 86)) (-3581 (((-2 (|:| |num| (-1226 |#2|)) (|:| |den| |#2|)) $) 77)) (-3852 (((-1226 $)) 46)) (-1613 (((-1226 $)) 45)) (-2128 (((-112) $) NIL)) (-3710 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-3060 (($) NIL (|has| (-400 |#2|) (-342)) CONST)) (-3493 (($ (-892)) NIL (|has| (-400 |#2|) (-361)))) (-1314 (((-3 |#2| "failed")) 63)) (-3990 (((-1087) $) NIL)) (-2118 (((-747)) NIL)) (-4248 (($) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| (-400 |#2|) (-356)))) (-3727 (($ (-621 $)) NIL (|has| (-400 |#2|) (-356))) (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) NIL (|has| (-400 |#2|) (-342)))) (-2121 (((-411 $) $) NIL (|has| (-400 |#2|) (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-400 |#2|) (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| (-400 |#2|) (-356)))) (-2042 (((-3 $ "failed") $ $) NIL (|has| (-400 |#2|) (-356)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| (-400 |#2|) (-356)))) (-3684 (((-747) $) NIL (|has| (-400 |#2|) (-356)))) (-3341 ((|#1| $ |#1| |#1|) NIL)) (-1969 (((-3 |#2| "failed")) 62)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| (-400 |#2|) (-356)))) (-3602 (((-400 |#2|) (-1226 $)) NIL) (((-400 |#2|)) 42)) (-3914 (((-747) $) NIL (|has| (-400 |#2|) (-342))) (((-3 (-747) "failed") $ $) NIL (|has| (-400 |#2|) (-342)))) (-3456 (($ $ (-1 (-400 |#2|) (-400 |#2|)) (-747)) NIL (|has| (-400 |#2|) (-356))) (($ $ (-1 (-400 |#2|) (-400 |#2|))) NIL (|has| (-400 |#2|) (-356))) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143))))) (($ $ (-1143)) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143))))) (($ $ (-747)) NIL (-1536 (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342)))) (($ $) NIL (-1536 (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342))))) (-2901 (((-665 (-400 |#2|)) (-1226 $) (-1 (-400 |#2|) (-400 |#2|))) NIL (|has| (-400 |#2|) (-356)))) (-2815 ((|#3|) 53)) (-3170 (($) NIL (|has| (-400 |#2|) (-342)))) (-4263 (((-1226 (-400 |#2|)) $ (-1226 $)) NIL) (((-665 (-400 |#2|)) (-1226 $) (-1226 $)) NIL) (((-1226 (-400 |#2|)) $) 72) (((-665 (-400 |#2|)) (-1226 $)) NIL)) (-2845 (((-1226 (-400 |#2|)) $) NIL) (($ (-1226 (-400 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (|has| (-400 |#2|) (-342)))) (-3339 (((-1226 $) (-1226 $)) NIL)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ (-400 |#2|)) NIL) (($ (-400 (-549))) NIL (-1536 (|has| (-400 |#2|) (-1009 (-400 (-549)))) (|has| (-400 |#2|) (-356)))) (($ $) NIL (|has| (-400 |#2|) (-356)))) (-2210 (($ $) NIL (|has| (-400 |#2|) (-342))) (((-3 $ "failed") $) NIL (|has| (-400 |#2|) (-143)))) (-4154 ((|#3| $) NIL)) (-2082 (((-747)) NIL)) (-3672 (((-112)) 60)) (-2330 (((-112) |#1|) 150) (((-112) |#2|) 151)) (-1949 (((-1226 $)) 121)) (-1498 (((-112) $ $) NIL (|has| (-400 |#2|) (-356)))) (-2033 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-2810 (((-112)) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $ (-1 (-400 |#2|) (-400 |#2|)) (-747)) NIL (|has| (-400 |#2|) (-356))) (($ $ (-1 (-400 |#2|) (-400 |#2|))) NIL (|has| (-400 |#2|) (-356))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143))))) (($ $ (-1143)) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1143))))) (($ $ (-747)) NIL (-1536 (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342)))) (($ $) NIL (-1536 (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342))))) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| (-400 |#2|) (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 |#2|)) NIL) (($ (-400 |#2|) $) NIL) (($ (-400 (-549)) $) NIL (|has| (-400 |#2|) (-356))) (($ $ (-400 (-549))) NIL (|has| (-400 |#2|) (-356)))))
-(((-974 |#1| |#2| |#3| |#4| |#5|) (-335 |#1| |#2| |#3|) (-1184) (-1202 |#1|) (-1202 (-400 |#2|)) (-400 |#2|) (-747)) (T -974))
+((** (*1 *1 *1 *2) (-12 (-4 *1 (-973)) (-5 *2 (-400 (-549))))) (-3621 (*1 *1 *1 *2) (-12 (-4 *1 (-973)) (-5 *2 (-549)))) (-2132 (*1 *1 *1) (-4 *1 (-973))))
+(-13 (-10 -8 (-15 -2132 ($ $)) (-15 -3621 ($ $ (-549))) (-15 ** ($ $ (-400 (-549))))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-1726 (((-2 (|:| |num| (-1225 |#2|)) (|:| |den| |#2|)) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| (-400 |#2|) (-356)))) (-3044 (($ $) NIL (|has| (-400 |#2|) (-356)))) (-2774 (((-112) $) NIL (|has| (-400 |#2|) (-356)))) (-1789 (((-665 (-400 |#2|)) (-1225 $)) NIL) (((-665 (-400 |#2|))) NIL)) (-2904 (((-400 |#2|) $) NIL)) (-1597 (((-1152 (-892) (-747)) (-549)) NIL (|has| (-400 |#2|) (-342)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL (|has| (-400 |#2|) (-356)))) (-2620 (((-411 $) $) NIL (|has| (-400 |#2|) (-356)))) (-2680 (((-112) $ $) NIL (|has| (-400 |#2|) (-356)))) (-3614 (((-747)) NIL (|has| (-400 |#2|) (-361)))) (-4233 (((-112)) NIL)) (-1823 (((-112) |#1|) 144) (((-112) |#2|) 149)) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL (|has| (-400 |#2|) (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-400 |#2|) (-1009 (-400 (-549))))) (((-3 (-400 |#2|) "failed") $) NIL)) (-2657 (((-549) $) NIL (|has| (-400 |#2|) (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| (-400 |#2|) (-1009 (-400 (-549))))) (((-400 |#2|) $) NIL)) (-2397 (($ (-1225 (-400 |#2|)) (-1225 $)) NIL) (($ (-1225 (-400 |#2|))) 70) (($ (-1225 |#2|) |#2|) NIL)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-400 |#2|) (-342)))) (-2091 (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-1408 (((-665 (-400 |#2|)) $ (-1225 $)) NIL) (((-665 (-400 |#2|)) $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| (-400 |#2|) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| (-400 |#2|) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-400 |#2|))) (|:| |vec| (-1225 (-400 |#2|)))) (-665 $) (-1225 $)) NIL) (((-665 (-400 |#2|)) (-665 $)) NIL)) (-2231 (((-1225 $) (-1225 $)) NIL)) (-2556 (($ |#3|) 65) (((-3 $ "failed") (-400 |#3|)) NIL (|has| (-400 |#2|) (-356)))) (-2612 (((-3 $ "failed") $) NIL)) (-2185 (((-621 (-621 |#1|))) NIL (|has| |#1| (-361)))) (-3805 (((-112) |#1| |#1|) NIL)) (-3121 (((-892)) NIL)) (-3237 (($) NIL (|has| (-400 |#2|) (-361)))) (-2707 (((-112)) NIL)) (-3568 (((-112) |#1|) 56) (((-112) |#2|) 146)) (-2065 (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| (-400 |#2|) (-356)))) (-3004 (($ $) NIL)) (-1545 (($) NIL (|has| (-400 |#2|) (-342)))) (-1315 (((-112) $) NIL (|has| (-400 |#2|) (-342)))) (-3517 (($ $ (-747)) NIL (|has| (-400 |#2|) (-342))) (($ $) NIL (|has| (-400 |#2|) (-342)))) (-1464 (((-112) $) NIL (|has| (-400 |#2|) (-356)))) (-2729 (((-892) $) NIL (|has| (-400 |#2|) (-342))) (((-809 (-892)) $) NIL (|has| (-400 |#2|) (-342)))) (-2297 (((-112) $) NIL)) (-1872 (((-747)) NIL)) (-3015 (((-1225 $) (-1225 $)) NIL)) (-2469 (((-400 |#2|) $) NIL)) (-3355 (((-621 (-923 |#1|)) (-1142)) NIL (|has| |#1| (-356)))) (-2964 (((-3 $ "failed") $) NIL (|has| (-400 |#2|) (-342)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| (-400 |#2|) (-356)))) (-3514 ((|#3| $) NIL (|has| (-400 |#2|) (-356)))) (-3309 (((-892) $) NIL (|has| (-400 |#2|) (-361)))) (-2545 ((|#3| $) NIL)) (-3696 (($ (-621 $)) NIL (|has| (-400 |#2|) (-356))) (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-3441 (((-1124) $) NIL)) (-3089 (((-665 (-400 |#2|))) 52)) (-2518 (((-665 (-400 |#2|))) 51)) (-1990 (($ $) NIL (|has| (-400 |#2|) (-356)))) (-3415 (($ (-1225 |#2|) |#2|) 71)) (-2575 (((-665 (-400 |#2|))) 50)) (-2134 (((-665 (-400 |#2|))) 49)) (-3903 (((-2 (|:| |num| (-665 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 86)) (-1384 (((-2 (|:| |num| (-1225 |#2|)) (|:| |den| |#2|)) $) 77)) (-3555 (((-1225 $)) 46)) (-1311 (((-1225 $)) 45)) (-3411 (((-112) $) NIL)) (-3623 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-3059 (($) NIL (|has| (-400 |#2|) (-342)) CONST)) (-3494 (($ (-892)) NIL (|has| (-400 |#2|) (-361)))) (-1550 (((-3 |#2| "failed")) 63)) (-3988 (((-1086) $) NIL)) (-1765 (((-747)) NIL)) (-4247 (($) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| (-400 |#2|) (-356)))) (-3726 (($ (-621 $)) NIL (|has| (-400 |#2|) (-356))) (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) NIL (|has| (-400 |#2|) (-342)))) (-2119 (((-411 $) $) NIL (|has| (-400 |#2|) (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-400 |#2|) (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| (-400 |#2|) (-356)))) (-2040 (((-3 $ "failed") $ $) NIL (|has| (-400 |#2|) (-356)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| (-400 |#2|) (-356)))) (-1335 (((-747) $) NIL (|has| (-400 |#2|) (-356)))) (-3339 ((|#1| $ |#1| |#1|) NIL)) (-2622 (((-3 |#2| "failed")) 62)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| (-400 |#2|) (-356)))) (-2740 (((-400 |#2|) (-1225 $)) NIL) (((-400 |#2|)) 42)) (-3189 (((-747) $) NIL (|has| (-400 |#2|) (-342))) (((-3 (-747) "failed") $ $) NIL (|has| (-400 |#2|) (-342)))) (-3455 (($ $ (-1 (-400 |#2|) (-400 |#2|)) (-747)) NIL (|has| (-400 |#2|) (-356))) (($ $ (-1 (-400 |#2|) (-400 |#2|))) NIL (|has| (-400 |#2|) (-356))) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142))))) (($ $ (-1142)) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142))))) (($ $ (-747)) NIL (-1536 (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342)))) (($ $) NIL (-1536 (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342))))) (-2381 (((-665 (-400 |#2|)) (-1225 $) (-1 (-400 |#2|) (-400 |#2|))) NIL (|has| (-400 |#2|) (-356)))) (-1262 ((|#3|) 53)) (-2950 (($) NIL (|has| (-400 |#2|) (-342)))) (-1981 (((-1225 (-400 |#2|)) $ (-1225 $)) NIL) (((-665 (-400 |#2|)) (-1225 $) (-1225 $)) NIL) (((-1225 (-400 |#2|)) $) 72) (((-665 (-400 |#2|)) (-1225 $)) NIL)) (-2843 (((-1225 (-400 |#2|)) $) NIL) (($ (-1225 (-400 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (|has| (-400 |#2|) (-342)))) (-2354 (((-1225 $) (-1225 $)) NIL)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ (-400 |#2|)) NIL) (($ (-400 (-549))) NIL (-1536 (|has| (-400 |#2|) (-1009 (-400 (-549)))) (|has| (-400 |#2|) (-356)))) (($ $) NIL (|has| (-400 |#2|) (-356)))) (-2343 (($ $) NIL (|has| (-400 |#2|) (-342))) (((-3 $ "failed") $) NIL (|has| (-400 |#2|) (-143)))) (-4019 ((|#3| $) NIL)) (-2371 (((-747)) NIL)) (-1479 (((-112)) 60)) (-1642 (((-112) |#1|) 150) (((-112) |#2|) 151)) (-2619 (((-1225 $)) 121)) (-2441 (((-112) $ $) NIL (|has| (-400 |#2|) (-356)))) (-3111 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-1945 (((-112)) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $ (-1 (-400 |#2|) (-400 |#2|)) (-747)) NIL (|has| (-400 |#2|) (-356))) (($ $ (-1 (-400 |#2|) (-400 |#2|))) NIL (|has| (-400 |#2|) (-356))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142))))) (($ $ (-1142)) NIL (-12 (|has| (-400 |#2|) (-356)) (|has| (-400 |#2|) (-871 (-1142))))) (($ $ (-747)) NIL (-1536 (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342)))) (($ $) NIL (-1536 (-12 (|has| (-400 |#2|) (-227)) (|has| (-400 |#2|) (-356))) (|has| (-400 |#2|) (-342))))) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ $) NIL (|has| (-400 |#2|) (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| (-400 |#2|) (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 |#2|)) NIL) (($ (-400 |#2|) $) NIL) (($ (-400 (-549)) $) NIL (|has| (-400 |#2|) (-356))) (($ $ (-400 (-549))) NIL (|has| (-400 |#2|) (-356)))))
+(((-974 |#1| |#2| |#3| |#4| |#5|) (-335 |#1| |#2| |#3|) (-1183) (-1201 |#1|) (-1201 (-400 |#2|)) (-400 |#2|) (-747)) (T -974))
NIL
(-335 |#1| |#2| |#3|)
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-4148 (((-621 (-549)) $) 54)) (-4056 (($ (-621 (-549))) 62)) (-3329 (((-549) $) 40 (|has| (-549) (-300)))) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-549) (-880)))) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| (-549) (-880)))) (-3866 (((-112) $ $) NIL)) (-1872 (((-549) $) NIL (|has| (-549) (-796)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) 49) (((-3 (-1143) "failed") $) NIL (|has| (-549) (-1009 (-1143)))) (((-3 (-400 (-549)) "failed") $) 47 (|has| (-549) (-1009 (-549)))) (((-3 (-549) "failed") $) 49 (|has| (-549) (-1009 (-549))))) (-2659 (((-549) $) NIL) (((-1143) $) NIL (|has| (-549) (-1009 (-1143)))) (((-400 (-549)) $) NIL (|has| (-549) (-1009 (-549)))) (((-549) $) NIL (|has| (-549) (-1009 (-549))))) (-2095 (($ $ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| (-549) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| (-549) (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL) (((-665 (-549)) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3239 (($) NIL (|has| (-549) (-534)))) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-1381 (((-621 (-549)) $) 60)) (-2772 (((-112) $) NIL (|has| (-549) (-796)))) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| (-549) (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| (-549) (-857 (-372))))) (-2675 (((-112) $) NIL)) (-1726 (($ $) NIL)) (-1394 (((-549) $) 37)) (-1681 (((-3 $ "failed") $) NIL (|has| (-549) (-1118)))) (-2374 (((-112) $) NIL (|has| (-549) (-796)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2863 (($ $ $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| (-549) (-823)))) (-2797 (($ (-1 (-549) (-549)) $) NIL)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL)) (-3060 (($) NIL (|has| (-549) (-1118)) CONST)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-2873 (($ $) NIL (|has| (-549) (-300))) (((-400 (-549)) $) 42)) (-3880 (((-1123 (-549)) $) 59)) (-3721 (($ (-621 (-549)) (-621 (-549))) 63)) (-3967 (((-549) $) 53 (|has| (-549) (-534)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-549) (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| (-549) (-880)))) (-2121 (((-411 $) $) NIL)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2686 (($ $ (-621 (-549)) (-621 (-549))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-549) (-549)) NIL (|has| (-549) (-302 (-549)))) (($ $ (-287 (-549))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-621 (-287 (-549)))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-621 (-1143)) (-621 (-549))) NIL (|has| (-549) (-505 (-1143) (-549)))) (($ $ (-1143) (-549)) NIL (|has| (-549) (-505 (-1143) (-549))))) (-3684 (((-747) $) NIL)) (-3341 (($ $ (-549)) NIL (|has| (-549) (-279 (-549) (-549))))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3456 (($ $) 11 (|has| (-549) (-227))) (($ $ (-747)) NIL (|has| (-549) (-227))) (($ $ (-1143)) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-1 (-549) (-549)) (-747)) NIL) (($ $ (-1 (-549) (-549))) NIL)) (-3939 (($ $) NIL)) (-1403 (((-549) $) 39)) (-1419 (((-621 (-549)) $) 61)) (-2845 (((-863 (-549)) $) NIL (|has| (-549) (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| (-549) (-594 (-863 (-372))))) (((-525) $) NIL (|has| (-549) (-594 (-525)))) (((-372) $) NIL (|has| (-549) (-993))) (((-219) $) NIL (|has| (-549) (-993)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-549) (-880))))) (-3846 (((-834) $) 77) (($ (-549)) 43) (($ $) NIL) (($ (-400 (-549))) 20) (($ (-549)) 43) (($ (-1143)) NIL (|has| (-549) (-1009 (-1143)))) (((-400 (-549)) $) 18)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-549) (-880))) (|has| (-549) (-143))))) (-2082 (((-747)) 9)) (-2546 (((-549) $) 51 (|has| (-549) (-534)))) (-1498 (((-112) $ $) NIL)) (-3212 (($ $) NIL (|has| (-549) (-796)))) (-3276 (($) 10 T CONST)) (-3287 (($) 12 T CONST)) (-1702 (($ $) NIL (|has| (-549) (-227))) (($ $ (-747)) NIL (|has| (-549) (-227))) (($ $ (-1143)) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| (-549) (-871 (-1143)))) (($ $ (-1 (-549) (-549)) (-747)) NIL) (($ $ (-1 (-549) (-549))) NIL)) (-2448 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2425 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2389 (((-112) $ $) 14)) (-2438 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2412 (((-112) $ $) 33 (|has| (-549) (-823)))) (-2513 (($ $ $) 29) (($ (-549) (-549)) 31)) (-2500 (($ $) 15) (($ $ $) 23)) (-2486 (($ $ $) 21)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 25) (($ $ $) 27) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ (-549) $) 25) (($ $ (-549)) NIL)))
-(((-975 |#1|) (-13 (-963 (-549)) (-10 -8 (-15 -3846 ((-400 (-549)) $)) (-15 -2873 ((-400 (-549)) $)) (-15 -4148 ((-621 (-549)) $)) (-15 -3880 ((-1123 (-549)) $)) (-15 -1381 ((-621 (-549)) $)) (-15 -1419 ((-621 (-549)) $)) (-15 -4056 ($ (-621 (-549)))) (-15 -3721 ($ (-621 (-549)) (-621 (-549)))))) (-549)) (T -975))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))) (-2873 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))) (-4148 (*1 *2 *1) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))) (-3880 (*1 *2 *1) (-12 (-5 *2 (-1123 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))) (-1381 (*1 *2 *1) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))) (-1419 (*1 *2 *1) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))) (-4056 (*1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))) (-3721 (*1 *1 *2 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))))
-(-13 (-963 (-549)) (-10 -8 (-15 -3846 ((-400 (-549)) $)) (-15 -2873 ((-400 (-549)) $)) (-15 -4148 ((-621 (-549)) $)) (-15 -3880 ((-1123 (-549)) $)) (-15 -1381 ((-621 (-549)) $)) (-15 -1419 ((-621 (-549)) $)) (-15 -4056 ($ (-621 (-549)))) (-15 -3721 ($ (-621 (-549)) (-621 (-549))))))
-((-4259 (((-52) (-400 (-549)) (-549)) 9)))
-(((-976) (-10 -7 (-15 -4259 ((-52) (-400 (-549)) (-549))))) (T -976))
-((-4259 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-549))) (-5 *4 (-549)) (-5 *2 (-52)) (-5 *1 (-976)))))
-(-10 -7 (-15 -4259 ((-52) (-400 (-549)) (-549))))
-((-3614 (((-549)) 13)) (-3889 (((-549)) 16)) (-2439 (((-1231) (-549)) 15)) (-4173 (((-549) (-549)) 17) (((-549)) 12)))
-(((-977) (-10 -7 (-15 -4173 ((-549))) (-15 -3614 ((-549))) (-15 -4173 ((-549) (-549))) (-15 -2439 ((-1231) (-549))) (-15 -3889 ((-549))))) (T -977))
-((-3889 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-977)))) (-2439 (*1 *2 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1231)) (-5 *1 (-977)))) (-4173 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-977)))) (-3614 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-977)))) (-4173 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-977)))))
-(-10 -7 (-15 -4173 ((-549))) (-15 -3614 ((-549))) (-15 -4173 ((-549) (-549))) (-15 -2439 ((-1231) (-549))) (-15 -3889 ((-549))))
-((-2131 (((-411 |#1|) |#1|) 41)) (-2121 (((-411 |#1|) |#1|) 40)))
-(((-978 |#1|) (-10 -7 (-15 -2121 ((-411 |#1|) |#1|)) (-15 -2131 ((-411 |#1|) |#1|))) (-1202 (-400 (-549)))) (T -978))
-((-2131 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-978 *3)) (-4 *3 (-1202 (-400 (-549)))))) (-2121 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-978 *3)) (-4 *3 (-1202 (-400 (-549)))))))
-(-10 -7 (-15 -2121 ((-411 |#1|) |#1|)) (-15 -2131 ((-411 |#1|) |#1|)))
-((-3405 (((-3 (-400 (-549)) "failed") |#1|) 15)) (-3679 (((-112) |#1|) 14)) (-2532 (((-400 (-549)) |#1|) 10)))
-(((-979 |#1|) (-10 -7 (-15 -2532 ((-400 (-549)) |#1|)) (-15 -3679 ((-112) |#1|)) (-15 -3405 ((-3 (-400 (-549)) "failed") |#1|))) (-1009 (-400 (-549)))) (T -979))
-((-3405 (*1 *2 *3) (|partial| -12 (-5 *2 (-400 (-549))) (-5 *1 (-979 *3)) (-4 *3 (-1009 *2)))) (-3679 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-979 *3)) (-4 *3 (-1009 (-400 (-549)))))) (-2532 (*1 *2 *3) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-979 *3)) (-4 *3 (-1009 *2)))))
-(-10 -7 (-15 -2532 ((-400 (-549)) |#1|)) (-15 -3679 ((-112) |#1|)) (-15 -3405 ((-3 (-400 (-549)) "failed") |#1|)))
-((-2254 ((|#2| $ "value" |#2|) 12)) (-3341 ((|#2| $ "value") 10)) (-1987 (((-112) $ $) 18)))
-(((-980 |#1| |#2|) (-10 -8 (-15 -2254 (|#2| |#1| "value" |#2|)) (-15 -1987 ((-112) |#1| |#1|)) (-15 -3341 (|#2| |#1| "value"))) (-981 |#2|) (-1180)) (T -980))
-NIL
-(-10 -8 (-15 -2254 (|#2| |#1| "value" |#2|)) (-15 -1987 ((-112) |#1| |#1|)) (-15 -3341 (|#2| |#1| "value")))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-4161 ((|#1| $) 48)) (-1584 (((-112) $ (-747)) 8)) (-2838 ((|#1| $ |#1|) 39 (|has| $ (-6 -4338)))) (-2254 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) 41 (|has| $ (-6 -4338)))) (-1682 (($) 7 T CONST)) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) 50)) (-3895 (((-112) $ $) 42 (|has| |#1| (-1067)))) (-3194 (((-112) $ (-747)) 9)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-3591 (((-621 |#1|) $) 45)) (-2076 (((-112) $) 49)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#1| $ "value") 47)) (-3230 (((-549) $ $) 44)) (-3497 (((-112) $) 46)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) 51)) (-1987 (((-112) $ $) 43 (|has| |#1| (-1067)))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-981 |#1|) (-138) (-1180)) (T -981))
-((-2742 (*1 *2 *1) (-12 (-4 *3 (-1180)) (-5 *2 (-621 *1)) (-4 *1 (-981 *3)))) (-3075 (*1 *2 *1) (-12 (-4 *3 (-1180)) (-5 *2 (-621 *1)) (-4 *1 (-981 *3)))) (-2076 (*1 *2 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1180)) (-5 *2 (-112)))) (-4161 (*1 *2 *1) (-12 (-4 *1 (-981 *2)) (-4 *2 (-1180)))) (-3341 (*1 *2 *1 *3) (-12 (-5 *3 "value") (-4 *1 (-981 *2)) (-4 *2 (-1180)))) (-3497 (*1 *2 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1180)) (-5 *2 (-112)))) (-3591 (*1 *2 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1180)) (-5 *2 (-621 *3)))) (-3230 (*1 *2 *1 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1180)) (-5 *2 (-549)))) (-1987 (*1 *2 *1 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1180)) (-4 *3 (-1067)) (-5 *2 (-112)))) (-3895 (*1 *2 *1 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1180)) (-4 *3 (-1067)) (-5 *2 (-112)))) (-2722 (*1 *1 *1 *2) (-12 (-5 *2 (-621 *1)) (|has| *1 (-6 -4338)) (-4 *1 (-981 *3)) (-4 *3 (-1180)))) (-2254 (*1 *2 *1 *3 *2) (-12 (-5 *3 "value") (|has| *1 (-6 -4338)) (-4 *1 (-981 *2)) (-4 *2 (-1180)))) (-2838 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-981 *2)) (-4 *2 (-1180)))))
-(-13 (-481 |t#1|) (-10 -8 (-15 -2742 ((-621 $) $)) (-15 -3075 ((-621 $) $)) (-15 -2076 ((-112) $)) (-15 -4161 (|t#1| $)) (-15 -3341 (|t#1| $ "value")) (-15 -3497 ((-112) $)) (-15 -3591 ((-621 |t#1|) $)) (-15 -3230 ((-549) $ $)) (IF (|has| |t#1| (-1067)) (PROGN (-15 -1987 ((-112) $ $)) (-15 -3895 ((-112) $ $))) |%noBranch|) (IF (|has| $ (-6 -4338)) (PROGN (-15 -2722 ($ $ (-621 $))) (-15 -2254 (|t#1| $ "value" |t#1|)) (-15 -2838 (|t#1| $ |t#1|))) |%noBranch|)))
-(((-34) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-1067) |has| |#1| (-1067)) ((-1180) . T))
-((-2134 (($ $) 9) (($ $ (-892)) 43) (($ (-400 (-549))) 13) (($ (-549)) 15)) (-1947 (((-3 $ "failed") (-1139 $) (-892) (-834)) 23) (((-3 $ "failed") (-1139 $) (-892)) 28)) (-4187 (($ $ (-549)) 49)) (-2082 (((-747)) 17)) (-3302 (((-621 $) (-1139 $)) NIL) (((-621 $) (-1139 (-400 (-549)))) 54) (((-621 $) (-1139 (-549))) 59) (((-621 $) (-923 $)) 63) (((-621 $) (-923 (-400 (-549)))) 67) (((-621 $) (-923 (-549))) 71)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL) (($ $ (-400 (-549))) 47)))
-(((-982 |#1|) (-10 -8 (-15 -2134 (|#1| (-549))) (-15 -2134 (|#1| (-400 (-549)))) (-15 -2134 (|#1| |#1| (-892))) (-15 -3302 ((-621 |#1|) (-923 (-549)))) (-15 -3302 ((-621 |#1|) (-923 (-400 (-549))))) (-15 -3302 ((-621 |#1|) (-923 |#1|))) (-15 -3302 ((-621 |#1|) (-1139 (-549)))) (-15 -3302 ((-621 |#1|) (-1139 (-400 (-549))))) (-15 -3302 ((-621 |#1|) (-1139 |#1|))) (-15 -1947 ((-3 |#1| "failed") (-1139 |#1|) (-892))) (-15 -1947 ((-3 |#1| "failed") (-1139 |#1|) (-892) (-834))) (-15 ** (|#1| |#1| (-400 (-549)))) (-15 -4187 (|#1| |#1| (-549))) (-15 -2134 (|#1| |#1|)) (-15 ** (|#1| |#1| (-549))) (-15 -2082 ((-747))) (-15 ** (|#1| |#1| (-747))) (-15 ** (|#1| |#1| (-892)))) (-983)) (T -982))
-((-2082 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-982 *3)) (-4 *3 (-983)))))
-(-10 -8 (-15 -2134 (|#1| (-549))) (-15 -2134 (|#1| (-400 (-549)))) (-15 -2134 (|#1| |#1| (-892))) (-15 -3302 ((-621 |#1|) (-923 (-549)))) (-15 -3302 ((-621 |#1|) (-923 (-400 (-549))))) (-15 -3302 ((-621 |#1|) (-923 |#1|))) (-15 -3302 ((-621 |#1|) (-1139 (-549)))) (-15 -3302 ((-621 |#1|) (-1139 (-400 (-549))))) (-15 -3302 ((-621 |#1|) (-1139 |#1|))) (-15 -1947 ((-3 |#1| "failed") (-1139 |#1|) (-892))) (-15 -1947 ((-3 |#1| "failed") (-1139 |#1|) (-892) (-834))) (-15 ** (|#1| |#1| (-400 (-549)))) (-15 -4187 (|#1| |#1| (-549))) (-15 -2134 (|#1| |#1|)) (-15 ** (|#1| |#1| (-549))) (-15 -2082 ((-747))) (-15 ** (|#1| |#1| (-747))) (-15 ** (|#1| |#1| (-892))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 87)) (-2258 (($ $) 88)) (-2799 (((-112) $) 90)) (-2001 (((-3 $ "failed") $ $) 19)) (-3979 (($ $) 107)) (-2402 (((-411 $) $) 108)) (-2134 (($ $) 71) (($ $ (-892)) 57) (($ (-400 (-549))) 56) (($ (-549)) 55)) (-3866 (((-112) $ $) 98)) (-1872 (((-549) $) 124)) (-1682 (($) 17 T CONST)) (-1947 (((-3 $ "failed") (-1139 $) (-892) (-834)) 65) (((-3 $ "failed") (-1139 $) (-892)) 64)) (-2714 (((-3 (-549) "failed") $) 83 (|has| (-400 (-549)) (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 81 (|has| (-400 (-549)) (-1009 (-400 (-549))))) (((-3 (-400 (-549)) "failed") $) 79)) (-2659 (((-549) $) 84 (|has| (-400 (-549)) (-1009 (-549)))) (((-400 (-549)) $) 82 (|has| (-400 (-549)) (-1009 (-400 (-549))))) (((-400 (-549)) $) 78)) (-4300 (($ $ (-834)) 54)) (-1266 (($ $ (-834)) 53)) (-2095 (($ $ $) 102)) (-2114 (((-3 $ "failed") $) 32)) (-2067 (($ $ $) 101)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 96)) (-1420 (((-112) $) 109)) (-2772 (((-112) $) 122)) (-2675 (((-112) $) 30)) (-4187 (($ $ (-549)) 70)) (-2374 (((-112) $) 123)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 105)) (-2863 (($ $ $) 121)) (-3575 (($ $ $) 120)) (-2785 (((-3 (-1139 $) "failed") $) 66)) (-2373 (((-3 (-834) "failed") $) 68)) (-3436 (((-3 (-1139 $) "failed") $) 67)) (-3697 (($ (-621 $)) 94) (($ $ $) 93)) (-3851 (((-1125) $) 9)) (-1992 (($ $) 110)) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 95)) (-3727 (($ (-621 $)) 92) (($ $ $) 91)) (-2121 (((-411 $) $) 106)) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 104) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 103)) (-2042 (((-3 $ "failed") $ $) 86)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 97)) (-3684 (((-747) $) 99)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 100)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 114) (($ $) 85) (($ (-400 (-549))) 80) (($ (-549)) 77) (($ (-400 (-549))) 74)) (-2082 (((-747)) 28)) (-1498 (((-112) $ $) 89)) (-2661 (((-400 (-549)) $ $) 52)) (-3302 (((-621 $) (-1139 $)) 63) (((-621 $) (-1139 (-400 (-549)))) 62) (((-621 $) (-1139 (-549))) 61) (((-621 $) (-923 $)) 60) (((-621 $) (-923 (-400 (-549)))) 59) (((-621 $) (-923 (-549))) 58)) (-3212 (($ $) 125)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2448 (((-112) $ $) 118)) (-2425 (((-112) $ $) 117)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 119)) (-2412 (((-112) $ $) 116)) (-2513 (($ $ $) 115)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 111) (($ $ (-400 (-549))) 69)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ (-400 (-549)) $) 113) (($ $ (-400 (-549))) 112) (($ (-549) $) 76) (($ $ (-549)) 75) (($ (-400 (-549)) $) 73) (($ $ (-400 (-549))) 72)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-1730 (((-621 (-549)) $) 54)) (-4177 (($ (-621 (-549))) 62)) (-3833 (((-549) $) 40 (|has| (-549) (-300)))) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-549) (-880)))) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| (-549) (-880)))) (-2680 (((-112) $ $) NIL)) (-1741 (((-549) $) NIL (|has| (-549) (-796)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) 49) (((-3 (-1142) "failed") $) NIL (|has| (-549) (-1009 (-1142)))) (((-3 (-400 (-549)) "failed") $) 47 (|has| (-549) (-1009 (-549)))) (((-3 (-549) "failed") $) 49 (|has| (-549) (-1009 (-549))))) (-2657 (((-549) $) NIL) (((-1142) $) NIL (|has| (-549) (-1009 (-1142)))) (((-400 (-549)) $) NIL (|has| (-549) (-1009 (-549)))) (((-549) $) NIL (|has| (-549) (-1009 (-549))))) (-2091 (($ $ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| (-549) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| (-549) (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL) (((-665 (-549)) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3237 (($) NIL (|has| (-549) (-534)))) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-1558 (((-621 (-549)) $) 60)) (-2357 (((-112) $) NIL (|has| (-549) (-796)))) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (|has| (-549) (-857 (-549)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (|has| (-549) (-857 (-372))))) (-2297 (((-112) $) NIL)) (-2096 (($ $) NIL)) (-1392 (((-549) $) 37)) (-2964 (((-3 $ "failed") $) NIL (|has| (-549) (-1117)))) (-1992 (((-112) $) NIL (|has| (-549) (-796)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2861 (($ $ $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| (-549) (-823)))) (-2795 (($ (-1 (-549) (-549)) $) NIL)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL)) (-3059 (($) NIL (|has| (-549) (-1117)) CONST)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-1512 (($ $) NIL (|has| (-549) (-300))) (((-400 (-549)) $) 42)) (-3565 (((-1122 (-549)) $) 59)) (-2102 (($ (-621 (-549)) (-621 (-549))) 63)) (-1349 (((-549) $) 53 (|has| (-549) (-534)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-549) (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| (-549) (-880)))) (-2119 (((-411 $) $) NIL)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2684 (($ $ (-621 (-549)) (-621 (-549))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-549) (-549)) NIL (|has| (-549) (-302 (-549)))) (($ $ (-287 (-549))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-621 (-287 (-549)))) NIL (|has| (-549) (-302 (-549)))) (($ $ (-621 (-1142)) (-621 (-549))) NIL (|has| (-549) (-505 (-1142) (-549)))) (($ $ (-1142) (-549)) NIL (|has| (-549) (-505 (-1142) (-549))))) (-1335 (((-747) $) NIL)) (-3339 (($ $ (-549)) NIL (|has| (-549) (-279 (-549) (-549))))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3455 (($ $) 11 (|has| (-549) (-227))) (($ $ (-747)) NIL (|has| (-549) (-227))) (($ $ (-1142)) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-1 (-549) (-549)) (-747)) NIL) (($ $ (-1 (-549) (-549))) NIL)) (-4095 (($ $) NIL)) (-1404 (((-549) $) 39)) (-1364 (((-621 (-549)) $) 61)) (-2843 (((-863 (-549)) $) NIL (|has| (-549) (-594 (-863 (-549))))) (((-863 (-372)) $) NIL (|has| (-549) (-594 (-863 (-372))))) (((-525) $) NIL (|has| (-549) (-594 (-525)))) (((-372) $) NIL (|has| (-549) (-993))) (((-219) $) NIL (|has| (-549) (-993)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-549) (-880))))) (-3845 (((-834) $) 77) (($ (-549)) 43) (($ $) NIL) (($ (-400 (-549))) 20) (($ (-549)) 43) (($ (-1142)) NIL (|has| (-549) (-1009 (-1142)))) (((-400 (-549)) $) 18)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-549) (-880))) (|has| (-549) (-143))))) (-2371 (((-747)) 9)) (-3497 (((-549) $) 51 (|has| (-549) (-534)))) (-2441 (((-112) $ $) NIL)) (-2199 (($ $) NIL (|has| (-549) (-796)))) (-3274 (($) 10 T CONST)) (-3286 (($) 12 T CONST)) (-1699 (($ $) NIL (|has| (-549) (-227))) (($ $ (-747)) NIL (|has| (-549) (-227))) (($ $ (-1142)) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| (-549) (-871 (-1142)))) (($ $ (-1 (-549) (-549)) (-747)) NIL) (($ $ (-1 (-549) (-549))) NIL)) (-2447 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2423 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2387 (((-112) $ $) 14)) (-2436 (((-112) $ $) NIL (|has| (-549) (-823)))) (-2409 (((-112) $ $) 33 (|has| (-549) (-823)))) (-2511 (($ $ $) 29) (($ (-549) (-549)) 31)) (-2498 (($ $) 15) (($ $ $) 23)) (-2484 (($ $ $) 21)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 25) (($ $ $) 27) (($ $ (-400 (-549))) NIL) (($ (-400 (-549)) $) NIL) (($ (-549) $) 25) (($ $ (-549)) NIL)))
+(((-975 |#1|) (-13 (-963 (-549)) (-10 -8 (-15 -3845 ((-400 (-549)) $)) (-15 -1512 ((-400 (-549)) $)) (-15 -1730 ((-621 (-549)) $)) (-15 -3565 ((-1122 (-549)) $)) (-15 -1558 ((-621 (-549)) $)) (-15 -1364 ((-621 (-549)) $)) (-15 -4177 ($ (-621 (-549)))) (-15 -2102 ($ (-621 (-549)) (-621 (-549)))))) (-549)) (T -975))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))) (-1512 (*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))) (-1730 (*1 *2 *1) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))) (-3565 (*1 *2 *1) (-12 (-5 *2 (-1122 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))) (-1558 (*1 *2 *1) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))) (-1364 (*1 *2 *1) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))) (-4177 (*1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))) (-2102 (*1 *1 *2 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))))
+(-13 (-963 (-549)) (-10 -8 (-15 -3845 ((-400 (-549)) $)) (-15 -1512 ((-400 (-549)) $)) (-15 -1730 ((-621 (-549)) $)) (-15 -3565 ((-1122 (-549)) $)) (-15 -1558 ((-621 (-549)) $)) (-15 -1364 ((-621 (-549)) $)) (-15 -4177 ($ (-621 (-549)))) (-15 -2102 ($ (-621 (-549)) (-621 (-549))))))
+((-3158 (((-52) (-400 (-549)) (-549)) 9)))
+(((-976) (-10 -7 (-15 -3158 ((-52) (-400 (-549)) (-549))))) (T -976))
+((-3158 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-549))) (-5 *4 (-549)) (-5 *2 (-52)) (-5 *1 (-976)))))
+(-10 -7 (-15 -3158 ((-52) (-400 (-549)) (-549))))
+((-3614 (((-549)) 13)) (-2986 (((-549)) 16)) (-3918 (((-1230) (-549)) 15)) (-2665 (((-549) (-549)) 17) (((-549)) 12)))
+(((-977) (-10 -7 (-15 -2665 ((-549))) (-15 -3614 ((-549))) (-15 -2665 ((-549) (-549))) (-15 -3918 ((-1230) (-549))) (-15 -2986 ((-549))))) (T -977))
+((-2986 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-977)))) (-3918 (*1 *2 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1230)) (-5 *1 (-977)))) (-2665 (*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-977)))) (-3614 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-977)))) (-2665 (*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-977)))))
+(-10 -7 (-15 -2665 ((-549))) (-15 -3614 ((-549))) (-15 -2665 ((-549) (-549))) (-15 -3918 ((-1230) (-549))) (-15 -2986 ((-549))))
+((-3777 (((-411 |#1|) |#1|) 41)) (-2119 (((-411 |#1|) |#1|) 40)))
+(((-978 |#1|) (-10 -7 (-15 -2119 ((-411 |#1|) |#1|)) (-15 -3777 ((-411 |#1|) |#1|))) (-1201 (-400 (-549)))) (T -978))
+((-3777 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-978 *3)) (-4 *3 (-1201 (-400 (-549)))))) (-2119 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-978 *3)) (-4 *3 (-1201 (-400 (-549)))))))
+(-10 -7 (-15 -2119 ((-411 |#1|) |#1|)) (-15 -3777 ((-411 |#1|) |#1|)))
+((-1531 (((-3 (-400 (-549)) "failed") |#1|) 15)) (-3945 (((-112) |#1|) 14)) (-1390 (((-400 (-549)) |#1|) 10)))
+(((-979 |#1|) (-10 -7 (-15 -1390 ((-400 (-549)) |#1|)) (-15 -3945 ((-112) |#1|)) (-15 -1531 ((-3 (-400 (-549)) "failed") |#1|))) (-1009 (-400 (-549)))) (T -979))
+((-1531 (*1 *2 *3) (|partial| -12 (-5 *2 (-400 (-549))) (-5 *1 (-979 *3)) (-4 *3 (-1009 *2)))) (-3945 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-979 *3)) (-4 *3 (-1009 (-400 (-549)))))) (-1390 (*1 *2 *3) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-979 *3)) (-4 *3 (-1009 *2)))))
+(-10 -7 (-15 -1390 ((-400 (-549)) |#1|)) (-15 -3945 ((-112) |#1|)) (-15 -1531 ((-3 (-400 (-549)) "failed") |#1|)))
+((-2250 ((|#2| $ "value" |#2|) 12)) (-3339 ((|#2| $ "value") 10)) (-3605 (((-112) $ $) 18)))
+(((-980 |#1| |#2|) (-10 -8 (-15 -2250 (|#2| |#1| "value" |#2|)) (-15 -3605 ((-112) |#1| |#1|)) (-15 -3339 (|#2| |#1| "value"))) (-981 |#2|) (-1179)) (T -980))
+NIL
+(-10 -8 (-15 -2250 (|#2| |#1| "value" |#2|)) (-15 -3605 ((-112) |#1| |#1|)) (-15 -3339 (|#2| |#1| "value")))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-4160 ((|#1| $) 48)) (-2850 (((-112) $ (-747)) 8)) (-2797 ((|#1| $ |#1|) 39 (|has| $ (-6 -4337)))) (-2250 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) 41 (|has| $ (-6 -4337)))) (-3034 (($) 7 T CONST)) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) 50)) (-3585 (((-112) $ $) 42 (|has| |#1| (-1066)))) (-1777 (((-112) $ (-747)) 9)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-3590 (((-621 |#1|) $) 45)) (-3028 (((-112) $) 49)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#1| $ "value") 47)) (-3541 (((-549) $ $) 44)) (-2917 (((-112) $) 46)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) 51)) (-3605 (((-112) $ $) 43 (|has| |#1| (-1066)))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-981 |#1|) (-138) (-1179)) (T -981))
+((-2095 (*1 *2 *1) (-12 (-4 *3 (-1179)) (-5 *2 (-621 *1)) (-4 *1 (-981 *3)))) (-3747 (*1 *2 *1) (-12 (-4 *3 (-1179)) (-5 *2 (-621 *1)) (-4 *1 (-981 *3)))) (-3028 (*1 *2 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1179)) (-5 *2 (-112)))) (-4160 (*1 *2 *1) (-12 (-4 *1 (-981 *2)) (-4 *2 (-1179)))) (-3339 (*1 *2 *1 *3) (-12 (-5 *3 "value") (-4 *1 (-981 *2)) (-4 *2 (-1179)))) (-2917 (*1 *2 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1179)) (-5 *2 (-112)))) (-3590 (*1 *2 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1179)) (-5 *2 (-621 *3)))) (-3541 (*1 *2 *1 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1179)) (-5 *2 (-549)))) (-3605 (*1 *2 *1 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1179)) (-4 *3 (-1066)) (-5 *2 (-112)))) (-3585 (*1 *2 *1 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1179)) (-4 *3 (-1066)) (-5 *2 (-112)))) (-1506 (*1 *1 *1 *2) (-12 (-5 *2 (-621 *1)) (|has| *1 (-6 -4337)) (-4 *1 (-981 *3)) (-4 *3 (-1179)))) (-2250 (*1 *2 *1 *3 *2) (-12 (-5 *3 "value") (|has| *1 (-6 -4337)) (-4 *1 (-981 *2)) (-4 *2 (-1179)))) (-2797 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-981 *2)) (-4 *2 (-1179)))))
+(-13 (-481 |t#1|) (-10 -8 (-15 -2095 ((-621 $) $)) (-15 -3747 ((-621 $) $)) (-15 -3028 ((-112) $)) (-15 -4160 (|t#1| $)) (-15 -3339 (|t#1| $ "value")) (-15 -2917 ((-112) $)) (-15 -3590 ((-621 |t#1|) $)) (-15 -3541 ((-549) $ $)) (IF (|has| |t#1| (-1066)) (PROGN (-15 -3605 ((-112) $ $)) (-15 -3585 ((-112) $ $))) |%noBranch|) (IF (|has| $ (-6 -4337)) (PROGN (-15 -1506 ($ $ (-621 $))) (-15 -2250 (|t#1| $ "value" |t#1|)) (-15 -2797 (|t#1| $ |t#1|))) |%noBranch|)))
+(((-34) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-1066) |has| |#1| (-1066)) ((-1179) . T))
+((-2132 (($ $) 9) (($ $ (-892)) 43) (($ (-400 (-549))) 13) (($ (-549)) 15)) (-2406 (((-3 $ "failed") (-1138 $) (-892) (-834)) 23) (((-3 $ "failed") (-1138 $) (-892)) 28)) (-3621 (($ $ (-549)) 49)) (-2371 (((-747)) 17)) (-2229 (((-621 $) (-1138 $)) NIL) (((-621 $) (-1138 (-400 (-549)))) 54) (((-621 $) (-1138 (-549))) 59) (((-621 $) (-923 $)) 63) (((-621 $) (-923 (-400 (-549)))) 67) (((-621 $) (-923 (-549))) 71)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL) (($ $ (-400 (-549))) 47)))
+(((-982 |#1|) (-10 -8 (-15 -2132 (|#1| (-549))) (-15 -2132 (|#1| (-400 (-549)))) (-15 -2132 (|#1| |#1| (-892))) (-15 -2229 ((-621 |#1|) (-923 (-549)))) (-15 -2229 ((-621 |#1|) (-923 (-400 (-549))))) (-15 -2229 ((-621 |#1|) (-923 |#1|))) (-15 -2229 ((-621 |#1|) (-1138 (-549)))) (-15 -2229 ((-621 |#1|) (-1138 (-400 (-549))))) (-15 -2229 ((-621 |#1|) (-1138 |#1|))) (-15 -2406 ((-3 |#1| "failed") (-1138 |#1|) (-892))) (-15 -2406 ((-3 |#1| "failed") (-1138 |#1|) (-892) (-834))) (-15 ** (|#1| |#1| (-400 (-549)))) (-15 -3621 (|#1| |#1| (-549))) (-15 -2132 (|#1| |#1|)) (-15 ** (|#1| |#1| (-549))) (-15 -2371 ((-747))) (-15 ** (|#1| |#1| (-747))) (-15 ** (|#1| |#1| (-892)))) (-983)) (T -982))
+((-2371 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-982 *3)) (-4 *3 (-983)))))
+(-10 -8 (-15 -2132 (|#1| (-549))) (-15 -2132 (|#1| (-400 (-549)))) (-15 -2132 (|#1| |#1| (-892))) (-15 -2229 ((-621 |#1|) (-923 (-549)))) (-15 -2229 ((-621 |#1|) (-923 (-400 (-549))))) (-15 -2229 ((-621 |#1|) (-923 |#1|))) (-15 -2229 ((-621 |#1|) (-1138 (-549)))) (-15 -2229 ((-621 |#1|) (-1138 (-400 (-549))))) (-15 -2229 ((-621 |#1|) (-1138 |#1|))) (-15 -2406 ((-3 |#1| "failed") (-1138 |#1|) (-892))) (-15 -2406 ((-3 |#1| "failed") (-1138 |#1|) (-892) (-834))) (-15 ** (|#1| |#1| (-400 (-549)))) (-15 -3621 (|#1| |#1| (-549))) (-15 -2132 (|#1| |#1|)) (-15 ** (|#1| |#1| (-549))) (-15 -2371 ((-747))) (-15 ** (|#1| |#1| (-747))) (-15 ** (|#1| |#1| (-892))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 87)) (-3044 (($ $) 88)) (-2774 (((-112) $) 90)) (-2416 (((-3 $ "failed") $ $) 19)) (-3239 (($ $) 107)) (-2620 (((-411 $) $) 108)) (-2132 (($ $) 71) (($ $ (-892)) 57) (($ (-400 (-549))) 56) (($ (-549)) 55)) (-2680 (((-112) $ $) 98)) (-1741 (((-549) $) 124)) (-3034 (($) 17 T CONST)) (-2406 (((-3 $ "failed") (-1138 $) (-892) (-834)) 65) (((-3 $ "failed") (-1138 $) (-892)) 64)) (-2712 (((-3 (-549) "failed") $) 83 (|has| (-400 (-549)) (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 81 (|has| (-400 (-549)) (-1009 (-400 (-549))))) (((-3 (-400 (-549)) "failed") $) 79)) (-2657 (((-549) $) 84 (|has| (-400 (-549)) (-1009 (-549)))) (((-400 (-549)) $) 82 (|has| (-400 (-549)) (-1009 (-400 (-549))))) (((-400 (-549)) $) 78)) (-1353 (($ $ (-834)) 54)) (-1523 (($ $ (-834)) 53)) (-2091 (($ $ $) 102)) (-2612 (((-3 $ "failed") $) 32)) (-2065 (($ $ $) 101)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 96)) (-1464 (((-112) $) 109)) (-2357 (((-112) $) 122)) (-2297 (((-112) $) 30)) (-3621 (($ $ (-549)) 70)) (-1992 (((-112) $) 123)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 105)) (-2861 (($ $ $) 121)) (-3574 (($ $ $) 120)) (-4078 (((-3 (-1138 $) "failed") $) 66)) (-1905 (((-3 (-834) "failed") $) 68)) (-2338 (((-3 (-1138 $) "failed") $) 67)) (-3696 (($ (-621 $)) 94) (($ $ $) 93)) (-3441 (((-1124) $) 9)) (-1990 (($ $) 110)) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 95)) (-3726 (($ (-621 $)) 92) (($ $ $) 91)) (-2119 (((-411 $) $) 106)) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 104) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 103)) (-2040 (((-3 $ "failed") $ $) 86)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 97)) (-1335 (((-747) $) 99)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 100)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 114) (($ $) 85) (($ (-400 (-549))) 80) (($ (-549)) 77) (($ (-400 (-549))) 74)) (-2371 (((-747)) 28)) (-2441 (((-112) $ $) 89)) (-2659 (((-400 (-549)) $ $) 52)) (-2229 (((-621 $) (-1138 $)) 63) (((-621 $) (-1138 (-400 (-549)))) 62) (((-621 $) (-1138 (-549))) 61) (((-621 $) (-923 $)) 60) (((-621 $) (-923 (-400 (-549)))) 59) (((-621 $) (-923 (-549))) 58)) (-2199 (($ $) 125)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2447 (((-112) $ $) 118)) (-2423 (((-112) $ $) 117)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 119)) (-2409 (((-112) $ $) 116)) (-2511 (($ $ $) 115)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 111) (($ $ (-400 (-549))) 69)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ (-400 (-549)) $) 113) (($ $ (-400 (-549))) 112) (($ (-549) $) 76) (($ $ (-549)) 75) (($ (-400 (-549)) $) 73) (($ $ (-400 (-549))) 72)))
(((-983) (-138)) (T -983))
-((-2134 (*1 *1 *1) (-4 *1 (-983))) (-2373 (*1 *2 *1) (|partial| -12 (-4 *1 (-983)) (-5 *2 (-834)))) (-3436 (*1 *2 *1) (|partial| -12 (-5 *2 (-1139 *1)) (-4 *1 (-983)))) (-2785 (*1 *2 *1) (|partial| -12 (-5 *2 (-1139 *1)) (-4 *1 (-983)))) (-1947 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-1139 *1)) (-5 *3 (-892)) (-5 *4 (-834)) (-4 *1 (-983)))) (-1947 (*1 *1 *2 *3) (|partial| -12 (-5 *2 (-1139 *1)) (-5 *3 (-892)) (-4 *1 (-983)))) (-3302 (*1 *2 *3) (-12 (-5 *3 (-1139 *1)) (-4 *1 (-983)) (-5 *2 (-621 *1)))) (-3302 (*1 *2 *3) (-12 (-5 *3 (-1139 (-400 (-549)))) (-5 *2 (-621 *1)) (-4 *1 (-983)))) (-3302 (*1 *2 *3) (-12 (-5 *3 (-1139 (-549))) (-5 *2 (-621 *1)) (-4 *1 (-983)))) (-3302 (*1 *2 *3) (-12 (-5 *3 (-923 *1)) (-4 *1 (-983)) (-5 *2 (-621 *1)))) (-3302 (*1 *2 *3) (-12 (-5 *3 (-923 (-400 (-549)))) (-5 *2 (-621 *1)) (-4 *1 (-983)))) (-3302 (*1 *2 *3) (-12 (-5 *3 (-923 (-549))) (-5 *2 (-621 *1)) (-4 *1 (-983)))) (-2134 (*1 *1 *1 *2) (-12 (-4 *1 (-983)) (-5 *2 (-892)))) (-2134 (*1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-4 *1 (-983)))) (-2134 (*1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-983)))) (-4300 (*1 *1 *1 *2) (-12 (-4 *1 (-983)) (-5 *2 (-834)))) (-1266 (*1 *1 *1 *2) (-12 (-4 *1 (-983)) (-5 *2 (-834)))) (-2661 (*1 *2 *1 *1) (-12 (-4 *1 (-983)) (-5 *2 (-400 (-549))))))
-(-13 (-145) (-821) (-170) (-356) (-404 (-400 (-549))) (-38 (-549)) (-38 (-400 (-549))) (-973) (-10 -8 (-15 -2373 ((-3 (-834) "failed") $)) (-15 -3436 ((-3 (-1139 $) "failed") $)) (-15 -2785 ((-3 (-1139 $) "failed") $)) (-15 -1947 ((-3 $ "failed") (-1139 $) (-892) (-834))) (-15 -1947 ((-3 $ "failed") (-1139 $) (-892))) (-15 -3302 ((-621 $) (-1139 $))) (-15 -3302 ((-621 $) (-1139 (-400 (-549))))) (-15 -3302 ((-621 $) (-1139 (-549)))) (-15 -3302 ((-621 $) (-923 $))) (-15 -3302 ((-621 $) (-923 (-400 (-549))))) (-15 -3302 ((-621 $) (-923 (-549)))) (-15 -2134 ($ $ (-892))) (-15 -2134 ($ $)) (-15 -2134 ($ (-400 (-549)))) (-15 -2134 ($ (-549))) (-15 -4300 ($ $ (-834))) (-15 -1266 ($ $ (-834))) (-15 -2661 ((-400 (-549)) $ $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 #1=(-549)) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 #1# #1#) . T) ((-111 $ $) . T) ((-130) . T) ((-145) . T) ((-593 (-834)) . T) ((-170) . T) ((-237) . T) ((-283) . T) ((-300) . T) ((-356) . T) ((-404 (-400 (-549))) . T) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 #1#) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 #1#) . T) ((-694 $) . T) ((-703) . T) ((-767) . T) ((-768) . T) ((-770) . T) ((-771) . T) ((-821) . T) ((-823) . T) ((-891) . T) ((-973) . T) ((-1009 (-400 (-549))) . T) ((-1009 (-549)) |has| (-400 (-549)) (-1009 (-549))) ((-1024 #0#) . T) ((-1024 #1#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1184) . T))
-((-2770 (((-2 (|:| |ans| |#2|) (|:| -3848 |#2|) (|:| |sol?| (-112))) (-549) |#2| |#2| (-1143) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-621 |#2|)) (-1 (-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 66)))
-(((-984 |#1| |#2|) (-10 -7 (-15 -2770 ((-2 (|:| |ans| |#2|) (|:| -3848 |#2|) (|:| |sol?| (-112))) (-549) |#2| |#2| (-1143) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-621 |#2|)) (-1 (-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549))) (-13 (-1165) (-27) (-423 |#1|))) (T -984))
-((-2770 (*1 *2 *3 *4 *4 *5 *6 *7) (-12 (-5 *5 (-1143)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-621 *4))) (-5 *7 (-1 (-3 (-2 (|:| -3440 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1165) (-27) (-423 *8))) (-4 *8 (-13 (-444) (-823) (-145) (-1009 *3) (-617 *3))) (-5 *3 (-549)) (-5 *2 (-2 (|:| |ans| *4) (|:| -3848 *4) (|:| |sol?| (-112)))) (-5 *1 (-984 *8 *4)))))
-(-10 -7 (-15 -2770 ((-2 (|:| |ans| |#2|) (|:| -3848 |#2|) (|:| |sol?| (-112))) (-549) |#2| |#2| (-1143) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-621 |#2|)) (-1 (-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
-((-2515 (((-3 (-621 |#2|) "failed") (-549) |#2| |#2| |#2| (-1143) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-621 |#2|)) (-1 (-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 53)))
-(((-985 |#1| |#2|) (-10 -7 (-15 -2515 ((-3 (-621 |#2|) "failed") (-549) |#2| |#2| |#2| (-1143) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-621 |#2|)) (-1 (-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549))) (-13 (-1165) (-27) (-423 |#1|))) (T -985))
-((-2515 (*1 *2 *3 *4 *4 *4 *5 *6 *7) (|partial| -12 (-5 *5 (-1143)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-621 *4))) (-5 *7 (-1 (-3 (-2 (|:| -3440 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1165) (-27) (-423 *8))) (-4 *8 (-13 (-444) (-823) (-145) (-1009 *3) (-617 *3))) (-5 *3 (-549)) (-5 *2 (-621 *4)) (-5 *1 (-985 *8 *4)))))
-(-10 -7 (-15 -2515 ((-3 (-621 |#2|) "failed") (-549) |#2| |#2| |#2| (-1143) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-621 |#2|)) (-1 (-3 (-2 (|:| -3440 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
-((-2452 (((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -2652 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-549)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-549) (-1 |#2| |#2|)) 30)) (-3660 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-400 |#2|)) (|:| |c| (-400 |#2|)) (|:| -2632 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-1 |#2| |#2|)) 58)) (-2961 (((-2 (|:| |ans| (-400 |#2|)) (|:| |nosol| (-112))) (-400 |#2|) (-400 |#2|)) 63)))
-(((-986 |#1| |#2|) (-10 -7 (-15 -3660 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-400 |#2|)) (|:| |c| (-400 |#2|)) (|:| -2632 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-1 |#2| |#2|))) (-15 -2961 ((-2 (|:| |ans| (-400 |#2|)) (|:| |nosol| (-112))) (-400 |#2|) (-400 |#2|))) (-15 -2452 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -2652 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-549)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-549) (-1 |#2| |#2|)))) (-13 (-356) (-145) (-1009 (-549))) (-1202 |#1|)) (T -986))
-((-2452 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1202 *6)) (-4 *6 (-13 (-356) (-145) (-1009 *4))) (-5 *4 (-549)) (-5 *2 (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112)))) (|:| -2652 (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3) (|:| |beta| *3))))) (-5 *1 (-986 *6 *3)))) (-2961 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-549)))) (-4 *5 (-1202 *4)) (-5 *2 (-2 (|:| |ans| (-400 *5)) (|:| |nosol| (-112)))) (-5 *1 (-986 *4 *5)) (-5 *3 (-400 *5)))) (-3660 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1202 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-400 *6)) (|:| |c| (-400 *6)) (|:| -2632 *6))) (-5 *1 (-986 *5 *6)) (-5 *3 (-400 *6)))))
-(-10 -7 (-15 -3660 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-400 |#2|)) (|:| |c| (-400 |#2|)) (|:| -2632 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-1 |#2| |#2|))) (-15 -2961 ((-2 (|:| |ans| (-400 |#2|)) (|:| |nosol| (-112))) (-400 |#2|) (-400 |#2|))) (-15 -2452 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -2652 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-549)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-549) (-1 |#2| |#2|))))
-((-2960 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-400 |#2|)) (|:| |h| |#2|) (|:| |c1| (-400 |#2|)) (|:| |c2| (-400 |#2|)) (|:| -2632 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|) (-1 |#2| |#2|)) 22)) (-3434 (((-3 (-621 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|)) 33)))
-(((-987 |#1| |#2|) (-10 -7 (-15 -2960 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-400 |#2|)) (|:| |h| |#2|) (|:| |c1| (-400 |#2|)) (|:| |c2| (-400 |#2|)) (|:| -2632 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|) (-1 |#2| |#2|))) (-15 -3434 ((-3 (-621 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|)))) (-13 (-356) (-145) (-1009 (-549))) (-1202 |#1|)) (T -987))
-((-3434 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-356) (-145) (-1009 (-549)))) (-4 *5 (-1202 *4)) (-5 *2 (-621 (-400 *5))) (-5 *1 (-987 *4 *5)) (-5 *3 (-400 *5)))) (-2960 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1202 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-400 *6)) (|:| |h| *6) (|:| |c1| (-400 *6)) (|:| |c2| (-400 *6)) (|:| -2632 *6))) (-5 *1 (-987 *5 *6)) (-5 *3 (-400 *6)))))
-(-10 -7 (-15 -2960 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-400 |#2|)) (|:| |h| |#2|) (|:| |c1| (-400 |#2|)) (|:| |c2| (-400 |#2|)) (|:| -2632 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|) (-1 |#2| |#2|))) (-15 -3434 ((-3 (-621 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|))))
-((-4223 (((-1 |#1|) (-621 (-2 (|:| -4161 |#1|) (|:| -1637 (-549))))) 37)) (-1950 (((-1 |#1|) (-1069 |#1|)) 45)) (-3149 (((-1 |#1|) (-1226 |#1|) (-1226 (-549)) (-549)) 34)))
-(((-988 |#1|) (-10 -7 (-15 -1950 ((-1 |#1|) (-1069 |#1|))) (-15 -4223 ((-1 |#1|) (-621 (-2 (|:| -4161 |#1|) (|:| -1637 (-549)))))) (-15 -3149 ((-1 |#1|) (-1226 |#1|) (-1226 (-549)) (-549)))) (-1067)) (T -988))
-((-3149 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1226 *6)) (-5 *4 (-1226 (-549))) (-5 *5 (-549)) (-4 *6 (-1067)) (-5 *2 (-1 *6)) (-5 *1 (-988 *6)))) (-4223 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| -4161 *4) (|:| -1637 (-549))))) (-4 *4 (-1067)) (-5 *2 (-1 *4)) (-5 *1 (-988 *4)))) (-1950 (*1 *2 *3) (-12 (-5 *3 (-1069 *4)) (-4 *4 (-1067)) (-5 *2 (-1 *4)) (-5 *1 (-988 *4)))))
-(-10 -7 (-15 -1950 ((-1 |#1|) (-1069 |#1|))) (-15 -4223 ((-1 |#1|) (-621 (-2 (|:| -4161 |#1|) (|:| -1637 (-549)))))) (-15 -3149 ((-1 |#1|) (-1226 |#1|) (-1226 (-549)) (-549))))
-((-2088 (((-747) (-329 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)) 23)))
-(((-989 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2088 ((-747) (-329 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)))) (-356) (-1202 |#1|) (-1202 (-400 |#2|)) (-335 |#1| |#2| |#3|) (-13 (-361) (-356))) (T -989))
-((-2088 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-329 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-356)) (-4 *7 (-1202 *6)) (-4 *4 (-1202 (-400 *7))) (-4 *8 (-335 *6 *7 *4)) (-4 *9 (-13 (-361) (-356))) (-5 *2 (-747)) (-5 *1 (-989 *6 *7 *4 *8 *9)))))
-(-10 -7 (-15 -2088 ((-747) (-329 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|))))
-((-3834 (((-112) $ $) NIL)) (-2834 (((-1148) $) 9)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2492 (((-1148) $) 11)) (-2389 (((-112) $ $) NIL)))
-(((-990) (-13 (-1050) (-10 -8 (-15 -2834 ((-1148) $)) (-15 -2492 ((-1148) $))))) (T -990))
-((-2834 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-990)))) (-2492 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-990)))))
-(-13 (-1050) (-10 -8 (-15 -2834 ((-1148) $)) (-15 -2492 ((-1148) $))))
-((-4166 (((-3 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) "failed") |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) 31) (((-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-400 (-549))) 28)) (-4274 (((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-400 (-549))) 33) (((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-400 (-549))) 29) (((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) 32) (((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1|) 27)) (-2644 (((-621 (-400 (-549))) (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))) 19)) (-4044 (((-400 (-549)) (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) 16)))
-(((-991 |#1|) (-10 -7 (-15 -4274 ((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1|)) (-15 -4274 ((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))) (-15 -4274 ((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-400 (-549)))) (-15 -4274 ((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-400 (-549)))) (-15 -4166 ((-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-400 (-549)))) (-15 -4166 ((-3 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) "failed") |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))) (-15 -4044 ((-400 (-549)) (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))) (-15 -2644 ((-621 (-400 (-549))) (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))))) (-1202 (-549))) (T -991))
-((-2644 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))) (-5 *2 (-621 (-400 (-549)))) (-5 *1 (-991 *4)) (-4 *4 (-1202 (-549))))) (-4044 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) (-5 *2 (-400 (-549))) (-5 *1 (-991 *4)) (-4 *4 (-1202 (-549))))) (-4166 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) (-5 *1 (-991 *3)) (-4 *3 (-1202 (-549))))) (-4166 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) (-5 *4 (-400 (-549))) (-5 *1 (-991 *3)) (-4 *3 (-1202 (-549))))) (-4274 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-400 (-549))) (-5 *2 (-621 (-2 (|:| -3838 *5) (|:| -3848 *5)))) (-5 *1 (-991 *3)) (-4 *3 (-1202 (-549))) (-5 *4 (-2 (|:| -3838 *5) (|:| -3848 *5))))) (-4274 (*1 *2 *3 *4) (-12 (-5 *2 (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))) (-5 *1 (-991 *3)) (-4 *3 (-1202 (-549))) (-5 *4 (-400 (-549))))) (-4274 (*1 *2 *3 *4) (-12 (-5 *2 (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))) (-5 *1 (-991 *3)) (-4 *3 (-1202 (-549))) (-5 *4 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))))) (-4274 (*1 *2 *3) (-12 (-5 *2 (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))) (-5 *1 (-991 *3)) (-4 *3 (-1202 (-549))))))
-(-10 -7 (-15 -4274 ((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1|)) (-15 -4274 ((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))) (-15 -4274 ((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-400 (-549)))) (-15 -4274 ((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-400 (-549)))) (-15 -4166 ((-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-400 (-549)))) (-15 -4166 ((-3 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) "failed") |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))) (-15 -4044 ((-400 (-549)) (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))) (-15 -2644 ((-621 (-400 (-549))) (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))))))
-((-4166 (((-3 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) "failed") |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) 35) (((-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-400 (-549))) 32)) (-4274 (((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-400 (-549))) 30) (((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-400 (-549))) 26) (((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) 28) (((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1|) 24)))
-(((-992 |#1|) (-10 -7 (-15 -4274 ((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1|)) (-15 -4274 ((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))) (-15 -4274 ((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-400 (-549)))) (-15 -4274 ((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-400 (-549)))) (-15 -4166 ((-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-400 (-549)))) (-15 -4166 ((-3 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) "failed") |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))))) (-1202 (-400 (-549)))) (T -992))
-((-4166 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) (-5 *1 (-992 *3)) (-4 *3 (-1202 (-400 (-549)))))) (-4166 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) (-5 *4 (-400 (-549))) (-5 *1 (-992 *3)) (-4 *3 (-1202 *4)))) (-4274 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-400 (-549))) (-5 *2 (-621 (-2 (|:| -3838 *5) (|:| -3848 *5)))) (-5 *1 (-992 *3)) (-4 *3 (-1202 *5)) (-5 *4 (-2 (|:| -3838 *5) (|:| -3848 *5))))) (-4274 (*1 *2 *3 *4) (-12 (-5 *4 (-400 (-549))) (-5 *2 (-621 (-2 (|:| -3838 *4) (|:| -3848 *4)))) (-5 *1 (-992 *3)) (-4 *3 (-1202 *4)))) (-4274 (*1 *2 *3 *4) (-12 (-5 *2 (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))) (-5 *1 (-992 *3)) (-4 *3 (-1202 (-400 (-549)))) (-5 *4 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))))) (-4274 (*1 *2 *3) (-12 (-5 *2 (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))) (-5 *1 (-992 *3)) (-4 *3 (-1202 (-400 (-549)))))))
-(-10 -7 (-15 -4274 ((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1|)) (-15 -4274 ((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))) (-15 -4274 ((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-400 (-549)))) (-15 -4274 ((-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-400 (-549)))) (-15 -4166 ((-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-400 (-549)))) (-15 -4166 ((-3 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) "failed") |#1| (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))) (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))))
-((-2845 (((-219) $) 6) (((-372) $) 9)))
+((-2132 (*1 *1 *1) (-4 *1 (-983))) (-1905 (*1 *2 *1) (|partial| -12 (-4 *1 (-983)) (-5 *2 (-834)))) (-2338 (*1 *2 *1) (|partial| -12 (-5 *2 (-1138 *1)) (-4 *1 (-983)))) (-4078 (*1 *2 *1) (|partial| -12 (-5 *2 (-1138 *1)) (-4 *1 (-983)))) (-2406 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-1138 *1)) (-5 *3 (-892)) (-5 *4 (-834)) (-4 *1 (-983)))) (-2406 (*1 *1 *2 *3) (|partial| -12 (-5 *2 (-1138 *1)) (-5 *3 (-892)) (-4 *1 (-983)))) (-2229 (*1 *2 *3) (-12 (-5 *3 (-1138 *1)) (-4 *1 (-983)) (-5 *2 (-621 *1)))) (-2229 (*1 *2 *3) (-12 (-5 *3 (-1138 (-400 (-549)))) (-5 *2 (-621 *1)) (-4 *1 (-983)))) (-2229 (*1 *2 *3) (-12 (-5 *3 (-1138 (-549))) (-5 *2 (-621 *1)) (-4 *1 (-983)))) (-2229 (*1 *2 *3) (-12 (-5 *3 (-923 *1)) (-4 *1 (-983)) (-5 *2 (-621 *1)))) (-2229 (*1 *2 *3) (-12 (-5 *3 (-923 (-400 (-549)))) (-5 *2 (-621 *1)) (-4 *1 (-983)))) (-2229 (*1 *2 *3) (-12 (-5 *3 (-923 (-549))) (-5 *2 (-621 *1)) (-4 *1 (-983)))) (-2132 (*1 *1 *1 *2) (-12 (-4 *1 (-983)) (-5 *2 (-892)))) (-2132 (*1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-4 *1 (-983)))) (-2132 (*1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-983)))) (-1353 (*1 *1 *1 *2) (-12 (-4 *1 (-983)) (-5 *2 (-834)))) (-1523 (*1 *1 *1 *2) (-12 (-4 *1 (-983)) (-5 *2 (-834)))) (-2659 (*1 *2 *1 *1) (-12 (-4 *1 (-983)) (-5 *2 (-400 (-549))))))
+(-13 (-145) (-821) (-170) (-356) (-404 (-400 (-549))) (-38 (-549)) (-38 (-400 (-549))) (-973) (-10 -8 (-15 -1905 ((-3 (-834) "failed") $)) (-15 -2338 ((-3 (-1138 $) "failed") $)) (-15 -4078 ((-3 (-1138 $) "failed") $)) (-15 -2406 ((-3 $ "failed") (-1138 $) (-892) (-834))) (-15 -2406 ((-3 $ "failed") (-1138 $) (-892))) (-15 -2229 ((-621 $) (-1138 $))) (-15 -2229 ((-621 $) (-1138 (-400 (-549))))) (-15 -2229 ((-621 $) (-1138 (-549)))) (-15 -2229 ((-621 $) (-923 $))) (-15 -2229 ((-621 $) (-923 (-400 (-549))))) (-15 -2229 ((-621 $) (-923 (-549)))) (-15 -2132 ($ $ (-892))) (-15 -2132 ($ $)) (-15 -2132 ($ (-400 (-549)))) (-15 -2132 ($ (-549))) (-15 -1353 ($ $ (-834))) (-15 -1523 ($ $ (-834))) (-15 -2659 ((-400 (-549)) $ $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 #1=(-549)) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 #1# #1#) . T) ((-111 $ $) . T) ((-130) . T) ((-145) . T) ((-593 (-834)) . T) ((-170) . T) ((-237) . T) ((-283) . T) ((-300) . T) ((-356) . T) ((-404 (-400 (-549))) . T) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 #1#) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 #1#) . T) ((-694 $) . T) ((-703) . T) ((-767) . T) ((-768) . T) ((-770) . T) ((-771) . T) ((-821) . T) ((-823) . T) ((-891) . T) ((-973) . T) ((-1009 (-400 (-549))) . T) ((-1009 (-549)) |has| (-400 (-549)) (-1009 (-549))) ((-1024 #0#) . T) ((-1024 #1#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1183) . T))
+((-2109 (((-2 (|:| |ans| |#2|) (|:| -3847 |#2|) (|:| |sol?| (-112))) (-549) |#2| |#2| (-1142) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-621 |#2|)) (-1 (-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 66)))
+(((-984 |#1| |#2|) (-10 -7 (-15 -2109 ((-2 (|:| |ans| |#2|) (|:| -3847 |#2|) (|:| |sol?| (-112))) (-549) |#2| |#2| (-1142) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-621 |#2|)) (-1 (-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549))) (-13 (-1164) (-27) (-423 |#1|))) (T -984))
+((-2109 (*1 *2 *3 *4 *4 *5 *6 *7) (-12 (-5 *5 (-1142)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-621 *4))) (-5 *7 (-1 (-3 (-2 (|:| -2677 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1164) (-27) (-423 *8))) (-4 *8 (-13 (-444) (-823) (-145) (-1009 *3) (-617 *3))) (-5 *3 (-549)) (-5 *2 (-2 (|:| |ans| *4) (|:| -3847 *4) (|:| |sol?| (-112)))) (-5 *1 (-984 *8 *4)))))
+(-10 -7 (-15 -2109 ((-2 (|:| |ans| |#2|) (|:| -3847 |#2|) (|:| |sol?| (-112))) (-549) |#2| |#2| (-1142) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-621 |#2|)) (-1 (-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
+((-3429 (((-3 (-621 |#2|) "failed") (-549) |#2| |#2| |#2| (-1142) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-621 |#2|)) (-1 (-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 53)))
+(((-985 |#1| |#2|) (-10 -7 (-15 -3429 ((-3 (-621 |#2|) "failed") (-549) |#2| |#2| |#2| (-1142) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-621 |#2|)) (-1 (-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549))) (-13 (-1164) (-27) (-423 |#1|))) (T -985))
+((-3429 (*1 *2 *3 *4 *4 *4 *5 *6 *7) (|partial| -12 (-5 *5 (-1142)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-621 *4))) (-5 *7 (-1 (-3 (-2 (|:| -2677 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1164) (-27) (-423 *8))) (-4 *8 (-13 (-444) (-823) (-145) (-1009 *3) (-617 *3))) (-5 *3 (-549)) (-5 *2 (-621 *4)) (-5 *1 (-985 *8 *4)))))
+(-10 -7 (-15 -3429 ((-3 (-621 |#2|) "failed") (-549) |#2| |#2| |#2| (-1142) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-621 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-621 |#2|)) (-1 (-3 (-2 (|:| -2677 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
+((-2922 (((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -2649 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-549)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-549) (-1 |#2| |#2|)) 30)) (-3018 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-400 |#2|)) (|:| |c| (-400 |#2|)) (|:| -2630 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-1 |#2| |#2|)) 58)) (-1889 (((-2 (|:| |ans| (-400 |#2|)) (|:| |nosol| (-112))) (-400 |#2|) (-400 |#2|)) 63)))
+(((-986 |#1| |#2|) (-10 -7 (-15 -3018 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-400 |#2|)) (|:| |c| (-400 |#2|)) (|:| -2630 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-1 |#2| |#2|))) (-15 -1889 ((-2 (|:| |ans| (-400 |#2|)) (|:| |nosol| (-112))) (-400 |#2|) (-400 |#2|))) (-15 -2922 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -2649 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-549)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-549) (-1 |#2| |#2|)))) (-13 (-356) (-145) (-1009 (-549))) (-1201 |#1|)) (T -986))
+((-2922 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1201 *6)) (-4 *6 (-13 (-356) (-145) (-1009 *4))) (-5 *4 (-549)) (-5 *2 (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112)))) (|:| -2649 (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3) (|:| |beta| *3))))) (-5 *1 (-986 *6 *3)))) (-1889 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-549)))) (-4 *5 (-1201 *4)) (-5 *2 (-2 (|:| |ans| (-400 *5)) (|:| |nosol| (-112)))) (-5 *1 (-986 *4 *5)) (-5 *3 (-400 *5)))) (-3018 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1201 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-400 *6)) (|:| |c| (-400 *6)) (|:| -2630 *6))) (-5 *1 (-986 *5 *6)) (-5 *3 (-400 *6)))))
+(-10 -7 (-15 -3018 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-400 |#2|)) (|:| |c| (-400 |#2|)) (|:| -2630 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-1 |#2| |#2|))) (-15 -1889 ((-2 (|:| |ans| (-400 |#2|)) (|:| |nosol| (-112))) (-400 |#2|) (-400 |#2|))) (-15 -2922 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -2649 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-549)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-549) (-1 |#2| |#2|))))
+((-1781 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-400 |#2|)) (|:| |h| |#2|) (|:| |c1| (-400 |#2|)) (|:| |c2| (-400 |#2|)) (|:| -2630 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|) (-1 |#2| |#2|)) 22)) (-2120 (((-3 (-621 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|)) 33)))
+(((-987 |#1| |#2|) (-10 -7 (-15 -1781 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-400 |#2|)) (|:| |h| |#2|) (|:| |c1| (-400 |#2|)) (|:| |c2| (-400 |#2|)) (|:| -2630 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|) (-1 |#2| |#2|))) (-15 -2120 ((-3 (-621 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|)))) (-13 (-356) (-145) (-1009 (-549))) (-1201 |#1|)) (T -987))
+((-2120 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-356) (-145) (-1009 (-549)))) (-4 *5 (-1201 *4)) (-5 *2 (-621 (-400 *5))) (-5 *1 (-987 *4 *5)) (-5 *3 (-400 *5)))) (-1781 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1201 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-400 *6)) (|:| |h| *6) (|:| |c1| (-400 *6)) (|:| |c2| (-400 *6)) (|:| -2630 *6))) (-5 *1 (-987 *5 *6)) (-5 *3 (-400 *6)))))
+(-10 -7 (-15 -1781 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-400 |#2|)) (|:| |h| |#2|) (|:| |c1| (-400 |#2|)) (|:| |c2| (-400 |#2|)) (|:| -2630 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|) (-1 |#2| |#2|))) (-15 -2120 ((-3 (-621 (-400 |#2|)) "failed") (-400 |#2|) (-400 |#2|) (-400 |#2|))))
+((-3461 (((-1 |#1|) (-621 (-2 (|:| -4160 |#1|) (|:| -1518 (-549))))) 37)) (-2708 (((-1 |#1|) (-1068 |#1|)) 45)) (-2415 (((-1 |#1|) (-1225 |#1|) (-1225 (-549)) (-549)) 34)))
+(((-988 |#1|) (-10 -7 (-15 -2708 ((-1 |#1|) (-1068 |#1|))) (-15 -3461 ((-1 |#1|) (-621 (-2 (|:| -4160 |#1|) (|:| -1518 (-549)))))) (-15 -2415 ((-1 |#1|) (-1225 |#1|) (-1225 (-549)) (-549)))) (-1066)) (T -988))
+((-2415 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1225 *6)) (-5 *4 (-1225 (-549))) (-5 *5 (-549)) (-4 *6 (-1066)) (-5 *2 (-1 *6)) (-5 *1 (-988 *6)))) (-3461 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| -4160 *4) (|:| -1518 (-549))))) (-4 *4 (-1066)) (-5 *2 (-1 *4)) (-5 *1 (-988 *4)))) (-2708 (*1 *2 *3) (-12 (-5 *3 (-1068 *4)) (-4 *4 (-1066)) (-5 *2 (-1 *4)) (-5 *1 (-988 *4)))))
+(-10 -7 (-15 -2708 ((-1 |#1|) (-1068 |#1|))) (-15 -3461 ((-1 |#1|) (-621 (-2 (|:| -4160 |#1|) (|:| -1518 (-549)))))) (-15 -2415 ((-1 |#1|) (-1225 |#1|) (-1225 (-549)) (-549))))
+((-2729 (((-747) (-329 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)) 23)))
+(((-989 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2729 ((-747) (-329 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)))) (-356) (-1201 |#1|) (-1201 (-400 |#2|)) (-335 |#1| |#2| |#3|) (-13 (-361) (-356))) (T -989))
+((-2729 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-329 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-356)) (-4 *7 (-1201 *6)) (-4 *4 (-1201 (-400 *7))) (-4 *8 (-335 *6 *7 *4)) (-4 *9 (-13 (-361) (-356))) (-5 *2 (-747)) (-5 *1 (-989 *6 *7 *4 *8 *9)))))
+(-10 -7 (-15 -2729 ((-747) (-329 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|))))
+((-3832 (((-112) $ $) NIL)) (-3500 (((-1101) $) 9)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) NIL) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2492 (((-1101) $) 11)) (-2387 (((-112) $ $) NIL)))
+(((-990) (-13 (-1049) (-10 -8 (-15 -3500 ((-1101) $)) (-15 -2492 ((-1101) $))))) (T -990))
+((-3500 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-990)))) (-2492 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-990)))))
+(-13 (-1049) (-10 -8 (-15 -3500 ((-1101) $)) (-15 -2492 ((-1101) $))))
+((-3033 (((-3 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) "failed") |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) 31) (((-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-400 (-549))) 28)) (-3722 (((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-400 (-549))) 33) (((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-400 (-549))) 29) (((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) 32) (((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1|) 27)) (-1931 (((-621 (-400 (-549))) (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))) 19)) (-1352 (((-400 (-549)) (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) 16)))
+(((-991 |#1|) (-10 -7 (-15 -3722 ((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1|)) (-15 -3722 ((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))) (-15 -3722 ((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-400 (-549)))) (-15 -3722 ((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-400 (-549)))) (-15 -3033 ((-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-400 (-549)))) (-15 -3033 ((-3 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) "failed") |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))) (-15 -1352 ((-400 (-549)) (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))) (-15 -1931 ((-621 (-400 (-549))) (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))))) (-1201 (-549))) (T -991))
+((-1931 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))) (-5 *2 (-621 (-400 (-549)))) (-5 *1 (-991 *4)) (-4 *4 (-1201 (-549))))) (-1352 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) (-5 *2 (-400 (-549))) (-5 *1 (-991 *4)) (-4 *4 (-1201 (-549))))) (-3033 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) (-5 *1 (-991 *3)) (-4 *3 (-1201 (-549))))) (-3033 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) (-5 *4 (-400 (-549))) (-5 *1 (-991 *3)) (-4 *3 (-1201 (-549))))) (-3722 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-400 (-549))) (-5 *2 (-621 (-2 (|:| -3837 *5) (|:| -3847 *5)))) (-5 *1 (-991 *3)) (-4 *3 (-1201 (-549))) (-5 *4 (-2 (|:| -3837 *5) (|:| -3847 *5))))) (-3722 (*1 *2 *3 *4) (-12 (-5 *2 (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))) (-5 *1 (-991 *3)) (-4 *3 (-1201 (-549))) (-5 *4 (-400 (-549))))) (-3722 (*1 *2 *3 *4) (-12 (-5 *2 (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))) (-5 *1 (-991 *3)) (-4 *3 (-1201 (-549))) (-5 *4 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))))) (-3722 (*1 *2 *3) (-12 (-5 *2 (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))) (-5 *1 (-991 *3)) (-4 *3 (-1201 (-549))))))
+(-10 -7 (-15 -3722 ((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1|)) (-15 -3722 ((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))) (-15 -3722 ((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-400 (-549)))) (-15 -3722 ((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-400 (-549)))) (-15 -3033 ((-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-400 (-549)))) (-15 -3033 ((-3 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) "failed") |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))) (-15 -1352 ((-400 (-549)) (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))) (-15 -1931 ((-621 (-400 (-549))) (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))))))
+((-3033 (((-3 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) "failed") |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) 35) (((-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-400 (-549))) 32)) (-3722 (((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-400 (-549))) 30) (((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-400 (-549))) 26) (((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) 28) (((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1|) 24)))
+(((-992 |#1|) (-10 -7 (-15 -3722 ((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1|)) (-15 -3722 ((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))) (-15 -3722 ((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-400 (-549)))) (-15 -3722 ((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-400 (-549)))) (-15 -3033 ((-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-400 (-549)))) (-15 -3033 ((-3 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) "failed") |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))))) (-1201 (-400 (-549)))) (T -992))
+((-3033 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) (-5 *1 (-992 *3)) (-4 *3 (-1201 (-400 (-549)))))) (-3033 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) (-5 *4 (-400 (-549))) (-5 *1 (-992 *3)) (-4 *3 (-1201 *4)))) (-3722 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-400 (-549))) (-5 *2 (-621 (-2 (|:| -3837 *5) (|:| -3847 *5)))) (-5 *1 (-992 *3)) (-4 *3 (-1201 *5)) (-5 *4 (-2 (|:| -3837 *5) (|:| -3847 *5))))) (-3722 (*1 *2 *3 *4) (-12 (-5 *4 (-400 (-549))) (-5 *2 (-621 (-2 (|:| -3837 *4) (|:| -3847 *4)))) (-5 *1 (-992 *3)) (-4 *3 (-1201 *4)))) (-3722 (*1 *2 *3 *4) (-12 (-5 *2 (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))) (-5 *1 (-992 *3)) (-4 *3 (-1201 (-400 (-549)))) (-5 *4 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))))) (-3722 (*1 *2 *3) (-12 (-5 *2 (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))) (-5 *1 (-992 *3)) (-4 *3 (-1201 (-400 (-549)))))))
+(-10 -7 (-15 -3722 ((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1|)) (-15 -3722 ((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))) (-15 -3722 ((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-400 (-549)))) (-15 -3722 ((-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-400 (-549)))) (-15 -3033 ((-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-400 (-549)))) (-15 -3033 ((-3 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) "failed") |#1| (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))) (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))))
+((-2843 (((-219) $) 6) (((-372) $) 9)))
(((-993) (-138)) (T -993))
NIL
(-13 (-594 (-219)) (-594 (-372)))
(((-594 (-219)) . T) ((-594 (-372)) . T))
-((-2227 (((-621 (-372)) (-923 (-549)) (-372)) 28) (((-621 (-372)) (-923 (-400 (-549))) (-372)) 27)) (-3409 (((-621 (-621 (-372))) (-621 (-923 (-549))) (-621 (-1143)) (-372)) 37)))
-(((-994) (-10 -7 (-15 -2227 ((-621 (-372)) (-923 (-400 (-549))) (-372))) (-15 -2227 ((-621 (-372)) (-923 (-549)) (-372))) (-15 -3409 ((-621 (-621 (-372))) (-621 (-923 (-549))) (-621 (-1143)) (-372))))) (T -994))
-((-3409 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-621 (-1143))) (-5 *2 (-621 (-621 (-372)))) (-5 *1 (-994)) (-5 *5 (-372)))) (-2227 (*1 *2 *3 *4) (-12 (-5 *3 (-923 (-549))) (-5 *2 (-621 (-372))) (-5 *1 (-994)) (-5 *4 (-372)))) (-2227 (*1 *2 *3 *4) (-12 (-5 *3 (-923 (-400 (-549)))) (-5 *2 (-621 (-372))) (-5 *1 (-994)) (-5 *4 (-372)))))
-(-10 -7 (-15 -2227 ((-621 (-372)) (-923 (-400 (-549))) (-372))) (-15 -2227 ((-621 (-372)) (-923 (-549)) (-372))) (-15 -3409 ((-621 (-621 (-372))) (-621 (-923 (-549))) (-621 (-1143)) (-372))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 70)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-2134 (($ $) NIL) (($ $ (-892)) NIL) (($ (-400 (-549))) NIL) (($ (-549)) NIL)) (-3866 (((-112) $ $) NIL)) (-1872 (((-549) $) 65)) (-1682 (($) NIL T CONST)) (-1947 (((-3 $ "failed") (-1139 $) (-892) (-834)) NIL) (((-3 $ "failed") (-1139 $) (-892)) 50)) (-2714 (((-3 (-400 (-549)) "failed") $) NIL (|has| (-400 (-549)) (-1009 (-400 (-549))))) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 |#1| "failed") $) 107) (((-3 (-549) "failed") $) NIL (-1536 (|has| (-400 (-549)) (-1009 (-549))) (|has| |#1| (-1009 (-549)))))) (-2659 (((-400 (-549)) $) 15 (|has| (-400 (-549)) (-1009 (-400 (-549))))) (((-400 (-549)) $) 15) ((|#1| $) 108) (((-549) $) NIL (-1536 (|has| (-400 (-549)) (-1009 (-549))) (|has| |#1| (-1009 (-549)))))) (-4300 (($ $ (-834)) 42)) (-1266 (($ $ (-834)) 43)) (-2095 (($ $ $) NIL)) (-1336 (((-400 (-549)) $ $) 19)) (-2114 (((-3 $ "failed") $) 83)) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-2772 (((-112) $) 61)) (-2675 (((-112) $) NIL)) (-4187 (($ $ (-549)) NIL)) (-2374 (((-112) $) 64)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-2785 (((-3 (-1139 $) "failed") $) 78)) (-2373 (((-3 (-834) "failed") $) 77)) (-3436 (((-3 (-1139 $) "failed") $) 75)) (-1847 (((-3 (-1028 $ (-1139 $)) "failed") $) 73)) (-3697 (($ (-621 $)) NIL) (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 84)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ (-621 $)) NIL) (($ $ $) NIL)) (-2121 (((-411 $) $) NIL)) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3846 (((-834) $) 82) (($ (-549)) NIL) (($ (-400 (-549))) NIL) (($ $) 58) (($ (-400 (-549))) NIL) (($ (-549)) NIL) (($ (-400 (-549))) NIL) (($ |#1|) 110)) (-2082 (((-747)) NIL)) (-1498 (((-112) $ $) NIL)) (-2661 (((-400 (-549)) $ $) 25)) (-3302 (((-621 $) (-1139 $)) 56) (((-621 $) (-1139 (-400 (-549)))) NIL) (((-621 $) (-1139 (-549))) NIL) (((-621 $) (-923 $)) NIL) (((-621 $) (-923 (-400 (-549)))) NIL) (((-621 $) (-923 (-549))) NIL)) (-2562 (($ (-1028 $ (-1139 $)) (-834)) 41)) (-3212 (($ $) 20)) (-3276 (($) 29 T CONST)) (-3287 (($) 35 T CONST)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 71)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 22)) (-2513 (($ $ $) 33)) (-2500 (($ $) 34) (($ $ $) 69)) (-2486 (($ $ $) 103)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL) (($ $ (-400 (-549))) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 91) (($ $ $) 96) (($ (-400 (-549)) $) NIL) (($ $ (-400 (-549))) NIL) (($ (-549) $) 91) (($ $ (-549)) NIL) (($ (-400 (-549)) $) NIL) (($ $ (-400 (-549))) NIL) (($ |#1| $) 95) (($ $ |#1|) NIL)))
-(((-995 |#1|) (-13 (-983) (-404 |#1|) (-38 |#1|) (-10 -8 (-15 -2562 ($ (-1028 $ (-1139 $)) (-834))) (-15 -1847 ((-3 (-1028 $ (-1139 $)) "failed") $)) (-15 -1336 ((-400 (-549)) $ $)))) (-13 (-821) (-356) (-993))) (T -995))
-((-2562 (*1 *1 *2 *3) (-12 (-5 *2 (-1028 (-995 *4) (-1139 (-995 *4)))) (-5 *3 (-834)) (-5 *1 (-995 *4)) (-4 *4 (-13 (-821) (-356) (-993))))) (-1847 (*1 *2 *1) (|partial| -12 (-5 *2 (-1028 (-995 *3) (-1139 (-995 *3)))) (-5 *1 (-995 *3)) (-4 *3 (-13 (-821) (-356) (-993))))) (-1336 (*1 *2 *1 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-995 *3)) (-4 *3 (-13 (-821) (-356) (-993))))))
-(-13 (-983) (-404 |#1|) (-38 |#1|) (-10 -8 (-15 -2562 ($ (-1028 $ (-1139 $)) (-834))) (-15 -1847 ((-3 (-1028 $ (-1139 $)) "failed") $)) (-15 -1336 ((-400 (-549)) $ $))))
-((-4306 (((-2 (|:| -2652 |#2|) (|:| -2721 (-621 |#1|))) |#2| (-621 |#1|)) 20) ((|#2| |#2| |#1|) 15)))
-(((-996 |#1| |#2|) (-10 -7 (-15 -4306 (|#2| |#2| |#1|)) (-15 -4306 ((-2 (|:| -2652 |#2|) (|:| -2721 (-621 |#1|))) |#2| (-621 |#1|)))) (-356) (-632 |#1|)) (T -996))
-((-4306 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-5 *2 (-2 (|:| -2652 *3) (|:| -2721 (-621 *5)))) (-5 *1 (-996 *5 *3)) (-5 *4 (-621 *5)) (-4 *3 (-632 *5)))) (-4306 (*1 *2 *2 *3) (-12 (-4 *3 (-356)) (-5 *1 (-996 *3 *2)) (-4 *2 (-632 *3)))))
-(-10 -7 (-15 -4306 (|#2| |#2| |#1|)) (-15 -4306 ((-2 (|:| -2652 |#2|) (|:| -2721 (-621 |#1|))) |#2| (-621 |#1|))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2154 ((|#1| $ |#1|) 14)) (-2254 ((|#1| $ |#1|) 12)) (-2219 (($ |#1|) 10)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-3341 ((|#1| $) 11)) (-1658 ((|#1| $) 13)) (-3846 (((-834) $) 21 (|has| |#1| (-1067)))) (-2389 (((-112) $ $) 9)))
-(((-997 |#1|) (-13 (-1180) (-10 -8 (-15 -2219 ($ |#1|)) (-15 -3341 (|#1| $)) (-15 -2254 (|#1| $ |#1|)) (-15 -1658 (|#1| $)) (-15 -2154 (|#1| $ |#1|)) (-15 -2389 ((-112) $ $)) (IF (|has| |#1| (-1067)) (-6 (-1067)) |%noBranch|))) (-1180)) (T -997))
-((-2219 (*1 *1 *2) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1180)))) (-3341 (*1 *2 *1) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1180)))) (-2254 (*1 *2 *1 *2) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1180)))) (-1658 (*1 *2 *1) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1180)))) (-2154 (*1 *2 *1 *2) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1180)))) (-2389 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-997 *3)) (-4 *3 (-1180)))))
-(-13 (-1180) (-10 -8 (-15 -2219 ($ |#1|)) (-15 -3341 (|#1| $)) (-15 -2254 (|#1| $ |#1|)) (-15 -1658 (|#1| $)) (-15 -2154 (|#1| $ |#1|)) (-15 -2389 ((-112) $ $)) (IF (|has| |#1| (-1067)) (-6 (-1067)) |%noBranch|)))
-((-3834 (((-112) $ $) NIL)) (-3514 (((-621 (-2 (|:| -2681 $) (|:| -1359 (-621 |#4|)))) (-621 |#4|)) NIL)) (-2866 (((-621 $) (-621 |#4|)) 105) (((-621 $) (-621 |#4|) (-112)) 106) (((-621 $) (-621 |#4|) (-112) (-112)) 104) (((-621 $) (-621 |#4|) (-112) (-112) (-112) (-112)) 107)) (-2272 (((-621 |#3|) $) NIL)) (-3422 (((-112) $) NIL)) (-2527 (((-112) $) NIL (|has| |#1| (-541)))) (-3282 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2731 ((|#4| |#4| $) NIL)) (-3979 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 $))) |#4| $) 99)) (-3193 (((-2 (|:| |under| $) (|:| -3967 $) (|:| |upper| $)) $ |#3|) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-1489 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337))) (((-3 |#4| "failed") $ |#3|) 54)) (-1682 (($) NIL T CONST)) (-1433 (((-112) $) 26 (|has| |#1| (-541)))) (-2555 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2595 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2397 (((-112) $) NIL (|has| |#1| (-541)))) (-2737 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3269 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2953 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2714 (((-3 $ "failed") (-621 |#4|)) NIL)) (-2659 (($ (-621 |#4|)) NIL)) (-3657 (((-3 $ "failed") $) 39)) (-1903 ((|#4| |#4| $) 57)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067))))) (-3812 (($ |#4| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-3675 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 73 (|has| |#1| (-541)))) (-2217 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-3615 ((|#4| |#4| $) NIL)) (-2557 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4337))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4337))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-1439 (((-2 (|:| -2681 (-621 |#4|)) (|:| -1359 (-621 |#4|))) $) NIL)) (-3516 (((-112) |#4| $) NIL)) (-3150 (((-112) |#4| $) NIL)) (-2064 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4181 (((-2 (|:| |val| (-621 |#4|)) (|:| |towers| (-621 $))) (-621 |#4|) (-112) (-112)) 119)) (-2989 (((-621 |#4|) $) 16 (|has| $ (-6 -4337)))) (-2812 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2745 ((|#3| $) 33)) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 |#4|) $) 17 (|has| $ (-6 -4337)))) (-2090 (((-112) |#4| $) 25 (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067))))) (-1868 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#4| |#4|) $) 21)) (-2561 (((-621 |#3|) $) NIL)) (-2378 (((-112) |#3| $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL)) (-1878 (((-3 |#4| (-621 $)) |#4| |#4| $) NIL)) (-3072 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 $))) |#4| |#4| $) 97)) (-3829 (((-3 |#4| "failed") $) 37)) (-3689 (((-621 $) |#4| $) 80)) (-1514 (((-3 (-112) (-621 $)) |#4| $) NIL)) (-4184 (((-621 (-2 (|:| |val| (-112)) (|:| -1981 $))) |#4| $) 90) (((-112) |#4| $) 52)) (-3655 (((-621 $) |#4| $) 102) (((-621 $) (-621 |#4|) $) NIL) (((-621 $) (-621 |#4|) (-621 $)) 103) (((-621 $) |#4| (-621 $)) NIL)) (-4249 (((-621 $) (-621 |#4|) (-112) (-112) (-112)) 114)) (-4283 (($ |#4| $) 70) (($ (-621 |#4|) $) 71) (((-621 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 67)) (-1638 (((-621 |#4|) $) NIL)) (-2170 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3270 ((|#4| |#4| $) NIL)) (-2473 (((-112) $ $) NIL)) (-4203 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-541)))) (-1335 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4298 ((|#4| |#4| $) NIL)) (-3990 (((-1087) $) NIL)) (-3646 (((-3 |#4| "failed") $) 35)) (-3779 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-2640 (((-3 $ "failed") $ |#4|) 48)) (-2763 (($ $ |#4|) NIL) (((-621 $) |#4| $) 82) (((-621 $) |#4| (-621 $)) NIL) (((-621 $) (-621 |#4|) $) NIL) (((-621 $) (-621 |#4|) (-621 $)) 77)) (-1780 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 |#4|) (-621 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-287 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-621 (-287 |#4|))) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) 15)) (-3742 (($) 13)) (-3701 (((-747) $) NIL)) (-4000 (((-747) |#4| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067)))) (((-747) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) 12)) (-2845 (((-525) $) NIL (|has| |#4| (-594 (-525))))) (-3854 (($ (-621 |#4|)) 20)) (-2858 (($ $ |#3|) 42)) (-3758 (($ $ |#3|) 44)) (-1962 (($ $) NIL)) (-4317 (($ $ |#3|) NIL)) (-3846 (((-834) $) 31) (((-621 |#4|) $) 40)) (-1824 (((-747) $) NIL (|has| |#3| (-361)))) (-2574 (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-1716 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) NIL)) (-1518 (((-621 $) |#4| $) 79) (((-621 $) |#4| (-621 $)) NIL) (((-621 $) (-621 |#4|) $) NIL) (((-621 $) (-621 |#4|) (-621 $)) NIL)) (-3527 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-3002 (((-621 |#3|) $) NIL)) (-3524 (((-112) |#4| $) NIL)) (-1606 (((-112) |#3| $) 53)) (-2389 (((-112) $ $) NIL)) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-998 |#1| |#2| |#3| |#4|) (-13 (-1038 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4283 ((-621 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -2866 ((-621 $) (-621 |#4|) (-112) (-112))) (-15 -2866 ((-621 $) (-621 |#4|) (-112) (-112) (-112) (-112))) (-15 -4249 ((-621 $) (-621 |#4|) (-112) (-112) (-112))) (-15 -4181 ((-2 (|:| |val| (-621 |#4|)) (|:| |towers| (-621 $))) (-621 |#4|) (-112) (-112))))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|)) (T -998))
-((-4283 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 (-998 *5 *6 *7 *3))) (-5 *1 (-998 *5 *6 *7 *3)) (-4 *3 (-1032 *5 *6 *7)))) (-2866 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 (-998 *5 *6 *7 *8))) (-5 *1 (-998 *5 *6 *7 *8)))) (-2866 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 (-998 *5 *6 *7 *8))) (-5 *1 (-998 *5 *6 *7 *8)))) (-4249 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 (-998 *5 *6 *7 *8))) (-5 *1 (-998 *5 *6 *7 *8)))) (-4181 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-621 *8)) (|:| |towers| (-621 (-998 *5 *6 *7 *8))))) (-5 *1 (-998 *5 *6 *7 *8)) (-5 *3 (-621 *8)))))
-(-13 (-1038 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4283 ((-621 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -2866 ((-621 $) (-621 |#4|) (-112) (-112))) (-15 -2866 ((-621 $) (-621 |#4|) (-112) (-112) (-112) (-112))) (-15 -4249 ((-621 $) (-621 |#4|) (-112) (-112) (-112))) (-15 -4181 ((-2 (|:| |val| (-621 |#4|)) (|:| |towers| (-621 $))) (-621 |#4|) (-112) (-112)))))
-((-3585 (((-621 (-665 |#1|)) (-621 (-665 |#1|))) 58) (((-665 |#1|) (-665 |#1|)) 57) (((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-621 (-665 |#1|))) 56) (((-665 |#1|) (-665 |#1|) (-665 |#1|)) 53)) (-4290 (((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-892)) 52) (((-665 |#1|) (-665 |#1|) (-892)) 51)) (-3681 (((-621 (-665 (-549))) (-621 (-621 (-549)))) 68) (((-621 (-665 (-549))) (-621 (-876 (-549))) (-549)) 67) (((-665 (-549)) (-621 (-549))) 64) (((-665 (-549)) (-876 (-549)) (-549)) 63)) (-2185 (((-665 (-923 |#1|)) (-747)) 81)) (-2529 (((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-892)) 37 (|has| |#1| (-6 (-4339 "*")))) (((-665 |#1|) (-665 |#1|) (-892)) 35 (|has| |#1| (-6 (-4339 "*"))))))
-(((-999 |#1|) (-10 -7 (IF (|has| |#1| (-6 (-4339 "*"))) (-15 -2529 ((-665 |#1|) (-665 |#1|) (-892))) |%noBranch|) (IF (|has| |#1| (-6 (-4339 "*"))) (-15 -2529 ((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-892))) |%noBranch|) (-15 -2185 ((-665 (-923 |#1|)) (-747))) (-15 -4290 ((-665 |#1|) (-665 |#1|) (-892))) (-15 -4290 ((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-892))) (-15 -3585 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -3585 ((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-621 (-665 |#1|)))) (-15 -3585 ((-665 |#1|) (-665 |#1|))) (-15 -3585 ((-621 (-665 |#1|)) (-621 (-665 |#1|)))) (-15 -3681 ((-665 (-549)) (-876 (-549)) (-549))) (-15 -3681 ((-665 (-549)) (-621 (-549)))) (-15 -3681 ((-621 (-665 (-549))) (-621 (-876 (-549))) (-549))) (-15 -3681 ((-621 (-665 (-549))) (-621 (-621 (-549)))))) (-1018)) (T -999))
-((-3681 (*1 *2 *3) (-12 (-5 *3 (-621 (-621 (-549)))) (-5 *2 (-621 (-665 (-549)))) (-5 *1 (-999 *4)) (-4 *4 (-1018)))) (-3681 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-876 (-549)))) (-5 *4 (-549)) (-5 *2 (-621 (-665 *4))) (-5 *1 (-999 *5)) (-4 *5 (-1018)))) (-3681 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-665 (-549))) (-5 *1 (-999 *4)) (-4 *4 (-1018)))) (-3681 (*1 *2 *3 *4) (-12 (-5 *3 (-876 (-549))) (-5 *4 (-549)) (-5 *2 (-665 *4)) (-5 *1 (-999 *5)) (-4 *5 (-1018)))) (-3585 (*1 *2 *2) (-12 (-5 *2 (-621 (-665 *3))) (-4 *3 (-1018)) (-5 *1 (-999 *3)))) (-3585 (*1 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-999 *3)))) (-3585 (*1 *2 *2 *2) (-12 (-5 *2 (-621 (-665 *3))) (-4 *3 (-1018)) (-5 *1 (-999 *3)))) (-3585 (*1 *2 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-999 *3)))) (-4290 (*1 *2 *2 *3) (-12 (-5 *2 (-621 (-665 *4))) (-5 *3 (-892)) (-4 *4 (-1018)) (-5 *1 (-999 *4)))) (-4290 (*1 *2 *2 *3) (-12 (-5 *2 (-665 *4)) (-5 *3 (-892)) (-4 *4 (-1018)) (-5 *1 (-999 *4)))) (-2185 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-665 (-923 *4))) (-5 *1 (-999 *4)) (-4 *4 (-1018)))) (-2529 (*1 *2 *2 *3) (-12 (-5 *2 (-621 (-665 *4))) (-5 *3 (-892)) (|has| *4 (-6 (-4339 "*"))) (-4 *4 (-1018)) (-5 *1 (-999 *4)))) (-2529 (*1 *2 *2 *3) (-12 (-5 *2 (-665 *4)) (-5 *3 (-892)) (|has| *4 (-6 (-4339 "*"))) (-4 *4 (-1018)) (-5 *1 (-999 *4)))))
-(-10 -7 (IF (|has| |#1| (-6 (-4339 "*"))) (-15 -2529 ((-665 |#1|) (-665 |#1|) (-892))) |%noBranch|) (IF (|has| |#1| (-6 (-4339 "*"))) (-15 -2529 ((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-892))) |%noBranch|) (-15 -2185 ((-665 (-923 |#1|)) (-747))) (-15 -4290 ((-665 |#1|) (-665 |#1|) (-892))) (-15 -4290 ((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-892))) (-15 -3585 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -3585 ((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-621 (-665 |#1|)))) (-15 -3585 ((-665 |#1|) (-665 |#1|))) (-15 -3585 ((-621 (-665 |#1|)) (-621 (-665 |#1|)))) (-15 -3681 ((-665 (-549)) (-876 (-549)) (-549))) (-15 -3681 ((-665 (-549)) (-621 (-549)))) (-15 -3681 ((-621 (-665 (-549))) (-621 (-876 (-549))) (-549))) (-15 -3681 ((-621 (-665 (-549))) (-621 (-621 (-549))))))
-((-2333 (((-665 |#1|) (-621 (-665 |#1|)) (-1226 |#1|)) 50 (|has| |#1| (-300)))) (-3628 (((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-1226 (-1226 |#1|))) 76 (|has| |#1| (-356))) (((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-1226 |#1|)) 79 (|has| |#1| (-356)))) (-1649 (((-1226 |#1|) (-621 (-1226 |#1|)) (-549)) 93 (-12 (|has| |#1| (-356)) (|has| |#1| (-361))))) (-1956 (((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-892)) 85 (-12 (|has| |#1| (-356)) (|has| |#1| (-361)))) (((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-112)) 83 (-12 (|has| |#1| (-356)) (|has| |#1| (-361)))) (((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|))) 82 (-12 (|has| |#1| (-356)) (|has| |#1| (-361)))) (((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-112) (-549) (-549)) 81 (-12 (|has| |#1| (-356)) (|has| |#1| (-361))))) (-4113 (((-112) (-621 (-665 |#1|))) 71 (|has| |#1| (-356))) (((-112) (-621 (-665 |#1|)) (-549)) 73 (|has| |#1| (-356)))) (-3466 (((-1226 (-1226 |#1|)) (-621 (-665 |#1|)) (-1226 |#1|)) 48 (|has| |#1| (-300)))) (-2450 (((-665 |#1|) (-621 (-665 |#1|)) (-665 |#1|)) 34)) (-3509 (((-665 |#1|) (-1226 (-1226 |#1|))) 31)) (-2419 (((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|)) (-549)) 65 (|has| |#1| (-356))) (((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|))) 64 (|has| |#1| (-356))) (((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|)) (-112) (-549)) 69 (|has| |#1| (-356)))))
-(((-1000 |#1|) (-10 -7 (-15 -3509 ((-665 |#1|) (-1226 (-1226 |#1|)))) (-15 -2450 ((-665 |#1|) (-621 (-665 |#1|)) (-665 |#1|))) (IF (|has| |#1| (-300)) (PROGN (-15 -3466 ((-1226 (-1226 |#1|)) (-621 (-665 |#1|)) (-1226 |#1|))) (-15 -2333 ((-665 |#1|) (-621 (-665 |#1|)) (-1226 |#1|)))) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-15 -2419 ((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|)) (-112) (-549))) (-15 -2419 ((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|)))) (-15 -2419 ((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|)) (-549))) (-15 -4113 ((-112) (-621 (-665 |#1|)) (-549))) (-15 -4113 ((-112) (-621 (-665 |#1|)))) (-15 -3628 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-1226 |#1|))) (-15 -3628 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-1226 (-1226 |#1|))))) |%noBranch|) (IF (|has| |#1| (-361)) (IF (|has| |#1| (-356)) (PROGN (-15 -1956 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-112) (-549) (-549))) (-15 -1956 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)))) (-15 -1956 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-112))) (-15 -1956 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-892))) (-15 -1649 ((-1226 |#1|) (-621 (-1226 |#1|)) (-549)))) |%noBranch|) |%noBranch|)) (-1018)) (T -1000))
-((-1649 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-1226 *5))) (-5 *4 (-549)) (-5 *2 (-1226 *5)) (-5 *1 (-1000 *5)) (-4 *5 (-356)) (-4 *5 (-361)) (-4 *5 (-1018)))) (-1956 (*1 *2 *3 *4) (-12 (-5 *4 (-892)) (-4 *5 (-356)) (-4 *5 (-361)) (-4 *5 (-1018)) (-5 *2 (-621 (-621 (-665 *5)))) (-5 *1 (-1000 *5)) (-5 *3 (-621 (-665 *5))))) (-1956 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-356)) (-4 *5 (-361)) (-4 *5 (-1018)) (-5 *2 (-621 (-621 (-665 *5)))) (-5 *1 (-1000 *5)) (-5 *3 (-621 (-665 *5))))) (-1956 (*1 *2 *3) (-12 (-4 *4 (-356)) (-4 *4 (-361)) (-4 *4 (-1018)) (-5 *2 (-621 (-621 (-665 *4)))) (-5 *1 (-1000 *4)) (-5 *3 (-621 (-665 *4))))) (-1956 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-112)) (-5 *5 (-549)) (-4 *6 (-356)) (-4 *6 (-361)) (-4 *6 (-1018)) (-5 *2 (-621 (-621 (-665 *6)))) (-5 *1 (-1000 *6)) (-5 *3 (-621 (-665 *6))))) (-3628 (*1 *2 *3 *4) (-12 (-5 *4 (-1226 (-1226 *5))) (-4 *5 (-356)) (-4 *5 (-1018)) (-5 *2 (-621 (-621 (-665 *5)))) (-5 *1 (-1000 *5)) (-5 *3 (-621 (-665 *5))))) (-3628 (*1 *2 *3 *4) (-12 (-5 *4 (-1226 *5)) (-4 *5 (-356)) (-4 *5 (-1018)) (-5 *2 (-621 (-621 (-665 *5)))) (-5 *1 (-1000 *5)) (-5 *3 (-621 (-665 *5))))) (-4113 (*1 *2 *3) (-12 (-5 *3 (-621 (-665 *4))) (-4 *4 (-356)) (-4 *4 (-1018)) (-5 *2 (-112)) (-5 *1 (-1000 *4)))) (-4113 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-665 *5))) (-5 *4 (-549)) (-4 *5 (-356)) (-4 *5 (-1018)) (-5 *2 (-112)) (-5 *1 (-1000 *5)))) (-2419 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-621 (-665 *5))) (-5 *4 (-549)) (-5 *2 (-665 *5)) (-5 *1 (-1000 *5)) (-4 *5 (-356)) (-4 *5 (-1018)))) (-2419 (*1 *2 *3 *3) (-12 (-5 *3 (-621 (-665 *4))) (-5 *2 (-665 *4)) (-5 *1 (-1000 *4)) (-4 *4 (-356)) (-4 *4 (-1018)))) (-2419 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-621 (-665 *6))) (-5 *4 (-112)) (-5 *5 (-549)) (-5 *2 (-665 *6)) (-5 *1 (-1000 *6)) (-4 *6 (-356)) (-4 *6 (-1018)))) (-2333 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-665 *5))) (-5 *4 (-1226 *5)) (-4 *5 (-300)) (-4 *5 (-1018)) (-5 *2 (-665 *5)) (-5 *1 (-1000 *5)))) (-3466 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-665 *5))) (-4 *5 (-300)) (-4 *5 (-1018)) (-5 *2 (-1226 (-1226 *5))) (-5 *1 (-1000 *5)) (-5 *4 (-1226 *5)))) (-2450 (*1 *2 *3 *2) (-12 (-5 *3 (-621 (-665 *4))) (-5 *2 (-665 *4)) (-4 *4 (-1018)) (-5 *1 (-1000 *4)))) (-3509 (*1 *2 *3) (-12 (-5 *3 (-1226 (-1226 *4))) (-4 *4 (-1018)) (-5 *2 (-665 *4)) (-5 *1 (-1000 *4)))))
-(-10 -7 (-15 -3509 ((-665 |#1|) (-1226 (-1226 |#1|)))) (-15 -2450 ((-665 |#1|) (-621 (-665 |#1|)) (-665 |#1|))) (IF (|has| |#1| (-300)) (PROGN (-15 -3466 ((-1226 (-1226 |#1|)) (-621 (-665 |#1|)) (-1226 |#1|))) (-15 -2333 ((-665 |#1|) (-621 (-665 |#1|)) (-1226 |#1|)))) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-15 -2419 ((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|)) (-112) (-549))) (-15 -2419 ((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|)))) (-15 -2419 ((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|)) (-549))) (-15 -4113 ((-112) (-621 (-665 |#1|)) (-549))) (-15 -4113 ((-112) (-621 (-665 |#1|)))) (-15 -3628 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-1226 |#1|))) (-15 -3628 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-1226 (-1226 |#1|))))) |%noBranch|) (IF (|has| |#1| (-361)) (IF (|has| |#1| (-356)) (PROGN (-15 -1956 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-112) (-549) (-549))) (-15 -1956 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)))) (-15 -1956 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-112))) (-15 -1956 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-892))) (-15 -1649 ((-1226 |#1|) (-621 (-1226 |#1|)) (-549)))) |%noBranch|) |%noBranch|))
-((-4028 ((|#1| (-892) |#1|) 9)))
-(((-1001 |#1|) (-10 -7 (-15 -4028 (|#1| (-892) |#1|))) (-13 (-1067) (-10 -8 (-15 -2486 ($ $ $))))) (T -1001))
-((-4028 (*1 *2 *3 *2) (-12 (-5 *3 (-892)) (-5 *1 (-1001 *2)) (-4 *2 (-13 (-1067) (-10 -8 (-15 -2486 ($ $ $))))))))
-(-10 -7 (-15 -4028 (|#1| (-892) |#1|)))
-((-2471 (((-621 (-2 (|:| |radval| (-309 (-549))) (|:| |radmult| (-549)) (|:| |radvect| (-621 (-665 (-309 (-549))))))) (-665 (-400 (-923 (-549))))) 59)) (-2914 (((-621 (-665 (-309 (-549)))) (-309 (-549)) (-665 (-400 (-923 (-549))))) 48)) (-3784 (((-621 (-309 (-549))) (-665 (-400 (-923 (-549))))) 41)) (-4185 (((-621 (-665 (-309 (-549)))) (-665 (-400 (-923 (-549))))) 68)) (-2823 (((-665 (-309 (-549))) (-665 (-309 (-549)))) 34)) (-1435 (((-621 (-665 (-309 (-549)))) (-621 (-665 (-309 (-549))))) 62)) (-1379 (((-3 (-665 (-309 (-549))) "failed") (-665 (-400 (-923 (-549))))) 66)))
-(((-1002) (-10 -7 (-15 -2471 ((-621 (-2 (|:| |radval| (-309 (-549))) (|:| |radmult| (-549)) (|:| |radvect| (-621 (-665 (-309 (-549))))))) (-665 (-400 (-923 (-549)))))) (-15 -2914 ((-621 (-665 (-309 (-549)))) (-309 (-549)) (-665 (-400 (-923 (-549)))))) (-15 -3784 ((-621 (-309 (-549))) (-665 (-400 (-923 (-549)))))) (-15 -1379 ((-3 (-665 (-309 (-549))) "failed") (-665 (-400 (-923 (-549)))))) (-15 -2823 ((-665 (-309 (-549))) (-665 (-309 (-549))))) (-15 -1435 ((-621 (-665 (-309 (-549)))) (-621 (-665 (-309 (-549)))))) (-15 -4185 ((-621 (-665 (-309 (-549)))) (-665 (-400 (-923 (-549)))))))) (T -1002))
-((-4185 (*1 *2 *3) (-12 (-5 *3 (-665 (-400 (-923 (-549))))) (-5 *2 (-621 (-665 (-309 (-549))))) (-5 *1 (-1002)))) (-1435 (*1 *2 *2) (-12 (-5 *2 (-621 (-665 (-309 (-549))))) (-5 *1 (-1002)))) (-2823 (*1 *2 *2) (-12 (-5 *2 (-665 (-309 (-549)))) (-5 *1 (-1002)))) (-1379 (*1 *2 *3) (|partial| -12 (-5 *3 (-665 (-400 (-923 (-549))))) (-5 *2 (-665 (-309 (-549)))) (-5 *1 (-1002)))) (-3784 (*1 *2 *3) (-12 (-5 *3 (-665 (-400 (-923 (-549))))) (-5 *2 (-621 (-309 (-549)))) (-5 *1 (-1002)))) (-2914 (*1 *2 *3 *4) (-12 (-5 *4 (-665 (-400 (-923 (-549))))) (-5 *2 (-621 (-665 (-309 (-549))))) (-5 *1 (-1002)) (-5 *3 (-309 (-549))))) (-2471 (*1 *2 *3) (-12 (-5 *3 (-665 (-400 (-923 (-549))))) (-5 *2 (-621 (-2 (|:| |radval| (-309 (-549))) (|:| |radmult| (-549)) (|:| |radvect| (-621 (-665 (-309 (-549)))))))) (-5 *1 (-1002)))))
-(-10 -7 (-15 -2471 ((-621 (-2 (|:| |radval| (-309 (-549))) (|:| |radmult| (-549)) (|:| |radvect| (-621 (-665 (-309 (-549))))))) (-665 (-400 (-923 (-549)))))) (-15 -2914 ((-621 (-665 (-309 (-549)))) (-309 (-549)) (-665 (-400 (-923 (-549)))))) (-15 -3784 ((-621 (-309 (-549))) (-665 (-400 (-923 (-549)))))) (-15 -1379 ((-3 (-665 (-309 (-549))) "failed") (-665 (-400 (-923 (-549)))))) (-15 -2823 ((-665 (-309 (-549))) (-665 (-309 (-549))))) (-15 -1435 ((-621 (-665 (-309 (-549)))) (-621 (-665 (-309 (-549)))))) (-15 -4185 ((-621 (-665 (-309 (-549)))) (-665 (-400 (-923 (-549)))))))
-((-2099 ((|#1| |#1| (-892)) 9)))
-(((-1003 |#1|) (-10 -7 (-15 -2099 (|#1| |#1| (-892)))) (-13 (-1067) (-10 -8 (-15 * ($ $ $))))) (T -1003))
-((-2099 (*1 *2 *2 *3) (-12 (-5 *3 (-892)) (-5 *1 (-1003 *2)) (-4 *2 (-13 (-1067) (-10 -8 (-15 * ($ $ $))))))))
-(-10 -7 (-15 -2099 (|#1| |#1| (-892))))
-((-3846 ((|#1| (-305)) 11) (((-1231) |#1|) 9)))
-(((-1004 |#1|) (-10 -7 (-15 -3846 ((-1231) |#1|)) (-15 -3846 (|#1| (-305)))) (-1180)) (T -1004))
-((-3846 (*1 *2 *3) (-12 (-5 *3 (-305)) (-5 *1 (-1004 *2)) (-4 *2 (-1180)))) (-3846 (*1 *2 *3) (-12 (-5 *2 (-1231)) (-5 *1 (-1004 *3)) (-4 *3 (-1180)))))
-(-10 -7 (-15 -3846 ((-1231) |#1|)) (-15 -3846 (|#1| (-305))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2557 (($ |#4|) 25)) (-2114 (((-3 $ "failed") $) NIL)) (-2675 (((-112) $) NIL)) (-2548 ((|#4| $) 27)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 46) (($ (-549)) NIL) (($ |#1|) NIL) (($ |#4|) 26)) (-2082 (((-747)) 43)) (-3276 (($) 21 T CONST)) (-3287 (($) 23 T CONST)) (-2389 (((-112) $ $) 40)) (-2500 (($ $) 31) (($ $ $) NIL)) (-2486 (($ $ $) 29)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 36) (($ $ $) 33) (($ |#1| $) 38) (($ $ |#1|) NIL)))
-(((-1005 |#1| |#2| |#3| |#4| |#5|) (-13 (-170) (-38 |#1|) (-10 -8 (-15 -2557 ($ |#4|)) (-15 -3846 ($ |#4|)) (-15 -2548 (|#4| $)))) (-356) (-769) (-823) (-920 |#1| |#2| |#3|) (-621 |#4|)) (T -1005))
-((-2557 (*1 *1 *2) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-1005 *3 *4 *5 *2 *6)) (-4 *2 (-920 *3 *4 *5)) (-14 *6 (-621 *2)))) (-3846 (*1 *1 *2) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-1005 *3 *4 *5 *2 *6)) (-4 *2 (-920 *3 *4 *5)) (-14 *6 (-621 *2)))) (-2548 (*1 *2 *1) (-12 (-4 *2 (-920 *3 *4 *5)) (-5 *1 (-1005 *3 *4 *5 *2 *6)) (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-14 *6 (-621 *2)))))
-(-13 (-170) (-38 |#1|) (-10 -8 (-15 -2557 ($ |#4|)) (-15 -3846 ($ |#4|)) (-15 -2548 (|#4| $))))
-((-3834 (((-112) $ $) NIL (-1536 (|has| (-52) (-1067)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067))))) (-3733 (($) NIL) (($ (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) NIL)) (-1535 (((-1231) $ (-1143) (-1143)) NIL (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) NIL)) (-2549 (((-112) (-112)) 39)) (-3438 (((-112) (-112)) 38)) (-2254 (((-52) $ (-1143) (-52)) NIL)) (-1717 (($ (-1 (-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337)))) (-3490 (((-3 (-52) "failed") (-1143) $) NIL)) (-1682 (($) NIL T CONST)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067))))) (-2129 (($ (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) $) NIL (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337))) (((-3 (-52) "failed") (-1143) $) NIL)) (-3812 (($ (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067)))) (($ (-1 (-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337)))) (-2557 (((-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $ (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067)))) (((-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $ (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337)))) (-1879 (((-52) $ (-1143) (-52)) NIL (|has| $ (-6 -4338)))) (-1809 (((-52) $ (-1143)) NIL)) (-2989 (((-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337))) (((-621 (-52)) $) NIL (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-1143) $) NIL (|has| (-1143) (-823)))) (-1562 (((-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337))) (((-621 (-52)) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-52) (-1067))))) (-1569 (((-1143) $) NIL (|has| (-1143) (-823)))) (-1868 (($ (-1 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4338))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (-1536 (|has| (-52) (-1067)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067))))) (-3449 (((-621 (-1143)) $) 34)) (-2427 (((-112) (-1143) $) NIL)) (-3504 (((-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) $) NIL)) (-2751 (($ (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) $) NIL)) (-3303 (((-621 (-1143)) $) NIL)) (-3761 (((-112) (-1143) $) NIL)) (-3990 (((-1087) $) NIL (-1536 (|has| (-52) (-1067)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067))))) (-3646 (((-52) $) NIL (|has| (-1143) (-823)))) (-3779 (((-3 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) "failed") (-1 (-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL)) (-1642 (($ $ (-52)) NIL (|has| $ (-6 -4338)))) (-3325 (((-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) $) NIL)) (-1780 (((-112) (-1 (-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))))) NIL (-12 (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067)))) (($ $ (-287 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) NIL (-12 (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067)))) (($ $ (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) NIL (-12 (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067)))) (($ $ (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) NIL (-12 (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067)))) (($ $ (-621 (-52)) (-621 (-52))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1067)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1067)))) (($ $ (-287 (-52))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1067)))) (($ $ (-621 (-287 (-52)))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-52) (-1067))))) (-2696 (((-621 (-52)) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 (((-52) $ (-1143)) 35) (((-52) $ (-1143) (-52)) NIL)) (-2898 (($) NIL) (($ (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) NIL)) (-4000 (((-747) (-1 (-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337))) (((-747) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067)))) (((-747) (-52) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-52) (-1067)))) (((-747) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-594 (-525))))) (-3854 (($ (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) NIL)) (-3846 (((-834) $) 37 (-1536 (|has| (-52) (-593 (-834))) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-593 (-834)))))) (-3624 (($ (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) NIL)) (-3527 (((-112) (-1 (-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (-1536 (|has| (-52) (-1067)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067))))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-1006) (-13 (-1156 (-1143) (-52)) (-10 -7 (-15 -2549 ((-112) (-112))) (-15 -3438 ((-112) (-112))) (-6 -4337)))) (T -1006))
-((-2549 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1006)))) (-3438 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1006)))))
-(-13 (-1156 (-1143) (-52)) (-10 -7 (-15 -2549 ((-112) (-112))) (-15 -3438 ((-112) (-112))) (-6 -4337)))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3955 (((-1148) $) 9)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-1007) (-13 (-1050) (-10 -8 (-15 -3955 ((-1148) $))))) (T -1007))
-((-3955 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1007)))))
-(-13 (-1050) (-10 -8 (-15 -3955 ((-1148) $))))
-((-2659 ((|#2| $) 10)))
-(((-1008 |#1| |#2|) (-10 -8 (-15 -2659 (|#2| |#1|))) (-1009 |#2|) (-1180)) (T -1008))
-NIL
-(-10 -8 (-15 -2659 (|#2| |#1|)))
-((-2714 (((-3 |#1| "failed") $) 7)) (-2659 ((|#1| $) 8)) (-3846 (($ |#1|) 6)))
-(((-1009 |#1|) (-138) (-1180)) (T -1009))
-((-2659 (*1 *2 *1) (-12 (-4 *1 (-1009 *2)) (-4 *2 (-1180)))) (-2714 (*1 *2 *1) (|partial| -12 (-4 *1 (-1009 *2)) (-4 *2 (-1180)))) (-3846 (*1 *1 *2) (-12 (-4 *1 (-1009 *2)) (-4 *2 (-1180)))))
-(-13 (-10 -8 (-15 -3846 ($ |t#1|)) (-15 -2714 ((-3 |t#1| "failed") $)) (-15 -2659 (|t#1| $))))
-((-4037 (((-621 (-621 (-287 (-400 (-923 |#2|))))) (-621 (-923 |#2|)) (-621 (-1143))) 38)))
-(((-1010 |#1| |#2|) (-10 -7 (-15 -4037 ((-621 (-621 (-287 (-400 (-923 |#2|))))) (-621 (-923 |#2|)) (-621 (-1143))))) (-541) (-13 (-541) (-1009 |#1|))) (T -1010))
-((-4037 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-923 *6))) (-5 *4 (-621 (-1143))) (-4 *6 (-13 (-541) (-1009 *5))) (-4 *5 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *6)))))) (-5 *1 (-1010 *5 *6)))))
-(-10 -7 (-15 -4037 ((-621 (-621 (-287 (-400 (-923 |#2|))))) (-621 (-923 |#2|)) (-621 (-1143)))))
-((-3699 (((-372)) 15)) (-1950 (((-1 (-372)) (-372) (-372)) 20)) (-2632 (((-1 (-372)) (-747)) 43)) (-2862 (((-372)) 34)) (-4041 (((-1 (-372)) (-372) (-372)) 35)) (-4191 (((-372)) 26)) (-1374 (((-1 (-372)) (-372)) 27)) (-1774 (((-372) (-747)) 38)) (-2008 (((-1 (-372)) (-747)) 39)) (-1422 (((-1 (-372)) (-747) (-747)) 42)) (-2096 (((-1 (-372)) (-747) (-747)) 40)))
-(((-1011) (-10 -7 (-15 -3699 ((-372))) (-15 -2862 ((-372))) (-15 -4191 ((-372))) (-15 -1774 ((-372) (-747))) (-15 -1950 ((-1 (-372)) (-372) (-372))) (-15 -4041 ((-1 (-372)) (-372) (-372))) (-15 -1374 ((-1 (-372)) (-372))) (-15 -2008 ((-1 (-372)) (-747))) (-15 -2096 ((-1 (-372)) (-747) (-747))) (-15 -1422 ((-1 (-372)) (-747) (-747))) (-15 -2632 ((-1 (-372)) (-747))))) (T -1011))
-((-2632 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1 (-372))) (-5 *1 (-1011)))) (-1422 (*1 *2 *3 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1 (-372))) (-5 *1 (-1011)))) (-2096 (*1 *2 *3 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1 (-372))) (-5 *1 (-1011)))) (-2008 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1 (-372))) (-5 *1 (-1011)))) (-1374 (*1 *2 *3) (-12 (-5 *2 (-1 (-372))) (-5 *1 (-1011)) (-5 *3 (-372)))) (-4041 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-372))) (-5 *1 (-1011)) (-5 *3 (-372)))) (-1950 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-372))) (-5 *1 (-1011)) (-5 *3 (-372)))) (-1774 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-372)) (-5 *1 (-1011)))) (-4191 (*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1011)))) (-2862 (*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1011)))) (-3699 (*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1011)))))
-(-10 -7 (-15 -3699 ((-372))) (-15 -2862 ((-372))) (-15 -4191 ((-372))) (-15 -1774 ((-372) (-747))) (-15 -1950 ((-1 (-372)) (-372) (-372))) (-15 -4041 ((-1 (-372)) (-372) (-372))) (-15 -1374 ((-1 (-372)) (-372))) (-15 -2008 ((-1 (-372)) (-747))) (-15 -2096 ((-1 (-372)) (-747) (-747))) (-15 -1422 ((-1 (-372)) (-747) (-747))) (-15 -2632 ((-1 (-372)) (-747))))
-((-2121 (((-411 |#1|) |#1|) 33)))
-(((-1012 |#1|) (-10 -7 (-15 -2121 ((-411 |#1|) |#1|))) (-1202 (-400 (-923 (-549))))) (T -1012))
-((-2121 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-1012 *3)) (-4 *3 (-1202 (-400 (-923 (-549))))))))
-(-10 -7 (-15 -2121 ((-411 |#1|) |#1|)))
-((-4254 (((-400 (-411 (-923 |#1|))) (-400 (-923 |#1|))) 14)))
-(((-1013 |#1|) (-10 -7 (-15 -4254 ((-400 (-411 (-923 |#1|))) (-400 (-923 |#1|))))) (-300)) (T -1013))
-((-4254 (*1 *2 *3) (-12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-300)) (-5 *2 (-400 (-411 (-923 *4)))) (-5 *1 (-1013 *4)))))
-(-10 -7 (-15 -4254 ((-400 (-411 (-923 |#1|))) (-400 (-923 |#1|)))))
-((-2272 (((-621 (-1143)) (-400 (-923 |#1|))) 17)) (-2084 (((-400 (-1139 (-400 (-923 |#1|)))) (-400 (-923 |#1|)) (-1143)) 24)) (-2261 (((-400 (-923 |#1|)) (-400 (-1139 (-400 (-923 |#1|)))) (-1143)) 26)) (-1520 (((-3 (-1143) "failed") (-400 (-923 |#1|))) 20)) (-2686 (((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-621 (-287 (-400 (-923 |#1|))))) 32) (((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|)))) 33) (((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-621 (-1143)) (-621 (-400 (-923 |#1|)))) 28) (((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-1143) (-400 (-923 |#1|))) 29)) (-3846 (((-400 (-923 |#1|)) |#1|) 11)))
-(((-1014 |#1|) (-10 -7 (-15 -2272 ((-621 (-1143)) (-400 (-923 |#1|)))) (-15 -1520 ((-3 (-1143) "failed") (-400 (-923 |#1|)))) (-15 -2084 ((-400 (-1139 (-400 (-923 |#1|)))) (-400 (-923 |#1|)) (-1143))) (-15 -2261 ((-400 (-923 |#1|)) (-400 (-1139 (-400 (-923 |#1|)))) (-1143))) (-15 -2686 ((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-1143) (-400 (-923 |#1|)))) (-15 -2686 ((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-621 (-1143)) (-621 (-400 (-923 |#1|))))) (-15 -2686 ((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))))) (-15 -2686 ((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-621 (-287 (-400 (-923 |#1|)))))) (-15 -3846 ((-400 (-923 |#1|)) |#1|))) (-541)) (T -1014))
-((-3846 (*1 *2 *3) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-1014 *3)) (-4 *3 (-541)))) (-2686 (*1 *2 *2 *3) (-12 (-5 *3 (-621 (-287 (-400 (-923 *4))))) (-5 *2 (-400 (-923 *4))) (-4 *4 (-541)) (-5 *1 (-1014 *4)))) (-2686 (*1 *2 *2 *3) (-12 (-5 *3 (-287 (-400 (-923 *4)))) (-5 *2 (-400 (-923 *4))) (-4 *4 (-541)) (-5 *1 (-1014 *4)))) (-2686 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-621 (-1143))) (-5 *4 (-621 (-400 (-923 *5)))) (-5 *2 (-400 (-923 *5))) (-4 *5 (-541)) (-5 *1 (-1014 *5)))) (-2686 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-400 (-923 *4))) (-5 *3 (-1143)) (-4 *4 (-541)) (-5 *1 (-1014 *4)))) (-2261 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-1139 (-400 (-923 *5))))) (-5 *4 (-1143)) (-5 *2 (-400 (-923 *5))) (-5 *1 (-1014 *5)) (-4 *5 (-541)))) (-2084 (*1 *2 *3 *4) (-12 (-5 *4 (-1143)) (-4 *5 (-541)) (-5 *2 (-400 (-1139 (-400 (-923 *5))))) (-5 *1 (-1014 *5)) (-5 *3 (-400 (-923 *5))))) (-1520 (*1 *2 *3) (|partial| -12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541)) (-5 *2 (-1143)) (-5 *1 (-1014 *4)))) (-2272 (*1 *2 *3) (-12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541)) (-5 *2 (-621 (-1143))) (-5 *1 (-1014 *4)))))
-(-10 -7 (-15 -2272 ((-621 (-1143)) (-400 (-923 |#1|)))) (-15 -1520 ((-3 (-1143) "failed") (-400 (-923 |#1|)))) (-15 -2084 ((-400 (-1139 (-400 (-923 |#1|)))) (-400 (-923 |#1|)) (-1143))) (-15 -2261 ((-400 (-923 |#1|)) (-400 (-1139 (-400 (-923 |#1|)))) (-1143))) (-15 -2686 ((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-1143) (-400 (-923 |#1|)))) (-15 -2686 ((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-621 (-1143)) (-621 (-400 (-923 |#1|))))) (-15 -2686 ((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))))) (-15 -2686 ((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-621 (-287 (-400 (-923 |#1|)))))) (-15 -3846 ((-400 (-923 |#1|)) |#1|)))
-((-3834 (((-112) $ $) NIL)) (-3514 (((-621 (-2 (|:| -2681 $) (|:| -1359 (-621 (-756 |#1| (-836 |#2|)))))) (-621 (-756 |#1| (-836 |#2|)))) NIL)) (-2866 (((-621 $) (-621 (-756 |#1| (-836 |#2|)))) NIL) (((-621 $) (-621 (-756 |#1| (-836 |#2|))) (-112)) NIL) (((-621 $) (-621 (-756 |#1| (-836 |#2|))) (-112) (-112)) NIL)) (-2272 (((-621 (-836 |#2|)) $) NIL)) (-3422 (((-112) $) NIL)) (-2527 (((-112) $) NIL (|has| |#1| (-541)))) (-3282 (((-112) (-756 |#1| (-836 |#2|)) $) NIL) (((-112) $) NIL)) (-2731 (((-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) $) NIL)) (-3979 (((-621 (-2 (|:| |val| (-756 |#1| (-836 |#2|))) (|:| -1981 $))) (-756 |#1| (-836 |#2|)) $) NIL)) (-3193 (((-2 (|:| |under| $) (|:| -3967 $) (|:| |upper| $)) $ (-836 |#2|)) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-1489 (($ (-1 (-112) (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-3 (-756 |#1| (-836 |#2|)) "failed") $ (-836 |#2|)) NIL)) (-1682 (($) NIL T CONST)) (-1433 (((-112) $) NIL (|has| |#1| (-541)))) (-2555 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2595 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2397 (((-112) $) NIL (|has| |#1| (-541)))) (-2737 (((-621 (-756 |#1| (-836 |#2|))) (-621 (-756 |#1| (-836 |#2|))) $ (-1 (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) (-1 (-112) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)))) NIL)) (-3269 (((-621 (-756 |#1| (-836 |#2|))) (-621 (-756 |#1| (-836 |#2|))) $) NIL (|has| |#1| (-541)))) (-2953 (((-621 (-756 |#1| (-836 |#2|))) (-621 (-756 |#1| (-836 |#2|))) $) NIL (|has| |#1| (-541)))) (-2714 (((-3 $ "failed") (-621 (-756 |#1| (-836 |#2|)))) NIL)) (-2659 (($ (-621 (-756 |#1| (-836 |#2|)))) NIL)) (-3657 (((-3 $ "failed") $) NIL)) (-1903 (((-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) $) NIL)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-756 |#1| (-836 |#2|)) (-1067))))) (-3812 (($ (-756 |#1| (-836 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-756 |#1| (-836 |#2|)) (-1067)))) (($ (-1 (-112) (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-3675 (((-2 (|:| |rnum| |#1|) (|:| |polnum| (-756 |#1| (-836 |#2|))) (|:| |den| |#1|)) (-756 |#1| (-836 |#2|)) $) NIL (|has| |#1| (-541)))) (-2217 (((-112) (-756 |#1| (-836 |#2|)) $ (-1 (-112) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)))) NIL)) (-3615 (((-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) $) NIL)) (-2557 (((-756 |#1| (-836 |#2|)) (-1 (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) $ (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) NIL (-12 (|has| $ (-6 -4337)) (|has| (-756 |#1| (-836 |#2|)) (-1067)))) (((-756 |#1| (-836 |#2|)) (-1 (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) $ (-756 |#1| (-836 |#2|))) NIL (|has| $ (-6 -4337))) (((-756 |#1| (-836 |#2|)) (-1 (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) $ (-1 (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) (-1 (-112) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)))) NIL)) (-1439 (((-2 (|:| -2681 (-621 (-756 |#1| (-836 |#2|)))) (|:| -1359 (-621 (-756 |#1| (-836 |#2|))))) $) NIL)) (-3516 (((-112) (-756 |#1| (-836 |#2|)) $) NIL)) (-3150 (((-112) (-756 |#1| (-836 |#2|)) $) NIL)) (-2064 (((-112) (-756 |#1| (-836 |#2|)) $) NIL) (((-112) $) NIL)) (-2989 (((-621 (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2812 (((-112) (-756 |#1| (-836 |#2|)) $) NIL) (((-112) $) NIL)) (-2745 (((-836 |#2|) $) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-756 |#1| (-836 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-756 |#1| (-836 |#2|)) (-1067))))) (-1868 (($ (-1 (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) $) NIL)) (-2561 (((-621 (-836 |#2|)) $) NIL)) (-2378 (((-112) (-836 |#2|) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL)) (-1878 (((-3 (-756 |#1| (-836 |#2|)) (-621 $)) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) $) NIL)) (-3072 (((-621 (-2 (|:| |val| (-756 |#1| (-836 |#2|))) (|:| -1981 $))) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) $) NIL)) (-3829 (((-3 (-756 |#1| (-836 |#2|)) "failed") $) NIL)) (-3689 (((-621 $) (-756 |#1| (-836 |#2|)) $) NIL)) (-1514 (((-3 (-112) (-621 $)) (-756 |#1| (-836 |#2|)) $) NIL)) (-4184 (((-621 (-2 (|:| |val| (-112)) (|:| -1981 $))) (-756 |#1| (-836 |#2|)) $) NIL) (((-112) (-756 |#1| (-836 |#2|)) $) NIL)) (-3655 (((-621 $) (-756 |#1| (-836 |#2|)) $) NIL) (((-621 $) (-621 (-756 |#1| (-836 |#2|))) $) NIL) (((-621 $) (-621 (-756 |#1| (-836 |#2|))) (-621 $)) NIL) (((-621 $) (-756 |#1| (-836 |#2|)) (-621 $)) NIL)) (-4283 (($ (-756 |#1| (-836 |#2|)) $) NIL) (($ (-621 (-756 |#1| (-836 |#2|))) $) NIL)) (-1638 (((-621 (-756 |#1| (-836 |#2|))) $) NIL)) (-2170 (((-112) (-756 |#1| (-836 |#2|)) $) NIL) (((-112) $) NIL)) (-3270 (((-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) $) NIL)) (-2473 (((-112) $ $) NIL)) (-4203 (((-2 (|:| |num| (-756 |#1| (-836 |#2|))) (|:| |den| |#1|)) (-756 |#1| (-836 |#2|)) $) NIL (|has| |#1| (-541)))) (-1335 (((-112) (-756 |#1| (-836 |#2|)) $) NIL) (((-112) $) NIL)) (-4298 (((-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) $) NIL)) (-3990 (((-1087) $) NIL)) (-3646 (((-3 (-756 |#1| (-836 |#2|)) "failed") $) NIL)) (-3779 (((-3 (-756 |#1| (-836 |#2|)) "failed") (-1 (-112) (-756 |#1| (-836 |#2|))) $) NIL)) (-2640 (((-3 $ "failed") $ (-756 |#1| (-836 |#2|))) NIL)) (-2763 (($ $ (-756 |#1| (-836 |#2|))) NIL) (((-621 $) (-756 |#1| (-836 |#2|)) $) NIL) (((-621 $) (-756 |#1| (-836 |#2|)) (-621 $)) NIL) (((-621 $) (-621 (-756 |#1| (-836 |#2|))) $) NIL) (((-621 $) (-621 (-756 |#1| (-836 |#2|))) (-621 $)) NIL)) (-1780 (((-112) (-1 (-112) (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-756 |#1| (-836 |#2|))) (-621 (-756 |#1| (-836 |#2|)))) NIL (-12 (|has| (-756 |#1| (-836 |#2|)) (-302 (-756 |#1| (-836 |#2|)))) (|has| (-756 |#1| (-836 |#2|)) (-1067)))) (($ $ (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) NIL (-12 (|has| (-756 |#1| (-836 |#2|)) (-302 (-756 |#1| (-836 |#2|)))) (|has| (-756 |#1| (-836 |#2|)) (-1067)))) (($ $ (-287 (-756 |#1| (-836 |#2|)))) NIL (-12 (|has| (-756 |#1| (-836 |#2|)) (-302 (-756 |#1| (-836 |#2|)))) (|has| (-756 |#1| (-836 |#2|)) (-1067)))) (($ $ (-621 (-287 (-756 |#1| (-836 |#2|))))) NIL (-12 (|has| (-756 |#1| (-836 |#2|)) (-302 (-756 |#1| (-836 |#2|)))) (|has| (-756 |#1| (-836 |#2|)) (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3701 (((-747) $) NIL)) (-4000 (((-747) (-756 |#1| (-836 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-756 |#1| (-836 |#2|)) (-1067)))) (((-747) (-1 (-112) (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| (-756 |#1| (-836 |#2|)) (-594 (-525))))) (-3854 (($ (-621 (-756 |#1| (-836 |#2|)))) NIL)) (-2858 (($ $ (-836 |#2|)) NIL)) (-3758 (($ $ (-836 |#2|)) NIL)) (-1962 (($ $) NIL)) (-4317 (($ $ (-836 |#2|)) NIL)) (-3846 (((-834) $) NIL) (((-621 (-756 |#1| (-836 |#2|))) $) NIL)) (-1824 (((-747) $) NIL (|has| (-836 |#2|) (-361)))) (-2574 (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 (-756 |#1| (-836 |#2|))))) "failed") (-621 (-756 |#1| (-836 |#2|))) (-1 (-112) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)))) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 (-756 |#1| (-836 |#2|))))) "failed") (-621 (-756 |#1| (-836 |#2|))) (-1 (-112) (-756 |#1| (-836 |#2|))) (-1 (-112) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)))) NIL)) (-1716 (((-112) $ (-1 (-112) (-756 |#1| (-836 |#2|)) (-621 (-756 |#1| (-836 |#2|))))) NIL)) (-1518 (((-621 $) (-756 |#1| (-836 |#2|)) $) NIL) (((-621 $) (-756 |#1| (-836 |#2|)) (-621 $)) NIL) (((-621 $) (-621 (-756 |#1| (-836 |#2|))) $) NIL) (((-621 $) (-621 (-756 |#1| (-836 |#2|))) (-621 $)) NIL)) (-3527 (((-112) (-1 (-112) (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-3002 (((-621 (-836 |#2|)) $) NIL)) (-3524 (((-112) (-756 |#1| (-836 |#2|)) $) NIL)) (-1606 (((-112) (-836 |#2|) $) NIL)) (-2389 (((-112) $ $) NIL)) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-1015 |#1| |#2|) (-13 (-1038 |#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|))) (-10 -8 (-15 -2866 ((-621 $) (-621 (-756 |#1| (-836 |#2|))) (-112) (-112))))) (-444) (-621 (-1143))) (T -1015))
-((-2866 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444)) (-14 *6 (-621 (-1143))) (-5 *2 (-621 (-1015 *5 *6))) (-5 *1 (-1015 *5 *6)))))
-(-13 (-1038 |#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|))) (-10 -8 (-15 -2866 ((-621 $) (-621 (-756 |#1| (-836 |#2|))) (-112) (-112)))))
-((-1950 (((-1 (-549)) (-1061 (-549))) 33)) (-1746 (((-549) (-549) (-549) (-549) (-549)) 30)) (-2112 (((-1 (-549)) |RationalNumber|) NIL)) (-4314 (((-1 (-549)) |RationalNumber|) NIL)) (-3179 (((-1 (-549)) (-549) |RationalNumber|) NIL)))
-(((-1016) (-10 -7 (-15 -1950 ((-1 (-549)) (-1061 (-549)))) (-15 -3179 ((-1 (-549)) (-549) |RationalNumber|)) (-15 -2112 ((-1 (-549)) |RationalNumber|)) (-15 -4314 ((-1 (-549)) |RationalNumber|)) (-15 -1746 ((-549) (-549) (-549) (-549) (-549))))) (T -1016))
-((-1746 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1016)))) (-4314 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-549))) (-5 *1 (-1016)))) (-2112 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-549))) (-5 *1 (-1016)))) (-3179 (*1 *2 *3 *4) (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-549))) (-5 *1 (-1016)) (-5 *3 (-549)))) (-1950 (*1 *2 *3) (-12 (-5 *3 (-1061 (-549))) (-5 *2 (-1 (-549))) (-5 *1 (-1016)))))
-(-10 -7 (-15 -1950 ((-1 (-549)) (-1061 (-549)))) (-15 -3179 ((-1 (-549)) (-549) |RationalNumber|)) (-15 -2112 ((-1 (-549)) |RationalNumber|)) (-15 -4314 ((-1 (-549)) |RationalNumber|)) (-15 -1746 ((-549) (-549) (-549) (-549) (-549))))
-((-3846 (((-834) $) NIL) (($ (-549)) 10)))
-(((-1017 |#1|) (-10 -8 (-15 -3846 (|#1| (-549))) (-15 -3846 ((-834) |#1|))) (-1018)) (T -1017))
-NIL
-(-10 -8 (-15 -3846 (|#1| (-549))) (-15 -3846 ((-834) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11) (($ (-549)) 27)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+((-2310 (((-621 (-372)) (-923 (-549)) (-372)) 28) (((-621 (-372)) (-923 (-400 (-549))) (-372)) 27)) (-1963 (((-621 (-621 (-372))) (-621 (-923 (-549))) (-621 (-1142)) (-372)) 37)))
+(((-994) (-10 -7 (-15 -2310 ((-621 (-372)) (-923 (-400 (-549))) (-372))) (-15 -2310 ((-621 (-372)) (-923 (-549)) (-372))) (-15 -1963 ((-621 (-621 (-372))) (-621 (-923 (-549))) (-621 (-1142)) (-372))))) (T -994))
+((-1963 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-621 (-1142))) (-5 *2 (-621 (-621 (-372)))) (-5 *1 (-994)) (-5 *5 (-372)))) (-2310 (*1 *2 *3 *4) (-12 (-5 *3 (-923 (-549))) (-5 *2 (-621 (-372))) (-5 *1 (-994)) (-5 *4 (-372)))) (-2310 (*1 *2 *3 *4) (-12 (-5 *3 (-923 (-400 (-549)))) (-5 *2 (-621 (-372))) (-5 *1 (-994)) (-5 *4 (-372)))))
+(-10 -7 (-15 -2310 ((-621 (-372)) (-923 (-400 (-549))) (-372))) (-15 -2310 ((-621 (-372)) (-923 (-549)) (-372))) (-15 -1963 ((-621 (-621 (-372))) (-621 (-923 (-549))) (-621 (-1142)) (-372))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 70)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2132 (($ $) NIL) (($ $ (-892)) NIL) (($ (-400 (-549))) NIL) (($ (-549)) NIL)) (-2680 (((-112) $ $) NIL)) (-1741 (((-549) $) 65)) (-3034 (($) NIL T CONST)) (-2406 (((-3 $ "failed") (-1138 $) (-892) (-834)) NIL) (((-3 $ "failed") (-1138 $) (-892)) 50)) (-2712 (((-3 (-400 (-549)) "failed") $) NIL (|has| (-400 (-549)) (-1009 (-400 (-549))))) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 |#1| "failed") $) 107) (((-3 (-549) "failed") $) NIL (-1536 (|has| (-400 (-549)) (-1009 (-549))) (|has| |#1| (-1009 (-549)))))) (-2657 (((-400 (-549)) $) 15 (|has| (-400 (-549)) (-1009 (-400 (-549))))) (((-400 (-549)) $) 15) ((|#1| $) 108) (((-549) $) NIL (-1536 (|has| (-400 (-549)) (-1009 (-549))) (|has| |#1| (-1009 (-549)))))) (-1353 (($ $ (-834)) 42)) (-1523 (($ $ (-834)) 43)) (-2091 (($ $ $) NIL)) (-3351 (((-400 (-549)) $ $) 19)) (-2612 (((-3 $ "failed") $) 83)) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-2357 (((-112) $) 61)) (-2297 (((-112) $) NIL)) (-3621 (($ $ (-549)) NIL)) (-1992 (((-112) $) 64)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-4078 (((-3 (-1138 $) "failed") $) 78)) (-1905 (((-3 (-834) "failed") $) 77)) (-2338 (((-3 (-1138 $) "failed") $) 75)) (-2586 (((-3 (-1028 $ (-1138 $)) "failed") $) 73)) (-3696 (($ (-621 $)) NIL) (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 84)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ (-621 $)) NIL) (($ $ $) NIL)) (-2119 (((-411 $) $) NIL)) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3845 (((-834) $) 82) (($ (-549)) NIL) (($ (-400 (-549))) NIL) (($ $) 58) (($ (-400 (-549))) NIL) (($ (-549)) NIL) (($ (-400 (-549))) NIL) (($ |#1|) 110)) (-2371 (((-747)) NIL)) (-2441 (((-112) $ $) NIL)) (-2659 (((-400 (-549)) $ $) 25)) (-2229 (((-621 $) (-1138 $)) 56) (((-621 $) (-1138 (-400 (-549)))) NIL) (((-621 $) (-1138 (-549))) NIL) (((-621 $) (-923 $)) NIL) (((-621 $) (-923 (-400 (-549)))) NIL) (((-621 $) (-923 (-549))) NIL)) (-4084 (($ (-1028 $ (-1138 $)) (-834)) 41)) (-2199 (($ $) 20)) (-3274 (($) 29 T CONST)) (-3286 (($) 35 T CONST)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 71)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 22)) (-2511 (($ $ $) 33)) (-2498 (($ $) 34) (($ $ $) 69)) (-2484 (($ $ $) 103)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL) (($ $ (-400 (-549))) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 91) (($ $ $) 96) (($ (-400 (-549)) $) NIL) (($ $ (-400 (-549))) NIL) (($ (-549) $) 91) (($ $ (-549)) NIL) (($ (-400 (-549)) $) NIL) (($ $ (-400 (-549))) NIL) (($ |#1| $) 95) (($ $ |#1|) NIL)))
+(((-995 |#1|) (-13 (-983) (-404 |#1|) (-38 |#1|) (-10 -8 (-15 -4084 ($ (-1028 $ (-1138 $)) (-834))) (-15 -2586 ((-3 (-1028 $ (-1138 $)) "failed") $)) (-15 -3351 ((-400 (-549)) $ $)))) (-13 (-821) (-356) (-993))) (T -995))
+((-4084 (*1 *1 *2 *3) (-12 (-5 *2 (-1028 (-995 *4) (-1138 (-995 *4)))) (-5 *3 (-834)) (-5 *1 (-995 *4)) (-4 *4 (-13 (-821) (-356) (-993))))) (-2586 (*1 *2 *1) (|partial| -12 (-5 *2 (-1028 (-995 *3) (-1138 (-995 *3)))) (-5 *1 (-995 *3)) (-4 *3 (-13 (-821) (-356) (-993))))) (-3351 (*1 *2 *1 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-995 *3)) (-4 *3 (-13 (-821) (-356) (-993))))))
+(-13 (-983) (-404 |#1|) (-38 |#1|) (-10 -8 (-15 -4084 ($ (-1028 $ (-1138 $)) (-834))) (-15 -2586 ((-3 (-1028 $ (-1138 $)) "failed") $)) (-15 -3351 ((-400 (-549)) $ $))))
+((-2225 (((-2 (|:| -2649 |#2|) (|:| -2718 (-621 |#1|))) |#2| (-621 |#1|)) 20) ((|#2| |#2| |#1|) 15)))
+(((-996 |#1| |#2|) (-10 -7 (-15 -2225 (|#2| |#2| |#1|)) (-15 -2225 ((-2 (|:| -2649 |#2|) (|:| -2718 (-621 |#1|))) |#2| (-621 |#1|)))) (-356) (-632 |#1|)) (T -996))
+((-2225 (*1 *2 *3 *4) (-12 (-4 *5 (-356)) (-5 *2 (-2 (|:| -2649 *3) (|:| -2718 (-621 *5)))) (-5 *1 (-996 *5 *3)) (-5 *4 (-621 *5)) (-4 *3 (-632 *5)))) (-2225 (*1 *2 *2 *3) (-12 (-4 *3 (-356)) (-5 *1 (-996 *3 *2)) (-4 *2 (-632 *3)))))
+(-10 -7 (-15 -2225 (|#2| |#2| |#1|)) (-15 -2225 ((-2 (|:| -2649 |#2|) (|:| -2718 (-621 |#1|))) |#2| (-621 |#1|))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-4261 ((|#1| $ |#1|) 14)) (-2250 ((|#1| $ |#1|) 12)) (-3877 (($ |#1|) 10)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3339 ((|#1| $) 11)) (-1537 ((|#1| $) 13)) (-3845 (((-834) $) 21 (|has| |#1| (-1066)))) (-2387 (((-112) $ $) 9)))
+(((-997 |#1|) (-13 (-1179) (-10 -8 (-15 -3877 ($ |#1|)) (-15 -3339 (|#1| $)) (-15 -2250 (|#1| $ |#1|)) (-15 -1537 (|#1| $)) (-15 -4261 (|#1| $ |#1|)) (-15 -2387 ((-112) $ $)) (IF (|has| |#1| (-1066)) (-6 (-1066)) |%noBranch|))) (-1179)) (T -997))
+((-3877 (*1 *1 *2) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1179)))) (-3339 (*1 *2 *1) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1179)))) (-2250 (*1 *2 *1 *2) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1179)))) (-1537 (*1 *2 *1) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1179)))) (-4261 (*1 *2 *1 *2) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1179)))) (-2387 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-997 *3)) (-4 *3 (-1179)))))
+(-13 (-1179) (-10 -8 (-15 -3877 ($ |#1|)) (-15 -3339 (|#1| $)) (-15 -2250 (|#1| $ |#1|)) (-15 -1537 (|#1| $)) (-15 -4261 (|#1| $ |#1|)) (-15 -2387 ((-112) $ $)) (IF (|has| |#1| (-1066)) (-6 (-1066)) |%noBranch|)))
+((-3832 (((-112) $ $) NIL)) (-4063 (((-621 (-2 (|:| -2679 $) (|:| -1358 (-621 |#4|)))) (-621 |#4|)) NIL)) (-3587 (((-621 $) (-621 |#4|)) 105) (((-621 $) (-621 |#4|) (-112)) 106) (((-621 $) (-621 |#4|) (-112) (-112)) 104) (((-621 $) (-621 |#4|) (-112) (-112) (-112) (-112)) 107)) (-2270 (((-621 |#3|) $) NIL)) (-3735 (((-112) $) NIL)) (-2148 (((-112) $) NIL (|has| |#1| (-541)))) (-2210 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2156 ((|#4| |#4| $) NIL)) (-3239 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 $))) |#4| $) 99)) (-3191 (((-2 (|:| |under| $) (|:| -1349 $) (|:| |upper| $)) $ |#3|) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-1488 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336))) (((-3 |#4| "failed") $ |#3|) 54)) (-3034 (($) NIL T CONST)) (-4291 (((-112) $) 26 (|has| |#1| (-541)))) (-1663 (((-112) $ $) NIL (|has| |#1| (-541)))) (-4226 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2113 (((-112) $) NIL (|has| |#1| (-541)))) (-1409 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3480 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2393 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2712 (((-3 $ "failed") (-621 |#4|)) NIL)) (-2657 (($ (-621 |#4|)) NIL)) (-3656 (((-3 $ "failed") $) 39)) (-1852 ((|#4| |#4| $) 57)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066))))) (-3812 (($ |#4| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-1809 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 73 (|has| |#1| (-541)))) (-1804 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-1402 ((|#4| |#4| $) NIL)) (-2556 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4336))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4336))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3862 (((-2 (|:| -2679 (-621 |#4|)) (|:| -1358 (-621 |#4|))) $) NIL)) (-4267 (((-112) |#4| $) NIL)) (-2553 (((-112) |#4| $) NIL)) (-3504 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4138 (((-2 (|:| |val| (-621 |#4|)) (|:| |towers| (-621 $))) (-621 |#4|) (-112) (-112)) 119)) (-2987 (((-621 |#4|) $) 16 (|has| $ (-6 -4336)))) (-2240 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2510 ((|#3| $) 33)) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 |#4|) $) 17 (|has| $ (-6 -4336)))) (-1593 (((-112) |#4| $) 25 (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066))))) (-1864 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#4| |#4|) $) 21)) (-3991 (((-621 |#3|) $) NIL)) (-4192 (((-112) |#3| $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL)) (-4246 (((-3 |#4| (-621 $)) |#4| |#4| $) NIL)) (-3402 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 $))) |#4| |#4| $) 97)) (-3828 (((-3 |#4| "failed") $) 37)) (-2114 (((-621 $) |#4| $) 80)) (-3219 (((-3 (-112) (-621 $)) |#4| $) NIL)) (-3287 (((-621 (-2 (|:| |val| (-112)) (|:| -1979 $))) |#4| $) 90) (((-112) |#4| $) 52)) (-3869 (((-621 $) |#4| $) 102) (((-621 $) (-621 |#4|) $) NIL) (((-621 $) (-621 |#4|) (-621 $)) 103) (((-621 $) |#4| (-621 $)) NIL)) (-3203 (((-621 $) (-621 |#4|) (-112) (-112) (-112)) 114)) (-2214 (($ |#4| $) 70) (($ (-621 |#4|) $) 71) (((-621 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 67)) (-1645 (((-621 |#4|) $) NIL)) (-1304 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3603 ((|#4| |#4| $) NIL)) (-3386 (((-112) $ $) NIL)) (-2179 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-541)))) (-4122 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4244 ((|#4| |#4| $) NIL)) (-3988 (((-1086) $) NIL)) (-3645 (((-3 |#4| "failed") $) 35)) (-3959 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1505 (((-3 $ "failed") $ |#4|) 48)) (-3796 (($ $ |#4|) NIL) (((-621 $) |#4| $) 82) (((-621 $) |#4| (-621 $)) NIL) (((-621 $) (-621 |#4|) $) NIL) (((-621 $) (-621 |#4|) (-621 $)) 77)) (-3360 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 |#4|) (-621 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-287 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-621 (-287 |#4|))) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) 15)) (-3288 (($) 13)) (-3977 (((-747) $) NIL)) (-3997 (((-747) |#4| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066)))) (((-747) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) 12)) (-2843 (((-525) $) NIL (|has| |#4| (-594 (-525))))) (-3853 (($ (-621 |#4|)) 20)) (-4085 (($ $ |#3|) 42)) (-2195 (($ $ |#3|) 44)) (-4292 (($ $) NIL)) (-4285 (($ $ |#3|) NIL)) (-3845 (((-834) $) 31) (((-621 |#4|) $) 40)) (-2503 (((-747) $) NIL (|has| |#3| (-361)))) (-2940 (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3760 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) NIL)) (-2008 (((-621 $) |#4| $) 79) (((-621 $) |#4| (-621 $)) NIL) (((-621 $) (-621 |#4|) $) NIL) (((-621 $) (-621 |#4|) (-621 $)) NIL)) (-3025 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-4044 (((-621 |#3|) $) NIL)) (-2930 (((-112) |#4| $) NIL)) (-1993 (((-112) |#3| $) 53)) (-2387 (((-112) $ $) NIL)) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-998 |#1| |#2| |#3| |#4|) (-13 (-1038 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2214 ((-621 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -3587 ((-621 $) (-621 |#4|) (-112) (-112))) (-15 -3587 ((-621 $) (-621 |#4|) (-112) (-112) (-112) (-112))) (-15 -3203 ((-621 $) (-621 |#4|) (-112) (-112) (-112))) (-15 -4138 ((-2 (|:| |val| (-621 |#4|)) (|:| |towers| (-621 $))) (-621 |#4|) (-112) (-112))))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|)) (T -998))
+((-2214 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 (-998 *5 *6 *7 *3))) (-5 *1 (-998 *5 *6 *7 *3)) (-4 *3 (-1032 *5 *6 *7)))) (-3587 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 (-998 *5 *6 *7 *8))) (-5 *1 (-998 *5 *6 *7 *8)))) (-3587 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 (-998 *5 *6 *7 *8))) (-5 *1 (-998 *5 *6 *7 *8)))) (-3203 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 (-998 *5 *6 *7 *8))) (-5 *1 (-998 *5 *6 *7 *8)))) (-4138 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-621 *8)) (|:| |towers| (-621 (-998 *5 *6 *7 *8))))) (-5 *1 (-998 *5 *6 *7 *8)) (-5 *3 (-621 *8)))))
+(-13 (-1038 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2214 ((-621 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -3587 ((-621 $) (-621 |#4|) (-112) (-112))) (-15 -3587 ((-621 $) (-621 |#4|) (-112) (-112) (-112) (-112))) (-15 -3203 ((-621 $) (-621 |#4|) (-112) (-112) (-112))) (-15 -4138 ((-2 (|:| |val| (-621 |#4|)) (|:| |towers| (-621 $))) (-621 |#4|) (-112) (-112)))))
+((-1764 (((-621 (-665 |#1|)) (-621 (-665 |#1|))) 58) (((-665 |#1|) (-665 |#1|)) 57) (((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-621 (-665 |#1|))) 56) (((-665 |#1|) (-665 |#1|) (-665 |#1|)) 53)) (-1620 (((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-892)) 52) (((-665 |#1|) (-665 |#1|) (-892)) 51)) (-4149 (((-621 (-665 (-549))) (-621 (-621 (-549)))) 68) (((-621 (-665 (-549))) (-621 (-876 (-549))) (-549)) 67) (((-665 (-549)) (-621 (-549))) 64) (((-665 (-549)) (-876 (-549)) (-549)) 63)) (-1583 (((-665 (-923 |#1|)) (-747)) 81)) (-2402 (((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-892)) 37 (|has| |#1| (-6 (-4338 "*")))) (((-665 |#1|) (-665 |#1|) (-892)) 35 (|has| |#1| (-6 (-4338 "*"))))))
+(((-999 |#1|) (-10 -7 (IF (|has| |#1| (-6 (-4338 "*"))) (-15 -2402 ((-665 |#1|) (-665 |#1|) (-892))) |%noBranch|) (IF (|has| |#1| (-6 (-4338 "*"))) (-15 -2402 ((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-892))) |%noBranch|) (-15 -1583 ((-665 (-923 |#1|)) (-747))) (-15 -1620 ((-665 |#1|) (-665 |#1|) (-892))) (-15 -1620 ((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-892))) (-15 -1764 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -1764 ((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-621 (-665 |#1|)))) (-15 -1764 ((-665 |#1|) (-665 |#1|))) (-15 -1764 ((-621 (-665 |#1|)) (-621 (-665 |#1|)))) (-15 -4149 ((-665 (-549)) (-876 (-549)) (-549))) (-15 -4149 ((-665 (-549)) (-621 (-549)))) (-15 -4149 ((-621 (-665 (-549))) (-621 (-876 (-549))) (-549))) (-15 -4149 ((-621 (-665 (-549))) (-621 (-621 (-549)))))) (-1018)) (T -999))
+((-4149 (*1 *2 *3) (-12 (-5 *3 (-621 (-621 (-549)))) (-5 *2 (-621 (-665 (-549)))) (-5 *1 (-999 *4)) (-4 *4 (-1018)))) (-4149 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-876 (-549)))) (-5 *4 (-549)) (-5 *2 (-621 (-665 *4))) (-5 *1 (-999 *5)) (-4 *5 (-1018)))) (-4149 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-665 (-549))) (-5 *1 (-999 *4)) (-4 *4 (-1018)))) (-4149 (*1 *2 *3 *4) (-12 (-5 *3 (-876 (-549))) (-5 *4 (-549)) (-5 *2 (-665 *4)) (-5 *1 (-999 *5)) (-4 *5 (-1018)))) (-1764 (*1 *2 *2) (-12 (-5 *2 (-621 (-665 *3))) (-4 *3 (-1018)) (-5 *1 (-999 *3)))) (-1764 (*1 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-999 *3)))) (-1764 (*1 *2 *2 *2) (-12 (-5 *2 (-621 (-665 *3))) (-4 *3 (-1018)) (-5 *1 (-999 *3)))) (-1764 (*1 *2 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-999 *3)))) (-1620 (*1 *2 *2 *3) (-12 (-5 *2 (-621 (-665 *4))) (-5 *3 (-892)) (-4 *4 (-1018)) (-5 *1 (-999 *4)))) (-1620 (*1 *2 *2 *3) (-12 (-5 *2 (-665 *4)) (-5 *3 (-892)) (-4 *4 (-1018)) (-5 *1 (-999 *4)))) (-1583 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-665 (-923 *4))) (-5 *1 (-999 *4)) (-4 *4 (-1018)))) (-2402 (*1 *2 *2 *3) (-12 (-5 *2 (-621 (-665 *4))) (-5 *3 (-892)) (|has| *4 (-6 (-4338 "*"))) (-4 *4 (-1018)) (-5 *1 (-999 *4)))) (-2402 (*1 *2 *2 *3) (-12 (-5 *2 (-665 *4)) (-5 *3 (-892)) (|has| *4 (-6 (-4338 "*"))) (-4 *4 (-1018)) (-5 *1 (-999 *4)))))
+(-10 -7 (IF (|has| |#1| (-6 (-4338 "*"))) (-15 -2402 ((-665 |#1|) (-665 |#1|) (-892))) |%noBranch|) (IF (|has| |#1| (-6 (-4338 "*"))) (-15 -2402 ((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-892))) |%noBranch|) (-15 -1583 ((-665 (-923 |#1|)) (-747))) (-15 -1620 ((-665 |#1|) (-665 |#1|) (-892))) (-15 -1620 ((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-892))) (-15 -1764 ((-665 |#1|) (-665 |#1|) (-665 |#1|))) (-15 -1764 ((-621 (-665 |#1|)) (-621 (-665 |#1|)) (-621 (-665 |#1|)))) (-15 -1764 ((-665 |#1|) (-665 |#1|))) (-15 -1764 ((-621 (-665 |#1|)) (-621 (-665 |#1|)))) (-15 -4149 ((-665 (-549)) (-876 (-549)) (-549))) (-15 -4149 ((-665 (-549)) (-621 (-549)))) (-15 -4149 ((-621 (-665 (-549))) (-621 (-876 (-549))) (-549))) (-15 -4149 ((-621 (-665 (-549))) (-621 (-621 (-549))))))
+((-1953 (((-665 |#1|) (-621 (-665 |#1|)) (-1225 |#1|)) 50 (|has| |#1| (-300)))) (-3506 (((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-1225 (-1225 |#1|))) 76 (|has| |#1| (-356))) (((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-1225 |#1|)) 79 (|has| |#1| (-356)))) (-2081 (((-1225 |#1|) (-621 (-1225 |#1|)) (-549)) 93 (-12 (|has| |#1| (-356)) (|has| |#1| (-361))))) (-1900 (((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-892)) 85 (-12 (|has| |#1| (-356)) (|has| |#1| (-361)))) (((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-112)) 83 (-12 (|has| |#1| (-356)) (|has| |#1| (-361)))) (((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|))) 82 (-12 (|has| |#1| (-356)) (|has| |#1| (-361)))) (((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-112) (-549) (-549)) 81 (-12 (|has| |#1| (-356)) (|has| |#1| (-361))))) (-2138 (((-112) (-621 (-665 |#1|))) 71 (|has| |#1| (-356))) (((-112) (-621 (-665 |#1|)) (-549)) 73 (|has| |#1| (-356)))) (-2780 (((-1225 (-1225 |#1|)) (-621 (-665 |#1|)) (-1225 |#1|)) 48 (|has| |#1| (-300)))) (-2726 (((-665 |#1|) (-621 (-665 |#1|)) (-665 |#1|)) 34)) (-1847 (((-665 |#1|) (-1225 (-1225 |#1|))) 31)) (-2818 (((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|)) (-549)) 65 (|has| |#1| (-356))) (((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|))) 64 (|has| |#1| (-356))) (((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|)) (-112) (-549)) 69 (|has| |#1| (-356)))))
+(((-1000 |#1|) (-10 -7 (-15 -1847 ((-665 |#1|) (-1225 (-1225 |#1|)))) (-15 -2726 ((-665 |#1|) (-621 (-665 |#1|)) (-665 |#1|))) (IF (|has| |#1| (-300)) (PROGN (-15 -2780 ((-1225 (-1225 |#1|)) (-621 (-665 |#1|)) (-1225 |#1|))) (-15 -1953 ((-665 |#1|) (-621 (-665 |#1|)) (-1225 |#1|)))) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-15 -2818 ((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|)) (-112) (-549))) (-15 -2818 ((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|)))) (-15 -2818 ((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|)) (-549))) (-15 -2138 ((-112) (-621 (-665 |#1|)) (-549))) (-15 -2138 ((-112) (-621 (-665 |#1|)))) (-15 -3506 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-1225 |#1|))) (-15 -3506 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-1225 (-1225 |#1|))))) |%noBranch|) (IF (|has| |#1| (-361)) (IF (|has| |#1| (-356)) (PROGN (-15 -1900 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-112) (-549) (-549))) (-15 -1900 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)))) (-15 -1900 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-112))) (-15 -1900 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-892))) (-15 -2081 ((-1225 |#1|) (-621 (-1225 |#1|)) (-549)))) |%noBranch|) |%noBranch|)) (-1018)) (T -1000))
+((-2081 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-1225 *5))) (-5 *4 (-549)) (-5 *2 (-1225 *5)) (-5 *1 (-1000 *5)) (-4 *5 (-356)) (-4 *5 (-361)) (-4 *5 (-1018)))) (-1900 (*1 *2 *3 *4) (-12 (-5 *4 (-892)) (-4 *5 (-356)) (-4 *5 (-361)) (-4 *5 (-1018)) (-5 *2 (-621 (-621 (-665 *5)))) (-5 *1 (-1000 *5)) (-5 *3 (-621 (-665 *5))))) (-1900 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-356)) (-4 *5 (-361)) (-4 *5 (-1018)) (-5 *2 (-621 (-621 (-665 *5)))) (-5 *1 (-1000 *5)) (-5 *3 (-621 (-665 *5))))) (-1900 (*1 *2 *3) (-12 (-4 *4 (-356)) (-4 *4 (-361)) (-4 *4 (-1018)) (-5 *2 (-621 (-621 (-665 *4)))) (-5 *1 (-1000 *4)) (-5 *3 (-621 (-665 *4))))) (-1900 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-112)) (-5 *5 (-549)) (-4 *6 (-356)) (-4 *6 (-361)) (-4 *6 (-1018)) (-5 *2 (-621 (-621 (-665 *6)))) (-5 *1 (-1000 *6)) (-5 *3 (-621 (-665 *6))))) (-3506 (*1 *2 *3 *4) (-12 (-5 *4 (-1225 (-1225 *5))) (-4 *5 (-356)) (-4 *5 (-1018)) (-5 *2 (-621 (-621 (-665 *5)))) (-5 *1 (-1000 *5)) (-5 *3 (-621 (-665 *5))))) (-3506 (*1 *2 *3 *4) (-12 (-5 *4 (-1225 *5)) (-4 *5 (-356)) (-4 *5 (-1018)) (-5 *2 (-621 (-621 (-665 *5)))) (-5 *1 (-1000 *5)) (-5 *3 (-621 (-665 *5))))) (-2138 (*1 *2 *3) (-12 (-5 *3 (-621 (-665 *4))) (-4 *4 (-356)) (-4 *4 (-1018)) (-5 *2 (-112)) (-5 *1 (-1000 *4)))) (-2138 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-665 *5))) (-5 *4 (-549)) (-4 *5 (-356)) (-4 *5 (-1018)) (-5 *2 (-112)) (-5 *1 (-1000 *5)))) (-2818 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-621 (-665 *5))) (-5 *4 (-549)) (-5 *2 (-665 *5)) (-5 *1 (-1000 *5)) (-4 *5 (-356)) (-4 *5 (-1018)))) (-2818 (*1 *2 *3 *3) (-12 (-5 *3 (-621 (-665 *4))) (-5 *2 (-665 *4)) (-5 *1 (-1000 *4)) (-4 *4 (-356)) (-4 *4 (-1018)))) (-2818 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-621 (-665 *6))) (-5 *4 (-112)) (-5 *5 (-549)) (-5 *2 (-665 *6)) (-5 *1 (-1000 *6)) (-4 *6 (-356)) (-4 *6 (-1018)))) (-1953 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-665 *5))) (-5 *4 (-1225 *5)) (-4 *5 (-300)) (-4 *5 (-1018)) (-5 *2 (-665 *5)) (-5 *1 (-1000 *5)))) (-2780 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-665 *5))) (-4 *5 (-300)) (-4 *5 (-1018)) (-5 *2 (-1225 (-1225 *5))) (-5 *1 (-1000 *5)) (-5 *4 (-1225 *5)))) (-2726 (*1 *2 *3 *2) (-12 (-5 *3 (-621 (-665 *4))) (-5 *2 (-665 *4)) (-4 *4 (-1018)) (-5 *1 (-1000 *4)))) (-1847 (*1 *2 *3) (-12 (-5 *3 (-1225 (-1225 *4))) (-4 *4 (-1018)) (-5 *2 (-665 *4)) (-5 *1 (-1000 *4)))))
+(-10 -7 (-15 -1847 ((-665 |#1|) (-1225 (-1225 |#1|)))) (-15 -2726 ((-665 |#1|) (-621 (-665 |#1|)) (-665 |#1|))) (IF (|has| |#1| (-300)) (PROGN (-15 -2780 ((-1225 (-1225 |#1|)) (-621 (-665 |#1|)) (-1225 |#1|))) (-15 -1953 ((-665 |#1|) (-621 (-665 |#1|)) (-1225 |#1|)))) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-15 -2818 ((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|)) (-112) (-549))) (-15 -2818 ((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|)))) (-15 -2818 ((-665 |#1|) (-621 (-665 |#1|)) (-621 (-665 |#1|)) (-549))) (-15 -2138 ((-112) (-621 (-665 |#1|)) (-549))) (-15 -2138 ((-112) (-621 (-665 |#1|)))) (-15 -3506 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-1225 |#1|))) (-15 -3506 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-1225 (-1225 |#1|))))) |%noBranch|) (IF (|has| |#1| (-361)) (IF (|has| |#1| (-356)) (PROGN (-15 -1900 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-112) (-549) (-549))) (-15 -1900 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)))) (-15 -1900 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-112))) (-15 -1900 ((-621 (-621 (-665 |#1|))) (-621 (-665 |#1|)) (-892))) (-15 -2081 ((-1225 |#1|) (-621 (-1225 |#1|)) (-549)))) |%noBranch|) |%noBranch|))
+((-4027 ((|#1| (-892) |#1|) 9)))
+(((-1001 |#1|) (-10 -7 (-15 -4027 (|#1| (-892) |#1|))) (-13 (-1066) (-10 -8 (-15 -2484 ($ $ $))))) (T -1001))
+((-4027 (*1 *2 *3 *2) (-12 (-5 *3 (-892)) (-5 *1 (-1001 *2)) (-4 *2 (-13 (-1066) (-10 -8 (-15 -2484 ($ $ $))))))))
+(-10 -7 (-15 -4027 (|#1| (-892) |#1|)))
+((-4299 (((-621 (-2 (|:| |radval| (-309 (-549))) (|:| |radmult| (-549)) (|:| |radvect| (-621 (-665 (-309 (-549))))))) (-665 (-400 (-923 (-549))))) 59)) (-2092 (((-621 (-665 (-309 (-549)))) (-309 (-549)) (-665 (-400 (-923 (-549))))) 48)) (-4305 (((-621 (-309 (-549))) (-665 (-400 (-923 (-549))))) 41)) (-3408 (((-621 (-665 (-309 (-549)))) (-665 (-400 (-923 (-549))))) 68)) (-3898 (((-665 (-309 (-549))) (-665 (-309 (-549)))) 34)) (-1334 (((-621 (-665 (-309 (-549)))) (-621 (-665 (-309 (-549))))) 62)) (-1654 (((-3 (-665 (-309 (-549))) "failed") (-665 (-400 (-923 (-549))))) 66)))
+(((-1002) (-10 -7 (-15 -4299 ((-621 (-2 (|:| |radval| (-309 (-549))) (|:| |radmult| (-549)) (|:| |radvect| (-621 (-665 (-309 (-549))))))) (-665 (-400 (-923 (-549)))))) (-15 -2092 ((-621 (-665 (-309 (-549)))) (-309 (-549)) (-665 (-400 (-923 (-549)))))) (-15 -4305 ((-621 (-309 (-549))) (-665 (-400 (-923 (-549)))))) (-15 -1654 ((-3 (-665 (-309 (-549))) "failed") (-665 (-400 (-923 (-549)))))) (-15 -3898 ((-665 (-309 (-549))) (-665 (-309 (-549))))) (-15 -1334 ((-621 (-665 (-309 (-549)))) (-621 (-665 (-309 (-549)))))) (-15 -3408 ((-621 (-665 (-309 (-549)))) (-665 (-400 (-923 (-549)))))))) (T -1002))
+((-3408 (*1 *2 *3) (-12 (-5 *3 (-665 (-400 (-923 (-549))))) (-5 *2 (-621 (-665 (-309 (-549))))) (-5 *1 (-1002)))) (-1334 (*1 *2 *2) (-12 (-5 *2 (-621 (-665 (-309 (-549))))) (-5 *1 (-1002)))) (-3898 (*1 *2 *2) (-12 (-5 *2 (-665 (-309 (-549)))) (-5 *1 (-1002)))) (-1654 (*1 *2 *3) (|partial| -12 (-5 *3 (-665 (-400 (-923 (-549))))) (-5 *2 (-665 (-309 (-549)))) (-5 *1 (-1002)))) (-4305 (*1 *2 *3) (-12 (-5 *3 (-665 (-400 (-923 (-549))))) (-5 *2 (-621 (-309 (-549)))) (-5 *1 (-1002)))) (-2092 (*1 *2 *3 *4) (-12 (-5 *4 (-665 (-400 (-923 (-549))))) (-5 *2 (-621 (-665 (-309 (-549))))) (-5 *1 (-1002)) (-5 *3 (-309 (-549))))) (-4299 (*1 *2 *3) (-12 (-5 *3 (-665 (-400 (-923 (-549))))) (-5 *2 (-621 (-2 (|:| |radval| (-309 (-549))) (|:| |radmult| (-549)) (|:| |radvect| (-621 (-665 (-309 (-549)))))))) (-5 *1 (-1002)))))
+(-10 -7 (-15 -4299 ((-621 (-2 (|:| |radval| (-309 (-549))) (|:| |radmult| (-549)) (|:| |radvect| (-621 (-665 (-309 (-549))))))) (-665 (-400 (-923 (-549)))))) (-15 -2092 ((-621 (-665 (-309 (-549)))) (-309 (-549)) (-665 (-400 (-923 (-549)))))) (-15 -4305 ((-621 (-309 (-549))) (-665 (-400 (-923 (-549)))))) (-15 -1654 ((-3 (-665 (-309 (-549))) "failed") (-665 (-400 (-923 (-549)))))) (-15 -3898 ((-665 (-309 (-549))) (-665 (-309 (-549))))) (-15 -1334 ((-621 (-665 (-309 (-549)))) (-621 (-665 (-309 (-549)))))) (-15 -3408 ((-621 (-665 (-309 (-549)))) (-665 (-400 (-923 (-549)))))))
+((-3447 ((|#1| |#1| (-892)) 9)))
+(((-1003 |#1|) (-10 -7 (-15 -3447 (|#1| |#1| (-892)))) (-13 (-1066) (-10 -8 (-15 * ($ $ $))))) (T -1003))
+((-3447 (*1 *2 *2 *3) (-12 (-5 *3 (-892)) (-5 *1 (-1003 *2)) (-4 *2 (-13 (-1066) (-10 -8 (-15 * ($ $ $))))))))
+(-10 -7 (-15 -3447 (|#1| |#1| (-892))))
+((-3845 ((|#1| (-305)) 11) (((-1230) |#1|) 9)))
+(((-1004 |#1|) (-10 -7 (-15 -3845 ((-1230) |#1|)) (-15 -3845 (|#1| (-305)))) (-1179)) (T -1004))
+((-3845 (*1 *2 *3) (-12 (-5 *3 (-305)) (-5 *1 (-1004 *2)) (-4 *2 (-1179)))) (-3845 (*1 *2 *3) (-12 (-5 *2 (-1230)) (-5 *1 (-1004 *3)) (-4 *3 (-1179)))))
+(-10 -7 (-15 -3845 ((-1230) |#1|)) (-15 -3845 (|#1| (-305))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2556 (($ |#4|) 25)) (-2612 (((-3 $ "failed") $) NIL)) (-2297 (((-112) $) NIL)) (-2545 ((|#4| $) 27)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 46) (($ (-549)) NIL) (($ |#1|) NIL) (($ |#4|) 26)) (-2371 (((-747)) 43)) (-3274 (($) 21 T CONST)) (-3286 (($) 23 T CONST)) (-2387 (((-112) $ $) 40)) (-2498 (($ $) 31) (($ $ $) NIL)) (-2484 (($ $ $) 29)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 36) (($ $ $) 33) (($ |#1| $) 38) (($ $ |#1|) NIL)))
+(((-1005 |#1| |#2| |#3| |#4| |#5|) (-13 (-170) (-38 |#1|) (-10 -8 (-15 -2556 ($ |#4|)) (-15 -3845 ($ |#4|)) (-15 -2545 (|#4| $)))) (-356) (-769) (-823) (-920 |#1| |#2| |#3|) (-621 |#4|)) (T -1005))
+((-2556 (*1 *1 *2) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-1005 *3 *4 *5 *2 *6)) (-4 *2 (-920 *3 *4 *5)) (-14 *6 (-621 *2)))) (-3845 (*1 *1 *2) (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-1005 *3 *4 *5 *2 *6)) (-4 *2 (-920 *3 *4 *5)) (-14 *6 (-621 *2)))) (-2545 (*1 *2 *1) (-12 (-4 *2 (-920 *3 *4 *5)) (-5 *1 (-1005 *3 *4 *5 *2 *6)) (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-14 *6 (-621 *2)))))
+(-13 (-170) (-38 |#1|) (-10 -8 (-15 -2556 ($ |#4|)) (-15 -3845 ($ |#4|)) (-15 -2545 (|#4| $))))
+((-3832 (((-112) $ $) NIL (-1536 (|has| (-52) (-1066)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066))))) (-3732 (($) NIL) (($ (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) NIL)) (-3659 (((-1230) $ (-1142) (-1142)) NIL (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) NIL)) (-2460 (((-112) (-112)) 39)) (-2500 (((-112) (-112)) 38)) (-2250 (((-52) $ (-1142) (-52)) NIL)) (-3827 (($ (-1 (-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336)))) (-3489 (((-3 (-52) "failed") (-1142) $) NIL)) (-3034 (($) NIL T CONST)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066))))) (-3546 (($ (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) $) NIL (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336))) (((-3 (-52) "failed") (-1142) $) NIL)) (-3812 (($ (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066)))) (($ (-1 (-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336)))) (-2556 (((-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $ (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066)))) (((-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $ (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) NIL (|has| $ (-6 -4336))) (((-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336)))) (-1875 (((-52) $ (-1142) (-52)) NIL (|has| $ (-6 -4337)))) (-1807 (((-52) $ (-1142)) NIL)) (-2987 (((-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336))) (((-621 (-52)) $) NIL (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-1142) $) NIL (|has| (-1142) (-823)))) (-3698 (((-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336))) (((-621 (-52)) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-52) (-1066))))) (-3063 (((-1142) $) NIL (|has| (-1142) (-823)))) (-1864 (($ (-1 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4337))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (-1536 (|has| (-52) (-1066)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066))))) (-3448 (((-621 (-1142)) $) 34)) (-2130 (((-112) (-1142) $) NIL)) (-2548 (((-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) $) NIL)) (-1799 (($ (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) $) NIL)) (-2296 (((-621 (-1142)) $) NIL)) (-2284 (((-112) (-1142) $) NIL)) (-3988 (((-1086) $) NIL (-1536 (|has| (-52) (-1066)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066))))) (-3645 (((-52) $) NIL (|has| (-1142) (-823)))) (-3959 (((-3 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) "failed") (-1 (-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL)) (-1943 (($ $ (-52)) NIL (|has| $ (-6 -4337)))) (-3536 (((-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) $) NIL)) (-3360 (((-112) (-1 (-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))))) NIL (-12 (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066)))) (($ $ (-287 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) NIL (-12 (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066)))) (($ $ (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) NIL (-12 (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066)))) (($ $ (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) NIL (-12 (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066)))) (($ $ (-621 (-52)) (-621 (-52))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1066)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1066)))) (($ $ (-287 (-52))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1066)))) (($ $ (-621 (-287 (-52)))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-52) (-1066))))) (-3347 (((-621 (-52)) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 (((-52) $ (-1142)) 35) (((-52) $ (-1142) (-52)) NIL)) (-3226 (($) NIL) (($ (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) NIL)) (-3997 (((-747) (-1 (-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336))) (((-747) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066)))) (((-747) (-52) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-52) (-1066)))) (((-747) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-594 (-525))))) (-3853 (($ (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) NIL)) (-3845 (((-834) $) 37 (-1536 (|has| (-52) (-593 (-834))) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-593 (-834)))))) (-4213 (($ (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) NIL)) (-3025 (((-112) (-1 (-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (-1536 (|has| (-52) (-1066)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066))))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-1006) (-13 (-1155 (-1142) (-52)) (-10 -7 (-15 -2460 ((-112) (-112))) (-15 -2500 ((-112) (-112))) (-6 -4336)))) (T -1006))
+((-2460 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1006)))) (-2500 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1006)))))
+(-13 (-1155 (-1142) (-52)) (-10 -7 (-15 -2460 ((-112) (-112))) (-15 -2500 ((-112) (-112))) (-6 -4336)))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3954 (((-1101) $) 9)) (-3845 (((-834) $) 17) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-1007) (-13 (-1049) (-10 -8 (-15 -3954 ((-1101) $))))) (T -1007))
+((-3954 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-1007)))))
+(-13 (-1049) (-10 -8 (-15 -3954 ((-1101) $))))
+((-2657 ((|#2| $) 10)))
+(((-1008 |#1| |#2|) (-10 -8 (-15 -2657 (|#2| |#1|))) (-1009 |#2|) (-1179)) (T -1008))
+NIL
+(-10 -8 (-15 -2657 (|#2| |#1|)))
+((-2712 (((-3 |#1| "failed") $) 7)) (-2657 ((|#1| $) 8)) (-3845 (($ |#1|) 6)))
+(((-1009 |#1|) (-138) (-1179)) (T -1009))
+((-2657 (*1 *2 *1) (-12 (-4 *1 (-1009 *2)) (-4 *2 (-1179)))) (-2712 (*1 *2 *1) (|partial| -12 (-4 *1 (-1009 *2)) (-4 *2 (-1179)))) (-3845 (*1 *1 *2) (-12 (-4 *1 (-1009 *2)) (-4 *2 (-1179)))))
+(-13 (-10 -8 (-15 -3845 ($ |t#1|)) (-15 -2712 ((-3 |t#1| "failed") $)) (-15 -2657 (|t#1| $))))
+((-2047 (((-621 (-621 (-287 (-400 (-923 |#2|))))) (-621 (-923 |#2|)) (-621 (-1142))) 38)))
+(((-1010 |#1| |#2|) (-10 -7 (-15 -2047 ((-621 (-621 (-287 (-400 (-923 |#2|))))) (-621 (-923 |#2|)) (-621 (-1142))))) (-541) (-13 (-541) (-1009 |#1|))) (T -1010))
+((-2047 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-923 *6))) (-5 *4 (-621 (-1142))) (-4 *6 (-13 (-541) (-1009 *5))) (-4 *5 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *6)))))) (-5 *1 (-1010 *5 *6)))))
+(-10 -7 (-15 -2047 ((-621 (-621 (-287 (-400 (-923 |#2|))))) (-621 (-923 |#2|)) (-621 (-1142)))))
+((-3892 (((-372)) 15)) (-2708 (((-1 (-372)) (-372) (-372)) 20)) (-2630 (((-1 (-372)) (-747)) 43)) (-3229 (((-372)) 34)) (-4039 (((-1 (-372)) (-372) (-372)) 35)) (-2821 (((-372)) 26)) (-3069 (((-1 (-372)) (-372)) 27)) (-1772 (((-372) (-747)) 38)) (-1702 (((-1 (-372)) (-747)) 39)) (-1421 (((-1 (-372)) (-747) (-747)) 42)) (-2051 (((-1 (-372)) (-747) (-747)) 40)))
+(((-1011) (-10 -7 (-15 -3892 ((-372))) (-15 -3229 ((-372))) (-15 -2821 ((-372))) (-15 -1772 ((-372) (-747))) (-15 -2708 ((-1 (-372)) (-372) (-372))) (-15 -4039 ((-1 (-372)) (-372) (-372))) (-15 -3069 ((-1 (-372)) (-372))) (-15 -1702 ((-1 (-372)) (-747))) (-15 -2051 ((-1 (-372)) (-747) (-747))) (-15 -1421 ((-1 (-372)) (-747) (-747))) (-15 -2630 ((-1 (-372)) (-747))))) (T -1011))
+((-2630 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1 (-372))) (-5 *1 (-1011)))) (-1421 (*1 *2 *3 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1 (-372))) (-5 *1 (-1011)))) (-2051 (*1 *2 *3 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1 (-372))) (-5 *1 (-1011)))) (-1702 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1 (-372))) (-5 *1 (-1011)))) (-3069 (*1 *2 *3) (-12 (-5 *2 (-1 (-372))) (-5 *1 (-1011)) (-5 *3 (-372)))) (-4039 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-372))) (-5 *1 (-1011)) (-5 *3 (-372)))) (-2708 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-372))) (-5 *1 (-1011)) (-5 *3 (-372)))) (-1772 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-372)) (-5 *1 (-1011)))) (-2821 (*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1011)))) (-3229 (*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1011)))) (-3892 (*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1011)))))
+(-10 -7 (-15 -3892 ((-372))) (-15 -3229 ((-372))) (-15 -2821 ((-372))) (-15 -1772 ((-372) (-747))) (-15 -2708 ((-1 (-372)) (-372) (-372))) (-15 -4039 ((-1 (-372)) (-372) (-372))) (-15 -3069 ((-1 (-372)) (-372))) (-15 -1702 ((-1 (-372)) (-747))) (-15 -2051 ((-1 (-372)) (-747) (-747))) (-15 -1421 ((-1 (-372)) (-747) (-747))) (-15 -2630 ((-1 (-372)) (-747))))
+((-2119 (((-411 |#1|) |#1|) 33)))
+(((-1012 |#1|) (-10 -7 (-15 -2119 ((-411 |#1|) |#1|))) (-1201 (-400 (-923 (-549))))) (T -1012))
+((-2119 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-1012 *3)) (-4 *3 (-1201 (-400 (-923 (-549))))))))
+(-10 -7 (-15 -2119 ((-411 |#1|) |#1|)))
+((-3750 (((-400 (-411 (-923 |#1|))) (-400 (-923 |#1|))) 14)))
+(((-1013 |#1|) (-10 -7 (-15 -3750 ((-400 (-411 (-923 |#1|))) (-400 (-923 |#1|))))) (-300)) (T -1013))
+((-3750 (*1 *2 *3) (-12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-300)) (-5 *2 (-400 (-411 (-923 *4)))) (-5 *1 (-1013 *4)))))
+(-10 -7 (-15 -3750 ((-400 (-411 (-923 |#1|))) (-400 (-923 |#1|)))))
+((-2270 (((-621 (-1142)) (-400 (-923 |#1|))) 17)) (-2082 (((-400 (-1138 (-400 (-923 |#1|)))) (-400 (-923 |#1|)) (-1142)) 24)) (-2259 (((-400 (-923 |#1|)) (-400 (-1138 (-400 (-923 |#1|)))) (-1142)) 26)) (-2236 (((-3 (-1142) "failed") (-400 (-923 |#1|))) 20)) (-2684 (((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-621 (-287 (-400 (-923 |#1|))))) 32) (((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|)))) 33) (((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-621 (-1142)) (-621 (-400 (-923 |#1|)))) 28) (((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-1142) (-400 (-923 |#1|))) 29)) (-3845 (((-400 (-923 |#1|)) |#1|) 11)))
+(((-1014 |#1|) (-10 -7 (-15 -2270 ((-621 (-1142)) (-400 (-923 |#1|)))) (-15 -2236 ((-3 (-1142) "failed") (-400 (-923 |#1|)))) (-15 -2082 ((-400 (-1138 (-400 (-923 |#1|)))) (-400 (-923 |#1|)) (-1142))) (-15 -2259 ((-400 (-923 |#1|)) (-400 (-1138 (-400 (-923 |#1|)))) (-1142))) (-15 -2684 ((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-1142) (-400 (-923 |#1|)))) (-15 -2684 ((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-621 (-1142)) (-621 (-400 (-923 |#1|))))) (-15 -2684 ((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))))) (-15 -2684 ((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-621 (-287 (-400 (-923 |#1|)))))) (-15 -3845 ((-400 (-923 |#1|)) |#1|))) (-541)) (T -1014))
+((-3845 (*1 *2 *3) (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-1014 *3)) (-4 *3 (-541)))) (-2684 (*1 *2 *2 *3) (-12 (-5 *3 (-621 (-287 (-400 (-923 *4))))) (-5 *2 (-400 (-923 *4))) (-4 *4 (-541)) (-5 *1 (-1014 *4)))) (-2684 (*1 *2 *2 *3) (-12 (-5 *3 (-287 (-400 (-923 *4)))) (-5 *2 (-400 (-923 *4))) (-4 *4 (-541)) (-5 *1 (-1014 *4)))) (-2684 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-621 (-1142))) (-5 *4 (-621 (-400 (-923 *5)))) (-5 *2 (-400 (-923 *5))) (-4 *5 (-541)) (-5 *1 (-1014 *5)))) (-2684 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-400 (-923 *4))) (-5 *3 (-1142)) (-4 *4 (-541)) (-5 *1 (-1014 *4)))) (-2259 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-1138 (-400 (-923 *5))))) (-5 *4 (-1142)) (-5 *2 (-400 (-923 *5))) (-5 *1 (-1014 *5)) (-4 *5 (-541)))) (-2082 (*1 *2 *3 *4) (-12 (-5 *4 (-1142)) (-4 *5 (-541)) (-5 *2 (-400 (-1138 (-400 (-923 *5))))) (-5 *1 (-1014 *5)) (-5 *3 (-400 (-923 *5))))) (-2236 (*1 *2 *3) (|partial| -12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541)) (-5 *2 (-1142)) (-5 *1 (-1014 *4)))) (-2270 (*1 *2 *3) (-12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541)) (-5 *2 (-621 (-1142))) (-5 *1 (-1014 *4)))))
+(-10 -7 (-15 -2270 ((-621 (-1142)) (-400 (-923 |#1|)))) (-15 -2236 ((-3 (-1142) "failed") (-400 (-923 |#1|)))) (-15 -2082 ((-400 (-1138 (-400 (-923 |#1|)))) (-400 (-923 |#1|)) (-1142))) (-15 -2259 ((-400 (-923 |#1|)) (-400 (-1138 (-400 (-923 |#1|)))) (-1142))) (-15 -2684 ((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-1142) (-400 (-923 |#1|)))) (-15 -2684 ((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-621 (-1142)) (-621 (-400 (-923 |#1|))))) (-15 -2684 ((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-287 (-400 (-923 |#1|))))) (-15 -2684 ((-400 (-923 |#1|)) (-400 (-923 |#1|)) (-621 (-287 (-400 (-923 |#1|)))))) (-15 -3845 ((-400 (-923 |#1|)) |#1|)))
+((-3832 (((-112) $ $) NIL)) (-4063 (((-621 (-2 (|:| -2679 $) (|:| -1358 (-621 (-756 |#1| (-836 |#2|)))))) (-621 (-756 |#1| (-836 |#2|)))) NIL)) (-3587 (((-621 $) (-621 (-756 |#1| (-836 |#2|)))) NIL) (((-621 $) (-621 (-756 |#1| (-836 |#2|))) (-112)) NIL) (((-621 $) (-621 (-756 |#1| (-836 |#2|))) (-112) (-112)) NIL)) (-2270 (((-621 (-836 |#2|)) $) NIL)) (-3735 (((-112) $) NIL)) (-2148 (((-112) $) NIL (|has| |#1| (-541)))) (-2210 (((-112) (-756 |#1| (-836 |#2|)) $) NIL) (((-112) $) NIL)) (-2156 (((-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) $) NIL)) (-3239 (((-621 (-2 (|:| |val| (-756 |#1| (-836 |#2|))) (|:| -1979 $))) (-756 |#1| (-836 |#2|)) $) NIL)) (-3191 (((-2 (|:| |under| $) (|:| -1349 $) (|:| |upper| $)) $ (-836 |#2|)) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-1488 (($ (-1 (-112) (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-3 (-756 |#1| (-836 |#2|)) "failed") $ (-836 |#2|)) NIL)) (-3034 (($) NIL T CONST)) (-4291 (((-112) $) NIL (|has| |#1| (-541)))) (-1663 (((-112) $ $) NIL (|has| |#1| (-541)))) (-4226 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2113 (((-112) $) NIL (|has| |#1| (-541)))) (-1409 (((-621 (-756 |#1| (-836 |#2|))) (-621 (-756 |#1| (-836 |#2|))) $ (-1 (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) (-1 (-112) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)))) NIL)) (-3480 (((-621 (-756 |#1| (-836 |#2|))) (-621 (-756 |#1| (-836 |#2|))) $) NIL (|has| |#1| (-541)))) (-2393 (((-621 (-756 |#1| (-836 |#2|))) (-621 (-756 |#1| (-836 |#2|))) $) NIL (|has| |#1| (-541)))) (-2712 (((-3 $ "failed") (-621 (-756 |#1| (-836 |#2|)))) NIL)) (-2657 (($ (-621 (-756 |#1| (-836 |#2|)))) NIL)) (-3656 (((-3 $ "failed") $) NIL)) (-1852 (((-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) $) NIL)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-756 |#1| (-836 |#2|)) (-1066))))) (-3812 (($ (-756 |#1| (-836 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-756 |#1| (-836 |#2|)) (-1066)))) (($ (-1 (-112) (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-1809 (((-2 (|:| |rnum| |#1|) (|:| |polnum| (-756 |#1| (-836 |#2|))) (|:| |den| |#1|)) (-756 |#1| (-836 |#2|)) $) NIL (|has| |#1| (-541)))) (-1804 (((-112) (-756 |#1| (-836 |#2|)) $ (-1 (-112) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)))) NIL)) (-1402 (((-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) $) NIL)) (-2556 (((-756 |#1| (-836 |#2|)) (-1 (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) $ (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) NIL (-12 (|has| $ (-6 -4336)) (|has| (-756 |#1| (-836 |#2|)) (-1066)))) (((-756 |#1| (-836 |#2|)) (-1 (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) $ (-756 |#1| (-836 |#2|))) NIL (|has| $ (-6 -4336))) (((-756 |#1| (-836 |#2|)) (-1 (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) $ (-1 (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) (-1 (-112) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)))) NIL)) (-3862 (((-2 (|:| -2679 (-621 (-756 |#1| (-836 |#2|)))) (|:| -1358 (-621 (-756 |#1| (-836 |#2|))))) $) NIL)) (-4267 (((-112) (-756 |#1| (-836 |#2|)) $) NIL)) (-2553 (((-112) (-756 |#1| (-836 |#2|)) $) NIL)) (-3504 (((-112) (-756 |#1| (-836 |#2|)) $) NIL) (((-112) $) NIL)) (-2987 (((-621 (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-2240 (((-112) (-756 |#1| (-836 |#2|)) $) NIL) (((-112) $) NIL)) (-2510 (((-836 |#2|) $) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-756 |#1| (-836 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-756 |#1| (-836 |#2|)) (-1066))))) (-1864 (($ (-1 (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) $) NIL)) (-3991 (((-621 (-836 |#2|)) $) NIL)) (-4192 (((-112) (-836 |#2|) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL)) (-4246 (((-3 (-756 |#1| (-836 |#2|)) (-621 $)) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) $) NIL)) (-3402 (((-621 (-2 (|:| |val| (-756 |#1| (-836 |#2|))) (|:| -1979 $))) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) $) NIL)) (-3828 (((-3 (-756 |#1| (-836 |#2|)) "failed") $) NIL)) (-2114 (((-621 $) (-756 |#1| (-836 |#2|)) $) NIL)) (-3219 (((-3 (-112) (-621 $)) (-756 |#1| (-836 |#2|)) $) NIL)) (-3287 (((-621 (-2 (|:| |val| (-112)) (|:| -1979 $))) (-756 |#1| (-836 |#2|)) $) NIL) (((-112) (-756 |#1| (-836 |#2|)) $) NIL)) (-3869 (((-621 $) (-756 |#1| (-836 |#2|)) $) NIL) (((-621 $) (-621 (-756 |#1| (-836 |#2|))) $) NIL) (((-621 $) (-621 (-756 |#1| (-836 |#2|))) (-621 $)) NIL) (((-621 $) (-756 |#1| (-836 |#2|)) (-621 $)) NIL)) (-2214 (($ (-756 |#1| (-836 |#2|)) $) NIL) (($ (-621 (-756 |#1| (-836 |#2|))) $) NIL)) (-1645 (((-621 (-756 |#1| (-836 |#2|))) $) NIL)) (-1304 (((-112) (-756 |#1| (-836 |#2|)) $) NIL) (((-112) $) NIL)) (-3603 (((-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) $) NIL)) (-3386 (((-112) $ $) NIL)) (-2179 (((-2 (|:| |num| (-756 |#1| (-836 |#2|))) (|:| |den| |#1|)) (-756 |#1| (-836 |#2|)) $) NIL (|has| |#1| (-541)))) (-4122 (((-112) (-756 |#1| (-836 |#2|)) $) NIL) (((-112) $) NIL)) (-4244 (((-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)) $) NIL)) (-3988 (((-1086) $) NIL)) (-3645 (((-3 (-756 |#1| (-836 |#2|)) "failed") $) NIL)) (-3959 (((-3 (-756 |#1| (-836 |#2|)) "failed") (-1 (-112) (-756 |#1| (-836 |#2|))) $) NIL)) (-1505 (((-3 $ "failed") $ (-756 |#1| (-836 |#2|))) NIL)) (-3796 (($ $ (-756 |#1| (-836 |#2|))) NIL) (((-621 $) (-756 |#1| (-836 |#2|)) $) NIL) (((-621 $) (-756 |#1| (-836 |#2|)) (-621 $)) NIL) (((-621 $) (-621 (-756 |#1| (-836 |#2|))) $) NIL) (((-621 $) (-621 (-756 |#1| (-836 |#2|))) (-621 $)) NIL)) (-3360 (((-112) (-1 (-112) (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-756 |#1| (-836 |#2|))) (-621 (-756 |#1| (-836 |#2|)))) NIL (-12 (|has| (-756 |#1| (-836 |#2|)) (-302 (-756 |#1| (-836 |#2|)))) (|has| (-756 |#1| (-836 |#2|)) (-1066)))) (($ $ (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|))) NIL (-12 (|has| (-756 |#1| (-836 |#2|)) (-302 (-756 |#1| (-836 |#2|)))) (|has| (-756 |#1| (-836 |#2|)) (-1066)))) (($ $ (-287 (-756 |#1| (-836 |#2|)))) NIL (-12 (|has| (-756 |#1| (-836 |#2|)) (-302 (-756 |#1| (-836 |#2|)))) (|has| (-756 |#1| (-836 |#2|)) (-1066)))) (($ $ (-621 (-287 (-756 |#1| (-836 |#2|))))) NIL (-12 (|has| (-756 |#1| (-836 |#2|)) (-302 (-756 |#1| (-836 |#2|)))) (|has| (-756 |#1| (-836 |#2|)) (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3977 (((-747) $) NIL)) (-3997 (((-747) (-756 |#1| (-836 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-756 |#1| (-836 |#2|)) (-1066)))) (((-747) (-1 (-112) (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| (-756 |#1| (-836 |#2|)) (-594 (-525))))) (-3853 (($ (-621 (-756 |#1| (-836 |#2|)))) NIL)) (-4085 (($ $ (-836 |#2|)) NIL)) (-2195 (($ $ (-836 |#2|)) NIL)) (-4292 (($ $) NIL)) (-4285 (($ $ (-836 |#2|)) NIL)) (-3845 (((-834) $) NIL) (((-621 (-756 |#1| (-836 |#2|))) $) NIL)) (-2503 (((-747) $) NIL (|has| (-836 |#2|) (-361)))) (-2940 (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 (-756 |#1| (-836 |#2|))))) "failed") (-621 (-756 |#1| (-836 |#2|))) (-1 (-112) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)))) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 (-756 |#1| (-836 |#2|))))) "failed") (-621 (-756 |#1| (-836 |#2|))) (-1 (-112) (-756 |#1| (-836 |#2|))) (-1 (-112) (-756 |#1| (-836 |#2|)) (-756 |#1| (-836 |#2|)))) NIL)) (-3760 (((-112) $ (-1 (-112) (-756 |#1| (-836 |#2|)) (-621 (-756 |#1| (-836 |#2|))))) NIL)) (-2008 (((-621 $) (-756 |#1| (-836 |#2|)) $) NIL) (((-621 $) (-756 |#1| (-836 |#2|)) (-621 $)) NIL) (((-621 $) (-621 (-756 |#1| (-836 |#2|))) $) NIL) (((-621 $) (-621 (-756 |#1| (-836 |#2|))) (-621 $)) NIL)) (-3025 (((-112) (-1 (-112) (-756 |#1| (-836 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-4044 (((-621 (-836 |#2|)) $) NIL)) (-2930 (((-112) (-756 |#1| (-836 |#2|)) $) NIL)) (-1993 (((-112) (-836 |#2|) $) NIL)) (-2387 (((-112) $ $) NIL)) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-1015 |#1| |#2|) (-13 (-1038 |#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|))) (-10 -8 (-15 -3587 ((-621 $) (-621 (-756 |#1| (-836 |#2|))) (-112) (-112))))) (-444) (-621 (-1142))) (T -1015))
+((-3587 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444)) (-14 *6 (-621 (-1142))) (-5 *2 (-621 (-1015 *5 *6))) (-5 *1 (-1015 *5 *6)))))
+(-13 (-1038 |#1| (-521 (-836 |#2|)) (-836 |#2|) (-756 |#1| (-836 |#2|))) (-10 -8 (-15 -3587 ((-621 $) (-621 (-756 |#1| (-836 |#2|))) (-112) (-112)))))
+((-2708 (((-1 (-549)) (-1060 (-549))) 33)) (-4250 (((-549) (-549) (-549) (-549) (-549)) 30)) (-2363 (((-1 (-549)) |RationalNumber|) NIL)) (-3348 (((-1 (-549)) |RationalNumber|) NIL)) (-2772 (((-1 (-549)) (-549) |RationalNumber|) NIL)))
+(((-1016) (-10 -7 (-15 -2708 ((-1 (-549)) (-1060 (-549)))) (-15 -2772 ((-1 (-549)) (-549) |RationalNumber|)) (-15 -2363 ((-1 (-549)) |RationalNumber|)) (-15 -3348 ((-1 (-549)) |RationalNumber|)) (-15 -4250 ((-549) (-549) (-549) (-549) (-549))))) (T -1016))
+((-4250 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1016)))) (-3348 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-549))) (-5 *1 (-1016)))) (-2363 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-549))) (-5 *1 (-1016)))) (-2772 (*1 *2 *3 *4) (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-549))) (-5 *1 (-1016)) (-5 *3 (-549)))) (-2708 (*1 *2 *3) (-12 (-5 *3 (-1060 (-549))) (-5 *2 (-1 (-549))) (-5 *1 (-1016)))))
+(-10 -7 (-15 -2708 ((-1 (-549)) (-1060 (-549)))) (-15 -2772 ((-1 (-549)) (-549) |RationalNumber|)) (-15 -2363 ((-1 (-549)) |RationalNumber|)) (-15 -3348 ((-1 (-549)) |RationalNumber|)) (-15 -4250 ((-549) (-549) (-549) (-549) (-549))))
+((-3845 (((-834) $) NIL) (($ (-549)) 10)))
+(((-1017 |#1|) (-10 -8 (-15 -3845 (|#1| (-549))) (-15 -3845 ((-834) |#1|))) (-1018)) (T -1017))
+NIL
+(-10 -8 (-15 -3845 (|#1| (-549))) (-15 -3845 ((-834) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11) (($ (-549)) 27)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-1018) (-138)) (T -1018))
-((-2082 (*1 *2) (-12 (-4 *1 (-1018)) (-5 *2 (-747)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-1018)))))
-(-13 (-1025) (-703) (-624 $) (-10 -8 (-15 -2082 ((-747))) (-15 -3846 ($ (-549))) (-6 -4334)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-1842 (((-400 (-923 |#2|)) (-621 |#2|) (-621 |#2|) (-747) (-747)) 46)))
-(((-1019 |#1| |#2|) (-10 -7 (-15 -1842 ((-400 (-923 |#2|)) (-621 |#2|) (-621 |#2|) (-747) (-747)))) (-1143) (-356)) (T -1019))
-((-1842 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-621 *6)) (-5 *4 (-747)) (-4 *6 (-356)) (-5 *2 (-400 (-923 *6))) (-5 *1 (-1019 *5 *6)) (-14 *5 (-1143)))))
-(-10 -7 (-15 -1842 ((-400 (-923 |#2|)) (-621 |#2|) (-621 |#2|) (-747) (-747))))
-((-2092 (((-112) $) 29)) (-2340 (((-112) $) 16)) (-2142 (((-747) $) 13)) (-2155 (((-747) $) 14)) (-1757 (((-112) $) 26)) (-2974 (((-112) $) 31)))
-(((-1020 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -8 (-15 -2155 ((-747) |#1|)) (-15 -2142 ((-747) |#1|)) (-15 -2974 ((-112) |#1|)) (-15 -2092 ((-112) |#1|)) (-15 -1757 ((-112) |#1|)) (-15 -2340 ((-112) |#1|))) (-1021 |#2| |#3| |#4| |#5| |#6|) (-747) (-747) (-1018) (-232 |#3| |#4|) (-232 |#2| |#4|)) (T -1020))
-NIL
-(-10 -8 (-15 -2155 ((-747) |#1|)) (-15 -2142 ((-747) |#1|)) (-15 -2974 ((-112) |#1|)) (-15 -2092 ((-112) |#1|)) (-15 -1757 ((-112) |#1|)) (-15 -2340 ((-112) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2092 (((-112) $) 51)) (-2001 (((-3 $ "failed") $ $) 19)) (-2340 (((-112) $) 53)) (-1584 (((-112) $ (-747)) 61)) (-1682 (($) 17 T CONST)) (-3460 (($ $) 34 (|has| |#3| (-300)))) (-4060 ((|#4| $ (-549)) 39)) (-3123 (((-747) $) 33 (|has| |#3| (-541)))) (-1809 ((|#3| $ (-549) (-549)) 41)) (-2989 (((-621 |#3|) $) 68 (|has| $ (-6 -4337)))) (-1323 (((-747) $) 32 (|has| |#3| (-541)))) (-1479 (((-621 |#5|) $) 31 (|has| |#3| (-541)))) (-2142 (((-747) $) 45)) (-2155 (((-747) $) 44)) (-3194 (((-112) $ (-747)) 60)) (-1761 (((-549) $) 49)) (-2703 (((-549) $) 47)) (-1562 (((-621 |#3|) $) 69 (|has| $ (-6 -4337)))) (-2090 (((-112) |#3| $) 71 (-12 (|has| |#3| (-1067)) (|has| $ (-6 -4337))))) (-1661 (((-549) $) 48)) (-1887 (((-549) $) 46)) (-3946 (($ (-621 (-621 |#3|))) 54)) (-1868 (($ (-1 |#3| |#3|) $) 64 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#3| |#3|) $) 63) (($ (-1 |#3| |#3| |#3|) $ $) 37)) (-2913 (((-621 (-621 |#3|)) $) 43)) (-1508 (((-112) $ (-747)) 59)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-2042 (((-3 $ "failed") $ |#3|) 36 (|has| |#3| (-541)))) (-1780 (((-112) (-1 (-112) |#3|) $) 66 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 |#3|) (-621 |#3|)) 75 (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067)))) (($ $ |#3| |#3|) 74 (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067)))) (($ $ (-287 |#3|)) 73 (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067)))) (($ $ (-621 (-287 |#3|))) 72 (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067))))) (-4144 (((-112) $ $) 55)) (-3670 (((-112) $) 58)) (-3742 (($) 57)) (-3341 ((|#3| $ (-549) (-549)) 42) ((|#3| $ (-549) (-549) |#3|) 40)) (-1757 (((-112) $) 52)) (-4000 (((-747) |#3| $) 70 (-12 (|has| |#3| (-1067)) (|has| $ (-6 -4337)))) (((-747) (-1 (-112) |#3|) $) 67 (|has| $ (-6 -4337)))) (-2281 (($ $) 56)) (-2851 ((|#5| $ (-549)) 38)) (-3846 (((-834) $) 11)) (-3527 (((-112) (-1 (-112) |#3|) $) 65 (|has| $ (-6 -4337)))) (-2974 (((-112) $) 50)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2513 (($ $ |#3|) 35 (|has| |#3| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ |#3| $) 23) (($ $ |#3|) 26)) (-3775 (((-747) $) 62 (|has| $ (-6 -4337)))))
+((-2371 (*1 *2) (-12 (-4 *1 (-1018)) (-5 *2 (-747)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-1018)))))
+(-13 (-1025) (-703) (-624 $) (-10 -8 (-15 -2371 ((-747))) (-15 -3845 ($ (-549))) (-6 -4333)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 $) . T) ((-703) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-2075 (((-400 (-923 |#2|)) (-621 |#2|) (-621 |#2|) (-747) (-747)) 46)))
+(((-1019 |#1| |#2|) (-10 -7 (-15 -2075 ((-400 (-923 |#2|)) (-621 |#2|) (-621 |#2|) (-747) (-747)))) (-1142) (-356)) (T -1019))
+((-2075 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-621 *6)) (-5 *4 (-747)) (-4 *6 (-356)) (-5 *2 (-400 (-923 *6))) (-5 *1 (-1019 *5 *6)) (-14 *5 (-1142)))))
+(-10 -7 (-15 -2075 ((-400 (-923 |#2|)) (-621 |#2|) (-621 |#2|) (-747) (-747))))
+((-1831 (((-112) $) 29)) (-1295 (((-112) $) 16)) (-2140 (((-747) $) 13)) (-2153 (((-747) $) 14)) (-2839 (((-112) $) 26)) (-3752 (((-112) $) 31)))
+(((-1020 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -8 (-15 -2153 ((-747) |#1|)) (-15 -2140 ((-747) |#1|)) (-15 -3752 ((-112) |#1|)) (-15 -1831 ((-112) |#1|)) (-15 -2839 ((-112) |#1|)) (-15 -1295 ((-112) |#1|))) (-1021 |#2| |#3| |#4| |#5| |#6|) (-747) (-747) (-1018) (-232 |#3| |#4|) (-232 |#2| |#4|)) (T -1020))
+NIL
+(-10 -8 (-15 -2153 ((-747) |#1|)) (-15 -2140 ((-747) |#1|)) (-15 -3752 ((-112) |#1|)) (-15 -1831 ((-112) |#1|)) (-15 -2839 ((-112) |#1|)) (-15 -1295 ((-112) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-1831 (((-112) $) 51)) (-2416 (((-3 $ "failed") $ $) 19)) (-1295 (((-112) $) 53)) (-2850 (((-112) $ (-747)) 61)) (-3034 (($) 17 T CONST)) (-3474 (($ $) 34 (|has| |#3| (-300)))) (-3437 ((|#4| $ (-549)) 39)) (-3121 (((-747) $) 33 (|has| |#3| (-541)))) (-1807 ((|#3| $ (-549) (-549)) 41)) (-2987 (((-621 |#3|) $) 68 (|has| $ (-6 -4336)))) (-4303 (((-747) $) 32 (|has| |#3| (-541)))) (-3290 (((-621 |#5|) $) 31 (|has| |#3| (-541)))) (-2140 (((-747) $) 45)) (-2153 (((-747) $) 44)) (-1777 (((-112) $ (-747)) 60)) (-3057 (((-549) $) 49)) (-3861 (((-549) $) 47)) (-3698 (((-621 |#3|) $) 69 (|has| $ (-6 -4336)))) (-1593 (((-112) |#3| $) 71 (-12 (|has| |#3| (-1066)) (|has| $ (-6 -4336))))) (-1766 (((-549) $) 48)) (-2813 (((-549) $) 46)) (-3944 (($ (-621 (-621 |#3|))) 54)) (-1864 (($ (-1 |#3| |#3|) $) 64 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#3| |#3|) $) 63) (($ (-1 |#3| |#3| |#3|) $ $) 37)) (-1987 (((-621 (-621 |#3|)) $) 43)) (-3942 (((-112) $ (-747)) 59)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2040 (((-3 $ "failed") $ |#3|) 36 (|has| |#3| (-541)))) (-3360 (((-112) (-1 (-112) |#3|) $) 66 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 |#3|) (-621 |#3|)) 75 (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066)))) (($ $ |#3| |#3|) 74 (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066)))) (($ $ (-287 |#3|)) 73 (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066)))) (($ $ (-621 (-287 |#3|))) 72 (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066))))) (-2520 (((-112) $ $) 55)) (-2643 (((-112) $) 58)) (-3288 (($) 57)) (-3339 ((|#3| $ (-549) (-549)) 42) ((|#3| $ (-549) (-549) |#3|) 40)) (-2839 (((-112) $) 52)) (-3997 (((-747) |#3| $) 70 (-12 (|has| |#3| (-1066)) (|has| $ (-6 -4336)))) (((-747) (-1 (-112) |#3|) $) 67 (|has| $ (-6 -4336)))) (-2279 (($ $) 56)) (-1476 ((|#5| $ (-549)) 38)) (-3845 (((-834) $) 11)) (-3025 (((-112) (-1 (-112) |#3|) $) 65 (|has| $ (-6 -4336)))) (-3752 (((-112) $) 50)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2511 (($ $ |#3|) 35 (|has| |#3| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ |#3| $) 23) (($ $ |#3|) 26)) (-3774 (((-747) $) 62 (|has| $ (-6 -4336)))))
(((-1021 |#1| |#2| |#3| |#4| |#5|) (-138) (-747) (-747) (-1018) (-232 |t#2| |t#3|) (-232 |t#1| |t#3|)) (T -1021))
-((-2797 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)))) (-3946 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 *5))) (-4 *5 (-1018)) (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)))) (-2340 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-112)))) (-1757 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-112)))) (-2092 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-112)))) (-2974 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-112)))) (-1761 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-549)))) (-1661 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-549)))) (-2703 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-549)))) (-1887 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-549)))) (-2142 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-747)))) (-2155 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-747)))) (-2913 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-621 (-621 *5))))) (-3341 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-549)) (-4 *1 (-1021 *4 *5 *2 *6 *7)) (-4 *6 (-232 *5 *2)) (-4 *7 (-232 *4 *2)) (-4 *2 (-1018)))) (-1809 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-549)) (-4 *1 (-1021 *4 *5 *2 *6 *7)) (-4 *6 (-232 *5 *2)) (-4 *7 (-232 *4 *2)) (-4 *2 (-1018)))) (-3341 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-549)) (-4 *1 (-1021 *4 *5 *2 *6 *7)) (-4 *2 (-1018)) (-4 *6 (-232 *5 *2)) (-4 *7 (-232 *4 *2)))) (-4060 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-1021 *4 *5 *6 *2 *7)) (-4 *6 (-1018)) (-4 *7 (-232 *4 *6)) (-4 *2 (-232 *5 *6)))) (-2851 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-1021 *4 *5 *6 *7 *2)) (-4 *6 (-1018)) (-4 *7 (-232 *5 *6)) (-4 *2 (-232 *4 *6)))) (-2797 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)))) (-2042 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1021 *3 *4 *2 *5 *6)) (-4 *2 (-1018)) (-4 *5 (-232 *4 *2)) (-4 *6 (-232 *3 *2)) (-4 *2 (-541)))) (-2513 (*1 *1 *1 *2) (-12 (-4 *1 (-1021 *3 *4 *2 *5 *6)) (-4 *2 (-1018)) (-4 *5 (-232 *4 *2)) (-4 *6 (-232 *3 *2)) (-4 *2 (-356)))) (-3460 (*1 *1 *1) (-12 (-4 *1 (-1021 *2 *3 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-232 *3 *4)) (-4 *6 (-232 *2 *4)) (-4 *4 (-300)))) (-3123 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-4 *5 (-541)) (-5 *2 (-747)))) (-1323 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-4 *5 (-541)) (-5 *2 (-747)))) (-1479 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-4 *5 (-541)) (-5 *2 (-621 *7)))))
-(-13 (-111 |t#3| |t#3|) (-481 |t#3|) (-10 -8 (-6 -4337) (IF (|has| |t#3| (-170)) (-6 (-694 |t#3|)) |%noBranch|) (-15 -3946 ($ (-621 (-621 |t#3|)))) (-15 -2340 ((-112) $)) (-15 -1757 ((-112) $)) (-15 -2092 ((-112) $)) (-15 -2974 ((-112) $)) (-15 -1761 ((-549) $)) (-15 -1661 ((-549) $)) (-15 -2703 ((-549) $)) (-15 -1887 ((-549) $)) (-15 -2142 ((-747) $)) (-15 -2155 ((-747) $)) (-15 -2913 ((-621 (-621 |t#3|)) $)) (-15 -3341 (|t#3| $ (-549) (-549))) (-15 -1809 (|t#3| $ (-549) (-549))) (-15 -3341 (|t#3| $ (-549) (-549) |t#3|)) (-15 -4060 (|t#4| $ (-549))) (-15 -2851 (|t#5| $ (-549))) (-15 -2797 ($ (-1 |t#3| |t#3|) $)) (-15 -2797 ($ (-1 |t#3| |t#3| |t#3|) $ $)) (IF (|has| |t#3| (-541)) (-15 -2042 ((-3 $ "failed") $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-356)) (-15 -2513 ($ $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-300)) (-15 -3460 ($ $)) |%noBranch|) (IF (|has| |t#3| (-541)) (PROGN (-15 -3123 ((-747) $)) (-15 -1323 ((-747) $)) (-15 -1479 ((-621 |t#5|) $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-101) . T) ((-111 |#3| |#3|) . T) ((-130) . T) ((-593 (-834)) . T) ((-302 |#3|) -12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067))) ((-481 |#3|) . T) ((-505 |#3| |#3|) -12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067))) ((-624 |#3|) . T) ((-694 |#3|) |has| |#3| (-170)) ((-1024 |#3|) . T) ((-1067) . T) ((-1180) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2092 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-2340 (((-112) $) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-1682 (($) NIL T CONST)) (-3460 (($ $) 43 (|has| |#3| (-300)))) (-4060 (((-234 |#2| |#3|) $ (-549)) 32)) (-2176 (($ (-665 |#3|)) 41)) (-3123 (((-747) $) 45 (|has| |#3| (-541)))) (-1809 ((|#3| $ (-549) (-549)) NIL)) (-2989 (((-621 |#3|) $) NIL (|has| $ (-6 -4337)))) (-1323 (((-747) $) 47 (|has| |#3| (-541)))) (-1479 (((-621 (-234 |#1| |#3|)) $) 51 (|has| |#3| (-541)))) (-2142 (((-747) $) NIL)) (-2155 (((-747) $) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-1761 (((-549) $) NIL)) (-2703 (((-549) $) NIL)) (-1562 (((-621 |#3|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#3| (-1067))))) (-1661 (((-549) $) NIL)) (-1887 (((-549) $) NIL)) (-3946 (($ (-621 (-621 |#3|))) 27)) (-1868 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) NIL)) (-2913 (((-621 (-621 |#3|)) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2042 (((-3 $ "failed") $ |#3|) NIL (|has| |#3| (-541)))) (-1780 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 |#3|) (-621 |#3|)) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067)))) (($ $ (-287 |#3|)) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067)))) (($ $ (-621 (-287 |#3|))) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#3| $ (-549) (-549)) NIL) ((|#3| $ (-549) (-549) |#3|) NIL)) (-2985 (((-133)) 54 (|has| |#3| (-356)))) (-1757 (((-112) $) NIL)) (-4000 (((-747) |#3| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#3| (-1067)))) (((-747) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) 63 (|has| |#3| (-594 (-525))))) (-2851 (((-234 |#1| |#3|) $ (-549)) 36)) (-3846 (((-834) $) 16) (((-665 |#3|) $) 38)) (-3527 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4337)))) (-2974 (((-112) $) NIL)) (-3276 (($) 13 T CONST)) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ |#3|) NIL (|has| |#3| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ |#3| $) NIL) (($ $ |#3|) NIL)) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-1022 |#1| |#2| |#3|) (-13 (-1021 |#1| |#2| |#3| (-234 |#2| |#3|) (-234 |#1| |#3|)) (-593 (-665 |#3|)) (-10 -8 (IF (|has| |#3| (-356)) (-6 (-1233 |#3|)) |%noBranch|) (IF (|has| |#3| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (-15 -2176 ($ (-665 |#3|))) (-15 -3846 ((-665 |#3|) $)))) (-747) (-747) (-1018)) (T -1022))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-665 *5)) (-5 *1 (-1022 *3 *4 *5)) (-14 *3 (-747)) (-14 *4 (-747)) (-4 *5 (-1018)))) (-2176 (*1 *1 *2) (-12 (-5 *2 (-665 *5)) (-4 *5 (-1018)) (-5 *1 (-1022 *3 *4 *5)) (-14 *3 (-747)) (-14 *4 (-747)))))
-(-13 (-1021 |#1| |#2| |#3| (-234 |#2| |#3|) (-234 |#1| |#3|)) (-593 (-665 |#3|)) (-10 -8 (IF (|has| |#3| (-356)) (-6 (-1233 |#3|)) |%noBranch|) (IF (|has| |#3| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (-15 -2176 ($ (-665 |#3|))) (-15 -3846 ((-665 |#3|) $))))
-((-2557 ((|#7| (-1 |#7| |#3| |#7|) |#6| |#7|) 34)) (-2797 ((|#10| (-1 |#7| |#3|) |#6|) 32)))
-(((-1023 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8| |#9| |#10|) (-10 -7 (-15 -2797 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -2557 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|))) (-747) (-747) (-1018) (-232 |#2| |#3|) (-232 |#1| |#3|) (-1021 |#1| |#2| |#3| |#4| |#5|) (-1018) (-232 |#2| |#7|) (-232 |#1| |#7|) (-1021 |#1| |#2| |#7| |#8| |#9|)) (T -1023))
-((-2557 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-1018)) (-4 *2 (-1018)) (-14 *5 (-747)) (-14 *6 (-747)) (-4 *8 (-232 *6 *7)) (-4 *9 (-232 *5 *7)) (-4 *10 (-232 *6 *2)) (-4 *11 (-232 *5 *2)) (-5 *1 (-1023 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12)) (-4 *4 (-1021 *5 *6 *7 *8 *9)) (-4 *12 (-1021 *5 *6 *2 *10 *11)))) (-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-1018)) (-4 *10 (-1018)) (-14 *5 (-747)) (-14 *6 (-747)) (-4 *8 (-232 *6 *7)) (-4 *9 (-232 *5 *7)) (-4 *2 (-1021 *5 *6 *10 *11 *12)) (-5 *1 (-1023 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2)) (-4 *4 (-1021 *5 *6 *7 *8 *9)) (-4 *11 (-232 *6 *10)) (-4 *12 (-232 *5 *10)))))
-(-10 -7 (-15 -2797 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -2557 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ |#1|) 23)))
+((-2795 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)))) (-3944 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 *5))) (-4 *5 (-1018)) (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)))) (-1295 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-112)))) (-2839 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-112)))) (-1831 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-112)))) (-3752 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-112)))) (-3057 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-549)))) (-1766 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-549)))) (-3861 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-549)))) (-2813 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-549)))) (-2140 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-747)))) (-2153 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-747)))) (-1987 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-621 (-621 *5))))) (-3339 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-549)) (-4 *1 (-1021 *4 *5 *2 *6 *7)) (-4 *6 (-232 *5 *2)) (-4 *7 (-232 *4 *2)) (-4 *2 (-1018)))) (-1807 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-549)) (-4 *1 (-1021 *4 *5 *2 *6 *7)) (-4 *6 (-232 *5 *2)) (-4 *7 (-232 *4 *2)) (-4 *2 (-1018)))) (-3339 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-549)) (-4 *1 (-1021 *4 *5 *2 *6 *7)) (-4 *2 (-1018)) (-4 *6 (-232 *5 *2)) (-4 *7 (-232 *4 *2)))) (-3437 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-1021 *4 *5 *6 *2 *7)) (-4 *6 (-1018)) (-4 *7 (-232 *4 *6)) (-4 *2 (-232 *5 *6)))) (-1476 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-1021 *4 *5 *6 *7 *2)) (-4 *6 (-1018)) (-4 *7 (-232 *5 *6)) (-4 *2 (-232 *4 *6)))) (-2795 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)))) (-2040 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1021 *3 *4 *2 *5 *6)) (-4 *2 (-1018)) (-4 *5 (-232 *4 *2)) (-4 *6 (-232 *3 *2)) (-4 *2 (-541)))) (-2511 (*1 *1 *1 *2) (-12 (-4 *1 (-1021 *3 *4 *2 *5 *6)) (-4 *2 (-1018)) (-4 *5 (-232 *4 *2)) (-4 *6 (-232 *3 *2)) (-4 *2 (-356)))) (-3474 (*1 *1 *1) (-12 (-4 *1 (-1021 *2 *3 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-232 *3 *4)) (-4 *6 (-232 *2 *4)) (-4 *4 (-300)))) (-3121 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-4 *5 (-541)) (-5 *2 (-747)))) (-4303 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-4 *5 (-541)) (-5 *2 (-747)))) (-3290 (*1 *2 *1) (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018)) (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-4 *5 (-541)) (-5 *2 (-621 *7)))))
+(-13 (-111 |t#3| |t#3|) (-481 |t#3|) (-10 -8 (-6 -4336) (IF (|has| |t#3| (-170)) (-6 (-694 |t#3|)) |%noBranch|) (-15 -3944 ($ (-621 (-621 |t#3|)))) (-15 -1295 ((-112) $)) (-15 -2839 ((-112) $)) (-15 -1831 ((-112) $)) (-15 -3752 ((-112) $)) (-15 -3057 ((-549) $)) (-15 -1766 ((-549) $)) (-15 -3861 ((-549) $)) (-15 -2813 ((-549) $)) (-15 -2140 ((-747) $)) (-15 -2153 ((-747) $)) (-15 -1987 ((-621 (-621 |t#3|)) $)) (-15 -3339 (|t#3| $ (-549) (-549))) (-15 -1807 (|t#3| $ (-549) (-549))) (-15 -3339 (|t#3| $ (-549) (-549) |t#3|)) (-15 -3437 (|t#4| $ (-549))) (-15 -1476 (|t#5| $ (-549))) (-15 -2795 ($ (-1 |t#3| |t#3|) $)) (-15 -2795 ($ (-1 |t#3| |t#3| |t#3|) $ $)) (IF (|has| |t#3| (-541)) (-15 -2040 ((-3 $ "failed") $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-356)) (-15 -2511 ($ $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-300)) (-15 -3474 ($ $)) |%noBranch|) (IF (|has| |t#3| (-541)) (PROGN (-15 -3121 ((-747) $)) (-15 -4303 ((-747) $)) (-15 -3290 ((-621 |t#5|) $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-101) . T) ((-111 |#3| |#3|) . T) ((-130) . T) ((-593 (-834)) . T) ((-302 |#3|) -12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066))) ((-481 |#3|) . T) ((-505 |#3| |#3|) -12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066))) ((-624 |#3|) . T) ((-694 |#3|) |has| |#3| (-170)) ((-1024 |#3|) . T) ((-1066) . T) ((-1179) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-1831 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-1295 (((-112) $) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-3034 (($) NIL T CONST)) (-3474 (($ $) 43 (|has| |#3| (-300)))) (-3437 (((-234 |#2| |#3|) $ (-549)) 32)) (-3670 (($ (-665 |#3|)) 41)) (-3121 (((-747) $) 45 (|has| |#3| (-541)))) (-1807 ((|#3| $ (-549) (-549)) NIL)) (-2987 (((-621 |#3|) $) NIL (|has| $ (-6 -4336)))) (-4303 (((-747) $) 47 (|has| |#3| (-541)))) (-3290 (((-621 (-234 |#1| |#3|)) $) 51 (|has| |#3| (-541)))) (-2140 (((-747) $) NIL)) (-2153 (((-747) $) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-3057 (((-549) $) NIL)) (-3861 (((-549) $) NIL)) (-3698 (((-621 |#3|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#3| (-1066))))) (-1766 (((-549) $) NIL)) (-2813 (((-549) $) NIL)) (-3944 (($ (-621 (-621 |#3|))) 27)) (-1864 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) NIL)) (-1987 (((-621 (-621 |#3|)) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2040 (((-3 $ "failed") $ |#3|) NIL (|has| |#3| (-541)))) (-3360 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 |#3|) (-621 |#3|)) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066)))) (($ $ (-287 |#3|)) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066)))) (($ $ (-621 (-287 |#3|))) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#3| $ (-549) (-549)) NIL) ((|#3| $ (-549) (-549) |#3|) NIL)) (-2260 (((-133)) 54 (|has| |#3| (-356)))) (-2839 (((-112) $) NIL)) (-3997 (((-747) |#3| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#3| (-1066)))) (((-747) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) 63 (|has| |#3| (-594 (-525))))) (-1476 (((-234 |#1| |#3|) $ (-549)) 36)) (-3845 (((-834) $) 16) (((-665 |#3|) $) 38)) (-3025 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4336)))) (-3752 (((-112) $) NIL)) (-3274 (($) 13 T CONST)) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ |#3|) NIL (|has| |#3| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ |#3| $) NIL) (($ $ |#3|) NIL)) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-1022 |#1| |#2| |#3|) (-13 (-1021 |#1| |#2| |#3| (-234 |#2| |#3|) (-234 |#1| |#3|)) (-593 (-665 |#3|)) (-10 -8 (IF (|has| |#3| (-356)) (-6 (-1232 |#3|)) |%noBranch|) (IF (|has| |#3| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (-15 -3670 ($ (-665 |#3|))) (-15 -3845 ((-665 |#3|) $)))) (-747) (-747) (-1018)) (T -1022))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-665 *5)) (-5 *1 (-1022 *3 *4 *5)) (-14 *3 (-747)) (-14 *4 (-747)) (-4 *5 (-1018)))) (-3670 (*1 *1 *2) (-12 (-5 *2 (-665 *5)) (-4 *5 (-1018)) (-5 *1 (-1022 *3 *4 *5)) (-14 *3 (-747)) (-14 *4 (-747)))))
+(-13 (-1021 |#1| |#2| |#3| (-234 |#2| |#3|) (-234 |#1| |#3|)) (-593 (-665 |#3|)) (-10 -8 (IF (|has| |#3| (-356)) (-6 (-1232 |#3|)) |%noBranch|) (IF (|has| |#3| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|) (-15 -3670 ($ (-665 |#3|))) (-15 -3845 ((-665 |#3|) $))))
+((-2556 ((|#7| (-1 |#7| |#3| |#7|) |#6| |#7|) 34)) (-2795 ((|#10| (-1 |#7| |#3|) |#6|) 32)))
+(((-1023 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8| |#9| |#10|) (-10 -7 (-15 -2795 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -2556 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|))) (-747) (-747) (-1018) (-232 |#2| |#3|) (-232 |#1| |#3|) (-1021 |#1| |#2| |#3| |#4| |#5|) (-1018) (-232 |#2| |#7|) (-232 |#1| |#7|) (-1021 |#1| |#2| |#7| |#8| |#9|)) (T -1023))
+((-2556 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-1018)) (-4 *2 (-1018)) (-14 *5 (-747)) (-14 *6 (-747)) (-4 *8 (-232 *6 *7)) (-4 *9 (-232 *5 *7)) (-4 *10 (-232 *6 *2)) (-4 *11 (-232 *5 *2)) (-5 *1 (-1023 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12)) (-4 *4 (-1021 *5 *6 *7 *8 *9)) (-4 *12 (-1021 *5 *6 *2 *10 *11)))) (-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-1018)) (-4 *10 (-1018)) (-14 *5 (-747)) (-14 *6 (-747)) (-4 *8 (-232 *6 *7)) (-4 *9 (-232 *5 *7)) (-4 *2 (-1021 *5 *6 *10 *11 *12)) (-5 *1 (-1023 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2)) (-4 *4 (-1021 *5 *6 *7 *8 *9)) (-4 *11 (-232 *6 *10)) (-4 *12 (-232 *5 *10)))))
+(-10 -7 (-15 -2795 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -2556 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ |#1|) 23)))
(((-1024 |#1|) (-138) (-1025)) (T -1024))
((* (*1 *1 *1 *2) (-12 (-4 *1 (-1024 *2)) (-4 *2 (-1025)))))
(-13 (-21) (-10 -8 (-15 * ($ $ |t#1|))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
(((-1025) (-138)) (T -1025))
NIL
-(-13 (-21) (-1079))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-1079) . T) ((-1067) . T))
-((-3896 (($ $) 16)) (-3252 (($ $) 22)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 49)) (-3630 (($ $) 24)) (-2873 (($ $) 11)) (-3967 (($ $) 38)) (-2845 (((-372) $) NIL) (((-219) $) NIL) (((-863 (-372)) $) 33)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) 28) (($ (-549)) NIL) (($ (-400 (-549))) 28)) (-2082 (((-747)) 8)) (-2546 (($ $) 39)))
-(((-1026 |#1|) (-10 -8 (-15 -3252 (|#1| |#1|)) (-15 -3896 (|#1| |#1|)) (-15 -2873 (|#1| |#1|)) (-15 -3967 (|#1| |#1|)) (-15 -2546 (|#1| |#1|)) (-15 -3630 (|#1| |#1|)) (-15 -2932 ((-860 (-372) |#1|) |#1| (-863 (-372)) (-860 (-372) |#1|))) (-15 -2845 ((-863 (-372)) |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -3846 (|#1| (-549))) (-15 -2845 ((-219) |#1|)) (-15 -2845 ((-372) |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -3846 (|#1| |#1|)) (-15 -3846 (|#1| (-549))) (-15 -2082 ((-747))) (-15 -3846 ((-834) |#1|))) (-1027)) (T -1026))
-((-2082 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-1026 *3)) (-4 *3 (-1027)))))
-(-10 -8 (-15 -3252 (|#1| |#1|)) (-15 -3896 (|#1| |#1|)) (-15 -2873 (|#1| |#1|)) (-15 -3967 (|#1| |#1|)) (-15 -2546 (|#1| |#1|)) (-15 -3630 (|#1| |#1|)) (-15 -2932 ((-860 (-372) |#1|) |#1| (-863 (-372)) (-860 (-372) |#1|))) (-15 -2845 ((-863 (-372)) |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -3846 (|#1| (-549))) (-15 -2845 ((-219) |#1|)) (-15 -2845 ((-372) |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -3846 (|#1| |#1|)) (-15 -3846 (|#1| (-549))) (-15 -2082 ((-747))) (-15 -3846 ((-834) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-3329 (((-549) $) 86)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-3896 (($ $) 84)) (-2001 (((-3 $ "failed") $ $) 19)) (-3979 (($ $) 70)) (-2402 (((-411 $) $) 69)) (-2134 (($ $) 94)) (-3866 (((-112) $ $) 57)) (-1872 (((-549) $) 111)) (-1682 (($) 17 T CONST)) (-3252 (($ $) 83)) (-2714 (((-3 (-549) "failed") $) 99) (((-3 (-400 (-549)) "failed") $) 96)) (-2659 (((-549) $) 98) (((-400 (-549)) $) 95)) (-2095 (($ $ $) 53)) (-2114 (((-3 $ "failed") $) 32)) (-2067 (($ $ $) 54)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 49)) (-1420 (((-112) $) 68)) (-2772 (((-112) $) 109)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 90)) (-2675 (((-112) $) 30)) (-4187 (($ $ (-549)) 93)) (-3630 (($ $) 89)) (-2374 (((-112) $) 110)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-2863 (($ $ $) 108)) (-3575 (($ $ $) 107)) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-1992 (($ $) 67)) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-2873 (($ $) 85)) (-3967 (($ $) 87)) (-2121 (((-411 $) $) 71)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2042 (((-3 $ "failed") $ $) 40)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-3684 (((-747) $) 56)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 55)) (-2845 (((-372) $) 102) (((-219) $) 101) (((-863 (-372)) $) 91)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63) (($ (-549)) 100) (($ (-400 (-549))) 97)) (-2082 (((-747)) 28)) (-2546 (($ $) 88)) (-1498 (((-112) $ $) 37)) (-3212 (($ $) 112)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2448 (((-112) $ $) 105)) (-2425 (((-112) $ $) 104)) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 106)) (-2412 (((-112) $ $) 103)) (-2513 (($ $ $) 62)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66) (($ $ (-400 (-549))) 92)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64)))
+(-13 (-21) (-1078))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-130) . T) ((-593 (-834)) . T) ((-1078) . T) ((-1066) . T))
+((-3691 (($ $) 16)) (-2468 (($ $) 22)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 49)) (-2469 (($ $) 24)) (-1512 (($ $) 11)) (-1349 (($ $) 38)) (-2843 (((-372) $) NIL) (((-219) $) NIL) (((-863 (-372)) $) 33)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL) (($ (-400 (-549))) 28) (($ (-549)) NIL) (($ (-400 (-549))) 28)) (-2371 (((-747)) 8)) (-3497 (($ $) 39)))
+(((-1026 |#1|) (-10 -8 (-15 -2468 (|#1| |#1|)) (-15 -3691 (|#1| |#1|)) (-15 -1512 (|#1| |#1|)) (-15 -1349 (|#1| |#1|)) (-15 -3497 (|#1| |#1|)) (-15 -2469 (|#1| |#1|)) (-15 -3849 ((-860 (-372) |#1|) |#1| (-863 (-372)) (-860 (-372) |#1|))) (-15 -2843 ((-863 (-372)) |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -3845 (|#1| (-549))) (-15 -2843 ((-219) |#1|)) (-15 -2843 ((-372) |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -3845 (|#1| |#1|)) (-15 -3845 (|#1| (-549))) (-15 -2371 ((-747))) (-15 -3845 ((-834) |#1|))) (-1027)) (T -1026))
+((-2371 (*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-1026 *3)) (-4 *3 (-1027)))))
+(-10 -8 (-15 -2468 (|#1| |#1|)) (-15 -3691 (|#1| |#1|)) (-15 -1512 (|#1| |#1|)) (-15 -1349 (|#1| |#1|)) (-15 -3497 (|#1| |#1|)) (-15 -2469 (|#1| |#1|)) (-15 -3849 ((-860 (-372) |#1|) |#1| (-863 (-372)) (-860 (-372) |#1|))) (-15 -2843 ((-863 (-372)) |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -3845 (|#1| (-549))) (-15 -2843 ((-219) |#1|)) (-15 -2843 ((-372) |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -3845 (|#1| |#1|)) (-15 -3845 (|#1| (-549))) (-15 -2371 ((-747))) (-15 -3845 ((-834) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-3833 (((-549) $) 86)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-3691 (($ $) 84)) (-2416 (((-3 $ "failed") $ $) 19)) (-3239 (($ $) 70)) (-2620 (((-411 $) $) 69)) (-2132 (($ $) 94)) (-2680 (((-112) $ $) 57)) (-1741 (((-549) $) 111)) (-3034 (($) 17 T CONST)) (-2468 (($ $) 83)) (-2712 (((-3 (-549) "failed") $) 99) (((-3 (-400 (-549)) "failed") $) 96)) (-2657 (((-549) $) 98) (((-400 (-549)) $) 95)) (-2091 (($ $ $) 53)) (-2612 (((-3 $ "failed") $) 32)) (-2065 (($ $ $) 54)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 49)) (-1464 (((-112) $) 68)) (-2357 (((-112) $) 109)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 90)) (-2297 (((-112) $) 30)) (-3621 (($ $ (-549)) 93)) (-2469 (($ $) 89)) (-1992 (((-112) $) 110)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-2861 (($ $ $) 108)) (-3574 (($ $ $) 107)) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-1990 (($ $) 67)) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-1512 (($ $) 85)) (-1349 (($ $) 87)) (-2119 (((-411 $) $) 71)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2040 (((-3 $ "failed") $ $) 40)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-1335 (((-747) $) 56)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 55)) (-2843 (((-372) $) 102) (((-219) $) 101) (((-863 (-372)) $) 91)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63) (($ (-549)) 100) (($ (-400 (-549))) 97)) (-2371 (((-747)) 28)) (-3497 (($ $) 88)) (-2441 (((-112) $ $) 37)) (-2199 (($ $) 112)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2447 (((-112) $ $) 105)) (-2423 (((-112) $ $) 104)) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 106)) (-2409 (((-112) $ $) 103)) (-2511 (($ $ $) 62)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66) (($ $ (-400 (-549))) 92)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64)))
(((-1027) (-138)) (T -1027))
-((-3212 (*1 *1 *1) (-4 *1 (-1027))) (-3630 (*1 *1 *1) (-4 *1 (-1027))) (-2546 (*1 *1 *1) (-4 *1 (-1027))) (-3967 (*1 *1 *1) (-4 *1 (-1027))) (-3329 (*1 *2 *1) (-12 (-4 *1 (-1027)) (-5 *2 (-549)))) (-2873 (*1 *1 *1) (-4 *1 (-1027))) (-3896 (*1 *1 *1) (-4 *1 (-1027))) (-3252 (*1 *1 *1) (-4 *1 (-1027))))
-(-13 (-356) (-821) (-993) (-1009 (-549)) (-1009 (-400 (-549))) (-973) (-594 (-863 (-372))) (-857 (-372)) (-145) (-10 -8 (-15 -3630 ($ $)) (-15 -2546 ($ $)) (-15 -3967 ($ $)) (-15 -3329 ((-549) $)) (-15 -2873 ($ $)) (-15 -3896 ($ $)) (-15 -3252 ($ $)) (-15 -3212 ($ $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-145) . T) ((-593 (-834)) . T) ((-170) . T) ((-594 (-219)) . T) ((-594 (-372)) . T) ((-594 (-863 (-372))) . T) ((-237) . T) ((-283) . T) ((-300) . T) ((-356) . T) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 $) . T) ((-703) . T) ((-767) . T) ((-768) . T) ((-770) . T) ((-771) . T) ((-821) . T) ((-823) . T) ((-857 (-372)) . T) ((-891) . T) ((-973) . T) ((-993) . T) ((-1009 (-400 (-549))) . T) ((-1009 (-549)) . T) ((-1024 #0#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1184) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) |#2| $) 23)) (-3614 ((|#1| $) 10)) (-1872 (((-549) |#2| $) 88)) (-1947 (((-3 $ "failed") |#2| (-892)) 57)) (-3848 ((|#1| $) 28)) (-1336 ((|#1| |#2| $ |#1|) 37)) (-4166 (($ $) 25)) (-2114 (((-3 |#2| "failed") |#2| $) 87)) (-2772 (((-112) |#2| $) NIL)) (-2374 (((-112) |#2| $) NIL)) (-3992 (((-112) |#2| $) 24)) (-1592 ((|#1| $) 89)) (-3838 ((|#1| $) 27)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2815 ((|#2| $) 79)) (-3846 (((-834) $) 70)) (-2661 ((|#1| |#2| $ |#1|) 38)) (-3302 (((-621 $) |#2|) 59)) (-2389 (((-112) $ $) 74)))
-(((-1028 |#1| |#2|) (-13 (-1035 |#1| |#2|) (-10 -8 (-15 -3838 (|#1| $)) (-15 -3848 (|#1| $)) (-15 -3614 (|#1| $)) (-15 -1592 (|#1| $)) (-15 -4166 ($ $)) (-15 -3992 ((-112) |#2| $)) (-15 -1336 (|#1| |#2| $ |#1|)))) (-13 (-821) (-356)) (-1202 |#1|)) (T -1028))
-((-1336 (*1 *2 *3 *1 *2) (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3)) (-4 *3 (-1202 *2)))) (-3838 (*1 *2 *1) (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3)) (-4 *3 (-1202 *2)))) (-3848 (*1 *2 *1) (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3)) (-4 *3 (-1202 *2)))) (-3614 (*1 *2 *1) (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3)) (-4 *3 (-1202 *2)))) (-1592 (*1 *2 *1) (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3)) (-4 *3 (-1202 *2)))) (-4166 (*1 *1 *1) (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3)) (-4 *3 (-1202 *2)))) (-3992 (*1 *2 *3 *1) (-12 (-4 *4 (-13 (-821) (-356))) (-5 *2 (-112)) (-5 *1 (-1028 *4 *3)) (-4 *3 (-1202 *4)))))
-(-13 (-1035 |#1| |#2|) (-10 -8 (-15 -3838 (|#1| $)) (-15 -3848 (|#1| $)) (-15 -3614 (|#1| $)) (-15 -1592 (|#1| $)) (-15 -4166 ($ $)) (-15 -3992 ((-112) |#2| $)) (-15 -1336 (|#1| |#2| $ |#1|))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2831 (($ $ $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3332 (($ $ $ $) NIL)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1872 (((-549) $) NIL)) (-1310 (($ $ $) NIL)) (-1682 (($) NIL T CONST)) (-2625 (($ (-1143)) 10) (($ (-549)) 7)) (-2714 (((-3 (-549) "failed") $) NIL)) (-2659 (((-549) $) NIL)) (-2095 (($ $ $) NIL)) (-3879 (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL) (((-665 (-549)) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3405 (((-3 (-400 (-549)) "failed") $) NIL)) (-3679 (((-112) $) NIL)) (-2532 (((-400 (-549)) $) NIL)) (-3239 (($) NIL) (($ $) NIL)) (-2067 (($ $ $) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-3806 (($ $ $ $) NIL)) (-3947 (($ $ $) NIL)) (-2772 (((-112) $) NIL)) (-1271 (($ $ $) NIL)) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL)) (-2675 (((-112) $) NIL)) (-3559 (((-112) $) NIL)) (-1681 (((-3 $ "failed") $) NIL)) (-2374 (((-112) $) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3030 (($ $ $ $) NIL)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-2433 (($ $) NIL)) (-4210 (($ $) NIL)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-2950 (($ $ $) NIL)) (-3060 (($) NIL T CONST)) (-3781 (($ $) NIL)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) NIL) (($ (-621 $)) NIL)) (-4005 (($ $) NIL)) (-2121 (((-411 $) $) NIL)) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3450 (((-112) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3456 (($ $ (-747)) NIL) (($ $) NIL)) (-1900 (($ $) NIL)) (-2281 (($ $) NIL)) (-2845 (((-549) $) 16) (((-525) $) NIL) (((-863 (-549)) $) NIL) (((-372) $) NIL) (((-219) $) NIL) (($ (-1143)) 9)) (-3846 (((-834) $) 20) (($ (-549)) 6) (($ $) NIL) (($ (-549)) 6)) (-2082 (((-747)) NIL)) (-3935 (((-112) $ $) NIL)) (-3179 (($ $ $) NIL)) (-1864 (($) NIL)) (-1498 (((-112) $ $) NIL)) (-3610 (($ $ $ $) NIL)) (-3212 (($ $) NIL)) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $ (-747)) NIL) (($ $) NIL)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) NIL)) (-2500 (($ $) 19) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL)))
-(((-1029) (-13 (-534) (-10 -8 (-6 -4324) (-6 -4329) (-6 -4325) (-15 -2845 ($ (-1143))) (-15 -2625 ($ (-1143))) (-15 -2625 ($ (-549)))))) (T -1029))
-((-2845 (*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1029)))) (-2625 (*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1029)))) (-2625 (*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1029)))))
-(-13 (-534) (-10 -8 (-6 -4324) (-6 -4329) (-6 -4325) (-15 -2845 ($ (-1143))) (-15 -2625 ($ (-1143))) (-15 -2625 ($ (-549)))))
-((-3834 (((-112) $ $) NIL (-1536 (|has| (-52) (-1067)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067))))) (-3733 (($) NIL) (($ (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) NIL)) (-1535 (((-1231) $ (-1143) (-1143)) NIL (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) NIL)) (-3013 (($) 9)) (-2254 (((-52) $ (-1143) (-52)) NIL)) (-1849 (($ $) 30)) (-3949 (($ $) 28)) (-1354 (($ $) 27)) (-1925 (($ $) 29)) (-1899 (($ $) 32)) (-2262 (($ $) 33)) (-2789 (($ $) 26)) (-3999 (($ $) 31)) (-1717 (($ (-1 (-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) 25 (|has| $ (-6 -4337)))) (-3490 (((-3 (-52) "failed") (-1143) $) 40)) (-1682 (($) NIL T CONST)) (-1579 (($) 7)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067))))) (-2129 (($ (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) $) 50 (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337))) (((-3 (-52) "failed") (-1143) $) NIL)) (-3812 (($ (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067)))) (($ (-1 (-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337)))) (-2557 (((-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $ (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067)))) (((-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $ (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337)))) (-2428 (((-3 (-1125) "failed") $ (-1125) (-549)) 59)) (-1879 (((-52) $ (-1143) (-52)) NIL (|has| $ (-6 -4338)))) (-1809 (((-52) $ (-1143)) NIL)) (-2989 (((-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337))) (((-621 (-52)) $) NIL (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-1143) $) NIL (|has| (-1143) (-823)))) (-1562 (((-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) 35 (|has| $ (-6 -4337))) (((-621 (-52)) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-52) (-1067))))) (-1569 (((-1143) $) NIL (|has| (-1143) (-823)))) (-1868 (($ (-1 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4338))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (-1536 (|has| (-52) (-1067)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067))))) (-3449 (((-621 (-1143)) $) NIL)) (-2427 (((-112) (-1143) $) NIL)) (-3504 (((-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) $) NIL)) (-2751 (($ (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) $) 43)) (-3303 (((-621 (-1143)) $) NIL)) (-3761 (((-112) (-1143) $) NIL)) (-3990 (((-1087) $) NIL (-1536 (|has| (-52) (-1067)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067))))) (-2089 (((-372) $ (-1143)) 49)) (-2398 (((-621 (-1125)) $ (-1125)) 60)) (-3646 (((-52) $) NIL (|has| (-1143) (-823)))) (-3779 (((-3 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) "failed") (-1 (-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL)) (-1642 (($ $ (-52)) NIL (|has| $ (-6 -4338)))) (-3325 (((-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) $) NIL)) (-1780 (((-112) (-1 (-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))))) NIL (-12 (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067)))) (($ $ (-287 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) NIL (-12 (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067)))) (($ $ (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) NIL (-12 (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067)))) (($ $ (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) NIL (-12 (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-302 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067)))) (($ $ (-621 (-52)) (-621 (-52))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1067)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1067)))) (($ $ (-287 (-52))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1067)))) (($ $ (-621 (-287 (-52)))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-52) (-1067))))) (-2696 (((-621 (-52)) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 (((-52) $ (-1143)) NIL) (((-52) $ (-1143) (-52)) NIL)) (-2898 (($) NIL) (($ (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) NIL)) (-4130 (($ $ (-1143)) 51)) (-4000 (((-747) (-1 (-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337))) (((-747) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067)))) (((-747) (-52) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-52) (-1067)))) (((-747) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-594 (-525))))) (-3854 (($ (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) 37)) (-1952 (($ $ $) 38)) (-3846 (((-834) $) NIL (-1536 (|has| (-52) (-593 (-834))) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-593 (-834)))))) (-4023 (($ $ (-1143) (-372)) 47)) (-4139 (($ $ (-1143) (-372)) 48)) (-3624 (($ (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))))) NIL)) (-3527 (((-112) (-1 (-112) (-2 (|:| -3337 (-1143)) (|:| -1793 (-52)))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (-1536 (|has| (-52) (-1067)) (|has| (-2 (|:| -3337 (-1143)) (|:| -1793 (-52))) (-1067))))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-1030) (-13 (-1156 (-1143) (-52)) (-10 -8 (-15 -1952 ($ $ $)) (-15 -1579 ($)) (-15 -2789 ($ $)) (-15 -1354 ($ $)) (-15 -3949 ($ $)) (-15 -1925 ($ $)) (-15 -3999 ($ $)) (-15 -1849 ($ $)) (-15 -1899 ($ $)) (-15 -2262 ($ $)) (-15 -4023 ($ $ (-1143) (-372))) (-15 -4139 ($ $ (-1143) (-372))) (-15 -2089 ((-372) $ (-1143))) (-15 -2398 ((-621 (-1125)) $ (-1125))) (-15 -4130 ($ $ (-1143))) (-15 -3013 ($)) (-15 -2428 ((-3 (-1125) "failed") $ (-1125) (-549))) (-6 -4337)))) (T -1030))
-((-1952 (*1 *1 *1 *1) (-5 *1 (-1030))) (-1579 (*1 *1) (-5 *1 (-1030))) (-2789 (*1 *1 *1) (-5 *1 (-1030))) (-1354 (*1 *1 *1) (-5 *1 (-1030))) (-3949 (*1 *1 *1) (-5 *1 (-1030))) (-1925 (*1 *1 *1) (-5 *1 (-1030))) (-3999 (*1 *1 *1) (-5 *1 (-1030))) (-1849 (*1 *1 *1) (-5 *1 (-1030))) (-1899 (*1 *1 *1) (-5 *1 (-1030))) (-2262 (*1 *1 *1) (-5 *1 (-1030))) (-4023 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-372)) (-5 *1 (-1030)))) (-4139 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-372)) (-5 *1 (-1030)))) (-2089 (*1 *2 *1 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-372)) (-5 *1 (-1030)))) (-2398 (*1 *2 *1 *3) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1030)) (-5 *3 (-1125)))) (-4130 (*1 *1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1030)))) (-3013 (*1 *1) (-5 *1 (-1030))) (-2428 (*1 *2 *1 *2 *3) (|partial| -12 (-5 *2 (-1125)) (-5 *3 (-549)) (-5 *1 (-1030)))))
-(-13 (-1156 (-1143) (-52)) (-10 -8 (-15 -1952 ($ $ $)) (-15 -1579 ($)) (-15 -2789 ($ $)) (-15 -1354 ($ $)) (-15 -3949 ($ $)) (-15 -1925 ($ $)) (-15 -3999 ($ $)) (-15 -1849 ($ $)) (-15 -1899 ($ $)) (-15 -2262 ($ $)) (-15 -4023 ($ $ (-1143) (-372))) (-15 -4139 ($ $ (-1143) (-372))) (-15 -2089 ((-372) $ (-1143))) (-15 -2398 ((-621 (-1125)) $ (-1125))) (-15 -4130 ($ $ (-1143))) (-15 -3013 ($)) (-15 -2428 ((-3 (-1125) "failed") $ (-1125) (-549))) (-6 -4337)))
-((-1343 (($ $) 45)) (-2635 (((-112) $ $) 74)) (-2714 (((-3 |#2| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 (-549) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 $ "failed") (-923 (-400 (-549)))) 227) (((-3 $ "failed") (-923 (-549))) 226) (((-3 $ "failed") (-923 |#2|)) 229)) (-2659 ((|#2| $) NIL) (((-400 (-549)) $) NIL) (((-549) $) NIL) ((|#4| $) NIL) (($ (-923 (-400 (-549)))) 215) (($ (-923 (-549))) 211) (($ (-923 |#2|)) 231)) (-2070 (($ $) NIL) (($ $ |#4|) 43)) (-2217 (((-112) $ $) 112) (((-112) $ (-621 $)) 113)) (-2316 (((-112) $) 56)) (-3921 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 107)) (-2653 (($ $) 138)) (-2348 (($ $) 134)) (-2582 (($ $) 133)) (-2882 (($ $ $) 79) (($ $ $ |#4|) 84)) (-2854 (($ $ $) 82) (($ $ $ |#4|) 86)) (-2812 (((-112) $ $) 121) (((-112) $ (-621 $)) 122)) (-2745 ((|#4| $) 33)) (-2083 (($ $ $) 110)) (-2600 (((-112) $) 55)) (-4247 (((-747) $) 35)) (-2280 (($ $) 152)) (-1915 (($ $) 149)) (-4239 (((-621 $) $) 68)) (-3070 (($ $) 57)) (-2878 (($ $) 145)) (-1876 (((-621 $) $) 65)) (-2801 (($ $) 59)) (-2043 ((|#2| $) NIL) (($ $ |#4|) 38)) (-2926 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3063 (-747))) $ $) 111)) (-4163 (((-2 (|:| -1570 $) (|:| |gap| (-747)) (|:| -4013 $) (|:| -3675 $)) $ $) 108) (((-2 (|:| -1570 $) (|:| |gap| (-747)) (|:| -4013 $) (|:| -3675 $)) $ $ |#4|) 109)) (-3507 (((-2 (|:| -1570 $) (|:| |gap| (-747)) (|:| -3675 $)) $ $) 104) (((-2 (|:| -1570 $) (|:| |gap| (-747)) (|:| -3675 $)) $ $ |#4|) 105)) (-3564 (($ $ $) 89) (($ $ $ |#4|) 95)) (-3420 (($ $ $) 90) (($ $ $ |#4|) 96)) (-3263 (((-621 $) $) 51)) (-2170 (((-112) $ $) 118) (((-112) $ (-621 $)) 119)) (-3270 (($ $ $) 103)) (-3060 (($ $) 37)) (-2473 (((-112) $ $) 72)) (-1335 (((-112) $ $) 114) (((-112) $ (-621 $)) 116)) (-4298 (($ $ $) 101)) (-3477 (($ $) 40)) (-3727 ((|#2| |#2| $) 142) (($ (-621 $)) NIL) (($ $ $) NIL)) (-2191 (($ $ |#2|) NIL) (($ $ $) 131)) (-3535 (($ $ |#2|) 126) (($ $ $) 129)) (-3828 (($ $) 48)) (-1608 (($ $) 52)) (-2845 (((-863 (-372)) $) NIL) (((-863 (-549)) $) NIL) (((-525) $) NIL) (($ (-923 (-400 (-549)))) 217) (($ (-923 (-549))) 213) (($ (-923 |#2|)) 228) (((-1125) $) 250) (((-923 |#2|) $) 162)) (-3846 (((-834) $) 30) (($ (-549)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (((-923 |#2|) $) 163) (($ (-400 (-549))) NIL) (($ $) NIL)) (-1712 (((-3 (-112) "failed") $ $) 71)))
-(((-1031 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3846 (|#1| |#1|)) (-15 -3727 (|#1| |#1| |#1|)) (-15 -3727 (|#1| (-621 |#1|))) (-15 -3846 (|#1| (-400 (-549)))) (-15 -3846 ((-923 |#2|) |#1|)) (-15 -2845 ((-923 |#2|) |#1|)) (-15 -2845 ((-1125) |#1|)) (-15 -2280 (|#1| |#1|)) (-15 -1915 (|#1| |#1|)) (-15 -2878 (|#1| |#1|)) (-15 -2653 (|#1| |#1|)) (-15 -3727 (|#2| |#2| |#1|)) (-15 -2191 (|#1| |#1| |#1|)) (-15 -3535 (|#1| |#1| |#1|)) (-15 -2191 (|#1| |#1| |#2|)) (-15 -3535 (|#1| |#1| |#2|)) (-15 -2348 (|#1| |#1|)) (-15 -2582 (|#1| |#1|)) (-15 -2845 (|#1| (-923 |#2|))) (-15 -2659 (|#1| (-923 |#2|))) (-15 -2714 ((-3 |#1| "failed") (-923 |#2|))) (-15 -2845 (|#1| (-923 (-549)))) (-15 -2659 (|#1| (-923 (-549)))) (-15 -2714 ((-3 |#1| "failed") (-923 (-549)))) (-15 -2845 (|#1| (-923 (-400 (-549))))) (-15 -2659 (|#1| (-923 (-400 (-549))))) (-15 -2714 ((-3 |#1| "failed") (-923 (-400 (-549))))) (-15 -3270 (|#1| |#1| |#1|)) (-15 -4298 (|#1| |#1| |#1|)) (-15 -2926 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -3063 (-747))) |#1| |#1|)) (-15 -2083 (|#1| |#1| |#1|)) (-15 -3921 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|)) (-15 -4163 ((-2 (|:| -1570 |#1|) (|:| |gap| (-747)) (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1| |#4|)) (-15 -4163 ((-2 (|:| -1570 |#1|) (|:| |gap| (-747)) (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|)) (-15 -3507 ((-2 (|:| -1570 |#1|) (|:| |gap| (-747)) (|:| -3675 |#1|)) |#1| |#1| |#4|)) (-15 -3507 ((-2 (|:| -1570 |#1|) (|:| |gap| (-747)) (|:| -3675 |#1|)) |#1| |#1|)) (-15 -3420 (|#1| |#1| |#1| |#4|)) (-15 -3564 (|#1| |#1| |#1| |#4|)) (-15 -3420 (|#1| |#1| |#1|)) (-15 -3564 (|#1| |#1| |#1|)) (-15 -2854 (|#1| |#1| |#1| |#4|)) (-15 -2882 (|#1| |#1| |#1| |#4|)) (-15 -2854 (|#1| |#1| |#1|)) (-15 -2882 (|#1| |#1| |#1|)) (-15 -2812 ((-112) |#1| (-621 |#1|))) (-15 -2812 ((-112) |#1| |#1|)) (-15 -2170 ((-112) |#1| (-621 |#1|))) (-15 -2170 ((-112) |#1| |#1|)) (-15 -1335 ((-112) |#1| (-621 |#1|))) (-15 -1335 ((-112) |#1| |#1|)) (-15 -2217 ((-112) |#1| (-621 |#1|))) (-15 -2217 ((-112) |#1| |#1|)) (-15 -2635 ((-112) |#1| |#1|)) (-15 -2473 ((-112) |#1| |#1|)) (-15 -1712 ((-3 (-112) "failed") |#1| |#1|)) (-15 -4239 ((-621 |#1|) |#1|)) (-15 -1876 ((-621 |#1|) |#1|)) (-15 -2801 (|#1| |#1|)) (-15 -3070 (|#1| |#1|)) (-15 -2316 ((-112) |#1|)) (-15 -2600 ((-112) |#1|)) (-15 -2070 (|#1| |#1| |#4|)) (-15 -2043 (|#1| |#1| |#4|)) (-15 -1608 (|#1| |#1|)) (-15 -3263 ((-621 |#1|) |#1|)) (-15 -3828 (|#1| |#1|)) (-15 -1343 (|#1| |#1|)) (-15 -3477 (|#1| |#1|)) (-15 -3060 (|#1| |#1|)) (-15 -4247 ((-747) |#1|)) (-15 -2745 (|#4| |#1|)) (-15 -2845 ((-525) |#1|)) (-15 -2845 ((-863 (-549)) |#1|)) (-15 -2845 ((-863 (-372)) |#1|)) (-15 -2659 (|#4| |#1|)) (-15 -2714 ((-3 |#4| "failed") |#1|)) (-15 -3846 (|#1| |#4|)) (-15 -2043 (|#2| |#1|)) (-15 -2070 (|#1| |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3846 (|#1| |#2|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -2659 (|#2| |#1|)) (-15 -3846 (|#1| (-549))) (-15 -3846 ((-834) |#1|))) (-1032 |#2| |#3| |#4|) (-1018) (-769) (-823)) (T -1031))
-NIL
-(-10 -8 (-15 -3846 (|#1| |#1|)) (-15 -3727 (|#1| |#1| |#1|)) (-15 -3727 (|#1| (-621 |#1|))) (-15 -3846 (|#1| (-400 (-549)))) (-15 -3846 ((-923 |#2|) |#1|)) (-15 -2845 ((-923 |#2|) |#1|)) (-15 -2845 ((-1125) |#1|)) (-15 -2280 (|#1| |#1|)) (-15 -1915 (|#1| |#1|)) (-15 -2878 (|#1| |#1|)) (-15 -2653 (|#1| |#1|)) (-15 -3727 (|#2| |#2| |#1|)) (-15 -2191 (|#1| |#1| |#1|)) (-15 -3535 (|#1| |#1| |#1|)) (-15 -2191 (|#1| |#1| |#2|)) (-15 -3535 (|#1| |#1| |#2|)) (-15 -2348 (|#1| |#1|)) (-15 -2582 (|#1| |#1|)) (-15 -2845 (|#1| (-923 |#2|))) (-15 -2659 (|#1| (-923 |#2|))) (-15 -2714 ((-3 |#1| "failed") (-923 |#2|))) (-15 -2845 (|#1| (-923 (-549)))) (-15 -2659 (|#1| (-923 (-549)))) (-15 -2714 ((-3 |#1| "failed") (-923 (-549)))) (-15 -2845 (|#1| (-923 (-400 (-549))))) (-15 -2659 (|#1| (-923 (-400 (-549))))) (-15 -2714 ((-3 |#1| "failed") (-923 (-400 (-549))))) (-15 -3270 (|#1| |#1| |#1|)) (-15 -4298 (|#1| |#1| |#1|)) (-15 -2926 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -3063 (-747))) |#1| |#1|)) (-15 -2083 (|#1| |#1| |#1|)) (-15 -3921 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|)) (-15 -4163 ((-2 (|:| -1570 |#1|) (|:| |gap| (-747)) (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1| |#4|)) (-15 -4163 ((-2 (|:| -1570 |#1|) (|:| |gap| (-747)) (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|)) (-15 -3507 ((-2 (|:| -1570 |#1|) (|:| |gap| (-747)) (|:| -3675 |#1|)) |#1| |#1| |#4|)) (-15 -3507 ((-2 (|:| -1570 |#1|) (|:| |gap| (-747)) (|:| -3675 |#1|)) |#1| |#1|)) (-15 -3420 (|#1| |#1| |#1| |#4|)) (-15 -3564 (|#1| |#1| |#1| |#4|)) (-15 -3420 (|#1| |#1| |#1|)) (-15 -3564 (|#1| |#1| |#1|)) (-15 -2854 (|#1| |#1| |#1| |#4|)) (-15 -2882 (|#1| |#1| |#1| |#4|)) (-15 -2854 (|#1| |#1| |#1|)) (-15 -2882 (|#1| |#1| |#1|)) (-15 -2812 ((-112) |#1| (-621 |#1|))) (-15 -2812 ((-112) |#1| |#1|)) (-15 -2170 ((-112) |#1| (-621 |#1|))) (-15 -2170 ((-112) |#1| |#1|)) (-15 -1335 ((-112) |#1| (-621 |#1|))) (-15 -1335 ((-112) |#1| |#1|)) (-15 -2217 ((-112) |#1| (-621 |#1|))) (-15 -2217 ((-112) |#1| |#1|)) (-15 -2635 ((-112) |#1| |#1|)) (-15 -2473 ((-112) |#1| |#1|)) (-15 -1712 ((-3 (-112) "failed") |#1| |#1|)) (-15 -4239 ((-621 |#1|) |#1|)) (-15 -1876 ((-621 |#1|) |#1|)) (-15 -2801 (|#1| |#1|)) (-15 -3070 (|#1| |#1|)) (-15 -2316 ((-112) |#1|)) (-15 -2600 ((-112) |#1|)) (-15 -2070 (|#1| |#1| |#4|)) (-15 -2043 (|#1| |#1| |#4|)) (-15 -1608 (|#1| |#1|)) (-15 -3263 ((-621 |#1|) |#1|)) (-15 -3828 (|#1| |#1|)) (-15 -1343 (|#1| |#1|)) (-15 -3477 (|#1| |#1|)) (-15 -3060 (|#1| |#1|)) (-15 -4247 ((-747) |#1|)) (-15 -2745 (|#4| |#1|)) (-15 -2845 ((-525) |#1|)) (-15 -2845 ((-863 (-549)) |#1|)) (-15 -2845 ((-863 (-372)) |#1|)) (-15 -2659 (|#4| |#1|)) (-15 -2714 ((-3 |#4| "failed") |#1|)) (-15 -3846 (|#1| |#4|)) (-15 -2043 (|#2| |#1|)) (-15 -2070 (|#1| |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3846 (|#1| |#2|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -2659 (|#2| |#1|)) (-15 -3846 (|#1| (-549))) (-15 -3846 ((-834) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2272 (((-621 |#3|) $) 108)) (-2084 (((-1139 $) $ |#3|) 123) (((-1139 |#1|) $) 122)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 85 (|has| |#1| (-541)))) (-2258 (($ $) 86 (|has| |#1| (-541)))) (-2799 (((-112) $) 88 (|has| |#1| (-541)))) (-3186 (((-747) $) 110) (((-747) $ (-621 |#3|)) 109)) (-1343 (($ $) 269)) (-2635 (((-112) $ $) 255)) (-2001 (((-3 $ "failed") $ $) 19)) (-1910 (($ $ $) 214 (|has| |#1| (-541)))) (-1506 (((-621 $) $ $) 209 (|has| |#1| (-541)))) (-3231 (((-411 (-1139 $)) (-1139 $)) 98 (|has| |#1| (-880)))) (-3979 (($ $) 96 (|has| |#1| (-444)))) (-2402 (((-411 $) $) 95 (|has| |#1| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) 101 (|has| |#1| (-880)))) (-1682 (($) 17 T CONST)) (-2714 (((-3 |#1| "failed") $) 162) (((-3 (-400 (-549)) "failed") $) 160 (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) 158 (|has| |#1| (-1009 (-549)))) (((-3 |#3| "failed") $) 134) (((-3 $ "failed") (-923 (-400 (-549)))) 229 (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#3| (-594 (-1143))))) (((-3 $ "failed") (-923 (-549))) 226 (-1536 (-12 (-4008 (|has| |#1| (-38 (-400 (-549))))) (|has| |#1| (-38 (-549))) (|has| |#3| (-594 (-1143)))) (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#3| (-594 (-1143)))))) (((-3 $ "failed") (-923 |#1|)) 223 (-1536 (-12 (-4008 (|has| |#1| (-38 (-400 (-549))))) (-4008 (|has| |#1| (-38 (-549)))) (|has| |#3| (-594 (-1143)))) (-12 (-4008 (|has| |#1| (-534))) (-4008 (|has| |#1| (-38 (-400 (-549))))) (|has| |#1| (-38 (-549))) (|has| |#3| (-594 (-1143)))) (-12 (-4008 (|has| |#1| (-963 (-549)))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#3| (-594 (-1143))))))) (-2659 ((|#1| $) 163) (((-400 (-549)) $) 159 (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) 157 (|has| |#1| (-1009 (-549)))) ((|#3| $) 133) (($ (-923 (-400 (-549)))) 228 (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#3| (-594 (-1143))))) (($ (-923 (-549))) 225 (-1536 (-12 (-4008 (|has| |#1| (-38 (-400 (-549))))) (|has| |#1| (-38 (-549))) (|has| |#3| (-594 (-1143)))) (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#3| (-594 (-1143)))))) (($ (-923 |#1|)) 222 (-1536 (-12 (-4008 (|has| |#1| (-38 (-400 (-549))))) (-4008 (|has| |#1| (-38 (-549)))) (|has| |#3| (-594 (-1143)))) (-12 (-4008 (|has| |#1| (-534))) (-4008 (|has| |#1| (-38 (-400 (-549))))) (|has| |#1| (-38 (-549))) (|has| |#3| (-594 (-1143)))) (-12 (-4008 (|has| |#1| (-963 (-549)))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#3| (-594 (-1143))))))) (-1353 (($ $ $ |#3|) 106 (|has| |#1| (-170))) (($ $ $) 210 (|has| |#1| (-541)))) (-2070 (($ $) 152) (($ $ |#3|) 264)) (-3879 (((-665 (-549)) (-665 $)) 132 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 131 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) 130) (((-665 |#1|) (-665 $)) 129)) (-2217 (((-112) $ $) 254) (((-112) $ (-621 $)) 253)) (-2114 (((-3 $ "failed") $) 32)) (-2316 (((-112) $) 262)) (-3921 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 234)) (-2653 (($ $) 203 (|has| |#1| (-444)))) (-1285 (($ $) 174 (|has| |#1| (-444))) (($ $ |#3|) 103 (|has| |#1| (-444)))) (-2058 (((-621 $) $) 107)) (-1420 (((-112) $) 94 (|has| |#1| (-880)))) (-2348 (($ $) 219 (|has| |#1| (-541)))) (-2582 (($ $) 220 (|has| |#1| (-541)))) (-2882 (($ $ $) 246) (($ $ $ |#3|) 244)) (-2854 (($ $ $) 245) (($ $ $ |#3|) 243)) (-2691 (($ $ |#1| |#2| $) 170)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 82 (-12 (|has| |#3| (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 81 (-12 (|has| |#3| (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2675 (((-112) $) 30)) (-3347 (((-747) $) 167)) (-2812 (((-112) $ $) 248) (((-112) $ (-621 $)) 247)) (-2937 (($ $ $ $ $) 205 (|has| |#1| (-541)))) (-2745 ((|#3| $) 273)) (-2261 (($ (-1139 |#1|) |#3|) 115) (($ (-1139 $) |#3|) 114)) (-3750 (((-621 $) $) 124)) (-2205 (((-112) $) 150)) (-2246 (($ |#1| |#2|) 151) (($ $ |#3| (-747)) 117) (($ $ (-621 |#3|) (-621 (-747))) 116)) (-2083 (($ $ $) 233)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ |#3|) 118)) (-2600 (((-112) $) 263)) (-3611 ((|#2| $) 168) (((-747) $ |#3|) 120) (((-621 (-747)) $ (-621 |#3|)) 119)) (-2863 (($ $ $) 77 (|has| |#1| (-823)))) (-4247 (((-747) $) 272)) (-3575 (($ $ $) 76 (|has| |#1| (-823)))) (-3705 (($ (-1 |#2| |#2|) $) 169)) (-2797 (($ (-1 |#1| |#1|) $) 149)) (-1520 (((-3 |#3| "failed") $) 121)) (-2280 (($ $) 200 (|has| |#1| (-444)))) (-1915 (($ $) 201 (|has| |#1| (-444)))) (-4239 (((-621 $) $) 258)) (-3070 (($ $) 261)) (-2878 (($ $) 202 (|has| |#1| (-444)))) (-1876 (((-621 $) $) 259)) (-2801 (($ $) 260)) (-2028 (($ $) 147)) (-2043 ((|#1| $) 146) (($ $ |#3|) 265)) (-3697 (($ (-621 $)) 92 (|has| |#1| (-444))) (($ $ $) 91 (|has| |#1| (-444)))) (-2926 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3063 (-747))) $ $) 232)) (-4163 (((-2 (|:| -1570 $) (|:| |gap| (-747)) (|:| -4013 $) (|:| -3675 $)) $ $) 236) (((-2 (|:| -1570 $) (|:| |gap| (-747)) (|:| -4013 $) (|:| -3675 $)) $ $ |#3|) 235)) (-3507 (((-2 (|:| -1570 $) (|:| |gap| (-747)) (|:| -3675 $)) $ $) 238) (((-2 (|:| -1570 $) (|:| |gap| (-747)) (|:| -3675 $)) $ $ |#3|) 237)) (-3564 (($ $ $) 242) (($ $ $ |#3|) 240)) (-3420 (($ $ $) 241) (($ $ $ |#3|) 239)) (-3851 (((-1125) $) 9)) (-3072 (($ $ $) 208 (|has| |#1| (-541)))) (-3263 (((-621 $) $) 267)) (-4266 (((-3 (-621 $) "failed") $) 112)) (-2533 (((-3 (-621 $) "failed") $) 113)) (-1503 (((-3 (-2 (|:| |var| |#3|) (|:| -3731 (-747))) "failed") $) 111)) (-2170 (((-112) $ $) 250) (((-112) $ (-621 $)) 249)) (-3270 (($ $ $) 230)) (-3060 (($ $) 271)) (-2473 (((-112) $ $) 256)) (-1335 (((-112) $ $) 252) (((-112) $ (-621 $)) 251)) (-4298 (($ $ $) 231)) (-3477 (($ $) 270)) (-3990 (((-1087) $) 10)) (-3542 (((-2 (|:| -3727 $) (|:| |coef2| $)) $ $) 211 (|has| |#1| (-541)))) (-2214 (((-2 (|:| -3727 $) (|:| |coef1| $)) $ $) 212 (|has| |#1| (-541)))) (-2004 (((-112) $) 164)) (-2016 ((|#1| $) 165)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 93 (|has| |#1| (-444)))) (-3727 ((|#1| |#1| $) 204 (|has| |#1| (-444))) (($ (-621 $)) 90 (|has| |#1| (-444))) (($ $ $) 89 (|has| |#1| (-444)))) (-2905 (((-411 (-1139 $)) (-1139 $)) 100 (|has| |#1| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) 99 (|has| |#1| (-880)))) (-2121 (((-411 $) $) 97 (|has| |#1| (-880)))) (-1444 (((-2 (|:| -3727 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 213 (|has| |#1| (-541)))) (-2042 (((-3 $ "failed") $ |#1|) 172 (|has| |#1| (-541))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-541)))) (-2191 (($ $ |#1|) 217 (|has| |#1| (-541))) (($ $ $) 215 (|has| |#1| (-541)))) (-3535 (($ $ |#1|) 218 (|has| |#1| (-541))) (($ $ $) 216 (|has| |#1| (-541)))) (-2686 (($ $ (-621 (-287 $))) 143) (($ $ (-287 $)) 142) (($ $ $ $) 141) (($ $ (-621 $) (-621 $)) 140) (($ $ |#3| |#1|) 139) (($ $ (-621 |#3|) (-621 |#1|)) 138) (($ $ |#3| $) 137) (($ $ (-621 |#3|) (-621 $)) 136)) (-3602 (($ $ |#3|) 105 (|has| |#1| (-170)))) (-3456 (($ $ |#3|) 40) (($ $ (-621 |#3|)) 39) (($ $ |#3| (-747)) 38) (($ $ (-621 |#3|) (-621 (-747))) 37)) (-3701 ((|#2| $) 148) (((-747) $ |#3|) 128) (((-621 (-747)) $ (-621 |#3|)) 127)) (-3828 (($ $) 268)) (-1608 (($ $) 266)) (-2845 (((-863 (-372)) $) 80 (-12 (|has| |#3| (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) 79 (-12 (|has| |#3| (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) 78 (-12 (|has| |#3| (-594 (-525))) (|has| |#1| (-594 (-525))))) (($ (-923 (-400 (-549)))) 227 (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#3| (-594 (-1143))))) (($ (-923 (-549))) 224 (-1536 (-12 (-4008 (|has| |#1| (-38 (-400 (-549))))) (|has| |#1| (-38 (-549))) (|has| |#3| (-594 (-1143)))) (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#3| (-594 (-1143)))))) (($ (-923 |#1|)) 221 (|has| |#3| (-594 (-1143)))) (((-1125) $) 199 (-12 (|has| |#1| (-1009 (-549))) (|has| |#3| (-594 (-1143))))) (((-923 |#1|) $) 198 (|has| |#3| (-594 (-1143))))) (-2216 ((|#1| $) 173 (|has| |#1| (-444))) (($ $ |#3|) 104 (|has| |#1| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) 102 (-1821 (|has| $ (-143)) (|has| |#1| (-880))))) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 161) (($ |#3|) 135) (((-923 |#1|) $) 197 (|has| |#3| (-594 (-1143)))) (($ (-400 (-549))) 70 (-1536 (|has| |#1| (-1009 (-400 (-549)))) (|has| |#1| (-38 (-400 (-549)))))) (($ $) 83 (|has| |#1| (-541)))) (-4141 (((-621 |#1|) $) 166)) (-2152 ((|#1| $ |#2|) 153) (($ $ |#3| (-747)) 126) (($ $ (-621 |#3|) (-621 (-747))) 125)) (-2210 (((-3 $ "failed") $) 71 (-1536 (-1821 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2082 (((-747)) 28)) (-1509 (($ $ $ (-747)) 171 (|has| |#1| (-170)))) (-1498 (((-112) $ $) 87 (|has| |#1| (-541)))) (-3276 (($) 18 T CONST)) (-1712 (((-3 (-112) "failed") $ $) 257)) (-3287 (($) 29 T CONST)) (-3706 (($ $ $ $ (-747)) 206 (|has| |#1| (-541)))) (-2938 (($ $ $ (-747)) 207 (|has| |#1| (-541)))) (-1702 (($ $ |#3|) 36) (($ $ (-621 |#3|)) 35) (($ $ |#3| (-747)) 34) (($ $ (-621 |#3|) (-621 (-747))) 33)) (-2448 (((-112) $ $) 74 (|has| |#1| (-823)))) (-2425 (((-112) $ $) 73 (|has| |#1| (-823)))) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 75 (|has| |#1| (-823)))) (-2412 (((-112) $ $) 72 (|has| |#1| (-823)))) (-2513 (($ $ |#1|) 154 (|has| |#1| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 156 (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) 155 (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 145) (($ $ |#1|) 144)))
+((-2199 (*1 *1 *1) (-4 *1 (-1027))) (-2469 (*1 *1 *1) (-4 *1 (-1027))) (-3497 (*1 *1 *1) (-4 *1 (-1027))) (-1349 (*1 *1 *1) (-4 *1 (-1027))) (-3833 (*1 *2 *1) (-12 (-4 *1 (-1027)) (-5 *2 (-549)))) (-1512 (*1 *1 *1) (-4 *1 (-1027))) (-3691 (*1 *1 *1) (-4 *1 (-1027))) (-2468 (*1 *1 *1) (-4 *1 (-1027))))
+(-13 (-356) (-821) (-993) (-1009 (-549)) (-1009 (-400 (-549))) (-973) (-594 (-863 (-372))) (-857 (-372)) (-145) (-10 -8 (-15 -2469 ($ $)) (-15 -3497 ($ $)) (-15 -1349 ($ $)) (-15 -3833 ((-549) $)) (-15 -1512 ($ $)) (-15 -3691 ($ $)) (-15 -2468 ($ $)) (-15 -2199 ($ $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-145) . T) ((-593 (-834)) . T) ((-170) . T) ((-594 (-219)) . T) ((-594 (-372)) . T) ((-594 (-863 (-372))) . T) ((-237) . T) ((-283) . T) ((-300) . T) ((-356) . T) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 $) . T) ((-703) . T) ((-767) . T) ((-768) . T) ((-770) . T) ((-771) . T) ((-821) . T) ((-823) . T) ((-857 (-372)) . T) ((-891) . T) ((-973) . T) ((-993) . T) ((-1009 (-400 (-549))) . T) ((-1009 (-549)) . T) ((-1024 #0#) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1183) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) |#2| $) 23)) (-3614 ((|#1| $) 10)) (-1741 (((-549) |#2| $) 88)) (-2406 (((-3 $ "failed") |#2| (-892)) 57)) (-3847 ((|#1| $) 28)) (-3351 ((|#1| |#2| $ |#1|) 37)) (-3033 (($ $) 25)) (-2612 (((-3 |#2| "failed") |#2| $) 87)) (-2357 (((-112) |#2| $) NIL)) (-1992 (((-112) |#2| $) NIL)) (-1773 (((-112) |#2| $) 24)) (-2207 ((|#1| $) 89)) (-3837 ((|#1| $) 27)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-1262 ((|#2| $) 79)) (-3845 (((-834) $) 70)) (-2659 ((|#1| |#2| $ |#1|) 38)) (-2229 (((-621 $) |#2|) 59)) (-2387 (((-112) $ $) 74)))
+(((-1028 |#1| |#2|) (-13 (-1035 |#1| |#2|) (-10 -8 (-15 -3837 (|#1| $)) (-15 -3847 (|#1| $)) (-15 -3614 (|#1| $)) (-15 -2207 (|#1| $)) (-15 -3033 ($ $)) (-15 -1773 ((-112) |#2| $)) (-15 -3351 (|#1| |#2| $ |#1|)))) (-13 (-821) (-356)) (-1201 |#1|)) (T -1028))
+((-3351 (*1 *2 *3 *1 *2) (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3)) (-4 *3 (-1201 *2)))) (-3837 (*1 *2 *1) (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3)) (-4 *3 (-1201 *2)))) (-3847 (*1 *2 *1) (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3)) (-4 *3 (-1201 *2)))) (-3614 (*1 *2 *1) (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3)) (-4 *3 (-1201 *2)))) (-2207 (*1 *2 *1) (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3)) (-4 *3 (-1201 *2)))) (-3033 (*1 *1 *1) (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3)) (-4 *3 (-1201 *2)))) (-1773 (*1 *2 *3 *1) (-12 (-4 *4 (-13 (-821) (-356))) (-5 *2 (-112)) (-5 *1 (-1028 *4 *3)) (-4 *3 (-1201 *4)))))
+(-13 (-1035 |#1| |#2|) (-10 -8 (-15 -3837 (|#1| $)) (-15 -3847 (|#1| $)) (-15 -3614 (|#1| $)) (-15 -2207 (|#1| $)) (-15 -3033 ($ $)) (-15 -1773 ((-112) |#2| $)) (-15 -3351 (|#1| |#2| $ |#1|))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-3198 (($ $ $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-2973 (($ $ $ $) NIL)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2680 (((-112) $ $) NIL)) (-1741 (((-549) $) NIL)) (-1309 (($ $ $) NIL)) (-3034 (($) NIL T CONST)) (-2778 (($ (-1142)) 10) (($ (-549)) 7)) (-2712 (((-3 (-549) "failed") $) NIL)) (-2657 (((-549) $) NIL)) (-2091 (($ $ $) NIL)) (-3446 (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL) (((-665 (-549)) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-1531 (((-3 (-400 (-549)) "failed") $) NIL)) (-3945 (((-112) $) NIL)) (-1390 (((-400 (-549)) $) NIL)) (-3237 (($) NIL) (($ $) NIL)) (-2065 (($ $ $) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-2576 (($ $ $ $) NIL)) (-3457 (($ $ $) NIL)) (-2357 (((-112) $) NIL)) (-1926 (($ $ $) NIL)) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL)) (-2297 (((-112) $) NIL)) (-2803 (((-112) $) NIL)) (-2964 (((-3 $ "failed") $) NIL)) (-1992 (((-112) $) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2633 (($ $ $ $) NIL)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-2429 (($ $) NIL)) (-4210 (($ $) NIL)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-3200 (($ $ $) NIL)) (-3059 (($) NIL T CONST)) (-3782 (($ $) NIL)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3674 (($ $) NIL)) (-2119 (((-411 $) $) NIL)) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1980 (((-112) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-3455 (($ $ (-747)) NIL) (($ $) NIL)) (-1896 (($ $) NIL)) (-2279 (($ $) NIL)) (-2843 (((-549) $) 16) (((-525) $) NIL) (((-863 (-549)) $) NIL) (((-372) $) NIL) (((-219) $) NIL) (($ (-1142)) 9)) (-3845 (((-834) $) 20) (($ (-549)) 6) (($ $) NIL) (($ (-549)) 6)) (-2371 (((-747)) NIL)) (-1815 (((-112) $ $) NIL)) (-2772 (($ $ $) NIL)) (-1863 (($) NIL)) (-2441 (((-112) $ $) NIL)) (-2263 (($ $ $ $) NIL)) (-2199 (($ $) NIL)) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $ (-747)) NIL) (($ $) NIL)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) NIL)) (-2498 (($ $) 19) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL)))
+(((-1029) (-13 (-534) (-10 -8 (-6 -4323) (-6 -4328) (-6 -4324) (-15 -2843 ($ (-1142))) (-15 -2778 ($ (-1142))) (-15 -2778 ($ (-549)))))) (T -1029))
+((-2843 (*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1029)))) (-2778 (*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1029)))) (-2778 (*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1029)))))
+(-13 (-534) (-10 -8 (-6 -4323) (-6 -4328) (-6 -4324) (-15 -2843 ($ (-1142))) (-15 -2778 ($ (-1142))) (-15 -2778 ($ (-549)))))
+((-3832 (((-112) $ $) NIL (-1536 (|has| (-52) (-1066)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066))))) (-3732 (($) NIL) (($ (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) NIL)) (-3659 (((-1230) $ (-1142) (-1142)) NIL (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) NIL)) (-3757 (($) 9)) (-2250 (((-52) $ (-1142) (-52)) NIL)) (-2238 (($ $) 30)) (-3693 (($ $) 28)) (-2254 (($ $) 27)) (-3979 (($ $) 29)) (-1490 (($ $) 32)) (-2139 (($ $) 33)) (-1314 (($ $) 26)) (-4274 (($ $) 31)) (-3827 (($ (-1 (-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) 25 (|has| $ (-6 -4336)))) (-3489 (((-3 (-52) "failed") (-1142) $) 40)) (-3034 (($) NIL T CONST)) (-1449 (($) 7)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066))))) (-3546 (($ (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) $) 50 (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336))) (((-3 (-52) "failed") (-1142) $) NIL)) (-3812 (($ (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066)))) (($ (-1 (-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336)))) (-2556 (((-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $ (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066)))) (((-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $ (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) NIL (|has| $ (-6 -4336))) (((-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336)))) (-2283 (((-3 (-1124) "failed") $ (-1124) (-549)) 59)) (-1875 (((-52) $ (-1142) (-52)) NIL (|has| $ (-6 -4337)))) (-1807 (((-52) $ (-1142)) NIL)) (-2987 (((-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336))) (((-621 (-52)) $) NIL (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-1142) $) NIL (|has| (-1142) (-823)))) (-3698 (((-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) 35 (|has| $ (-6 -4336))) (((-621 (-52)) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-52) (-1066))))) (-3063 (((-1142) $) NIL (|has| (-1142) (-823)))) (-1864 (($ (-1 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4337))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (-1536 (|has| (-52) (-1066)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066))))) (-3448 (((-621 (-1142)) $) NIL)) (-2130 (((-112) (-1142) $) NIL)) (-2548 (((-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) $) NIL)) (-1799 (($ (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) $) 43)) (-2296 (((-621 (-1142)) $) NIL)) (-2284 (((-112) (-1142) $) NIL)) (-3988 (((-1086) $) NIL (-1536 (|has| (-52) (-1066)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066))))) (-1480 (((-372) $ (-1142)) 49)) (-2223 (((-621 (-1124)) $ (-1124)) 60)) (-3645 (((-52) $) NIL (|has| (-1142) (-823)))) (-3959 (((-3 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) "failed") (-1 (-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL)) (-1943 (($ $ (-52)) NIL (|has| $ (-6 -4337)))) (-3536 (((-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) $) NIL)) (-3360 (((-112) (-1 (-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))))) NIL (-12 (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066)))) (($ $ (-287 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) NIL (-12 (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066)))) (($ $ (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) NIL (-12 (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066)))) (($ $ (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) NIL (-12 (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-302 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066)))) (($ $ (-621 (-52)) (-621 (-52))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1066)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1066)))) (($ $ (-287 (-52))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1066)))) (($ $ (-621 (-287 (-52)))) NIL (-12 (|has| (-52) (-302 (-52))) (|has| (-52) (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-52) (-1066))))) (-3347 (((-621 (-52)) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 (((-52) $ (-1142)) NIL) (((-52) $ (-1142) (-52)) NIL)) (-3226 (($) NIL) (($ (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) NIL)) (-2217 (($ $ (-1142)) 51)) (-3997 (((-747) (-1 (-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336))) (((-747) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066)))) (((-747) (-52) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-52) (-1066)))) (((-747) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-594 (-525))))) (-3853 (($ (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) 37)) (-1950 (($ $ $) 38)) (-3845 (((-834) $) NIL (-1536 (|has| (-52) (-593 (-834))) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-593 (-834)))))) (-3280 (($ $ (-1142) (-372)) 47)) (-1707 (($ $ (-1142) (-372)) 48)) (-4213 (($ (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))))) NIL)) (-3025 (((-112) (-1 (-112) (-2 (|:| -3336 (-1142)) (|:| -1791 (-52)))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (-1536 (|has| (-52) (-1066)) (|has| (-2 (|:| -3336 (-1142)) (|:| -1791 (-52))) (-1066))))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-1030) (-13 (-1155 (-1142) (-52)) (-10 -8 (-15 -1950 ($ $ $)) (-15 -1449 ($)) (-15 -1314 ($ $)) (-15 -2254 ($ $)) (-15 -3693 ($ $)) (-15 -3979 ($ $)) (-15 -4274 ($ $)) (-15 -2238 ($ $)) (-15 -1490 ($ $)) (-15 -2139 ($ $)) (-15 -3280 ($ $ (-1142) (-372))) (-15 -1707 ($ $ (-1142) (-372))) (-15 -1480 ((-372) $ (-1142))) (-15 -2223 ((-621 (-1124)) $ (-1124))) (-15 -2217 ($ $ (-1142))) (-15 -3757 ($)) (-15 -2283 ((-3 (-1124) "failed") $ (-1124) (-549))) (-6 -4336)))) (T -1030))
+((-1950 (*1 *1 *1 *1) (-5 *1 (-1030))) (-1449 (*1 *1) (-5 *1 (-1030))) (-1314 (*1 *1 *1) (-5 *1 (-1030))) (-2254 (*1 *1 *1) (-5 *1 (-1030))) (-3693 (*1 *1 *1) (-5 *1 (-1030))) (-3979 (*1 *1 *1) (-5 *1 (-1030))) (-4274 (*1 *1 *1) (-5 *1 (-1030))) (-2238 (*1 *1 *1) (-5 *1 (-1030))) (-1490 (*1 *1 *1) (-5 *1 (-1030))) (-2139 (*1 *1 *1) (-5 *1 (-1030))) (-3280 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-372)) (-5 *1 (-1030)))) (-1707 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-372)) (-5 *1 (-1030)))) (-1480 (*1 *2 *1 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-372)) (-5 *1 (-1030)))) (-2223 (*1 *2 *1 *3) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1030)) (-5 *3 (-1124)))) (-2217 (*1 *1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1030)))) (-3757 (*1 *1) (-5 *1 (-1030))) (-2283 (*1 *2 *1 *2 *3) (|partial| -12 (-5 *2 (-1124)) (-5 *3 (-549)) (-5 *1 (-1030)))))
+(-13 (-1155 (-1142) (-52)) (-10 -8 (-15 -1950 ($ $ $)) (-15 -1449 ($)) (-15 -1314 ($ $)) (-15 -2254 ($ $)) (-15 -3693 ($ $)) (-15 -3979 ($ $)) (-15 -4274 ($ $)) (-15 -2238 ($ $)) (-15 -1490 ($ $)) (-15 -2139 ($ $)) (-15 -3280 ($ $ (-1142) (-372))) (-15 -1707 ($ $ (-1142) (-372))) (-15 -1480 ((-372) $ (-1142))) (-15 -2223 ((-621 (-1124)) $ (-1124))) (-15 -2217 ($ $ (-1142))) (-15 -3757 ($)) (-15 -2283 ((-3 (-1124) "failed") $ (-1124) (-549))) (-6 -4336)))
+((-1342 (($ $) 45)) (-2331 (((-112) $ $) 74)) (-2712 (((-3 |#2| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 (-549) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 $ "failed") (-923 (-400 (-549)))) 227) (((-3 $ "failed") (-923 (-549))) 226) (((-3 $ "failed") (-923 |#2|)) 229)) (-2657 ((|#2| $) NIL) (((-400 (-549)) $) NIL) (((-549) $) NIL) ((|#4| $) NIL) (($ (-923 (-400 (-549)))) 215) (($ (-923 (-549))) 211) (($ (-923 |#2|)) 231)) (-2068 (($ $) NIL) (($ $ |#4|) 43)) (-1804 (((-112) $ $) 112) (((-112) $ (-621 $)) 113)) (-2020 (((-112) $) 56)) (-2805 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 107)) (-3361 (($ $) 138)) (-3818 (($ $) 134)) (-2546 (($ $) 133)) (-4222 (($ $ $) 79) (($ $ $ |#4|) 84)) (-1828 (($ $ $) 82) (($ $ $ |#4|) 86)) (-2240 (((-112) $ $) 121) (((-112) $ (-621 $)) 122)) (-2510 ((|#4| $) 33)) (-2466 (($ $ $) 110)) (-4313 (((-112) $) 55)) (-4241 (((-747) $) 35)) (-1284 (($ $) 152)) (-2551 (($ $) 149)) (-1542 (((-621 $) $) 68)) (-4286 (($ $) 57)) (-2045 (($ $) 145)) (-4040 (((-621 $) $) 65)) (-2935 (($ $) 59)) (-2042 ((|#2| $) NIL) (($ $ |#4|) 38)) (-2280 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1742 (-747))) $ $) 111)) (-2742 (((-2 (|:| -1569 $) (|:| |gap| (-747)) (|:| -2262 $) (|:| -1809 $)) $ $) 108) (((-2 (|:| -1569 $) (|:| |gap| (-747)) (|:| -2262 $) (|:| -1809 $)) $ $ |#4|) 109)) (-1561 (((-2 (|:| -1569 $) (|:| |gap| (-747)) (|:| -1809 $)) $ $) 104) (((-2 (|:| -1569 $) (|:| |gap| (-747)) (|:| -1809 $)) $ $ |#4|) 105)) (-2944 (($ $ $) 89) (($ $ $ |#4|) 95)) (-3578 (($ $ $) 90) (($ $ $ |#4|) 96)) (-4110 (((-621 $) $) 51)) (-1304 (((-112) $ $) 118) (((-112) $ (-621 $)) 119)) (-3603 (($ $ $) 103)) (-3059 (($ $) 37)) (-3386 (((-112) $ $) 72)) (-4122 (((-112) $ $) 114) (((-112) $ (-621 $)) 116)) (-4244 (($ $ $) 101)) (-2532 (($ $) 40)) (-3726 ((|#2| |#2| $) 142) (($ (-621 $)) NIL) (($ $ $) NIL)) (-3998 (($ $ |#2|) NIL) (($ $ $) 131)) (-2650 (($ $ |#2|) 126) (($ $ $) 129)) (-3178 (($ $) 48)) (-4013 (($ $) 52)) (-2843 (((-863 (-372)) $) NIL) (((-863 (-549)) $) NIL) (((-525) $) NIL) (($ (-923 (-400 (-549)))) 217) (($ (-923 (-549))) 213) (($ (-923 |#2|)) 228) (((-1124) $) 250) (((-923 |#2|) $) 162)) (-3845 (((-834) $) 30) (($ (-549)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (((-923 |#2|) $) 163) (($ (-400 (-549))) NIL) (($ $) NIL)) (-3651 (((-3 (-112) "failed") $ $) 71)))
+(((-1031 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3845 (|#1| |#1|)) (-15 -3726 (|#1| |#1| |#1|)) (-15 -3726 (|#1| (-621 |#1|))) (-15 -3845 (|#1| (-400 (-549)))) (-15 -3845 ((-923 |#2|) |#1|)) (-15 -2843 ((-923 |#2|) |#1|)) (-15 -2843 ((-1124) |#1|)) (-15 -1284 (|#1| |#1|)) (-15 -2551 (|#1| |#1|)) (-15 -2045 (|#1| |#1|)) (-15 -3361 (|#1| |#1|)) (-15 -3726 (|#2| |#2| |#1|)) (-15 -3998 (|#1| |#1| |#1|)) (-15 -2650 (|#1| |#1| |#1|)) (-15 -3998 (|#1| |#1| |#2|)) (-15 -2650 (|#1| |#1| |#2|)) (-15 -3818 (|#1| |#1|)) (-15 -2546 (|#1| |#1|)) (-15 -2843 (|#1| (-923 |#2|))) (-15 -2657 (|#1| (-923 |#2|))) (-15 -2712 ((-3 |#1| "failed") (-923 |#2|))) (-15 -2843 (|#1| (-923 (-549)))) (-15 -2657 (|#1| (-923 (-549)))) (-15 -2712 ((-3 |#1| "failed") (-923 (-549)))) (-15 -2843 (|#1| (-923 (-400 (-549))))) (-15 -2657 (|#1| (-923 (-400 (-549))))) (-15 -2712 ((-3 |#1| "failed") (-923 (-400 (-549))))) (-15 -3603 (|#1| |#1| |#1|)) (-15 -4244 (|#1| |#1| |#1|)) (-15 -2280 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -1742 (-747))) |#1| |#1|)) (-15 -2466 (|#1| |#1| |#1|)) (-15 -2805 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|)) (-15 -2742 ((-2 (|:| -1569 |#1|) (|:| |gap| (-747)) (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1| |#4|)) (-15 -2742 ((-2 (|:| -1569 |#1|) (|:| |gap| (-747)) (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|)) (-15 -1561 ((-2 (|:| -1569 |#1|) (|:| |gap| (-747)) (|:| -1809 |#1|)) |#1| |#1| |#4|)) (-15 -1561 ((-2 (|:| -1569 |#1|) (|:| |gap| (-747)) (|:| -1809 |#1|)) |#1| |#1|)) (-15 -3578 (|#1| |#1| |#1| |#4|)) (-15 -2944 (|#1| |#1| |#1| |#4|)) (-15 -3578 (|#1| |#1| |#1|)) (-15 -2944 (|#1| |#1| |#1|)) (-15 -1828 (|#1| |#1| |#1| |#4|)) (-15 -4222 (|#1| |#1| |#1| |#4|)) (-15 -1828 (|#1| |#1| |#1|)) (-15 -4222 (|#1| |#1| |#1|)) (-15 -2240 ((-112) |#1| (-621 |#1|))) (-15 -2240 ((-112) |#1| |#1|)) (-15 -1304 ((-112) |#1| (-621 |#1|))) (-15 -1304 ((-112) |#1| |#1|)) (-15 -4122 ((-112) |#1| (-621 |#1|))) (-15 -4122 ((-112) |#1| |#1|)) (-15 -1804 ((-112) |#1| (-621 |#1|))) (-15 -1804 ((-112) |#1| |#1|)) (-15 -2331 ((-112) |#1| |#1|)) (-15 -3386 ((-112) |#1| |#1|)) (-15 -3651 ((-3 (-112) "failed") |#1| |#1|)) (-15 -1542 ((-621 |#1|) |#1|)) (-15 -4040 ((-621 |#1|) |#1|)) (-15 -2935 (|#1| |#1|)) (-15 -4286 (|#1| |#1|)) (-15 -2020 ((-112) |#1|)) (-15 -4313 ((-112) |#1|)) (-15 -2068 (|#1| |#1| |#4|)) (-15 -2042 (|#1| |#1| |#4|)) (-15 -4013 (|#1| |#1|)) (-15 -4110 ((-621 |#1|) |#1|)) (-15 -3178 (|#1| |#1|)) (-15 -1342 (|#1| |#1|)) (-15 -2532 (|#1| |#1|)) (-15 -3059 (|#1| |#1|)) (-15 -4241 ((-747) |#1|)) (-15 -2510 (|#4| |#1|)) (-15 -2843 ((-525) |#1|)) (-15 -2843 ((-863 (-549)) |#1|)) (-15 -2843 ((-863 (-372)) |#1|)) (-15 -2657 (|#4| |#1|)) (-15 -2712 ((-3 |#4| "failed") |#1|)) (-15 -3845 (|#1| |#4|)) (-15 -2042 (|#2| |#1|)) (-15 -2068 (|#1| |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3845 (|#1| |#2|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -2657 (|#2| |#1|)) (-15 -3845 (|#1| (-549))) (-15 -3845 ((-834) |#1|))) (-1032 |#2| |#3| |#4|) (-1018) (-769) (-823)) (T -1031))
+NIL
+(-10 -8 (-15 -3845 (|#1| |#1|)) (-15 -3726 (|#1| |#1| |#1|)) (-15 -3726 (|#1| (-621 |#1|))) (-15 -3845 (|#1| (-400 (-549)))) (-15 -3845 ((-923 |#2|) |#1|)) (-15 -2843 ((-923 |#2|) |#1|)) (-15 -2843 ((-1124) |#1|)) (-15 -1284 (|#1| |#1|)) (-15 -2551 (|#1| |#1|)) (-15 -2045 (|#1| |#1|)) (-15 -3361 (|#1| |#1|)) (-15 -3726 (|#2| |#2| |#1|)) (-15 -3998 (|#1| |#1| |#1|)) (-15 -2650 (|#1| |#1| |#1|)) (-15 -3998 (|#1| |#1| |#2|)) (-15 -2650 (|#1| |#1| |#2|)) (-15 -3818 (|#1| |#1|)) (-15 -2546 (|#1| |#1|)) (-15 -2843 (|#1| (-923 |#2|))) (-15 -2657 (|#1| (-923 |#2|))) (-15 -2712 ((-3 |#1| "failed") (-923 |#2|))) (-15 -2843 (|#1| (-923 (-549)))) (-15 -2657 (|#1| (-923 (-549)))) (-15 -2712 ((-3 |#1| "failed") (-923 (-549)))) (-15 -2843 (|#1| (-923 (-400 (-549))))) (-15 -2657 (|#1| (-923 (-400 (-549))))) (-15 -2712 ((-3 |#1| "failed") (-923 (-400 (-549))))) (-15 -3603 (|#1| |#1| |#1|)) (-15 -4244 (|#1| |#1| |#1|)) (-15 -2280 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -1742 (-747))) |#1| |#1|)) (-15 -2466 (|#1| |#1| |#1|)) (-15 -2805 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|)) (-15 -2742 ((-2 (|:| -1569 |#1|) (|:| |gap| (-747)) (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1| |#4|)) (-15 -2742 ((-2 (|:| -1569 |#1|) (|:| |gap| (-747)) (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|)) (-15 -1561 ((-2 (|:| -1569 |#1|) (|:| |gap| (-747)) (|:| -1809 |#1|)) |#1| |#1| |#4|)) (-15 -1561 ((-2 (|:| -1569 |#1|) (|:| |gap| (-747)) (|:| -1809 |#1|)) |#1| |#1|)) (-15 -3578 (|#1| |#1| |#1| |#4|)) (-15 -2944 (|#1| |#1| |#1| |#4|)) (-15 -3578 (|#1| |#1| |#1|)) (-15 -2944 (|#1| |#1| |#1|)) (-15 -1828 (|#1| |#1| |#1| |#4|)) (-15 -4222 (|#1| |#1| |#1| |#4|)) (-15 -1828 (|#1| |#1| |#1|)) (-15 -4222 (|#1| |#1| |#1|)) (-15 -2240 ((-112) |#1| (-621 |#1|))) (-15 -2240 ((-112) |#1| |#1|)) (-15 -1304 ((-112) |#1| (-621 |#1|))) (-15 -1304 ((-112) |#1| |#1|)) (-15 -4122 ((-112) |#1| (-621 |#1|))) (-15 -4122 ((-112) |#1| |#1|)) (-15 -1804 ((-112) |#1| (-621 |#1|))) (-15 -1804 ((-112) |#1| |#1|)) (-15 -2331 ((-112) |#1| |#1|)) (-15 -3386 ((-112) |#1| |#1|)) (-15 -3651 ((-3 (-112) "failed") |#1| |#1|)) (-15 -1542 ((-621 |#1|) |#1|)) (-15 -4040 ((-621 |#1|) |#1|)) (-15 -2935 (|#1| |#1|)) (-15 -4286 (|#1| |#1|)) (-15 -2020 ((-112) |#1|)) (-15 -4313 ((-112) |#1|)) (-15 -2068 (|#1| |#1| |#4|)) (-15 -2042 (|#1| |#1| |#4|)) (-15 -4013 (|#1| |#1|)) (-15 -4110 ((-621 |#1|) |#1|)) (-15 -3178 (|#1| |#1|)) (-15 -1342 (|#1| |#1|)) (-15 -2532 (|#1| |#1|)) (-15 -3059 (|#1| |#1|)) (-15 -4241 ((-747) |#1|)) (-15 -2510 (|#4| |#1|)) (-15 -2843 ((-525) |#1|)) (-15 -2843 ((-863 (-549)) |#1|)) (-15 -2843 ((-863 (-372)) |#1|)) (-15 -2657 (|#4| |#1|)) (-15 -2712 ((-3 |#4| "failed") |#1|)) (-15 -3845 (|#1| |#4|)) (-15 -2042 (|#2| |#1|)) (-15 -2068 (|#1| |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3845 (|#1| |#2|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -2657 (|#2| |#1|)) (-15 -3845 (|#1| (-549))) (-15 -3845 ((-834) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2270 (((-621 |#3|) $) 108)) (-2082 (((-1138 $) $ |#3|) 123) (((-1138 |#1|) $) 122)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 85 (|has| |#1| (-541)))) (-3044 (($ $) 86 (|has| |#1| (-541)))) (-2774 (((-112) $) 88 (|has| |#1| (-541)))) (-2216 (((-747) $) 110) (((-747) $ (-621 |#3|)) 109)) (-1342 (($ $) 269)) (-2331 (((-112) $ $) 255)) (-2416 (((-3 $ "failed") $ $) 19)) (-2070 (($ $ $) 214 (|has| |#1| (-541)))) (-1898 (((-621 $) $ $) 209 (|has| |#1| (-541)))) (-3630 (((-411 (-1138 $)) (-1138 $)) 98 (|has| |#1| (-880)))) (-3239 (($ $) 96 (|has| |#1| (-444)))) (-2620 (((-411 $) $) 95 (|has| |#1| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) 101 (|has| |#1| (-880)))) (-3034 (($) 17 T CONST)) (-2712 (((-3 |#1| "failed") $) 162) (((-3 (-400 (-549)) "failed") $) 160 (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) 158 (|has| |#1| (-1009 (-549)))) (((-3 |#3| "failed") $) 134) (((-3 $ "failed") (-923 (-400 (-549)))) 229 (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#3| (-594 (-1142))))) (((-3 $ "failed") (-923 (-549))) 226 (-1536 (-12 (-4007 (|has| |#1| (-38 (-400 (-549))))) (|has| |#1| (-38 (-549))) (|has| |#3| (-594 (-1142)))) (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#3| (-594 (-1142)))))) (((-3 $ "failed") (-923 |#1|)) 223 (-1536 (-12 (-4007 (|has| |#1| (-38 (-400 (-549))))) (-4007 (|has| |#1| (-38 (-549)))) (|has| |#3| (-594 (-1142)))) (-12 (-4007 (|has| |#1| (-534))) (-4007 (|has| |#1| (-38 (-400 (-549))))) (|has| |#1| (-38 (-549))) (|has| |#3| (-594 (-1142)))) (-12 (-4007 (|has| |#1| (-963 (-549)))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#3| (-594 (-1142))))))) (-2657 ((|#1| $) 163) (((-400 (-549)) $) 159 (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) 157 (|has| |#1| (-1009 (-549)))) ((|#3| $) 133) (($ (-923 (-400 (-549)))) 228 (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#3| (-594 (-1142))))) (($ (-923 (-549))) 225 (-1536 (-12 (-4007 (|has| |#1| (-38 (-400 (-549))))) (|has| |#1| (-38 (-549))) (|has| |#3| (-594 (-1142)))) (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#3| (-594 (-1142)))))) (($ (-923 |#1|)) 222 (-1536 (-12 (-4007 (|has| |#1| (-38 (-400 (-549))))) (-4007 (|has| |#1| (-38 (-549)))) (|has| |#3| (-594 (-1142)))) (-12 (-4007 (|has| |#1| (-534))) (-4007 (|has| |#1| (-38 (-400 (-549))))) (|has| |#1| (-38 (-549))) (|has| |#3| (-594 (-1142)))) (-12 (-4007 (|has| |#1| (-963 (-549)))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#3| (-594 (-1142))))))) (-4114 (($ $ $ |#3|) 106 (|has| |#1| (-170))) (($ $ $) 210 (|has| |#1| (-541)))) (-2068 (($ $) 152) (($ $ |#3|) 264)) (-3446 (((-665 (-549)) (-665 $)) 132 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 131 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) 130) (((-665 |#1|) (-665 $)) 129)) (-1804 (((-112) $ $) 254) (((-112) $ (-621 $)) 253)) (-2612 (((-3 $ "failed") $) 32)) (-2020 (((-112) $) 262)) (-2805 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 234)) (-3361 (($ $) 203 (|has| |#1| (-444)))) (-3004 (($ $) 174 (|has| |#1| (-444))) (($ $ |#3|) 103 (|has| |#1| (-444)))) (-2056 (((-621 $) $) 107)) (-1464 (((-112) $) 94 (|has| |#1| (-880)))) (-3818 (($ $) 219 (|has| |#1| (-541)))) (-2546 (($ $) 220 (|has| |#1| (-541)))) (-4222 (($ $ $) 246) (($ $ $ |#3|) 244)) (-1828 (($ $ $) 245) (($ $ $ |#3|) 243)) (-4064 (($ $ |#1| |#2| $) 170)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 82 (-12 (|has| |#3| (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 81 (-12 (|has| |#3| (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2297 (((-112) $) 30)) (-1751 (((-747) $) 167)) (-2240 (((-112) $ $) 248) (((-112) $ (-621 $)) 247)) (-1276 (($ $ $ $ $) 205 (|has| |#1| (-541)))) (-2510 ((|#3| $) 273)) (-2259 (($ (-1138 |#1|) |#3|) 115) (($ (-1138 $) |#3|) 114)) (-2758 (((-621 $) $) 124)) (-2988 (((-112) $) 150)) (-2244 (($ |#1| |#2|) 151) (($ $ |#3| (-747)) 117) (($ $ (-621 |#3|) (-621 (-747))) 116)) (-2466 (($ $ $) 233)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ |#3|) 118)) (-4313 (((-112) $) 263)) (-2391 ((|#2| $) 168) (((-747) $ |#3|) 120) (((-621 (-747)) $ (-621 |#3|)) 119)) (-2861 (($ $ $) 77 (|has| |#1| (-823)))) (-4241 (((-747) $) 272)) (-3574 (($ $ $) 76 (|has| |#1| (-823)))) (-3224 (($ (-1 |#2| |#2|) $) 169)) (-2795 (($ (-1 |#1| |#1|) $) 149)) (-2236 (((-3 |#3| "failed") $) 121)) (-1284 (($ $) 200 (|has| |#1| (-444)))) (-2551 (($ $) 201 (|has| |#1| (-444)))) (-1542 (((-621 $) $) 258)) (-4286 (($ $) 261)) (-2045 (($ $) 202 (|has| |#1| (-444)))) (-4040 (((-621 $) $) 259)) (-2935 (($ $) 260)) (-2027 (($ $) 147)) (-2042 ((|#1| $) 146) (($ $ |#3|) 265)) (-3696 (($ (-621 $)) 92 (|has| |#1| (-444))) (($ $ $) 91 (|has| |#1| (-444)))) (-2280 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1742 (-747))) $ $) 232)) (-2742 (((-2 (|:| -1569 $) (|:| |gap| (-747)) (|:| -2262 $) (|:| -1809 $)) $ $) 236) (((-2 (|:| -1569 $) (|:| |gap| (-747)) (|:| -2262 $) (|:| -1809 $)) $ $ |#3|) 235)) (-1561 (((-2 (|:| -1569 $) (|:| |gap| (-747)) (|:| -1809 $)) $ $) 238) (((-2 (|:| -1569 $) (|:| |gap| (-747)) (|:| -1809 $)) $ $ |#3|) 237)) (-2944 (($ $ $) 242) (($ $ $ |#3|) 240)) (-3578 (($ $ $) 241) (($ $ $ |#3|) 239)) (-3441 (((-1124) $) 9)) (-3402 (($ $ $) 208 (|has| |#1| (-541)))) (-4110 (((-621 $) $) 267)) (-4093 (((-3 (-621 $) "failed") $) 112)) (-1503 (((-3 (-621 $) "failed") $) 113)) (-1477 (((-3 (-2 (|:| |var| |#3|) (|:| -1714 (-747))) "failed") $) 111)) (-1304 (((-112) $ $) 250) (((-112) $ (-621 $)) 249)) (-3603 (($ $ $) 230)) (-3059 (($ $) 271)) (-3386 (((-112) $ $) 256)) (-4122 (((-112) $ $) 252) (((-112) $ (-621 $)) 251)) (-4244 (($ $ $) 231)) (-2532 (($ $) 270)) (-3988 (((-1086) $) 10)) (-3913 (((-2 (|:| -3726 $) (|:| |coef2| $)) $ $) 211 (|has| |#1| (-541)))) (-1462 (((-2 (|:| -3726 $) (|:| |coef1| $)) $ $) 212 (|has| |#1| (-541)))) (-2001 (((-112) $) 164)) (-2011 ((|#1| $) 165)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 93 (|has| |#1| (-444)))) (-3726 ((|#1| |#1| $) 204 (|has| |#1| (-444))) (($ (-621 $)) 90 (|has| |#1| (-444))) (($ $ $) 89 (|has| |#1| (-444)))) (-2609 (((-411 (-1138 $)) (-1138 $)) 100 (|has| |#1| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) 99 (|has| |#1| (-880)))) (-2119 (((-411 $) $) 97 (|has| |#1| (-880)))) (-4251 (((-2 (|:| -3726 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 213 (|has| |#1| (-541)))) (-2040 (((-3 $ "failed") $ |#1|) 172 (|has| |#1| (-541))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-541)))) (-3998 (($ $ |#1|) 217 (|has| |#1| (-541))) (($ $ $) 215 (|has| |#1| (-541)))) (-2650 (($ $ |#1|) 218 (|has| |#1| (-541))) (($ $ $) 216 (|has| |#1| (-541)))) (-2684 (($ $ (-621 (-287 $))) 143) (($ $ (-287 $)) 142) (($ $ $ $) 141) (($ $ (-621 $) (-621 $)) 140) (($ $ |#3| |#1|) 139) (($ $ (-621 |#3|) (-621 |#1|)) 138) (($ $ |#3| $) 137) (($ $ (-621 |#3|) (-621 $)) 136)) (-2740 (($ $ |#3|) 105 (|has| |#1| (-170)))) (-3455 (($ $ |#3|) 40) (($ $ (-621 |#3|)) 39) (($ $ |#3| (-747)) 38) (($ $ (-621 |#3|) (-621 (-747))) 37)) (-3977 ((|#2| $) 148) (((-747) $ |#3|) 128) (((-621 (-747)) $ (-621 |#3|)) 127)) (-3178 (($ $) 268)) (-4013 (($ $) 266)) (-2843 (((-863 (-372)) $) 80 (-12 (|has| |#3| (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) 79 (-12 (|has| |#3| (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) 78 (-12 (|has| |#3| (-594 (-525))) (|has| |#1| (-594 (-525))))) (($ (-923 (-400 (-549)))) 227 (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#3| (-594 (-1142))))) (($ (-923 (-549))) 224 (-1536 (-12 (-4007 (|has| |#1| (-38 (-400 (-549))))) (|has| |#1| (-38 (-549))) (|has| |#3| (-594 (-1142)))) (-12 (|has| |#1| (-38 (-400 (-549)))) (|has| |#3| (-594 (-1142)))))) (($ (-923 |#1|)) 221 (|has| |#3| (-594 (-1142)))) (((-1124) $) 199 (-12 (|has| |#1| (-1009 (-549))) (|has| |#3| (-594 (-1142))))) (((-923 |#1|) $) 198 (|has| |#3| (-594 (-1142))))) (-1700 ((|#1| $) 173 (|has| |#1| (-444))) (($ $ |#3|) 104 (|has| |#1| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) 102 (-1819 (|has| $ (-143)) (|has| |#1| (-880))))) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 161) (($ |#3|) 135) (((-923 |#1|) $) 197 (|has| |#3| (-594 (-1142)))) (($ (-400 (-549))) 70 (-1536 (|has| |#1| (-1009 (-400 (-549)))) (|has| |#1| (-38 (-400 (-549)))))) (($ $) 83 (|has| |#1| (-541)))) (-2157 (((-621 |#1|) $) 166)) (-4068 ((|#1| $ |#2|) 153) (($ $ |#3| (-747)) 126) (($ $ (-621 |#3|) (-621 (-747))) 125)) (-2343 (((-3 $ "failed") $) 71 (-1536 (-1819 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2371 (((-747)) 28)) (-4046 (($ $ $ (-747)) 171 (|has| |#1| (-170)))) (-2441 (((-112) $ $) 87 (|has| |#1| (-541)))) (-3274 (($) 18 T CONST)) (-3651 (((-3 (-112) "failed") $ $) 257)) (-3286 (($) 29 T CONST)) (-3334 (($ $ $ $ (-747)) 206 (|has| |#1| (-541)))) (-3291 (($ $ $ (-747)) 207 (|has| |#1| (-541)))) (-1699 (($ $ |#3|) 36) (($ $ (-621 |#3|)) 35) (($ $ |#3| (-747)) 34) (($ $ (-621 |#3|) (-621 (-747))) 33)) (-2447 (((-112) $ $) 74 (|has| |#1| (-823)))) (-2423 (((-112) $ $) 73 (|has| |#1| (-823)))) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 75 (|has| |#1| (-823)))) (-2409 (((-112) $ $) 72 (|has| |#1| (-823)))) (-2511 (($ $ |#1|) 154 (|has| |#1| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 156 (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) 155 (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 145) (($ $ |#1|) 144)))
(((-1032 |#1| |#2| |#3|) (-138) (-1018) (-769) (-823)) (T -1032))
-((-2745 (*1 *2 *1) (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-747)))) (-3060 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-3477 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-1343 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-3828 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-3263 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1032 *3 *4 *5)))) (-1608 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-2043 (*1 *1 *1 *2) (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)))) (-2070 (*1 *1 *1 *2) (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)))) (-2600 (*1 *2 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-2316 (*1 *2 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-3070 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-2801 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-1876 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1032 *3 *4 *5)))) (-4239 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1032 *3 *4 *5)))) (-1712 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-2473 (*1 *2 *1 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-2635 (*1 *2 *1 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-2217 (*1 *2 *1 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-2217 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *1)) (-4 *1 (-1032 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)))) (-1335 (*1 *2 *1 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-1335 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *1)) (-4 *1 (-1032 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)))) (-2170 (*1 *2 *1 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-2170 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *1)) (-4 *1 (-1032 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)))) (-2812 (*1 *2 *1 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-2812 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *1)) (-4 *1 (-1032 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)))) (-2882 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-2854 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-2882 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)))) (-2854 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)))) (-3564 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-3420 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-3564 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)))) (-3420 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)))) (-3507 (*1 *2 *1 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-2 (|:| -1570 *1) (|:| |gap| (-747)) (|:| -3675 *1))) (-4 *1 (-1032 *3 *4 *5)))) (-3507 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-5 *2 (-2 (|:| -1570 *1) (|:| |gap| (-747)) (|:| -3675 *1))) (-4 *1 (-1032 *4 *5 *3)))) (-4163 (*1 *2 *1 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-2 (|:| -1570 *1) (|:| |gap| (-747)) (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-1032 *3 *4 *5)))) (-4163 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-5 *2 (-2 (|:| -1570 *1) (|:| |gap| (-747)) (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-1032 *4 *5 *3)))) (-3921 (*1 *2 *1 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-1032 *3 *4 *5)))) (-2083 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-2926 (*1 *2 *1 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -3063 (-747)))) (-4 *1 (-1032 *3 *4 *5)))) (-4298 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-3270 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-2714 (*1 *1 *2) (|partial| -12 (-5 *2 (-923 (-400 (-549)))) (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1143))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)))) (-2659 (*1 *1 *2) (-12 (-5 *2 (-923 (-400 (-549)))) (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1143))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)))) (-2845 (*1 *1 *2) (-12 (-5 *2 (-923 (-400 (-549)))) (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1143))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)))) (-2714 (*1 *1 *2) (|partial| -1536 (-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5)) (-12 (-4008 (-4 *3 (-38 (-400 (-549))))) (-4 *3 (-38 (-549))) (-4 *5 (-594 (-1143)))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))) (-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5)) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1143)))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))))) (-2659 (*1 *1 *2) (-1536 (-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5)) (-12 (-4008 (-4 *3 (-38 (-400 (-549))))) (-4 *3 (-38 (-549))) (-4 *5 (-594 (-1143)))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))) (-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5)) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1143)))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))))) (-2845 (*1 *1 *2) (-1536 (-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5)) (-12 (-4008 (-4 *3 (-38 (-400 (-549))))) (-4 *3 (-38 (-549))) (-4 *5 (-594 (-1143)))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))) (-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5)) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1143)))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))))) (-2714 (*1 *1 *2) (|partial| -1536 (-12 (-5 *2 (-923 *3)) (-12 (-4008 (-4 *3 (-38 (-400 (-549))))) (-4008 (-4 *3 (-38 (-549)))) (-4 *5 (-594 (-1143)))) (-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823))) (-12 (-5 *2 (-923 *3)) (-12 (-4008 (-4 *3 (-534))) (-4008 (-4 *3 (-38 (-400 (-549))))) (-4 *3 (-38 (-549))) (-4 *5 (-594 (-1143)))) (-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823))) (-12 (-5 *2 (-923 *3)) (-12 (-4008 (-4 *3 (-963 (-549)))) (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1143)))) (-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823))))) (-2659 (*1 *1 *2) (-1536 (-12 (-5 *2 (-923 *3)) (-12 (-4008 (-4 *3 (-38 (-400 (-549))))) (-4008 (-4 *3 (-38 (-549)))) (-4 *5 (-594 (-1143)))) (-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823))) (-12 (-5 *2 (-923 *3)) (-12 (-4008 (-4 *3 (-534))) (-4008 (-4 *3 (-38 (-400 (-549))))) (-4 *3 (-38 (-549))) (-4 *5 (-594 (-1143)))) (-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823))) (-12 (-5 *2 (-923 *3)) (-12 (-4008 (-4 *3 (-963 (-549)))) (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1143)))) (-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823))))) (-2845 (*1 *1 *2) (-12 (-5 *2 (-923 *3)) (-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *5 (-594 (-1143))) (-4 *4 (-769)) (-4 *5 (-823)))) (-2582 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-2348 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-3535 (*1 *1 *1 *2) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-2191 (*1 *1 *1 *2) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-3535 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-2191 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-1910 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-1444 (*1 *2 *1 *1) (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-2 (|:| -3727 *1) (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-1032 *3 *4 *5)))) (-2214 (*1 *2 *1 *1) (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-2 (|:| -3727 *1) (|:| |coef1| *1))) (-4 *1 (-1032 *3 *4 *5)))) (-3542 (*1 *2 *1 *1) (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-2 (|:| -3727 *1) (|:| |coef2| *1))) (-4 *1 (-1032 *3 *4 *5)))) (-1353 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-1506 (*1 *2 *1 *1) (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1032 *3 *4 *5)))) (-3072 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-2938 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *3 (-541)))) (-3706 (*1 *1 *1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *3 (-541)))) (-2937 (*1 *1 *1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-3727 (*1 *2 *2 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-444)))) (-2653 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-444)))) (-2878 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-444)))) (-1915 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-444)))) (-2280 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-444)))))
-(-13 (-920 |t#1| |t#2| |t#3|) (-10 -8 (-15 -2745 (|t#3| $)) (-15 -4247 ((-747) $)) (-15 -3060 ($ $)) (-15 -3477 ($ $)) (-15 -1343 ($ $)) (-15 -3828 ($ $)) (-15 -3263 ((-621 $) $)) (-15 -1608 ($ $)) (-15 -2043 ($ $ |t#3|)) (-15 -2070 ($ $ |t#3|)) (-15 -2600 ((-112) $)) (-15 -2316 ((-112) $)) (-15 -3070 ($ $)) (-15 -2801 ($ $)) (-15 -1876 ((-621 $) $)) (-15 -4239 ((-621 $) $)) (-15 -1712 ((-3 (-112) "failed") $ $)) (-15 -2473 ((-112) $ $)) (-15 -2635 ((-112) $ $)) (-15 -2217 ((-112) $ $)) (-15 -2217 ((-112) $ (-621 $))) (-15 -1335 ((-112) $ $)) (-15 -1335 ((-112) $ (-621 $))) (-15 -2170 ((-112) $ $)) (-15 -2170 ((-112) $ (-621 $))) (-15 -2812 ((-112) $ $)) (-15 -2812 ((-112) $ (-621 $))) (-15 -2882 ($ $ $)) (-15 -2854 ($ $ $)) (-15 -2882 ($ $ $ |t#3|)) (-15 -2854 ($ $ $ |t#3|)) (-15 -3564 ($ $ $)) (-15 -3420 ($ $ $)) (-15 -3564 ($ $ $ |t#3|)) (-15 -3420 ($ $ $ |t#3|)) (-15 -3507 ((-2 (|:| -1570 $) (|:| |gap| (-747)) (|:| -3675 $)) $ $)) (-15 -3507 ((-2 (|:| -1570 $) (|:| |gap| (-747)) (|:| -3675 $)) $ $ |t#3|)) (-15 -4163 ((-2 (|:| -1570 $) (|:| |gap| (-747)) (|:| -4013 $) (|:| -3675 $)) $ $)) (-15 -4163 ((-2 (|:| -1570 $) (|:| |gap| (-747)) (|:| -4013 $) (|:| -3675 $)) $ $ |t#3|)) (-15 -3921 ((-2 (|:| -4013 $) (|:| -3675 $)) $ $)) (-15 -2083 ($ $ $)) (-15 -2926 ((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3063 (-747))) $ $)) (-15 -4298 ($ $ $)) (-15 -3270 ($ $ $)) (IF (|has| |t#3| (-594 (-1143))) (PROGN (-6 (-593 (-923 |t#1|))) (-6 (-594 (-923 |t#1|))) (IF (|has| |t#1| (-38 (-400 (-549)))) (PROGN (-15 -2714 ((-3 $ "failed") (-923 (-400 (-549))))) (-15 -2659 ($ (-923 (-400 (-549))))) (-15 -2845 ($ (-923 (-400 (-549))))) (-15 -2714 ((-3 $ "failed") (-923 (-549)))) (-15 -2659 ($ (-923 (-549)))) (-15 -2845 ($ (-923 (-549)))) (IF (|has| |t#1| (-963 (-549))) |%noBranch| (PROGN (-15 -2714 ((-3 $ "failed") (-923 |t#1|))) (-15 -2659 ($ (-923 |t#1|)))))) |%noBranch|) (IF (|has| |t#1| (-38 (-549))) (IF (|has| |t#1| (-38 (-400 (-549)))) |%noBranch| (PROGN (-15 -2714 ((-3 $ "failed") (-923 (-549)))) (-15 -2659 ($ (-923 (-549)))) (-15 -2845 ($ (-923 (-549)))) (IF (|has| |t#1| (-534)) |%noBranch| (PROGN (-15 -2714 ((-3 $ "failed") (-923 |t#1|))) (-15 -2659 ($ (-923 |t#1|))))))) |%noBranch|) (IF (|has| |t#1| (-38 (-549))) |%noBranch| (IF (|has| |t#1| (-38 (-400 (-549)))) |%noBranch| (PROGN (-15 -2714 ((-3 $ "failed") (-923 |t#1|))) (-15 -2659 ($ (-923 |t#1|)))))) (-15 -2845 ($ (-923 |t#1|))) (IF (|has| |t#1| (-1009 (-549))) (-6 (-594 (-1125))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-541)) (PROGN (-15 -2582 ($ $)) (-15 -2348 ($ $)) (-15 -3535 ($ $ |t#1|)) (-15 -2191 ($ $ |t#1|)) (-15 -3535 ($ $ $)) (-15 -2191 ($ $ $)) (-15 -1910 ($ $ $)) (-15 -1444 ((-2 (|:| -3727 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -2214 ((-2 (|:| -3727 $) (|:| |coef1| $)) $ $)) (-15 -3542 ((-2 (|:| -3727 $) (|:| |coef2| $)) $ $)) (-15 -1353 ($ $ $)) (-15 -1506 ((-621 $) $ $)) (-15 -3072 ($ $ $)) (-15 -2938 ($ $ $ (-747))) (-15 -3706 ($ $ $ $ (-747))) (-15 -2937 ($ $ $ $ $))) |%noBranch|) (IF (|has| |t#1| (-444)) (PROGN (-15 -3727 (|t#1| |t#1| $)) (-15 -2653 ($ $)) (-15 -2878 ($ $)) (-15 -1915 ($ $)) (-15 -2280 ($ $))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-593 (-923 |#1|)) |has| |#3| (-594 (-1143))) ((-170) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-594 (-525)) -12 (|has| |#1| (-594 (-525))) (|has| |#3| (-594 (-525)))) ((-594 (-863 (-372))) -12 (|has| |#1| (-594 (-863 (-372)))) (|has| |#3| (-594 (-863 (-372))))) ((-594 (-863 (-549))) -12 (|has| |#1| (-594 (-863 (-549)))) (|has| |#3| (-594 (-863 (-549))))) ((-594 (-923 |#1|)) |has| |#3| (-594 (-1143))) ((-594 (-1125)) -12 (|has| |#1| (-1009 (-549))) (|has| |#3| (-594 (-1143)))) ((-283) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-302 $) . T) ((-319 |#1| |#2|) . T) ((-370 |#1|) . T) ((-404 |#1|) . T) ((-444) -1536 (|has| |#1| (-880)) (|has| |#1| (-444))) ((-505 |#3| |#1|) . T) ((-505 |#3| $) . T) ((-505 $ $) . T) ((-541) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-624 #0#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-694 #0#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-703) . T) ((-823) |has| |#1| (-823)) ((-871 |#3|) . T) ((-857 (-372)) -12 (|has| |#1| (-857 (-372))) (|has| |#3| (-857 (-372)))) ((-857 (-549)) -12 (|has| |#1| (-857 (-549))) (|has| |#3| (-857 (-549)))) ((-920 |#1| |#2| |#3|) . T) ((-880) |has| |#1| (-880)) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1009 |#3|) . T) ((-1024 #0#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1184) |has| |#1| (-880)))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3022 (((-621 (-1148)) $) 13)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2492 (((-1148) $) 15)) (-2389 (((-112) $ $) NIL)))
-(((-1033) (-13 (-1050) (-10 -8 (-15 -3022 ((-621 (-1148)) $)) (-15 -2492 ((-1148) $))))) (T -1033))
-((-3022 (*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-1033)))) (-2492 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1033)))))
-(-13 (-1050) (-10 -8 (-15 -3022 ((-621 (-1148)) $)) (-15 -2492 ((-1148) $))))
-((-1763 (((-112) |#3| $) 13)) (-1947 (((-3 $ "failed") |#3| (-892)) 23)) (-2114 (((-3 |#3| "failed") |#3| $) 38)) (-2772 (((-112) |#3| $) 16)) (-2374 (((-112) |#3| $) 14)))
-(((-1034 |#1| |#2| |#3|) (-10 -8 (-15 -1947 ((-3 |#1| "failed") |#3| (-892))) (-15 -2114 ((-3 |#3| "failed") |#3| |#1|)) (-15 -2772 ((-112) |#3| |#1|)) (-15 -2374 ((-112) |#3| |#1|)) (-15 -1763 ((-112) |#3| |#1|))) (-1035 |#2| |#3|) (-13 (-821) (-356)) (-1202 |#2|)) (T -1034))
-NIL
-(-10 -8 (-15 -1947 ((-3 |#1| "failed") |#3| (-892))) (-15 -2114 ((-3 |#3| "failed") |#3| |#1|)) (-15 -2772 ((-112) |#3| |#1|)) (-15 -2374 ((-112) |#3| |#1|)) (-15 -1763 ((-112) |#3| |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) |#2| $) 21)) (-1872 (((-549) |#2| $) 22)) (-1947 (((-3 $ "failed") |#2| (-892)) 15)) (-1336 ((|#1| |#2| $ |#1|) 13)) (-2114 (((-3 |#2| "failed") |#2| $) 18)) (-2772 (((-112) |#2| $) 19)) (-2374 (((-112) |#2| $) 20)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-2815 ((|#2| $) 17)) (-3846 (((-834) $) 11)) (-2661 ((|#1| |#2| $ |#1|) 14)) (-3302 (((-621 $) |#2|) 16)) (-2389 (((-112) $ $) 6)))
-(((-1035 |#1| |#2|) (-138) (-13 (-821) (-356)) (-1202 |t#1|)) (T -1035))
-((-1872 (*1 *2 *3 *1) (-12 (-4 *1 (-1035 *4 *3)) (-4 *4 (-13 (-821) (-356))) (-4 *3 (-1202 *4)) (-5 *2 (-549)))) (-1763 (*1 *2 *3 *1) (-12 (-4 *1 (-1035 *4 *3)) (-4 *4 (-13 (-821) (-356))) (-4 *3 (-1202 *4)) (-5 *2 (-112)))) (-2374 (*1 *2 *3 *1) (-12 (-4 *1 (-1035 *4 *3)) (-4 *4 (-13 (-821) (-356))) (-4 *3 (-1202 *4)) (-5 *2 (-112)))) (-2772 (*1 *2 *3 *1) (-12 (-4 *1 (-1035 *4 *3)) (-4 *4 (-13 (-821) (-356))) (-4 *3 (-1202 *4)) (-5 *2 (-112)))) (-2114 (*1 *2 *2 *1) (|partial| -12 (-4 *1 (-1035 *3 *2)) (-4 *3 (-13 (-821) (-356))) (-4 *2 (-1202 *3)))) (-2815 (*1 *2 *1) (-12 (-4 *1 (-1035 *3 *2)) (-4 *3 (-13 (-821) (-356))) (-4 *2 (-1202 *3)))) (-3302 (*1 *2 *3) (-12 (-4 *4 (-13 (-821) (-356))) (-4 *3 (-1202 *4)) (-5 *2 (-621 *1)) (-4 *1 (-1035 *4 *3)))) (-1947 (*1 *1 *2 *3) (|partial| -12 (-5 *3 (-892)) (-4 *4 (-13 (-821) (-356))) (-4 *1 (-1035 *4 *2)) (-4 *2 (-1202 *4)))) (-2661 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1035 *2 *3)) (-4 *2 (-13 (-821) (-356))) (-4 *3 (-1202 *2)))) (-1336 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1035 *2 *3)) (-4 *2 (-13 (-821) (-356))) (-4 *3 (-1202 *2)))))
-(-13 (-1067) (-10 -8 (-15 -1872 ((-549) |t#2| $)) (-15 -1763 ((-112) |t#2| $)) (-15 -2374 ((-112) |t#2| $)) (-15 -2772 ((-112) |t#2| $)) (-15 -2114 ((-3 |t#2| "failed") |t#2| $)) (-15 -2815 (|t#2| $)) (-15 -3302 ((-621 $) |t#2|)) (-15 -1947 ((-3 $ "failed") |t#2| (-892))) (-15 -2661 (|t#1| |t#2| $ |t#1|)) (-15 -1336 (|t#1| |t#2| $ |t#1|))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-3817 (((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-621 |#4|) (-621 |#5|) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) (-747)) 96)) (-3105 (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5|) 57) (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747)) 56)) (-3762 (((-1231) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-747)) 87)) (-1362 (((-747) (-621 |#4|) (-621 |#5|)) 27)) (-2166 (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5|) 59) (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747)) 58) (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747) (-112)) 60)) (-1655 (((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112) (-112) (-112) (-112)) 78) (((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112)) 79)) (-2845 (((-1125) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) 82)) (-1589 (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-112)) 55)) (-1516 (((-747) (-621 |#4|) (-621 |#5|)) 19)))
-(((-1036 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1516 ((-747) (-621 |#4|) (-621 |#5|))) (-15 -1362 ((-747) (-621 |#4|) (-621 |#5|))) (-15 -1589 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-112))) (-15 -3105 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747))) (-15 -3105 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5|)) (-15 -2166 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747) (-112))) (-15 -2166 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747))) (-15 -2166 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5|)) (-15 -1655 ((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112))) (-15 -1655 ((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -3817 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-621 |#4|) (-621 |#5|) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) (-747))) (-15 -2845 ((-1125) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|)))) (-15 -3762 ((-1231) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-747)))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1038 |#1| |#2| |#3| |#4|)) (T -1036))
-((-3762 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-2 (|:| |val| (-621 *8)) (|:| -1981 *9)))) (-5 *4 (-747)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-1231)) (-5 *1 (-1036 *5 *6 *7 *8 *9)))) (-2845 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-621 *7)) (|:| -1981 *8))) (-4 *7 (-1032 *4 *5 *6)) (-4 *8 (-1038 *4 *5 *6 *7)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1125)) (-5 *1 (-1036 *4 *5 *6 *7 *8)))) (-3817 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-621 *11)) (|:| |todo| (-621 (-2 (|:| |val| *3) (|:| -1981 *11)))))) (-5 *6 (-747)) (-5 *2 (-621 (-2 (|:| |val| (-621 *10)) (|:| -1981 *11)))) (-5 *3 (-621 *10)) (-5 *4 (-621 *11)) (-4 *10 (-1032 *7 *8 *9)) (-4 *11 (-1038 *7 *8 *9 *10)) (-4 *7 (-444)) (-4 *8 (-769)) (-4 *9 (-823)) (-5 *1 (-1036 *7 *8 *9 *10 *11)))) (-1655 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-621 *9)) (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1036 *5 *6 *7 *8 *9)))) (-1655 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-621 *9)) (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1036 *5 *6 *7 *8 *9)))) (-2166 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4)))))) (-5 *1 (-1036 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-2166 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-747)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *3 (-1032 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4)))))) (-5 *1 (-1036 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3)))) (-2166 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-747)) (-5 *6 (-112)) (-4 *7 (-444)) (-4 *8 (-769)) (-4 *9 (-823)) (-4 *3 (-1032 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4)))))) (-5 *1 (-1036 *7 *8 *9 *3 *4)) (-4 *4 (-1038 *7 *8 *9 *3)))) (-3105 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4)))))) (-5 *1 (-1036 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-3105 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-747)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *3 (-1032 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4)))))) (-5 *1 (-1036 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3)))) (-1589 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *3 (-1032 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4)))))) (-5 *1 (-1036 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3)))) (-1362 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *9)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-747)) (-5 *1 (-1036 *5 *6 *7 *8 *9)))) (-1516 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *9)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-747)) (-5 *1 (-1036 *5 *6 *7 *8 *9)))))
-(-10 -7 (-15 -1516 ((-747) (-621 |#4|) (-621 |#5|))) (-15 -1362 ((-747) (-621 |#4|) (-621 |#5|))) (-15 -1589 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-112))) (-15 -3105 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747))) (-15 -3105 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5|)) (-15 -2166 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747) (-112))) (-15 -2166 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747))) (-15 -2166 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5|)) (-15 -1655 ((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112))) (-15 -1655 ((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -3817 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-621 |#4|) (-621 |#5|) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) (-747))) (-15 -2845 ((-1125) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|)))) (-15 -3762 ((-1231) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-747))))
-((-3516 (((-112) |#5| $) 21)) (-3150 (((-112) |#5| $) 24)) (-2064 (((-112) |#5| $) 16) (((-112) $) 45)) (-3655 (((-621 $) |#5| $) NIL) (((-621 $) (-621 |#5|) $) 77) (((-621 $) (-621 |#5|) (-621 $)) 75) (((-621 $) |#5| (-621 $)) 78)) (-2763 (($ $ |#5|) NIL) (((-621 $) |#5| $) NIL) (((-621 $) |#5| (-621 $)) 60) (((-621 $) (-621 |#5|) $) 62) (((-621 $) (-621 |#5|) (-621 $)) 64)) (-1518 (((-621 $) |#5| $) NIL) (((-621 $) |#5| (-621 $)) 54) (((-621 $) (-621 |#5|) $) 56) (((-621 $) (-621 |#5|) (-621 $)) 58)) (-3524 (((-112) |#5| $) 27)))
-(((-1037 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2763 ((-621 |#1|) (-621 |#5|) (-621 |#1|))) (-15 -2763 ((-621 |#1|) (-621 |#5|) |#1|)) (-15 -2763 ((-621 |#1|) |#5| (-621 |#1|))) (-15 -2763 ((-621 |#1|) |#5| |#1|)) (-15 -1518 ((-621 |#1|) (-621 |#5|) (-621 |#1|))) (-15 -1518 ((-621 |#1|) (-621 |#5|) |#1|)) (-15 -1518 ((-621 |#1|) |#5| (-621 |#1|))) (-15 -1518 ((-621 |#1|) |#5| |#1|)) (-15 -3655 ((-621 |#1|) |#5| (-621 |#1|))) (-15 -3655 ((-621 |#1|) (-621 |#5|) (-621 |#1|))) (-15 -3655 ((-621 |#1|) (-621 |#5|) |#1|)) (-15 -3655 ((-621 |#1|) |#5| |#1|)) (-15 -3150 ((-112) |#5| |#1|)) (-15 -2064 ((-112) |#1|)) (-15 -3524 ((-112) |#5| |#1|)) (-15 -3516 ((-112) |#5| |#1|)) (-15 -2064 ((-112) |#5| |#1|)) (-15 -2763 (|#1| |#1| |#5|))) (-1038 |#2| |#3| |#4| |#5|) (-444) (-769) (-823) (-1032 |#2| |#3| |#4|)) (T -1037))
-NIL
-(-10 -8 (-15 -2763 ((-621 |#1|) (-621 |#5|) (-621 |#1|))) (-15 -2763 ((-621 |#1|) (-621 |#5|) |#1|)) (-15 -2763 ((-621 |#1|) |#5| (-621 |#1|))) (-15 -2763 ((-621 |#1|) |#5| |#1|)) (-15 -1518 ((-621 |#1|) (-621 |#5|) (-621 |#1|))) (-15 -1518 ((-621 |#1|) (-621 |#5|) |#1|)) (-15 -1518 ((-621 |#1|) |#5| (-621 |#1|))) (-15 -1518 ((-621 |#1|) |#5| |#1|)) (-15 -3655 ((-621 |#1|) |#5| (-621 |#1|))) (-15 -3655 ((-621 |#1|) (-621 |#5|) (-621 |#1|))) (-15 -3655 ((-621 |#1|) (-621 |#5|) |#1|)) (-15 -3655 ((-621 |#1|) |#5| |#1|)) (-15 -3150 ((-112) |#5| |#1|)) (-15 -2064 ((-112) |#1|)) (-15 -3524 ((-112) |#5| |#1|)) (-15 -3516 ((-112) |#5| |#1|)) (-15 -2064 ((-112) |#5| |#1|)) (-15 -2763 (|#1| |#1| |#5|)))
-((-3834 (((-112) $ $) 7)) (-3514 (((-621 (-2 (|:| -2681 $) (|:| -1359 (-621 |#4|)))) (-621 |#4|)) 85)) (-2866 (((-621 $) (-621 |#4|)) 86) (((-621 $) (-621 |#4|) (-112)) 111)) (-2272 (((-621 |#3|) $) 33)) (-3422 (((-112) $) 26)) (-2527 (((-112) $) 17 (|has| |#1| (-541)))) (-3282 (((-112) |#4| $) 101) (((-112) $) 97)) (-2731 ((|#4| |#4| $) 92)) (-3979 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 $))) |#4| $) 126)) (-3193 (((-2 (|:| |under| $) (|:| -3967 $) (|:| |upper| $)) $ |#3|) 27)) (-1584 (((-112) $ (-747)) 44)) (-1489 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4337))) (((-3 |#4| "failed") $ |#3|) 79)) (-1682 (($) 45 T CONST)) (-1433 (((-112) $) 22 (|has| |#1| (-541)))) (-2555 (((-112) $ $) 24 (|has| |#1| (-541)))) (-2595 (((-112) $ $) 23 (|has| |#1| (-541)))) (-2397 (((-112) $) 25 (|has| |#1| (-541)))) (-2737 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3269 (((-621 |#4|) (-621 |#4|) $) 18 (|has| |#1| (-541)))) (-2953 (((-621 |#4|) (-621 |#4|) $) 19 (|has| |#1| (-541)))) (-2714 (((-3 $ "failed") (-621 |#4|)) 36)) (-2659 (($ (-621 |#4|)) 35)) (-3657 (((-3 $ "failed") $) 82)) (-1903 ((|#4| |#4| $) 89)) (-3676 (($ $) 68 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ |#4| $) 67 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4337)))) (-3675 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-541)))) (-2217 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-3615 ((|#4| |#4| $) 87)) (-2557 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4337))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4337))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-1439 (((-2 (|:| -2681 (-621 |#4|)) (|:| -1359 (-621 |#4|))) $) 105)) (-3516 (((-112) |#4| $) 136)) (-3150 (((-112) |#4| $) 133)) (-2064 (((-112) |#4| $) 137) (((-112) $) 134)) (-2989 (((-621 |#4|) $) 52 (|has| $ (-6 -4337)))) (-2812 (((-112) |#4| $) 104) (((-112) $) 103)) (-2745 ((|#3| $) 34)) (-3194 (((-112) $ (-747)) 43)) (-1562 (((-621 |#4|) $) 53 (|has| $ (-6 -4337)))) (-2090 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#4| |#4|) $) 47)) (-2561 (((-621 |#3|) $) 32)) (-2378 (((-112) |#3| $) 31)) (-1508 (((-112) $ (-747)) 42)) (-3851 (((-1125) $) 9)) (-1878 (((-3 |#4| (-621 $)) |#4| |#4| $) 128)) (-3072 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 $))) |#4| |#4| $) 127)) (-3829 (((-3 |#4| "failed") $) 83)) (-3689 (((-621 $) |#4| $) 129)) (-1514 (((-3 (-112) (-621 $)) |#4| $) 132)) (-4184 (((-621 (-2 (|:| |val| (-112)) (|:| -1981 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-3655 (((-621 $) |#4| $) 125) (((-621 $) (-621 |#4|) $) 124) (((-621 $) (-621 |#4|) (-621 $)) 123) (((-621 $) |#4| (-621 $)) 122)) (-4283 (($ |#4| $) 117) (($ (-621 |#4|) $) 116)) (-1638 (((-621 |#4|) $) 107)) (-2170 (((-112) |#4| $) 99) (((-112) $) 95)) (-3270 ((|#4| |#4| $) 90)) (-2473 (((-112) $ $) 110)) (-4203 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-541)))) (-1335 (((-112) |#4| $) 100) (((-112) $) 96)) (-4298 ((|#4| |#4| $) 91)) (-3990 (((-1087) $) 10)) (-3646 (((-3 |#4| "failed") $) 84)) (-3779 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-2640 (((-3 $ "failed") $ |#4|) 78)) (-2763 (($ $ |#4|) 77) (((-621 $) |#4| $) 115) (((-621 $) |#4| (-621 $)) 114) (((-621 $) (-621 |#4|) $) 113) (((-621 $) (-621 |#4|) (-621 $)) 112)) (-1780 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 |#4|) (-621 |#4|)) 59 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-287 |#4|)) 57 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-621 (-287 |#4|))) 56 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))) (-4144 (((-112) $ $) 38)) (-3670 (((-112) $) 41)) (-3742 (($) 40)) (-3701 (((-747) $) 106)) (-4000 (((-747) |#4| $) 54 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) (((-747) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4337)))) (-2281 (($ $) 39)) (-2845 (((-525) $) 69 (|has| |#4| (-594 (-525))))) (-3854 (($ (-621 |#4|)) 60)) (-2858 (($ $ |#3|) 28)) (-3758 (($ $ |#3|) 30)) (-1962 (($ $) 88)) (-4317 (($ $ |#3|) 29)) (-3846 (((-834) $) 11) (((-621 |#4|) $) 37)) (-1824 (((-747) $) 76 (|has| |#3| (-361)))) (-2574 (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-1716 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) 98)) (-1518 (((-621 $) |#4| $) 121) (((-621 $) |#4| (-621 $)) 120) (((-621 $) (-621 |#4|) $) 119) (((-621 $) (-621 |#4|) (-621 $)) 118)) (-3527 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4337)))) (-3002 (((-621 |#3|) $) 81)) (-3524 (((-112) |#4| $) 135)) (-1606 (((-112) |#3| $) 80)) (-2389 (((-112) $ $) 6)) (-3775 (((-747) $) 46 (|has| $ (-6 -4337)))))
+((-2510 (*1 *2 *1) (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)))) (-4241 (*1 *2 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-747)))) (-3059 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-2532 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-1342 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-3178 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-4110 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1032 *3 *4 *5)))) (-4013 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-2042 (*1 *1 *1 *2) (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)))) (-2068 (*1 *1 *1 *2) (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)))) (-4313 (*1 *2 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-2020 (*1 *2 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-4286 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-2935 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-4040 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1032 *3 *4 *5)))) (-1542 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1032 *3 *4 *5)))) (-3651 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-3386 (*1 *2 *1 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-2331 (*1 *2 *1 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-1804 (*1 *2 *1 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-1804 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *1)) (-4 *1 (-1032 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)))) (-4122 (*1 *2 *1 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-4122 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *1)) (-4 *1 (-1032 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)))) (-1304 (*1 *2 *1 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-1304 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *1)) (-4 *1 (-1032 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)))) (-2240 (*1 *2 *1 *1) (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))) (-2240 (*1 *2 *1 *3) (-12 (-5 *3 (-621 *1)) (-4 *1 (-1032 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)))) (-4222 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-1828 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-4222 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)))) (-1828 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)))) (-2944 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-3578 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-2944 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)))) (-3578 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *2 (-823)))) (-1561 (*1 *2 *1 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-2 (|:| -1569 *1) (|:| |gap| (-747)) (|:| -1809 *1))) (-4 *1 (-1032 *3 *4 *5)))) (-1561 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-5 *2 (-2 (|:| -1569 *1) (|:| |gap| (-747)) (|:| -1809 *1))) (-4 *1 (-1032 *4 *5 *3)))) (-2742 (*1 *2 *1 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-2 (|:| -1569 *1) (|:| |gap| (-747)) (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-1032 *3 *4 *5)))) (-2742 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-5 *2 (-2 (|:| -1569 *1) (|:| |gap| (-747)) (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-1032 *4 *5 *3)))) (-2805 (*1 *2 *1 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-1032 *3 *4 *5)))) (-2466 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-2280 (*1 *2 *1 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -1742 (-747)))) (-4 *1 (-1032 *3 *4 *5)))) (-4244 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-3603 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)))) (-2712 (*1 *1 *2) (|partial| -12 (-5 *2 (-923 (-400 (-549)))) (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1142))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-923 (-400 (-549)))) (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1142))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)))) (-2843 (*1 *1 *2) (-12 (-5 *2 (-923 (-400 (-549)))) (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1142))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)))) (-2712 (*1 *1 *2) (|partial| -1536 (-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5)) (-12 (-4007 (-4 *3 (-38 (-400 (-549))))) (-4 *3 (-38 (-549))) (-4 *5 (-594 (-1142)))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))) (-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5)) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1142)))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))))) (-2657 (*1 *1 *2) (-1536 (-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5)) (-12 (-4007 (-4 *3 (-38 (-400 (-549))))) (-4 *3 (-38 (-549))) (-4 *5 (-594 (-1142)))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))) (-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5)) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1142)))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))))) (-2843 (*1 *1 *2) (-1536 (-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5)) (-12 (-4007 (-4 *3 (-38 (-400 (-549))))) (-4 *3 (-38 (-549))) (-4 *5 (-594 (-1142)))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))) (-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5)) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1142)))) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))))) (-2712 (*1 *1 *2) (|partial| -1536 (-12 (-5 *2 (-923 *3)) (-12 (-4007 (-4 *3 (-38 (-400 (-549))))) (-4007 (-4 *3 (-38 (-549)))) (-4 *5 (-594 (-1142)))) (-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823))) (-12 (-5 *2 (-923 *3)) (-12 (-4007 (-4 *3 (-534))) (-4007 (-4 *3 (-38 (-400 (-549))))) (-4 *3 (-38 (-549))) (-4 *5 (-594 (-1142)))) (-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823))) (-12 (-5 *2 (-923 *3)) (-12 (-4007 (-4 *3 (-963 (-549)))) (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1142)))) (-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823))))) (-2657 (*1 *1 *2) (-1536 (-12 (-5 *2 (-923 *3)) (-12 (-4007 (-4 *3 (-38 (-400 (-549))))) (-4007 (-4 *3 (-38 (-549)))) (-4 *5 (-594 (-1142)))) (-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823))) (-12 (-5 *2 (-923 *3)) (-12 (-4007 (-4 *3 (-534))) (-4007 (-4 *3 (-38 (-400 (-549))))) (-4 *3 (-38 (-549))) (-4 *5 (-594 (-1142)))) (-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823))) (-12 (-5 *2 (-923 *3)) (-12 (-4007 (-4 *3 (-963 (-549)))) (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1142)))) (-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769)) (-4 *5 (-823))))) (-2843 (*1 *1 *2) (-12 (-5 *2 (-923 *3)) (-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *5 (-594 (-1142))) (-4 *4 (-769)) (-4 *5 (-823)))) (-2546 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-3818 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-2650 (*1 *1 *1 *2) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-3998 (*1 *1 *1 *2) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-2650 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-3998 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-2070 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-4251 (*1 *2 *1 *1) (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-2 (|:| -3726 *1) (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-1032 *3 *4 *5)))) (-1462 (*1 *2 *1 *1) (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-2 (|:| -3726 *1) (|:| |coef1| *1))) (-4 *1 (-1032 *3 *4 *5)))) (-3913 (*1 *2 *1 *1) (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-2 (|:| -3726 *1) (|:| |coef2| *1))) (-4 *1 (-1032 *3 *4 *5)))) (-4114 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-1898 (*1 *2 *1 *1) (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1032 *3 *4 *5)))) (-3402 (*1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-3291 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *3 (-541)))) (-3334 (*1 *1 *1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *3 (-541)))) (-1276 (*1 *1 *1 *1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-541)))) (-3726 (*1 *2 *2 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-444)))) (-3361 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-444)))) (-2045 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-444)))) (-2551 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-444)))) (-1284 (*1 *1 *1) (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-444)))))
+(-13 (-920 |t#1| |t#2| |t#3|) (-10 -8 (-15 -2510 (|t#3| $)) (-15 -4241 ((-747) $)) (-15 -3059 ($ $)) (-15 -2532 ($ $)) (-15 -1342 ($ $)) (-15 -3178 ($ $)) (-15 -4110 ((-621 $) $)) (-15 -4013 ($ $)) (-15 -2042 ($ $ |t#3|)) (-15 -2068 ($ $ |t#3|)) (-15 -4313 ((-112) $)) (-15 -2020 ((-112) $)) (-15 -4286 ($ $)) (-15 -2935 ($ $)) (-15 -4040 ((-621 $) $)) (-15 -1542 ((-621 $) $)) (-15 -3651 ((-3 (-112) "failed") $ $)) (-15 -3386 ((-112) $ $)) (-15 -2331 ((-112) $ $)) (-15 -1804 ((-112) $ $)) (-15 -1804 ((-112) $ (-621 $))) (-15 -4122 ((-112) $ $)) (-15 -4122 ((-112) $ (-621 $))) (-15 -1304 ((-112) $ $)) (-15 -1304 ((-112) $ (-621 $))) (-15 -2240 ((-112) $ $)) (-15 -2240 ((-112) $ (-621 $))) (-15 -4222 ($ $ $)) (-15 -1828 ($ $ $)) (-15 -4222 ($ $ $ |t#3|)) (-15 -1828 ($ $ $ |t#3|)) (-15 -2944 ($ $ $)) (-15 -3578 ($ $ $)) (-15 -2944 ($ $ $ |t#3|)) (-15 -3578 ($ $ $ |t#3|)) (-15 -1561 ((-2 (|:| -1569 $) (|:| |gap| (-747)) (|:| -1809 $)) $ $)) (-15 -1561 ((-2 (|:| -1569 $) (|:| |gap| (-747)) (|:| -1809 $)) $ $ |t#3|)) (-15 -2742 ((-2 (|:| -1569 $) (|:| |gap| (-747)) (|:| -2262 $) (|:| -1809 $)) $ $)) (-15 -2742 ((-2 (|:| -1569 $) (|:| |gap| (-747)) (|:| -2262 $) (|:| -1809 $)) $ $ |t#3|)) (-15 -2805 ((-2 (|:| -2262 $) (|:| -1809 $)) $ $)) (-15 -2466 ($ $ $)) (-15 -2280 ((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1742 (-747))) $ $)) (-15 -4244 ($ $ $)) (-15 -3603 ($ $ $)) (IF (|has| |t#3| (-594 (-1142))) (PROGN (-6 (-593 (-923 |t#1|))) (-6 (-594 (-923 |t#1|))) (IF (|has| |t#1| (-38 (-400 (-549)))) (PROGN (-15 -2712 ((-3 $ "failed") (-923 (-400 (-549))))) (-15 -2657 ($ (-923 (-400 (-549))))) (-15 -2843 ($ (-923 (-400 (-549))))) (-15 -2712 ((-3 $ "failed") (-923 (-549)))) (-15 -2657 ($ (-923 (-549)))) (-15 -2843 ($ (-923 (-549)))) (IF (|has| |t#1| (-963 (-549))) |%noBranch| (PROGN (-15 -2712 ((-3 $ "failed") (-923 |t#1|))) (-15 -2657 ($ (-923 |t#1|)))))) |%noBranch|) (IF (|has| |t#1| (-38 (-549))) (IF (|has| |t#1| (-38 (-400 (-549)))) |%noBranch| (PROGN (-15 -2712 ((-3 $ "failed") (-923 (-549)))) (-15 -2657 ($ (-923 (-549)))) (-15 -2843 ($ (-923 (-549)))) (IF (|has| |t#1| (-534)) |%noBranch| (PROGN (-15 -2712 ((-3 $ "failed") (-923 |t#1|))) (-15 -2657 ($ (-923 |t#1|))))))) |%noBranch|) (IF (|has| |t#1| (-38 (-549))) |%noBranch| (IF (|has| |t#1| (-38 (-400 (-549)))) |%noBranch| (PROGN (-15 -2712 ((-3 $ "failed") (-923 |t#1|))) (-15 -2657 ($ (-923 |t#1|)))))) (-15 -2843 ($ (-923 |t#1|))) (IF (|has| |t#1| (-1009 (-549))) (-6 (-594 (-1124))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-541)) (PROGN (-15 -2546 ($ $)) (-15 -3818 ($ $)) (-15 -2650 ($ $ |t#1|)) (-15 -3998 ($ $ |t#1|)) (-15 -2650 ($ $ $)) (-15 -3998 ($ $ $)) (-15 -2070 ($ $ $)) (-15 -4251 ((-2 (|:| -3726 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1462 ((-2 (|:| -3726 $) (|:| |coef1| $)) $ $)) (-15 -3913 ((-2 (|:| -3726 $) (|:| |coef2| $)) $ $)) (-15 -4114 ($ $ $)) (-15 -1898 ((-621 $) $ $)) (-15 -3402 ($ $ $)) (-15 -3291 ($ $ $ (-747))) (-15 -3334 ($ $ $ $ (-747))) (-15 -1276 ($ $ $ $ $))) |%noBranch|) (IF (|has| |t#1| (-444)) (PROGN (-15 -3726 (|t#1| |t#1| $)) (-15 -3361 ($ $)) (-15 -2045 ($ $)) (-15 -2551 ($ $)) (-15 -1284 ($ $))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-593 (-923 |#1|)) |has| |#3| (-594 (-1142))) ((-170) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-594 (-525)) -12 (|has| |#1| (-594 (-525))) (|has| |#3| (-594 (-525)))) ((-594 (-863 (-372))) -12 (|has| |#1| (-594 (-863 (-372)))) (|has| |#3| (-594 (-863 (-372))))) ((-594 (-863 (-549))) -12 (|has| |#1| (-594 (-863 (-549)))) (|has| |#3| (-594 (-863 (-549))))) ((-594 (-923 |#1|)) |has| |#3| (-594 (-1142))) ((-594 (-1124)) -12 (|has| |#1| (-1009 (-549))) (|has| |#3| (-594 (-1142)))) ((-283) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-302 $) . T) ((-319 |#1| |#2|) . T) ((-370 |#1|) . T) ((-404 |#1|) . T) ((-444) -1536 (|has| |#1| (-880)) (|has| |#1| (-444))) ((-505 |#3| |#1|) . T) ((-505 |#3| $) . T) ((-505 $ $) . T) ((-541) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-624 #0#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-694 #0#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444))) ((-703) . T) ((-823) |has| |#1| (-823)) ((-871 |#3|) . T) ((-857 (-372)) -12 (|has| |#1| (-857 (-372))) (|has| |#3| (-857 (-372)))) ((-857 (-549)) -12 (|has| |#1| (-857 (-549))) (|has| |#3| (-857 (-549)))) ((-920 |#1| |#2| |#3|) . T) ((-880) |has| |#1| (-880)) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 |#1|) . T) ((-1009 |#3|) . T) ((-1024 #0#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1183) |has| |#1| (-880)))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3020 (((-621 (-1101)) $) 13)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 24) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2492 (((-1101) $) 15)) (-2387 (((-112) $ $) NIL)))
+(((-1033) (-13 (-1049) (-10 -8 (-15 -3020 ((-621 (-1101)) $)) (-15 -2492 ((-1101) $))))) (T -1033))
+((-3020 (*1 *2 *1) (-12 (-5 *2 (-621 (-1101))) (-5 *1 (-1033)))) (-2492 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-1033)))))
+(-13 (-1049) (-10 -8 (-15 -3020 ((-621 (-1101)) $)) (-15 -2492 ((-1101) $))))
+((-3210 (((-112) |#3| $) 13)) (-2406 (((-3 $ "failed") |#3| (-892)) 23)) (-2612 (((-3 |#3| "failed") |#3| $) 38)) (-2357 (((-112) |#3| $) 16)) (-1992 (((-112) |#3| $) 14)))
+(((-1034 |#1| |#2| |#3|) (-10 -8 (-15 -2406 ((-3 |#1| "failed") |#3| (-892))) (-15 -2612 ((-3 |#3| "failed") |#3| |#1|)) (-15 -2357 ((-112) |#3| |#1|)) (-15 -1992 ((-112) |#3| |#1|)) (-15 -3210 ((-112) |#3| |#1|))) (-1035 |#2| |#3|) (-13 (-821) (-356)) (-1201 |#2|)) (T -1034))
+NIL
+(-10 -8 (-15 -2406 ((-3 |#1| "failed") |#3| (-892))) (-15 -2612 ((-3 |#3| "failed") |#3| |#1|)) (-15 -2357 ((-112) |#3| |#1|)) (-15 -1992 ((-112) |#3| |#1|)) (-15 -3210 ((-112) |#3| |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) |#2| $) 21)) (-1741 (((-549) |#2| $) 22)) (-2406 (((-3 $ "failed") |#2| (-892)) 15)) (-3351 ((|#1| |#2| $ |#1|) 13)) (-2612 (((-3 |#2| "failed") |#2| $) 18)) (-2357 (((-112) |#2| $) 19)) (-1992 (((-112) |#2| $) 20)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-1262 ((|#2| $) 17)) (-3845 (((-834) $) 11)) (-2659 ((|#1| |#2| $ |#1|) 14)) (-2229 (((-621 $) |#2|) 16)) (-2387 (((-112) $ $) 6)))
+(((-1035 |#1| |#2|) (-138) (-13 (-821) (-356)) (-1201 |t#1|)) (T -1035))
+((-1741 (*1 *2 *3 *1) (-12 (-4 *1 (-1035 *4 *3)) (-4 *4 (-13 (-821) (-356))) (-4 *3 (-1201 *4)) (-5 *2 (-549)))) (-3210 (*1 *2 *3 *1) (-12 (-4 *1 (-1035 *4 *3)) (-4 *4 (-13 (-821) (-356))) (-4 *3 (-1201 *4)) (-5 *2 (-112)))) (-1992 (*1 *2 *3 *1) (-12 (-4 *1 (-1035 *4 *3)) (-4 *4 (-13 (-821) (-356))) (-4 *3 (-1201 *4)) (-5 *2 (-112)))) (-2357 (*1 *2 *3 *1) (-12 (-4 *1 (-1035 *4 *3)) (-4 *4 (-13 (-821) (-356))) (-4 *3 (-1201 *4)) (-5 *2 (-112)))) (-2612 (*1 *2 *2 *1) (|partial| -12 (-4 *1 (-1035 *3 *2)) (-4 *3 (-13 (-821) (-356))) (-4 *2 (-1201 *3)))) (-1262 (*1 *2 *1) (-12 (-4 *1 (-1035 *3 *2)) (-4 *3 (-13 (-821) (-356))) (-4 *2 (-1201 *3)))) (-2229 (*1 *2 *3) (-12 (-4 *4 (-13 (-821) (-356))) (-4 *3 (-1201 *4)) (-5 *2 (-621 *1)) (-4 *1 (-1035 *4 *3)))) (-2406 (*1 *1 *2 *3) (|partial| -12 (-5 *3 (-892)) (-4 *4 (-13 (-821) (-356))) (-4 *1 (-1035 *4 *2)) (-4 *2 (-1201 *4)))) (-2659 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1035 *2 *3)) (-4 *2 (-13 (-821) (-356))) (-4 *3 (-1201 *2)))) (-3351 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1035 *2 *3)) (-4 *2 (-13 (-821) (-356))) (-4 *3 (-1201 *2)))))
+(-13 (-1066) (-10 -8 (-15 -1741 ((-549) |t#2| $)) (-15 -3210 ((-112) |t#2| $)) (-15 -1992 ((-112) |t#2| $)) (-15 -2357 ((-112) |t#2| $)) (-15 -2612 ((-3 |t#2| "failed") |t#2| $)) (-15 -1262 (|t#2| $)) (-15 -2229 ((-621 $) |t#2|)) (-15 -2406 ((-3 $ "failed") |t#2| (-892))) (-15 -2659 (|t#1| |t#2| $ |t#1|)) (-15 -3351 (|t#1| |t#2| $ |t#1|))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-2076 (((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-621 |#4|) (-621 |#5|) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) (-747)) 96)) (-2833 (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5|) 57) (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747)) 56)) (-3761 (((-1230) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-747)) 87)) (-3948 (((-747) (-621 |#4|) (-621 |#5|)) 27)) (-4264 (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5|) 59) (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747)) 58) (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747) (-112)) 60)) (-2570 (((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112) (-112) (-112) (-112)) 78) (((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112)) 79)) (-2843 (((-1124) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) 82)) (-3150 (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-112)) 55)) (-2473 (((-747) (-621 |#4|) (-621 |#5|)) 19)))
+(((-1036 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2473 ((-747) (-621 |#4|) (-621 |#5|))) (-15 -3948 ((-747) (-621 |#4|) (-621 |#5|))) (-15 -3150 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-112))) (-15 -2833 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747))) (-15 -2833 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5|)) (-15 -4264 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747) (-112))) (-15 -4264 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747))) (-15 -4264 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5|)) (-15 -2570 ((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112))) (-15 -2570 ((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -2076 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-621 |#4|) (-621 |#5|) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) (-747))) (-15 -2843 ((-1124) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|)))) (-15 -3761 ((-1230) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-747)))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1038 |#1| |#2| |#3| |#4|)) (T -1036))
+((-3761 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-2 (|:| |val| (-621 *8)) (|:| -1979 *9)))) (-5 *4 (-747)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-1230)) (-5 *1 (-1036 *5 *6 *7 *8 *9)))) (-2843 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-621 *7)) (|:| -1979 *8))) (-4 *7 (-1032 *4 *5 *6)) (-4 *8 (-1038 *4 *5 *6 *7)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1124)) (-5 *1 (-1036 *4 *5 *6 *7 *8)))) (-2076 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-621 *11)) (|:| |todo| (-621 (-2 (|:| |val| *3) (|:| -1979 *11)))))) (-5 *6 (-747)) (-5 *2 (-621 (-2 (|:| |val| (-621 *10)) (|:| -1979 *11)))) (-5 *3 (-621 *10)) (-5 *4 (-621 *11)) (-4 *10 (-1032 *7 *8 *9)) (-4 *11 (-1038 *7 *8 *9 *10)) (-4 *7 (-444)) (-4 *8 (-769)) (-4 *9 (-823)) (-5 *1 (-1036 *7 *8 *9 *10 *11)))) (-2570 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-621 *9)) (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1036 *5 *6 *7 *8 *9)))) (-2570 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-621 *9)) (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1036 *5 *6 *7 *8 *9)))) (-4264 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4)))))) (-5 *1 (-1036 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-4264 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-747)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *3 (-1032 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4)))))) (-5 *1 (-1036 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3)))) (-4264 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-747)) (-5 *6 (-112)) (-4 *7 (-444)) (-4 *8 (-769)) (-4 *9 (-823)) (-4 *3 (-1032 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4)))))) (-5 *1 (-1036 *7 *8 *9 *3 *4)) (-4 *4 (-1038 *7 *8 *9 *3)))) (-2833 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4)))))) (-5 *1 (-1036 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-2833 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-747)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *3 (-1032 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4)))))) (-5 *1 (-1036 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3)))) (-3150 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *3 (-1032 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4)))))) (-5 *1 (-1036 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3)))) (-3948 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *9)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-747)) (-5 *1 (-1036 *5 *6 *7 *8 *9)))) (-2473 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *9)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-747)) (-5 *1 (-1036 *5 *6 *7 *8 *9)))))
+(-10 -7 (-15 -2473 ((-747) (-621 |#4|) (-621 |#5|))) (-15 -3948 ((-747) (-621 |#4|) (-621 |#5|))) (-15 -3150 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-112))) (-15 -2833 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747))) (-15 -2833 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5|)) (-15 -4264 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747) (-112))) (-15 -4264 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747))) (-15 -4264 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5|)) (-15 -2570 ((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112))) (-15 -2570 ((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -2076 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-621 |#4|) (-621 |#5|) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) (-747))) (-15 -2843 ((-1124) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|)))) (-15 -3761 ((-1230) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-747))))
+((-4267 (((-112) |#5| $) 21)) (-2553 (((-112) |#5| $) 24)) (-3504 (((-112) |#5| $) 16) (((-112) $) 45)) (-3869 (((-621 $) |#5| $) NIL) (((-621 $) (-621 |#5|) $) 77) (((-621 $) (-621 |#5|) (-621 $)) 75) (((-621 $) |#5| (-621 $)) 78)) (-3796 (($ $ |#5|) NIL) (((-621 $) |#5| $) NIL) (((-621 $) |#5| (-621 $)) 60) (((-621 $) (-621 |#5|) $) 62) (((-621 $) (-621 |#5|) (-621 $)) 64)) (-2008 (((-621 $) |#5| $) NIL) (((-621 $) |#5| (-621 $)) 54) (((-621 $) (-621 |#5|) $) 56) (((-621 $) (-621 |#5|) (-621 $)) 58)) (-2930 (((-112) |#5| $) 27)))
+(((-1037 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3796 ((-621 |#1|) (-621 |#5|) (-621 |#1|))) (-15 -3796 ((-621 |#1|) (-621 |#5|) |#1|)) (-15 -3796 ((-621 |#1|) |#5| (-621 |#1|))) (-15 -3796 ((-621 |#1|) |#5| |#1|)) (-15 -2008 ((-621 |#1|) (-621 |#5|) (-621 |#1|))) (-15 -2008 ((-621 |#1|) (-621 |#5|) |#1|)) (-15 -2008 ((-621 |#1|) |#5| (-621 |#1|))) (-15 -2008 ((-621 |#1|) |#5| |#1|)) (-15 -3869 ((-621 |#1|) |#5| (-621 |#1|))) (-15 -3869 ((-621 |#1|) (-621 |#5|) (-621 |#1|))) (-15 -3869 ((-621 |#1|) (-621 |#5|) |#1|)) (-15 -3869 ((-621 |#1|) |#5| |#1|)) (-15 -2553 ((-112) |#5| |#1|)) (-15 -3504 ((-112) |#1|)) (-15 -2930 ((-112) |#5| |#1|)) (-15 -4267 ((-112) |#5| |#1|)) (-15 -3504 ((-112) |#5| |#1|)) (-15 -3796 (|#1| |#1| |#5|))) (-1038 |#2| |#3| |#4| |#5|) (-444) (-769) (-823) (-1032 |#2| |#3| |#4|)) (T -1037))
+NIL
+(-10 -8 (-15 -3796 ((-621 |#1|) (-621 |#5|) (-621 |#1|))) (-15 -3796 ((-621 |#1|) (-621 |#5|) |#1|)) (-15 -3796 ((-621 |#1|) |#5| (-621 |#1|))) (-15 -3796 ((-621 |#1|) |#5| |#1|)) (-15 -2008 ((-621 |#1|) (-621 |#5|) (-621 |#1|))) (-15 -2008 ((-621 |#1|) (-621 |#5|) |#1|)) (-15 -2008 ((-621 |#1|) |#5| (-621 |#1|))) (-15 -2008 ((-621 |#1|) |#5| |#1|)) (-15 -3869 ((-621 |#1|) |#5| (-621 |#1|))) (-15 -3869 ((-621 |#1|) (-621 |#5|) (-621 |#1|))) (-15 -3869 ((-621 |#1|) (-621 |#5|) |#1|)) (-15 -3869 ((-621 |#1|) |#5| |#1|)) (-15 -2553 ((-112) |#5| |#1|)) (-15 -3504 ((-112) |#1|)) (-15 -2930 ((-112) |#5| |#1|)) (-15 -4267 ((-112) |#5| |#1|)) (-15 -3504 ((-112) |#5| |#1|)) (-15 -3796 (|#1| |#1| |#5|)))
+((-3832 (((-112) $ $) 7)) (-4063 (((-621 (-2 (|:| -2679 $) (|:| -1358 (-621 |#4|)))) (-621 |#4|)) 85)) (-3587 (((-621 $) (-621 |#4|)) 86) (((-621 $) (-621 |#4|) (-112)) 111)) (-2270 (((-621 |#3|) $) 33)) (-3735 (((-112) $) 26)) (-2148 (((-112) $) 17 (|has| |#1| (-541)))) (-2210 (((-112) |#4| $) 101) (((-112) $) 97)) (-2156 ((|#4| |#4| $) 92)) (-3239 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 $))) |#4| $) 126)) (-3191 (((-2 (|:| |under| $) (|:| -1349 $) (|:| |upper| $)) $ |#3|) 27)) (-2850 (((-112) $ (-747)) 44)) (-1488 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4336))) (((-3 |#4| "failed") $ |#3|) 79)) (-3034 (($) 45 T CONST)) (-4291 (((-112) $) 22 (|has| |#1| (-541)))) (-1663 (((-112) $ $) 24 (|has| |#1| (-541)))) (-4226 (((-112) $ $) 23 (|has| |#1| (-541)))) (-2113 (((-112) $) 25 (|has| |#1| (-541)))) (-1409 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3480 (((-621 |#4|) (-621 |#4|) $) 18 (|has| |#1| (-541)))) (-2393 (((-621 |#4|) (-621 |#4|) $) 19 (|has| |#1| (-541)))) (-2712 (((-3 $ "failed") (-621 |#4|)) 36)) (-2657 (($ (-621 |#4|)) 35)) (-3656 (((-3 $ "failed") $) 82)) (-1852 ((|#4| |#4| $) 89)) (-3675 (($ $) 68 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ |#4| $) 67 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4336)))) (-1809 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-541)))) (-1804 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-1402 ((|#4| |#4| $) 87)) (-2556 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4336))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4336))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-3862 (((-2 (|:| -2679 (-621 |#4|)) (|:| -1358 (-621 |#4|))) $) 105)) (-4267 (((-112) |#4| $) 136)) (-2553 (((-112) |#4| $) 133)) (-3504 (((-112) |#4| $) 137) (((-112) $) 134)) (-2987 (((-621 |#4|) $) 52 (|has| $ (-6 -4336)))) (-2240 (((-112) |#4| $) 104) (((-112) $) 103)) (-2510 ((|#3| $) 34)) (-1777 (((-112) $ (-747)) 43)) (-3698 (((-621 |#4|) $) 53 (|has| $ (-6 -4336)))) (-1593 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#4| |#4|) $) 47)) (-3991 (((-621 |#3|) $) 32)) (-4192 (((-112) |#3| $) 31)) (-3942 (((-112) $ (-747)) 42)) (-3441 (((-1124) $) 9)) (-4246 (((-3 |#4| (-621 $)) |#4| |#4| $) 128)) (-3402 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 $))) |#4| |#4| $) 127)) (-3828 (((-3 |#4| "failed") $) 83)) (-2114 (((-621 $) |#4| $) 129)) (-3219 (((-3 (-112) (-621 $)) |#4| $) 132)) (-3287 (((-621 (-2 (|:| |val| (-112)) (|:| -1979 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-3869 (((-621 $) |#4| $) 125) (((-621 $) (-621 |#4|) $) 124) (((-621 $) (-621 |#4|) (-621 $)) 123) (((-621 $) |#4| (-621 $)) 122)) (-2214 (($ |#4| $) 117) (($ (-621 |#4|) $) 116)) (-1645 (((-621 |#4|) $) 107)) (-1304 (((-112) |#4| $) 99) (((-112) $) 95)) (-3603 ((|#4| |#4| $) 90)) (-3386 (((-112) $ $) 110)) (-2179 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-541)))) (-4122 (((-112) |#4| $) 100) (((-112) $) 96)) (-4244 ((|#4| |#4| $) 91)) (-3988 (((-1086) $) 10)) (-3645 (((-3 |#4| "failed") $) 84)) (-3959 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-1505 (((-3 $ "failed") $ |#4|) 78)) (-3796 (($ $ |#4|) 77) (((-621 $) |#4| $) 115) (((-621 $) |#4| (-621 $)) 114) (((-621 $) (-621 |#4|) $) 113) (((-621 $) (-621 |#4|) (-621 $)) 112)) (-3360 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 |#4|) (-621 |#4|)) 59 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-287 |#4|)) 57 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-621 (-287 |#4|))) 56 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))) (-2520 (((-112) $ $) 38)) (-2643 (((-112) $) 41)) (-3288 (($) 40)) (-3977 (((-747) $) 106)) (-3997 (((-747) |#4| $) 54 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) (((-747) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4336)))) (-2279 (($ $) 39)) (-2843 (((-525) $) 69 (|has| |#4| (-594 (-525))))) (-3853 (($ (-621 |#4|)) 60)) (-4085 (($ $ |#3|) 28)) (-2195 (($ $ |#3|) 30)) (-4292 (($ $) 88)) (-4285 (($ $ |#3|) 29)) (-3845 (((-834) $) 11) (((-621 |#4|) $) 37)) (-2503 (((-747) $) 76 (|has| |#3| (-361)))) (-2940 (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-3760 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) 98)) (-2008 (((-621 $) |#4| $) 121) (((-621 $) |#4| (-621 $)) 120) (((-621 $) (-621 |#4|) $) 119) (((-621 $) (-621 |#4|) (-621 $)) 118)) (-3025 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4336)))) (-4044 (((-621 |#3|) $) 81)) (-2930 (((-112) |#4| $) 135)) (-1993 (((-112) |#3| $) 80)) (-2387 (((-112) $ $) 6)) (-3774 (((-747) $) 46 (|has| $ (-6 -4336)))))
(((-1038 |#1| |#2| |#3| |#4|) (-138) (-444) (-769) (-823) (-1032 |t#1| |t#2| |t#3|)) (T -1038))
-((-2064 (*1 *2 *3 *1) (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-3516 (*1 *2 *3 *1) (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-3524 (*1 *2 *3 *1) (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-2064 (*1 *2 *1) (-12 (-4 *1 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))) (-3150 (*1 *2 *3 *1) (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-1514 (*1 *2 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-3 (-112) (-621 *1))) (-4 *1 (-1038 *4 *5 *6 *3)))) (-4184 (*1 *2 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1981 *1)))) (-4 *1 (-1038 *4 *5 *6 *3)))) (-4184 (*1 *2 *3 *1) (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-3689 (*1 *2 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)))) (-1878 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-3 *3 (-621 *1))) (-4 *1 (-1038 *4 *5 *6 *3)))) (-3072 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *1)))) (-4 *1 (-1038 *4 *5 *6 *3)))) (-3979 (*1 *2 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *1)))) (-4 *1 (-1038 *4 *5 *6 *3)))) (-3655 (*1 *2 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)))) (-3655 (*1 *2 *3 *1) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *7)))) (-3655 (*1 *2 *3 *2) (-12 (-5 *2 (-621 *1)) (-5 *3 (-621 *7)) (-4 *1 (-1038 *4 *5 *6 *7)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)))) (-3655 (*1 *2 *3 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)))) (-1518 (*1 *2 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)))) (-1518 (*1 *2 *3 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)))) (-1518 (*1 *2 *3 *1) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *7)))) (-1518 (*1 *2 *3 *2) (-12 (-5 *2 (-621 *1)) (-5 *3 (-621 *7)) (-4 *1 (-1038 *4 *5 *6 *7)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)))) (-4283 (*1 *1 *2 *1) (-12 (-4 *1 (-1038 *3 *4 *5 *2)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-4283 (*1 *1 *2 *1) (-12 (-5 *2 (-621 *6)) (-4 *1 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)))) (-2763 (*1 *2 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)))) (-2763 (*1 *2 *3 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)))) (-2763 (*1 *2 *3 *1) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *7)))) (-2763 (*1 *2 *3 *2) (-12 (-5 *2 (-621 *1)) (-5 *3 (-621 *7)) (-4 *1 (-1038 *4 *5 *6 *7)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)))) (-2866 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1038 *5 *6 *7 *8)))))
-(-13 (-1173 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-15 -2064 ((-112) |t#4| $)) (-15 -3516 ((-112) |t#4| $)) (-15 -3524 ((-112) |t#4| $)) (-15 -2064 ((-112) $)) (-15 -3150 ((-112) |t#4| $)) (-15 -1514 ((-3 (-112) (-621 $)) |t#4| $)) (-15 -4184 ((-621 (-2 (|:| |val| (-112)) (|:| -1981 $))) |t#4| $)) (-15 -4184 ((-112) |t#4| $)) (-15 -3689 ((-621 $) |t#4| $)) (-15 -1878 ((-3 |t#4| (-621 $)) |t#4| |t#4| $)) (-15 -3072 ((-621 (-2 (|:| |val| |t#4|) (|:| -1981 $))) |t#4| |t#4| $)) (-15 -3979 ((-621 (-2 (|:| |val| |t#4|) (|:| -1981 $))) |t#4| $)) (-15 -3655 ((-621 $) |t#4| $)) (-15 -3655 ((-621 $) (-621 |t#4|) $)) (-15 -3655 ((-621 $) (-621 |t#4|) (-621 $))) (-15 -3655 ((-621 $) |t#4| (-621 $))) (-15 -1518 ((-621 $) |t#4| $)) (-15 -1518 ((-621 $) |t#4| (-621 $))) (-15 -1518 ((-621 $) (-621 |t#4|) $)) (-15 -1518 ((-621 $) (-621 |t#4|) (-621 $))) (-15 -4283 ($ |t#4| $)) (-15 -4283 ($ (-621 |t#4|) $)) (-15 -2763 ((-621 $) |t#4| $)) (-15 -2763 ((-621 $) |t#4| (-621 $))) (-15 -2763 ((-621 $) (-621 |t#4|) $)) (-15 -2763 ((-621 $) (-621 |t#4|) (-621 $))) (-15 -2866 ((-621 $) (-621 |t#4|) (-112)))))
-(((-34) . T) ((-101) . T) ((-593 (-621 |#4|)) . T) ((-593 (-834)) . T) ((-149 |#4|) . T) ((-594 (-525)) |has| |#4| (-594 (-525))) ((-302 |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))) ((-481 |#4|) . T) ((-505 |#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))) ((-947 |#1| |#2| |#3| |#4|) . T) ((-1067) . T) ((-1173 |#1| |#2| |#3| |#4|) . T) ((-1180) . T))
-((-3353 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#5|) 81)) (-4270 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5|) 113)) (-3963 (((-621 |#5|) |#4| |#5|) 70)) (-4085 (((-621 (-2 (|:| |val| (-112)) (|:| -1981 |#5|))) |#4| |#5|) 46) (((-112) |#4| |#5|) 53)) (-2283 (((-1231)) 37)) (-4066 (((-1231)) 26)) (-3847 (((-1231) (-1125) (-1125) (-1125)) 33)) (-1418 (((-1231) (-1125) (-1125) (-1125)) 22)) (-3825 (((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) |#4| |#4| |#5|) 96)) (-2642 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) |#3| (-112)) 107) (((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5| (-112) (-112)) 50)) (-2902 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5|) 102)))
-(((-1039 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1418 ((-1231) (-1125) (-1125) (-1125))) (-15 -4066 ((-1231))) (-15 -3847 ((-1231) (-1125) (-1125) (-1125))) (-15 -2283 ((-1231))) (-15 -3825 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) |#4| |#4| |#5|)) (-15 -2642 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2642 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) |#3| (-112))) (-15 -2902 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5|)) (-15 -4270 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5|)) (-15 -4085 ((-112) |#4| |#5|)) (-15 -4085 ((-621 (-2 (|:| |val| (-112)) (|:| -1981 |#5|))) |#4| |#5|)) (-15 -3963 ((-621 |#5|) |#4| |#5|)) (-15 -3353 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#5|))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1038 |#1| |#2| |#3| |#4|)) (T -1039))
-((-3353 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4)))) (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-3963 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 *4)) (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-4085 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1981 *4)))) (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-4085 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-4270 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4)))) (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-2902 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4)))) (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-2642 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 (-2 (|:| |val| (-621 *8)) (|:| -1981 *9)))) (-5 *5 (-112)) (-4 *8 (-1032 *6 *7 *4)) (-4 *9 (-1038 *6 *7 *4 *8)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *4 (-823)) (-5 *2 (-621 (-2 (|:| |val| *8) (|:| -1981 *9)))) (-5 *1 (-1039 *6 *7 *4 *8 *9)))) (-2642 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *3 (-1032 *6 *7 *8)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4)))) (-5 *1 (-1039 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3)))) (-3825 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4)))) (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-2283 (*1 *2) (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1231)) (-5 *1 (-1039 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))) (-3847 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1125)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1231)) (-5 *1 (-1039 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-4066 (*1 *2) (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1231)) (-5 *1 (-1039 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))) (-1418 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1125)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1231)) (-5 *1 (-1039 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
-(-10 -7 (-15 -1418 ((-1231) (-1125) (-1125) (-1125))) (-15 -4066 ((-1231))) (-15 -3847 ((-1231) (-1125) (-1125) (-1125))) (-15 -2283 ((-1231))) (-15 -3825 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) |#4| |#4| |#5|)) (-15 -2642 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2642 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) |#3| (-112))) (-15 -2902 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5|)) (-15 -4270 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5|)) (-15 -4085 ((-112) |#4| |#5|)) (-15 -4085 ((-621 (-2 (|:| |val| (-112)) (|:| -1981 |#5|))) |#4| |#5|)) (-15 -3963 ((-621 |#5|) |#4| |#5|)) (-15 -3353 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#5|)))
-((-3834 (((-112) $ $) NIL)) (-2100 (((-1179) $) 12)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3955 (((-1148) $) 9)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-1040) (-13 (-1050) (-10 -8 (-15 -3955 ((-1148) $)) (-15 -2100 ((-1179) $))))) (T -1040))
-((-3955 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1040)))) (-2100 (*1 *2 *1) (-12 (-5 *2 (-1179)) (-5 *1 (-1040)))))
-(-13 (-1050) (-10 -8 (-15 -3955 ((-1148) $)) (-15 -2100 ((-1179) $))))
-((-3834 (((-112) $ $) NIL)) (-2481 (((-1143) $) 8)) (-3851 (((-1125) $) 16)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 11)) (-2389 (((-112) $ $) 13)))
-(((-1041 |#1|) (-13 (-1067) (-10 -8 (-15 -2481 ((-1143) $)))) (-1143)) (T -1041))
-((-2481 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-1041 *3)) (-14 *3 *2))))
-(-13 (-1067) (-10 -8 (-15 -2481 ((-1143) $))))
-((-3834 (((-112) $ $) NIL)) (-1863 (($ $ (-621 (-1143)) (-1 (-112) (-621 |#3|))) 33)) (-3662 (($ |#3| |#3|) 22) (($ |#3| |#3| (-621 (-1143))) 20)) (-2203 ((|#3| $) 13)) (-2714 (((-3 (-287 |#3|) "failed") $) 58)) (-2659 (((-287 |#3|) $) NIL)) (-2406 (((-621 (-1143)) $) 16)) (-3656 (((-863 |#1|) $) 11)) (-2190 ((|#3| $) 12)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3341 ((|#3| $ |#3|) 27) ((|#3| $ |#3| (-892)) 39)) (-3846 (((-834) $) 86) (($ (-287 |#3|)) 21)) (-2389 (((-112) $ $) 36)))
-(((-1042 |#1| |#2| |#3|) (-13 (-1067) (-279 |#3| |#3|) (-1009 (-287 |#3|)) (-10 -8 (-15 -3662 ($ |#3| |#3|)) (-15 -3662 ($ |#3| |#3| (-621 (-1143)))) (-15 -1863 ($ $ (-621 (-1143)) (-1 (-112) (-621 |#3|)))) (-15 -3656 ((-863 |#1|) $)) (-15 -2190 (|#3| $)) (-15 -2203 (|#3| $)) (-15 -3341 (|#3| $ |#3| (-892))) (-15 -2406 ((-621 (-1143)) $)))) (-1067) (-13 (-1018) (-857 |#1|) (-823) (-594 (-863 |#1|))) (-13 (-423 |#2|) (-857 |#1|) (-594 (-863 |#1|)))) (T -1042))
-((-3662 (*1 *1 *2 *2) (-12 (-4 *3 (-1067)) (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3)))) (-5 *1 (-1042 *3 *4 *2)) (-4 *2 (-13 (-423 *4) (-857 *3) (-594 (-863 *3)))))) (-3662 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-621 (-1143))) (-4 *4 (-1067)) (-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4)))) (-5 *1 (-1042 *4 *5 *2)) (-4 *2 (-13 (-423 *5) (-857 *4) (-594 (-863 *4)))))) (-1863 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-1143))) (-5 *3 (-1 (-112) (-621 *6))) (-4 *6 (-13 (-423 *5) (-857 *4) (-594 (-863 *4)))) (-4 *4 (-1067)) (-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4)))) (-5 *1 (-1042 *4 *5 *6)))) (-3656 (*1 *2 *1) (-12 (-4 *3 (-1067)) (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 *2))) (-5 *2 (-863 *3)) (-5 *1 (-1042 *3 *4 *5)) (-4 *5 (-13 (-423 *4) (-857 *3) (-594 *2))))) (-2190 (*1 *2 *1) (-12 (-4 *3 (-1067)) (-4 *2 (-13 (-423 *4) (-857 *3) (-594 (-863 *3)))) (-5 *1 (-1042 *3 *4 *2)) (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3)))))) (-2203 (*1 *2 *1) (-12 (-4 *3 (-1067)) (-4 *2 (-13 (-423 *4) (-857 *3) (-594 (-863 *3)))) (-5 *1 (-1042 *3 *4 *2)) (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3)))))) (-3341 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-892)) (-4 *4 (-1067)) (-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4)))) (-5 *1 (-1042 *4 *5 *2)) (-4 *2 (-13 (-423 *5) (-857 *4) (-594 (-863 *4)))))) (-2406 (*1 *2 *1) (-12 (-4 *3 (-1067)) (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3)))) (-5 *2 (-621 (-1143))) (-5 *1 (-1042 *3 *4 *5)) (-4 *5 (-13 (-423 *4) (-857 *3) (-594 (-863 *3)))))))
-(-13 (-1067) (-279 |#3| |#3|) (-1009 (-287 |#3|)) (-10 -8 (-15 -3662 ($ |#3| |#3|)) (-15 -3662 ($ |#3| |#3| (-621 (-1143)))) (-15 -1863 ($ $ (-621 (-1143)) (-1 (-112) (-621 |#3|)))) (-15 -3656 ((-863 |#1|) $)) (-15 -2190 (|#3| $)) (-15 -2203 (|#3| $)) (-15 -3341 (|#3| $ |#3| (-892))) (-15 -2406 ((-621 (-1143)) $))))
-((-3834 (((-112) $ $) NIL)) (-1826 (($ (-621 (-1042 |#1| |#2| |#3|))) 13)) (-3638 (((-621 (-1042 |#1| |#2| |#3|)) $) 20)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3341 ((|#3| $ |#3|) 23) ((|#3| $ |#3| (-892)) 26)) (-3846 (((-834) $) 16)) (-2389 (((-112) $ $) 19)))
-(((-1043 |#1| |#2| |#3|) (-13 (-1067) (-279 |#3| |#3|) (-10 -8 (-15 -1826 ($ (-621 (-1042 |#1| |#2| |#3|)))) (-15 -3638 ((-621 (-1042 |#1| |#2| |#3|)) $)) (-15 -3341 (|#3| $ |#3| (-892))))) (-1067) (-13 (-1018) (-857 |#1|) (-823) (-594 (-863 |#1|))) (-13 (-423 |#2|) (-857 |#1|) (-594 (-863 |#1|)))) (T -1043))
-((-1826 (*1 *1 *2) (-12 (-5 *2 (-621 (-1042 *3 *4 *5))) (-4 *3 (-1067)) (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3)))) (-4 *5 (-13 (-423 *4) (-857 *3) (-594 (-863 *3)))) (-5 *1 (-1043 *3 *4 *5)))) (-3638 (*1 *2 *1) (-12 (-4 *3 (-1067)) (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3)))) (-5 *2 (-621 (-1042 *3 *4 *5))) (-5 *1 (-1043 *3 *4 *5)) (-4 *5 (-13 (-423 *4) (-857 *3) (-594 (-863 *3)))))) (-3341 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-892)) (-4 *4 (-1067)) (-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4)))) (-5 *1 (-1043 *4 *5 *2)) (-4 *2 (-13 (-423 *5) (-857 *4) (-594 (-863 *4)))))))
-(-13 (-1067) (-279 |#3| |#3|) (-10 -8 (-15 -1826 ($ (-621 (-1042 |#1| |#2| |#3|)))) (-15 -3638 ((-621 (-1042 |#1| |#2| |#3|)) $)) (-15 -3341 (|#3| $ |#3| (-892)))))
-((-2782 (((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112)) 75) (((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|))) 77) (((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112)) 76)))
-(((-1044 |#1| |#2|) (-10 -7 (-15 -2782 ((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112))) (-15 -2782 ((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)))) (-15 -2782 ((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112)))) (-13 (-300) (-145)) (-621 (-1143))) (T -1044))
-((-2782 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-5 *2 (-621 (-2 (|:| -1298 (-1139 *5)) (|:| -4263 (-621 (-923 *5)))))) (-5 *1 (-1044 *5 *6)) (-5 *3 (-621 (-923 *5))) (-14 *6 (-621 (-1143))))) (-2782 (*1 *2 *3) (-12 (-4 *4 (-13 (-300) (-145))) (-5 *2 (-621 (-2 (|:| -1298 (-1139 *4)) (|:| -4263 (-621 (-923 *4)))))) (-5 *1 (-1044 *4 *5)) (-5 *3 (-621 (-923 *4))) (-14 *5 (-621 (-1143))))) (-2782 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-5 *2 (-621 (-2 (|:| -1298 (-1139 *5)) (|:| -4263 (-621 (-923 *5)))))) (-5 *1 (-1044 *5 *6)) (-5 *3 (-621 (-923 *5))) (-14 *6 (-621 (-1143))))))
-(-10 -7 (-15 -2782 ((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112))) (-15 -2782 ((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)))) (-15 -2782 ((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112))))
-((-2121 (((-411 |#3|) |#3|) 18)))
-(((-1045 |#1| |#2| |#3|) (-10 -7 (-15 -2121 ((-411 |#3|) |#3|))) (-1202 (-400 (-549))) (-13 (-356) (-145) (-701 (-400 (-549)) |#1|)) (-1202 |#2|)) (T -1045))
-((-2121 (*1 *2 *3) (-12 (-4 *4 (-1202 (-400 (-549)))) (-4 *5 (-13 (-356) (-145) (-701 (-400 (-549)) *4))) (-5 *2 (-411 *3)) (-5 *1 (-1045 *4 *5 *3)) (-4 *3 (-1202 *5)))))
-(-10 -7 (-15 -2121 ((-411 |#3|) |#3|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 126)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-356)))) (-2258 (($ $) NIL (|has| |#1| (-356)))) (-2799 (((-112) $) NIL (|has| |#1| (-356)))) (-1738 (((-665 |#1|) (-1226 $)) NIL) (((-665 |#1|)) 115)) (-2906 ((|#1| $) 119)) (-3062 (((-1153 (-892) (-747)) (-549)) NIL (|has| |#1| (-342)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL (|has| |#1| (-356)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-356)))) (-3866 (((-112) $ $) NIL (|has| |#1| (-356)))) (-3614 (((-747)) 40 (|has| |#1| (-361)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) NIL)) (-2659 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-3492 (($ (-1226 |#1|) (-1226 $)) NIL) (($ (-1226 |#1|)) 43)) (-2523 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-342)))) (-2095 (($ $ $) NIL (|has| |#1| (-356)))) (-3506 (((-665 |#1|) $ (-1226 $)) NIL) (((-665 |#1|) $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) 106) (((-665 |#1|) (-665 $)) 101)) (-2557 (($ |#2|) 61) (((-3 $ "failed") (-400 |#2|)) NIL (|has| |#1| (-356)))) (-2114 (((-3 $ "failed") $) NIL)) (-3123 (((-892)) 77)) (-3239 (($) 44 (|has| |#1| (-361)))) (-2067 (($ $ $) NIL (|has| |#1| (-356)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-2405 (($) NIL (|has| |#1| (-342)))) (-2288 (((-112) $) NIL (|has| |#1| (-342)))) (-3165 (($ $ (-747)) NIL (|has| |#1| (-342))) (($ $) NIL (|has| |#1| (-342)))) (-1420 (((-112) $) NIL (|has| |#1| (-356)))) (-2088 (((-892) $) NIL (|has| |#1| (-342))) (((-809 (-892)) $) NIL (|has| |#1| (-342)))) (-2675 (((-112) $) NIL)) (-3630 ((|#1| $) NIL)) (-1681 (((-3 $ "failed") $) NIL (|has| |#1| (-342)))) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-3788 ((|#2| $) 84 (|has| |#1| (-356)))) (-1881 (((-892) $) 131 (|has| |#1| (-361)))) (-2548 ((|#2| $) 58)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL (|has| |#1| (-356)))) (-3060 (($) NIL (|has| |#1| (-342)) CONST)) (-3493 (($ (-892)) 125 (|has| |#1| (-361)))) (-3990 (((-1087) $) NIL)) (-4248 (($) 121)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-356)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-1762 (((-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))) NIL (|has| |#1| (-342)))) (-2121 (((-411 $) $) NIL (|has| |#1| (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-2042 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-3684 (((-747) $) NIL (|has| |#1| (-356)))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-356)))) (-3602 ((|#1| (-1226 $)) NIL) ((|#1|) 109)) (-3914 (((-747) $) NIL (|has| |#1| (-342))) (((-3 (-747) "failed") $ $) NIL (|has| |#1| (-342)))) (-3456 (($ $) NIL (-1536 (-12 (|has| |#1| (-227)) (|has| |#1| (-356))) (|has| |#1| (-342)))) (($ $ (-747)) NIL (-1536 (-12 (|has| |#1| (-227)) (|has| |#1| (-356))) (|has| |#1| (-342)))) (($ $ (-1143)) NIL (-12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1143))))) (($ $ (-1 |#1| |#1|) (-747)) NIL (|has| |#1| (-356))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-356)))) (-2901 (((-665 |#1|) (-1226 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-356)))) (-2815 ((|#2|) 73)) (-3170 (($) NIL (|has| |#1| (-342)))) (-4263 (((-1226 |#1|) $ (-1226 $)) 89) (((-665 |#1|) (-1226 $) (-1226 $)) NIL) (((-1226 |#1|) $) 71) (((-665 |#1|) (-1226 $)) 85)) (-2845 (((-1226 |#1|) $) NIL) (($ (-1226 |#1|)) NIL) ((|#2| $) NIL) (($ |#2|) NIL)) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (|has| |#1| (-342)))) (-3846 (((-834) $) 57) (($ (-549)) 53) (($ |#1|) 54) (($ $) NIL (|has| |#1| (-356))) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-356)) (|has| |#1| (-1009 (-400 (-549))))))) (-2210 (($ $) NIL (|has| |#1| (-342))) (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-4154 ((|#2| $) 82)) (-2082 (((-747)) 75)) (-1949 (((-1226 $)) 81)) (-1498 (((-112) $ $) NIL (|has| |#1| (-356)))) (-3276 (($) 30 T CONST)) (-3287 (($) 19 T CONST)) (-1702 (($ $) NIL (-1536 (-12 (|has| |#1| (-227)) (|has| |#1| (-356))) (|has| |#1| (-342)))) (($ $ (-747)) NIL (-1536 (-12 (|has| |#1| (-227)) (|has| |#1| (-356))) (|has| |#1| (-342)))) (($ $ (-1143)) NIL (-12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1143))))) (($ $ (-1 |#1| |#1|) (-747)) NIL (|has| |#1| (-356))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-356)))) (-2389 (((-112) $ $) 63)) (-2513 (($ $ $) NIL (|has| |#1| (-356)))) (-2500 (($ $) 67) (($ $ $) NIL)) (-2486 (($ $ $) 65)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 51) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 48) (($ (-400 (-549)) $) NIL (|has| |#1| (-356))) (($ $ (-400 (-549))) NIL (|has| |#1| (-356)))))
-(((-1046 |#1| |#2| |#3|) (-701 |#1| |#2|) (-170) (-1202 |#1|) |#2|) (T -1046))
+((-3504 (*1 *2 *3 *1) (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-4267 (*1 *2 *3 *1) (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-2930 (*1 *2 *3 *1) (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-3504 (*1 *2 *1) (-12 (-4 *1 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))) (-2553 (*1 *2 *3 *1) (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-3219 (*1 *2 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-3 (-112) (-621 *1))) (-4 *1 (-1038 *4 *5 *6 *3)))) (-3287 (*1 *2 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1979 *1)))) (-4 *1 (-1038 *4 *5 *6 *3)))) (-3287 (*1 *2 *3 *1) (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-2114 (*1 *2 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)))) (-4246 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-3 *3 (-621 *1))) (-4 *1 (-1038 *4 *5 *6 *3)))) (-3402 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *1)))) (-4 *1 (-1038 *4 *5 *6 *3)))) (-3239 (*1 *2 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *1)))) (-4 *1 (-1038 *4 *5 *6 *3)))) (-3869 (*1 *2 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)))) (-3869 (*1 *2 *3 *1) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *7)))) (-3869 (*1 *2 *3 *2) (-12 (-5 *2 (-621 *1)) (-5 *3 (-621 *7)) (-4 *1 (-1038 *4 *5 *6 *7)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)))) (-3869 (*1 *2 *3 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)))) (-2008 (*1 *2 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)))) (-2008 (*1 *2 *3 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)))) (-2008 (*1 *2 *3 *1) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *7)))) (-2008 (*1 *2 *3 *2) (-12 (-5 *2 (-621 *1)) (-5 *3 (-621 *7)) (-4 *1 (-1038 *4 *5 *6 *7)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)))) (-2214 (*1 *1 *2 *1) (-12 (-4 *1 (-1038 *3 *4 *5 *2)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-2214 (*1 *1 *2 *1) (-12 (-5 *2 (-621 *6)) (-4 *1 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)))) (-3796 (*1 *2 *3 *1) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)))) (-3796 (*1 *2 *3 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)))) (-3796 (*1 *2 *3 *1) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *7)))) (-3796 (*1 *2 *3 *2) (-12 (-5 *2 (-621 *1)) (-5 *3 (-621 *7)) (-4 *1 (-1038 *4 *5 *6 *7)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)))) (-3587 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1038 *5 *6 *7 *8)))))
+(-13 (-1172 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-15 -3504 ((-112) |t#4| $)) (-15 -4267 ((-112) |t#4| $)) (-15 -2930 ((-112) |t#4| $)) (-15 -3504 ((-112) $)) (-15 -2553 ((-112) |t#4| $)) (-15 -3219 ((-3 (-112) (-621 $)) |t#4| $)) (-15 -3287 ((-621 (-2 (|:| |val| (-112)) (|:| -1979 $))) |t#4| $)) (-15 -3287 ((-112) |t#4| $)) (-15 -2114 ((-621 $) |t#4| $)) (-15 -4246 ((-3 |t#4| (-621 $)) |t#4| |t#4| $)) (-15 -3402 ((-621 (-2 (|:| |val| |t#4|) (|:| -1979 $))) |t#4| |t#4| $)) (-15 -3239 ((-621 (-2 (|:| |val| |t#4|) (|:| -1979 $))) |t#4| $)) (-15 -3869 ((-621 $) |t#4| $)) (-15 -3869 ((-621 $) (-621 |t#4|) $)) (-15 -3869 ((-621 $) (-621 |t#4|) (-621 $))) (-15 -3869 ((-621 $) |t#4| (-621 $))) (-15 -2008 ((-621 $) |t#4| $)) (-15 -2008 ((-621 $) |t#4| (-621 $))) (-15 -2008 ((-621 $) (-621 |t#4|) $)) (-15 -2008 ((-621 $) (-621 |t#4|) (-621 $))) (-15 -2214 ($ |t#4| $)) (-15 -2214 ($ (-621 |t#4|) $)) (-15 -3796 ((-621 $) |t#4| $)) (-15 -3796 ((-621 $) |t#4| (-621 $))) (-15 -3796 ((-621 $) (-621 |t#4|) $)) (-15 -3796 ((-621 $) (-621 |t#4|) (-621 $))) (-15 -3587 ((-621 $) (-621 |t#4|) (-112)))))
+(((-34) . T) ((-101) . T) ((-593 (-621 |#4|)) . T) ((-593 (-834)) . T) ((-149 |#4|) . T) ((-594 (-525)) |has| |#4| (-594 (-525))) ((-302 |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))) ((-481 |#4|) . T) ((-505 |#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))) ((-947 |#1| |#2| |#3| |#4|) . T) ((-1066) . T) ((-1172 |#1| |#2| |#3| |#4|) . T) ((-1179) . T))
+((-4187 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#5|) 81)) (-3313 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5|) 113)) (-4144 (((-621 |#5|) |#4| |#5|) 70)) (-1651 (((-621 (-2 (|:| |val| (-112)) (|:| -1979 |#5|))) |#4| |#5|) 46) (((-112) |#4| |#5|) 53)) (-3254 (((-1230)) 37)) (-2793 (((-1230)) 26)) (-4238 (((-1230) (-1124) (-1124) (-1124)) 33)) (-2617 (((-1230) (-1124) (-1124) (-1124)) 22)) (-1397 (((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) |#4| |#4| |#5|) 96)) (-1725 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) |#3| (-112)) 107) (((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5| (-112) (-112)) 50)) (-2504 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5|) 102)))
+(((-1039 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2617 ((-1230) (-1124) (-1124) (-1124))) (-15 -2793 ((-1230))) (-15 -4238 ((-1230) (-1124) (-1124) (-1124))) (-15 -3254 ((-1230))) (-15 -1397 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) |#4| |#4| |#5|)) (-15 -1725 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -1725 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) |#3| (-112))) (-15 -2504 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5|)) (-15 -3313 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5|)) (-15 -1651 ((-112) |#4| |#5|)) (-15 -1651 ((-621 (-2 (|:| |val| (-112)) (|:| -1979 |#5|))) |#4| |#5|)) (-15 -4144 ((-621 |#5|) |#4| |#5|)) (-15 -4187 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#5|))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1038 |#1| |#2| |#3| |#4|)) (T -1039))
+((-4187 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4)))) (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-4144 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 *4)) (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-1651 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1979 *4)))) (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-1651 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-3313 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4)))) (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-2504 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4)))) (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-1725 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 (-2 (|:| |val| (-621 *8)) (|:| -1979 *9)))) (-5 *5 (-112)) (-4 *8 (-1032 *6 *7 *4)) (-4 *9 (-1038 *6 *7 *4 *8)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *4 (-823)) (-5 *2 (-621 (-2 (|:| |val| *8) (|:| -1979 *9)))) (-5 *1 (-1039 *6 *7 *4 *8 *9)))) (-1725 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *3 (-1032 *6 *7 *8)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4)))) (-5 *1 (-1039 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3)))) (-1397 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4)))) (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-3254 (*1 *2) (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1230)) (-5 *1 (-1039 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))) (-4238 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1124)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1230)) (-5 *1 (-1039 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-2793 (*1 *2) (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1230)) (-5 *1 (-1039 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))) (-2617 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1124)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1230)) (-5 *1 (-1039 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2617 ((-1230) (-1124) (-1124) (-1124))) (-15 -2793 ((-1230))) (-15 -4238 ((-1230) (-1124) (-1124) (-1124))) (-15 -3254 ((-1230))) (-15 -1397 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) |#4| |#4| |#5|)) (-15 -1725 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -1725 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) |#3| (-112))) (-15 -2504 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5|)) (-15 -3313 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5|)) (-15 -1651 ((-112) |#4| |#5|)) (-15 -1651 ((-621 (-2 (|:| |val| (-112)) (|:| -1979 |#5|))) |#4| |#5|)) (-15 -4144 ((-621 |#5|) |#4| |#5|)) (-15 -4187 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#5|)))
+((-3832 (((-112) $ $) NIL)) (-2098 (((-1178) $) 13)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3954 (((-1101) $) 10)) (-3845 (((-834) $) 22) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-1040) (-13 (-1049) (-10 -8 (-15 -3954 ((-1101) $)) (-15 -2098 ((-1178) $))))) (T -1040))
+((-3954 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-1040)))) (-2098 (*1 *2 *1) (-12 (-5 *2 (-1178)) (-5 *1 (-1040)))))
+(-13 (-1049) (-10 -8 (-15 -3954 ((-1101) $)) (-15 -2098 ((-1178) $))))
+((-3832 (((-112) $ $) NIL)) (-2479 (((-1142) $) 8)) (-3441 (((-1124) $) 16)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 11)) (-2387 (((-112) $ $) 13)))
+(((-1041 |#1|) (-13 (-1066) (-10 -8 (-15 -2479 ((-1142) $)))) (-1142)) (T -1041))
+((-2479 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-1041 *3)) (-14 *3 *2))))
+(-13 (-1066) (-10 -8 (-15 -2479 ((-1142) $))))
+((-3832 (((-112) $ $) NIL)) (-1861 (($ $ (-621 (-1142)) (-1 (-112) (-621 |#3|))) 33)) (-3661 (($ |#3| |#3|) 22) (($ |#3| |#3| (-621 (-1142))) 20)) (-2200 ((|#3| $) 13)) (-2712 (((-3 (-287 |#3|) "failed") $) 58)) (-2657 (((-287 |#3|) $) NIL)) (-1669 (((-621 (-1142)) $) 16)) (-3655 (((-863 |#1|) $) 11)) (-2187 ((|#3| $) 12)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3339 ((|#3| $ |#3|) 27) ((|#3| $ |#3| (-892)) 39)) (-3845 (((-834) $) 86) (($ (-287 |#3|)) 21)) (-2387 (((-112) $ $) 36)))
+(((-1042 |#1| |#2| |#3|) (-13 (-1066) (-279 |#3| |#3|) (-1009 (-287 |#3|)) (-10 -8 (-15 -3661 ($ |#3| |#3|)) (-15 -3661 ($ |#3| |#3| (-621 (-1142)))) (-15 -1861 ($ $ (-621 (-1142)) (-1 (-112) (-621 |#3|)))) (-15 -3655 ((-863 |#1|) $)) (-15 -2187 (|#3| $)) (-15 -2200 (|#3| $)) (-15 -3339 (|#3| $ |#3| (-892))) (-15 -1669 ((-621 (-1142)) $)))) (-1066) (-13 (-1018) (-857 |#1|) (-823) (-594 (-863 |#1|))) (-13 (-423 |#2|) (-857 |#1|) (-594 (-863 |#1|)))) (T -1042))
+((-3661 (*1 *1 *2 *2) (-12 (-4 *3 (-1066)) (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3)))) (-5 *1 (-1042 *3 *4 *2)) (-4 *2 (-13 (-423 *4) (-857 *3) (-594 (-863 *3)))))) (-3661 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-621 (-1142))) (-4 *4 (-1066)) (-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4)))) (-5 *1 (-1042 *4 *5 *2)) (-4 *2 (-13 (-423 *5) (-857 *4) (-594 (-863 *4)))))) (-1861 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-1142))) (-5 *3 (-1 (-112) (-621 *6))) (-4 *6 (-13 (-423 *5) (-857 *4) (-594 (-863 *4)))) (-4 *4 (-1066)) (-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4)))) (-5 *1 (-1042 *4 *5 *6)))) (-3655 (*1 *2 *1) (-12 (-4 *3 (-1066)) (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 *2))) (-5 *2 (-863 *3)) (-5 *1 (-1042 *3 *4 *5)) (-4 *5 (-13 (-423 *4) (-857 *3) (-594 *2))))) (-2187 (*1 *2 *1) (-12 (-4 *3 (-1066)) (-4 *2 (-13 (-423 *4) (-857 *3) (-594 (-863 *3)))) (-5 *1 (-1042 *3 *4 *2)) (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3)))))) (-2200 (*1 *2 *1) (-12 (-4 *3 (-1066)) (-4 *2 (-13 (-423 *4) (-857 *3) (-594 (-863 *3)))) (-5 *1 (-1042 *3 *4 *2)) (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3)))))) (-3339 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-892)) (-4 *4 (-1066)) (-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4)))) (-5 *1 (-1042 *4 *5 *2)) (-4 *2 (-13 (-423 *5) (-857 *4) (-594 (-863 *4)))))) (-1669 (*1 *2 *1) (-12 (-4 *3 (-1066)) (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3)))) (-5 *2 (-621 (-1142))) (-5 *1 (-1042 *3 *4 *5)) (-4 *5 (-13 (-423 *4) (-857 *3) (-594 (-863 *3)))))))
+(-13 (-1066) (-279 |#3| |#3|) (-1009 (-287 |#3|)) (-10 -8 (-15 -3661 ($ |#3| |#3|)) (-15 -3661 ($ |#3| |#3| (-621 (-1142)))) (-15 -1861 ($ $ (-621 (-1142)) (-1 (-112) (-621 |#3|)))) (-15 -3655 ((-863 |#1|) $)) (-15 -2187 (|#3| $)) (-15 -2200 (|#3| $)) (-15 -3339 (|#3| $ |#3| (-892))) (-15 -1669 ((-621 (-1142)) $))))
+((-3832 (((-112) $ $) NIL)) (-1824 (($ (-621 (-1042 |#1| |#2| |#3|))) 13)) (-3637 (((-621 (-1042 |#1| |#2| |#3|)) $) 20)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3339 ((|#3| $ |#3|) 23) ((|#3| $ |#3| (-892)) 26)) (-3845 (((-834) $) 16)) (-2387 (((-112) $ $) 19)))
+(((-1043 |#1| |#2| |#3|) (-13 (-1066) (-279 |#3| |#3|) (-10 -8 (-15 -1824 ($ (-621 (-1042 |#1| |#2| |#3|)))) (-15 -3637 ((-621 (-1042 |#1| |#2| |#3|)) $)) (-15 -3339 (|#3| $ |#3| (-892))))) (-1066) (-13 (-1018) (-857 |#1|) (-823) (-594 (-863 |#1|))) (-13 (-423 |#2|) (-857 |#1|) (-594 (-863 |#1|)))) (T -1043))
+((-1824 (*1 *1 *2) (-12 (-5 *2 (-621 (-1042 *3 *4 *5))) (-4 *3 (-1066)) (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3)))) (-4 *5 (-13 (-423 *4) (-857 *3) (-594 (-863 *3)))) (-5 *1 (-1043 *3 *4 *5)))) (-3637 (*1 *2 *1) (-12 (-4 *3 (-1066)) (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3)))) (-5 *2 (-621 (-1042 *3 *4 *5))) (-5 *1 (-1043 *3 *4 *5)) (-4 *5 (-13 (-423 *4) (-857 *3) (-594 (-863 *3)))))) (-3339 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-892)) (-4 *4 (-1066)) (-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4)))) (-5 *1 (-1043 *4 *5 *2)) (-4 *2 (-13 (-423 *5) (-857 *4) (-594 (-863 *4)))))))
+(-13 (-1066) (-279 |#3| |#3|) (-10 -8 (-15 -1824 ($ (-621 (-1042 |#1| |#2| |#3|)))) (-15 -3637 ((-621 (-1042 |#1| |#2| |#3|)) $)) (-15 -3339 (|#3| $ |#3| (-892)))))
+((-3889 (((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112)) 75) (((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|))) 77) (((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112)) 76)))
+(((-1044 |#1| |#2|) (-10 -7 (-15 -3889 ((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112))) (-15 -3889 ((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)))) (-15 -3889 ((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112)))) (-13 (-300) (-145)) (-621 (-1142))) (T -1044))
+((-3889 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-5 *2 (-621 (-2 (|:| -3609 (-1138 *5)) (|:| -1981 (-621 (-923 *5)))))) (-5 *1 (-1044 *5 *6)) (-5 *3 (-621 (-923 *5))) (-14 *6 (-621 (-1142))))) (-3889 (*1 *2 *3) (-12 (-4 *4 (-13 (-300) (-145))) (-5 *2 (-621 (-2 (|:| -3609 (-1138 *4)) (|:| -1981 (-621 (-923 *4)))))) (-5 *1 (-1044 *4 *5)) (-5 *3 (-621 (-923 *4))) (-14 *5 (-621 (-1142))))) (-3889 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-5 *2 (-621 (-2 (|:| -3609 (-1138 *5)) (|:| -1981 (-621 (-923 *5)))))) (-5 *1 (-1044 *5 *6)) (-5 *3 (-621 (-923 *5))) (-14 *6 (-621 (-1142))))))
+(-10 -7 (-15 -3889 ((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112))) (-15 -3889 ((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)))) (-15 -3889 ((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112))))
+((-2119 (((-411 |#3|) |#3|) 18)))
+(((-1045 |#1| |#2| |#3|) (-10 -7 (-15 -2119 ((-411 |#3|) |#3|))) (-1201 (-400 (-549))) (-13 (-356) (-145) (-701 (-400 (-549)) |#1|)) (-1201 |#2|)) (T -1045))
+((-2119 (*1 *2 *3) (-12 (-4 *4 (-1201 (-400 (-549)))) (-4 *5 (-13 (-356) (-145) (-701 (-400 (-549)) *4))) (-5 *2 (-411 *3)) (-5 *1 (-1045 *4 *5 *3)) (-4 *3 (-1201 *5)))))
+(-10 -7 (-15 -2119 ((-411 |#3|) |#3|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 126)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-356)))) (-3044 (($ $) NIL (|has| |#1| (-356)))) (-2774 (((-112) $) NIL (|has| |#1| (-356)))) (-1789 (((-665 |#1|) (-1225 $)) NIL) (((-665 |#1|)) 115)) (-2904 ((|#1| $) 119)) (-1597 (((-1152 (-892) (-747)) (-549)) NIL (|has| |#1| (-342)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL (|has| |#1| (-356)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2680 (((-112) $ $) NIL (|has| |#1| (-356)))) (-3614 (((-747)) 40 (|has| |#1| (-361)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) NIL)) (-2657 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-2397 (($ (-1225 |#1|) (-1225 $)) NIL) (($ (-1225 |#1|)) 43)) (-3024 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-342)))) (-2091 (($ $ $) NIL (|has| |#1| (-356)))) (-1408 (((-665 |#1|) $ (-1225 $)) NIL) (((-665 |#1|) $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) 106) (((-665 |#1|) (-665 $)) 101)) (-2556 (($ |#2|) 61) (((-3 $ "failed") (-400 |#2|)) NIL (|has| |#1| (-356)))) (-2612 (((-3 $ "failed") $) NIL)) (-3121 (((-892)) 77)) (-3237 (($) 44 (|has| |#1| (-361)))) (-2065 (($ $ $) NIL (|has| |#1| (-356)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1545 (($) NIL (|has| |#1| (-342)))) (-1315 (((-112) $) NIL (|has| |#1| (-342)))) (-3517 (($ $ (-747)) NIL (|has| |#1| (-342))) (($ $) NIL (|has| |#1| (-342)))) (-1464 (((-112) $) NIL (|has| |#1| (-356)))) (-2729 (((-892) $) NIL (|has| |#1| (-342))) (((-809 (-892)) $) NIL (|has| |#1| (-342)))) (-2297 (((-112) $) NIL)) (-2469 ((|#1| $) NIL)) (-2964 (((-3 $ "failed") $) NIL (|has| |#1| (-342)))) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-3514 ((|#2| $) 84 (|has| |#1| (-356)))) (-3309 (((-892) $) 131 (|has| |#1| (-361)))) (-2545 ((|#2| $) 58)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL (|has| |#1| (-356)))) (-3059 (($) NIL (|has| |#1| (-342)) CONST)) (-3494 (($ (-892)) 125 (|has| |#1| (-361)))) (-3988 (((-1086) $) NIL)) (-4247 (($) 121)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-356)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-3126 (((-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))) NIL (|has| |#1| (-342)))) (-2119 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-2040 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-1335 (((-747) $) NIL (|has| |#1| (-356)))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-356)))) (-2740 ((|#1| (-1225 $)) NIL) ((|#1|) 109)) (-3189 (((-747) $) NIL (|has| |#1| (-342))) (((-3 (-747) "failed") $ $) NIL (|has| |#1| (-342)))) (-3455 (($ $) NIL (-1536 (-12 (|has| |#1| (-227)) (|has| |#1| (-356))) (|has| |#1| (-342)))) (($ $ (-747)) NIL (-1536 (-12 (|has| |#1| (-227)) (|has| |#1| (-356))) (|has| |#1| (-342)))) (($ $ (-1142)) NIL (-12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1142))))) (($ $ (-1 |#1| |#1|) (-747)) NIL (|has| |#1| (-356))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-356)))) (-2381 (((-665 |#1|) (-1225 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-356)))) (-1262 ((|#2|) 73)) (-2950 (($) NIL (|has| |#1| (-342)))) (-1981 (((-1225 |#1|) $ (-1225 $)) 89) (((-665 |#1|) (-1225 $) (-1225 $)) NIL) (((-1225 |#1|) $) 71) (((-665 |#1|) (-1225 $)) 85)) (-2843 (((-1225 |#1|) $) NIL) (($ (-1225 |#1|)) NIL) ((|#2| $) NIL) (($ |#2|) NIL)) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (|has| |#1| (-342)))) (-3845 (((-834) $) 57) (($ (-549)) 53) (($ |#1|) 54) (($ $) NIL (|has| |#1| (-356))) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-356)) (|has| |#1| (-1009 (-400 (-549))))))) (-2343 (($ $) NIL (|has| |#1| (-342))) (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-4019 ((|#2| $) 82)) (-2371 (((-747)) 75)) (-2619 (((-1225 $)) 81)) (-2441 (((-112) $ $) NIL (|has| |#1| (-356)))) (-3274 (($) 30 T CONST)) (-3286 (($) 19 T CONST)) (-1699 (($ $) NIL (-1536 (-12 (|has| |#1| (-227)) (|has| |#1| (-356))) (|has| |#1| (-342)))) (($ $ (-747)) NIL (-1536 (-12 (|has| |#1| (-227)) (|has| |#1| (-356))) (|has| |#1| (-342)))) (($ $ (-1142)) NIL (-12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-356)) (|has| |#1| (-871 (-1142))))) (($ $ (-1 |#1| |#1|) (-747)) NIL (|has| |#1| (-356))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-356)))) (-2387 (((-112) $ $) 63)) (-2511 (($ $ $) NIL (|has| |#1| (-356)))) (-2498 (($ $) 67) (($ $ $) NIL)) (-2484 (($ $ $) 65)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 51) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 48) (($ (-400 (-549)) $) NIL (|has| |#1| (-356))) (($ $ (-400 (-549))) NIL (|has| |#1| (-356)))))
+(((-1046 |#1| |#2| |#3|) (-701 |#1| |#2|) (-170) (-1201 |#1|) |#2|) (T -1046))
NIL
(-701 |#1| |#2|)
-((-2121 (((-411 |#3|) |#3|) 19)))
-(((-1047 |#1| |#2| |#3|) (-10 -7 (-15 -2121 ((-411 |#3|) |#3|))) (-1202 (-400 (-923 (-549)))) (-13 (-356) (-145) (-701 (-400 (-923 (-549))) |#1|)) (-1202 |#2|)) (T -1047))
-((-2121 (*1 *2 *3) (-12 (-4 *4 (-1202 (-400 (-923 (-549))))) (-4 *5 (-13 (-356) (-145) (-701 (-400 (-923 (-549))) *4))) (-5 *2 (-411 *3)) (-5 *1 (-1047 *4 *5 *3)) (-4 *3 (-1202 *5)))))
-(-10 -7 (-15 -2121 ((-411 |#3|) |#3|)))
-((-3834 (((-112) $ $) NIL)) (-2863 (($ $ $) 14)) (-3575 (($ $ $) 15)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2269 (($) 6)) (-2845 (((-1143) $) 18)) (-3846 (((-834) $) 12)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 13)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 8)))
-(((-1048) (-13 (-823) (-10 -8 (-15 -2269 ($)) (-15 -2845 ((-1143) $))))) (T -1048))
-((-2269 (*1 *1) (-5 *1 (-1048))) (-2845 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-1048)))))
-(-13 (-823) (-10 -8 (-15 -2269 ($)) (-15 -2845 ((-1143) $))))
-((-3846 (((-834) $) 37) (((-1148) $) NIL)))
-(((-1049 |#1|) (-10 -8 (-15 -3846 ((-1148) |#1|)) (-15 -3846 ((-834) |#1|))) (-1050)) (T -1049))
-NIL
-(-10 -8 (-15 -3846 ((-1148) |#1|)) (-15 -3846 ((-834) |#1|)))
-((-3834 (((-112) $ $) 7)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11) (((-1148) $) 14)) (-2389 (((-112) $ $) 6)))
-(((-1050) (-138)) (T -1050))
+((-2119 (((-411 |#3|) |#3|) 19)))
+(((-1047 |#1| |#2| |#3|) (-10 -7 (-15 -2119 ((-411 |#3|) |#3|))) (-1201 (-400 (-923 (-549)))) (-13 (-356) (-145) (-701 (-400 (-923 (-549))) |#1|)) (-1201 |#2|)) (T -1047))
+((-2119 (*1 *2 *3) (-12 (-4 *4 (-1201 (-400 (-923 (-549))))) (-4 *5 (-13 (-356) (-145) (-701 (-400 (-923 (-549))) *4))) (-5 *2 (-411 *3)) (-5 *1 (-1047 *4 *5 *3)) (-4 *3 (-1201 *5)))))
+(-10 -7 (-15 -2119 ((-411 |#3|) |#3|)))
+((-3832 (((-112) $ $) NIL)) (-2861 (($ $ $) 14)) (-3574 (($ $ $) 15)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-1546 (($) 6)) (-2843 (((-1142) $) 18)) (-3845 (((-834) $) 12)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 13)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 8)))
+(((-1048) (-13 (-823) (-10 -8 (-15 -1546 ($)) (-15 -2843 ((-1142) $))))) (T -1048))
+((-1546 (*1 *1) (-5 *1 (-1048))) (-2843 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-1048)))))
+(-13 (-823) (-10 -8 (-15 -1546 ($)) (-15 -2843 ((-1142) $))))
+((-3832 (((-112) $ $) 7)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11) (((-1147) $) 15) (($ (-1147)) 14)) (-2387 (((-112) $ $) 6)))
+(((-1049) (-138)) (T -1049))
NIL
(-13 (-92))
-(((-92) . T) ((-101) . T) ((-593 (-834)) . T) ((-593 (-1148)) . T) ((-1067) . T))
-((-2911 ((|#1| |#1| (-1 (-549) |#1| |#1|)) 24) ((|#1| |#1| (-1 (-112) |#1|)) 20)) (-2633 (((-1231)) 15)) (-1284 (((-621 |#1|)) 9)))
-(((-1051 |#1|) (-10 -7 (-15 -2633 ((-1231))) (-15 -1284 ((-621 |#1|))) (-15 -2911 (|#1| |#1| (-1 (-112) |#1|))) (-15 -2911 (|#1| |#1| (-1 (-549) |#1| |#1|)))) (-131)) (T -1051))
-((-2911 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-549) *2 *2)) (-4 *2 (-131)) (-5 *1 (-1051 *2)))) (-2911 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-131)) (-5 *1 (-1051 *2)))) (-1284 (*1 *2) (-12 (-5 *2 (-621 *3)) (-5 *1 (-1051 *3)) (-4 *3 (-131)))) (-2633 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-1051 *3)) (-4 *3 (-131)))))
-(-10 -7 (-15 -2633 ((-1231))) (-15 -1284 ((-621 |#1|))) (-15 -2911 (|#1| |#1| (-1 (-112) |#1|))) (-15 -2911 (|#1| |#1| (-1 (-549) |#1| |#1|))))
-((-1723 (($ (-108) $) 16)) (-1292 (((-3 (-108) "failed") (-1143) $) 15)) (-3742 (($) 7)) (-1957 (($) 17)) (-3548 (($) 18)) (-4064 (((-621 (-173)) $) 10)) (-3846 (((-834) $) 21)))
-(((-1052) (-13 (-593 (-834)) (-10 -8 (-15 -3742 ($)) (-15 -4064 ((-621 (-173)) $)) (-15 -1292 ((-3 (-108) "failed") (-1143) $)) (-15 -1723 ($ (-108) $)) (-15 -1957 ($)) (-15 -3548 ($))))) (T -1052))
-((-3742 (*1 *1) (-5 *1 (-1052))) (-4064 (*1 *2 *1) (-12 (-5 *2 (-621 (-173))) (-5 *1 (-1052)))) (-1292 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1143)) (-5 *2 (-108)) (-5 *1 (-1052)))) (-1723 (*1 *1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1052)))) (-1957 (*1 *1) (-5 *1 (-1052))) (-3548 (*1 *1) (-5 *1 (-1052))))
-(-13 (-593 (-834)) (-10 -8 (-15 -3742 ($)) (-15 -4064 ((-621 (-173)) $)) (-15 -1292 ((-3 (-108) "failed") (-1143) $)) (-15 -1723 ($ (-108) $)) (-15 -1957 ($)) (-15 -3548 ($))))
-((-3277 (((-1226 (-665 |#1|)) (-621 (-665 |#1|))) 42) (((-1226 (-665 (-923 |#1|))) (-621 (-1143)) (-665 (-923 |#1|))) 63) (((-1226 (-665 (-400 (-923 |#1|)))) (-621 (-1143)) (-665 (-400 (-923 |#1|)))) 79)) (-4263 (((-1226 |#1|) (-665 |#1|) (-621 (-665 |#1|))) 36)))
-(((-1053 |#1|) (-10 -7 (-15 -3277 ((-1226 (-665 (-400 (-923 |#1|)))) (-621 (-1143)) (-665 (-400 (-923 |#1|))))) (-15 -3277 ((-1226 (-665 (-923 |#1|))) (-621 (-1143)) (-665 (-923 |#1|)))) (-15 -3277 ((-1226 (-665 |#1|)) (-621 (-665 |#1|)))) (-15 -4263 ((-1226 |#1|) (-665 |#1|) (-621 (-665 |#1|))))) (-356)) (T -1053))
-((-4263 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-665 *5))) (-5 *3 (-665 *5)) (-4 *5 (-356)) (-5 *2 (-1226 *5)) (-5 *1 (-1053 *5)))) (-3277 (*1 *2 *3) (-12 (-5 *3 (-621 (-665 *4))) (-4 *4 (-356)) (-5 *2 (-1226 (-665 *4))) (-5 *1 (-1053 *4)))) (-3277 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-1143))) (-4 *5 (-356)) (-5 *2 (-1226 (-665 (-923 *5)))) (-5 *1 (-1053 *5)) (-5 *4 (-665 (-923 *5))))) (-3277 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-1143))) (-4 *5 (-356)) (-5 *2 (-1226 (-665 (-400 (-923 *5))))) (-5 *1 (-1053 *5)) (-5 *4 (-665 (-400 (-923 *5)))))))
-(-10 -7 (-15 -3277 ((-1226 (-665 (-400 (-923 |#1|)))) (-621 (-1143)) (-665 (-400 (-923 |#1|))))) (-15 -3277 ((-1226 (-665 (-923 |#1|))) (-621 (-1143)) (-665 (-923 |#1|)))) (-15 -3277 ((-1226 (-665 |#1|)) (-621 (-665 |#1|)))) (-15 -4263 ((-1226 |#1|) (-665 |#1|) (-621 (-665 |#1|)))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3977 (((-621 (-747)) $) NIL) (((-621 (-747)) $ (-1143)) NIL)) (-1637 (((-747) $) NIL) (((-747) $ (-1143)) NIL)) (-2272 (((-621 (-1055 (-1143))) $) NIL)) (-2084 (((-1139 $) $ (-1055 (-1143))) NIL) (((-1139 |#1|) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-3186 (((-747) $) NIL) (((-747) $ (-621 (-1055 (-1143)))) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-3979 (($ $) NIL (|has| |#1| (-444)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-3920 (($ $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-1055 (-1143)) "failed") $) NIL) (((-3 (-1143) "failed") $) NIL) (((-3 (-1092 |#1| (-1143)) "failed") $) NIL)) (-2659 ((|#1| $) NIL) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-1055 (-1143)) $) NIL) (((-1143) $) NIL) (((-1092 |#1| (-1143)) $) NIL)) (-1353 (($ $ $ (-1055 (-1143))) NIL (|has| |#1| (-170)))) (-2070 (($ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1285 (($ $) NIL (|has| |#1| (-444))) (($ $ (-1055 (-1143))) NIL (|has| |#1| (-444)))) (-2058 (((-621 $) $) NIL)) (-1420 (((-112) $) NIL (|has| |#1| (-880)))) (-2691 (($ $ |#1| (-521 (-1055 (-1143))) $) NIL)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-1055 (-1143)) (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-1055 (-1143)) (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2088 (((-747) $ (-1143)) NIL) (((-747) $) NIL)) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) NIL)) (-2261 (($ (-1139 |#1|) (-1055 (-1143))) NIL) (($ (-1139 $) (-1055 (-1143))) NIL)) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-521 (-1055 (-1143)))) NIL) (($ $ (-1055 (-1143)) (-747)) NIL) (($ $ (-621 (-1055 (-1143))) (-621 (-747))) NIL)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ (-1055 (-1143))) NIL)) (-3611 (((-521 (-1055 (-1143))) $) NIL) (((-747) $ (-1055 (-1143))) NIL) (((-621 (-747)) $ (-621 (-1055 (-1143)))) NIL)) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-3705 (($ (-1 (-521 (-1055 (-1143))) (-521 (-1055 (-1143)))) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-3040 (((-1 $ (-747)) (-1143)) NIL) (((-1 $ (-747)) $) NIL (|has| |#1| (-227)))) (-1520 (((-3 (-1055 (-1143)) "failed") $) NIL)) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-4052 (((-1055 (-1143)) $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-3851 (((-1125) $) NIL)) (-2709 (((-112) $) NIL)) (-4266 (((-3 (-621 $) "failed") $) NIL)) (-2533 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-2 (|:| |var| (-1055 (-1143))) (|:| -3731 (-747))) "failed") $) NIL)) (-2255 (($ $) NIL)) (-3990 (((-1087) $) NIL)) (-2004 (((-112) $) NIL)) (-2016 ((|#1| $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-444)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-2121 (((-411 $) $) NIL (|has| |#1| (-880)))) (-2042 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-2686 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-1055 (-1143)) |#1|) NIL) (($ $ (-621 (-1055 (-1143))) (-621 |#1|)) NIL) (($ $ (-1055 (-1143)) $) NIL) (($ $ (-621 (-1055 (-1143))) (-621 $)) NIL) (($ $ (-1143) $) NIL (|has| |#1| (-227))) (($ $ (-621 (-1143)) (-621 $)) NIL (|has| |#1| (-227))) (($ $ (-1143) |#1|) NIL (|has| |#1| (-227))) (($ $ (-621 (-1143)) (-621 |#1|)) NIL (|has| |#1| (-227)))) (-3602 (($ $ (-1055 (-1143))) NIL (|has| |#1| (-170)))) (-3456 (($ $ (-1055 (-1143))) NIL) (($ $ (-621 (-1055 (-1143)))) NIL) (($ $ (-1055 (-1143)) (-747)) NIL) (($ $ (-621 (-1055 (-1143))) (-621 (-747))) NIL) (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1920 (((-621 (-1143)) $) NIL)) (-3701 (((-521 (-1055 (-1143))) $) NIL) (((-747) $ (-1055 (-1143))) NIL) (((-621 (-747)) $ (-621 (-1055 (-1143)))) NIL) (((-747) $ (-1143)) NIL)) (-2845 (((-863 (-372)) $) NIL (-12 (|has| (-1055 (-1143)) (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-1055 (-1143)) (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-1055 (-1143)) (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-2216 ((|#1| $) NIL (|has| |#1| (-444))) (($ $ (-1055 (-1143))) NIL (|has| |#1| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-1055 (-1143))) NIL) (($ (-1143)) NIL) (($ (-1092 |#1| (-1143))) NIL) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#1| (-541)))) (-4141 (((-621 |#1|) $) NIL)) (-2152 ((|#1| $ (-521 (-1055 (-1143)))) NIL) (($ $ (-1055 (-1143)) (-747)) NIL) (($ $ (-621 (-1055 (-1143))) (-621 (-747))) NIL)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2082 (((-747)) NIL)) (-1509 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $ (-1055 (-1143))) NIL) (($ $ (-621 (-1055 (-1143)))) NIL) (($ $ (-1055 (-1143)) (-747)) NIL) (($ $ (-621 (-1055 (-1143))) (-621 (-747))) NIL) (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-1054 |#1|) (-13 (-246 |#1| (-1143) (-1055 (-1143)) (-521 (-1055 (-1143)))) (-1009 (-1092 |#1| (-1143)))) (-1018)) (T -1054))
-NIL
-(-13 (-246 |#1| (-1143) (-1055 (-1143)) (-521 (-1055 (-1143)))) (-1009 (-1092 |#1| (-1143))))
-((-3834 (((-112) $ $) NIL)) (-1637 (((-747) $) NIL)) (-3011 ((|#1| $) 10)) (-2714 (((-3 |#1| "failed") $) NIL)) (-2659 ((|#1| $) NIL)) (-2088 (((-747) $) 11)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-3040 (($ |#1| (-747)) 9)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3456 (($ $) NIL) (($ $ (-747)) NIL)) (-3846 (((-834) $) NIL) (($ |#1|) NIL)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 15)))
-(((-1055 |#1|) (-259 |#1|) (-823)) (T -1055))
+(((-92) . T) ((-101) . T) ((-593 (-834)) . T) ((-593 (-1147)) . T) ((-1066) . T))
+((-1784 ((|#1| |#1| (-1 (-549) |#1| |#1|)) 24) ((|#1| |#1| (-1 (-112) |#1|)) 20)) (-2631 (((-1230)) 15)) (-1281 (((-621 |#1|)) 9)))
+(((-1050 |#1|) (-10 -7 (-15 -2631 ((-1230))) (-15 -1281 ((-621 |#1|))) (-15 -1784 (|#1| |#1| (-1 (-112) |#1|))) (-15 -1784 (|#1| |#1| (-1 (-549) |#1| |#1|)))) (-131)) (T -1050))
+((-1784 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-549) *2 *2)) (-4 *2 (-131)) (-5 *1 (-1050 *2)))) (-1784 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-131)) (-5 *1 (-1050 *2)))) (-1281 (*1 *2) (-12 (-5 *2 (-621 *3)) (-5 *1 (-1050 *3)) (-4 *3 (-131)))) (-2631 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-1050 *3)) (-4 *3 (-131)))))
+(-10 -7 (-15 -2631 ((-1230))) (-15 -1281 ((-621 |#1|))) (-15 -1784 (|#1| |#1| (-1 (-112) |#1|))) (-15 -1784 (|#1| |#1| (-1 (-549) |#1| |#1|))))
+((-3070 (($ (-108) $) 16)) (-1942 (((-3 (-108) "failed") (-1142) $) 15)) (-3288 (($) 7)) (-2000 (($) 17)) (-4308 (($) 18)) (-3759 (((-621 (-173)) $) 10)) (-3845 (((-834) $) 21)))
+(((-1051) (-13 (-593 (-834)) (-10 -8 (-15 -3288 ($)) (-15 -3759 ((-621 (-173)) $)) (-15 -1942 ((-3 (-108) "failed") (-1142) $)) (-15 -3070 ($ (-108) $)) (-15 -2000 ($)) (-15 -4308 ($))))) (T -1051))
+((-3288 (*1 *1) (-5 *1 (-1051))) (-3759 (*1 *2 *1) (-12 (-5 *2 (-621 (-173))) (-5 *1 (-1051)))) (-1942 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1142)) (-5 *2 (-108)) (-5 *1 (-1051)))) (-3070 (*1 *1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1051)))) (-2000 (*1 *1) (-5 *1 (-1051))) (-4308 (*1 *1) (-5 *1 (-1051))))
+(-13 (-593 (-834)) (-10 -8 (-15 -3288 ($)) (-15 -3759 ((-621 (-173)) $)) (-15 -1942 ((-3 (-108) "failed") (-1142) $)) (-15 -3070 ($ (-108) $)) (-15 -2000 ($)) (-15 -4308 ($))))
+((-2893 (((-1225 (-665 |#1|)) (-621 (-665 |#1|))) 42) (((-1225 (-665 (-923 |#1|))) (-621 (-1142)) (-665 (-923 |#1|))) 63) (((-1225 (-665 (-400 (-923 |#1|)))) (-621 (-1142)) (-665 (-400 (-923 |#1|)))) 79)) (-1981 (((-1225 |#1|) (-665 |#1|) (-621 (-665 |#1|))) 36)))
+(((-1052 |#1|) (-10 -7 (-15 -2893 ((-1225 (-665 (-400 (-923 |#1|)))) (-621 (-1142)) (-665 (-400 (-923 |#1|))))) (-15 -2893 ((-1225 (-665 (-923 |#1|))) (-621 (-1142)) (-665 (-923 |#1|)))) (-15 -2893 ((-1225 (-665 |#1|)) (-621 (-665 |#1|)))) (-15 -1981 ((-1225 |#1|) (-665 |#1|) (-621 (-665 |#1|))))) (-356)) (T -1052))
+((-1981 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-665 *5))) (-5 *3 (-665 *5)) (-4 *5 (-356)) (-5 *2 (-1225 *5)) (-5 *1 (-1052 *5)))) (-2893 (*1 *2 *3) (-12 (-5 *3 (-621 (-665 *4))) (-4 *4 (-356)) (-5 *2 (-1225 (-665 *4))) (-5 *1 (-1052 *4)))) (-2893 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-1142))) (-4 *5 (-356)) (-5 *2 (-1225 (-665 (-923 *5)))) (-5 *1 (-1052 *5)) (-5 *4 (-665 (-923 *5))))) (-2893 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-1142))) (-4 *5 (-356)) (-5 *2 (-1225 (-665 (-400 (-923 *5))))) (-5 *1 (-1052 *5)) (-5 *4 (-665 (-400 (-923 *5)))))))
+(-10 -7 (-15 -2893 ((-1225 (-665 (-400 (-923 |#1|)))) (-621 (-1142)) (-665 (-400 (-923 |#1|))))) (-15 -2893 ((-1225 (-665 (-923 |#1|))) (-621 (-1142)) (-665 (-923 |#1|)))) (-15 -2893 ((-1225 (-665 |#1|)) (-621 (-665 |#1|)))) (-15 -1981 ((-1225 |#1|) (-665 |#1|) (-621 (-665 |#1|)))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3066 (((-621 (-747)) $) NIL) (((-621 (-747)) $ (-1142)) NIL)) (-1518 (((-747) $) NIL) (((-747) $ (-1142)) NIL)) (-2270 (((-621 (-1054 (-1142))) $) NIL)) (-2082 (((-1138 $) $ (-1054 (-1142))) NIL) (((-1138 |#1|) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-2216 (((-747) $) NIL) (((-747) $ (-621 (-1054 (-1142)))) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-3239 (($ $) NIL (|has| |#1| (-444)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2703 (($ $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-1054 (-1142)) "failed") $) NIL) (((-3 (-1142) "failed") $) NIL) (((-3 (-1091 |#1| (-1142)) "failed") $) NIL)) (-2657 ((|#1| $) NIL) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-1054 (-1142)) $) NIL) (((-1142) $) NIL) (((-1091 |#1| (-1142)) $) NIL)) (-4114 (($ $ $ (-1054 (-1142))) NIL (|has| |#1| (-170)))) (-2068 (($ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3004 (($ $) NIL (|has| |#1| (-444))) (($ $ (-1054 (-1142))) NIL (|has| |#1| (-444)))) (-2056 (((-621 $) $) NIL)) (-1464 (((-112) $) NIL (|has| |#1| (-880)))) (-4064 (($ $ |#1| (-521 (-1054 (-1142))) $) NIL)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-1054 (-1142)) (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-1054 (-1142)) (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2729 (((-747) $ (-1142)) NIL) (((-747) $) NIL)) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) NIL)) (-2259 (($ (-1138 |#1|) (-1054 (-1142))) NIL) (($ (-1138 $) (-1054 (-1142))) NIL)) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-521 (-1054 (-1142)))) NIL) (($ $ (-1054 (-1142)) (-747)) NIL) (($ $ (-621 (-1054 (-1142))) (-621 (-747))) NIL)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ (-1054 (-1142))) NIL)) (-2391 (((-521 (-1054 (-1142))) $) NIL) (((-747) $ (-1054 (-1142))) NIL) (((-621 (-747)) $ (-621 (-1054 (-1142)))) NIL)) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-3224 (($ (-1 (-521 (-1054 (-1142))) (-521 (-1054 (-1142)))) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-2205 (((-1 $ (-747)) (-1142)) NIL) (((-1 $ (-747)) $) NIL (|has| |#1| (-227)))) (-2236 (((-3 (-1054 (-1142)) "failed") $) NIL)) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-4051 (((-1054 (-1142)) $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-3441 (((-1124) $) NIL)) (-3104 (((-112) $) NIL)) (-4093 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-621 $) "failed") $) NIL)) (-1477 (((-3 (-2 (|:| |var| (-1054 (-1142))) (|:| -1714 (-747))) "failed") $) NIL)) (-2255 (($ $) NIL)) (-3988 (((-1086) $) NIL)) (-2001 (((-112) $) NIL)) (-2011 ((|#1| $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-444)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2119 (((-411 $) $) NIL (|has| |#1| (-880)))) (-2040 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-2684 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-1054 (-1142)) |#1|) NIL) (($ $ (-621 (-1054 (-1142))) (-621 |#1|)) NIL) (($ $ (-1054 (-1142)) $) NIL) (($ $ (-621 (-1054 (-1142))) (-621 $)) NIL) (($ $ (-1142) $) NIL (|has| |#1| (-227))) (($ $ (-621 (-1142)) (-621 $)) NIL (|has| |#1| (-227))) (($ $ (-1142) |#1|) NIL (|has| |#1| (-227))) (($ $ (-621 (-1142)) (-621 |#1|)) NIL (|has| |#1| (-227)))) (-2740 (($ $ (-1054 (-1142))) NIL (|has| |#1| (-170)))) (-3455 (($ $ (-1054 (-1142))) NIL) (($ $ (-621 (-1054 (-1142)))) NIL) (($ $ (-1054 (-1142)) (-747)) NIL) (($ $ (-621 (-1054 (-1142))) (-621 (-747))) NIL) (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1640 (((-621 (-1142)) $) NIL)) (-3977 (((-521 (-1054 (-1142))) $) NIL) (((-747) $ (-1054 (-1142))) NIL) (((-621 (-747)) $ (-621 (-1054 (-1142)))) NIL) (((-747) $ (-1142)) NIL)) (-2843 (((-863 (-372)) $) NIL (-12 (|has| (-1054 (-1142)) (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-1054 (-1142)) (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-1054 (-1142)) (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-1700 ((|#1| $) NIL (|has| |#1| (-444))) (($ $ (-1054 (-1142))) NIL (|has| |#1| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-1054 (-1142))) NIL) (($ (-1142)) NIL) (($ (-1091 |#1| (-1142))) NIL) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#1| (-541)))) (-2157 (((-621 |#1|) $) NIL)) (-4068 ((|#1| $ (-521 (-1054 (-1142)))) NIL) (($ $ (-1054 (-1142)) (-747)) NIL) (($ $ (-621 (-1054 (-1142))) (-621 (-747))) NIL)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2371 (((-747)) NIL)) (-4046 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $ (-1054 (-1142))) NIL) (($ $ (-621 (-1054 (-1142)))) NIL) (($ $ (-1054 (-1142)) (-747)) NIL) (($ $ (-621 (-1054 (-1142))) (-621 (-747))) NIL) (($ $) NIL (|has| |#1| (-227))) (($ $ (-747)) NIL (|has| |#1| (-227))) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-1053 |#1|) (-13 (-246 |#1| (-1142) (-1054 (-1142)) (-521 (-1054 (-1142)))) (-1009 (-1091 |#1| (-1142)))) (-1018)) (T -1053))
+NIL
+(-13 (-246 |#1| (-1142) (-1054 (-1142)) (-521 (-1054 (-1142)))) (-1009 (-1091 |#1| (-1142))))
+((-3832 (((-112) $ $) NIL)) (-1518 (((-747) $) NIL)) (-3009 ((|#1| $) 10)) (-2712 (((-3 |#1| "failed") $) NIL)) (-2657 ((|#1| $) NIL)) (-2729 (((-747) $) 11)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-2205 (($ |#1| (-747)) 9)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3455 (($ $) NIL) (($ $ (-747)) NIL)) (-3845 (((-834) $) NIL) (($ |#1|) NIL)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 15)))
+(((-1054 |#1|) (-259 |#1|) (-823)) (T -1054))
NIL
(-259 |#1|)
-((-2797 (((-621 |#2|) (-1 |#2| |#1|) (-1061 |#1|)) 24 (|has| |#1| (-821))) (((-1061 |#2|) (-1 |#2| |#1|) (-1061 |#1|)) 14)))
-(((-1056 |#1| |#2|) (-10 -7 (-15 -2797 ((-1061 |#2|) (-1 |#2| |#1|) (-1061 |#1|))) (IF (|has| |#1| (-821)) (-15 -2797 ((-621 |#2|) (-1 |#2| |#1|) (-1061 |#1|))) |%noBranch|)) (-1180) (-1180)) (T -1056))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1061 *5)) (-4 *5 (-821)) (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-621 *6)) (-5 *1 (-1056 *5 *6)))) (-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1061 *5)) (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-1061 *6)) (-5 *1 (-1056 *5 *6)))))
-(-10 -7 (-15 -2797 ((-1061 |#2|) (-1 |#2| |#1|) (-1061 |#1|))) (IF (|has| |#1| (-821)) (-15 -2797 ((-621 |#2|) (-1 |#2| |#1|) (-1061 |#1|))) |%noBranch|))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-3280 (((-621 (-1148)) $) 9)) (-2389 (((-112) $ $) NIL)))
-(((-1057) (-13 (-1050) (-10 -8 (-15 -3280 ((-621 (-1148)) $))))) (T -1057))
-((-3280 (*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-1057)))))
-(-13 (-1050) (-10 -8 (-15 -3280 ((-621 (-1148)) $))))
-((-2797 (((-1059 |#2|) (-1 |#2| |#1|) (-1059 |#1|)) 19)))
-(((-1058 |#1| |#2|) (-10 -7 (-15 -2797 ((-1059 |#2|) (-1 |#2| |#1|) (-1059 |#1|)))) (-1180) (-1180)) (T -1058))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1059 *5)) (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-1059 *6)) (-5 *1 (-1058 *5 *6)))))
-(-10 -7 (-15 -2797 ((-1059 |#2|) (-1 |#2| |#1|) (-1059 |#1|))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3011 (((-1143) $) 11)) (-3130 (((-1061 |#1|) $) 12)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-2391 (($ (-1143) (-1061 |#1|)) 10)) (-3846 (((-834) $) 20 (|has| |#1| (-1067)))) (-2389 (((-112) $ $) 15 (|has| |#1| (-1067)))))
-(((-1059 |#1|) (-13 (-1180) (-10 -8 (-15 -2391 ($ (-1143) (-1061 |#1|))) (-15 -3011 ((-1143) $)) (-15 -3130 ((-1061 |#1|) $)) (IF (|has| |#1| (-1067)) (-6 (-1067)) |%noBranch|))) (-1180)) (T -1059))
-((-2391 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1061 *4)) (-4 *4 (-1180)) (-5 *1 (-1059 *4)))) (-3011 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-1059 *3)) (-4 *3 (-1180)))) (-3130 (*1 *2 *1) (-12 (-5 *2 (-1061 *3)) (-5 *1 (-1059 *3)) (-4 *3 (-1180)))))
-(-13 (-1180) (-10 -8 (-15 -2391 ($ (-1143) (-1061 |#1|))) (-15 -3011 ((-1143) $)) (-15 -3130 ((-1061 |#1|) $)) (IF (|has| |#1| (-1067)) (-6 (-1067)) |%noBranch|)))
-((-3130 (($ |#1| |#1|) 7)) (-1578 ((|#1| $) 10)) (-1267 ((|#1| $) 12)) (-1276 (((-549) $) 8)) (-1667 ((|#1| $) 9)) (-1289 ((|#1| $) 11)) (-2845 (($ |#1|) 6)) (-1854 (($ |#1| |#1|) 14)) (-2123 (($ $ (-549)) 13)))
-(((-1060 |#1|) (-138) (-1180)) (T -1060))
-((-1854 (*1 *1 *2 *2) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1180)))) (-2123 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-1060 *3)) (-4 *3 (-1180)))) (-1267 (*1 *2 *1) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1180)))) (-1289 (*1 *2 *1) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1180)))) (-1578 (*1 *2 *1) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1180)))) (-1667 (*1 *2 *1) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1180)))) (-1276 (*1 *2 *1) (-12 (-4 *1 (-1060 *3)) (-4 *3 (-1180)) (-5 *2 (-549)))) (-3130 (*1 *1 *2 *2) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1180)))) (-2845 (*1 *1 *2) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1180)))))
-(-13 (-1180) (-10 -8 (-15 -1854 ($ |t#1| |t#1|)) (-15 -2123 ($ $ (-549))) (-15 -1267 (|t#1| $)) (-15 -1289 (|t#1| $)) (-15 -1578 (|t#1| $)) (-15 -1667 (|t#1| $)) (-15 -1276 ((-549) $)) (-15 -3130 ($ |t#1| |t#1|)) (-15 -2845 ($ |t#1|))))
-(((-1180) . T))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3130 (($ |#1| |#1|) 15)) (-2797 (((-621 |#1|) (-1 |#1| |#1|) $) 38 (|has| |#1| (-821)))) (-1578 ((|#1| $) 10)) (-1267 ((|#1| $) 9)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-1276 (((-549) $) 14)) (-1667 ((|#1| $) 12)) (-1289 ((|#1| $) 11)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1449 (((-621 |#1|) $) 36 (|has| |#1| (-821))) (((-621 |#1|) (-621 $)) 35 (|has| |#1| (-821)))) (-2845 (($ |#1|) 26)) (-3846 (((-834) $) 25 (|has| |#1| (-1067)))) (-1854 (($ |#1| |#1|) 8)) (-2123 (($ $ (-549)) 16)) (-2389 (((-112) $ $) 19 (|has| |#1| (-1067)))))
-(((-1061 |#1|) (-13 (-1060 |#1|) (-10 -7 (IF (|has| |#1| (-1067)) (-6 (-1067)) |%noBranch|) (IF (|has| |#1| (-821)) (-6 (-1062 |#1| (-621 |#1|))) |%noBranch|))) (-1180)) (T -1061))
-NIL
-(-13 (-1060 |#1|) (-10 -7 (IF (|has| |#1| (-1067)) (-6 (-1067)) |%noBranch|) (IF (|has| |#1| (-821)) (-6 (-1062 |#1| (-621 |#1|))) |%noBranch|)))
-((-3130 (($ |#1| |#1|) 7)) (-2797 ((|#2| (-1 |#1| |#1|) $) 16)) (-1578 ((|#1| $) 10)) (-1267 ((|#1| $) 12)) (-1276 (((-549) $) 8)) (-1667 ((|#1| $) 9)) (-1289 ((|#1| $) 11)) (-1449 ((|#2| (-621 $)) 18) ((|#2| $) 17)) (-2845 (($ |#1|) 6)) (-1854 (($ |#1| |#1|) 14)) (-2123 (($ $ (-549)) 13)))
-(((-1062 |#1| |#2|) (-138) (-821) (-1116 |t#1|)) (T -1062))
-((-1449 (*1 *2 *3) (-12 (-5 *3 (-621 *1)) (-4 *1 (-1062 *4 *2)) (-4 *4 (-821)) (-4 *2 (-1116 *4)))) (-1449 (*1 *2 *1) (-12 (-4 *1 (-1062 *3 *2)) (-4 *3 (-821)) (-4 *2 (-1116 *3)))) (-2797 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1062 *4 *2)) (-4 *4 (-821)) (-4 *2 (-1116 *4)))))
-(-13 (-1060 |t#1|) (-10 -8 (-15 -1449 (|t#2| (-621 $))) (-15 -1449 (|t#2| $)) (-15 -2797 (|t#2| (-1 |t#1| |t#1|) $))))
-(((-1060 |#1|) . T) ((-1180) . T))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3829 (((-1148) $) 12)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2492 (((-621 (-1148)) $) 10)) (-2389 (((-112) $ $) NIL)))
-(((-1063) (-13 (-1050) (-10 -8 (-15 -2492 ((-621 (-1148)) $)) (-15 -3829 ((-1148) $))))) (T -1063))
-((-2492 (*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-1063)))) (-3829 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1063)))))
-(-13 (-1050) (-10 -8 (-15 -2492 ((-621 (-1148)) $)) (-15 -3829 ((-1148) $))))
-((-1442 (($ $ $) NIL) (($ $ |#2|) 13) (($ |#2| $) 14)) (-2440 (($ $ $) 10)) (-1334 (($ $ $) NIL) (($ $ |#2|) 15)))
-(((-1064 |#1| |#2|) (-10 -8 (-15 -1442 (|#1| |#2| |#1|)) (-15 -1442 (|#1| |#1| |#2|)) (-15 -1442 (|#1| |#1| |#1|)) (-15 -2440 (|#1| |#1| |#1|)) (-15 -1334 (|#1| |#1| |#2|)) (-15 -1334 (|#1| |#1| |#1|))) (-1065 |#2|) (-1067)) (T -1064))
-NIL
-(-10 -8 (-15 -1442 (|#1| |#2| |#1|)) (-15 -1442 (|#1| |#1| |#2|)) (-15 -1442 (|#1| |#1| |#1|)) (-15 -2440 (|#1| |#1| |#1|)) (-15 -1334 (|#1| |#1| |#2|)) (-15 -1334 (|#1| |#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-1442 (($ $ $) 18) (($ $ |#1|) 17) (($ |#1| $) 16)) (-2440 (($ $ $) 20)) (-2695 (((-112) $ $) 19)) (-1584 (((-112) $ (-747)) 35)) (-2787 (($) 25) (($ (-621 |#1|)) 24)) (-1489 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4337)))) (-1682 (($) 36 T CONST)) (-3676 (($ $) 59 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ |#1| $) 58 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4337)))) (-2989 (((-621 |#1|) $) 43 (|has| $ (-6 -4337)))) (-2369 (((-112) $ $) 28)) (-3194 (((-112) $ (-747)) 34)) (-1562 (((-621 |#1|) $) 44 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 46 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 38)) (-1508 (((-112) $ (-747)) 33)) (-3851 (((-1125) $) 9)) (-3655 (($ $ $) 23)) (-3990 (((-1087) $) 10)) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-1780 (((-112) (-1 (-112) |#1|) $) 41 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 |#1|) (-621 |#1|)) 50 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 49 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 48 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 (-287 |#1|))) 47 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 29)) (-3670 (((-112) $) 32)) (-3742 (($) 31)) (-1334 (($ $ $) 22) (($ $ |#1|) 21)) (-4000 (((-747) |#1| $) 45 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) (((-747) (-1 (-112) |#1|) $) 42 (|has| $ (-6 -4337)))) (-2281 (($ $) 30)) (-2845 (((-525) $) 60 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 51)) (-3846 (((-834) $) 11)) (-4120 (($) 27) (($ (-621 |#1|)) 26)) (-3527 (((-112) (-1 (-112) |#1|) $) 40 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 6)) (-3775 (((-747) $) 37 (|has| $ (-6 -4337)))))
-(((-1065 |#1|) (-138) (-1067)) (T -1065))
-((-2369 (*1 *2 *1 *1) (-12 (-4 *1 (-1065 *3)) (-4 *3 (-1067)) (-5 *2 (-112)))) (-4120 (*1 *1) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067)))) (-4120 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-4 *1 (-1065 *3)))) (-2787 (*1 *1) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067)))) (-2787 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-4 *1 (-1065 *3)))) (-3655 (*1 *1 *1 *1) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067)))) (-1334 (*1 *1 *1 *1) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067)))) (-1334 (*1 *1 *1 *2) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067)))) (-2440 (*1 *1 *1 *1) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067)))) (-2695 (*1 *2 *1 *1) (-12 (-4 *1 (-1065 *3)) (-4 *3 (-1067)) (-5 *2 (-112)))) (-1442 (*1 *1 *1 *1) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067)))) (-1442 (*1 *1 *1 *2) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067)))) (-1442 (*1 *1 *2 *1) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067)))))
-(-13 (-1067) (-149 |t#1|) (-10 -8 (-6 -4327) (-15 -2369 ((-112) $ $)) (-15 -4120 ($)) (-15 -4120 ($ (-621 |t#1|))) (-15 -2787 ($)) (-15 -2787 ($ (-621 |t#1|))) (-15 -3655 ($ $ $)) (-15 -1334 ($ $ $)) (-15 -1334 ($ $ |t#1|)) (-15 -2440 ($ $ $)) (-15 -2695 ((-112) $ $)) (-15 -1442 ($ $ $)) (-15 -1442 ($ $ |t#1|)) (-15 -1442 ($ |t#1| $))))
-(((-34) . T) ((-101) . T) ((-593 (-834)) . T) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-1067) . T) ((-1180) . T))
-((-3851 (((-1125) $) 10)) (-3990 (((-1087) $) 8)))
-(((-1066 |#1|) (-10 -8 (-15 -3851 ((-1125) |#1|)) (-15 -3990 ((-1087) |#1|))) (-1067)) (T -1066))
-NIL
-(-10 -8 (-15 -3851 ((-1125) |#1|)) (-15 -3990 ((-1087) |#1|)))
-((-3834 (((-112) $ $) 7)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-2389 (((-112) $ $) 6)))
-(((-1067) (-138)) (T -1067))
-((-3990 (*1 *2 *1) (-12 (-4 *1 (-1067)) (-5 *2 (-1087)))) (-3851 (*1 *2 *1) (-12 (-4 *1 (-1067)) (-5 *2 (-1125)))))
-(-13 (-101) (-593 (-834)) (-10 -8 (-15 -3990 ((-1087) $)) (-15 -3851 ((-1125) $))))
+((-2795 (((-621 |#2|) (-1 |#2| |#1|) (-1060 |#1|)) 24 (|has| |#1| (-821))) (((-1060 |#2|) (-1 |#2| |#1|) (-1060 |#1|)) 14)))
+(((-1055 |#1| |#2|) (-10 -7 (-15 -2795 ((-1060 |#2|) (-1 |#2| |#1|) (-1060 |#1|))) (IF (|has| |#1| (-821)) (-15 -2795 ((-621 |#2|) (-1 |#2| |#1|) (-1060 |#1|))) |%noBranch|)) (-1179) (-1179)) (T -1055))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1060 *5)) (-4 *5 (-821)) (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-621 *6)) (-5 *1 (-1055 *5 *6)))) (-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1060 *5)) (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-1060 *6)) (-5 *1 (-1055 *5 *6)))))
+(-10 -7 (-15 -2795 ((-1060 |#2|) (-1 |#2| |#1|) (-1060 |#1|))) (IF (|has| |#1| (-821)) (-15 -2795 ((-621 |#2|) (-1 |#2| |#1|) (-1060 |#1|))) |%noBranch|))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 17) (((-1147) $) NIL) (($ (-1147)) NIL)) (-1961 (((-621 (-1101)) $) 9)) (-2387 (((-112) $ $) NIL)))
+(((-1056) (-13 (-1049) (-10 -8 (-15 -1961 ((-621 (-1101)) $))))) (T -1056))
+((-1961 (*1 *2 *1) (-12 (-5 *2 (-621 (-1101))) (-5 *1 (-1056)))))
+(-13 (-1049) (-10 -8 (-15 -1961 ((-621 (-1101)) $))))
+((-2795 (((-1058 |#2|) (-1 |#2| |#1|) (-1058 |#1|)) 19)))
+(((-1057 |#1| |#2|) (-10 -7 (-15 -2795 ((-1058 |#2|) (-1 |#2| |#1|) (-1058 |#1|)))) (-1179) (-1179)) (T -1057))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1058 *5)) (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-1058 *6)) (-5 *1 (-1057 *5 *6)))))
+(-10 -7 (-15 -2795 ((-1058 |#2|) (-1 |#2| |#1|) (-1058 |#1|))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3009 (((-1142) $) 11)) (-3128 (((-1060 |#1|) $) 12)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-2388 (($ (-1142) (-1060 |#1|)) 10)) (-3845 (((-834) $) 20 (|has| |#1| (-1066)))) (-2387 (((-112) $ $) 15 (|has| |#1| (-1066)))))
+(((-1058 |#1|) (-13 (-1179) (-10 -8 (-15 -2388 ($ (-1142) (-1060 |#1|))) (-15 -3009 ((-1142) $)) (-15 -3128 ((-1060 |#1|) $)) (IF (|has| |#1| (-1066)) (-6 (-1066)) |%noBranch|))) (-1179)) (T -1058))
+((-2388 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1060 *4)) (-4 *4 (-1179)) (-5 *1 (-1058 *4)))) (-3009 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-1058 *3)) (-4 *3 (-1179)))) (-3128 (*1 *2 *1) (-12 (-5 *2 (-1060 *3)) (-5 *1 (-1058 *3)) (-4 *3 (-1179)))))
+(-13 (-1179) (-10 -8 (-15 -2388 ($ (-1142) (-1060 |#1|))) (-15 -3009 ((-1142) $)) (-15 -3128 ((-1060 |#1|) $)) (IF (|has| |#1| (-1066)) (-6 (-1066)) |%noBranch|)))
+((-3128 (($ |#1| |#1|) 7)) (-1332 ((|#1| $) 10)) (-1266 ((|#1| $) 12)) (-1275 (((-549) $) 8)) (-3999 ((|#1| $) 9)) (-1288 ((|#1| $) 11)) (-2843 (($ |#1|) 6)) (-1856 (($ |#1| |#1|) 14)) (-2121 (($ $ (-549)) 13)))
+(((-1059 |#1|) (-138) (-1179)) (T -1059))
+((-1856 (*1 *1 *2 *2) (-12 (-4 *1 (-1059 *2)) (-4 *2 (-1179)))) (-2121 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-1059 *3)) (-4 *3 (-1179)))) (-1266 (*1 *2 *1) (-12 (-4 *1 (-1059 *2)) (-4 *2 (-1179)))) (-1288 (*1 *2 *1) (-12 (-4 *1 (-1059 *2)) (-4 *2 (-1179)))) (-1332 (*1 *2 *1) (-12 (-4 *1 (-1059 *2)) (-4 *2 (-1179)))) (-3999 (*1 *2 *1) (-12 (-4 *1 (-1059 *2)) (-4 *2 (-1179)))) (-1275 (*1 *2 *1) (-12 (-4 *1 (-1059 *3)) (-4 *3 (-1179)) (-5 *2 (-549)))) (-3128 (*1 *1 *2 *2) (-12 (-4 *1 (-1059 *2)) (-4 *2 (-1179)))) (-2843 (*1 *1 *2) (-12 (-4 *1 (-1059 *2)) (-4 *2 (-1179)))))
+(-13 (-1179) (-10 -8 (-15 -1856 ($ |t#1| |t#1|)) (-15 -2121 ($ $ (-549))) (-15 -1266 (|t#1| $)) (-15 -1288 (|t#1| $)) (-15 -1332 (|t#1| $)) (-15 -3999 (|t#1| $)) (-15 -1275 ((-549) $)) (-15 -3128 ($ |t#1| |t#1|)) (-15 -2843 ($ |t#1|))))
+(((-1179) . T))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3128 (($ |#1| |#1|) 15)) (-2795 (((-621 |#1|) (-1 |#1| |#1|) $) 38 (|has| |#1| (-821)))) (-1332 ((|#1| $) 10)) (-1266 ((|#1| $) 9)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-1275 (((-549) $) 14)) (-3999 ((|#1| $) 12)) (-1288 ((|#1| $) 11)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-1448 (((-621 |#1|) $) 36 (|has| |#1| (-821))) (((-621 |#1|) (-621 $)) 35 (|has| |#1| (-821)))) (-2843 (($ |#1|) 26)) (-3845 (((-834) $) 25 (|has| |#1| (-1066)))) (-1856 (($ |#1| |#1|) 8)) (-2121 (($ $ (-549)) 16)) (-2387 (((-112) $ $) 19 (|has| |#1| (-1066)))))
+(((-1060 |#1|) (-13 (-1059 |#1|) (-10 -7 (IF (|has| |#1| (-1066)) (-6 (-1066)) |%noBranch|) (IF (|has| |#1| (-821)) (-6 (-1061 |#1| (-621 |#1|))) |%noBranch|))) (-1179)) (T -1060))
+NIL
+(-13 (-1059 |#1|) (-10 -7 (IF (|has| |#1| (-1066)) (-6 (-1066)) |%noBranch|) (IF (|has| |#1| (-821)) (-6 (-1061 |#1| (-621 |#1|))) |%noBranch|)))
+((-3128 (($ |#1| |#1|) 7)) (-2795 ((|#2| (-1 |#1| |#1|) $) 16)) (-1332 ((|#1| $) 10)) (-1266 ((|#1| $) 12)) (-1275 (((-549) $) 8)) (-3999 ((|#1| $) 9)) (-1288 ((|#1| $) 11)) (-1448 ((|#2| (-621 $)) 18) ((|#2| $) 17)) (-2843 (($ |#1|) 6)) (-1856 (($ |#1| |#1|) 14)) (-2121 (($ $ (-549)) 13)))
+(((-1061 |#1| |#2|) (-138) (-821) (-1115 |t#1|)) (T -1061))
+((-1448 (*1 *2 *3) (-12 (-5 *3 (-621 *1)) (-4 *1 (-1061 *4 *2)) (-4 *4 (-821)) (-4 *2 (-1115 *4)))) (-1448 (*1 *2 *1) (-12 (-4 *1 (-1061 *3 *2)) (-4 *3 (-821)) (-4 *2 (-1115 *3)))) (-2795 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1061 *4 *2)) (-4 *4 (-821)) (-4 *2 (-1115 *4)))))
+(-13 (-1059 |t#1|) (-10 -8 (-15 -1448 (|t#2| (-621 $))) (-15 -1448 (|t#2| $)) (-15 -2795 (|t#2| (-1 |t#1| |t#1|) $))))
+(((-1059 |#1|) . T) ((-1179) . T))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3828 (((-1101) $) 12)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 20) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2492 (((-621 (-1101)) $) 10)) (-2387 (((-112) $ $) NIL)))
+(((-1062) (-13 (-1049) (-10 -8 (-15 -2492 ((-621 (-1101)) $)) (-15 -3828 ((-1101) $))))) (T -1062))
+((-2492 (*1 *2 *1) (-12 (-5 *2 (-621 (-1101))) (-5 *1 (-1062)))) (-3828 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-1062)))))
+(-13 (-1049) (-10 -8 (-15 -2492 ((-621 (-1101)) $)) (-15 -3828 ((-1101) $))))
+((-1441 (($ $ $) NIL) (($ $ |#2|) 13) (($ |#2| $) 14)) (-4029 (($ $ $) 10)) (-4020 (($ $ $) NIL) (($ $ |#2|) 15)))
+(((-1063 |#1| |#2|) (-10 -8 (-15 -1441 (|#1| |#2| |#1|)) (-15 -1441 (|#1| |#1| |#2|)) (-15 -1441 (|#1| |#1| |#1|)) (-15 -4029 (|#1| |#1| |#1|)) (-15 -4020 (|#1| |#1| |#2|)) (-15 -4020 (|#1| |#1| |#1|))) (-1064 |#2|) (-1066)) (T -1063))
+NIL
+(-10 -8 (-15 -1441 (|#1| |#2| |#1|)) (-15 -1441 (|#1| |#1| |#2|)) (-15 -1441 (|#1| |#1| |#1|)) (-15 -4029 (|#1| |#1| |#1|)) (-15 -4020 (|#1| |#1| |#2|)) (-15 -4020 (|#1| |#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-1441 (($ $ $) 18) (($ $ |#1|) 17) (($ |#1| $) 16)) (-4029 (($ $ $) 20)) (-1341 (((-112) $ $) 19)) (-2850 (((-112) $ (-747)) 35)) (-2787 (($) 25) (($ (-621 |#1|)) 24)) (-1488 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4336)))) (-3034 (($) 36 T CONST)) (-3675 (($ $) 59 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ |#1| $) 58 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4336)))) (-2987 (((-621 |#1|) $) 43 (|has| $ (-6 -4336)))) (-1513 (((-112) $ $) 28)) (-1777 (((-112) $ (-747)) 34)) (-3698 (((-621 |#1|) $) 44 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 46 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 38)) (-3942 (((-112) $ (-747)) 33)) (-3441 (((-1124) $) 9)) (-3869 (($ $ $) 23)) (-3988 (((-1086) $) 10)) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-3360 (((-112) (-1 (-112) |#1|) $) 41 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 |#1|) (-621 |#1|)) 50 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 49 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 48 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 (-287 |#1|))) 47 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 29)) (-2643 (((-112) $) 32)) (-3288 (($) 31)) (-4020 (($ $ $) 22) (($ $ |#1|) 21)) (-3997 (((-747) |#1| $) 45 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) (((-747) (-1 (-112) |#1|) $) 42 (|has| $ (-6 -4336)))) (-2279 (($ $) 30)) (-2843 (((-525) $) 60 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 51)) (-3845 (((-834) $) 11)) (-4119 (($) 27) (($ (-621 |#1|)) 26)) (-3025 (((-112) (-1 (-112) |#1|) $) 40 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 6)) (-3774 (((-747) $) 37 (|has| $ (-6 -4336)))))
+(((-1064 |#1|) (-138) (-1066)) (T -1064))
+((-1513 (*1 *2 *1 *1) (-12 (-4 *1 (-1064 *3)) (-4 *3 (-1066)) (-5 *2 (-112)))) (-4119 (*1 *1) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066)))) (-4119 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-4 *1 (-1064 *3)))) (-2787 (*1 *1) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066)))) (-2787 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-4 *1 (-1064 *3)))) (-3869 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066)))) (-4020 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066)))) (-4020 (*1 *1 *1 *2) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066)))) (-4029 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066)))) (-1341 (*1 *2 *1 *1) (-12 (-4 *1 (-1064 *3)) (-4 *3 (-1066)) (-5 *2 (-112)))) (-1441 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066)))) (-1441 (*1 *1 *1 *2) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066)))) (-1441 (*1 *1 *2 *1) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066)))))
+(-13 (-1066) (-149 |t#1|) (-10 -8 (-6 -4326) (-15 -1513 ((-112) $ $)) (-15 -4119 ($)) (-15 -4119 ($ (-621 |t#1|))) (-15 -2787 ($)) (-15 -2787 ($ (-621 |t#1|))) (-15 -3869 ($ $ $)) (-15 -4020 ($ $ $)) (-15 -4020 ($ $ |t#1|)) (-15 -4029 ($ $ $)) (-15 -1341 ((-112) $ $)) (-15 -1441 ($ $ $)) (-15 -1441 ($ $ |t#1|)) (-15 -1441 ($ |t#1| $))))
+(((-34) . T) ((-101) . T) ((-593 (-834)) . T) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-1066) . T) ((-1179) . T))
+((-3441 (((-1124) $) 10)) (-3988 (((-1086) $) 8)))
+(((-1065 |#1|) (-10 -8 (-15 -3441 ((-1124) |#1|)) (-15 -3988 ((-1086) |#1|))) (-1066)) (T -1065))
+NIL
+(-10 -8 (-15 -3441 ((-1124) |#1|)) (-15 -3988 ((-1086) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-2387 (((-112) $ $) 6)))
+(((-1066) (-138)) (T -1066))
+((-3988 (*1 *2 *1) (-12 (-4 *1 (-1066)) (-5 *2 (-1086)))) (-3441 (*1 *2 *1) (-12 (-4 *1 (-1066)) (-5 *2 (-1124)))))
+(-13 (-101) (-593 (-834)) (-10 -8 (-15 -3988 ((-1086) $)) (-15 -3441 ((-1124) $))))
(((-101) . T) ((-593 (-834)) . T))
-((-3834 (((-112) $ $) NIL)) (-3614 (((-747)) 30)) (-1760 (($ (-621 (-892))) 52)) (-4072 (((-3 $ "failed") $ (-892) (-892)) 58)) (-3239 (($) 32)) (-2090 (((-112) (-892) $) 35)) (-1881 (((-892) $) 50)) (-3851 (((-1125) $) NIL)) (-3493 (($ (-892)) 31)) (-4251 (((-3 $ "failed") $ (-892)) 55)) (-3990 (((-1087) $) NIL)) (-3355 (((-1226 $)) 40)) (-1845 (((-621 (-892)) $) 24)) (-2662 (((-747) $ (-892) (-892)) 56)) (-3846 (((-834) $) 29)) (-2389 (((-112) $ $) 21)))
-(((-1068 |#1| |#2|) (-13 (-361) (-10 -8 (-15 -4251 ((-3 $ "failed") $ (-892))) (-15 -4072 ((-3 $ "failed") $ (-892) (-892))) (-15 -1845 ((-621 (-892)) $)) (-15 -1760 ($ (-621 (-892)))) (-15 -3355 ((-1226 $))) (-15 -2090 ((-112) (-892) $)) (-15 -2662 ((-747) $ (-892) (-892))))) (-892) (-892)) (T -1068))
-((-4251 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-892)) (-5 *1 (-1068 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-4072 (*1 *1 *1 *2 *2) (|partial| -12 (-5 *2 (-892)) (-5 *1 (-1068 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-1845 (*1 *2 *1) (-12 (-5 *2 (-621 (-892))) (-5 *1 (-1068 *3 *4)) (-14 *3 (-892)) (-14 *4 (-892)))) (-1760 (*1 *1 *2) (-12 (-5 *2 (-621 (-892))) (-5 *1 (-1068 *3 *4)) (-14 *3 (-892)) (-14 *4 (-892)))) (-3355 (*1 *2) (-12 (-5 *2 (-1226 (-1068 *3 *4))) (-5 *1 (-1068 *3 *4)) (-14 *3 (-892)) (-14 *4 (-892)))) (-2090 (*1 *2 *3 *1) (-12 (-5 *3 (-892)) (-5 *2 (-112)) (-5 *1 (-1068 *4 *5)) (-14 *4 *3) (-14 *5 *3))) (-2662 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-892)) (-5 *2 (-747)) (-5 *1 (-1068 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
-(-13 (-361) (-10 -8 (-15 -4251 ((-3 $ "failed") $ (-892))) (-15 -4072 ((-3 $ "failed") $ (-892) (-892))) (-15 -1845 ((-621 (-892)) $)) (-15 -1760 ($ (-621 (-892)))) (-15 -3355 ((-1226 $))) (-15 -2090 ((-112) (-892) $)) (-15 -2662 ((-747) $ (-892) (-892)))))
-((-3834 (((-112) $ $) NIL)) (-2664 (($) NIL (|has| |#1| (-361)))) (-1442 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 74)) (-2440 (($ $ $) 72)) (-2695 (((-112) $ $) 73)) (-1584 (((-112) $ (-747)) NIL)) (-3614 (((-747)) NIL (|has| |#1| (-361)))) (-2787 (($ (-621 |#1|)) NIL) (($) 13)) (-1717 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2129 (($ |#1| $) 67 (|has| $ (-6 -4337))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 41 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) 39 (|has| $ (-6 -4337)))) (-3239 (($) NIL (|has| |#1| (-361)))) (-2989 (((-621 |#1|) $) 19 (|has| $ (-6 -4337)))) (-2369 (((-112) $ $) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-2863 ((|#1| $) 57 (|has| |#1| (-823)))) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 66 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-3575 ((|#1| $) 55 (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) 33 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 34)) (-1881 (((-892) $) NIL (|has| |#1| (-361)))) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL)) (-3655 (($ $ $) 70)) (-3504 ((|#1| $) 25)) (-2751 (($ |#1| $) 65)) (-3493 (($ (-892)) NIL (|has| |#1| (-361)))) (-3990 (((-1087) $) NIL)) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 31)) (-3325 ((|#1| $) 27)) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) 21)) (-3742 (($) 11)) (-1334 (($ $ |#1|) NIL) (($ $ $) 71)) (-2898 (($) NIL) (($ (-621 |#1|)) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) 16)) (-2845 (((-525) $) 52 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 61)) (-1417 (($ $) NIL (|has| |#1| (-361)))) (-3846 (((-834) $) NIL)) (-3916 (((-747) $) NIL)) (-4120 (($ (-621 |#1|)) NIL) (($) 12)) (-3624 (($ (-621 |#1|)) NIL)) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 54)) (-3775 (((-747) $) 10 (|has| $ (-6 -4337)))))
-(((-1069 |#1|) (-418 |#1|) (-1067)) (T -1069))
+((-3832 (((-112) $ $) NIL)) (-3614 (((-747)) 30)) (-2983 (($ (-621 (-892))) 52)) (-3170 (((-3 $ "failed") $ (-892) (-892)) 58)) (-3237 (($) 32)) (-1593 (((-112) (-892) $) 35)) (-3309 (((-892) $) 50)) (-3441 (((-1124) $) NIL)) (-3494 (($ (-892)) 31)) (-3416 (((-3 $ "failed") $ (-892)) 55)) (-3988 (((-1086) $) NIL)) (-1296 (((-1225 $)) 40)) (-2292 (((-621 (-892)) $) 24)) (-2658 (((-747) $ (-892) (-892)) 56)) (-3845 (((-834) $) 29)) (-2387 (((-112) $ $) 21)))
+(((-1067 |#1| |#2|) (-13 (-361) (-10 -8 (-15 -3416 ((-3 $ "failed") $ (-892))) (-15 -3170 ((-3 $ "failed") $ (-892) (-892))) (-15 -2292 ((-621 (-892)) $)) (-15 -2983 ($ (-621 (-892)))) (-15 -1296 ((-1225 $))) (-15 -1593 ((-112) (-892) $)) (-15 -2658 ((-747) $ (-892) (-892))))) (-892) (-892)) (T -1067))
+((-3416 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-892)) (-5 *1 (-1067 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-3170 (*1 *1 *1 *2 *2) (|partial| -12 (-5 *2 (-892)) (-5 *1 (-1067 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-2292 (*1 *2 *1) (-12 (-5 *2 (-621 (-892))) (-5 *1 (-1067 *3 *4)) (-14 *3 (-892)) (-14 *4 (-892)))) (-2983 (*1 *1 *2) (-12 (-5 *2 (-621 (-892))) (-5 *1 (-1067 *3 *4)) (-14 *3 (-892)) (-14 *4 (-892)))) (-1296 (*1 *2) (-12 (-5 *2 (-1225 (-1067 *3 *4))) (-5 *1 (-1067 *3 *4)) (-14 *3 (-892)) (-14 *4 (-892)))) (-1593 (*1 *2 *3 *1) (-12 (-5 *3 (-892)) (-5 *2 (-112)) (-5 *1 (-1067 *4 *5)) (-14 *4 *3) (-14 *5 *3))) (-2658 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-892)) (-5 *2 (-747)) (-5 *1 (-1067 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
+(-13 (-361) (-10 -8 (-15 -3416 ((-3 $ "failed") $ (-892))) (-15 -3170 ((-3 $ "failed") $ (-892) (-892))) (-15 -2292 ((-621 (-892)) $)) (-15 -2983 ($ (-621 (-892)))) (-15 -1296 ((-1225 $))) (-15 -1593 ((-112) (-892) $)) (-15 -2658 ((-747) $ (-892) (-892)))))
+((-3832 (((-112) $ $) NIL)) (-2832 (($) NIL (|has| |#1| (-361)))) (-1441 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 74)) (-4029 (($ $ $) 72)) (-1341 (((-112) $ $) 73)) (-2850 (((-112) $ (-747)) NIL)) (-3614 (((-747)) NIL (|has| |#1| (-361)))) (-2787 (($ (-621 |#1|)) NIL) (($) 13)) (-3827 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3546 (($ |#1| $) 67 (|has| $ (-6 -4336))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 41 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) 39 (|has| $ (-6 -4336)))) (-3237 (($) NIL (|has| |#1| (-361)))) (-2987 (((-621 |#1|) $) 19 (|has| $ (-6 -4336)))) (-1513 (((-112) $ $) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-2861 ((|#1| $) 57 (|has| |#1| (-823)))) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 66 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3574 ((|#1| $) 55 (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) 33 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 34)) (-3309 (((-892) $) NIL (|has| |#1| (-361)))) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL)) (-3869 (($ $ $) 70)) (-2548 ((|#1| $) 25)) (-1799 (($ |#1| $) 65)) (-3494 (($ (-892)) NIL (|has| |#1| (-361)))) (-3988 (((-1086) $) NIL)) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 31)) (-3536 ((|#1| $) 27)) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) 21)) (-3288 (($) 11)) (-4020 (($ $ |#1|) NIL) (($ $ $) 71)) (-3226 (($) NIL) (($ (-621 |#1|)) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) 16)) (-2843 (((-525) $) 52 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 61)) (-2517 (($ $) NIL (|has| |#1| (-361)))) (-3845 (((-834) $) NIL)) (-3398 (((-747) $) NIL)) (-4119 (($ (-621 |#1|)) NIL) (($) 12)) (-4213 (($ (-621 |#1|)) NIL)) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 54)) (-3774 (((-747) $) 10 (|has| $ (-6 -4336)))))
+(((-1068 |#1|) (-418 |#1|) (-1066)) (T -1068))
NIL
(-418 |#1|)
-((-3834 (((-112) $ $) 7)) (-1404 (((-112) $) 32)) (-3944 ((|#2| $) 27)) (-3128 (((-112) $) 33)) (-1525 ((|#1| $) 28)) (-3374 (((-112) $) 35)) (-2671 (((-112) $) 37)) (-3259 (((-112) $) 34)) (-3851 (((-1125) $) 9)) (-2528 (((-112) $) 31)) (-3965 ((|#3| $) 26)) (-3990 (((-1087) $) 10)) (-1978 (((-112) $) 30)) (-1355 ((|#4| $) 25)) (-2977 ((|#5| $) 24)) (-2652 (((-112) $ $) 38)) (-3341 (($ $ (-549)) 14) (($ $ (-621 (-549))) 13)) (-2197 (((-621 $) $) 29)) (-2845 (($ (-621 $)) 23) (($ |#1|) 22) (($ |#2|) 21) (($ |#3|) 20) (($ |#4|) 19) (($ |#5|) 18)) (-3846 (((-834) $) 11)) (-3546 (($ $) 16)) (-3536 (($ $) 17)) (-1775 (((-112) $) 36)) (-2389 (((-112) $ $) 6)) (-3775 (((-549) $) 15)))
-(((-1070 |#1| |#2| |#3| |#4| |#5|) (-138) (-1067) (-1067) (-1067) (-1067) (-1067)) (T -1070))
-((-2652 (*1 *2 *1 *1) (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))) (-2671 (*1 *2 *1) (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))) (-1775 (*1 *2 *1) (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))) (-3374 (*1 *2 *1) (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))) (-3259 (*1 *2 *1) (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))) (-3128 (*1 *2 *1) (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))) (-1404 (*1 *2 *1) (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))) (-2528 (*1 *2 *1) (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))) (-1978 (*1 *2 *1) (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))) (-2197 (*1 *2 *1) (-12 (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-621 *1)) (-4 *1 (-1070 *3 *4 *5 *6 *7)))) (-1525 (*1 *2 *1) (-12 (-4 *1 (-1070 *2 *3 *4 *5 *6)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *2 (-1067)))) (-3944 (*1 *2 *1) (-12 (-4 *1 (-1070 *3 *2 *4 *5 *6)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *2 (-1067)))) (-3965 (*1 *2 *1) (-12 (-4 *1 (-1070 *3 *4 *2 *5 *6)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *2 (-1067)))) (-1355 (*1 *2 *1) (-12 (-4 *1 (-1070 *3 *4 *5 *2 *6)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *2 (-1067)))) (-2977 (*1 *2 *1) (-12 (-4 *1 (-1070 *3 *4 *5 *6 *2)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *2 (-1067)))) (-2845 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)))) (-2845 (*1 *1 *2) (-12 (-4 *1 (-1070 *2 *3 *4 *5 *6)) (-4 *2 (-1067)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)))) (-2845 (*1 *1 *2) (-12 (-4 *1 (-1070 *3 *2 *4 *5 *6)) (-4 *3 (-1067)) (-4 *2 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)))) (-2845 (*1 *1 *2) (-12 (-4 *1 (-1070 *3 *4 *2 *5 *6)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *2 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)))) (-2845 (*1 *1 *2) (-12 (-4 *1 (-1070 *3 *4 *5 *2 *6)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *2 (-1067)) (-4 *6 (-1067)))) (-2845 (*1 *1 *2) (-12 (-4 *1 (-1070 *3 *4 *5 *6 *2)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *2 (-1067)))) (-3536 (*1 *1 *1) (-12 (-4 *1 (-1070 *2 *3 *4 *5 *6)) (-4 *2 (-1067)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)))) (-3546 (*1 *1 *1) (-12 (-4 *1 (-1070 *2 *3 *4 *5 *6)) (-4 *2 (-1067)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)))) (-3775 (*1 *2 *1) (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-549)))) (-3341 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)))) (-3341 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)))))
-(-13 (-1067) (-10 -8 (-15 -2652 ((-112) $ $)) (-15 -2671 ((-112) $)) (-15 -1775 ((-112) $)) (-15 -3374 ((-112) $)) (-15 -3259 ((-112) $)) (-15 -3128 ((-112) $)) (-15 -1404 ((-112) $)) (-15 -2528 ((-112) $)) (-15 -1978 ((-112) $)) (-15 -2197 ((-621 $) $)) (-15 -1525 (|t#1| $)) (-15 -3944 (|t#2| $)) (-15 -3965 (|t#3| $)) (-15 -1355 (|t#4| $)) (-15 -2977 (|t#5| $)) (-15 -2845 ($ (-621 $))) (-15 -2845 ($ |t#1|)) (-15 -2845 ($ |t#2|)) (-15 -2845 ($ |t#3|)) (-15 -2845 ($ |t#4|)) (-15 -2845 ($ |t#5|)) (-15 -3536 ($ $)) (-15 -3546 ($ $)) (-15 -3775 ((-549) $)) (-15 -3341 ($ $ (-549))) (-15 -3341 ($ $ (-621 (-549))))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-1404 (((-112) $) NIL)) (-3944 (((-1143) $) NIL)) (-3128 (((-112) $) NIL)) (-1525 (((-1125) $) NIL)) (-3374 (((-112) $) NIL)) (-2671 (((-112) $) NIL)) (-3259 (((-112) $) NIL)) (-3851 (((-1125) $) NIL)) (-2528 (((-112) $) NIL)) (-3965 (((-549) $) NIL)) (-3990 (((-1087) $) NIL)) (-1978 (((-112) $) NIL)) (-1355 (((-219) $) NIL)) (-2977 (((-834) $) NIL)) (-2652 (((-112) $ $) NIL)) (-3341 (($ $ (-549)) NIL) (($ $ (-621 (-549))) NIL)) (-2197 (((-621 $) $) NIL)) (-2845 (($ (-621 $)) NIL) (($ (-1125)) NIL) (($ (-1143)) NIL) (($ (-549)) NIL) (($ (-219)) NIL) (($ (-834)) NIL)) (-3846 (((-834) $) NIL)) (-3546 (($ $) NIL)) (-3536 (($ $) NIL)) (-1775 (((-112) $) NIL)) (-2389 (((-112) $ $) NIL)) (-3775 (((-549) $) NIL)))
-(((-1071) (-1070 (-1125) (-1143) (-549) (-219) (-834))) (T -1071))
-NIL
-(-1070 (-1125) (-1143) (-549) (-219) (-834))
-((-3834 (((-112) $ $) NIL)) (-1404 (((-112) $) 38)) (-3944 ((|#2| $) 42)) (-3128 (((-112) $) 37)) (-1525 ((|#1| $) 41)) (-3374 (((-112) $) 35)) (-2671 (((-112) $) 14)) (-3259 (((-112) $) 36)) (-3851 (((-1125) $) NIL)) (-2528 (((-112) $) 39)) (-3965 ((|#3| $) 44)) (-3990 (((-1087) $) NIL)) (-1978 (((-112) $) 40)) (-1355 ((|#4| $) 43)) (-2977 ((|#5| $) 45)) (-2652 (((-112) $ $) 34)) (-3341 (($ $ (-549)) 56) (($ $ (-621 (-549))) 58)) (-2197 (((-621 $) $) 22)) (-2845 (($ (-621 $)) 46) (($ |#1|) 47) (($ |#2|) 48) (($ |#3|) 49) (($ |#4|) 50) (($ |#5|) 51)) (-3846 (((-834) $) 23)) (-3546 (($ $) 21)) (-3536 (($ $) 52)) (-1775 (((-112) $) 18)) (-2389 (((-112) $ $) 33)) (-3775 (((-549) $) 54)))
-(((-1072 |#1| |#2| |#3| |#4| |#5|) (-1070 |#1| |#2| |#3| |#4| |#5|) (-1067) (-1067) (-1067) (-1067) (-1067)) (T -1072))
-NIL
-(-1070 |#1| |#2| |#3| |#4| |#5|)
-((-3316 (((-1231) $) 23)) (-1320 (($ (-1143) (-427) |#2|) 11)) (-3846 (((-834) $) 16)))
-(((-1073 |#1| |#2|) (-13 (-388) (-10 -8 (-15 -1320 ($ (-1143) (-427) |#2|)))) (-823) (-423 |#1|)) (T -1073))
-((-1320 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1143)) (-5 *3 (-427)) (-4 *5 (-823)) (-5 *1 (-1073 *5 *4)) (-4 *4 (-423 *5)))))
-(-13 (-388) (-10 -8 (-15 -1320 ($ (-1143) (-427) |#2|))))
-((-1897 (((-112) |#5| |#5|) 38)) (-2954 (((-112) |#5| |#5|) 52)) (-3417 (((-112) |#5| (-621 |#5|)) 75) (((-112) |#5| |#5|) 61)) (-3503 (((-112) (-621 |#4|) (-621 |#4|)) 58)) (-1346 (((-112) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|)) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) 63)) (-1663 (((-1231)) 33)) (-4164 (((-1231) (-1125) (-1125) (-1125)) 29)) (-1382 (((-621 |#5|) (-621 |#5|)) 82)) (-4118 (((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|)))) 80)) (-3954 (((-621 (-2 (|:| -2652 (-621 |#4|)) (|:| -1981 |#5|) (|:| |ineq| (-621 |#4|)))) (-621 |#4|) (-621 |#5|) (-112) (-112)) 102)) (-4282 (((-112) |#5| |#5|) 47)) (-3597 (((-3 (-112) "failed") |#5| |#5|) 71)) (-4083 (((-112) (-621 |#4|) (-621 |#4|)) 57)) (-2457 (((-112) (-621 |#4|) (-621 |#4|)) 59)) (-2473 (((-112) (-621 |#4|) (-621 |#4|)) 60)) (-3751 (((-3 (-2 (|:| -2652 (-621 |#4|)) (|:| -1981 |#5|) (|:| |ineq| (-621 |#4|))) "failed") (-621 |#4|) |#5| (-621 |#4|) (-112) (-112) (-112) (-112) (-112)) 98)) (-2587 (((-621 |#5|) (-621 |#5|)) 43)))
-(((-1074 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4164 ((-1231) (-1125) (-1125) (-1125))) (-15 -1663 ((-1231))) (-15 -1897 ((-112) |#5| |#5|)) (-15 -2587 ((-621 |#5|) (-621 |#5|))) (-15 -4282 ((-112) |#5| |#5|)) (-15 -2954 ((-112) |#5| |#5|)) (-15 -3503 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -4083 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -2457 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -2473 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -3597 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3417 ((-112) |#5| |#5|)) (-15 -3417 ((-112) |#5| (-621 |#5|))) (-15 -1382 ((-621 |#5|) (-621 |#5|))) (-15 -1346 ((-112) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|)) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|)))) (-15 -4118 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) (-15 -3954 ((-621 (-2 (|:| -2652 (-621 |#4|)) (|:| -1981 |#5|) (|:| |ineq| (-621 |#4|)))) (-621 |#4|) (-621 |#5|) (-112) (-112))) (-15 -3751 ((-3 (-2 (|:| -2652 (-621 |#4|)) (|:| -1981 |#5|) (|:| |ineq| (-621 |#4|))) "failed") (-621 |#4|) |#5| (-621 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1038 |#1| |#2| |#3| |#4|)) (T -1074))
-((-3751 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *9 (-1032 *6 *7 *8)) (-5 *2 (-2 (|:| -2652 (-621 *9)) (|:| -1981 *4) (|:| |ineq| (-621 *9)))) (-5 *1 (-1074 *6 *7 *8 *9 *4)) (-5 *3 (-621 *9)) (-4 *4 (-1038 *6 *7 *8 *9)))) (-3954 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-621 *10)) (-5 *5 (-112)) (-4 *10 (-1038 *6 *7 *8 *9)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *9 (-1032 *6 *7 *8)) (-5 *2 (-621 (-2 (|:| -2652 (-621 *9)) (|:| -1981 *10) (|:| |ineq| (-621 *9))))) (-5 *1 (-1074 *6 *7 *8 *9 *10)) (-5 *3 (-621 *9)))) (-4118 (*1 *2 *2) (-12 (-5 *2 (-621 (-2 (|:| |val| (-621 *6)) (|:| -1981 *7)))) (-4 *6 (-1032 *3 *4 *5)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-1074 *3 *4 *5 *6 *7)))) (-1346 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-621 *7)) (|:| -1981 *8))) (-4 *7 (-1032 *4 *5 *6)) (-4 *8 (-1038 *4 *5 *6 *7)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-1074 *4 *5 *6 *7 *8)))) (-1382 (*1 *2 *2) (-12 (-5 *2 (-621 *7)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *1 (-1074 *3 *4 *5 *6 *7)))) (-3417 (*1 *2 *3 *4) (-12 (-5 *4 (-621 *3)) (-4 *3 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1074 *5 *6 *7 *8 *3)))) (-3417 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1074 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-3597 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1074 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-2473 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-1074 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-2457 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-1074 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-4083 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-1074 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-3503 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-1074 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-2954 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1074 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-4282 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1074 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-2587 (*1 *2 *2) (-12 (-5 *2 (-621 *7)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *1 (-1074 *3 *4 *5 *6 *7)))) (-1897 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1074 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-1663 (*1 *2) (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1231)) (-5 *1 (-1074 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))) (-4164 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1125)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1231)) (-5 *1 (-1074 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
-(-10 -7 (-15 -4164 ((-1231) (-1125) (-1125) (-1125))) (-15 -1663 ((-1231))) (-15 -1897 ((-112) |#5| |#5|)) (-15 -2587 ((-621 |#5|) (-621 |#5|))) (-15 -4282 ((-112) |#5| |#5|)) (-15 -2954 ((-112) |#5| |#5|)) (-15 -3503 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -4083 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -2457 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -2473 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -3597 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3417 ((-112) |#5| |#5|)) (-15 -3417 ((-112) |#5| (-621 |#5|))) (-15 -1382 ((-621 |#5|) (-621 |#5|))) (-15 -1346 ((-112) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|)) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|)))) (-15 -4118 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) (-15 -3954 ((-621 (-2 (|:| -2652 (-621 |#4|)) (|:| -1981 |#5|) (|:| |ineq| (-621 |#4|)))) (-621 |#4|) (-621 |#5|) (-112) (-112))) (-15 -3751 ((-3 (-2 (|:| -2652 (-621 |#4|)) (|:| -1981 |#5|) (|:| |ineq| (-621 |#4|))) "failed") (-621 |#4|) |#5| (-621 |#4|) (-112) (-112) (-112) (-112) (-112))))
-((-1991 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#5|) 96)) (-3995 (((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) |#4| |#4| |#5|) 72)) (-1803 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5|) 91)) (-4308 (((-621 |#5|) |#4| |#5|) 110)) (-3169 (((-621 |#5|) |#4| |#5|) 117)) (-2151 (((-621 |#5|) |#4| |#5|) 118)) (-1504 (((-621 (-2 (|:| |val| (-112)) (|:| -1981 |#5|))) |#4| |#5|) 97)) (-3464 (((-621 (-2 (|:| |val| (-112)) (|:| -1981 |#5|))) |#4| |#5|) 116)) (-2446 (((-621 (-2 (|:| |val| (-112)) (|:| -1981 |#5|))) |#4| |#5|) 46) (((-112) |#4| |#5|) 53)) (-1718 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) |#3| (-112)) 84) (((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5| (-112) (-112)) 50)) (-1855 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5|) 79)) (-2283 (((-1231)) 37)) (-4066 (((-1231)) 26)) (-3847 (((-1231) (-1125) (-1125) (-1125)) 33)) (-1418 (((-1231) (-1125) (-1125) (-1125)) 22)))
-(((-1075 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1418 ((-1231) (-1125) (-1125) (-1125))) (-15 -4066 ((-1231))) (-15 -3847 ((-1231) (-1125) (-1125) (-1125))) (-15 -2283 ((-1231))) (-15 -3995 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) |#4| |#4| |#5|)) (-15 -1718 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -1718 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) |#3| (-112))) (-15 -1855 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5|)) (-15 -1803 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5|)) (-15 -2446 ((-112) |#4| |#5|)) (-15 -1504 ((-621 (-2 (|:| |val| (-112)) (|:| -1981 |#5|))) |#4| |#5|)) (-15 -4308 ((-621 |#5|) |#4| |#5|)) (-15 -3464 ((-621 (-2 (|:| |val| (-112)) (|:| -1981 |#5|))) |#4| |#5|)) (-15 -3169 ((-621 |#5|) |#4| |#5|)) (-15 -2446 ((-621 (-2 (|:| |val| (-112)) (|:| -1981 |#5|))) |#4| |#5|)) (-15 -2151 ((-621 |#5|) |#4| |#5|)) (-15 -1991 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#5|))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1038 |#1| |#2| |#3| |#4|)) (T -1075))
-((-1991 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4)))) (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-2151 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 *4)) (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-2446 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1981 *4)))) (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-3169 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 *4)) (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-3464 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1981 *4)))) (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-4308 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 *4)) (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-1504 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1981 *4)))) (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-2446 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-1803 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4)))) (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-1855 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4)))) (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-1718 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 (-2 (|:| |val| (-621 *8)) (|:| -1981 *9)))) (-5 *5 (-112)) (-4 *8 (-1032 *6 *7 *4)) (-4 *9 (-1038 *6 *7 *4 *8)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *4 (-823)) (-5 *2 (-621 (-2 (|:| |val| *8) (|:| -1981 *9)))) (-5 *1 (-1075 *6 *7 *4 *8 *9)))) (-1718 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *3 (-1032 *6 *7 *8)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4)))) (-5 *1 (-1075 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3)))) (-3995 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4)))) (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-2283 (*1 *2) (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1231)) (-5 *1 (-1075 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))) (-3847 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1125)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1231)) (-5 *1 (-1075 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-4066 (*1 *2) (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1231)) (-5 *1 (-1075 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))) (-1418 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1125)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1231)) (-5 *1 (-1075 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
-(-10 -7 (-15 -1418 ((-1231) (-1125) (-1125) (-1125))) (-15 -4066 ((-1231))) (-15 -3847 ((-1231) (-1125) (-1125) (-1125))) (-15 -2283 ((-1231))) (-15 -3995 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) |#4| |#4| |#5|)) (-15 -1718 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -1718 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) |#3| (-112))) (-15 -1855 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5|)) (-15 -1803 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#4| |#5|)) (-15 -2446 ((-112) |#4| |#5|)) (-15 -1504 ((-621 (-2 (|:| |val| (-112)) (|:| -1981 |#5|))) |#4| |#5|)) (-15 -4308 ((-621 |#5|) |#4| |#5|)) (-15 -3464 ((-621 (-2 (|:| |val| (-112)) (|:| -1981 |#5|))) |#4| |#5|)) (-15 -3169 ((-621 |#5|) |#4| |#5|)) (-15 -2446 ((-621 (-2 (|:| |val| (-112)) (|:| -1981 |#5|))) |#4| |#5|)) (-15 -2151 ((-621 |#5|) |#4| |#5|)) (-15 -1991 ((-621 (-2 (|:| |val| |#4|) (|:| -1981 |#5|))) |#4| |#5|)))
-((-3834 (((-112) $ $) 7)) (-3514 (((-621 (-2 (|:| -2681 $) (|:| -1359 (-621 |#4|)))) (-621 |#4|)) 85)) (-2866 (((-621 $) (-621 |#4|)) 86) (((-621 $) (-621 |#4|) (-112)) 111)) (-2272 (((-621 |#3|) $) 33)) (-3422 (((-112) $) 26)) (-2527 (((-112) $) 17 (|has| |#1| (-541)))) (-3282 (((-112) |#4| $) 101) (((-112) $) 97)) (-2731 ((|#4| |#4| $) 92)) (-3979 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 $))) |#4| $) 126)) (-3193 (((-2 (|:| |under| $) (|:| -3967 $) (|:| |upper| $)) $ |#3|) 27)) (-1584 (((-112) $ (-747)) 44)) (-1489 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4337))) (((-3 |#4| "failed") $ |#3|) 79)) (-1682 (($) 45 T CONST)) (-1433 (((-112) $) 22 (|has| |#1| (-541)))) (-2555 (((-112) $ $) 24 (|has| |#1| (-541)))) (-2595 (((-112) $ $) 23 (|has| |#1| (-541)))) (-2397 (((-112) $) 25 (|has| |#1| (-541)))) (-2737 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3269 (((-621 |#4|) (-621 |#4|) $) 18 (|has| |#1| (-541)))) (-2953 (((-621 |#4|) (-621 |#4|) $) 19 (|has| |#1| (-541)))) (-2714 (((-3 $ "failed") (-621 |#4|)) 36)) (-2659 (($ (-621 |#4|)) 35)) (-3657 (((-3 $ "failed") $) 82)) (-1903 ((|#4| |#4| $) 89)) (-3676 (($ $) 68 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ |#4| $) 67 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4337)))) (-3675 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-541)))) (-2217 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-3615 ((|#4| |#4| $) 87)) (-2557 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4337))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4337))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-1439 (((-2 (|:| -2681 (-621 |#4|)) (|:| -1359 (-621 |#4|))) $) 105)) (-3516 (((-112) |#4| $) 136)) (-3150 (((-112) |#4| $) 133)) (-2064 (((-112) |#4| $) 137) (((-112) $) 134)) (-2989 (((-621 |#4|) $) 52 (|has| $ (-6 -4337)))) (-2812 (((-112) |#4| $) 104) (((-112) $) 103)) (-2745 ((|#3| $) 34)) (-3194 (((-112) $ (-747)) 43)) (-1562 (((-621 |#4|) $) 53 (|has| $ (-6 -4337)))) (-2090 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#4| |#4|) $) 47)) (-2561 (((-621 |#3|) $) 32)) (-2378 (((-112) |#3| $) 31)) (-1508 (((-112) $ (-747)) 42)) (-3851 (((-1125) $) 9)) (-1878 (((-3 |#4| (-621 $)) |#4| |#4| $) 128)) (-3072 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 $))) |#4| |#4| $) 127)) (-3829 (((-3 |#4| "failed") $) 83)) (-3689 (((-621 $) |#4| $) 129)) (-1514 (((-3 (-112) (-621 $)) |#4| $) 132)) (-4184 (((-621 (-2 (|:| |val| (-112)) (|:| -1981 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-3655 (((-621 $) |#4| $) 125) (((-621 $) (-621 |#4|) $) 124) (((-621 $) (-621 |#4|) (-621 $)) 123) (((-621 $) |#4| (-621 $)) 122)) (-4283 (($ |#4| $) 117) (($ (-621 |#4|) $) 116)) (-1638 (((-621 |#4|) $) 107)) (-2170 (((-112) |#4| $) 99) (((-112) $) 95)) (-3270 ((|#4| |#4| $) 90)) (-2473 (((-112) $ $) 110)) (-4203 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-541)))) (-1335 (((-112) |#4| $) 100) (((-112) $) 96)) (-4298 ((|#4| |#4| $) 91)) (-3990 (((-1087) $) 10)) (-3646 (((-3 |#4| "failed") $) 84)) (-3779 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-2640 (((-3 $ "failed") $ |#4|) 78)) (-2763 (($ $ |#4|) 77) (((-621 $) |#4| $) 115) (((-621 $) |#4| (-621 $)) 114) (((-621 $) (-621 |#4|) $) 113) (((-621 $) (-621 |#4|) (-621 $)) 112)) (-1780 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 |#4|) (-621 |#4|)) 59 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-287 |#4|)) 57 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-621 (-287 |#4|))) 56 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))) (-4144 (((-112) $ $) 38)) (-3670 (((-112) $) 41)) (-3742 (($) 40)) (-3701 (((-747) $) 106)) (-4000 (((-747) |#4| $) 54 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) (((-747) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4337)))) (-2281 (($ $) 39)) (-2845 (((-525) $) 69 (|has| |#4| (-594 (-525))))) (-3854 (($ (-621 |#4|)) 60)) (-2858 (($ $ |#3|) 28)) (-3758 (($ $ |#3|) 30)) (-1962 (($ $) 88)) (-4317 (($ $ |#3|) 29)) (-3846 (((-834) $) 11) (((-621 |#4|) $) 37)) (-1824 (((-747) $) 76 (|has| |#3| (-361)))) (-2574 (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-1716 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) 98)) (-1518 (((-621 $) |#4| $) 121) (((-621 $) |#4| (-621 $)) 120) (((-621 $) (-621 |#4|) $) 119) (((-621 $) (-621 |#4|) (-621 $)) 118)) (-3527 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4337)))) (-3002 (((-621 |#3|) $) 81)) (-3524 (((-112) |#4| $) 135)) (-1606 (((-112) |#3| $) 80)) (-2389 (((-112) $ $) 6)) (-3775 (((-747) $) 46 (|has| $ (-6 -4337)))))
-(((-1076 |#1| |#2| |#3| |#4|) (-138) (-444) (-769) (-823) (-1032 |t#1| |t#2| |t#3|)) (T -1076))
+((-3832 (((-112) $ $) 7)) (-3776 (((-112) $) 32)) (-3943 ((|#2| $) 27)) (-3763 (((-112) $) 33)) (-1524 ((|#1| $) 28)) (-4132 (((-112) $) 35)) (-2097 (((-112) $) 37)) (-1822 (((-112) $) 34)) (-3441 (((-1124) $) 9)) (-2276 (((-112) $) 31)) (-3964 ((|#3| $) 26)) (-3988 (((-1086) $) 10)) (-4073 (((-112) $) 30)) (-1354 ((|#4| $) 25)) (-2975 ((|#5| $) 24)) (-2649 (((-112) $ $) 38)) (-3339 (($ $ (-549)) 14) (($ $ (-621 (-549))) 13)) (-2192 (((-621 $) $) 29)) (-2843 (($ (-621 $)) 23) (($ |#1|) 22) (($ |#2|) 21) (($ |#3|) 20) (($ |#4|) 19) (($ |#5|) 18)) (-3845 (((-834) $) 11)) (-3545 (($ $) 16)) (-3535 (($ $) 17)) (-4105 (((-112) $) 36)) (-2387 (((-112) $ $) 6)) (-3774 (((-549) $) 15)))
+(((-1069 |#1| |#2| |#3| |#4| |#5|) (-138) (-1066) (-1066) (-1066) (-1066) (-1066)) (T -1069))
+((-2649 (*1 *2 *1 *1) (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))) (-2097 (*1 *2 *1) (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))) (-4105 (*1 *2 *1) (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))) (-4132 (*1 *2 *1) (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))) (-1822 (*1 *2 *1) (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))) (-3763 (*1 *2 *1) (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))) (-3776 (*1 *2 *1) (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))) (-2276 (*1 *2 *1) (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))) (-4073 (*1 *2 *1) (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))) (-2192 (*1 *2 *1) (-12 (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-621 *1)) (-4 *1 (-1069 *3 *4 *5 *6 *7)))) (-1524 (*1 *2 *1) (-12 (-4 *1 (-1069 *2 *3 *4 *5 *6)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *2 (-1066)))) (-3943 (*1 *2 *1) (-12 (-4 *1 (-1069 *3 *2 *4 *5 *6)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *2 (-1066)))) (-3964 (*1 *2 *1) (-12 (-4 *1 (-1069 *3 *4 *2 *5 *6)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *2 (-1066)))) (-1354 (*1 *2 *1) (-12 (-4 *1 (-1069 *3 *4 *5 *2 *6)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *2 (-1066)))) (-2975 (*1 *2 *1) (-12 (-4 *1 (-1069 *3 *4 *5 *6 *2)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *2 (-1066)))) (-2843 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)))) (-2843 (*1 *1 *2) (-12 (-4 *1 (-1069 *2 *3 *4 *5 *6)) (-4 *2 (-1066)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)))) (-2843 (*1 *1 *2) (-12 (-4 *1 (-1069 *3 *2 *4 *5 *6)) (-4 *3 (-1066)) (-4 *2 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)))) (-2843 (*1 *1 *2) (-12 (-4 *1 (-1069 *3 *4 *2 *5 *6)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *2 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)))) (-2843 (*1 *1 *2) (-12 (-4 *1 (-1069 *3 *4 *5 *2 *6)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *2 (-1066)) (-4 *6 (-1066)))) (-2843 (*1 *1 *2) (-12 (-4 *1 (-1069 *3 *4 *5 *6 *2)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *2 (-1066)))) (-3535 (*1 *1 *1) (-12 (-4 *1 (-1069 *2 *3 *4 *5 *6)) (-4 *2 (-1066)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)))) (-3545 (*1 *1 *1) (-12 (-4 *1 (-1069 *2 *3 *4 *5 *6)) (-4 *2 (-1066)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)))) (-3774 (*1 *2 *1) (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-549)))) (-3339 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)))) (-3339 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)))))
+(-13 (-1066) (-10 -8 (-15 -2649 ((-112) $ $)) (-15 -2097 ((-112) $)) (-15 -4105 ((-112) $)) (-15 -4132 ((-112) $)) (-15 -1822 ((-112) $)) (-15 -3763 ((-112) $)) (-15 -3776 ((-112) $)) (-15 -2276 ((-112) $)) (-15 -4073 ((-112) $)) (-15 -2192 ((-621 $) $)) (-15 -1524 (|t#1| $)) (-15 -3943 (|t#2| $)) (-15 -3964 (|t#3| $)) (-15 -1354 (|t#4| $)) (-15 -2975 (|t#5| $)) (-15 -2843 ($ (-621 $))) (-15 -2843 ($ |t#1|)) (-15 -2843 ($ |t#2|)) (-15 -2843 ($ |t#3|)) (-15 -2843 ($ |t#4|)) (-15 -2843 ($ |t#5|)) (-15 -3535 ($ $)) (-15 -3545 ($ $)) (-15 -3774 ((-549) $)) (-15 -3339 ($ $ (-549))) (-15 -3339 ($ $ (-621 (-549))))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-3776 (((-112) $) NIL)) (-3943 (((-1142) $) NIL)) (-3763 (((-112) $) NIL)) (-1524 (((-1124) $) NIL)) (-4132 (((-112) $) NIL)) (-2097 (((-112) $) NIL)) (-1822 (((-112) $) NIL)) (-3441 (((-1124) $) NIL)) (-2276 (((-112) $) NIL)) (-3964 (((-549) $) NIL)) (-3988 (((-1086) $) NIL)) (-4073 (((-112) $) NIL)) (-1354 (((-219) $) NIL)) (-2975 (((-834) $) NIL)) (-2649 (((-112) $ $) NIL)) (-3339 (($ $ (-549)) NIL) (($ $ (-621 (-549))) NIL)) (-2192 (((-621 $) $) NIL)) (-2843 (($ (-621 $)) NIL) (($ (-1124)) NIL) (($ (-1142)) NIL) (($ (-549)) NIL) (($ (-219)) NIL) (($ (-834)) NIL)) (-3845 (((-834) $) NIL)) (-3545 (($ $) NIL)) (-3535 (($ $) NIL)) (-4105 (((-112) $) NIL)) (-2387 (((-112) $ $) NIL)) (-3774 (((-549) $) NIL)))
+(((-1070) (-1069 (-1124) (-1142) (-549) (-219) (-834))) (T -1070))
+NIL
+(-1069 (-1124) (-1142) (-549) (-219) (-834))
+((-3832 (((-112) $ $) NIL)) (-3776 (((-112) $) 38)) (-3943 ((|#2| $) 42)) (-3763 (((-112) $) 37)) (-1524 ((|#1| $) 41)) (-4132 (((-112) $) 35)) (-2097 (((-112) $) 14)) (-1822 (((-112) $) 36)) (-3441 (((-1124) $) NIL)) (-2276 (((-112) $) 39)) (-3964 ((|#3| $) 44)) (-3988 (((-1086) $) NIL)) (-4073 (((-112) $) 40)) (-1354 ((|#4| $) 43)) (-2975 ((|#5| $) 45)) (-2649 (((-112) $ $) 34)) (-3339 (($ $ (-549)) 56) (($ $ (-621 (-549))) 58)) (-2192 (((-621 $) $) 22)) (-2843 (($ (-621 $)) 46) (($ |#1|) 47) (($ |#2|) 48) (($ |#3|) 49) (($ |#4|) 50) (($ |#5|) 51)) (-3845 (((-834) $) 23)) (-3545 (($ $) 21)) (-3535 (($ $) 52)) (-4105 (((-112) $) 18)) (-2387 (((-112) $ $) 33)) (-3774 (((-549) $) 54)))
+(((-1071 |#1| |#2| |#3| |#4| |#5|) (-1069 |#1| |#2| |#3| |#4| |#5|) (-1066) (-1066) (-1066) (-1066) (-1066)) (T -1071))
+NIL
+(-1069 |#1| |#2| |#3| |#4| |#5|)
+((-3314 (((-1230) $) 23)) (-1318 (($ (-1142) (-427) |#2|) 11)) (-3845 (((-834) $) 16)))
+(((-1072 |#1| |#2|) (-13 (-388) (-10 -8 (-15 -1318 ($ (-1142) (-427) |#2|)))) (-823) (-423 |#1|)) (T -1072))
+((-1318 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1142)) (-5 *3 (-427)) (-4 *5 (-823)) (-5 *1 (-1072 *5 *4)) (-4 *4 (-423 *5)))))
+(-13 (-388) (-10 -8 (-15 -1318 ($ (-1142) (-427) |#2|))))
+((-1280 (((-112) |#5| |#5|) 38)) (-2502 (((-112) |#5| |#5|) 52)) (-3308 (((-112) |#5| (-621 |#5|)) 75) (((-112) |#5| |#5|) 61)) (-2410 (((-112) (-621 |#4|) (-621 |#4|)) 58)) (-1347 (((-112) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|)) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) 63)) (-1883 (((-1230)) 33)) (-2836 (((-1230) (-1124) (-1124) (-1124)) 29)) (-1679 (((-621 |#5|) (-621 |#5|)) 82)) (-2642 (((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|)))) 80)) (-1526 (((-621 (-2 (|:| -2649 (-621 |#4|)) (|:| -1979 |#5|) (|:| |ineq| (-621 |#4|)))) (-621 |#4|) (-621 |#5|) (-112) (-112)) 102)) (-3282 (((-112) |#5| |#5|) 47)) (-3332 (((-3 (-112) "failed") |#5| |#5|) 71)) (-1447 (((-112) (-621 |#4|) (-621 |#4|)) 57)) (-2277 (((-112) (-621 |#4|) (-621 |#4|)) 59)) (-3386 (((-112) (-621 |#4|) (-621 |#4|)) 60)) (-2841 (((-3 (-2 (|:| -2649 (-621 |#4|)) (|:| -1979 |#5|) (|:| |ineq| (-621 |#4|))) "failed") (-621 |#4|) |#5| (-621 |#4|) (-112) (-112) (-112) (-112) (-112)) 98)) (-1703 (((-621 |#5|) (-621 |#5|)) 43)))
+(((-1073 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2836 ((-1230) (-1124) (-1124) (-1124))) (-15 -1883 ((-1230))) (-15 -1280 ((-112) |#5| |#5|)) (-15 -1703 ((-621 |#5|) (-621 |#5|))) (-15 -3282 ((-112) |#5| |#5|)) (-15 -2502 ((-112) |#5| |#5|)) (-15 -2410 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -1447 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -2277 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -3386 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -3332 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3308 ((-112) |#5| |#5|)) (-15 -3308 ((-112) |#5| (-621 |#5|))) (-15 -1679 ((-621 |#5|) (-621 |#5|))) (-15 -1347 ((-112) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|)) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|)))) (-15 -2642 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) (-15 -1526 ((-621 (-2 (|:| -2649 (-621 |#4|)) (|:| -1979 |#5|) (|:| |ineq| (-621 |#4|)))) (-621 |#4|) (-621 |#5|) (-112) (-112))) (-15 -2841 ((-3 (-2 (|:| -2649 (-621 |#4|)) (|:| -1979 |#5|) (|:| |ineq| (-621 |#4|))) "failed") (-621 |#4|) |#5| (-621 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1038 |#1| |#2| |#3| |#4|)) (T -1073))
+((-2841 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *9 (-1032 *6 *7 *8)) (-5 *2 (-2 (|:| -2649 (-621 *9)) (|:| -1979 *4) (|:| |ineq| (-621 *9)))) (-5 *1 (-1073 *6 *7 *8 *9 *4)) (-5 *3 (-621 *9)) (-4 *4 (-1038 *6 *7 *8 *9)))) (-1526 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-621 *10)) (-5 *5 (-112)) (-4 *10 (-1038 *6 *7 *8 *9)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *9 (-1032 *6 *7 *8)) (-5 *2 (-621 (-2 (|:| -2649 (-621 *9)) (|:| -1979 *10) (|:| |ineq| (-621 *9))))) (-5 *1 (-1073 *6 *7 *8 *9 *10)) (-5 *3 (-621 *9)))) (-2642 (*1 *2 *2) (-12 (-5 *2 (-621 (-2 (|:| |val| (-621 *6)) (|:| -1979 *7)))) (-4 *6 (-1032 *3 *4 *5)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-1073 *3 *4 *5 *6 *7)))) (-1347 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-621 *7)) (|:| -1979 *8))) (-4 *7 (-1032 *4 *5 *6)) (-4 *8 (-1038 *4 *5 *6 *7)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-1073 *4 *5 *6 *7 *8)))) (-1679 (*1 *2 *2) (-12 (-5 *2 (-621 *7)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *1 (-1073 *3 *4 *5 *6 *7)))) (-3308 (*1 *2 *3 *4) (-12 (-5 *4 (-621 *3)) (-4 *3 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1073 *5 *6 *7 *8 *3)))) (-3308 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1073 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-3332 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1073 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-3386 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-1073 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-2277 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-1073 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-1447 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-1073 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-2410 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112)) (-5 *1 (-1073 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-2502 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1073 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-3282 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1073 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-1703 (*1 *2 *2) (-12 (-5 *2 (-621 *7)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *1 (-1073 *3 *4 *5 *6 *7)))) (-1280 (*1 *2 *3 *3) (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1073 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))) (-1883 (*1 *2) (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1230)) (-5 *1 (-1073 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))) (-2836 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1124)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1230)) (-5 *1 (-1073 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2836 ((-1230) (-1124) (-1124) (-1124))) (-15 -1883 ((-1230))) (-15 -1280 ((-112) |#5| |#5|)) (-15 -1703 ((-621 |#5|) (-621 |#5|))) (-15 -3282 ((-112) |#5| |#5|)) (-15 -2502 ((-112) |#5| |#5|)) (-15 -2410 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -1447 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -2277 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -3386 ((-112) (-621 |#4|) (-621 |#4|))) (-15 -3332 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3308 ((-112) |#5| |#5|)) (-15 -3308 ((-112) |#5| (-621 |#5|))) (-15 -1679 ((-621 |#5|) (-621 |#5|))) (-15 -1347 ((-112) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|)) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|)))) (-15 -2642 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) (-15 -1526 ((-621 (-2 (|:| -2649 (-621 |#4|)) (|:| -1979 |#5|) (|:| |ineq| (-621 |#4|)))) (-621 |#4|) (-621 |#5|) (-112) (-112))) (-15 -2841 ((-3 (-2 (|:| -2649 (-621 |#4|)) (|:| -1979 |#5|) (|:| |ineq| (-621 |#4|))) "failed") (-621 |#4|) |#5| (-621 |#4|) (-112) (-112) (-112) (-112) (-112))))
+((-2854 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#5|) 96)) (-3915 (((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) |#4| |#4| |#5|) 72)) (-4041 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5|) 91)) (-2615 (((-621 |#5|) |#4| |#5|) 110)) (-2867 (((-621 |#5|) |#4| |#5|) 117)) (-3963 (((-621 |#5|) |#4| |#5|) 118)) (-1604 (((-621 (-2 (|:| |val| (-112)) (|:| -1979 |#5|))) |#4| |#5|) 97)) (-3741 (((-621 (-2 (|:| |val| (-112)) (|:| -1979 |#5|))) |#4| |#5|) 116)) (-3472 (((-621 (-2 (|:| |val| (-112)) (|:| -1979 |#5|))) |#4| |#5|) 46) (((-112) |#4| |#5|) 53)) (-2794 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) |#3| (-112)) 84) (((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5| (-112) (-112)) 50)) (-3424 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5|) 79)) (-3254 (((-1230)) 37)) (-2793 (((-1230)) 26)) (-4238 (((-1230) (-1124) (-1124) (-1124)) 33)) (-2617 (((-1230) (-1124) (-1124) (-1124)) 22)))
+(((-1074 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2617 ((-1230) (-1124) (-1124) (-1124))) (-15 -2793 ((-1230))) (-15 -4238 ((-1230) (-1124) (-1124) (-1124))) (-15 -3254 ((-1230))) (-15 -3915 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) |#4| |#4| |#5|)) (-15 -2794 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2794 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) |#3| (-112))) (-15 -3424 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5|)) (-15 -4041 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5|)) (-15 -3472 ((-112) |#4| |#5|)) (-15 -1604 ((-621 (-2 (|:| |val| (-112)) (|:| -1979 |#5|))) |#4| |#5|)) (-15 -2615 ((-621 |#5|) |#4| |#5|)) (-15 -3741 ((-621 (-2 (|:| |val| (-112)) (|:| -1979 |#5|))) |#4| |#5|)) (-15 -2867 ((-621 |#5|) |#4| |#5|)) (-15 -3472 ((-621 (-2 (|:| |val| (-112)) (|:| -1979 |#5|))) |#4| |#5|)) (-15 -3963 ((-621 |#5|) |#4| |#5|)) (-15 -2854 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#5|))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1038 |#1| |#2| |#3| |#4|)) (T -1074))
+((-2854 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4)))) (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-3963 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 *4)) (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-3472 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1979 *4)))) (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-2867 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 *4)) (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-3741 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1979 *4)))) (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-2615 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 *4)) (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-1604 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1979 *4)))) (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-3472 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-4041 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4)))) (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-3424 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4)))) (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-2794 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 (-2 (|:| |val| (-621 *8)) (|:| -1979 *9)))) (-5 *5 (-112)) (-4 *8 (-1032 *6 *7 *4)) (-4 *9 (-1038 *6 *7 *4 *8)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *4 (-823)) (-5 *2 (-621 (-2 (|:| |val| *8) (|:| -1979 *9)))) (-5 *1 (-1074 *6 *7 *4 *8 *9)))) (-2794 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *3 (-1032 *6 *7 *8)) (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4)))) (-5 *1 (-1074 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3)))) (-3915 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4)))) (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))) (-3254 (*1 *2) (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1230)) (-5 *1 (-1074 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))) (-4238 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1124)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1230)) (-5 *1 (-1074 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))) (-2793 (*1 *2) (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1230)) (-5 *1 (-1074 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))) (-2617 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1124)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1230)) (-5 *1 (-1074 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2617 ((-1230) (-1124) (-1124) (-1124))) (-15 -2793 ((-1230))) (-15 -4238 ((-1230) (-1124) (-1124) (-1124))) (-15 -3254 ((-1230))) (-15 -3915 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) |#4| |#4| |#5|)) (-15 -2794 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2794 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) |#3| (-112))) (-15 -3424 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5|)) (-15 -4041 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#4| |#5|)) (-15 -3472 ((-112) |#4| |#5|)) (-15 -1604 ((-621 (-2 (|:| |val| (-112)) (|:| -1979 |#5|))) |#4| |#5|)) (-15 -2615 ((-621 |#5|) |#4| |#5|)) (-15 -3741 ((-621 (-2 (|:| |val| (-112)) (|:| -1979 |#5|))) |#4| |#5|)) (-15 -2867 ((-621 |#5|) |#4| |#5|)) (-15 -3472 ((-621 (-2 (|:| |val| (-112)) (|:| -1979 |#5|))) |#4| |#5|)) (-15 -3963 ((-621 |#5|) |#4| |#5|)) (-15 -2854 ((-621 (-2 (|:| |val| |#4|) (|:| -1979 |#5|))) |#4| |#5|)))
+((-3832 (((-112) $ $) 7)) (-4063 (((-621 (-2 (|:| -2679 $) (|:| -1358 (-621 |#4|)))) (-621 |#4|)) 85)) (-3587 (((-621 $) (-621 |#4|)) 86) (((-621 $) (-621 |#4|) (-112)) 111)) (-2270 (((-621 |#3|) $) 33)) (-3735 (((-112) $) 26)) (-2148 (((-112) $) 17 (|has| |#1| (-541)))) (-2210 (((-112) |#4| $) 101) (((-112) $) 97)) (-2156 ((|#4| |#4| $) 92)) (-3239 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 $))) |#4| $) 126)) (-3191 (((-2 (|:| |under| $) (|:| -1349 $) (|:| |upper| $)) $ |#3|) 27)) (-2850 (((-112) $ (-747)) 44)) (-1488 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4336))) (((-3 |#4| "failed") $ |#3|) 79)) (-3034 (($) 45 T CONST)) (-4291 (((-112) $) 22 (|has| |#1| (-541)))) (-1663 (((-112) $ $) 24 (|has| |#1| (-541)))) (-4226 (((-112) $ $) 23 (|has| |#1| (-541)))) (-2113 (((-112) $) 25 (|has| |#1| (-541)))) (-1409 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3480 (((-621 |#4|) (-621 |#4|) $) 18 (|has| |#1| (-541)))) (-2393 (((-621 |#4|) (-621 |#4|) $) 19 (|has| |#1| (-541)))) (-2712 (((-3 $ "failed") (-621 |#4|)) 36)) (-2657 (($ (-621 |#4|)) 35)) (-3656 (((-3 $ "failed") $) 82)) (-1852 ((|#4| |#4| $) 89)) (-3675 (($ $) 68 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ |#4| $) 67 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4336)))) (-1809 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-541)))) (-1804 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-1402 ((|#4| |#4| $) 87)) (-2556 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4336))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4336))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-3862 (((-2 (|:| -2679 (-621 |#4|)) (|:| -1358 (-621 |#4|))) $) 105)) (-4267 (((-112) |#4| $) 136)) (-2553 (((-112) |#4| $) 133)) (-3504 (((-112) |#4| $) 137) (((-112) $) 134)) (-2987 (((-621 |#4|) $) 52 (|has| $ (-6 -4336)))) (-2240 (((-112) |#4| $) 104) (((-112) $) 103)) (-2510 ((|#3| $) 34)) (-1777 (((-112) $ (-747)) 43)) (-3698 (((-621 |#4|) $) 53 (|has| $ (-6 -4336)))) (-1593 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#4| |#4|) $) 47)) (-3991 (((-621 |#3|) $) 32)) (-4192 (((-112) |#3| $) 31)) (-3942 (((-112) $ (-747)) 42)) (-3441 (((-1124) $) 9)) (-4246 (((-3 |#4| (-621 $)) |#4| |#4| $) 128)) (-3402 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 $))) |#4| |#4| $) 127)) (-3828 (((-3 |#4| "failed") $) 83)) (-2114 (((-621 $) |#4| $) 129)) (-3219 (((-3 (-112) (-621 $)) |#4| $) 132)) (-3287 (((-621 (-2 (|:| |val| (-112)) (|:| -1979 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-3869 (((-621 $) |#4| $) 125) (((-621 $) (-621 |#4|) $) 124) (((-621 $) (-621 |#4|) (-621 $)) 123) (((-621 $) |#4| (-621 $)) 122)) (-2214 (($ |#4| $) 117) (($ (-621 |#4|) $) 116)) (-1645 (((-621 |#4|) $) 107)) (-1304 (((-112) |#4| $) 99) (((-112) $) 95)) (-3603 ((|#4| |#4| $) 90)) (-3386 (((-112) $ $) 110)) (-2179 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-541)))) (-4122 (((-112) |#4| $) 100) (((-112) $) 96)) (-4244 ((|#4| |#4| $) 91)) (-3988 (((-1086) $) 10)) (-3645 (((-3 |#4| "failed") $) 84)) (-3959 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-1505 (((-3 $ "failed") $ |#4|) 78)) (-3796 (($ $ |#4|) 77) (((-621 $) |#4| $) 115) (((-621 $) |#4| (-621 $)) 114) (((-621 $) (-621 |#4|) $) 113) (((-621 $) (-621 |#4|) (-621 $)) 112)) (-3360 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 |#4|) (-621 |#4|)) 59 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-287 |#4|)) 57 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-621 (-287 |#4|))) 56 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))) (-2520 (((-112) $ $) 38)) (-2643 (((-112) $) 41)) (-3288 (($) 40)) (-3977 (((-747) $) 106)) (-3997 (((-747) |#4| $) 54 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) (((-747) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4336)))) (-2279 (($ $) 39)) (-2843 (((-525) $) 69 (|has| |#4| (-594 (-525))))) (-3853 (($ (-621 |#4|)) 60)) (-4085 (($ $ |#3|) 28)) (-2195 (($ $ |#3|) 30)) (-4292 (($ $) 88)) (-4285 (($ $ |#3|) 29)) (-3845 (((-834) $) 11) (((-621 |#4|) $) 37)) (-2503 (((-747) $) 76 (|has| |#3| (-361)))) (-2940 (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-3760 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) 98)) (-2008 (((-621 $) |#4| $) 121) (((-621 $) |#4| (-621 $)) 120) (((-621 $) (-621 |#4|) $) 119) (((-621 $) (-621 |#4|) (-621 $)) 118)) (-3025 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4336)))) (-4044 (((-621 |#3|) $) 81)) (-2930 (((-112) |#4| $) 135)) (-1993 (((-112) |#3| $) 80)) (-2387 (((-112) $ $) 6)) (-3774 (((-747) $) 46 (|has| $ (-6 -4336)))))
+(((-1075 |#1| |#2| |#3| |#4|) (-138) (-444) (-769) (-823) (-1032 |t#1| |t#2| |t#3|)) (T -1075))
NIL
(-13 (-1038 |t#1| |t#2| |t#3| |t#4|))
-(((-34) . T) ((-101) . T) ((-593 (-621 |#4|)) . T) ((-593 (-834)) . T) ((-149 |#4|) . T) ((-594 (-525)) |has| |#4| (-594 (-525))) ((-302 |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))) ((-481 |#4|) . T) ((-505 |#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))) ((-947 |#1| |#2| |#3| |#4|) . T) ((-1038 |#1| |#2| |#3| |#4|) . T) ((-1067) . T) ((-1173 |#1| |#2| |#3| |#4|) . T) ((-1180) . T))
-((-1290 (((-621 (-549)) (-549) (-549) (-549)) 22)) (-3100 (((-621 (-549)) (-549) (-549) (-549)) 12)) (-3588 (((-621 (-549)) (-549) (-549) (-549)) 18)) (-1865 (((-549) (-549) (-549)) 9)) (-2559 (((-1226 (-549)) (-621 (-549)) (-1226 (-549)) (-549)) 46) (((-1226 (-549)) (-1226 (-549)) (-1226 (-549)) (-549)) 41)) (-2480 (((-621 (-549)) (-621 (-549)) (-621 (-549)) (-112)) 28)) (-1822 (((-665 (-549)) (-621 (-549)) (-621 (-549)) (-665 (-549))) 45)) (-2279 (((-665 (-549)) (-621 (-549)) (-621 (-549))) 33)) (-2572 (((-621 (-665 (-549))) (-621 (-549))) 35)) (-2150 (((-621 (-549)) (-621 (-549)) (-621 (-549)) (-665 (-549))) 49)) (-2235 (((-665 (-549)) (-621 (-549)) (-621 (-549)) (-621 (-549))) 57)))
-(((-1077) (-10 -7 (-15 -2235 ((-665 (-549)) (-621 (-549)) (-621 (-549)) (-621 (-549)))) (-15 -2150 ((-621 (-549)) (-621 (-549)) (-621 (-549)) (-665 (-549)))) (-15 -2572 ((-621 (-665 (-549))) (-621 (-549)))) (-15 -2279 ((-665 (-549)) (-621 (-549)) (-621 (-549)))) (-15 -1822 ((-665 (-549)) (-621 (-549)) (-621 (-549)) (-665 (-549)))) (-15 -2480 ((-621 (-549)) (-621 (-549)) (-621 (-549)) (-112))) (-15 -2559 ((-1226 (-549)) (-1226 (-549)) (-1226 (-549)) (-549))) (-15 -2559 ((-1226 (-549)) (-621 (-549)) (-1226 (-549)) (-549))) (-15 -1865 ((-549) (-549) (-549))) (-15 -3588 ((-621 (-549)) (-549) (-549) (-549))) (-15 -3100 ((-621 (-549)) (-549) (-549) (-549))) (-15 -1290 ((-621 (-549)) (-549) (-549) (-549))))) (T -1077))
-((-1290 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-1077)) (-5 *3 (-549)))) (-3100 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-1077)) (-5 *3 (-549)))) (-3588 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-1077)) (-5 *3 (-549)))) (-1865 (*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1077)))) (-2559 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-1226 (-549))) (-5 *3 (-621 (-549))) (-5 *4 (-549)) (-5 *1 (-1077)))) (-2559 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-1226 (-549))) (-5 *3 (-549)) (-5 *1 (-1077)))) (-2480 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-621 (-549))) (-5 *3 (-112)) (-5 *1 (-1077)))) (-1822 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-665 (-549))) (-5 *3 (-621 (-549))) (-5 *1 (-1077)))) (-2279 (*1 *2 *3 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-665 (-549))) (-5 *1 (-1077)))) (-2572 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-621 (-665 (-549)))) (-5 *1 (-1077)))) (-2150 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-621 (-549))) (-5 *3 (-665 (-549))) (-5 *1 (-1077)))) (-2235 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-665 (-549))) (-5 *1 (-1077)))))
-(-10 -7 (-15 -2235 ((-665 (-549)) (-621 (-549)) (-621 (-549)) (-621 (-549)))) (-15 -2150 ((-621 (-549)) (-621 (-549)) (-621 (-549)) (-665 (-549)))) (-15 -2572 ((-621 (-665 (-549))) (-621 (-549)))) (-15 -2279 ((-665 (-549)) (-621 (-549)) (-621 (-549)))) (-15 -1822 ((-665 (-549)) (-621 (-549)) (-621 (-549)) (-665 (-549)))) (-15 -2480 ((-621 (-549)) (-621 (-549)) (-621 (-549)) (-112))) (-15 -2559 ((-1226 (-549)) (-1226 (-549)) (-1226 (-549)) (-549))) (-15 -2559 ((-1226 (-549)) (-621 (-549)) (-1226 (-549)) (-549))) (-15 -1865 ((-549) (-549) (-549))) (-15 -3588 ((-621 (-549)) (-549) (-549) (-549))) (-15 -3100 ((-621 (-549)) (-549) (-549) (-549))) (-15 -1290 ((-621 (-549)) (-549) (-549) (-549))))
+(((-34) . T) ((-101) . T) ((-593 (-621 |#4|)) . T) ((-593 (-834)) . T) ((-149 |#4|) . T) ((-594 (-525)) |has| |#4| (-594 (-525))) ((-302 |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))) ((-481 |#4|) . T) ((-505 |#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))) ((-947 |#1| |#2| |#3| |#4|) . T) ((-1038 |#1| |#2| |#3| |#4|) . T) ((-1066) . T) ((-1172 |#1| |#2| |#3| |#4|) . T) ((-1179) . T))
+((-1667 (((-621 (-549)) (-549) (-549) (-549)) 22)) (-3508 (((-621 (-549)) (-549) (-549) (-549)) 12)) (-3925 (((-621 (-549)) (-549) (-549) (-549)) 18)) (-2396 (((-549) (-549) (-549)) 9)) (-1968 (((-1225 (-549)) (-621 (-549)) (-1225 (-549)) (-549)) 46) (((-1225 (-549)) (-1225 (-549)) (-1225 (-549)) (-549)) 41)) (-2812 (((-621 (-549)) (-621 (-549)) (-621 (-549)) (-112)) 28)) (-2247 (((-665 (-549)) (-621 (-549)) (-621 (-549)) (-665 (-549))) 45)) (-4263 (((-665 (-549)) (-621 (-549)) (-621 (-549))) 33)) (-2770 (((-621 (-665 (-549))) (-621 (-549))) 35)) (-3871 (((-621 (-549)) (-621 (-549)) (-621 (-549)) (-665 (-549))) 49)) (-1710 (((-665 (-549)) (-621 (-549)) (-621 (-549)) (-621 (-549))) 57)))
+(((-1076) (-10 -7 (-15 -1710 ((-665 (-549)) (-621 (-549)) (-621 (-549)) (-621 (-549)))) (-15 -3871 ((-621 (-549)) (-621 (-549)) (-621 (-549)) (-665 (-549)))) (-15 -2770 ((-621 (-665 (-549))) (-621 (-549)))) (-15 -4263 ((-665 (-549)) (-621 (-549)) (-621 (-549)))) (-15 -2247 ((-665 (-549)) (-621 (-549)) (-621 (-549)) (-665 (-549)))) (-15 -2812 ((-621 (-549)) (-621 (-549)) (-621 (-549)) (-112))) (-15 -1968 ((-1225 (-549)) (-1225 (-549)) (-1225 (-549)) (-549))) (-15 -1968 ((-1225 (-549)) (-621 (-549)) (-1225 (-549)) (-549))) (-15 -2396 ((-549) (-549) (-549))) (-15 -3925 ((-621 (-549)) (-549) (-549) (-549))) (-15 -3508 ((-621 (-549)) (-549) (-549) (-549))) (-15 -1667 ((-621 (-549)) (-549) (-549) (-549))))) (T -1076))
+((-1667 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-1076)) (-5 *3 (-549)))) (-3508 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-1076)) (-5 *3 (-549)))) (-3925 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-1076)) (-5 *3 (-549)))) (-2396 (*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1076)))) (-1968 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-1225 (-549))) (-5 *3 (-621 (-549))) (-5 *4 (-549)) (-5 *1 (-1076)))) (-1968 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-1225 (-549))) (-5 *3 (-549)) (-5 *1 (-1076)))) (-2812 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-621 (-549))) (-5 *3 (-112)) (-5 *1 (-1076)))) (-2247 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-665 (-549))) (-5 *3 (-621 (-549))) (-5 *1 (-1076)))) (-4263 (*1 *2 *3 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-665 (-549))) (-5 *1 (-1076)))) (-2770 (*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-621 (-665 (-549)))) (-5 *1 (-1076)))) (-3871 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-621 (-549))) (-5 *3 (-665 (-549))) (-5 *1 (-1076)))) (-1710 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-665 (-549))) (-5 *1 (-1076)))))
+(-10 -7 (-15 -1710 ((-665 (-549)) (-621 (-549)) (-621 (-549)) (-621 (-549)))) (-15 -3871 ((-621 (-549)) (-621 (-549)) (-621 (-549)) (-665 (-549)))) (-15 -2770 ((-621 (-665 (-549))) (-621 (-549)))) (-15 -4263 ((-665 (-549)) (-621 (-549)) (-621 (-549)))) (-15 -2247 ((-665 (-549)) (-621 (-549)) (-621 (-549)) (-665 (-549)))) (-15 -2812 ((-621 (-549)) (-621 (-549)) (-621 (-549)) (-112))) (-15 -1968 ((-1225 (-549)) (-1225 (-549)) (-1225 (-549)) (-549))) (-15 -1968 ((-1225 (-549)) (-621 (-549)) (-1225 (-549)) (-549))) (-15 -2396 ((-549) (-549) (-549))) (-15 -3925 ((-621 (-549)) (-549) (-549) (-549))) (-15 -3508 ((-621 (-549)) (-549) (-549) (-549))) (-15 -1667 ((-621 (-549)) (-549) (-549) (-549))))
((** (($ $ (-892)) 10)))
-(((-1078 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-892)))) (-1079)) (T -1078))
+(((-1077 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-892)))) (-1078)) (T -1077))
NIL
(-10 -8 (-15 ** (|#1| |#1| (-892))))
-((-3834 (((-112) $ $) 7)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-2389 (((-112) $ $) 6)) (** (($ $ (-892)) 13)) (* (($ $ $) 14)))
-(((-1079) (-138)) (T -1079))
-((* (*1 *1 *1 *1) (-4 *1 (-1079))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1079)) (-5 *2 (-892)))))
-(-13 (-1067) (-10 -8 (-15 * ($ $ $)) (-15 ** ($ $ (-892)))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL (|has| |#3| (-1067)))) (-1763 (((-112) $) NIL (|has| |#3| (-130)))) (-3956 (($ (-892)) NIL (|has| |#3| (-1018)))) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-2861 (($ $ $) NIL (|has| |#3| (-769)))) (-2001 (((-3 $ "failed") $ $) NIL (|has| |#3| (-130)))) (-1584 (((-112) $ (-747)) NIL)) (-3614 (((-747)) NIL (|has| |#3| (-361)))) (-1872 (((-549) $) NIL (|has| |#3| (-821)))) (-2254 ((|#3| $ (-549) |#3|) NIL (|has| $ (-6 -4338)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL (-12 (|has| |#3| (-1009 (-549))) (|has| |#3| (-1067)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| |#3| (-1009 (-400 (-549)))) (|has| |#3| (-1067)))) (((-3 |#3| "failed") $) NIL (|has| |#3| (-1067)))) (-2659 (((-549) $) NIL (-12 (|has| |#3| (-1009 (-549))) (|has| |#3| (-1067)))) (((-400 (-549)) $) NIL (-12 (|has| |#3| (-1009 (-400 (-549)))) (|has| |#3| (-1067)))) ((|#3| $) NIL (|has| |#3| (-1067)))) (-3879 (((-665 (-549)) (-665 $)) NIL (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018)))) (((-2 (|:| -3521 (-665 |#3|)) (|:| |vec| (-1226 |#3|))) (-665 $) (-1226 $)) NIL (|has| |#3| (-1018))) (((-665 |#3|) (-665 $)) NIL (|has| |#3| (-1018)))) (-2114 (((-3 $ "failed") $) NIL (|has| |#3| (-703)))) (-3239 (($) NIL (|has| |#3| (-361)))) (-1879 ((|#3| $ (-549) |#3|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#3| $ (-549)) 12)) (-2772 (((-112) $) NIL (|has| |#3| (-821)))) (-2989 (((-621 |#3|) $) NIL (|has| $ (-6 -4337)))) (-2675 (((-112) $) NIL (|has| |#3| (-703)))) (-2374 (((-112) $) NIL (|has| |#3| (-821)))) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) NIL (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-1562 (((-621 |#3|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#3| (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-1868 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#3| |#3|) $) NIL)) (-1881 (((-892) $) NIL (|has| |#3| (-361)))) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#3| (-1067)))) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3493 (($ (-892)) NIL (|has| |#3| (-361)))) (-3990 (((-1087) $) NIL (|has| |#3| (-1067)))) (-3646 ((|#3| $) NIL (|has| (-549) (-823)))) (-1642 (($ $ |#3|) NIL (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#3|))) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067)))) (($ $ (-287 |#3|)) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067)))) (($ $ (-621 |#3|) (-621 |#3|)) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#3| (-1067))))) (-2696 (((-621 |#3|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#3| $ (-549) |#3|) NIL) ((|#3| $ (-549)) NIL)) (-1706 ((|#3| $ $) NIL (|has| |#3| (-1018)))) (-2169 (($ (-1226 |#3|)) NIL)) (-2985 (((-133)) NIL (|has| |#3| (-356)))) (-3456 (($ $) NIL (-12 (|has| |#3| (-227)) (|has| |#3| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#3| (-227)) (|has| |#3| (-1018)))) (($ $ (-1143)) NIL (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))) (($ $ (-1 |#3| |#3|) (-747)) NIL (|has| |#3| (-1018))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1018)))) (-4000 (((-747) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4337))) (((-747) |#3| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#3| (-1067))))) (-2281 (($ $) NIL)) (-3846 (((-1226 |#3|) $) NIL) (($ (-549)) NIL (-1536 (-12 (|has| |#3| (-1009 (-549))) (|has| |#3| (-1067))) (|has| |#3| (-1018)))) (($ (-400 (-549))) NIL (-12 (|has| |#3| (-1009 (-400 (-549)))) (|has| |#3| (-1067)))) (($ |#3|) NIL (|has| |#3| (-1067))) (((-834) $) NIL (|has| |#3| (-593 (-834))))) (-2082 (((-747)) NIL (|has| |#3| (-1018)))) (-3527 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4337)))) (-3212 (($ $) NIL (|has| |#3| (-821)))) (-3276 (($) NIL (|has| |#3| (-130)) CONST)) (-3287 (($) NIL (|has| |#3| (-703)) CONST)) (-1702 (($ $) NIL (-12 (|has| |#3| (-227)) (|has| |#3| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#3| (-227)) (|has| |#3| (-1018)))) (($ $ (-1143)) NIL (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#3| (-871 (-1143))) (|has| |#3| (-1018)))) (($ $ (-1 |#3| |#3|) (-747)) NIL (|has| |#3| (-1018))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1018)))) (-2448 (((-112) $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-2425 (((-112) $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-2389 (((-112) $ $) NIL (|has| |#3| (-1067)))) (-2438 (((-112) $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-2412 (((-112) $ $) 17 (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-2513 (($ $ |#3|) NIL (|has| |#3| (-356)))) (-2500 (($ $ $) NIL (|has| |#3| (-1018))) (($ $) NIL (|has| |#3| (-1018)))) (-2486 (($ $ $) NIL (|has| |#3| (-25)))) (** (($ $ (-747)) NIL (|has| |#3| (-703))) (($ $ (-892)) NIL (|has| |#3| (-703)))) (* (($ (-549) $) NIL (|has| |#3| (-1018))) (($ $ $) NIL (|has| |#3| (-703))) (($ $ |#3|) NIL (|has| |#3| (-703))) (($ |#3| $) NIL (|has| |#3| (-703))) (($ (-747) $) NIL (|has| |#3| (-130))) (($ (-892) $) NIL (|has| |#3| (-25)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-1080 |#1| |#2| |#3|) (-232 |#1| |#3|) (-747) (-747) (-769)) (T -1080))
+((-3832 (((-112) $ $) 7)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-2387 (((-112) $ $) 6)) (** (($ $ (-892)) 13)) (* (($ $ $) 14)))
+(((-1078) (-138)) (T -1078))
+((* (*1 *1 *1 *1) (-4 *1 (-1078))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1078)) (-5 *2 (-892)))))
+(-13 (-1066) (-10 -8 (-15 * ($ $ $)) (-15 ** ($ $ (-892)))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL (|has| |#3| (-1066)))) (-3210 (((-112) $) NIL (|has| |#3| (-130)))) (-1627 (($ (-892)) NIL (|has| |#3| (-1018)))) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-4280 (($ $ $) NIL (|has| |#3| (-769)))) (-2416 (((-3 $ "failed") $ $) NIL (|has| |#3| (-130)))) (-2850 (((-112) $ (-747)) NIL)) (-3614 (((-747)) NIL (|has| |#3| (-361)))) (-1741 (((-549) $) NIL (|has| |#3| (-821)))) (-2250 ((|#3| $ (-549) |#3|) NIL (|has| $ (-6 -4337)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL (-12 (|has| |#3| (-1009 (-549))) (|has| |#3| (-1066)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| |#3| (-1009 (-400 (-549)))) (|has| |#3| (-1066)))) (((-3 |#3| "failed") $) NIL (|has| |#3| (-1066)))) (-2657 (((-549) $) NIL (-12 (|has| |#3| (-1009 (-549))) (|has| |#3| (-1066)))) (((-400 (-549)) $) NIL (-12 (|has| |#3| (-1009 (-400 (-549)))) (|has| |#3| (-1066)))) ((|#3| $) NIL (|has| |#3| (-1066)))) (-3446 (((-665 (-549)) (-665 $)) NIL (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (-12 (|has| |#3| (-617 (-549))) (|has| |#3| (-1018)))) (((-2 (|:| -3697 (-665 |#3|)) (|:| |vec| (-1225 |#3|))) (-665 $) (-1225 $)) NIL (|has| |#3| (-1018))) (((-665 |#3|) (-665 $)) NIL (|has| |#3| (-1018)))) (-2612 (((-3 $ "failed") $) NIL (|has| |#3| (-703)))) (-3237 (($) NIL (|has| |#3| (-361)))) (-1875 ((|#3| $ (-549) |#3|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#3| $ (-549)) 12)) (-2357 (((-112) $) NIL (|has| |#3| (-821)))) (-2987 (((-621 |#3|) $) NIL (|has| $ (-6 -4336)))) (-2297 (((-112) $) NIL (|has| |#3| (-703)))) (-1992 (((-112) $) NIL (|has| |#3| (-821)))) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) NIL (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-3698 (((-621 |#3|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#3| (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-1864 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#3| |#3|) $) NIL)) (-3309 (((-892) $) NIL (|has| |#3| (-361)))) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#3| (-1066)))) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3494 (($ (-892)) NIL (|has| |#3| (-361)))) (-3988 (((-1086) $) NIL (|has| |#3| (-1066)))) (-3645 ((|#3| $) NIL (|has| (-549) (-823)))) (-1943 (($ $ |#3|) NIL (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#3|))) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066)))) (($ $ (-287 |#3|)) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066)))) (($ $ (-621 |#3|) (-621 |#3|)) NIL (-12 (|has| |#3| (-302 |#3|)) (|has| |#3| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#3| (-1066))))) (-3347 (((-621 |#3|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#3| $ (-549) |#3|) NIL) ((|#3| $ (-549)) NIL)) (-1283 ((|#3| $ $) NIL (|has| |#3| (-1018)))) (-2167 (($ (-1225 |#3|)) NIL)) (-2260 (((-133)) NIL (|has| |#3| (-356)))) (-3455 (($ $) NIL (-12 (|has| |#3| (-227)) (|has| |#3| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#3| (-227)) (|has| |#3| (-1018)))) (($ $ (-1142)) NIL (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))) (($ $ (-1 |#3| |#3|) (-747)) NIL (|has| |#3| (-1018))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1018)))) (-3997 (((-747) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4336))) (((-747) |#3| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#3| (-1066))))) (-2279 (($ $) NIL)) (-3845 (((-1225 |#3|) $) NIL) (($ (-549)) NIL (-1536 (-12 (|has| |#3| (-1009 (-549))) (|has| |#3| (-1066))) (|has| |#3| (-1018)))) (($ (-400 (-549))) NIL (-12 (|has| |#3| (-1009 (-400 (-549)))) (|has| |#3| (-1066)))) (($ |#3|) NIL (|has| |#3| (-1066))) (((-834) $) NIL (|has| |#3| (-593 (-834))))) (-2371 (((-747)) NIL (|has| |#3| (-1018)))) (-3025 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4336)))) (-2199 (($ $) NIL (|has| |#3| (-821)))) (-3274 (($) NIL (|has| |#3| (-130)) CONST)) (-3286 (($) NIL (|has| |#3| (-703)) CONST)) (-1699 (($ $) NIL (-12 (|has| |#3| (-227)) (|has| |#3| (-1018)))) (($ $ (-747)) NIL (-12 (|has| |#3| (-227)) (|has| |#3| (-1018)))) (($ $ (-1142)) NIL (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#3| (-871 (-1142))) (|has| |#3| (-1018)))) (($ $ (-1 |#3| |#3|) (-747)) NIL (|has| |#3| (-1018))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1018)))) (-2447 (((-112) $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-2423 (((-112) $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-2387 (((-112) $ $) NIL (|has| |#3| (-1066)))) (-2436 (((-112) $ $) NIL (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-2409 (((-112) $ $) 17 (-1536 (|has| |#3| (-769)) (|has| |#3| (-821))))) (-2511 (($ $ |#3|) NIL (|has| |#3| (-356)))) (-2498 (($ $ $) NIL (|has| |#3| (-1018))) (($ $) NIL (|has| |#3| (-1018)))) (-2484 (($ $ $) NIL (|has| |#3| (-25)))) (** (($ $ (-747)) NIL (|has| |#3| (-703))) (($ $ (-892)) NIL (|has| |#3| (-703)))) (* (($ (-549) $) NIL (|has| |#3| (-1018))) (($ $ $) NIL (|has| |#3| (-703))) (($ $ |#3|) NIL (|has| |#3| (-703))) (($ |#3| $) NIL (|has| |#3| (-703))) (($ (-747) $) NIL (|has| |#3| (-130))) (($ (-892) $) NIL (|has| |#3| (-25)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-1079 |#1| |#2| |#3|) (-232 |#1| |#3|) (-747) (-747) (-769)) (T -1079))
NIL
(-232 |#1| |#3|)
-((-2364 (((-621 (-1199 |#2| |#1|)) (-1199 |#2| |#1|) (-1199 |#2| |#1|)) 37)) (-2361 (((-549) (-1199 |#2| |#1|)) 69 (|has| |#1| (-444)))) (-3041 (((-549) (-1199 |#2| |#1|)) 54)) (-4260 (((-621 (-1199 |#2| |#1|)) (-1199 |#2| |#1|) (-1199 |#2| |#1|)) 45)) (-3917 (((-549) (-1199 |#2| |#1|) (-1199 |#2| |#1|)) 68 (|has| |#1| (-444)))) (-3626 (((-621 |#1|) (-1199 |#2| |#1|) (-1199 |#2| |#1|)) 48)) (-2122 (((-549) (-1199 |#2| |#1|) (-1199 |#2| |#1|)) 53)))
-(((-1081 |#1| |#2|) (-10 -7 (-15 -2364 ((-621 (-1199 |#2| |#1|)) (-1199 |#2| |#1|) (-1199 |#2| |#1|))) (-15 -4260 ((-621 (-1199 |#2| |#1|)) (-1199 |#2| |#1|) (-1199 |#2| |#1|))) (-15 -3626 ((-621 |#1|) (-1199 |#2| |#1|) (-1199 |#2| |#1|))) (-15 -2122 ((-549) (-1199 |#2| |#1|) (-1199 |#2| |#1|))) (-15 -3041 ((-549) (-1199 |#2| |#1|))) (IF (|has| |#1| (-444)) (PROGN (-15 -3917 ((-549) (-1199 |#2| |#1|) (-1199 |#2| |#1|))) (-15 -2361 ((-549) (-1199 |#2| |#1|)))) |%noBranch|)) (-796) (-1143)) (T -1081))
-((-2361 (*1 *2 *3) (-12 (-5 *3 (-1199 *5 *4)) (-4 *4 (-444)) (-4 *4 (-796)) (-14 *5 (-1143)) (-5 *2 (-549)) (-5 *1 (-1081 *4 *5)))) (-3917 (*1 *2 *3 *3) (-12 (-5 *3 (-1199 *5 *4)) (-4 *4 (-444)) (-4 *4 (-796)) (-14 *5 (-1143)) (-5 *2 (-549)) (-5 *1 (-1081 *4 *5)))) (-3041 (*1 *2 *3) (-12 (-5 *3 (-1199 *5 *4)) (-4 *4 (-796)) (-14 *5 (-1143)) (-5 *2 (-549)) (-5 *1 (-1081 *4 *5)))) (-2122 (*1 *2 *3 *3) (-12 (-5 *3 (-1199 *5 *4)) (-4 *4 (-796)) (-14 *5 (-1143)) (-5 *2 (-549)) (-5 *1 (-1081 *4 *5)))) (-3626 (*1 *2 *3 *3) (-12 (-5 *3 (-1199 *5 *4)) (-4 *4 (-796)) (-14 *5 (-1143)) (-5 *2 (-621 *4)) (-5 *1 (-1081 *4 *5)))) (-4260 (*1 *2 *3 *3) (-12 (-4 *4 (-796)) (-14 *5 (-1143)) (-5 *2 (-621 (-1199 *5 *4))) (-5 *1 (-1081 *4 *5)) (-5 *3 (-1199 *5 *4)))) (-2364 (*1 *2 *3 *3) (-12 (-4 *4 (-796)) (-14 *5 (-1143)) (-5 *2 (-621 (-1199 *5 *4))) (-5 *1 (-1081 *4 *5)) (-5 *3 (-1199 *5 *4)))))
-(-10 -7 (-15 -2364 ((-621 (-1199 |#2| |#1|)) (-1199 |#2| |#1|) (-1199 |#2| |#1|))) (-15 -4260 ((-621 (-1199 |#2| |#1|)) (-1199 |#2| |#1|) (-1199 |#2| |#1|))) (-15 -3626 ((-621 |#1|) (-1199 |#2| |#1|) (-1199 |#2| |#1|))) (-15 -2122 ((-549) (-1199 |#2| |#1|) (-1199 |#2| |#1|))) (-15 -3041 ((-549) (-1199 |#2| |#1|))) (IF (|has| |#1| (-444)) (PROGN (-15 -3917 ((-549) (-1199 |#2| |#1|) (-1199 |#2| |#1|))) (-15 -2361 ((-549) (-1199 |#2| |#1|)))) |%noBranch|))
-((-3834 (((-112) $ $) NIL)) (-2966 (($ (-497) (-1085)) 14)) (-3986 (((-1085) $) 20)) (-2481 (((-497) $) 17)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-1082) (-13 (-1050) (-10 -8 (-15 -2966 ($ (-497) (-1085))) (-15 -2481 ((-497) $)) (-15 -3986 ((-1085) $))))) (T -1082))
-((-2966 (*1 *1 *2 *3) (-12 (-5 *2 (-497)) (-5 *3 (-1085)) (-5 *1 (-1082)))) (-2481 (*1 *2 *1) (-12 (-5 *2 (-497)) (-5 *1 (-1082)))) (-3986 (*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-1082)))))
-(-13 (-1050) (-10 -8 (-15 -2966 ($ (-497) (-1085))) (-15 -2481 ((-497) $)) (-15 -3986 ((-1085) $))))
-((-1872 (((-3 (-549) "failed") |#2| (-1143) |#2| (-1125)) 17) (((-3 (-549) "failed") |#2| (-1143) (-816 |#2|)) 15) (((-3 (-549) "failed") |#2|) 54)))
-(((-1083 |#1| |#2|) (-10 -7 (-15 -1872 ((-3 (-549) "failed") |#2|)) (-15 -1872 ((-3 (-549) "failed") |#2| (-1143) (-816 |#2|))) (-15 -1872 ((-3 (-549) "failed") |#2| (-1143) |#2| (-1125)))) (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)) (-444)) (-13 (-27) (-1165) (-423 |#1|))) (T -1083))
-((-1872 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-1143)) (-5 *5 (-1125)) (-4 *6 (-13 (-541) (-823) (-1009 *2) (-617 *2) (-444))) (-5 *2 (-549)) (-5 *1 (-1083 *6 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *6))))) (-1872 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1143)) (-5 *5 (-816 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *6))) (-4 *6 (-13 (-541) (-823) (-1009 *2) (-617 *2) (-444))) (-5 *2 (-549)) (-5 *1 (-1083 *6 *3)))) (-1872 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-541) (-823) (-1009 *2) (-617 *2) (-444))) (-5 *2 (-549)) (-5 *1 (-1083 *4 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *4))))))
-(-10 -7 (-15 -1872 ((-3 (-549) "failed") |#2|)) (-15 -1872 ((-3 (-549) "failed") |#2| (-1143) (-816 |#2|))) (-15 -1872 ((-3 (-549) "failed") |#2| (-1143) |#2| (-1125))))
-((-1872 (((-3 (-549) "failed") (-400 (-923 |#1|)) (-1143) (-400 (-923 |#1|)) (-1125)) 35) (((-3 (-549) "failed") (-400 (-923 |#1|)) (-1143) (-816 (-400 (-923 |#1|)))) 30) (((-3 (-549) "failed") (-400 (-923 |#1|))) 13)))
-(((-1084 |#1|) (-10 -7 (-15 -1872 ((-3 (-549) "failed") (-400 (-923 |#1|)))) (-15 -1872 ((-3 (-549) "failed") (-400 (-923 |#1|)) (-1143) (-816 (-400 (-923 |#1|))))) (-15 -1872 ((-3 (-549) "failed") (-400 (-923 |#1|)) (-1143) (-400 (-923 |#1|)) (-1125)))) (-444)) (T -1084))
-((-1872 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-400 (-923 *6))) (-5 *4 (-1143)) (-5 *5 (-1125)) (-4 *6 (-444)) (-5 *2 (-549)) (-5 *1 (-1084 *6)))) (-1872 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1143)) (-5 *5 (-816 (-400 (-923 *6)))) (-5 *3 (-400 (-923 *6))) (-4 *6 (-444)) (-5 *2 (-549)) (-5 *1 (-1084 *6)))) (-1872 (*1 *2 *3) (|partial| -12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-444)) (-5 *2 (-549)) (-5 *1 (-1084 *4)))))
-(-10 -7 (-15 -1872 ((-3 (-549) "failed") (-400 (-923 |#1|)))) (-15 -1872 ((-3 (-549) "failed") (-400 (-923 |#1|)) (-1143) (-816 (-400 (-923 |#1|))))) (-15 -1872 ((-3 (-549) "failed") (-400 (-923 |#1|)) (-1143) (-400 (-923 |#1|)) (-1125))))
-((-3834 (((-112) $ $) NIL)) (-2100 (((-1148) $) 10)) (-3224 (((-621 (-1148)) $) 11)) (-3986 (($ (-621 (-1148)) (-1148)) 9)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 20)) (-2389 (((-112) $ $) 14)))
-(((-1085) (-13 (-1067) (-10 -8 (-15 -3986 ($ (-621 (-1148)) (-1148))) (-15 -2100 ((-1148) $)) (-15 -3224 ((-621 (-1148)) $))))) (T -1085))
-((-3986 (*1 *1 *2 *3) (-12 (-5 *2 (-621 (-1148))) (-5 *3 (-1148)) (-5 *1 (-1085)))) (-2100 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1085)))) (-3224 (*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-1085)))))
-(-13 (-1067) (-10 -8 (-15 -3986 ($ (-621 (-1148)) (-1148))) (-15 -2100 ((-1148) $)) (-15 -3224 ((-621 (-1148)) $))))
-((-4038 (((-309 (-549)) (-48)) 12)))
-(((-1086) (-10 -7 (-15 -4038 ((-309 (-549)) (-48))))) (T -1086))
-((-4038 (*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-309 (-549))) (-5 *1 (-1086)))))
-(-10 -7 (-15 -4038 ((-309 (-549)) (-48))))
-((-3834 (((-112) $ $) NIL)) (-1340 (($ $) 41)) (-1763 (((-112) $) 65)) (-2464 (($ $ $) 48)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 86)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2831 (($ $ $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3332 (($ $ $ $) 75)) (-3979 (($ $) NIL)) (-2402 (((-411 $) $) NIL)) (-3866 (((-112) $ $) NIL)) (-1872 (((-549) $) NIL)) (-1310 (($ $ $) 72)) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL)) (-2659 (((-549) $) NIL)) (-2095 (($ $ $) 59)) (-3879 (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 80) (((-665 (-549)) (-665 $)) 28)) (-2114 (((-3 $ "failed") $) NIL)) (-3405 (((-3 (-400 (-549)) "failed") $) NIL)) (-3679 (((-112) $) NIL)) (-2532 (((-400 (-549)) $) NIL)) (-3239 (($) 83) (($ $) 84)) (-2067 (($ $ $) 58)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL)) (-1420 (((-112) $) NIL)) (-3806 (($ $ $ $) NIL)) (-3947 (($ $ $) 81)) (-2772 (((-112) $) NIL)) (-1271 (($ $ $) NIL)) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL)) (-2675 (((-112) $) 66)) (-3559 (((-112) $) 64)) (-4008 (($ $) 42)) (-1681 (((-3 $ "failed") $) NIL)) (-2374 (((-112) $) 76)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3030 (($ $ $ $) 73)) (-2863 (($ $ $) 68) (($) 39)) (-3575 (($ $ $) 67) (($) 38)) (-2433 (($ $) NIL)) (-4210 (($ $) 71)) (-3697 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3851 (((-1125) $) NIL)) (-2950 (($ $ $) NIL)) (-3060 (($) NIL T CONST)) (-3781 (($ $) 50)) (-3990 (((-1087) $) 70)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL)) (-3727 (($ $ $) 62) (($ (-621 $)) NIL)) (-4005 (($ $) NIL)) (-2121 (((-411 $) $) NIL)) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL)) (-2042 (((-3 $ "failed") $ $) NIL)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-3450 (((-112) $) NIL)) (-3684 (((-747) $) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 61)) (-3456 (($ $ (-747)) NIL) (($ $) NIL)) (-1900 (($ $) 51)) (-2281 (($ $) NIL)) (-2845 (((-549) $) 32) (((-525) $) NIL) (((-863 (-549)) $) NIL) (((-372) $) NIL) (((-219) $) NIL)) (-3846 (((-834) $) 31) (($ (-549)) 82) (($ $) NIL) (($ (-549)) 82)) (-2082 (((-747)) NIL)) (-3935 (((-112) $ $) NIL)) (-3179 (($ $ $) NIL)) (-1864 (($) 37)) (-1498 (((-112) $ $) NIL)) (-3610 (($ $ $ $) 74)) (-3212 (($ $) 63)) (-3708 (($ $ $) 44)) (-3276 (($) 35 T CONST)) (-3799 (($ $ $) 47)) (-3287 (($) 36 T CONST)) (-4245 (((-1125) $) 21) (((-1125) $ (-112)) 23) (((-1231) (-798) $) 24) (((-1231) (-798) $ (-112)) 25)) (-3809 (($ $) 45)) (-1702 (($ $ (-747)) NIL) (($ $) NIL)) (-3789 (($ $ $) 46)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 40)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 49)) (-3695 (($ $ $) 43)) (-2500 (($ $) 52) (($ $ $) 54)) (-2486 (($ $ $) 53)) (** (($ $ (-892)) NIL) (($ $ (-747)) 57)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 34) (($ $ $) 55)))
-(((-1087) (-13 (-534) (-637) (-804) (-10 -8 (-6 -4324) (-6 -4329) (-6 -4325) (-15 -3575 ($)) (-15 -2863 ($)) (-15 -4008 ($ $)) (-15 -1340 ($ $)) (-15 -3695 ($ $ $)) (-15 -3708 ($ $ $)) (-15 -2464 ($ $ $)) (-15 -3809 ($ $)) (-15 -3789 ($ $ $)) (-15 -3799 ($ $ $))))) (T -1087))
-((-3708 (*1 *1 *1 *1) (-5 *1 (-1087))) (-3695 (*1 *1 *1 *1) (-5 *1 (-1087))) (-1340 (*1 *1 *1) (-5 *1 (-1087))) (-3575 (*1 *1) (-5 *1 (-1087))) (-2863 (*1 *1) (-5 *1 (-1087))) (-4008 (*1 *1 *1) (-5 *1 (-1087))) (-2464 (*1 *1 *1 *1) (-5 *1 (-1087))) (-3809 (*1 *1 *1) (-5 *1 (-1087))) (-3789 (*1 *1 *1 *1) (-5 *1 (-1087))) (-3799 (*1 *1 *1 *1) (-5 *1 (-1087))))
-(-13 (-534) (-637) (-804) (-10 -8 (-6 -4324) (-6 -4329) (-6 -4325) (-15 -3575 ($)) (-15 -2863 ($)) (-15 -4008 ($ $)) (-15 -1340 ($ $)) (-15 -3695 ($ $ $)) (-15 -3708 ($ $ $)) (-15 -2464 ($ $ $)) (-15 -3809 ($ $)) (-15 -3789 ($ $ $)) (-15 -3799 ($ $ $))))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-2317 ((|#1| $) 44)) (-1584 (((-112) $ (-747)) 8)) (-1682 (($) 7 T CONST)) (-3204 ((|#1| |#1| $) 46)) (-1350 ((|#1| $) 45)) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) 9)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3504 ((|#1| $) 39)) (-2751 (($ |#1| $) 40)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-3325 ((|#1| $) 41)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-1321 (((-747) $) 43)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3624 (($ (-621 |#1|)) 42)) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-1088 |#1|) (-138) (-1180)) (T -1088))
-((-3204 (*1 *2 *2 *1) (-12 (-4 *1 (-1088 *2)) (-4 *2 (-1180)))) (-1350 (*1 *2 *1) (-12 (-4 *1 (-1088 *2)) (-4 *2 (-1180)))) (-2317 (*1 *2 *1) (-12 (-4 *1 (-1088 *2)) (-4 *2 (-1180)))) (-1321 (*1 *2 *1) (-12 (-4 *1 (-1088 *3)) (-4 *3 (-1180)) (-5 *2 (-747)))))
-(-13 (-106 |t#1|) (-10 -8 (-6 -4337) (-15 -3204 (|t#1| |t#1| $)) (-15 -1350 (|t#1| $)) (-15 -2317 (|t#1| $)) (-15 -1321 ((-747) $))))
-(((-34) . T) ((-106 |#1|) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-1067) |has| |#1| (-1067)) ((-1180) . T))
-((-2906 ((|#3| $) 76)) (-2714 (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 |#3| "failed") $) 40)) (-2659 (((-549) $) NIL) (((-400 (-549)) $) NIL) ((|#3| $) 37)) (-3879 (((-665 (-549)) (-665 $)) NIL) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL) (((-2 (|:| -3521 (-665 |#3|)) (|:| |vec| (-1226 |#3|))) (-665 $) (-1226 $)) 73) (((-665 |#3|) (-665 $)) 65)) (-3456 (($ $ (-1 |#3| |#3|)) 19) (($ $ (-1 |#3| |#3|) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143)) NIL) (($ $ (-747)) NIL) (($ $) NIL)) (-3136 ((|#3| $) 78)) (-2081 ((|#4| $) 32)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ (-400 (-549))) NIL) (($ |#3|) 16)) (** (($ $ (-892)) NIL) (($ $ (-747)) 15) (($ $ (-549)) 82)))
-(((-1089 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 ** (|#1| |#1| (-549))) (-15 -3136 (|#3| |#1|)) (-15 -2906 (|#3| |#1|)) (-15 -2081 (|#4| |#1|)) (-15 -3879 ((-665 |#3|) (-665 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 |#3|)) (|:| |vec| (-1226 |#3|))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-665 (-549)) (-665 |#1|))) (-15 -2659 (|#3| |#1|)) (-15 -2714 ((-3 |#3| "failed") |#1|)) (-15 -3846 (|#1| |#3|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -3456 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3456 (|#1| |#1| (-1 |#3| |#3|) (-747))) (-15 -3456 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3846 (|#1| (-549))) (-15 ** (|#1| |#1| (-747))) (-15 ** (|#1| |#1| (-892))) (-15 -3846 ((-834) |#1|))) (-1090 |#2| |#3| |#4| |#5|) (-747) (-1018) (-232 |#2| |#3|) (-232 |#2| |#3|)) (T -1089))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-549))) (-15 -3136 (|#3| |#1|)) (-15 -2906 (|#3| |#1|)) (-15 -2081 (|#4| |#1|)) (-15 -3879 ((-665 |#3|) (-665 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 |#3|)) (|:| |vec| (-1226 |#3|))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 |#1|) (-1226 |#1|))) (-15 -3879 ((-665 (-549)) (-665 |#1|))) (-15 -2659 (|#3| |#1|)) (-15 -2714 ((-3 |#3| "failed") |#1|)) (-15 -3846 (|#1| |#3|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-549) |#1|)) (-15 -3456 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3456 (|#1| |#1| (-1 |#3| |#3|) (-747))) (-15 -3456 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3846 (|#1| (-549))) (-15 ** (|#1| |#1| (-747))) (-15 ** (|#1| |#1| (-892))) (-15 -3846 ((-834) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2906 ((|#2| $) 70)) (-2092 (((-112) $) 110)) (-2001 (((-3 $ "failed") $ $) 19)) (-2340 (((-112) $) 108)) (-1584 (((-112) $ (-747)) 100)) (-2228 (($ |#2|) 73)) (-1682 (($) 17 T CONST)) (-3460 (($ $) 127 (|has| |#2| (-300)))) (-4060 ((|#3| $ (-549)) 122)) (-2714 (((-3 (-549) "failed") $) 84 (|has| |#2| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 82 (|has| |#2| (-1009 (-400 (-549))))) (((-3 |#2| "failed") $) 79)) (-2659 (((-549) $) 85 (|has| |#2| (-1009 (-549)))) (((-400 (-549)) $) 83 (|has| |#2| (-1009 (-400 (-549))))) ((|#2| $) 78)) (-3879 (((-665 (-549)) (-665 $)) 77 (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 76 (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) 75) (((-665 |#2|) (-665 $)) 74)) (-2114 (((-3 $ "failed") $) 32)) (-3123 (((-747) $) 128 (|has| |#2| (-541)))) (-1809 ((|#2| $ (-549) (-549)) 120)) (-2989 (((-621 |#2|) $) 93 (|has| $ (-6 -4337)))) (-2675 (((-112) $) 30)) (-1323 (((-747) $) 129 (|has| |#2| (-541)))) (-1479 (((-621 |#4|) $) 130 (|has| |#2| (-541)))) (-2142 (((-747) $) 116)) (-2155 (((-747) $) 117)) (-3194 (((-112) $ (-747)) 101)) (-1929 ((|#2| $) 65 (|has| |#2| (-6 (-4339 "*"))))) (-1761 (((-549) $) 112)) (-2703 (((-549) $) 114)) (-1562 (((-621 |#2|) $) 92 (|has| $ (-6 -4337)))) (-2090 (((-112) |#2| $) 90 (-12 (|has| |#2| (-1067)) (|has| $ (-6 -4337))))) (-1661 (((-549) $) 113)) (-1887 (((-549) $) 115)) (-3946 (($ (-621 (-621 |#2|))) 107)) (-1868 (($ (-1 |#2| |#2|) $) 97 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#2| |#2| |#2|) $ $) 124) (($ (-1 |#2| |#2|) $) 98)) (-2913 (((-621 (-621 |#2|)) $) 118)) (-1508 (((-112) $ (-747)) 102)) (-3851 (((-1125) $) 9)) (-3849 (((-3 $ "failed") $) 64 (|has| |#2| (-356)))) (-3990 (((-1087) $) 10)) (-2042 (((-3 $ "failed") $ |#2|) 125 (|has| |#2| (-541)))) (-1780 (((-112) (-1 (-112) |#2|) $) 95 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#2|))) 89 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-287 |#2|)) 88 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ |#2| |#2|) 87 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 |#2|) (-621 |#2|)) 86 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))) (-4144 (((-112) $ $) 106)) (-3670 (((-112) $) 103)) (-3742 (($) 104)) (-3341 ((|#2| $ (-549) (-549) |#2|) 121) ((|#2| $ (-549) (-549)) 119)) (-3456 (($ $ (-1 |#2| |#2|)) 50) (($ $ (-1 |#2| |#2|) (-747)) 49) (($ $ (-621 (-1143)) (-621 (-747))) 42 (|has| |#2| (-871 (-1143)))) (($ $ (-1143) (-747)) 41 (|has| |#2| (-871 (-1143)))) (($ $ (-621 (-1143))) 40 (|has| |#2| (-871 (-1143)))) (($ $ (-1143)) 39 (|has| |#2| (-871 (-1143)))) (($ $ (-747)) 37 (|has| |#2| (-227))) (($ $) 35 (|has| |#2| (-227)))) (-3136 ((|#2| $) 69)) (-2133 (($ (-621 |#2|)) 72)) (-1757 (((-112) $) 109)) (-2081 ((|#3| $) 71)) (-2029 ((|#2| $) 66 (|has| |#2| (-6 (-4339 "*"))))) (-4000 (((-747) (-1 (-112) |#2|) $) 94 (|has| $ (-6 -4337))) (((-747) |#2| $) 91 (-12 (|has| |#2| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 105)) (-2851 ((|#4| $ (-549)) 123)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 81 (|has| |#2| (-1009 (-400 (-549))))) (($ |#2|) 80)) (-2082 (((-747)) 28)) (-3527 (((-112) (-1 (-112) |#2|) $) 96 (|has| $ (-6 -4337)))) (-2974 (((-112) $) 111)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ (-1 |#2| |#2|)) 48) (($ $ (-1 |#2| |#2|) (-747)) 47) (($ $ (-621 (-1143)) (-621 (-747))) 46 (|has| |#2| (-871 (-1143)))) (($ $ (-1143) (-747)) 45 (|has| |#2| (-871 (-1143)))) (($ $ (-621 (-1143))) 44 (|has| |#2| (-871 (-1143)))) (($ $ (-1143)) 43 (|has| |#2| (-871 (-1143)))) (($ $ (-747)) 38 (|has| |#2| (-227))) (($ $) 36 (|has| |#2| (-227)))) (-2389 (((-112) $ $) 6)) (-2513 (($ $ |#2|) 126 (|has| |#2| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 63 (|has| |#2| (-356)))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#2|) 132) (($ |#2| $) 131) ((|#4| $ |#4|) 68) ((|#3| |#3| $) 67)) (-3775 (((-747) $) 99 (|has| $ (-6 -4337)))))
-(((-1090 |#1| |#2| |#3| |#4|) (-138) (-747) (-1018) (-232 |t#1| |t#2|) (-232 |t#1| |t#2|)) (T -1090))
-((-2228 (*1 *1 *2) (-12 (-4 *2 (-1018)) (-4 *1 (-1090 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2)) (-4 *5 (-232 *3 *2)))) (-2133 (*1 *1 *2) (-12 (-5 *2 (-621 *4)) (-4 *4 (-1018)) (-4 *1 (-1090 *3 *4 *5 *6)) (-4 *5 (-232 *3 *4)) (-4 *6 (-232 *3 *4)))) (-2081 (*1 *2 *1) (-12 (-4 *1 (-1090 *3 *4 *2 *5)) (-4 *4 (-1018)) (-4 *5 (-232 *3 *4)) (-4 *2 (-232 *3 *4)))) (-2906 (*1 *2 *1) (-12 (-4 *1 (-1090 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2)) (-4 *5 (-232 *3 *2)) (-4 *2 (-1018)))) (-3136 (*1 *2 *1) (-12 (-4 *1 (-1090 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2)) (-4 *5 (-232 *3 *2)) (-4 *2 (-1018)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-1090 *3 *4 *5 *2)) (-4 *4 (-1018)) (-4 *5 (-232 *3 *4)) (-4 *2 (-232 *3 *4)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-1090 *3 *4 *2 *5)) (-4 *4 (-1018)) (-4 *2 (-232 *3 *4)) (-4 *5 (-232 *3 *4)))) (-2029 (*1 *2 *1) (-12 (-4 *1 (-1090 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2)) (-4 *5 (-232 *3 *2)) (|has| *2 (-6 (-4339 "*"))) (-4 *2 (-1018)))) (-1929 (*1 *2 *1) (-12 (-4 *1 (-1090 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2)) (-4 *5 (-232 *3 *2)) (|has| *2 (-6 (-4339 "*"))) (-4 *2 (-1018)))) (-3849 (*1 *1 *1) (|partial| -12 (-4 *1 (-1090 *2 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-232 *2 *3)) (-4 *5 (-232 *2 *3)) (-4 *3 (-356)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-1090 *3 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-232 *3 *4)) (-4 *6 (-232 *3 *4)) (-4 *4 (-356)))))
-(-13 (-225 |t#2|) (-111 |t#2| |t#2|) (-1021 |t#1| |t#1| |t#2| |t#3| |t#4|) (-404 |t#2|) (-370 |t#2|) (-10 -8 (IF (|has| |t#2| (-170)) (-6 (-694 |t#2|)) |%noBranch|) (-15 -2228 ($ |t#2|)) (-15 -2133 ($ (-621 |t#2|))) (-15 -2081 (|t#3| $)) (-15 -2906 (|t#2| $)) (-15 -3136 (|t#2| $)) (-15 * (|t#4| $ |t#4|)) (-15 * (|t#3| |t#3| $)) (IF (|has| |t#2| (-6 (-4339 "*"))) (PROGN (-6 (-38 |t#2|)) (-15 -2029 (|t#2| $)) (-15 -1929 (|t#2| $))) |%noBranch|) (IF (|has| |t#2| (-356)) (PROGN (-15 -3849 ((-3 $ "failed") $)) (-15 ** ($ $ (-549)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-38 |#2|) |has| |#2| (-6 (-4339 "*"))) ((-101) . T) ((-111 |#2| |#2|) . T) ((-130) . T) ((-593 (-834)) . T) ((-225 |#2|) . T) ((-227) |has| |#2| (-227)) ((-302 |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) ((-370 |#2|) . T) ((-404 |#2|) . T) ((-481 |#2|) . T) ((-505 |#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) ((-624 |#2|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#2| (-617 (-549))) ((-617 |#2|) . T) ((-694 |#2|) -1536 (|has| |#2| (-170)) (|has| |#2| (-6 (-4339 "*")))) ((-703) . T) ((-871 (-1143)) |has| |#2| (-871 (-1143))) ((-1021 |#1| |#1| |#2| |#3| |#4|) . T) ((-1009 (-400 (-549))) |has| |#2| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#2| (-1009 (-549))) ((-1009 |#2|) . T) ((-1024 |#2|) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1180) . T))
-((-4156 ((|#4| |#4|) 70)) (-3367 ((|#4| |#4|) 65)) (-1782 (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1949 (-621 |#3|))) |#4| |#3|) 78)) (-4309 (((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) 69)) (-3622 (((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) 67)))
-(((-1091 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3367 (|#4| |#4|)) (-15 -3622 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -4156 (|#4| |#4|)) (-15 -4309 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -1782 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1949 (-621 |#3|))) |#4| |#3|))) (-300) (-366 |#1|) (-366 |#1|) (-663 |#1| |#2| |#3|)) (T -1091))
-((-1782 (*1 *2 *3 *4) (-12 (-4 *5 (-300)) (-4 *6 (-366 *5)) (-4 *4 (-366 *5)) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1949 (-621 *4)))) (-5 *1 (-1091 *5 *6 *4 *3)) (-4 *3 (-663 *5 *6 *4)))) (-4309 (*1 *2 *3) (-12 (-4 *4 (-300)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3))) (-5 *1 (-1091 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-4156 (*1 *2 *2) (-12 (-4 *3 (-300)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-1091 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))) (-3622 (*1 *2 *3) (-12 (-4 *4 (-300)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3))) (-5 *1 (-1091 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-3367 (*1 *2 *2) (-12 (-4 *3 (-300)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-1091 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))))
-(-10 -7 (-15 -3367 (|#4| |#4|)) (-15 -3622 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -4156 (|#4| |#4|)) (-15 -4309 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -1782 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1949 (-621 |#3|))) |#4| |#3|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 17)) (-2272 (((-621 |#2|) $) 159)) (-2084 (((-1139 $) $ |#2|) 54) (((-1139 |#1|) $) 43)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 108 (|has| |#1| (-541)))) (-2258 (($ $) 110 (|has| |#1| (-541)))) (-2799 (((-112) $) 112 (|has| |#1| (-541)))) (-3186 (((-747) $) NIL) (((-747) $ (-621 |#2|)) 192)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-3979 (($ $) NIL (|has| |#1| (-444)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) 156) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 |#2| "failed") $) NIL)) (-2659 ((|#1| $) 154) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) ((|#2| $) NIL)) (-1353 (($ $ $ |#2|) NIL (|has| |#1| (-170)))) (-2070 (($ $) 196)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) 82)) (-1285 (($ $) NIL (|has| |#1| (-444))) (($ $ |#2|) NIL (|has| |#1| (-444)))) (-2058 (((-621 $) $) NIL)) (-1420 (((-112) $) NIL (|has| |#1| (-880)))) (-2691 (($ $ |#1| (-521 |#2|) $) NIL)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| |#1| (-857 (-372))) (|has| |#2| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| |#1| (-857 (-549))) (|has| |#2| (-857 (-549)))))) (-2675 (((-112) $) 19)) (-3347 (((-747) $) 26)) (-2261 (($ (-1139 |#1|) |#2|) 48) (($ (-1139 $) |#2|) 64)) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) 32)) (-2246 (($ |#1| (-521 |#2|)) 71) (($ $ |#2| (-747)) 52) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ |#2|) NIL)) (-3611 (((-521 |#2|) $) 186) (((-747) $ |#2|) 187) (((-621 (-747)) $ (-621 |#2|)) 188)) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-3705 (($ (-1 (-521 |#2|) (-521 |#2|)) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) 120)) (-1520 (((-3 |#2| "failed") $) 161)) (-2028 (($ $) 195)) (-2043 ((|#1| $) 37)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-3851 (((-1125) $) NIL)) (-4266 (((-3 (-621 $) "failed") $) NIL)) (-2533 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-2 (|:| |var| |#2|) (|:| -3731 (-747))) "failed") $) NIL)) (-3990 (((-1087) $) NIL)) (-2004 (((-112) $) 33)) (-2016 ((|#1| $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 138 (|has| |#1| (-444)))) (-3727 (($ (-621 $)) 143 (|has| |#1| (-444))) (($ $ $) 130 (|has| |#1| (-444)))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#1| (-880)))) (-2121 (((-411 $) $) NIL (|has| |#1| (-880)))) (-2042 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ $) 118 (|has| |#1| (-541)))) (-2686 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ |#2| |#1|) 164) (($ $ (-621 |#2|) (-621 |#1|)) 177) (($ $ |#2| $) 163) (($ $ (-621 |#2|) (-621 $)) 176)) (-3602 (($ $ |#2|) NIL (|has| |#1| (-170)))) (-3456 (($ $ |#2|) 194) (($ $ (-621 |#2|)) NIL) (($ $ |#2| (-747)) NIL) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-3701 (((-521 |#2|) $) 182) (((-747) $ |#2|) 178) (((-621 (-747)) $ (-621 |#2|)) 180)) (-2845 (((-863 (-372)) $) NIL (-12 (|has| |#1| (-594 (-863 (-372)))) (|has| |#2| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| |#1| (-594 (-863 (-549)))) (|has| |#2| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| |#1| (-594 (-525))) (|has| |#2| (-594 (-525)))))) (-2216 ((|#1| $) 126 (|has| |#1| (-444))) (($ $ |#2|) 129 (|has| |#1| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-3846 (((-834) $) 149) (($ (-549)) 76) (($ |#1|) 77) (($ |#2|) 28) (($ $) NIL (|has| |#1| (-541))) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549))))))) (-4141 (((-621 |#1|) $) 152)) (-2152 ((|#1| $ (-521 |#2|)) 73) (($ $ |#2| (-747)) NIL) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2082 (((-747)) 79)) (-1509 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-1498 (((-112) $ $) 115 (|has| |#1| (-541)))) (-3276 (($) 12 T CONST)) (-3287 (($) 14 T CONST)) (-1702 (($ $ |#2|) NIL) (($ $ (-621 |#2|)) NIL) (($ $ |#2| (-747)) NIL) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) 97)) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2513 (($ $ |#1|) 124 (|has| |#1| (-356)))) (-2500 (($ $) 85) (($ $ $) 95)) (-2486 (($ $ $) 49)) (** (($ $ (-892)) 102) (($ $ (-747)) 100)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 88) (($ $ $) 65) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 90) (($ $ |#1|) NIL)))
-(((-1092 |#1| |#2|) (-920 |#1| (-521 |#2|) |#2|) (-1018) (-823)) (T -1092))
+((-2508 (((-621 (-1198 |#2| |#1|)) (-1198 |#2| |#1|) (-1198 |#2| |#1|)) 37)) (-2230 (((-549) (-1198 |#2| |#1|)) 69 (|has| |#1| (-444)))) (-2323 (((-549) (-1198 |#2| |#1|)) 54)) (-1675 (((-621 (-1198 |#2| |#1|)) (-1198 |#2| |#1|) (-1198 |#2| |#1|)) 45)) (-3511 (((-549) (-1198 |#2| |#1|) (-1198 |#2| |#1|)) 68 (|has| |#1| (-444)))) (-3275 (((-621 |#1|) (-1198 |#2| |#1|) (-1198 |#2| |#1|)) 48)) (-3989 (((-549) (-1198 |#2| |#1|) (-1198 |#2| |#1|)) 53)))
+(((-1080 |#1| |#2|) (-10 -7 (-15 -2508 ((-621 (-1198 |#2| |#1|)) (-1198 |#2| |#1|) (-1198 |#2| |#1|))) (-15 -1675 ((-621 (-1198 |#2| |#1|)) (-1198 |#2| |#1|) (-1198 |#2| |#1|))) (-15 -3275 ((-621 |#1|) (-1198 |#2| |#1|) (-1198 |#2| |#1|))) (-15 -3989 ((-549) (-1198 |#2| |#1|) (-1198 |#2| |#1|))) (-15 -2323 ((-549) (-1198 |#2| |#1|))) (IF (|has| |#1| (-444)) (PROGN (-15 -3511 ((-549) (-1198 |#2| |#1|) (-1198 |#2| |#1|))) (-15 -2230 ((-549) (-1198 |#2| |#1|)))) |%noBranch|)) (-796) (-1142)) (T -1080))
+((-2230 (*1 *2 *3) (-12 (-5 *3 (-1198 *5 *4)) (-4 *4 (-444)) (-4 *4 (-796)) (-14 *5 (-1142)) (-5 *2 (-549)) (-5 *1 (-1080 *4 *5)))) (-3511 (*1 *2 *3 *3) (-12 (-5 *3 (-1198 *5 *4)) (-4 *4 (-444)) (-4 *4 (-796)) (-14 *5 (-1142)) (-5 *2 (-549)) (-5 *1 (-1080 *4 *5)))) (-2323 (*1 *2 *3) (-12 (-5 *3 (-1198 *5 *4)) (-4 *4 (-796)) (-14 *5 (-1142)) (-5 *2 (-549)) (-5 *1 (-1080 *4 *5)))) (-3989 (*1 *2 *3 *3) (-12 (-5 *3 (-1198 *5 *4)) (-4 *4 (-796)) (-14 *5 (-1142)) (-5 *2 (-549)) (-5 *1 (-1080 *4 *5)))) (-3275 (*1 *2 *3 *3) (-12 (-5 *3 (-1198 *5 *4)) (-4 *4 (-796)) (-14 *5 (-1142)) (-5 *2 (-621 *4)) (-5 *1 (-1080 *4 *5)))) (-1675 (*1 *2 *3 *3) (-12 (-4 *4 (-796)) (-14 *5 (-1142)) (-5 *2 (-621 (-1198 *5 *4))) (-5 *1 (-1080 *4 *5)) (-5 *3 (-1198 *5 *4)))) (-2508 (*1 *2 *3 *3) (-12 (-4 *4 (-796)) (-14 *5 (-1142)) (-5 *2 (-621 (-1198 *5 *4))) (-5 *1 (-1080 *4 *5)) (-5 *3 (-1198 *5 *4)))))
+(-10 -7 (-15 -2508 ((-621 (-1198 |#2| |#1|)) (-1198 |#2| |#1|) (-1198 |#2| |#1|))) (-15 -1675 ((-621 (-1198 |#2| |#1|)) (-1198 |#2| |#1|) (-1198 |#2| |#1|))) (-15 -3275 ((-621 |#1|) (-1198 |#2| |#1|) (-1198 |#2| |#1|))) (-15 -3989 ((-549) (-1198 |#2| |#1|) (-1198 |#2| |#1|))) (-15 -2323 ((-549) (-1198 |#2| |#1|))) (IF (|has| |#1| (-444)) (PROGN (-15 -3511 ((-549) (-1198 |#2| |#1|) (-1198 |#2| |#1|))) (-15 -2230 ((-549) (-1198 |#2| |#1|)))) |%noBranch|))
+((-3832 (((-112) $ $) NIL)) (-4185 (($ (-497) (-1084)) 14)) (-3985 (((-1084) $) 20)) (-2479 (((-497) $) 17)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 28) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-1081) (-13 (-1049) (-10 -8 (-15 -4185 ($ (-497) (-1084))) (-15 -2479 ((-497) $)) (-15 -3985 ((-1084) $))))) (T -1081))
+((-4185 (*1 *1 *2 *3) (-12 (-5 *2 (-497)) (-5 *3 (-1084)) (-5 *1 (-1081)))) (-2479 (*1 *2 *1) (-12 (-5 *2 (-497)) (-5 *1 (-1081)))) (-3985 (*1 *2 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-1081)))))
+(-13 (-1049) (-10 -8 (-15 -4185 ($ (-497) (-1084))) (-15 -2479 ((-497) $)) (-15 -3985 ((-1084) $))))
+((-1741 (((-3 (-549) "failed") |#2| (-1142) |#2| (-1124)) 17) (((-3 (-549) "failed") |#2| (-1142) (-816 |#2|)) 15) (((-3 (-549) "failed") |#2|) 54)))
+(((-1082 |#1| |#2|) (-10 -7 (-15 -1741 ((-3 (-549) "failed") |#2|)) (-15 -1741 ((-3 (-549) "failed") |#2| (-1142) (-816 |#2|))) (-15 -1741 ((-3 (-549) "failed") |#2| (-1142) |#2| (-1124)))) (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)) (-444)) (-13 (-27) (-1164) (-423 |#1|))) (T -1082))
+((-1741 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-1142)) (-5 *5 (-1124)) (-4 *6 (-13 (-541) (-823) (-1009 *2) (-617 *2) (-444))) (-5 *2 (-549)) (-5 *1 (-1082 *6 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *6))))) (-1741 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1142)) (-5 *5 (-816 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *6))) (-4 *6 (-13 (-541) (-823) (-1009 *2) (-617 *2) (-444))) (-5 *2 (-549)) (-5 *1 (-1082 *6 *3)))) (-1741 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-541) (-823) (-1009 *2) (-617 *2) (-444))) (-5 *2 (-549)) (-5 *1 (-1082 *4 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *4))))))
+(-10 -7 (-15 -1741 ((-3 (-549) "failed") |#2|)) (-15 -1741 ((-3 (-549) "failed") |#2| (-1142) (-816 |#2|))) (-15 -1741 ((-3 (-549) "failed") |#2| (-1142) |#2| (-1124))))
+((-1741 (((-3 (-549) "failed") (-400 (-923 |#1|)) (-1142) (-400 (-923 |#1|)) (-1124)) 35) (((-3 (-549) "failed") (-400 (-923 |#1|)) (-1142) (-816 (-400 (-923 |#1|)))) 30) (((-3 (-549) "failed") (-400 (-923 |#1|))) 13)))
+(((-1083 |#1|) (-10 -7 (-15 -1741 ((-3 (-549) "failed") (-400 (-923 |#1|)))) (-15 -1741 ((-3 (-549) "failed") (-400 (-923 |#1|)) (-1142) (-816 (-400 (-923 |#1|))))) (-15 -1741 ((-3 (-549) "failed") (-400 (-923 |#1|)) (-1142) (-400 (-923 |#1|)) (-1124)))) (-444)) (T -1083))
+((-1741 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-400 (-923 *6))) (-5 *4 (-1142)) (-5 *5 (-1124)) (-4 *6 (-444)) (-5 *2 (-549)) (-5 *1 (-1083 *6)))) (-1741 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1142)) (-5 *5 (-816 (-400 (-923 *6)))) (-5 *3 (-400 (-923 *6))) (-4 *6 (-444)) (-5 *2 (-549)) (-5 *1 (-1083 *6)))) (-1741 (*1 *2 *3) (|partial| -12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-444)) (-5 *2 (-549)) (-5 *1 (-1083 *4)))))
+(-10 -7 (-15 -1741 ((-3 (-549) "failed") (-400 (-923 |#1|)))) (-15 -1741 ((-3 (-549) "failed") (-400 (-923 |#1|)) (-1142) (-816 (-400 (-923 |#1|))))) (-15 -1741 ((-3 (-549) "failed") (-400 (-923 |#1|)) (-1142) (-400 (-923 |#1|)) (-1124))))
+((-3832 (((-112) $ $) NIL)) (-2098 (((-1147) $) 10)) (-3221 (((-621 (-1147)) $) 11)) (-3985 (($ (-621 (-1147)) (-1147)) 9)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 20)) (-2387 (((-112) $ $) 14)))
+(((-1084) (-13 (-1066) (-10 -8 (-15 -3985 ($ (-621 (-1147)) (-1147))) (-15 -2098 ((-1147) $)) (-15 -3221 ((-621 (-1147)) $))))) (T -1084))
+((-3985 (*1 *1 *2 *3) (-12 (-5 *2 (-621 (-1147))) (-5 *3 (-1147)) (-5 *1 (-1084)))) (-2098 (*1 *2 *1) (-12 (-5 *2 (-1147)) (-5 *1 (-1084)))) (-3221 (*1 *2 *1) (-12 (-5 *2 (-621 (-1147))) (-5 *1 (-1084)))))
+(-13 (-1066) (-10 -8 (-15 -3985 ($ (-621 (-1147)) (-1147))) (-15 -2098 ((-1147) $)) (-15 -3221 ((-621 (-1147)) $))))
+((-2164 (((-309 (-549)) (-48)) 12)))
+(((-1085) (-10 -7 (-15 -2164 ((-309 (-549)) (-48))))) (T -1085))
+((-2164 (*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-309 (-549))) (-5 *1 (-1085)))))
+(-10 -7 (-15 -2164 ((-309 (-549)) (-48))))
+((-3832 (((-112) $ $) NIL)) (-1339 (($ $) 41)) (-3210 (((-112) $) 65)) (-2461 (($ $ $) 48)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 86)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-3198 (($ $ $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-2973 (($ $ $ $) 75)) (-3239 (($ $) NIL)) (-2620 (((-411 $) $) NIL)) (-2680 (((-112) $ $) NIL)) (-1741 (((-549) $) NIL)) (-1309 (($ $ $) 72)) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL)) (-2657 (((-549) $) NIL)) (-2091 (($ $ $) 59)) (-3446 (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 80) (((-665 (-549)) (-665 $)) 28)) (-2612 (((-3 $ "failed") $) NIL)) (-1531 (((-3 (-400 (-549)) "failed") $) NIL)) (-3945 (((-112) $) NIL)) (-1390 (((-400 (-549)) $) NIL)) (-3237 (($) 83) (($ $) 84)) (-2065 (($ $ $) 58)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL)) (-1464 (((-112) $) NIL)) (-2576 (($ $ $ $) NIL)) (-3457 (($ $ $) 81)) (-2357 (((-112) $) NIL)) (-1926 (($ $ $) NIL)) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL)) (-2297 (((-112) $) 66)) (-2803 (((-112) $) 64)) (-4007 (($ $) 42)) (-2964 (((-3 $ "failed") $) NIL)) (-1992 (((-112) $) 76)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-2633 (($ $ $ $) 73)) (-2861 (($ $ $) 68) (($) 39)) (-3574 (($ $ $) 67) (($) 38)) (-2429 (($ $) NIL)) (-4210 (($ $) 71)) (-3696 (($ $ $) NIL) (($ (-621 $)) NIL)) (-3441 (((-1124) $) NIL)) (-3200 (($ $ $) NIL)) (-3059 (($) NIL T CONST)) (-3782 (($ $) 50)) (-3988 (((-1086) $) 70)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL)) (-3726 (($ $ $) 62) (($ (-621 $)) NIL)) (-3674 (($ $) NIL)) (-2119 (((-411 $) $) NIL)) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL)) (-2040 (((-3 $ "failed") $ $) NIL)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL)) (-1980 (((-112) $) NIL)) (-1335 (((-747) $) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 61)) (-3455 (($ $ (-747)) NIL) (($ $) NIL)) (-1896 (($ $) 51)) (-2279 (($ $) NIL)) (-2843 (((-549) $) 32) (((-525) $) NIL) (((-863 (-549)) $) NIL) (((-372) $) NIL) (((-219) $) NIL)) (-3845 (((-834) $) 31) (($ (-549)) 82) (($ $) NIL) (($ (-549)) 82)) (-2371 (((-747)) NIL)) (-1815 (((-112) $ $) NIL)) (-2772 (($ $ $) NIL)) (-1863 (($) 37)) (-2441 (((-112) $ $) NIL)) (-2263 (($ $ $ $) 74)) (-2199 (($ $) 63)) (-3707 (($ $ $) 44)) (-3274 (($) 35 T CONST)) (-3798 (($ $ $) 47)) (-3286 (($) 36 T CONST)) (-4035 (((-1124) $) 21) (((-1124) $ (-112)) 23) (((-1230) (-798) $) 24) (((-1230) (-798) $ (-112)) 25)) (-3808 (($ $) 45)) (-1699 (($ $ (-747)) NIL) (($ $) NIL)) (-3788 (($ $ $) 46)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 40)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 49)) (-3694 (($ $ $) 43)) (-2498 (($ $) 52) (($ $ $) 54)) (-2484 (($ $ $) 53)) (** (($ $ (-892)) NIL) (($ $ (-747)) 57)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 34) (($ $ $) 55)))
+(((-1086) (-13 (-534) (-637) (-804) (-10 -8 (-6 -4323) (-6 -4328) (-6 -4324) (-15 -3574 ($)) (-15 -2861 ($)) (-15 -4007 ($ $)) (-15 -1339 ($ $)) (-15 -3694 ($ $ $)) (-15 -3707 ($ $ $)) (-15 -2461 ($ $ $)) (-15 -3808 ($ $)) (-15 -3788 ($ $ $)) (-15 -3798 ($ $ $))))) (T -1086))
+((-3707 (*1 *1 *1 *1) (-5 *1 (-1086))) (-3694 (*1 *1 *1 *1) (-5 *1 (-1086))) (-1339 (*1 *1 *1) (-5 *1 (-1086))) (-3574 (*1 *1) (-5 *1 (-1086))) (-2861 (*1 *1) (-5 *1 (-1086))) (-4007 (*1 *1 *1) (-5 *1 (-1086))) (-2461 (*1 *1 *1 *1) (-5 *1 (-1086))) (-3808 (*1 *1 *1) (-5 *1 (-1086))) (-3788 (*1 *1 *1 *1) (-5 *1 (-1086))) (-3798 (*1 *1 *1 *1) (-5 *1 (-1086))))
+(-13 (-534) (-637) (-804) (-10 -8 (-6 -4323) (-6 -4328) (-6 -4324) (-15 -3574 ($)) (-15 -2861 ($)) (-15 -4007 ($ $)) (-15 -1339 ($ $)) (-15 -3694 ($ $ $)) (-15 -3707 ($ $ $)) (-15 -2461 ($ $ $)) (-15 -3808 ($ $)) (-15 -3788 ($ $ $)) (-15 -3798 ($ $ $))))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-2316 ((|#1| $) 44)) (-2850 (((-112) $ (-747)) 8)) (-3034 (($) 7 T CONST)) (-3677 ((|#1| |#1| $) 46)) (-1794 ((|#1| $) 45)) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) 9)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-2548 ((|#1| $) 39)) (-1799 (($ |#1| $) 40)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3536 ((|#1| $) 41)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-1319 (((-747) $) 43)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-4213 (($ (-621 |#1|)) 42)) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-1087 |#1|) (-138) (-1179)) (T -1087))
+((-3677 (*1 *2 *2 *1) (-12 (-4 *1 (-1087 *2)) (-4 *2 (-1179)))) (-1794 (*1 *2 *1) (-12 (-4 *1 (-1087 *2)) (-4 *2 (-1179)))) (-2316 (*1 *2 *1) (-12 (-4 *1 (-1087 *2)) (-4 *2 (-1179)))) (-1319 (*1 *2 *1) (-12 (-4 *1 (-1087 *3)) (-4 *3 (-1179)) (-5 *2 (-747)))))
+(-13 (-106 |t#1|) (-10 -8 (-6 -4336) (-15 -3677 (|t#1| |t#1| $)) (-15 -1794 (|t#1| $)) (-15 -2316 (|t#1| $)) (-15 -1319 ((-747) $))))
+(((-34) . T) ((-106 |#1|) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-1066) |has| |#1| (-1066)) ((-1179) . T))
+((-2904 ((|#3| $) 76)) (-2712 (((-3 (-549) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 |#3| "failed") $) 40)) (-2657 (((-549) $) NIL) (((-400 (-549)) $) NIL) ((|#3| $) 37)) (-3446 (((-665 (-549)) (-665 $)) NIL) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL) (((-2 (|:| -3697 (-665 |#3|)) (|:| |vec| (-1225 |#3|))) (-665 $) (-1225 $)) 73) (((-665 |#3|) (-665 $)) 65)) (-3455 (($ $ (-1 |#3| |#3|)) 19) (($ $ (-1 |#3| |#3|) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142)) NIL) (($ $ (-747)) NIL) (($ $) NIL)) (-3354 ((|#3| $) 78)) (-2267 ((|#4| $) 32)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ (-400 (-549))) NIL) (($ |#3|) 16)) (** (($ $ (-892)) NIL) (($ $ (-747)) 15) (($ $ (-549)) 82)))
+(((-1088 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 ** (|#1| |#1| (-549))) (-15 -3354 (|#3| |#1|)) (-15 -2904 (|#3| |#1|)) (-15 -2267 (|#4| |#1|)) (-15 -3446 ((-665 |#3|) (-665 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 |#3|)) (|:| |vec| (-1225 |#3|))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-665 (-549)) (-665 |#1|))) (-15 -2657 (|#3| |#1|)) (-15 -2712 ((-3 |#3| "failed") |#1|)) (-15 -3845 (|#1| |#3|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -3455 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -3455 (|#1| |#1| (-1 |#3| |#3|) (-747))) (-15 -3455 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3845 (|#1| (-549))) (-15 ** (|#1| |#1| (-747))) (-15 ** (|#1| |#1| (-892))) (-15 -3845 ((-834) |#1|))) (-1089 |#2| |#3| |#4| |#5|) (-747) (-1018) (-232 |#2| |#3|) (-232 |#2| |#3|)) (T -1088))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-549))) (-15 -3354 (|#3| |#1|)) (-15 -2904 (|#3| |#1|)) (-15 -2267 (|#4| |#1|)) (-15 -3446 ((-665 |#3|) (-665 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 |#3|)) (|:| |vec| (-1225 |#3|))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 |#1|) (-1225 |#1|))) (-15 -3446 ((-665 (-549)) (-665 |#1|))) (-15 -2657 (|#3| |#1|)) (-15 -2712 ((-3 |#3| "failed") |#1|)) (-15 -3845 (|#1| |#3|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-549) |#1|)) (-15 -3455 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -3455 (|#1| |#1| (-1 |#3| |#3|) (-747))) (-15 -3455 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3845 (|#1| (-549))) (-15 ** (|#1| |#1| (-747))) (-15 ** (|#1| |#1| (-892))) (-15 -3845 ((-834) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2904 ((|#2| $) 70)) (-1831 (((-112) $) 110)) (-2416 (((-3 $ "failed") $ $) 19)) (-1295 (((-112) $) 108)) (-2850 (((-112) $ (-747)) 100)) (-2411 (($ |#2|) 73)) (-3034 (($) 17 T CONST)) (-3474 (($ $) 127 (|has| |#2| (-300)))) (-3437 ((|#3| $ (-549)) 122)) (-2712 (((-3 (-549) "failed") $) 84 (|has| |#2| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) 82 (|has| |#2| (-1009 (-400 (-549))))) (((-3 |#2| "failed") $) 79)) (-2657 (((-549) $) 85 (|has| |#2| (-1009 (-549)))) (((-400 (-549)) $) 83 (|has| |#2| (-1009 (-400 (-549))))) ((|#2| $) 78)) (-3446 (((-665 (-549)) (-665 $)) 77 (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 76 (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) 75) (((-665 |#2|) (-665 $)) 74)) (-2612 (((-3 $ "failed") $) 32)) (-3121 (((-747) $) 128 (|has| |#2| (-541)))) (-1807 ((|#2| $ (-549) (-549)) 120)) (-2987 (((-621 |#2|) $) 93 (|has| $ (-6 -4336)))) (-2297 (((-112) $) 30)) (-4303 (((-747) $) 129 (|has| |#2| (-541)))) (-3290 (((-621 |#4|) $) 130 (|has| |#2| (-541)))) (-2140 (((-747) $) 116)) (-2153 (((-747) $) 117)) (-1777 (((-112) $ (-747)) 101)) (-4239 ((|#2| $) 65 (|has| |#2| (-6 (-4338 "*"))))) (-3057 (((-549) $) 112)) (-3861 (((-549) $) 114)) (-3698 (((-621 |#2|) $) 92 (|has| $ (-6 -4336)))) (-1593 (((-112) |#2| $) 90 (-12 (|has| |#2| (-1066)) (|has| $ (-6 -4336))))) (-1766 (((-549) $) 113)) (-2813 (((-549) $) 115)) (-3944 (($ (-621 (-621 |#2|))) 107)) (-1864 (($ (-1 |#2| |#2|) $) 97 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#2| |#2| |#2|) $ $) 124) (($ (-1 |#2| |#2|) $) 98)) (-1987 (((-621 (-621 |#2|)) $) 118)) (-3942 (((-112) $ (-747)) 102)) (-3441 (((-1124) $) 9)) (-1299 (((-3 $ "failed") $) 64 (|has| |#2| (-356)))) (-3988 (((-1086) $) 10)) (-2040 (((-3 $ "failed") $ |#2|) 125 (|has| |#2| (-541)))) (-3360 (((-112) (-1 (-112) |#2|) $) 95 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#2|))) 89 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-287 |#2|)) 88 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ |#2| |#2|) 87 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 |#2|) (-621 |#2|)) 86 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))) (-2520 (((-112) $ $) 106)) (-2643 (((-112) $) 103)) (-3288 (($) 104)) (-3339 ((|#2| $ (-549) (-549) |#2|) 121) ((|#2| $ (-549) (-549)) 119)) (-3455 (($ $ (-1 |#2| |#2|)) 50) (($ $ (-1 |#2| |#2|) (-747)) 49) (($ $ (-621 (-1142)) (-621 (-747))) 42 (|has| |#2| (-871 (-1142)))) (($ $ (-1142) (-747)) 41 (|has| |#2| (-871 (-1142)))) (($ $ (-621 (-1142))) 40 (|has| |#2| (-871 (-1142)))) (($ $ (-1142)) 39 (|has| |#2| (-871 (-1142)))) (($ $ (-747)) 37 (|has| |#2| (-227))) (($ $) 35 (|has| |#2| (-227)))) (-3354 ((|#2| $) 69)) (-2874 (($ (-621 |#2|)) 72)) (-2839 (((-112) $) 109)) (-2267 ((|#3| $) 71)) (-2842 ((|#2| $) 66 (|has| |#2| (-6 (-4338 "*"))))) (-3997 (((-747) (-1 (-112) |#2|) $) 94 (|has| $ (-6 -4336))) (((-747) |#2| $) 91 (-12 (|has| |#2| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 105)) (-1476 ((|#4| $ (-549)) 123)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 81 (|has| |#2| (-1009 (-400 (-549))))) (($ |#2|) 80)) (-2371 (((-747)) 28)) (-3025 (((-112) (-1 (-112) |#2|) $) 96 (|has| $ (-6 -4336)))) (-3752 (((-112) $) 111)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ (-1 |#2| |#2|)) 48) (($ $ (-1 |#2| |#2|) (-747)) 47) (($ $ (-621 (-1142)) (-621 (-747))) 46 (|has| |#2| (-871 (-1142)))) (($ $ (-1142) (-747)) 45 (|has| |#2| (-871 (-1142)))) (($ $ (-621 (-1142))) 44 (|has| |#2| (-871 (-1142)))) (($ $ (-1142)) 43 (|has| |#2| (-871 (-1142)))) (($ $ (-747)) 38 (|has| |#2| (-227))) (($ $) 36 (|has| |#2| (-227)))) (-2387 (((-112) $ $) 6)) (-2511 (($ $ |#2|) 126 (|has| |#2| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 63 (|has| |#2| (-356)))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#2|) 132) (($ |#2| $) 131) ((|#4| $ |#4|) 68) ((|#3| |#3| $) 67)) (-3774 (((-747) $) 99 (|has| $ (-6 -4336)))))
+(((-1089 |#1| |#2| |#3| |#4|) (-138) (-747) (-1018) (-232 |t#1| |t#2|) (-232 |t#1| |t#2|)) (T -1089))
+((-2411 (*1 *1 *2) (-12 (-4 *2 (-1018)) (-4 *1 (-1089 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2)) (-4 *5 (-232 *3 *2)))) (-2874 (*1 *1 *2) (-12 (-5 *2 (-621 *4)) (-4 *4 (-1018)) (-4 *1 (-1089 *3 *4 *5 *6)) (-4 *5 (-232 *3 *4)) (-4 *6 (-232 *3 *4)))) (-2267 (*1 *2 *1) (-12 (-4 *1 (-1089 *3 *4 *2 *5)) (-4 *4 (-1018)) (-4 *5 (-232 *3 *4)) (-4 *2 (-232 *3 *4)))) (-2904 (*1 *2 *1) (-12 (-4 *1 (-1089 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2)) (-4 *5 (-232 *3 *2)) (-4 *2 (-1018)))) (-3354 (*1 *2 *1) (-12 (-4 *1 (-1089 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2)) (-4 *5 (-232 *3 *2)) (-4 *2 (-1018)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-1089 *3 *4 *5 *2)) (-4 *4 (-1018)) (-4 *5 (-232 *3 *4)) (-4 *2 (-232 *3 *4)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-1089 *3 *4 *2 *5)) (-4 *4 (-1018)) (-4 *2 (-232 *3 *4)) (-4 *5 (-232 *3 *4)))) (-2842 (*1 *2 *1) (-12 (-4 *1 (-1089 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2)) (-4 *5 (-232 *3 *2)) (|has| *2 (-6 (-4338 "*"))) (-4 *2 (-1018)))) (-4239 (*1 *2 *1) (-12 (-4 *1 (-1089 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2)) (-4 *5 (-232 *3 *2)) (|has| *2 (-6 (-4338 "*"))) (-4 *2 (-1018)))) (-1299 (*1 *1 *1) (|partial| -12 (-4 *1 (-1089 *2 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-232 *2 *3)) (-4 *5 (-232 *2 *3)) (-4 *3 (-356)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-1089 *3 *4 *5 *6)) (-4 *4 (-1018)) (-4 *5 (-232 *3 *4)) (-4 *6 (-232 *3 *4)) (-4 *4 (-356)))))
+(-13 (-225 |t#2|) (-111 |t#2| |t#2|) (-1021 |t#1| |t#1| |t#2| |t#3| |t#4|) (-404 |t#2|) (-370 |t#2|) (-10 -8 (IF (|has| |t#2| (-170)) (-6 (-694 |t#2|)) |%noBranch|) (-15 -2411 ($ |t#2|)) (-15 -2874 ($ (-621 |t#2|))) (-15 -2267 (|t#3| $)) (-15 -2904 (|t#2| $)) (-15 -3354 (|t#2| $)) (-15 * (|t#4| $ |t#4|)) (-15 * (|t#3| |t#3| $)) (IF (|has| |t#2| (-6 (-4338 "*"))) (PROGN (-6 (-38 |t#2|)) (-15 -2842 (|t#2| $)) (-15 -4239 (|t#2| $))) |%noBranch|) (IF (|has| |t#2| (-356)) (PROGN (-15 -1299 ((-3 $ "failed") $)) (-15 ** ($ $ (-549)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-38 |#2|) |has| |#2| (-6 (-4338 "*"))) ((-101) . T) ((-111 |#2| |#2|) . T) ((-130) . T) ((-593 (-834)) . T) ((-225 |#2|) . T) ((-227) |has| |#2| (-227)) ((-302 |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) ((-370 |#2|) . T) ((-404 |#2|) . T) ((-481 |#2|) . T) ((-505 |#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) ((-624 |#2|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#2| (-617 (-549))) ((-617 |#2|) . T) ((-694 |#2|) -1536 (|has| |#2| (-170)) (|has| |#2| (-6 (-4338 "*")))) ((-703) . T) ((-871 (-1142)) |has| |#2| (-871 (-1142))) ((-1021 |#1| |#1| |#2| |#3| |#4|) . T) ((-1009 (-400 (-549))) |has| |#2| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#2| (-1009 (-549))) ((-1009 |#2|) . T) ((-1024 |#2|) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1179) . T))
+((-4294 ((|#4| |#4|) 70)) (-1683 ((|#4| |#4|) 65)) (-3599 (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2619 (-621 |#3|))) |#4| |#3|) 78)) (-2598 (((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) 69)) (-4023 (((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) 67)))
+(((-1090 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1683 (|#4| |#4|)) (-15 -4023 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -4294 (|#4| |#4|)) (-15 -2598 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -3599 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2619 (-621 |#3|))) |#4| |#3|))) (-300) (-366 |#1|) (-366 |#1|) (-663 |#1| |#2| |#3|)) (T -1090))
+((-3599 (*1 *2 *3 *4) (-12 (-4 *5 (-300)) (-4 *6 (-366 *5)) (-4 *4 (-366 *5)) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2619 (-621 *4)))) (-5 *1 (-1090 *5 *6 *4 *3)) (-4 *3 (-663 *5 *6 *4)))) (-2598 (*1 *2 *3) (-12 (-4 *4 (-300)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3))) (-5 *1 (-1090 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-4294 (*1 *2 *2) (-12 (-4 *3 (-300)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-1090 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))) (-4023 (*1 *2 *3) (-12 (-4 *4 (-300)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4)) (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3))) (-5 *1 (-1090 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))) (-1683 (*1 *2 *2) (-12 (-4 *3 (-300)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-1090 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))))
+(-10 -7 (-15 -1683 (|#4| |#4|)) (-15 -4023 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -4294 (|#4| |#4|)) (-15 -2598 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -3599 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -2619 (-621 |#3|))) |#4| |#3|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 17)) (-2270 (((-621 |#2|) $) 159)) (-2082 (((-1138 $) $ |#2|) 54) (((-1138 |#1|) $) 43)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 108 (|has| |#1| (-541)))) (-3044 (($ $) 110 (|has| |#1| (-541)))) (-2774 (((-112) $) 112 (|has| |#1| (-541)))) (-2216 (((-747) $) NIL) (((-747) $ (-621 |#2|)) 192)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-3239 (($ $) NIL (|has| |#1| (-444)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) 156) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 |#2| "failed") $) NIL)) (-2657 ((|#1| $) 154) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) ((|#2| $) NIL)) (-4114 (($ $ $ |#2|) NIL (|has| |#1| (-170)))) (-2068 (($ $) 196)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) 82)) (-3004 (($ $) NIL (|has| |#1| (-444))) (($ $ |#2|) NIL (|has| |#1| (-444)))) (-2056 (((-621 $) $) NIL)) (-1464 (((-112) $) NIL (|has| |#1| (-880)))) (-4064 (($ $ |#1| (-521 |#2|) $) NIL)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| |#1| (-857 (-372))) (|has| |#2| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| |#1| (-857 (-549))) (|has| |#2| (-857 (-549)))))) (-2297 (((-112) $) 19)) (-1751 (((-747) $) 26)) (-2259 (($ (-1138 |#1|) |#2|) 48) (($ (-1138 $) |#2|) 64)) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) 32)) (-2244 (($ |#1| (-521 |#2|)) 71) (($ $ |#2| (-747)) 52) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ |#2|) NIL)) (-2391 (((-521 |#2|) $) 186) (((-747) $ |#2|) 187) (((-621 (-747)) $ (-621 |#2|)) 188)) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-3224 (($ (-1 (-521 |#2|) (-521 |#2|)) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) 120)) (-2236 (((-3 |#2| "failed") $) 161)) (-2027 (($ $) 195)) (-2042 ((|#1| $) 37)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-3441 (((-1124) $) NIL)) (-4093 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-621 $) "failed") $) NIL)) (-1477 (((-3 (-2 (|:| |var| |#2|) (|:| -1714 (-747))) "failed") $) NIL)) (-3988 (((-1086) $) NIL)) (-2001 (((-112) $) 33)) (-2011 ((|#1| $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 138 (|has| |#1| (-444)))) (-3726 (($ (-621 $)) 143 (|has| |#1| (-444))) (($ $ $) 130 (|has| |#1| (-444)))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#1| (-880)))) (-2119 (((-411 $) $) NIL (|has| |#1| (-880)))) (-2040 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ $) 118 (|has| |#1| (-541)))) (-2684 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ |#2| |#1|) 164) (($ $ (-621 |#2|) (-621 |#1|)) 177) (($ $ |#2| $) 163) (($ $ (-621 |#2|) (-621 $)) 176)) (-2740 (($ $ |#2|) NIL (|has| |#1| (-170)))) (-3455 (($ $ |#2|) 194) (($ $ (-621 |#2|)) NIL) (($ $ |#2| (-747)) NIL) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-3977 (((-521 |#2|) $) 182) (((-747) $ |#2|) 178) (((-621 (-747)) $ (-621 |#2|)) 180)) (-2843 (((-863 (-372)) $) NIL (-12 (|has| |#1| (-594 (-863 (-372)))) (|has| |#2| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| |#1| (-594 (-863 (-549)))) (|has| |#2| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| |#1| (-594 (-525))) (|has| |#2| (-594 (-525)))))) (-1700 ((|#1| $) 126 (|has| |#1| (-444))) (($ $ |#2|) 129 (|has| |#1| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-3845 (((-834) $) 149) (($ (-549)) 76) (($ |#1|) 77) (($ |#2|) 28) (($ $) NIL (|has| |#1| (-541))) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549))))))) (-2157 (((-621 |#1|) $) 152)) (-4068 ((|#1| $ (-521 |#2|)) 73) (($ $ |#2| (-747)) NIL) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2371 (((-747)) 79)) (-4046 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-2441 (((-112) $ $) 115 (|has| |#1| (-541)))) (-3274 (($) 12 T CONST)) (-3286 (($) 14 T CONST)) (-1699 (($ $ |#2|) NIL) (($ $ (-621 |#2|)) NIL) (($ $ |#2| (-747)) NIL) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) 97)) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2511 (($ $ |#1|) 124 (|has| |#1| (-356)))) (-2498 (($ $) 85) (($ $ $) 95)) (-2484 (($ $ $) 49)) (** (($ $ (-892)) 102) (($ $ (-747)) 100)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 88) (($ $ $) 65) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 90) (($ $ |#1|) NIL)))
+(((-1091 |#1| |#2|) (-920 |#1| (-521 |#2|) |#2|) (-1018) (-823)) (T -1091))
NIL
(-920 |#1| (-521 |#2|) |#2|)
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2272 (((-621 |#2|) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-1664 (($ $) 141 (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) 117 (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) NIL)) (-2134 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1640 (($ $) 137 (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) 113 (|has| |#1| (-38 (-400 (-549)))))) (-1685 (($ $) 145 (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) 121 (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) NIL T CONST)) (-2070 (($ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1414 (((-923 |#1|) $ (-747)) NIL) (((-923 |#1|) $ (-747) (-747)) NIL)) (-2871 (((-112) $) NIL)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2088 (((-747) $ |#2|) NIL) (((-747) $ |#2| (-747)) NIL)) (-2675 (((-112) $) NIL)) (-4187 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2205 (((-112) $) NIL)) (-2246 (($ $ (-621 |#2|) (-621 (-521 |#2|))) NIL) (($ $ |#2| (-521 |#2|)) NIL) (($ |#1| (-521 |#2|)) NIL) (($ $ |#2| (-747)) 56) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-3632 (($ $) 111 (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-3851 (((-1125) $) NIL)) (-3893 (($ $ |#2|) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ |#2| |#1|) 164 (|has| |#1| (-38 (-400 (-549)))))) (-3990 (((-1087) $) NIL)) (-2238 (($ (-1 $) |#2| |#1|) 163 (|has| |#1| (-38 (-400 (-549)))))) (-2763 (($ $ (-747)) 13)) (-2042 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-2719 (($ $) 109 (|has| |#1| (-38 (-400 (-549)))))) (-2686 (($ $ |#2| $) 95) (($ $ (-621 |#2|) (-621 $)) 88) (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL)) (-3456 (($ $ |#2|) 98) (($ $ (-621 |#2|)) NIL) (($ $ |#2| (-747)) NIL) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-3701 (((-521 |#2|) $) NIL)) (-4016 (((-1 (-1123 |#3|) |#3|) (-621 |#2|) (-621 (-1123 |#3|))) 77)) (-1698 (($ $) 147 (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) 123 (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) 143 (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) 119 (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) 139 (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) 115 (|has| |#1| (-38 (-400 (-549)))))) (-1977 (($ $) 15)) (-3846 (((-834) $) 180) (($ (-549)) NIL) (($ |#1|) 40 (|has| |#1| (-170))) (($ $) NIL (|has| |#1| (-541))) (($ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#2|) 63) (($ |#3|) 61)) (-2152 ((|#1| $ (-521 |#2|)) NIL) (($ $ |#2| (-747)) NIL) (($ $ (-621 |#2|) (-621 (-747))) NIL) ((|#3| $ (-747)) 38)) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) NIL)) (-1733 (($ $) 153 (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) 129 (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1710 (($ $) 149 (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) 125 (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) 157 (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) 133 (|has| |#1| (-38 (-400 (-549)))))) (-1934 (($ $) 159 (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) 135 (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) 155 (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) 131 (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) 151 (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) 127 (|has| |#1| (-38 (-400 (-549)))))) (-3276 (($) 47 T CONST)) (-3287 (($) 55 T CONST)) (-1702 (($ $ |#2|) NIL) (($ $ (-621 |#2|)) NIL) (($ $ |#2| (-747)) NIL) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ |#1|) 182 (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) 59)) (** (($ $ (-892)) NIL) (($ $ (-747)) 68) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 101 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 58) (($ $ (-400 (-549))) 106 (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) 104 (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 43) (($ $ |#1|) 44) (($ |#3| $) 42)))
-(((-1093 |#1| |#2| |#3|) (-13 (-717 |#1| |#2|) (-10 -8 (-15 -2152 (|#3| $ (-747))) (-15 -3846 ($ |#2|)) (-15 -3846 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -4016 ((-1 (-1123 |#3|) |#3|) (-621 |#2|) (-621 (-1123 |#3|)))) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -3893 ($ $ |#2| |#1|)) (-15 -2238 ($ (-1 $) |#2| |#1|))) |%noBranch|))) (-1018) (-823) (-920 |#1| (-521 |#2|) |#2|)) (T -1093))
-((-2152 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *2 (-920 *4 (-521 *5) *5)) (-5 *1 (-1093 *4 *5 *2)) (-4 *4 (-1018)) (-4 *5 (-823)))) (-3846 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-4 *2 (-823)) (-5 *1 (-1093 *3 *2 *4)) (-4 *4 (-920 *3 (-521 *2) *2)))) (-3846 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-4 *4 (-823)) (-5 *1 (-1093 *3 *4 *2)) (-4 *2 (-920 *3 (-521 *4) *4)))) (* (*1 *1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-823)) (-5 *1 (-1093 *3 *4 *2)) (-4 *2 (-920 *3 (-521 *4) *4)))) (-4016 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *6)) (-5 *4 (-621 (-1123 *7))) (-4 *6 (-823)) (-4 *7 (-920 *5 (-521 *6) *6)) (-4 *5 (-1018)) (-5 *2 (-1 (-1123 *7) *7)) (-5 *1 (-1093 *5 *6 *7)))) (-3893 (*1 *1 *1 *2 *3) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-4 *2 (-823)) (-5 *1 (-1093 *3 *2 *4)) (-4 *4 (-920 *3 (-521 *2) *2)))) (-2238 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1093 *4 *3 *5))) (-4 *4 (-38 (-400 (-549)))) (-4 *4 (-1018)) (-4 *3 (-823)) (-5 *1 (-1093 *4 *3 *5)) (-4 *5 (-920 *4 (-521 *3) *3)))))
-(-13 (-717 |#1| |#2|) (-10 -8 (-15 -2152 (|#3| $ (-747))) (-15 -3846 ($ |#2|)) (-15 -3846 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -4016 ((-1 (-1123 |#3|) |#3|) (-621 |#2|) (-621 (-1123 |#3|)))) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -3893 ($ $ |#2| |#1|)) (-15 -2238 ($ (-1 $) |#2| |#1|))) |%noBranch|)))
-((-3834 (((-112) $ $) 7)) (-3514 (((-621 (-2 (|:| -2681 $) (|:| -1359 (-621 |#4|)))) (-621 |#4|)) 85)) (-2866 (((-621 $) (-621 |#4|)) 86) (((-621 $) (-621 |#4|) (-112)) 111)) (-2272 (((-621 |#3|) $) 33)) (-3422 (((-112) $) 26)) (-2527 (((-112) $) 17 (|has| |#1| (-541)))) (-3282 (((-112) |#4| $) 101) (((-112) $) 97)) (-2731 ((|#4| |#4| $) 92)) (-3979 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 $))) |#4| $) 126)) (-3193 (((-2 (|:| |under| $) (|:| -3967 $) (|:| |upper| $)) $ |#3|) 27)) (-1584 (((-112) $ (-747)) 44)) (-1489 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4337))) (((-3 |#4| "failed") $ |#3|) 79)) (-1682 (($) 45 T CONST)) (-1433 (((-112) $) 22 (|has| |#1| (-541)))) (-2555 (((-112) $ $) 24 (|has| |#1| (-541)))) (-2595 (((-112) $ $) 23 (|has| |#1| (-541)))) (-2397 (((-112) $) 25 (|has| |#1| (-541)))) (-2737 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3269 (((-621 |#4|) (-621 |#4|) $) 18 (|has| |#1| (-541)))) (-2953 (((-621 |#4|) (-621 |#4|) $) 19 (|has| |#1| (-541)))) (-2714 (((-3 $ "failed") (-621 |#4|)) 36)) (-2659 (($ (-621 |#4|)) 35)) (-3657 (((-3 $ "failed") $) 82)) (-1903 ((|#4| |#4| $) 89)) (-3676 (($ $) 68 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ |#4| $) 67 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4337)))) (-3675 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-541)))) (-2217 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-3615 ((|#4| |#4| $) 87)) (-2557 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4337))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4337))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-1439 (((-2 (|:| -2681 (-621 |#4|)) (|:| -1359 (-621 |#4|))) $) 105)) (-3516 (((-112) |#4| $) 136)) (-3150 (((-112) |#4| $) 133)) (-2064 (((-112) |#4| $) 137) (((-112) $) 134)) (-2989 (((-621 |#4|) $) 52 (|has| $ (-6 -4337)))) (-2812 (((-112) |#4| $) 104) (((-112) $) 103)) (-2745 ((|#3| $) 34)) (-3194 (((-112) $ (-747)) 43)) (-1562 (((-621 |#4|) $) 53 (|has| $ (-6 -4337)))) (-2090 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#4| |#4|) $) 47)) (-2561 (((-621 |#3|) $) 32)) (-2378 (((-112) |#3| $) 31)) (-1508 (((-112) $ (-747)) 42)) (-3851 (((-1125) $) 9)) (-1878 (((-3 |#4| (-621 $)) |#4| |#4| $) 128)) (-3072 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 $))) |#4| |#4| $) 127)) (-3829 (((-3 |#4| "failed") $) 83)) (-3689 (((-621 $) |#4| $) 129)) (-1514 (((-3 (-112) (-621 $)) |#4| $) 132)) (-4184 (((-621 (-2 (|:| |val| (-112)) (|:| -1981 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-3655 (((-621 $) |#4| $) 125) (((-621 $) (-621 |#4|) $) 124) (((-621 $) (-621 |#4|) (-621 $)) 123) (((-621 $) |#4| (-621 $)) 122)) (-4283 (($ |#4| $) 117) (($ (-621 |#4|) $) 116)) (-1638 (((-621 |#4|) $) 107)) (-2170 (((-112) |#4| $) 99) (((-112) $) 95)) (-3270 ((|#4| |#4| $) 90)) (-2473 (((-112) $ $) 110)) (-4203 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-541)))) (-1335 (((-112) |#4| $) 100) (((-112) $) 96)) (-4298 ((|#4| |#4| $) 91)) (-3990 (((-1087) $) 10)) (-3646 (((-3 |#4| "failed") $) 84)) (-3779 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-2640 (((-3 $ "failed") $ |#4|) 78)) (-2763 (($ $ |#4|) 77) (((-621 $) |#4| $) 115) (((-621 $) |#4| (-621 $)) 114) (((-621 $) (-621 |#4|) $) 113) (((-621 $) (-621 |#4|) (-621 $)) 112)) (-1780 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 |#4|) (-621 |#4|)) 59 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-287 |#4|)) 57 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-621 (-287 |#4|))) 56 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))) (-4144 (((-112) $ $) 38)) (-3670 (((-112) $) 41)) (-3742 (($) 40)) (-3701 (((-747) $) 106)) (-4000 (((-747) |#4| $) 54 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) (((-747) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4337)))) (-2281 (($ $) 39)) (-2845 (((-525) $) 69 (|has| |#4| (-594 (-525))))) (-3854 (($ (-621 |#4|)) 60)) (-2858 (($ $ |#3|) 28)) (-3758 (($ $ |#3|) 30)) (-1962 (($ $) 88)) (-4317 (($ $ |#3|) 29)) (-3846 (((-834) $) 11) (((-621 |#4|) $) 37)) (-1824 (((-747) $) 76 (|has| |#3| (-361)))) (-2574 (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-1716 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) 98)) (-1518 (((-621 $) |#4| $) 121) (((-621 $) |#4| (-621 $)) 120) (((-621 $) (-621 |#4|) $) 119) (((-621 $) (-621 |#4|) (-621 $)) 118)) (-3527 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4337)))) (-3002 (((-621 |#3|) $) 81)) (-3524 (((-112) |#4| $) 135)) (-1606 (((-112) |#3| $) 80)) (-2389 (((-112) $ $) 6)) (-3775 (((-747) $) 46 (|has| $ (-6 -4337)))))
-(((-1094 |#1| |#2| |#3| |#4|) (-138) (-444) (-769) (-823) (-1032 |t#1| |t#2| |t#3|)) (T -1094))
-NIL
-(-13 (-1076 |t#1| |t#2| |t#3| |t#4|) (-760 |t#1| |t#2| |t#3| |t#4|))
-(((-34) . T) ((-101) . T) ((-593 (-621 |#4|)) . T) ((-593 (-834)) . T) ((-149 |#4|) . T) ((-594 (-525)) |has| |#4| (-594 (-525))) ((-302 |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))) ((-481 |#4|) . T) ((-505 |#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))) ((-760 |#1| |#2| |#3| |#4|) . T) ((-947 |#1| |#2| |#3| |#4|) . T) ((-1038 |#1| |#2| |#3| |#4|) . T) ((-1067) . T) ((-1076 |#1| |#2| |#3| |#4|) . T) ((-1173 |#1| |#2| |#3| |#4|) . T) ((-1180) . T))
-((-2227 (((-621 |#2|) |#1|) 12)) (-2619 (((-621 |#2|) |#2| |#2| |#2| |#2| |#2|) 41) (((-621 |#2|) |#1|) 52)) (-3767 (((-621 |#2|) |#2| |#2| |#2|) 39) (((-621 |#2|) |#1|) 50)) (-2079 ((|#2| |#1|) 46)) (-2196 (((-2 (|:| |solns| (-621 |#2|)) (|:| |maps| (-621 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|)) 17)) (-1392 (((-621 |#2|) |#2| |#2|) 38) (((-621 |#2|) |#1|) 49)) (-3248 (((-621 |#2|) |#2| |#2| |#2| |#2|) 40) (((-621 |#2|) |#1|) 51)) (-2893 ((|#2| |#2| |#2| |#2| |#2| |#2|) 45)) (-3496 ((|#2| |#2| |#2| |#2|) 43)) (-1278 ((|#2| |#2| |#2|) 42)) (-2744 ((|#2| |#2| |#2| |#2| |#2|) 44)))
-(((-1095 |#1| |#2|) (-10 -7 (-15 -2227 ((-621 |#2|) |#1|)) (-15 -2079 (|#2| |#1|)) (-15 -2196 ((-2 (|:| |solns| (-621 |#2|)) (|:| |maps| (-621 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -1392 ((-621 |#2|) |#1|)) (-15 -3767 ((-621 |#2|) |#1|)) (-15 -3248 ((-621 |#2|) |#1|)) (-15 -2619 ((-621 |#2|) |#1|)) (-15 -1392 ((-621 |#2|) |#2| |#2|)) (-15 -3767 ((-621 |#2|) |#2| |#2| |#2|)) (-15 -3248 ((-621 |#2|) |#2| |#2| |#2| |#2|)) (-15 -2619 ((-621 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -1278 (|#2| |#2| |#2|)) (-15 -3496 (|#2| |#2| |#2| |#2|)) (-15 -2744 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2893 (|#2| |#2| |#2| |#2| |#2| |#2|))) (-1202 |#2|) (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (T -1095))
-((-2893 (*1 *2 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *1 (-1095 *3 *2)) (-4 *3 (-1202 *2)))) (-2744 (*1 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *1 (-1095 *3 *2)) (-4 *3 (-1202 *2)))) (-3496 (*1 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *1 (-1095 *3 *2)) (-4 *3 (-1202 *2)))) (-1278 (*1 *2 *2 *2) (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *1 (-1095 *3 *2)) (-4 *3 (-1202 *2)))) (-2619 (*1 *2 *3 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *3)) (-5 *1 (-1095 *4 *3)) (-4 *4 (-1202 *3)))) (-3248 (*1 *2 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *3)) (-5 *1 (-1095 *4 *3)) (-4 *4 (-1202 *3)))) (-3767 (*1 *2 *3 *3 *3) (-12 (-4 *3 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *3)) (-5 *1 (-1095 *4 *3)) (-4 *4 (-1202 *3)))) (-1392 (*1 *2 *3 *3) (-12 (-4 *3 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *3)) (-5 *1 (-1095 *4 *3)) (-4 *4 (-1202 *3)))) (-2619 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *4)) (-5 *1 (-1095 *3 *4)) (-4 *3 (-1202 *4)))) (-3248 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *4)) (-5 *1 (-1095 *3 *4)) (-4 *3 (-1202 *4)))) (-3767 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *4)) (-5 *1 (-1095 *3 *4)) (-4 *3 (-1202 *4)))) (-1392 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *4)) (-5 *1 (-1095 *3 *4)) (-4 *3 (-1202 *4)))) (-2196 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *5 *5)) (-4 *5 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-2 (|:| |solns| (-621 *5)) (|:| |maps| (-621 (-2 (|:| |arg| *5) (|:| |res| *5)))))) (-5 *1 (-1095 *3 *5)) (-4 *3 (-1202 *5)))) (-2079 (*1 *2 *3) (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *1 (-1095 *3 *2)) (-4 *3 (-1202 *2)))) (-2227 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *4)) (-5 *1 (-1095 *3 *4)) (-4 *3 (-1202 *4)))))
-(-10 -7 (-15 -2227 ((-621 |#2|) |#1|)) (-15 -2079 (|#2| |#1|)) (-15 -2196 ((-2 (|:| |solns| (-621 |#2|)) (|:| |maps| (-621 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -1392 ((-621 |#2|) |#1|)) (-15 -3767 ((-621 |#2|) |#1|)) (-15 -3248 ((-621 |#2|) |#1|)) (-15 -2619 ((-621 |#2|) |#1|)) (-15 -1392 ((-621 |#2|) |#2| |#2|)) (-15 -3767 ((-621 |#2|) |#2| |#2| |#2|)) (-15 -3248 ((-621 |#2|) |#2| |#2| |#2| |#2|)) (-15 -2619 ((-621 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -1278 (|#2| |#2| |#2|)) (-15 -3496 (|#2| |#2| |#2| |#2|)) (-15 -2744 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2893 (|#2| |#2| |#2| |#2| |#2| |#2|)))
-((-4094 (((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-400 (-923 |#1|))))) 95) (((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-400 (-923 |#1|)))) (-621 (-1143))) 94) (((-621 (-621 (-287 (-309 |#1|)))) (-621 (-400 (-923 |#1|)))) 92) (((-621 (-621 (-287 (-309 |#1|)))) (-621 (-400 (-923 |#1|))) (-621 (-1143))) 90) (((-621 (-287 (-309 |#1|))) (-287 (-400 (-923 |#1|)))) 75) (((-621 (-287 (-309 |#1|))) (-287 (-400 (-923 |#1|))) (-1143)) 76) (((-621 (-287 (-309 |#1|))) (-400 (-923 |#1|))) 70) (((-621 (-287 (-309 |#1|))) (-400 (-923 |#1|)) (-1143)) 59)) (-1620 (((-621 (-621 (-309 |#1|))) (-621 (-400 (-923 |#1|))) (-621 (-1143))) 88) (((-621 (-309 |#1|)) (-400 (-923 |#1|)) (-1143)) 43)) (-1534 (((-1132 (-621 (-309 |#1|)) (-621 (-287 (-309 |#1|)))) (-400 (-923 |#1|)) (-1143)) 98) (((-1132 (-621 (-309 |#1|)) (-621 (-287 (-309 |#1|)))) (-287 (-400 (-923 |#1|))) (-1143)) 97)))
-(((-1096 |#1|) (-10 -7 (-15 -4094 ((-621 (-287 (-309 |#1|))) (-400 (-923 |#1|)) (-1143))) (-15 -4094 ((-621 (-287 (-309 |#1|))) (-400 (-923 |#1|)))) (-15 -4094 ((-621 (-287 (-309 |#1|))) (-287 (-400 (-923 |#1|))) (-1143))) (-15 -4094 ((-621 (-287 (-309 |#1|))) (-287 (-400 (-923 |#1|))))) (-15 -4094 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-400 (-923 |#1|))) (-621 (-1143)))) (-15 -4094 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-400 (-923 |#1|))))) (-15 -4094 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-400 (-923 |#1|)))) (-621 (-1143)))) (-15 -4094 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-400 (-923 |#1|)))))) (-15 -1620 ((-621 (-309 |#1|)) (-400 (-923 |#1|)) (-1143))) (-15 -1620 ((-621 (-621 (-309 |#1|))) (-621 (-400 (-923 |#1|))) (-621 (-1143)))) (-15 -1534 ((-1132 (-621 (-309 |#1|)) (-621 (-287 (-309 |#1|)))) (-287 (-400 (-923 |#1|))) (-1143))) (-15 -1534 ((-1132 (-621 (-309 |#1|)) (-621 (-287 (-309 |#1|)))) (-400 (-923 |#1|)) (-1143)))) (-13 (-300) (-823) (-145))) (T -1096))
-((-1534 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1143)) (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-1132 (-621 (-309 *5)) (-621 (-287 (-309 *5))))) (-5 *1 (-1096 *5)))) (-1534 (*1 *2 *3 *4) (-12 (-5 *3 (-287 (-400 (-923 *5)))) (-5 *4 (-1143)) (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-1132 (-621 (-309 *5)) (-621 (-287 (-309 *5))))) (-5 *1 (-1096 *5)))) (-1620 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-400 (-923 *5)))) (-5 *4 (-621 (-1143))) (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-621 (-309 *5)))) (-5 *1 (-1096 *5)))) (-1620 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1143)) (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-309 *5))) (-5 *1 (-1096 *5)))) (-4094 (*1 *2 *3) (-12 (-5 *3 (-621 (-287 (-400 (-923 *4))))) (-4 *4 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-621 (-287 (-309 *4))))) (-5 *1 (-1096 *4)))) (-4094 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-287 (-400 (-923 *5))))) (-5 *4 (-621 (-1143))) (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-621 (-287 (-309 *5))))) (-5 *1 (-1096 *5)))) (-4094 (*1 *2 *3) (-12 (-5 *3 (-621 (-400 (-923 *4)))) (-4 *4 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-621 (-287 (-309 *4))))) (-5 *1 (-1096 *4)))) (-4094 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-400 (-923 *5)))) (-5 *4 (-621 (-1143))) (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-621 (-287 (-309 *5))))) (-5 *1 (-1096 *5)))) (-4094 (*1 *2 *3) (-12 (-5 *3 (-287 (-400 (-923 *4)))) (-4 *4 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-287 (-309 *4)))) (-5 *1 (-1096 *4)))) (-4094 (*1 *2 *3 *4) (-12 (-5 *3 (-287 (-400 (-923 *5)))) (-5 *4 (-1143)) (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-287 (-309 *5)))) (-5 *1 (-1096 *5)))) (-4094 (*1 *2 *3) (-12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-287 (-309 *4)))) (-5 *1 (-1096 *4)))) (-4094 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1143)) (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-287 (-309 *5)))) (-5 *1 (-1096 *5)))))
-(-10 -7 (-15 -4094 ((-621 (-287 (-309 |#1|))) (-400 (-923 |#1|)) (-1143))) (-15 -4094 ((-621 (-287 (-309 |#1|))) (-400 (-923 |#1|)))) (-15 -4094 ((-621 (-287 (-309 |#1|))) (-287 (-400 (-923 |#1|))) (-1143))) (-15 -4094 ((-621 (-287 (-309 |#1|))) (-287 (-400 (-923 |#1|))))) (-15 -4094 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-400 (-923 |#1|))) (-621 (-1143)))) (-15 -4094 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-400 (-923 |#1|))))) (-15 -4094 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-400 (-923 |#1|)))) (-621 (-1143)))) (-15 -4094 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-400 (-923 |#1|)))))) (-15 -1620 ((-621 (-309 |#1|)) (-400 (-923 |#1|)) (-1143))) (-15 -1620 ((-621 (-621 (-309 |#1|))) (-621 (-400 (-923 |#1|))) (-621 (-1143)))) (-15 -1534 ((-1132 (-621 (-309 |#1|)) (-621 (-287 (-309 |#1|)))) (-287 (-400 (-923 |#1|))) (-1143))) (-15 -1534 ((-1132 (-621 (-309 |#1|)) (-621 (-287 (-309 |#1|)))) (-400 (-923 |#1|)) (-1143))))
-((-3787 (((-400 (-1139 (-309 |#1|))) (-1226 (-309 |#1|)) (-400 (-1139 (-309 |#1|))) (-549)) 29)) (-2713 (((-400 (-1139 (-309 |#1|))) (-400 (-1139 (-309 |#1|))) (-400 (-1139 (-309 |#1|))) (-400 (-1139 (-309 |#1|)))) 40)))
-(((-1097 |#1|) (-10 -7 (-15 -2713 ((-400 (-1139 (-309 |#1|))) (-400 (-1139 (-309 |#1|))) (-400 (-1139 (-309 |#1|))) (-400 (-1139 (-309 |#1|))))) (-15 -3787 ((-400 (-1139 (-309 |#1|))) (-1226 (-309 |#1|)) (-400 (-1139 (-309 |#1|))) (-549)))) (-13 (-541) (-823))) (T -1097))
-((-3787 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-400 (-1139 (-309 *5)))) (-5 *3 (-1226 (-309 *5))) (-5 *4 (-549)) (-4 *5 (-13 (-541) (-823))) (-5 *1 (-1097 *5)))) (-2713 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-400 (-1139 (-309 *3)))) (-4 *3 (-13 (-541) (-823))) (-5 *1 (-1097 *3)))))
-(-10 -7 (-15 -2713 ((-400 (-1139 (-309 |#1|))) (-400 (-1139 (-309 |#1|))) (-400 (-1139 (-309 |#1|))) (-400 (-1139 (-309 |#1|))))) (-15 -3787 ((-400 (-1139 (-309 |#1|))) (-1226 (-309 |#1|)) (-400 (-1139 (-309 |#1|))) (-549))))
-((-2227 (((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-309 |#1|))) (-621 (-1143))) 224) (((-621 (-287 (-309 |#1|))) (-309 |#1|) (-1143)) 20) (((-621 (-287 (-309 |#1|))) (-287 (-309 |#1|)) (-1143)) 26) (((-621 (-287 (-309 |#1|))) (-287 (-309 |#1|))) 25) (((-621 (-287 (-309 |#1|))) (-309 |#1|)) 21)))
-(((-1098 |#1|) (-10 -7 (-15 -2227 ((-621 (-287 (-309 |#1|))) (-309 |#1|))) (-15 -2227 ((-621 (-287 (-309 |#1|))) (-287 (-309 |#1|)))) (-15 -2227 ((-621 (-287 (-309 |#1|))) (-287 (-309 |#1|)) (-1143))) (-15 -2227 ((-621 (-287 (-309 |#1|))) (-309 |#1|) (-1143))) (-15 -2227 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-309 |#1|))) (-621 (-1143))))) (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (T -1098))
-((-2227 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-1143))) (-4 *5 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-621 (-621 (-287 (-309 *5))))) (-5 *1 (-1098 *5)) (-5 *3 (-621 (-287 (-309 *5)))))) (-2227 (*1 *2 *3 *4) (-12 (-5 *4 (-1143)) (-4 *5 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-621 (-287 (-309 *5)))) (-5 *1 (-1098 *5)) (-5 *3 (-309 *5)))) (-2227 (*1 *2 *3 *4) (-12 (-5 *4 (-1143)) (-4 *5 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-621 (-287 (-309 *5)))) (-5 *1 (-1098 *5)) (-5 *3 (-287 (-309 *5))))) (-2227 (*1 *2 *3) (-12 (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-621 (-287 (-309 *4)))) (-5 *1 (-1098 *4)) (-5 *3 (-287 (-309 *4))))) (-2227 (*1 *2 *3) (-12 (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-621 (-287 (-309 *4)))) (-5 *1 (-1098 *4)) (-5 *3 (-309 *4)))))
-(-10 -7 (-15 -2227 ((-621 (-287 (-309 |#1|))) (-309 |#1|))) (-15 -2227 ((-621 (-287 (-309 |#1|))) (-287 (-309 |#1|)))) (-15 -2227 ((-621 (-287 (-309 |#1|))) (-287 (-309 |#1|)) (-1143))) (-15 -2227 ((-621 (-287 (-309 |#1|))) (-309 |#1|) (-1143))) (-15 -2227 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-309 |#1|))) (-621 (-1143)))))
-((-4287 ((|#2| |#2|) 20 (|has| |#1| (-823))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 17)) (-4127 ((|#2| |#2|) 19 (|has| |#1| (-823))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 16)))
-(((-1099 |#1| |#2|) (-10 -7 (-15 -4127 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -4287 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-823)) (PROGN (-15 -4127 (|#2| |#2|)) (-15 -4287 (|#2| |#2|))) |%noBranch|)) (-1180) (-13 (-584 (-549) |#1|) (-10 -7 (-6 -4337) (-6 -4338)))) (T -1099))
-((-4287 (*1 *2 *2) (-12 (-4 *3 (-823)) (-4 *3 (-1180)) (-5 *1 (-1099 *3 *2)) (-4 *2 (-13 (-584 (-549) *3) (-10 -7 (-6 -4337) (-6 -4338)))))) (-4127 (*1 *2 *2) (-12 (-4 *3 (-823)) (-4 *3 (-1180)) (-5 *1 (-1099 *3 *2)) (-4 *2 (-13 (-584 (-549) *3) (-10 -7 (-6 -4337) (-6 -4338)))))) (-4287 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1180)) (-5 *1 (-1099 *4 *2)) (-4 *2 (-13 (-584 (-549) *4) (-10 -7 (-6 -4337) (-6 -4338)))))) (-4127 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1180)) (-5 *1 (-1099 *4 *2)) (-4 *2 (-13 (-584 (-549) *4) (-10 -7 (-6 -4337) (-6 -4338)))))))
-(-10 -7 (-15 -4127 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -4287 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-823)) (PROGN (-15 -4127 (|#2| |#2|)) (-15 -4287 (|#2| |#2|))) |%noBranch|))
-((-3834 (((-112) $ $) NIL)) (-3368 (((-1131 3 |#1|) $) 107)) (-1705 (((-112) $) 72)) (-4255 (($ $ (-621 (-914 |#1|))) 20) (($ $ (-621 (-621 |#1|))) 75) (($ (-621 (-914 |#1|))) 74) (((-621 (-914 |#1|)) $) 73)) (-4081 (((-112) $) 41)) (-2798 (($ $ (-914 |#1|)) 46) (($ $ (-621 |#1|)) 51) (($ $ (-747)) 53) (($ (-914 |#1|)) 47) (((-914 |#1|) $) 45)) (-1850 (((-2 (|:| -4115 (-747)) (|:| |curves| (-747)) (|:| |polygons| (-747)) (|:| |constructs| (-747))) $) 105)) (-3898 (((-747) $) 26)) (-2609 (((-747) $) 25)) (-2986 (($ $ (-747) (-914 |#1|)) 39)) (-1976 (((-112) $) 82)) (-2580 (($ $ (-621 (-621 (-914 |#1|))) (-621 (-169)) (-169)) 89) (($ $ (-621 (-621 (-621 |#1|))) (-621 (-169)) (-169)) 91) (($ $ (-621 (-621 (-914 |#1|))) (-112) (-112)) 85) (($ $ (-621 (-621 (-621 |#1|))) (-112) (-112)) 93) (($ (-621 (-621 (-914 |#1|)))) 86) (($ (-621 (-621 (-914 |#1|))) (-112) (-112)) 87) (((-621 (-621 (-914 |#1|))) $) 84)) (-3890 (($ (-621 $)) 28) (($ $ $) 29)) (-3306 (((-621 (-169)) $) 102)) (-2790 (((-621 (-914 |#1|)) $) 96)) (-2105 (((-621 (-621 (-169))) $) 101)) (-1625 (((-621 (-621 (-621 (-914 |#1|)))) $) NIL)) (-4134 (((-621 (-621 (-621 (-747)))) $) 99)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-4200 (((-747) $ (-621 (-914 |#1|))) 37)) (-2918 (((-112) $) 54)) (-2237 (($ $ (-621 (-914 |#1|))) 56) (($ $ (-621 (-621 |#1|))) 62) (($ (-621 (-914 |#1|))) 57) (((-621 (-914 |#1|)) $) 55)) (-4088 (($) 23) (($ (-1131 3 |#1|)) 24)) (-2281 (($ $) 35)) (-1345 (((-621 $) $) 34)) (-3033 (($ (-621 $)) 31)) (-3971 (((-621 $) $) 33)) (-3846 (((-834) $) 111)) (-2629 (((-112) $) 64)) (-3052 (($ $ (-621 (-914 |#1|))) 66) (($ $ (-621 (-621 |#1|))) 69) (($ (-621 (-914 |#1|))) 67) (((-621 (-914 |#1|)) $) 65)) (-3097 (($ $) 106)) (-2389 (((-112) $ $) NIL)))
-(((-1100 |#1|) (-1101 |#1|) (-1018)) (T -1100))
-NIL
-(-1101 |#1|)
-((-3834 (((-112) $ $) 7)) (-3368 (((-1131 3 |#1|) $) 13)) (-1705 (((-112) $) 29)) (-4255 (($ $ (-621 (-914 |#1|))) 33) (($ $ (-621 (-621 |#1|))) 32) (($ (-621 (-914 |#1|))) 31) (((-621 (-914 |#1|)) $) 30)) (-4081 (((-112) $) 44)) (-2798 (($ $ (-914 |#1|)) 49) (($ $ (-621 |#1|)) 48) (($ $ (-747)) 47) (($ (-914 |#1|)) 46) (((-914 |#1|) $) 45)) (-1850 (((-2 (|:| -4115 (-747)) (|:| |curves| (-747)) (|:| |polygons| (-747)) (|:| |constructs| (-747))) $) 15)) (-3898 (((-747) $) 58)) (-2609 (((-747) $) 59)) (-2986 (($ $ (-747) (-914 |#1|)) 50)) (-1976 (((-112) $) 21)) (-2580 (($ $ (-621 (-621 (-914 |#1|))) (-621 (-169)) (-169)) 28) (($ $ (-621 (-621 (-621 |#1|))) (-621 (-169)) (-169)) 27) (($ $ (-621 (-621 (-914 |#1|))) (-112) (-112)) 26) (($ $ (-621 (-621 (-621 |#1|))) (-112) (-112)) 25) (($ (-621 (-621 (-914 |#1|)))) 24) (($ (-621 (-621 (-914 |#1|))) (-112) (-112)) 23) (((-621 (-621 (-914 |#1|))) $) 22)) (-3890 (($ (-621 $)) 57) (($ $ $) 56)) (-3306 (((-621 (-169)) $) 16)) (-2790 (((-621 (-914 |#1|)) $) 20)) (-2105 (((-621 (-621 (-169))) $) 17)) (-1625 (((-621 (-621 (-621 (-914 |#1|)))) $) 18)) (-4134 (((-621 (-621 (-621 (-747)))) $) 19)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-4200 (((-747) $ (-621 (-914 |#1|))) 51)) (-2918 (((-112) $) 39)) (-2237 (($ $ (-621 (-914 |#1|))) 43) (($ $ (-621 (-621 |#1|))) 42) (($ (-621 (-914 |#1|))) 41) (((-621 (-914 |#1|)) $) 40)) (-4088 (($) 61) (($ (-1131 3 |#1|)) 60)) (-2281 (($ $) 52)) (-1345 (((-621 $) $) 53)) (-3033 (($ (-621 $)) 55)) (-3971 (((-621 $) $) 54)) (-3846 (((-834) $) 11)) (-2629 (((-112) $) 34)) (-3052 (($ $ (-621 (-914 |#1|))) 38) (($ $ (-621 (-621 |#1|))) 37) (($ (-621 (-914 |#1|))) 36) (((-621 (-914 |#1|)) $) 35)) (-3097 (($ $) 14)) (-2389 (((-112) $ $) 6)))
-(((-1101 |#1|) (-138) (-1018)) (T -1101))
-((-3846 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-834)))) (-4088 (*1 *1) (-12 (-4 *1 (-1101 *2)) (-4 *2 (-1018)))) (-4088 (*1 *1 *2) (-12 (-5 *2 (-1131 3 *3)) (-4 *3 (-1018)) (-4 *1 (-1101 *3)))) (-2609 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-747)))) (-3898 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-747)))) (-3890 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-1101 *3)) (-4 *3 (-1018)))) (-3890 (*1 *1 *1 *1) (-12 (-4 *1 (-1101 *2)) (-4 *2 (-1018)))) (-3033 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-1101 *3)) (-4 *3 (-1018)))) (-3971 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-5 *2 (-621 *1)) (-4 *1 (-1101 *3)))) (-1345 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-5 *2 (-621 *1)) (-4 *1 (-1101 *3)))) (-2281 (*1 *1 *1) (-12 (-4 *1 (-1101 *2)) (-4 *2 (-1018)))) (-4200 (*1 *2 *1 *3) (-12 (-5 *3 (-621 (-914 *4))) (-4 *1 (-1101 *4)) (-4 *4 (-1018)) (-5 *2 (-747)))) (-2986 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *3 (-914 *4)) (-4 *1 (-1101 *4)) (-4 *4 (-1018)))) (-2798 (*1 *1 *1 *2) (-12 (-5 *2 (-914 *3)) (-4 *1 (-1101 *3)) (-4 *3 (-1018)))) (-2798 (*1 *1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *1 (-1101 *3)) (-4 *3 (-1018)))) (-2798 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1101 *3)) (-4 *3 (-1018)))) (-2798 (*1 *1 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-1018)) (-4 *1 (-1101 *3)))) (-2798 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-914 *3)))) (-4081 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))) (-2237 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-914 *3))) (-4 *1 (-1101 *3)) (-4 *3 (-1018)))) (-2237 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *1 (-1101 *3)) (-4 *3 (-1018)))) (-2237 (*1 *1 *2) (-12 (-5 *2 (-621 (-914 *3))) (-4 *3 (-1018)) (-4 *1 (-1101 *3)))) (-2237 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-914 *3))))) (-2918 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))) (-3052 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-914 *3))) (-4 *1 (-1101 *3)) (-4 *3 (-1018)))) (-3052 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *1 (-1101 *3)) (-4 *3 (-1018)))) (-3052 (*1 *1 *2) (-12 (-5 *2 (-621 (-914 *3))) (-4 *3 (-1018)) (-4 *1 (-1101 *3)))) (-3052 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-914 *3))))) (-2629 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))) (-4255 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-914 *3))) (-4 *1 (-1101 *3)) (-4 *3 (-1018)))) (-4255 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *1 (-1101 *3)) (-4 *3 (-1018)))) (-4255 (*1 *1 *2) (-12 (-5 *2 (-621 (-914 *3))) (-4 *3 (-1018)) (-4 *1 (-1101 *3)))) (-4255 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-914 *3))))) (-1705 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))) (-2580 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-621 (-621 (-914 *5)))) (-5 *3 (-621 (-169))) (-5 *4 (-169)) (-4 *1 (-1101 *5)) (-4 *5 (-1018)))) (-2580 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-621 (-621 (-621 *5)))) (-5 *3 (-621 (-169))) (-5 *4 (-169)) (-4 *1 (-1101 *5)) (-4 *5 (-1018)))) (-2580 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-621 (-621 (-914 *4)))) (-5 *3 (-112)) (-4 *1 (-1101 *4)) (-4 *4 (-1018)))) (-2580 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-621 (-621 (-621 *4)))) (-5 *3 (-112)) (-4 *1 (-1101 *4)) (-4 *4 (-1018)))) (-2580 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 (-914 *3)))) (-4 *3 (-1018)) (-4 *1 (-1101 *3)))) (-2580 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-621 (-621 (-914 *4)))) (-5 *3 (-112)) (-4 *4 (-1018)) (-4 *1 (-1101 *4)))) (-2580 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-621 (-914 *3)))))) (-1976 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))) (-2790 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-914 *3))))) (-4134 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-621 (-621 (-747))))))) (-1625 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-621 (-621 (-914 *3))))))) (-2105 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-621 (-169)))))) (-3306 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-169))))) (-1850 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| -4115 (-747)) (|:| |curves| (-747)) (|:| |polygons| (-747)) (|:| |constructs| (-747)))))) (-3097 (*1 *1 *1) (-12 (-4 *1 (-1101 *2)) (-4 *2 (-1018)))) (-3368 (*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-1131 3 *3)))))
-(-13 (-1067) (-10 -8 (-15 -4088 ($)) (-15 -4088 ($ (-1131 3 |t#1|))) (-15 -2609 ((-747) $)) (-15 -3898 ((-747) $)) (-15 -3890 ($ (-621 $))) (-15 -3890 ($ $ $)) (-15 -3033 ($ (-621 $))) (-15 -3971 ((-621 $) $)) (-15 -1345 ((-621 $) $)) (-15 -2281 ($ $)) (-15 -4200 ((-747) $ (-621 (-914 |t#1|)))) (-15 -2986 ($ $ (-747) (-914 |t#1|))) (-15 -2798 ($ $ (-914 |t#1|))) (-15 -2798 ($ $ (-621 |t#1|))) (-15 -2798 ($ $ (-747))) (-15 -2798 ($ (-914 |t#1|))) (-15 -2798 ((-914 |t#1|) $)) (-15 -4081 ((-112) $)) (-15 -2237 ($ $ (-621 (-914 |t#1|)))) (-15 -2237 ($ $ (-621 (-621 |t#1|)))) (-15 -2237 ($ (-621 (-914 |t#1|)))) (-15 -2237 ((-621 (-914 |t#1|)) $)) (-15 -2918 ((-112) $)) (-15 -3052 ($ $ (-621 (-914 |t#1|)))) (-15 -3052 ($ $ (-621 (-621 |t#1|)))) (-15 -3052 ($ (-621 (-914 |t#1|)))) (-15 -3052 ((-621 (-914 |t#1|)) $)) (-15 -2629 ((-112) $)) (-15 -4255 ($ $ (-621 (-914 |t#1|)))) (-15 -4255 ($ $ (-621 (-621 |t#1|)))) (-15 -4255 ($ (-621 (-914 |t#1|)))) (-15 -4255 ((-621 (-914 |t#1|)) $)) (-15 -1705 ((-112) $)) (-15 -2580 ($ $ (-621 (-621 (-914 |t#1|))) (-621 (-169)) (-169))) (-15 -2580 ($ $ (-621 (-621 (-621 |t#1|))) (-621 (-169)) (-169))) (-15 -2580 ($ $ (-621 (-621 (-914 |t#1|))) (-112) (-112))) (-15 -2580 ($ $ (-621 (-621 (-621 |t#1|))) (-112) (-112))) (-15 -2580 ($ (-621 (-621 (-914 |t#1|))))) (-15 -2580 ($ (-621 (-621 (-914 |t#1|))) (-112) (-112))) (-15 -2580 ((-621 (-621 (-914 |t#1|))) $)) (-15 -1976 ((-112) $)) (-15 -2790 ((-621 (-914 |t#1|)) $)) (-15 -4134 ((-621 (-621 (-621 (-747)))) $)) (-15 -1625 ((-621 (-621 (-621 (-914 |t#1|)))) $)) (-15 -2105 ((-621 (-621 (-169))) $)) (-15 -3306 ((-621 (-169)) $)) (-15 -1850 ((-2 (|:| -4115 (-747)) (|:| |curves| (-747)) (|:| |polygons| (-747)) (|:| |constructs| (-747))) $)) (-15 -3097 ($ $)) (-15 -3368 ((-1131 3 |t#1|) $)) (-15 -3846 ((-834) $))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) 7)) (-3264 (((-112) $ (|[\|\|]| (-515))) 17) (((-112) $ (|[\|\|]| (-212))) 21) (((-112) $ (|[\|\|]| (-652))) 25) (((-112) $ (|[\|\|]| (-1236))) 29) (((-112) $ (|[\|\|]| (-137))) 33) (((-112) $ (|[\|\|]| (-132))) 37) (((-112) $ (|[\|\|]| (-1082))) 41) (((-112) $ (|[\|\|]| (-95))) 45) (((-112) $ (|[\|\|]| (-657))) 49) (((-112) $ (|[\|\|]| (-508))) 53) (((-112) $ (|[\|\|]| (-1033))) 57) (((-112) $ (|[\|\|]| (-1237))) 61) (((-112) $ (|[\|\|]| (-516))) 65) (((-112) $ (|[\|\|]| (-152))) 69) (((-112) $ (|[\|\|]| (-647))) 73) (((-112) $ (|[\|\|]| (-304))) 77) (((-112) $ (|[\|\|]| (-1007))) 81) (((-112) $ (|[\|\|]| (-178))) 85) (((-112) $ (|[\|\|]| (-941))) 89) (((-112) $ (|[\|\|]| (-1040))) 93) (((-112) $ (|[\|\|]| (-1057))) 97) (((-112) $ (|[\|\|]| (-1063))) 101) (((-112) $ (|[\|\|]| (-604))) 105) (((-112) $ (|[\|\|]| (-1133))) 109) (((-112) $ (|[\|\|]| (-154))) 113) (((-112) $ (|[\|\|]| (-136))) 117) (((-112) $ (|[\|\|]| (-470))) 121) (((-112) $ (|[\|\|]| (-573))) 125)) (-2321 (((-515) $) 18) (((-212) $) 22) (((-652) $) 26) (((-1236) $) 30) (((-137) $) 34) (((-132) $) 38) (((-1082) $) 42) (((-95) $) 46) (((-657) $) 50) (((-508) $) 54) (((-1033) $) 58) (((-1237) $) 62) (((-516) $) 66) (((-152) $) 70) (((-647) $) 74) (((-304) $) 78) (((-1007) $) 82) (((-178) $) 86) (((-941) $) 90) (((-1040) $) 94) (((-1057) $) 98) (((-1063) $) 102) (((-604) $) 106) (((-1133) $) 110) (((-154) $) 114) (((-136) $) 118) (((-470) $) 122) (((-573) $) 126)) (-2389 (((-112) $ $) NIL)))
-(((-1102) (-1104)) (T -1102))
-NIL
-(-1104)
-((-3383 (((-621 (-1148)) (-1125)) 9)))
-(((-1103) (-10 -7 (-15 -3383 ((-621 (-1148)) (-1125))))) (T -1103))
-((-3383 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-621 (-1148))) (-5 *1 (-1103)))))
-(-10 -7 (-15 -3383 ((-621 (-1148)) (-1125))))
-((-3834 (((-112) $ $) 7)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11) (((-1148) $) 14)) (-3264 (((-112) $ (|[\|\|]| (-515))) 72) (((-112) $ (|[\|\|]| (-212))) 70) (((-112) $ (|[\|\|]| (-652))) 68) (((-112) $ (|[\|\|]| (-1236))) 66) (((-112) $ (|[\|\|]| (-137))) 64) (((-112) $ (|[\|\|]| (-132))) 62) (((-112) $ (|[\|\|]| (-1082))) 60) (((-112) $ (|[\|\|]| (-95))) 58) (((-112) $ (|[\|\|]| (-657))) 56) (((-112) $ (|[\|\|]| (-508))) 54) (((-112) $ (|[\|\|]| (-1033))) 52) (((-112) $ (|[\|\|]| (-1237))) 50) (((-112) $ (|[\|\|]| (-516))) 48) (((-112) $ (|[\|\|]| (-152))) 46) (((-112) $ (|[\|\|]| (-647))) 44) (((-112) $ (|[\|\|]| (-304))) 42) (((-112) $ (|[\|\|]| (-1007))) 40) (((-112) $ (|[\|\|]| (-178))) 38) (((-112) $ (|[\|\|]| (-941))) 36) (((-112) $ (|[\|\|]| (-1040))) 34) (((-112) $ (|[\|\|]| (-1057))) 32) (((-112) $ (|[\|\|]| (-1063))) 30) (((-112) $ (|[\|\|]| (-604))) 28) (((-112) $ (|[\|\|]| (-1133))) 26) (((-112) $ (|[\|\|]| (-154))) 24) (((-112) $ (|[\|\|]| (-136))) 22) (((-112) $ (|[\|\|]| (-470))) 20) (((-112) $ (|[\|\|]| (-573))) 18)) (-2321 (((-515) $) 71) (((-212) $) 69) (((-652) $) 67) (((-1236) $) 65) (((-137) $) 63) (((-132) $) 61) (((-1082) $) 59) (((-95) $) 57) (((-657) $) 55) (((-508) $) 53) (((-1033) $) 51) (((-1237) $) 49) (((-516) $) 47) (((-152) $) 45) (((-647) $) 43) (((-304) $) 41) (((-1007) $) 39) (((-178) $) 37) (((-941) $) 35) (((-1040) $) 33) (((-1057) $) 31) (((-1063) $) 29) (((-604) $) 27) (((-1133) $) 25) (((-154) $) 23) (((-136) $) 21) (((-470) $) 19) (((-573) $) 17)) (-2389 (((-112) $ $) 6)))
-(((-1104) (-138)) (T -1104))
-((-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-515))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-515)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-212))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-212)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-652))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-652)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1236))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1236)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-137))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-137)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-132))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-132)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1082))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1082)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-95))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-95)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-657))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-657)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-508))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-508)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1033))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1033)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1237))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1237)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-516))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-516)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-152))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-152)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-647))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-647)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-304))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-304)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1007))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1007)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-178))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-178)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-941))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-941)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1040))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1040)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1057))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1057)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1063))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1063)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-604))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-604)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1133))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1133)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-154))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-154)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-136))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-136)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-470))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-470)))) (-3264 (*1 *2 *1 *3) (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-573))) (-5 *2 (-112)))) (-2321 (*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-573)))))
-(-13 (-1050) (-1221) (-10 -8 (-15 -3264 ((-112) $ (|[\|\|]| (-515)))) (-15 -2321 ((-515) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-212)))) (-15 -2321 ((-212) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-652)))) (-15 -2321 ((-652) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-1236)))) (-15 -2321 ((-1236) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-137)))) (-15 -2321 ((-137) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-132)))) (-15 -2321 ((-132) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-1082)))) (-15 -2321 ((-1082) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-95)))) (-15 -2321 ((-95) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-657)))) (-15 -2321 ((-657) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-508)))) (-15 -2321 ((-508) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-1033)))) (-15 -2321 ((-1033) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-1237)))) (-15 -2321 ((-1237) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-516)))) (-15 -2321 ((-516) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-152)))) (-15 -2321 ((-152) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-647)))) (-15 -2321 ((-647) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-304)))) (-15 -2321 ((-304) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-1007)))) (-15 -2321 ((-1007) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-178)))) (-15 -2321 ((-178) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-941)))) (-15 -2321 ((-941) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-1040)))) (-15 -2321 ((-1040) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-1057)))) (-15 -2321 ((-1057) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-1063)))) (-15 -2321 ((-1063) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-604)))) (-15 -2321 ((-604) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-1133)))) (-15 -2321 ((-1133) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-154)))) (-15 -2321 ((-154) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-136)))) (-15 -2321 ((-136) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-470)))) (-15 -2321 ((-470) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-573)))) (-15 -2321 ((-573) $))))
-(((-92) . T) ((-101) . T) ((-593 (-834)) . T) ((-593 (-1148)) . T) ((-1067) . T) ((-1050) . T) ((-1221) . T))
-((-2006 (((-1231) (-621 (-834))) 23) (((-1231) (-834)) 22)) (-3930 (((-1231) (-621 (-834))) 21) (((-1231) (-834)) 20)) (-3316 (((-1231) (-621 (-834))) 19) (((-1231) (-834)) 11) (((-1231) (-1125) (-834)) 17)))
-(((-1105) (-10 -7 (-15 -3316 ((-1231) (-1125) (-834))) (-15 -3316 ((-1231) (-834))) (-15 -3930 ((-1231) (-834))) (-15 -2006 ((-1231) (-834))) (-15 -3316 ((-1231) (-621 (-834)))) (-15 -3930 ((-1231) (-621 (-834)))) (-15 -2006 ((-1231) (-621 (-834)))))) (T -1105))
-((-2006 (*1 *2 *3) (-12 (-5 *3 (-621 (-834))) (-5 *2 (-1231)) (-5 *1 (-1105)))) (-3930 (*1 *2 *3) (-12 (-5 *3 (-621 (-834))) (-5 *2 (-1231)) (-5 *1 (-1105)))) (-3316 (*1 *2 *3) (-12 (-5 *3 (-621 (-834))) (-5 *2 (-1231)) (-5 *1 (-1105)))) (-2006 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1231)) (-5 *1 (-1105)))) (-3930 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1231)) (-5 *1 (-1105)))) (-3316 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1231)) (-5 *1 (-1105)))) (-3316 (*1 *2 *3 *4) (-12 (-5 *3 (-1125)) (-5 *4 (-834)) (-5 *2 (-1231)) (-5 *1 (-1105)))))
-(-10 -7 (-15 -3316 ((-1231) (-1125) (-834))) (-15 -3316 ((-1231) (-834))) (-15 -3930 ((-1231) (-834))) (-15 -2006 ((-1231) (-834))) (-15 -3316 ((-1231) (-621 (-834)))) (-15 -3930 ((-1231) (-621 (-834)))) (-15 -2006 ((-1231) (-621 (-834)))))
-((-3796 (($ $ $) 10)) (-3634 (($ $) 9)) (-1370 (($ $ $) 13)) (-1611 (($ $ $) 15)) (-2981 (($ $ $) 12)) (-1643 (($ $ $) 14)) (-1273 (($ $) 17)) (-3000 (($ $) 16)) (-3212 (($ $) 6)) (-3553 (($ $ $) 11) (($ $) 7)) (-2096 (($ $ $) 8)))
-(((-1106) (-138)) (T -1106))
-((-1273 (*1 *1 *1) (-4 *1 (-1106))) (-3000 (*1 *1 *1) (-4 *1 (-1106))) (-1611 (*1 *1 *1 *1) (-4 *1 (-1106))) (-1643 (*1 *1 *1 *1) (-4 *1 (-1106))) (-1370 (*1 *1 *1 *1) (-4 *1 (-1106))) (-2981 (*1 *1 *1 *1) (-4 *1 (-1106))) (-3553 (*1 *1 *1 *1) (-4 *1 (-1106))) (-3796 (*1 *1 *1 *1) (-4 *1 (-1106))) (-3634 (*1 *1 *1) (-4 *1 (-1106))) (-2096 (*1 *1 *1 *1) (-4 *1 (-1106))) (-3553 (*1 *1 *1) (-4 *1 (-1106))) (-3212 (*1 *1 *1) (-4 *1 (-1106))))
-(-13 (-10 -8 (-15 -3212 ($ $)) (-15 -3553 ($ $)) (-15 -2096 ($ $ $)) (-15 -3634 ($ $)) (-15 -3796 ($ $ $)) (-15 -3553 ($ $ $)) (-15 -2981 ($ $ $)) (-15 -1370 ($ $ $)) (-15 -1643 ($ $ $)) (-15 -1611 ($ $ $)) (-15 -3000 ($ $)) (-15 -1273 ($ $))))
-((-3834 (((-112) $ $) 41)) (-4161 ((|#1| $) 15)) (-2345 (((-112) $ $ (-1 (-112) |#2| |#2|)) 36)) (-1464 (((-112) $) 17)) (-3082 (($ $ |#1|) 28)) (-3627 (($ $ (-112)) 30)) (-2690 (($ $) 31)) (-4034 (($ $ |#2|) 29)) (-3851 (((-1125) $) NIL)) (-3416 (((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|)) 35)) (-3990 (((-1087) $) NIL)) (-3670 (((-112) $) 14)) (-3742 (($) 10)) (-2281 (($ $) 27)) (-3854 (($ |#1| |#2| (-112)) 18) (($ |#1| |#2|) 19) (($ (-2 (|:| |val| |#1|) (|:| -1981 |#2|))) 21) (((-621 $) (-621 (-2 (|:| |val| |#1|) (|:| -1981 |#2|)))) 24) (((-621 $) |#1| (-621 |#2|)) 26)) (-1927 ((|#2| $) 16)) (-3846 (((-834) $) 50)) (-2389 (((-112) $ $) 39)))
-(((-1107 |#1| |#2|) (-13 (-1067) (-10 -8 (-15 -3742 ($)) (-15 -3670 ((-112) $)) (-15 -4161 (|#1| $)) (-15 -1927 (|#2| $)) (-15 -1464 ((-112) $)) (-15 -3854 ($ |#1| |#2| (-112))) (-15 -3854 ($ |#1| |#2|)) (-15 -3854 ($ (-2 (|:| |val| |#1|) (|:| -1981 |#2|)))) (-15 -3854 ((-621 $) (-621 (-2 (|:| |val| |#1|) (|:| -1981 |#2|))))) (-15 -3854 ((-621 $) |#1| (-621 |#2|))) (-15 -2281 ($ $)) (-15 -3082 ($ $ |#1|)) (-15 -4034 ($ $ |#2|)) (-15 -3627 ($ $ (-112))) (-15 -2690 ($ $)) (-15 -3416 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -2345 ((-112) $ $ (-1 (-112) |#2| |#2|))))) (-13 (-1067) (-34)) (-13 (-1067) (-34))) (T -1107))
-((-3742 (*1 *1) (-12 (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1067) (-34))) (-4 *3 (-13 (-1067) (-34))))) (-3670 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1107 *3 *4)) (-4 *3 (-13 (-1067) (-34))) (-4 *4 (-13 (-1067) (-34))))) (-4161 (*1 *2 *1) (-12 (-4 *2 (-13 (-1067) (-34))) (-5 *1 (-1107 *2 *3)) (-4 *3 (-13 (-1067) (-34))))) (-1927 (*1 *2 *1) (-12 (-4 *2 (-13 (-1067) (-34))) (-5 *1 (-1107 *3 *2)) (-4 *3 (-13 (-1067) (-34))))) (-1464 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1107 *3 *4)) (-4 *3 (-13 (-1067) (-34))) (-4 *4 (-13 (-1067) (-34))))) (-3854 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1067) (-34))) (-4 *3 (-13 (-1067) (-34))))) (-3854 (*1 *1 *2 *3) (-12 (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1067) (-34))) (-4 *3 (-13 (-1067) (-34))))) (-3854 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -1981 *4))) (-4 *3 (-13 (-1067) (-34))) (-4 *4 (-13 (-1067) (-34))) (-5 *1 (-1107 *3 *4)))) (-3854 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| |val| *4) (|:| -1981 *5)))) (-4 *4 (-13 (-1067) (-34))) (-4 *5 (-13 (-1067) (-34))) (-5 *2 (-621 (-1107 *4 *5))) (-5 *1 (-1107 *4 *5)))) (-3854 (*1 *2 *3 *4) (-12 (-5 *4 (-621 *5)) (-4 *5 (-13 (-1067) (-34))) (-5 *2 (-621 (-1107 *3 *5))) (-5 *1 (-1107 *3 *5)) (-4 *3 (-13 (-1067) (-34))))) (-2281 (*1 *1 *1) (-12 (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1067) (-34))) (-4 *3 (-13 (-1067) (-34))))) (-3082 (*1 *1 *1 *2) (-12 (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1067) (-34))) (-4 *3 (-13 (-1067) (-34))))) (-4034 (*1 *1 *1 *2) (-12 (-5 *1 (-1107 *3 *2)) (-4 *3 (-13 (-1067) (-34))) (-4 *2 (-13 (-1067) (-34))))) (-3627 (*1 *1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1107 *3 *4)) (-4 *3 (-13 (-1067) (-34))) (-4 *4 (-13 (-1067) (-34))))) (-2690 (*1 *1 *1) (-12 (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1067) (-34))) (-4 *3 (-13 (-1067) (-34))))) (-3416 (*1 *2 *1 *1 *3 *4) (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1067) (-34))) (-4 *6 (-13 (-1067) (-34))) (-5 *2 (-112)) (-5 *1 (-1107 *5 *6)))) (-2345 (*1 *2 *1 *1 *3) (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1067) (-34))) (-5 *2 (-112)) (-5 *1 (-1107 *4 *5)) (-4 *4 (-13 (-1067) (-34))))))
-(-13 (-1067) (-10 -8 (-15 -3742 ($)) (-15 -3670 ((-112) $)) (-15 -4161 (|#1| $)) (-15 -1927 (|#2| $)) (-15 -1464 ((-112) $)) (-15 -3854 ($ |#1| |#2| (-112))) (-15 -3854 ($ |#1| |#2|)) (-15 -3854 ($ (-2 (|:| |val| |#1|) (|:| -1981 |#2|)))) (-15 -3854 ((-621 $) (-621 (-2 (|:| |val| |#1|) (|:| -1981 |#2|))))) (-15 -3854 ((-621 $) |#1| (-621 |#2|))) (-15 -2281 ($ $)) (-15 -3082 ($ $ |#1|)) (-15 -4034 ($ $ |#2|)) (-15 -3627 ($ $ (-112))) (-15 -2690 ($ $)) (-15 -3416 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -2345 ((-112) $ $ (-1 (-112) |#2| |#2|)))))
-((-3834 (((-112) $ $) NIL (|has| (-1107 |#1| |#2|) (-1067)))) (-4161 (((-1107 |#1| |#2|) $) 25)) (-2493 (($ $) 76)) (-2327 (((-112) (-1107 |#1| |#2|) $ (-1 (-112) |#2| |#2|)) 85)) (-1913 (($ $ $ (-621 (-1107 |#1| |#2|))) 90) (($ $ $ (-621 (-1107 |#1| |#2|)) (-1 (-112) |#2| |#2|)) 91)) (-1584 (((-112) $ (-747)) NIL)) (-2838 (((-1107 |#1| |#2|) $ (-1107 |#1| |#2|)) 43 (|has| $ (-6 -4338)))) (-2254 (((-1107 |#1| |#2|) $ "value" (-1107 |#1| |#2|)) NIL (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) 41 (|has| $ (-6 -4338)))) (-1682 (($) NIL T CONST)) (-1499 (((-621 (-2 (|:| |val| |#1|) (|:| -1981 |#2|))) $) 80)) (-2129 (($ (-1107 |#1| |#2|) $) 39)) (-3812 (($ (-1107 |#1| |#2|) $) 31)) (-2989 (((-621 (-1107 |#1| |#2|)) $) NIL (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) 51)) (-3951 (((-112) (-1107 |#1| |#2|) $) 82)) (-3895 (((-112) $ $) NIL (|has| (-1107 |#1| |#2|) (-1067)))) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 (-1107 |#1| |#2|)) $) 55 (|has| $ (-6 -4337)))) (-2090 (((-112) (-1107 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-1107 |#1| |#2|) (-1067))))) (-1868 (($ (-1 (-1107 |#1| |#2|) (-1107 |#1| |#2|)) $) 47 (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-1107 |#1| |#2|) (-1107 |#1| |#2|)) $) 46)) (-1508 (((-112) $ (-747)) NIL)) (-3591 (((-621 (-1107 |#1| |#2|)) $) 53)) (-2076 (((-112) $) 42)) (-3851 (((-1125) $) NIL (|has| (-1107 |#1| |#2|) (-1067)))) (-3990 (((-1087) $) NIL (|has| (-1107 |#1| |#2|) (-1067)))) (-2431 (((-3 $ "failed") $) 75)) (-1780 (((-112) (-1 (-112) (-1107 |#1| |#2|)) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-1107 |#1| |#2|)))) NIL (-12 (|has| (-1107 |#1| |#2|) (-302 (-1107 |#1| |#2|))) (|has| (-1107 |#1| |#2|) (-1067)))) (($ $ (-287 (-1107 |#1| |#2|))) NIL (-12 (|has| (-1107 |#1| |#2|) (-302 (-1107 |#1| |#2|))) (|has| (-1107 |#1| |#2|) (-1067)))) (($ $ (-1107 |#1| |#2|) (-1107 |#1| |#2|)) NIL (-12 (|has| (-1107 |#1| |#2|) (-302 (-1107 |#1| |#2|))) (|has| (-1107 |#1| |#2|) (-1067)))) (($ $ (-621 (-1107 |#1| |#2|)) (-621 (-1107 |#1| |#2|))) NIL (-12 (|has| (-1107 |#1| |#2|) (-302 (-1107 |#1| |#2|))) (|has| (-1107 |#1| |#2|) (-1067))))) (-4144 (((-112) $ $) 50)) (-3670 (((-112) $) 22)) (-3742 (($) 24)) (-3341 (((-1107 |#1| |#2|) $ "value") NIL)) (-3230 (((-549) $ $) NIL)) (-3497 (((-112) $) 44)) (-4000 (((-747) (-1 (-112) (-1107 |#1| |#2|)) $) NIL (|has| $ (-6 -4337))) (((-747) (-1107 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-1107 |#1| |#2|) (-1067))))) (-2281 (($ $) 49)) (-3854 (($ (-1107 |#1| |#2|)) 9) (($ |#1| |#2| (-621 $)) 12) (($ |#1| |#2| (-621 (-1107 |#1| |#2|))) 14) (($ |#1| |#2| |#1| (-621 |#2|)) 17)) (-3592 (((-621 |#2|) $) 81)) (-3846 (((-834) $) 73 (|has| (-1107 |#1| |#2|) (-593 (-834))))) (-2742 (((-621 $) $) 28)) (-1987 (((-112) $ $) NIL (|has| (-1107 |#1| |#2|) (-1067)))) (-3527 (((-112) (-1 (-112) (-1107 |#1| |#2|)) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 64 (|has| (-1107 |#1| |#2|) (-1067)))) (-3775 (((-747) $) 58 (|has| $ (-6 -4337)))))
-(((-1108 |#1| |#2|) (-13 (-981 (-1107 |#1| |#2|)) (-10 -8 (-6 -4338) (-6 -4337) (-15 -2431 ((-3 $ "failed") $)) (-15 -2493 ($ $)) (-15 -3854 ($ (-1107 |#1| |#2|))) (-15 -3854 ($ |#1| |#2| (-621 $))) (-15 -3854 ($ |#1| |#2| (-621 (-1107 |#1| |#2|)))) (-15 -3854 ($ |#1| |#2| |#1| (-621 |#2|))) (-15 -3592 ((-621 |#2|) $)) (-15 -1499 ((-621 (-2 (|:| |val| |#1|) (|:| -1981 |#2|))) $)) (-15 -3951 ((-112) (-1107 |#1| |#2|) $)) (-15 -2327 ((-112) (-1107 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -3812 ($ (-1107 |#1| |#2|) $)) (-15 -2129 ($ (-1107 |#1| |#2|) $)) (-15 -1913 ($ $ $ (-621 (-1107 |#1| |#2|)))) (-15 -1913 ($ $ $ (-621 (-1107 |#1| |#2|)) (-1 (-112) |#2| |#2|))))) (-13 (-1067) (-34)) (-13 (-1067) (-34))) (T -1108))
-((-2431 (*1 *1 *1) (|partial| -12 (-5 *1 (-1108 *2 *3)) (-4 *2 (-13 (-1067) (-34))) (-4 *3 (-13 (-1067) (-34))))) (-2493 (*1 *1 *1) (-12 (-5 *1 (-1108 *2 *3)) (-4 *2 (-13 (-1067) (-34))) (-4 *3 (-13 (-1067) (-34))))) (-3854 (*1 *1 *2) (-12 (-5 *2 (-1107 *3 *4)) (-4 *3 (-13 (-1067) (-34))) (-4 *4 (-13 (-1067) (-34))) (-5 *1 (-1108 *3 *4)))) (-3854 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-621 (-1108 *2 *3))) (-5 *1 (-1108 *2 *3)) (-4 *2 (-13 (-1067) (-34))) (-4 *3 (-13 (-1067) (-34))))) (-3854 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-621 (-1107 *2 *3))) (-4 *2 (-13 (-1067) (-34))) (-4 *3 (-13 (-1067) (-34))) (-5 *1 (-1108 *2 *3)))) (-3854 (*1 *1 *2 *3 *2 *4) (-12 (-5 *4 (-621 *3)) (-4 *3 (-13 (-1067) (-34))) (-5 *1 (-1108 *2 *3)) (-4 *2 (-13 (-1067) (-34))))) (-3592 (*1 *2 *1) (-12 (-5 *2 (-621 *4)) (-5 *1 (-1108 *3 *4)) (-4 *3 (-13 (-1067) (-34))) (-4 *4 (-13 (-1067) (-34))))) (-1499 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4)))) (-5 *1 (-1108 *3 *4)) (-4 *3 (-13 (-1067) (-34))) (-4 *4 (-13 (-1067) (-34))))) (-3951 (*1 *2 *3 *1) (-12 (-5 *3 (-1107 *4 *5)) (-4 *4 (-13 (-1067) (-34))) (-4 *5 (-13 (-1067) (-34))) (-5 *2 (-112)) (-5 *1 (-1108 *4 *5)))) (-2327 (*1 *2 *3 *1 *4) (-12 (-5 *3 (-1107 *5 *6)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1067) (-34))) (-4 *6 (-13 (-1067) (-34))) (-5 *2 (-112)) (-5 *1 (-1108 *5 *6)))) (-3812 (*1 *1 *2 *1) (-12 (-5 *2 (-1107 *3 *4)) (-4 *3 (-13 (-1067) (-34))) (-4 *4 (-13 (-1067) (-34))) (-5 *1 (-1108 *3 *4)))) (-2129 (*1 *1 *2 *1) (-12 (-5 *2 (-1107 *3 *4)) (-4 *3 (-13 (-1067) (-34))) (-4 *4 (-13 (-1067) (-34))) (-5 *1 (-1108 *3 *4)))) (-1913 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-621 (-1107 *3 *4))) (-4 *3 (-13 (-1067) (-34))) (-4 *4 (-13 (-1067) (-34))) (-5 *1 (-1108 *3 *4)))) (-1913 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-1107 *4 *5))) (-5 *3 (-1 (-112) *5 *5)) (-4 *4 (-13 (-1067) (-34))) (-4 *5 (-13 (-1067) (-34))) (-5 *1 (-1108 *4 *5)))))
-(-13 (-981 (-1107 |#1| |#2|)) (-10 -8 (-6 -4338) (-6 -4337) (-15 -2431 ((-3 $ "failed") $)) (-15 -2493 ($ $)) (-15 -3854 ($ (-1107 |#1| |#2|))) (-15 -3854 ($ |#1| |#2| (-621 $))) (-15 -3854 ($ |#1| |#2| (-621 (-1107 |#1| |#2|)))) (-15 -3854 ($ |#1| |#2| |#1| (-621 |#2|))) (-15 -3592 ((-621 |#2|) $)) (-15 -1499 ((-621 (-2 (|:| |val| |#1|) (|:| -1981 |#2|))) $)) (-15 -3951 ((-112) (-1107 |#1| |#2|) $)) (-15 -2327 ((-112) (-1107 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -3812 ($ (-1107 |#1| |#2|) $)) (-15 -2129 ($ (-1107 |#1| |#2|) $)) (-15 -1913 ($ $ $ (-621 (-1107 |#1| |#2|)))) (-15 -1913 ($ $ $ (-621 (-1107 |#1| |#2|)) (-1 (-112) |#2| |#2|)))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3682 (($ $) NIL)) (-2906 ((|#2| $) NIL)) (-2092 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-2040 (($ (-665 |#2|)) 47)) (-2340 (((-112) $) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-2228 (($ |#2|) 9)) (-1682 (($) NIL T CONST)) (-3460 (($ $) 60 (|has| |#2| (-300)))) (-4060 (((-234 |#1| |#2|) $ (-549)) 34)) (-2714 (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-3 |#2| "failed") $) NIL)) (-2659 (((-549) $) NIL (|has| |#2| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-400 (-549))))) ((|#2| $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) NIL) (((-665 |#2|) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) 74)) (-3123 (((-747) $) 62 (|has| |#2| (-541)))) (-1809 ((|#2| $ (-549) (-549)) NIL)) (-2989 (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-2675 (((-112) $) NIL)) (-1323 (((-747) $) 64 (|has| |#2| (-541)))) (-1479 (((-621 (-234 |#1| |#2|)) $) 68 (|has| |#2| (-541)))) (-2142 (((-747) $) NIL)) (-2155 (((-747) $) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-1929 ((|#2| $) 58 (|has| |#2| (-6 (-4339 "*"))))) (-1761 (((-549) $) NIL)) (-2703 (((-549) $) NIL)) (-1562 (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-1661 (((-549) $) NIL)) (-1887 (((-549) $) NIL)) (-3946 (($ (-621 (-621 |#2|))) 29)) (-1868 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-2913 (((-621 (-621 |#2|)) $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL)) (-3849 (((-3 $ "failed") $) 71 (|has| |#2| (-356)))) (-3990 (((-1087) $) NIL)) (-2042 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-541)))) (-1780 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#2| $ (-549) (-549) |#2|) NIL) ((|#2| $ (-549) (-549)) NIL)) (-3456 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1143)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-747)) NIL (|has| |#2| (-227))) (($ $) NIL (|has| |#2| (-227)))) (-3136 ((|#2| $) NIL)) (-2133 (($ (-621 |#2|)) 42)) (-1757 (((-112) $) NIL)) (-2081 (((-234 |#1| |#2|) $) NIL)) (-2029 ((|#2| $) 56 (|has| |#2| (-6 (-4339 "*"))))) (-4000 (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-2281 (($ $) NIL)) (-2845 (((-525) $) 83 (|has| |#2| (-594 (-525))))) (-2851 (((-234 |#1| |#2|) $ (-549)) 36)) (-3846 (((-834) $) 39) (($ (-549)) NIL) (($ (-400 (-549))) NIL (|has| |#2| (-1009 (-400 (-549))))) (($ |#2|) NIL) (((-665 |#2|) $) 44)) (-2082 (((-747)) 17)) (-3527 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2974 (((-112) $) NIL)) (-3276 (($) 11 T CONST)) (-3287 (($) 14 T CONST)) (-1702 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1143)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-747)) NIL (|has| |#2| (-227))) (($ $) NIL (|has| |#2| (-227)))) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) 54) (($ $ (-549)) 73 (|has| |#2| (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-234 |#1| |#2|) $ (-234 |#1| |#2|)) 50) (((-234 |#1| |#2|) (-234 |#1| |#2|) $) 52)) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-1109 |#1| |#2|) (-13 (-1090 |#1| |#2| (-234 |#1| |#2|) (-234 |#1| |#2|)) (-593 (-665 |#2|)) (-10 -8 (-15 -3682 ($ $)) (-15 -2040 ($ (-665 |#2|))) (-15 -3846 ((-665 |#2|) $)) (IF (|has| |#2| (-6 (-4339 "*"))) (-6 -4326) |%noBranch|) (IF (|has| |#2| (-6 (-4339 "*"))) (IF (|has| |#2| (-6 -4334)) (-6 -4334) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|))) (-747) (-1018)) (T -1109))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-665 *4)) (-5 *1 (-1109 *3 *4)) (-14 *3 (-747)) (-4 *4 (-1018)))) (-3682 (*1 *1 *1) (-12 (-5 *1 (-1109 *2 *3)) (-14 *2 (-747)) (-4 *3 (-1018)))) (-2040 (*1 *1 *2) (-12 (-5 *2 (-665 *4)) (-4 *4 (-1018)) (-5 *1 (-1109 *3 *4)) (-14 *3 (-747)))))
-(-13 (-1090 |#1| |#2| (-234 |#1| |#2|) (-234 |#1| |#2|)) (-593 (-665 |#2|)) (-10 -8 (-15 -3682 ($ $)) (-15 -2040 ($ (-665 |#2|))) (-15 -3846 ((-665 |#2|) $)) (IF (|has| |#2| (-6 (-4339 "*"))) (-6 -4326) |%noBranch|) (IF (|has| |#2| (-6 (-4339 "*"))) (IF (|has| |#2| (-6 -4334)) (-6 -4334) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|)))
-((-2946 (($ $) 19)) (-1445 (($ $ (-142)) 10) (($ $ (-139)) 14)) (-2349 (((-112) $ $) 24)) (-3408 (($ $) 17)) (-3341 (((-142) $ (-549) (-142)) NIL) (((-142) $ (-549)) NIL) (($ $ (-1193 (-549))) NIL) (($ $ $) 29)) (-3846 (($ (-142)) 27) (((-834) $) NIL)))
-(((-1110 |#1|) (-10 -8 (-15 -3846 ((-834) |#1|)) (-15 -3341 (|#1| |#1| |#1|)) (-15 -1445 (|#1| |#1| (-139))) (-15 -1445 (|#1| |#1| (-142))) (-15 -3846 (|#1| (-142))) (-15 -2349 ((-112) |#1| |#1|)) (-15 -2946 (|#1| |#1|)) (-15 -3408 (|#1| |#1|)) (-15 -3341 (|#1| |#1| (-1193 (-549)))) (-15 -3341 ((-142) |#1| (-549))) (-15 -3341 ((-142) |#1| (-549) (-142)))) (-1111)) (T -1110))
-NIL
-(-10 -8 (-15 -3846 ((-834) |#1|)) (-15 -3341 (|#1| |#1| |#1|)) (-15 -1445 (|#1| |#1| (-139))) (-15 -1445 (|#1| |#1| (-142))) (-15 -3846 (|#1| (-142))) (-15 -2349 ((-112) |#1| |#1|)) (-15 -2946 (|#1| |#1|)) (-15 -3408 (|#1| |#1|)) (-15 -3341 (|#1| |#1| (-1193 (-549)))) (-15 -3341 ((-142) |#1| (-549))) (-15 -3341 ((-142) |#1| (-549) (-142))))
-((-3834 (((-112) $ $) 19 (|has| (-142) (-1067)))) (-2969 (($ $) 120)) (-2946 (($ $) 121)) (-1445 (($ $ (-142)) 108) (($ $ (-139)) 107)) (-1535 (((-1231) $ (-549) (-549)) 40 (|has| $ (-6 -4338)))) (-2319 (((-112) $ $) 118)) (-2293 (((-112) $ $ (-549)) 117)) (-3628 (((-621 $) $ (-142)) 110) (((-621 $) $ (-139)) 109)) (-4142 (((-112) (-1 (-112) (-142) (-142)) $) 98) (((-112) $) 92 (|has| (-142) (-823)))) (-4311 (($ (-1 (-112) (-142) (-142)) $) 89 (|has| $ (-6 -4338))) (($ $) 88 (-12 (|has| (-142) (-823)) (|has| $ (-6 -4338))))) (-3193 (($ (-1 (-112) (-142) (-142)) $) 99) (($ $) 93 (|has| (-142) (-823)))) (-1584 (((-112) $ (-747)) 8)) (-2254 (((-142) $ (-549) (-142)) 52 (|has| $ (-6 -4338))) (((-142) $ (-1193 (-549)) (-142)) 58 (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) (-142)) $) 75 (|has| $ (-6 -4337)))) (-1682 (($) 7 T CONST)) (-3590 (($ $ (-142)) 104) (($ $ (-139)) 103)) (-1585 (($ $) 90 (|has| $ (-6 -4338)))) (-3064 (($ $) 100)) (-4126 (($ $ (-1193 (-549)) $) 114)) (-3676 (($ $) 78 (-12 (|has| (-142) (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ (-142) $) 77 (-12 (|has| (-142) (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) (-142)) $) 74 (|has| $ (-6 -4337)))) (-2557 (((-142) (-1 (-142) (-142) (-142)) $ (-142) (-142)) 76 (-12 (|has| (-142) (-1067)) (|has| $ (-6 -4337)))) (((-142) (-1 (-142) (-142) (-142)) $ (-142)) 73 (|has| $ (-6 -4337))) (((-142) (-1 (-142) (-142) (-142)) $) 72 (|has| $ (-6 -4337)))) (-1879 (((-142) $ (-549) (-142)) 53 (|has| $ (-6 -4338)))) (-1809 (((-142) $ (-549)) 51)) (-2349 (((-112) $ $) 119)) (-2883 (((-549) (-1 (-112) (-142)) $) 97) (((-549) (-142) $) 96 (|has| (-142) (-1067))) (((-549) (-142) $ (-549)) 95 (|has| (-142) (-1067))) (((-549) $ $ (-549)) 113) (((-549) (-139) $ (-549)) 112)) (-2989 (((-621 (-142)) $) 30 (|has| $ (-6 -4337)))) (-3743 (($ (-747) (-142)) 69)) (-3194 (((-112) $ (-747)) 9)) (-4031 (((-549) $) 43 (|has| (-549) (-823)))) (-2863 (($ $ $) 87 (|has| (-142) (-823)))) (-3890 (($ (-1 (-112) (-142) (-142)) $ $) 101) (($ $ $) 94 (|has| (-142) (-823)))) (-1562 (((-621 (-142)) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) (-142) $) 27 (-12 (|has| (-142) (-1067)) (|has| $ (-6 -4337))))) (-1569 (((-549) $) 44 (|has| (-549) (-823)))) (-3575 (($ $ $) 86 (|has| (-142) (-823)))) (-2312 (((-112) $ $ (-142)) 115)) (-2475 (((-747) $ $ (-142)) 116)) (-1868 (($ (-1 (-142) (-142)) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-142) (-142)) $) 35) (($ (-1 (-142) (-142) (-142)) $ $) 64)) (-1555 (($ $) 122)) (-3408 (($ $) 123)) (-1508 (((-112) $ (-747)) 10)) (-3603 (($ $ (-142)) 106) (($ $ (-139)) 105)) (-3851 (((-1125) $) 22 (|has| (-142) (-1067)))) (-2616 (($ (-142) $ (-549)) 60) (($ $ $ (-549)) 59)) (-3303 (((-621 (-549)) $) 46)) (-3761 (((-112) (-549) $) 47)) (-3990 (((-1087) $) 21 (|has| (-142) (-1067)))) (-3646 (((-142) $) 42 (|has| (-549) (-823)))) (-3779 (((-3 (-142) "failed") (-1 (-112) (-142)) $) 71)) (-1642 (($ $ (-142)) 41 (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) (-142)) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-142)))) 26 (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067)))) (($ $ (-287 (-142))) 25 (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067)))) (($ $ (-142) (-142)) 24 (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067)))) (($ $ (-621 (-142)) (-621 (-142))) 23 (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067))))) (-4144 (((-112) $ $) 14)) (-2265 (((-112) (-142) $) 45 (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067))))) (-2696 (((-621 (-142)) $) 48)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 (((-142) $ (-549) (-142)) 50) (((-142) $ (-549)) 49) (($ $ (-1193 (-549))) 63) (($ $ $) 102)) (-2167 (($ $ (-549)) 62) (($ $ (-1193 (-549))) 61)) (-4000 (((-747) (-1 (-112) (-142)) $) 31 (|has| $ (-6 -4337))) (((-747) (-142) $) 28 (-12 (|has| (-142) (-1067)) (|has| $ (-6 -4337))))) (-2730 (($ $ $ (-549)) 91 (|has| $ (-6 -4338)))) (-2281 (($ $) 13)) (-2845 (((-525) $) 79 (|has| (-142) (-594 (-525))))) (-3854 (($ (-621 (-142))) 70)) (-1952 (($ $ (-142)) 68) (($ (-142) $) 67) (($ $ $) 66) (($ (-621 $)) 65)) (-3846 (($ (-142)) 111) (((-834) $) 18 (|has| (-142) (-593 (-834))))) (-3527 (((-112) (-1 (-112) (-142)) $) 33 (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) 84 (|has| (-142) (-823)))) (-2425 (((-112) $ $) 83 (|has| (-142) (-823)))) (-2389 (((-112) $ $) 20 (|has| (-142) (-1067)))) (-2438 (((-112) $ $) 85 (|has| (-142) (-823)))) (-2412 (((-112) $ $) 82 (|has| (-142) (-823)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-1111) (-138)) (T -1111))
-((-3408 (*1 *1 *1) (-4 *1 (-1111))) (-1555 (*1 *1 *1) (-4 *1 (-1111))) (-2946 (*1 *1 *1) (-4 *1 (-1111))) (-2969 (*1 *1 *1) (-4 *1 (-1111))) (-2349 (*1 *2 *1 *1) (-12 (-4 *1 (-1111)) (-5 *2 (-112)))) (-2319 (*1 *2 *1 *1) (-12 (-4 *1 (-1111)) (-5 *2 (-112)))) (-2293 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1111)) (-5 *3 (-549)) (-5 *2 (-112)))) (-2475 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1111)) (-5 *3 (-142)) (-5 *2 (-747)))) (-2312 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1111)) (-5 *3 (-142)) (-5 *2 (-112)))) (-4126 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-1111)) (-5 *2 (-1193 (-549))))) (-2883 (*1 *2 *1 *1 *2) (-12 (-4 *1 (-1111)) (-5 *2 (-549)))) (-2883 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1111)) (-5 *2 (-549)) (-5 *3 (-139)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-142)) (-4 *1 (-1111)))) (-3628 (*1 *2 *1 *3) (-12 (-5 *3 (-142)) (-5 *2 (-621 *1)) (-4 *1 (-1111)))) (-3628 (*1 *2 *1 *3) (-12 (-5 *3 (-139)) (-5 *2 (-621 *1)) (-4 *1 (-1111)))) (-1445 (*1 *1 *1 *2) (-12 (-4 *1 (-1111)) (-5 *2 (-142)))) (-1445 (*1 *1 *1 *2) (-12 (-4 *1 (-1111)) (-5 *2 (-139)))) (-3603 (*1 *1 *1 *2) (-12 (-4 *1 (-1111)) (-5 *2 (-142)))) (-3603 (*1 *1 *1 *2) (-12 (-4 *1 (-1111)) (-5 *2 (-139)))) (-3590 (*1 *1 *1 *2) (-12 (-4 *1 (-1111)) (-5 *2 (-142)))) (-3590 (*1 *1 *1 *2) (-12 (-4 *1 (-1111)) (-5 *2 (-139)))) (-3341 (*1 *1 *1 *1) (-4 *1 (-1111))))
-(-13 (-19 (-142)) (-10 -8 (-15 -3408 ($ $)) (-15 -1555 ($ $)) (-15 -2946 ($ $)) (-15 -2969 ($ $)) (-15 -2349 ((-112) $ $)) (-15 -2319 ((-112) $ $)) (-15 -2293 ((-112) $ $ (-549))) (-15 -2475 ((-747) $ $ (-142))) (-15 -2312 ((-112) $ $ (-142))) (-15 -4126 ($ $ (-1193 (-549)) $)) (-15 -2883 ((-549) $ $ (-549))) (-15 -2883 ((-549) (-139) $ (-549))) (-15 -3846 ($ (-142))) (-15 -3628 ((-621 $) $ (-142))) (-15 -3628 ((-621 $) $ (-139))) (-15 -1445 ($ $ (-142))) (-15 -1445 ($ $ (-139))) (-15 -3603 ($ $ (-142))) (-15 -3603 ($ $ (-139))) (-15 -3590 ($ $ (-142))) (-15 -3590 ($ $ (-139))) (-15 -3341 ($ $ $))))
-(((-34) . T) ((-101) -1536 (|has| (-142) (-1067)) (|has| (-142) (-823))) ((-593 (-834)) -1536 (|has| (-142) (-1067)) (|has| (-142) (-823)) (|has| (-142) (-593 (-834)))) ((-149 #0=(-142)) . T) ((-594 (-525)) |has| (-142) (-594 (-525))) ((-279 #1=(-549) #0#) . T) ((-281 #1# #0#) . T) ((-302 #0#) -12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067))) ((-366 #0#) . T) ((-481 #0#) . T) ((-584 #1# #0#) . T) ((-505 #0# #0#) -12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067))) ((-627 #0#) . T) ((-19 #0#) . T) ((-823) |has| (-142) (-823)) ((-1067) -1536 (|has| (-142) (-1067)) (|has| (-142) (-823))) ((-1180) . T))
-((-3817 (((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-621 |#4|) (-621 |#5|) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) (-747)) 94)) (-3105 (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5|) 55) (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747)) 54)) (-3762 (((-1231) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-747)) 85)) (-1362 (((-747) (-621 |#4|) (-621 |#5|)) 27)) (-2166 (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5|) 57) (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747)) 56) (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747) (-112)) 58)) (-1655 (((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112) (-112) (-112) (-112)) 76) (((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112)) 77)) (-2845 (((-1125) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) 80)) (-1589 (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5|) 53)) (-1516 (((-747) (-621 |#4|) (-621 |#5|)) 19)))
-(((-1112 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1516 ((-747) (-621 |#4|) (-621 |#5|))) (-15 -1362 ((-747) (-621 |#4|) (-621 |#5|))) (-15 -1589 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5|)) (-15 -3105 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747))) (-15 -3105 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5|)) (-15 -2166 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747) (-112))) (-15 -2166 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747))) (-15 -2166 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5|)) (-15 -1655 ((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112))) (-15 -1655 ((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -3817 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-621 |#4|) (-621 |#5|) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) (-747))) (-15 -2845 ((-1125) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|)))) (-15 -3762 ((-1231) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-747)))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1076 |#1| |#2| |#3| |#4|)) (T -1112))
-((-3762 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-2 (|:| |val| (-621 *8)) (|:| -1981 *9)))) (-5 *4 (-747)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1076 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-1231)) (-5 *1 (-1112 *5 *6 *7 *8 *9)))) (-2845 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-621 *7)) (|:| -1981 *8))) (-4 *7 (-1032 *4 *5 *6)) (-4 *8 (-1076 *4 *5 *6 *7)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1125)) (-5 *1 (-1112 *4 *5 *6 *7 *8)))) (-3817 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-621 *11)) (|:| |todo| (-621 (-2 (|:| |val| *3) (|:| -1981 *11)))))) (-5 *6 (-747)) (-5 *2 (-621 (-2 (|:| |val| (-621 *10)) (|:| -1981 *11)))) (-5 *3 (-621 *10)) (-5 *4 (-621 *11)) (-4 *10 (-1032 *7 *8 *9)) (-4 *11 (-1076 *7 *8 *9 *10)) (-4 *7 (-444)) (-4 *8 (-769)) (-4 *9 (-823)) (-5 *1 (-1112 *7 *8 *9 *10 *11)))) (-1655 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-621 *9)) (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1076 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1112 *5 *6 *7 *8 *9)))) (-1655 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-621 *9)) (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1076 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1112 *5 *6 *7 *8 *9)))) (-2166 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4)))))) (-5 *1 (-1112 *5 *6 *7 *3 *4)) (-4 *4 (-1076 *5 *6 *7 *3)))) (-2166 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-747)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *3 (-1032 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4)))))) (-5 *1 (-1112 *6 *7 *8 *3 *4)) (-4 *4 (-1076 *6 *7 *8 *3)))) (-2166 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-747)) (-5 *6 (-112)) (-4 *7 (-444)) (-4 *8 (-769)) (-4 *9 (-823)) (-4 *3 (-1032 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4)))))) (-5 *1 (-1112 *7 *8 *9 *3 *4)) (-4 *4 (-1076 *7 *8 *9 *3)))) (-3105 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4)))))) (-5 *1 (-1112 *5 *6 *7 *3 *4)) (-4 *4 (-1076 *5 *6 *7 *3)))) (-3105 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-747)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *3 (-1032 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4)))))) (-5 *1 (-1112 *6 *7 *8 *3 *4)) (-4 *4 (-1076 *6 *7 *8 *3)))) (-1589 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4)))))) (-5 *1 (-1112 *5 *6 *7 *3 *4)) (-4 *4 (-1076 *5 *6 *7 *3)))) (-1362 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *9)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1076 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-747)) (-5 *1 (-1112 *5 *6 *7 *8 *9)))) (-1516 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *9)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1076 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-747)) (-5 *1 (-1112 *5 *6 *7 *8 *9)))))
-(-10 -7 (-15 -1516 ((-747) (-621 |#4|) (-621 |#5|))) (-15 -1362 ((-747) (-621 |#4|) (-621 |#5|))) (-15 -1589 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5|)) (-15 -3105 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747))) (-15 -3105 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5|)) (-15 -2166 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747) (-112))) (-15 -2166 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5| (-747))) (-15 -2166 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) |#4| |#5|)) (-15 -1655 ((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112))) (-15 -1655 ((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -3817 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-621 |#4|) (-621 |#5|) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))))) (-747))) (-15 -2845 ((-1125) (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|)))) (-15 -3762 ((-1231) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1981 |#5|))) (-747))))
-((-3834 (((-112) $ $) NIL)) (-3514 (((-621 (-2 (|:| -2681 $) (|:| -1359 (-621 |#4|)))) (-621 |#4|)) NIL)) (-2866 (((-621 $) (-621 |#4|)) 110) (((-621 $) (-621 |#4|) (-112)) 111) (((-621 $) (-621 |#4|) (-112) (-112)) 109) (((-621 $) (-621 |#4|) (-112) (-112) (-112) (-112)) 112)) (-2272 (((-621 |#3|) $) NIL)) (-3422 (((-112) $) NIL)) (-2527 (((-112) $) NIL (|has| |#1| (-541)))) (-3282 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2731 ((|#4| |#4| $) NIL)) (-3979 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 $))) |#4| $) 84)) (-3193 (((-2 (|:| |under| $) (|:| -3967 $) (|:| |upper| $)) $ |#3|) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-1489 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337))) (((-3 |#4| "failed") $ |#3|) 62)) (-1682 (($) NIL T CONST)) (-1433 (((-112) $) 26 (|has| |#1| (-541)))) (-2555 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2595 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2397 (((-112) $) NIL (|has| |#1| (-541)))) (-2737 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3269 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2953 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2714 (((-3 $ "failed") (-621 |#4|)) NIL)) (-2659 (($ (-621 |#4|)) NIL)) (-3657 (((-3 $ "failed") $) 39)) (-1903 ((|#4| |#4| $) 65)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067))))) (-3812 (($ |#4| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-3675 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 78 (|has| |#1| (-541)))) (-2217 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-3615 ((|#4| |#4| $) NIL)) (-2557 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4337))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4337))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-1439 (((-2 (|:| -2681 (-621 |#4|)) (|:| -1359 (-621 |#4|))) $) NIL)) (-3516 (((-112) |#4| $) NIL)) (-3150 (((-112) |#4| $) NIL)) (-2064 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4181 (((-2 (|:| |val| (-621 |#4|)) (|:| |towers| (-621 $))) (-621 |#4|) (-112) (-112)) 124)) (-2989 (((-621 |#4|) $) 16 (|has| $ (-6 -4337)))) (-2812 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2745 ((|#3| $) 33)) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 |#4|) $) 17 (|has| $ (-6 -4337)))) (-2090 (((-112) |#4| $) 25 (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067))))) (-1868 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#4| |#4|) $) 21)) (-2561 (((-621 |#3|) $) NIL)) (-2378 (((-112) |#3| $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL)) (-1878 (((-3 |#4| (-621 $)) |#4| |#4| $) NIL)) (-3072 (((-621 (-2 (|:| |val| |#4|) (|:| -1981 $))) |#4| |#4| $) 103)) (-3829 (((-3 |#4| "failed") $) 37)) (-3689 (((-621 $) |#4| $) 88)) (-1514 (((-3 (-112) (-621 $)) |#4| $) NIL)) (-4184 (((-621 (-2 (|:| |val| (-112)) (|:| -1981 $))) |#4| $) 98) (((-112) |#4| $) 53)) (-3655 (((-621 $) |#4| $) 107) (((-621 $) (-621 |#4|) $) NIL) (((-621 $) (-621 |#4|) (-621 $)) 108) (((-621 $) |#4| (-621 $)) NIL)) (-4249 (((-621 $) (-621 |#4|) (-112) (-112) (-112)) 119)) (-4283 (($ |#4| $) 75) (($ (-621 |#4|) $) 76) (((-621 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 74)) (-1638 (((-621 |#4|) $) NIL)) (-2170 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3270 ((|#4| |#4| $) NIL)) (-2473 (((-112) $ $) NIL)) (-4203 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-541)))) (-1335 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4298 ((|#4| |#4| $) NIL)) (-3990 (((-1087) $) NIL)) (-3646 (((-3 |#4| "failed") $) 35)) (-3779 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-2640 (((-3 $ "failed") $ |#4|) 48)) (-2763 (($ $ |#4|) NIL) (((-621 $) |#4| $) 90) (((-621 $) |#4| (-621 $)) NIL) (((-621 $) (-621 |#4|) $) NIL) (((-621 $) (-621 |#4|) (-621 $)) 86)) (-1780 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 |#4|) (-621 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-287 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-621 (-287 |#4|))) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) 15)) (-3742 (($) 13)) (-3701 (((-747) $) NIL)) (-4000 (((-747) |#4| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067)))) (((-747) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) 12)) (-2845 (((-525) $) NIL (|has| |#4| (-594 (-525))))) (-3854 (($ (-621 |#4|)) 20)) (-2858 (($ $ |#3|) 42)) (-3758 (($ $ |#3|) 44)) (-1962 (($ $) NIL)) (-4317 (($ $ |#3|) NIL)) (-3846 (((-834) $) 31) (((-621 |#4|) $) 40)) (-1824 (((-747) $) NIL (|has| |#3| (-361)))) (-2574 (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-1716 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) NIL)) (-1518 (((-621 $) |#4| $) 54) (((-621 $) |#4| (-621 $)) NIL) (((-621 $) (-621 |#4|) $) NIL) (((-621 $) (-621 |#4|) (-621 $)) NIL)) (-3527 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-3002 (((-621 |#3|) $) NIL)) (-3524 (((-112) |#4| $) NIL)) (-1606 (((-112) |#3| $) 61)) (-2389 (((-112) $ $) NIL)) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-1113 |#1| |#2| |#3| |#4|) (-13 (-1076 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4283 ((-621 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -2866 ((-621 $) (-621 |#4|) (-112) (-112))) (-15 -2866 ((-621 $) (-621 |#4|) (-112) (-112) (-112) (-112))) (-15 -4249 ((-621 $) (-621 |#4|) (-112) (-112) (-112))) (-15 -4181 ((-2 (|:| |val| (-621 |#4|)) (|:| |towers| (-621 $))) (-621 |#4|) (-112) (-112))))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|)) (T -1113))
-((-4283 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 (-1113 *5 *6 *7 *3))) (-5 *1 (-1113 *5 *6 *7 *3)) (-4 *3 (-1032 *5 *6 *7)))) (-2866 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 (-1113 *5 *6 *7 *8))) (-5 *1 (-1113 *5 *6 *7 *8)))) (-2866 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 (-1113 *5 *6 *7 *8))) (-5 *1 (-1113 *5 *6 *7 *8)))) (-4249 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 (-1113 *5 *6 *7 *8))) (-5 *1 (-1113 *5 *6 *7 *8)))) (-4181 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-621 *8)) (|:| |towers| (-621 (-1113 *5 *6 *7 *8))))) (-5 *1 (-1113 *5 *6 *7 *8)) (-5 *3 (-621 *8)))))
-(-13 (-1076 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4283 ((-621 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -2866 ((-621 $) (-621 |#4|) (-112) (-112))) (-15 -2866 ((-621 $) (-621 |#4|) (-112) (-112) (-112) (-112))) (-15 -4249 ((-621 $) (-621 |#4|) (-112) (-112) (-112))) (-15 -4181 ((-2 (|:| |val| (-621 |#4|)) (|:| |towers| (-621 $))) (-621 |#4|) (-112) (-112)))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2317 ((|#1| $) 34)) (-3813 (($ (-621 |#1|)) 39)) (-1584 (((-112) $ (-747)) NIL)) (-1682 (($) NIL T CONST)) (-3204 ((|#1| |#1| $) 36)) (-1350 ((|#1| $) 32)) (-2989 (((-621 |#1|) $) 18 (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1868 (($ (-1 |#1| |#1|) $) 25 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 22)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3504 ((|#1| $) 35)) (-2751 (($ |#1| $) 37)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-3325 ((|#1| $) 33)) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) 31)) (-3742 (($) 38)) (-1321 (((-747) $) 29)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) 27)) (-3846 (((-834) $) 14 (|has| |#1| (-593 (-834))))) (-3624 (($ (-621 |#1|)) NIL)) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 17 (|has| |#1| (-1067)))) (-3775 (((-747) $) 30 (|has| $ (-6 -4337)))))
-(((-1114 |#1|) (-13 (-1088 |#1|) (-10 -8 (-15 -3813 ($ (-621 |#1|))))) (-1180)) (T -1114))
-((-3813 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-5 *1 (-1114 *3)))))
-(-13 (-1088 |#1|) (-10 -8 (-15 -3813 ($ (-621 |#1|)))))
-((-2254 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) NIL) (($ $ "rest" $) NIL) ((|#2| $ "last" |#2|) NIL) ((|#2| $ (-1193 (-549)) |#2|) 44) ((|#2| $ (-549) |#2|) 41)) (-3331 (((-112) $) 12)) (-1868 (($ (-1 |#2| |#2|) $) 39)) (-3646 ((|#2| $) NIL) (($ $ (-747)) 17)) (-1642 (($ $ |#2|) 40)) (-3016 (((-112) $) 11)) (-3341 ((|#2| $ "value") NIL) ((|#2| $ "first") NIL) (($ $ "rest") NIL) ((|#2| $ "last") NIL) (($ $ (-1193 (-549))) 31) ((|#2| $ (-549)) 23) ((|#2| $ (-549) |#2|) NIL)) (-3196 (($ $ $) 47) (($ $ |#2|) NIL)) (-1952 (($ $ $) 33) (($ |#2| $) NIL) (($ (-621 $)) 36) (($ $ |#2|) NIL)))
-(((-1115 |#1| |#2|) (-10 -8 (-15 -3331 ((-112) |#1|)) (-15 -3016 ((-112) |#1|)) (-15 -2254 (|#2| |#1| (-549) |#2|)) (-15 -3341 (|#2| |#1| (-549) |#2|)) (-15 -3341 (|#2| |#1| (-549))) (-15 -1642 (|#1| |#1| |#2|)) (-15 -1952 (|#1| |#1| |#2|)) (-15 -1952 (|#1| (-621 |#1|))) (-15 -3341 (|#1| |#1| (-1193 (-549)))) (-15 -2254 (|#2| |#1| (-1193 (-549)) |#2|)) (-15 -2254 (|#2| |#1| "last" |#2|)) (-15 -2254 (|#1| |#1| "rest" |#1|)) (-15 -2254 (|#2| |#1| "first" |#2|)) (-15 -3196 (|#1| |#1| |#2|)) (-15 -3196 (|#1| |#1| |#1|)) (-15 -3341 (|#2| |#1| "last")) (-15 -3341 (|#1| |#1| "rest")) (-15 -3646 (|#1| |#1| (-747))) (-15 -3341 (|#2| |#1| "first")) (-15 -3646 (|#2| |#1|)) (-15 -1952 (|#1| |#2| |#1|)) (-15 -1952 (|#1| |#1| |#1|)) (-15 -2254 (|#2| |#1| "value" |#2|)) (-15 -3341 (|#2| |#1| "value")) (-15 -1868 (|#1| (-1 |#2| |#2|) |#1|))) (-1116 |#2|) (-1180)) (T -1115))
-NIL
-(-10 -8 (-15 -3331 ((-112) |#1|)) (-15 -3016 ((-112) |#1|)) (-15 -2254 (|#2| |#1| (-549) |#2|)) (-15 -3341 (|#2| |#1| (-549) |#2|)) (-15 -3341 (|#2| |#1| (-549))) (-15 -1642 (|#1| |#1| |#2|)) (-15 -1952 (|#1| |#1| |#2|)) (-15 -1952 (|#1| (-621 |#1|))) (-15 -3341 (|#1| |#1| (-1193 (-549)))) (-15 -2254 (|#2| |#1| (-1193 (-549)) |#2|)) (-15 -2254 (|#2| |#1| "last" |#2|)) (-15 -2254 (|#1| |#1| "rest" |#1|)) (-15 -2254 (|#2| |#1| "first" |#2|)) (-15 -3196 (|#1| |#1| |#2|)) (-15 -3196 (|#1| |#1| |#1|)) (-15 -3341 (|#2| |#1| "last")) (-15 -3341 (|#1| |#1| "rest")) (-15 -3646 (|#1| |#1| (-747))) (-15 -3341 (|#2| |#1| "first")) (-15 -3646 (|#2| |#1|)) (-15 -1952 (|#1| |#2| |#1|)) (-15 -1952 (|#1| |#1| |#1|)) (-15 -2254 (|#2| |#1| "value" |#2|)) (-15 -3341 (|#2| |#1| "value")) (-15 -1868 (|#1| (-1 |#2| |#2|) |#1|)))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-4161 ((|#1| $) 48)) (-2839 ((|#1| $) 65)) (-1343 (($ $) 67)) (-1535 (((-1231) $ (-549) (-549)) 97 (|has| $ (-6 -4338)))) (-3174 (($ $ (-549)) 52 (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) 8)) (-2838 ((|#1| $ |#1|) 39 (|has| $ (-6 -4338)))) (-4179 (($ $ $) 56 (|has| $ (-6 -4338)))) (-2780 ((|#1| $ |#1|) 54 (|has| $ (-6 -4338)))) (-4135 ((|#1| $ |#1|) 58 (|has| $ (-6 -4338)))) (-2254 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4338))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4338))) (($ $ "rest" $) 55 (|has| $ (-6 -4338))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) 117 (|has| $ (-6 -4338))) ((|#1| $ (-549) |#1|) 86 (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) 41 (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) |#1|) $) 102 (|has| $ (-6 -4337)))) (-2830 ((|#1| $) 66)) (-1682 (($) 7 T CONST)) (-3657 (($ $) 73) (($ $ (-747)) 71)) (-3676 (($ $) 99 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4337))) (($ |#1| $) 100 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1879 ((|#1| $ (-549) |#1|) 85 (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) 87)) (-3331 (((-112) $) 83)) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) 50)) (-3895 (((-112) $ $) 42 (|has| |#1| (-1067)))) (-3743 (($ (-747) |#1|) 108)) (-3194 (((-112) $ (-747)) 9)) (-4031 (((-549) $) 95 (|has| (-549) (-823)))) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1569 (((-549) $) 94 (|has| (-549) (-823)))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-1508 (((-112) $ (-747)) 10)) (-3591 (((-621 |#1|) $) 45)) (-2076 (((-112) $) 49)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3829 ((|#1| $) 70) (($ $ (-747)) 68)) (-2616 (($ $ $ (-549)) 116) (($ |#1| $ (-549)) 115)) (-3303 (((-621 (-549)) $) 92)) (-3761 (((-112) (-549) $) 91)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-3646 ((|#1| $) 76) (($ $ (-747)) 74)) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-1642 (($ $ |#1|) 96 (|has| $ (-6 -4338)))) (-3016 (((-112) $) 84)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-2265 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) 90)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1193 (-549))) 112) ((|#1| $ (-549)) 89) ((|#1| $ (-549) |#1|) 88)) (-3230 (((-549) $ $) 44)) (-2167 (($ $ (-1193 (-549))) 114) (($ $ (-549)) 113)) (-3497 (((-112) $) 46)) (-1999 (($ $) 62)) (-2643 (($ $) 59 (|has| $ (-6 -4338)))) (-3798 (((-747) $) 63)) (-3612 (($ $) 64)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-2845 (((-525) $) 98 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 107)) (-3196 (($ $ $) 61 (|has| $ (-6 -4338))) (($ $ |#1|) 60 (|has| $ (-6 -4338)))) (-1952 (($ $ $) 78) (($ |#1| $) 77) (($ (-621 $)) 110) (($ $ |#1|) 109)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) 51)) (-1987 (((-112) $ $) 43 (|has| |#1| (-1067)))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-1116 |#1|) (-138) (-1180)) (T -1116))
-((-3016 (*1 *2 *1) (-12 (-4 *1 (-1116 *3)) (-4 *3 (-1180)) (-5 *2 (-112)))) (-3331 (*1 *2 *1) (-12 (-4 *1 (-1116 *3)) (-4 *3 (-1180)) (-5 *2 (-112)))))
-(-13 (-1214 |t#1|) (-627 |t#1|) (-10 -8 (-15 -3016 ((-112) $)) (-15 -3331 ((-112) $))))
-(((-34) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-627 |#1|) . T) ((-981 |#1|) . T) ((-1067) |has| |#1| (-1067)) ((-1180) . T) ((-1214 |#1|) . T))
-((-3834 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3733 (($) NIL) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-1535 (((-1231) $ |#1| |#1|) NIL (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 ((|#2| $ |#1| |#2|) NIL)) (-1717 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-3490 (((-3 |#2| "failed") |#1| $) NIL)) (-1682 (($) NIL T CONST)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-2129 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-3 |#2| "failed") |#1| $) NIL)) (-3812 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2557 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-1879 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#2| $ |#1|) NIL)) (-2989 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) NIL)) (-4031 ((|#1| $) NIL (|has| |#1| (-823)))) (-1562 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-1569 ((|#1| $) NIL (|has| |#1| (-823)))) (-1868 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4338))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3449 (((-621 |#1|) $) NIL)) (-2427 (((-112) |#1| $) NIL)) (-3504 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-2751 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-3303 (((-621 |#1|) $) NIL)) (-3761 (((-112) |#1| $) NIL)) (-3990 (((-1087) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3646 ((|#2| $) NIL (|has| |#1| (-823)))) (-3779 (((-3 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) "failed") (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL)) (-1642 (($ $ |#2|) NIL (|has| $ (-6 -4338)))) (-3325 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-1780 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-2696 (((-621 |#2|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2898 (($) NIL) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-4000 (((-747) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-747) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067)))) (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-594 (-525))))) (-3854 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-3846 (((-834) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-593 (-834))) (|has| |#2| (-593 (-834)))))) (-3624 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-3527 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-1117 |#1| |#2| |#3|) (-1156 |#1| |#2|) (-1067) (-1067) |#2|) (T -1117))
-NIL
-(-1156 |#1| |#2|)
-((-3834 (((-112) $ $) 7)) (-1681 (((-3 $ "failed") $) 13)) (-3851 (((-1125) $) 9)) (-3060 (($) 14 T CONST)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11)) (-2389 (((-112) $ $) 6)))
-(((-1118) (-138)) (T -1118))
-((-3060 (*1 *1) (-4 *1 (-1118))) (-1681 (*1 *1 *1) (|partial| -4 *1 (-1118))))
-(-13 (-1067) (-10 -8 (-15 -3060 ($) -2589) (-15 -1681 ((-3 $ "failed") $))))
-(((-101) . T) ((-593 (-834)) . T) ((-1067) . T))
-((-1979 (((-1123 |#1|) (-1123 |#1|)) 17)) (-3753 (((-1123 |#1|) (-1123 |#1|)) 13)) (-2098 (((-1123 |#1|) (-1123 |#1|) (-549) (-549)) 20)) (-3131 (((-1123 |#1|) (-1123 |#1|)) 15)))
-(((-1119 |#1|) (-10 -7 (-15 -3753 ((-1123 |#1|) (-1123 |#1|))) (-15 -3131 ((-1123 |#1|) (-1123 |#1|))) (-15 -1979 ((-1123 |#1|) (-1123 |#1|))) (-15 -2098 ((-1123 |#1|) (-1123 |#1|) (-549) (-549)))) (-13 (-541) (-145))) (T -1119))
-((-2098 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1123 *4)) (-5 *3 (-549)) (-4 *4 (-13 (-541) (-145))) (-5 *1 (-1119 *4)))) (-1979 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-13 (-541) (-145))) (-5 *1 (-1119 *3)))) (-3131 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-13 (-541) (-145))) (-5 *1 (-1119 *3)))) (-3753 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-13 (-541) (-145))) (-5 *1 (-1119 *3)))))
-(-10 -7 (-15 -3753 ((-1123 |#1|) (-1123 |#1|))) (-15 -3131 ((-1123 |#1|) (-1123 |#1|))) (-15 -1979 ((-1123 |#1|) (-1123 |#1|))) (-15 -2098 ((-1123 |#1|) (-1123 |#1|) (-549) (-549))))
-((-1952 (((-1123 |#1|) (-1123 (-1123 |#1|))) 15)))
-(((-1120 |#1|) (-10 -7 (-15 -1952 ((-1123 |#1|) (-1123 (-1123 |#1|))))) (-1180)) (T -1120))
-((-1952 (*1 *2 *3) (-12 (-5 *3 (-1123 (-1123 *4))) (-5 *2 (-1123 *4)) (-5 *1 (-1120 *4)) (-4 *4 (-1180)))))
-(-10 -7 (-15 -1952 ((-1123 |#1|) (-1123 (-1123 |#1|)))))
-((-3804 (((-1123 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1123 |#1|)) 25)) (-2557 ((|#2| |#2| (-1 |#2| |#1| |#2|) (-1123 |#1|)) 26)) (-2797 (((-1123 |#2|) (-1 |#2| |#1|) (-1123 |#1|)) 16)))
-(((-1121 |#1| |#2|) (-10 -7 (-15 -2797 ((-1123 |#2|) (-1 |#2| |#1|) (-1123 |#1|))) (-15 -3804 ((-1123 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1123 |#1|))) (-15 -2557 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1123 |#1|)))) (-1180) (-1180)) (T -1121))
-((-2557 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1123 *5)) (-4 *5 (-1180)) (-4 *2 (-1180)) (-5 *1 (-1121 *5 *2)))) (-3804 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1123 *6)) (-4 *6 (-1180)) (-4 *3 (-1180)) (-5 *2 (-1123 *3)) (-5 *1 (-1121 *6 *3)))) (-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1123 *5)) (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-1123 *6)) (-5 *1 (-1121 *5 *6)))))
-(-10 -7 (-15 -2797 ((-1123 |#2|) (-1 |#2| |#1|) (-1123 |#1|))) (-15 -3804 ((-1123 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1123 |#1|))) (-15 -2557 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1123 |#1|))))
-((-2797 (((-1123 |#3|) (-1 |#3| |#1| |#2|) (-1123 |#1|) (-1123 |#2|)) 21)))
-(((-1122 |#1| |#2| |#3|) (-10 -7 (-15 -2797 ((-1123 |#3|) (-1 |#3| |#1| |#2|) (-1123 |#1|) (-1123 |#2|)))) (-1180) (-1180) (-1180)) (T -1122))
-((-2797 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1123 *6)) (-5 *5 (-1123 *7)) (-4 *6 (-1180)) (-4 *7 (-1180)) (-4 *8 (-1180)) (-5 *2 (-1123 *8)) (-5 *1 (-1122 *6 *7 *8)))))
-(-10 -7 (-15 -2797 ((-1123 |#3|) (-1 |#3| |#1| |#2|) (-1123 |#1|) (-1123 |#2|))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-4161 ((|#1| $) NIL)) (-2839 ((|#1| $) NIL)) (-1343 (($ $) 52)) (-1535 (((-1231) $ (-549) (-549)) 77 (|has| $ (-6 -4338)))) (-3174 (($ $ (-549)) 111 (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) NIL)) (-3428 (((-834) $) 41 (|has| |#1| (-1067)))) (-3549 (((-112)) 40 (|has| |#1| (-1067)))) (-2838 ((|#1| $ |#1|) NIL (|has| $ (-6 -4338)))) (-4179 (($ $ $) 99 (|has| $ (-6 -4338))) (($ $ (-549) $) 123)) (-2780 ((|#1| $ |#1|) 108 (|has| $ (-6 -4338)))) (-4135 ((|#1| $ |#1|) 103 (|has| $ (-6 -4338)))) (-2254 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4338))) ((|#1| $ "first" |#1|) 105 (|has| $ (-6 -4338))) (($ $ "rest" $) 107 (|has| $ (-6 -4338))) ((|#1| $ "last" |#1|) 110 (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) 90 (|has| $ (-6 -4338))) ((|#1| $ (-549) |#1|) 56 (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) NIL (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) |#1|) $) 59)) (-2830 ((|#1| $) NIL)) (-1682 (($) NIL T CONST)) (-2670 (($ $) 14)) (-3657 (($ $) 29) (($ $ (-747)) 89)) (-3905 (((-112) (-621 |#1|) $) 117 (|has| |#1| (-1067)))) (-2275 (($ (-621 |#1|)) 113)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) (($ (-1 (-112) |#1|) $) 58)) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1879 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) NIL)) (-3331 (((-112) $) NIL)) (-2989 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2075 (((-1231) (-549) $) 122 (|has| |#1| (-1067)))) (-1545 (((-747) $) 119)) (-3075 (((-621 $) $) NIL)) (-3895 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3743 (($ (-747) |#1|) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) NIL (|has| (-549) (-823)))) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-1868 (($ (-1 |#1| |#1|) $) 74 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 64) (($ (-1 |#1| |#1| |#1|) $ $) 68)) (-1508 (((-112) $ (-747)) NIL)) (-3591 (((-621 |#1|) $) NIL)) (-2076 (((-112) $) NIL)) (-2948 (($ $) 91)) (-1558 (((-112) $) 13)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3829 ((|#1| $) NIL) (($ $ (-747)) NIL)) (-2616 (($ $ $ (-549)) NIL) (($ |#1| $ (-549)) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) 75)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1412 (($ (-1 |#1|)) 125) (($ (-1 |#1| |#1|) |#1|) 126)) (-3217 ((|#1| $) 10)) (-3646 ((|#1| $) 28) (($ $ (-747)) 50)) (-2976 (((-2 (|:| |cycle?| (-112)) (|:| -1888 (-747)) (|:| |period| (-747))) (-747) $) 25)) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1460 (($ (-1 (-112) |#1|) $) 127)) (-1474 (($ (-1 (-112) |#1|) $) 128)) (-1642 (($ $ |#1|) 69 (|has| $ (-6 -4338)))) (-2763 (($ $ (-549)) 32)) (-3016 (((-112) $) 73)) (-1551 (((-112) $) 12)) (-2510 (((-112) $) 118)) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 20)) (-2265 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) NIL)) (-3670 (((-112) $) 15)) (-3742 (($) 45)) (-3341 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1193 (-549))) NIL) ((|#1| $ (-549)) 55) ((|#1| $ (-549) |#1|) NIL)) (-3230 (((-549) $ $) 49)) (-2167 (($ $ (-1193 (-549))) NIL) (($ $ (-549)) NIL)) (-3576 (($ (-1 $)) 48)) (-3497 (((-112) $) 70)) (-1999 (($ $) 71)) (-2643 (($ $) 100 (|has| $ (-6 -4338)))) (-3798 (((-747) $) NIL)) (-3612 (($ $) NIL)) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) 44)) (-2845 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 54)) (-3173 (($ |#1| $) 98)) (-3196 (($ $ $) 101 (|has| $ (-6 -4338))) (($ $ |#1|) 102 (|has| $ (-6 -4338)))) (-1952 (($ $ $) 79) (($ |#1| $) 46) (($ (-621 $)) 84) (($ $ |#1|) 78)) (-1977 (($ $) 51)) (-3846 (($ (-621 |#1|)) 112) (((-834) $) 42 (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) NIL)) (-1987 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 115 (|has| |#1| (-1067)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-1123 |#1|) (-13 (-650 |#1|) (-10 -8 (-6 -4338) (-15 -3846 ($ (-621 |#1|))) (-15 -2275 ($ (-621 |#1|))) (IF (|has| |#1| (-1067)) (-15 -3905 ((-112) (-621 |#1|) $)) |%noBranch|) (-15 -2976 ((-2 (|:| |cycle?| (-112)) (|:| -1888 (-747)) (|:| |period| (-747))) (-747) $)) (-15 -3576 ($ (-1 $))) (-15 -3173 ($ |#1| $)) (IF (|has| |#1| (-1067)) (PROGN (-15 -2075 ((-1231) (-549) $)) (-15 -3428 ((-834) $)) (-15 -3549 ((-112)))) |%noBranch|) (-15 -4179 ($ $ (-549) $)) (-15 -1412 ($ (-1 |#1|))) (-15 -1412 ($ (-1 |#1| |#1|) |#1|)) (-15 -1460 ($ (-1 (-112) |#1|) $)) (-15 -1474 ($ (-1 (-112) |#1|) $)))) (-1180)) (T -1123))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-5 *1 (-1123 *3)))) (-2275 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-5 *1 (-1123 *3)))) (-3905 (*1 *2 *3 *1) (-12 (-5 *3 (-621 *4)) (-4 *4 (-1067)) (-4 *4 (-1180)) (-5 *2 (-112)) (-5 *1 (-1123 *4)))) (-2976 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |cycle?| (-112)) (|:| -1888 (-747)) (|:| |period| (-747)))) (-5 *1 (-1123 *4)) (-4 *4 (-1180)) (-5 *3 (-747)))) (-3576 (*1 *1 *2) (-12 (-5 *2 (-1 (-1123 *3))) (-5 *1 (-1123 *3)) (-4 *3 (-1180)))) (-3173 (*1 *1 *2 *1) (-12 (-5 *1 (-1123 *2)) (-4 *2 (-1180)))) (-2075 (*1 *2 *3 *1) (-12 (-5 *3 (-549)) (-5 *2 (-1231)) (-5 *1 (-1123 *4)) (-4 *4 (-1067)) (-4 *4 (-1180)))) (-3428 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-1123 *3)) (-4 *3 (-1067)) (-4 *3 (-1180)))) (-3549 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1123 *3)) (-4 *3 (-1067)) (-4 *3 (-1180)))) (-4179 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1123 *3)) (-4 *3 (-1180)))) (-1412 (*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1180)) (-5 *1 (-1123 *3)))) (-1412 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1180)) (-5 *1 (-1123 *3)))) (-1460 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1180)) (-5 *1 (-1123 *3)))) (-1474 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1180)) (-5 *1 (-1123 *3)))))
-(-13 (-650 |#1|) (-10 -8 (-6 -4338) (-15 -3846 ($ (-621 |#1|))) (-15 -2275 ($ (-621 |#1|))) (IF (|has| |#1| (-1067)) (-15 -3905 ((-112) (-621 |#1|) $)) |%noBranch|) (-15 -2976 ((-2 (|:| |cycle?| (-112)) (|:| -1888 (-747)) (|:| |period| (-747))) (-747) $)) (-15 -3576 ($ (-1 $))) (-15 -3173 ($ |#1| $)) (IF (|has| |#1| (-1067)) (PROGN (-15 -2075 ((-1231) (-549) $)) (-15 -3428 ((-834) $)) (-15 -3549 ((-112)))) |%noBranch|) (-15 -4179 ($ $ (-549) $)) (-15 -1412 ($ (-1 |#1|))) (-15 -1412 ($ (-1 |#1| |#1|) |#1|)) (-15 -1460 ($ (-1 (-112) |#1|) $)) (-15 -1474 ($ (-1 (-112) |#1|) $))))
-((-3834 (((-112) $ $) 19)) (-2969 (($ $) 120)) (-2946 (($ $) 121)) (-1445 (($ $ (-142)) 108) (($ $ (-139)) 107)) (-1535 (((-1231) $ (-549) (-549)) 40 (|has| $ (-6 -4338)))) (-2319 (((-112) $ $) 118)) (-2293 (((-112) $ $ (-549)) 117)) (-1525 (($ (-549)) 127)) (-3628 (((-621 $) $ (-142)) 110) (((-621 $) $ (-139)) 109)) (-4142 (((-112) (-1 (-112) (-142) (-142)) $) 98) (((-112) $) 92 (|has| (-142) (-823)))) (-4311 (($ (-1 (-112) (-142) (-142)) $) 89 (|has| $ (-6 -4338))) (($ $) 88 (-12 (|has| (-142) (-823)) (|has| $ (-6 -4338))))) (-3193 (($ (-1 (-112) (-142) (-142)) $) 99) (($ $) 93 (|has| (-142) (-823)))) (-1584 (((-112) $ (-747)) 8)) (-2254 (((-142) $ (-549) (-142)) 52 (|has| $ (-6 -4338))) (((-142) $ (-1193 (-549)) (-142)) 58 (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) (-142)) $) 75 (|has| $ (-6 -4337)))) (-1682 (($) 7 T CONST)) (-3590 (($ $ (-142)) 104) (($ $ (-139)) 103)) (-1585 (($ $) 90 (|has| $ (-6 -4338)))) (-3064 (($ $) 100)) (-4126 (($ $ (-1193 (-549)) $) 114)) (-3676 (($ $) 78 (-12 (|has| (-142) (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ (-142) $) 77 (-12 (|has| (-142) (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) (-142)) $) 74 (|has| $ (-6 -4337)))) (-2557 (((-142) (-1 (-142) (-142) (-142)) $ (-142) (-142)) 76 (-12 (|has| (-142) (-1067)) (|has| $ (-6 -4337)))) (((-142) (-1 (-142) (-142) (-142)) $ (-142)) 73 (|has| $ (-6 -4337))) (((-142) (-1 (-142) (-142) (-142)) $) 72 (|has| $ (-6 -4337)))) (-1879 (((-142) $ (-549) (-142)) 53 (|has| $ (-6 -4338)))) (-1809 (((-142) $ (-549)) 51)) (-2349 (((-112) $ $) 119)) (-2883 (((-549) (-1 (-112) (-142)) $) 97) (((-549) (-142) $) 96 (|has| (-142) (-1067))) (((-549) (-142) $ (-549)) 95 (|has| (-142) (-1067))) (((-549) $ $ (-549)) 113) (((-549) (-139) $ (-549)) 112)) (-2989 (((-621 (-142)) $) 30 (|has| $ (-6 -4337)))) (-3743 (($ (-747) (-142)) 69)) (-3194 (((-112) $ (-747)) 9)) (-4031 (((-549) $) 43 (|has| (-549) (-823)))) (-2863 (($ $ $) 87 (|has| (-142) (-823)))) (-3890 (($ (-1 (-112) (-142) (-142)) $ $) 101) (($ $ $) 94 (|has| (-142) (-823)))) (-1562 (((-621 (-142)) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) (-142) $) 27 (-12 (|has| (-142) (-1067)) (|has| $ (-6 -4337))))) (-1569 (((-549) $) 44 (|has| (-549) (-823)))) (-3575 (($ $ $) 86 (|has| (-142) (-823)))) (-2312 (((-112) $ $ (-142)) 115)) (-2475 (((-747) $ $ (-142)) 116)) (-1868 (($ (-1 (-142) (-142)) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-142) (-142)) $) 35) (($ (-1 (-142) (-142) (-142)) $ $) 64)) (-1555 (($ $) 122)) (-3408 (($ $) 123)) (-1508 (((-112) $ (-747)) 10)) (-3603 (($ $ (-142)) 106) (($ $ (-139)) 105)) (-3851 (((-1125) $) 22)) (-2616 (($ (-142) $ (-549)) 60) (($ $ $ (-549)) 59)) (-3303 (((-621 (-549)) $) 46)) (-3761 (((-112) (-549) $) 47)) (-3990 (((-1087) $) 21)) (-3646 (((-142) $) 42 (|has| (-549) (-823)))) (-3779 (((-3 (-142) "failed") (-1 (-112) (-142)) $) 71)) (-1642 (($ $ (-142)) 41 (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) (-142)) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-142)))) 26 (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067)))) (($ $ (-287 (-142))) 25 (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067)))) (($ $ (-142) (-142)) 24 (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067)))) (($ $ (-621 (-142)) (-621 (-142))) 23 (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067))))) (-4144 (((-112) $ $) 14)) (-2265 (((-112) (-142) $) 45 (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067))))) (-2696 (((-621 (-142)) $) 48)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 (((-142) $ (-549) (-142)) 50) (((-142) $ (-549)) 49) (($ $ (-1193 (-549))) 63) (($ $ $) 102)) (-2167 (($ $ (-549)) 62) (($ $ (-1193 (-549))) 61)) (-4000 (((-747) (-1 (-112) (-142)) $) 31 (|has| $ (-6 -4337))) (((-747) (-142) $) 28 (-12 (|has| (-142) (-1067)) (|has| $ (-6 -4337))))) (-2730 (($ $ $ (-549)) 91 (|has| $ (-6 -4338)))) (-2281 (($ $) 13)) (-2845 (((-525) $) 79 (|has| (-142) (-594 (-525))))) (-3854 (($ (-621 (-142))) 70)) (-1952 (($ $ (-142)) 68) (($ (-142) $) 67) (($ $ $) 66) (($ (-621 $)) 65)) (-3846 (($ (-142)) 111) (((-834) $) 18)) (-3527 (((-112) (-1 (-112) (-142)) $) 33 (|has| $ (-6 -4337)))) (-4245 (((-1125) $) 131) (((-1125) $ (-112)) 130) (((-1231) (-798) $) 129) (((-1231) (-798) $ (-112)) 128)) (-2448 (((-112) $ $) 84 (|has| (-142) (-823)))) (-2425 (((-112) $ $) 83 (|has| (-142) (-823)))) (-2389 (((-112) $ $) 20)) (-2438 (((-112) $ $) 85 (|has| (-142) (-823)))) (-2412 (((-112) $ $) 82 (|has| (-142) (-823)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-1124) (-138)) (T -1124))
-((-1525 (*1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-1124)))))
-(-13 (-1111) (-1067) (-804) (-10 -8 (-15 -1525 ($ (-549)))))
-(((-34) . T) ((-101) . T) ((-593 (-834)) . T) ((-149 #0=(-142)) . T) ((-594 (-525)) |has| (-142) (-594 (-525))) ((-279 #1=(-549) #0#) . T) ((-281 #1# #0#) . T) ((-302 #0#) -12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067))) ((-366 #0#) . T) ((-481 #0#) . T) ((-584 #1# #0#) . T) ((-505 #0# #0#) -12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067))) ((-627 #0#) . T) ((-19 #0#) . T) ((-804) . T) ((-823) |has| (-142) (-823)) ((-1067) . T) ((-1111) . T) ((-1180) . T))
-((-3834 (((-112) $ $) NIL)) (-2969 (($ $) NIL)) (-2946 (($ $) NIL)) (-1445 (($ $ (-142)) NIL) (($ $ (-139)) NIL)) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-2319 (((-112) $ $) NIL)) (-2293 (((-112) $ $ (-549)) NIL)) (-1525 (($ (-549)) 7)) (-3628 (((-621 $) $ (-142)) NIL) (((-621 $) $ (-139)) NIL)) (-4142 (((-112) (-1 (-112) (-142) (-142)) $) NIL) (((-112) $) NIL (|has| (-142) (-823)))) (-4311 (($ (-1 (-112) (-142) (-142)) $) NIL (|has| $ (-6 -4338))) (($ $) NIL (-12 (|has| $ (-6 -4338)) (|has| (-142) (-823))))) (-3193 (($ (-1 (-112) (-142) (-142)) $) NIL) (($ $) NIL (|has| (-142) (-823)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 (((-142) $ (-549) (-142)) NIL (|has| $ (-6 -4338))) (((-142) $ (-1193 (-549)) (-142)) NIL (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-3590 (($ $ (-142)) NIL) (($ $ (-139)) NIL)) (-1585 (($ $) NIL (|has| $ (-6 -4338)))) (-3064 (($ $) NIL)) (-4126 (($ $ (-1193 (-549)) $) NIL)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067))))) (-3812 (($ (-142) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067)))) (($ (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4337)))) (-2557 (((-142) (-1 (-142) (-142) (-142)) $ (-142) (-142)) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067)))) (((-142) (-1 (-142) (-142) (-142)) $ (-142)) NIL (|has| $ (-6 -4337))) (((-142) (-1 (-142) (-142) (-142)) $) NIL (|has| $ (-6 -4337)))) (-1879 (((-142) $ (-549) (-142)) NIL (|has| $ (-6 -4338)))) (-1809 (((-142) $ (-549)) NIL)) (-2349 (((-112) $ $) NIL)) (-2883 (((-549) (-1 (-112) (-142)) $) NIL) (((-549) (-142) $) NIL (|has| (-142) (-1067))) (((-549) (-142) $ (-549)) NIL (|has| (-142) (-1067))) (((-549) $ $ (-549)) NIL) (((-549) (-139) $ (-549)) NIL)) (-2989 (((-621 (-142)) $) NIL (|has| $ (-6 -4337)))) (-3743 (($ (-747) (-142)) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) NIL (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (|has| (-142) (-823)))) (-3890 (($ (-1 (-112) (-142) (-142)) $ $) NIL) (($ $ $) NIL (|has| (-142) (-823)))) (-1562 (((-621 (-142)) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-142) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| (-142) (-823)))) (-2312 (((-112) $ $ (-142)) NIL)) (-2475 (((-747) $ $ (-142)) NIL)) (-1868 (($ (-1 (-142) (-142)) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-142) (-142)) $) NIL) (($ (-1 (-142) (-142) (-142)) $ $) NIL)) (-1555 (($ $) NIL)) (-3408 (($ $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3603 (($ $ (-142)) NIL) (($ $ (-139)) NIL)) (-3851 (((-1125) $) NIL)) (-2616 (($ (-142) $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3990 (((-1087) $) NIL)) (-3646 (((-142) $) NIL (|has| (-549) (-823)))) (-3779 (((-3 (-142) "failed") (-1 (-112) (-142)) $) NIL)) (-1642 (($ $ (-142)) NIL (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-142)))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067)))) (($ $ (-287 (-142))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067)))) (($ $ (-142) (-142)) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067)))) (($ $ (-621 (-142)) (-621 (-142))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) (-142) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067))))) (-2696 (((-621 (-142)) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 (((-142) $ (-549) (-142)) NIL) (((-142) $ (-549)) NIL) (($ $ (-1193 (-549))) NIL) (($ $ $) NIL)) (-2167 (($ $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-4000 (((-747) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4337))) (((-747) (-142) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-1067))))) (-2730 (($ $ $ (-549)) NIL (|has| $ (-6 -4338)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| (-142) (-594 (-525))))) (-3854 (($ (-621 (-142))) NIL)) (-1952 (($ $ (-142)) NIL) (($ (-142) $) NIL) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3846 (($ (-142)) NIL) (((-834) $) NIL)) (-3527 (((-112) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4337)))) (-4245 (((-1125) $) 18) (((-1125) $ (-112)) 20) (((-1231) (-798) $) 21) (((-1231) (-798) $ (-112)) 22)) (-2448 (((-112) $ $) NIL (|has| (-142) (-823)))) (-2425 (((-112) $ $) NIL (|has| (-142) (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| (-142) (-823)))) (-2412 (((-112) $ $) NIL (|has| (-142) (-823)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-1125) (-1124)) (T -1125))
-NIL
-(-1124)
-((-3834 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067)) (|has| |#1| (-1067))))) (-3733 (($) NIL) (($ (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) NIL)) (-1535 (((-1231) $ (-1125) (-1125)) NIL (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 ((|#1| $ (-1125) |#1|) NIL)) (-1717 (($ (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337)))) (-3490 (((-3 |#1| "failed") (-1125) $) NIL)) (-1682 (($) NIL T CONST)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067))))) (-2129 (($ (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) $) NIL (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337))) (((-3 |#1| "failed") (-1125) $) NIL)) (-3812 (($ (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067)))) (($ (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337)))) (-2557 (((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $ (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067)))) (((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $ (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337)))) (-1879 ((|#1| $ (-1125) |#1|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-1125)) NIL)) (-2989 (((-621 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337))) (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-1125) $) NIL (|has| (-1125) (-823)))) (-1562 (((-621 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337))) (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067)))) (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1569 (((-1125) $) NIL (|has| (-1125) (-823)))) (-1868 (($ (-1 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4338))) (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (-1536 (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067)) (|has| |#1| (-1067))))) (-3449 (((-621 (-1125)) $) NIL)) (-2427 (((-112) (-1125) $) NIL)) (-3504 (((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) $) NIL)) (-2751 (($ (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) $) NIL)) (-3303 (((-621 (-1125)) $) NIL)) (-3761 (((-112) (-1125) $) NIL)) (-3990 (((-1087) $) NIL (-1536 (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067)) (|has| |#1| (-1067))))) (-3646 ((|#1| $) NIL (|has| (-1125) (-823)))) (-3779 (((-3 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) "failed") (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL)) (-1642 (($ $ |#1|) NIL (|has| $ (-6 -4338)))) (-3325 (((-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) $) NIL)) (-1780 (((-112) (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))))) NIL (-12 (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067)))) (($ $ (-287 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) NIL (-12 (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067)))) (($ $ (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) NIL (-12 (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067)))) (($ $ (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) NIL (-12 (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-302 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#1| $ (-1125)) NIL) ((|#1| $ (-1125) |#1|) NIL)) (-2898 (($) NIL) (($ (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) NIL)) (-4000 (((-747) (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337))) (((-747) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067)))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-594 (-525))))) (-3854 (($ (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) NIL)) (-3846 (((-834) $) NIL (-1536 (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-593 (-834))) (|has| |#1| (-593 (-834)))))) (-3624 (($ (-621 (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)))) NIL)) (-3527 (((-112) (-1 (-112) (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3337 (-1125)) (|:| -1793 |#1|)) (-1067)) (|has| |#1| (-1067))))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-1126 |#1|) (-13 (-1156 (-1125) |#1|) (-10 -7 (-6 -4337))) (-1067)) (T -1126))
-NIL
-(-13 (-1156 (-1125) |#1|) (-10 -7 (-6 -4337)))
-((-1387 (((-1123 |#1|) (-1123 |#1|)) 77)) (-2114 (((-3 (-1123 |#1|) "failed") (-1123 |#1|)) 37)) (-3314 (((-1123 |#1|) (-400 (-549)) (-1123 |#1|)) 121 (|has| |#1| (-38 (-400 (-549)))))) (-3063 (((-1123 |#1|) |#1| (-1123 |#1|)) 127 (|has| |#1| (-356)))) (-4226 (((-1123 |#1|) (-1123 |#1|)) 90)) (-2606 (((-1123 (-549)) (-549)) 57)) (-4057 (((-1123 |#1|) (-1123 (-1123 |#1|))) 109 (|has| |#1| (-38 (-400 (-549)))))) (-1594 (((-1123 |#1|) (-549) (-549) (-1123 |#1|)) 95)) (-3526 (((-1123 |#1|) |#1| (-549)) 45)) (-1365 (((-1123 |#1|) (-1123 |#1|) (-1123 |#1|)) 60)) (-2020 (((-1123 |#1|) (-1123 |#1|) (-1123 |#1|)) 124 (|has| |#1| (-356)))) (-1595 (((-1123 |#1|) |#1| (-1 (-1123 |#1|))) 108 (|has| |#1| (-38 (-400 (-549)))))) (-4010 (((-1123 |#1|) (-1 |#1| (-549)) |#1| (-1 (-1123 |#1|))) 125 (|has| |#1| (-356)))) (-2848 (((-1123 |#1|) (-1123 |#1|)) 89)) (-1375 (((-1123 |#1|) (-1123 |#1|)) 76)) (-3498 (((-1123 |#1|) (-549) (-549) (-1123 |#1|)) 96)) (-3893 (((-1123 |#1|) |#1| (-1123 |#1|)) 105 (|has| |#1| (-38 (-400 (-549)))))) (-1732 (((-1123 (-549)) (-549)) 56)) (-4292 (((-1123 |#1|) |#1|) 59)) (-1629 (((-1123 |#1|) (-1123 |#1|) (-549) (-549)) 92)) (-1995 (((-1123 |#1|) (-1 |#1| (-549)) (-1123 |#1|)) 66)) (-2042 (((-3 (-1123 |#1|) "failed") (-1123 |#1|) (-1123 |#1|)) 35)) (-3184 (((-1123 |#1|) (-1123 |#1|)) 91)) (-2686 (((-1123 |#1|) (-1123 |#1|) |#1|) 71)) (-2236 (((-1123 |#1|) (-1123 |#1|)) 62)) (-1341 (((-1123 |#1|) (-1123 |#1|) (-1123 |#1|)) 72)) (-3846 (((-1123 |#1|) |#1|) 67)) (-2934 (((-1123 |#1|) (-1123 (-1123 |#1|))) 82)) (-2513 (((-1123 |#1|) (-1123 |#1|) (-1123 |#1|)) 36)) (-2500 (((-1123 |#1|) (-1123 |#1|)) 21) (((-1123 |#1|) (-1123 |#1|) (-1123 |#1|)) 23)) (-2486 (((-1123 |#1|) (-1123 |#1|) (-1123 |#1|)) 17)) (* (((-1123 |#1|) (-1123 |#1|) |#1|) 29) (((-1123 |#1|) |#1| (-1123 |#1|)) 26) (((-1123 |#1|) (-1123 |#1|) (-1123 |#1|)) 27)))
-(((-1127 |#1|) (-10 -7 (-15 -2486 ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 -2500 ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 -2500 ((-1123 |#1|) (-1123 |#1|))) (-15 * ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 * ((-1123 |#1|) |#1| (-1123 |#1|))) (-15 * ((-1123 |#1|) (-1123 |#1|) |#1|)) (-15 -2042 ((-3 (-1123 |#1|) "failed") (-1123 |#1|) (-1123 |#1|))) (-15 -2513 ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 -2114 ((-3 (-1123 |#1|) "failed") (-1123 |#1|))) (-15 -3526 ((-1123 |#1|) |#1| (-549))) (-15 -1732 ((-1123 (-549)) (-549))) (-15 -2606 ((-1123 (-549)) (-549))) (-15 -4292 ((-1123 |#1|) |#1|)) (-15 -1365 ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 -2236 ((-1123 |#1|) (-1123 |#1|))) (-15 -1995 ((-1123 |#1|) (-1 |#1| (-549)) (-1123 |#1|))) (-15 -3846 ((-1123 |#1|) |#1|)) (-15 -2686 ((-1123 |#1|) (-1123 |#1|) |#1|)) (-15 -1341 ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 -1375 ((-1123 |#1|) (-1123 |#1|))) (-15 -1387 ((-1123 |#1|) (-1123 |#1|))) (-15 -2934 ((-1123 |#1|) (-1123 (-1123 |#1|)))) (-15 -2848 ((-1123 |#1|) (-1123 |#1|))) (-15 -4226 ((-1123 |#1|) (-1123 |#1|))) (-15 -3184 ((-1123 |#1|) (-1123 |#1|))) (-15 -1629 ((-1123 |#1|) (-1123 |#1|) (-549) (-549))) (-15 -1594 ((-1123 |#1|) (-549) (-549) (-1123 |#1|))) (-15 -3498 ((-1123 |#1|) (-549) (-549) (-1123 |#1|))) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -3893 ((-1123 |#1|) |#1| (-1123 |#1|))) (-15 -1595 ((-1123 |#1|) |#1| (-1 (-1123 |#1|)))) (-15 -4057 ((-1123 |#1|) (-1123 (-1123 |#1|)))) (-15 -3314 ((-1123 |#1|) (-400 (-549)) (-1123 |#1|)))) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-15 -2020 ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 -4010 ((-1123 |#1|) (-1 |#1| (-549)) |#1| (-1 (-1123 |#1|)))) (-15 -3063 ((-1123 |#1|) |#1| (-1123 |#1|)))) |%noBranch|)) (-1018)) (T -1127))
-((-3063 (*1 *2 *3 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-356)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (-4010 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *4 (-549))) (-5 *5 (-1 (-1123 *4))) (-4 *4 (-356)) (-4 *4 (-1018)) (-5 *2 (-1123 *4)) (-5 *1 (-1127 *4)))) (-2020 (*1 *2 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-356)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (-3314 (*1 *2 *3 *2) (-12 (-5 *2 (-1123 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1018)) (-5 *3 (-400 (-549))) (-5 *1 (-1127 *4)))) (-4057 (*1 *2 *3) (-12 (-5 *3 (-1123 (-1123 *4))) (-5 *2 (-1123 *4)) (-5 *1 (-1127 *4)) (-4 *4 (-38 (-400 (-549)))) (-4 *4 (-1018)))) (-1595 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-1123 *3))) (-5 *2 (-1123 *3)) (-5 *1 (-1127 *3)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)))) (-3893 (*1 *2 *3 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (-3498 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1123 *4)) (-5 *3 (-549)) (-4 *4 (-1018)) (-5 *1 (-1127 *4)))) (-1594 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1123 *4)) (-5 *3 (-549)) (-4 *4 (-1018)) (-5 *1 (-1127 *4)))) (-1629 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1123 *4)) (-5 *3 (-549)) (-4 *4 (-1018)) (-5 *1 (-1127 *4)))) (-3184 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (-4226 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (-2848 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (-2934 (*1 *2 *3) (-12 (-5 *3 (-1123 (-1123 *4))) (-5 *2 (-1123 *4)) (-5 *1 (-1127 *4)) (-4 *4 (-1018)))) (-1387 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (-1375 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (-1341 (*1 *2 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (-2686 (*1 *2 *2 *3) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (-3846 (*1 *2 *3) (-12 (-5 *2 (-1123 *3)) (-5 *1 (-1127 *3)) (-4 *3 (-1018)))) (-1995 (*1 *2 *3 *2) (-12 (-5 *2 (-1123 *4)) (-5 *3 (-1 *4 (-549))) (-4 *4 (-1018)) (-5 *1 (-1127 *4)))) (-2236 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (-1365 (*1 *2 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (-4292 (*1 *2 *3) (-12 (-5 *2 (-1123 *3)) (-5 *1 (-1127 *3)) (-4 *3 (-1018)))) (-2606 (*1 *2 *3) (-12 (-5 *2 (-1123 (-549))) (-5 *1 (-1127 *4)) (-4 *4 (-1018)) (-5 *3 (-549)))) (-1732 (*1 *2 *3) (-12 (-5 *2 (-1123 (-549))) (-5 *1 (-1127 *4)) (-4 *4 (-1018)) (-5 *3 (-549)))) (-3526 (*1 *2 *3 *4) (-12 (-5 *4 (-549)) (-5 *2 (-1123 *3)) (-5 *1 (-1127 *3)) (-4 *3 (-1018)))) (-2114 (*1 *2 *2) (|partial| -12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (-2513 (*1 *2 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (-2042 (*1 *2 *2 *2) (|partial| -12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (* (*1 *2 *2 *3) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (-2500 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (-2500 (*1 *2 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))) (-2486 (*1 *2 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))))
-(-10 -7 (-15 -2486 ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 -2500 ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 -2500 ((-1123 |#1|) (-1123 |#1|))) (-15 * ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 * ((-1123 |#1|) |#1| (-1123 |#1|))) (-15 * ((-1123 |#1|) (-1123 |#1|) |#1|)) (-15 -2042 ((-3 (-1123 |#1|) "failed") (-1123 |#1|) (-1123 |#1|))) (-15 -2513 ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 -2114 ((-3 (-1123 |#1|) "failed") (-1123 |#1|))) (-15 -3526 ((-1123 |#1|) |#1| (-549))) (-15 -1732 ((-1123 (-549)) (-549))) (-15 -2606 ((-1123 (-549)) (-549))) (-15 -4292 ((-1123 |#1|) |#1|)) (-15 -1365 ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 -2236 ((-1123 |#1|) (-1123 |#1|))) (-15 -1995 ((-1123 |#1|) (-1 |#1| (-549)) (-1123 |#1|))) (-15 -3846 ((-1123 |#1|) |#1|)) (-15 -2686 ((-1123 |#1|) (-1123 |#1|) |#1|)) (-15 -1341 ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 -1375 ((-1123 |#1|) (-1123 |#1|))) (-15 -1387 ((-1123 |#1|) (-1123 |#1|))) (-15 -2934 ((-1123 |#1|) (-1123 (-1123 |#1|)))) (-15 -2848 ((-1123 |#1|) (-1123 |#1|))) (-15 -4226 ((-1123 |#1|) (-1123 |#1|))) (-15 -3184 ((-1123 |#1|) (-1123 |#1|))) (-15 -1629 ((-1123 |#1|) (-1123 |#1|) (-549) (-549))) (-15 -1594 ((-1123 |#1|) (-549) (-549) (-1123 |#1|))) (-15 -3498 ((-1123 |#1|) (-549) (-549) (-1123 |#1|))) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -3893 ((-1123 |#1|) |#1| (-1123 |#1|))) (-15 -1595 ((-1123 |#1|) |#1| (-1 (-1123 |#1|)))) (-15 -4057 ((-1123 |#1|) (-1123 (-1123 |#1|)))) (-15 -3314 ((-1123 |#1|) (-400 (-549)) (-1123 |#1|)))) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-15 -2020 ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 -4010 ((-1123 |#1|) (-1 |#1| (-549)) |#1| (-1 (-1123 |#1|)))) (-15 -3063 ((-1123 |#1|) |#1| (-1123 |#1|)))) |%noBranch|))
-((-1664 (((-1123 |#1|) (-1123 |#1|)) 57)) (-1512 (((-1123 |#1|) (-1123 |#1|)) 39)) (-1640 (((-1123 |#1|) (-1123 |#1|)) 53)) (-1486 (((-1123 |#1|) (-1123 |#1|)) 35)) (-1685 (((-1123 |#1|) (-1123 |#1|)) 60)) (-1539 (((-1123 |#1|) (-1123 |#1|)) 42)) (-3632 (((-1123 |#1|) (-1123 |#1|)) 31)) (-2719 (((-1123 |#1|) (-1123 |#1|)) 27)) (-1698 (((-1123 |#1|) (-1123 |#1|)) 61)) (-1552 (((-1123 |#1|) (-1123 |#1|)) 43)) (-1675 (((-1123 |#1|) (-1123 |#1|)) 58)) (-1526 (((-1123 |#1|) (-1123 |#1|)) 40)) (-1651 (((-1123 |#1|) (-1123 |#1|)) 55)) (-1501 (((-1123 |#1|) (-1123 |#1|)) 37)) (-1733 (((-1123 |#1|) (-1123 |#1|)) 65)) (-1587 (((-1123 |#1|) (-1123 |#1|)) 47)) (-1710 (((-1123 |#1|) (-1123 |#1|)) 63)) (-1564 (((-1123 |#1|) (-1123 |#1|)) 45)) (-1758 (((-1123 |#1|) (-1123 |#1|)) 68)) (-1612 (((-1123 |#1|) (-1123 |#1|)) 50)) (-1934 (((-1123 |#1|) (-1123 |#1|)) 69)) (-1627 (((-1123 |#1|) (-1123 |#1|)) 51)) (-1745 (((-1123 |#1|) (-1123 |#1|)) 67)) (-1600 (((-1123 |#1|) (-1123 |#1|)) 49)) (-1722 (((-1123 |#1|) (-1123 |#1|)) 66)) (-1576 (((-1123 |#1|) (-1123 |#1|)) 48)) (** (((-1123 |#1|) (-1123 |#1|) (-1123 |#1|)) 33)))
-(((-1128 |#1|) (-10 -7 (-15 -2719 ((-1123 |#1|) (-1123 |#1|))) (-15 -3632 ((-1123 |#1|) (-1123 |#1|))) (-15 ** ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 -1486 ((-1123 |#1|) (-1123 |#1|))) (-15 -1501 ((-1123 |#1|) (-1123 |#1|))) (-15 -1512 ((-1123 |#1|) (-1123 |#1|))) (-15 -1526 ((-1123 |#1|) (-1123 |#1|))) (-15 -1539 ((-1123 |#1|) (-1123 |#1|))) (-15 -1552 ((-1123 |#1|) (-1123 |#1|))) (-15 -1564 ((-1123 |#1|) (-1123 |#1|))) (-15 -1576 ((-1123 |#1|) (-1123 |#1|))) (-15 -1587 ((-1123 |#1|) (-1123 |#1|))) (-15 -1600 ((-1123 |#1|) (-1123 |#1|))) (-15 -1612 ((-1123 |#1|) (-1123 |#1|))) (-15 -1627 ((-1123 |#1|) (-1123 |#1|))) (-15 -1640 ((-1123 |#1|) (-1123 |#1|))) (-15 -1651 ((-1123 |#1|) (-1123 |#1|))) (-15 -1664 ((-1123 |#1|) (-1123 |#1|))) (-15 -1675 ((-1123 |#1|) (-1123 |#1|))) (-15 -1685 ((-1123 |#1|) (-1123 |#1|))) (-15 -1698 ((-1123 |#1|) (-1123 |#1|))) (-15 -1710 ((-1123 |#1|) (-1123 |#1|))) (-15 -1722 ((-1123 |#1|) (-1123 |#1|))) (-15 -1733 ((-1123 |#1|) (-1123 |#1|))) (-15 -1745 ((-1123 |#1|) (-1123 |#1|))) (-15 -1758 ((-1123 |#1|) (-1123 |#1|))) (-15 -1934 ((-1123 |#1|) (-1123 |#1|)))) (-38 (-400 (-549)))) (T -1128))
-((-1934 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1758 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1745 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1733 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1722 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1710 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1698 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1685 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1675 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1664 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1651 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1640 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1627 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1612 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1600 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1587 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1576 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1564 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1552 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1539 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1526 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1512 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1501 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1486 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-3632 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-2719 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))))
-(-10 -7 (-15 -2719 ((-1123 |#1|) (-1123 |#1|))) (-15 -3632 ((-1123 |#1|) (-1123 |#1|))) (-15 ** ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 -1486 ((-1123 |#1|) (-1123 |#1|))) (-15 -1501 ((-1123 |#1|) (-1123 |#1|))) (-15 -1512 ((-1123 |#1|) (-1123 |#1|))) (-15 -1526 ((-1123 |#1|) (-1123 |#1|))) (-15 -1539 ((-1123 |#1|) (-1123 |#1|))) (-15 -1552 ((-1123 |#1|) (-1123 |#1|))) (-15 -1564 ((-1123 |#1|) (-1123 |#1|))) (-15 -1576 ((-1123 |#1|) (-1123 |#1|))) (-15 -1587 ((-1123 |#1|) (-1123 |#1|))) (-15 -1600 ((-1123 |#1|) (-1123 |#1|))) (-15 -1612 ((-1123 |#1|) (-1123 |#1|))) (-15 -1627 ((-1123 |#1|) (-1123 |#1|))) (-15 -1640 ((-1123 |#1|) (-1123 |#1|))) (-15 -1651 ((-1123 |#1|) (-1123 |#1|))) (-15 -1664 ((-1123 |#1|) (-1123 |#1|))) (-15 -1675 ((-1123 |#1|) (-1123 |#1|))) (-15 -1685 ((-1123 |#1|) (-1123 |#1|))) (-15 -1698 ((-1123 |#1|) (-1123 |#1|))) (-15 -1710 ((-1123 |#1|) (-1123 |#1|))) (-15 -1722 ((-1123 |#1|) (-1123 |#1|))) (-15 -1733 ((-1123 |#1|) (-1123 |#1|))) (-15 -1745 ((-1123 |#1|) (-1123 |#1|))) (-15 -1758 ((-1123 |#1|) (-1123 |#1|))) (-15 -1934 ((-1123 |#1|) (-1123 |#1|))))
-((-1664 (((-1123 |#1|) (-1123 |#1|)) 100)) (-1512 (((-1123 |#1|) (-1123 |#1|)) 64)) (-2049 (((-2 (|:| -1640 (-1123 |#1|)) (|:| -1651 (-1123 |#1|))) (-1123 |#1|)) 96)) (-1640 (((-1123 |#1|) (-1123 |#1|)) 97)) (-3278 (((-2 (|:| -1486 (-1123 |#1|)) (|:| -1501 (-1123 |#1|))) (-1123 |#1|)) 53)) (-1486 (((-1123 |#1|) (-1123 |#1|)) 54)) (-1685 (((-1123 |#1|) (-1123 |#1|)) 102)) (-1539 (((-1123 |#1|) (-1123 |#1|)) 71)) (-3632 (((-1123 |#1|) (-1123 |#1|)) 39)) (-2719 (((-1123 |#1|) (-1123 |#1|)) 36)) (-1698 (((-1123 |#1|) (-1123 |#1|)) 103)) (-1552 (((-1123 |#1|) (-1123 |#1|)) 72)) (-1675 (((-1123 |#1|) (-1123 |#1|)) 101)) (-1526 (((-1123 |#1|) (-1123 |#1|)) 67)) (-1651 (((-1123 |#1|) (-1123 |#1|)) 98)) (-1501 (((-1123 |#1|) (-1123 |#1|)) 55)) (-1733 (((-1123 |#1|) (-1123 |#1|)) 111)) (-1587 (((-1123 |#1|) (-1123 |#1|)) 86)) (-1710 (((-1123 |#1|) (-1123 |#1|)) 105)) (-1564 (((-1123 |#1|) (-1123 |#1|)) 82)) (-1758 (((-1123 |#1|) (-1123 |#1|)) 115)) (-1612 (((-1123 |#1|) (-1123 |#1|)) 90)) (-1934 (((-1123 |#1|) (-1123 |#1|)) 117)) (-1627 (((-1123 |#1|) (-1123 |#1|)) 92)) (-1745 (((-1123 |#1|) (-1123 |#1|)) 113)) (-1600 (((-1123 |#1|) (-1123 |#1|)) 88)) (-1722 (((-1123 |#1|) (-1123 |#1|)) 107)) (-1576 (((-1123 |#1|) (-1123 |#1|)) 84)) (** (((-1123 |#1|) (-1123 |#1|) (-1123 |#1|)) 40)))
-(((-1129 |#1|) (-10 -7 (-15 -2719 ((-1123 |#1|) (-1123 |#1|))) (-15 -3632 ((-1123 |#1|) (-1123 |#1|))) (-15 ** ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 -3278 ((-2 (|:| -1486 (-1123 |#1|)) (|:| -1501 (-1123 |#1|))) (-1123 |#1|))) (-15 -1486 ((-1123 |#1|) (-1123 |#1|))) (-15 -1501 ((-1123 |#1|) (-1123 |#1|))) (-15 -1512 ((-1123 |#1|) (-1123 |#1|))) (-15 -1526 ((-1123 |#1|) (-1123 |#1|))) (-15 -1539 ((-1123 |#1|) (-1123 |#1|))) (-15 -1552 ((-1123 |#1|) (-1123 |#1|))) (-15 -1564 ((-1123 |#1|) (-1123 |#1|))) (-15 -1576 ((-1123 |#1|) (-1123 |#1|))) (-15 -1587 ((-1123 |#1|) (-1123 |#1|))) (-15 -1600 ((-1123 |#1|) (-1123 |#1|))) (-15 -1612 ((-1123 |#1|) (-1123 |#1|))) (-15 -1627 ((-1123 |#1|) (-1123 |#1|))) (-15 -2049 ((-2 (|:| -1640 (-1123 |#1|)) (|:| -1651 (-1123 |#1|))) (-1123 |#1|))) (-15 -1640 ((-1123 |#1|) (-1123 |#1|))) (-15 -1651 ((-1123 |#1|) (-1123 |#1|))) (-15 -1664 ((-1123 |#1|) (-1123 |#1|))) (-15 -1675 ((-1123 |#1|) (-1123 |#1|))) (-15 -1685 ((-1123 |#1|) (-1123 |#1|))) (-15 -1698 ((-1123 |#1|) (-1123 |#1|))) (-15 -1710 ((-1123 |#1|) (-1123 |#1|))) (-15 -1722 ((-1123 |#1|) (-1123 |#1|))) (-15 -1733 ((-1123 |#1|) (-1123 |#1|))) (-15 -1745 ((-1123 |#1|) (-1123 |#1|))) (-15 -1758 ((-1123 |#1|) (-1123 |#1|))) (-15 -1934 ((-1123 |#1|) (-1123 |#1|)))) (-38 (-400 (-549)))) (T -1129))
-((-1934 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1758 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1745 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1733 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1722 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1710 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1698 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1685 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1675 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1664 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1651 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1640 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-2049 (*1 *2 *3) (-12 (-4 *4 (-38 (-400 (-549)))) (-5 *2 (-2 (|:| -1640 (-1123 *4)) (|:| -1651 (-1123 *4)))) (-5 *1 (-1129 *4)) (-5 *3 (-1123 *4)))) (-1627 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1612 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1600 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1587 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1576 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1564 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1552 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1539 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1526 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1512 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1501 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-1486 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-3278 (*1 *2 *3) (-12 (-4 *4 (-38 (-400 (-549)))) (-5 *2 (-2 (|:| -1486 (-1123 *4)) (|:| -1501 (-1123 *4)))) (-5 *1 (-1129 *4)) (-5 *3 (-1123 *4)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-3632 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))) (-2719 (*1 *2 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1129 *3)))))
-(-10 -7 (-15 -2719 ((-1123 |#1|) (-1123 |#1|))) (-15 -3632 ((-1123 |#1|) (-1123 |#1|))) (-15 ** ((-1123 |#1|) (-1123 |#1|) (-1123 |#1|))) (-15 -3278 ((-2 (|:| -1486 (-1123 |#1|)) (|:| -1501 (-1123 |#1|))) (-1123 |#1|))) (-15 -1486 ((-1123 |#1|) (-1123 |#1|))) (-15 -1501 ((-1123 |#1|) (-1123 |#1|))) (-15 -1512 ((-1123 |#1|) (-1123 |#1|))) (-15 -1526 ((-1123 |#1|) (-1123 |#1|))) (-15 -1539 ((-1123 |#1|) (-1123 |#1|))) (-15 -1552 ((-1123 |#1|) (-1123 |#1|))) (-15 -1564 ((-1123 |#1|) (-1123 |#1|))) (-15 -1576 ((-1123 |#1|) (-1123 |#1|))) (-15 -1587 ((-1123 |#1|) (-1123 |#1|))) (-15 -1600 ((-1123 |#1|) (-1123 |#1|))) (-15 -1612 ((-1123 |#1|) (-1123 |#1|))) (-15 -1627 ((-1123 |#1|) (-1123 |#1|))) (-15 -2049 ((-2 (|:| -1640 (-1123 |#1|)) (|:| -1651 (-1123 |#1|))) (-1123 |#1|))) (-15 -1640 ((-1123 |#1|) (-1123 |#1|))) (-15 -1651 ((-1123 |#1|) (-1123 |#1|))) (-15 -1664 ((-1123 |#1|) (-1123 |#1|))) (-15 -1675 ((-1123 |#1|) (-1123 |#1|))) (-15 -1685 ((-1123 |#1|) (-1123 |#1|))) (-15 -1698 ((-1123 |#1|) (-1123 |#1|))) (-15 -1710 ((-1123 |#1|) (-1123 |#1|))) (-15 -1722 ((-1123 |#1|) (-1123 |#1|))) (-15 -1733 ((-1123 |#1|) (-1123 |#1|))) (-15 -1745 ((-1123 |#1|) (-1123 |#1|))) (-15 -1758 ((-1123 |#1|) (-1123 |#1|))) (-15 -1934 ((-1123 |#1|) (-1123 |#1|))))
-((-2382 (((-929 |#2|) |#2| |#2|) 35)) (-1285 ((|#2| |#2| |#1|) 19 (|has| |#1| (-300)))))
-(((-1130 |#1| |#2|) (-10 -7 (-15 -2382 ((-929 |#2|) |#2| |#2|)) (IF (|has| |#1| (-300)) (-15 -1285 (|#2| |#2| |#1|)) |%noBranch|)) (-541) (-1202 |#1|)) (T -1130))
-((-1285 (*1 *2 *2 *3) (-12 (-4 *3 (-300)) (-4 *3 (-541)) (-5 *1 (-1130 *3 *2)) (-4 *2 (-1202 *3)))) (-2382 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-929 *3)) (-5 *1 (-1130 *4 *3)) (-4 *3 (-1202 *4)))))
-(-10 -7 (-15 -2382 ((-929 |#2|) |#2| |#2|)) (IF (|has| |#1| (-300)) (-15 -1285 (|#2| |#2| |#1|)) |%noBranch|))
-((-3834 (((-112) $ $) NIL)) (-1686 (($ $ (-621 (-747))) 67)) (-3368 (($) 26)) (-1413 (($ $) 42)) (-1358 (((-621 $) $) 51)) (-3067 (((-112) $) 16)) (-1383 (((-621 (-914 |#2|)) $) 74)) (-2788 (($ $) 68)) (-1889 (((-747) $) 37)) (-3743 (($) 25)) (-2490 (($ $ (-621 (-747)) (-914 |#2|)) 60) (($ $ (-621 (-747)) (-747)) 61) (($ $ (-747) (-914 |#2|)) 63)) (-3890 (($ $ $) 48) (($ (-621 $)) 50)) (-1494 (((-747) $) 75)) (-2076 (((-112) $) 15)) (-3851 (((-1125) $) NIL)) (-1946 (((-112) $) 18)) (-3990 (((-1087) $) NIL)) (-3250 (((-169) $) 73)) (-4140 (((-914 |#2|) $) 69)) (-3730 (((-747) $) 70)) (-2069 (((-112) $) 72)) (-4129 (($ $ (-621 (-747)) (-169)) 66)) (-3394 (($ $) 43)) (-3846 (((-834) $) 86)) (-2085 (($ $ (-621 (-747)) (-112)) 65)) (-2742 (((-621 $) $) 11)) (-2727 (($ $ (-747)) 36)) (-2320 (($ $) 32)) (-3109 (($ $ $ (-914 |#2|) (-747)) 56)) (-1768 (($ $ (-914 |#2|)) 55)) (-2786 (($ $ (-621 (-747)) (-914 |#2|)) 54) (($ $ (-621 (-747)) (-747)) 58) (((-747) $ (-914 |#2|)) 59)) (-2389 (((-112) $ $) 80)))
-(((-1131 |#1| |#2|) (-13 (-1067) (-10 -8 (-15 -2076 ((-112) $)) (-15 -3067 ((-112) $)) (-15 -1946 ((-112) $)) (-15 -3743 ($)) (-15 -3368 ($)) (-15 -2320 ($ $)) (-15 -2727 ($ $ (-747))) (-15 -2742 ((-621 $) $)) (-15 -1889 ((-747) $)) (-15 -1413 ($ $)) (-15 -3394 ($ $)) (-15 -3890 ($ $ $)) (-15 -3890 ($ (-621 $))) (-15 -1358 ((-621 $) $)) (-15 -2786 ($ $ (-621 (-747)) (-914 |#2|))) (-15 -1768 ($ $ (-914 |#2|))) (-15 -3109 ($ $ $ (-914 |#2|) (-747))) (-15 -2490 ($ $ (-621 (-747)) (-914 |#2|))) (-15 -2786 ($ $ (-621 (-747)) (-747))) (-15 -2490 ($ $ (-621 (-747)) (-747))) (-15 -2786 ((-747) $ (-914 |#2|))) (-15 -2490 ($ $ (-747) (-914 |#2|))) (-15 -2085 ($ $ (-621 (-747)) (-112))) (-15 -4129 ($ $ (-621 (-747)) (-169))) (-15 -1686 ($ $ (-621 (-747)))) (-15 -4140 ((-914 |#2|) $)) (-15 -3730 ((-747) $)) (-15 -2069 ((-112) $)) (-15 -3250 ((-169) $)) (-15 -1494 ((-747) $)) (-15 -2788 ($ $)) (-15 -1383 ((-621 (-914 |#2|)) $)))) (-892) (-1018)) (T -1131))
-((-2076 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-3067 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-1946 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-3743 (*1 *1) (-12 (-5 *1 (-1131 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))) (-3368 (*1 *1) (-12 (-5 *1 (-1131 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))) (-2320 (*1 *1 *1) (-12 (-5 *1 (-1131 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))) (-2727 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-2742 (*1 *2 *1) (-12 (-5 *2 (-621 (-1131 *3 *4))) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-1889 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-1413 (*1 *1 *1) (-12 (-5 *1 (-1131 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))) (-3394 (*1 *1 *1) (-12 (-5 *1 (-1131 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))) (-3890 (*1 *1 *1 *1) (-12 (-5 *1 (-1131 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))) (-3890 (*1 *1 *2) (-12 (-5 *2 (-621 (-1131 *3 *4))) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-1358 (*1 *2 *1) (-12 (-5 *2 (-621 (-1131 *3 *4))) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-2786 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-747))) (-5 *3 (-914 *5)) (-4 *5 (-1018)) (-5 *1 (-1131 *4 *5)) (-14 *4 (-892)))) (-1768 (*1 *1 *1 *2) (-12 (-5 *2 (-914 *4)) (-4 *4 (-1018)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892)))) (-3109 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-914 *5)) (-5 *3 (-747)) (-4 *5 (-1018)) (-5 *1 (-1131 *4 *5)) (-14 *4 (-892)))) (-2490 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-747))) (-5 *3 (-914 *5)) (-4 *5 (-1018)) (-5 *1 (-1131 *4 *5)) (-14 *4 (-892)))) (-2786 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-747))) (-5 *3 (-747)) (-5 *1 (-1131 *4 *5)) (-14 *4 (-892)) (-4 *5 (-1018)))) (-2490 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-747))) (-5 *3 (-747)) (-5 *1 (-1131 *4 *5)) (-14 *4 (-892)) (-4 *5 (-1018)))) (-2786 (*1 *2 *1 *3) (-12 (-5 *3 (-914 *5)) (-4 *5 (-1018)) (-5 *2 (-747)) (-5 *1 (-1131 *4 *5)) (-14 *4 (-892)))) (-2490 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *3 (-914 *5)) (-4 *5 (-1018)) (-5 *1 (-1131 *4 *5)) (-14 *4 (-892)))) (-2085 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-747))) (-5 *3 (-112)) (-5 *1 (-1131 *4 *5)) (-14 *4 (-892)) (-4 *5 (-1018)))) (-4129 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-747))) (-5 *3 (-169)) (-5 *1 (-1131 *4 *5)) (-14 *4 (-892)) (-4 *5 (-1018)))) (-1686 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-747))) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-4140 (*1 *2 *1) (-12 (-5 *2 (-914 *4)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-3730 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-2069 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-3250 (*1 *2 *1) (-12 (-5 *2 (-169)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-1494 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-2788 (*1 *1 *1) (-12 (-5 *1 (-1131 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))) (-1383 (*1 *2 *1) (-12 (-5 *2 (-621 (-914 *4))) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))))
-(-13 (-1067) (-10 -8 (-15 -2076 ((-112) $)) (-15 -3067 ((-112) $)) (-15 -1946 ((-112) $)) (-15 -3743 ($)) (-15 -3368 ($)) (-15 -2320 ($ $)) (-15 -2727 ($ $ (-747))) (-15 -2742 ((-621 $) $)) (-15 -1889 ((-747) $)) (-15 -1413 ($ $)) (-15 -3394 ($ $)) (-15 -3890 ($ $ $)) (-15 -3890 ($ (-621 $))) (-15 -1358 ((-621 $) $)) (-15 -2786 ($ $ (-621 (-747)) (-914 |#2|))) (-15 -1768 ($ $ (-914 |#2|))) (-15 -3109 ($ $ $ (-914 |#2|) (-747))) (-15 -2490 ($ $ (-621 (-747)) (-914 |#2|))) (-15 -2786 ($ $ (-621 (-747)) (-747))) (-15 -2490 ($ $ (-621 (-747)) (-747))) (-15 -2786 ((-747) $ (-914 |#2|))) (-15 -2490 ($ $ (-747) (-914 |#2|))) (-15 -2085 ($ $ (-621 (-747)) (-112))) (-15 -4129 ($ $ (-621 (-747)) (-169))) (-15 -1686 ($ $ (-621 (-747)))) (-15 -4140 ((-914 |#2|) $)) (-15 -3730 ((-747) $)) (-15 -2069 ((-112) $)) (-15 -3250 ((-169) $)) (-15 -1494 ((-747) $)) (-15 -2788 ($ $)) (-15 -1383 ((-621 (-914 |#2|)) $))))
-((-3834 (((-112) $ $) NIL)) (-2203 ((|#2| $) 11)) (-2190 ((|#1| $) 10)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3854 (($ |#1| |#2|) 9)) (-3846 (((-834) $) 16)) (-2389 (((-112) $ $) NIL)))
-(((-1132 |#1| |#2|) (-13 (-1067) (-10 -8 (-15 -3854 ($ |#1| |#2|)) (-15 -2190 (|#1| $)) (-15 -2203 (|#2| $)))) (-1067) (-1067)) (T -1132))
-((-3854 (*1 *1 *2 *3) (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067)))) (-2190 (*1 *2 *1) (-12 (-4 *2 (-1067)) (-5 *1 (-1132 *2 *3)) (-4 *3 (-1067)))) (-2203 (*1 *2 *1) (-12 (-4 *2 (-1067)) (-5 *1 (-1132 *3 *2)) (-4 *3 (-1067)))))
-(-13 (-1067) (-10 -8 (-15 -3854 ($ |#1| |#2|)) (-15 -2190 (|#1| $)) (-15 -2203 (|#2| $))))
-((-3834 (((-112) $ $) NIL)) (-2824 (((-1148) $) 9)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-1133) (-13 (-1050) (-10 -8 (-15 -2824 ((-1148) $))))) (T -1133))
-((-2824 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1133)))))
-(-13 (-1050) (-10 -8 (-15 -2824 ((-1148) $))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3329 (((-1141 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-300)) (|has| |#1| (-356))))) (-2272 (((-621 (-1048)) $) NIL)) (-3011 (((-1143) $) 11)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1141 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-2258 (($ $) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1141 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-2799 (((-112) $) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1141 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-3896 (($ $ (-549)) NIL) (($ $ (-549) (-549)) 66)) (-2212 (((-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $) NIL)) (-3836 (((-1141 |#1| |#2| |#3|) $) 36)) (-3055 (((-3 (-1141 |#1| |#2| |#3|) "failed") $) 29)) (-2336 (((-1141 |#1| |#2| |#3|) $) 30)) (-1664 (($ $) 107 (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) 83 (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-3979 (($ $) NIL (|has| |#1| (-356)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2134 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1640 (($ $) 103 (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) 79 (|has| |#1| (-38 (-400 (-549)))))) (-1872 (((-549) $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))))) (-2826 (($ (-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|)))) NIL)) (-1685 (($ $) 111 (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) 87 (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-1141 |#1| |#2| |#3|) "failed") $) 31) (((-3 (-1143) "failed") $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-1009 (-1143))) (|has| |#1| (-356)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356)))) (((-3 (-549) "failed") $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356))))) (-2659 (((-1141 |#1| |#2| |#3|) $) 131) (((-1143) $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-1009 (-1143))) (|has| |#1| (-356)))) (((-400 (-549)) $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356)))) (((-549) $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356))))) (-2294 (($ $) 34) (($ (-549) $) 35)) (-2095 (($ $ $) NIL (|has| |#1| (-356)))) (-2070 (($ $) NIL)) (-3879 (((-665 (-1141 |#1| |#2| |#3|)) (-665 $)) NIL (|has| |#1| (-356))) (((-2 (|:| -3521 (-665 (-1141 |#1| |#2| |#3|))) (|:| |vec| (-1226 (-1141 |#1| |#2| |#3|)))) (-665 $) (-1226 $)) NIL (|has| |#1| (-356))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-617 (-549))) (|has| |#1| (-356)))) (((-665 (-549)) (-665 $)) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-617 (-549))) (|has| |#1| (-356))))) (-2114 (((-3 $ "failed") $) 48)) (-3906 (((-400 (-923 |#1|)) $ (-549)) 65 (|has| |#1| (-541))) (((-400 (-923 |#1|)) $ (-549) (-549)) 67 (|has| |#1| (-541)))) (-3239 (($) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-534)) (|has| |#1| (-356))))) (-2067 (($ $ $) NIL (|has| |#1| (-356)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1420 (((-112) $) NIL (|has| |#1| (-356)))) (-2772 (((-112) $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))))) (-2871 (((-112) $) 25)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-857 (-549))) (|has| |#1| (-356)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-857 (-372))) (|has| |#1| (-356))))) (-2088 (((-549) $) NIL) (((-549) $ (-549)) 24)) (-2675 (((-112) $) NIL)) (-1726 (($ $) NIL (|has| |#1| (-356)))) (-1394 (((-1141 |#1| |#2| |#3|) $) 38 (|has| |#1| (-356)))) (-4187 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1681 (((-3 $ "failed") $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-1118)) (|has| |#1| (-356))))) (-2374 (((-112) $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))))) (-2992 (($ $ (-892)) NIL)) (-2876 (($ (-1 |#1| (-549)) $) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-549)) 18) (($ $ (-1048) (-549)) NIL) (($ $ (-621 (-1048)) (-621 (-549))) NIL)) (-2863 (($ $ $) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1141 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-3575 (($ $ $) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1141 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1141 |#1| |#2| |#3|) (-1141 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-356)))) (-3632 (($ $) 72 (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2352 (($ (-549) (-1141 |#1| |#2| |#3|)) 33)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL (|has| |#1| (-356)))) (-3893 (($ $) 70 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1143)) NIL (-1536 (-12 (|has| |#1| (-15 -3893 (|#1| |#1| (-1143)))) (|has| |#1| (-15 -2272 ((-621 (-1143)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1165))))) (($ $ (-1222 |#2|)) 71 (|has| |#1| (-38 (-400 (-549)))))) (-3060 (($) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-1118)) (|has| |#1| (-356))) CONST)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-356)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2873 (($ $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-300)) (|has| |#1| (-356))))) (-3967 (((-1141 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-534)) (|has| |#1| (-356))))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-2121 (((-411 $) $) NIL (|has| |#1| (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-2763 (($ $ (-549)) 145)) (-2042 (((-3 $ "failed") $ $) 49 (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1141 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2719 (($ $) 73 (|has| |#1| (-38 (-400 (-549)))))) (-2686 (((-1123 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-549))))) (($ $ (-1143) (-1141 |#1| |#2| |#3|)) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-505 (-1143) (-1141 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-621 (-1143)) (-621 (-1141 |#1| |#2| |#3|))) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-505 (-1143) (-1141 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-621 (-287 (-1141 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-302 (-1141 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-287 (-1141 |#1| |#2| |#3|))) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-302 (-1141 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-1141 |#1| |#2| |#3|) (-1141 |#1| |#2| |#3|)) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-302 (-1141 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-621 (-1141 |#1| |#2| |#3|)) (-621 (-1141 |#1| |#2| |#3|))) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-302 (-1141 |#1| |#2| |#3|))) (|has| |#1| (-356))))) (-3684 (((-747) $) NIL (|has| |#1| (-356)))) (-3341 ((|#1| $ (-549)) NIL) (($ $ $) 54 (|has| (-549) (-1079))) (($ $ (-1141 |#1| |#2| |#3|)) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-279 (-1141 |#1| |#2| |#3|) (-1141 |#1| |#2| |#3|))) (|has| |#1| (-356))))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-356)))) (-3456 (($ $ (-1 (-1141 |#1| |#2| |#3|) (-1141 |#1| |#2| |#3|))) NIL (|has| |#1| (-356))) (($ $ (-1 (-1141 |#1| |#2| |#3|) (-1141 |#1| |#2| |#3|)) (-747)) NIL (|has| |#1| (-356))) (($ $ (-1222 |#2|)) 51) (($ $ (-747)) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $) 50 (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-1143) (-747)) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-621 (-1143))) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-1143)) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143))))))) (-3939 (($ $) NIL (|has| |#1| (-356)))) (-1403 (((-1141 |#1| |#2| |#3|) $) 41 (|has| |#1| (-356)))) (-3701 (((-549) $) 37)) (-1698 (($ $) 113 (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) 89 (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) 109 (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) 85 (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) 105 (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) 81 (|has| |#1| (-38 (-400 (-549)))))) (-2845 (((-525) $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-594 (-525))) (|has| |#1| (-356)))) (((-372) $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-993)) (|has| |#1| (-356)))) (((-219) $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-993)) (|has| |#1| (-356)))) (((-863 (-372)) $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-594 (-863 (-372)))) (|has| |#1| (-356)))) (((-863 (-549)) $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-594 (-863 (-549)))) (|has| |#1| (-356))))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-1141 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-1977 (($ $) NIL)) (-3846 (((-834) $) 149) (($ (-549)) NIL) (($ |#1|) NIL (|has| |#1| (-170))) (($ (-1141 |#1| |#2| |#3|)) 27) (($ (-1222 |#2|)) 23) (($ (-1143)) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-1009 (-1143))) (|has| |#1| (-356)))) (($ $) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1141 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541)))) (($ (-400 (-549))) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356))) (|has| |#1| (-38 (-400 (-549))))))) (-2152 ((|#1| $ (-549)) 68)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-1141 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (-12 (|has| (-1141 |#1| |#2| |#3|) (-143)) (|has| |#1| (-356))) (|has| |#1| (-143))))) (-2082 (((-747)) NIL)) (-2597 ((|#1| $) 12)) (-2546 (((-1141 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-534)) (|has| |#1| (-356))))) (-1733 (($ $) 119 (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) 95 (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1141 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-1710 (($ $) 115 (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) 91 (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) 123 (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) 99 (|has| |#1| (-38 (-400 (-549)))))) (-2661 ((|#1| $ (-549)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-549)))) (|has| |#1| (-15 -3846 (|#1| (-1143))))))) (-1934 (($ $) 125 (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) 101 (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) 121 (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) 97 (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) 117 (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) 93 (|has| |#1| (-38 (-400 (-549)))))) (-3212 (($ $) NIL (-12 (|has| (-1141 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))))) (-3276 (($) 20 T CONST)) (-3287 (($) 16 T CONST)) (-1702 (($ $ (-1 (-1141 |#1| |#2| |#3|) (-1141 |#1| |#2| |#3|))) NIL (|has| |#1| (-356))) (($ $ (-1 (-1141 |#1| |#2| |#3|) (-1141 |#1| |#2| |#3|)) (-747)) NIL (|has| |#1| (-356))) (($ $ (-747)) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-1143) (-747)) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-621 (-1143))) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-1143)) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143))))))) (-2448 (((-112) $ $) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1141 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2425 (((-112) $ $) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1141 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1141 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2412 (((-112) $ $) NIL (-1536 (-12 (|has| (-1141 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1141 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) 44 (|has| |#1| (-356))) (($ (-1141 |#1| |#2| |#3|) (-1141 |#1| |#2| |#3|)) 45 (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) 21)) (** (($ $ (-892)) NIL) (($ $ (-747)) 53) (($ $ (-549)) NIL (|has| |#1| (-356))) (($ $ $) 74 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 128 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 32) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1141 |#1| |#2| |#3|)) 43 (|has| |#1| (-356))) (($ (-1141 |#1| |#2| |#3|) $) 42 (|has| |#1| (-356))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
-(((-1134 |#1| |#2| |#3|) (-13 (-1188 |#1| (-1141 |#1| |#2| |#3|)) (-10 -8 (-15 -3846 ($ (-1222 |#2|))) (-15 -3456 ($ $ (-1222 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3893 ($ $ (-1222 |#2|))) |%noBranch|))) (-1018) (-1143) |#1|) (T -1134))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1134 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3456 (*1 *1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1134 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3893 (*1 *1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1134 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3))))
-(-13 (-1188 |#1| (-1141 |#1| |#2| |#3|)) (-10 -8 (-15 -3846 ($ (-1222 |#2|))) (-15 -3456 ($ $ (-1222 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3893 ($ $ (-1222 |#2|))) |%noBranch|)))
-((-2821 ((|#2| |#2| (-1059 |#2|)) 26) ((|#2| |#2| (-1143)) 28)))
-(((-1135 |#1| |#2|) (-10 -7 (-15 -2821 (|#2| |#2| (-1143))) (-15 -2821 (|#2| |#2| (-1059 |#2|)))) (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-423 |#1|) (-158) (-27) (-1165))) (T -1135))
-((-2821 (*1 *2 *2 *3) (-12 (-5 *3 (-1059 *2)) (-4 *2 (-13 (-423 *4) (-158) (-27) (-1165))) (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1135 *4 *2)))) (-2821 (*1 *2 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1135 *4 *2)) (-4 *2 (-13 (-423 *4) (-158) (-27) (-1165))))))
-(-10 -7 (-15 -2821 (|#2| |#2| (-1143))) (-15 -2821 (|#2| |#2| (-1059 |#2|))))
-((-2821 (((-3 (-400 (-923 |#1|)) (-309 |#1|)) (-400 (-923 |#1|)) (-1059 (-400 (-923 |#1|)))) 31) (((-400 (-923 |#1|)) (-923 |#1|) (-1059 (-923 |#1|))) 44) (((-3 (-400 (-923 |#1|)) (-309 |#1|)) (-400 (-923 |#1|)) (-1143)) 33) (((-400 (-923 |#1|)) (-923 |#1|) (-1143)) 36)))
-(((-1136 |#1|) (-10 -7 (-15 -2821 ((-400 (-923 |#1|)) (-923 |#1|) (-1143))) (-15 -2821 ((-3 (-400 (-923 |#1|)) (-309 |#1|)) (-400 (-923 |#1|)) (-1143))) (-15 -2821 ((-400 (-923 |#1|)) (-923 |#1|) (-1059 (-923 |#1|)))) (-15 -2821 ((-3 (-400 (-923 |#1|)) (-309 |#1|)) (-400 (-923 |#1|)) (-1059 (-400 (-923 |#1|)))))) (-13 (-541) (-823) (-1009 (-549)))) (T -1136))
-((-2821 (*1 *2 *3 *4) (-12 (-5 *4 (-1059 (-400 (-923 *5)))) (-5 *3 (-400 (-923 *5))) (-4 *5 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-3 *3 (-309 *5))) (-5 *1 (-1136 *5)))) (-2821 (*1 *2 *3 *4) (-12 (-5 *4 (-1059 (-923 *5))) (-5 *3 (-923 *5)) (-4 *5 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-400 *3)) (-5 *1 (-1136 *5)))) (-2821 (*1 *2 *3 *4) (-12 (-5 *4 (-1143)) (-4 *5 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-3 (-400 (-923 *5)) (-309 *5))) (-5 *1 (-1136 *5)) (-5 *3 (-400 (-923 *5))))) (-2821 (*1 *2 *3 *4) (-12 (-5 *4 (-1143)) (-4 *5 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-400 (-923 *5))) (-5 *1 (-1136 *5)) (-5 *3 (-923 *5)))))
-(-10 -7 (-15 -2821 ((-400 (-923 |#1|)) (-923 |#1|) (-1143))) (-15 -2821 ((-3 (-400 (-923 |#1|)) (-309 |#1|)) (-400 (-923 |#1|)) (-1143))) (-15 -2821 ((-400 (-923 |#1|)) (-923 |#1|) (-1059 (-923 |#1|)))) (-15 -2821 ((-3 (-400 (-923 |#1|)) (-309 |#1|)) (-400 (-923 |#1|)) (-1059 (-400 (-923 |#1|))))))
-((-2797 (((-1139 |#2|) (-1 |#2| |#1|) (-1139 |#1|)) 13)))
-(((-1137 |#1| |#2|) (-10 -7 (-15 -2797 ((-1139 |#2|) (-1 |#2| |#1|) (-1139 |#1|)))) (-1018) (-1018)) (T -1137))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1139 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *2 (-1139 *6)) (-5 *1 (-1137 *5 *6)))))
-(-10 -7 (-15 -2797 ((-1139 |#2|) (-1 |#2| |#1|) (-1139 |#1|))))
-((-2402 (((-411 (-1139 (-400 |#4|))) (-1139 (-400 |#4|))) 51)) (-2121 (((-411 (-1139 (-400 |#4|))) (-1139 (-400 |#4|))) 52)))
-(((-1138 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2121 ((-411 (-1139 (-400 |#4|))) (-1139 (-400 |#4|)))) (-15 -2402 ((-411 (-1139 (-400 |#4|))) (-1139 (-400 |#4|))))) (-769) (-823) (-444) (-920 |#3| |#1| |#2|)) (T -1138))
-((-2402 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-444)) (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-411 (-1139 (-400 *7)))) (-5 *1 (-1138 *4 *5 *6 *7)) (-5 *3 (-1139 (-400 *7))))) (-2121 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-444)) (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-411 (-1139 (-400 *7)))) (-5 *1 (-1138 *4 *5 *6 *7)) (-5 *3 (-1139 (-400 *7))))))
-(-10 -7 (-15 -2121 ((-411 (-1139 (-400 |#4|))) (-1139 (-400 |#4|)))) (-15 -2402 ((-411 (-1139 (-400 |#4|))) (-1139 (-400 |#4|)))))
-((-3834 (((-112) $ $) 137)) (-1763 (((-112) $) 27)) (-2432 (((-1226 |#1|) $ (-747)) NIL)) (-2272 (((-621 (-1048)) $) NIL)) (-3371 (($ (-1139 |#1|)) NIL)) (-2084 (((-1139 $) $ (-1048)) 58) (((-1139 |#1|) $) 47)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) 132 (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-3186 (((-747) $) NIL) (((-747) $ (-621 (-1048))) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1910 (($ $ $) 126 (|has| |#1| (-541)))) (-3231 (((-411 (-1139 $)) (-1139 $)) 71 (|has| |#1| (-880)))) (-3979 (($ $) NIL (|has| |#1| (-444)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) 91 (|has| |#1| (-880)))) (-3866 (((-112) $ $) NIL (|has| |#1| (-356)))) (-3154 (($ $ (-747)) 39)) (-2434 (($ $ (-747)) 40)) (-1358 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-444)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#1| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-1048) "failed") $) NIL)) (-2659 ((|#1| $) NIL) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-1048) $) NIL)) (-1353 (($ $ $ (-1048)) NIL (|has| |#1| (-170))) ((|#1| $ $) 128 (|has| |#1| (-170)))) (-2095 (($ $ $) NIL (|has| |#1| (-356)))) (-2070 (($ $) 56)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-2067 (($ $ $) NIL (|has| |#1| (-356)))) (-4289 (($ $ $) 104)) (-2290 (($ $ $) NIL (|has| |#1| (-541)))) (-3921 (((-2 (|:| -1570 |#1|) (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-541)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1285 (($ $) 133 (|has| |#1| (-444))) (($ $ (-1048)) NIL (|has| |#1| (-444)))) (-2058 (((-621 $) $) NIL)) (-1420 (((-112) $) NIL (|has| |#1| (-880)))) (-2691 (($ $ |#1| (-747) $) 45)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-1048) (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-1048) (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2573 (((-834) $ (-834)) 117)) (-2088 (((-747) $ $) NIL (|has| |#1| (-541)))) (-2675 (((-112) $) 30)) (-3347 (((-747) $) NIL)) (-1681 (((-3 $ "failed") $) NIL (|has| |#1| (-1118)))) (-2261 (($ (-1139 |#1|) (-1048)) 49) (($ (-1139 $) (-1048)) 65)) (-2992 (($ $ (-747)) 32)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-747)) 63) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ (-1048)) NIL) (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 121)) (-3611 (((-747) $) NIL) (((-747) $ (-1048)) NIL) (((-621 (-747)) $ (-621 (-1048))) NIL)) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-3705 (($ (-1 (-747) (-747)) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-3598 (((-1139 |#1|) $) NIL)) (-1520 (((-3 (-1048) "failed") $) NIL)) (-2028 (($ $) NIL)) (-2043 ((|#1| $) 52)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-3851 (((-1125) $) NIL)) (-3098 (((-2 (|:| -4013 $) (|:| -3675 $)) $ (-747)) 38)) (-4266 (((-3 (-621 $) "failed") $) NIL)) (-2533 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-2 (|:| |var| (-1048)) (|:| -3731 (-747))) "failed") $) NIL)) (-3893 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3060 (($) NIL (|has| |#1| (-1118)) CONST)) (-3990 (((-1087) $) NIL)) (-2004 (((-112) $) 31)) (-2016 ((|#1| $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 79 (|has| |#1| (-444)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) 135 (|has| |#1| (-444)))) (-1835 (($ $ (-747) |#1| $) 99)) (-2905 (((-411 (-1139 $)) (-1139 $)) 77 (|has| |#1| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) 76 (|has| |#1| (-880)))) (-2121 (((-411 $) $) 84 (|has| |#1| (-880)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-2042 (((-3 $ "failed") $ |#1|) 131 (|has| |#1| (-541))) (((-3 $ "failed") $ $) 100 (|has| |#1| (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2686 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-1048) |#1|) NIL) (($ $ (-621 (-1048)) (-621 |#1|)) NIL) (($ $ (-1048) $) NIL) (($ $ (-621 (-1048)) (-621 $)) NIL)) (-3684 (((-747) $) NIL (|has| |#1| (-356)))) (-3341 ((|#1| $ |#1|) 119) (($ $ $) 120) (((-400 $) (-400 $) (-400 $)) NIL (|has| |#1| (-541))) ((|#1| (-400 $) |#1|) NIL (|has| |#1| (-356))) (((-400 $) $ (-400 $)) NIL (|has| |#1| (-541)))) (-3668 (((-3 $ "failed") $ (-747)) 35)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 138 (|has| |#1| (-356)))) (-3602 (($ $ (-1048)) NIL (|has| |#1| (-170))) ((|#1| $) 124 (|has| |#1| (-170)))) (-3456 (($ $ (-1048)) NIL) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) NIL) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3701 (((-747) $) 54) (((-747) $ (-1048)) NIL) (((-621 (-747)) $ (-621 (-1048))) NIL)) (-2845 (((-863 (-372)) $) NIL (-12 (|has| (-1048) (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-1048) (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-1048) (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-2216 ((|#1| $) 130 (|has| |#1| (-444))) (($ $ (-1048)) NIL (|has| |#1| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-3033 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541))) (((-3 (-400 $) "failed") (-400 $) $) NIL (|has| |#1| (-541)))) (-3846 (((-834) $) 118) (($ (-549)) NIL) (($ |#1|) 53) (($ (-1048)) NIL) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#1| (-541)))) (-4141 (((-621 |#1|) $) NIL)) (-2152 ((|#1| $ (-747)) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2082 (((-747)) NIL)) (-1509 (($ $ $ (-747)) 25 (|has| |#1| (-170)))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3276 (($) 15 T CONST)) (-3287 (($) 16 T CONST)) (-1702 (($ $ (-1048)) NIL) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) NIL) (($ $ (-1143)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) 96)) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2513 (($ $ |#1|) 139 (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) 66)) (** (($ $ (-892)) 14) (($ $ (-747)) 12)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 24) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 102) (($ $ |#1|) NIL)))
-(((-1139 |#1|) (-13 (-1202 |#1|) (-10 -8 (-15 -2573 ((-834) $ (-834))) (-15 -1835 ($ $ (-747) |#1| $)))) (-1018)) (T -1139))
-((-2573 (*1 *2 *1 *2) (-12 (-5 *2 (-834)) (-5 *1 (-1139 *3)) (-4 *3 (-1018)))) (-1835 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-747)) (-5 *1 (-1139 *3)) (-4 *3 (-1018)))))
-(-13 (-1202 |#1|) (-10 -8 (-15 -2573 ((-834) $ (-834))) (-15 -1835 ($ $ (-747) |#1| $))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2272 (((-621 (-1048)) $) NIL)) (-3011 (((-1143) $) 11)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-3896 (($ $ (-400 (-549))) NIL) (($ $ (-400 (-549)) (-400 (-549))) NIL)) (-2212 (((-1123 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|))) $) NIL)) (-1664 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL (|has| |#1| (-356)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2134 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1640 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2826 (($ (-747) (-1123 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|)))) NIL)) (-1685 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-1134 |#1| |#2| |#3|) "failed") $) 33) (((-3 (-1141 |#1| |#2| |#3|) "failed") $) 36)) (-2659 (((-1134 |#1| |#2| |#3|) $) NIL) (((-1141 |#1| |#2| |#3|) $) NIL)) (-2095 (($ $ $) NIL (|has| |#1| (-356)))) (-2070 (($ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3159 (((-400 (-549)) $) 55)) (-2067 (($ $ $) NIL (|has| |#1| (-356)))) (-2366 (($ (-400 (-549)) (-1134 |#1| |#2| |#3|)) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1420 (((-112) $) NIL (|has| |#1| (-356)))) (-2871 (((-112) $) NIL)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2088 (((-400 (-549)) $) NIL) (((-400 (-549)) $ (-400 (-549))) NIL)) (-2675 (((-112) $) NIL)) (-4187 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2992 (($ $ (-892)) NIL) (($ $ (-400 (-549))) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-400 (-549))) 20) (($ $ (-1048) (-400 (-549))) NIL) (($ $ (-621 (-1048)) (-621 (-400 (-549)))) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-3632 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-4234 (((-1134 |#1| |#2| |#3|) $) 41)) (-1537 (((-3 (-1134 |#1| |#2| |#3|) "failed") $) NIL)) (-2352 (((-1134 |#1| |#2| |#3|) $) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL (|has| |#1| (-356)))) (-3893 (($ $) 39 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1143)) NIL (-1536 (-12 (|has| |#1| (-15 -3893 (|#1| |#1| (-1143)))) (|has| |#1| (-15 -2272 ((-621 (-1143)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1165))))) (($ $ (-1222 |#2|)) 40 (|has| |#1| (-38 (-400 (-549)))))) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-356)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2121 (((-411 $) $) NIL (|has| |#1| (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-2763 (($ $ (-400 (-549))) NIL)) (-2042 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2719 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2686 (((-1123 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))))) (-3684 (((-747) $) NIL (|has| |#1| (-356)))) (-3341 ((|#1| $ (-400 (-549))) NIL) (($ $ $) NIL (|has| (-400 (-549)) (-1079)))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-356)))) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $ (-1222 |#2|)) 38)) (-3701 (((-400 (-549)) $) NIL)) (-1698 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1977 (($ $) NIL)) (-3846 (((-834) $) 58) (($ (-549)) NIL) (($ |#1|) NIL (|has| |#1| (-170))) (($ (-1134 |#1| |#2| |#3|)) 30) (($ (-1141 |#1| |#2| |#3|)) 31) (($ (-1222 |#2|)) 26) (($ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541)))) (-2152 ((|#1| $ (-400 (-549))) NIL)) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) NIL)) (-2597 ((|#1| $) 12)) (-1733 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1710 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2661 ((|#1| $ (-400 (-549))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))) (|has| |#1| (-15 -3846 (|#1| (-1143))))))) (-1934 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3276 (($) 22 T CONST)) (-3287 (($) 16 T CONST)) (-1702 (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) 24)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
-(((-1140 |#1| |#2| |#3|) (-13 (-1209 |#1| (-1134 |#1| |#2| |#3|)) (-1009 (-1141 |#1| |#2| |#3|)) (-10 -8 (-15 -3846 ($ (-1222 |#2|))) (-15 -3456 ($ $ (-1222 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3893 ($ $ (-1222 |#2|))) |%noBranch|))) (-1018) (-1143) |#1|) (T -1140))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1140 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3456 (*1 *1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1140 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3893 (*1 *1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1140 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3))))
-(-13 (-1209 |#1| (-1134 |#1| |#2| |#3|)) (-1009 (-1141 |#1| |#2| |#3|)) (-10 -8 (-15 -3846 ($ (-1222 |#2|))) (-15 -3456 ($ $ (-1222 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3893 ($ $ (-1222 |#2|))) |%noBranch|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 125)) (-2272 (((-621 (-1048)) $) NIL)) (-3011 (((-1143) $) 116)) (-3561 (((-1199 |#2| |#1|) $ (-747)) 63)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-3896 (($ $ (-747)) 79) (($ $ (-747) (-747)) 76)) (-2212 (((-1123 (-2 (|:| |k| (-747)) (|:| |c| |#1|))) $) 102)) (-1664 (($ $) 169 (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) 145 (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) NIL)) (-2134 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1640 (($ $) 165 (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) 141 (|has| |#1| (-38 (-400 (-549)))))) (-2826 (($ (-1123 (-2 (|:| |k| (-747)) (|:| |c| |#1|)))) 115) (($ (-1123 |#1|)) 110)) (-1685 (($ $) 173 (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) 149 (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) NIL T CONST)) (-2070 (($ $) NIL)) (-2114 (((-3 $ "failed") $) 23)) (-3754 (($ $) 26)) (-1414 (((-923 |#1|) $ (-747)) 75) (((-923 |#1|) $ (-747) (-747)) 77)) (-2871 (((-112) $) 120)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2088 (((-747) $) 122) (((-747) $ (-747)) 124)) (-2675 (((-112) $) NIL)) (-4187 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2992 (($ $ (-892)) NIL)) (-2876 (($ (-1 |#1| (-549)) $) NIL)) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-747)) 13) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-3632 (($ $) 131 (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-3851 (((-1125) $) NIL)) (-3893 (($ $) 129 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1143)) NIL (-1536 (-12 (|has| |#1| (-15 -3893 (|#1| |#1| (-1143)))) (|has| |#1| (-15 -2272 ((-621 (-1143)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1165))))) (($ $ (-1222 |#2|)) 130 (|has| |#1| (-38 (-400 (-549)))))) (-3990 (((-1087) $) NIL)) (-2763 (($ $ (-747)) 15)) (-2042 (((-3 $ "failed") $ $) 24 (|has| |#1| (-541)))) (-2719 (($ $) 133 (|has| |#1| (-38 (-400 (-549)))))) (-2686 (((-1123 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-747)))))) (-3341 ((|#1| $ (-747)) 119) (($ $ $) 128 (|has| (-747) (-1079)))) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143)) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-747) |#1|)))) (($ $) 27 (|has| |#1| (-15 * (|#1| (-747) |#1|)))) (($ $ (-1222 |#2|)) 29)) (-3701 (((-747) $) NIL)) (-1698 (($ $) 175 (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) 151 (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) 171 (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) 147 (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) 167 (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) 143 (|has| |#1| (-38 (-400 (-549)))))) (-1977 (($ $) NIL)) (-3846 (((-834) $) 201) (($ (-549)) NIL) (($ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541))) (($ |#1|) 126 (|has| |#1| (-170))) (($ (-1199 |#2| |#1|)) 51) (($ (-1222 |#2|)) 32)) (-4141 (((-1123 |#1|) $) 98)) (-2152 ((|#1| $ (-747)) 118)) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) NIL)) (-2597 ((|#1| $) 54)) (-1733 (($ $) 181 (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) 157 (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1710 (($ $) 177 (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) 153 (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) 185 (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) 161 (|has| |#1| (-38 (-400 (-549)))))) (-2661 ((|#1| $ (-747)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-747)))) (|has| |#1| (-15 -3846 (|#1| (-1143))))))) (-1934 (($ $) 187 (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) 163 (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) 183 (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) 159 (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) 179 (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) 155 (|has| |#1| (-38 (-400 (-549)))))) (-3276 (($) 17 T CONST)) (-3287 (($) 19 T CONST)) (-1702 (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143)) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-747) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) 194)) (-2486 (($ $ $) 31)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ |#1|) 198 (|has| |#1| (-356))) (($ $ $) 134 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 137 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 132) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
-(((-1141 |#1| |#2| |#3|) (-13 (-1217 |#1|) (-10 -8 (-15 -3846 ($ (-1199 |#2| |#1|))) (-15 -3561 ((-1199 |#2| |#1|) $ (-747))) (-15 -3846 ($ (-1222 |#2|))) (-15 -3456 ($ $ (-1222 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3893 ($ $ (-1222 |#2|))) |%noBranch|))) (-1018) (-1143) |#1|) (T -1141))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1199 *4 *3)) (-4 *3 (-1018)) (-14 *4 (-1143)) (-14 *5 *3) (-5 *1 (-1141 *3 *4 *5)))) (-3561 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1199 *5 *4)) (-5 *1 (-1141 *4 *5 *6)) (-4 *4 (-1018)) (-14 *5 (-1143)) (-14 *6 *4))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1141 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3456 (*1 *1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1141 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3893 (*1 *1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1141 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3))))
-(-13 (-1217 |#1|) (-10 -8 (-15 -3846 ($ (-1199 |#2| |#1|))) (-15 -3561 ((-1199 |#2| |#1|) $ (-747))) (-15 -3846 ($ (-1222 |#2|))) (-15 -3456 ($ $ (-1222 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3893 ($ $ (-1222 |#2|))) |%noBranch|)))
-((-3846 (((-834) $) 27) (($ (-1143)) 29)) (-1536 (($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $))) 40)) (-1524 (($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $))) 33) (($ $) 34)) (-3398 (($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $))) 35)) (-3388 (($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $))) 37)) (-3375 (($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $))) 36)) (-3364 (($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $))) 38)) (-3908 (($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $))) 41)) (-12 (($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $))) 39)))
-(((-1142) (-13 (-593 (-834)) (-10 -8 (-15 -3846 ($ (-1143))) (-15 -3398 ($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -3375 ($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -3388 ($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -3364 ($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -1536 ($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -3908 ($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -1524 ($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -1524 ($ $))))) (T -1142))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1142)))) (-3398 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1142)))) (-5 *1 (-1142)))) (-3375 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1142)))) (-5 *1 (-1142)))) (-3388 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1142)))) (-5 *1 (-1142)))) (-3364 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1142)))) (-5 *1 (-1142)))) (-1536 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1142)))) (-5 *1 (-1142)))) (-3908 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1142)))) (-5 *1 (-1142)))) (-12 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1142)))) (-5 *1 (-1142)))) (-1524 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1142)))) (-5 *1 (-1142)))) (-1524 (*1 *1 *1) (-5 *1 (-1142))))
-(-13 (-593 (-834)) (-10 -8 (-15 -3846 ($ (-1143))) (-15 -3398 ($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -3375 ($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -3388 ($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -3364 ($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -1536 ($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -3908 ($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -1524 ($ (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -1524 ($ $))))
-((-3834 (((-112) $ $) NIL)) (-3855 (($ $ (-621 (-834))) 59)) (-2774 (($ $ (-621 (-834))) 57)) (-1525 (((-1125) $) 84)) (-4220 (((-2 (|:| -2895 (-621 (-834))) (|:| -2861 (-621 (-834))) (|:| |presup| (-621 (-834))) (|:| -3395 (-621 (-834))) (|:| |args| (-621 (-834)))) $) 87)) (-1680 (((-112) $) 22)) (-1447 (($ $ (-621 (-621 (-834)))) 56) (($ $ (-2 (|:| -2895 (-621 (-834))) (|:| -2861 (-621 (-834))) (|:| |presup| (-621 (-834))) (|:| -3395 (-621 (-834))) (|:| |args| (-621 (-834))))) 82)) (-1682 (($) 124 T CONST)) (-2570 (((-1231)) 106)) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 66) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 73)) (-3743 (($) 95) (($ $) 101)) (-2481 (($ $) 83)) (-2863 (($ $ $) NIL)) (-3575 (($ $ $) NIL)) (-3525 (((-621 $) $) 107)) (-3851 (((-1125) $) 90)) (-3990 (((-1087) $) NIL)) (-3341 (($ $ (-621 (-834))) 58)) (-2845 (((-525) $) 46) (((-1143) $) 47) (((-863 (-549)) $) 77) (((-863 (-372)) $) 75)) (-3846 (((-834) $) 53) (($ (-1125)) 48)) (-1882 (($ $ (-621 (-834))) 60)) (-4245 (((-1125) $) 33) (((-1125) $ (-112)) 34) (((-1231) (-798) $) 35) (((-1231) (-798) $ (-112)) 36)) (-2448 (((-112) $ $) NIL)) (-2425 (((-112) $ $) NIL)) (-2389 (((-112) $ $) 49)) (-2438 (((-112) $ $) NIL)) (-2412 (((-112) $ $) 50)))
-(((-1143) (-13 (-823) (-594 (-525)) (-804) (-594 (-1143)) (-594 (-863 (-549))) (-594 (-863 (-372))) (-857 (-549)) (-857 (-372)) (-10 -8 (-15 -3743 ($)) (-15 -3743 ($ $)) (-15 -2570 ((-1231))) (-15 -3846 ($ (-1125))) (-15 -2481 ($ $)) (-15 -1680 ((-112) $)) (-15 -4220 ((-2 (|:| -2895 (-621 (-834))) (|:| -2861 (-621 (-834))) (|:| |presup| (-621 (-834))) (|:| -3395 (-621 (-834))) (|:| |args| (-621 (-834)))) $)) (-15 -1447 ($ $ (-621 (-621 (-834))))) (-15 -1447 ($ $ (-2 (|:| -2895 (-621 (-834))) (|:| -2861 (-621 (-834))) (|:| |presup| (-621 (-834))) (|:| -3395 (-621 (-834))) (|:| |args| (-621 (-834)))))) (-15 -2774 ($ $ (-621 (-834)))) (-15 -3855 ($ $ (-621 (-834)))) (-15 -1882 ($ $ (-621 (-834)))) (-15 -3341 ($ $ (-621 (-834)))) (-15 -1525 ((-1125) $)) (-15 -3525 ((-621 $) $)) (-15 -1682 ($) -2589)))) (T -1143))
-((-3743 (*1 *1) (-5 *1 (-1143))) (-3743 (*1 *1 *1) (-5 *1 (-1143))) (-2570 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-1143)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1143)))) (-2481 (*1 *1 *1) (-5 *1 (-1143))) (-1680 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1143)))) (-4220 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -2895 (-621 (-834))) (|:| -2861 (-621 (-834))) (|:| |presup| (-621 (-834))) (|:| -3395 (-621 (-834))) (|:| |args| (-621 (-834))))) (-5 *1 (-1143)))) (-1447 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-621 (-834)))) (-5 *1 (-1143)))) (-1447 (*1 *1 *1 *2) (-12 (-5 *2 (-2 (|:| -2895 (-621 (-834))) (|:| -2861 (-621 (-834))) (|:| |presup| (-621 (-834))) (|:| -3395 (-621 (-834))) (|:| |args| (-621 (-834))))) (-5 *1 (-1143)))) (-2774 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-1143)))) (-3855 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-1143)))) (-1882 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-1143)))) (-3341 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-1143)))) (-1525 (*1 *2 *1) (-12 (-5 *2 (-1125)) (-5 *1 (-1143)))) (-3525 (*1 *2 *1) (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-1143)))) (-1682 (*1 *1) (-5 *1 (-1143))))
-(-13 (-823) (-594 (-525)) (-804) (-594 (-1143)) (-594 (-863 (-549))) (-594 (-863 (-372))) (-857 (-549)) (-857 (-372)) (-10 -8 (-15 -3743 ($)) (-15 -3743 ($ $)) (-15 -2570 ((-1231))) (-15 -3846 ($ (-1125))) (-15 -2481 ($ $)) (-15 -1680 ((-112) $)) (-15 -4220 ((-2 (|:| -2895 (-621 (-834))) (|:| -2861 (-621 (-834))) (|:| |presup| (-621 (-834))) (|:| -3395 (-621 (-834))) (|:| |args| (-621 (-834)))) $)) (-15 -1447 ($ $ (-621 (-621 (-834))))) (-15 -1447 ($ $ (-2 (|:| -2895 (-621 (-834))) (|:| -2861 (-621 (-834))) (|:| |presup| (-621 (-834))) (|:| -3395 (-621 (-834))) (|:| |args| (-621 (-834)))))) (-15 -2774 ($ $ (-621 (-834)))) (-15 -3855 ($ $ (-621 (-834)))) (-15 -1882 ($ $ (-621 (-834)))) (-15 -3341 ($ $ (-621 (-834)))) (-15 -1525 ((-1125) $)) (-15 -3525 ((-621 $) $)) (-15 -1682 ($) -2589)))
-((-1963 (((-1226 |#1|) |#1| (-892)) 16) (((-1226 |#1|) (-621 |#1|)) 20)))
-(((-1144 |#1|) (-10 -7 (-15 -1963 ((-1226 |#1|) (-621 |#1|))) (-15 -1963 ((-1226 |#1|) |#1| (-892)))) (-1018)) (T -1144))
-((-1963 (*1 *2 *3 *4) (-12 (-5 *4 (-892)) (-5 *2 (-1226 *3)) (-5 *1 (-1144 *3)) (-4 *3 (-1018)))) (-1963 (*1 *2 *3) (-12 (-5 *3 (-621 *4)) (-4 *4 (-1018)) (-5 *2 (-1226 *4)) (-5 *1 (-1144 *4)))))
-(-10 -7 (-15 -1963 ((-1226 |#1|) (-621 |#1|))) (-15 -1963 ((-1226 |#1|) |#1| (-892))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) NIL)) (-2659 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-2070 (($ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1285 (($ $) NIL (|has| |#1| (-444)))) (-2691 (($ $ |#1| (-942) $) NIL)) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) NIL)) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-942)) NIL)) (-3611 (((-942) $) NIL)) (-3705 (($ (-1 (-942) (-942)) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2004 (((-112) $) NIL)) (-2016 ((|#1| $) NIL)) (-1835 (($ $ (-942) |#1| $) NIL (-12 (|has| (-942) (-130)) (|has| |#1| (-541))))) (-2042 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541)))) (-3701 (((-942) $) NIL)) (-2216 ((|#1| $) NIL (|has| |#1| (-444)))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL (|has| |#1| (-541))) (($ |#1|) NIL) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549))))))) (-4141 (((-621 |#1|) $) NIL)) (-2152 ((|#1| $ (-942)) NIL)) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) NIL)) (-1509 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3276 (($) 9 T CONST)) (-3287 (($) 14 T CONST)) (-2389 (((-112) $ $) 16)) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) 19)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) 13) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
-(((-1145 |#1|) (-13 (-319 |#1| (-942)) (-10 -8 (IF (|has| |#1| (-541)) (IF (|has| (-942) (-130)) (-15 -1835 ($ $ (-942) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4335)) (-6 -4335) |%noBranch|))) (-1018)) (T -1145))
-((-1835 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-942)) (-4 *2 (-130)) (-5 *1 (-1145 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))))
-(-13 (-319 |#1| (-942)) (-10 -8 (IF (|has| |#1| (-541)) (IF (|has| (-942) (-130)) (-15 -1835 ($ $ (-942) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4335)) (-6 -4335) |%noBranch|)))
-((-1908 (((-1147) (-1143) $) 25)) (-2620 (($) 29)) (-4074 (((-3 (|:| |fst| (-427)) (|:| -2903 "void")) (-1143) $) 22)) (-4017 (((-1231) (-1143) (-3 (|:| |fst| (-427)) (|:| -2903 "void")) $) 41) (((-1231) (-1143) (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) 42) (((-1231) (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) 43)) (-3741 (((-1231) (-1143)) 58)) (-1998 (((-1231) (-1143) $) 55) (((-1231) (-1143)) 56) (((-1231)) 57)) (-2688 (((-1231) (-1143)) 37)) (-3202 (((-1143)) 36)) (-3742 (($) 34)) (-4100 (((-430) (-1143) (-430) (-1143) $) 45) (((-430) (-621 (-1143)) (-430) (-1143) $) 49) (((-430) (-1143) (-430)) 46) (((-430) (-1143) (-430) (-1143)) 50)) (-3205 (((-1143)) 35)) (-3846 (((-834) $) 28)) (-3814 (((-1231)) 30) (((-1231) (-1143)) 33)) (-1401 (((-621 (-1143)) (-1143) $) 24)) (-2396 (((-1231) (-1143) (-621 (-1143)) $) 38) (((-1231) (-1143) (-621 (-1143))) 39) (((-1231) (-621 (-1143))) 40)))
-(((-1146) (-13 (-593 (-834)) (-10 -8 (-15 -2620 ($)) (-15 -3814 ((-1231))) (-15 -3814 ((-1231) (-1143))) (-15 -4100 ((-430) (-1143) (-430) (-1143) $)) (-15 -4100 ((-430) (-621 (-1143)) (-430) (-1143) $)) (-15 -4100 ((-430) (-1143) (-430))) (-15 -4100 ((-430) (-1143) (-430) (-1143))) (-15 -2688 ((-1231) (-1143))) (-15 -3205 ((-1143))) (-15 -3202 ((-1143))) (-15 -2396 ((-1231) (-1143) (-621 (-1143)) $)) (-15 -2396 ((-1231) (-1143) (-621 (-1143)))) (-15 -2396 ((-1231) (-621 (-1143)))) (-15 -4017 ((-1231) (-1143) (-3 (|:| |fst| (-427)) (|:| -2903 "void")) $)) (-15 -4017 ((-1231) (-1143) (-3 (|:| |fst| (-427)) (|:| -2903 "void")))) (-15 -4017 ((-1231) (-3 (|:| |fst| (-427)) (|:| -2903 "void")))) (-15 -1998 ((-1231) (-1143) $)) (-15 -1998 ((-1231) (-1143))) (-15 -1998 ((-1231))) (-15 -3741 ((-1231) (-1143))) (-15 -3742 ($)) (-15 -4074 ((-3 (|:| |fst| (-427)) (|:| -2903 "void")) (-1143) $)) (-15 -1401 ((-621 (-1143)) (-1143) $)) (-15 -1908 ((-1147) (-1143) $))))) (T -1146))
-((-2620 (*1 *1) (-5 *1 (-1146))) (-3814 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-1146)))) (-3814 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-1231)) (-5 *1 (-1146)))) (-4100 (*1 *2 *3 *2 *3 *1) (-12 (-5 *2 (-430)) (-5 *3 (-1143)) (-5 *1 (-1146)))) (-4100 (*1 *2 *3 *2 *4 *1) (-12 (-5 *2 (-430)) (-5 *3 (-621 (-1143))) (-5 *4 (-1143)) (-5 *1 (-1146)))) (-4100 (*1 *2 *3 *2) (-12 (-5 *2 (-430)) (-5 *3 (-1143)) (-5 *1 (-1146)))) (-4100 (*1 *2 *3 *2 *3) (-12 (-5 *2 (-430)) (-5 *3 (-1143)) (-5 *1 (-1146)))) (-2688 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-1231)) (-5 *1 (-1146)))) (-3205 (*1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1146)))) (-3202 (*1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1146)))) (-2396 (*1 *2 *3 *4 *1) (-12 (-5 *4 (-621 (-1143))) (-5 *3 (-1143)) (-5 *2 (-1231)) (-5 *1 (-1146)))) (-2396 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-1143))) (-5 *3 (-1143)) (-5 *2 (-1231)) (-5 *1 (-1146)))) (-2396 (*1 *2 *3) (-12 (-5 *3 (-621 (-1143))) (-5 *2 (-1231)) (-5 *1 (-1146)))) (-4017 (*1 *2 *3 *4 *1) (-12 (-5 *3 (-1143)) (-5 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-5 *2 (-1231)) (-5 *1 (-1146)))) (-4017 (*1 *2 *3 *4) (-12 (-5 *3 (-1143)) (-5 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-5 *2 (-1231)) (-5 *1 (-1146)))) (-4017 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-5 *2 (-1231)) (-5 *1 (-1146)))) (-1998 (*1 *2 *3 *1) (-12 (-5 *3 (-1143)) (-5 *2 (-1231)) (-5 *1 (-1146)))) (-1998 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-1231)) (-5 *1 (-1146)))) (-1998 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-1146)))) (-3741 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-1231)) (-5 *1 (-1146)))) (-3742 (*1 *1) (-5 *1 (-1146))) (-4074 (*1 *2 *3 *1) (-12 (-5 *3 (-1143)) (-5 *2 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-5 *1 (-1146)))) (-1401 (*1 *2 *3 *1) (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-1146)) (-5 *3 (-1143)))) (-1908 (*1 *2 *3 *1) (-12 (-5 *3 (-1143)) (-5 *2 (-1147)) (-5 *1 (-1146)))))
-(-13 (-593 (-834)) (-10 -8 (-15 -2620 ($)) (-15 -3814 ((-1231))) (-15 -3814 ((-1231) (-1143))) (-15 -4100 ((-430) (-1143) (-430) (-1143) $)) (-15 -4100 ((-430) (-621 (-1143)) (-430) (-1143) $)) (-15 -4100 ((-430) (-1143) (-430))) (-15 -4100 ((-430) (-1143) (-430) (-1143))) (-15 -2688 ((-1231) (-1143))) (-15 -3205 ((-1143))) (-15 -3202 ((-1143))) (-15 -2396 ((-1231) (-1143) (-621 (-1143)) $)) (-15 -2396 ((-1231) (-1143) (-621 (-1143)))) (-15 -2396 ((-1231) (-621 (-1143)))) (-15 -4017 ((-1231) (-1143) (-3 (|:| |fst| (-427)) (|:| -2903 "void")) $)) (-15 -4017 ((-1231) (-1143) (-3 (|:| |fst| (-427)) (|:| -2903 "void")))) (-15 -4017 ((-1231) (-3 (|:| |fst| (-427)) (|:| -2903 "void")))) (-15 -1998 ((-1231) (-1143) $)) (-15 -1998 ((-1231) (-1143))) (-15 -1998 ((-1231))) (-15 -3741 ((-1231) (-1143))) (-15 -3742 ($)) (-15 -4074 ((-3 (|:| |fst| (-427)) (|:| -2903 "void")) (-1143) $)) (-15 -1401 ((-621 (-1143)) (-1143) $)) (-15 -1908 ((-1147) (-1143) $))))
-((-1543 (((-621 (-621 (-3 (|:| -2481 (-1143)) (|:| -3280 (-621 (-3 (|:| S (-1143)) (|:| P (-923 (-549))))))))) $) 59)) (-3594 (((-621 (-3 (|:| -2481 (-1143)) (|:| -3280 (-621 (-3 (|:| S (-1143)) (|:| P (-923 (-549)))))))) (-427) $) 43)) (-3272 (($ (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-430))))) 17)) (-3741 (((-1231) $) 67)) (-2588 (((-621 (-1143)) $) 22)) (-1874 (((-1071) $) 55)) (-2198 (((-430) (-1143) $) 27)) (-3728 (((-621 (-1143)) $) 30)) (-3742 (($) 19)) (-4100 (((-430) (-621 (-1143)) (-430) $) 25) (((-430) (-1143) (-430) $) 24)) (-3846 (((-834) $) 9) (((-1153 (-1143) (-430)) $) 13)))
-(((-1147) (-13 (-593 (-834)) (-10 -8 (-15 -3846 ((-1153 (-1143) (-430)) $)) (-15 -3742 ($)) (-15 -4100 ((-430) (-621 (-1143)) (-430) $)) (-15 -4100 ((-430) (-1143) (-430) $)) (-15 -2198 ((-430) (-1143) $)) (-15 -2588 ((-621 (-1143)) $)) (-15 -3594 ((-621 (-3 (|:| -2481 (-1143)) (|:| -3280 (-621 (-3 (|:| S (-1143)) (|:| P (-923 (-549)))))))) (-427) $)) (-15 -3728 ((-621 (-1143)) $)) (-15 -1543 ((-621 (-621 (-3 (|:| -2481 (-1143)) (|:| -3280 (-621 (-3 (|:| S (-1143)) (|:| P (-923 (-549))))))))) $)) (-15 -1874 ((-1071) $)) (-15 -3741 ((-1231) $)) (-15 -3272 ($ (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-430))))))))) (T -1147))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-1153 (-1143) (-430))) (-5 *1 (-1147)))) (-3742 (*1 *1) (-5 *1 (-1147))) (-4100 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-430)) (-5 *3 (-621 (-1143))) (-5 *1 (-1147)))) (-4100 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-430)) (-5 *3 (-1143)) (-5 *1 (-1147)))) (-2198 (*1 *2 *3 *1) (-12 (-5 *3 (-1143)) (-5 *2 (-430)) (-5 *1 (-1147)))) (-2588 (*1 *2 *1) (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-1147)))) (-3594 (*1 *2 *3 *1) (-12 (-5 *3 (-427)) (-5 *2 (-621 (-3 (|:| -2481 (-1143)) (|:| -3280 (-621 (-3 (|:| S (-1143)) (|:| P (-923 (-549))))))))) (-5 *1 (-1147)))) (-3728 (*1 *2 *1) (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-1147)))) (-1543 (*1 *2 *1) (-12 (-5 *2 (-621 (-621 (-3 (|:| -2481 (-1143)) (|:| -3280 (-621 (-3 (|:| S (-1143)) (|:| P (-923 (-549)))))))))) (-5 *1 (-1147)))) (-1874 (*1 *2 *1) (-12 (-5 *2 (-1071)) (-5 *1 (-1147)))) (-3741 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-1147)))) (-3272 (*1 *1 *2) (-12 (-5 *2 (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-430))))) (-5 *1 (-1147)))))
-(-13 (-593 (-834)) (-10 -8 (-15 -3846 ((-1153 (-1143) (-430)) $)) (-15 -3742 ($)) (-15 -4100 ((-430) (-621 (-1143)) (-430) $)) (-15 -4100 ((-430) (-1143) (-430) $)) (-15 -2198 ((-430) (-1143) $)) (-15 -2588 ((-621 (-1143)) $)) (-15 -3594 ((-621 (-3 (|:| -2481 (-1143)) (|:| -3280 (-621 (-3 (|:| S (-1143)) (|:| P (-923 (-549)))))))) (-427) $)) (-15 -3728 ((-621 (-1143)) $)) (-15 -1543 ((-621 (-621 (-3 (|:| -2481 (-1143)) (|:| -3280 (-621 (-3 (|:| S (-1143)) (|:| P (-923 (-549))))))))) $)) (-15 -1874 ((-1071) $)) (-15 -3741 ((-1231) $)) (-15 -3272 ($ (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-430))))))))
-((-3834 (((-112) $ $) NIL)) (-3443 (((-112) $) 42)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-1783 (((-3 (-549) (-219) (-1143) (-1125) $) $) 50)) (-4284 (((-621 $) $) 55)) (-2845 (((-1071) $) 24) (($ (-1071)) 25)) (-1893 (((-112) $) 52)) (-3846 (((-834) $) NIL) (($ (-549)) 26) (((-549) $) 28) (($ (-219)) 29) (((-219) $) 31) (($ (-1143)) 32) (((-1143) $) 34) (($ (-1125)) 35) (((-1125) $) 37)) (-3264 (((-112) $ (|[\|\|]| (-549))) 11) (((-112) $ (|[\|\|]| (-219))) 15) (((-112) $ (|[\|\|]| (-1143))) 23) (((-112) $ (|[\|\|]| (-1125))) 19)) (-1465 (($ (-1143) (-621 $)) 39) (($ $ (-621 $)) 40)) (-2321 (((-549) $) 27) (((-219) $) 30) (((-1143) $) 33) (((-1125) $) 36)) (-2389 (((-112) $ $) 7)))
-(((-1148) (-13 (-1221) (-1067) (-10 -8 (-15 -2845 ((-1071) $)) (-15 -2845 ($ (-1071))) (-15 -3846 ($ (-549))) (-15 -3846 ((-549) $)) (-15 -2321 ((-549) $)) (-15 -3846 ($ (-219))) (-15 -3846 ((-219) $)) (-15 -2321 ((-219) $)) (-15 -3846 ($ (-1143))) (-15 -3846 ((-1143) $)) (-15 -2321 ((-1143) $)) (-15 -3846 ($ (-1125))) (-15 -3846 ((-1125) $)) (-15 -2321 ((-1125) $)) (-15 -1465 ($ (-1143) (-621 $))) (-15 -1465 ($ $ (-621 $))) (-15 -3443 ((-112) $)) (-15 -1783 ((-3 (-549) (-219) (-1143) (-1125) $) $)) (-15 -4284 ((-621 $) $)) (-15 -1893 ((-112) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-549)))) (-15 -3264 ((-112) $ (|[\|\|]| (-219)))) (-15 -3264 ((-112) $ (|[\|\|]| (-1143)))) (-15 -3264 ((-112) $ (|[\|\|]| (-1125))))))) (T -1148))
-((-2845 (*1 *2 *1) (-12 (-5 *2 (-1071)) (-5 *1 (-1148)))) (-2845 (*1 *1 *2) (-12 (-5 *2 (-1071)) (-5 *1 (-1148)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1148)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1148)))) (-2321 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1148)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-1148)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-219)) (-5 *1 (-1148)))) (-2321 (*1 *2 *1) (-12 (-5 *2 (-219)) (-5 *1 (-1148)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1148)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-1148)))) (-2321 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-1148)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1148)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-1125)) (-5 *1 (-1148)))) (-2321 (*1 *2 *1) (-12 (-5 *2 (-1125)) (-5 *1 (-1148)))) (-1465 (*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-1148))) (-5 *1 (-1148)))) (-1465 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-1148)))) (-3443 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1148)))) (-1783 (*1 *2 *1) (-12 (-5 *2 (-3 (-549) (-219) (-1143) (-1125) (-1148))) (-5 *1 (-1148)))) (-4284 (*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-1148)))) (-1893 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1148)))) (-3264 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-549))) (-5 *2 (-112)) (-5 *1 (-1148)))) (-3264 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-219))) (-5 *2 (-112)) (-5 *1 (-1148)))) (-3264 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1143))) (-5 *2 (-112)) (-5 *1 (-1148)))) (-3264 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1125))) (-5 *2 (-112)) (-5 *1 (-1148)))))
-(-13 (-1221) (-1067) (-10 -8 (-15 -2845 ((-1071) $)) (-15 -2845 ($ (-1071))) (-15 -3846 ($ (-549))) (-15 -3846 ((-549) $)) (-15 -2321 ((-549) $)) (-15 -3846 ($ (-219))) (-15 -3846 ((-219) $)) (-15 -2321 ((-219) $)) (-15 -3846 ($ (-1143))) (-15 -3846 ((-1143) $)) (-15 -2321 ((-1143) $)) (-15 -3846 ($ (-1125))) (-15 -3846 ((-1125) $)) (-15 -2321 ((-1125) $)) (-15 -1465 ($ (-1143) (-621 $))) (-15 -1465 ($ $ (-621 $))) (-15 -3443 ((-112) $)) (-15 -1783 ((-3 (-549) (-219) (-1143) (-1125) $) $)) (-15 -4284 ((-621 $) $)) (-15 -1893 ((-112) $)) (-15 -3264 ((-112) $ (|[\|\|]| (-549)))) (-15 -3264 ((-112) $ (|[\|\|]| (-219)))) (-15 -3264 ((-112) $ (|[\|\|]| (-1143)))) (-15 -3264 ((-112) $ (|[\|\|]| (-1125))))))
-((-3200 (((-621 (-621 (-923 |#1|))) (-621 (-400 (-923 |#1|))) (-621 (-1143))) 57)) (-2227 (((-621 (-287 (-400 (-923 |#1|)))) (-287 (-400 (-923 |#1|)))) 69) (((-621 (-287 (-400 (-923 |#1|)))) (-400 (-923 |#1|))) 65) (((-621 (-287 (-400 (-923 |#1|)))) (-287 (-400 (-923 |#1|))) (-1143)) 70) (((-621 (-287 (-400 (-923 |#1|)))) (-400 (-923 |#1|)) (-1143)) 64) (((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-287 (-400 (-923 |#1|))))) 93) (((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-400 (-923 |#1|)))) 92) (((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-287 (-400 (-923 |#1|)))) (-621 (-1143))) 94) (((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-400 (-923 |#1|))) (-621 (-1143))) 91)))
-(((-1149 |#1|) (-10 -7 (-15 -2227 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-400 (-923 |#1|))) (-621 (-1143)))) (-15 -2227 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-287 (-400 (-923 |#1|)))) (-621 (-1143)))) (-15 -2227 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-400 (-923 |#1|))))) (-15 -2227 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-287 (-400 (-923 |#1|)))))) (-15 -2227 ((-621 (-287 (-400 (-923 |#1|)))) (-400 (-923 |#1|)) (-1143))) (-15 -2227 ((-621 (-287 (-400 (-923 |#1|)))) (-287 (-400 (-923 |#1|))) (-1143))) (-15 -2227 ((-621 (-287 (-400 (-923 |#1|)))) (-400 (-923 |#1|)))) (-15 -2227 ((-621 (-287 (-400 (-923 |#1|)))) (-287 (-400 (-923 |#1|))))) (-15 -3200 ((-621 (-621 (-923 |#1|))) (-621 (-400 (-923 |#1|))) (-621 (-1143))))) (-541)) (T -1149))
-((-3200 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-400 (-923 *5)))) (-5 *4 (-621 (-1143))) (-4 *5 (-541)) (-5 *2 (-621 (-621 (-923 *5)))) (-5 *1 (-1149 *5)))) (-2227 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-621 (-287 (-400 (-923 *4))))) (-5 *1 (-1149 *4)) (-5 *3 (-287 (-400 (-923 *4)))))) (-2227 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-621 (-287 (-400 (-923 *4))))) (-5 *1 (-1149 *4)) (-5 *3 (-400 (-923 *4))))) (-2227 (*1 *2 *3 *4) (-12 (-5 *4 (-1143)) (-4 *5 (-541)) (-5 *2 (-621 (-287 (-400 (-923 *5))))) (-5 *1 (-1149 *5)) (-5 *3 (-287 (-400 (-923 *5)))))) (-2227 (*1 *2 *3 *4) (-12 (-5 *4 (-1143)) (-4 *5 (-541)) (-5 *2 (-621 (-287 (-400 (-923 *5))))) (-5 *1 (-1149 *5)) (-5 *3 (-400 (-923 *5))))) (-2227 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *4)))))) (-5 *1 (-1149 *4)) (-5 *3 (-621 (-287 (-400 (-923 *4))))))) (-2227 (*1 *2 *3) (-12 (-5 *3 (-621 (-400 (-923 *4)))) (-4 *4 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *4)))))) (-5 *1 (-1149 *4)))) (-2227 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-1143))) (-4 *5 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *5)))))) (-5 *1 (-1149 *5)) (-5 *3 (-621 (-287 (-400 (-923 *5))))))) (-2227 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-400 (-923 *5)))) (-5 *4 (-621 (-1143))) (-4 *5 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *5)))))) (-5 *1 (-1149 *5)))))
-(-10 -7 (-15 -2227 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-400 (-923 |#1|))) (-621 (-1143)))) (-15 -2227 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-287 (-400 (-923 |#1|)))) (-621 (-1143)))) (-15 -2227 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-400 (-923 |#1|))))) (-15 -2227 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-287 (-400 (-923 |#1|)))))) (-15 -2227 ((-621 (-287 (-400 (-923 |#1|)))) (-400 (-923 |#1|)) (-1143))) (-15 -2227 ((-621 (-287 (-400 (-923 |#1|)))) (-287 (-400 (-923 |#1|))) (-1143))) (-15 -2227 ((-621 (-287 (-400 (-923 |#1|)))) (-400 (-923 |#1|)))) (-15 -2227 ((-621 (-287 (-400 (-923 |#1|)))) (-287 (-400 (-923 |#1|))))) (-15 -3200 ((-621 (-621 (-923 |#1|))) (-621 (-400 (-923 |#1|))) (-621 (-1143)))))
-((-1459 (((-1125)) 7)) (-4069 (((-1125)) 9)) (-3021 (((-1231) (-1125)) 11)) (-3094 (((-1125)) 8)))
-(((-1150) (-10 -7 (-15 -1459 ((-1125))) (-15 -3094 ((-1125))) (-15 -4069 ((-1125))) (-15 -3021 ((-1231) (-1125))))) (T -1150))
-((-3021 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1150)))) (-4069 (*1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1150)))) (-3094 (*1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1150)))) (-1459 (*1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1150)))))
-(-10 -7 (-15 -1459 ((-1125))) (-15 -3094 ((-1125))) (-15 -4069 ((-1125))) (-15 -3021 ((-1231) (-1125))))
-((-2140 (((-621 (-621 |#1|)) (-621 (-621 |#1|)) (-621 (-621 (-621 |#1|)))) 38)) (-1656 (((-621 (-621 (-621 |#1|))) (-621 (-621 |#1|))) 24)) (-4221 (((-1152 (-621 |#1|)) (-621 |#1|)) 34)) (-3547 (((-621 (-621 |#1|)) (-621 |#1|)) 30)) (-3245 (((-2 (|:| |f1| (-621 |#1|)) (|:| |f2| (-621 (-621 (-621 |#1|)))) (|:| |f3| (-621 (-621 |#1|))) (|:| |f4| (-621 (-621 (-621 |#1|))))) (-621 (-621 (-621 |#1|)))) 37)) (-4275 (((-2 (|:| |f1| (-621 |#1|)) (|:| |f2| (-621 (-621 (-621 |#1|)))) (|:| |f3| (-621 (-621 |#1|))) (|:| |f4| (-621 (-621 (-621 |#1|))))) (-621 |#1|) (-621 (-621 (-621 |#1|))) (-621 (-621 |#1|)) (-621 (-621 (-621 |#1|))) (-621 (-621 (-621 |#1|))) (-621 (-621 (-621 |#1|)))) 36)) (-1356 (((-621 (-621 |#1|)) (-621 (-621 |#1|))) 28)) (-3849 (((-621 |#1|) (-621 |#1|)) 31)) (-3129 (((-621 (-621 (-621 |#1|))) (-621 |#1|) (-621 (-621 (-621 |#1|)))) 18)) (-2890 (((-621 (-621 (-621 |#1|))) (-1 (-112) |#1| |#1|) (-621 |#1|) (-621 (-621 (-621 |#1|)))) 16)) (-3475 (((-2 (|:| |fs| (-112)) (|:| |sd| (-621 |#1|)) (|:| |td| (-621 (-621 |#1|)))) (-1 (-112) |#1| |#1|) (-621 |#1|) (-621 (-621 |#1|))) 14)) (-2655 (((-621 (-621 |#1|)) (-621 (-621 (-621 |#1|)))) 39)) (-3790 (((-621 (-621 |#1|)) (-1152 (-621 |#1|))) 41)))
-(((-1151 |#1|) (-10 -7 (-15 -3475 ((-2 (|:| |fs| (-112)) (|:| |sd| (-621 |#1|)) (|:| |td| (-621 (-621 |#1|)))) (-1 (-112) |#1| |#1|) (-621 |#1|) (-621 (-621 |#1|)))) (-15 -2890 ((-621 (-621 (-621 |#1|))) (-1 (-112) |#1| |#1|) (-621 |#1|) (-621 (-621 (-621 |#1|))))) (-15 -3129 ((-621 (-621 (-621 |#1|))) (-621 |#1|) (-621 (-621 (-621 |#1|))))) (-15 -2140 ((-621 (-621 |#1|)) (-621 (-621 |#1|)) (-621 (-621 (-621 |#1|))))) (-15 -2655 ((-621 (-621 |#1|)) (-621 (-621 (-621 |#1|))))) (-15 -3790 ((-621 (-621 |#1|)) (-1152 (-621 |#1|)))) (-15 -1656 ((-621 (-621 (-621 |#1|))) (-621 (-621 |#1|)))) (-15 -4221 ((-1152 (-621 |#1|)) (-621 |#1|))) (-15 -1356 ((-621 (-621 |#1|)) (-621 (-621 |#1|)))) (-15 -3547 ((-621 (-621 |#1|)) (-621 |#1|))) (-15 -3849 ((-621 |#1|) (-621 |#1|))) (-15 -4275 ((-2 (|:| |f1| (-621 |#1|)) (|:| |f2| (-621 (-621 (-621 |#1|)))) (|:| |f3| (-621 (-621 |#1|))) (|:| |f4| (-621 (-621 (-621 |#1|))))) (-621 |#1|) (-621 (-621 (-621 |#1|))) (-621 (-621 |#1|)) (-621 (-621 (-621 |#1|))) (-621 (-621 (-621 |#1|))) (-621 (-621 (-621 |#1|))))) (-15 -3245 ((-2 (|:| |f1| (-621 |#1|)) (|:| |f2| (-621 (-621 (-621 |#1|)))) (|:| |f3| (-621 (-621 |#1|))) (|:| |f4| (-621 (-621 (-621 |#1|))))) (-621 (-621 (-621 |#1|)))))) (-823)) (T -1151))
-((-3245 (*1 *2 *3) (-12 (-4 *4 (-823)) (-5 *2 (-2 (|:| |f1| (-621 *4)) (|:| |f2| (-621 (-621 (-621 *4)))) (|:| |f3| (-621 (-621 *4))) (|:| |f4| (-621 (-621 (-621 *4)))))) (-5 *1 (-1151 *4)) (-5 *3 (-621 (-621 (-621 *4)))))) (-4275 (*1 *2 *3 *4 *5 *4 *4 *4) (-12 (-4 *6 (-823)) (-5 *3 (-621 *6)) (-5 *5 (-621 *3)) (-5 *2 (-2 (|:| |f1| *3) (|:| |f2| (-621 *5)) (|:| |f3| *5) (|:| |f4| (-621 *5)))) (-5 *1 (-1151 *6)) (-5 *4 (-621 *5)))) (-3849 (*1 *2 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-1151 *3)))) (-3547 (*1 *2 *3) (-12 (-4 *4 (-823)) (-5 *2 (-621 (-621 *4))) (-5 *1 (-1151 *4)) (-5 *3 (-621 *4)))) (-1356 (*1 *2 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-823)) (-5 *1 (-1151 *3)))) (-4221 (*1 *2 *3) (-12 (-4 *4 (-823)) (-5 *2 (-1152 (-621 *4))) (-5 *1 (-1151 *4)) (-5 *3 (-621 *4)))) (-1656 (*1 *2 *3) (-12 (-4 *4 (-823)) (-5 *2 (-621 (-621 (-621 *4)))) (-5 *1 (-1151 *4)) (-5 *3 (-621 (-621 *4))))) (-3790 (*1 *2 *3) (-12 (-5 *3 (-1152 (-621 *4))) (-4 *4 (-823)) (-5 *2 (-621 (-621 *4))) (-5 *1 (-1151 *4)))) (-2655 (*1 *2 *3) (-12 (-5 *3 (-621 (-621 (-621 *4)))) (-5 *2 (-621 (-621 *4))) (-5 *1 (-1151 *4)) (-4 *4 (-823)))) (-2140 (*1 *2 *2 *3) (-12 (-5 *3 (-621 (-621 (-621 *4)))) (-5 *2 (-621 (-621 *4))) (-4 *4 (-823)) (-5 *1 (-1151 *4)))) (-3129 (*1 *2 *3 *2) (-12 (-5 *2 (-621 (-621 (-621 *4)))) (-5 *3 (-621 *4)) (-4 *4 (-823)) (-5 *1 (-1151 *4)))) (-2890 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-621 (-621 (-621 *5)))) (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-621 *5)) (-4 *5 (-823)) (-5 *1 (-1151 *5)))) (-3475 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-823)) (-5 *4 (-621 *6)) (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-621 *4)))) (-5 *1 (-1151 *6)) (-5 *5 (-621 *4)))))
-(-10 -7 (-15 -3475 ((-2 (|:| |fs| (-112)) (|:| |sd| (-621 |#1|)) (|:| |td| (-621 (-621 |#1|)))) (-1 (-112) |#1| |#1|) (-621 |#1|) (-621 (-621 |#1|)))) (-15 -2890 ((-621 (-621 (-621 |#1|))) (-1 (-112) |#1| |#1|) (-621 |#1|) (-621 (-621 (-621 |#1|))))) (-15 -3129 ((-621 (-621 (-621 |#1|))) (-621 |#1|) (-621 (-621 (-621 |#1|))))) (-15 -2140 ((-621 (-621 |#1|)) (-621 (-621 |#1|)) (-621 (-621 (-621 |#1|))))) (-15 -2655 ((-621 (-621 |#1|)) (-621 (-621 (-621 |#1|))))) (-15 -3790 ((-621 (-621 |#1|)) (-1152 (-621 |#1|)))) (-15 -1656 ((-621 (-621 (-621 |#1|))) (-621 (-621 |#1|)))) (-15 -4221 ((-1152 (-621 |#1|)) (-621 |#1|))) (-15 -1356 ((-621 (-621 |#1|)) (-621 (-621 |#1|)))) (-15 -3547 ((-621 (-621 |#1|)) (-621 |#1|))) (-15 -3849 ((-621 |#1|) (-621 |#1|))) (-15 -4275 ((-2 (|:| |f1| (-621 |#1|)) (|:| |f2| (-621 (-621 (-621 |#1|)))) (|:| |f3| (-621 (-621 |#1|))) (|:| |f4| (-621 (-621 (-621 |#1|))))) (-621 |#1|) (-621 (-621 (-621 |#1|))) (-621 (-621 |#1|)) (-621 (-621 (-621 |#1|))) (-621 (-621 (-621 |#1|))) (-621 (-621 (-621 |#1|))))) (-15 -3245 ((-2 (|:| |f1| (-621 |#1|)) (|:| |f2| (-621 (-621 (-621 |#1|)))) (|:| |f3| (-621 (-621 |#1|))) (|:| |f4| (-621 (-621 (-621 |#1|))))) (-621 (-621 (-621 |#1|))))))
-((-1820 (($ (-621 (-621 |#1|))) 10)) (-2913 (((-621 (-621 |#1|)) $) 11)) (-3846 (((-834) $) 26)))
-(((-1152 |#1|) (-10 -8 (-15 -1820 ($ (-621 (-621 |#1|)))) (-15 -2913 ((-621 (-621 |#1|)) $)) (-15 -3846 ((-834) $))) (-1067)) (T -1152))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-1152 *3)) (-4 *3 (-1067)))) (-2913 (*1 *2 *1) (-12 (-5 *2 (-621 (-621 *3))) (-5 *1 (-1152 *3)) (-4 *3 (-1067)))) (-1820 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1067)) (-5 *1 (-1152 *3)))))
-(-10 -8 (-15 -1820 ($ (-621 (-621 |#1|)))) (-15 -2913 ((-621 (-621 |#1|)) $)) (-15 -3846 ((-834) $)))
-((-3834 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3733 (($) NIL) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-1535 (((-1231) $ |#1| |#1|) NIL (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 ((|#2| $ |#1| |#2|) NIL)) (-1717 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-3490 (((-3 |#2| "failed") |#1| $) NIL)) (-1682 (($) NIL T CONST)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-2129 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-3 |#2| "failed") |#1| $) NIL)) (-3812 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-2557 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (|has| $ (-6 -4337))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337)))) (-1879 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#2| $ |#1|) NIL)) (-2989 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) NIL)) (-4031 ((|#1| $) NIL (|has| |#1| (-823)))) (-1562 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-621 |#2|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-1569 ((|#1| $) NIL (|has| |#1| (-823)))) (-1868 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4338))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3449 (((-621 |#1|) $) NIL)) (-2427 (((-112) |#1| $) NIL)) (-3504 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-2751 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-3303 (((-621 |#1|) $) NIL)) (-3761 (((-112) |#1| $) NIL)) (-3990 (((-1087) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3646 ((|#2| $) NIL (|has| |#1| (-823)))) (-3779 (((-3 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) "failed") (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL)) (-1642 (($ $ |#2|) NIL (|has| $ (-6 -4338)))) (-3325 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL)) (-1780 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-2696 (((-621 |#2|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2898 (($) NIL) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-4000 (((-747) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-747) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067)))) (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-594 (-525))))) (-3854 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-3846 (((-834) $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-593 (-834))) (|has| |#2| (-593 (-834)))))) (-3624 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) NIL)) (-3527 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) NIL (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| |#2| (-1067))))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-1153 |#1| |#2|) (-13 (-1156 |#1| |#2|) (-10 -7 (-6 -4337))) (-1067) (-1067)) (T -1153))
-NIL
-(-13 (-1156 |#1| |#2|) (-10 -7 (-6 -4337)))
-((-3078 ((|#1| (-621 |#1|)) 32)) (-2963 ((|#1| |#1| (-549)) 18)) (-2534 (((-1139 |#1|) |#1| (-892)) 15)))
-(((-1154 |#1|) (-10 -7 (-15 -3078 (|#1| (-621 |#1|))) (-15 -2534 ((-1139 |#1|) |#1| (-892))) (-15 -2963 (|#1| |#1| (-549)))) (-356)) (T -1154))
-((-2963 (*1 *2 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-1154 *2)) (-4 *2 (-356)))) (-2534 (*1 *2 *3 *4) (-12 (-5 *4 (-892)) (-5 *2 (-1139 *3)) (-5 *1 (-1154 *3)) (-4 *3 (-356)))) (-3078 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-5 *1 (-1154 *2)) (-4 *2 (-356)))))
-(-10 -7 (-15 -3078 (|#1| (-621 |#1|))) (-15 -2534 ((-1139 |#1|) |#1| (-892))) (-15 -2963 (|#1| |#1| (-549))))
-((-3733 (($) 10) (($ (-621 (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)))) 14)) (-2129 (($ (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) $) 61) (($ (-1 (-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) $) NIL) (((-3 |#3| "failed") |#2| $) NIL)) (-2989 (((-621 (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) $) 39) (((-621 |#3|) $) 41)) (-1868 (($ (-1 (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) $) 53) (($ (-1 |#3| |#3|) $) 33)) (-2797 (($ (-1 (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) $) 51) (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) 38)) (-3504 (((-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) $) 54)) (-2751 (($ (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) $) 16)) (-3303 (((-621 |#2|) $) 19)) (-3761 (((-112) |#2| $) 59)) (-3779 (((-3 (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) "failed") (-1 (-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) $) 58)) (-3325 (((-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) $) 63)) (-1780 (((-112) (-1 (-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 67)) (-2696 (((-621 |#3|) $) 43)) (-3341 ((|#3| $ |#2|) 30) ((|#3| $ |#2| |#3|) 31)) (-4000 (((-747) (-1 (-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) $) NIL) (((-747) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) $) NIL) (((-747) |#3| $) NIL) (((-747) (-1 (-112) |#3|) $) 68)) (-3846 (((-834) $) 27)) (-3527 (((-112) (-1 (-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 65)) (-2389 (((-112) $ $) 49)))
-(((-1155 |#1| |#2| |#3|) (-10 -8 (-15 -3846 ((-834) |#1|)) (-15 -2389 ((-112) |#1| |#1|)) (-15 -2797 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -3733 (|#1| (-621 (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))))) (-15 -3733 (|#1|)) (-15 -2797 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1868 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3527 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1780 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -4000 ((-747) (-1 (-112) |#3|) |#1|)) (-15 -2989 ((-621 |#3|) |#1|)) (-15 -4000 ((-747) |#3| |#1|)) (-15 -3341 (|#3| |#1| |#2| |#3|)) (-15 -3341 (|#3| |#1| |#2|)) (-15 -2696 ((-621 |#3|) |#1|)) (-15 -3761 ((-112) |#2| |#1|)) (-15 -3303 ((-621 |#2|) |#1|)) (-15 -2129 ((-3 |#3| "failed") |#2| |#1|)) (-15 -2129 (|#1| (-1 (-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) |#1|)) (-15 -2129 (|#1| (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) |#1|)) (-15 -3779 ((-3 (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) "failed") (-1 (-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) |#1|)) (-15 -3504 ((-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) |#1|)) (-15 -2751 (|#1| (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) |#1|)) (-15 -3325 ((-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) |#1|)) (-15 -4000 ((-747) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) |#1|)) (-15 -2989 ((-621 (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) |#1|)) (-15 -4000 ((-747) (-1 (-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) |#1|)) (-15 -1780 ((-112) (-1 (-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) |#1|)) (-15 -3527 ((-112) (-1 (-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) |#1|)) (-15 -1868 (|#1| (-1 (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) |#1|)) (-15 -2797 (|#1| (-1 (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) |#1|))) (-1156 |#2| |#3|) (-1067) (-1067)) (T -1155))
-NIL
-(-10 -8 (-15 -3846 ((-834) |#1|)) (-15 -2389 ((-112) |#1| |#1|)) (-15 -2797 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -3733 (|#1| (-621 (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))))) (-15 -3733 (|#1|)) (-15 -2797 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1868 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3527 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1780 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -4000 ((-747) (-1 (-112) |#3|) |#1|)) (-15 -2989 ((-621 |#3|) |#1|)) (-15 -4000 ((-747) |#3| |#1|)) (-15 -3341 (|#3| |#1| |#2| |#3|)) (-15 -3341 (|#3| |#1| |#2|)) (-15 -2696 ((-621 |#3|) |#1|)) (-15 -3761 ((-112) |#2| |#1|)) (-15 -3303 ((-621 |#2|) |#1|)) (-15 -2129 ((-3 |#3| "failed") |#2| |#1|)) (-15 -2129 (|#1| (-1 (-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) |#1|)) (-15 -2129 (|#1| (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) |#1|)) (-15 -3779 ((-3 (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) "failed") (-1 (-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) |#1|)) (-15 -3504 ((-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) |#1|)) (-15 -2751 (|#1| (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) |#1|)) (-15 -3325 ((-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) |#1|)) (-15 -4000 ((-747) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) |#1|)) (-15 -2989 ((-621 (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) |#1|)) (-15 -4000 ((-747) (-1 (-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) |#1|)) (-15 -1780 ((-112) (-1 (-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) |#1|)) (-15 -3527 ((-112) (-1 (-112) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) |#1|)) (-15 -1868 (|#1| (-1 (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) |#1|)) (-15 -2797 (|#1| (-1 (-2 (|:| -3337 |#2|) (|:| -1793 |#3|)) (-2 (|:| -3337 |#2|) (|:| -1793 |#3|))) |#1|)))
-((-3834 (((-112) $ $) 19 (-1536 (|has| |#2| (-1067)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-3733 (($) 72) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 71)) (-1535 (((-1231) $ |#1| |#1|) 99 (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) 8)) (-2254 ((|#2| $ |#1| |#2|) 73)) (-1717 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 45 (|has| $ (-6 -4337)))) (-1489 (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 55 (|has| $ (-6 -4337)))) (-3490 (((-3 |#2| "failed") |#1| $) 61)) (-1682 (($) 7 T CONST)) (-3676 (($ $) 58 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337))))) (-2129 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 47 (|has| $ (-6 -4337))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 46 (|has| $ (-6 -4337))) (((-3 |#2| "failed") |#1| $) 62)) (-3812 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 57 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 54 (|has| $ (-6 -4337)))) (-2557 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 56 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337)))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 53 (|has| $ (-6 -4337))) (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 52 (|has| $ (-6 -4337)))) (-1879 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4338)))) (-1809 ((|#2| $ |#1|) 88)) (-2989 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 30 (|has| $ (-6 -4337))) (((-621 |#2|) $) 79 (|has| $ (-6 -4337)))) (-3194 (((-112) $ (-747)) 9)) (-4031 ((|#1| $) 96 (|has| |#1| (-823)))) (-1562 (((-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 29 (|has| $ (-6 -4337))) (((-621 |#2|) $) 80 (|has| $ (-6 -4337)))) (-2090 (((-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 27 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337)))) (((-112) |#2| $) 82 (-12 (|has| |#2| (-1067)) (|has| $ (-6 -4337))))) (-1569 ((|#1| $) 95 (|has| |#1| (-823)))) (-1868 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 34 (|has| $ (-6 -4338))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4338)))) (-2797 (($ (-1 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70)) (-1508 (((-112) $ (-747)) 10)) (-3851 (((-1125) $) 22 (-1536 (|has| |#2| (-1067)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-3449 (((-621 |#1|) $) 63)) (-2427 (((-112) |#1| $) 64)) (-3504 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 39)) (-2751 (($ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 40)) (-3303 (((-621 |#1|) $) 93)) (-3761 (((-112) |#1| $) 92)) (-3990 (((-1087) $) 21 (-1536 (|has| |#2| (-1067)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-3646 ((|#2| $) 97 (|has| |#1| (-823)))) (-3779 (((-3 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) "failed") (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 51)) (-1642 (($ $ |#2|) 98 (|has| $ (-6 -4338)))) (-3325 (((-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 41)) (-1780 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 32 (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))))) 26 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-287 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 25 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) 24 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 23 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)))) (($ $ (-621 |#2|) (-621 |#2|)) 86 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-287 |#2|)) 84 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067)))) (($ $ (-621 (-287 |#2|))) 83 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))))) (-4144 (((-112) $ $) 14)) (-2265 (((-112) |#2| $) 94 (-12 (|has| $ (-6 -4337)) (|has| |#2| (-1067))))) (-2696 (((-621 |#2|) $) 91)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89)) (-2898 (($) 49) (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 48)) (-4000 (((-747) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 31 (|has| $ (-6 -4337))) (((-747) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) $) 28 (-12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| $ (-6 -4337)))) (((-747) |#2| $) 81 (-12 (|has| |#2| (-1067)) (|has| $ (-6 -4337)))) (((-747) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4337)))) (-2281 (($ $) 13)) (-2845 (((-525) $) 59 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-594 (-525))))) (-3854 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 50)) (-3846 (((-834) $) 18 (-1536 (|has| |#2| (-593 (-834))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-593 (-834)))))) (-3624 (($ (-621 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) 42)) (-3527 (((-112) (-1 (-112) (-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) $) 33 (|has| $ (-6 -4337))) (((-112) (-1 (-112) |#2|) $) 76 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (-1536 (|has| |#2| (-1067)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-1156 |#1| |#2|) (-138) (-1067) (-1067)) (T -1156))
-((-2254 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-1156 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1067)))) (-3733 (*1 *1) (-12 (-4 *1 (-1156 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067)))) (-3733 (*1 *1 *2) (-12 (-5 *2 (-621 (-2 (|:| -3337 *3) (|:| -1793 *4)))) (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *1 (-1156 *3 *4)))) (-2797 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1156 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067)))))
-(-13 (-590 |t#1| |t#2|) (-584 |t#1| |t#2|) (-10 -8 (-15 -2254 (|t#2| $ |t#1| |t#2|)) (-15 -3733 ($)) (-15 -3733 ($ (-621 (-2 (|:| -3337 |t#1|) (|:| -1793 |t#2|))))) (-15 -2797 ($ (-1 |t#2| |t#2| |t#2|) $ $))))
-(((-34) . T) ((-106 #0=(-2 (|:| -3337 |#1|) (|:| -1793 |#2|))) . T) ((-101) -1536 (|has| |#2| (-1067)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))) ((-593 (-834)) -1536 (|has| |#2| (-1067)) (|has| |#2| (-593 (-834))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-593 (-834)))) ((-149 #0#) . T) ((-594 (-525)) |has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-594 (-525))) ((-223 #0#) . T) ((-229 #0#) . T) ((-279 |#1| |#2|) . T) ((-281 |#1| |#2|) . T) ((-302 #0#) -12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))) ((-302 |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) ((-481 #0#) . T) ((-481 |#2|) . T) ((-584 |#1| |#2|) . T) ((-505 #0# #0#) -12 (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-302 (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)))) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))) ((-505 |#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1067))) ((-590 |#1| |#2|) . T) ((-1067) -1536 (|has| |#2| (-1067)) (|has| (-2 (|:| -3337 |#1|) (|:| -1793 |#2|)) (-1067))) ((-1180) . T))
-((-4268 (((-112)) 24)) (-2844 (((-1231) (-1125)) 26)) (-1735 (((-112)) 36)) (-4202 (((-1231)) 34)) (-2942 (((-1231) (-1125) (-1125)) 25)) (-1286 (((-112)) 37)) (-2751 (((-1231) |#1| |#2|) 44)) (-1605 (((-1231)) 20)) (-1532 (((-3 |#2| "failed") |#1|) 42)) (-4105 (((-1231)) 35)))
-(((-1157 |#1| |#2|) (-10 -7 (-15 -1605 ((-1231))) (-15 -2942 ((-1231) (-1125) (-1125))) (-15 -2844 ((-1231) (-1125))) (-15 -4202 ((-1231))) (-15 -4105 ((-1231))) (-15 -4268 ((-112))) (-15 -1735 ((-112))) (-15 -1286 ((-112))) (-15 -1532 ((-3 |#2| "failed") |#1|)) (-15 -2751 ((-1231) |#1| |#2|))) (-1067) (-1067)) (T -1157))
-((-2751 (*1 *2 *3 *4) (-12 (-5 *2 (-1231)) (-5 *1 (-1157 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067)))) (-1532 (*1 *2 *3) (|partial| -12 (-4 *2 (-1067)) (-5 *1 (-1157 *3 *2)) (-4 *3 (-1067)))) (-1286 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067)))) (-1735 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067)))) (-4268 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067)))) (-4105 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-1157 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067)))) (-4202 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-1157 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067)))) (-2844 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1157 *4 *5)) (-4 *4 (-1067)) (-4 *5 (-1067)))) (-2942 (*1 *2 *3 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1157 *4 *5)) (-4 *4 (-1067)) (-4 *5 (-1067)))) (-1605 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-1157 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067)))))
-(-10 -7 (-15 -1605 ((-1231))) (-15 -2942 ((-1231) (-1125) (-1125))) (-15 -2844 ((-1231) (-1125))) (-15 -4202 ((-1231))) (-15 -4105 ((-1231))) (-15 -4268 ((-112))) (-15 -1735 ((-112))) (-15 -1286 ((-112))) (-15 -1532 ((-3 |#2| "failed") |#1|)) (-15 -2751 ((-1231) |#1| |#2|)))
-((-3903 (((-1125) (-1125)) 18)) (-1708 (((-52) (-1125)) 21)))
-(((-1158) (-10 -7 (-15 -1708 ((-52) (-1125))) (-15 -3903 ((-1125) (-1125))))) (T -1158))
-((-3903 (*1 *2 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1158)))) (-1708 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-52)) (-5 *1 (-1158)))))
-(-10 -7 (-15 -1708 ((-52) (-1125))) (-15 -3903 ((-1125) (-1125))))
-((-3846 (((-1160) |#1|) 11)))
-(((-1159 |#1|) (-10 -7 (-15 -3846 ((-1160) |#1|))) (-1067)) (T -1159))
-((-3846 (*1 *2 *3) (-12 (-5 *2 (-1160)) (-5 *1 (-1159 *3)) (-4 *3 (-1067)))))
-(-10 -7 (-15 -3846 ((-1160) |#1|)))
-((-3834 (((-112) $ $) NIL)) (-1485 (((-621 (-1125)) $) 34)) (-3034 (((-621 (-1125)) $ (-621 (-1125))) 37)) (-4169 (((-621 (-1125)) $ (-621 (-1125))) 36)) (-1922 (((-621 (-1125)) $ (-621 (-1125))) 38)) (-2607 (((-621 (-1125)) $) 33)) (-3743 (($) 22)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2617 (((-621 (-1125)) $) 35)) (-2699 (((-1231) $ (-549)) 29) (((-1231) $) 30)) (-2845 (($ (-834) (-549)) 26) (($ (-834) (-549) (-834)) NIL)) (-3846 (((-834) $) 40) (($ (-834)) 24)) (-2389 (((-112) $ $) NIL)))
-(((-1160) (-13 (-1067) (-10 -8 (-15 -3846 ($ (-834))) (-15 -2845 ($ (-834) (-549))) (-15 -2845 ($ (-834) (-549) (-834))) (-15 -2699 ((-1231) $ (-549))) (-15 -2699 ((-1231) $)) (-15 -2617 ((-621 (-1125)) $)) (-15 -1485 ((-621 (-1125)) $)) (-15 -3743 ($)) (-15 -2607 ((-621 (-1125)) $)) (-15 -1922 ((-621 (-1125)) $ (-621 (-1125)))) (-15 -3034 ((-621 (-1125)) $ (-621 (-1125)))) (-15 -4169 ((-621 (-1125)) $ (-621 (-1125))))))) (T -1160))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-834)) (-5 *1 (-1160)))) (-2845 (*1 *1 *2 *3) (-12 (-5 *2 (-834)) (-5 *3 (-549)) (-5 *1 (-1160)))) (-2845 (*1 *1 *2 *3 *2) (-12 (-5 *2 (-834)) (-5 *3 (-549)) (-5 *1 (-1160)))) (-2699 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1231)) (-5 *1 (-1160)))) (-2699 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-1160)))) (-2617 (*1 *2 *1) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1160)))) (-1485 (*1 *2 *1) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1160)))) (-3743 (*1 *1) (-5 *1 (-1160))) (-2607 (*1 *2 *1) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1160)))) (-1922 (*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1160)))) (-3034 (*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1160)))) (-4169 (*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1160)))))
-(-13 (-1067) (-10 -8 (-15 -3846 ($ (-834))) (-15 -2845 ($ (-834) (-549))) (-15 -2845 ($ (-834) (-549) (-834))) (-15 -2699 ((-1231) $ (-549))) (-15 -2699 ((-1231) $)) (-15 -2617 ((-621 (-1125)) $)) (-15 -1485 ((-621 (-1125)) $)) (-15 -3743 ($)) (-15 -2607 ((-621 (-1125)) $)) (-15 -1922 ((-621 (-1125)) $ (-621 (-1125)))) (-15 -3034 ((-621 (-1125)) $ (-621 (-1125)))) (-15 -4169 ((-621 (-1125)) $ (-621 (-1125))))))
-((-3834 (((-112) $ $) NIL)) (-1371 (((-1125) $ (-1125)) 17) (((-1125) $) 16)) (-3113 (((-1125) $ (-1125)) 15)) (-2060 (($ $ (-1125)) NIL)) (-1636 (((-3 (-1125) "failed") $) 11)) (-1796 (((-1125) $) 8)) (-2023 (((-3 (-1125) "failed") $) 12)) (-3001 (((-1125) $) 9)) (-1359 (($ (-381)) NIL) (($ (-381) (-1125)) NIL)) (-2481 (((-381) $) NIL)) (-3851 (((-1125) $) NIL)) (-2646 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3039 (((-112) $) 18)) (-3846 (((-834) $) NIL)) (-3578 (($ $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-1161) (-13 (-357 (-381) (-1125)) (-10 -8 (-15 -1371 ((-1125) $ (-1125))) (-15 -1371 ((-1125) $)) (-15 -1796 ((-1125) $)) (-15 -1636 ((-3 (-1125) "failed") $)) (-15 -2023 ((-3 (-1125) "failed") $)) (-15 -3039 ((-112) $))))) (T -1161))
-((-1371 (*1 *2 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1161)))) (-1371 (*1 *2 *1) (-12 (-5 *2 (-1125)) (-5 *1 (-1161)))) (-1796 (*1 *2 *1) (-12 (-5 *2 (-1125)) (-5 *1 (-1161)))) (-1636 (*1 *2 *1) (|partial| -12 (-5 *2 (-1125)) (-5 *1 (-1161)))) (-2023 (*1 *2 *1) (|partial| -12 (-5 *2 (-1125)) (-5 *1 (-1161)))) (-3039 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1161)))))
-(-13 (-357 (-381) (-1125)) (-10 -8 (-15 -1371 ((-1125) $ (-1125))) (-15 -1371 ((-1125) $)) (-15 -1796 ((-1125) $)) (-15 -1636 ((-3 (-1125) "failed") $)) (-15 -2023 ((-3 (-1125) "failed") $)) (-15 -3039 ((-112) $))))
-((-1872 (((-3 (-549) "failed") |#1|) 19)) (-3520 (((-3 (-549) "failed") |#1|) 14)) (-2701 (((-549) (-1125)) 28)))
-(((-1162 |#1|) (-10 -7 (-15 -1872 ((-3 (-549) "failed") |#1|)) (-15 -3520 ((-3 (-549) "failed") |#1|)) (-15 -2701 ((-549) (-1125)))) (-1018)) (T -1162))
-((-2701 (*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-549)) (-5 *1 (-1162 *4)) (-4 *4 (-1018)))) (-3520 (*1 *2 *3) (|partial| -12 (-5 *2 (-549)) (-5 *1 (-1162 *3)) (-4 *3 (-1018)))) (-1872 (*1 *2 *3) (|partial| -12 (-5 *2 (-549)) (-5 *1 (-1162 *3)) (-4 *3 (-1018)))))
-(-10 -7 (-15 -1872 ((-3 (-549) "failed") |#1|)) (-15 -3520 ((-3 (-549) "failed") |#1|)) (-15 -2701 ((-549) (-1125))))
-((-1851 (((-1100 (-219))) 9)))
-(((-1163) (-10 -7 (-15 -1851 ((-1100 (-219)))))) (T -1163))
-((-1851 (*1 *2) (-12 (-5 *2 (-1100 (-219))) (-5 *1 (-1163)))))
-(-10 -7 (-15 -1851 ((-1100 (-219)))))
-((-1425 (($) 11)) (-1733 (($ $) 35)) (-1710 (($ $) 33)) (-1564 (($ $) 25)) (-1758 (($ $) 17)) (-1934 (($ $) 15)) (-1745 (($ $) 19)) (-1600 (($ $) 30)) (-1722 (($ $) 34)) (-1576 (($ $) 29)))
-(((-1164 |#1|) (-10 -8 (-15 -1425 (|#1|)) (-15 -1733 (|#1| |#1|)) (-15 -1710 (|#1| |#1|)) (-15 -1758 (|#1| |#1|)) (-15 -1934 (|#1| |#1|)) (-15 -1745 (|#1| |#1|)) (-15 -1722 (|#1| |#1|)) (-15 -1564 (|#1| |#1|)) (-15 -1600 (|#1| |#1|)) (-15 -1576 (|#1| |#1|))) (-1165)) (T -1164))
-NIL
-(-10 -8 (-15 -1425 (|#1|)) (-15 -1733 (|#1| |#1|)) (-15 -1710 (|#1| |#1|)) (-15 -1758 (|#1| |#1|)) (-15 -1934 (|#1| |#1|)) (-15 -1745 (|#1| |#1|)) (-15 -1722 (|#1| |#1|)) (-15 -1564 (|#1| |#1|)) (-15 -1600 (|#1| |#1|)) (-15 -1576 (|#1| |#1|)))
-((-1664 (($ $) 26)) (-1512 (($ $) 11)) (-1640 (($ $) 27)) (-1486 (($ $) 10)) (-1685 (($ $) 28)) (-1539 (($ $) 9)) (-1425 (($) 16)) (-3632 (($ $) 19)) (-2719 (($ $) 18)) (-1698 (($ $) 29)) (-1552 (($ $) 8)) (-1675 (($ $) 30)) (-1526 (($ $) 7)) (-1651 (($ $) 31)) (-1501 (($ $) 6)) (-1733 (($ $) 20)) (-1587 (($ $) 32)) (-1710 (($ $) 21)) (-1564 (($ $) 33)) (-1758 (($ $) 22)) (-1612 (($ $) 34)) (-1934 (($ $) 23)) (-1627 (($ $) 35)) (-1745 (($ $) 24)) (-1600 (($ $) 36)) (-1722 (($ $) 25)) (-1576 (($ $) 37)) (** (($ $ $) 17)))
-(((-1165) (-138)) (T -1165))
-((-1425 (*1 *1) (-4 *1 (-1165))))
-(-13 (-1168) (-94) (-484) (-35) (-277) (-10 -8 (-15 -1425 ($))))
-(((-35) . T) ((-94) . T) ((-277) . T) ((-484) . T) ((-1168) . T))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-4161 ((|#1| $) 17)) (-1660 (($ |#1| (-621 $)) 23) (($ (-621 |#1|)) 27) (($ |#1|) 25)) (-1584 (((-112) $ (-747)) 48)) (-2838 ((|#1| $ |#1|) 14 (|has| $ (-6 -4338)))) (-2254 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) 13 (|has| $ (-6 -4338)))) (-1682 (($) NIL T CONST)) (-2989 (((-621 |#1|) $) 52 (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) 43)) (-3895 (((-112) $ $) 33 (|has| |#1| (-1067)))) (-3194 (((-112) $ (-747)) 41)) (-1562 (((-621 |#1|) $) 53 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 51 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1868 (($ (-1 |#1| |#1|) $) 24 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 22)) (-1508 (((-112) $ (-747)) 40)) (-3591 (((-621 |#1|) $) 37)) (-2076 (((-112) $) 36)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1780 (((-112) (-1 (-112) |#1|) $) 50 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 74)) (-3670 (((-112) $) 9)) (-3742 (($) 10)) (-3341 ((|#1| $ "value") NIL)) (-3230 (((-549) $ $) 32)) (-4123 (((-621 $) $) 59)) (-2341 (((-112) $ $) 77)) (-1622 (((-621 $) $) 72)) (-4007 (($ $) 73)) (-3497 (((-112) $) 56)) (-4000 (((-747) (-1 (-112) |#1|) $) 20 (|has| $ (-6 -4337))) (((-747) |#1| $) 16 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2281 (($ $) 58)) (-3846 (((-834) $) 61 (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) 12)) (-1987 (((-112) $ $) 29 (|has| |#1| (-1067)))) (-3527 (((-112) (-1 (-112) |#1|) $) 49 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 28 (|has| |#1| (-1067)))) (-3775 (((-747) $) 39 (|has| $ (-6 -4337)))))
-(((-1166 |#1|) (-13 (-981 |#1|) (-10 -8 (-6 -4337) (-6 -4338) (-15 -1660 ($ |#1| (-621 $))) (-15 -1660 ($ (-621 |#1|))) (-15 -1660 ($ |#1|)) (-15 -3497 ((-112) $)) (-15 -4007 ($ $)) (-15 -1622 ((-621 $) $)) (-15 -2341 ((-112) $ $)) (-15 -4123 ((-621 $) $)))) (-1067)) (T -1166))
-((-3497 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1166 *3)) (-4 *3 (-1067)))) (-1660 (*1 *1 *2 *3) (-12 (-5 *3 (-621 (-1166 *2))) (-5 *1 (-1166 *2)) (-4 *2 (-1067)))) (-1660 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-5 *1 (-1166 *3)))) (-1660 (*1 *1 *2) (-12 (-5 *1 (-1166 *2)) (-4 *2 (-1067)))) (-4007 (*1 *1 *1) (-12 (-5 *1 (-1166 *2)) (-4 *2 (-1067)))) (-1622 (*1 *2 *1) (-12 (-5 *2 (-621 (-1166 *3))) (-5 *1 (-1166 *3)) (-4 *3 (-1067)))) (-2341 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1166 *3)) (-4 *3 (-1067)))) (-4123 (*1 *2 *1) (-12 (-5 *2 (-621 (-1166 *3))) (-5 *1 (-1166 *3)) (-4 *3 (-1067)))))
-(-13 (-981 |#1|) (-10 -8 (-6 -4337) (-6 -4338) (-15 -1660 ($ |#1| (-621 $))) (-15 -1660 ($ (-621 |#1|))) (-15 -1660 ($ |#1|)) (-15 -3497 ((-112) $)) (-15 -4007 ($ $)) (-15 -1622 ((-621 $) $)) (-15 -2341 ((-112) $ $)) (-15 -4123 ((-621 $) $))))
-((-1512 (($ $) 15)) (-1539 (($ $) 12)) (-1552 (($ $) 10)) (-1526 (($ $) 17)))
-(((-1167 |#1|) (-10 -8 (-15 -1526 (|#1| |#1|)) (-15 -1552 (|#1| |#1|)) (-15 -1539 (|#1| |#1|)) (-15 -1512 (|#1| |#1|))) (-1168)) (T -1167))
-NIL
-(-10 -8 (-15 -1526 (|#1| |#1|)) (-15 -1552 (|#1| |#1|)) (-15 -1539 (|#1| |#1|)) (-15 -1512 (|#1| |#1|)))
-((-1512 (($ $) 11)) (-1486 (($ $) 10)) (-1539 (($ $) 9)) (-1552 (($ $) 8)) (-1526 (($ $) 7)) (-1501 (($ $) 6)))
-(((-1168) (-138)) (T -1168))
-((-1512 (*1 *1 *1) (-4 *1 (-1168))) (-1486 (*1 *1 *1) (-4 *1 (-1168))) (-1539 (*1 *1 *1) (-4 *1 (-1168))) (-1552 (*1 *1 *1) (-4 *1 (-1168))) (-1526 (*1 *1 *1) (-4 *1 (-1168))) (-1501 (*1 *1 *1) (-4 *1 (-1168))))
-(-13 (-10 -8 (-15 -1501 ($ $)) (-15 -1526 ($ $)) (-15 -1552 ($ $)) (-15 -1539 ($ $)) (-15 -1486 ($ $)) (-15 -1512 ($ $))))
-((-3694 ((|#2| |#2|) 88)) (-3530 (((-112) |#2|) 26)) (-2145 ((|#2| |#2|) 30)) (-2160 ((|#2| |#2|) 32)) (-3953 ((|#2| |#2| (-1143)) 83) ((|#2| |#2|) 84)) (-3886 (((-167 |#2|) |#2|) 28)) (-2602 ((|#2| |#2| (-1143)) 85) ((|#2| |#2|) 86)))
-(((-1169 |#1| |#2|) (-10 -7 (-15 -3953 (|#2| |#2|)) (-15 -3953 (|#2| |#2| (-1143))) (-15 -2602 (|#2| |#2|)) (-15 -2602 (|#2| |#2| (-1143))) (-15 -3694 (|#2| |#2|)) (-15 -2145 (|#2| |#2|)) (-15 -2160 (|#2| |#2|)) (-15 -3530 ((-112) |#2|)) (-15 -3886 ((-167 |#2|) |#2|))) (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-27) (-1165) (-423 |#1|))) (T -1169))
-((-3886 (*1 *2 *3) (-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-167 *3)) (-5 *1 (-1169 *4 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *4))))) (-3530 (*1 *2 *3) (-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-112)) (-5 *1 (-1169 *4 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *4))))) (-2160 (*1 *2 *2) (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1169 *3 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *3))))) (-2145 (*1 *2 *2) (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1169 *3 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *3))))) (-3694 (*1 *2 *2) (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1169 *3 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *3))))) (-2602 (*1 *2 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1169 *4 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *4))))) (-2602 (*1 *2 *2) (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1169 *3 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *3))))) (-3953 (*1 *2 *2 *3) (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1169 *4 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *4))))) (-3953 (*1 *2 *2) (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1169 *3 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *3))))))
-(-10 -7 (-15 -3953 (|#2| |#2|)) (-15 -3953 (|#2| |#2| (-1143))) (-15 -2602 (|#2| |#2|)) (-15 -2602 (|#2| |#2| (-1143))) (-15 -3694 (|#2| |#2|)) (-15 -2145 (|#2| |#2|)) (-15 -2160 (|#2| |#2|)) (-15 -3530 ((-112) |#2|)) (-15 -3886 ((-167 |#2|) |#2|)))
-((-2803 ((|#4| |#4| |#1|) 27)) (-2147 ((|#4| |#4| |#1|) 28)))
-(((-1170 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2803 (|#4| |#4| |#1|)) (-15 -2147 (|#4| |#4| |#1|))) (-541) (-366 |#1|) (-366 |#1|) (-663 |#1| |#2| |#3|)) (T -1170))
-((-2147 (*1 *2 *2 *3) (-12 (-4 *3 (-541)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-1170 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))) (-2803 (*1 *2 *2 *3) (-12 (-4 *3 (-541)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-1170 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))))
-(-10 -7 (-15 -2803 (|#4| |#4| |#1|)) (-15 -2147 (|#4| |#4| |#1|)))
-((-4230 ((|#2| |#2|) 133)) (-3036 ((|#2| |#2|) 130)) (-2365 ((|#2| |#2|) 121)) (-2230 ((|#2| |#2|) 118)) (-2638 ((|#2| |#2|) 126)) (-4043 ((|#2| |#2|) 114)) (-3661 ((|#2| |#2|) 43)) (-3899 ((|#2| |#2|) 94)) (-4038 ((|#2| |#2|) 74)) (-2755 ((|#2| |#2|) 128)) (-2809 ((|#2| |#2|) 116)) (-1557 ((|#2| |#2|) 138)) (-2829 ((|#2| |#2|) 136)) (-3783 ((|#2| |#2|) 137)) (-2339 ((|#2| |#2|) 135)) (-2832 ((|#2| |#2|) 148)) (-2692 ((|#2| |#2|) 30 (-12 (|has| |#2| (-594 (-863 |#1|))) (|has| |#2| (-857 |#1|)) (|has| |#1| (-594 (-863 |#1|))) (|has| |#1| (-857 |#1|))))) (-1668 ((|#2| |#2|) 75)) (-4045 ((|#2| |#2|) 139)) (-1449 ((|#2| |#2|) 140)) (-2338 ((|#2| |#2|) 127)) (-4182 ((|#2| |#2|) 115)) (-3736 ((|#2| |#2|) 134)) (-3025 ((|#2| |#2|) 132)) (-3803 ((|#2| |#2|) 122)) (-2267 ((|#2| |#2|) 120)) (-2704 ((|#2| |#2|) 124)) (-1834 ((|#2| |#2|) 112)))
-(((-1171 |#1| |#2|) (-10 -7 (-15 -1449 (|#2| |#2|)) (-15 -4038 (|#2| |#2|)) (-15 -2832 (|#2| |#2|)) (-15 -3899 (|#2| |#2|)) (-15 -3661 (|#2| |#2|)) (-15 -1668 (|#2| |#2|)) (-15 -4045 (|#2| |#2|)) (-15 -1834 (|#2| |#2|)) (-15 -2704 (|#2| |#2|)) (-15 -3803 (|#2| |#2|)) (-15 -3736 (|#2| |#2|)) (-15 -4182 (|#2| |#2|)) (-15 -2338 (|#2| |#2|)) (-15 -2809 (|#2| |#2|)) (-15 -2755 (|#2| |#2|)) (-15 -4043 (|#2| |#2|)) (-15 -2638 (|#2| |#2|)) (-15 -2365 (|#2| |#2|)) (-15 -4230 (|#2| |#2|)) (-15 -2230 (|#2| |#2|)) (-15 -3036 (|#2| |#2|)) (-15 -2267 (|#2| |#2|)) (-15 -3025 (|#2| |#2|)) (-15 -2339 (|#2| |#2|)) (-15 -2829 (|#2| |#2|)) (-15 -3783 (|#2| |#2|)) (-15 -1557 (|#2| |#2|)) (IF (|has| |#1| (-857 |#1|)) (IF (|has| |#1| (-594 (-863 |#1|))) (IF (|has| |#2| (-594 (-863 |#1|))) (IF (|has| |#2| (-857 |#1|)) (-15 -2692 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-13 (-823) (-444)) (-13 (-423 |#1|) (-1165))) (T -1171))
-((-2692 (*1 *2 *2) (-12 (-4 *3 (-594 (-863 *3))) (-4 *3 (-857 *3)) (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-594 (-863 *3))) (-4 *2 (-857 *3)) (-4 *2 (-13 (-423 *3) (-1165))))) (-1557 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-3783 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-2829 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-2339 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-3025 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-2267 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-3036 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-2230 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-4230 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-2365 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-2638 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-4043 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-2755 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-2809 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-2338 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-4182 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-3736 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-3803 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-2704 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-1834 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-4045 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-1668 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-3661 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-3899 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-2832 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-4038 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))) (-1449 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2)) (-4 *2 (-13 (-423 *3) (-1165))))))
-(-10 -7 (-15 -1449 (|#2| |#2|)) (-15 -4038 (|#2| |#2|)) (-15 -2832 (|#2| |#2|)) (-15 -3899 (|#2| |#2|)) (-15 -3661 (|#2| |#2|)) (-15 -1668 (|#2| |#2|)) (-15 -4045 (|#2| |#2|)) (-15 -1834 (|#2| |#2|)) (-15 -2704 (|#2| |#2|)) (-15 -3803 (|#2| |#2|)) (-15 -3736 (|#2| |#2|)) (-15 -4182 (|#2| |#2|)) (-15 -2338 (|#2| |#2|)) (-15 -2809 (|#2| |#2|)) (-15 -2755 (|#2| |#2|)) (-15 -4043 (|#2| |#2|)) (-15 -2638 (|#2| |#2|)) (-15 -2365 (|#2| |#2|)) (-15 -4230 (|#2| |#2|)) (-15 -2230 (|#2| |#2|)) (-15 -3036 (|#2| |#2|)) (-15 -2267 (|#2| |#2|)) (-15 -3025 (|#2| |#2|)) (-15 -2339 (|#2| |#2|)) (-15 -2829 (|#2| |#2|)) (-15 -3783 (|#2| |#2|)) (-15 -1557 (|#2| |#2|)) (IF (|has| |#1| (-857 |#1|)) (IF (|has| |#1| (-594 (-863 |#1|))) (IF (|has| |#2| (-594 (-863 |#1|))) (IF (|has| |#2| (-857 |#1|)) (-15 -2692 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
-((-3282 (((-112) |#5| $) 60) (((-112) $) 102)) (-2731 ((|#5| |#5| $) 75)) (-1489 (($ (-1 (-112) |#5|) $) NIL) (((-3 |#5| "failed") $ |#4|) 119)) (-2737 (((-621 |#5|) (-621 |#5|) $ (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|)) 73)) (-2714 (((-3 $ "failed") (-621 |#5|)) 126)) (-3657 (((-3 $ "failed") $) 112)) (-1903 ((|#5| |#5| $) 94)) (-2217 (((-112) |#5| $ (-1 (-112) |#5| |#5|)) 31)) (-3615 ((|#5| |#5| $) 98)) (-2557 ((|#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|)) 69)) (-1439 (((-2 (|:| -2681 (-621 |#5|)) (|:| -1359 (-621 |#5|))) $) 55)) (-2812 (((-112) |#5| $) 58) (((-112) $) 103)) (-2745 ((|#4| $) 108)) (-3829 (((-3 |#5| "failed") $) 110)) (-1638 (((-621 |#5|) $) 49)) (-2170 (((-112) |#5| $) 67) (((-112) $) 107)) (-3270 ((|#5| |#5| $) 81)) (-2473 (((-112) $ $) 27)) (-1335 (((-112) |#5| $) 63) (((-112) $) 105)) (-4298 ((|#5| |#5| $) 78)) (-3646 (((-3 |#5| "failed") $) 109)) (-2763 (($ $ |#5|) 127)) (-3701 (((-747) $) 52)) (-3854 (($ (-621 |#5|)) 124)) (-2858 (($ $ |#4|) 122)) (-3758 (($ $ |#4|) 121)) (-1962 (($ $) 120)) (-3846 (((-834) $) NIL) (((-621 |#5|) $) 113)) (-1824 (((-747) $) 130)) (-2574 (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#5|))) "failed") (-621 |#5|) (-1 (-112) |#5| |#5|)) 43) (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#5|))) "failed") (-621 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|)) 45)) (-1716 (((-112) $ (-1 (-112) |#5| (-621 |#5|))) 100)) (-3002 (((-621 |#4|) $) 115)) (-1606 (((-112) |#4| $) 118)) (-2389 (((-112) $ $) 19)))
-(((-1172 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -1824 ((-747) |#1|)) (-15 -2763 (|#1| |#1| |#5|)) (-15 -1489 ((-3 |#5| "failed") |#1| |#4|)) (-15 -1606 ((-112) |#4| |#1|)) (-15 -3002 ((-621 |#4|) |#1|)) (-15 -3657 ((-3 |#1| "failed") |#1|)) (-15 -3829 ((-3 |#5| "failed") |#1|)) (-15 -3646 ((-3 |#5| "failed") |#1|)) (-15 -3615 (|#5| |#5| |#1|)) (-15 -1962 (|#1| |#1|)) (-15 -1903 (|#5| |#5| |#1|)) (-15 -3270 (|#5| |#5| |#1|)) (-15 -4298 (|#5| |#5| |#1|)) (-15 -2731 (|#5| |#5| |#1|)) (-15 -2737 ((-621 |#5|) (-621 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2557 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2170 ((-112) |#1|)) (-15 -1335 ((-112) |#1|)) (-15 -3282 ((-112) |#1|)) (-15 -1716 ((-112) |#1| (-1 (-112) |#5| (-621 |#5|)))) (-15 -2170 ((-112) |#5| |#1|)) (-15 -1335 ((-112) |#5| |#1|)) (-15 -3282 ((-112) |#5| |#1|)) (-15 -2217 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -2812 ((-112) |#1|)) (-15 -2812 ((-112) |#5| |#1|)) (-15 -1439 ((-2 (|:| -2681 (-621 |#5|)) (|:| -1359 (-621 |#5|))) |#1|)) (-15 -3701 ((-747) |#1|)) (-15 -1638 ((-621 |#5|) |#1|)) (-15 -2574 ((-3 (-2 (|:| |bas| |#1|) (|:| -2317 (-621 |#5|))) "failed") (-621 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -2574 ((-3 (-2 (|:| |bas| |#1|) (|:| -2317 (-621 |#5|))) "failed") (-621 |#5|) (-1 (-112) |#5| |#5|))) (-15 -2473 ((-112) |#1| |#1|)) (-15 -2858 (|#1| |#1| |#4|)) (-15 -3758 (|#1| |#1| |#4|)) (-15 -2745 (|#4| |#1|)) (-15 -2714 ((-3 |#1| "failed") (-621 |#5|))) (-15 -3846 ((-621 |#5|) |#1|)) (-15 -3854 (|#1| (-621 |#5|))) (-15 -2557 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -2557 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1489 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -2557 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3846 ((-834) |#1|)) (-15 -2389 ((-112) |#1| |#1|))) (-1173 |#2| |#3| |#4| |#5|) (-541) (-769) (-823) (-1032 |#2| |#3| |#4|)) (T -1172))
-NIL
-(-10 -8 (-15 -1824 ((-747) |#1|)) (-15 -2763 (|#1| |#1| |#5|)) (-15 -1489 ((-3 |#5| "failed") |#1| |#4|)) (-15 -1606 ((-112) |#4| |#1|)) (-15 -3002 ((-621 |#4|) |#1|)) (-15 -3657 ((-3 |#1| "failed") |#1|)) (-15 -3829 ((-3 |#5| "failed") |#1|)) (-15 -3646 ((-3 |#5| "failed") |#1|)) (-15 -3615 (|#5| |#5| |#1|)) (-15 -1962 (|#1| |#1|)) (-15 -1903 (|#5| |#5| |#1|)) (-15 -3270 (|#5| |#5| |#1|)) (-15 -4298 (|#5| |#5| |#1|)) (-15 -2731 (|#5| |#5| |#1|)) (-15 -2737 ((-621 |#5|) (-621 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2557 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2170 ((-112) |#1|)) (-15 -1335 ((-112) |#1|)) (-15 -3282 ((-112) |#1|)) (-15 -1716 ((-112) |#1| (-1 (-112) |#5| (-621 |#5|)))) (-15 -2170 ((-112) |#5| |#1|)) (-15 -1335 ((-112) |#5| |#1|)) (-15 -3282 ((-112) |#5| |#1|)) (-15 -2217 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -2812 ((-112) |#1|)) (-15 -2812 ((-112) |#5| |#1|)) (-15 -1439 ((-2 (|:| -2681 (-621 |#5|)) (|:| -1359 (-621 |#5|))) |#1|)) (-15 -3701 ((-747) |#1|)) (-15 -1638 ((-621 |#5|) |#1|)) (-15 -2574 ((-3 (-2 (|:| |bas| |#1|) (|:| -2317 (-621 |#5|))) "failed") (-621 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -2574 ((-3 (-2 (|:| |bas| |#1|) (|:| -2317 (-621 |#5|))) "failed") (-621 |#5|) (-1 (-112) |#5| |#5|))) (-15 -2473 ((-112) |#1| |#1|)) (-15 -2858 (|#1| |#1| |#4|)) (-15 -3758 (|#1| |#1| |#4|)) (-15 -2745 (|#4| |#1|)) (-15 -2714 ((-3 |#1| "failed") (-621 |#5|))) (-15 -3846 ((-621 |#5|) |#1|)) (-15 -3854 (|#1| (-621 |#5|))) (-15 -2557 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -2557 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1489 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -2557 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3846 ((-834) |#1|)) (-15 -2389 ((-112) |#1| |#1|)))
-((-3834 (((-112) $ $) 7)) (-3514 (((-621 (-2 (|:| -2681 $) (|:| -1359 (-621 |#4|)))) (-621 |#4|)) 85)) (-2866 (((-621 $) (-621 |#4|)) 86)) (-2272 (((-621 |#3|) $) 33)) (-3422 (((-112) $) 26)) (-2527 (((-112) $) 17 (|has| |#1| (-541)))) (-3282 (((-112) |#4| $) 101) (((-112) $) 97)) (-2731 ((|#4| |#4| $) 92)) (-3193 (((-2 (|:| |under| $) (|:| -3967 $) (|:| |upper| $)) $ |#3|) 27)) (-1584 (((-112) $ (-747)) 44)) (-1489 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4337))) (((-3 |#4| "failed") $ |#3|) 79)) (-1682 (($) 45 T CONST)) (-1433 (((-112) $) 22 (|has| |#1| (-541)))) (-2555 (((-112) $ $) 24 (|has| |#1| (-541)))) (-2595 (((-112) $ $) 23 (|has| |#1| (-541)))) (-2397 (((-112) $) 25 (|has| |#1| (-541)))) (-2737 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3269 (((-621 |#4|) (-621 |#4|) $) 18 (|has| |#1| (-541)))) (-2953 (((-621 |#4|) (-621 |#4|) $) 19 (|has| |#1| (-541)))) (-2714 (((-3 $ "failed") (-621 |#4|)) 36)) (-2659 (($ (-621 |#4|)) 35)) (-3657 (((-3 $ "failed") $) 82)) (-1903 ((|#4| |#4| $) 89)) (-3676 (($ $) 68 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ |#4| $) 67 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4337)))) (-3675 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-541)))) (-2217 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-3615 ((|#4| |#4| $) 87)) (-2557 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4337))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4337))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-1439 (((-2 (|:| -2681 (-621 |#4|)) (|:| -1359 (-621 |#4|))) $) 105)) (-2989 (((-621 |#4|) $) 52 (|has| $ (-6 -4337)))) (-2812 (((-112) |#4| $) 104) (((-112) $) 103)) (-2745 ((|#3| $) 34)) (-3194 (((-112) $ (-747)) 43)) (-1562 (((-621 |#4|) $) 53 (|has| $ (-6 -4337)))) (-2090 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#4| |#4|) $) 47)) (-2561 (((-621 |#3|) $) 32)) (-2378 (((-112) |#3| $) 31)) (-1508 (((-112) $ (-747)) 42)) (-3851 (((-1125) $) 9)) (-3829 (((-3 |#4| "failed") $) 83)) (-1638 (((-621 |#4|) $) 107)) (-2170 (((-112) |#4| $) 99) (((-112) $) 95)) (-3270 ((|#4| |#4| $) 90)) (-2473 (((-112) $ $) 110)) (-4203 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-541)))) (-1335 (((-112) |#4| $) 100) (((-112) $) 96)) (-4298 ((|#4| |#4| $) 91)) (-3990 (((-1087) $) 10)) (-3646 (((-3 |#4| "failed") $) 84)) (-3779 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-2640 (((-3 $ "failed") $ |#4|) 78)) (-2763 (($ $ |#4|) 77)) (-1780 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 |#4|) (-621 |#4|)) 59 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-287 |#4|)) 57 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-621 (-287 |#4|))) 56 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))) (-4144 (((-112) $ $) 38)) (-3670 (((-112) $) 41)) (-3742 (($) 40)) (-3701 (((-747) $) 106)) (-4000 (((-747) |#4| $) 54 (-12 (|has| |#4| (-1067)) (|has| $ (-6 -4337)))) (((-747) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4337)))) (-2281 (($ $) 39)) (-2845 (((-525) $) 69 (|has| |#4| (-594 (-525))))) (-3854 (($ (-621 |#4|)) 60)) (-2858 (($ $ |#3|) 28)) (-3758 (($ $ |#3|) 30)) (-1962 (($ $) 88)) (-4317 (($ $ |#3|) 29)) (-3846 (((-834) $) 11) (((-621 |#4|) $) 37)) (-1824 (((-747) $) 76 (|has| |#3| (-361)))) (-2574 (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-1716 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) 98)) (-3527 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4337)))) (-3002 (((-621 |#3|) $) 81)) (-1606 (((-112) |#3| $) 80)) (-2389 (((-112) $ $) 6)) (-3775 (((-747) $) 46 (|has| $ (-6 -4337)))))
-(((-1173 |#1| |#2| |#3| |#4|) (-138) (-541) (-769) (-823) (-1032 |t#1| |t#2| |t#3|)) (T -1173))
-((-2473 (*1 *2 *1 *1) (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))) (-2574 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2317 (-621 *8)))) (-5 *3 (-621 *8)) (-4 *1 (-1173 *5 *6 *7 *8)))) (-2574 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9)) (-4 *9 (-1032 *6 *7 *8)) (-4 *6 (-541)) (-4 *7 (-769)) (-4 *8 (-823)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2317 (-621 *9)))) (-5 *3 (-621 *9)) (-4 *1 (-1173 *6 *7 *8 *9)))) (-1638 (*1 *2 *1) (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-621 *6)))) (-3701 (*1 *2 *1) (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-747)))) (-1439 (*1 *2 *1) (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-2 (|:| -2681 (-621 *6)) (|:| -1359 (-621 *6)))))) (-2812 (*1 *2 *3 *1) (-12 (-4 *1 (-1173 *4 *5 *6 *3)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-2812 (*1 *2 *1) (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))) (-2217 (*1 *2 *3 *1 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1173 *5 *6 *7 *3)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-112)))) (-3282 (*1 *2 *3 *1) (-12 (-4 *1 (-1173 *4 *5 *6 *3)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-1335 (*1 *2 *3 *1) (-12 (-4 *1 (-1173 *4 *5 *6 *3)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-2170 (*1 *2 *3 *1) (-12 (-4 *1 (-1173 *4 *5 *6 *3)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-1716 (*1 *2 *1 *3) (-12 (-5 *3 (-1 (-112) *7 (-621 *7))) (-4 *1 (-1173 *4 *5 *6 *7)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-3282 (*1 *2 *1) (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))) (-1335 (*1 *2 *1) (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))) (-2170 (*1 *2 *1) (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))) (-2557 (*1 *2 *2 *1 *3 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-112) *2 *2)) (-4 *1 (-1173 *5 *6 *7 *2)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *2 (-1032 *5 *6 *7)))) (-2737 (*1 *2 *2 *1 *3 *4) (-12 (-5 *2 (-621 *8)) (-5 *3 (-1 *8 *8 *8)) (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1173 *5 *6 *7 *8)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)))) (-2731 (*1 *2 *2 *1) (-12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-4298 (*1 *2 *2 *1) (-12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-3270 (*1 *2 *2 *1) (-12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-1903 (*1 *2 *2 *1) (-12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-1962 (*1 *1 *1) (-12 (-4 *1 (-1173 *2 *3 *4 *5)) (-4 *2 (-541)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-1032 *2 *3 *4)))) (-3615 (*1 *2 *2 *1) (-12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-2866 (*1 *2 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1173 *4 *5 *6 *7)))) (-3514 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-621 (-2 (|:| -2681 *1) (|:| -1359 (-621 *7))))) (-5 *3 (-621 *7)) (-4 *1 (-1173 *4 *5 *6 *7)))) (-3646 (*1 *2 *1) (|partial| -12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-3829 (*1 *2 *1) (|partial| -12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-3657 (*1 *1 *1) (|partial| -12 (-4 *1 (-1173 *2 *3 *4 *5)) (-4 *2 (-541)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-1032 *2 *3 *4)))) (-3002 (*1 *2 *1) (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-621 *5)))) (-1606 (*1 *2 *3 *1) (-12 (-4 *1 (-1173 *4 *5 *3 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *3 (-823)) (-4 *6 (-1032 *4 *5 *3)) (-5 *2 (-112)))) (-1489 (*1 *2 *1 *3) (|partial| -12 (-4 *1 (-1173 *4 *5 *3 *2)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *3 (-823)) (-4 *2 (-1032 *4 *5 *3)))) (-2640 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-2763 (*1 *1 *1 *2) (-12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-1824 (*1 *2 *1) (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *5 (-361)) (-5 *2 (-747)))))
-(-13 (-947 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-6 -4337) (-6 -4338) (-15 -2473 ((-112) $ $)) (-15 -2574 ((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |t#4|))) "failed") (-621 |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2574 ((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |t#4|))) "failed") (-621 |t#4|) (-1 (-112) |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -1638 ((-621 |t#4|) $)) (-15 -3701 ((-747) $)) (-15 -1439 ((-2 (|:| -2681 (-621 |t#4|)) (|:| -1359 (-621 |t#4|))) $)) (-15 -2812 ((-112) |t#4| $)) (-15 -2812 ((-112) $)) (-15 -2217 ((-112) |t#4| $ (-1 (-112) |t#4| |t#4|))) (-15 -3282 ((-112) |t#4| $)) (-15 -1335 ((-112) |t#4| $)) (-15 -2170 ((-112) |t#4| $)) (-15 -1716 ((-112) $ (-1 (-112) |t#4| (-621 |t#4|)))) (-15 -3282 ((-112) $)) (-15 -1335 ((-112) $)) (-15 -2170 ((-112) $)) (-15 -2557 (|t#4| |t#4| $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2737 ((-621 |t#4|) (-621 |t#4|) $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2731 (|t#4| |t#4| $)) (-15 -4298 (|t#4| |t#4| $)) (-15 -3270 (|t#4| |t#4| $)) (-15 -1903 (|t#4| |t#4| $)) (-15 -1962 ($ $)) (-15 -3615 (|t#4| |t#4| $)) (-15 -2866 ((-621 $) (-621 |t#4|))) (-15 -3514 ((-621 (-2 (|:| -2681 $) (|:| -1359 (-621 |t#4|)))) (-621 |t#4|))) (-15 -3646 ((-3 |t#4| "failed") $)) (-15 -3829 ((-3 |t#4| "failed") $)) (-15 -3657 ((-3 $ "failed") $)) (-15 -3002 ((-621 |t#3|) $)) (-15 -1606 ((-112) |t#3| $)) (-15 -1489 ((-3 |t#4| "failed") $ |t#3|)) (-15 -2640 ((-3 $ "failed") $ |t#4|)) (-15 -2763 ($ $ |t#4|)) (IF (|has| |t#3| (-361)) (-15 -1824 ((-747) $)) |%noBranch|)))
-(((-34) . T) ((-101) . T) ((-593 (-621 |#4|)) . T) ((-593 (-834)) . T) ((-149 |#4|) . T) ((-594 (-525)) |has| |#4| (-594 (-525))) ((-302 |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))) ((-481 |#4|) . T) ((-505 |#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))) ((-947 |#1| |#2| |#3| |#4|) . T) ((-1067) . T) ((-1180) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2272 (((-621 (-1143)) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-1664 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) NIL)) (-2134 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1640 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1685 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) NIL T CONST)) (-2070 (($ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-1414 (((-923 |#1|) $ (-747)) 17) (((-923 |#1|) $ (-747) (-747)) NIL)) (-2871 (((-112) $) NIL)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2088 (((-747) $ (-1143)) NIL) (((-747) $ (-1143) (-747)) NIL)) (-2675 (((-112) $) NIL)) (-4187 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2205 (((-112) $) NIL)) (-2246 (($ $ (-621 (-1143)) (-621 (-521 (-1143)))) NIL) (($ $ (-1143) (-521 (-1143))) NIL) (($ |#1| (-521 (-1143))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-3632 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-3851 (((-1125) $) NIL)) (-3893 (($ $ (-1143)) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1143) |#1|) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3990 (((-1087) $) NIL)) (-2238 (($ (-1 $) (-1143) |#1|) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2763 (($ $ (-747)) NIL)) (-2042 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-2719 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2686 (($ $ (-1143) $) NIL) (($ $ (-621 (-1143)) (-621 $)) NIL) (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL)) (-3456 (($ $ (-1143)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL)) (-3701 (((-521 (-1143)) $) NIL)) (-1698 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1977 (($ $) NIL)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL (|has| |#1| (-170))) (($ $) NIL (|has| |#1| (-541))) (($ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-1143)) NIL) (($ (-923 |#1|)) NIL)) (-2152 ((|#1| $ (-521 (-1143))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL) (((-923 |#1|) $ (-747)) NIL)) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) NIL)) (-1733 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1710 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1934 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3276 (($) NIL T CONST)) (-3287 (($) NIL T CONST)) (-1702 (($ $ (-1143)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL)) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-1174 |#1|) (-13 (-717 |#1| (-1143)) (-10 -8 (-15 -2152 ((-923 |#1|) $ (-747))) (-15 -3846 ($ (-1143))) (-15 -3846 ($ (-923 |#1|))) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -3893 ($ $ (-1143) |#1|)) (-15 -2238 ($ (-1 $) (-1143) |#1|))) |%noBranch|))) (-1018)) (T -1174))
-((-2152 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *2 (-923 *4)) (-5 *1 (-1174 *4)) (-4 *4 (-1018)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1174 *3)) (-4 *3 (-1018)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-923 *3)) (-4 *3 (-1018)) (-5 *1 (-1174 *3)))) (-3893 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *1 (-1174 *3)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)))) (-2238 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1174 *4))) (-5 *3 (-1143)) (-5 *1 (-1174 *4)) (-4 *4 (-38 (-400 (-549)))) (-4 *4 (-1018)))))
-(-13 (-717 |#1| (-1143)) (-10 -8 (-15 -2152 ((-923 |#1|) $ (-747))) (-15 -3846 ($ (-1143))) (-15 -3846 ($ (-923 |#1|))) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -3893 ($ $ (-1143) |#1|)) (-15 -2238 ($ (-1 $) (-1143) |#1|))) |%noBranch|)))
-((-3618 (($ |#1| (-621 (-621 (-914 (-219)))) (-112)) 19)) (-1912 (((-112) $ (-112)) 18)) (-1470 (((-112) $) 17)) (-1259 (((-621 (-621 (-914 (-219)))) $) 13)) (-2626 ((|#1| $) 8)) (-2757 (((-112) $) 15)))
-(((-1175 |#1|) (-10 -8 (-15 -2626 (|#1| $)) (-15 -1259 ((-621 (-621 (-914 (-219)))) $)) (-15 -2757 ((-112) $)) (-15 -1470 ((-112) $)) (-15 -1912 ((-112) $ (-112))) (-15 -3618 ($ |#1| (-621 (-621 (-914 (-219)))) (-112)))) (-945)) (T -1175))
-((-3618 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-112)) (-5 *1 (-1175 *2)) (-4 *2 (-945)))) (-1912 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1175 *3)) (-4 *3 (-945)))) (-1470 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1175 *3)) (-4 *3 (-945)))) (-2757 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1175 *3)) (-4 *3 (-945)))) (-1259 (*1 *2 *1) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *1 (-1175 *3)) (-4 *3 (-945)))) (-2626 (*1 *2 *1) (-12 (-5 *1 (-1175 *2)) (-4 *2 (-945)))))
-(-10 -8 (-15 -2626 (|#1| $)) (-15 -1259 ((-621 (-621 (-914 (-219)))) $)) (-15 -2757 ((-112) $)) (-15 -1470 ((-112) $)) (-15 -1912 ((-112) $ (-112))) (-15 -3618 ($ |#1| (-621 (-621 (-914 (-219)))) (-112))))
-((-3956 (((-914 (-219)) (-914 (-219))) 25)) (-2798 (((-914 (-219)) (-219) (-219) (-219) (-219)) 10)) (-3873 (((-621 (-914 (-219))) (-914 (-219)) (-914 (-219)) (-914 (-219)) (-219) (-621 (-621 (-219)))) 37)) (-1706 (((-219) (-914 (-219)) (-914 (-219))) 21)) (-2168 (((-914 (-219)) (-914 (-219)) (-914 (-219))) 22)) (-4055 (((-621 (-621 (-219))) (-549)) 31)) (-2500 (((-914 (-219)) (-914 (-219)) (-914 (-219))) 20)) (-2486 (((-914 (-219)) (-914 (-219)) (-914 (-219))) 19)) (* (((-914 (-219)) (-219) (-914 (-219))) 18)))
-(((-1176) (-10 -7 (-15 -2798 ((-914 (-219)) (-219) (-219) (-219) (-219))) (-15 * ((-914 (-219)) (-219) (-914 (-219)))) (-15 -2486 ((-914 (-219)) (-914 (-219)) (-914 (-219)))) (-15 -2500 ((-914 (-219)) (-914 (-219)) (-914 (-219)))) (-15 -1706 ((-219) (-914 (-219)) (-914 (-219)))) (-15 -2168 ((-914 (-219)) (-914 (-219)) (-914 (-219)))) (-15 -3956 ((-914 (-219)) (-914 (-219)))) (-15 -4055 ((-621 (-621 (-219))) (-549))) (-15 -3873 ((-621 (-914 (-219))) (-914 (-219)) (-914 (-219)) (-914 (-219)) (-219) (-621 (-621 (-219))))))) (T -1176))
-((-3873 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-621 (-621 (-219)))) (-5 *4 (-219)) (-5 *2 (-621 (-914 *4))) (-5 *1 (-1176)) (-5 *3 (-914 *4)))) (-4055 (*1 *2 *3) (-12 (-5 *3 (-549)) (-5 *2 (-621 (-621 (-219)))) (-5 *1 (-1176)))) (-3956 (*1 *2 *2) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1176)))) (-2168 (*1 *2 *2 *2) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1176)))) (-1706 (*1 *2 *3 *3) (-12 (-5 *3 (-914 (-219))) (-5 *2 (-219)) (-5 *1 (-1176)))) (-2500 (*1 *2 *2 *2) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1176)))) (-2486 (*1 *2 *2 *2) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1176)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-914 (-219))) (-5 *3 (-219)) (-5 *1 (-1176)))) (-2798 (*1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1176)) (-5 *3 (-219)))))
-(-10 -7 (-15 -2798 ((-914 (-219)) (-219) (-219) (-219) (-219))) (-15 * ((-914 (-219)) (-219) (-914 (-219)))) (-15 -2486 ((-914 (-219)) (-914 (-219)) (-914 (-219)))) (-15 -2500 ((-914 (-219)) (-914 (-219)) (-914 (-219)))) (-15 -1706 ((-219) (-914 (-219)) (-914 (-219)))) (-15 -2168 ((-914 (-219)) (-914 (-219)) (-914 (-219)))) (-15 -3956 ((-914 (-219)) (-914 (-219)))) (-15 -4055 ((-621 (-621 (-219))) (-549))) (-15 -3873 ((-621 (-914 (-219))) (-914 (-219)) (-914 (-219)) (-914 (-219)) (-219) (-621 (-621 (-219))))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-1489 ((|#1| $ (-747)) 13)) (-4210 (((-747) $) 12)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-3846 (((-929 |#1|) $) 10) (($ (-929 |#1|)) 9) (((-834) $) 23 (|has| |#1| (-593 (-834))))) (-2389 (((-112) $ $) 16 (|has| |#1| (-1067)))))
-(((-1177 |#1|) (-13 (-593 (-929 |#1|)) (-10 -8 (-15 -3846 ($ (-929 |#1|))) (-15 -1489 (|#1| $ (-747))) (-15 -4210 ((-747) $)) (IF (|has| |#1| (-593 (-834))) (-6 (-593 (-834))) |%noBranch|) (IF (|has| |#1| (-1067)) (-6 (-1067)) |%noBranch|))) (-1180)) (T -1177))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-929 *3)) (-4 *3 (-1180)) (-5 *1 (-1177 *3)))) (-1489 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *1 (-1177 *2)) (-4 *2 (-1180)))) (-4210 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-1177 *3)) (-4 *3 (-1180)))))
-(-13 (-593 (-929 |#1|)) (-10 -8 (-15 -3846 ($ (-929 |#1|))) (-15 -1489 (|#1| $ (-747))) (-15 -4210 ((-747) $)) (IF (|has| |#1| (-593 (-834))) (-6 (-593 (-834))) |%noBranch|) (IF (|has| |#1| (-1067)) (-6 (-1067)) |%noBranch|)))
-((-3877 (((-411 (-1139 (-1139 |#1|))) (-1139 (-1139 |#1|)) (-549)) 80)) (-3343 (((-411 (-1139 (-1139 |#1|))) (-1139 (-1139 |#1|))) 74)) (-2221 (((-411 (-1139 (-1139 |#1|))) (-1139 (-1139 |#1|))) 59)))
-(((-1178 |#1|) (-10 -7 (-15 -3343 ((-411 (-1139 (-1139 |#1|))) (-1139 (-1139 |#1|)))) (-15 -2221 ((-411 (-1139 (-1139 |#1|))) (-1139 (-1139 |#1|)))) (-15 -3877 ((-411 (-1139 (-1139 |#1|))) (-1139 (-1139 |#1|)) (-549)))) (-342)) (T -1178))
-((-3877 (*1 *2 *3 *4) (-12 (-5 *4 (-549)) (-4 *5 (-342)) (-5 *2 (-411 (-1139 (-1139 *5)))) (-5 *1 (-1178 *5)) (-5 *3 (-1139 (-1139 *5))))) (-2221 (*1 *2 *3) (-12 (-4 *4 (-342)) (-5 *2 (-411 (-1139 (-1139 *4)))) (-5 *1 (-1178 *4)) (-5 *3 (-1139 (-1139 *4))))) (-3343 (*1 *2 *3) (-12 (-4 *4 (-342)) (-5 *2 (-411 (-1139 (-1139 *4)))) (-5 *1 (-1178 *4)) (-5 *3 (-1139 (-1139 *4))))))
-(-10 -7 (-15 -3343 ((-411 (-1139 (-1139 |#1|))) (-1139 (-1139 |#1|)))) (-15 -2221 ((-411 (-1139 (-1139 |#1|))) (-1139 (-1139 |#1|)))) (-15 -3877 ((-411 (-1139 (-1139 |#1|))) (-1139 (-1139 |#1|)) (-549))))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL) (($ (-1148)) 8)) (-2389 (((-112) $ $) NIL)))
-(((-1179) (-13 (-1050) (-10 -8 (-15 -3846 ($ (-1148)))))) (T -1179))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1148)) (-5 *1 (-1179)))))
-(-13 (-1050) (-10 -8 (-15 -3846 ($ (-1148)))))
-NIL
-(((-1180) (-138)) (T -1180))
-NIL
-(-13 (-10 -7 (-6 -2624)))
-((-3061 (((-112)) 15)) (-3740 (((-1231) (-621 |#1|) (-621 |#1|)) 19) (((-1231) (-621 |#1|)) 20)) (-3194 (((-112) |#1| |#1|) 32 (|has| |#1| (-823)))) (-1508 (((-112) |#1| |#1| (-1 (-112) |#1| |#1|)) 27) (((-3 (-112) "failed") |#1| |#1|) 25)) (-1299 ((|#1| (-621 |#1|)) 33 (|has| |#1| (-823))) ((|#1| (-621 |#1|) (-1 (-112) |#1| |#1|)) 28)) (-2074 (((-2 (|:| -1578 (-621 |#1|)) (|:| -1667 (-621 |#1|)))) 17)))
-(((-1181 |#1|) (-10 -7 (-15 -3740 ((-1231) (-621 |#1|))) (-15 -3740 ((-1231) (-621 |#1|) (-621 |#1|))) (-15 -2074 ((-2 (|:| -1578 (-621 |#1|)) (|:| -1667 (-621 |#1|))))) (-15 -1508 ((-3 (-112) "failed") |#1| |#1|)) (-15 -1508 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -1299 (|#1| (-621 |#1|) (-1 (-112) |#1| |#1|))) (-15 -3061 ((-112))) (IF (|has| |#1| (-823)) (PROGN (-15 -1299 (|#1| (-621 |#1|))) (-15 -3194 ((-112) |#1| |#1|))) |%noBranch|)) (-1067)) (T -1181))
-((-3194 (*1 *2 *3 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1181 *3)) (-4 *3 (-823)) (-4 *3 (-1067)))) (-1299 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-1067)) (-4 *2 (-823)) (-5 *1 (-1181 *2)))) (-3061 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1181 *3)) (-4 *3 (-1067)))) (-1299 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1181 *2)) (-4 *2 (-1067)))) (-1508 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1067)) (-5 *2 (-112)) (-5 *1 (-1181 *3)))) (-1508 (*1 *2 *3 *3) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1181 *3)) (-4 *3 (-1067)))) (-2074 (*1 *2) (-12 (-5 *2 (-2 (|:| -1578 (-621 *3)) (|:| -1667 (-621 *3)))) (-5 *1 (-1181 *3)) (-4 *3 (-1067)))) (-3740 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *4)) (-4 *4 (-1067)) (-5 *2 (-1231)) (-5 *1 (-1181 *4)))) (-3740 (*1 *2 *3) (-12 (-5 *3 (-621 *4)) (-4 *4 (-1067)) (-5 *2 (-1231)) (-5 *1 (-1181 *4)))))
-(-10 -7 (-15 -3740 ((-1231) (-621 |#1|))) (-15 -3740 ((-1231) (-621 |#1|) (-621 |#1|))) (-15 -2074 ((-2 (|:| -1578 (-621 |#1|)) (|:| -1667 (-621 |#1|))))) (-15 -1508 ((-3 (-112) "failed") |#1| |#1|)) (-15 -1508 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -1299 (|#1| (-621 |#1|) (-1 (-112) |#1| |#1|))) (-15 -3061 ((-112))) (IF (|has| |#1| (-823)) (PROGN (-15 -1299 (|#1| (-621 |#1|))) (-15 -3194 ((-112) |#1| |#1|))) |%noBranch|))
-((-2847 (((-1231) (-621 (-1143)) (-621 (-1143))) 13) (((-1231) (-621 (-1143))) 11)) (-2494 (((-1231)) 14)) (-2689 (((-2 (|:| -1667 (-621 (-1143))) (|:| -1578 (-621 (-1143))))) 18)))
-(((-1182) (-10 -7 (-15 -2847 ((-1231) (-621 (-1143)))) (-15 -2847 ((-1231) (-621 (-1143)) (-621 (-1143)))) (-15 -2689 ((-2 (|:| -1667 (-621 (-1143))) (|:| -1578 (-621 (-1143)))))) (-15 -2494 ((-1231))))) (T -1182))
-((-2494 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-1182)))) (-2689 (*1 *2) (-12 (-5 *2 (-2 (|:| -1667 (-621 (-1143))) (|:| -1578 (-621 (-1143))))) (-5 *1 (-1182)))) (-2847 (*1 *2 *3 *3) (-12 (-5 *3 (-621 (-1143))) (-5 *2 (-1231)) (-5 *1 (-1182)))) (-2847 (*1 *2 *3) (-12 (-5 *3 (-621 (-1143))) (-5 *2 (-1231)) (-5 *1 (-1182)))))
-(-10 -7 (-15 -2847 ((-1231) (-621 (-1143)))) (-15 -2847 ((-1231) (-621 (-1143)) (-621 (-1143)))) (-15 -2689 ((-2 (|:| -1667 (-621 (-1143))) (|:| -1578 (-621 (-1143)))))) (-15 -2494 ((-1231))))
-((-3979 (($ $) 17)) (-1420 (((-112) $) 24)))
-(((-1183 |#1|) (-10 -8 (-15 -3979 (|#1| |#1|)) (-15 -1420 ((-112) |#1|))) (-1184)) (T -1183))
-NIL
-(-10 -8 (-15 -3979 (|#1| |#1|)) (-15 -1420 ((-112) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-2001 (((-3 $ "failed") $ $) 19)) (-3979 (($ $) 49)) (-2402 (((-411 $) $) 50)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-1420 (((-112) $) 51)) (-2675 (((-112) $) 30)) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-2121 (((-411 $) $) 48)) (-2042 (((-3 $ "failed") $ $) 40)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41)) (-2082 (((-747)) 28)) (-1498 (((-112) $ $) 37)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
-(((-1184) (-138)) (T -1184))
-((-1420 (*1 *2 *1) (-12 (-4 *1 (-1184)) (-5 *2 (-112)))) (-2402 (*1 *2 *1) (-12 (-5 *2 (-411 *1)) (-4 *1 (-1184)))) (-3979 (*1 *1 *1) (-4 *1 (-1184))) (-2121 (*1 *2 *1) (-12 (-5 *2 (-411 *1)) (-4 *1 (-1184)))))
-(-13 (-444) (-10 -8 (-15 -1420 ((-112) $)) (-15 -2402 ((-411 $) $)) (-15 -3979 ($ $)) (-15 -2121 ((-411 $) $))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-444) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-2797 (((-1190 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1190 |#1| |#3| |#5|)) 23)))
-(((-1185 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2797 ((-1190 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1190 |#1| |#3| |#5|)))) (-1018) (-1018) (-1143) (-1143) |#1| |#2|) (T -1185))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1190 *5 *7 *9)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-14 *7 (-1143)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1190 *6 *8 *10)) (-5 *1 (-1185 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1143)))))
-(-10 -7 (-15 -2797 ((-1190 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1190 |#1| |#3| |#5|))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2272 (((-621 (-1048)) $) 72)) (-3011 (((-1143) $) 101)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-2258 (($ $) 50 (|has| |#1| (-541)))) (-2799 (((-112) $) 52 (|has| |#1| (-541)))) (-3896 (($ $ (-549)) 96) (($ $ (-549) (-549)) 95)) (-2212 (((-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $) 103)) (-1664 (($ $) 133 (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) 116 (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) 19)) (-3979 (($ $) 160 (|has| |#1| (-356)))) (-2402 (((-411 $) $) 161 (|has| |#1| (-356)))) (-2134 (($ $) 115 (|has| |#1| (-38 (-400 (-549)))))) (-3866 (((-112) $ $) 151 (|has| |#1| (-356)))) (-1640 (($ $) 132 (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) 117 (|has| |#1| (-38 (-400 (-549)))))) (-2826 (($ (-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|)))) 171)) (-1685 (($ $) 131 (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) 118 (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) 17 T CONST)) (-2095 (($ $ $) 155 (|has| |#1| (-356)))) (-2070 (($ $) 58)) (-2114 (((-3 $ "failed") $) 32)) (-3906 (((-400 (-923 |#1|)) $ (-549)) 169 (|has| |#1| (-541))) (((-400 (-923 |#1|)) $ (-549) (-549)) 168 (|has| |#1| (-541)))) (-2067 (($ $ $) 154 (|has| |#1| (-356)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 149 (|has| |#1| (-356)))) (-1420 (((-112) $) 162 (|has| |#1| (-356)))) (-2871 (((-112) $) 71)) (-1425 (($) 143 (|has| |#1| (-38 (-400 (-549)))))) (-2088 (((-549) $) 98) (((-549) $ (-549)) 97)) (-2675 (((-112) $) 30)) (-4187 (($ $ (-549)) 114 (|has| |#1| (-38 (-400 (-549)))))) (-2992 (($ $ (-892)) 99)) (-2876 (($ (-1 |#1| (-549)) $) 170)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 158 (|has| |#1| (-356)))) (-2205 (((-112) $) 60)) (-2246 (($ |#1| (-549)) 59) (($ $ (-1048) (-549)) 74) (($ $ (-621 (-1048)) (-621 (-549))) 73)) (-2797 (($ (-1 |#1| |#1|) $) 61)) (-3632 (($ $) 140 (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) 63)) (-2043 ((|#1| $) 64)) (-3697 (($ (-621 $)) 147 (|has| |#1| (-356))) (($ $ $) 146 (|has| |#1| (-356)))) (-3851 (((-1125) $) 9)) (-1992 (($ $) 163 (|has| |#1| (-356)))) (-3893 (($ $) 167 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1143)) 166 (-1536 (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-930)) (|has| |#1| (-1165)) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-15 -2272 ((-621 (-1143)) |#1|))) (|has| |#1| (-15 -3893 (|#1| |#1| (-1143)))) (|has| |#1| (-38 (-400 (-549)))))))) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 148 (|has| |#1| (-356)))) (-3727 (($ (-621 $)) 145 (|has| |#1| (-356))) (($ $ $) 144 (|has| |#1| (-356)))) (-2121 (((-411 $) $) 159 (|has| |#1| (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 157 (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 156 (|has| |#1| (-356)))) (-2763 (($ $ (-549)) 93)) (-2042 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 150 (|has| |#1| (-356)))) (-2719 (($ $) 141 (|has| |#1| (-38 (-400 (-549)))))) (-2686 (((-1123 |#1|) $ |#1|) 92 (|has| |#1| (-15 ** (|#1| |#1| (-549)))))) (-3684 (((-747) $) 152 (|has| |#1| (-356)))) (-3341 ((|#1| $ (-549)) 102) (($ $ $) 79 (|has| (-549) (-1079)))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 153 (|has| |#1| (-356)))) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) 87 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-1143) (-747)) 86 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1143))) 85 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-1143)) 84 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-747)) 82 (|has| |#1| (-15 * (|#1| (-549) |#1|)))) (($ $) 80 (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (-3701 (((-549) $) 62)) (-1698 (($ $) 130 (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) 119 (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) 129 (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) 120 (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) 128 (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) 121 (|has| |#1| (-38 (-400 (-549)))))) (-1977 (($ $) 70)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 45 (|has| |#1| (-170))) (($ (-400 (-549))) 55 (|has| |#1| (-38 (-400 (-549))))) (($ $) 47 (|has| |#1| (-541)))) (-2152 ((|#1| $ (-549)) 57)) (-2210 (((-3 $ "failed") $) 46 (|has| |#1| (-143)))) (-2082 (((-747)) 28)) (-2597 ((|#1| $) 100)) (-1733 (($ $) 139 (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) 127 (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) 51 (|has| |#1| (-541)))) (-1710 (($ $) 138 (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) 126 (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) 137 (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) 125 (|has| |#1| (-38 (-400 (-549)))))) (-2661 ((|#1| $ (-549)) 94 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-549)))) (|has| |#1| (-15 -3846 (|#1| (-1143))))))) (-1934 (($ $) 136 (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) 124 (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) 135 (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) 123 (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) 134 (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) 122 (|has| |#1| (-38 (-400 (-549)))))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ (-621 (-1143)) (-621 (-747))) 91 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-1143) (-747)) 90 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1143))) 89 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-1143)) 88 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-747)) 83 (|has| |#1| (-15 * (|#1| (-549) |#1|)))) (($ $) 81 (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (-2389 (((-112) $ $) 6)) (-2513 (($ $ |#1|) 56 (|has| |#1| (-356))) (($ $ $) 165 (|has| |#1| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 164 (|has| |#1| (-356))) (($ $ $) 142 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 113 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
-(((-1186 |#1|) (-138) (-1018)) (T -1186))
-((-2826 (*1 *1 *2) (-12 (-5 *2 (-1123 (-2 (|:| |k| (-549)) (|:| |c| *3)))) (-4 *3 (-1018)) (-4 *1 (-1186 *3)))) (-2876 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-549))) (-4 *1 (-1186 *3)) (-4 *3 (-1018)))) (-3906 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-1186 *4)) (-4 *4 (-1018)) (-4 *4 (-541)) (-5 *2 (-400 (-923 *4))))) (-3906 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-549)) (-4 *1 (-1186 *4)) (-4 *4 (-1018)) (-4 *4 (-541)) (-5 *2 (-400 (-923 *4))))) (-3893 (*1 *1 *1) (-12 (-4 *1 (-1186 *2)) (-4 *2 (-1018)) (-4 *2 (-38 (-400 (-549)))))) (-3893 (*1 *1 *1 *2) (-1536 (-12 (-5 *2 (-1143)) (-4 *1 (-1186 *3)) (-4 *3 (-1018)) (-12 (-4 *3 (-29 (-549))) (-4 *3 (-930)) (-4 *3 (-1165)) (-4 *3 (-38 (-400 (-549)))))) (-12 (-5 *2 (-1143)) (-4 *1 (-1186 *3)) (-4 *3 (-1018)) (-12 (|has| *3 (-15 -2272 ((-621 *2) *3))) (|has| *3 (-15 -3893 (*3 *3 *2))) (-4 *3 (-38 (-400 (-549)))))))))
-(-13 (-1204 |t#1| (-549)) (-10 -8 (-15 -2826 ($ (-1123 (-2 (|:| |k| (-549)) (|:| |c| |t#1|))))) (-15 -2876 ($ (-1 |t#1| (-549)) $)) (IF (|has| |t#1| (-541)) (PROGN (-15 -3906 ((-400 (-923 |t#1|)) $ (-549))) (-15 -3906 ((-400 (-923 |t#1|)) $ (-549) (-549)))) |%noBranch|) (IF (|has| |t#1| (-38 (-400 (-549)))) (PROGN (-15 -3893 ($ $)) (IF (|has| |t#1| (-15 -3893 (|t#1| |t#1| (-1143)))) (IF (|has| |t#1| (-15 -2272 ((-621 (-1143)) |t#1|))) (-15 -3893 ($ $ (-1143))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1165)) (IF (|has| |t#1| (-930)) (IF (|has| |t#1| (-29 (-549))) (-15 -3893 ($ $ (-1143))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-973)) (-6 (-1165))) |%noBranch|) (IF (|has| |t#1| (-356)) (-6 (-356)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-549)) . T) ((-25) . T) ((-38 #1=(-400 (-549))) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-35) |has| |#1| (-38 (-400 (-549)))) ((-94) |has| |#1| (-38 (-400 (-549)))) ((-101) . T) ((-111 #1# #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-227) |has| |#1| (-15 * (|#1| (-549) |#1|))) ((-237) |has| |#1| (-356)) ((-277) |has| |#1| (-38 (-400 (-549)))) ((-279 $ $) |has| (-549) (-1079)) ((-283) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-300) |has| |#1| (-356)) ((-356) |has| |#1| (-356)) ((-444) |has| |#1| (-356)) ((-484) |has| |#1| (-38 (-400 (-549)))) ((-541) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-624 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-703) . T) ((-871 (-1143)) -12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))) ((-944 |#1| #0# (-1048)) . T) ((-891) |has| |#1| (-356)) ((-973) |has| |#1| (-38 (-400 (-549)))) ((-1024 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1165) |has| |#1| (-38 (-400 (-549)))) ((-1168) |has| |#1| (-38 (-400 (-549)))) ((-1184) |has| |#1| (-356)) ((-1204 |#1| #0#) . T))
-((-1763 (((-112) $) 12)) (-2714 (((-3 |#3| "failed") $) 17) (((-3 (-1143) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 (-549) "failed") $) NIL)) (-2659 ((|#3| $) 14) (((-1143) $) NIL) (((-400 (-549)) $) NIL) (((-549) $) NIL)))
-(((-1187 |#1| |#2| |#3|) (-10 -8 (-15 -2659 ((-549) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2659 ((-1143) |#1|)) (-15 -2714 ((-3 (-1143) "failed") |#1|)) (-15 -2659 (|#3| |#1|)) (-15 -2714 ((-3 |#3| "failed") |#1|)) (-15 -1763 ((-112) |#1|))) (-1188 |#2| |#3|) (-1018) (-1217 |#2|)) (T -1187))
-NIL
-(-10 -8 (-15 -2659 ((-549) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2659 ((-1143) |#1|)) (-15 -2714 ((-3 (-1143) "failed") |#1|)) (-15 -2659 (|#3| |#1|)) (-15 -2714 ((-3 |#3| "failed") |#1|)) (-15 -1763 ((-112) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-3329 ((|#2| $) 228 (-1821 (|has| |#2| (-300)) (|has| |#1| (-356))))) (-2272 (((-621 (-1048)) $) 72)) (-3011 (((-1143) $) 101)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-2258 (($ $) 50 (|has| |#1| (-541)))) (-2799 (((-112) $) 52 (|has| |#1| (-541)))) (-3896 (($ $ (-549)) 96) (($ $ (-549) (-549)) 95)) (-2212 (((-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $) 103)) (-3836 ((|#2| $) 264)) (-3055 (((-3 |#2| "failed") $) 260)) (-2336 ((|#2| $) 261)) (-1664 (($ $) 133 (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) 116 (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) 19)) (-3231 (((-411 (-1139 $)) (-1139 $)) 237 (-1821 (|has| |#2| (-880)) (|has| |#1| (-356))))) (-3979 (($ $) 160 (|has| |#1| (-356)))) (-2402 (((-411 $) $) 161 (|has| |#1| (-356)))) (-2134 (($ $) 115 (|has| |#1| (-38 (-400 (-549)))))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) 234 (-1821 (|has| |#2| (-880)) (|has| |#1| (-356))))) (-3866 (((-112) $ $) 151 (|has| |#1| (-356)))) (-1640 (($ $) 132 (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) 117 (|has| |#1| (-38 (-400 (-549)))))) (-1872 (((-549) $) 246 (-1821 (|has| |#2| (-796)) (|has| |#1| (-356))))) (-2826 (($ (-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|)))) 171)) (-1685 (($ $) 131 (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) 118 (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) 17 T CONST)) (-2714 (((-3 |#2| "failed") $) 267) (((-3 (-549) "failed") $) 256 (-1821 (|has| |#2| (-1009 (-549))) (|has| |#1| (-356)))) (((-3 (-400 (-549)) "failed") $) 254 (-1821 (|has| |#2| (-1009 (-549))) (|has| |#1| (-356)))) (((-3 (-1143) "failed") $) 239 (-1821 (|has| |#2| (-1009 (-1143))) (|has| |#1| (-356))))) (-2659 ((|#2| $) 266) (((-549) $) 257 (-1821 (|has| |#2| (-1009 (-549))) (|has| |#1| (-356)))) (((-400 (-549)) $) 255 (-1821 (|has| |#2| (-1009 (-549))) (|has| |#1| (-356)))) (((-1143) $) 240 (-1821 (|has| |#2| (-1009 (-1143))) (|has| |#1| (-356))))) (-2294 (($ $) 263) (($ (-549) $) 262)) (-2095 (($ $ $) 155 (|has| |#1| (-356)))) (-2070 (($ $) 58)) (-3879 (((-665 |#2|) (-665 $)) 218 (|has| |#1| (-356))) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) 217 (|has| |#1| (-356))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 216 (-1821 (|has| |#2| (-617 (-549))) (|has| |#1| (-356)))) (((-665 (-549)) (-665 $)) 215 (-1821 (|has| |#2| (-617 (-549))) (|has| |#1| (-356))))) (-2114 (((-3 $ "failed") $) 32)) (-3906 (((-400 (-923 |#1|)) $ (-549)) 169 (|has| |#1| (-541))) (((-400 (-923 |#1|)) $ (-549) (-549)) 168 (|has| |#1| (-541)))) (-3239 (($) 230 (-1821 (|has| |#2| (-534)) (|has| |#1| (-356))))) (-2067 (($ $ $) 154 (|has| |#1| (-356)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 149 (|has| |#1| (-356)))) (-1420 (((-112) $) 162 (|has| |#1| (-356)))) (-2772 (((-112) $) 244 (-1821 (|has| |#2| (-796)) (|has| |#1| (-356))))) (-2871 (((-112) $) 71)) (-1425 (($) 143 (|has| |#1| (-38 (-400 (-549)))))) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 222 (-1821 (|has| |#2| (-857 (-372))) (|has| |#1| (-356)))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 221 (-1821 (|has| |#2| (-857 (-549))) (|has| |#1| (-356))))) (-2088 (((-549) $) 98) (((-549) $ (-549)) 97)) (-2675 (((-112) $) 30)) (-1726 (($ $) 226 (|has| |#1| (-356)))) (-1394 ((|#2| $) 224 (|has| |#1| (-356)))) (-4187 (($ $ (-549)) 114 (|has| |#1| (-38 (-400 (-549)))))) (-1681 (((-3 $ "failed") $) 258 (-1821 (|has| |#2| (-1118)) (|has| |#1| (-356))))) (-2374 (((-112) $) 245 (-1821 (|has| |#2| (-796)) (|has| |#1| (-356))))) (-2992 (($ $ (-892)) 99)) (-2876 (($ (-1 |#1| (-549)) $) 170)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 158 (|has| |#1| (-356)))) (-2205 (((-112) $) 60)) (-2246 (($ |#1| (-549)) 59) (($ $ (-1048) (-549)) 74) (($ $ (-621 (-1048)) (-621 (-549))) 73)) (-2863 (($ $ $) 248 (-1821 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-3575 (($ $ $) 249 (-1821 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2797 (($ (-1 |#1| |#1|) $) 61) (($ (-1 |#2| |#2|) $) 210 (|has| |#1| (-356)))) (-3632 (($ $) 140 (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) 63)) (-2043 ((|#1| $) 64)) (-3697 (($ (-621 $)) 147 (|has| |#1| (-356))) (($ $ $) 146 (|has| |#1| (-356)))) (-2352 (($ (-549) |#2|) 265)) (-3851 (((-1125) $) 9)) (-1992 (($ $) 163 (|has| |#1| (-356)))) (-3893 (($ $) 167 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1143)) 166 (-1536 (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-930)) (|has| |#1| (-1165)) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-15 -2272 ((-621 (-1143)) |#1|))) (|has| |#1| (-15 -3893 (|#1| |#1| (-1143)))) (|has| |#1| (-38 (-400 (-549)))))))) (-3060 (($) 259 (-1821 (|has| |#2| (-1118)) (|has| |#1| (-356))) CONST)) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 148 (|has| |#1| (-356)))) (-3727 (($ (-621 $)) 145 (|has| |#1| (-356))) (($ $ $) 144 (|has| |#1| (-356)))) (-2873 (($ $) 229 (-1821 (|has| |#2| (-300)) (|has| |#1| (-356))))) (-3967 ((|#2| $) 232 (-1821 (|has| |#2| (-534)) (|has| |#1| (-356))))) (-2905 (((-411 (-1139 $)) (-1139 $)) 235 (-1821 (|has| |#2| (-880)) (|has| |#1| (-356))))) (-2413 (((-411 (-1139 $)) (-1139 $)) 236 (-1821 (|has| |#2| (-880)) (|has| |#1| (-356))))) (-2121 (((-411 $) $) 159 (|has| |#1| (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 157 (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 156 (|has| |#1| (-356)))) (-2763 (($ $ (-549)) 93)) (-2042 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 150 (|has| |#1| (-356)))) (-2719 (($ $) 141 (|has| |#1| (-38 (-400 (-549)))))) (-2686 (((-1123 |#1|) $ |#1|) 92 (|has| |#1| (-15 ** (|#1| |#1| (-549))))) (($ $ (-1143) |#2|) 209 (-1821 (|has| |#2| (-505 (-1143) |#2|)) (|has| |#1| (-356)))) (($ $ (-621 (-1143)) (-621 |#2|)) 208 (-1821 (|has| |#2| (-505 (-1143) |#2|)) (|has| |#1| (-356)))) (($ $ (-621 (-287 |#2|))) 207 (-1821 (|has| |#2| (-302 |#2|)) (|has| |#1| (-356)))) (($ $ (-287 |#2|)) 206 (-1821 (|has| |#2| (-302 |#2|)) (|has| |#1| (-356)))) (($ $ |#2| |#2|) 205 (-1821 (|has| |#2| (-302 |#2|)) (|has| |#1| (-356)))) (($ $ (-621 |#2|) (-621 |#2|)) 204 (-1821 (|has| |#2| (-302 |#2|)) (|has| |#1| (-356))))) (-3684 (((-747) $) 152 (|has| |#1| (-356)))) (-3341 ((|#1| $ (-549)) 102) (($ $ $) 79 (|has| (-549) (-1079))) (($ $ |#2|) 203 (-1821 (|has| |#2| (-279 |#2| |#2|)) (|has| |#1| (-356))))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 153 (|has| |#1| (-356)))) (-3456 (($ $ (-1 |#2| |#2|)) 214 (|has| |#1| (-356))) (($ $ (-1 |#2| |#2|) (-747)) 213 (|has| |#1| (-356))) (($ $ (-747)) 82 (-1536 (-1821 (|has| |#2| (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $) 80 (-1536 (-1821 (|has| |#2| (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1143)) (-621 (-747))) 87 (-1536 (-1821 (|has| |#2| (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-549) |#1|)))))) (($ $ (-1143) (-747)) 86 (-1536 (-1821 (|has| |#2| (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-549) |#1|)))))) (($ $ (-621 (-1143))) 85 (-1536 (-1821 (|has| |#2| (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-549) |#1|)))))) (($ $ (-1143)) 84 (-1536 (-1821 (|has| |#2| (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))))) (-3939 (($ $) 227 (|has| |#1| (-356)))) (-1403 ((|#2| $) 225 (|has| |#1| (-356)))) (-3701 (((-549) $) 62)) (-1698 (($ $) 130 (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) 119 (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) 129 (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) 120 (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) 128 (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) 121 (|has| |#1| (-38 (-400 (-549)))))) (-2845 (((-219) $) 243 (-1821 (|has| |#2| (-993)) (|has| |#1| (-356)))) (((-372) $) 242 (-1821 (|has| |#2| (-993)) (|has| |#1| (-356)))) (((-525) $) 241 (-1821 (|has| |#2| (-594 (-525))) (|has| |#1| (-356)))) (((-863 (-372)) $) 220 (-1821 (|has| |#2| (-594 (-863 (-372)))) (|has| |#1| (-356)))) (((-863 (-549)) $) 219 (-1821 (|has| |#2| (-594 (-863 (-549)))) (|has| |#1| (-356))))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) 233 (-1821 (-1821 (|has| $ (-143)) (|has| |#2| (-880))) (|has| |#1| (-356))))) (-1977 (($ $) 70)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 45 (|has| |#1| (-170))) (($ |#2|) 268) (($ (-1143)) 238 (-1821 (|has| |#2| (-1009 (-1143))) (|has| |#1| (-356)))) (($ (-400 (-549))) 55 (|has| |#1| (-38 (-400 (-549))))) (($ $) 47 (|has| |#1| (-541)))) (-2152 ((|#1| $ (-549)) 57)) (-2210 (((-3 $ "failed") $) 46 (-1536 (-1821 (-1536 (|has| |#2| (-143)) (-1821 (|has| $ (-143)) (|has| |#2| (-880)))) (|has| |#1| (-356))) (|has| |#1| (-143))))) (-2082 (((-747)) 28)) (-2597 ((|#1| $) 100)) (-2546 ((|#2| $) 231 (-1821 (|has| |#2| (-534)) (|has| |#1| (-356))))) (-1733 (($ $) 139 (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) 127 (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) 51 (|has| |#1| (-541)))) (-1710 (($ $) 138 (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) 126 (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) 137 (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) 125 (|has| |#1| (-38 (-400 (-549)))))) (-2661 ((|#1| $ (-549)) 94 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-549)))) (|has| |#1| (-15 -3846 (|#1| (-1143))))))) (-1934 (($ $) 136 (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) 124 (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) 135 (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) 123 (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) 134 (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) 122 (|has| |#1| (-38 (-400 (-549)))))) (-3212 (($ $) 247 (-1821 (|has| |#2| (-796)) (|has| |#1| (-356))))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ (-1 |#2| |#2|)) 212 (|has| |#1| (-356))) (($ $ (-1 |#2| |#2|) (-747)) 211 (|has| |#1| (-356))) (($ $ (-747)) 83 (-1536 (-1821 (|has| |#2| (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $) 81 (-1536 (-1821 (|has| |#2| (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1143)) (-621 (-747))) 91 (-1536 (-1821 (|has| |#2| (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-549) |#1|)))))) (($ $ (-1143) (-747)) 90 (-1536 (-1821 (|has| |#2| (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-549) |#1|)))))) (($ $ (-621 (-1143))) 89 (-1536 (-1821 (|has| |#2| (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-549) |#1|)))))) (($ $ (-1143)) 88 (-1536 (-1821 (|has| |#2| (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))))) (-2448 (((-112) $ $) 251 (-1821 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2425 (((-112) $ $) 252 (-1821 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 250 (-1821 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2412 (((-112) $ $) 253 (-1821 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2513 (($ $ |#1|) 56 (|has| |#1| (-356))) (($ $ $) 165 (|has| |#1| (-356))) (($ |#2| |#2|) 223 (|has| |#1| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 164 (|has| |#1| (-356))) (($ $ $) 142 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 113 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ $ |#2|) 202 (|has| |#1| (-356))) (($ |#2| $) 201 (|has| |#1| (-356))) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
-(((-1188 |#1| |#2|) (-138) (-1018) (-1217 |t#1|)) (T -1188))
-((-3701 (*1 *2 *1) (-12 (-4 *1 (-1188 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1217 *3)) (-5 *2 (-549)))) (-3846 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-4 *1 (-1188 *3 *2)) (-4 *2 (-1217 *3)))) (-2352 (*1 *1 *2 *3) (-12 (-5 *2 (-549)) (-4 *4 (-1018)) (-4 *1 (-1188 *4 *3)) (-4 *3 (-1217 *4)))) (-3836 (*1 *2 *1) (-12 (-4 *1 (-1188 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1217 *3)))) (-2294 (*1 *1 *1) (-12 (-4 *1 (-1188 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1217 *2)))) (-2294 (*1 *1 *2 *1) (-12 (-5 *2 (-549)) (-4 *1 (-1188 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1217 *3)))) (-2336 (*1 *2 *1) (-12 (-4 *1 (-1188 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1217 *3)))) (-3055 (*1 *2 *1) (|partial| -12 (-4 *1 (-1188 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1217 *3)))))
-(-13 (-1186 |t#1|) (-1009 |t#2|) (-10 -8 (-15 -2352 ($ (-549) |t#2|)) (-15 -3701 ((-549) $)) (-15 -3836 (|t#2| $)) (-15 -2294 ($ $)) (-15 -2294 ($ (-549) $)) (-15 -3846 ($ |t#2|)) (-15 -2336 (|t#2| $)) (-15 -3055 ((-3 |t#2| "failed") $)) (IF (|has| |t#1| (-356)) (-6 (-963 |t#2|)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-549)) . T) ((-25) . T) ((-38 #1=(-400 (-549))) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-38 |#1|) |has| |#1| (-170)) ((-38 |#2|) |has| |#1| (-356)) ((-38 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-35) |has| |#1| (-38 (-400 (-549)))) ((-94) |has| |#1| (-38 (-400 (-549)))) ((-101) . T) ((-111 #1# #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-111 |#1| |#1|) . T) ((-111 |#2| |#2|) |has| |#1| (-356)) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-130) . T) ((-143) -1536 (-12 (|has| |#1| (-356)) (|has| |#2| (-143))) (|has| |#1| (-143))) ((-145) -1536 (-12 (|has| |#1| (-356)) (|has| |#2| (-145))) (|has| |#1| (-145))) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-594 (-219)) -12 (|has| |#1| (-356)) (|has| |#2| (-993))) ((-594 (-372)) -12 (|has| |#1| (-356)) (|has| |#2| (-993))) ((-594 (-525)) -12 (|has| |#1| (-356)) (|has| |#2| (-594 (-525)))) ((-594 (-863 (-372))) -12 (|has| |#1| (-356)) (|has| |#2| (-594 (-863 (-372))))) ((-594 (-863 (-549))) -12 (|has| |#1| (-356)) (|has| |#2| (-594 (-863 (-549))))) ((-225 |#2|) |has| |#1| (-356)) ((-227) -1536 (-12 (|has| |#1| (-356)) (|has| |#2| (-227))) (|has| |#1| (-15 * (|#1| (-549) |#1|)))) ((-237) |has| |#1| (-356)) ((-277) |has| |#1| (-38 (-400 (-549)))) ((-279 |#2| $) -12 (|has| |#1| (-356)) (|has| |#2| (-279 |#2| |#2|))) ((-279 $ $) |has| (-549) (-1079)) ((-283) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-300) |has| |#1| (-356)) ((-302 |#2|) -12 (|has| |#1| (-356)) (|has| |#2| (-302 |#2|))) ((-356) |has| |#1| (-356)) ((-331 |#2|) |has| |#1| (-356)) ((-370 |#2|) |has| |#1| (-356)) ((-393 |#2|) |has| |#1| (-356)) ((-444) |has| |#1| (-356)) ((-484) |has| |#1| (-38 (-400 (-549)))) ((-505 (-1143) |#2|) -12 (|has| |#1| (-356)) (|has| |#2| (-505 (-1143) |#2|))) ((-505 |#2| |#2|) -12 (|has| |#1| (-356)) (|has| |#2| (-302 |#2|))) ((-541) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-624 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-624 |#1|) . T) ((-624 |#2|) |has| |#1| (-356)) ((-624 $) . T) ((-617 (-549)) -12 (|has| |#1| (-356)) (|has| |#2| (-617 (-549)))) ((-617 |#2|) |has| |#1| (-356)) ((-694 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-694 |#1|) |has| |#1| (-170)) ((-694 |#2|) |has| |#1| (-356)) ((-694 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-703) . T) ((-767) -12 (|has| |#1| (-356)) (|has| |#2| (-796))) ((-768) -12 (|has| |#1| (-356)) (|has| |#2| (-796))) ((-770) -12 (|has| |#1| (-356)) (|has| |#2| (-796))) ((-771) -12 (|has| |#1| (-356)) (|has| |#2| (-796))) ((-796) -12 (|has| |#1| (-356)) (|has| |#2| (-796))) ((-821) -12 (|has| |#1| (-356)) (|has| |#2| (-796))) ((-823) -1536 (-12 (|has| |#1| (-356)) (|has| |#2| (-823))) (-12 (|has| |#1| (-356)) (|has| |#2| (-796)))) ((-871 (-1143)) -1536 (-12 (|has| |#1| (-356)) (|has| |#2| (-871 (-1143)))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143))))) ((-857 (-372)) -12 (|has| |#1| (-356)) (|has| |#2| (-857 (-372)))) ((-857 (-549)) -12 (|has| |#1| (-356)) (|has| |#2| (-857 (-549)))) ((-855 |#2|) |has| |#1| (-356)) ((-880) -12 (|has| |#1| (-356)) (|has| |#2| (-880))) ((-944 |#1| #0# (-1048)) . T) ((-891) |has| |#1| (-356)) ((-963 |#2|) |has| |#1| (-356)) ((-973) |has| |#1| (-38 (-400 (-549)))) ((-993) -12 (|has| |#1| (-356)) (|has| |#2| (-993))) ((-1009 (-400 (-549))) -12 (|has| |#1| (-356)) (|has| |#2| (-1009 (-549)))) ((-1009 (-549)) -12 (|has| |#1| (-356)) (|has| |#2| (-1009 (-549)))) ((-1009 (-1143)) -12 (|has| |#1| (-356)) (|has| |#2| (-1009 (-1143)))) ((-1009 |#2|) . T) ((-1024 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-1024 |#1|) . T) ((-1024 |#2|) |has| |#1| (-356)) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1118) -12 (|has| |#1| (-356)) (|has| |#2| (-1118))) ((-1165) |has| |#1| (-38 (-400 (-549)))) ((-1168) |has| |#1| (-38 (-400 (-549)))) ((-1180) |has| |#1| (-356)) ((-1184) |has| |#1| (-356)) ((-1186 |#1|) . T) ((-1204 |#1| #0#) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 70)) (-3329 ((|#2| $) NIL (-12 (|has| |#2| (-300)) (|has| |#1| (-356))))) (-2272 (((-621 (-1048)) $) NIL)) (-3011 (((-1143) $) 88)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-3896 (($ $ (-549)) 97) (($ $ (-549) (-549)) 99)) (-2212 (((-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $) 47)) (-3836 ((|#2| $) 11)) (-3055 (((-3 |#2| "failed") $) 30)) (-2336 ((|#2| $) 31)) (-1664 (($ $) 192 (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) 168 (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (-12 (|has| |#2| (-880)) (|has| |#1| (-356))))) (-3979 (($ $) NIL (|has| |#1| (-356)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2134 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (-12 (|has| |#2| (-880)) (|has| |#1| (-356))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1640 (($ $) 188 (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) 164 (|has| |#1| (-38 (-400 (-549)))))) (-1872 (((-549) $) NIL (-12 (|has| |#2| (-796)) (|has| |#1| (-356))))) (-2826 (($ (-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|)))) 57)) (-1685 (($ $) 196 (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) 172 (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#2| "failed") $) 144) (((-3 (-549) "failed") $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#1| (-356)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#1| (-356)))) (((-3 (-1143) "failed") $) NIL (-12 (|has| |#2| (-1009 (-1143))) (|has| |#1| (-356))))) (-2659 ((|#2| $) 143) (((-549) $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#1| (-356)))) (((-400 (-549)) $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#1| (-356)))) (((-1143) $) NIL (-12 (|has| |#2| (-1009 (-1143))) (|has| |#1| (-356))))) (-2294 (($ $) 61) (($ (-549) $) 24)) (-2095 (($ $ $) NIL (|has| |#1| (-356)))) (-2070 (($ $) NIL)) (-3879 (((-665 |#2|) (-665 $)) NIL (|has| |#1| (-356))) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) NIL (|has| |#1| (-356))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (-12 (|has| |#2| (-617 (-549))) (|has| |#1| (-356)))) (((-665 (-549)) (-665 $)) NIL (-12 (|has| |#2| (-617 (-549))) (|has| |#1| (-356))))) (-2114 (((-3 $ "failed") $) 77)) (-3906 (((-400 (-923 |#1|)) $ (-549)) 112 (|has| |#1| (-541))) (((-400 (-923 |#1|)) $ (-549) (-549)) 114 (|has| |#1| (-541)))) (-3239 (($) NIL (-12 (|has| |#2| (-534)) (|has| |#1| (-356))))) (-2067 (($ $ $) NIL (|has| |#1| (-356)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1420 (((-112) $) NIL (|has| |#1| (-356)))) (-2772 (((-112) $) NIL (-12 (|has| |#2| (-796)) (|has| |#1| (-356))))) (-2871 (((-112) $) 64)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| |#2| (-857 (-372))) (|has| |#1| (-356)))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| |#2| (-857 (-549))) (|has| |#1| (-356))))) (-2088 (((-549) $) 93) (((-549) $ (-549)) 95)) (-2675 (((-112) $) NIL)) (-1726 (($ $) NIL (|has| |#1| (-356)))) (-1394 ((|#2| $) 151 (|has| |#1| (-356)))) (-4187 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1681 (((-3 $ "failed") $) NIL (-12 (|has| |#2| (-1118)) (|has| |#1| (-356))))) (-2374 (((-112) $) NIL (-12 (|has| |#2| (-796)) (|has| |#1| (-356))))) (-2992 (($ $ (-892)) 136)) (-2876 (($ (-1 |#1| (-549)) $) 132)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-549)) 19) (($ $ (-1048) (-549)) NIL) (($ $ (-621 (-1048)) (-621 (-549))) NIL)) (-2863 (($ $ $) NIL (-12 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-3575 (($ $ $) NIL (-12 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2797 (($ (-1 |#1| |#1|) $) 129) (($ (-1 |#2| |#2|) $) NIL (|has| |#1| (-356)))) (-3632 (($ $) 162 (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2352 (($ (-549) |#2|) 10)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 145 (|has| |#1| (-356)))) (-3893 (($ $) 214 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1143)) 219 (-1536 (-12 (|has| |#1| (-15 -3893 (|#1| |#1| (-1143)))) (|has| |#1| (-15 -2272 ((-621 (-1143)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1165)))))) (-3060 (($) NIL (-12 (|has| |#2| (-1118)) (|has| |#1| (-356))) CONST)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-356)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2873 (($ $) NIL (-12 (|has| |#2| (-300)) (|has| |#1| (-356))))) (-3967 ((|#2| $) NIL (-12 (|has| |#2| (-534)) (|has| |#1| (-356))))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (-12 (|has| |#2| (-880)) (|has| |#1| (-356))))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (-12 (|has| |#2| (-880)) (|has| |#1| (-356))))) (-2121 (((-411 $) $) NIL (|has| |#1| (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-2763 (($ $ (-549)) 126)) (-2042 (((-3 $ "failed") $ $) 116 (|has| |#1| (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2719 (($ $) 160 (|has| |#1| (-38 (-400 (-549)))))) (-2686 (((-1123 |#1|) $ |#1|) 85 (|has| |#1| (-15 ** (|#1| |#1| (-549))))) (($ $ (-1143) |#2|) NIL (-12 (|has| |#2| (-505 (-1143) |#2|)) (|has| |#1| (-356)))) (($ $ (-621 (-1143)) (-621 |#2|)) NIL (-12 (|has| |#2| (-505 (-1143) |#2|)) (|has| |#1| (-356)))) (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#1| (-356)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#1| (-356)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#1| (-356)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#1| (-356))))) (-3684 (((-747) $) NIL (|has| |#1| (-356)))) (-3341 ((|#1| $ (-549)) 91) (($ $ $) 79 (|has| (-549) (-1079))) (($ $ |#2|) NIL (-12 (|has| |#2| (-279 |#2| |#2|)) (|has| |#1| (-356))))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-356)))) (-3456 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-356))) (($ $ (-1 |#2| |#2|) (-747)) NIL (|has| |#1| (-356))) (($ $ (-747)) NIL (-1536 (-12 (|has| |#2| (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $) 137 (-1536 (-12 (|has| |#2| (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-1536 (-12 (|has| |#2| (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-1143) (-747)) NIL (-1536 (-12 (|has| |#2| (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-621 (-1143))) NIL (-1536 (-12 (|has| |#2| (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-1143)) 140 (-1536 (-12 (|has| |#2| (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143))))))) (-3939 (($ $) NIL (|has| |#1| (-356)))) (-1403 ((|#2| $) 152 (|has| |#1| (-356)))) (-3701 (((-549) $) 12)) (-1698 (($ $) 198 (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) 174 (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) 194 (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) 170 (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) 190 (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) 166 (|has| |#1| (-38 (-400 (-549)))))) (-2845 (((-219) $) NIL (-12 (|has| |#2| (-993)) (|has| |#1| (-356)))) (((-372) $) NIL (-12 (|has| |#2| (-993)) (|has| |#1| (-356)))) (((-525) $) NIL (-12 (|has| |#2| (-594 (-525))) (|has| |#1| (-356)))) (((-863 (-372)) $) NIL (-12 (|has| |#2| (-594 (-863 (-372)))) (|has| |#1| (-356)))) (((-863 (-549)) $) NIL (-12 (|has| |#2| (-594 (-863 (-549)))) (|has| |#1| (-356))))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#2| (-880)) (|has| |#1| (-356))))) (-1977 (($ $) 124)) (-3846 (((-834) $) 245) (($ (-549)) 23) (($ |#1|) 21 (|has| |#1| (-170))) (($ |#2|) 20) (($ (-1143)) NIL (-12 (|has| |#2| (-1009 (-1143))) (|has| |#1| (-356)))) (($ (-400 (-549))) 155 (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541)))) (-2152 ((|#1| $ (-549)) 74)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#2| (-880)) (|has| |#1| (-356))) (-12 (|has| |#2| (-143)) (|has| |#1| (-356))) (|has| |#1| (-143))))) (-2082 (((-747)) 142)) (-2597 ((|#1| $) 90)) (-2546 ((|#2| $) NIL (-12 (|has| |#2| (-534)) (|has| |#1| (-356))))) (-1733 (($ $) 204 (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) 180 (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1710 (($ $) 200 (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) 176 (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) 208 (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) 184 (|has| |#1| (-38 (-400 (-549)))))) (-2661 ((|#1| $ (-549)) 122 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-549)))) (|has| |#1| (-15 -3846 (|#1| (-1143))))))) (-1934 (($ $) 210 (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) 186 (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) 206 (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) 182 (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) 202 (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) 178 (|has| |#1| (-38 (-400 (-549)))))) (-3212 (($ $) NIL (-12 (|has| |#2| (-796)) (|has| |#1| (-356))))) (-3276 (($) 13 T CONST)) (-3287 (($) 17 T CONST)) (-1702 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-356))) (($ $ (-1 |#2| |#2|) (-747)) NIL (|has| |#1| (-356))) (($ $ (-747)) NIL (-1536 (-12 (|has| |#2| (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $) NIL (-1536 (-12 (|has| |#2| (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-1536 (-12 (|has| |#2| (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-1143) (-747)) NIL (-1536 (-12 (|has| |#2| (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-621 (-1143))) NIL (-1536 (-12 (|has| |#2| (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-1143)) NIL (-1536 (-12 (|has| |#2| (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143))))))) (-2448 (((-112) $ $) NIL (-12 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2425 (((-112) $ $) NIL (-12 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2389 (((-112) $ $) 63)) (-2438 (((-112) $ $) NIL (-12 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2412 (((-112) $ $) NIL (-12 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) 149 (|has| |#1| (-356))) (($ |#2| |#2|) 150 (|has| |#1| (-356)))) (-2500 (($ $) 213) (($ $ $) 68)) (-2486 (($ $ $) 66)) (** (($ $ (-892)) NIL) (($ $ (-747)) 73) (($ $ (-549)) 146 (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 158 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 139) (($ $ |#2|) 148 (|has| |#1| (-356))) (($ |#2| $) 147 (|has| |#1| (-356))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
-(((-1189 |#1| |#2|) (-1188 |#1| |#2|) (-1018) (-1217 |#1|)) (T -1189))
-NIL
-(-1188 |#1| |#2|)
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3329 (((-1218 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-300)) (|has| |#1| (-356))))) (-2272 (((-621 (-1048)) $) NIL)) (-3011 (((-1143) $) 10)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1218 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-2258 (($ $) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1218 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-2799 (((-112) $) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1218 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-3896 (($ $ (-549)) NIL) (($ $ (-549) (-549)) NIL)) (-2212 (((-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $) NIL)) (-3836 (((-1218 |#1| |#2| |#3|) $) NIL)) (-3055 (((-3 (-1218 |#1| |#2| |#3|) "failed") $) NIL)) (-2336 (((-1218 |#1| |#2| |#3|) $) NIL)) (-1664 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-3979 (($ $) NIL (|has| |#1| (-356)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2134 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1640 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1872 (((-549) $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))))) (-2826 (($ (-1123 (-2 (|:| |k| (-549)) (|:| |c| |#1|)))) NIL)) (-1685 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-1218 |#1| |#2| |#3|) "failed") $) NIL) (((-3 (-1143) "failed") $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-1009 (-1143))) (|has| |#1| (-356)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356)))) (((-3 (-549) "failed") $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356))))) (-2659 (((-1218 |#1| |#2| |#3|) $) NIL) (((-1143) $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-1009 (-1143))) (|has| |#1| (-356)))) (((-400 (-549)) $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356)))) (((-549) $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356))))) (-2294 (($ $) NIL) (($ (-549) $) NIL)) (-2095 (($ $ $) NIL (|has| |#1| (-356)))) (-2070 (($ $) NIL)) (-3879 (((-665 (-1218 |#1| |#2| |#3|)) (-665 $)) NIL (|has| |#1| (-356))) (((-2 (|:| -3521 (-665 (-1218 |#1| |#2| |#3|))) (|:| |vec| (-1226 (-1218 |#1| |#2| |#3|)))) (-665 $) (-1226 $)) NIL (|has| |#1| (-356))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-617 (-549))) (|has| |#1| (-356)))) (((-665 (-549)) (-665 $)) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-617 (-549))) (|has| |#1| (-356))))) (-2114 (((-3 $ "failed") $) NIL)) (-3906 (((-400 (-923 |#1|)) $ (-549)) NIL (|has| |#1| (-541))) (((-400 (-923 |#1|)) $ (-549) (-549)) NIL (|has| |#1| (-541)))) (-3239 (($) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-534)) (|has| |#1| (-356))))) (-2067 (($ $ $) NIL (|has| |#1| (-356)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1420 (((-112) $) NIL (|has| |#1| (-356)))) (-2772 (((-112) $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))))) (-2871 (((-112) $) NIL)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2932 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-857 (-549))) (|has| |#1| (-356)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-857 (-372))) (|has| |#1| (-356))))) (-2088 (((-549) $) NIL) (((-549) $ (-549)) NIL)) (-2675 (((-112) $) NIL)) (-1726 (($ $) NIL (|has| |#1| (-356)))) (-1394 (((-1218 |#1| |#2| |#3|) $) NIL (|has| |#1| (-356)))) (-4187 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1681 (((-3 $ "failed") $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-1118)) (|has| |#1| (-356))))) (-2374 (((-112) $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))))) (-2992 (($ $ (-892)) NIL)) (-2876 (($ (-1 |#1| (-549)) $) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-549)) 17) (($ $ (-1048) (-549)) NIL) (($ $ (-621 (-1048)) (-621 (-549))) NIL)) (-2863 (($ $ $) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1218 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-3575 (($ $ $) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1218 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1218 |#1| |#2| |#3|) (-1218 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-356)))) (-3632 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2352 (($ (-549) (-1218 |#1| |#2| |#3|)) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL (|has| |#1| (-356)))) (-3893 (($ $) 25 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1143)) NIL (-1536 (-12 (|has| |#1| (-15 -3893 (|#1| |#1| (-1143)))) (|has| |#1| (-15 -2272 ((-621 (-1143)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1165))))) (($ $ (-1222 |#2|)) 26 (|has| |#1| (-38 (-400 (-549)))))) (-3060 (($) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-1118)) (|has| |#1| (-356))) CONST)) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-356)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2873 (($ $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-300)) (|has| |#1| (-356))))) (-3967 (((-1218 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-534)) (|has| |#1| (-356))))) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-2121 (((-411 $) $) NIL (|has| |#1| (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-2763 (($ $ (-549)) NIL)) (-2042 (((-3 $ "failed") $ $) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1218 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2719 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2686 (((-1123 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-549))))) (($ $ (-1143) (-1218 |#1| |#2| |#3|)) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-505 (-1143) (-1218 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-621 (-1143)) (-621 (-1218 |#1| |#2| |#3|))) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-505 (-1143) (-1218 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-621 (-287 (-1218 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-302 (-1218 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-287 (-1218 |#1| |#2| |#3|))) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-302 (-1218 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-1218 |#1| |#2| |#3|) (-1218 |#1| |#2| |#3|)) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-302 (-1218 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-621 (-1218 |#1| |#2| |#3|)) (-621 (-1218 |#1| |#2| |#3|))) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-302 (-1218 |#1| |#2| |#3|))) (|has| |#1| (-356))))) (-3684 (((-747) $) NIL (|has| |#1| (-356)))) (-3341 ((|#1| $ (-549)) NIL) (($ $ $) NIL (|has| (-549) (-1079))) (($ $ (-1218 |#1| |#2| |#3|)) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-279 (-1218 |#1| |#2| |#3|) (-1218 |#1| |#2| |#3|))) (|has| |#1| (-356))))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-356)))) (-3456 (($ $ (-1 (-1218 |#1| |#2| |#3|) (-1218 |#1| |#2| |#3|))) NIL (|has| |#1| (-356))) (($ $ (-1 (-1218 |#1| |#2| |#3|) (-1218 |#1| |#2| |#3|)) (-747)) NIL (|has| |#1| (-356))) (($ $ (-1222 |#2|)) 24) (($ $ (-747)) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $) 23 (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-1143) (-747)) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-621 (-1143))) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-1143)) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143))))))) (-3939 (($ $) NIL (|has| |#1| (-356)))) (-1403 (((-1218 |#1| |#2| |#3|) $) NIL (|has| |#1| (-356)))) (-3701 (((-549) $) NIL)) (-1698 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2845 (((-525) $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-594 (-525))) (|has| |#1| (-356)))) (((-372) $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-993)) (|has| |#1| (-356)))) (((-219) $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-993)) (|has| |#1| (-356)))) (((-863 (-372)) $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-594 (-863 (-372)))) (|has| |#1| (-356)))) (((-863 (-549)) $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-594 (-863 (-549)))) (|has| |#1| (-356))))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-1218 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-1977 (($ $) NIL)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL (|has| |#1| (-170))) (($ (-1218 |#1| |#2| |#3|)) NIL) (($ (-1222 |#2|)) 22) (($ (-1143)) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-1009 (-1143))) (|has| |#1| (-356)))) (($ $) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1218 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541)))) (($ (-400 (-549))) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356))) (|has| |#1| (-38 (-400 (-549))))))) (-2152 ((|#1| $ (-549)) NIL)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-1218 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (-12 (|has| (-1218 |#1| |#2| |#3|) (-143)) (|has| |#1| (-356))) (|has| |#1| (-143))))) (-2082 (((-747)) NIL)) (-2597 ((|#1| $) 11)) (-2546 (((-1218 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-534)) (|has| |#1| (-356))))) (-1733 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1218 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-1710 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2661 ((|#1| $ (-549)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-549)))) (|has| |#1| (-15 -3846 (|#1| (-1143))))))) (-1934 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3212 (($ $) NIL (-12 (|has| (-1218 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))))) (-3276 (($) 19 T CONST)) (-3287 (($) 15 T CONST)) (-1702 (($ $ (-1 (-1218 |#1| |#2| |#3|) (-1218 |#1| |#2| |#3|))) NIL (|has| |#1| (-356))) (($ $ (-1 (-1218 |#1| |#2| |#3|) (-1218 |#1| |#2| |#3|)) (-747)) NIL (|has| |#1| (-356))) (($ $ (-747)) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-1143) (-747)) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-621 (-1143))) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143)))))) (($ $ (-1143)) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-871 (-1143))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1143))))))) (-2448 (((-112) $ $) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1218 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2425 (((-112) $ $) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1218 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1218 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2412 (((-112) $ $) NIL (-1536 (-12 (|has| (-1218 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1218 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356))) (($ (-1218 |#1| |#2| |#3|) (-1218 |#1| |#2| |#3|)) NIL (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) 20)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1218 |#1| |#2| |#3|)) NIL (|has| |#1| (-356))) (($ (-1218 |#1| |#2| |#3|) $) NIL (|has| |#1| (-356))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
-(((-1190 |#1| |#2| |#3|) (-13 (-1188 |#1| (-1218 |#1| |#2| |#3|)) (-10 -8 (-15 -3846 ($ (-1222 |#2|))) (-15 -3456 ($ $ (-1222 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3893 ($ $ (-1222 |#2|))) |%noBranch|))) (-1018) (-1143) |#1|) (T -1190))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1190 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3456 (*1 *1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1190 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3893 (*1 *1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1190 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3))))
-(-13 (-1188 |#1| (-1218 |#1| |#2| |#3|)) (-10 -8 (-15 -3846 ($ (-1222 |#2|))) (-15 -3456 ($ $ (-1222 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3893 ($ $ (-1222 |#2|))) |%noBranch|)))
-((-1448 (((-2 (|:| |contp| (-549)) (|:| -4024 (-621 (-2 (|:| |irr| |#1|) (|:| -2495 (-549)))))) |#1| (-112)) 12)) (-2131 (((-411 |#1|) |#1|) 22)) (-2121 (((-411 |#1|) |#1|) 21)))
-(((-1191 |#1|) (-10 -7 (-15 -2121 ((-411 |#1|) |#1|)) (-15 -2131 ((-411 |#1|) |#1|)) (-15 -1448 ((-2 (|:| |contp| (-549)) (|:| -4024 (-621 (-2 (|:| |irr| |#1|) (|:| -2495 (-549)))))) |#1| (-112)))) (-1202 (-549))) (T -1191))
-((-1448 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-549)) (|:| -4024 (-621 (-2 (|:| |irr| *3) (|:| -2495 (-549))))))) (-5 *1 (-1191 *3)) (-4 *3 (-1202 (-549))))) (-2131 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-1191 *3)) (-4 *3 (-1202 (-549))))) (-2121 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-1191 *3)) (-4 *3 (-1202 (-549))))))
-(-10 -7 (-15 -2121 ((-411 |#1|) |#1|)) (-15 -2131 ((-411 |#1|) |#1|)) (-15 -1448 ((-2 (|:| |contp| (-549)) (|:| -4024 (-621 (-2 (|:| |irr| |#1|) (|:| -2495 (-549)))))) |#1| (-112))))
-((-2797 (((-1123 |#2|) (-1 |#2| |#1|) (-1193 |#1|)) 23 (|has| |#1| (-821))) (((-1193 |#2|) (-1 |#2| |#1|) (-1193 |#1|)) 17)))
-(((-1192 |#1| |#2|) (-10 -7 (-15 -2797 ((-1193 |#2|) (-1 |#2| |#1|) (-1193 |#1|))) (IF (|has| |#1| (-821)) (-15 -2797 ((-1123 |#2|) (-1 |#2| |#1|) (-1193 |#1|))) |%noBranch|)) (-1180) (-1180)) (T -1192))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1193 *5)) (-4 *5 (-821)) (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-1123 *6)) (-5 *1 (-1192 *5 *6)))) (-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1193 *5)) (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-1193 *6)) (-5 *1 (-1192 *5 *6)))))
-(-10 -7 (-15 -2797 ((-1193 |#2|) (-1 |#2| |#1|) (-1193 |#1|))) (IF (|has| |#1| (-821)) (-15 -2797 ((-1123 |#2|) (-1 |#2| |#1|) (-1193 |#1|))) |%noBranch|))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3130 (($ |#1| |#1|) 9) (($ |#1|) 8)) (-2797 (((-1123 |#1|) (-1 |#1| |#1|) $) 41 (|has| |#1| (-821)))) (-1578 ((|#1| $) 14)) (-1267 ((|#1| $) 10)) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-1276 (((-549) $) 18)) (-1667 ((|#1| $) 17)) (-1289 ((|#1| $) 11)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-1344 (((-112) $) 16)) (-1449 (((-1123 |#1|) $) 38 (|has| |#1| (-821))) (((-1123 |#1|) (-621 $)) 37 (|has| |#1| (-821)))) (-2845 (($ |#1|) 25)) (-3846 (($ (-1061 |#1|)) 24) (((-834) $) 34 (|has| |#1| (-1067)))) (-1854 (($ |#1| |#1|) 20) (($ |#1|) 19)) (-2123 (($ $ (-549)) 13)) (-2389 (((-112) $ $) 27 (|has| |#1| (-1067)))))
-(((-1193 |#1|) (-13 (-1060 |#1|) (-10 -8 (-15 -1854 ($ |#1|)) (-15 -3130 ($ |#1|)) (-15 -3846 ($ (-1061 |#1|))) (-15 -1344 ((-112) $)) (IF (|has| |#1| (-1067)) (-6 (-1067)) |%noBranch|) (IF (|has| |#1| (-821)) (-6 (-1062 |#1| (-1123 |#1|))) |%noBranch|))) (-1180)) (T -1193))
-((-1854 (*1 *1 *2) (-12 (-5 *1 (-1193 *2)) (-4 *2 (-1180)))) (-3130 (*1 *1 *2) (-12 (-5 *1 (-1193 *2)) (-4 *2 (-1180)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-1061 *3)) (-4 *3 (-1180)) (-5 *1 (-1193 *3)))) (-1344 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1193 *3)) (-4 *3 (-1180)))))
-(-13 (-1060 |#1|) (-10 -8 (-15 -1854 ($ |#1|)) (-15 -3130 ($ |#1|)) (-15 -3846 ($ (-1061 |#1|))) (-15 -1344 ((-112) $)) (IF (|has| |#1| (-1067)) (-6 (-1067)) |%noBranch|) (IF (|has| |#1| (-821)) (-6 (-1062 |#1| (-1123 |#1|))) |%noBranch|)))
-((-2797 (((-1199 |#3| |#4|) (-1 |#4| |#2|) (-1199 |#1| |#2|)) 15)))
-(((-1194 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2797 ((-1199 |#3| |#4|) (-1 |#4| |#2|) (-1199 |#1| |#2|)))) (-1143) (-1018) (-1143) (-1018)) (T -1194))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1199 *5 *6)) (-14 *5 (-1143)) (-4 *6 (-1018)) (-4 *8 (-1018)) (-5 *2 (-1199 *7 *8)) (-5 *1 (-1194 *5 *6 *7 *8)) (-14 *7 (-1143)))))
-(-10 -7 (-15 -2797 ((-1199 |#3| |#4|) (-1 |#4| |#2|) (-1199 |#1| |#2|))))
-((-2050 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 21)) (-2836 ((|#1| |#3|) 13)) (-1308 ((|#3| |#3|) 19)))
-(((-1195 |#1| |#2| |#3|) (-10 -7 (-15 -2836 (|#1| |#3|)) (-15 -1308 (|#3| |#3|)) (-15 -2050 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-541) (-963 |#1|) (-1202 |#2|)) (T -1195))
-((-2050 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-963 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1195 *4 *5 *3)) (-4 *3 (-1202 *5)))) (-1308 (*1 *2 *2) (-12 (-4 *3 (-541)) (-4 *4 (-963 *3)) (-5 *1 (-1195 *3 *4 *2)) (-4 *2 (-1202 *4)))) (-2836 (*1 *2 *3) (-12 (-4 *4 (-963 *2)) (-4 *2 (-541)) (-5 *1 (-1195 *2 *4 *3)) (-4 *3 (-1202 *4)))))
-(-10 -7 (-15 -2836 (|#1| |#3|)) (-15 -1308 (|#3| |#3|)) (-15 -2050 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
-((-3299 (((-3 |#2| "failed") |#2| (-747) |#1|) 29)) (-2139 (((-3 |#2| "failed") |#2| (-747)) 30)) (-1300 (((-3 (-2 (|:| -3838 |#2|) (|:| -3848 |#2|)) "failed") |#2|) 43)) (-2746 (((-621 |#2|) |#2|) 45)) (-3858 (((-3 |#2| "failed") |#2| |#2|) 40)))
-(((-1196 |#1| |#2|) (-10 -7 (-15 -2139 ((-3 |#2| "failed") |#2| (-747))) (-15 -3299 ((-3 |#2| "failed") |#2| (-747) |#1|)) (-15 -3858 ((-3 |#2| "failed") |#2| |#2|)) (-15 -1300 ((-3 (-2 (|:| -3838 |#2|) (|:| -3848 |#2|)) "failed") |#2|)) (-15 -2746 ((-621 |#2|) |#2|))) (-13 (-541) (-145)) (-1202 |#1|)) (T -1196))
-((-2746 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-145))) (-5 *2 (-621 *3)) (-5 *1 (-1196 *4 *3)) (-4 *3 (-1202 *4)))) (-1300 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-541) (-145))) (-5 *2 (-2 (|:| -3838 *3) (|:| -3848 *3))) (-5 *1 (-1196 *4 *3)) (-4 *3 (-1202 *4)))) (-3858 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-13 (-541) (-145))) (-5 *1 (-1196 *3 *2)) (-4 *2 (-1202 *3)))) (-3299 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-747)) (-4 *4 (-13 (-541) (-145))) (-5 *1 (-1196 *4 *2)) (-4 *2 (-1202 *4)))) (-2139 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-747)) (-4 *4 (-13 (-541) (-145))) (-5 *1 (-1196 *4 *2)) (-4 *2 (-1202 *4)))))
-(-10 -7 (-15 -2139 ((-3 |#2| "failed") |#2| (-747))) (-15 -3299 ((-3 |#2| "failed") |#2| (-747) |#1|)) (-15 -3858 ((-3 |#2| "failed") |#2| |#2|)) (-15 -1300 ((-3 (-2 (|:| -3838 |#2|) (|:| -3848 |#2|)) "failed") |#2|)) (-15 -2746 ((-621 |#2|) |#2|)))
-((-3014 (((-3 (-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) "failed") |#2| |#2|) 32)))
-(((-1197 |#1| |#2|) (-10 -7 (-15 -3014 ((-3 (-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) "failed") |#2| |#2|))) (-541) (-1202 |#1|)) (T -1197))
-((-3014 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-541)) (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3))) (-5 *1 (-1197 *4 *3)) (-4 *3 (-1202 *4)))))
-(-10 -7 (-15 -3014 ((-3 (-2 (|:| -4013 |#2|) (|:| -3675 |#2|)) "failed") |#2| |#2|)))
-((-3964 ((|#2| |#2| |#2|) 19)) (-2363 ((|#2| |#2| |#2|) 30)) (-1923 ((|#2| |#2| |#2| (-747) (-747)) 36)))
-(((-1198 |#1| |#2|) (-10 -7 (-15 -3964 (|#2| |#2| |#2|)) (-15 -2363 (|#2| |#2| |#2|)) (-15 -1923 (|#2| |#2| |#2| (-747) (-747)))) (-1018) (-1202 |#1|)) (T -1198))
-((-1923 (*1 *2 *2 *2 *3 *3) (-12 (-5 *3 (-747)) (-4 *4 (-1018)) (-5 *1 (-1198 *4 *2)) (-4 *2 (-1202 *4)))) (-2363 (*1 *2 *2 *2) (-12 (-4 *3 (-1018)) (-5 *1 (-1198 *3 *2)) (-4 *2 (-1202 *3)))) (-3964 (*1 *2 *2 *2) (-12 (-4 *3 (-1018)) (-5 *1 (-1198 *3 *2)) (-4 *2 (-1202 *3)))))
-(-10 -7 (-15 -3964 (|#2| |#2| |#2|)) (-15 -2363 (|#2| |#2| |#2|)) (-15 -1923 (|#2| |#2| |#2| (-747) (-747))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2432 (((-1226 |#2|) $ (-747)) NIL)) (-2272 (((-621 (-1048)) $) NIL)) (-3371 (($ (-1139 |#2|)) NIL)) (-2084 (((-1139 $) $ (-1048)) NIL) (((-1139 |#2|) $) NIL)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#2| (-541)))) (-2258 (($ $) NIL (|has| |#2| (-541)))) (-2799 (((-112) $) NIL (|has| |#2| (-541)))) (-3186 (((-747) $) NIL) (((-747) $ (-621 (-1048))) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1910 (($ $ $) NIL (|has| |#2| (-541)))) (-3231 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-3979 (($ $) NIL (|has| |#2| (-444)))) (-2402 (((-411 $) $) NIL (|has| |#2| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-3866 (((-112) $ $) NIL (|has| |#2| (-356)))) (-3154 (($ $ (-747)) NIL)) (-2434 (($ $ (-747)) NIL)) (-1358 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#2| (-444)))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#2| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-1048) "failed") $) NIL)) (-2659 ((|#2| $) NIL) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#2| (-1009 (-549)))) (((-1048) $) NIL)) (-1353 (($ $ $ (-1048)) NIL (|has| |#2| (-170))) ((|#2| $ $) NIL (|has| |#2| (-170)))) (-2095 (($ $ $) NIL (|has| |#2| (-356)))) (-2070 (($ $) NIL)) (-3879 (((-665 (-549)) (-665 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#2|)) (|:| |vec| (-1226 |#2|))) (-665 $) (-1226 $)) NIL) (((-665 |#2|) (-665 $)) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-2067 (($ $ $) NIL (|has| |#2| (-356)))) (-4289 (($ $ $) NIL)) (-2290 (($ $ $) NIL (|has| |#2| (-541)))) (-3921 (((-2 (|:| -1570 |#2|) (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#2| (-541)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| |#2| (-356)))) (-1285 (($ $) NIL (|has| |#2| (-444))) (($ $ (-1048)) NIL (|has| |#2| (-444)))) (-2058 (((-621 $) $) NIL)) (-1420 (((-112) $) NIL (|has| |#2| (-880)))) (-2691 (($ $ |#2| (-747) $) NIL)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-1048) (-857 (-372))) (|has| |#2| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-1048) (-857 (-549))) (|has| |#2| (-857 (-549)))))) (-2088 (((-747) $ $) NIL (|has| |#2| (-541)))) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) NIL)) (-1681 (((-3 $ "failed") $) NIL (|has| |#2| (-1118)))) (-2261 (($ (-1139 |#2|) (-1048)) NIL) (($ (-1139 $) (-1048)) NIL)) (-2992 (($ $ (-747)) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#2| (-356)))) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) NIL)) (-2246 (($ |#2| (-747)) 17) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ (-1048)) NIL) (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL)) (-3611 (((-747) $) NIL) (((-747) $ (-1048)) NIL) (((-621 (-747)) $ (-621 (-1048))) NIL)) (-2863 (($ $ $) NIL (|has| |#2| (-823)))) (-3575 (($ $ $) NIL (|has| |#2| (-823)))) (-3705 (($ (-1 (-747) (-747)) $) NIL)) (-2797 (($ (-1 |#2| |#2|) $) NIL)) (-3598 (((-1139 |#2|) $) NIL)) (-1520 (((-3 (-1048) "failed") $) NIL)) (-2028 (($ $) NIL)) (-2043 ((|#2| $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-3851 (((-1125) $) NIL)) (-3098 (((-2 (|:| -4013 $) (|:| -3675 $)) $ (-747)) NIL)) (-4266 (((-3 (-621 $) "failed") $) NIL)) (-2533 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-2 (|:| |var| (-1048)) (|:| -3731 (-747))) "failed") $) NIL)) (-3893 (($ $) NIL (|has| |#2| (-38 (-400 (-549)))))) (-3060 (($) NIL (|has| |#2| (-1118)) CONST)) (-3990 (((-1087) $) NIL)) (-2004 (((-112) $) NIL)) (-2016 ((|#2| $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#2| (-444)))) (-3727 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-1835 (($ $ (-747) |#2| $) NIL)) (-2905 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) NIL (|has| |#2| (-880)))) (-2121 (((-411 $) $) NIL (|has| |#2| (-880)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#2| (-356)))) (-2042 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#2| (-356)))) (-2686 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-1048) |#2|) NIL) (($ $ (-621 (-1048)) (-621 |#2|)) NIL) (($ $ (-1048) $) NIL) (($ $ (-621 (-1048)) (-621 $)) NIL)) (-3684 (((-747) $) NIL (|has| |#2| (-356)))) (-3341 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-400 $) (-400 $) (-400 $)) NIL (|has| |#2| (-541))) ((|#2| (-400 $) |#2|) NIL (|has| |#2| (-356))) (((-400 $) $ (-400 $)) NIL (|has| |#2| (-541)))) (-3668 (((-3 $ "failed") $ (-747)) NIL)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#2| (-356)))) (-3602 (($ $ (-1048)) NIL (|has| |#2| (-170))) ((|#2| $) NIL (|has| |#2| (-170)))) (-3456 (($ $ (-1048)) NIL) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) NIL) (($ $ (-1143)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) $) NIL)) (-3701 (((-747) $) NIL) (((-747) $ (-1048)) NIL) (((-621 (-747)) $ (-621 (-1048))) NIL)) (-2845 (((-863 (-372)) $) NIL (-12 (|has| (-1048) (-594 (-863 (-372)))) (|has| |#2| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-1048) (-594 (-863 (-549)))) (|has| |#2| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-1048) (-594 (-525))) (|has| |#2| (-594 (-525)))))) (-2216 ((|#2| $) NIL (|has| |#2| (-444))) (($ $ (-1048)) NIL (|has| |#2| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#2| (-880))))) (-3033 (((-3 $ "failed") $ $) NIL (|has| |#2| (-541))) (((-3 (-400 $) "failed") (-400 $) $) NIL (|has| |#2| (-541)))) (-3846 (((-834) $) 13) (($ (-549)) NIL) (($ |#2|) NIL) (($ (-1048)) NIL) (($ (-1222 |#1|)) 19) (($ (-400 (-549))) NIL (-1536 (|has| |#2| (-38 (-400 (-549)))) (|has| |#2| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#2| (-541)))) (-4141 (((-621 |#2|) $) NIL)) (-2152 ((|#2| $ (-747)) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-2210 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#2| (-880))) (|has| |#2| (-143))))) (-2082 (((-747)) NIL)) (-1509 (($ $ $ (-747)) NIL (|has| |#2| (-170)))) (-1498 (((-112) $ $) NIL (|has| |#2| (-541)))) (-3276 (($) NIL T CONST)) (-3287 (($) 14 T CONST)) (-1702 (($ $ (-1048)) NIL) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) NIL) (($ $ (-1143)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-621 (-1143))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1143) (-747)) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) NIL (|has| |#2| (-871 (-1143)))) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-2448 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2389 (((-112) $ $) NIL)) (-2438 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2513 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#2| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#2| (-38 (-400 (-549))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-1199 |#1| |#2|) (-13 (-1202 |#2|) (-10 -8 (-15 -3846 ($ (-1222 |#1|))) (-15 -1835 ($ $ (-747) |#2| $)))) (-1143) (-1018)) (T -1199))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1222 *3)) (-14 *3 (-1143)) (-5 *1 (-1199 *3 *4)) (-4 *4 (-1018)))) (-1835 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-747)) (-5 *1 (-1199 *4 *3)) (-14 *4 (-1143)) (-4 *3 (-1018)))))
-(-13 (-1202 |#2|) (-10 -8 (-15 -3846 ($ (-1222 |#1|))) (-15 -1835 ($ $ (-747) |#2| $))))
-((-2797 ((|#4| (-1 |#3| |#1|) |#2|) 22)))
-(((-1200 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2797 (|#4| (-1 |#3| |#1|) |#2|))) (-1018) (-1202 |#1|) (-1018) (-1202 |#3|)) (T -1200))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-1202 *6)) (-5 *1 (-1200 *5 *4 *6 *2)) (-4 *4 (-1202 *5)))))
-(-10 -7 (-15 -2797 (|#4| (-1 |#3| |#1|) |#2|)))
-((-2432 (((-1226 |#2|) $ (-747)) 114)) (-2272 (((-621 (-1048)) $) 15)) (-3371 (($ (-1139 |#2|)) 67)) (-3186 (((-747) $) NIL) (((-747) $ (-621 (-1048))) 18)) (-3231 (((-411 (-1139 $)) (-1139 $)) 185)) (-3979 (($ $) 175)) (-2402 (((-411 $) $) 173)) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) 82)) (-3154 (($ $ (-747)) 71)) (-2434 (($ $ (-747)) 73)) (-1358 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 130)) (-2714 (((-3 |#2| "failed") $) 117) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 (-549) "failed") $) NIL) (((-3 (-1048) "failed") $) NIL)) (-2659 ((|#2| $) 115) (((-400 (-549)) $) NIL) (((-549) $) NIL) (((-1048) $) NIL)) (-2290 (($ $ $) 151)) (-3921 (((-2 (|:| -1570 |#2|) (|:| -4013 $) (|:| -3675 $)) $ $) 153)) (-2088 (((-747) $ $) 170)) (-1681 (((-3 $ "failed") $) 123)) (-2246 (($ |#2| (-747)) NIL) (($ $ (-1048) (-747)) 47) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-3611 (((-747) $) NIL) (((-747) $ (-1048)) 42) (((-621 (-747)) $ (-621 (-1048))) 43)) (-3598 (((-1139 |#2|) $) 59)) (-1520 (((-3 (-1048) "failed") $) 40)) (-3098 (((-2 (|:| -4013 $) (|:| -3675 $)) $ (-747)) 70)) (-3893 (($ $) 197)) (-3060 (($) 119)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 182)) (-2905 (((-411 (-1139 $)) (-1139 $)) 88)) (-2413 (((-411 (-1139 $)) (-1139 $)) 86)) (-2121 (((-411 $) $) 107)) (-2686 (($ $ (-621 (-287 $))) 39) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-1048) |#2|) 31) (($ $ (-621 (-1048)) (-621 |#2|)) 28) (($ $ (-1048) $) 25) (($ $ (-621 (-1048)) (-621 $)) 23)) (-3684 (((-747) $) 188)) (-3341 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-400 $) (-400 $) (-400 $)) 147) ((|#2| (-400 $) |#2|) 187) (((-400 $) $ (-400 $)) 169)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 191)) (-3456 (($ $ (-1048)) 140) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) 138) (($ $ (-1143)) NIL) (($ $ (-621 (-1143))) NIL) (($ $ (-1143) (-747)) NIL) (($ $ (-621 (-1143)) (-621 (-747))) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) 137) (($ $ (-1 |#2| |#2|) $) 134)) (-3701 (((-747) $) NIL) (((-747) $ (-1048)) 16) (((-621 (-747)) $ (-621 (-1048))) 20)) (-2216 ((|#2| $) NIL) (($ $ (-1048)) 125)) (-3033 (((-3 $ "failed") $ $) 161) (((-3 (-400 $) "failed") (-400 $) $) 157)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) NIL) (($ (-1048)) 51) (($ (-400 (-549))) NIL) (($ $) NIL)))
-(((-1201 |#1| |#2|) (-10 -8 (-15 -3846 (|#1| |#1|)) (-15 -1721 ((-1139 |#1|) (-1139 |#1|) (-1139 |#1|))) (-15 -2402 ((-411 |#1|) |#1|)) (-15 -3979 (|#1| |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -3060 (|#1|)) (-15 -1681 ((-3 |#1| "failed") |#1|)) (-15 -3341 ((-400 |#1|) |#1| (-400 |#1|))) (-15 -3684 ((-747) |#1|)) (-15 -3148 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|)) (-15 -3893 (|#1| |#1|)) (-15 -3341 (|#2| (-400 |#1|) |#2|)) (-15 -1358 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -3921 ((-2 (|:| -1570 |#2|) (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|)) (-15 -2290 (|#1| |#1| |#1|)) (-15 -3033 ((-3 (-400 |#1|) "failed") (-400 |#1|) |#1|)) (-15 -3033 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2088 ((-747) |#1| |#1|)) (-15 -3341 ((-400 |#1|) (-400 |#1|) (-400 |#1|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -2434 (|#1| |#1| (-747))) (-15 -3154 (|#1| |#1| (-747))) (-15 -3098 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| (-747))) (-15 -3371 (|#1| (-1139 |#2|))) (-15 -3598 ((-1139 |#2|) |#1|)) (-15 -2432 ((-1226 |#2|) |#1| (-747))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -3341 (|#1| |#1| |#1|)) (-15 -3341 (|#2| |#1| |#2|)) (-15 -2121 ((-411 |#1|) |#1|)) (-15 -3231 ((-411 (-1139 |#1|)) (-1139 |#1|))) (-15 -2413 ((-411 (-1139 |#1|)) (-1139 |#1|))) (-15 -2905 ((-411 (-1139 |#1|)) (-1139 |#1|))) (-15 -1348 ((-3 (-621 (-1139 |#1|)) "failed") (-621 (-1139 |#1|)) (-1139 |#1|))) (-15 -2216 (|#1| |#1| (-1048))) (-15 -2272 ((-621 (-1048)) |#1|)) (-15 -3186 ((-747) |#1| (-621 (-1048)))) (-15 -3186 ((-747) |#1|)) (-15 -2246 (|#1| |#1| (-621 (-1048)) (-621 (-747)))) (-15 -2246 (|#1| |#1| (-1048) (-747))) (-15 -3611 ((-621 (-747)) |#1| (-621 (-1048)))) (-15 -3611 ((-747) |#1| (-1048))) (-15 -1520 ((-3 (-1048) "failed") |#1|)) (-15 -3701 ((-621 (-747)) |#1| (-621 (-1048)))) (-15 -3701 ((-747) |#1| (-1048))) (-15 -2659 ((-1048) |#1|)) (-15 -2714 ((-3 (-1048) "failed") |#1|)) (-15 -3846 (|#1| (-1048))) (-15 -2686 (|#1| |#1| (-621 (-1048)) (-621 |#1|))) (-15 -2686 (|#1| |#1| (-1048) |#1|)) (-15 -2686 (|#1| |#1| (-621 (-1048)) (-621 |#2|))) (-15 -2686 (|#1| |#1| (-1048) |#2|)) (-15 -2686 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2686 (|#1| |#1| |#1| |#1|)) (-15 -2686 (|#1| |#1| (-287 |#1|))) (-15 -2686 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -3701 ((-747) |#1|)) (-15 -2246 (|#1| |#2| (-747))) (-15 -2659 ((-549) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3846 (|#1| |#2|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -2659 (|#2| |#1|)) (-15 -3611 ((-747) |#1|)) (-15 -2216 (|#2| |#1|)) (-15 -3456 (|#1| |#1| (-621 (-1048)) (-621 (-747)))) (-15 -3456 (|#1| |#1| (-1048) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1048)))) (-15 -3456 (|#1| |#1| (-1048))) (-15 -3846 (|#1| (-549))) (-15 -3846 ((-834) |#1|))) (-1202 |#2|) (-1018)) (T -1201))
-NIL
-(-10 -8 (-15 -3846 (|#1| |#1|)) (-15 -1721 ((-1139 |#1|) (-1139 |#1|) (-1139 |#1|))) (-15 -2402 ((-411 |#1|) |#1|)) (-15 -3979 (|#1| |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -3060 (|#1|)) (-15 -1681 ((-3 |#1| "failed") |#1|)) (-15 -3341 ((-400 |#1|) |#1| (-400 |#1|))) (-15 -3684 ((-747) |#1|)) (-15 -3148 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|)) (-15 -3893 (|#1| |#1|)) (-15 -3341 (|#2| (-400 |#1|) |#2|)) (-15 -1358 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -3921 ((-2 (|:| -1570 |#2|) (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| |#1|)) (-15 -2290 (|#1| |#1| |#1|)) (-15 -3033 ((-3 (-400 |#1|) "failed") (-400 |#1|) |#1|)) (-15 -3033 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2088 ((-747) |#1| |#1|)) (-15 -3341 ((-400 |#1|) (-400 |#1|) (-400 |#1|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -2434 (|#1| |#1| (-747))) (-15 -3154 (|#1| |#1| (-747))) (-15 -3098 ((-2 (|:| -4013 |#1|) (|:| -3675 |#1|)) |#1| (-747))) (-15 -3371 (|#1| (-1139 |#2|))) (-15 -3598 ((-1139 |#2|) |#1|)) (-15 -2432 ((-1226 |#2|) |#1| (-747))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3456 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)) (-621 (-747)))) (-15 -3456 (|#1| |#1| (-1143) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1143)))) (-15 -3456 (|#1| |#1| (-1143))) (-15 -3456 (|#1| |#1|)) (-15 -3456 (|#1| |#1| (-747))) (-15 -3341 (|#1| |#1| |#1|)) (-15 -3341 (|#2| |#1| |#2|)) (-15 -2121 ((-411 |#1|) |#1|)) (-15 -3231 ((-411 (-1139 |#1|)) (-1139 |#1|))) (-15 -2413 ((-411 (-1139 |#1|)) (-1139 |#1|))) (-15 -2905 ((-411 (-1139 |#1|)) (-1139 |#1|))) (-15 -1348 ((-3 (-621 (-1139 |#1|)) "failed") (-621 (-1139 |#1|)) (-1139 |#1|))) (-15 -2216 (|#1| |#1| (-1048))) (-15 -2272 ((-621 (-1048)) |#1|)) (-15 -3186 ((-747) |#1| (-621 (-1048)))) (-15 -3186 ((-747) |#1|)) (-15 -2246 (|#1| |#1| (-621 (-1048)) (-621 (-747)))) (-15 -2246 (|#1| |#1| (-1048) (-747))) (-15 -3611 ((-621 (-747)) |#1| (-621 (-1048)))) (-15 -3611 ((-747) |#1| (-1048))) (-15 -1520 ((-3 (-1048) "failed") |#1|)) (-15 -3701 ((-621 (-747)) |#1| (-621 (-1048)))) (-15 -3701 ((-747) |#1| (-1048))) (-15 -2659 ((-1048) |#1|)) (-15 -2714 ((-3 (-1048) "failed") |#1|)) (-15 -3846 (|#1| (-1048))) (-15 -2686 (|#1| |#1| (-621 (-1048)) (-621 |#1|))) (-15 -2686 (|#1| |#1| (-1048) |#1|)) (-15 -2686 (|#1| |#1| (-621 (-1048)) (-621 |#2|))) (-15 -2686 (|#1| |#1| (-1048) |#2|)) (-15 -2686 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2686 (|#1| |#1| |#1| |#1|)) (-15 -2686 (|#1| |#1| (-287 |#1|))) (-15 -2686 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -3701 ((-747) |#1|)) (-15 -2246 (|#1| |#2| (-747))) (-15 -2659 ((-549) |#1|)) (-15 -2714 ((-3 (-549) "failed") |#1|)) (-15 -2659 ((-400 (-549)) |#1|)) (-15 -2714 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3846 (|#1| |#2|)) (-15 -2714 ((-3 |#2| "failed") |#1|)) (-15 -2659 (|#2| |#1|)) (-15 -3611 ((-747) |#1|)) (-15 -2216 (|#2| |#1|)) (-15 -3456 (|#1| |#1| (-621 (-1048)) (-621 (-747)))) (-15 -3456 (|#1| |#1| (-1048) (-747))) (-15 -3456 (|#1| |#1| (-621 (-1048)))) (-15 -3456 (|#1| |#1| (-1048))) (-15 -3846 (|#1| (-549))) (-15 -3846 ((-834) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2432 (((-1226 |#1|) $ (-747)) 236)) (-2272 (((-621 (-1048)) $) 108)) (-3371 (($ (-1139 |#1|)) 234)) (-2084 (((-1139 $) $ (-1048)) 123) (((-1139 |#1|) $) 122)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 85 (|has| |#1| (-541)))) (-2258 (($ $) 86 (|has| |#1| (-541)))) (-2799 (((-112) $) 88 (|has| |#1| (-541)))) (-3186 (((-747) $) 110) (((-747) $ (-621 (-1048))) 109)) (-2001 (((-3 $ "failed") $ $) 19)) (-1910 (($ $ $) 221 (|has| |#1| (-541)))) (-3231 (((-411 (-1139 $)) (-1139 $)) 98 (|has| |#1| (-880)))) (-3979 (($ $) 96 (|has| |#1| (-444)))) (-2402 (((-411 $) $) 95 (|has| |#1| (-444)))) (-1348 (((-3 (-621 (-1139 $)) "failed") (-621 (-1139 $)) (-1139 $)) 101 (|has| |#1| (-880)))) (-3866 (((-112) $ $) 206 (|has| |#1| (-356)))) (-3154 (($ $ (-747)) 229)) (-2434 (($ $ (-747)) 228)) (-1358 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 216 (|has| |#1| (-444)))) (-1682 (($) 17 T CONST)) (-2714 (((-3 |#1| "failed") $) 162) (((-3 (-400 (-549)) "failed") $) 160 (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) 158 (|has| |#1| (-1009 (-549)))) (((-3 (-1048) "failed") $) 134)) (-2659 ((|#1| $) 163) (((-400 (-549)) $) 159 (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) 157 (|has| |#1| (-1009 (-549)))) (((-1048) $) 133)) (-1353 (($ $ $ (-1048)) 106 (|has| |#1| (-170))) ((|#1| $ $) 224 (|has| |#1| (-170)))) (-2095 (($ $ $) 210 (|has| |#1| (-356)))) (-2070 (($ $) 152)) (-3879 (((-665 (-549)) (-665 $)) 132 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 (-549))) (|:| |vec| (-1226 (-549)))) (-665 $) (-1226 $)) 131 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3521 (-665 |#1|)) (|:| |vec| (-1226 |#1|))) (-665 $) (-1226 $)) 130) (((-665 |#1|) (-665 $)) 129)) (-2114 (((-3 $ "failed") $) 32)) (-2067 (($ $ $) 209 (|has| |#1| (-356)))) (-4289 (($ $ $) 227)) (-2290 (($ $ $) 218 (|has| |#1| (-541)))) (-3921 (((-2 (|:| -1570 |#1|) (|:| -4013 $) (|:| -3675 $)) $ $) 217 (|has| |#1| (-541)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 204 (|has| |#1| (-356)))) (-1285 (($ $) 174 (|has| |#1| (-444))) (($ $ (-1048)) 103 (|has| |#1| (-444)))) (-2058 (((-621 $) $) 107)) (-1420 (((-112) $) 94 (|has| |#1| (-880)))) (-2691 (($ $ |#1| (-747) $) 170)) (-2932 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 82 (-12 (|has| (-1048) (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 81 (-12 (|has| (-1048) (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2088 (((-747) $ $) 222 (|has| |#1| (-541)))) (-2675 (((-112) $) 30)) (-3347 (((-747) $) 167)) (-1681 (((-3 $ "failed") $) 202 (|has| |#1| (-1118)))) (-2261 (($ (-1139 |#1|) (-1048)) 115) (($ (-1139 $) (-1048)) 114)) (-2992 (($ $ (-747)) 233)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 213 (|has| |#1| (-356)))) (-3750 (((-621 $) $) 124)) (-2205 (((-112) $) 150)) (-2246 (($ |#1| (-747)) 151) (($ $ (-1048) (-747)) 117) (($ $ (-621 (-1048)) (-621 (-747))) 116)) (-3265 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $ (-1048)) 118) (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 231)) (-3611 (((-747) $) 168) (((-747) $ (-1048)) 120) (((-621 (-747)) $ (-621 (-1048))) 119)) (-2863 (($ $ $) 77 (|has| |#1| (-823)))) (-3575 (($ $ $) 76 (|has| |#1| (-823)))) (-3705 (($ (-1 (-747) (-747)) $) 169)) (-2797 (($ (-1 |#1| |#1|) $) 149)) (-3598 (((-1139 |#1|) $) 235)) (-1520 (((-3 (-1048) "failed") $) 121)) (-2028 (($ $) 147)) (-2043 ((|#1| $) 146)) (-3697 (($ (-621 $)) 92 (|has| |#1| (-444))) (($ $ $) 91 (|has| |#1| (-444)))) (-3851 (((-1125) $) 9)) (-3098 (((-2 (|:| -4013 $) (|:| -3675 $)) $ (-747)) 230)) (-4266 (((-3 (-621 $) "failed") $) 112)) (-2533 (((-3 (-621 $) "failed") $) 113)) (-1503 (((-3 (-2 (|:| |var| (-1048)) (|:| -3731 (-747))) "failed") $) 111)) (-3893 (($ $) 214 (|has| |#1| (-38 (-400 (-549)))))) (-3060 (($) 201 (|has| |#1| (-1118)) CONST)) (-3990 (((-1087) $) 10)) (-2004 (((-112) $) 164)) (-2016 ((|#1| $) 165)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 93 (|has| |#1| (-444)))) (-3727 (($ (-621 $)) 90 (|has| |#1| (-444))) (($ $ $) 89 (|has| |#1| (-444)))) (-2905 (((-411 (-1139 $)) (-1139 $)) 100 (|has| |#1| (-880)))) (-2413 (((-411 (-1139 $)) (-1139 $)) 99 (|has| |#1| (-880)))) (-2121 (((-411 $) $) 97 (|has| |#1| (-880)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 212 (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 211 (|has| |#1| (-356)))) (-2042 (((-3 $ "failed") $ |#1|) 172 (|has| |#1| (-541))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 205 (|has| |#1| (-356)))) (-2686 (($ $ (-621 (-287 $))) 143) (($ $ (-287 $)) 142) (($ $ $ $) 141) (($ $ (-621 $) (-621 $)) 140) (($ $ (-1048) |#1|) 139) (($ $ (-621 (-1048)) (-621 |#1|)) 138) (($ $ (-1048) $) 137) (($ $ (-621 (-1048)) (-621 $)) 136)) (-3684 (((-747) $) 207 (|has| |#1| (-356)))) (-3341 ((|#1| $ |#1|) 254) (($ $ $) 253) (((-400 $) (-400 $) (-400 $)) 223 (|has| |#1| (-541))) ((|#1| (-400 $) |#1|) 215 (|has| |#1| (-356))) (((-400 $) $ (-400 $)) 203 (|has| |#1| (-541)))) (-3668 (((-3 $ "failed") $ (-747)) 232)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 208 (|has| |#1| (-356)))) (-3602 (($ $ (-1048)) 105 (|has| |#1| (-170))) ((|#1| $) 225 (|has| |#1| (-170)))) (-3456 (($ $ (-1048)) 40) (($ $ (-621 (-1048))) 39) (($ $ (-1048) (-747)) 38) (($ $ (-621 (-1048)) (-621 (-747))) 37) (($ $ (-747)) 251) (($ $) 249) (($ $ (-1143)) 248 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) 247 (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) 246 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) 245 (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) 238) (($ $ (-1 |#1| |#1|)) 237) (($ $ (-1 |#1| |#1|) $) 226)) (-3701 (((-747) $) 148) (((-747) $ (-1048)) 128) (((-621 (-747)) $ (-621 (-1048))) 127)) (-2845 (((-863 (-372)) $) 80 (-12 (|has| (-1048) (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) 79 (-12 (|has| (-1048) (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) 78 (-12 (|has| (-1048) (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-2216 ((|#1| $) 173 (|has| |#1| (-444))) (($ $ (-1048)) 104 (|has| |#1| (-444)))) (-4186 (((-3 (-1226 $) "failed") (-665 $)) 102 (-1821 (|has| $ (-143)) (|has| |#1| (-880))))) (-3033 (((-3 $ "failed") $ $) 220 (|has| |#1| (-541))) (((-3 (-400 $) "failed") (-400 $) $) 219 (|has| |#1| (-541)))) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 161) (($ (-1048)) 135) (($ (-400 (-549))) 70 (-1536 (|has| |#1| (-1009 (-400 (-549)))) (|has| |#1| (-38 (-400 (-549)))))) (($ $) 83 (|has| |#1| (-541)))) (-4141 (((-621 |#1|) $) 166)) (-2152 ((|#1| $ (-747)) 153) (($ $ (-1048) (-747)) 126) (($ $ (-621 (-1048)) (-621 (-747))) 125)) (-2210 (((-3 $ "failed") $) 71 (-1536 (-1821 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2082 (((-747)) 28)) (-1509 (($ $ $ (-747)) 171 (|has| |#1| (-170)))) (-1498 (((-112) $ $) 87 (|has| |#1| (-541)))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ (-1048)) 36) (($ $ (-621 (-1048))) 35) (($ $ (-1048) (-747)) 34) (($ $ (-621 (-1048)) (-621 (-747))) 33) (($ $ (-747)) 252) (($ $) 250) (($ $ (-1143)) 244 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143))) 243 (|has| |#1| (-871 (-1143)))) (($ $ (-1143) (-747)) 242 (|has| |#1| (-871 (-1143)))) (($ $ (-621 (-1143)) (-621 (-747))) 241 (|has| |#1| (-871 (-1143)))) (($ $ (-1 |#1| |#1|) (-747)) 240) (($ $ (-1 |#1| |#1|)) 239)) (-2448 (((-112) $ $) 74 (|has| |#1| (-823)))) (-2425 (((-112) $ $) 73 (|has| |#1| (-823)))) (-2389 (((-112) $ $) 6)) (-2438 (((-112) $ $) 75 (|has| |#1| (-823)))) (-2412 (((-112) $ $) 72 (|has| |#1| (-823)))) (-2513 (($ $ |#1|) 154 (|has| |#1| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 156 (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) 155 (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 145) (($ $ |#1|) 144)))
-(((-1202 |#1|) (-138) (-1018)) (T -1202))
-((-2432 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *1 (-1202 *4)) (-4 *4 (-1018)) (-5 *2 (-1226 *4)))) (-3598 (*1 *2 *1) (-12 (-4 *1 (-1202 *3)) (-4 *3 (-1018)) (-5 *2 (-1139 *3)))) (-3371 (*1 *1 *2) (-12 (-5 *2 (-1139 *3)) (-4 *3 (-1018)) (-4 *1 (-1202 *3)))) (-2992 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1202 *3)) (-4 *3 (-1018)))) (-3668 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-747)) (-4 *1 (-1202 *3)) (-4 *3 (-1018)))) (-3265 (*1 *2 *1 *1) (-12 (-4 *3 (-1018)) (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-1202 *3)))) (-3098 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *4 (-1018)) (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-1202 *4)))) (-3154 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1202 *3)) (-4 *3 (-1018)))) (-2434 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1202 *3)) (-4 *3 (-1018)))) (-4289 (*1 *1 *1 *1) (-12 (-4 *1 (-1202 *2)) (-4 *2 (-1018)))) (-3456 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1202 *3)) (-4 *3 (-1018)))) (-3602 (*1 *2 *1) (-12 (-4 *1 (-1202 *2)) (-4 *2 (-1018)) (-4 *2 (-170)))) (-1353 (*1 *2 *1 *1) (-12 (-4 *1 (-1202 *2)) (-4 *2 (-1018)) (-4 *2 (-170)))) (-3341 (*1 *2 *2 *2) (-12 (-5 *2 (-400 *1)) (-4 *1 (-1202 *3)) (-4 *3 (-1018)) (-4 *3 (-541)))) (-2088 (*1 *2 *1 *1) (-12 (-4 *1 (-1202 *3)) (-4 *3 (-1018)) (-4 *3 (-541)) (-5 *2 (-747)))) (-1910 (*1 *1 *1 *1) (-12 (-4 *1 (-1202 *2)) (-4 *2 (-1018)) (-4 *2 (-541)))) (-3033 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-1202 *2)) (-4 *2 (-1018)) (-4 *2 (-541)))) (-3033 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-400 *1)) (-4 *1 (-1202 *3)) (-4 *3 (-1018)) (-4 *3 (-541)))) (-2290 (*1 *1 *1 *1) (-12 (-4 *1 (-1202 *2)) (-4 *2 (-1018)) (-4 *2 (-541)))) (-3921 (*1 *2 *1 *1) (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| -1570 *3) (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-1202 *3)))) (-1358 (*1 *2 *1 *1) (-12 (-4 *3 (-444)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1))) (-4 *1 (-1202 *3)))) (-3341 (*1 *2 *3 *2) (-12 (-5 *3 (-400 *1)) (-4 *1 (-1202 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-3893 (*1 *1 *1) (-12 (-4 *1 (-1202 *2)) (-4 *2 (-1018)) (-4 *2 (-38 (-400 (-549)))))))
-(-13 (-920 |t#1| (-747) (-1048)) (-279 |t#1| |t#1|) (-279 $ $) (-227) (-225 |t#1|) (-10 -8 (-15 -2432 ((-1226 |t#1|) $ (-747))) (-15 -3598 ((-1139 |t#1|) $)) (-15 -3371 ($ (-1139 |t#1|))) (-15 -2992 ($ $ (-747))) (-15 -3668 ((-3 $ "failed") $ (-747))) (-15 -3265 ((-2 (|:| -4013 $) (|:| -3675 $)) $ $)) (-15 -3098 ((-2 (|:| -4013 $) (|:| -3675 $)) $ (-747))) (-15 -3154 ($ $ (-747))) (-15 -2434 ($ $ (-747))) (-15 -4289 ($ $ $)) (-15 -3456 ($ $ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-1118)) (-6 (-1118)) |%noBranch|) (IF (|has| |t#1| (-170)) (PROGN (-15 -3602 (|t#1| $)) (-15 -1353 (|t#1| $ $))) |%noBranch|) (IF (|has| |t#1| (-541)) (PROGN (-6 (-279 (-400 $) (-400 $))) (-15 -3341 ((-400 $) (-400 $) (-400 $))) (-15 -2088 ((-747) $ $)) (-15 -1910 ($ $ $)) (-15 -3033 ((-3 $ "failed") $ $)) (-15 -3033 ((-3 (-400 $) "failed") (-400 $) $)) (-15 -2290 ($ $ $)) (-15 -3921 ((-2 (|:| -1570 |t#1|) (|:| -4013 $) (|:| -3675 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-444)) (-15 -1358 ((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $)) |%noBranch|) (IF (|has| |t#1| (-356)) (PROGN (-6 (-300)) (-6 -4333) (-15 -3341 (|t#1| (-400 $) |t#1|))) |%noBranch|) (IF (|has| |t#1| (-38 (-400 (-549)))) (-15 -3893 ($ $)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-747)) . T) ((-25) . T) ((-38 #1=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-356))) ((-101) . T) ((-111 #1# #1#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-594 (-525)) -12 (|has| (-1048) (-594 (-525))) (|has| |#1| (-594 (-525)))) ((-594 (-863 (-372))) -12 (|has| (-1048) (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372))))) ((-594 (-863 (-549))) -12 (|has| (-1048) (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549))))) ((-225 |#1|) . T) ((-227) . T) ((-279 (-400 $) (-400 $)) |has| |#1| (-541)) ((-279 |#1| |#1|) . T) ((-279 $ $) . T) ((-283) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-356))) ((-300) |has| |#1| (-356)) ((-302 $) . T) ((-319 |#1| #0#) . T) ((-370 |#1|) . T) ((-404 |#1|) . T) ((-444) -1536 (|has| |#1| (-880)) (|has| |#1| (-444)) (|has| |#1| (-356))) ((-505 #2=(-1048) |#1|) . T) ((-505 #2# $) . T) ((-505 $ $) . T) ((-541) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-356))) ((-624 #1#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-694 #1#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-356))) ((-703) . T) ((-823) |has| |#1| (-823)) ((-871 #2#) . T) ((-871 (-1143)) |has| |#1| (-871 (-1143))) ((-857 (-372)) -12 (|has| (-1048) (-857 (-372))) (|has| |#1| (-857 (-372)))) ((-857 (-549)) -12 (|has| (-1048) (-857 (-549))) (|has| |#1| (-857 (-549)))) ((-920 |#1| #0# #2#) . T) ((-880) |has| |#1| (-880)) ((-891) |has| |#1| (-356)) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 #2#) . T) ((-1009 |#1|) . T) ((-1024 #1#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1118) |has| |#1| (-1118)) ((-1184) |has| |#1| (-880)))
-((-2272 (((-621 (-1048)) $) 28)) (-2070 (($ $) 25)) (-2246 (($ |#2| |#3|) NIL) (($ $ (-1048) |#3|) 22) (($ $ (-621 (-1048)) (-621 |#3|)) 21)) (-2028 (($ $) 14)) (-2043 ((|#2| $) 12)) (-3701 ((|#3| $) 10)))
-(((-1203 |#1| |#2| |#3|) (-10 -8 (-15 -2272 ((-621 (-1048)) |#1|)) (-15 -2246 (|#1| |#1| (-621 (-1048)) (-621 |#3|))) (-15 -2246 (|#1| |#1| (-1048) |#3|)) (-15 -2070 (|#1| |#1|)) (-15 -2246 (|#1| |#2| |#3|)) (-15 -3701 (|#3| |#1|)) (-15 -2028 (|#1| |#1|)) (-15 -2043 (|#2| |#1|))) (-1204 |#2| |#3|) (-1018) (-768)) (T -1203))
-NIL
-(-10 -8 (-15 -2272 ((-621 (-1048)) |#1|)) (-15 -2246 (|#1| |#1| (-621 (-1048)) (-621 |#3|))) (-15 -2246 (|#1| |#1| (-1048) |#3|)) (-15 -2070 (|#1| |#1|)) (-15 -2246 (|#1| |#2| |#3|)) (-15 -3701 (|#3| |#1|)) (-15 -2028 (|#1| |#1|)) (-15 -2043 (|#2| |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2272 (((-621 (-1048)) $) 72)) (-3011 (((-1143) $) 101)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-2258 (($ $) 50 (|has| |#1| (-541)))) (-2799 (((-112) $) 52 (|has| |#1| (-541)))) (-3896 (($ $ |#2|) 96) (($ $ |#2| |#2|) 95)) (-2212 (((-1123 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 103)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2070 (($ $) 58)) (-2114 (((-3 $ "failed") $) 32)) (-2871 (((-112) $) 71)) (-2088 ((|#2| $) 98) ((|#2| $ |#2|) 97)) (-2675 (((-112) $) 30)) (-2992 (($ $ (-892)) 99)) (-2205 (((-112) $) 60)) (-2246 (($ |#1| |#2|) 59) (($ $ (-1048) |#2|) 74) (($ $ (-621 (-1048)) (-621 |#2|)) 73)) (-2797 (($ (-1 |#1| |#1|) $) 61)) (-2028 (($ $) 63)) (-2043 ((|#1| $) 64)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-2763 (($ $ |#2|) 93)) (-2042 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541)))) (-2686 (((-1123 |#1|) $ |#1|) 92 (|has| |#1| (-15 ** (|#1| |#1| |#2|))))) (-3341 ((|#1| $ |#2|) 102) (($ $ $) 79 (|has| |#2| (-1079)))) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) 87 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1143) (-747)) 86 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-621 (-1143))) 85 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1143)) 84 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-747)) 82 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 80 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-3701 ((|#2| $) 62)) (-1977 (($ $) 70)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 55 (|has| |#1| (-38 (-400 (-549))))) (($ $) 47 (|has| |#1| (-541))) (($ |#1|) 45 (|has| |#1| (-170)))) (-2152 ((|#1| $ |#2|) 57)) (-2210 (((-3 $ "failed") $) 46 (|has| |#1| (-143)))) (-2082 (((-747)) 28)) (-2597 ((|#1| $) 100)) (-1498 (((-112) $ $) 51 (|has| |#1| (-541)))) (-2661 ((|#1| $ |#2|) 94 (-12 (|has| |#1| (-15 ** (|#1| |#1| |#2|))) (|has| |#1| (-15 -3846 (|#1| (-1143))))))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ (-621 (-1143)) (-621 (-747))) 91 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1143) (-747)) 90 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-621 (-1143))) 89 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1143)) 88 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-747)) 83 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 81 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-2389 (((-112) $ $) 6)) (-2513 (($ $ |#1|) 56 (|has| |#1| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
-(((-1204 |#1| |#2|) (-138) (-1018) (-768)) (T -1204))
-((-2212 (*1 *2 *1) (-12 (-4 *1 (-1204 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)) (-5 *2 (-1123 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-3341 (*1 *2 *1 *3) (-12 (-4 *1 (-1204 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018)))) (-3011 (*1 *2 *1) (-12 (-4 *1 (-1204 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)) (-5 *2 (-1143)))) (-2597 (*1 *2 *1) (-12 (-4 *1 (-1204 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018)))) (-2992 (*1 *1 *1 *2) (-12 (-5 *2 (-892)) (-4 *1 (-1204 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)))) (-2088 (*1 *2 *1) (-12 (-4 *1 (-1204 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))) (-2088 (*1 *2 *1 *2) (-12 (-4 *1 (-1204 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))) (-3896 (*1 *1 *1 *2) (-12 (-4 *1 (-1204 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))) (-3896 (*1 *1 *1 *2 *2) (-12 (-4 *1 (-1204 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))) (-2661 (*1 *2 *1 *3) (-12 (-4 *1 (-1204 *2 *3)) (-4 *3 (-768)) (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -3846 (*2 (-1143)))) (-4 *2 (-1018)))) (-2763 (*1 *1 *1 *2) (-12 (-4 *1 (-1204 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))) (-2686 (*1 *2 *1 *3) (-12 (-4 *1 (-1204 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)) (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1123 *3)))))
-(-13 (-944 |t#1| |t#2| (-1048)) (-10 -8 (-15 -2212 ((-1123 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -3341 (|t#1| $ |t#2|)) (-15 -3011 ((-1143) $)) (-15 -2597 (|t#1| $)) (-15 -2992 ($ $ (-892))) (-15 -2088 (|t#2| $)) (-15 -2088 (|t#2| $ |t#2|)) (-15 -3896 ($ $ |t#2|)) (-15 -3896 ($ $ |t#2| |t#2|)) (IF (|has| |t#1| (-15 -3846 (|t#1| (-1143)))) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -2661 (|t#1| $ |t#2|)) |%noBranch|) |%noBranch|) (-15 -2763 ($ $ |t#2|)) (IF (|has| |t#2| (-1079)) (-6 (-279 $ $)) |%noBranch|) (IF (|has| |t#1| (-15 * (|t#1| |t#2| |t#1|))) (PROGN (-6 (-227)) (IF (|has| |t#1| (-871 (-1143))) (-6 (-871 (-1143))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -2686 ((-1123 |t#1|) $ |t#1|)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) |has| |#1| (-541)) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-227) |has| |#1| (-15 * (|#1| |#2| |#1|))) ((-279 $ $) |has| |#2| (-1079)) ((-283) |has| |#1| (-541)) ((-541) |has| |#1| (-541)) ((-624 #0#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #0#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) |has| |#1| (-541)) ((-703) . T) ((-871 (-1143)) -12 (|has| |#1| (-15 * (|#1| |#2| |#1|))) (|has| |#1| (-871 (-1143)))) ((-944 |#1| |#2| (-1048)) . T) ((-1024 #0#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-3979 ((|#2| |#2|) 12)) (-2402 (((-411 |#2|) |#2|) 14)) (-3315 (((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-549))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-549)))) 30)))
-(((-1205 |#1| |#2|) (-10 -7 (-15 -2402 ((-411 |#2|) |#2|)) (-15 -3979 (|#2| |#2|)) (-15 -3315 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-549))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-549)))))) (-541) (-13 (-1202 |#1|) (-541) (-10 -8 (-15 -3727 ($ $ $))))) (T -1205))
-((-3315 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4) (|:| |xpnt| (-549)))) (-4 *4 (-13 (-1202 *3) (-541) (-10 -8 (-15 -3727 ($ $ $))))) (-4 *3 (-541)) (-5 *1 (-1205 *3 *4)))) (-3979 (*1 *2 *2) (-12 (-4 *3 (-541)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-1202 *3) (-541) (-10 -8 (-15 -3727 ($ $ $))))))) (-2402 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-411 *3)) (-5 *1 (-1205 *4 *3)) (-4 *3 (-13 (-1202 *4) (-541) (-10 -8 (-15 -3727 ($ $ $))))))))
-(-10 -7 (-15 -2402 ((-411 |#2|) |#2|)) (-15 -3979 (|#2| |#2|)) (-15 -3315 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-549))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-549))))))
-((-2797 (((-1211 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1211 |#1| |#3| |#5|)) 24)))
-(((-1206 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2797 ((-1211 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1211 |#1| |#3| |#5|)))) (-1018) (-1018) (-1143) (-1143) |#1| |#2|) (T -1206))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1211 *5 *7 *9)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-14 *7 (-1143)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1211 *6 *8 *10)) (-5 *1 (-1206 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1143)))))
-(-10 -7 (-15 -2797 ((-1211 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1211 |#1| |#3| |#5|))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2272 (((-621 (-1048)) $) 72)) (-3011 (((-1143) $) 101)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-2258 (($ $) 50 (|has| |#1| (-541)))) (-2799 (((-112) $) 52 (|has| |#1| (-541)))) (-3896 (($ $ (-400 (-549))) 96) (($ $ (-400 (-549)) (-400 (-549))) 95)) (-2212 (((-1123 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|))) $) 103)) (-1664 (($ $) 133 (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) 116 (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) 19)) (-3979 (($ $) 160 (|has| |#1| (-356)))) (-2402 (((-411 $) $) 161 (|has| |#1| (-356)))) (-2134 (($ $) 115 (|has| |#1| (-38 (-400 (-549)))))) (-3866 (((-112) $ $) 151 (|has| |#1| (-356)))) (-1640 (($ $) 132 (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) 117 (|has| |#1| (-38 (-400 (-549)))))) (-2826 (($ (-747) (-1123 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|)))) 169)) (-1685 (($ $) 131 (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) 118 (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) 17 T CONST)) (-2095 (($ $ $) 155 (|has| |#1| (-356)))) (-2070 (($ $) 58)) (-2114 (((-3 $ "failed") $) 32)) (-2067 (($ $ $) 154 (|has| |#1| (-356)))) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 149 (|has| |#1| (-356)))) (-1420 (((-112) $) 162 (|has| |#1| (-356)))) (-2871 (((-112) $) 71)) (-1425 (($) 143 (|has| |#1| (-38 (-400 (-549)))))) (-2088 (((-400 (-549)) $) 98) (((-400 (-549)) $ (-400 (-549))) 97)) (-2675 (((-112) $) 30)) (-4187 (($ $ (-549)) 114 (|has| |#1| (-38 (-400 (-549)))))) (-2992 (($ $ (-892)) 99) (($ $ (-400 (-549))) 168)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 158 (|has| |#1| (-356)))) (-2205 (((-112) $) 60)) (-2246 (($ |#1| (-400 (-549))) 59) (($ $ (-1048) (-400 (-549))) 74) (($ $ (-621 (-1048)) (-621 (-400 (-549)))) 73)) (-2797 (($ (-1 |#1| |#1|) $) 61)) (-3632 (($ $) 140 (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) 63)) (-2043 ((|#1| $) 64)) (-3697 (($ (-621 $)) 147 (|has| |#1| (-356))) (($ $ $) 146 (|has| |#1| (-356)))) (-3851 (((-1125) $) 9)) (-1992 (($ $) 163 (|has| |#1| (-356)))) (-3893 (($ $) 167 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1143)) 166 (-1536 (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-930)) (|has| |#1| (-1165)) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-15 -2272 ((-621 (-1143)) |#1|))) (|has| |#1| (-15 -3893 (|#1| |#1| (-1143)))) (|has| |#1| (-38 (-400 (-549)))))))) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 148 (|has| |#1| (-356)))) (-3727 (($ (-621 $)) 145 (|has| |#1| (-356))) (($ $ $) 144 (|has| |#1| (-356)))) (-2121 (((-411 $) $) 159 (|has| |#1| (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 157 (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 156 (|has| |#1| (-356)))) (-2763 (($ $ (-400 (-549))) 93)) (-2042 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 150 (|has| |#1| (-356)))) (-2719 (($ $) 141 (|has| |#1| (-38 (-400 (-549)))))) (-2686 (((-1123 |#1|) $ |#1|) 92 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))))) (-3684 (((-747) $) 152 (|has| |#1| (-356)))) (-3341 ((|#1| $ (-400 (-549))) 102) (($ $ $) 79 (|has| (-400 (-549)) (-1079)))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 153 (|has| |#1| (-356)))) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) 87 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-1143) (-747)) 86 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-621 (-1143))) 85 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-1143)) 84 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-747)) 82 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) 80 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-3701 (((-400 (-549)) $) 62)) (-1698 (($ $) 130 (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) 119 (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) 129 (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) 120 (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) 128 (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) 121 (|has| |#1| (-38 (-400 (-549)))))) (-1977 (($ $) 70)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 45 (|has| |#1| (-170))) (($ (-400 (-549))) 55 (|has| |#1| (-38 (-400 (-549))))) (($ $) 47 (|has| |#1| (-541)))) (-2152 ((|#1| $ (-400 (-549))) 57)) (-2210 (((-3 $ "failed") $) 46 (|has| |#1| (-143)))) (-2082 (((-747)) 28)) (-2597 ((|#1| $) 100)) (-1733 (($ $) 139 (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) 127 (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) 51 (|has| |#1| (-541)))) (-1710 (($ $) 138 (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) 126 (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) 137 (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) 125 (|has| |#1| (-38 (-400 (-549)))))) (-2661 ((|#1| $ (-400 (-549))) 94 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))) (|has| |#1| (-15 -3846 (|#1| (-1143))))))) (-1934 (($ $) 136 (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) 124 (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) 135 (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) 123 (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) 134 (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) 122 (|has| |#1| (-38 (-400 (-549)))))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ (-621 (-1143)) (-621 (-747))) 91 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-1143) (-747)) 90 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-621 (-1143))) 89 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-1143)) 88 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-747)) 83 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) 81 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-2389 (((-112) $ $) 6)) (-2513 (($ $ |#1|) 56 (|has| |#1| (-356))) (($ $ $) 165 (|has| |#1| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 164 (|has| |#1| (-356))) (($ $ $) 142 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 113 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
-(((-1207 |#1|) (-138) (-1018)) (T -1207))
-((-2826 (*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *3 (-1123 (-2 (|:| |k| (-400 (-549))) (|:| |c| *4)))) (-4 *4 (-1018)) (-4 *1 (-1207 *4)))) (-2992 (*1 *1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-4 *1 (-1207 *3)) (-4 *3 (-1018)))) (-3893 (*1 *1 *1) (-12 (-4 *1 (-1207 *2)) (-4 *2 (-1018)) (-4 *2 (-38 (-400 (-549)))))) (-3893 (*1 *1 *1 *2) (-1536 (-12 (-5 *2 (-1143)) (-4 *1 (-1207 *3)) (-4 *3 (-1018)) (-12 (-4 *3 (-29 (-549))) (-4 *3 (-930)) (-4 *3 (-1165)) (-4 *3 (-38 (-400 (-549)))))) (-12 (-5 *2 (-1143)) (-4 *1 (-1207 *3)) (-4 *3 (-1018)) (-12 (|has| *3 (-15 -2272 ((-621 *2) *3))) (|has| *3 (-15 -3893 (*3 *3 *2))) (-4 *3 (-38 (-400 (-549)))))))))
-(-13 (-1204 |t#1| (-400 (-549))) (-10 -8 (-15 -2826 ($ (-747) (-1123 (-2 (|:| |k| (-400 (-549))) (|:| |c| |t#1|))))) (-15 -2992 ($ $ (-400 (-549)))) (IF (|has| |t#1| (-38 (-400 (-549)))) (PROGN (-15 -3893 ($ $)) (IF (|has| |t#1| (-15 -3893 (|t#1| |t#1| (-1143)))) (IF (|has| |t#1| (-15 -2272 ((-621 (-1143)) |t#1|))) (-15 -3893 ($ $ (-1143))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1165)) (IF (|has| |t#1| (-930)) (IF (|has| |t#1| (-29 (-549))) (-15 -3893 ($ $ (-1143))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-973)) (-6 (-1165))) |%noBranch|) (IF (|has| |t#1| (-356)) (-6 (-356)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-400 (-549))) . T) ((-25) . T) ((-38 #1=(-400 (-549))) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-35) |has| |#1| (-38 (-400 (-549)))) ((-94) |has| |#1| (-38 (-400 (-549)))) ((-101) . T) ((-111 #1# #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-227) |has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) ((-237) |has| |#1| (-356)) ((-277) |has| |#1| (-38 (-400 (-549)))) ((-279 $ $) |has| (-400 (-549)) (-1079)) ((-283) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-300) |has| |#1| (-356)) ((-356) |has| |#1| (-356)) ((-444) |has| |#1| (-356)) ((-484) |has| |#1| (-38 (-400 (-549)))) ((-541) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-624 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-703) . T) ((-871 (-1143)) -12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143)))) ((-944 |#1| #0# (-1048)) . T) ((-891) |has| |#1| (-356)) ((-973) |has| |#1| (-38 (-400 (-549)))) ((-1024 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1165) |has| |#1| (-38 (-400 (-549)))) ((-1168) |has| |#1| (-38 (-400 (-549)))) ((-1184) |has| |#1| (-356)) ((-1204 |#1| #0#) . T))
-((-1763 (((-112) $) 12)) (-2714 (((-3 |#3| "failed") $) 17)) (-2659 ((|#3| $) 14)))
-(((-1208 |#1| |#2| |#3|) (-10 -8 (-15 -2659 (|#3| |#1|)) (-15 -2714 ((-3 |#3| "failed") |#1|)) (-15 -1763 ((-112) |#1|))) (-1209 |#2| |#3|) (-1018) (-1186 |#2|)) (T -1208))
-NIL
-(-10 -8 (-15 -2659 (|#3| |#1|)) (-15 -2714 ((-3 |#3| "failed") |#1|)) (-15 -1763 ((-112) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2272 (((-621 (-1048)) $) 72)) (-3011 (((-1143) $) 101)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-2258 (($ $) 50 (|has| |#1| (-541)))) (-2799 (((-112) $) 52 (|has| |#1| (-541)))) (-3896 (($ $ (-400 (-549))) 96) (($ $ (-400 (-549)) (-400 (-549))) 95)) (-2212 (((-1123 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|))) $) 103)) (-1664 (($ $) 133 (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) 116 (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) 19)) (-3979 (($ $) 160 (|has| |#1| (-356)))) (-2402 (((-411 $) $) 161 (|has| |#1| (-356)))) (-2134 (($ $) 115 (|has| |#1| (-38 (-400 (-549)))))) (-3866 (((-112) $ $) 151 (|has| |#1| (-356)))) (-1640 (($ $) 132 (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) 117 (|has| |#1| (-38 (-400 (-549)))))) (-2826 (($ (-747) (-1123 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|)))) 169)) (-1685 (($ $) 131 (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) 118 (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) 17 T CONST)) (-2714 (((-3 |#2| "failed") $) 180)) (-2659 ((|#2| $) 179)) (-2095 (($ $ $) 155 (|has| |#1| (-356)))) (-2070 (($ $) 58)) (-2114 (((-3 $ "failed") $) 32)) (-3159 (((-400 (-549)) $) 177)) (-2067 (($ $ $) 154 (|has| |#1| (-356)))) (-2366 (($ (-400 (-549)) |#2|) 178)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 149 (|has| |#1| (-356)))) (-1420 (((-112) $) 162 (|has| |#1| (-356)))) (-2871 (((-112) $) 71)) (-1425 (($) 143 (|has| |#1| (-38 (-400 (-549)))))) (-2088 (((-400 (-549)) $) 98) (((-400 (-549)) $ (-400 (-549))) 97)) (-2675 (((-112) $) 30)) (-4187 (($ $ (-549)) 114 (|has| |#1| (-38 (-400 (-549)))))) (-2992 (($ $ (-892)) 99) (($ $ (-400 (-549))) 168)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 158 (|has| |#1| (-356)))) (-2205 (((-112) $) 60)) (-2246 (($ |#1| (-400 (-549))) 59) (($ $ (-1048) (-400 (-549))) 74) (($ $ (-621 (-1048)) (-621 (-400 (-549)))) 73)) (-2797 (($ (-1 |#1| |#1|) $) 61)) (-3632 (($ $) 140 (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) 63)) (-2043 ((|#1| $) 64)) (-3697 (($ (-621 $)) 147 (|has| |#1| (-356))) (($ $ $) 146 (|has| |#1| (-356)))) (-4234 ((|#2| $) 176)) (-1537 (((-3 |#2| "failed") $) 174)) (-2352 ((|#2| $) 175)) (-3851 (((-1125) $) 9)) (-1992 (($ $) 163 (|has| |#1| (-356)))) (-3893 (($ $) 167 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1143)) 166 (-1536 (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-930)) (|has| |#1| (-1165)) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-15 -2272 ((-621 (-1143)) |#1|))) (|has| |#1| (-15 -3893 (|#1| |#1| (-1143)))) (|has| |#1| (-38 (-400 (-549)))))))) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 148 (|has| |#1| (-356)))) (-3727 (($ (-621 $)) 145 (|has| |#1| (-356))) (($ $ $) 144 (|has| |#1| (-356)))) (-2121 (((-411 $) $) 159 (|has| |#1| (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 157 (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 156 (|has| |#1| (-356)))) (-2763 (($ $ (-400 (-549))) 93)) (-2042 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 150 (|has| |#1| (-356)))) (-2719 (($ $) 141 (|has| |#1| (-38 (-400 (-549)))))) (-2686 (((-1123 |#1|) $ |#1|) 92 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))))) (-3684 (((-747) $) 152 (|has| |#1| (-356)))) (-3341 ((|#1| $ (-400 (-549))) 102) (($ $ $) 79 (|has| (-400 (-549)) (-1079)))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 153 (|has| |#1| (-356)))) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) 87 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-1143) (-747)) 86 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-621 (-1143))) 85 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-1143)) 84 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-747)) 82 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) 80 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-3701 (((-400 (-549)) $) 62)) (-1698 (($ $) 130 (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) 119 (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) 129 (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) 120 (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) 128 (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) 121 (|has| |#1| (-38 (-400 (-549)))))) (-1977 (($ $) 70)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 45 (|has| |#1| (-170))) (($ |#2|) 181) (($ (-400 (-549))) 55 (|has| |#1| (-38 (-400 (-549))))) (($ $) 47 (|has| |#1| (-541)))) (-2152 ((|#1| $ (-400 (-549))) 57)) (-2210 (((-3 $ "failed") $) 46 (|has| |#1| (-143)))) (-2082 (((-747)) 28)) (-2597 ((|#1| $) 100)) (-1733 (($ $) 139 (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) 127 (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) 51 (|has| |#1| (-541)))) (-1710 (($ $) 138 (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) 126 (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) 137 (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) 125 (|has| |#1| (-38 (-400 (-549)))))) (-2661 ((|#1| $ (-400 (-549))) 94 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))) (|has| |#1| (-15 -3846 (|#1| (-1143))))))) (-1934 (($ $) 136 (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) 124 (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) 135 (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) 123 (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) 134 (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) 122 (|has| |#1| (-38 (-400 (-549)))))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ (-621 (-1143)) (-621 (-747))) 91 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-1143) (-747)) 90 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-621 (-1143))) 89 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-1143)) 88 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-747)) 83 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) 81 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-2389 (((-112) $ $) 6)) (-2513 (($ $ |#1|) 56 (|has| |#1| (-356))) (($ $ $) 165 (|has| |#1| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 164 (|has| |#1| (-356))) (($ $ $) 142 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 113 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
-(((-1209 |#1| |#2|) (-138) (-1018) (-1186 |t#1|)) (T -1209))
-((-3701 (*1 *2 *1) (-12 (-4 *1 (-1209 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1186 *3)) (-5 *2 (-400 (-549))))) (-3846 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-4 *1 (-1209 *3 *2)) (-4 *2 (-1186 *3)))) (-2366 (*1 *1 *2 *3) (-12 (-5 *2 (-400 (-549))) (-4 *4 (-1018)) (-4 *1 (-1209 *4 *3)) (-4 *3 (-1186 *4)))) (-3159 (*1 *2 *1) (-12 (-4 *1 (-1209 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1186 *3)) (-5 *2 (-400 (-549))))) (-4234 (*1 *2 *1) (-12 (-4 *1 (-1209 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1186 *3)))) (-2352 (*1 *2 *1) (-12 (-4 *1 (-1209 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1186 *3)))) (-1537 (*1 *2 *1) (|partial| -12 (-4 *1 (-1209 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1186 *3)))))
-(-13 (-1207 |t#1|) (-1009 |t#2|) (-10 -8 (-15 -2366 ($ (-400 (-549)) |t#2|)) (-15 -3159 ((-400 (-549)) $)) (-15 -4234 (|t#2| $)) (-15 -3701 ((-400 (-549)) $)) (-15 -3846 ($ |t#2|)) (-15 -2352 (|t#2| $)) (-15 -1537 ((-3 |t#2| "failed") $))))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-400 (-549))) . T) ((-25) . T) ((-38 #1=(-400 (-549))) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-35) |has| |#1| (-38 (-400 (-549)))) ((-94) |has| |#1| (-38 (-400 (-549)))) ((-101) . T) ((-111 #1# #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-227) |has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) ((-237) |has| |#1| (-356)) ((-277) |has| |#1| (-38 (-400 (-549)))) ((-279 $ $) |has| (-400 (-549)) (-1079)) ((-283) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-300) |has| |#1| (-356)) ((-356) |has| |#1| (-356)) ((-444) |has| |#1| (-356)) ((-484) |has| |#1| (-38 (-400 (-549)))) ((-541) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-624 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-703) . T) ((-871 (-1143)) -12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143)))) ((-944 |#1| #0# (-1048)) . T) ((-891) |has| |#1| (-356)) ((-973) |has| |#1| (-38 (-400 (-549)))) ((-1009 |#2|) . T) ((-1024 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1165) |has| |#1| (-38 (-400 (-549)))) ((-1168) |has| |#1| (-38 (-400 (-549)))) ((-1184) |has| |#1| (-356)) ((-1204 |#1| #0#) . T) ((-1207 |#1|) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2272 (((-621 (-1048)) $) NIL)) (-3011 (((-1143) $) 96)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-3896 (($ $ (-400 (-549))) 106) (($ $ (-400 (-549)) (-400 (-549))) 108)) (-2212 (((-1123 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|))) $) 51)) (-1664 (($ $) 180 (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) 156 (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL (|has| |#1| (-356)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2134 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1640 (($ $) 176 (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) 152 (|has| |#1| (-38 (-400 (-549)))))) (-2826 (($ (-747) (-1123 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|)))) 61)) (-1685 (($ $) 184 (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) 160 (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#2| "failed") $) NIL)) (-2659 ((|#2| $) NIL)) (-2095 (($ $ $) NIL (|has| |#1| (-356)))) (-2070 (($ $) NIL)) (-2114 (((-3 $ "failed") $) 79)) (-3159 (((-400 (-549)) $) 13)) (-2067 (($ $ $) NIL (|has| |#1| (-356)))) (-2366 (($ (-400 (-549)) |#2|) 11)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1420 (((-112) $) NIL (|has| |#1| (-356)))) (-2871 (((-112) $) 68)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2088 (((-400 (-549)) $) 103) (((-400 (-549)) $ (-400 (-549))) 104)) (-2675 (((-112) $) NIL)) (-4187 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2992 (($ $ (-892)) 120) (($ $ (-400 (-549))) 118)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-400 (-549))) 31) (($ $ (-1048) (-400 (-549))) NIL) (($ $ (-621 (-1048)) (-621 (-400 (-549)))) NIL)) (-2797 (($ (-1 |#1| |#1|) $) 115)) (-3632 (($ $) 150 (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-4234 ((|#2| $) 12)) (-1537 (((-3 |#2| "failed") $) 41)) (-2352 ((|#2| $) 42)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) 93 (|has| |#1| (-356)))) (-3893 (($ $) 135 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1143)) 140 (-1536 (-12 (|has| |#1| (-15 -3893 (|#1| |#1| (-1143)))) (|has| |#1| (-15 -2272 ((-621 (-1143)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1165)))))) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-356)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2121 (((-411 $) $) NIL (|has| |#1| (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-2763 (($ $ (-400 (-549))) 112)) (-2042 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2719 (($ $) 148 (|has| |#1| (-38 (-400 (-549)))))) (-2686 (((-1123 |#1|) $ |#1|) 90 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))))) (-3684 (((-747) $) NIL (|has| |#1| (-356)))) (-3341 ((|#1| $ (-400 (-549))) 100) (($ $ $) 86 (|has| (-400 (-549)) (-1079)))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-356)))) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143)) 127 (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) 124 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-3701 (((-400 (-549)) $) 16)) (-1698 (($ $) 186 (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) 162 (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) 182 (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) 158 (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) 178 (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) 154 (|has| |#1| (-38 (-400 (-549)))))) (-1977 (($ $) 110)) (-3846 (((-834) $) NIL) (($ (-549)) 35) (($ |#1|) 27 (|has| |#1| (-170))) (($ |#2|) 32) (($ (-400 (-549))) 128 (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541)))) (-2152 ((|#1| $ (-400 (-549))) 99)) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) 117)) (-2597 ((|#1| $) 98)) (-1733 (($ $) 192 (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) 168 (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1710 (($ $) 188 (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) 164 (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) 196 (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) 172 (|has| |#1| (-38 (-400 (-549)))))) (-2661 ((|#1| $ (-400 (-549))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))) (|has| |#1| (-15 -3846 (|#1| (-1143))))))) (-1934 (($ $) 198 (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) 174 (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) 194 (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) 170 (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) 190 (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) 166 (|has| |#1| (-38 (-400 (-549)))))) (-3276 (($) 21 T CONST)) (-3287 (($) 17 T CONST)) (-1702 (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-2389 (((-112) $ $) 66)) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) 92 (|has| |#1| (-356)))) (-2500 (($ $) 131) (($ $ $) 72)) (-2486 (($ $ $) 70)) (** (($ $ (-892)) NIL) (($ $ (-747)) 76) (($ $ (-549)) 145 (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 146 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 74) (($ $ |#1|) NIL) (($ |#1| $) 126) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
-(((-1210 |#1| |#2|) (-1209 |#1| |#2|) (-1018) (-1186 |#1|)) (T -1210))
-NIL
-(-1209 |#1| |#2|)
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2272 (((-621 (-1048)) $) NIL)) (-3011 (((-1143) $) 11)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) NIL (|has| |#1| (-541)))) (-3896 (($ $ (-400 (-549))) NIL) (($ $ (-400 (-549)) (-400 (-549))) NIL)) (-2212 (((-1123 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|))) $) NIL)) (-1664 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) NIL)) (-3979 (($ $) NIL (|has| |#1| (-356)))) (-2402 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2134 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3866 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1640 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2826 (($ (-747) (-1123 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|)))) NIL)) (-1685 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-1190 |#1| |#2| |#3|) "failed") $) 19) (((-3 (-1218 |#1| |#2| |#3|) "failed") $) 22)) (-2659 (((-1190 |#1| |#2| |#3|) $) NIL) (((-1218 |#1| |#2| |#3|) $) NIL)) (-2095 (($ $ $) NIL (|has| |#1| (-356)))) (-2070 (($ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3159 (((-400 (-549)) $) 57)) (-2067 (($ $ $) NIL (|has| |#1| (-356)))) (-2366 (($ (-400 (-549)) (-1190 |#1| |#2| |#3|)) NIL)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1420 (((-112) $) NIL (|has| |#1| (-356)))) (-2871 (((-112) $) NIL)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2088 (((-400 (-549)) $) NIL) (((-400 (-549)) $ (-400 (-549))) NIL)) (-2675 (((-112) $) NIL)) (-4187 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2992 (($ $ (-892)) NIL) (($ $ (-400 (-549))) NIL)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-400 (-549))) 30) (($ $ (-1048) (-400 (-549))) NIL) (($ $ (-621 (-1048)) (-621 (-400 (-549)))) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-3632 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-3697 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-4234 (((-1190 |#1| |#2| |#3|) $) 60)) (-1537 (((-3 (-1190 |#1| |#2| |#3|) "failed") $) NIL)) (-2352 (((-1190 |#1| |#2| |#3|) $) NIL)) (-3851 (((-1125) $) NIL)) (-1992 (($ $) NIL (|has| |#1| (-356)))) (-3893 (($ $) 39 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1143)) NIL (-1536 (-12 (|has| |#1| (-15 -3893 (|#1| |#1| (-1143)))) (|has| |#1| (-15 -2272 ((-621 (-1143)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1165))))) (($ $ (-1222 |#2|)) 40 (|has| |#1| (-38 (-400 (-549)))))) (-3990 (((-1087) $) NIL)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) NIL (|has| |#1| (-356)))) (-3727 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2121 (((-411 $) $) NIL (|has| |#1| (-356)))) (-3083 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) NIL (|has| |#1| (-356)))) (-2763 (($ $ (-400 (-549))) NIL)) (-2042 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-3644 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2719 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2686 (((-1123 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))))) (-3684 (((-747) $) NIL (|has| |#1| (-356)))) (-3341 ((|#1| $ (-400 (-549))) NIL) (($ $ $) NIL (|has| (-400 (-549)) (-1079)))) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) NIL (|has| |#1| (-356)))) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $ (-1222 |#2|)) 38)) (-3701 (((-400 (-549)) $) NIL)) (-1698 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1977 (($ $) NIL)) (-3846 (((-834) $) 89) (($ (-549)) NIL) (($ |#1|) NIL (|has| |#1| (-170))) (($ (-1190 |#1| |#2| |#3|)) 16) (($ (-1218 |#1| |#2| |#3|)) 17) (($ (-1222 |#2|)) 36) (($ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541)))) (-2152 ((|#1| $ (-400 (-549))) NIL)) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) NIL)) (-2597 ((|#1| $) 12)) (-1733 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1710 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2661 ((|#1| $ (-400 (-549))) 62 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))) (|has| |#1| (-15 -3846 (|#1| (-1143))))))) (-1934 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3276 (($) 32 T CONST)) (-3287 (($) 26 T CONST)) (-1702 (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) 34)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
-(((-1211 |#1| |#2| |#3|) (-13 (-1209 |#1| (-1190 |#1| |#2| |#3|)) (-1009 (-1218 |#1| |#2| |#3|)) (-10 -8 (-15 -3846 ($ (-1222 |#2|))) (-15 -3456 ($ $ (-1222 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3893 ($ $ (-1222 |#2|))) |%noBranch|))) (-1018) (-1143) |#1|) (T -1211))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1211 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3456 (*1 *1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1211 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3893 (*1 *1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1211 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3))))
-(-13 (-1209 |#1| (-1190 |#1| |#2| |#3|)) (-1009 (-1218 |#1| |#2| |#3|)) (-10 -8 (-15 -3846 ($ (-1222 |#2|))) (-15 -3456 ($ $ (-1222 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3893 ($ $ (-1222 |#2|))) |%noBranch|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 34)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL)) (-2258 (($ $) NIL)) (-2799 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 (-549) "failed") $) NIL (|has| (-1211 |#2| |#3| |#4|) (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-1211 |#2| |#3| |#4|) (-1009 (-400 (-549))))) (((-3 (-1211 |#2| |#3| |#4|) "failed") $) 20)) (-2659 (((-549) $) NIL (|has| (-1211 |#2| |#3| |#4|) (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| (-1211 |#2| |#3| |#4|) (-1009 (-400 (-549))))) (((-1211 |#2| |#3| |#4|) $) NIL)) (-2070 (($ $) 35)) (-2114 (((-3 $ "failed") $) 25)) (-1285 (($ $) NIL (|has| (-1211 |#2| |#3| |#4|) (-444)))) (-2691 (($ $ (-1211 |#2| |#3| |#4|) (-312 |#2| |#3| |#4|) $) NIL)) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) 11)) (-2205 (((-112) $) NIL)) (-2246 (($ (-1211 |#2| |#3| |#4|) (-312 |#2| |#3| |#4|)) 23)) (-3611 (((-312 |#2| |#3| |#4|) $) NIL)) (-3705 (($ (-1 (-312 |#2| |#3| |#4|) (-312 |#2| |#3| |#4|)) $) NIL)) (-2797 (($ (-1 (-1211 |#2| |#3| |#4|) (-1211 |#2| |#3| |#4|)) $) NIL)) (-1914 (((-3 (-816 |#2|) "failed") $) 75)) (-2028 (($ $) NIL)) (-2043 (((-1211 |#2| |#3| |#4|) $) 18)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2004 (((-112) $) NIL)) (-2016 (((-1211 |#2| |#3| |#4|) $) NIL)) (-2042 (((-3 $ "failed") $ (-1211 |#2| |#3| |#4|)) NIL (|has| (-1211 |#2| |#3| |#4|) (-541))) (((-3 $ "failed") $ $) NIL)) (-2430 (((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1211 |#2| |#3| |#4|)) (|:| |%expon| (-312 |#2| |#3| |#4|)) (|:| |%expTerms| (-621 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#2|)))))) (|:| |%type| (-1125))) "failed") $) 58)) (-3701 (((-312 |#2| |#3| |#4|) $) 14)) (-2216 (((-1211 |#2| |#3| |#4|) $) NIL (|has| (-1211 |#2| |#3| |#4|) (-444)))) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ (-1211 |#2| |#3| |#4|)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL (-1536 (|has| (-1211 |#2| |#3| |#4|) (-38 (-400 (-549)))) (|has| (-1211 |#2| |#3| |#4|) (-1009 (-400 (-549))))))) (-4141 (((-621 (-1211 |#2| |#3| |#4|)) $) NIL)) (-2152 (((-1211 |#2| |#3| |#4|) $ (-312 |#2| |#3| |#4|)) NIL)) (-2210 (((-3 $ "failed") $) NIL (|has| (-1211 |#2| |#3| |#4|) (-143)))) (-2082 (((-747)) NIL)) (-1509 (($ $ $ (-747)) NIL (|has| (-1211 |#2| |#3| |#4|) (-170)))) (-1498 (((-112) $ $) NIL)) (-3276 (($) 63 T CONST)) (-3287 (($) NIL T CONST)) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ (-1211 |#2| |#3| |#4|)) NIL (|has| (-1211 |#2| |#3| |#4|) (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-1211 |#2| |#3| |#4|)) NIL) (($ (-1211 |#2| |#3| |#4|) $) NIL) (($ (-400 (-549)) $) NIL (|has| (-1211 |#2| |#3| |#4|) (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| (-1211 |#2| |#3| |#4|) (-38 (-400 (-549)))))))
-(((-1212 |#1| |#2| |#3| |#4|) (-13 (-319 (-1211 |#2| |#3| |#4|) (-312 |#2| |#3| |#4|)) (-541) (-10 -8 (-15 -1914 ((-3 (-816 |#2|) "failed") $)) (-15 -2430 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1211 |#2| |#3| |#4|)) (|:| |%expon| (-312 |#2| |#3| |#4|)) (|:| |%expTerms| (-621 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#2|)))))) (|:| |%type| (-1125))) "failed") $)))) (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444)) (-13 (-27) (-1165) (-423 |#1|)) (-1143) |#2|) (T -1212))
-((-1914 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444))) (-5 *2 (-816 *4)) (-5 *1 (-1212 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1165) (-423 *3))) (-14 *5 (-1143)) (-14 *6 *4))) (-2430 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444))) (-5 *2 (-2 (|:| |%term| (-2 (|:| |%coef| (-1211 *4 *5 *6)) (|:| |%expon| (-312 *4 *5 *6)) (|:| |%expTerms| (-621 (-2 (|:| |k| (-400 (-549))) (|:| |c| *4)))))) (|:| |%type| (-1125)))) (-5 *1 (-1212 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1165) (-423 *3))) (-14 *5 (-1143)) (-14 *6 *4))))
-(-13 (-319 (-1211 |#2| |#3| |#4|) (-312 |#2| |#3| |#4|)) (-541) (-10 -8 (-15 -1914 ((-3 (-816 |#2|) "failed") $)) (-15 -2430 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1211 |#2| |#3| |#4|)) (|:| |%expon| (-312 |#2| |#3| |#4|)) (|:| |%expTerms| (-621 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#2|)))))) (|:| |%type| (-1125))) "failed") $))))
-((-4161 ((|#2| $) 29)) (-2839 ((|#2| $) 18)) (-1343 (($ $) 36)) (-3174 (($ $ (-549)) 64)) (-1584 (((-112) $ (-747)) 33)) (-2838 ((|#2| $ |#2|) 61)) (-2780 ((|#2| $ |#2|) 59)) (-2254 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) 52) (($ $ "rest" $) 56) ((|#2| $ "last" |#2|) 54)) (-2722 (($ $ (-621 $)) 60)) (-2830 ((|#2| $) 17)) (-3657 (($ $) NIL) (($ $ (-747)) 42)) (-3075 (((-621 $) $) 26)) (-3895 (((-112) $ $) 50)) (-3194 (((-112) $ (-747)) 32)) (-1508 (((-112) $ (-747)) 31)) (-2076 (((-112) $) 28)) (-3829 ((|#2| $) 24) (($ $ (-747)) 46)) (-3341 ((|#2| $ "value") NIL) ((|#2| $ "first") 10) (($ $ "rest") 16) ((|#2| $ "last") 13)) (-3497 (((-112) $) 22)) (-1999 (($ $) 39)) (-2643 (($ $) 65)) (-3798 (((-747) $) 41)) (-3612 (($ $) 40)) (-1952 (($ $ $) 58) (($ |#2| $) NIL)) (-2742 (((-621 $) $) 27)) (-2389 (((-112) $ $) 48)) (-3775 (((-747) $) 35)))
-(((-1213 |#1| |#2|) (-10 -8 (-15 -3174 (|#1| |#1| (-549))) (-15 -2254 (|#2| |#1| "last" |#2|)) (-15 -2780 (|#2| |#1| |#2|)) (-15 -2254 (|#1| |#1| "rest" |#1|)) (-15 -2254 (|#2| |#1| "first" |#2|)) (-15 -2643 (|#1| |#1|)) (-15 -1999 (|#1| |#1|)) (-15 -3798 ((-747) |#1|)) (-15 -3612 (|#1| |#1|)) (-15 -2839 (|#2| |#1|)) (-15 -2830 (|#2| |#1|)) (-15 -1343 (|#1| |#1|)) (-15 -3829 (|#1| |#1| (-747))) (-15 -3341 (|#2| |#1| "last")) (-15 -3829 (|#2| |#1|)) (-15 -3657 (|#1| |#1| (-747))) (-15 -3341 (|#1| |#1| "rest")) (-15 -3657 (|#1| |#1|)) (-15 -3341 (|#2| |#1| "first")) (-15 -1952 (|#1| |#2| |#1|)) (-15 -1952 (|#1| |#1| |#1|)) (-15 -2838 (|#2| |#1| |#2|)) (-15 -2254 (|#2| |#1| "value" |#2|)) (-15 -2722 (|#1| |#1| (-621 |#1|))) (-15 -3895 ((-112) |#1| |#1|)) (-15 -3497 ((-112) |#1|)) (-15 -3341 (|#2| |#1| "value")) (-15 -4161 (|#2| |#1|)) (-15 -2076 ((-112) |#1|)) (-15 -3075 ((-621 |#1|) |#1|)) (-15 -2742 ((-621 |#1|) |#1|)) (-15 -2389 ((-112) |#1| |#1|)) (-15 -3775 ((-747) |#1|)) (-15 -1584 ((-112) |#1| (-747))) (-15 -3194 ((-112) |#1| (-747))) (-15 -1508 ((-112) |#1| (-747)))) (-1214 |#2|) (-1180)) (T -1213))
-NIL
-(-10 -8 (-15 -3174 (|#1| |#1| (-549))) (-15 -2254 (|#2| |#1| "last" |#2|)) (-15 -2780 (|#2| |#1| |#2|)) (-15 -2254 (|#1| |#1| "rest" |#1|)) (-15 -2254 (|#2| |#1| "first" |#2|)) (-15 -2643 (|#1| |#1|)) (-15 -1999 (|#1| |#1|)) (-15 -3798 ((-747) |#1|)) (-15 -3612 (|#1| |#1|)) (-15 -2839 (|#2| |#1|)) (-15 -2830 (|#2| |#1|)) (-15 -1343 (|#1| |#1|)) (-15 -3829 (|#1| |#1| (-747))) (-15 -3341 (|#2| |#1| "last")) (-15 -3829 (|#2| |#1|)) (-15 -3657 (|#1| |#1| (-747))) (-15 -3341 (|#1| |#1| "rest")) (-15 -3657 (|#1| |#1|)) (-15 -3341 (|#2| |#1| "first")) (-15 -1952 (|#1| |#2| |#1|)) (-15 -1952 (|#1| |#1| |#1|)) (-15 -2838 (|#2| |#1| |#2|)) (-15 -2254 (|#2| |#1| "value" |#2|)) (-15 -2722 (|#1| |#1| (-621 |#1|))) (-15 -3895 ((-112) |#1| |#1|)) (-15 -3497 ((-112) |#1|)) (-15 -3341 (|#2| |#1| "value")) (-15 -4161 (|#2| |#1|)) (-15 -2076 ((-112) |#1|)) (-15 -3075 ((-621 |#1|) |#1|)) (-15 -2742 ((-621 |#1|) |#1|)) (-15 -2389 ((-112) |#1| |#1|)) (-15 -3775 ((-747) |#1|)) (-15 -1584 ((-112) |#1| (-747))) (-15 -3194 ((-112) |#1| (-747))) (-15 -1508 ((-112) |#1| (-747))))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-4161 ((|#1| $) 48)) (-2839 ((|#1| $) 65)) (-1343 (($ $) 67)) (-3174 (($ $ (-549)) 52 (|has| $ (-6 -4338)))) (-1584 (((-112) $ (-747)) 8)) (-2838 ((|#1| $ |#1|) 39 (|has| $ (-6 -4338)))) (-4179 (($ $ $) 56 (|has| $ (-6 -4338)))) (-2780 ((|#1| $ |#1|) 54 (|has| $ (-6 -4338)))) (-4135 ((|#1| $ |#1|) 58 (|has| $ (-6 -4338)))) (-2254 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4338))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4338))) (($ $ "rest" $) 55 (|has| $ (-6 -4338))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4338)))) (-2722 (($ $ (-621 $)) 41 (|has| $ (-6 -4338)))) (-2830 ((|#1| $) 66)) (-1682 (($) 7 T CONST)) (-3657 (($ $) 73) (($ $ (-747)) 71)) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-3075 (((-621 $) $) 50)) (-3895 (((-112) $ $) 42 (|has| |#1| (-1067)))) (-3194 (((-112) $ (-747)) 9)) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35)) (-1508 (((-112) $ (-747)) 10)) (-3591 (((-621 |#1|) $) 45)) (-2076 (((-112) $) 49)) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-3829 ((|#1| $) 70) (($ $ (-747)) 68)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-3646 ((|#1| $) 76) (($ $ (-747)) 74)) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69)) (-3230 (((-549) $ $) 44)) (-3497 (((-112) $) 46)) (-1999 (($ $) 62)) (-2643 (($ $) 59 (|has| $ (-6 -4338)))) (-3798 (((-747) $) 63)) (-3612 (($ $) 64)) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2281 (($ $) 13)) (-3196 (($ $ $) 61 (|has| $ (-6 -4338))) (($ $ |#1|) 60 (|has| $ (-6 -4338)))) (-1952 (($ $ $) 78) (($ |#1| $) 77)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-2742 (((-621 $) $) 51)) (-1987 (((-112) $ $) 43 (|has| |#1| (-1067)))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-1214 |#1|) (-138) (-1180)) (T -1214))
-((-1952 (*1 *1 *1 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-1952 (*1 *1 *2 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-3646 (*1 *2 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-3341 (*1 *2 *1 *3) (-12 (-5 *3 "first") (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-3646 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1214 *3)) (-4 *3 (-1180)))) (-3657 (*1 *1 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-3341 (*1 *1 *1 *2) (-12 (-5 *2 "rest") (-4 *1 (-1214 *3)) (-4 *3 (-1180)))) (-3657 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1214 *3)) (-4 *3 (-1180)))) (-3829 (*1 *2 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-3341 (*1 *2 *1 *3) (-12 (-5 *3 "last") (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-3829 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1214 *3)) (-4 *3 (-1180)))) (-1343 (*1 *1 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-2830 (*1 *2 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-2839 (*1 *2 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-3612 (*1 *1 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-3798 (*1 *2 *1) (-12 (-4 *1 (-1214 *3)) (-4 *3 (-1180)) (-5 *2 (-747)))) (-1999 (*1 *1 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-3196 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-3196 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-2643 (*1 *1 *1) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-4135 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-2254 (*1 *2 *1 *3 *2) (-12 (-5 *3 "first") (|has| *1 (-6 -4338)) (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-4179 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-2254 (*1 *1 *1 *2 *1) (-12 (-5 *2 "rest") (|has| *1 (-6 -4338)) (-4 *1 (-1214 *3)) (-4 *3 (-1180)))) (-2780 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4338)) (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-2254 (*1 *2 *1 *3 *2) (-12 (-5 *3 "last") (|has| *1 (-6 -4338)) (-4 *1 (-1214 *2)) (-4 *2 (-1180)))) (-3174 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (|has| *1 (-6 -4338)) (-4 *1 (-1214 *3)) (-4 *3 (-1180)))))
-(-13 (-981 |t#1|) (-10 -8 (-15 -1952 ($ $ $)) (-15 -1952 ($ |t#1| $)) (-15 -3646 (|t#1| $)) (-15 -3341 (|t#1| $ "first")) (-15 -3646 ($ $ (-747))) (-15 -3657 ($ $)) (-15 -3341 ($ $ "rest")) (-15 -3657 ($ $ (-747))) (-15 -3829 (|t#1| $)) (-15 -3341 (|t#1| $ "last")) (-15 -3829 ($ $ (-747))) (-15 -1343 ($ $)) (-15 -2830 (|t#1| $)) (-15 -2839 (|t#1| $)) (-15 -3612 ($ $)) (-15 -3798 ((-747) $)) (-15 -1999 ($ $)) (IF (|has| $ (-6 -4338)) (PROGN (-15 -3196 ($ $ $)) (-15 -3196 ($ $ |t#1|)) (-15 -2643 ($ $)) (-15 -4135 (|t#1| $ |t#1|)) (-15 -2254 (|t#1| $ "first" |t#1|)) (-15 -4179 ($ $ $)) (-15 -2254 ($ $ "rest" $)) (-15 -2780 (|t#1| $ |t#1|)) (-15 -2254 (|t#1| $ "last" |t#1|)) (-15 -3174 ($ $ (-549)))) |%noBranch|)))
-(((-34) . T) ((-101) |has| |#1| (-1067)) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-981 |#1|) . T) ((-1067) |has| |#1| (-1067)) ((-1180) . T))
-((-2797 ((|#4| (-1 |#2| |#1|) |#3|) 17)))
-(((-1215 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2797 (|#4| (-1 |#2| |#1|) |#3|))) (-1018) (-1018) (-1217 |#1|) (-1217 |#2|)) (T -1215))
-((-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-1217 *6)) (-5 *1 (-1215 *5 *6 *4 *2)) (-4 *4 (-1217 *5)))))
-(-10 -7 (-15 -2797 (|#4| (-1 |#2| |#1|) |#3|)))
-((-1763 (((-112) $) 15)) (-1664 (($ $) 92)) (-1512 (($ $) 68)) (-1640 (($ $) 88)) (-1486 (($ $) 64)) (-1685 (($ $) 96)) (-1539 (($ $) 72)) (-3632 (($ $) 62)) (-2719 (($ $) 60)) (-1698 (($ $) 98)) (-1552 (($ $) 74)) (-1675 (($ $) 94)) (-1526 (($ $) 70)) (-1651 (($ $) 90)) (-1501 (($ $) 66)) (-3846 (((-834) $) 48) (($ (-549)) NIL) (($ (-400 (-549))) NIL) (($ $) NIL) (($ |#2|) NIL)) (-1733 (($ $) 104)) (-1587 (($ $) 80)) (-1710 (($ $) 100)) (-1564 (($ $) 76)) (-1758 (($ $) 108)) (-1612 (($ $) 84)) (-1934 (($ $) 110)) (-1627 (($ $) 86)) (-1745 (($ $) 106)) (-1600 (($ $) 82)) (-1722 (($ $) 102)) (-1576 (($ $) 78)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ |#2|) 52) (($ $ $) 55) (($ $ (-400 (-549))) 58)))
-(((-1216 |#1| |#2|) (-10 -8 (-15 ** (|#1| |#1| (-400 (-549)))) (-15 -1512 (|#1| |#1|)) (-15 -1486 (|#1| |#1|)) (-15 -1539 (|#1| |#1|)) (-15 -1552 (|#1| |#1|)) (-15 -1526 (|#1| |#1|)) (-15 -1501 (|#1| |#1|)) (-15 -1576 (|#1| |#1|)) (-15 -1600 (|#1| |#1|)) (-15 -1627 (|#1| |#1|)) (-15 -1612 (|#1| |#1|)) (-15 -1564 (|#1| |#1|)) (-15 -1587 (|#1| |#1|)) (-15 -1651 (|#1| |#1|)) (-15 -1675 (|#1| |#1|)) (-15 -1698 (|#1| |#1|)) (-15 -1685 (|#1| |#1|)) (-15 -1640 (|#1| |#1|)) (-15 -1664 (|#1| |#1|)) (-15 -1722 (|#1| |#1|)) (-15 -1745 (|#1| |#1|)) (-15 -1934 (|#1| |#1|)) (-15 -1758 (|#1| |#1|)) (-15 -1710 (|#1| |#1|)) (-15 -1733 (|#1| |#1|)) (-15 -3632 (|#1| |#1|)) (-15 -2719 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3846 (|#1| |#2|)) (-15 -3846 (|#1| |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -3846 (|#1| (-549))) (-15 ** (|#1| |#1| (-747))) (-15 ** (|#1| |#1| (-892))) (-15 -1763 ((-112) |#1|)) (-15 -3846 ((-834) |#1|))) (-1217 |#2|) (-1018)) (T -1216))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-400 (-549)))) (-15 -1512 (|#1| |#1|)) (-15 -1486 (|#1| |#1|)) (-15 -1539 (|#1| |#1|)) (-15 -1552 (|#1| |#1|)) (-15 -1526 (|#1| |#1|)) (-15 -1501 (|#1| |#1|)) (-15 -1576 (|#1| |#1|)) (-15 -1600 (|#1| |#1|)) (-15 -1627 (|#1| |#1|)) (-15 -1612 (|#1| |#1|)) (-15 -1564 (|#1| |#1|)) (-15 -1587 (|#1| |#1|)) (-15 -1651 (|#1| |#1|)) (-15 -1675 (|#1| |#1|)) (-15 -1698 (|#1| |#1|)) (-15 -1685 (|#1| |#1|)) (-15 -1640 (|#1| |#1|)) (-15 -1664 (|#1| |#1|)) (-15 -1722 (|#1| |#1|)) (-15 -1745 (|#1| |#1|)) (-15 -1934 (|#1| |#1|)) (-15 -1758 (|#1| |#1|)) (-15 -1710 (|#1| |#1|)) (-15 -1733 (|#1| |#1|)) (-15 -3632 (|#1| |#1|)) (-15 -2719 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3846 (|#1| |#2|)) (-15 -3846 (|#1| |#1|)) (-15 -3846 (|#1| (-400 (-549)))) (-15 -3846 (|#1| (-549))) (-15 ** (|#1| |#1| (-747))) (-15 ** (|#1| |#1| (-892))) (-15 -1763 ((-112) |#1|)) (-15 -3846 ((-834) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2272 (((-621 (-1048)) $) 72)) (-3011 (((-1143) $) 101)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-2258 (($ $) 50 (|has| |#1| (-541)))) (-2799 (((-112) $) 52 (|has| |#1| (-541)))) (-3896 (($ $ (-747)) 96) (($ $ (-747) (-747)) 95)) (-2212 (((-1123 (-2 (|:| |k| (-747)) (|:| |c| |#1|))) $) 103)) (-1664 (($ $) 133 (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) 116 (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) 19)) (-2134 (($ $) 115 (|has| |#1| (-38 (-400 (-549)))))) (-1640 (($ $) 132 (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) 117 (|has| |#1| (-38 (-400 (-549)))))) (-2826 (($ (-1123 (-2 (|:| |k| (-747)) (|:| |c| |#1|)))) 153) (($ (-1123 |#1|)) 151)) (-1685 (($ $) 131 (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) 118 (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) 17 T CONST)) (-2070 (($ $) 58)) (-2114 (((-3 $ "failed") $) 32)) (-3754 (($ $) 150)) (-1414 (((-923 |#1|) $ (-747)) 148) (((-923 |#1|) $ (-747) (-747)) 147)) (-2871 (((-112) $) 71)) (-1425 (($) 143 (|has| |#1| (-38 (-400 (-549)))))) (-2088 (((-747) $) 98) (((-747) $ (-747)) 97)) (-2675 (((-112) $) 30)) (-4187 (($ $ (-549)) 114 (|has| |#1| (-38 (-400 (-549)))))) (-2992 (($ $ (-892)) 99)) (-2876 (($ (-1 |#1| (-549)) $) 149)) (-2205 (((-112) $) 60)) (-2246 (($ |#1| (-747)) 59) (($ $ (-1048) (-747)) 74) (($ $ (-621 (-1048)) (-621 (-747))) 73)) (-2797 (($ (-1 |#1| |#1|) $) 61)) (-3632 (($ $) 140 (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) 63)) (-2043 ((|#1| $) 64)) (-3851 (((-1125) $) 9)) (-3893 (($ $) 145 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1143)) 144 (-1536 (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-930)) (|has| |#1| (-1165)) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-15 -2272 ((-621 (-1143)) |#1|))) (|has| |#1| (-15 -3893 (|#1| |#1| (-1143)))) (|has| |#1| (-38 (-400 (-549)))))))) (-3990 (((-1087) $) 10)) (-2763 (($ $ (-747)) 93)) (-2042 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541)))) (-2719 (($ $) 141 (|has| |#1| (-38 (-400 (-549)))))) (-2686 (((-1123 |#1|) $ |#1|) 92 (|has| |#1| (-15 ** (|#1| |#1| (-747)))))) (-3341 ((|#1| $ (-747)) 102) (($ $ $) 79 (|has| (-747) (-1079)))) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) 87 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (($ $ (-1143) (-747)) 86 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (($ $ (-621 (-1143))) 85 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (($ $ (-1143)) 84 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (($ $ (-747)) 82 (|has| |#1| (-15 * (|#1| (-747) |#1|)))) (($ $) 80 (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (-3701 (((-747) $) 62)) (-1698 (($ $) 130 (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) 119 (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) 129 (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) 120 (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) 128 (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) 121 (|has| |#1| (-38 (-400 (-549)))))) (-1977 (($ $) 70)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 55 (|has| |#1| (-38 (-400 (-549))))) (($ $) 47 (|has| |#1| (-541))) (($ |#1|) 45 (|has| |#1| (-170)))) (-4141 (((-1123 |#1|) $) 152)) (-2152 ((|#1| $ (-747)) 57)) (-2210 (((-3 $ "failed") $) 46 (|has| |#1| (-143)))) (-2082 (((-747)) 28)) (-2597 ((|#1| $) 100)) (-1733 (($ $) 139 (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) 127 (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) 51 (|has| |#1| (-541)))) (-1710 (($ $) 138 (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) 126 (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) 137 (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) 125 (|has| |#1| (-38 (-400 (-549)))))) (-2661 ((|#1| $ (-747)) 94 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-747)))) (|has| |#1| (-15 -3846 (|#1| (-1143))))))) (-1934 (($ $) 136 (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) 124 (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) 135 (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) 123 (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) 134 (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) 122 (|has| |#1| (-38 (-400 (-549)))))) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1702 (($ $ (-621 (-1143)) (-621 (-747))) 91 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (($ $ (-1143) (-747)) 90 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (($ $ (-621 (-1143))) 89 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (($ $ (-1143)) 88 (-12 (|has| |#1| (-871 (-1143))) (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (($ $ (-747)) 83 (|has| |#1| (-15 * (|#1| (-747) |#1|)))) (($ $) 81 (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (-2389 (((-112) $ $) 6)) (-2513 (($ $ |#1|) 56 (|has| |#1| (-356)))) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ |#1|) 146 (|has| |#1| (-356))) (($ $ $) 142 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 113 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
-(((-1217 |#1|) (-138) (-1018)) (T -1217))
-((-2826 (*1 *1 *2) (-12 (-5 *2 (-1123 (-2 (|:| |k| (-747)) (|:| |c| *3)))) (-4 *3 (-1018)) (-4 *1 (-1217 *3)))) (-4141 (*1 *2 *1) (-12 (-4 *1 (-1217 *3)) (-4 *3 (-1018)) (-5 *2 (-1123 *3)))) (-2826 (*1 *1 *2) (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-4 *1 (-1217 *3)))) (-3754 (*1 *1 *1) (-12 (-4 *1 (-1217 *2)) (-4 *2 (-1018)))) (-2876 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-549))) (-4 *1 (-1217 *3)) (-4 *3 (-1018)))) (-1414 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *1 (-1217 *4)) (-4 *4 (-1018)) (-5 *2 (-923 *4)))) (-1414 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-747)) (-4 *1 (-1217 *4)) (-4 *4 (-1018)) (-5 *2 (-923 *4)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1217 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-3893 (*1 *1 *1) (-12 (-4 *1 (-1217 *2)) (-4 *2 (-1018)) (-4 *2 (-38 (-400 (-549)))))) (-3893 (*1 *1 *1 *2) (-1536 (-12 (-5 *2 (-1143)) (-4 *1 (-1217 *3)) (-4 *3 (-1018)) (-12 (-4 *3 (-29 (-549))) (-4 *3 (-930)) (-4 *3 (-1165)) (-4 *3 (-38 (-400 (-549)))))) (-12 (-5 *2 (-1143)) (-4 *1 (-1217 *3)) (-4 *3 (-1018)) (-12 (|has| *3 (-15 -2272 ((-621 *2) *3))) (|has| *3 (-15 -3893 (*3 *3 *2))) (-4 *3 (-38 (-400 (-549)))))))))
-(-13 (-1204 |t#1| (-747)) (-10 -8 (-15 -2826 ($ (-1123 (-2 (|:| |k| (-747)) (|:| |c| |t#1|))))) (-15 -4141 ((-1123 |t#1|) $)) (-15 -2826 ($ (-1123 |t#1|))) (-15 -3754 ($ $)) (-15 -2876 ($ (-1 |t#1| (-549)) $)) (-15 -1414 ((-923 |t#1|) $ (-747))) (-15 -1414 ((-923 |t#1|) $ (-747) (-747))) (IF (|has| |t#1| (-356)) (-15 ** ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-38 (-400 (-549)))) (PROGN (-15 -3893 ($ $)) (IF (|has| |t#1| (-15 -3893 (|t#1| |t#1| (-1143)))) (IF (|has| |t#1| (-15 -2272 ((-621 (-1143)) |t#1|))) (-15 -3893 ($ $ (-1143))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1165)) (IF (|has| |t#1| (-930)) (IF (|has| |t#1| (-29 (-549))) (-15 -3893 ($ $ (-1143))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-973)) (-6 (-1165))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-747)) . T) ((-25) . T) ((-38 #1=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) |has| |#1| (-541)) ((-35) |has| |#1| (-38 (-400 (-549)))) ((-94) |has| |#1| (-38 (-400 (-549)))) ((-101) . T) ((-111 #1# #1#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-227) |has| |#1| (-15 * (|#1| (-747) |#1|))) ((-277) |has| |#1| (-38 (-400 (-549)))) ((-279 $ $) |has| (-747) (-1079)) ((-283) |has| |#1| (-541)) ((-484) |has| |#1| (-38 (-400 (-549)))) ((-541) |has| |#1| (-541)) ((-624 #1#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #1#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) |has| |#1| (-541)) ((-703) . T) ((-871 (-1143)) -12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143)))) ((-944 |#1| #0# (-1048)) . T) ((-973) |has| |#1| (-38 (-400 (-549)))) ((-1024 #1#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1165) |has| |#1| (-38 (-400 (-549)))) ((-1168) |has| |#1| (-38 (-400 (-549)))) ((-1204 |#1| #0#) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2272 (((-621 (-1048)) $) NIL)) (-3011 (((-1143) $) 87)) (-3561 (((-1199 |#2| |#1|) $ (-747)) 73)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-2258 (($ $) NIL (|has| |#1| (-541)))) (-2799 (((-112) $) 137 (|has| |#1| (-541)))) (-3896 (($ $ (-747)) 122) (($ $ (-747) (-747)) 124)) (-2212 (((-1123 (-2 (|:| |k| (-747)) (|:| |c| |#1|))) $) 42)) (-1664 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1512 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2001 (((-3 $ "failed") $ $) NIL)) (-2134 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1640 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1486 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2826 (($ (-1123 (-2 (|:| |k| (-747)) (|:| |c| |#1|)))) 53) (($ (-1123 |#1|)) NIL)) (-1685 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1539 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1682 (($) NIL T CONST)) (-1387 (($ $) 128)) (-2070 (($ $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3754 (($ $) 135)) (-1414 (((-923 |#1|) $ (-747)) 63) (((-923 |#1|) $ (-747) (-747)) 65)) (-2871 (((-112) $) NIL)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2088 (((-747) $) NIL) (((-747) $ (-747)) NIL)) (-2675 (((-112) $) NIL)) (-4226 (($ $) 112)) (-4187 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1594 (($ (-549) (-549) $) 130)) (-2992 (($ $ (-892)) 134)) (-2876 (($ (-1 |#1| (-549)) $) 106)) (-2205 (((-112) $) NIL)) (-2246 (($ |#1| (-747)) 15) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-2797 (($ (-1 |#1| |#1|) $) 94)) (-3632 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2028 (($ $) NIL)) (-2043 ((|#1| $) NIL)) (-3851 (((-1125) $) NIL)) (-2848 (($ $) 110)) (-1375 (($ $) 108)) (-3498 (($ (-549) (-549) $) 132)) (-3893 (($ $) 145 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1143)) 151 (-1536 (-12 (|has| |#1| (-15 -3893 (|#1| |#1| (-1143)))) (|has| |#1| (-15 -2272 ((-621 (-1143)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1165))))) (($ $ (-1222 |#2|)) 146 (|has| |#1| (-38 (-400 (-549)))))) (-3990 (((-1087) $) NIL)) (-1629 (($ $ (-549) (-549)) 116)) (-2763 (($ $ (-747)) 118)) (-2042 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-2719 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3184 (($ $) 114)) (-2686 (((-1123 |#1|) $ |#1|) 96 (|has| |#1| (-15 ** (|#1| |#1| (-747)))))) (-3341 ((|#1| $ (-747)) 91) (($ $ $) 126 (|has| (-747) (-1079)))) (-3456 (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143)) 103 (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-747) |#1|)))) (($ $) 98 (|has| |#1| (-15 * (|#1| (-747) |#1|)))) (($ $ (-1222 |#2|)) 99)) (-3701 (((-747) $) NIL)) (-1698 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1552 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1675 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1526 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1651 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1501 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1977 (($ $) 120)) (-3846 (((-834) $) NIL) (($ (-549)) 24) (($ (-400 (-549))) 143 (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541))) (($ |#1|) 23 (|has| |#1| (-170))) (($ (-1199 |#2| |#1|)) 80) (($ (-1222 |#2|)) 20)) (-4141 (((-1123 |#1|) $) NIL)) (-2152 ((|#1| $ (-747)) 90)) (-2210 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2082 (((-747)) NIL)) (-2597 ((|#1| $) 88)) (-1733 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1587 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1498 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1710 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1564 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1758 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1612 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2661 ((|#1| $ (-747)) 86 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-747)))) (|has| |#1| (-15 -3846 (|#1| (-1143))))))) (-1934 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1627 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1745 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1600 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1722 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1576 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3276 (($) 17 T CONST)) (-3287 (($) 13 T CONST)) (-1702 (($ $ (-621 (-1143)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-621 (-1143))) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-1143)) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1143))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-747) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (-2389 (((-112) $ $) NIL)) (-2513 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) 102)) (-2486 (($ $ $) 18)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ |#1|) 140 (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 101) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
-(((-1218 |#1| |#2| |#3|) (-13 (-1217 |#1|) (-10 -8 (-15 -3846 ($ (-1199 |#2| |#1|))) (-15 -3561 ((-1199 |#2| |#1|) $ (-747))) (-15 -3846 ($ (-1222 |#2|))) (-15 -3456 ($ $ (-1222 |#2|))) (-15 -1375 ($ $)) (-15 -2848 ($ $)) (-15 -4226 ($ $)) (-15 -3184 ($ $)) (-15 -1629 ($ $ (-549) (-549))) (-15 -1387 ($ $)) (-15 -1594 ($ (-549) (-549) $)) (-15 -3498 ($ (-549) (-549) $)) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3893 ($ $ (-1222 |#2|))) |%noBranch|))) (-1018) (-1143) |#1|) (T -1218))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-1199 *4 *3)) (-4 *3 (-1018)) (-14 *4 (-1143)) (-14 *5 *3) (-5 *1 (-1218 *3 *4 *5)))) (-3561 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1199 *5 *4)) (-5 *1 (-1218 *4 *5 *6)) (-4 *4 (-1018)) (-14 *5 (-1143)) (-14 *6 *4))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1218 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3456 (*1 *1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1218 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-1375 (*1 *1 *1) (-12 (-5 *1 (-1218 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1143)) (-14 *4 *2))) (-2848 (*1 *1 *1) (-12 (-5 *1 (-1218 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1143)) (-14 *4 *2))) (-4226 (*1 *1 *1) (-12 (-5 *1 (-1218 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1143)) (-14 *4 *2))) (-3184 (*1 *1 *1) (-12 (-5 *1 (-1218 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1143)) (-14 *4 *2))) (-1629 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1218 *3 *4 *5)) (-4 *3 (-1018)) (-14 *4 (-1143)) (-14 *5 *3))) (-1387 (*1 *1 *1) (-12 (-5 *1 (-1218 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1143)) (-14 *4 *2))) (-1594 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1218 *3 *4 *5)) (-4 *3 (-1018)) (-14 *4 (-1143)) (-14 *5 *3))) (-3498 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1218 *3 *4 *5)) (-4 *3 (-1018)) (-14 *4 (-1143)) (-14 *5 *3))) (-3893 (*1 *1 *1 *2) (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1218 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3))))
-(-13 (-1217 |#1|) (-10 -8 (-15 -3846 ($ (-1199 |#2| |#1|))) (-15 -3561 ((-1199 |#2| |#1|) $ (-747))) (-15 -3846 ($ (-1222 |#2|))) (-15 -3456 ($ $ (-1222 |#2|))) (-15 -1375 ($ $)) (-15 -2848 ($ $)) (-15 -4226 ($ $)) (-15 -3184 ($ $)) (-15 -1629 ($ $ (-549) (-549))) (-15 -1387 ($ $)) (-15 -1594 ($ (-549) (-549) $)) (-15 -3498 ($ (-549) (-549) $)) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3893 ($ $ (-1222 |#2|))) |%noBranch|)))
-((-2978 (((-1 (-1123 |#1|) (-621 (-1123 |#1|))) (-1 |#2| (-621 |#2|))) 24)) (-2484 (((-1 (-1123 |#1|) (-1123 |#1|) (-1123 |#1|)) (-1 |#2| |#2| |#2|)) 16)) (-3006 (((-1 (-1123 |#1|) (-1123 |#1|)) (-1 |#2| |#2|)) 13)) (-2732 ((|#2| (-1 |#2| |#2| |#2|) |#1| |#1|) 48)) (-2579 ((|#2| (-1 |#2| |#2|) |#1|) 46)) (-3884 ((|#2| (-1 |#2| (-621 |#2|)) (-621 |#1|)) 54)) (-2835 (((-621 |#2|) (-621 |#1|) (-621 (-1 |#2| (-621 |#2|)))) 61)) (-2760 ((|#2| |#2| |#2|) 43)))
-(((-1219 |#1| |#2|) (-10 -7 (-15 -3006 ((-1 (-1123 |#1|) (-1123 |#1|)) (-1 |#2| |#2|))) (-15 -2484 ((-1 (-1123 |#1|) (-1123 |#1|) (-1123 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2978 ((-1 (-1123 |#1|) (-621 (-1123 |#1|))) (-1 |#2| (-621 |#2|)))) (-15 -2760 (|#2| |#2| |#2|)) (-15 -2579 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -2732 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3884 (|#2| (-1 |#2| (-621 |#2|)) (-621 |#1|))) (-15 -2835 ((-621 |#2|) (-621 |#1|) (-621 (-1 |#2| (-621 |#2|)))))) (-38 (-400 (-549))) (-1217 |#1|)) (T -1219))
-((-2835 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 (-1 *6 (-621 *6)))) (-4 *5 (-38 (-400 (-549)))) (-4 *6 (-1217 *5)) (-5 *2 (-621 *6)) (-5 *1 (-1219 *5 *6)))) (-3884 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-621 *2))) (-5 *4 (-621 *5)) (-4 *5 (-38 (-400 (-549)))) (-4 *2 (-1217 *5)) (-5 *1 (-1219 *5 *2)))) (-2732 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1217 *4)) (-5 *1 (-1219 *4 *2)) (-4 *4 (-38 (-400 (-549)))))) (-2579 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1217 *4)) (-5 *1 (-1219 *4 *2)) (-4 *4 (-38 (-400 (-549)))))) (-2760 (*1 *2 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1219 *3 *2)) (-4 *2 (-1217 *3)))) (-2978 (*1 *2 *3) (-12 (-5 *3 (-1 *5 (-621 *5))) (-4 *5 (-1217 *4)) (-4 *4 (-38 (-400 (-549)))) (-5 *2 (-1 (-1123 *4) (-621 (-1123 *4)))) (-5 *1 (-1219 *4 *5)))) (-2484 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1217 *4)) (-4 *4 (-38 (-400 (-549)))) (-5 *2 (-1 (-1123 *4) (-1123 *4) (-1123 *4))) (-5 *1 (-1219 *4 *5)))) (-3006 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1217 *4)) (-4 *4 (-38 (-400 (-549)))) (-5 *2 (-1 (-1123 *4) (-1123 *4))) (-5 *1 (-1219 *4 *5)))))
-(-10 -7 (-15 -3006 ((-1 (-1123 |#1|) (-1123 |#1|)) (-1 |#2| |#2|))) (-15 -2484 ((-1 (-1123 |#1|) (-1123 |#1|) (-1123 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2978 ((-1 (-1123 |#1|) (-621 (-1123 |#1|))) (-1 |#2| (-621 |#2|)))) (-15 -2760 (|#2| |#2| |#2|)) (-15 -2579 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -2732 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3884 (|#2| (-1 |#2| (-621 |#2|)) (-621 |#1|))) (-15 -2835 ((-621 |#2|) (-621 |#1|) (-621 (-1 |#2| (-621 |#2|))))))
-((-2240 ((|#2| |#4| (-747)) 30)) (-2347 ((|#4| |#2|) 25)) (-3978 ((|#4| (-400 |#2|)) 52 (|has| |#1| (-541)))) (-1839 (((-1 |#4| (-621 |#4|)) |#3|) 46)))
-(((-1220 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2347 (|#4| |#2|)) (-15 -2240 (|#2| |#4| (-747))) (-15 -1839 ((-1 |#4| (-621 |#4|)) |#3|)) (IF (|has| |#1| (-541)) (-15 -3978 (|#4| (-400 |#2|))) |%noBranch|)) (-1018) (-1202 |#1|) (-632 |#2|) (-1217 |#1|)) (T -1220))
-((-3978 (*1 *2 *3) (-12 (-5 *3 (-400 *5)) (-4 *5 (-1202 *4)) (-4 *4 (-541)) (-4 *4 (-1018)) (-4 *2 (-1217 *4)) (-5 *1 (-1220 *4 *5 *6 *2)) (-4 *6 (-632 *5)))) (-1839 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-4 *5 (-1202 *4)) (-5 *2 (-1 *6 (-621 *6))) (-5 *1 (-1220 *4 *5 *3 *6)) (-4 *3 (-632 *5)) (-4 *6 (-1217 *4)))) (-2240 (*1 *2 *3 *4) (-12 (-5 *4 (-747)) (-4 *5 (-1018)) (-4 *2 (-1202 *5)) (-5 *1 (-1220 *5 *2 *6 *3)) (-4 *6 (-632 *2)) (-4 *3 (-1217 *5)))) (-2347 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-4 *3 (-1202 *4)) (-4 *2 (-1217 *4)) (-5 *1 (-1220 *4 *3 *5 *2)) (-4 *5 (-632 *3)))))
-(-10 -7 (-15 -2347 (|#4| |#2|)) (-15 -2240 (|#2| |#4| (-747))) (-15 -1839 ((-1 |#4| (-621 |#4|)) |#3|)) (IF (|has| |#1| (-541)) (-15 -3978 (|#4| (-400 |#2|))) |%noBranch|))
-NIL
-(((-1221) (-138)) (T -1221))
-NIL
-(-13 (-10 -7 (-6 -2624)))
-((-3834 (((-112) $ $) NIL)) (-3011 (((-1143)) 12)) (-3851 (((-1125) $) 17)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 11) (((-1143) $) 8)) (-2389 (((-112) $ $) 14)))
-(((-1222 |#1|) (-13 (-1067) (-593 (-1143)) (-10 -8 (-15 -3846 ((-1143) $)) (-15 -3011 ((-1143))))) (-1143)) (T -1222))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-1222 *3)) (-14 *3 *2))) (-3011 (*1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1222 *3)) (-14 *3 *2))))
-(-13 (-1067) (-593 (-1143)) (-10 -8 (-15 -3846 ((-1143) $)) (-15 -3011 ((-1143)))))
-((-3769 (($ (-747)) 18)) (-4050 (((-665 |#2|) $ $) 40)) (-3359 ((|#2| $) 48)) (-4210 ((|#2| $) 47)) (-1706 ((|#2| $ $) 35)) (-2168 (($ $ $) 44)) (-2500 (($ $) 22) (($ $ $) 28)) (-2486 (($ $ $) 15)) (* (($ (-549) $) 25) (($ |#2| $) 31) (($ $ |#2|) 30)))
-(((-1223 |#1| |#2|) (-10 -8 (-15 -3359 (|#2| |#1|)) (-15 -4210 (|#2| |#1|)) (-15 -2168 (|#1| |#1| |#1|)) (-15 -4050 ((-665 |#2|) |#1| |#1|)) (-15 -1706 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 -2500 (|#1| |#1| |#1|)) (-15 -2500 (|#1| |#1|)) (-15 -3769 (|#1| (-747))) (-15 -2486 (|#1| |#1| |#1|))) (-1224 |#2|) (-1180)) (T -1223))
-NIL
-(-10 -8 (-15 -3359 (|#2| |#1|)) (-15 -4210 (|#2| |#1|)) (-15 -2168 (|#1| |#1| |#1|)) (-15 -4050 ((-665 |#2|) |#1| |#1|)) (-15 -1706 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 -2500 (|#1| |#1| |#1|)) (-15 -2500 (|#1| |#1|)) (-15 -3769 (|#1| (-747))) (-15 -2486 (|#1| |#1| |#1|)))
-((-3834 (((-112) $ $) 19 (|has| |#1| (-1067)))) (-3769 (($ (-747)) 112 (|has| |#1| (-23)))) (-1535 (((-1231) $ (-549) (-549)) 40 (|has| $ (-6 -4338)))) (-4142 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-823)))) (-4311 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4338))) (($ $) 88 (-12 (|has| |#1| (-823)) (|has| $ (-6 -4338))))) (-3193 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-823)))) (-1584 (((-112) $ (-747)) 8)) (-2254 ((|#1| $ (-549) |#1|) 52 (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) 58 (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4337)))) (-1682 (($) 7 T CONST)) (-1585 (($ $) 90 (|has| $ (-6 -4338)))) (-3064 (($ $) 100)) (-3676 (($ $) 78 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-3812 (($ |#1| $) 77 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4337)))) (-1879 ((|#1| $ (-549) |#1|) 53 (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) 51)) (-2883 (((-549) (-1 (-112) |#1|) $) 97) (((-549) |#1| $) 96 (|has| |#1| (-1067))) (((-549) |#1| $ (-549)) 95 (|has| |#1| (-1067)))) (-2989 (((-621 |#1|) $) 30 (|has| $ (-6 -4337)))) (-4050 (((-665 |#1|) $ $) 105 (|has| |#1| (-1018)))) (-3743 (($ (-747) |#1|) 69)) (-3194 (((-112) $ (-747)) 9)) (-4031 (((-549) $) 43 (|has| (-549) (-823)))) (-2863 (($ $ $) 87 (|has| |#1| (-823)))) (-3890 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-823)))) (-1562 (((-621 |#1|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-1569 (((-549) $) 44 (|has| (-549) (-823)))) (-3575 (($ $ $) 86 (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3359 ((|#1| $) 102 (-12 (|has| |#1| (-1018)) (|has| |#1| (-973))))) (-1508 (((-112) $ (-747)) 10)) (-4210 ((|#1| $) 103 (-12 (|has| |#1| (-1018)) (|has| |#1| (-973))))) (-3851 (((-1125) $) 22 (|has| |#1| (-1067)))) (-2616 (($ |#1| $ (-549)) 60) (($ $ $ (-549)) 59)) (-3303 (((-621 (-549)) $) 46)) (-3761 (((-112) (-549) $) 47)) (-3990 (((-1087) $) 21 (|has| |#1| (-1067)))) (-3646 ((|#1| $) 42 (|has| (-549) (-823)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-1642 (($ $ |#1|) 41 (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) 14)) (-2265 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) 48)) (-3670 (((-112) $) 11)) (-3742 (($) 12)) (-3341 ((|#1| $ (-549) |#1|) 50) ((|#1| $ (-549)) 49) (($ $ (-1193 (-549))) 63)) (-1706 ((|#1| $ $) 106 (|has| |#1| (-1018)))) (-2167 (($ $ (-549)) 62) (($ $ (-1193 (-549))) 61)) (-2168 (($ $ $) 104 (|has| |#1| (-1018)))) (-4000 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4337))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1067)) (|has| $ (-6 -4337))))) (-2730 (($ $ $ (-549)) 91 (|has| $ (-6 -4338)))) (-2281 (($ $) 13)) (-2845 (((-525) $) 79 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 70)) (-1952 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-621 $)) 65)) (-3846 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) 84 (|has| |#1| (-823)))) (-2425 (((-112) $ $) 83 (|has| |#1| (-823)))) (-2389 (((-112) $ $) 20 (|has| |#1| (-1067)))) (-2438 (((-112) $ $) 85 (|has| |#1| (-823)))) (-2412 (((-112) $ $) 82 (|has| |#1| (-823)))) (-2500 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-2486 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-549) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-703))) (($ $ |#1|) 107 (|has| |#1| (-703)))) (-3775 (((-747) $) 6 (|has| $ (-6 -4337)))))
-(((-1224 |#1|) (-138) (-1180)) (T -1224))
-((-2486 (*1 *1 *1 *1) (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-25)))) (-3769 (*1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1224 *3)) (-4 *3 (-23)) (-4 *3 (-1180)))) (-2500 (*1 *1 *1) (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-21)))) (-2500 (*1 *1 *1 *1) (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-21)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-549)) (-4 *1 (-1224 *3)) (-4 *3 (-1180)) (-4 *3 (-21)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-703)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-703)))) (-1706 (*1 *2 *1 *1) (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-1018)))) (-4050 (*1 *2 *1 *1) (-12 (-4 *1 (-1224 *3)) (-4 *3 (-1180)) (-4 *3 (-1018)) (-5 *2 (-665 *3)))) (-2168 (*1 *1 *1 *1) (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-1018)))) (-4210 (*1 *2 *1) (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-973)) (-4 *2 (-1018)))) (-3359 (*1 *2 *1) (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-973)) (-4 *2 (-1018)))))
-(-13 (-19 |t#1|) (-10 -8 (IF (|has| |t#1| (-25)) (-15 -2486 ($ $ $)) |%noBranch|) (IF (|has| |t#1| (-23)) (-15 -3769 ($ (-747))) |%noBranch|) (IF (|has| |t#1| (-21)) (PROGN (-15 -2500 ($ $)) (-15 -2500 ($ $ $)) (-15 * ($ (-549) $))) |%noBranch|) (IF (|has| |t#1| (-703)) (PROGN (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-1018)) (PROGN (-15 -1706 (|t#1| $ $)) (-15 -4050 ((-665 |t#1|) $ $)) (-15 -2168 ($ $ $))) |%noBranch|) (IF (|has| |t#1| (-973)) (IF (|has| |t#1| (-1018)) (PROGN (-15 -4210 (|t#1| $)) (-15 -3359 (|t#1| $))) |%noBranch|) |%noBranch|)))
-(((-34) . T) ((-101) -1536 (|has| |#1| (-1067)) (|has| |#1| (-823))) ((-593 (-834)) -1536 (|has| |#1| (-1067)) (|has| |#1| (-823)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-366 |#1|) . T) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))) ((-627 |#1|) . T) ((-19 |#1|) . T) ((-823) |has| |#1| (-823)) ((-1067) -1536 (|has| |#1| (-1067)) (|has| |#1| (-823))) ((-1180) . T))
-((-3804 (((-1226 |#2|) (-1 |#2| |#1| |#2|) (-1226 |#1|) |#2|) 13)) (-2557 ((|#2| (-1 |#2| |#1| |#2|) (-1226 |#1|) |#2|) 15)) (-2797 (((-3 (-1226 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1226 |#1|)) 28) (((-1226 |#2|) (-1 |#2| |#1|) (-1226 |#1|)) 18)))
-(((-1225 |#1| |#2|) (-10 -7 (-15 -3804 ((-1226 |#2|) (-1 |#2| |#1| |#2|) (-1226 |#1|) |#2|)) (-15 -2557 (|#2| (-1 |#2| |#1| |#2|) (-1226 |#1|) |#2|)) (-15 -2797 ((-1226 |#2|) (-1 |#2| |#1|) (-1226 |#1|))) (-15 -2797 ((-3 (-1226 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1226 |#1|)))) (-1180) (-1180)) (T -1225))
-((-2797 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1226 *5)) (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-1226 *6)) (-5 *1 (-1225 *5 *6)))) (-2797 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1226 *5)) (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-1226 *6)) (-5 *1 (-1225 *5 *6)))) (-2557 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1226 *5)) (-4 *5 (-1180)) (-4 *2 (-1180)) (-5 *1 (-1225 *5 *2)))) (-3804 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1226 *6)) (-4 *6 (-1180)) (-4 *5 (-1180)) (-5 *2 (-1226 *5)) (-5 *1 (-1225 *6 *5)))))
-(-10 -7 (-15 -3804 ((-1226 |#2|) (-1 |#2| |#1| |#2|) (-1226 |#1|) |#2|)) (-15 -2557 (|#2| (-1 |#2| |#1| |#2|) (-1226 |#1|) |#2|)) (-15 -2797 ((-1226 |#2|) (-1 |#2| |#1|) (-1226 |#1|))) (-15 -2797 ((-3 (-1226 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1226 |#1|))))
-((-3834 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-3769 (($ (-747)) NIL (|has| |#1| (-23)))) (-3445 (($ (-621 |#1|)) 9)) (-1535 (((-1231) $ (-549) (-549)) NIL (|has| $ (-6 -4338)))) (-4142 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-823)))) (-4311 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4338))) (($ $) NIL (-12 (|has| $ (-6 -4338)) (|has| |#1| (-823))))) (-3193 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-823)))) (-1584 (((-112) $ (-747)) NIL)) (-2254 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4338))) ((|#1| $ (-1193 (-549)) |#1|) NIL (|has| $ (-6 -4338)))) (-1489 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-1682 (($) NIL T CONST)) (-1585 (($ $) NIL (|has| $ (-6 -4338)))) (-3064 (($ $) NIL)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2557 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4337))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-1879 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4338)))) (-1809 ((|#1| $ (-549)) NIL)) (-2883 (((-549) (-1 (-112) |#1|) $) NIL) (((-549) |#1| $) NIL (|has| |#1| (-1067))) (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1067)))) (-2989 (((-621 |#1|) $) 15 (|has| $ (-6 -4337)))) (-4050 (((-665 |#1|) $ $) NIL (|has| |#1| (-1018)))) (-3743 (($ (-747) |#1|) NIL)) (-3194 (((-112) $ (-747)) NIL)) (-4031 (((-549) $) NIL (|has| (-549) (-823)))) (-2863 (($ $ $) NIL (|has| |#1| (-823)))) (-3890 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-823)))) (-1562 (((-621 |#1|) $) NIL (|has| $ (-6 -4337)))) (-2090 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-1569 (((-549) $) NIL (|has| (-549) (-823)))) (-3575 (($ $ $) NIL (|has| |#1| (-823)))) (-1868 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3359 ((|#1| $) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1018))))) (-1508 (((-112) $ (-747)) NIL)) (-4210 ((|#1| $) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1018))))) (-3851 (((-1125) $) NIL (|has| |#1| (-1067)))) (-2616 (($ |#1| $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-3303 (((-621 (-549)) $) NIL)) (-3761 (((-112) (-549) $) NIL)) (-3990 (((-1087) $) NIL (|has| |#1| (-1067)))) (-3646 ((|#1| $) NIL (|has| (-549) (-823)))) (-3779 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1642 (($ $ |#1|) NIL (|has| $ (-6 -4338)))) (-1780 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1067))))) (-4144 (((-112) $ $) NIL)) (-2265 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2696 (((-621 |#1|) $) NIL)) (-3670 (((-112) $) NIL)) (-3742 (($) NIL)) (-3341 ((|#1| $ (-549) |#1|) NIL) ((|#1| $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-1706 ((|#1| $ $) NIL (|has| |#1| (-1018)))) (-2167 (($ $ (-549)) NIL) (($ $ (-1193 (-549))) NIL)) (-2168 (($ $ $) NIL (|has| |#1| (-1018)))) (-4000 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-1067))))) (-2730 (($ $ $ (-549)) NIL (|has| $ (-6 -4338)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) 19 (|has| |#1| (-594 (-525))))) (-3854 (($ (-621 |#1|)) 8)) (-1952 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3846 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3527 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4337)))) (-2448 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2425 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2389 (((-112) $ $) NIL (|has| |#1| (-1067)))) (-2438 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2412 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2500 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-2486 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-549) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-703))) (($ $ |#1|) NIL (|has| |#1| (-703)))) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-1226 |#1|) (-13 (-1224 |#1|) (-10 -8 (-15 -3445 ($ (-621 |#1|))))) (-1180)) (T -1226))
-((-3445 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-5 *1 (-1226 *3)))))
-(-13 (-1224 |#1|) (-10 -8 (-15 -3445 ($ (-621 |#1|)))))
-((-3834 (((-112) $ $) NIL)) (-2525 (((-1125) $ (-1125)) 90) (((-1125) $ (-1125) (-1125)) 88) (((-1125) $ (-1125) (-621 (-1125))) 87)) (-2116 (($) 59)) (-2825 (((-1231) $ (-460) (-892)) 45)) (-2036 (((-1231) $ (-892) (-1125)) 73) (((-1231) $ (-892) (-845)) 74)) (-2783 (((-1231) $ (-892) (-372) (-372)) 48)) (-1596 (((-1231) $ (-1125)) 69)) (-2886 (((-1231) $ (-892) (-1125)) 78)) (-2945 (((-1231) $ (-892) (-372) (-372)) 49)) (-2120 (((-1231) $ (-892) (-892)) 46)) (-2498 (((-1231) $) 70)) (-1724 (((-1231) $ (-892) (-1125)) 77)) (-1727 (((-1231) $ (-460) (-892)) 31)) (-4115 (((-1231) $ (-892) (-1125)) 76)) (-1487 (((-621 (-256)) $) 23) (($ $ (-621 (-256))) 24)) (-2106 (((-1231) $ (-747) (-747)) 43)) (-1858 (($ $) 60) (($ (-460) (-621 (-256))) 61)) (-3851 (((-1125) $) NIL)) (-3337 (((-549) $) 38)) (-3990 (((-1087) $) NIL)) (-1857 (((-1226 (-3 (-460) "undefined")) $) 37)) (-1260 (((-1226 (-2 (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)) (|:| -4115 (-549)) (|:| -2791 (-549)) (|:| |spline| (-549)) (|:| -1669 (-549)) (|:| |axesColor| (-845)) (|:| -2036 (-549)) (|:| |unitsColor| (-845)) (|:| |showing| (-549)))) $) 36)) (-1816 (((-1231) $ (-892) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-845) (-549) (-845) (-549)) 68)) (-3538 (((-621 (-914 (-219))) $) NIL)) (-3057 (((-460) $ (-892)) 33)) (-1405 (((-1231) $ (-747) (-747) (-892) (-892)) 40)) (-2035 (((-1231) $ (-1125)) 79)) (-2791 (((-1231) $ (-892) (-1125)) 75)) (-3846 (((-834) $) 85)) (-2681 (((-1231) $) 80)) (-1669 (((-1231) $ (-892) (-1125)) 71) (((-1231) $ (-892) (-845)) 72)) (-2389 (((-112) $ $) NIL)))
-(((-1227) (-13 (-1067) (-10 -8 (-15 -3538 ((-621 (-914 (-219))) $)) (-15 -2116 ($)) (-15 -1858 ($ $)) (-15 -1487 ((-621 (-256)) $)) (-15 -1487 ($ $ (-621 (-256)))) (-15 -1858 ($ (-460) (-621 (-256)))) (-15 -1816 ((-1231) $ (-892) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-845) (-549) (-845) (-549))) (-15 -1260 ((-1226 (-2 (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)) (|:| -4115 (-549)) (|:| -2791 (-549)) (|:| |spline| (-549)) (|:| -1669 (-549)) (|:| |axesColor| (-845)) (|:| -2036 (-549)) (|:| |unitsColor| (-845)) (|:| |showing| (-549)))) $)) (-15 -1857 ((-1226 (-3 (-460) "undefined")) $)) (-15 -1596 ((-1231) $ (-1125))) (-15 -1727 ((-1231) $ (-460) (-892))) (-15 -3057 ((-460) $ (-892))) (-15 -1669 ((-1231) $ (-892) (-1125))) (-15 -1669 ((-1231) $ (-892) (-845))) (-15 -2036 ((-1231) $ (-892) (-1125))) (-15 -2036 ((-1231) $ (-892) (-845))) (-15 -4115 ((-1231) $ (-892) (-1125))) (-15 -1724 ((-1231) $ (-892) (-1125))) (-15 -2791 ((-1231) $ (-892) (-1125))) (-15 -2035 ((-1231) $ (-1125))) (-15 -2681 ((-1231) $)) (-15 -1405 ((-1231) $ (-747) (-747) (-892) (-892))) (-15 -2945 ((-1231) $ (-892) (-372) (-372))) (-15 -2783 ((-1231) $ (-892) (-372) (-372))) (-15 -2886 ((-1231) $ (-892) (-1125))) (-15 -2106 ((-1231) $ (-747) (-747))) (-15 -2825 ((-1231) $ (-460) (-892))) (-15 -2120 ((-1231) $ (-892) (-892))) (-15 -2525 ((-1125) $ (-1125))) (-15 -2525 ((-1125) $ (-1125) (-1125))) (-15 -2525 ((-1125) $ (-1125) (-621 (-1125)))) (-15 -2498 ((-1231) $)) (-15 -3337 ((-549) $)) (-15 -3846 ((-834) $))))) (T -1227))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-1227)))) (-3538 (*1 *2 *1) (-12 (-5 *2 (-621 (-914 (-219)))) (-5 *1 (-1227)))) (-2116 (*1 *1) (-5 *1 (-1227))) (-1858 (*1 *1 *1) (-5 *1 (-1227))) (-1487 (*1 *2 *1) (-12 (-5 *2 (-621 (-256))) (-5 *1 (-1227)))) (-1487 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-256))) (-5 *1 (-1227)))) (-1858 (*1 *1 *2 *3) (-12 (-5 *2 (-460)) (-5 *3 (-621 (-256))) (-5 *1 (-1227)))) (-1816 (*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5) (-12 (-5 *3 (-892)) (-5 *4 (-219)) (-5 *5 (-549)) (-5 *6 (-845)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-1260 (*1 *2 *1) (-12 (-5 *2 (-1226 (-2 (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)) (|:| -4115 (-549)) (|:| -2791 (-549)) (|:| |spline| (-549)) (|:| -1669 (-549)) (|:| |axesColor| (-845)) (|:| -2036 (-549)) (|:| |unitsColor| (-845)) (|:| |showing| (-549))))) (-5 *1 (-1227)))) (-1857 (*1 *2 *1) (-12 (-5 *2 (-1226 (-3 (-460) "undefined"))) (-5 *1 (-1227)))) (-1596 (*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-1727 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-460)) (-5 *4 (-892)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-3057 (*1 *2 *1 *3) (-12 (-5 *3 (-892)) (-5 *2 (-460)) (-5 *1 (-1227)))) (-1669 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-1669 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-845)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-2036 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-2036 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-845)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-4115 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-1724 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-2791 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-2035 (*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-2681 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-1227)))) (-1405 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-747)) (-5 *4 (-892)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-2945 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-892)) (-5 *4 (-372)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-2783 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-892)) (-5 *4 (-372)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-2886 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-2106 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-2825 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-460)) (-5 *4 (-892)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-2120 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1231)) (-5 *1 (-1227)))) (-2525 (*1 *2 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1227)))) (-2525 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1227)))) (-2525 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-621 (-1125))) (-5 *2 (-1125)) (-5 *1 (-1227)))) (-2498 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-1227)))) (-3337 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1227)))))
-(-13 (-1067) (-10 -8 (-15 -3538 ((-621 (-914 (-219))) $)) (-15 -2116 ($)) (-15 -1858 ($ $)) (-15 -1487 ((-621 (-256)) $)) (-15 -1487 ($ $ (-621 (-256)))) (-15 -1858 ($ (-460) (-621 (-256)))) (-15 -1816 ((-1231) $ (-892) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-845) (-549) (-845) (-549))) (-15 -1260 ((-1226 (-2 (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)) (|:| -4115 (-549)) (|:| -2791 (-549)) (|:| |spline| (-549)) (|:| -1669 (-549)) (|:| |axesColor| (-845)) (|:| -2036 (-549)) (|:| |unitsColor| (-845)) (|:| |showing| (-549)))) $)) (-15 -1857 ((-1226 (-3 (-460) "undefined")) $)) (-15 -1596 ((-1231) $ (-1125))) (-15 -1727 ((-1231) $ (-460) (-892))) (-15 -3057 ((-460) $ (-892))) (-15 -1669 ((-1231) $ (-892) (-1125))) (-15 -1669 ((-1231) $ (-892) (-845))) (-15 -2036 ((-1231) $ (-892) (-1125))) (-15 -2036 ((-1231) $ (-892) (-845))) (-15 -4115 ((-1231) $ (-892) (-1125))) (-15 -1724 ((-1231) $ (-892) (-1125))) (-15 -2791 ((-1231) $ (-892) (-1125))) (-15 -2035 ((-1231) $ (-1125))) (-15 -2681 ((-1231) $)) (-15 -1405 ((-1231) $ (-747) (-747) (-892) (-892))) (-15 -2945 ((-1231) $ (-892) (-372) (-372))) (-15 -2783 ((-1231) $ (-892) (-372) (-372))) (-15 -2886 ((-1231) $ (-892) (-1125))) (-15 -2106 ((-1231) $ (-747) (-747))) (-15 -2825 ((-1231) $ (-460) (-892))) (-15 -2120 ((-1231) $ (-892) (-892))) (-15 -2525 ((-1125) $ (-1125))) (-15 -2525 ((-1125) $ (-1125) (-1125))) (-15 -2525 ((-1125) $ (-1125) (-621 (-1125)))) (-15 -2498 ((-1231) $)) (-15 -3337 ((-549) $)) (-15 -3846 ((-834) $))))
-((-3834 (((-112) $ $) NIL)) (-2740 (((-1231) $ (-372)) 140) (((-1231) $ (-372) (-372) (-372)) 141)) (-2525 (((-1125) $ (-1125)) 148) (((-1125) $ (-1125) (-1125)) 146) (((-1125) $ (-1125) (-621 (-1125))) 145)) (-1384 (($) 50)) (-1491 (((-1231) $ (-372) (-372) (-372) (-372) (-372)) 116) (((-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))) $) 114) (((-1231) $ (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)))) 115) (((-1231) $ (-549) (-549) (-372) (-372) (-372)) 117) (((-1231) $ (-372) (-372)) 118) (((-1231) $ (-372) (-372) (-372)) 125)) (-2012 (((-372)) 97) (((-372) (-372)) 98)) (-2444 (((-372)) 92) (((-372) (-372)) 94)) (-1960 (((-372)) 95) (((-372) (-372)) 96)) (-3616 (((-372)) 101) (((-372) (-372)) 102)) (-2271 (((-372)) 99) (((-372) (-372)) 100)) (-2783 (((-1231) $ (-372) (-372)) 142)) (-1596 (((-1231) $ (-1125)) 126)) (-3368 (((-1100 (-219)) $) 51) (($ $ (-1100 (-219))) 52)) (-3976 (((-1231) $ (-1125)) 154)) (-1389 (((-1231) $ (-1125)) 155)) (-3387 (((-1231) $ (-372) (-372)) 124) (((-1231) $ (-549) (-549)) 139)) (-2120 (((-1231) $ (-892) (-892)) 132)) (-2498 (((-1231) $) 112)) (-3243 (((-1231) $ (-1125)) 153)) (-1906 (((-1231) $ (-1125)) 109)) (-1487 (((-621 (-256)) $) 53) (($ $ (-621 (-256))) 54)) (-2106 (((-1231) $ (-747) (-747)) 131)) (-2986 (((-1231) $ (-747) (-914 (-219))) 160)) (-2614 (($ $) 56) (($ (-1100 (-219)) (-1125)) 57) (($ (-1100 (-219)) (-621 (-256))) 58)) (-1773 (((-1231) $ (-372) (-372) (-372)) 106)) (-3851 (((-1125) $) NIL)) (-3337 (((-549) $) 103)) (-4235 (((-1231) $ (-372)) 143)) (-4209 (((-1231) $ (-372)) 158)) (-3990 (((-1087) $) NIL)) (-2564 (((-1231) $ (-372)) 157)) (-2178 (((-1231) $ (-1125)) 111)) (-1405 (((-1231) $ (-747) (-747) (-892) (-892)) 130)) (-4019 (((-1231) $ (-1125)) 108)) (-2035 (((-1231) $ (-1125)) 110)) (-2148 (((-1231) $ (-155) (-155)) 129)) (-3846 (((-834) $) 137)) (-2681 (((-1231) $) 113)) (-3338 (((-1231) $ (-1125)) 156)) (-1669 (((-1231) $ (-1125)) 107)) (-2389 (((-112) $ $) NIL)))
-(((-1228) (-13 (-1067) (-10 -8 (-15 -2444 ((-372))) (-15 -2444 ((-372) (-372))) (-15 -1960 ((-372))) (-15 -1960 ((-372) (-372))) (-15 -2012 ((-372))) (-15 -2012 ((-372) (-372))) (-15 -2271 ((-372))) (-15 -2271 ((-372) (-372))) (-15 -3616 ((-372))) (-15 -3616 ((-372) (-372))) (-15 -1384 ($)) (-15 -2614 ($ $)) (-15 -2614 ($ (-1100 (-219)) (-1125))) (-15 -2614 ($ (-1100 (-219)) (-621 (-256)))) (-15 -3368 ((-1100 (-219)) $)) (-15 -3368 ($ $ (-1100 (-219)))) (-15 -2986 ((-1231) $ (-747) (-914 (-219)))) (-15 -1487 ((-621 (-256)) $)) (-15 -1487 ($ $ (-621 (-256)))) (-15 -2106 ((-1231) $ (-747) (-747))) (-15 -2120 ((-1231) $ (-892) (-892))) (-15 -1596 ((-1231) $ (-1125))) (-15 -1405 ((-1231) $ (-747) (-747) (-892) (-892))) (-15 -1491 ((-1231) $ (-372) (-372) (-372) (-372) (-372))) (-15 -1491 ((-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))) $)) (-15 -1491 ((-1231) $ (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))) (-15 -1491 ((-1231) $ (-549) (-549) (-372) (-372) (-372))) (-15 -1491 ((-1231) $ (-372) (-372))) (-15 -1491 ((-1231) $ (-372) (-372) (-372))) (-15 -2035 ((-1231) $ (-1125))) (-15 -1669 ((-1231) $ (-1125))) (-15 -4019 ((-1231) $ (-1125))) (-15 -1906 ((-1231) $ (-1125))) (-15 -2178 ((-1231) $ (-1125))) (-15 -3387 ((-1231) $ (-372) (-372))) (-15 -3387 ((-1231) $ (-549) (-549))) (-15 -2740 ((-1231) $ (-372))) (-15 -2740 ((-1231) $ (-372) (-372) (-372))) (-15 -2783 ((-1231) $ (-372) (-372))) (-15 -3243 ((-1231) $ (-1125))) (-15 -2564 ((-1231) $ (-372))) (-15 -4209 ((-1231) $ (-372))) (-15 -3976 ((-1231) $ (-1125))) (-15 -1389 ((-1231) $ (-1125))) (-15 -3338 ((-1231) $ (-1125))) (-15 -1773 ((-1231) $ (-372) (-372) (-372))) (-15 -4235 ((-1231) $ (-372))) (-15 -2498 ((-1231) $)) (-15 -2148 ((-1231) $ (-155) (-155))) (-15 -2525 ((-1125) $ (-1125))) (-15 -2525 ((-1125) $ (-1125) (-1125))) (-15 -2525 ((-1125) $ (-1125) (-621 (-1125)))) (-15 -2681 ((-1231) $)) (-15 -3337 ((-549) $))))) (T -1228))
-((-2444 (*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228)))) (-2444 (*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228)))) (-1960 (*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228)))) (-1960 (*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228)))) (-2012 (*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228)))) (-2012 (*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228)))) (-2271 (*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228)))) (-2271 (*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228)))) (-3616 (*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228)))) (-3616 (*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228)))) (-1384 (*1 *1) (-5 *1 (-1228))) (-2614 (*1 *1 *1) (-5 *1 (-1228))) (-2614 (*1 *1 *2 *3) (-12 (-5 *2 (-1100 (-219))) (-5 *3 (-1125)) (-5 *1 (-1228)))) (-2614 (*1 *1 *2 *3) (-12 (-5 *2 (-1100 (-219))) (-5 *3 (-621 (-256))) (-5 *1 (-1228)))) (-3368 (*1 *2 *1) (-12 (-5 *2 (-1100 (-219))) (-5 *1 (-1228)))) (-3368 (*1 *1 *1 *2) (-12 (-5 *2 (-1100 (-219))) (-5 *1 (-1228)))) (-2986 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-747)) (-5 *4 (-914 (-219))) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-1487 (*1 *2 *1) (-12 (-5 *2 (-621 (-256))) (-5 *1 (-1228)))) (-1487 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-256))) (-5 *1 (-1228)))) (-2106 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-2120 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-1596 (*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-1405 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-747)) (-5 *4 (-892)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-1491 (*1 *2 *1 *3 *3 *3 *3 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-1491 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)))) (-5 *1 (-1228)))) (-1491 (*1 *2 *1 *3) (-12 (-5 *3 (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)))) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-1491 (*1 *2 *1 *3 *3 *4 *4 *4) (-12 (-5 *3 (-549)) (-5 *4 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-1491 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-1491 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-2035 (*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-1669 (*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-4019 (*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-1906 (*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-2178 (*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-3387 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-3387 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-2740 (*1 *2 *1 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-2740 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-2783 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-3243 (*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-2564 (*1 *2 *1 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-4209 (*1 *2 *1 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-3976 (*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-1389 (*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-3338 (*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-1773 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-4235 (*1 *2 *1 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-2498 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-1228)))) (-2148 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-155)) (-5 *2 (-1231)) (-5 *1 (-1228)))) (-2525 (*1 *2 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1228)))) (-2525 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1228)))) (-2525 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-621 (-1125))) (-5 *2 (-1125)) (-5 *1 (-1228)))) (-2681 (*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-1228)))) (-3337 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1228)))))
-(-13 (-1067) (-10 -8 (-15 -2444 ((-372))) (-15 -2444 ((-372) (-372))) (-15 -1960 ((-372))) (-15 -1960 ((-372) (-372))) (-15 -2012 ((-372))) (-15 -2012 ((-372) (-372))) (-15 -2271 ((-372))) (-15 -2271 ((-372) (-372))) (-15 -3616 ((-372))) (-15 -3616 ((-372) (-372))) (-15 -1384 ($)) (-15 -2614 ($ $)) (-15 -2614 ($ (-1100 (-219)) (-1125))) (-15 -2614 ($ (-1100 (-219)) (-621 (-256)))) (-15 -3368 ((-1100 (-219)) $)) (-15 -3368 ($ $ (-1100 (-219)))) (-15 -2986 ((-1231) $ (-747) (-914 (-219)))) (-15 -1487 ((-621 (-256)) $)) (-15 -1487 ($ $ (-621 (-256)))) (-15 -2106 ((-1231) $ (-747) (-747))) (-15 -2120 ((-1231) $ (-892) (-892))) (-15 -1596 ((-1231) $ (-1125))) (-15 -1405 ((-1231) $ (-747) (-747) (-892) (-892))) (-15 -1491 ((-1231) $ (-372) (-372) (-372) (-372) (-372))) (-15 -1491 ((-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))) $)) (-15 -1491 ((-1231) $ (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))) (-15 -1491 ((-1231) $ (-549) (-549) (-372) (-372) (-372))) (-15 -1491 ((-1231) $ (-372) (-372))) (-15 -1491 ((-1231) $ (-372) (-372) (-372))) (-15 -2035 ((-1231) $ (-1125))) (-15 -1669 ((-1231) $ (-1125))) (-15 -4019 ((-1231) $ (-1125))) (-15 -1906 ((-1231) $ (-1125))) (-15 -2178 ((-1231) $ (-1125))) (-15 -3387 ((-1231) $ (-372) (-372))) (-15 -3387 ((-1231) $ (-549) (-549))) (-15 -2740 ((-1231) $ (-372))) (-15 -2740 ((-1231) $ (-372) (-372) (-372))) (-15 -2783 ((-1231) $ (-372) (-372))) (-15 -3243 ((-1231) $ (-1125))) (-15 -2564 ((-1231) $ (-372))) (-15 -4209 ((-1231) $ (-372))) (-15 -3976 ((-1231) $ (-1125))) (-15 -1389 ((-1231) $ (-1125))) (-15 -3338 ((-1231) $ (-1125))) (-15 -1773 ((-1231) $ (-372) (-372) (-372))) (-15 -4235 ((-1231) $ (-372))) (-15 -2498 ((-1231) $)) (-15 -2148 ((-1231) $ (-155) (-155))) (-15 -2525 ((-1125) $ (-1125))) (-15 -2525 ((-1125) $ (-1125) (-1125))) (-15 -2525 ((-1125) $ (-1125) (-621 (-1125)))) (-15 -2681 ((-1231) $)) (-15 -3337 ((-549) $))))
-((-3361 (((-621 (-1125)) (-621 (-1125))) 94) (((-621 (-1125))) 90)) (-3512 (((-621 (-1125))) 88)) (-1593 (((-621 (-892)) (-621 (-892))) 63) (((-621 (-892))) 60)) (-3579 (((-621 (-747)) (-621 (-747))) 57) (((-621 (-747))) 53)) (-3279 (((-1231)) 65)) (-2677 (((-892) (-892)) 81) (((-892)) 80)) (-3966 (((-892) (-892)) 79) (((-892)) 78)) (-3087 (((-845) (-845)) 75) (((-845)) 74)) (-1363 (((-219)) 85) (((-219) (-372)) 87)) (-1604 (((-892)) 82) (((-892) (-892)) 83)) (-2541 (((-892) (-892)) 77) (((-892)) 76)) (-1421 (((-845) (-845)) 69) (((-845)) 67)) (-1342 (((-845) (-845)) 71) (((-845)) 70)) (-3756 (((-845) (-845)) 73) (((-845)) 72)))
-(((-1229) (-10 -7 (-15 -1421 ((-845))) (-15 -1421 ((-845) (-845))) (-15 -1342 ((-845))) (-15 -1342 ((-845) (-845))) (-15 -3756 ((-845))) (-15 -3756 ((-845) (-845))) (-15 -3087 ((-845))) (-15 -3087 ((-845) (-845))) (-15 -2541 ((-892))) (-15 -2541 ((-892) (-892))) (-15 -3579 ((-621 (-747)))) (-15 -3579 ((-621 (-747)) (-621 (-747)))) (-15 -1593 ((-621 (-892)))) (-15 -1593 ((-621 (-892)) (-621 (-892)))) (-15 -3279 ((-1231))) (-15 -3361 ((-621 (-1125)))) (-15 -3361 ((-621 (-1125)) (-621 (-1125)))) (-15 -3512 ((-621 (-1125)))) (-15 -3966 ((-892))) (-15 -2677 ((-892))) (-15 -3966 ((-892) (-892))) (-15 -2677 ((-892) (-892))) (-15 -1604 ((-892) (-892))) (-15 -1604 ((-892))) (-15 -1363 ((-219) (-372))) (-15 -1363 ((-219))))) (T -1229))
-((-1363 (*1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-1229)))) (-1363 (*1 *2 *3) (-12 (-5 *3 (-372)) (-5 *2 (-219)) (-5 *1 (-1229)))) (-1604 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1229)))) (-1604 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1229)))) (-2677 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1229)))) (-3966 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1229)))) (-2677 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1229)))) (-3966 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1229)))) (-3512 (*1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1229)))) (-3361 (*1 *2 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1229)))) (-3361 (*1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1229)))) (-3279 (*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-1229)))) (-1593 (*1 *2 *2) (-12 (-5 *2 (-621 (-892))) (-5 *1 (-1229)))) (-1593 (*1 *2) (-12 (-5 *2 (-621 (-892))) (-5 *1 (-1229)))) (-3579 (*1 *2 *2) (-12 (-5 *2 (-621 (-747))) (-5 *1 (-1229)))) (-3579 (*1 *2) (-12 (-5 *2 (-621 (-747))) (-5 *1 (-1229)))) (-2541 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1229)))) (-2541 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1229)))) (-3087 (*1 *2 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1229)))) (-3087 (*1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1229)))) (-3756 (*1 *2 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1229)))) (-3756 (*1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1229)))) (-1342 (*1 *2 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1229)))) (-1342 (*1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1229)))) (-1421 (*1 *2 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1229)))) (-1421 (*1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1229)))))
-(-10 -7 (-15 -1421 ((-845))) (-15 -1421 ((-845) (-845))) (-15 -1342 ((-845))) (-15 -1342 ((-845) (-845))) (-15 -3756 ((-845))) (-15 -3756 ((-845) (-845))) (-15 -3087 ((-845))) (-15 -3087 ((-845) (-845))) (-15 -2541 ((-892))) (-15 -2541 ((-892) (-892))) (-15 -3579 ((-621 (-747)))) (-15 -3579 ((-621 (-747)) (-621 (-747)))) (-15 -1593 ((-621 (-892)))) (-15 -1593 ((-621 (-892)) (-621 (-892)))) (-15 -3279 ((-1231))) (-15 -3361 ((-621 (-1125)))) (-15 -3361 ((-621 (-1125)) (-621 (-1125)))) (-15 -3512 ((-621 (-1125)))) (-15 -3966 ((-892))) (-15 -2677 ((-892))) (-15 -3966 ((-892) (-892))) (-15 -2677 ((-892) (-892))) (-15 -1604 ((-892) (-892))) (-15 -1604 ((-892))) (-15 -1363 ((-219) (-372))) (-15 -1363 ((-219))))
-((-3606 (((-460) (-621 (-621 (-914 (-219)))) (-621 (-256))) 21) (((-460) (-621 (-621 (-914 (-219))))) 20) (((-460) (-621 (-621 (-914 (-219)))) (-845) (-845) (-892) (-621 (-256))) 19)) (-1481 (((-1227) (-621 (-621 (-914 (-219)))) (-621 (-256))) 27) (((-1227) (-621 (-621 (-914 (-219)))) (-845) (-845) (-892) (-621 (-256))) 26)) (-3846 (((-1227) (-460)) 38)))
-(((-1230) (-10 -7 (-15 -3606 ((-460) (-621 (-621 (-914 (-219)))) (-845) (-845) (-892) (-621 (-256)))) (-15 -3606 ((-460) (-621 (-621 (-914 (-219)))))) (-15 -3606 ((-460) (-621 (-621 (-914 (-219)))) (-621 (-256)))) (-15 -1481 ((-1227) (-621 (-621 (-914 (-219)))) (-845) (-845) (-892) (-621 (-256)))) (-15 -1481 ((-1227) (-621 (-621 (-914 (-219)))) (-621 (-256)))) (-15 -3846 ((-1227) (-460))))) (T -1230))
-((-3846 (*1 *2 *3) (-12 (-5 *3 (-460)) (-5 *2 (-1227)) (-5 *1 (-1230)))) (-1481 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-1230)))) (-1481 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-845)) (-5 *5 (-892)) (-5 *6 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-1230)))) (-3606 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-621 (-256))) (-5 *2 (-460)) (-5 *1 (-1230)))) (-3606 (*1 *2 *3) (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *2 (-460)) (-5 *1 (-1230)))) (-3606 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-845)) (-5 *5 (-892)) (-5 *6 (-621 (-256))) (-5 *2 (-460)) (-5 *1 (-1230)))))
-(-10 -7 (-15 -3606 ((-460) (-621 (-621 (-914 (-219)))) (-845) (-845) (-892) (-621 (-256)))) (-15 -3606 ((-460) (-621 (-621 (-914 (-219)))))) (-15 -3606 ((-460) (-621 (-621 (-914 (-219)))) (-621 (-256)))) (-15 -1481 ((-1227) (-621 (-621 (-914 (-219)))) (-845) (-845) (-892) (-621 (-256)))) (-15 -1481 ((-1227) (-621 (-621 (-914 (-219)))) (-621 (-256)))) (-15 -3846 ((-1227) (-460))))
-((-2903 (($) 7)) (-3846 (((-834) $) 10)))
-(((-1231) (-10 -8 (-15 -2903 ($)) (-15 -3846 ((-834) $)))) (T -1231))
-((-3846 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-1231)))) (-2903 (*1 *1) (-5 *1 (-1231))))
-(-10 -8 (-15 -2903 ($)) (-15 -3846 ((-834) $)))
-((-2513 (($ $ |#2|) 10)))
-(((-1232 |#1| |#2|) (-10 -8 (-15 -2513 (|#1| |#1| |#2|))) (-1233 |#2|) (-356)) (T -1232))
-NIL
-(-10 -8 (-15 -2513 (|#1| |#1| |#2|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-2985 (((-133)) 28)) (-3846 (((-834) $) 11)) (-3276 (($) 18 T CONST)) (-2389 (((-112) $ $) 6)) (-2513 (($ $ |#1|) 29)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
-(((-1233 |#1|) (-138) (-356)) (T -1233))
-((-2513 (*1 *1 *1 *2) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-356)))) (-2985 (*1 *2) (-12 (-4 *1 (-1233 *3)) (-4 *3 (-356)) (-5 *2 (-133)))))
-(-13 (-694 |t#1|) (-10 -8 (-15 -2513 ($ $ |t#1|)) (-15 -2985 ((-133)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-694 |#1|) . T) ((-1024 |#1|) . T) ((-1067) . T))
-((-4244 (((-621 (-1174 |#1|)) (-1143) (-1174 |#1|)) 74)) (-2674 (((-1123 (-1123 (-923 |#1|))) (-1143) (-1123 (-923 |#1|))) 53)) (-1984 (((-1 (-1123 (-1174 |#1|)) (-1123 (-1174 |#1|))) (-747) (-1174 |#1|) (-1123 (-1174 |#1|))) 64)) (-3296 (((-1 (-1123 (-923 |#1|)) (-1123 (-923 |#1|))) (-747)) 55)) (-4237 (((-1 (-1139 (-923 |#1|)) (-923 |#1|)) (-1143)) 29)) (-4076 (((-1 (-1123 (-923 |#1|)) (-1123 (-923 |#1|))) (-747)) 54)))
-(((-1234 |#1|) (-10 -7 (-15 -3296 ((-1 (-1123 (-923 |#1|)) (-1123 (-923 |#1|))) (-747))) (-15 -4076 ((-1 (-1123 (-923 |#1|)) (-1123 (-923 |#1|))) (-747))) (-15 -2674 ((-1123 (-1123 (-923 |#1|))) (-1143) (-1123 (-923 |#1|)))) (-15 -4237 ((-1 (-1139 (-923 |#1|)) (-923 |#1|)) (-1143))) (-15 -4244 ((-621 (-1174 |#1|)) (-1143) (-1174 |#1|))) (-15 -1984 ((-1 (-1123 (-1174 |#1|)) (-1123 (-1174 |#1|))) (-747) (-1174 |#1|) (-1123 (-1174 |#1|))))) (-356)) (T -1234))
-((-1984 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-747)) (-4 *6 (-356)) (-5 *4 (-1174 *6)) (-5 *2 (-1 (-1123 *4) (-1123 *4))) (-5 *1 (-1234 *6)) (-5 *5 (-1123 *4)))) (-4244 (*1 *2 *3 *4) (-12 (-5 *3 (-1143)) (-4 *5 (-356)) (-5 *2 (-621 (-1174 *5))) (-5 *1 (-1234 *5)) (-5 *4 (-1174 *5)))) (-4237 (*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-1 (-1139 (-923 *4)) (-923 *4))) (-5 *1 (-1234 *4)) (-4 *4 (-356)))) (-2674 (*1 *2 *3 *4) (-12 (-5 *3 (-1143)) (-4 *5 (-356)) (-5 *2 (-1123 (-1123 (-923 *5)))) (-5 *1 (-1234 *5)) (-5 *4 (-1123 (-923 *5))))) (-4076 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1 (-1123 (-923 *4)) (-1123 (-923 *4)))) (-5 *1 (-1234 *4)) (-4 *4 (-356)))) (-3296 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1 (-1123 (-923 *4)) (-1123 (-923 *4)))) (-5 *1 (-1234 *4)) (-4 *4 (-356)))))
-(-10 -7 (-15 -3296 ((-1 (-1123 (-923 |#1|)) (-1123 (-923 |#1|))) (-747))) (-15 -4076 ((-1 (-1123 (-923 |#1|)) (-1123 (-923 |#1|))) (-747))) (-15 -2674 ((-1123 (-1123 (-923 |#1|))) (-1143) (-1123 (-923 |#1|)))) (-15 -4237 ((-1 (-1139 (-923 |#1|)) (-923 |#1|)) (-1143))) (-15 -4244 ((-621 (-1174 |#1|)) (-1143) (-1174 |#1|))) (-15 -1984 ((-1 (-1123 (-1174 |#1|)) (-1123 (-1174 |#1|))) (-747) (-1174 |#1|) (-1123 (-1174 |#1|)))))
-((-1784 (((-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) |#2|) 75)) (-1613 (((-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|)))) 74)))
-(((-1235 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1613 ((-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))))) (-15 -1784 ((-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) |#2|))) (-342) (-1202 |#1|) (-1202 |#2|) (-402 |#2| |#3|)) (T -1235))
-((-1784 (*1 *2 *3) (-12 (-4 *4 (-342)) (-4 *3 (-1202 *4)) (-4 *5 (-1202 *3)) (-5 *2 (-2 (|:| -1949 (-665 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-665 *3)))) (-5 *1 (-1235 *4 *3 *5 *6)) (-4 *6 (-402 *3 *5)))) (-1613 (*1 *2) (-12 (-4 *3 (-342)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 *4)) (-5 *2 (-2 (|:| -1949 (-665 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-665 *4)))) (-5 *1 (-1235 *3 *4 *5 *6)) (-4 *6 (-402 *4 *5)))))
-(-10 -7 (-15 -1613 ((-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))))) (-15 -1784 ((-2 (|:| -1949 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) |#2|)))
-((-3834 (((-112) $ $) NIL)) (-4193 (((-1148) $) 11)) (-1426 (((-1148) $) 9)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-1236) (-13 (-1050) (-10 -8 (-15 -1426 ((-1148) $)) (-15 -4193 ((-1148) $))))) (T -1236))
-((-1426 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1236)))) (-4193 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1236)))))
-(-13 (-1050) (-10 -8 (-15 -1426 ((-1148) $)) (-15 -4193 ((-1148) $))))
-((-3834 (((-112) $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-1927 (((-1148) $) 9)) (-3846 (((-834) $) NIL) (((-1148) $) NIL)) (-2389 (((-112) $ $) NIL)))
-(((-1237) (-13 (-1050) (-10 -8 (-15 -1927 ((-1148) $))))) (T -1237))
-((-1927 (*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1237)))))
-(-13 (-1050) (-10 -8 (-15 -1927 ((-1148) $))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 43)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2114 (((-3 $ "failed") $) NIL)) (-2675 (((-112) $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3846 (((-834) $) 64) (($ (-549)) NIL) ((|#4| $) 54) (($ |#4|) 49) (($ |#1|) NIL (|has| |#1| (-170)))) (-2082 (((-747)) NIL)) (-3261 (((-1231) (-747)) 16)) (-3276 (($) 27 T CONST)) (-3287 (($) 67 T CONST)) (-2389 (((-112) $ $) 69)) (-2513 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-2500 (($ $) 71) (($ $ $) NIL)) (-2486 (($ $ $) 47)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 73) (($ |#1| $) NIL (|has| |#1| (-170))) (($ $ |#1|) NIL (|has| |#1| (-170)))))
-(((-1238 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-13 (-1018) (-10 -8 (IF (|has| |#1| (-170)) (-6 (-38 |#1|)) |%noBranch|) (-15 -3846 (|#4| $)) (IF (|has| |#1| (-356)) (-15 -2513 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3846 ($ |#4|)) (-15 -3261 ((-1231) (-747))))) (-1018) (-823) (-769) (-920 |#1| |#3| |#2|) (-621 |#2|) (-621 (-747)) (-747)) (T -1238))
-((-3846 (*1 *2 *1) (-12 (-4 *2 (-920 *3 *5 *4)) (-5 *1 (-1238 *3 *4 *5 *2 *6 *7 *8)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-769)) (-14 *6 (-621 *4)) (-14 *7 (-621 (-747))) (-14 *8 (-747)))) (-2513 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-356)) (-4 *2 (-1018)) (-4 *3 (-823)) (-4 *4 (-769)) (-14 *6 (-621 *3)) (-5 *1 (-1238 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-920 *2 *4 *3)) (-14 *7 (-621 (-747))) (-14 *8 (-747)))) (-3846 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-769)) (-14 *6 (-621 *4)) (-5 *1 (-1238 *3 *4 *5 *2 *6 *7 *8)) (-4 *2 (-920 *3 *5 *4)) (-14 *7 (-621 (-747))) (-14 *8 (-747)))) (-3261 (*1 *2 *3) (-12 (-5 *3 (-747)) (-4 *4 (-1018)) (-4 *5 (-823)) (-4 *6 (-769)) (-14 *8 (-621 *5)) (-5 *2 (-1231)) (-5 *1 (-1238 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-920 *4 *6 *5)) (-14 *9 (-621 *3)) (-14 *10 *3))))
-(-13 (-1018) (-10 -8 (IF (|has| |#1| (-170)) (-6 (-38 |#1|)) |%noBranch|) (-15 -3846 (|#4| $)) (IF (|has| |#1| (-356)) (-15 -2513 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3846 ($ |#4|)) (-15 -3261 ((-1231) (-747)))))
-((-3834 (((-112) $ $) NIL)) (-3514 (((-621 (-2 (|:| -2681 $) (|:| -1359 (-621 |#4|)))) (-621 |#4|)) NIL)) (-2866 (((-621 $) (-621 |#4|)) 88)) (-2272 (((-621 |#3|) $) NIL)) (-3422 (((-112) $) NIL)) (-2527 (((-112) $) NIL (|has| |#1| (-541)))) (-3282 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2731 ((|#4| |#4| $) NIL)) (-3193 (((-2 (|:| |under| $) (|:| -3967 $) (|:| |upper| $)) $ |#3|) NIL)) (-1584 (((-112) $ (-747)) NIL)) (-1489 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337))) (((-3 |#4| "failed") $ |#3|) NIL)) (-1682 (($) NIL T CONST)) (-1433 (((-112) $) NIL (|has| |#1| (-541)))) (-2555 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2595 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2397 (((-112) $) NIL (|has| |#1| (-541)))) (-2737 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 28)) (-3269 (((-621 |#4|) (-621 |#4|) $) 25 (|has| |#1| (-541)))) (-2953 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2714 (((-3 $ "failed") (-621 |#4|)) NIL)) (-2659 (($ (-621 |#4|)) NIL)) (-3657 (((-3 $ "failed") $) 70)) (-1903 ((|#4| |#4| $) 75)) (-3676 (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067))))) (-3812 (($ |#4| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-3675 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-541)))) (-2217 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-3615 ((|#4| |#4| $) NIL)) (-2557 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4337))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4337))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-1439 (((-2 (|:| -2681 (-621 |#4|)) (|:| -1359 (-621 |#4|))) $) NIL)) (-2989 (((-621 |#4|) $) NIL (|has| $ (-6 -4337)))) (-2812 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2745 ((|#3| $) 76)) (-3194 (((-112) $ (-747)) NIL)) (-1562 (((-621 |#4|) $) 29 (|has| $ (-6 -4337)))) (-2090 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067))))) (-3182 (((-3 $ "failed") (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 32) (((-3 $ "failed") (-621 |#4|)) 35)) (-1868 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4338)))) (-2797 (($ (-1 |#4| |#4|) $) NIL)) (-2561 (((-621 |#3|) $) NIL)) (-2378 (((-112) |#3| $) NIL)) (-1508 (((-112) $ (-747)) NIL)) (-3851 (((-1125) $) NIL)) (-3829 (((-3 |#4| "failed") $) NIL)) (-1638 (((-621 |#4|) $) 50)) (-2170 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3270 ((|#4| |#4| $) 74)) (-2473 (((-112) $ $) 85)) (-4203 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-541)))) (-1335 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4298 ((|#4| |#4| $) NIL)) (-3990 (((-1087) $) NIL)) (-3646 (((-3 |#4| "failed") $) 69)) (-3779 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-2640 (((-3 $ "failed") $ |#4|) NIL)) (-2763 (($ $ |#4|) NIL)) (-1780 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-2686 (($ $ (-621 |#4|) (-621 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-287 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067)))) (($ $ (-621 (-287 |#4|))) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1067))))) (-4144 (((-112) $ $) NIL)) (-3670 (((-112) $) 67)) (-3742 (($) 42)) (-3701 (((-747) $) NIL)) (-4000 (((-747) |#4| $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#4| (-1067)))) (((-747) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-2281 (($ $) NIL)) (-2845 (((-525) $) NIL (|has| |#4| (-594 (-525))))) (-3854 (($ (-621 |#4|)) NIL)) (-2858 (($ $ |#3|) NIL)) (-3758 (($ $ |#3|) NIL)) (-1962 (($ $) NIL)) (-4317 (($ $ |#3|) NIL)) (-3846 (((-834) $) NIL) (((-621 |#4|) $) 57)) (-1824 (((-747) $) NIL (|has| |#3| (-361)))) (-2414 (((-3 $ "failed") (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 40) (((-3 $ "failed") (-621 |#4|)) 41)) (-3800 (((-621 $) (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 65) (((-621 $) (-621 |#4|)) 66)) (-2574 (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) 24) (((-3 (-2 (|:| |bas| $) (|:| -2317 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-1716 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) NIL)) (-3527 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4337)))) (-3002 (((-621 |#3|) $) NIL)) (-1606 (((-112) |#3| $) NIL)) (-2389 (((-112) $ $) NIL)) (-3775 (((-747) $) NIL (|has| $ (-6 -4337)))))
-(((-1239 |#1| |#2| |#3| |#4|) (-13 (-1173 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3182 ((-3 $ "failed") (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3182 ((-3 $ "failed") (-621 |#4|))) (-15 -2414 ((-3 $ "failed") (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2414 ((-3 $ "failed") (-621 |#4|))) (-15 -3800 ((-621 $) (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3800 ((-621 $) (-621 |#4|))))) (-541) (-769) (-823) (-1032 |#1| |#2| |#3|)) (T -1239))
-((-3182 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-621 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1239 *5 *6 *7 *8)))) (-3182 (*1 *1 *2) (|partial| -12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-1239 *3 *4 *5 *6)))) (-2414 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-621 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1239 *5 *6 *7 *8)))) (-2414 (*1 *1 *2) (|partial| -12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-1239 *3 *4 *5 *6)))) (-3800 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1032 *6 *7 *8)) (-4 *6 (-541)) (-4 *7 (-769)) (-4 *8 (-823)) (-5 *2 (-621 (-1239 *6 *7 *8 *9))) (-5 *1 (-1239 *6 *7 *8 *9)))) (-3800 (*1 *2 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 (-1239 *4 *5 *6 *7))) (-5 *1 (-1239 *4 *5 *6 *7)))))
-(-13 (-1173 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3182 ((-3 $ "failed") (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3182 ((-3 $ "failed") (-621 |#4|))) (-15 -2414 ((-3 $ "failed") (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2414 ((-3 $ "failed") (-621 |#4|))) (-15 -3800 ((-621 $) (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3800 ((-621 $) (-621 |#4|)))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2001 (((-3 $ "failed") $ $) 19)) (-1682 (($) 17 T CONST)) (-2114 (((-3 $ "failed") $) 32)) (-2675 (((-112) $) 30)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 36)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 38) (($ |#1| $) 37)))
-(((-1240 |#1|) (-138) (-1018)) (T -1240))
-((-3846 (*1 *1 *2) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1018)))))
-(-13 (-1018) (-111 |t#1| |t#1|) (-10 -8 (-15 -3846 ($ |t#1|)) (IF (|has| |t#1| (-170)) (-6 (-38 |t#1|)) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-170)) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 |#1|) |has| |#1| (-170)) ((-703) . T) ((-1024 |#1|) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T))
-((-3834 (((-112) $ $) 60)) (-1763 (((-112) $) NIL)) (-3304 (((-621 |#1|) $) 45)) (-3210 (($ $ (-747)) 39)) (-2001 (((-3 $ "failed") $ $) NIL)) (-2556 (($ $ (-747)) 18 (|has| |#2| (-170))) (($ $ $) 19 (|has| |#2| (-170)))) (-1682 (($) NIL T CONST)) (-1869 (($ $ $) 63) (($ $ (-795 |#1|)) 49) (($ $ |#1|) 53)) (-2714 (((-3 (-795 |#1|) "failed") $) NIL)) (-2659 (((-795 |#1|) $) NIL)) (-2070 (($ $) 32)) (-2114 (((-3 $ "failed") $) NIL)) (-3863 (((-112) $) NIL)) (-1440 (($ $) NIL)) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) NIL)) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) NIL)) (-3526 (($ (-795 |#1|) |#2|) 31)) (-4273 (($ $) 33)) (-3473 (((-2 (|:| |k| (-795 |#1|)) (|:| |c| |#2|)) $) 12)) (-3674 (((-795 |#1|) $) NIL)) (-2192 (((-795 |#1|) $) 34)) (-2797 (($ (-1 |#2| |#2|) $) NIL)) (-2694 (($ $ $) 62) (($ $ (-795 |#1|)) 51) (($ $ |#1|) 55)) (-3647 (((-2 (|:| |k| (-795 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2028 (((-795 |#1|) $) 28)) (-2043 ((|#2| $) 30)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-3701 (((-747) $) 36)) (-2645 (((-112) $) 40)) (-2589 ((|#2| $) NIL)) (-3846 (((-834) $) NIL) (($ (-795 |#1|)) 24) (($ |#1|) 25) (($ |#2|) NIL) (($ (-549)) NIL)) (-4141 (((-621 |#2|) $) NIL)) (-2152 ((|#2| $ (-795 |#1|)) NIL)) (-1570 ((|#2| $ $) 65) ((|#2| $ (-795 |#1|)) NIL)) (-2082 (((-747)) NIL)) (-3276 (($) 13 T CONST)) (-3287 (($) 15 T CONST)) (-2631 (((-621 (-2 (|:| |k| (-795 |#1|)) (|:| |c| |#2|))) $) NIL)) (-2389 (((-112) $ $) 38)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) 22)) (** (($ $ (-747)) NIL) (($ $ (-892)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ |#2| $) 21) (($ $ |#2|) 61) (($ |#2| (-795 |#1|)) NIL) (($ |#1| $) 27) (($ $ $) NIL)))
-(((-1241 |#1| |#2|) (-13 (-375 |#2| (-795 |#1|)) (-1247 |#1| |#2|)) (-823) (-1018)) (T -1241))
-NIL
-(-13 (-375 |#2| (-795 |#1|)) (-1247 |#1| |#2|))
-((-3632 ((|#3| |#3| (-747)) 23)) (-2719 ((|#3| |#3| (-747)) 27)) (-1411 ((|#3| |#3| |#3| (-747)) 28)))
-(((-1242 |#1| |#2| |#3|) (-10 -7 (-15 -2719 (|#3| |#3| (-747))) (-15 -3632 (|#3| |#3| (-747))) (-15 -1411 (|#3| |#3| |#3| (-747)))) (-13 (-1018) (-694 (-400 (-549)))) (-823) (-1247 |#2| |#1|)) (T -1242))
-((-1411 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-747)) (-4 *4 (-13 (-1018) (-694 (-400 (-549))))) (-4 *5 (-823)) (-5 *1 (-1242 *4 *5 *2)) (-4 *2 (-1247 *5 *4)))) (-3632 (*1 *2 *2 *3) (-12 (-5 *3 (-747)) (-4 *4 (-13 (-1018) (-694 (-400 (-549))))) (-4 *5 (-823)) (-5 *1 (-1242 *4 *5 *2)) (-4 *2 (-1247 *5 *4)))) (-2719 (*1 *2 *2 *3) (-12 (-5 *3 (-747)) (-4 *4 (-13 (-1018) (-694 (-400 (-549))))) (-4 *5 (-823)) (-5 *1 (-1242 *4 *5 *2)) (-4 *2 (-1247 *5 *4)))))
-(-10 -7 (-15 -2719 (|#3| |#3| (-747))) (-15 -3632 (|#3| |#3| (-747))) (-15 -1411 (|#3| |#3| |#3| (-747))))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-3304 (((-621 |#1|) $) 38)) (-2001 (((-3 $ "failed") $ $) 19)) (-2556 (($ $ $) 41 (|has| |#2| (-170))) (($ $ (-747)) 40 (|has| |#2| (-170)))) (-1682 (($) 17 T CONST)) (-1869 (($ $ |#1|) 52) (($ $ (-795 |#1|)) 51) (($ $ $) 50)) (-2714 (((-3 (-795 |#1|) "failed") $) 62)) (-2659 (((-795 |#1|) $) 61)) (-2114 (((-3 $ "failed") $) 32)) (-3863 (((-112) $) 43)) (-1440 (($ $) 42)) (-2675 (((-112) $) 30)) (-2205 (((-112) $) 48)) (-3526 (($ (-795 |#1|) |#2|) 49)) (-4273 (($ $) 47)) (-3473 (((-2 (|:| |k| (-795 |#1|)) (|:| |c| |#2|)) $) 58)) (-3674 (((-795 |#1|) $) 59)) (-2797 (($ (-1 |#2| |#2|) $) 39)) (-2694 (($ $ |#1|) 55) (($ $ (-795 |#1|)) 54) (($ $ $) 53)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-2645 (((-112) $) 45)) (-2589 ((|#2| $) 44)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#2|) 66) (($ (-795 |#1|)) 63) (($ |#1|) 46)) (-1570 ((|#2| $ (-795 |#1|)) 57) ((|#2| $ $) 56)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ |#2| $) 65) (($ $ |#2|) 64) (($ |#1| $) 60)))
-(((-1243 |#1| |#2|) (-138) (-823) (-1018)) (T -1243))
-((* (*1 *1 *1 *2) (-12 (-4 *1 (-1243 *3 *2)) (-4 *3 (-823)) (-4 *2 (-1018)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))) (-3674 (*1 *2 *1) (-12 (-4 *1 (-1243 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *2 (-795 *3)))) (-3473 (*1 *2 *1) (-12 (-4 *1 (-1243 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *2 (-2 (|:| |k| (-795 *3)) (|:| |c| *4))))) (-1570 (*1 *2 *1 *3) (-12 (-5 *3 (-795 *4)) (-4 *1 (-1243 *4 *2)) (-4 *4 (-823)) (-4 *2 (-1018)))) (-1570 (*1 *2 *1 *1) (-12 (-4 *1 (-1243 *3 *2)) (-4 *3 (-823)) (-4 *2 (-1018)))) (-2694 (*1 *1 *1 *2) (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))) (-2694 (*1 *1 *1 *2) (-12 (-5 *2 (-795 *3)) (-4 *1 (-1243 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)))) (-2694 (*1 *1 *1 *1) (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))) (-1869 (*1 *1 *1 *2) (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))) (-1869 (*1 *1 *1 *2) (-12 (-5 *2 (-795 *3)) (-4 *1 (-1243 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)))) (-1869 (*1 *1 *1 *1) (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))) (-3526 (*1 *1 *2 *3) (-12 (-5 *2 (-795 *4)) (-4 *4 (-823)) (-4 *1 (-1243 *4 *3)) (-4 *3 (-1018)))) (-2205 (*1 *2 *1) (-12 (-4 *1 (-1243 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *2 (-112)))) (-4273 (*1 *1 *1) (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))) (-3846 (*1 *1 *2) (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))) (-2645 (*1 *2 *1) (-12 (-4 *1 (-1243 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *2 (-112)))) (-2589 (*1 *2 *1) (-12 (-4 *1 (-1243 *3 *2)) (-4 *3 (-823)) (-4 *2 (-1018)))) (-3863 (*1 *2 *1) (-12 (-4 *1 (-1243 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *2 (-112)))) (-1440 (*1 *1 *1) (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))) (-2556 (*1 *1 *1 *1) (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)) (-4 *3 (-170)))) (-2556 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1243 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-4 *4 (-170)))) (-2797 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1243 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)))) (-3304 (*1 *2 *1) (-12 (-4 *1 (-1243 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *2 (-621 *3)))))
-(-13 (-1018) (-1240 |t#2|) (-1009 (-795 |t#1|)) (-10 -8 (-15 * ($ |t#1| $)) (-15 * ($ $ |t#2|)) (-15 -3674 ((-795 |t#1|) $)) (-15 -3473 ((-2 (|:| |k| (-795 |t#1|)) (|:| |c| |t#2|)) $)) (-15 -1570 (|t#2| $ (-795 |t#1|))) (-15 -1570 (|t#2| $ $)) (-15 -2694 ($ $ |t#1|)) (-15 -2694 ($ $ (-795 |t#1|))) (-15 -2694 ($ $ $)) (-15 -1869 ($ $ |t#1|)) (-15 -1869 ($ $ (-795 |t#1|))) (-15 -1869 ($ $ $)) (-15 -3526 ($ (-795 |t#1|) |t#2|)) (-15 -2205 ((-112) $)) (-15 -4273 ($ $)) (-15 -3846 ($ |t#1|)) (-15 -2645 ((-112) $)) (-15 -2589 (|t#2| $)) (-15 -3863 ((-112) $)) (-15 -1440 ($ $)) (IF (|has| |t#2| (-170)) (PROGN (-15 -2556 ($ $ $)) (-15 -2556 ($ $ (-747)))) |%noBranch|) (-15 -2797 ($ (-1 |t#2| |t#2|) $)) (-15 -3304 ((-621 |t#1|) $)) (IF (|has| |t#2| (-6 -4330)) (-6 -4330) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#2|) |has| |#2| (-170)) ((-101) . T) ((-111 |#2| |#2|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#2|) . T) ((-624 $) . T) ((-694 |#2|) |has| |#2| (-170)) ((-703) . T) ((-1009 (-795 |#1|)) . T) ((-1024 |#2|) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1240 |#2|) . T))
-((-2044 (((-112) $) 15)) (-1606 (((-112) $) 14)) (-1933 (($ $) 19) (($ $ (-747)) 20)))
-(((-1244 |#1| |#2|) (-10 -8 (-15 -1933 (|#1| |#1| (-747))) (-15 -1933 (|#1| |#1|)) (-15 -2044 ((-112) |#1|)) (-15 -1606 ((-112) |#1|))) (-1245 |#2|) (-356)) (T -1244))
-NIL
-(-10 -8 (-15 -1933 (|#1| |#1| (-747))) (-15 -1933 (|#1| |#1|)) (-15 -2044 ((-112) |#1|)) (-15 -1606 ((-112) |#1|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-2297 (((-2 (|:| -2207 $) (|:| -4324 $) (|:| |associate| $)) $) 39)) (-2258 (($ $) 38)) (-2799 (((-112) $) 36)) (-2044 (((-112) $) 91)) (-3214 (((-747)) 87)) (-2001 (((-3 $ "failed") $ $) 19)) (-3979 (($ $) 70)) (-2402 (((-411 $) $) 69)) (-3866 (((-112) $ $) 57)) (-1682 (($) 17 T CONST)) (-2714 (((-3 |#1| "failed") $) 98)) (-2659 ((|#1| $) 97)) (-2095 (($ $ $) 53)) (-2114 (((-3 $ "failed") $) 32)) (-2067 (($ $ $) 54)) (-1309 (((-2 (|:| -1570 (-621 $)) (|:| -4248 $)) (-621 $)) 49)) (-3165 (($ $ (-747)) 84 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))) (($ $) 83 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-1420 (((-112) $) 68)) (-2088 (((-809 (-892)) $) 81 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2675 (((-112) $) 30)) (-2748 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-3697 (($ $ $) 44) (($ (-621 $)) 43)) (-3851 (((-1125) $) 9)) (-1992 (($ $) 67)) (-3980 (((-112) $) 90)) (-3990 (((-1087) $) 10)) (-1721 (((-1139 $) (-1139 $) (-1139 $)) 42)) (-3727 (($ $ $) 46) (($ (-621 $)) 45)) (-2121 (((-411 $) $) 71)) (-3049 (((-809 (-892))) 88)) (-3083 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4248 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2042 (((-3 $ "failed") $ $) 40)) (-3644 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-3684 (((-747) $) 56)) (-3148 (((-2 (|:| -4013 $) (|:| -3675 $)) $ $) 55)) (-3914 (((-3 (-747) "failed") $ $) 82 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2985 (((-133)) 96)) (-3701 (((-809 (-892)) $) 89)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63) (($ |#1|) 99)) (-2210 (((-3 $ "failed") $) 80 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2082 (((-747)) 28)) (-1498 (((-112) $ $) 37)) (-1606 (((-112) $) 92)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-1933 (($ $) 86 (|has| |#1| (-361))) (($ $ (-747)) 85 (|has| |#1| (-361)))) (-2389 (((-112) $ $) 6)) (-2513 (($ $ $) 62) (($ $ |#1|) 95)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64) (($ $ |#1|) 94) (($ |#1| $) 93)))
-(((-1245 |#1|) (-138) (-356)) (T -1245))
-((-1606 (*1 *2 *1) (-12 (-4 *1 (-1245 *3)) (-4 *3 (-356)) (-5 *2 (-112)))) (-2044 (*1 *2 *1) (-12 (-4 *1 (-1245 *3)) (-4 *3 (-356)) (-5 *2 (-112)))) (-3980 (*1 *2 *1) (-12 (-4 *1 (-1245 *3)) (-4 *3 (-356)) (-5 *2 (-112)))) (-3701 (*1 *2 *1) (-12 (-4 *1 (-1245 *3)) (-4 *3 (-356)) (-5 *2 (-809 (-892))))) (-3049 (*1 *2) (-12 (-4 *1 (-1245 *3)) (-4 *3 (-356)) (-5 *2 (-809 (-892))))) (-3214 (*1 *2) (-12 (-4 *1 (-1245 *3)) (-4 *3 (-356)) (-5 *2 (-747)))) (-1933 (*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-356)) (-4 *2 (-361)))) (-1933 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1245 *3)) (-4 *3 (-356)) (-4 *3 (-361)))))
-(-13 (-356) (-1009 |t#1|) (-1233 |t#1|) (-10 -8 (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-143)) (-6 (-395)) |%noBranch|) (-15 -1606 ((-112) $)) (-15 -2044 ((-112) $)) (-15 -3980 ((-112) $)) (-15 -3701 ((-809 (-892)) $)) (-15 -3049 ((-809 (-892)))) (-15 -3214 ((-747))) (IF (|has| |t#1| (-361)) (PROGN (-6 (-395)) (-15 -1933 ($ $)) (-15 -1933 ($ $ (-747)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-130) . T) ((-143) -1536 (|has| |#1| (-361)) (|has| |#1| (-143))) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) . T) ((-237) . T) ((-283) . T) ((-300) . T) ((-356) . T) ((-395) -1536 (|has| |#1| (-361)) (|has| |#1| (-143))) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 |#1|) . T) ((-694 $) . T) ((-703) . T) ((-891) . T) ((-1009 |#1|) . T) ((-1024 #0#) . T) ((-1024 |#1|) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1184) . T) ((-1233 |#1|) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3304 (((-621 |#1|) $) 86)) (-3210 (($ $ (-747)) 89)) (-2001 (((-3 $ "failed") $ $) NIL)) (-2556 (($ $ $) NIL (|has| |#2| (-170))) (($ $ (-747)) NIL (|has| |#2| (-170)))) (-1682 (($) NIL T CONST)) (-1869 (($ $ |#1|) NIL) (($ $ (-795 |#1|)) NIL) (($ $ $) NIL)) (-2714 (((-3 (-795 |#1|) "failed") $) NIL) (((-3 (-864 |#1|) "failed") $) NIL)) (-2659 (((-795 |#1|) $) NIL) (((-864 |#1|) $) NIL)) (-2070 (($ $) 88)) (-2114 (((-3 $ "failed") $) NIL)) (-3863 (((-112) $) 77)) (-1440 (($ $) 81)) (-1747 (($ $ $ (-747)) 90)) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) NIL)) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) NIL)) (-3526 (($ (-795 |#1|) |#2|) NIL) (($ (-864 |#1|) |#2|) 26)) (-4273 (($ $) 103)) (-3473 (((-2 (|:| |k| (-795 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3674 (((-795 |#1|) $) NIL)) (-2192 (((-795 |#1|) $) NIL)) (-2797 (($ (-1 |#2| |#2|) $) NIL)) (-2694 (($ $ |#1|) NIL) (($ $ (-795 |#1|)) NIL) (($ $ $) NIL)) (-3632 (($ $ (-747)) 97 (|has| |#2| (-694 (-400 (-549)))))) (-3647 (((-2 (|:| |k| (-864 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2028 (((-864 |#1|) $) 70)) (-2043 ((|#2| $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2719 (($ $ (-747)) 94 (|has| |#2| (-694 (-400 (-549)))))) (-3701 (((-747) $) 87)) (-2645 (((-112) $) 71)) (-2589 ((|#2| $) 75)) (-3846 (((-834) $) 57) (($ (-549)) NIL) (($ |#2|) 51) (($ (-795 |#1|)) NIL) (($ |#1|) 59) (($ (-864 |#1|)) NIL) (($ (-640 |#1| |#2|)) 43) (((-1241 |#1| |#2|) $) 64) (((-1250 |#1| |#2|) $) 69)) (-4141 (((-621 |#2|) $) NIL)) (-2152 ((|#2| $ (-864 |#1|)) NIL)) (-1570 ((|#2| $ (-795 |#1|)) NIL) ((|#2| $ $) NIL)) (-2082 (((-747)) NIL)) (-3276 (($) 21 T CONST)) (-3287 (($) 25 T CONST)) (-2631 (((-621 (-2 (|:| |k| (-864 |#1|)) (|:| |c| |#2|))) $) NIL)) (-1467 (((-3 (-640 |#1| |#2|) "failed") $) 102)) (-2389 (((-112) $ $) 65)) (-2500 (($ $) 96) (($ $ $) 95)) (-2486 (($ $ $) 20)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 44) (($ |#2| $) 19) (($ $ |#2|) NIL) (($ |#1| $) NIL) (($ |#2| (-864 |#1|)) NIL)))
-(((-1246 |#1| |#2|) (-13 (-1247 |#1| |#2|) (-375 |#2| (-864 |#1|)) (-10 -8 (-15 -3846 ($ (-640 |#1| |#2|))) (-15 -3846 ((-1241 |#1| |#2|) $)) (-15 -3846 ((-1250 |#1| |#2|) $)) (-15 -1467 ((-3 (-640 |#1| |#2|) "failed") $)) (-15 -1747 ($ $ $ (-747))) (IF (|has| |#2| (-694 (-400 (-549)))) (PROGN (-15 -2719 ($ $ (-747))) (-15 -3632 ($ $ (-747)))) |%noBranch|))) (-823) (-170)) (T -1246))
-((-3846 (*1 *1 *2) (-12 (-5 *2 (-640 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)) (-5 *1 (-1246 *3 *4)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-1241 *3 *4)) (-5 *1 (-1246 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-1250 *3 *4)) (-5 *1 (-1246 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)))) (-1467 (*1 *2 *1) (|partial| -12 (-5 *2 (-640 *3 *4)) (-5 *1 (-1246 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)))) (-1747 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-1246 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)))) (-2719 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-1246 *3 *4)) (-4 *4 (-694 (-400 (-549)))) (-4 *3 (-823)) (-4 *4 (-170)))) (-3632 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-1246 *3 *4)) (-4 *4 (-694 (-400 (-549)))) (-4 *3 (-823)) (-4 *4 (-170)))))
-(-13 (-1247 |#1| |#2|) (-375 |#2| (-864 |#1|)) (-10 -8 (-15 -3846 ($ (-640 |#1| |#2|))) (-15 -3846 ((-1241 |#1| |#2|) $)) (-15 -3846 ((-1250 |#1| |#2|) $)) (-15 -1467 ((-3 (-640 |#1| |#2|) "failed") $)) (-15 -1747 ($ $ $ (-747))) (IF (|has| |#2| (-694 (-400 (-549)))) (PROGN (-15 -2719 ($ $ (-747))) (-15 -3632 ($ $ (-747)))) |%noBranch|)))
-((-3834 (((-112) $ $) 7)) (-1763 (((-112) $) 16)) (-3304 (((-621 |#1|) $) 38)) (-3210 (($ $ (-747)) 71)) (-2001 (((-3 $ "failed") $ $) 19)) (-2556 (($ $ $) 41 (|has| |#2| (-170))) (($ $ (-747)) 40 (|has| |#2| (-170)))) (-1682 (($) 17 T CONST)) (-1869 (($ $ |#1|) 52) (($ $ (-795 |#1|)) 51) (($ $ $) 50)) (-2714 (((-3 (-795 |#1|) "failed") $) 62)) (-2659 (((-795 |#1|) $) 61)) (-2114 (((-3 $ "failed") $) 32)) (-3863 (((-112) $) 43)) (-1440 (($ $) 42)) (-2675 (((-112) $) 30)) (-2205 (((-112) $) 48)) (-3526 (($ (-795 |#1|) |#2|) 49)) (-4273 (($ $) 47)) (-3473 (((-2 (|:| |k| (-795 |#1|)) (|:| |c| |#2|)) $) 58)) (-3674 (((-795 |#1|) $) 59)) (-2192 (((-795 |#1|) $) 73)) (-2797 (($ (-1 |#2| |#2|) $) 39)) (-2694 (($ $ |#1|) 55) (($ $ (-795 |#1|)) 54) (($ $ $) 53)) (-3851 (((-1125) $) 9)) (-3990 (((-1087) $) 10)) (-3701 (((-747) $) 72)) (-2645 (((-112) $) 45)) (-2589 ((|#2| $) 44)) (-3846 (((-834) $) 11) (($ (-549)) 27) (($ |#2|) 66) (($ (-795 |#1|)) 63) (($ |#1|) 46)) (-1570 ((|#2| $ (-795 |#1|)) 57) ((|#2| $ $) 56)) (-2082 (((-747)) 28)) (-3276 (($) 18 T CONST)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 6)) (-2500 (($ $) 22) (($ $ $) 21)) (-2486 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ |#2| $) 65) (($ $ |#2|) 64) (($ |#1| $) 60)))
-(((-1247 |#1| |#2|) (-138) (-823) (-1018)) (T -1247))
-((-2192 (*1 *2 *1) (-12 (-4 *1 (-1247 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *2 (-795 *3)))) (-3701 (*1 *2 *1) (-12 (-4 *1 (-1247 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *2 (-747)))) (-3210 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1247 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)))))
-(-13 (-1243 |t#1| |t#2|) (-10 -8 (-15 -2192 ((-795 |t#1|) $)) (-15 -3701 ((-747) $)) (-15 -3210 ($ $ (-747)))))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#2|) |has| |#2| (-170)) ((-101) . T) ((-111 |#2| |#2|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#2|) . T) ((-624 $) . T) ((-694 |#2|) |has| |#2| (-170)) ((-703) . T) ((-1009 (-795 |#1|)) . T) ((-1024 |#2|) . T) ((-1018) . T) ((-1025) . T) ((-1079) . T) ((-1067) . T) ((-1240 |#2|) . T) ((-1243 |#1| |#2|) . T))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-3304 (((-621 (-1143)) $) NIL)) (-1921 (($ (-1241 (-1143) |#1|)) NIL)) (-3210 (($ $ (-747)) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-2556 (($ $ $) NIL (|has| |#1| (-170))) (($ $ (-747)) NIL (|has| |#1| (-170)))) (-1682 (($) NIL T CONST)) (-1869 (($ $ (-1143)) NIL) (($ $ (-795 (-1143))) NIL) (($ $ $) NIL)) (-2714 (((-3 (-795 (-1143)) "failed") $) NIL)) (-2659 (((-795 (-1143)) $) NIL)) (-2114 (((-3 $ "failed") $) NIL)) (-3863 (((-112) $) NIL)) (-1440 (($ $) NIL)) (-2675 (((-112) $) NIL)) (-2205 (((-112) $) NIL)) (-3526 (($ (-795 (-1143)) |#1|) NIL)) (-4273 (($ $) NIL)) (-3473 (((-2 (|:| |k| (-795 (-1143))) (|:| |c| |#1|)) $) NIL)) (-3674 (((-795 (-1143)) $) NIL)) (-2192 (((-795 (-1143)) $) NIL)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-2694 (($ $ (-1143)) NIL) (($ $ (-795 (-1143))) NIL) (($ $ $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-1449 (((-1241 (-1143) |#1|) $) NIL)) (-3701 (((-747) $) NIL)) (-2645 (((-112) $) NIL)) (-2589 ((|#1| $) NIL)) (-3846 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-795 (-1143))) NIL) (($ (-1143)) NIL)) (-1570 ((|#1| $ (-795 (-1143))) NIL) ((|#1| $ $) NIL)) (-2082 (((-747)) NIL)) (-3276 (($) NIL T CONST)) (-2679 (((-621 (-2 (|:| |k| (-1143)) (|:| |c| $))) $) NIL)) (-3287 (($) NIL T CONST)) (-2389 (((-112) $ $) NIL)) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-1143) $) NIL)))
-(((-1248 |#1|) (-13 (-1247 (-1143) |#1|) (-10 -8 (-15 -1449 ((-1241 (-1143) |#1|) $)) (-15 -1921 ($ (-1241 (-1143) |#1|))) (-15 -2679 ((-621 (-2 (|:| |k| (-1143)) (|:| |c| $))) $)))) (-1018)) (T -1248))
-((-1449 (*1 *2 *1) (-12 (-5 *2 (-1241 (-1143) *3)) (-5 *1 (-1248 *3)) (-4 *3 (-1018)))) (-1921 (*1 *1 *2) (-12 (-5 *2 (-1241 (-1143) *3)) (-4 *3 (-1018)) (-5 *1 (-1248 *3)))) (-2679 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |k| (-1143)) (|:| |c| (-1248 *3))))) (-5 *1 (-1248 *3)) (-4 *3 (-1018)))))
-(-13 (-1247 (-1143) |#1|) (-10 -8 (-15 -1449 ((-1241 (-1143) |#1|) $)) (-15 -1921 ($ (-1241 (-1143) |#1|))) (-15 -2679 ((-621 (-2 (|:| |k| (-1143)) (|:| |c| $))) $))))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) NIL)) (-2001 (((-3 $ "failed") $ $) NIL)) (-1682 (($) NIL T CONST)) (-2714 (((-3 |#2| "failed") $) NIL)) (-2659 ((|#2| $) NIL)) (-2070 (($ $) NIL)) (-2114 (((-3 $ "failed") $) 36)) (-3863 (((-112) $) 30)) (-1440 (($ $) 32)) (-2675 (((-112) $) NIL)) (-3347 (((-747) $) NIL)) (-3750 (((-621 $) $) NIL)) (-2205 (((-112) $) NIL)) (-3526 (($ |#2| |#1|) NIL)) (-3674 ((|#2| $) 19)) (-2192 ((|#2| $) 16)) (-2797 (($ (-1 |#1| |#1|) $) NIL)) (-3647 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) NIL)) (-2028 ((|#2| $) NIL)) (-2043 ((|#1| $) NIL)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-2645 (((-112) $) 27)) (-2589 ((|#1| $) 28)) (-3846 (((-834) $) 55) (($ (-549)) 40) (($ |#1|) 35) (($ |#2|) NIL)) (-4141 (((-621 |#1|) $) NIL)) (-2152 ((|#1| $ |#2|) NIL)) (-1570 ((|#1| $ |#2|) 24)) (-2082 (((-747)) 14)) (-3276 (($) 25 T CONST)) (-3287 (($) 11 T CONST)) (-2631 (((-621 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) NIL)) (-2389 (((-112) $ $) 26)) (-2513 (($ $ |#1|) 57 (|has| |#1| (-356)))) (-2500 (($ $) NIL) (($ $ $) NIL)) (-2486 (($ $ $) 44)) (** (($ $ (-892)) NIL) (($ $ (-747)) 46)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 45) (($ |#1| $) 41) (($ $ |#1|) NIL) (($ |#1| |#2|) NIL)) (-3775 (((-747) $) 15)))
-(((-1249 |#1| |#2|) (-13 (-1018) (-1240 |#1|) (-375 |#1| |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3775 ((-747) $)) (-15 -3846 ($ |#2|)) (-15 -2192 (|#2| $)) (-15 -3674 (|#2| $)) (-15 -2070 ($ $)) (-15 -1570 (|#1| $ |#2|)) (-15 -2645 ((-112) $)) (-15 -2589 (|#1| $)) (-15 -3863 ((-112) $)) (-15 -1440 ($ $)) (-15 -2797 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-356)) (-15 -2513 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4330)) (-6 -4330) |%noBranch|) (IF (|has| |#1| (-6 -4334)) (-6 -4334) |%noBranch|) (IF (|has| |#1| (-6 -4335)) (-6 -4335) |%noBranch|))) (-1018) (-819)) (T -1249))
-((* (*1 *1 *1 *2) (-12 (-5 *1 (-1249 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-819)))) (-2070 (*1 *1 *1) (-12 (-5 *1 (-1249 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-819)))) (-2797 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-1249 *3 *4)) (-4 *4 (-819)))) (-3846 (*1 *1 *2) (-12 (-5 *1 (-1249 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-819)))) (-3775 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-1249 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-819)))) (-2192 (*1 *2 *1) (-12 (-4 *2 (-819)) (-5 *1 (-1249 *3 *2)) (-4 *3 (-1018)))) (-3674 (*1 *2 *1) (-12 (-4 *2 (-819)) (-5 *1 (-1249 *3 *2)) (-4 *3 (-1018)))) (-1570 (*1 *2 *1 *3) (-12 (-4 *2 (-1018)) (-5 *1 (-1249 *2 *3)) (-4 *3 (-819)))) (-2645 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1249 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-819)))) (-2589 (*1 *2 *1) (-12 (-4 *2 (-1018)) (-5 *1 (-1249 *2 *3)) (-4 *3 (-819)))) (-3863 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1249 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-819)))) (-1440 (*1 *1 *1) (-12 (-5 *1 (-1249 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-819)))) (-2513 (*1 *1 *1 *2) (-12 (-5 *1 (-1249 *2 *3)) (-4 *2 (-356)) (-4 *2 (-1018)) (-4 *3 (-819)))))
-(-13 (-1018) (-1240 |#1|) (-375 |#1| |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3775 ((-747) $)) (-15 -3846 ($ |#2|)) (-15 -2192 (|#2| $)) (-15 -3674 (|#2| $)) (-15 -2070 ($ $)) (-15 -1570 (|#1| $ |#2|)) (-15 -2645 ((-112) $)) (-15 -2589 (|#1| $)) (-15 -3863 ((-112) $)) (-15 -1440 ($ $)) (-15 -2797 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-356)) (-15 -2513 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4330)) (-6 -4330) |%noBranch|) (IF (|has| |#1| (-6 -4334)) (-6 -4334) |%noBranch|) (IF (|has| |#1| (-6 -4335)) (-6 -4335) |%noBranch|)))
-((-3834 (((-112) $ $) 26)) (-1763 (((-112) $) NIL)) (-3304 (((-621 |#1|) $) 120)) (-1921 (($ (-1241 |#1| |#2|)) 44)) (-3210 (($ $ (-747)) 32)) (-2001 (((-3 $ "failed") $ $) NIL)) (-2556 (($ $ $) 48 (|has| |#2| (-170))) (($ $ (-747)) 46 (|has| |#2| (-170)))) (-1682 (($) NIL T CONST)) (-1869 (($ $ |#1|) 102) (($ $ (-795 |#1|)) 103) (($ $ $) 25)) (-2714 (((-3 (-795 |#1|) "failed") $) NIL)) (-2659 (((-795 |#1|) $) NIL)) (-2114 (((-3 $ "failed") $) 110)) (-3863 (((-112) $) 105)) (-1440 (($ $) 106)) (-2675 (((-112) $) NIL)) (-2205 (((-112) $) NIL)) (-3526 (($ (-795 |#1|) |#2|) 19)) (-4273 (($ $) NIL)) (-3473 (((-2 (|:| |k| (-795 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3674 (((-795 |#1|) $) 111)) (-2192 (((-795 |#1|) $) 114)) (-2797 (($ (-1 |#2| |#2|) $) 119)) (-2694 (($ $ |#1|) 100) (($ $ (-795 |#1|)) 101) (($ $ $) 56)) (-3851 (((-1125) $) NIL)) (-3990 (((-1087) $) NIL)) (-1449 (((-1241 |#1| |#2|) $) 84)) (-3701 (((-747) $) 117)) (-2645 (((-112) $) 70)) (-2589 ((|#2| $) 28)) (-3846 (((-834) $) 63) (($ (-549)) 77) (($ |#2|) 74) (($ (-795 |#1|)) 17) (($ |#1|) 73)) (-1570 ((|#2| $ (-795 |#1|)) 104) ((|#2| $ $) 27)) (-2082 (((-747)) 108)) (-3276 (($) 14 T CONST)) (-2679 (((-621 (-2 (|:| |k| |#1|) (|:| |c| $))) $) 53)) (-3287 (($) 29 T CONST)) (-2389 (((-112) $ $) 13)) (-2500 (($ $) 88) (($ $ $) 91)) (-2486 (($ $ $) 55)) (** (($ $ (-892)) NIL) (($ $ (-747)) 49)) (* (($ (-892) $) NIL) (($ (-747) $) 47) (($ (-549) $) 94) (($ $ $) 21) (($ |#2| $) 18) (($ $ |#2|) 20) (($ |#1| $) 82)))
-(((-1250 |#1| |#2|) (-13 (-1247 |#1| |#2|) (-10 -8 (-15 -1449 ((-1241 |#1| |#2|) $)) (-15 -1921 ($ (-1241 |#1| |#2|))) (-15 -2679 ((-621 (-2 (|:| |k| |#1|) (|:| |c| $))) $)))) (-823) (-1018)) (T -1250))
-((-1449 (*1 *2 *1) (-12 (-5 *2 (-1241 *3 *4)) (-5 *1 (-1250 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)))) (-1921 (*1 *1 *2) (-12 (-5 *2 (-1241 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *1 (-1250 *3 *4)))) (-2679 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |k| *3) (|:| |c| (-1250 *3 *4))))) (-5 *1 (-1250 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)))))
-(-13 (-1247 |#1| |#2|) (-10 -8 (-15 -1449 ((-1241 |#1| |#2|) $)) (-15 -1921 ($ (-1241 |#1| |#2|))) (-15 -2679 ((-621 (-2 (|:| |k| |#1|) (|:| |c| $))) $))))
-((-2663 (((-621 (-1123 |#1|)) (-1 (-621 (-1123 |#1|)) (-621 (-1123 |#1|))) (-549)) 15) (((-1123 |#1|) (-1 (-1123 |#1|) (-1123 |#1|))) 11)))
-(((-1251 |#1|) (-10 -7 (-15 -2663 ((-1123 |#1|) (-1 (-1123 |#1|) (-1123 |#1|)))) (-15 -2663 ((-621 (-1123 |#1|)) (-1 (-621 (-1123 |#1|)) (-621 (-1123 |#1|))) (-549)))) (-1180)) (T -1251))
-((-2663 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-621 (-1123 *5)) (-621 (-1123 *5)))) (-5 *4 (-549)) (-5 *2 (-621 (-1123 *5))) (-5 *1 (-1251 *5)) (-4 *5 (-1180)))) (-2663 (*1 *2 *3) (-12 (-5 *3 (-1 (-1123 *4) (-1123 *4))) (-5 *2 (-1123 *4)) (-5 *1 (-1251 *4)) (-4 *4 (-1180)))))
-(-10 -7 (-15 -2663 ((-1123 |#1|) (-1 (-1123 |#1|) (-1123 |#1|)))) (-15 -2663 ((-621 (-1123 |#1|)) (-1 (-621 (-1123 |#1|)) (-621 (-1123 |#1|))) (-549))))
-((-4061 (((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|))) 148) (((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112)) 147) (((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112)) 146) (((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112) (-112)) 145) (((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-1015 |#1| |#2|)) 130)) (-2910 (((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|))) 72) (((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|)) (-112)) 71) (((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|)) (-112) (-112)) 70)) (-2402 (((-621 (-1113 |#1| (-521 (-836 |#3|)) (-836 |#3|) (-756 |#1| (-836 |#3|)))) (-1015 |#1| |#2|)) 61)) (-3409 (((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|))) 115) (((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112)) 114) (((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112)) 113) (((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112) (-112)) 112) (((-621 (-621 (-995 (-400 |#1|)))) (-1015 |#1| |#2|)) 107)) (-2421 (((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|))) 120) (((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112)) 119) (((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112)) 118) (((-621 (-621 (-995 (-400 |#1|)))) (-1015 |#1| |#2|)) 117)) (-2845 (((-621 (-756 |#1| (-836 |#3|))) (-1113 |#1| (-521 (-836 |#3|)) (-836 |#3|) (-756 |#1| (-836 |#3|)))) 98) (((-1139 (-995 (-400 |#1|))) (-1139 |#1|)) 89) (((-923 (-995 (-400 |#1|))) (-756 |#1| (-836 |#3|))) 96) (((-923 (-995 (-400 |#1|))) (-923 |#1|)) 94) (((-756 |#1| (-836 |#3|)) (-756 |#1| (-836 |#2|))) 33)))
-(((-1252 |#1| |#2| |#3|) (-10 -7 (-15 -2910 ((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|)) (-112) (-112))) (-15 -2910 ((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|)) (-112))) (-15 -2910 ((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|)))) (-15 -4061 ((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-1015 |#1| |#2|))) (-15 -4061 ((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112) (-112))) (-15 -4061 ((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112))) (-15 -4061 ((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112))) (-15 -4061 ((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)))) (-15 -3409 ((-621 (-621 (-995 (-400 |#1|)))) (-1015 |#1| |#2|))) (-15 -3409 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112) (-112))) (-15 -3409 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112))) (-15 -3409 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112))) (-15 -3409 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)))) (-15 -2421 ((-621 (-621 (-995 (-400 |#1|)))) (-1015 |#1| |#2|))) (-15 -2421 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112))) (-15 -2421 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112))) (-15 -2421 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)))) (-15 -2402 ((-621 (-1113 |#1| (-521 (-836 |#3|)) (-836 |#3|) (-756 |#1| (-836 |#3|)))) (-1015 |#1| |#2|))) (-15 -2845 ((-756 |#1| (-836 |#3|)) (-756 |#1| (-836 |#2|)))) (-15 -2845 ((-923 (-995 (-400 |#1|))) (-923 |#1|))) (-15 -2845 ((-923 (-995 (-400 |#1|))) (-756 |#1| (-836 |#3|)))) (-15 -2845 ((-1139 (-995 (-400 |#1|))) (-1139 |#1|))) (-15 -2845 ((-621 (-756 |#1| (-836 |#3|))) (-1113 |#1| (-521 (-836 |#3|)) (-836 |#3|) (-756 |#1| (-836 |#3|)))))) (-13 (-821) (-300) (-145) (-993)) (-621 (-1143)) (-621 (-1143))) (T -1252))
-((-2845 (*1 *2 *3) (-12 (-5 *3 (-1113 *4 (-521 (-836 *6)) (-836 *6) (-756 *4 (-836 *6)))) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *6 (-621 (-1143))) (-5 *2 (-621 (-756 *4 (-836 *6)))) (-5 *1 (-1252 *4 *5 *6)) (-14 *5 (-621 (-1143))))) (-2845 (*1 *2 *3) (-12 (-5 *3 (-1139 *4)) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-1139 (-995 (-400 *4)))) (-5 *1 (-1252 *4 *5 *6)) (-14 *5 (-621 (-1143))) (-14 *6 (-621 (-1143))))) (-2845 (*1 *2 *3) (-12 (-5 *3 (-756 *4 (-836 *6))) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *6 (-621 (-1143))) (-5 *2 (-923 (-995 (-400 *4)))) (-5 *1 (-1252 *4 *5 *6)) (-14 *5 (-621 (-1143))))) (-2845 (*1 *2 *3) (-12 (-5 *3 (-923 *4)) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-923 (-995 (-400 *4)))) (-5 *1 (-1252 *4 *5 *6)) (-14 *5 (-621 (-1143))) (-14 *6 (-621 (-1143))))) (-2845 (*1 *2 *3) (-12 (-5 *3 (-756 *4 (-836 *5))) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *5 (-621 (-1143))) (-5 *2 (-756 *4 (-836 *6))) (-5 *1 (-1252 *4 *5 *6)) (-14 *6 (-621 (-1143))))) (-2402 (*1 *2 *3) (-12 (-5 *3 (-1015 *4 *5)) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *5 (-621 (-1143))) (-5 *2 (-621 (-1113 *4 (-521 (-836 *6)) (-836 *6) (-756 *4 (-836 *6))))) (-5 *1 (-1252 *4 *5 *6)) (-14 *6 (-621 (-1143))))) (-2421 (*1 *2 *3) (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-621 (-995 (-400 *4))))) (-5 *1 (-1252 *4 *5 *6)) (-14 *5 (-621 (-1143))) (-14 *6 (-621 (-1143))))) (-2421 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1252 *5 *6 *7)) (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143))))) (-2421 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1252 *5 *6 *7)) (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143))))) (-2421 (*1 *2 *3) (-12 (-5 *3 (-1015 *4 *5)) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *5 (-621 (-1143))) (-5 *2 (-621 (-621 (-995 (-400 *4))))) (-5 *1 (-1252 *4 *5 *6)) (-14 *6 (-621 (-1143))))) (-3409 (*1 *2 *3) (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-621 (-995 (-400 *4))))) (-5 *1 (-1252 *4 *5 *6)) (-14 *5 (-621 (-1143))) (-14 *6 (-621 (-1143))))) (-3409 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1252 *5 *6 *7)) (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143))))) (-3409 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1252 *5 *6 *7)) (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143))))) (-3409 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1252 *5 *6 *7)) (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143))))) (-3409 (*1 *2 *3) (-12 (-5 *3 (-1015 *4 *5)) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *5 (-621 (-1143))) (-5 *2 (-621 (-621 (-995 (-400 *4))))) (-5 *1 (-1252 *4 *5 *6)) (-14 *6 (-621 (-1143))))) (-4061 (*1 *2 *3) (-12 (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-2 (|:| -1298 (-1139 *4)) (|:| -4263 (-621 (-923 *4)))))) (-5 *1 (-1252 *4 *5 *6)) (-5 *3 (-621 (-923 *4))) (-14 *5 (-621 (-1143))) (-14 *6 (-621 (-1143))))) (-4061 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-2 (|:| -1298 (-1139 *5)) (|:| -4263 (-621 (-923 *5)))))) (-5 *1 (-1252 *5 *6 *7)) (-5 *3 (-621 (-923 *5))) (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143))))) (-4061 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-2 (|:| -1298 (-1139 *5)) (|:| -4263 (-621 (-923 *5)))))) (-5 *1 (-1252 *5 *6 *7)) (-5 *3 (-621 (-923 *5))) (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143))))) (-4061 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-2 (|:| -1298 (-1139 *5)) (|:| -4263 (-621 (-923 *5)))))) (-5 *1 (-1252 *5 *6 *7)) (-5 *3 (-621 (-923 *5))) (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143))))) (-4061 (*1 *2 *3) (-12 (-5 *3 (-1015 *4 *5)) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *5 (-621 (-1143))) (-5 *2 (-621 (-2 (|:| -1298 (-1139 *4)) (|:| -4263 (-621 (-923 *4)))))) (-5 *1 (-1252 *4 *5 *6)) (-14 *6 (-621 (-1143))))) (-2910 (*1 *2 *3) (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-1015 *4 *5))) (-5 *1 (-1252 *4 *5 *6)) (-14 *5 (-621 (-1143))) (-14 *6 (-621 (-1143))))) (-2910 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-1015 *5 *6))) (-5 *1 (-1252 *5 *6 *7)) (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143))))) (-2910 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-1015 *5 *6))) (-5 *1 (-1252 *5 *6 *7)) (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143))))))
-(-10 -7 (-15 -2910 ((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|)) (-112) (-112))) (-15 -2910 ((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|)) (-112))) (-15 -2910 ((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|)))) (-15 -4061 ((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-1015 |#1| |#2|))) (-15 -4061 ((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112) (-112))) (-15 -4061 ((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112))) (-15 -4061 ((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112))) (-15 -4061 ((-621 (-2 (|:| -1298 (-1139 |#1|)) (|:| -4263 (-621 (-923 |#1|))))) (-621 (-923 |#1|)))) (-15 -3409 ((-621 (-621 (-995 (-400 |#1|)))) (-1015 |#1| |#2|))) (-15 -3409 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112) (-112))) (-15 -3409 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112))) (-15 -3409 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112))) (-15 -3409 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)))) (-15 -2421 ((-621 (-621 (-995 (-400 |#1|)))) (-1015 |#1| |#2|))) (-15 -2421 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112))) (-15 -2421 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112))) (-15 -2421 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)))) (-15 -2402 ((-621 (-1113 |#1| (-521 (-836 |#3|)) (-836 |#3|) (-756 |#1| (-836 |#3|)))) (-1015 |#1| |#2|))) (-15 -2845 ((-756 |#1| (-836 |#3|)) (-756 |#1| (-836 |#2|)))) (-15 -2845 ((-923 (-995 (-400 |#1|))) (-923 |#1|))) (-15 -2845 ((-923 (-995 (-400 |#1|))) (-756 |#1| (-836 |#3|)))) (-15 -2845 ((-1139 (-995 (-400 |#1|))) (-1139 |#1|))) (-15 -2845 ((-621 (-756 |#1| (-836 |#3|))) (-1113 |#1| (-521 (-836 |#3|)) (-836 |#3|) (-756 |#1| (-836 |#3|))))))
-((-3180 (((-3 (-1226 (-400 (-549))) "failed") (-1226 |#1|) |#1|) 21)) (-3391 (((-112) (-1226 |#1|)) 12)) (-2765 (((-3 (-1226 (-549)) "failed") (-1226 |#1|)) 16)))
-(((-1253 |#1|) (-10 -7 (-15 -3391 ((-112) (-1226 |#1|))) (-15 -2765 ((-3 (-1226 (-549)) "failed") (-1226 |#1|))) (-15 -3180 ((-3 (-1226 (-400 (-549))) "failed") (-1226 |#1|) |#1|))) (-617 (-549))) (T -1253))
-((-3180 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1226 *4)) (-4 *4 (-617 (-549))) (-5 *2 (-1226 (-400 (-549)))) (-5 *1 (-1253 *4)))) (-2765 (*1 *2 *3) (|partial| -12 (-5 *3 (-1226 *4)) (-4 *4 (-617 (-549))) (-5 *2 (-1226 (-549))) (-5 *1 (-1253 *4)))) (-3391 (*1 *2 *3) (-12 (-5 *3 (-1226 *4)) (-4 *4 (-617 (-549))) (-5 *2 (-112)) (-5 *1 (-1253 *4)))))
-(-10 -7 (-15 -3391 ((-112) (-1226 |#1|))) (-15 -2765 ((-3 (-1226 (-549)) "failed") (-1226 |#1|))) (-15 -3180 ((-3 (-1226 (-400 (-549))) "failed") (-1226 |#1|) |#1|)))
-((-3834 (((-112) $ $) NIL)) (-1763 (((-112) $) 11)) (-2001 (((-3 $ "failed") $ $) NIL)) (-3614 (((-747)) 8)) (-1682 (($) NIL T CONST)) (-2114 (((-3 $ "failed") $) 43)) (-3239 (($) 36)) (-2675 (((-112) $) NIL)) (-1681 (((-3 $ "failed") $) 29)) (-1881 (((-892) $) 15)) (-3851 (((-1125) $) NIL)) (-3060 (($) 25 T CONST)) (-3493 (($ (-892)) 37)) (-3990 (((-1087) $) NIL)) (-2845 (((-549) $) 13)) (-3846 (((-834) $) 22) (($ (-549)) 19)) (-2082 (((-747)) 9)) (-3276 (($) 23 T CONST)) (-3287 (($) 24 T CONST)) (-2389 (((-112) $ $) 27)) (-2500 (($ $) 38) (($ $ $) 35)) (-2486 (($ $ $) 26)) (** (($ $ (-892)) NIL) (($ $ (-747)) 40)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 32) (($ $ $) 31)))
-(((-1254 |#1|) (-13 (-170) (-361) (-594 (-549)) (-1118)) (-892)) (T -1254))
-NIL
-(-13 (-170) (-361) (-594 (-549)) (-1118))
-NIL
-NIL
-NIL
-NIL
-NIL
-NIL
-NIL
-NIL
-NIL
-NIL
-NIL
-NIL
-((-3 3172652 3172657 3172662 NIL NIL NIL NIL (NIL) -8 NIL NIL) (-2 3172637 3172642 3172647 NIL NIL NIL NIL (NIL) -8 NIL NIL) (-1 3172622 3172627 3172632 NIL NIL NIL NIL (NIL) -8 NIL NIL) (0 3172607 3172612 3172617 NIL NIL NIL NIL (NIL) -8 NIL NIL) (-1254 3171783 3172482 3172559 "ZMOD" 3172564 NIL ZMOD (NIL NIL) -8 NIL NIL) (-1253 3170893 3171057 3171266 "ZLINDEP" 3171615 NIL ZLINDEP (NIL T) -7 NIL NIL) (-1252 3160269 3162021 3163980 "ZDSOLVE" 3169035 NIL ZDSOLVE (NIL T NIL NIL) -7 NIL NIL) (-1251 3159515 3159656 3159845 "YSTREAM" 3160115 NIL YSTREAM (NIL T) -7 NIL NIL) (-1250 3157326 3158816 3159020 "XRPOLY" 3159358 NIL XRPOLY (NIL T T) -8 NIL NIL) (-1249 3153818 3155101 3155685 "XPR" 3156789 NIL XPR (NIL T T) -8 NIL NIL) (-1248 3151574 3153149 3153353 "XPOLY" 3153649 NIL XPOLY (NIL T) -8 NIL NIL) (-1247 3149423 3150757 3150812 "XPOLYC" 3151100 NIL XPOLYC (NIL T T) -9 NIL 3151213) (-1246 3145841 3147940 3148328 "XPBWPOLY" 3149081 NIL XPBWPOLY (NIL T T) -8 NIL NIL) (-1245 3141826 3144074 3144116 "XF" 3144737 NIL XF (NIL T) -9 NIL 3145137) (-1244 3141447 3141535 3141704 "XF-" 3141709 NIL XF- (NIL T T) -8 NIL NIL) (-1243 3136839 3138094 3138149 "XFALG" 3140321 NIL XFALG (NIL T T) -9 NIL 3141110) (-1242 3135972 3136076 3136281 "XEXPPKG" 3136731 NIL XEXPPKG (NIL T T T) -7 NIL NIL) (-1241 3134116 3135822 3135918 "XDPOLY" 3135923 NIL XDPOLY (NIL T T) -8 NIL NIL) (-1240 3133032 3133598 3133641 "XALG" 3133704 NIL XALG (NIL T) -9 NIL 3133824) (-1239 3126501 3131009 3131503 "WUTSET" 3132624 NIL WUTSET (NIL T T T T) -8 NIL NIL) (-1238 3124352 3125113 3125466 "WP" 3126282 NIL WP (NIL T T T T NIL NIL NIL) -8 NIL NIL) (-1237 3123998 3124174 3124244 "WHILEAST" 3124304 T WHILEAST (NIL) -8 NIL NIL) (-1236 3123514 3123715 3123809 "WHEREAST" 3123926 T WHEREAST (NIL) -8 NIL NIL) (-1235 3122400 3122598 3122893 "WFFINTBS" 3123311 NIL WFFINTBS (NIL T T T T) -7 NIL NIL) (-1234 3120304 3120731 3121193 "WEIER" 3121972 NIL WEIER (NIL T) -7 NIL NIL) (-1233 3119451 3119875 3119917 "VSPACE" 3120053 NIL VSPACE (NIL T) -9 NIL 3120127) (-1232 3119289 3119316 3119407 "VSPACE-" 3119412 NIL VSPACE- (NIL T T) -8 NIL NIL) (-1231 3119035 3119078 3119149 "VOID" 3119240 T VOID (NIL) -8 NIL NIL) (-1230 3117171 3117530 3117936 "VIEW" 3118651 T VIEW (NIL) -7 NIL NIL) (-1229 3113596 3114234 3114971 "VIEWDEF" 3116456 T VIEWDEF (NIL) -7 NIL NIL) (-1228 3102934 3105144 3107317 "VIEW3D" 3111445 T VIEW3D (NIL) -8 NIL NIL) (-1227 3095216 3096845 3098424 "VIEW2D" 3101377 T VIEW2D (NIL) -8 NIL NIL) (-1226 3090620 3094986 3095078 "VECTOR" 3095159 NIL VECTOR (NIL T) -8 NIL NIL) (-1225 3089197 3089456 3089774 "VECTOR2" 3090350 NIL VECTOR2 (NIL T T) -7 NIL NIL) (-1224 3082724 3086981 3087024 "VECTCAT" 3088017 NIL VECTCAT (NIL T) -9 NIL 3088603) (-1223 3081738 3081992 3082382 "VECTCAT-" 3082387 NIL VECTCAT- (NIL T T) -8 NIL NIL) (-1222 3081219 3081389 3081509 "VARIABLE" 3081653 NIL VARIABLE (NIL NIL) -8 NIL NIL) (-1221 3081152 3081157 3081187 "UTYPE" 3081192 T UTYPE (NIL) -9 NIL NIL) (-1220 3079982 3080136 3080398 "UTSODETL" 3080978 NIL UTSODETL (NIL T T T T) -7 NIL NIL) (-1219 3077422 3077882 3078406 "UTSODE" 3079523 NIL UTSODE (NIL T T) -7 NIL NIL) (-1218 3069298 3075048 3075537 "UTS" 3076991 NIL UTS (NIL T NIL NIL) -8 NIL NIL) (-1217 3060671 3065990 3066033 "UTSCAT" 3067145 NIL UTSCAT (NIL T) -9 NIL 3067902) (-1216 3058025 3058741 3059730 "UTSCAT-" 3059735 NIL UTSCAT- (NIL T T) -8 NIL NIL) (-1215 3057652 3057695 3057828 "UTS2" 3057976 NIL UTS2 (NIL T T T T) -7 NIL NIL) (-1214 3051927 3054492 3054535 "URAGG" 3056605 NIL URAGG (NIL T) -9 NIL 3057327) (-1213 3048866 3049729 3050852 "URAGG-" 3050857 NIL URAGG- (NIL T T) -8 NIL NIL) (-1212 3044590 3047480 3047952 "UPXSSING" 3048530 NIL UPXSSING (NIL T T NIL NIL) -8 NIL NIL) (-1211 3036560 3043705 3043987 "UPXS" 3044366 NIL UPXS (NIL T NIL NIL) -8 NIL NIL) (-1210 3029673 3036464 3036536 "UPXSCONS" 3036541 NIL UPXSCONS (NIL T T) -8 NIL NIL) (-1209 3020031 3026776 3026838 "UPXSCCA" 3027494 NIL UPXSCCA (NIL T T) -9 NIL 3027736) (-1208 3019669 3019754 3019928 "UPXSCCA-" 3019933 NIL UPXSCCA- (NIL T T T) -8 NIL NIL) (-1207 3009953 3016471 3016514 "UPXSCAT" 3017162 NIL UPXSCAT (NIL T) -9 NIL 3017770) (-1206 3009383 3009462 3009641 "UPXS2" 3009868 NIL UPXS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL) (-1205 3008037 3008290 3008641 "UPSQFREE" 3009126 NIL UPSQFREE (NIL T T) -7 NIL NIL) (-1204 3001955 3004964 3005019 "UPSCAT" 3006180 NIL UPSCAT (NIL T T) -9 NIL 3006954) (-1203 3001159 3001366 3001693 "UPSCAT-" 3001698 NIL UPSCAT- (NIL T T T) -8 NIL NIL) (-1202 2987250 2995246 2995289 "UPOLYC" 2997390 NIL UPOLYC (NIL T) -9 NIL 2998611) (-1201 2978579 2981004 2984151 "UPOLYC-" 2984156 NIL UPOLYC- (NIL T T) -8 NIL NIL) (-1200 2978206 2978249 2978382 "UPOLYC2" 2978530 NIL UPOLYC2 (NIL T T T T) -7 NIL NIL) (-1199 2969663 2977772 2977910 "UP" 2978116 NIL UP (NIL NIL T) -8 NIL NIL) (-1198 2969002 2969109 2969273 "UPMP" 2969552 NIL UPMP (NIL T T) -7 NIL NIL) (-1197 2968555 2968636 2968775 "UPDIVP" 2968915 NIL UPDIVP (NIL T T) -7 NIL NIL) (-1196 2967123 2967372 2967688 "UPDECOMP" 2968304 NIL UPDECOMP (NIL T T) -7 NIL NIL) (-1195 2966358 2966470 2966655 "UPCDEN" 2967007 NIL UPCDEN (NIL T T T) -7 NIL NIL) (-1194 2965877 2965946 2966095 "UP2" 2966283 NIL UP2 (NIL NIL T NIL T) -7 NIL NIL) (-1193 2964394 2965081 2965358 "UNISEG" 2965635 NIL UNISEG (NIL T) -8 NIL NIL) (-1192 2963609 2963736 2963941 "UNISEG2" 2964237 NIL UNISEG2 (NIL T T) -7 NIL NIL) (-1191 2962669 2962849 2963075 "UNIFACT" 2963425 NIL UNIFACT (NIL T) -7 NIL NIL) (-1190 2946638 2961846 2962097 "ULS" 2962476 NIL ULS (NIL T NIL NIL) -8 NIL NIL) (-1189 2934680 2946542 2946614 "ULSCONS" 2946619 NIL ULSCONS (NIL T T) -8 NIL NIL) (-1188 2917484 2929419 2929481 "ULSCCAT" 2930201 NIL ULSCCAT (NIL T T) -9 NIL 2930498) (-1187 2916534 2916779 2917167 "ULSCCAT-" 2917172 NIL ULSCCAT- (NIL T T T) -8 NIL NIL) (-1186 2906595 2913027 2913070 "ULSCAT" 2913933 NIL ULSCAT (NIL T) -9 NIL 2914663) (-1185 2906025 2906104 2906283 "ULS2" 2906510 NIL ULS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL) (-1184 2904463 2905386 2905416 "UFD" 2905628 T UFD (NIL) -9 NIL 2905742) (-1183 2904257 2904303 2904398 "UFD-" 2904403 NIL UFD- (NIL T) -8 NIL NIL) (-1182 2903339 2903522 2903738 "UDVO" 2904063 T UDVO (NIL) -7 NIL NIL) (-1181 2901155 2901564 2902035 "UDPO" 2902903 NIL UDPO (NIL T) -7 NIL NIL) (-1180 2901088 2901093 2901123 "TYPE" 2901128 T TYPE (NIL) -9 NIL NIL) (-1179 2900742 2900910 2900980 "TYPEAST" 2901040 T TYPEAST (NIL) -8 NIL NIL) (-1178 2899713 2899915 2900155 "TWOFACT" 2900536 NIL TWOFACT (NIL T) -7 NIL NIL) (-1177 2898651 2898988 2899251 "TUPLE" 2899485 NIL TUPLE (NIL T) -8 NIL NIL) (-1176 2896342 2896861 2897400 "TUBETOOL" 2898134 T TUBETOOL (NIL) -7 NIL NIL) (-1175 2895191 2895396 2895637 "TUBE" 2896135 NIL TUBE (NIL T) -8 NIL NIL) (-1174 2889955 2894163 2894446 "TS" 2894943 NIL TS (NIL T) -8 NIL NIL) (-1173 2878622 2882714 2882811 "TSETCAT" 2888080 NIL TSETCAT (NIL T T T T) -9 NIL 2889611) (-1172 2873356 2874954 2876845 "TSETCAT-" 2876850 NIL TSETCAT- (NIL T T T T T) -8 NIL NIL) (-1171 2867619 2868465 2869407 "TRMANIP" 2872492 NIL TRMANIP (NIL T T) -7 NIL NIL) (-1170 2867060 2867123 2867286 "TRIMAT" 2867551 NIL TRIMAT (NIL T T T T) -7 NIL NIL) (-1169 2864856 2865093 2865457 "TRIGMNIP" 2866809 NIL TRIGMNIP (NIL T T) -7 NIL NIL) (-1168 2864376 2864489 2864519 "TRIGCAT" 2864732 T TRIGCAT (NIL) -9 NIL NIL) (-1167 2864045 2864124 2864265 "TRIGCAT-" 2864270 NIL TRIGCAT- (NIL T) -8 NIL NIL) (-1166 2860944 2862905 2863185 "TREE" 2863800 NIL TREE (NIL T) -8 NIL NIL) (-1165 2860218 2860746 2860776 "TRANFUN" 2860811 T TRANFUN (NIL) -9 NIL 2860877) (-1164 2859497 2859688 2859968 "TRANFUN-" 2859973 NIL TRANFUN- (NIL T) -8 NIL NIL) (-1163 2859301 2859333 2859394 "TOPSP" 2859458 T TOPSP (NIL) -7 NIL NIL) (-1162 2858649 2858764 2858918 "TOOLSIGN" 2859182 NIL TOOLSIGN (NIL T) -7 NIL NIL) (-1161 2857310 2857826 2858065 "TEXTFILE" 2858432 T TEXTFILE (NIL) -8 NIL NIL) (-1160 2855175 2855689 2856127 "TEX" 2856894 T TEX (NIL) -8 NIL NIL) (-1159 2854956 2854987 2855059 "TEX1" 2855138 NIL TEX1 (NIL T) -7 NIL NIL) (-1158 2854604 2854667 2854757 "TEMUTL" 2854888 T TEMUTL (NIL) -7 NIL NIL) (-1157 2852758 2853038 2853363 "TBCMPPK" 2854327 NIL TBCMPPK (NIL T T) -7 NIL NIL) (-1156 2844646 2850918 2850974 "TBAGG" 2851374 NIL TBAGG (NIL T T) -9 NIL 2851585) (-1155 2839716 2841204 2842958 "TBAGG-" 2842963 NIL TBAGG- (NIL T T T) -8 NIL NIL) (-1154 2839100 2839207 2839352 "TANEXP" 2839605 NIL TANEXP (NIL T) -7 NIL NIL) (-1153 2832601 2838957 2839050 "TABLE" 2839055 NIL TABLE (NIL T T) -8 NIL NIL) (-1152 2832013 2832112 2832250 "TABLEAU" 2832498 NIL TABLEAU (NIL T) -8 NIL NIL) (-1151 2826621 2827841 2829089 "TABLBUMP" 2830799 NIL TABLBUMP (NIL T) -7 NIL NIL) (-1150 2826049 2826149 2826277 "SYSTEM" 2826515 T SYSTEM (NIL) -7 NIL NIL) (-1149 2822512 2823207 2823990 "SYSSOLP" 2825300 NIL SYSSOLP (NIL T) -7 NIL NIL) (-1148 2818803 2819511 2820245 "SYNTAX" 2821800 T SYNTAX (NIL) -8 NIL NIL) (-1147 2815961 2816563 2817195 "SYMTAB" 2818193 T SYMTAB (NIL) -8 NIL NIL) (-1146 2811210 2812112 2813095 "SYMS" 2815000 T SYMS (NIL) -8 NIL NIL) (-1145 2808482 2810668 2810898 "SYMPOLY" 2811015 NIL SYMPOLY (NIL T) -8 NIL NIL) (-1144 2807999 2808074 2808197 "SYMFUNC" 2808394 NIL SYMFUNC (NIL T) -7 NIL NIL) (-1143 2803976 2805236 2806058 "SYMBOL" 2807199 T SYMBOL (NIL) -8 NIL NIL) (-1142 2797515 2799204 2800924 "SWITCH" 2802278 T SWITCH (NIL) -8 NIL NIL) (-1141 2790785 2796336 2796639 "SUTS" 2797270 NIL SUTS (NIL T NIL NIL) -8 NIL NIL) (-1140 2782754 2789900 2790182 "SUPXS" 2790561 NIL SUPXS (NIL T NIL NIL) -8 NIL NIL) (-1139 2774283 2782372 2782498 "SUP" 2782663 NIL SUP (NIL T) -8 NIL NIL) (-1138 2773442 2773569 2773786 "SUPFRACF" 2774151 NIL SUPFRACF (NIL T T T T) -7 NIL NIL) (-1137 2773063 2773122 2773235 "SUP2" 2773377 NIL SUP2 (NIL T T) -7 NIL NIL) (-1136 2771476 2771750 2772113 "SUMRF" 2772762 NIL SUMRF (NIL T) -7 NIL NIL) (-1135 2770790 2770856 2771055 "SUMFS" 2771397 NIL SUMFS (NIL T T) -7 NIL NIL) (-1134 2754799 2769967 2770218 "SULS" 2770597 NIL SULS (NIL T NIL NIL) -8 NIL NIL) (-1133 2754445 2754621 2754691 "SUCHTAST" 2754751 T SUCHTAST (NIL) -8 NIL NIL) (-1132 2753767 2753970 2754110 "SUCH" 2754353 NIL SUCH (NIL T T) -8 NIL NIL) (-1131 2747661 2748673 2749632 "SUBSPACE" 2752855 NIL SUBSPACE (NIL NIL T) -8 NIL NIL) (-1130 2747091 2747181 2747345 "SUBRESP" 2747549 NIL SUBRESP (NIL T T) -7 NIL NIL) (-1129 2740460 2741756 2743067 "STTF" 2745827 NIL STTF (NIL T) -7 NIL NIL) (-1128 2734633 2735753 2736900 "STTFNC" 2739360 NIL STTFNC (NIL T) -7 NIL NIL) (-1127 2725948 2727815 2729609 "STTAYLOR" 2732874 NIL STTAYLOR (NIL T) -7 NIL NIL) (-1126 2719192 2725812 2725895 "STRTBL" 2725900 NIL STRTBL (NIL T) -8 NIL NIL) (-1125 2714583 2719147 2719178 "STRING" 2719183 T STRING (NIL) -8 NIL NIL) (-1124 2709471 2713956 2713986 "STRICAT" 2714045 T STRICAT (NIL) -9 NIL 2714107) (-1123 2702184 2706994 2707614 "STREAM" 2708886 NIL STREAM (NIL T) -8 NIL NIL) (-1122 2701694 2701771 2701915 "STREAM3" 2702101 NIL STREAM3 (NIL T T T) -7 NIL NIL) (-1121 2700676 2700859 2701094 "STREAM2" 2701507 NIL STREAM2 (NIL T T) -7 NIL NIL) (-1120 2700364 2700416 2700509 "STREAM1" 2700618 NIL STREAM1 (NIL T) -7 NIL NIL) (-1119 2699380 2699561 2699792 "STINPROD" 2700180 NIL STINPROD (NIL T) -7 NIL NIL) (-1118 2698958 2699142 2699172 "STEP" 2699252 T STEP (NIL) -9 NIL 2699330) (-1117 2692501 2698857 2698934 "STBL" 2698939 NIL STBL (NIL T T NIL) -8 NIL NIL) (-1116 2687676 2691723 2691766 "STAGG" 2691919 NIL STAGG (NIL T) -9 NIL 2692008) (-1115 2685378 2685980 2686852 "STAGG-" 2686857 NIL STAGG- (NIL T T) -8 NIL NIL) (-1114 2683573 2685148 2685240 "STACK" 2685321 NIL STACK (NIL T) -8 NIL NIL) (-1113 2676298 2681714 2682170 "SREGSET" 2683203 NIL SREGSET (NIL T T T T) -8 NIL NIL) (-1112 2668724 2670092 2671605 "SRDCMPK" 2674904 NIL SRDCMPK (NIL T T T T T) -7 NIL NIL) (-1111 2661691 2666164 2666194 "SRAGG" 2667497 T SRAGG (NIL) -9 NIL 2668105) (-1110 2660708 2660963 2661342 "SRAGG-" 2661347 NIL SRAGG- (NIL T) -8 NIL NIL) (-1109 2655194 2659623 2660051 "SQMATRIX" 2660327 NIL SQMATRIX (NIL NIL T) -8 NIL NIL) (-1108 2648946 2651914 2652640 "SPLTREE" 2654540 NIL SPLTREE (NIL T T) -8 NIL NIL) (-1107 2644936 2645602 2646248 "SPLNODE" 2648372 NIL SPLNODE (NIL T T) -8 NIL NIL) (-1106 2643983 2644216 2644246 "SPFCAT" 2644690 T SPFCAT (NIL) -9 NIL NIL) (-1105 2642720 2642930 2643194 "SPECOUT" 2643741 T SPECOUT (NIL) -7 NIL NIL) (-1104 2635197 2636772 2636802 "SPADXPT" 2640769 T SPADXPT (NIL) -9 NIL 2642609) (-1103 2634958 2634998 2635067 "SPADPRSR" 2635150 T SPADPRSR (NIL) -7 NIL NIL) (-1102 2633317 2634913 2634944 "SPADAST" 2634949 T SPADAST (NIL) -8 NIL NIL) (-1101 2625288 2627035 2627078 "SPACEC" 2631451 NIL SPACEC (NIL T) -9 NIL 2633267) (-1100 2623459 2625220 2625269 "SPACE3" 2625274 NIL SPACE3 (NIL T) -8 NIL NIL) (-1099 2622211 2622382 2622673 "SORTPAK" 2623264 NIL SORTPAK (NIL T T) -7 NIL NIL) (-1098 2620261 2620564 2620983 "SOLVETRA" 2621875 NIL SOLVETRA (NIL T) -7 NIL NIL) (-1097 2619272 2619494 2619768 "SOLVESER" 2620034 NIL SOLVESER (NIL T) -7 NIL NIL) (-1096 2614492 2615373 2616375 "SOLVERAD" 2618324 NIL SOLVERAD (NIL T) -7 NIL NIL) (-1095 2610307 2610916 2611645 "SOLVEFOR" 2613859 NIL SOLVEFOR (NIL T T) -7 NIL NIL) (-1094 2604604 2609656 2609753 "SNTSCAT" 2609758 NIL SNTSCAT (NIL T T T T) -9 NIL 2609828) (-1093 2598747 2602927 2603318 "SMTS" 2604294 NIL SMTS (NIL T T T) -8 NIL NIL) (-1092 2593197 2598635 2598712 "SMP" 2598717 NIL SMP (NIL T T) -8 NIL NIL) (-1091 2591356 2591657 2592055 "SMITH" 2592894 NIL SMITH (NIL T T T T) -7 NIL NIL) (-1090 2584339 2588494 2588597 "SMATCAT" 2589948 NIL SMATCAT (NIL NIL T T T) -9 NIL 2590498) (-1089 2581279 2582102 2583280 "SMATCAT-" 2583285 NIL SMATCAT- (NIL T NIL T T T) -8 NIL NIL) (-1088 2578992 2580515 2580558 "SKAGG" 2580819 NIL SKAGG (NIL T) -9 NIL 2580954) (-1087 2575108 2578096 2578374 "SINT" 2578736 T SINT (NIL) -8 NIL NIL) (-1086 2574880 2574918 2574984 "SIMPAN" 2575064 T SIMPAN (NIL) -7 NIL NIL) (-1085 2574187 2574415 2574555 "SIG" 2574762 T SIG (NIL) -8 NIL NIL) (-1084 2573025 2573246 2573521 "SIGNRF" 2573946 NIL SIGNRF (NIL T) -7 NIL NIL) (-1083 2571830 2571981 2572272 "SIGNEF" 2572854 NIL SIGNEF (NIL T T) -7 NIL NIL) (-1082 2571180 2571413 2571537 "SIGAST" 2571728 T SIGAST (NIL) -8 NIL NIL) (-1081 2568870 2569324 2569830 "SHP" 2570721 NIL SHP (NIL T NIL) -7 NIL NIL) (-1080 2562776 2568771 2568847 "SHDP" 2568852 NIL SHDP (NIL NIL NIL T) -8 NIL NIL) (-1079 2562375 2562541 2562571 "SGROUP" 2562664 T SGROUP (NIL) -9 NIL 2562726) (-1078 2562233 2562259 2562332 "SGROUP-" 2562337 NIL SGROUP- (NIL T) -8 NIL NIL) (-1077 2559069 2559766 2560489 "SGCF" 2561532 T SGCF (NIL) -7 NIL NIL) (-1076 2553464 2558516 2558613 "SFRTCAT" 2558618 NIL SFRTCAT (NIL T T T T) -9 NIL 2558657) (-1075 2546888 2547903 2549039 "SFRGCD" 2552447 NIL SFRGCD (NIL T T T T T) -7 NIL NIL) (-1074 2540016 2541087 2542273 "SFQCMPK" 2545821 NIL SFQCMPK (NIL T T T T T) -7 NIL NIL) (-1073 2539638 2539727 2539837 "SFORT" 2539957 NIL SFORT (NIL T T) -8 NIL NIL) (-1072 2538783 2539478 2539599 "SEXOF" 2539604 NIL SEXOF (NIL T T T T T) -8 NIL NIL) (-1071 2537917 2538664 2538732 "SEX" 2538737 T SEX (NIL) -8 NIL NIL) (-1070 2532693 2533382 2533477 "SEXCAT" 2537248 NIL SEXCAT (NIL T T T T T) -9 NIL 2537867) (-1069 2529873 2532627 2532675 "SET" 2532680 NIL SET (NIL T) -8 NIL NIL) (-1068 2528124 2528586 2528891 "SETMN" 2529614 NIL SETMN (NIL NIL NIL) -8 NIL NIL) (-1067 2527730 2527856 2527886 "SETCAT" 2528003 T SETCAT (NIL) -9 NIL 2528088) (-1066 2527510 2527562 2527661 "SETCAT-" 2527666 NIL SETCAT- (NIL T) -8 NIL NIL) (-1065 2523897 2525971 2526014 "SETAGG" 2526884 NIL SETAGG (NIL T) -9 NIL 2527224) (-1064 2523355 2523471 2523708 "SETAGG-" 2523713 NIL SETAGG- (NIL T T) -8 NIL NIL) (-1063 2522842 2523051 2523152 "SEQAST" 2523276 T SEQAST (NIL) -8 NIL NIL) (-1062 2522046 2522339 2522400 "SEGXCAT" 2522686 NIL SEGXCAT (NIL T T) -9 NIL 2522806) (-1061 2521102 2521712 2521894 "SEG" 2521899 NIL SEG (NIL T) -8 NIL NIL) (-1060 2520009 2520222 2520265 "SEGCAT" 2520847 NIL SEGCAT (NIL T) -9 NIL 2521085) (-1059 2519058 2519388 2519588 "SEGBIND" 2519844 NIL SEGBIND (NIL T) -8 NIL NIL) (-1058 2518679 2518738 2518851 "SEGBIND2" 2518993 NIL SEGBIND2 (NIL T T) -7 NIL NIL) (-1057 2518297 2518480 2518557 "SEGAST" 2518624 T SEGAST (NIL) -8 NIL NIL) (-1056 2517516 2517642 2517846 "SEG2" 2518141 NIL SEG2 (NIL T T) -7 NIL NIL) (-1055 2516953 2517451 2517498 "SDVAR" 2517503 NIL SDVAR (NIL T) -8 NIL NIL) (-1054 2509243 2516723 2516853 "SDPOL" 2516858 NIL SDPOL (NIL T) -8 NIL NIL) (-1053 2507836 2508102 2508421 "SCPKG" 2508958 NIL SCPKG (NIL T) -7 NIL NIL) (-1052 2506972 2507152 2507352 "SCOPE" 2507658 T SCOPE (NIL) -8 NIL NIL) (-1051 2506193 2506326 2506505 "SCACHE" 2506827 NIL SCACHE (NIL T) -7 NIL NIL) (-1050 2505919 2506062 2506092 "SASTCAT" 2506097 T SASTCAT (NIL) -9 NIL 2506110) (-1049 2505708 2505753 2505851 "SASTCAT-" 2505856 NIL SASTCAT- (NIL T) -8 NIL NIL) (-1048 2505147 2505468 2505553 "SAOS" 2505645 T SAOS (NIL) -8 NIL NIL) (-1047 2504712 2504747 2504920 "SAERFFC" 2505106 NIL SAERFFC (NIL T T T) -7 NIL NIL) (-1046 2498686 2504609 2504689 "SAE" 2504694 NIL SAE (NIL T T NIL) -8 NIL NIL) (-1045 2498279 2498314 2498473 "SAEFACT" 2498645 NIL SAEFACT (NIL T T T) -7 NIL NIL) (-1044 2496600 2496914 2497315 "RURPK" 2497945 NIL RURPK (NIL T NIL) -7 NIL NIL) (-1043 2495236 2495515 2495827 "RULESET" 2496434 NIL RULESET (NIL T T T) -8 NIL NIL) (-1042 2492423 2492926 2493391 "RULE" 2494917 NIL RULE (NIL T T T) -8 NIL NIL) (-1041 2492062 2492217 2492300 "RULECOLD" 2492375 NIL RULECOLD (NIL NIL) -8 NIL NIL) (-1040 2491578 2491779 2491873 "RSTRCAST" 2491990 T RSTRCAST (NIL) -8 NIL NIL) (-1039 2486427 2487221 2488141 "RSETGCD" 2490777 NIL RSETGCD (NIL T T T T T) -7 NIL NIL) (-1038 2475684 2480736 2480833 "RSETCAT" 2484952 NIL RSETCAT (NIL T T T T) -9 NIL 2486049) (-1037 2473611 2474150 2474974 "RSETCAT-" 2474979 NIL RSETCAT- (NIL T T T T T) -8 NIL NIL) (-1036 2465998 2467373 2468893 "RSDCMPK" 2472210 NIL RSDCMPK (NIL T T T T T) -7 NIL NIL) (-1035 2464003 2464444 2464518 "RRCC" 2465604 NIL RRCC (NIL T T) -9 NIL 2465948) (-1034 2463354 2463528 2463807 "RRCC-" 2463812 NIL RRCC- (NIL T T T) -8 NIL NIL) (-1033 2462841 2463050 2463151 "RPTAST" 2463275 T RPTAST (NIL) -8 NIL NIL) (-1032 2437069 2446654 2446721 "RPOLCAT" 2457385 NIL RPOLCAT (NIL T T T) -9 NIL 2460544) (-1031 2428569 2430907 2434029 "RPOLCAT-" 2434034 NIL RPOLCAT- (NIL T T T T) -8 NIL NIL) (-1030 2419616 2426780 2427262 "ROUTINE" 2428109 T ROUTINE (NIL) -8 NIL NIL) (-1029 2416374 2419167 2419316 "ROMAN" 2419489 T ROMAN (NIL) -8 NIL NIL) (-1028 2414649 2415234 2415494 "ROIRC" 2416179 NIL ROIRC (NIL T T) -8 NIL NIL) (-1027 2411100 2413339 2413369 "RNS" 2413673 T RNS (NIL) -9 NIL 2413945) (-1026 2409609 2409992 2410526 "RNS-" 2410601 NIL RNS- (NIL T) -8 NIL NIL) (-1025 2409058 2409440 2409470 "RNG" 2409475 T RNG (NIL) -9 NIL 2409496) (-1024 2408450 2408812 2408855 "RMODULE" 2408917 NIL RMODULE (NIL T) -9 NIL 2408959) (-1023 2407286 2407380 2407716 "RMCAT2" 2408351 NIL RMCAT2 (NIL NIL NIL T T T T T T T T) -7 NIL NIL) (-1022 2403991 2406460 2406785 "RMATRIX" 2407020 NIL RMATRIX (NIL NIL NIL T) -8 NIL NIL) (-1021 2396933 2399167 2399282 "RMATCAT" 2402641 NIL RMATCAT (NIL NIL NIL T T T) -9 NIL 2403623) (-1020 2396308 2396455 2396762 "RMATCAT-" 2396767 NIL RMATCAT- (NIL T NIL NIL T T T) -8 NIL NIL) (-1019 2395875 2395950 2396078 "RINTERP" 2396227 NIL RINTERP (NIL NIL T) -7 NIL NIL) (-1018 2394963 2395483 2395513 "RING" 2395625 T RING (NIL) -9 NIL 2395720) (-1017 2394755 2394799 2394896 "RING-" 2394901 NIL RING- (NIL T) -8 NIL NIL) (-1016 2393596 2393833 2394091 "RIDIST" 2394519 T RIDIST (NIL) -7 NIL NIL) (-1015 2384912 2393064 2393270 "RGCHAIN" 2393444 NIL RGCHAIN (NIL T NIL) -8 NIL NIL) (-1014 2381906 2382520 2383190 "RF" 2384276 NIL RF (NIL T) -7 NIL NIL) (-1013 2381552 2381615 2381718 "RFFACTOR" 2381837 NIL RFFACTOR (NIL T) -7 NIL NIL) (-1012 2381277 2381312 2381409 "RFFACT" 2381511 NIL RFFACT (NIL T) -7 NIL NIL) (-1011 2379394 2379758 2380140 "RFDIST" 2380917 T RFDIST (NIL) -7 NIL NIL) (-1010 2378847 2378939 2379102 "RETSOL" 2379296 NIL RETSOL (NIL T T) -7 NIL NIL) (-1009 2378435 2378515 2378558 "RETRACT" 2378751 NIL RETRACT (NIL T) -9 NIL NIL) (-1008 2378284 2378309 2378396 "RETRACT-" 2378401 NIL RETRACT- (NIL T T) -8 NIL NIL) (-1007 2377930 2378106 2378176 "RETAST" 2378236 T RETAST (NIL) -8 NIL NIL) (-1006 2370784 2377583 2377710 "RESULT" 2377825 T RESULT (NIL) -8 NIL NIL) (-1005 2369410 2370053 2370252 "RESRING" 2370687 NIL RESRING (NIL T T T T NIL) -8 NIL NIL) (-1004 2369046 2369095 2369193 "RESLATC" 2369347 NIL RESLATC (NIL T) -7 NIL NIL) (-1003 2368752 2368786 2368893 "REPSQ" 2369005 NIL REPSQ (NIL T) -7 NIL NIL) (-1002 2366174 2366754 2367356 "REP" 2368172 T REP (NIL) -7 NIL NIL) (-1001 2365872 2365906 2366017 "REPDB" 2366133 NIL REPDB (NIL T) -7 NIL NIL) (-1000 2359782 2361161 2362384 "REP2" 2364684 NIL REP2 (NIL T) -7 NIL NIL) (-999 2356174 2356855 2357661 "REP1" 2359009 NIL REP1 (NIL T) -7 NIL NIL) (-998 2348912 2354327 2354781 "REGSET" 2355804 NIL REGSET (NIL T T T T) -8 NIL NIL) (-997 2347733 2348068 2348316 "REF" 2348697 NIL REF (NIL T) -8 NIL NIL) (-996 2347114 2347217 2347382 "REDORDER" 2347617 NIL REDORDER (NIL T T) -7 NIL NIL) (-995 2343134 2346342 2346565 "RECLOS" 2346943 NIL RECLOS (NIL T) -8 NIL NIL) (-994 2342191 2342372 2342585 "REALSOLV" 2342941 T REALSOLV (NIL) -7 NIL NIL) (-993 2342039 2342080 2342108 "REAL" 2342113 T REAL (NIL) -9 NIL 2342148) (-992 2338530 2339332 2340214 "REAL0Q" 2341204 NIL REAL0Q (NIL T) -7 NIL NIL) (-991 2334141 2335129 2336188 "REAL0" 2337511 NIL REAL0 (NIL T) -7 NIL NIL) (-990 2333661 2333862 2333954 "RDUCEAST" 2334069 T RDUCEAST (NIL) -8 NIL NIL) (-989 2333069 2333141 2333346 "RDIV" 2333583 NIL RDIV (NIL T T T T T) -7 NIL NIL) (-988 2332142 2332316 2332527 "RDIST" 2332891 NIL RDIST (NIL T) -7 NIL NIL) (-987 2330743 2331030 2331400 "RDETRS" 2331850 NIL RDETRS (NIL T T) -7 NIL NIL) (-986 2328560 2329014 2329550 "RDETR" 2330285 NIL RDETR (NIL T T) -7 NIL NIL) (-985 2327174 2327452 2327854 "RDEEFS" 2328276 NIL RDEEFS (NIL T T) -7 NIL NIL) (-984 2325672 2325978 2326408 "RDEEF" 2326862 NIL RDEEF (NIL T T) -7 NIL NIL) (-983 2320009 2322880 2322908 "RCFIELD" 2324185 T RCFIELD (NIL) -9 NIL 2324915) (-982 2318078 2318582 2319275 "RCFIELD-" 2319348 NIL RCFIELD- (NIL T) -8 NIL NIL) (-981 2314409 2316194 2316235 "RCAGG" 2317306 NIL RCAGG (NIL T) -9 NIL 2317771) (-980 2314040 2314134 2314294 "RCAGG-" 2314299 NIL RCAGG- (NIL T T) -8 NIL NIL) (-979 2313380 2313492 2313655 "RATRET" 2313924 NIL RATRET (NIL T) -7 NIL NIL) (-978 2312937 2313004 2313123 "RATFACT" 2313308 NIL RATFACT (NIL T) -7 NIL NIL) (-977 2312252 2312372 2312522 "RANDSRC" 2312807 T RANDSRC (NIL) -7 NIL NIL) (-976 2311989 2312033 2312104 "RADUTIL" 2312201 T RADUTIL (NIL) -7 NIL NIL) (-975 2305054 2310732 2311049 "RADIX" 2311704 NIL RADIX (NIL NIL) -8 NIL NIL) (-974 2296710 2304898 2305026 "RADFF" 2305031 NIL RADFF (NIL T T T NIL NIL) -8 NIL NIL) (-973 2296362 2296437 2296465 "RADCAT" 2296622 T RADCAT (NIL) -9 NIL NIL) (-972 2296147 2296195 2296292 "RADCAT-" 2296297 NIL RADCAT- (NIL T) -8 NIL NIL) (-971 2294298 2295922 2296011 "QUEUE" 2296091 NIL QUEUE (NIL T) -8 NIL NIL) (-970 2290874 2294235 2294280 "QUAT" 2294285 NIL QUAT (NIL T) -8 NIL NIL) (-969 2290512 2290555 2290682 "QUATCT2" 2290825 NIL QUATCT2 (NIL T T T T) -7 NIL NIL) (-968 2284372 2287673 2287713 "QUATCAT" 2288493 NIL QUATCAT (NIL T) -9 NIL 2289259) (-967 2280516 2281553 2282940 "QUATCAT-" 2283034 NIL QUATCAT- (NIL T T) -8 NIL NIL) (-966 2278036 2279600 2279641 "QUAGG" 2280016 NIL QUAGG (NIL T) -9 NIL 2280191) (-965 2277685 2277861 2277929 "QQUTAST" 2277988 T QQUTAST (NIL) -8 NIL NIL) (-964 2276610 2277083 2277255 "QFORM" 2277557 NIL QFORM (NIL NIL T) -8 NIL NIL) (-963 2267943 2273146 2273186 "QFCAT" 2273844 NIL QFCAT (NIL T) -9 NIL 2274843) (-962 2263515 2264716 2266307 "QFCAT-" 2266401 NIL QFCAT- (NIL T T) -8 NIL NIL) (-961 2263153 2263196 2263323 "QFCAT2" 2263466 NIL QFCAT2 (NIL T T T T) -7 NIL NIL) (-960 2262613 2262723 2262853 "QEQUAT" 2263043 T QEQUAT (NIL) -8 NIL NIL) (-959 2255761 2256832 2258016 "QCMPACK" 2261546 NIL QCMPACK (NIL T T T T T) -7 NIL NIL) (-958 2253337 2253758 2254186 "QALGSET" 2255416 NIL QALGSET (NIL T T T T) -8 NIL NIL) (-957 2252582 2252756 2252988 "QALGSET2" 2253157 NIL QALGSET2 (NIL NIL NIL) -7 NIL NIL) (-956 2251273 2251496 2251813 "PWFFINTB" 2252355 NIL PWFFINTB (NIL T T T T) -7 NIL NIL) (-955 2249455 2249623 2249977 "PUSHVAR" 2251087 NIL PUSHVAR (NIL T T T T) -7 NIL NIL) (-954 2245373 2246427 2246468 "PTRANFN" 2248352 NIL PTRANFN (NIL T) -9 NIL NIL) (-953 2243775 2244066 2244388 "PTPACK" 2245084 NIL PTPACK (NIL T) -7 NIL NIL) (-952 2243407 2243464 2243573 "PTFUNC2" 2243712 NIL PTFUNC2 (NIL T T) -7 NIL NIL) (-951 2237873 2242218 2242259 "PTCAT" 2242632 NIL PTCAT (NIL T) -9 NIL 2242794) (-950 2237531 2237566 2237690 "PSQFR" 2237832 NIL PSQFR (NIL T T T T) -7 NIL NIL) (-949 2236126 2236424 2236758 "PSEUDLIN" 2237229 NIL PSEUDLIN (NIL T) -7 NIL NIL) (-948 2222895 2225260 2227584 "PSETPK" 2233886 NIL PSETPK (NIL T T T T) -7 NIL NIL) (-947 2215939 2218653 2218749 "PSETCAT" 2221770 NIL PSETCAT (NIL T T T T) -9 NIL 2222584) (-946 2213775 2214409 2215230 "PSETCAT-" 2215235 NIL PSETCAT- (NIL T T T T T) -8 NIL NIL) (-945 2213124 2213289 2213317 "PSCURVE" 2213585 T PSCURVE (NIL) -9 NIL 2213752) (-944 2209605 2211087 2211152 "PSCAT" 2211996 NIL PSCAT (NIL T T T) -9 NIL 2212236) (-943 2208668 2208884 2209284 "PSCAT-" 2209289 NIL PSCAT- (NIL T T T T) -8 NIL NIL) (-942 2207320 2207953 2208167 "PRTITION" 2208474 T PRTITION (NIL) -8 NIL NIL) (-941 2206840 2207041 2207133 "PRTDAST" 2207248 T PRTDAST (NIL) -8 NIL NIL) (-940 2195938 2198144 2200332 "PRS" 2204702 NIL PRS (NIL T T) -7 NIL NIL) (-939 2193796 2195288 2195328 "PRQAGG" 2195511 NIL PRQAGG (NIL T) -9 NIL 2195613) (-938 2193182 2193411 2193439 "PROPLOG" 2193624 T PROPLOG (NIL) -9 NIL 2193746) (-937 2190352 2190996 2191460 "PROPFRML" 2192750 NIL PROPFRML (NIL T) -8 NIL NIL) (-936 2189812 2189922 2190052 "PROPERTY" 2190242 T PROPERTY (NIL) -8 NIL NIL) (-935 2183897 2187978 2188798 "PRODUCT" 2189038 NIL PRODUCT (NIL T T) -8 NIL NIL) (-934 2181210 2183355 2183589 "PR" 2183708 NIL PR (NIL T T) -8 NIL NIL) (-933 2181006 2181038 2181097 "PRINT" 2181171 T PRINT (NIL) -7 NIL NIL) (-932 2180346 2180463 2180615 "PRIMES" 2180886 NIL PRIMES (NIL T) -7 NIL NIL) (-931 2178411 2178812 2179278 "PRIMELT" 2179925 NIL PRIMELT (NIL T) -7 NIL NIL) (-930 2178140 2178189 2178217 "PRIMCAT" 2178341 T PRIMCAT (NIL) -9 NIL NIL) (-929 2174301 2178078 2178123 "PRIMARR" 2178128 NIL PRIMARR (NIL T) -8 NIL NIL) (-928 2173308 2173486 2173714 "PRIMARR2" 2174119 NIL PRIMARR2 (NIL T T) -7 NIL NIL) (-927 2172951 2173007 2173118 "PREASSOC" 2173246 NIL PREASSOC (NIL T T) -7 NIL NIL) (-926 2172426 2172559 2172587 "PPCURVE" 2172792 T PPCURVE (NIL) -9 NIL 2172928) (-925 2172048 2172221 2172304 "PORTNUM" 2172363 T PORTNUM (NIL) -8 NIL NIL) (-924 2169407 2169806 2170398 "POLYROOT" 2171629 NIL POLYROOT (NIL T T T T T) -7 NIL NIL) (-923 2163352 2169011 2169171 "POLY" 2169280 NIL POLY (NIL T) -8 NIL NIL) (-922 2162735 2162793 2163027 "POLYLIFT" 2163288 NIL POLYLIFT (NIL T T T T T) -7 NIL NIL) (-921 2159010 2159459 2160088 "POLYCATQ" 2162280 NIL POLYCATQ (NIL T T T T T) -7 NIL NIL) (-920 2146049 2151405 2151470 "POLYCAT" 2154984 NIL POLYCAT (NIL T T T) -9 NIL 2156912) (-919 2139499 2141360 2143744 "POLYCAT-" 2143749 NIL POLYCAT- (NIL T T T T) -8 NIL NIL) (-918 2139086 2139154 2139274 "POLY2UP" 2139425 NIL POLY2UP (NIL NIL T) -7 NIL NIL) (-917 2138718 2138775 2138884 "POLY2" 2139023 NIL POLY2 (NIL T T) -7 NIL NIL) (-916 2137403 2137642 2137918 "POLUTIL" 2138492 NIL POLUTIL (NIL T T) -7 NIL NIL) (-915 2135758 2136035 2136366 "POLTOPOL" 2137125 NIL POLTOPOL (NIL NIL T) -7 NIL NIL) (-914 2131276 2135694 2135740 "POINT" 2135745 NIL POINT (NIL T) -8 NIL NIL) (-913 2129463 2129820 2130195 "PNTHEORY" 2130921 T PNTHEORY (NIL) -7 NIL NIL) (-912 2127882 2128179 2128591 "PMTOOLS" 2129161 NIL PMTOOLS (NIL T T T) -7 NIL NIL) (-911 2127475 2127553 2127670 "PMSYM" 2127798 NIL PMSYM (NIL T) -7 NIL NIL) (-910 2126985 2127054 2127228 "PMQFCAT" 2127400 NIL PMQFCAT (NIL T T T) -7 NIL NIL) (-909 2126340 2126450 2126606 "PMPRED" 2126862 NIL PMPRED (NIL T) -7 NIL NIL) (-908 2125736 2125822 2125983 "PMPREDFS" 2126241 NIL PMPREDFS (NIL T T T) -7 NIL NIL) (-907 2124379 2124587 2124972 "PMPLCAT" 2125498 NIL PMPLCAT (NIL T T T T T) -7 NIL NIL) (-906 2123911 2123990 2124142 "PMLSAGG" 2124294 NIL PMLSAGG (NIL T T T) -7 NIL NIL) (-905 2123386 2123462 2123643 "PMKERNEL" 2123829 NIL PMKERNEL (NIL T T) -7 NIL NIL) (-904 2123003 2123078 2123191 "PMINS" 2123305 NIL PMINS (NIL T) -7 NIL NIL) (-903 2122431 2122500 2122716 "PMFS" 2122928 NIL PMFS (NIL T T T) -7 NIL NIL) (-902 2121659 2121777 2121982 "PMDOWN" 2122308 NIL PMDOWN (NIL T T T) -7 NIL NIL) (-901 2120822 2120981 2121163 "PMASS" 2121497 T PMASS (NIL) -7 NIL NIL) (-900 2120096 2120207 2120370 "PMASSFS" 2120708 NIL PMASSFS (NIL T T) -7 NIL NIL) (-899 2119751 2119819 2119913 "PLOTTOOL" 2120022 T PLOTTOOL (NIL) -7 NIL NIL) (-898 2114373 2115562 2116710 "PLOT" 2118623 T PLOT (NIL) -8 NIL NIL) (-897 2110187 2111221 2112142 "PLOT3D" 2113472 T PLOT3D (NIL) -8 NIL NIL) (-896 2109099 2109276 2109511 "PLOT1" 2109991 NIL PLOT1 (NIL T) -7 NIL NIL) (-895 2084493 2089165 2094016 "PLEQN" 2104365 NIL PLEQN (NIL T T T T) -7 NIL NIL) (-894 2083811 2083933 2084113 "PINTERP" 2084358 NIL PINTERP (NIL NIL T) -7 NIL NIL) (-893 2083504 2083551 2083654 "PINTERPA" 2083758 NIL PINTERPA (NIL T T) -7 NIL NIL) (-892 2082789 2083310 2083397 "PI" 2083437 T PI (NIL) -8 NIL NIL) (-891 2081221 2082162 2082190 "PID" 2082372 T PID (NIL) -9 NIL 2082506) (-890 2080946 2080983 2081071 "PICOERCE" 2081178 NIL PICOERCE (NIL T) -7 NIL NIL) (-889 2080266 2080405 2080581 "PGROEB" 2080802 NIL PGROEB (NIL T) -7 NIL NIL) (-888 2075853 2076667 2077572 "PGE" 2079381 T PGE (NIL) -7 NIL NIL) (-887 2073977 2074223 2074589 "PGCD" 2075570 NIL PGCD (NIL T T T T) -7 NIL NIL) (-886 2073315 2073418 2073579 "PFRPAC" 2073861 NIL PFRPAC (NIL T) -7 NIL NIL) (-885 2069995 2071863 2072216 "PFR" 2072994 NIL PFR (NIL T) -8 NIL NIL) (-884 2068384 2068628 2068953 "PFOTOOLS" 2069742 NIL PFOTOOLS (NIL T T) -7 NIL NIL) (-883 2066917 2067156 2067507 "PFOQ" 2068141 NIL PFOQ (NIL T T T) -7 NIL NIL) (-882 2065390 2065602 2065965 "PFO" 2066701 NIL PFO (NIL T T T T T) -7 NIL NIL) (-881 2061978 2065279 2065348 "PF" 2065353 NIL PF (NIL NIL) -8 NIL NIL) (-880 2059447 2060684 2060712 "PFECAT" 2061297 T PFECAT (NIL) -9 NIL 2061681) (-879 2058892 2059046 2059260 "PFECAT-" 2059265 NIL PFECAT- (NIL T) -8 NIL NIL) (-878 2057496 2057747 2058048 "PFBRU" 2058641 NIL PFBRU (NIL T T) -7 NIL NIL) (-877 2055363 2055714 2056146 "PFBR" 2057147 NIL PFBR (NIL T T T T) -7 NIL NIL) (-876 2051279 2052739 2053415 "PERM" 2054720 NIL PERM (NIL T) -8 NIL NIL) (-875 2046545 2047486 2048356 "PERMGRP" 2050442 NIL PERMGRP (NIL T) -8 NIL NIL) (-874 2044677 2045608 2045649 "PERMCAT" 2046095 NIL PERMCAT (NIL T) -9 NIL 2046400) (-873 2044330 2044371 2044495 "PERMAN" 2044630 NIL PERMAN (NIL NIL T) -7 NIL NIL) (-872 2041770 2043899 2044030 "PENDTREE" 2044232 NIL PENDTREE (NIL T) -8 NIL NIL) (-871 2039883 2040617 2040658 "PDRING" 2041315 NIL PDRING (NIL T) -9 NIL 2041601) (-870 2038986 2039204 2039566 "PDRING-" 2039571 NIL PDRING- (NIL T T) -8 NIL NIL) (-869 2036127 2036878 2037569 "PDEPROB" 2038315 T PDEPROB (NIL) -8 NIL NIL) (-868 2033674 2034176 2034731 "PDEPACK" 2035592 T PDEPACK (NIL) -7 NIL NIL) (-867 2032586 2032776 2033027 "PDECOMP" 2033473 NIL PDECOMP (NIL T T) -7 NIL NIL) (-866 2030191 2031008 2031036 "PDECAT" 2031823 T PDECAT (NIL) -9 NIL 2032536) (-865 2029942 2029975 2030065 "PCOMP" 2030152 NIL PCOMP (NIL T T) -7 NIL NIL) (-864 2028147 2028743 2029040 "PBWLB" 2029671 NIL PBWLB (NIL T) -8 NIL NIL) (-863 2020651 2022220 2023558 "PATTERN" 2026830 NIL PATTERN (NIL T) -8 NIL NIL) (-862 2020283 2020340 2020449 "PATTERN2" 2020588 NIL PATTERN2 (NIL T T) -7 NIL NIL) (-861 2018040 2018428 2018885 "PATTERN1" 2019872 NIL PATTERN1 (NIL T T) -7 NIL NIL) (-860 2015435 2015989 2016470 "PATRES" 2017605 NIL PATRES (NIL T T) -8 NIL NIL) (-859 2014999 2015066 2015198 "PATRES2" 2015362 NIL PATRES2 (NIL T T T) -7 NIL NIL) (-858 2012882 2013287 2013694 "PATMATCH" 2014666 NIL PATMATCH (NIL T T T) -7 NIL NIL) (-857 2012418 2012601 2012642 "PATMAB" 2012749 NIL PATMAB (NIL T) -9 NIL 2012832) (-856 2010963 2011272 2011530 "PATLRES" 2012223 NIL PATLRES (NIL T T T) -8 NIL NIL) (-855 2010509 2010632 2010673 "PATAB" 2010678 NIL PATAB (NIL T) -9 NIL 2010850) (-854 2007990 2008522 2009095 "PARTPERM" 2009956 T PARTPERM (NIL) -7 NIL NIL) (-853 2007611 2007674 2007776 "PARSURF" 2007921 NIL PARSURF (NIL T) -8 NIL NIL) (-852 2007243 2007300 2007409 "PARSU2" 2007548 NIL PARSU2 (NIL T T) -7 NIL NIL) (-851 2007007 2007047 2007114 "PARSER" 2007196 T PARSER (NIL) -7 NIL NIL) (-850 2006628 2006691 2006793 "PARSCURV" 2006938 NIL PARSCURV (NIL T) -8 NIL NIL) (-849 2006260 2006317 2006426 "PARSC2" 2006565 NIL PARSC2 (NIL T T) -7 NIL NIL) (-848 2005899 2005957 2006054 "PARPCURV" 2006196 NIL PARPCURV (NIL T) -8 NIL NIL) (-847 2005531 2005588 2005697 "PARPC2" 2005836 NIL PARPC2 (NIL T T) -7 NIL NIL) (-846 2005051 2005137 2005256 "PAN2EXPR" 2005432 T PAN2EXPR (NIL) -7 NIL NIL) (-845 2003857 2004172 2004400 "PALETTE" 2004843 T PALETTE (NIL) -8 NIL NIL) (-844 2002325 2002862 2003222 "PAIR" 2003543 NIL PAIR (NIL T T) -8 NIL NIL) (-843 1996233 2001584 2001778 "PADICRC" 2002180 NIL PADICRC (NIL NIL T) -8 NIL NIL) (-842 1989499 1995579 1995763 "PADICRAT" 1996081 NIL PADICRAT (NIL NIL) -8 NIL NIL) (-841 1987849 1989436 1989481 "PADIC" 1989486 NIL PADIC (NIL NIL) -8 NIL NIL) (-840 1985094 1986624 1986664 "PADICCT" 1987245 NIL PADICCT (NIL NIL) -9 NIL 1987527) (-839 1984051 1984251 1984519 "PADEPAC" 1984881 NIL PADEPAC (NIL T NIL NIL) -7 NIL NIL) (-838 1983263 1983396 1983602 "PADE" 1983913 NIL PADE (NIL T T T) -7 NIL NIL) (-837 1981313 1982099 1982416 "OWP" 1983030 NIL OWP (NIL T NIL NIL NIL) -8 NIL NIL) (-836 1980422 1980918 1981090 "OVAR" 1981181 NIL OVAR (NIL NIL) -8 NIL NIL) (-835 1979686 1979807 1979968 "OUT" 1980281 T OUT (NIL) -7 NIL NIL) (-834 1968740 1970911 1973081 "OUTFORM" 1977536 T OUTFORM (NIL) -8 NIL NIL) (-833 1968377 1968460 1968488 "OUTBCON" 1968639 T OUTBCON (NIL) -9 NIL 1968724) (-832 1968217 1968252 1968328 "OUTBCON-" 1968333 NIL OUTBCON- (NIL T) -8 NIL NIL) (-831 1967625 1967946 1968035 "OSI" 1968148 T OSI (NIL) -8 NIL NIL) (-830 1967181 1967493 1967521 "OSGROUP" 1967526 T OSGROUP (NIL) -9 NIL 1967548) (-829 1965926 1966153 1966438 "ORTHPOL" 1966928 NIL ORTHPOL (NIL T) -7 NIL NIL) (-828 1963336 1965585 1965724 "OREUP" 1965869 NIL OREUP (NIL NIL T NIL NIL) -8 NIL NIL) (-827 1960774 1963027 1963154 "ORESUP" 1963278 NIL ORESUP (NIL T NIL NIL) -8 NIL NIL) (-826 1958302 1958802 1959363 "OREPCTO" 1960263 NIL OREPCTO (NIL T T) -7 NIL NIL) (-825 1952213 1954380 1954421 "OREPCAT" 1956769 NIL OREPCAT (NIL T) -9 NIL 1957873) (-824 1949360 1950142 1951200 "OREPCAT-" 1951205 NIL OREPCAT- (NIL T T) -8 NIL NIL) (-823 1948537 1948809 1948837 "ORDSET" 1949146 T ORDSET (NIL) -9 NIL 1949310) (-822 1948056 1948178 1948371 "ORDSET-" 1948376 NIL ORDSET- (NIL T) -8 NIL NIL) (-821 1946710 1947467 1947495 "ORDRING" 1947697 T ORDRING (NIL) -9 NIL 1947822) (-820 1946355 1946449 1946593 "ORDRING-" 1946598 NIL ORDRING- (NIL T) -8 NIL NIL) (-819 1945761 1946198 1946226 "ORDMON" 1946231 T ORDMON (NIL) -9 NIL 1946252) (-818 1944923 1945070 1945265 "ORDFUNS" 1945610 NIL ORDFUNS (NIL NIL T) -7 NIL NIL) (-817 1944434 1944793 1944821 "ORDFIN" 1944826 T ORDFIN (NIL) -9 NIL 1944847) (-816 1941026 1943020 1943429 "ORDCOMP" 1944058 NIL ORDCOMP (NIL T) -8 NIL NIL) (-815 1940292 1940419 1940605 "ORDCOMP2" 1940886 NIL ORDCOMP2 (NIL T T) -7 NIL NIL) (-814 1936799 1937682 1938519 "OPTPROB" 1939475 T OPTPROB (NIL) -8 NIL NIL) (-813 1933601 1934240 1934944 "OPTPACK" 1936115 T OPTPACK (NIL) -7 NIL NIL) (-812 1931314 1932054 1932082 "OPTCAT" 1932901 T OPTCAT (NIL) -9 NIL 1933551) (-811 1931082 1931121 1931187 "OPQUERY" 1931268 T OPQUERY (NIL) -7 NIL NIL) (-810 1928248 1929393 1929897 "OP" 1930611 NIL OP (NIL T) -8 NIL NIL) (-809 1925093 1927045 1927414 "ONECOMP" 1927912 NIL ONECOMP (NIL T) -8 NIL NIL) (-808 1924398 1924513 1924687 "ONECOMP2" 1924965 NIL ONECOMP2 (NIL T T) -7 NIL NIL) (-807 1923817 1923923 1924053 "OMSERVER" 1924288 T OMSERVER (NIL) -7 NIL NIL) (-806 1920705 1923257 1923297 "OMSAGG" 1923358 NIL OMSAGG (NIL T) -9 NIL 1923422) (-805 1919328 1919591 1919873 "OMPKG" 1920443 T OMPKG (NIL) -7 NIL NIL) (-804 1918758 1918861 1918889 "OM" 1919188 T OM (NIL) -9 NIL NIL) (-803 1917340 1918307 1918476 "OMLO" 1918639 NIL OMLO (NIL T T) -8 NIL NIL) (-802 1916265 1916412 1916639 "OMEXPR" 1917166 NIL OMEXPR (NIL T) -7 NIL NIL) (-801 1915583 1915811 1915947 "OMERR" 1916149 T OMERR (NIL) -8 NIL NIL) (-800 1914761 1915004 1915164 "OMERRK" 1915443 T OMERRK (NIL) -8 NIL NIL) (-799 1914239 1914438 1914546 "OMENC" 1914673 T OMENC (NIL) -8 NIL NIL) (-798 1908134 1909319 1910490 "OMDEV" 1913088 T OMDEV (NIL) -8 NIL NIL) (-797 1907203 1907374 1907568 "OMCONN" 1907960 T OMCONN (NIL) -8 NIL NIL) (-796 1905859 1906801 1906829 "OINTDOM" 1906834 T OINTDOM (NIL) -9 NIL 1906855) (-795 1901665 1902849 1903565 "OFMONOID" 1905175 NIL OFMONOID (NIL T) -8 NIL NIL) (-794 1901103 1901602 1901647 "ODVAR" 1901652 NIL ODVAR (NIL T) -8 NIL NIL) (-793 1898313 1900600 1900785 "ODR" 1900978 NIL ODR (NIL T T NIL) -8 NIL NIL) (-792 1890657 1898089 1898215 "ODPOL" 1898220 NIL ODPOL (NIL T) -8 NIL NIL) (-791 1884533 1890529 1890634 "ODP" 1890639 NIL ODP (NIL NIL T NIL) -8 NIL NIL) (-790 1883299 1883514 1883789 "ODETOOLS" 1884307 NIL ODETOOLS (NIL T T) -7 NIL NIL) (-789 1880268 1880924 1881640 "ODESYS" 1882632 NIL ODESYS (NIL T T) -7 NIL NIL) (-788 1875150 1876058 1877083 "ODERTRIC" 1879343 NIL ODERTRIC (NIL T T) -7 NIL NIL) (-787 1874576 1874658 1874852 "ODERED" 1875062 NIL ODERED (NIL T T T T T) -7 NIL NIL) (-786 1871464 1872012 1872689 "ODERAT" 1873999 NIL ODERAT (NIL T T) -7 NIL NIL) (-785 1868424 1868888 1869485 "ODEPRRIC" 1870993 NIL ODEPRRIC (NIL T T T T) -7 NIL NIL) (-784 1866293 1866862 1867371 "ODEPROB" 1867935 T ODEPROB (NIL) -8 NIL NIL) (-783 1862815 1863298 1863945 "ODEPRIM" 1865772 NIL ODEPRIM (NIL T T T T) -7 NIL NIL) (-782 1862064 1862166 1862426 "ODEPAL" 1862707 NIL ODEPAL (NIL T T T T) -7 NIL NIL) (-781 1858226 1859017 1859881 "ODEPACK" 1861220 T ODEPACK (NIL) -7 NIL NIL) (-780 1857259 1857366 1857595 "ODEINT" 1858115 NIL ODEINT (NIL T T) -7 NIL NIL) (-779 1851360 1852785 1854232 "ODEIFTBL" 1855832 T ODEIFTBL (NIL) -8 NIL NIL) (-778 1846695 1847481 1848440 "ODEEF" 1850519 NIL ODEEF (NIL T T) -7 NIL NIL) (-777 1846030 1846119 1846349 "ODECONST" 1846600 NIL ODECONST (NIL T T T) -7 NIL NIL) (-776 1844181 1844816 1844844 "ODECAT" 1845449 T ODECAT (NIL) -9 NIL 1845980) (-775 1841088 1843893 1844012 "OCT" 1844094 NIL OCT (NIL T) -8 NIL NIL) (-774 1840726 1840769 1840896 "OCTCT2" 1841039 NIL OCTCT2 (NIL T T T T) -7 NIL NIL) (-773 1835587 1837987 1838027 "OC" 1839124 NIL OC (NIL T) -9 NIL 1839982) (-772 1832814 1833562 1834552 "OC-" 1834646 NIL OC- (NIL T T) -8 NIL NIL) (-771 1832192 1832634 1832662 "OCAMON" 1832667 T OCAMON (NIL) -9 NIL 1832688) (-770 1831749 1832064 1832092 "OASGP" 1832097 T OASGP (NIL) -9 NIL 1832117) (-769 1831036 1831499 1831527 "OAMONS" 1831567 T OAMONS (NIL) -9 NIL 1831610) (-768 1830476 1830883 1830911 "OAMON" 1830916 T OAMON (NIL) -9 NIL 1830936) (-767 1829780 1830272 1830300 "OAGROUP" 1830305 T OAGROUP (NIL) -9 NIL 1830325) (-766 1829470 1829520 1829608 "NUMTUBE" 1829724 NIL NUMTUBE (NIL T) -7 NIL NIL) (-765 1823043 1824561 1826097 "NUMQUAD" 1827954 T NUMQUAD (NIL) -7 NIL NIL) (-764 1818799 1819787 1820812 "NUMODE" 1822038 T NUMODE (NIL) -7 NIL NIL) (-763 1816180 1817034 1817062 "NUMINT" 1817985 T NUMINT (NIL) -9 NIL 1818749) (-762 1815128 1815325 1815543 "NUMFMT" 1815982 T NUMFMT (NIL) -7 NIL NIL) (-761 1801487 1804432 1806964 "NUMERIC" 1812635 NIL NUMERIC (NIL T) -7 NIL NIL) (-760 1795884 1800936 1801031 "NTSCAT" 1801036 NIL NTSCAT (NIL T T T T) -9 NIL 1801075) (-759 1795078 1795243 1795436 "NTPOLFN" 1795723 NIL NTPOLFN (NIL T) -7 NIL NIL) (-758 1782918 1791903 1792715 "NSUP" 1794299 NIL NSUP (NIL T) -8 NIL NIL) (-757 1782550 1782607 1782716 "NSUP2" 1782855 NIL NSUP2 (NIL T T) -7 NIL NIL) (-756 1772547 1782324 1782457 "NSMP" 1782462 NIL NSMP (NIL T T) -8 NIL NIL) (-755 1770979 1771280 1771637 "NREP" 1772235 NIL NREP (NIL T) -7 NIL NIL) (-754 1769570 1769822 1770180 "NPCOEF" 1770722 NIL NPCOEF (NIL T T T T T) -7 NIL NIL) (-753 1768636 1768751 1768967 "NORMRETR" 1769451 NIL NORMRETR (NIL T T T T NIL) -7 NIL NIL) (-752 1766677 1766967 1767376 "NORMPK" 1768344 NIL NORMPK (NIL T T T T T) -7 NIL NIL) (-751 1766362 1766390 1766514 "NORMMA" 1766643 NIL NORMMA (NIL T T T T) -7 NIL NIL) (-750 1766189 1766319 1766348 "NONE" 1766353 T NONE (NIL) -8 NIL NIL) (-749 1765978 1766007 1766076 "NONE1" 1766153 NIL NONE1 (NIL T) -7 NIL NIL) (-748 1765461 1765523 1765709 "NODE1" 1765910 NIL NODE1 (NIL T T) -7 NIL NIL) (-747 1763801 1764624 1764879 "NNI" 1765226 T NNI (NIL) -8 NIL NIL) (-746 1762221 1762534 1762898 "NLINSOL" 1763469 NIL NLINSOL (NIL T) -7 NIL NIL) (-745 1758388 1759356 1760278 "NIPROB" 1761319 T NIPROB (NIL) -8 NIL NIL) (-744 1757145 1757379 1757681 "NFINTBAS" 1758150 NIL NFINTBAS (NIL T T) -7 NIL NIL) (-743 1755853 1756084 1756365 "NCODIV" 1756913 NIL NCODIV (NIL T T) -7 NIL NIL) (-742 1755615 1755652 1755727 "NCNTFRAC" 1755810 NIL NCNTFRAC (NIL T) -7 NIL NIL) (-741 1753795 1754159 1754579 "NCEP" 1755240 NIL NCEP (NIL T) -7 NIL NIL) (-740 1752706 1753445 1753473 "NASRING" 1753583 T NASRING (NIL) -9 NIL 1753657) (-739 1752501 1752545 1752639 "NASRING-" 1752644 NIL NASRING- (NIL T) -8 NIL NIL) (-738 1751654 1752153 1752181 "NARNG" 1752298 T NARNG (NIL) -9 NIL 1752389) (-737 1751346 1751413 1751547 "NARNG-" 1751552 NIL NARNG- (NIL T) -8 NIL NIL) (-736 1750225 1750432 1750667 "NAGSP" 1751131 T NAGSP (NIL) -7 NIL NIL) (-735 1741497 1743181 1744854 "NAGS" 1748572 T NAGS (NIL) -7 NIL NIL) (-734 1740045 1740353 1740684 "NAGF07" 1741186 T NAGF07 (NIL) -7 NIL NIL) (-733 1734583 1735874 1737181 "NAGF04" 1738758 T NAGF04 (NIL) -7 NIL NIL) (-732 1727551 1729165 1730798 "NAGF02" 1732970 T NAGF02 (NIL) -7 NIL NIL) (-731 1722775 1723875 1724992 "NAGF01" 1726454 T NAGF01 (NIL) -7 NIL NIL) (-730 1716403 1717969 1719554 "NAGE04" 1721210 T NAGE04 (NIL) -7 NIL NIL) (-729 1707572 1709693 1711823 "NAGE02" 1714293 T NAGE02 (NIL) -7 NIL NIL) (-728 1703525 1704472 1705436 "NAGE01" 1706628 T NAGE01 (NIL) -7 NIL NIL) (-727 1701320 1701854 1702412 "NAGD03" 1702987 T NAGD03 (NIL) -7 NIL NIL) (-726 1693070 1694998 1696952 "NAGD02" 1699386 T NAGD02 (NIL) -7 NIL NIL) (-725 1686881 1688306 1689746 "NAGD01" 1691650 T NAGD01 (NIL) -7 NIL NIL) (-724 1683090 1683912 1684749 "NAGC06" 1686064 T NAGC06 (NIL) -7 NIL NIL) (-723 1681555 1681887 1682243 "NAGC05" 1682754 T NAGC05 (NIL) -7 NIL NIL) (-722 1680931 1681050 1681194 "NAGC02" 1681431 T NAGC02 (NIL) -7 NIL NIL) (-721 1679991 1680548 1680588 "NAALG" 1680667 NIL NAALG (NIL T) -9 NIL 1680728) (-720 1679826 1679855 1679945 "NAALG-" 1679950 NIL NAALG- (NIL T T) -8 NIL NIL) (-719 1673776 1674884 1676071 "MULTSQFR" 1678722 NIL MULTSQFR (NIL T T T T) -7 NIL NIL) (-718 1673095 1673170 1673354 "MULTFACT" 1673688 NIL MULTFACT (NIL T T T T) -7 NIL NIL) (-717 1666318 1670183 1670236 "MTSCAT" 1671306 NIL MTSCAT (NIL T T) -9 NIL 1671820) (-716 1666030 1666084 1666176 "MTHING" 1666258 NIL MTHING (NIL T) -7 NIL NIL) (-715 1665822 1665855 1665915 "MSYSCMD" 1665990 T MSYSCMD (NIL) -7 NIL NIL) (-714 1661934 1664577 1664897 "MSET" 1665535 NIL MSET (NIL T) -8 NIL NIL) (-713 1659029 1661495 1661536 "MSETAGG" 1661541 NIL MSETAGG (NIL T) -9 NIL 1661575) (-712 1654912 1656408 1657153 "MRING" 1658329 NIL MRING (NIL T T) -8 NIL NIL) (-711 1654478 1654545 1654676 "MRF2" 1654839 NIL MRF2 (NIL T T T) -7 NIL NIL) (-710 1654096 1654131 1654275 "MRATFAC" 1654437 NIL MRATFAC (NIL T T T T) -7 NIL NIL) (-709 1651708 1652003 1652434 "MPRFF" 1653801 NIL MPRFF (NIL T T T T) -7 NIL NIL) (-708 1645768 1651562 1651659 "MPOLY" 1651664 NIL MPOLY (NIL NIL T) -8 NIL NIL) (-707 1645258 1645293 1645501 "MPCPF" 1645727 NIL MPCPF (NIL T T T T) -7 NIL NIL) (-706 1644772 1644815 1644999 "MPC3" 1645209 NIL MPC3 (NIL T T T T T T T) -7 NIL NIL) (-705 1643967 1644048 1644269 "MPC2" 1644687 NIL MPC2 (NIL T T T T T T T) -7 NIL NIL) (-704 1642268 1642605 1642995 "MONOTOOL" 1643627 NIL MONOTOOL (NIL T T) -7 NIL NIL) (-703 1641519 1641810 1641838 "MONOID" 1642057 T MONOID (NIL) -9 NIL 1642204) (-702 1641065 1641184 1641365 "MONOID-" 1641370 NIL MONOID- (NIL T) -8 NIL NIL) (-701 1632115 1638021 1638080 "MONOGEN" 1638754 NIL MONOGEN (NIL T T) -9 NIL 1639210) (-700 1629333 1630068 1631068 "MONOGEN-" 1631187 NIL MONOGEN- (NIL T T T) -8 NIL NIL) (-699 1628192 1628612 1628640 "MONADWU" 1629032 T MONADWU (NIL) -9 NIL 1629270) (-698 1627564 1627723 1627971 "MONADWU-" 1627976 NIL MONADWU- (NIL T) -8 NIL NIL) (-697 1626949 1627167 1627195 "MONAD" 1627402 T MONAD (NIL) -9 NIL 1627514) (-696 1626634 1626712 1626844 "MONAD-" 1626849 NIL MONAD- (NIL T) -8 NIL NIL) (-695 1624950 1625547 1625826 "MOEBIUS" 1626387 NIL MOEBIUS (NIL T) -8 NIL NIL) (-694 1624342 1624720 1624760 "MODULE" 1624765 NIL MODULE (NIL T) -9 NIL 1624791) (-693 1623910 1624006 1624196 "MODULE-" 1624201 NIL MODULE- (NIL T T) -8 NIL NIL) (-692 1621625 1622274 1622601 "MODRING" 1623734 NIL MODRING (NIL T T NIL NIL NIL) -8 NIL NIL) (-691 1618611 1619730 1620251 "MODOP" 1621154 NIL MODOP (NIL T T) -8 NIL NIL) (-690 1616798 1617250 1617591 "MODMONOM" 1618410 NIL MODMONOM (NIL T T NIL) -8 NIL NIL) (-689 1606506 1614990 1615413 "MODMON" 1616426 NIL MODMON (NIL T T) -8 NIL NIL) (-688 1603697 1605350 1605626 "MODFIELD" 1606381 NIL MODFIELD (NIL T T NIL NIL NIL) -8 NIL NIL) (-687 1602701 1602978 1603168 "MMLFORM" 1603527 T MMLFORM (NIL) -8 NIL NIL) (-686 1602227 1602270 1602449 "MMAP" 1602652 NIL MMAP (NIL T T T T T T) -7 NIL NIL) (-685 1600496 1601229 1601270 "MLO" 1601693 NIL MLO (NIL T) -9 NIL 1601935) (-684 1597863 1598378 1598980 "MLIFT" 1599977 NIL MLIFT (NIL T T T T) -7 NIL NIL) (-683 1597254 1597338 1597492 "MKUCFUNC" 1597774 NIL MKUCFUNC (NIL T T T) -7 NIL NIL) (-682 1596853 1596923 1597046 "MKRECORD" 1597177 NIL MKRECORD (NIL T T) -7 NIL NIL) (-681 1595901 1596062 1596290 "MKFUNC" 1596664 NIL MKFUNC (NIL T) -7 NIL NIL) (-680 1595289 1595393 1595549 "MKFLCFN" 1595784 NIL MKFLCFN (NIL T) -7 NIL NIL) (-679 1594715 1595082 1595171 "MKCHSET" 1595233 NIL MKCHSET (NIL T) -8 NIL NIL) (-678 1593992 1594094 1594279 "MKBCFUNC" 1594608 NIL MKBCFUNC (NIL T T T T) -7 NIL NIL) (-677 1590734 1593546 1593682 "MINT" 1593876 T MINT (NIL) -8 NIL NIL) (-676 1589546 1589789 1590066 "MHROWRED" 1590489 NIL MHROWRED (NIL T) -7 NIL NIL) (-675 1584878 1587987 1588413 "MFLOAT" 1589140 T MFLOAT (NIL) -8 NIL NIL) (-674 1584235 1584311 1584482 "MFINFACT" 1584790 NIL MFINFACT (NIL T T T T) -7 NIL NIL) (-673 1580550 1581398 1582282 "MESH" 1583371 T MESH (NIL) -7 NIL NIL) (-672 1578940 1579252 1579605 "MDDFACT" 1580237 NIL MDDFACT (NIL T) -7 NIL NIL) (-671 1575782 1578099 1578140 "MDAGG" 1578395 NIL MDAGG (NIL T) -9 NIL 1578538) (-670 1565562 1575075 1575282 "MCMPLX" 1575595 T MCMPLX (NIL) -8 NIL NIL) (-669 1564703 1564849 1565049 "MCDEN" 1565411 NIL MCDEN (NIL T T) -7 NIL NIL) (-668 1562593 1562863 1563243 "MCALCFN" 1564433 NIL MCALCFN (NIL T T T T) -7 NIL NIL) (-667 1561504 1561677 1561918 "MAYBE" 1562391 NIL MAYBE (NIL T) -8 NIL NIL) (-666 1559116 1559639 1560201 "MATSTOR" 1560975 NIL MATSTOR (NIL T) -7 NIL NIL) (-665 1555122 1558488 1558736 "MATRIX" 1558901 NIL MATRIX (NIL T) -8 NIL NIL) (-664 1550891 1551595 1552331 "MATLIN" 1554479 NIL MATLIN (NIL T T T T) -7 NIL NIL) (-663 1541045 1544183 1544260 "MATCAT" 1549140 NIL MATCAT (NIL T T T) -9 NIL 1550557) (-662 1537409 1538422 1539778 "MATCAT-" 1539783 NIL MATCAT- (NIL T T T T) -8 NIL NIL) (-661 1536003 1536156 1536489 "MATCAT2" 1537244 NIL MATCAT2 (NIL T T T T T T T T) -7 NIL NIL) (-660 1534115 1534439 1534823 "MAPPKG3" 1535678 NIL MAPPKG3 (NIL T T T) -7 NIL NIL) (-659 1533096 1533269 1533491 "MAPPKG2" 1533939 NIL MAPPKG2 (NIL T T) -7 NIL NIL) (-658 1531595 1531879 1532206 "MAPPKG1" 1532802 NIL MAPPKG1 (NIL T) -7 NIL NIL) (-657 1530718 1531001 1531178 "MAPPAST" 1531438 T MAPPAST (NIL) -8 NIL NIL) (-656 1530329 1530387 1530510 "MAPHACK3" 1530654 NIL MAPHACK3 (NIL T T T) -7 NIL NIL) (-655 1529921 1529982 1530096 "MAPHACK2" 1530261 NIL MAPHACK2 (NIL T T) -7 NIL NIL) (-654 1529359 1529462 1529604 "MAPHACK1" 1529812 NIL MAPHACK1 (NIL T) -7 NIL NIL) (-653 1527465 1528059 1528363 "MAGMA" 1529087 NIL MAGMA (NIL T) -8 NIL NIL) (-652 1526960 1527168 1527266 "MACROAST" 1527387 T MACROAST (NIL) -8 NIL NIL) (-651 1523427 1525199 1525660 "M3D" 1526532 NIL M3D (NIL T) -8 NIL NIL) (-650 1517582 1521797 1521838 "LZSTAGG" 1522620 NIL LZSTAGG (NIL T) -9 NIL 1522915) (-649 1513555 1514713 1516170 "LZSTAGG-" 1516175 NIL LZSTAGG- (NIL T T) -8 NIL NIL) (-648 1510669 1511446 1511933 "LWORD" 1513100 NIL LWORD (NIL T) -8 NIL NIL) (-647 1510289 1510473 1510548 "LSTAST" 1510614 T LSTAST (NIL) -8 NIL NIL) (-646 1503490 1510060 1510194 "LSQM" 1510199 NIL LSQM (NIL NIL T) -8 NIL NIL) (-645 1502714 1502853 1503081 "LSPP" 1503345 NIL LSPP (NIL T T T T) -7 NIL NIL) (-644 1500526 1500827 1501283 "LSMP" 1502403 NIL LSMP (NIL T T T T) -7 NIL NIL) (-643 1497305 1497979 1498709 "LSMP1" 1499828 NIL LSMP1 (NIL T) -7 NIL NIL) (-642 1491231 1496473 1496514 "LSAGG" 1496576 NIL LSAGG (NIL T) -9 NIL 1496654) (-641 1487926 1488850 1490063 "LSAGG-" 1490068 NIL LSAGG- (NIL T T) -8 NIL NIL) (-640 1485552 1487070 1487319 "LPOLY" 1487721 NIL LPOLY (NIL T T) -8 NIL NIL) (-639 1485134 1485219 1485342 "LPEFRAC" 1485461 NIL LPEFRAC (NIL T) -7 NIL NIL) (-638 1483481 1484228 1484481 "LO" 1484966 NIL LO (NIL T T T) -8 NIL NIL) (-637 1483133 1483245 1483273 "LOGIC" 1483384 T LOGIC (NIL) -9 NIL 1483465) (-636 1482995 1483018 1483089 "LOGIC-" 1483094 NIL LOGIC- (NIL T) -8 NIL NIL) (-635 1482188 1482328 1482521 "LODOOPS" 1482851 NIL LODOOPS (NIL T T) -7 NIL NIL) (-634 1479646 1482104 1482170 "LODO" 1482175 NIL LODO (NIL T NIL) -8 NIL NIL) (-633 1478184 1478419 1478772 "LODOF" 1479393 NIL LODOF (NIL T T) -7 NIL NIL) (-632 1474627 1477024 1477065 "LODOCAT" 1477503 NIL LODOCAT (NIL T) -9 NIL 1477714) (-631 1474360 1474418 1474545 "LODOCAT-" 1474550 NIL LODOCAT- (NIL T T) -8 NIL NIL) (-630 1471715 1474201 1474319 "LODO2" 1474324 NIL LODO2 (NIL T T) -8 NIL NIL) (-629 1469185 1471652 1471697 "LODO1" 1471702 NIL LODO1 (NIL T) -8 NIL NIL) (-628 1468045 1468210 1468522 "LODEEF" 1469008 NIL LODEEF (NIL T T T) -7 NIL NIL) (-627 1463331 1466175 1466216 "LNAGG" 1467163 NIL LNAGG (NIL T) -9 NIL 1467607) (-626 1462478 1462692 1463034 "LNAGG-" 1463039 NIL LNAGG- (NIL T T) -8 NIL NIL) (-625 1458641 1459403 1460042 "LMOPS" 1461893 NIL LMOPS (NIL T T NIL) -8 NIL NIL) (-624 1458036 1458398 1458439 "LMODULE" 1458500 NIL LMODULE (NIL T) -9 NIL 1458542) (-623 1455282 1457681 1457804 "LMDICT" 1457946 NIL LMDICT (NIL T) -8 NIL NIL) (-622 1455026 1455190 1455250 "LITERAL" 1455255 NIL LITERAL (NIL T) -8 NIL NIL) (-621 1448253 1453972 1454270 "LIST" 1454761 NIL LIST (NIL T) -8 NIL NIL) (-620 1447778 1447852 1447991 "LIST3" 1448173 NIL LIST3 (NIL T T T) -7 NIL NIL) (-619 1446785 1446963 1447191 "LIST2" 1447596 NIL LIST2 (NIL T T) -7 NIL NIL) (-618 1444919 1445231 1445630 "LIST2MAP" 1446432 NIL LIST2MAP (NIL T T) -7 NIL NIL) (-617 1443669 1444305 1444346 "LINEXP" 1444601 NIL LINEXP (NIL T) -9 NIL 1444750) (-616 1442316 1442576 1442873 "LINDEP" 1443421 NIL LINDEP (NIL T T) -7 NIL NIL) (-615 1439083 1439802 1440579 "LIMITRF" 1441571 NIL LIMITRF (NIL T) -7 NIL NIL) (-614 1437359 1437654 1438070 "LIMITPS" 1438778 NIL LIMITPS (NIL T T) -7 NIL NIL) (-613 1431814 1436870 1437098 "LIE" 1437180 NIL LIE (NIL T T) -8 NIL NIL) (-612 1430863 1431306 1431346 "LIECAT" 1431486 NIL LIECAT (NIL T) -9 NIL 1431637) (-611 1430704 1430731 1430819 "LIECAT-" 1430824 NIL LIECAT- (NIL T T) -8 NIL NIL) (-610 1423316 1430153 1430318 "LIB" 1430559 T LIB (NIL) -8 NIL NIL) (-609 1418953 1419834 1420769 "LGROBP" 1422433 NIL LGROBP (NIL NIL T) -7 NIL NIL) (-608 1416819 1417093 1417455 "LF" 1418674 NIL LF (NIL T T) -7 NIL NIL) (-607 1415659 1416351 1416379 "LFCAT" 1416586 T LFCAT (NIL) -9 NIL 1416725) (-606 1412563 1413191 1413879 "LEXTRIPK" 1415023 NIL LEXTRIPK (NIL T NIL) -7 NIL NIL) (-605 1409334 1410133 1410636 "LEXP" 1412143 NIL LEXP (NIL T T NIL) -8 NIL NIL) (-604 1408854 1409055 1409147 "LETAST" 1409262 T LETAST (NIL) -8 NIL NIL) (-603 1407252 1407565 1407966 "LEADCDET" 1408536 NIL LEADCDET (NIL T T T T) -7 NIL NIL) (-602 1406442 1406516 1406745 "LAZM3PK" 1407173 NIL LAZM3PK (NIL T T T T T T) -7 NIL NIL) (-601 1401398 1404519 1405057 "LAUPOL" 1405954 NIL LAUPOL (NIL T T) -8 NIL NIL) (-600 1400963 1401007 1401175 "LAPLACE" 1401348 NIL LAPLACE (NIL T T) -7 NIL NIL) (-599 1398937 1400064 1400315 "LA" 1400796 NIL LA (NIL T T T) -8 NIL NIL) (-598 1398038 1398588 1398629 "LALG" 1398691 NIL LALG (NIL T) -9 NIL 1398750) (-597 1397752 1397811 1397947 "LALG-" 1397952 NIL LALG- (NIL T T) -8 NIL NIL) (-596 1396552 1396969 1397198 "KTVLOGIC" 1397543 T KTVLOGIC (NIL) -8 NIL NIL) (-595 1395456 1395643 1395942 "KOVACIC" 1396352 NIL KOVACIC (NIL T T) -7 NIL NIL) (-594 1395291 1395315 1395356 "KONVERT" 1395418 NIL KONVERT (NIL T) -9 NIL NIL) (-593 1395126 1395150 1395191 "KOERCE" 1395253 NIL KOERCE (NIL T) -9 NIL NIL) (-592 1392860 1393620 1394013 "KERNEL" 1394765 NIL KERNEL (NIL T) -8 NIL NIL) (-591 1392362 1392443 1392573 "KERNEL2" 1392774 NIL KERNEL2 (NIL T T) -7 NIL NIL) (-590 1386213 1390901 1390955 "KDAGG" 1391332 NIL KDAGG (NIL T T) -9 NIL 1391538) (-589 1385742 1385866 1386071 "KDAGG-" 1386076 NIL KDAGG- (NIL T T T) -8 NIL NIL) (-588 1378917 1385403 1385558 "KAFILE" 1385620 NIL KAFILE (NIL T) -8 NIL NIL) (-587 1373372 1378428 1378656 "JORDAN" 1378738 NIL JORDAN (NIL T T) -8 NIL NIL) (-586 1372796 1373021 1373142 "JOINAST" 1373271 T JOINAST (NIL) -8 NIL NIL) (-585 1372525 1372584 1372671 "JAVACODE" 1372729 T JAVACODE (NIL) -8 NIL NIL) (-584 1368824 1370730 1370784 "IXAGG" 1371713 NIL IXAGG (NIL T T) -9 NIL 1372172) (-583 1367743 1368049 1368468 "IXAGG-" 1368473 NIL IXAGG- (NIL T T T) -8 NIL NIL) (-582 1363323 1367665 1367724 "IVECTOR" 1367729 NIL IVECTOR (NIL T NIL) -8 NIL NIL) (-581 1362089 1362326 1362592 "ITUPLE" 1363090 NIL ITUPLE (NIL T) -8 NIL NIL) (-580 1360525 1360702 1361008 "ITRIGMNP" 1361911 NIL ITRIGMNP (NIL T T T) -7 NIL NIL) (-579 1359270 1359474 1359757 "ITFUN3" 1360301 NIL ITFUN3 (NIL T T T) -7 NIL NIL) (-578 1358902 1358959 1359068 "ITFUN2" 1359207 NIL ITFUN2 (NIL T T) -7 NIL NIL) (-577 1356739 1357764 1358063 "ITAYLOR" 1358636 NIL ITAYLOR (NIL T) -8 NIL NIL) (-576 1345733 1350885 1352045 "ISUPS" 1355612 NIL ISUPS (NIL T) -8 NIL NIL) (-575 1344837 1344977 1345213 "ISUMP" 1345580 NIL ISUMP (NIL T T T T) -7 NIL NIL) (-574 1340101 1344638 1344717 "ISTRING" 1344790 NIL ISTRING (NIL NIL) -8 NIL NIL) (-573 1339621 1339822 1339914 "ISAST" 1340029 T ISAST (NIL) -8 NIL NIL) (-572 1338831 1338912 1339128 "IRURPK" 1339535 NIL IRURPK (NIL T T T T T) -7 NIL NIL) (-571 1337767 1337968 1338208 "IRSN" 1338611 T IRSN (NIL) -7 NIL NIL) (-570 1335796 1336151 1336587 "IRRF2F" 1337405 NIL IRRF2F (NIL T) -7 NIL NIL) (-569 1335543 1335581 1335657 "IRREDFFX" 1335752 NIL IRREDFFX (NIL T) -7 NIL NIL) (-568 1334158 1334417 1334716 "IROOT" 1335276 NIL IROOT (NIL T) -7 NIL NIL) (-567 1330790 1331842 1332534 "IR" 1333498 NIL IR (NIL T) -8 NIL NIL) (-566 1328403 1328898 1329464 "IR2" 1330268 NIL IR2 (NIL T T) -7 NIL NIL) (-565 1327475 1327588 1327809 "IR2F" 1328286 NIL IR2F (NIL T T) -7 NIL NIL) (-564 1327266 1327300 1327360 "IPRNTPK" 1327435 T IPRNTPK (NIL) -7 NIL NIL) (-563 1323885 1327155 1327224 "IPF" 1327229 NIL IPF (NIL NIL) -8 NIL NIL) (-562 1322248 1323810 1323867 "IPADIC" 1323872 NIL IPADIC (NIL NIL NIL) -8 NIL NIL) (-561 1322012 1322152 1322180 "IOBCON" 1322185 T IOBCON (NIL) -9 NIL 1322206) (-560 1321509 1321567 1321757 "INVLAPLA" 1321948 NIL INVLAPLA (NIL T T) -7 NIL NIL) (-559 1311158 1313511 1315897 "INTTR" 1319173 NIL INTTR (NIL T T) -7 NIL NIL) (-558 1307502 1308244 1309108 "INTTOOLS" 1310343 NIL INTTOOLS (NIL T T) -7 NIL NIL) (-557 1307088 1307179 1307296 "INTSLPE" 1307405 T INTSLPE (NIL) -7 NIL NIL) (-556 1305083 1307011 1307070 "INTRVL" 1307075 NIL INTRVL (NIL T) -8 NIL NIL) (-555 1302685 1303197 1303772 "INTRF" 1304568 NIL INTRF (NIL T) -7 NIL NIL) (-554 1302096 1302193 1302335 "INTRET" 1302583 NIL INTRET (NIL T) -7 NIL NIL) (-553 1300093 1300482 1300952 "INTRAT" 1301704 NIL INTRAT (NIL T T) -7 NIL NIL) (-552 1297321 1297904 1298530 "INTPM" 1299578 NIL INTPM (NIL T T) -7 NIL NIL) (-551 1294024 1294623 1295368 "INTPAF" 1296707 NIL INTPAF (NIL T T T) -7 NIL NIL) (-550 1289203 1290165 1291216 "INTPACK" 1292993 T INTPACK (NIL) -7 NIL NIL) (-549 1286115 1288932 1289059 "INT" 1289096 T INT (NIL) -8 NIL NIL) (-548 1285367 1285519 1285727 "INTHERTR" 1285957 NIL INTHERTR (NIL T T) -7 NIL NIL) (-547 1284806 1284886 1285074 "INTHERAL" 1285281 NIL INTHERAL (NIL T T T T) -7 NIL NIL) (-546 1282652 1283095 1283552 "INTHEORY" 1284369 T INTHEORY (NIL) -7 NIL NIL) (-545 1273960 1275581 1277360 "INTG0" 1281004 NIL INTG0 (NIL T T T) -7 NIL NIL) (-544 1254533 1259323 1264133 "INTFTBL" 1269170 T INTFTBL (NIL) -8 NIL NIL) (-543 1253782 1253920 1254093 "INTFACT" 1254392 NIL INTFACT (NIL T) -7 NIL NIL) (-542 1251167 1251613 1252177 "INTEF" 1253336 NIL INTEF (NIL T T) -7 NIL NIL) (-541 1249669 1250374 1250402 "INTDOM" 1250703 T INTDOM (NIL) -9 NIL 1250910) (-540 1249038 1249212 1249454 "INTDOM-" 1249459 NIL INTDOM- (NIL T) -8 NIL NIL) (-539 1245571 1247457 1247511 "INTCAT" 1248310 NIL INTCAT (NIL T) -9 NIL 1248630) (-538 1245044 1245146 1245274 "INTBIT" 1245463 T INTBIT (NIL) -7 NIL NIL) (-537 1243715 1243869 1244183 "INTALG" 1244889 NIL INTALG (NIL T T T T T) -7 NIL NIL) (-536 1243172 1243262 1243432 "INTAF" 1243619 NIL INTAF (NIL T T) -7 NIL NIL) (-535 1236626 1242982 1243122 "INTABL" 1243127 NIL INTABL (NIL T T T) -8 NIL NIL) (-534 1231681 1234352 1234380 "INS" 1235314 T INS (NIL) -9 NIL 1235978) (-533 1228921 1229692 1230666 "INS-" 1230739 NIL INS- (NIL T) -8 NIL NIL) (-532 1227696 1227923 1228221 "INPSIGN" 1228674 NIL INPSIGN (NIL T T) -7 NIL NIL) (-531 1226814 1226931 1227128 "INPRODPF" 1227576 NIL INPRODPF (NIL T T) -7 NIL NIL) (-530 1225708 1225825 1226062 "INPRODFF" 1226694 NIL INPRODFF (NIL T T T T) -7 NIL NIL) (-529 1224708 1224860 1225120 "INNMFACT" 1225544 NIL INNMFACT (NIL T T T T) -7 NIL NIL) (-528 1223905 1224002 1224190 "INMODGCD" 1224607 NIL INMODGCD (NIL T T NIL NIL) -7 NIL NIL) (-527 1222414 1222658 1222982 "INFSP" 1223650 NIL INFSP (NIL T T T) -7 NIL NIL) (-526 1221598 1221715 1221898 "INFPROD0" 1222294 NIL INFPROD0 (NIL T T) -7 NIL NIL) (-525 1218480 1219663 1220178 "INFORM" 1221091 T INFORM (NIL) -8 NIL NIL) (-524 1218090 1218150 1218248 "INFORM1" 1218415 NIL INFORM1 (NIL T) -7 NIL NIL) (-523 1217613 1217702 1217816 "INFINITY" 1217996 T INFINITY (NIL) -7 NIL NIL) (-522 1216230 1216479 1216800 "INEP" 1217361 NIL INEP (NIL T T T) -7 NIL NIL) (-521 1215506 1216127 1216192 "INDE" 1216197 NIL INDE (NIL T) -8 NIL NIL) (-520 1215070 1215138 1215255 "INCRMAPS" 1215433 NIL INCRMAPS (NIL T) -7 NIL NIL) (-519 1210381 1211306 1212250 "INBFF" 1214158 NIL INBFF (NIL T) -7 NIL NIL) (-518 1210050 1210126 1210154 "INBCON" 1210287 T INBCON (NIL) -9 NIL 1210365) (-517 1209890 1209925 1210001 "INBCON-" 1210006 NIL INBCON- (NIL T) -8 NIL NIL) (-516 1209409 1209611 1209703 "INAST" 1209818 T INAST (NIL) -8 NIL NIL) (-515 1208880 1209088 1209194 "IMPTAST" 1209323 T IMPTAST (NIL) -8 NIL NIL) (-514 1205374 1208724 1208828 "IMATRIX" 1208833 NIL IMATRIX (NIL T NIL NIL) -8 NIL NIL) (-513 1204086 1204209 1204524 "IMATQF" 1205230 NIL IMATQF (NIL T T T T T T T T) -7 NIL NIL) (-512 1202306 1202533 1202870 "IMATLIN" 1203842 NIL IMATLIN (NIL T T T T) -7 NIL NIL) (-511 1196932 1202230 1202288 "ILIST" 1202293 NIL ILIST (NIL T NIL) -8 NIL NIL) (-510 1194885 1196792 1196905 "IIARRAY2" 1196910 NIL IIARRAY2 (NIL T NIL NIL T T) -8 NIL NIL) (-509 1190318 1194796 1194860 "IFF" 1194865 NIL IFF (NIL NIL NIL) -8 NIL NIL) (-508 1189709 1189935 1190051 "IFAST" 1190222 T IFAST (NIL) -8 NIL NIL) (-507 1184752 1189001 1189189 "IFARRAY" 1189566 NIL IFARRAY (NIL T NIL) -8 NIL NIL) (-506 1183959 1184656 1184729 "IFAMON" 1184734 NIL IFAMON (NIL T T NIL) -8 NIL NIL) (-505 1183543 1183608 1183662 "IEVALAB" 1183869 NIL IEVALAB (NIL T T) -9 NIL NIL) (-504 1183218 1183286 1183446 "IEVALAB-" 1183451 NIL IEVALAB- (NIL T T T) -8 NIL NIL) (-503 1182876 1183132 1183195 "IDPO" 1183200 NIL IDPO (NIL T T) -8 NIL NIL) (-502 1182153 1182765 1182840 "IDPOAMS" 1182845 NIL IDPOAMS (NIL T T) -8 NIL NIL) (-501 1181487 1182042 1182117 "IDPOAM" 1182122 NIL IDPOAM (NIL T T) -8 NIL NIL) (-500 1180572 1180822 1180875 "IDPC" 1181288 NIL IDPC (NIL T T) -9 NIL 1181437) (-499 1180068 1180464 1180537 "IDPAM" 1180542 NIL IDPAM (NIL T T) -8 NIL NIL) (-498 1179471 1179960 1180033 "IDPAG" 1180038 NIL IDPAG (NIL T T) -8 NIL NIL) (-497 1179219 1179386 1179436 "IDENT" 1179441 T IDENT (NIL) -8 NIL NIL) (-496 1175474 1176322 1177217 "IDECOMP" 1178376 NIL IDECOMP (NIL NIL NIL) -7 NIL NIL) (-495 1168347 1169397 1170444 "IDEAL" 1174510 NIL IDEAL (NIL T T T T) -8 NIL NIL) (-494 1167511 1167623 1167822 "ICDEN" 1168231 NIL ICDEN (NIL T T T T) -7 NIL NIL) (-493 1166610 1166991 1167138 "ICARD" 1167384 T ICARD (NIL) -8 NIL NIL) (-492 1164670 1164983 1165388 "IBPTOOLS" 1166287 NIL IBPTOOLS (NIL T T T T) -7 NIL NIL) (-491 1160304 1164290 1164403 "IBITS" 1164589 NIL IBITS (NIL NIL) -8 NIL NIL) (-490 1157027 1157603 1158298 "IBATOOL" 1159721 NIL IBATOOL (NIL T T T) -7 NIL NIL) (-489 1154807 1155268 1155801 "IBACHIN" 1156562 NIL IBACHIN (NIL T T T) -7 NIL NIL) (-488 1152684 1154653 1154756 "IARRAY2" 1154761 NIL IARRAY2 (NIL T NIL NIL) -8 NIL NIL) (-487 1148837 1152610 1152667 "IARRAY1" 1152672 NIL IARRAY1 (NIL T NIL) -8 NIL NIL) (-486 1142832 1147251 1147731 "IAN" 1148377 T IAN (NIL) -8 NIL NIL) (-485 1142343 1142400 1142573 "IALGFACT" 1142769 NIL IALGFACT (NIL T T T T) -7 NIL NIL) (-484 1141871 1141984 1142012 "HYPCAT" 1142219 T HYPCAT (NIL) -9 NIL NIL) (-483 1141409 1141526 1141712 "HYPCAT-" 1141717 NIL HYPCAT- (NIL T) -8 NIL NIL) (-482 1141031 1141204 1141287 "HOSTNAME" 1141346 T HOSTNAME (NIL) -8 NIL NIL) (-481 1137710 1139041 1139082 "HOAGG" 1140063 NIL HOAGG (NIL T) -9 NIL 1140742) (-480 1136304 1136703 1137229 "HOAGG-" 1137234 NIL HOAGG- (NIL T T) -8 NIL NIL) (-479 1130192 1135745 1135911 "HEXADEC" 1136158 T HEXADEC (NIL) -8 NIL NIL) (-478 1128940 1129162 1129425 "HEUGCD" 1129969 NIL HEUGCD (NIL T) -7 NIL NIL) (-477 1128043 1128777 1128907 "HELLFDIV" 1128912 NIL HELLFDIV (NIL T T T T) -8 NIL NIL) (-476 1126271 1127820 1127908 "HEAP" 1127987 NIL HEAP (NIL T) -8 NIL NIL) (-475 1125579 1125823 1125957 "HEADAST" 1126157 T HEADAST (NIL) -8 NIL NIL) (-474 1119499 1125494 1125556 "HDP" 1125561 NIL HDP (NIL NIL T) -8 NIL NIL) (-473 1113250 1119134 1119286 "HDMP" 1119400 NIL HDMP (NIL NIL T) -8 NIL NIL) (-472 1112575 1112714 1112878 "HB" 1113106 T HB (NIL) -7 NIL NIL) (-471 1106072 1112421 1112525 "HASHTBL" 1112530 NIL HASHTBL (NIL T T NIL) -8 NIL NIL) (-470 1105592 1105793 1105885 "HASAST" 1106000 T HASAST (NIL) -8 NIL NIL) (-469 1103406 1105216 1105397 "HACKPI" 1105431 T HACKPI (NIL) -8 NIL NIL) (-468 1099101 1103259 1103372 "GTSET" 1103377 NIL GTSET (NIL T T T T) -8 NIL NIL) (-467 1092627 1098979 1099077 "GSTBL" 1099082 NIL GSTBL (NIL T T T NIL) -8 NIL NIL) (-466 1084940 1091658 1091923 "GSERIES" 1092418 NIL GSERIES (NIL T NIL NIL) -8 NIL NIL) (-465 1084107 1084498 1084526 "GROUP" 1084729 T GROUP (NIL) -9 NIL 1084863) (-464 1083473 1083632 1083883 "GROUP-" 1083888 NIL GROUP- (NIL T) -8 NIL NIL) (-463 1081842 1082161 1082548 "GROEBSOL" 1083150 NIL GROEBSOL (NIL NIL T T) -7 NIL NIL) (-462 1080782 1081044 1081095 "GRMOD" 1081624 NIL GRMOD (NIL T T) -9 NIL 1081792) (-461 1080550 1080586 1080714 "GRMOD-" 1080719 NIL GRMOD- (NIL T T T) -8 NIL NIL) (-460 1075875 1076904 1077904 "GRIMAGE" 1079570 T GRIMAGE (NIL) -8 NIL NIL) (-459 1074342 1074602 1074926 "GRDEF" 1075571 T GRDEF (NIL) -7 NIL NIL) (-458 1073786 1073902 1074043 "GRAY" 1074221 T GRAY (NIL) -7 NIL NIL) (-457 1073017 1073397 1073448 "GRALG" 1073601 NIL GRALG (NIL T T) -9 NIL 1073694) (-456 1072678 1072751 1072914 "GRALG-" 1072919 NIL GRALG- (NIL T T T) -8 NIL NIL) (-455 1069482 1072263 1072441 "GPOLSET" 1072585 NIL GPOLSET (NIL T T T T) -8 NIL NIL) (-454 1068836 1068893 1069151 "GOSPER" 1069419 NIL GOSPER (NIL T T T T T) -7 NIL NIL) (-453 1064595 1065274 1065800 "GMODPOL" 1068535 NIL GMODPOL (NIL NIL T T T NIL T) -8 NIL NIL) (-452 1063600 1063784 1064022 "GHENSEL" 1064407 NIL GHENSEL (NIL T T) -7 NIL NIL) (-451 1057651 1058494 1059521 "GENUPS" 1062684 NIL GENUPS (NIL T T) -7 NIL NIL) (-450 1057348 1057399 1057488 "GENUFACT" 1057594 NIL GENUFACT (NIL T) -7 NIL NIL) (-449 1056760 1056837 1057002 "GENPGCD" 1057266 NIL GENPGCD (NIL T T T T) -7 NIL NIL) (-448 1056234 1056269 1056482 "GENMFACT" 1056719 NIL GENMFACT (NIL T T T T T) -7 NIL NIL) (-447 1054802 1055057 1055364 "GENEEZ" 1055977 NIL GENEEZ (NIL T T) -7 NIL NIL) (-446 1048715 1054413 1054575 "GDMP" 1054725 NIL GDMP (NIL NIL T T) -8 NIL NIL) (-445 1038092 1042486 1043592 "GCNAALG" 1047698 NIL GCNAALG (NIL T NIL NIL NIL) -8 NIL NIL) (-444 1036554 1037382 1037410 "GCDDOM" 1037665 T GCDDOM (NIL) -9 NIL 1037822) (-443 1036024 1036151 1036366 "GCDDOM-" 1036371 NIL GCDDOM- (NIL T) -8 NIL NIL) (-442 1034696 1034881 1035185 "GB" 1035803 NIL GB (NIL T T T T) -7 NIL NIL) (-441 1023316 1025642 1028034 "GBINTERN" 1032387 NIL GBINTERN (NIL T T T T) -7 NIL NIL) (-440 1021153 1021445 1021866 "GBF" 1022991 NIL GBF (NIL T T T T) -7 NIL NIL) (-439 1019934 1020099 1020366 "GBEUCLID" 1020969 NIL GBEUCLID (NIL T T T T) -7 NIL NIL) (-438 1019283 1019408 1019557 "GAUSSFAC" 1019805 T GAUSSFAC (NIL) -7 NIL NIL) (-437 1017650 1017952 1018266 "GALUTIL" 1019002 NIL GALUTIL (NIL T) -7 NIL NIL) (-436 1015958 1016232 1016556 "GALPOLYU" 1017377 NIL GALPOLYU (NIL T T) -7 NIL NIL) (-435 1013323 1013613 1014020 "GALFACTU" 1015655 NIL GALFACTU (NIL T T T) -7 NIL NIL) (-434 1005129 1006628 1008236 "GALFACT" 1011755 NIL GALFACT (NIL T) -7 NIL NIL) (-433 1002517 1003175 1003203 "FVFUN" 1004359 T FVFUN (NIL) -9 NIL 1005079) (-432 1001783 1001965 1001993 "FVC" 1002284 T FVC (NIL) -9 NIL 1002467) (-431 1001425 1001580 1001661 "FUNCTION" 1001735 NIL FUNCTION (NIL NIL) -8 NIL NIL) (-430 999095 999646 1000135 "FT" 1000956 T FT (NIL) -8 NIL NIL) (-429 997913 998396 998599 "FTEM" 998912 T FTEM (NIL) -8 NIL NIL) (-428 996169 996458 996862 "FSUPFACT" 997604 NIL FSUPFACT (NIL T T T) -7 NIL NIL) (-427 994566 994855 995187 "FST" 995857 T FST (NIL) -8 NIL NIL) (-426 993737 993843 994038 "FSRED" 994448 NIL FSRED (NIL T T) -7 NIL NIL) (-425 992416 992671 993025 "FSPRMELT" 993452 NIL FSPRMELT (NIL T T) -7 NIL NIL) (-424 989501 989939 990438 "FSPECF" 991979 NIL FSPECF (NIL T T) -7 NIL NIL) (-423 971943 980385 980425 "FS" 984273 NIL FS (NIL T) -9 NIL 986562) (-422 960593 963583 967639 "FS-" 967936 NIL FS- (NIL T T) -8 NIL NIL) (-421 960107 960161 960338 "FSINT" 960534 NIL FSINT (NIL T T) -7 NIL NIL) (-420 958434 959100 959403 "FSERIES" 959886 NIL FSERIES (NIL T T) -8 NIL NIL) (-419 957448 957564 957795 "FSCINT" 958314 NIL FSCINT (NIL T T) -7 NIL NIL) (-418 953682 956392 956433 "FSAGG" 956803 NIL FSAGG (NIL T) -9 NIL 957062) (-417 951444 952045 952841 "FSAGG-" 952936 NIL FSAGG- (NIL T T) -8 NIL NIL) (-416 950486 950629 950856 "FSAGG2" 951297 NIL FSAGG2 (NIL T T T T) -7 NIL NIL) (-415 948141 948420 948974 "FS2UPS" 950204 NIL FS2UPS (NIL T T T T T NIL) -7 NIL NIL) (-414 947723 947766 947921 "FS2" 948092 NIL FS2 (NIL T T T T) -7 NIL NIL) (-413 946580 946751 947060 "FS2EXPXP" 947548 NIL FS2EXPXP (NIL T T NIL NIL) -7 NIL NIL) (-412 946006 946121 946273 "FRUTIL" 946460 NIL FRUTIL (NIL T) -7 NIL NIL) (-411 937467 941505 942861 "FR" 944682 NIL FR (NIL T) -8 NIL NIL) (-410 932542 935185 935225 "FRNAALG" 936621 NIL FRNAALG (NIL T) -9 NIL 937228) (-409 928220 929291 930566 "FRNAALG-" 931316 NIL FRNAALG- (NIL T T) -8 NIL NIL) (-408 927858 927901 928028 "FRNAAF2" 928171 NIL FRNAAF2 (NIL T T T T) -7 NIL NIL) (-407 926265 926712 927007 "FRMOD" 927670 NIL FRMOD (NIL T T T T NIL) -8 NIL NIL) (-406 924044 924648 924965 "FRIDEAL" 926056 NIL FRIDEAL (NIL T T T T) -8 NIL NIL) (-405 923239 923326 923615 "FRIDEAL2" 923951 NIL FRIDEAL2 (NIL T T T T T T T T) -7 NIL NIL) (-404 922481 922895 922936 "FRETRCT" 922941 NIL FRETRCT (NIL T) -9 NIL 923117) (-403 921593 921824 922175 "FRETRCT-" 922180 NIL FRETRCT- (NIL T T) -8 NIL NIL) (-402 918843 920019 920078 "FRAMALG" 920960 NIL FRAMALG (NIL T T) -9 NIL 921252) (-401 916977 917432 918062 "FRAMALG-" 918285 NIL FRAMALG- (NIL T T T) -8 NIL NIL) (-400 910937 916452 916728 "FRAC" 916733 NIL FRAC (NIL T) -8 NIL NIL) (-399 910573 910630 910737 "FRAC2" 910874 NIL FRAC2 (NIL T T) -7 NIL NIL) (-398 910209 910266 910373 "FR2" 910510 NIL FR2 (NIL T T) -7 NIL NIL) (-397 904939 907787 907815 "FPS" 908934 T FPS (NIL) -9 NIL 909491) (-396 904388 904497 904661 "FPS-" 904807 NIL FPS- (NIL T) -8 NIL NIL) (-395 901894 903529 903557 "FPC" 903782 T FPC (NIL) -9 NIL 903924) (-394 901687 901727 901824 "FPC-" 901829 NIL FPC- (NIL T) -8 NIL NIL) (-393 900565 901175 901216 "FPATMAB" 901221 NIL FPATMAB (NIL T) -9 NIL 901373) (-392 898265 898741 899167 "FPARFRAC" 900202 NIL FPARFRAC (NIL T T) -8 NIL NIL) (-391 893658 894157 894839 "FORTRAN" 897697 NIL FORTRAN (NIL NIL NIL NIL NIL) -8 NIL NIL) (-390 891374 891874 892413 "FORT" 893139 T FORT (NIL) -7 NIL NIL) (-389 889050 889612 889640 "FORTFN" 890700 T FORTFN (NIL) -9 NIL 891324) (-388 888814 888864 888892 "FORTCAT" 888951 T FORTCAT (NIL) -9 NIL 889013) (-387 886874 887357 887756 "FORMULA" 888435 T FORMULA (NIL) -8 NIL NIL) (-386 886662 886692 886761 "FORMULA1" 886838 NIL FORMULA1 (NIL T) -7 NIL NIL) (-385 886185 886237 886410 "FORDER" 886604 NIL FORDER (NIL T T T T) -7 NIL NIL) (-384 885281 885445 885638 "FOP" 886012 T FOP (NIL) -7 NIL NIL) (-383 883889 884561 884735 "FNLA" 885163 NIL FNLA (NIL NIL NIL T) -8 NIL NIL) (-382 882557 882946 882974 "FNCAT" 883546 T FNCAT (NIL) -9 NIL 883839) (-381 882123 882516 882544 "FNAME" 882549 T FNAME (NIL) -8 NIL NIL) (-380 880821 881750 881778 "FMTC" 881783 T FMTC (NIL) -9 NIL 881819) (-379 877183 878344 878973 "FMONOID" 880225 NIL FMONOID (NIL T) -8 NIL NIL) (-378 876402 876925 877074 "FM" 877079 NIL FM (NIL T T) -8 NIL NIL) (-377 873826 874472 874500 "FMFUN" 875644 T FMFUN (NIL) -9 NIL 876352) (-376 873095 873276 873304 "FMC" 873594 T FMC (NIL) -9 NIL 873776) (-375 870307 871141 871195 "FMCAT" 872390 NIL FMCAT (NIL T T) -9 NIL 872885) (-374 869200 870073 870173 "FM1" 870252 NIL FM1 (NIL T T) -8 NIL NIL) (-373 866974 867390 867884 "FLOATRP" 868751 NIL FLOATRP (NIL T) -7 NIL NIL) (-372 860525 864630 865260 "FLOAT" 866364 T FLOAT (NIL) -8 NIL NIL) (-371 857963 858463 859041 "FLOATCP" 859992 NIL FLOATCP (NIL T) -7 NIL NIL) (-370 856792 857596 857637 "FLINEXP" 857642 NIL FLINEXP (NIL T) -9 NIL 857735) (-369 855946 856181 856509 "FLINEXP-" 856514 NIL FLINEXP- (NIL T T) -8 NIL NIL) (-368 855022 855166 855390 "FLASORT" 855798 NIL FLASORT (NIL T T) -7 NIL NIL) (-367 852239 853081 853133 "FLALG" 854360 NIL FLALG (NIL T T) -9 NIL 854827) (-366 846023 849725 849766 "FLAGG" 851028 NIL FLAGG (NIL T) -9 NIL 851680) (-365 844749 845088 845578 "FLAGG-" 845583 NIL FLAGG- (NIL T T) -8 NIL NIL) (-364 843791 843934 844161 "FLAGG2" 844602 NIL FLAGG2 (NIL T T T T) -7 NIL NIL) (-363 840804 841778 841837 "FINRALG" 842965 NIL FINRALG (NIL T T) -9 NIL 843473) (-362 839964 840193 840532 "FINRALG-" 840537 NIL FINRALG- (NIL T T T) -8 NIL NIL) (-361 839370 839583 839611 "FINITE" 839807 T FINITE (NIL) -9 NIL 839914) (-360 831828 833989 834029 "FINAALG" 837696 NIL FINAALG (NIL T) -9 NIL 839149) (-359 827169 828210 829354 "FINAALG-" 830733 NIL FINAALG- (NIL T T) -8 NIL NIL) (-358 826564 826924 827027 "FILE" 827099 NIL FILE (NIL T) -8 NIL NIL) (-357 825248 825560 825614 "FILECAT" 826298 NIL FILECAT (NIL T T) -9 NIL 826514) (-356 823168 824662 824690 "FIELD" 824730 T FIELD (NIL) -9 NIL 824810) (-355 821788 822173 822684 "FIELD-" 822689 NIL FIELD- (NIL T) -8 NIL NIL) (-354 819666 820423 820770 "FGROUP" 821474 NIL FGROUP (NIL T) -8 NIL NIL) (-353 818756 818920 819140 "FGLMICPK" 819498 NIL FGLMICPK (NIL T NIL) -7 NIL NIL) (-352 814623 818681 818738 "FFX" 818743 NIL FFX (NIL T NIL) -8 NIL NIL) (-351 814224 814285 814420 "FFSLPE" 814556 NIL FFSLPE (NIL T T T) -7 NIL NIL) (-350 810217 810996 811792 "FFPOLY" 813460 NIL FFPOLY (NIL T) -7 NIL NIL) (-349 809721 809757 809966 "FFPOLY2" 810175 NIL FFPOLY2 (NIL T T) -7 NIL NIL) (-348 805607 809640 809703 "FFP" 809708 NIL FFP (NIL T NIL) -8 NIL NIL) (-347 801040 805518 805582 "FF" 805587 NIL FF (NIL NIL NIL) -8 NIL NIL) (-346 796201 800383 800573 "FFNBX" 800894 NIL FFNBX (NIL T NIL) -8 NIL NIL) (-345 791175 795336 795594 "FFNBP" 796055 NIL FFNBP (NIL T NIL) -8 NIL NIL) (-344 785843 790459 790670 "FFNB" 791008 NIL FFNB (NIL NIL NIL) -8 NIL NIL) (-343 784675 784873 785188 "FFINTBAS" 785640 NIL FFINTBAS (NIL T T T) -7 NIL NIL) (-342 780959 783134 783162 "FFIELDC" 783782 T FFIELDC (NIL) -9 NIL 784158) (-341 779622 779992 780489 "FFIELDC-" 780494 NIL FFIELDC- (NIL T) -8 NIL NIL) (-340 779192 779237 779361 "FFHOM" 779564 NIL FFHOM (NIL T T T) -7 NIL NIL) (-339 776890 777374 777891 "FFF" 778707 NIL FFF (NIL T) -7 NIL NIL) (-338 772543 776632 776733 "FFCGX" 776833 NIL FFCGX (NIL T NIL) -8 NIL NIL) (-337 768210 772275 772382 "FFCGP" 772486 NIL FFCGP (NIL T NIL) -8 NIL NIL) (-336 763428 767937 768045 "FFCG" 768146 NIL FFCG (NIL NIL NIL) -8 NIL NIL) (-335 745486 754522 754608 "FFCAT" 759773 NIL FFCAT (NIL T T T) -9 NIL 761224) (-334 740684 741731 743045 "FFCAT-" 744275 NIL FFCAT- (NIL T T T T) -8 NIL NIL) (-333 740095 740138 740373 "FFCAT2" 740635 NIL FFCAT2 (NIL T T T T T T T T) -7 NIL NIL) (-332 729307 733067 734287 "FEXPR" 738947 NIL FEXPR (NIL NIL NIL T) -8 NIL NIL) (-331 728307 728742 728783 "FEVALAB" 728867 NIL FEVALAB (NIL T) -9 NIL 729128) (-330 727466 727676 728014 "FEVALAB-" 728019 NIL FEVALAB- (NIL T T) -8 NIL NIL) (-329 726059 726849 727052 "FDIV" 727365 NIL FDIV (NIL T T T T) -8 NIL NIL) (-328 723125 723840 723955 "FDIVCAT" 725523 NIL FDIVCAT (NIL T T T T) -9 NIL 725960) (-327 722887 722914 723084 "FDIVCAT-" 723089 NIL FDIVCAT- (NIL T T T T T) -8 NIL NIL) (-326 722107 722194 722471 "FDIV2" 722794 NIL FDIV2 (NIL T T T T T T T T) -7 NIL NIL) (-325 720793 721052 721341 "FCPAK1" 721838 T FCPAK1 (NIL) -7 NIL NIL) (-324 719921 720293 720434 "FCOMP" 720684 NIL FCOMP (NIL T) -8 NIL NIL) (-323 703556 706970 710531 "FC" 716380 T FC (NIL) -8 NIL NIL) (-322 696209 700190 700230 "FAXF" 702032 NIL FAXF (NIL T) -9 NIL 702724) (-321 693488 694143 694968 "FAXF-" 695433 NIL FAXF- (NIL T T) -8 NIL NIL) (-320 688588 692864 693040 "FARRAY" 693345 NIL FARRAY (NIL T) -8 NIL NIL) (-319 683995 686027 686080 "FAMR" 687103 NIL FAMR (NIL T T) -9 NIL 687563) (-318 682885 683187 683622 "FAMR-" 683627 NIL FAMR- (NIL T T T) -8 NIL NIL) (-317 682081 682807 682860 "FAMONOID" 682865 NIL FAMONOID (NIL T) -8 NIL NIL) (-316 679911 680595 680648 "FAMONC" 681589 NIL FAMONC (NIL T T) -9 NIL 681975) (-315 678603 679665 679802 "FAGROUP" 679807 NIL FAGROUP (NIL T) -8 NIL NIL) (-314 676398 676717 677120 "FACUTIL" 678284 NIL FACUTIL (NIL T T T T) -7 NIL NIL) (-313 675497 675682 675904 "FACTFUNC" 676208 NIL FACTFUNC (NIL T) -7 NIL NIL) (-312 667902 674748 674960 "EXPUPXS" 675353 NIL EXPUPXS (NIL T NIL NIL) -8 NIL NIL) (-311 665385 665925 666511 "EXPRTUBE" 667336 T EXPRTUBE (NIL) -7 NIL NIL) (-310 661579 662171 662908 "EXPRODE" 664724 NIL EXPRODE (NIL T T) -7 NIL NIL) (-309 646953 660234 660662 "EXPR" 661183 NIL EXPR (NIL T) -8 NIL NIL) (-308 641360 641947 642760 "EXPR2UPS" 646251 NIL EXPR2UPS (NIL T T) -7 NIL NIL) (-307 640996 641053 641160 "EXPR2" 641297 NIL EXPR2 (NIL T T) -7 NIL NIL) (-306 632403 640128 640425 "EXPEXPAN" 640833 NIL EXPEXPAN (NIL T T NIL NIL) -8 NIL NIL) (-305 632230 632360 632389 "EXIT" 632394 T EXIT (NIL) -8 NIL NIL) (-304 631754 631954 632045 "EXITAST" 632159 T EXITAST (NIL) -8 NIL NIL) (-303 631381 631443 631556 "EVALCYC" 631686 NIL EVALCYC (NIL T) -7 NIL NIL) (-302 630922 631040 631081 "EVALAB" 631251 NIL EVALAB (NIL T) -9 NIL 631355) (-301 630403 630525 630746 "EVALAB-" 630751 NIL EVALAB- (NIL T T) -8 NIL NIL) (-300 627906 629174 629202 "EUCDOM" 629757 T EUCDOM (NIL) -9 NIL 630107) (-299 626311 626753 627343 "EUCDOM-" 627348 NIL EUCDOM- (NIL T) -8 NIL NIL) (-298 613851 616609 619359 "ESTOOLS" 623581 T ESTOOLS (NIL) -7 NIL NIL) (-297 613483 613540 613649 "ESTOOLS2" 613788 NIL ESTOOLS2 (NIL T T) -7 NIL NIL) (-296 613234 613276 613356 "ESTOOLS1" 613435 NIL ESTOOLS1 (NIL T) -7 NIL NIL) (-295 607159 608887 608915 "ES" 611683 T ES (NIL) -9 NIL 613092) (-294 602106 603393 605210 "ES-" 605374 NIL ES- (NIL T) -8 NIL NIL) (-293 598481 599241 600021 "ESCONT" 601346 T ESCONT (NIL) -7 NIL NIL) (-292 598226 598258 598340 "ESCONT1" 598443 NIL ESCONT1 (NIL NIL NIL) -7 NIL NIL) (-291 597901 597951 598051 "ES2" 598170 NIL ES2 (NIL T T) -7 NIL NIL) (-290 597531 597589 597698 "ES1" 597837 NIL ES1 (NIL T T) -7 NIL NIL) (-289 596747 596876 597052 "ERROR" 597375 T ERROR (NIL) -7 NIL NIL) (-288 590250 596606 596697 "EQTBL" 596702 NIL EQTBL (NIL T T) -8 NIL NIL) (-287 582807 585564 587013 "EQ" 588834 NIL -3908 (NIL T) -8 NIL NIL) (-286 582439 582496 582605 "EQ2" 582744 NIL EQ2 (NIL T T) -7 NIL NIL) (-285 577731 578777 579870 "EP" 581378 NIL EP (NIL T) -7 NIL NIL) (-284 576313 576614 576931 "ENV" 577434 T ENV (NIL) -8 NIL NIL) (-283 575512 576032 576060 "ENTIRER" 576065 T ENTIRER (NIL) -9 NIL 576111) (-282 572014 573467 573837 "EMR" 575311 NIL EMR (NIL T T T NIL NIL NIL) -8 NIL NIL) (-281 571158 571343 571397 "ELTAGG" 571777 NIL ELTAGG (NIL T T) -9 NIL 571988) (-280 570877 570939 571080 "ELTAGG-" 571085 NIL ELTAGG- (NIL T T T) -8 NIL NIL) (-279 570666 570695 570749 "ELTAB" 570833 NIL ELTAB (NIL T T) -9 NIL NIL) (-278 569792 569938 570137 "ELFUTS" 570517 NIL ELFUTS (NIL T T) -7 NIL NIL) (-277 569534 569590 569618 "ELEMFUN" 569723 T ELEMFUN (NIL) -9 NIL NIL) (-276 569404 569425 569493 "ELEMFUN-" 569498 NIL ELEMFUN- (NIL T) -8 NIL NIL) (-275 564295 567504 567545 "ELAGG" 568485 NIL ELAGG (NIL T) -9 NIL 568948) (-274 562580 563014 563677 "ELAGG-" 563682 NIL ELAGG- (NIL T T) -8 NIL NIL) (-273 561237 561517 561812 "ELABEXPR" 562305 T ELABEXPR (NIL) -8 NIL NIL) (-272 554103 555904 556731 "EFUPXS" 560513 NIL EFUPXS (NIL T T T T) -8 NIL NIL) (-271 547553 549354 550164 "EFULS" 553379 NIL EFULS (NIL T T T) -8 NIL NIL) (-270 544975 545333 545812 "EFSTRUC" 547185 NIL EFSTRUC (NIL T T) -7 NIL NIL) (-269 534047 535612 537172 "EF" 543490 NIL EF (NIL T T) -7 NIL NIL) (-268 533148 533532 533681 "EAB" 533918 T EAB (NIL) -8 NIL NIL) (-267 532357 533107 533135 "E04UCFA" 533140 T E04UCFA (NIL) -8 NIL NIL) (-266 531566 532316 532344 "E04NAFA" 532349 T E04NAFA (NIL) -8 NIL NIL) (-265 530775 531525 531553 "E04MBFA" 531558 T E04MBFA (NIL) -8 NIL NIL) (-264 529984 530734 530762 "E04JAFA" 530767 T E04JAFA (NIL) -8 NIL NIL) (-263 529195 529943 529971 "E04GCFA" 529976 T E04GCFA (NIL) -8 NIL NIL) (-262 528406 529154 529182 "E04FDFA" 529187 T E04FDFA (NIL) -8 NIL NIL) (-261 527615 528365 528393 "E04DGFA" 528398 T E04DGFA (NIL) -8 NIL NIL) (-260 521793 523140 524504 "E04AGNT" 526271 T E04AGNT (NIL) -7 NIL NIL) (-259 520517 520997 521037 "DVARCAT" 521512 NIL DVARCAT (NIL T) -9 NIL 521711) (-258 519721 519933 520247 "DVARCAT-" 520252 NIL DVARCAT- (NIL T T) -8 NIL NIL) (-257 512621 519520 519649 "DSMP" 519654 NIL DSMP (NIL T T T) -8 NIL NIL) (-256 507431 508566 509634 "DROPT" 511573 T DROPT (NIL) -8 NIL NIL) (-255 507096 507155 507253 "DROPT1" 507366 NIL DROPT1 (NIL T) -7 NIL NIL) (-254 502211 503337 504474 "DROPT0" 505979 T DROPT0 (NIL) -7 NIL NIL) (-253 500556 500881 501267 "DRAWPT" 501845 T DRAWPT (NIL) -7 NIL NIL) (-252 495143 496066 497145 "DRAW" 499530 NIL DRAW (NIL T) -7 NIL NIL) (-251 494776 494829 494947 "DRAWHACK" 495084 NIL DRAWHACK (NIL T) -7 NIL NIL) (-250 493507 493776 494067 "DRAWCX" 494505 T DRAWCX (NIL) -7 NIL NIL) (-249 493023 493091 493242 "DRAWCURV" 493433 NIL DRAWCURV (NIL T T) -7 NIL NIL) (-248 483494 485453 487568 "DRAWCFUN" 490928 T DRAWCFUN (NIL) -7 NIL NIL) (-247 480307 482189 482230 "DQAGG" 482859 NIL DQAGG (NIL T) -9 NIL 483132) (-246 468826 475523 475606 "DPOLCAT" 477458 NIL DPOLCAT (NIL T T T T) -9 NIL 478003) (-245 463665 465011 466969 "DPOLCAT-" 466974 NIL DPOLCAT- (NIL T T T T T) -8 NIL NIL) (-244 456820 463526 463624 "DPMO" 463629 NIL DPMO (NIL NIL T T) -8 NIL NIL) (-243 449878 456600 456767 "DPMM" 456772 NIL DPMM (NIL NIL T T T) -8 NIL NIL) (-242 449298 449501 449615 "DOMAIN" 449784 T DOMAIN (NIL) -8 NIL NIL) (-241 443049 448933 449085 "DMP" 449199 NIL DMP (NIL NIL T) -8 NIL NIL) (-240 442649 442705 442849 "DLP" 442987 NIL DLP (NIL T) -7 NIL NIL) (-239 436293 441750 441977 "DLIST" 442454 NIL DLIST (NIL T) -8 NIL NIL) (-238 433139 435148 435189 "DLAGG" 435739 NIL DLAGG (NIL T) -9 NIL 435968) (-237 431989 432619 432647 "DIVRING" 432739 T DIVRING (NIL) -9 NIL 432822) (-236 431226 431416 431716 "DIVRING-" 431721 NIL DIVRING- (NIL T) -8 NIL NIL) (-235 429328 429685 430091 "DISPLAY" 430840 T DISPLAY (NIL) -7 NIL NIL) (-234 423270 429242 429305 "DIRPROD" 429310 NIL DIRPROD (NIL NIL T) -8 NIL NIL) (-233 422118 422321 422586 "DIRPROD2" 423063 NIL DIRPROD2 (NIL NIL T T) -7 NIL NIL) (-232 411656 417608 417661 "DIRPCAT" 418071 NIL DIRPCAT (NIL NIL T) -9 NIL 418911) (-231 408982 409624 410505 "DIRPCAT-" 410842 NIL DIRPCAT- (NIL T NIL T) -8 NIL NIL) (-230 408269 408429 408615 "DIOSP" 408816 T DIOSP (NIL) -7 NIL NIL) (-229 404971 407181 407222 "DIOPS" 407656 NIL DIOPS (NIL T) -9 NIL 407885) (-228 404520 404634 404825 "DIOPS-" 404830 NIL DIOPS- (NIL T T) -8 NIL NIL) (-227 403432 404026 404054 "DIFRING" 404241 T DIFRING (NIL) -9 NIL 404351) (-226 403078 403155 403307 "DIFRING-" 403312 NIL DIFRING- (NIL T) -8 NIL NIL) (-225 400903 402141 402182 "DIFEXT" 402545 NIL DIFEXT (NIL T) -9 NIL 402839) (-224 399188 399616 400282 "DIFEXT-" 400287 NIL DIFEXT- (NIL T T) -8 NIL NIL) (-223 396510 398720 398761 "DIAGG" 398766 NIL DIAGG (NIL T) -9 NIL 398786) (-222 395894 396051 396303 "DIAGG-" 396308 NIL DIAGG- (NIL T T) -8 NIL NIL) (-221 391359 394853 395130 "DHMATRIX" 395663 NIL DHMATRIX (NIL T) -8 NIL NIL) (-220 386971 387880 388890 "DFSFUN" 390369 T DFSFUN (NIL) -7 NIL NIL) (-219 381939 385786 386128 "DFLOAT" 386649 T DFLOAT (NIL) -8 NIL NIL) (-218 380167 380448 380844 "DFINTTLS" 381647 NIL DFINTTLS (NIL T T) -7 NIL NIL) (-217 377232 378188 378588 "DERHAM" 379833 NIL DERHAM (NIL T NIL) -8 NIL NIL) (-216 375081 377007 377096 "DEQUEUE" 377176 NIL DEQUEUE (NIL T) -8 NIL NIL) (-215 374296 374429 374625 "DEGRED" 374943 NIL DEGRED (NIL T T) -7 NIL NIL) (-214 370691 371436 372289 "DEFINTRF" 373524 NIL DEFINTRF (NIL T) -7 NIL NIL) (-213 368218 368687 369286 "DEFINTEF" 370210 NIL DEFINTEF (NIL T T) -7 NIL NIL) (-212 367584 367817 367939 "DEFAST" 368116 T DEFAST (NIL) -8 NIL NIL) (-211 361472 367025 367191 "DECIMAL" 367438 T DECIMAL (NIL) -8 NIL NIL) (-210 358984 359442 359948 "DDFACT" 361016 NIL DDFACT (NIL T T) -7 NIL NIL) (-209 358580 358623 358774 "DBLRESP" 358935 NIL DBLRESP (NIL T T T T) -7 NIL NIL) (-208 356290 356624 356993 "DBASE" 358338 NIL DBASE (NIL T) -8 NIL NIL) (-207 355559 355770 355916 "DATABUF" 356189 NIL DATABUF (NIL NIL T) -8 NIL NIL) (-206 354692 355518 355546 "D03FAFA" 355551 T D03FAFA (NIL) -8 NIL NIL) (-205 353826 354651 354679 "D03EEFA" 354684 T D03EEFA (NIL) -8 NIL NIL) (-204 351776 352242 352731 "D03AGNT" 353357 T D03AGNT (NIL) -7 NIL NIL) (-203 351092 351735 351763 "D02EJFA" 351768 T D02EJFA (NIL) -8 NIL NIL) (-202 350408 351051 351079 "D02CJFA" 351084 T D02CJFA (NIL) -8 NIL NIL) (-201 349724 350367 350395 "D02BHFA" 350400 T D02BHFA (NIL) -8 NIL NIL) (-200 349040 349683 349711 "D02BBFA" 349716 T D02BBFA (NIL) -8 NIL NIL) (-199 342238 343826 345432 "D02AGNT" 347454 T D02AGNT (NIL) -7 NIL NIL) (-198 340007 340529 341075 "D01WGTS" 341712 T D01WGTS (NIL) -7 NIL NIL) (-197 339102 339966 339994 "D01TRNS" 339999 T D01TRNS (NIL) -8 NIL NIL) (-196 338197 339061 339089 "D01GBFA" 339094 T D01GBFA (NIL) -8 NIL NIL) (-195 337292 338156 338184 "D01FCFA" 338189 T D01FCFA (NIL) -8 NIL NIL) (-194 336387 337251 337279 "D01ASFA" 337284 T D01ASFA (NIL) -8 NIL NIL) (-193 335482 336346 336374 "D01AQFA" 336379 T D01AQFA (NIL) -8 NIL NIL) (-192 334577 335441 335469 "D01APFA" 335474 T D01APFA (NIL) -8 NIL NIL) (-191 333672 334536 334564 "D01ANFA" 334569 T D01ANFA (NIL) -8 NIL NIL) (-190 332767 333631 333659 "D01AMFA" 333664 T D01AMFA (NIL) -8 NIL NIL) (-189 331862 332726 332754 "D01ALFA" 332759 T D01ALFA (NIL) -8 NIL NIL) (-188 330957 331821 331849 "D01AKFA" 331854 T D01AKFA (NIL) -8 NIL NIL) (-187 330052 330916 330944 "D01AJFA" 330949 T D01AJFA (NIL) -8 NIL NIL) (-186 323349 324900 326461 "D01AGNT" 328511 T D01AGNT (NIL) -7 NIL NIL) (-185 322686 322814 322966 "CYCLOTOM" 323217 T CYCLOTOM (NIL) -7 NIL NIL) (-184 319421 320134 320861 "CYCLES" 321979 T CYCLES (NIL) -7 NIL NIL) (-183 318733 318867 319038 "CVMP" 319282 NIL CVMP (NIL T) -7 NIL NIL) (-182 316504 316762 317138 "CTRIGMNP" 318461 NIL CTRIGMNP (NIL T T) -7 NIL NIL) (-181 316015 316204 316303 "CTORCALL" 316425 T CTORCALL (NIL) -8 NIL NIL) (-180 315389 315488 315641 "CSTTOOLS" 315912 NIL CSTTOOLS (NIL T T) -7 NIL NIL) (-179 311188 311845 312603 "CRFP" 314701 NIL CRFP (NIL T T) -7 NIL NIL) (-178 310708 310909 311001 "CRCEAST" 311116 T CRCEAST (NIL) -8 NIL NIL) (-177 309755 309940 310168 "CRAPACK" 310512 NIL CRAPACK (NIL T) -7 NIL NIL) (-176 309139 309240 309444 "CPMATCH" 309631 NIL CPMATCH (NIL T T T) -7 NIL NIL) (-175 308864 308892 308998 "CPIMA" 309105 NIL CPIMA (NIL T T T) -7 NIL NIL) (-174 305228 305900 306618 "COORDSYS" 308199 NIL COORDSYS (NIL T) -7 NIL NIL) (-173 304612 304741 304891 "CONTOUR" 305098 T CONTOUR (NIL) -8 NIL NIL) (-172 300538 302615 303107 "CONTFRAC" 304152 NIL CONTFRAC (NIL T) -8 NIL NIL) (-171 300418 300439 300467 "CONDUIT" 300504 T CONDUIT (NIL) -9 NIL NIL) (-170 299611 300131 300159 "COMRING" 300164 T COMRING (NIL) -9 NIL 300216) (-169 298692 298969 299153 "COMPPROP" 299447 T COMPPROP (NIL) -8 NIL NIL) (-168 298353 298388 298516 "COMPLPAT" 298651 NIL COMPLPAT (NIL T T T) -7 NIL NIL) (-167 288412 298162 298271 "COMPLEX" 298276 NIL COMPLEX (NIL T) -8 NIL NIL) (-166 288048 288105 288212 "COMPLEX2" 288349 NIL COMPLEX2 (NIL T T) -7 NIL NIL) (-165 287766 287801 287899 "COMPFACT" 288007 NIL COMPFACT (NIL T T) -7 NIL NIL) (-164 272164 282380 282420 "COMPCAT" 283424 NIL COMPCAT (NIL T) -9 NIL 284819) (-163 261679 264603 268230 "COMPCAT-" 268586 NIL COMPCAT- (NIL T T) -8 NIL NIL) (-162 261408 261436 261539 "COMMUPC" 261645 NIL COMMUPC (NIL T T T) -7 NIL NIL) (-161 261203 261236 261295 "COMMONOP" 261369 T COMMONOP (NIL) -7 NIL NIL) (-160 260786 260954 261041 "COMM" 261136 T COMM (NIL) -8 NIL NIL) (-159 260407 260590 260665 "COMMAAST" 260731 T COMMAAST (NIL) -8 NIL NIL) (-158 259656 259850 259878 "COMBOPC" 260216 T COMBOPC (NIL) -9 NIL 260391) (-157 258552 258762 259004 "COMBINAT" 259446 NIL COMBINAT (NIL T) -7 NIL NIL) (-156 254750 255323 255963 "COMBF" 257974 NIL COMBF (NIL T T) -7 NIL NIL) (-155 253536 253866 254101 "COLOR" 254535 T COLOR (NIL) -8 NIL NIL) (-154 253056 253257 253349 "COLONAST" 253464 T COLONAST (NIL) -8 NIL NIL) (-153 252696 252743 252868 "CMPLXRT" 253003 NIL CMPLXRT (NIL T T) -7 NIL NIL) (-152 252188 252396 252495 "CLLCTAST" 252617 T CLLCTAST (NIL) -8 NIL NIL) (-151 247690 248718 249798 "CLIP" 251128 T CLIP (NIL) -7 NIL NIL) (-150 246072 246796 247035 "CLIF" 247517 NIL CLIF (NIL NIL T NIL) -8 NIL NIL) (-149 242294 244218 244259 "CLAGG" 245188 NIL CLAGG (NIL T) -9 NIL 245724) (-148 240716 241173 241756 "CLAGG-" 241761 NIL CLAGG- (NIL T T) -8 NIL NIL) (-147 240260 240345 240485 "CINTSLPE" 240625 NIL CINTSLPE (NIL T T) -7 NIL NIL) (-146 237761 238232 238780 "CHVAR" 239788 NIL CHVAR (NIL T T T) -7 NIL NIL) (-145 237024 237544 237572 "CHARZ" 237577 T CHARZ (NIL) -9 NIL 237592) (-144 236778 236818 236896 "CHARPOL" 236978 NIL CHARPOL (NIL T) -7 NIL NIL) (-143 235925 236478 236506 "CHARNZ" 236553 T CHARNZ (NIL) -9 NIL 236609) (-142 233950 234615 234950 "CHAR" 235610 T CHAR (NIL) -8 NIL NIL) (-141 233676 233737 233765 "CFCAT" 233876 T CFCAT (NIL) -9 NIL NIL) (-140 232921 233032 233214 "CDEN" 233560 NIL CDEN (NIL T T T) -7 NIL NIL) (-139 228913 232074 232354 "CCLASS" 232661 T CCLASS (NIL) -8 NIL NIL) (-138 228832 228858 228893 "CATEGORY" 228898 T -10 (NIL) -8 NIL NIL) (-137 228323 228532 228631 "CATAST" 228753 T CATAST (NIL) -8 NIL NIL) (-136 227843 228044 228136 "CASEAST" 228251 T CASEAST (NIL) -8 NIL NIL) (-135 222895 223872 224625 "CARTEN" 227146 NIL CARTEN (NIL NIL NIL T) -8 NIL NIL) (-134 222003 222151 222372 "CARTEN2" 222742 NIL CARTEN2 (NIL NIL NIL T T) -7 NIL NIL) (-133 220345 221153 221410 "CARD" 221766 T CARD (NIL) -8 NIL NIL) (-132 219965 220149 220224 "CAPSLAST" 220290 T CAPSLAST (NIL) -8 NIL NIL) (-131 219337 219665 219693 "CACHSET" 219825 T CACHSET (NIL) -9 NIL 219902) (-130 218833 219129 219157 "CABMON" 219207 T CABMON (NIL) -9 NIL 219263) (-129 218002 218380 218523 "BYTE" 218710 T BYTE (NIL) -8 NIL NIL) (-128 213950 217949 217983 "BYTEARY" 217988 T BYTEARY (NIL) -8 NIL NIL) (-127 211507 213642 213749 "BTREE" 213876 NIL BTREE (NIL T) -8 NIL NIL) (-126 209005 211155 211277 "BTOURN" 211417 NIL BTOURN (NIL T) -8 NIL NIL) (-125 206423 208476 208517 "BTCAT" 208585 NIL BTCAT (NIL T) -9 NIL 208662) (-124 206090 206170 206319 "BTCAT-" 206324 NIL BTCAT- (NIL T T) -8 NIL NIL) (-123 201382 205233 205261 "BTAGG" 205483 T BTAGG (NIL) -9 NIL 205644) (-122 200872 200997 201203 "BTAGG-" 201208 NIL BTAGG- (NIL T) -8 NIL NIL) (-121 197916 200150 200365 "BSTREE" 200689 NIL BSTREE (NIL T) -8 NIL NIL) (-120 197054 197180 197364 "BRILL" 197772 NIL BRILL (NIL T) -7 NIL NIL) (-119 193755 195782 195823 "BRAGG" 196472 NIL BRAGG (NIL T) -9 NIL 196729) (-118 192284 192690 193245 "BRAGG-" 193250 NIL BRAGG- (NIL T T) -8 NIL NIL) (-117 185550 191630 191814 "BPADICRT" 192132 NIL BPADICRT (NIL NIL) -8 NIL NIL) (-116 183900 185487 185532 "BPADIC" 185537 NIL BPADIC (NIL NIL) -8 NIL NIL) (-115 183598 183628 183742 "BOUNDZRO" 183864 NIL BOUNDZRO (NIL T T) -7 NIL NIL) (-114 179113 180204 181071 "BOP" 182751 T BOP (NIL) -8 NIL NIL) (-113 176734 177178 177698 "BOP1" 178626 NIL BOP1 (NIL T) -7 NIL NIL) (-112 175472 176158 176351 "BOOLEAN" 176561 T BOOLEAN (NIL) -8 NIL NIL) (-111 174834 175212 175266 "BMODULE" 175271 NIL BMODULE (NIL T T) -9 NIL 175336) (-110 170664 174632 174705 "BITS" 174781 T BITS (NIL) -8 NIL NIL) (-109 169761 170196 170348 "BINFILE" 170532 T BINFILE (NIL) -8 NIL NIL) (-108 169173 169295 169437 "BINDING" 169639 T BINDING (NIL) -8 NIL NIL) (-107 163065 168617 168782 "BINARY" 169028 T BINARY (NIL) -8 NIL NIL) (-106 160892 162320 162361 "BGAGG" 162621 NIL BGAGG (NIL T) -9 NIL 162758) (-105 160723 160755 160846 "BGAGG-" 160851 NIL BGAGG- (NIL T T) -8 NIL NIL) (-104 159821 160107 160312 "BFUNCT" 160538 T BFUNCT (NIL) -8 NIL NIL) (-103 158511 158689 158977 "BEZOUT" 159645 NIL BEZOUT (NIL T T T T T) -7 NIL NIL) (-102 155028 157363 157693 "BBTREE" 158214 NIL BBTREE (NIL T) -8 NIL NIL) (-101 154762 154815 154843 "BASTYPE" 154962 T BASTYPE (NIL) -9 NIL NIL) (-100 154614 154643 154716 "BASTYPE-" 154721 NIL BASTYPE- (NIL T) -8 NIL NIL) (-99 154052 154128 154278 "BALFACT" 154525 NIL BALFACT (NIL T T) -7 NIL NIL) (-98 152935 153467 153653 "AUTOMOR" 153897 NIL AUTOMOR (NIL T) -8 NIL NIL) (-97 152661 152666 152692 "ATTREG" 152697 T ATTREG (NIL) -9 NIL NIL) (-96 150940 151358 151710 "ATTRBUT" 152327 T ATTRBUT (NIL) -8 NIL NIL) (-95 150592 150768 150834 "ATTRAST" 150892 T ATTRAST (NIL) -8 NIL NIL) (-94 150128 150241 150267 "ATRIG" 150468 T ATRIG (NIL) -9 NIL NIL) (-93 149937 149978 150065 "ATRIG-" 150070 NIL ATRIG- (NIL T) -8 NIL NIL) (-92 149662 149805 149831 "ASTCAT" 149836 T ASTCAT (NIL) -9 NIL 149866) (-91 149459 149502 149594 "ASTCAT-" 149599 NIL ASTCAT- (NIL T) -8 NIL NIL) (-90 147656 149235 149323 "ASTACK" 149402 NIL ASTACK (NIL T) -8 NIL NIL) (-89 146161 146458 146823 "ASSOCEQ" 147338 NIL ASSOCEQ (NIL T T) -7 NIL NIL) (-88 145193 145820 145944 "ASP9" 146068 NIL ASP9 (NIL NIL) -8 NIL NIL) (-87 144957 145141 145180 "ASP8" 145185 NIL ASP8 (NIL NIL) -8 NIL NIL) (-86 143826 144562 144704 "ASP80" 144846 NIL ASP80 (NIL NIL) -8 NIL NIL) (-85 142725 143461 143593 "ASP7" 143725 NIL ASP7 (NIL NIL) -8 NIL NIL) (-84 141679 142402 142520 "ASP78" 142638 NIL ASP78 (NIL NIL) -8 NIL NIL) (-83 140648 141359 141476 "ASP77" 141593 NIL ASP77 (NIL NIL) -8 NIL NIL) (-82 139560 140286 140417 "ASP74" 140548 NIL ASP74 (NIL NIL) -8 NIL NIL) (-81 138460 139195 139327 "ASP73" 139459 NIL ASP73 (NIL NIL) -8 NIL NIL) (-80 137415 138137 138255 "ASP6" 138373 NIL ASP6 (NIL NIL) -8 NIL NIL) (-79 136363 137092 137210 "ASP55" 137328 NIL ASP55 (NIL NIL) -8 NIL NIL) (-78 135313 136037 136156 "ASP50" 136275 NIL ASP50 (NIL NIL) -8 NIL NIL) (-77 134401 135014 135124 "ASP4" 135234 NIL ASP4 (NIL NIL) -8 NIL NIL) (-76 133489 134102 134212 "ASP49" 134322 NIL ASP49 (NIL NIL) -8 NIL NIL) (-75 132274 133028 133196 "ASP42" 133378 NIL ASP42 (NIL NIL NIL NIL) -8 NIL NIL) (-74 131051 131807 131977 "ASP41" 132161 NIL ASP41 (NIL NIL NIL NIL) -8 NIL NIL) (-73 130001 130728 130846 "ASP35" 130964 NIL ASP35 (NIL NIL) -8 NIL NIL) (-72 129766 129949 129988 "ASP34" 129993 NIL ASP34 (NIL NIL) -8 NIL NIL) (-71 129503 129570 129646 "ASP33" 129721 NIL ASP33 (NIL NIL) -8 NIL NIL) (-70 128398 129138 129270 "ASP31" 129402 NIL ASP31 (NIL NIL) -8 NIL NIL) (-69 128163 128346 128385 "ASP30" 128390 NIL ASP30 (NIL NIL) -8 NIL NIL) (-68 127898 127967 128043 "ASP29" 128118 NIL ASP29 (NIL NIL) -8 NIL NIL) (-67 127663 127846 127885 "ASP28" 127890 NIL ASP28 (NIL NIL) -8 NIL NIL) (-66 127428 127611 127650 "ASP27" 127655 NIL ASP27 (NIL NIL) -8 NIL NIL) (-65 126512 127126 127237 "ASP24" 127348 NIL ASP24 (NIL NIL) -8 NIL NIL) (-64 125428 126153 126283 "ASP20" 126413 NIL ASP20 (NIL NIL) -8 NIL NIL) (-63 124516 125129 125239 "ASP1" 125349 NIL ASP1 (NIL NIL) -8 NIL NIL) (-62 123460 124190 124309 "ASP19" 124428 NIL ASP19 (NIL NIL) -8 NIL NIL) (-61 123197 123264 123340 "ASP12" 123415 NIL ASP12 (NIL NIL) -8 NIL NIL) (-60 122049 122796 122940 "ASP10" 123084 NIL ASP10 (NIL NIL) -8 NIL NIL) (-59 119948 121893 121984 "ARRAY2" 121989 NIL ARRAY2 (NIL T) -8 NIL NIL) (-58 115764 119596 119710 "ARRAY1" 119865 NIL ARRAY1 (NIL T) -8 NIL NIL) (-57 114796 114969 115190 "ARRAY12" 115587 NIL ARRAY12 (NIL T T) -7 NIL NIL) (-56 109155 111026 111101 "ARR2CAT" 113731 NIL ARR2CAT (NIL T T T) -9 NIL 114489) (-55 106589 107333 108287 "ARR2CAT-" 108292 NIL ARR2CAT- (NIL T T T T) -8 NIL NIL) (-54 105337 105489 105795 "APPRULE" 106425 NIL APPRULE (NIL T T T) -7 NIL NIL) (-53 104988 105036 105155 "APPLYORE" 105283 NIL APPLYORE (NIL T T T) -7 NIL NIL) (-52 103962 104253 104448 "ANY" 104811 T ANY (NIL) -8 NIL NIL) (-51 103240 103363 103520 "ANY1" 103836 NIL ANY1 (NIL T) -7 NIL NIL) (-50 100805 101677 102004 "ANTISYM" 102964 NIL ANTISYM (NIL T NIL) -8 NIL NIL) (-49 100320 100509 100606 "ANON" 100726 T ANON (NIL) -8 NIL NIL) (-48 94454 98861 99314 "AN" 99885 T AN (NIL) -8 NIL NIL) (-47 90835 92189 92240 "AMR" 92988 NIL AMR (NIL T T) -9 NIL 93588) (-46 89947 90168 90531 "AMR-" 90536 NIL AMR- (NIL T T T) -8 NIL NIL) (-45 74497 89864 89925 "ALIST" 89930 NIL ALIST (NIL T T) -8 NIL NIL) (-44 71334 74091 74260 "ALGSC" 74415 NIL ALGSC (NIL T NIL NIL NIL) -8 NIL NIL) (-43 67890 68444 69051 "ALGPKG" 70774 NIL ALGPKG (NIL T T) -7 NIL NIL) (-42 67167 67268 67452 "ALGMFACT" 67776 NIL ALGMFACT (NIL T T T) -7 NIL NIL) (-41 62906 63591 64246 "ALGMANIP" 66690 NIL ALGMANIP (NIL T T) -7 NIL NIL) (-40 54312 62532 62682 "ALGFF" 62839 NIL ALGFF (NIL T T T NIL) -8 NIL NIL) (-39 53508 53639 53818 "ALGFACT" 54170 NIL ALGFACT (NIL T) -7 NIL NIL) (-38 52538 53104 53142 "ALGEBRA" 53202 NIL ALGEBRA (NIL T) -9 NIL 53261) (-37 52256 52315 52447 "ALGEBRA-" 52452 NIL ALGEBRA- (NIL T T) -8 NIL NIL) (-36 34516 50259 50311 "ALAGG" 50447 NIL ALAGG (NIL T T) -9 NIL 50608) (-35 34052 34165 34191 "AHYP" 34392 T AHYP (NIL) -9 NIL NIL) (-34 32983 33231 33257 "AGG" 33756 T AGG (NIL) -9 NIL 34035) (-33 32417 32579 32793 "AGG-" 32798 NIL AGG- (NIL T) -8 NIL NIL) (-32 30094 30516 30934 "AF" 32059 NIL AF (NIL T T) -7 NIL NIL) (-31 29618 29819 29909 "ADDAST" 30022 T ADDAST (NIL) -8 NIL NIL) (-30 28887 29145 29301 "ACPLOT" 29480 T ACPLOT (NIL) -8 NIL NIL) (-29 18358 26279 26330 "ACFS" 27041 NIL ACFS (NIL T) -9 NIL 27280) (-28 16372 16862 17637 "ACFS-" 17642 NIL ACFS- (NIL T T) -8 NIL NIL) (-27 12697 14591 14617 "ACF" 15496 T ACF (NIL) -9 NIL 15908) (-26 11401 11735 12228 "ACF-" 12233 NIL ACF- (NIL T) -8 NIL NIL) (-25 10999 11168 11194 "ABELSG" 11286 T ABELSG (NIL) -9 NIL 11351) (-24 10866 10891 10957 "ABELSG-" 10962 NIL ABELSG- (NIL T) -8 NIL NIL) (-23 10235 10496 10522 "ABELMON" 10692 T ABELMON (NIL) -9 NIL 10804) (-22 9899 9983 10121 "ABELMON-" 10126 NIL ABELMON- (NIL T) -8 NIL NIL) (-21 9233 9579 9605 "ABELGRP" 9730 T ABELGRP (NIL) -9 NIL 9812) (-20 8696 8825 9041 "ABELGRP-" 9046 NIL ABELGRP- (NIL T) -8 NIL NIL) (-19 4333 8035 8074 "A1AGG" 8079 NIL A1AGG (NIL T) -9 NIL 8119) (-18 30 1251 2813 "A1AGG-" 2818 NIL A1AGG- (NIL T T) -8 NIL NIL)) \ No newline at end of file
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2270 (((-621 |#2|) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-1662 (($ $) 141 (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) 117 (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) NIL)) (-2132 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1638 (($ $) 137 (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) 113 (|has| |#1| (-38 (-400 (-549)))))) (-1684 (($ $) 145 (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) 121 (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) NIL T CONST)) (-2068 (($ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-1413 (((-923 |#1|) $ (-747)) NIL) (((-923 |#1|) $ (-747) (-747)) NIL)) (-1410 (((-112) $) NIL)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2729 (((-747) $ |#2|) NIL) (((-747) $ |#2| (-747)) NIL)) (-2297 (((-112) $) NIL)) (-3621 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2988 (((-112) $) NIL)) (-2244 (($ $ (-621 |#2|) (-621 (-521 |#2|))) NIL) (($ $ |#2| (-521 |#2|)) NIL) (($ |#1| (-521 |#2|)) NIL) (($ $ |#2| (-747)) 56) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3631 (($ $) 111 (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-3441 (((-1124) $) NIL)) (-3405 (($ $ |#2|) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ |#2| |#1|) 164 (|has| |#1| (-38 (-400 (-549)))))) (-3988 (((-1086) $) NIL)) (-2006 (($ (-1 $) |#2| |#1|) 163 (|has| |#1| (-38 (-400 (-549)))))) (-3796 (($ $ (-747)) 13)) (-2040 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-2717 (($ $) 109 (|has| |#1| (-38 (-400 (-549)))))) (-2684 (($ $ |#2| $) 95) (($ $ (-621 |#2|) (-621 $)) 88) (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL)) (-3455 (($ $ |#2|) 98) (($ $ (-621 |#2|)) NIL) (($ $ |#2| (-747)) NIL) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-3977 (((-521 |#2|) $) NIL)) (-1394 (((-1 (-1122 |#3|) |#3|) (-621 |#2|) (-621 (-1122 |#3|))) 77)) (-1696 (($ $) 147 (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) 123 (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) 143 (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) 119 (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) 139 (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) 115 (|has| |#1| (-38 (-400 (-549)))))) (-3958 (($ $) 15)) (-3845 (((-834) $) 180) (($ (-549)) NIL) (($ |#1|) 40 (|has| |#1| (-170))) (($ $) NIL (|has| |#1| (-541))) (($ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#2|) 63) (($ |#3|) 61)) (-4068 ((|#1| $ (-521 |#2|)) NIL) (($ $ |#2| (-747)) NIL) (($ $ (-621 |#2|) (-621 (-747))) NIL) ((|#3| $ (-747)) 38)) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) NIL)) (-1731 (($ $) 153 (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) 129 (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1708 (($ $) 149 (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) 125 (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) 157 (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) 133 (|has| |#1| (-38 (-400 (-549)))))) (-1932 (($ $) 159 (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) 135 (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) 155 (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) 131 (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) 151 (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) 127 (|has| |#1| (-38 (-400 (-549)))))) (-3274 (($) 47 T CONST)) (-3286 (($) 55 T CONST)) (-1699 (($ $ |#2|) NIL) (($ $ (-621 |#2|)) NIL) (($ $ |#2| (-747)) NIL) (($ $ (-621 |#2|) (-621 (-747))) NIL)) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ |#1|) 182 (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) 59)) (** (($ $ (-892)) NIL) (($ $ (-747)) 68) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 101 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 58) (($ $ (-400 (-549))) 106 (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) 104 (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 43) (($ $ |#1|) 44) (($ |#3| $) 42)))
+(((-1092 |#1| |#2| |#3|) (-13 (-717 |#1| |#2|) (-10 -8 (-15 -4068 (|#3| $ (-747))) (-15 -3845 ($ |#2|)) (-15 -3845 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -1394 ((-1 (-1122 |#3|) |#3|) (-621 |#2|) (-621 (-1122 |#3|)))) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -3405 ($ $ |#2| |#1|)) (-15 -2006 ($ (-1 $) |#2| |#1|))) |%noBranch|))) (-1018) (-823) (-920 |#1| (-521 |#2|) |#2|)) (T -1092))
+((-4068 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *2 (-920 *4 (-521 *5) *5)) (-5 *1 (-1092 *4 *5 *2)) (-4 *4 (-1018)) (-4 *5 (-823)))) (-3845 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-4 *2 (-823)) (-5 *1 (-1092 *3 *2 *4)) (-4 *4 (-920 *3 (-521 *2) *2)))) (-3845 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-4 *4 (-823)) (-5 *1 (-1092 *3 *4 *2)) (-4 *2 (-920 *3 (-521 *4) *4)))) (* (*1 *1 *2 *1) (-12 (-4 *3 (-1018)) (-4 *4 (-823)) (-5 *1 (-1092 *3 *4 *2)) (-4 *2 (-920 *3 (-521 *4) *4)))) (-1394 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *6)) (-5 *4 (-621 (-1122 *7))) (-4 *6 (-823)) (-4 *7 (-920 *5 (-521 *6) *6)) (-4 *5 (-1018)) (-5 *2 (-1 (-1122 *7) *7)) (-5 *1 (-1092 *5 *6 *7)))) (-3405 (*1 *1 *1 *2 *3) (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-4 *2 (-823)) (-5 *1 (-1092 *3 *2 *4)) (-4 *4 (-920 *3 (-521 *2) *2)))) (-2006 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1092 *4 *3 *5))) (-4 *4 (-38 (-400 (-549)))) (-4 *4 (-1018)) (-4 *3 (-823)) (-5 *1 (-1092 *4 *3 *5)) (-4 *5 (-920 *4 (-521 *3) *3)))))
+(-13 (-717 |#1| |#2|) (-10 -8 (-15 -4068 (|#3| $ (-747))) (-15 -3845 ($ |#2|)) (-15 -3845 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -1394 ((-1 (-1122 |#3|) |#3|) (-621 |#2|) (-621 (-1122 |#3|)))) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -3405 ($ $ |#2| |#1|)) (-15 -2006 ($ (-1 $) |#2| |#1|))) |%noBranch|)))
+((-3832 (((-112) $ $) 7)) (-4063 (((-621 (-2 (|:| -2679 $) (|:| -1358 (-621 |#4|)))) (-621 |#4|)) 85)) (-3587 (((-621 $) (-621 |#4|)) 86) (((-621 $) (-621 |#4|) (-112)) 111)) (-2270 (((-621 |#3|) $) 33)) (-3735 (((-112) $) 26)) (-2148 (((-112) $) 17 (|has| |#1| (-541)))) (-2210 (((-112) |#4| $) 101) (((-112) $) 97)) (-2156 ((|#4| |#4| $) 92)) (-3239 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 $))) |#4| $) 126)) (-3191 (((-2 (|:| |under| $) (|:| -1349 $) (|:| |upper| $)) $ |#3|) 27)) (-2850 (((-112) $ (-747)) 44)) (-1488 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4336))) (((-3 |#4| "failed") $ |#3|) 79)) (-3034 (($) 45 T CONST)) (-4291 (((-112) $) 22 (|has| |#1| (-541)))) (-1663 (((-112) $ $) 24 (|has| |#1| (-541)))) (-4226 (((-112) $ $) 23 (|has| |#1| (-541)))) (-2113 (((-112) $) 25 (|has| |#1| (-541)))) (-1409 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3480 (((-621 |#4|) (-621 |#4|) $) 18 (|has| |#1| (-541)))) (-2393 (((-621 |#4|) (-621 |#4|) $) 19 (|has| |#1| (-541)))) (-2712 (((-3 $ "failed") (-621 |#4|)) 36)) (-2657 (($ (-621 |#4|)) 35)) (-3656 (((-3 $ "failed") $) 82)) (-1852 ((|#4| |#4| $) 89)) (-3675 (($ $) 68 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ |#4| $) 67 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4336)))) (-1809 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-541)))) (-1804 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-1402 ((|#4| |#4| $) 87)) (-2556 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4336))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4336))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-3862 (((-2 (|:| -2679 (-621 |#4|)) (|:| -1358 (-621 |#4|))) $) 105)) (-4267 (((-112) |#4| $) 136)) (-2553 (((-112) |#4| $) 133)) (-3504 (((-112) |#4| $) 137) (((-112) $) 134)) (-2987 (((-621 |#4|) $) 52 (|has| $ (-6 -4336)))) (-2240 (((-112) |#4| $) 104) (((-112) $) 103)) (-2510 ((|#3| $) 34)) (-1777 (((-112) $ (-747)) 43)) (-3698 (((-621 |#4|) $) 53 (|has| $ (-6 -4336)))) (-1593 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#4| |#4|) $) 47)) (-3991 (((-621 |#3|) $) 32)) (-4192 (((-112) |#3| $) 31)) (-3942 (((-112) $ (-747)) 42)) (-3441 (((-1124) $) 9)) (-4246 (((-3 |#4| (-621 $)) |#4| |#4| $) 128)) (-3402 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 $))) |#4| |#4| $) 127)) (-3828 (((-3 |#4| "failed") $) 83)) (-2114 (((-621 $) |#4| $) 129)) (-3219 (((-3 (-112) (-621 $)) |#4| $) 132)) (-3287 (((-621 (-2 (|:| |val| (-112)) (|:| -1979 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-3869 (((-621 $) |#4| $) 125) (((-621 $) (-621 |#4|) $) 124) (((-621 $) (-621 |#4|) (-621 $)) 123) (((-621 $) |#4| (-621 $)) 122)) (-2214 (($ |#4| $) 117) (($ (-621 |#4|) $) 116)) (-1645 (((-621 |#4|) $) 107)) (-1304 (((-112) |#4| $) 99) (((-112) $) 95)) (-3603 ((|#4| |#4| $) 90)) (-3386 (((-112) $ $) 110)) (-2179 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-541)))) (-4122 (((-112) |#4| $) 100) (((-112) $) 96)) (-4244 ((|#4| |#4| $) 91)) (-3988 (((-1086) $) 10)) (-3645 (((-3 |#4| "failed") $) 84)) (-3959 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-1505 (((-3 $ "failed") $ |#4|) 78)) (-3796 (($ $ |#4|) 77) (((-621 $) |#4| $) 115) (((-621 $) |#4| (-621 $)) 114) (((-621 $) (-621 |#4|) $) 113) (((-621 $) (-621 |#4|) (-621 $)) 112)) (-3360 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 |#4|) (-621 |#4|)) 59 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-287 |#4|)) 57 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-621 (-287 |#4|))) 56 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))) (-2520 (((-112) $ $) 38)) (-2643 (((-112) $) 41)) (-3288 (($) 40)) (-3977 (((-747) $) 106)) (-3997 (((-747) |#4| $) 54 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) (((-747) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4336)))) (-2279 (($ $) 39)) (-2843 (((-525) $) 69 (|has| |#4| (-594 (-525))))) (-3853 (($ (-621 |#4|)) 60)) (-4085 (($ $ |#3|) 28)) (-2195 (($ $ |#3|) 30)) (-4292 (($ $) 88)) (-4285 (($ $ |#3|) 29)) (-3845 (((-834) $) 11) (((-621 |#4|) $) 37)) (-2503 (((-747) $) 76 (|has| |#3| (-361)))) (-2940 (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-3760 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) 98)) (-2008 (((-621 $) |#4| $) 121) (((-621 $) |#4| (-621 $)) 120) (((-621 $) (-621 |#4|) $) 119) (((-621 $) (-621 |#4|) (-621 $)) 118)) (-3025 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4336)))) (-4044 (((-621 |#3|) $) 81)) (-2930 (((-112) |#4| $) 135)) (-1993 (((-112) |#3| $) 80)) (-2387 (((-112) $ $) 6)) (-3774 (((-747) $) 46 (|has| $ (-6 -4336)))))
+(((-1093 |#1| |#2| |#3| |#4|) (-138) (-444) (-769) (-823) (-1032 |t#1| |t#2| |t#3|)) (T -1093))
+NIL
+(-13 (-1075 |t#1| |t#2| |t#3| |t#4|) (-760 |t#1| |t#2| |t#3| |t#4|))
+(((-34) . T) ((-101) . T) ((-593 (-621 |#4|)) . T) ((-593 (-834)) . T) ((-149 |#4|) . T) ((-594 (-525)) |has| |#4| (-594 (-525))) ((-302 |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))) ((-481 |#4|) . T) ((-505 |#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))) ((-760 |#1| |#2| |#3| |#4|) . T) ((-947 |#1| |#2| |#3| |#4|) . T) ((-1038 |#1| |#2| |#3| |#4|) . T) ((-1066) . T) ((-1075 |#1| |#2| |#3| |#4|) . T) ((-1172 |#1| |#2| |#3| |#4|) . T) ((-1179) . T))
+((-2310 (((-621 |#2|) |#1|) 12)) (-3430 (((-621 |#2|) |#2| |#2| |#2| |#2| |#2|) 41) (((-621 |#2|) |#1|) 52)) (-2647 (((-621 |#2|) |#2| |#2| |#2|) 39) (((-621 |#2|) |#1|) 50)) (-3250 ((|#2| |#1|) 46)) (-3388 (((-2 (|:| |solns| (-621 |#2|)) (|:| |maps| (-621 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|)) 17)) (-1391 (((-621 |#2|) |#2| |#2|) 38) (((-621 |#2|) |#1|) 49)) (-1975 (((-621 |#2|) |#2| |#2| |#2| |#2|) 40) (((-621 |#2|) |#1|) 51)) (-2829 ((|#2| |#2| |#2| |#2| |#2| |#2|) 45)) (-2831 ((|#2| |#2| |#2| |#2|) 43)) (-1762 ((|#2| |#2| |#2|) 42)) (-2374 ((|#2| |#2| |#2| |#2| |#2|) 44)))
+(((-1094 |#1| |#2|) (-10 -7 (-15 -2310 ((-621 |#2|) |#1|)) (-15 -3250 (|#2| |#1|)) (-15 -3388 ((-2 (|:| |solns| (-621 |#2|)) (|:| |maps| (-621 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -1391 ((-621 |#2|) |#1|)) (-15 -2647 ((-621 |#2|) |#1|)) (-15 -1975 ((-621 |#2|) |#1|)) (-15 -3430 ((-621 |#2|) |#1|)) (-15 -1391 ((-621 |#2|) |#2| |#2|)) (-15 -2647 ((-621 |#2|) |#2| |#2| |#2|)) (-15 -1975 ((-621 |#2|) |#2| |#2| |#2| |#2|)) (-15 -3430 ((-621 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -1762 (|#2| |#2| |#2|)) (-15 -2831 (|#2| |#2| |#2| |#2|)) (-15 -2374 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2829 (|#2| |#2| |#2| |#2| |#2| |#2|))) (-1201 |#2|) (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (T -1094))
+((-2829 (*1 *2 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *1 (-1094 *3 *2)) (-4 *3 (-1201 *2)))) (-2374 (*1 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *1 (-1094 *3 *2)) (-4 *3 (-1201 *2)))) (-2831 (*1 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *1 (-1094 *3 *2)) (-4 *3 (-1201 *2)))) (-1762 (*1 *2 *2 *2) (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *1 (-1094 *3 *2)) (-4 *3 (-1201 *2)))) (-3430 (*1 *2 *3 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *3)) (-5 *1 (-1094 *4 *3)) (-4 *4 (-1201 *3)))) (-1975 (*1 *2 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *3)) (-5 *1 (-1094 *4 *3)) (-4 *4 (-1201 *3)))) (-2647 (*1 *2 *3 *3 *3) (-12 (-4 *3 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *3)) (-5 *1 (-1094 *4 *3)) (-4 *4 (-1201 *3)))) (-1391 (*1 *2 *3 *3) (-12 (-4 *3 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *3)) (-5 *1 (-1094 *4 *3)) (-4 *4 (-1201 *3)))) (-3430 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *4)) (-5 *1 (-1094 *3 *4)) (-4 *3 (-1201 *4)))) (-1975 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *4)) (-5 *1 (-1094 *3 *4)) (-4 *3 (-1201 *4)))) (-2647 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *4)) (-5 *1 (-1094 *3 *4)) (-4 *3 (-1201 *4)))) (-1391 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *4)) (-5 *1 (-1094 *3 *4)) (-4 *3 (-1201 *4)))) (-3388 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *5 *5)) (-4 *5 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-2 (|:| |solns| (-621 *5)) (|:| |maps| (-621 (-2 (|:| |arg| *5) (|:| |res| *5)))))) (-5 *1 (-1094 *3 *5)) (-4 *3 (-1201 *5)))) (-3250 (*1 *2 *3) (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *1 (-1094 *3 *2)) (-4 *3 (-1201 *2)))) (-2310 (*1 *2 *3) (-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549))))))) (-5 *2 (-621 *4)) (-5 *1 (-1094 *3 *4)) (-4 *3 (-1201 *4)))))
+(-10 -7 (-15 -2310 ((-621 |#2|) |#1|)) (-15 -3250 (|#2| |#1|)) (-15 -3388 ((-2 (|:| |solns| (-621 |#2|)) (|:| |maps| (-621 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -1391 ((-621 |#2|) |#1|)) (-15 -2647 ((-621 |#2|) |#1|)) (-15 -1975 ((-621 |#2|) |#1|)) (-15 -3430 ((-621 |#2|) |#1|)) (-15 -1391 ((-621 |#2|) |#2| |#2|)) (-15 -2647 ((-621 |#2|) |#2| |#2| |#2|)) (-15 -1975 ((-621 |#2|) |#2| |#2| |#2| |#2|)) (-15 -3430 ((-621 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -1762 (|#2| |#2| |#2|)) (-15 -2831 (|#2| |#2| |#2| |#2|)) (-15 -2374 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2829 (|#2| |#2| |#2| |#2| |#2| |#2|)))
+((-4287 (((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-400 (-923 |#1|))))) 95) (((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-400 (-923 |#1|)))) (-621 (-1142))) 94) (((-621 (-621 (-287 (-309 |#1|)))) (-621 (-400 (-923 |#1|)))) 92) (((-621 (-621 (-287 (-309 |#1|)))) (-621 (-400 (-923 |#1|))) (-621 (-1142))) 90) (((-621 (-287 (-309 |#1|))) (-287 (-400 (-923 |#1|)))) 75) (((-621 (-287 (-309 |#1|))) (-287 (-400 (-923 |#1|))) (-1142)) 76) (((-621 (-287 (-309 |#1|))) (-400 (-923 |#1|))) 70) (((-621 (-287 (-309 |#1|))) (-400 (-923 |#1|)) (-1142)) 59)) (-3816 (((-621 (-621 (-309 |#1|))) (-621 (-400 (-923 |#1|))) (-621 (-1142))) 88) (((-621 (-309 |#1|)) (-400 (-923 |#1|)) (-1142)) 43)) (-3549 (((-1131 (-621 (-309 |#1|)) (-621 (-287 (-309 |#1|)))) (-400 (-923 |#1|)) (-1142)) 98) (((-1131 (-621 (-309 |#1|)) (-621 (-287 (-309 |#1|)))) (-287 (-400 (-923 |#1|))) (-1142)) 97)))
+(((-1095 |#1|) (-10 -7 (-15 -4287 ((-621 (-287 (-309 |#1|))) (-400 (-923 |#1|)) (-1142))) (-15 -4287 ((-621 (-287 (-309 |#1|))) (-400 (-923 |#1|)))) (-15 -4287 ((-621 (-287 (-309 |#1|))) (-287 (-400 (-923 |#1|))) (-1142))) (-15 -4287 ((-621 (-287 (-309 |#1|))) (-287 (-400 (-923 |#1|))))) (-15 -4287 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-400 (-923 |#1|))) (-621 (-1142)))) (-15 -4287 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-400 (-923 |#1|))))) (-15 -4287 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-400 (-923 |#1|)))) (-621 (-1142)))) (-15 -4287 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-400 (-923 |#1|)))))) (-15 -3816 ((-621 (-309 |#1|)) (-400 (-923 |#1|)) (-1142))) (-15 -3816 ((-621 (-621 (-309 |#1|))) (-621 (-400 (-923 |#1|))) (-621 (-1142)))) (-15 -3549 ((-1131 (-621 (-309 |#1|)) (-621 (-287 (-309 |#1|)))) (-287 (-400 (-923 |#1|))) (-1142))) (-15 -3549 ((-1131 (-621 (-309 |#1|)) (-621 (-287 (-309 |#1|)))) (-400 (-923 |#1|)) (-1142)))) (-13 (-300) (-823) (-145))) (T -1095))
+((-3549 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1142)) (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-1131 (-621 (-309 *5)) (-621 (-287 (-309 *5))))) (-5 *1 (-1095 *5)))) (-3549 (*1 *2 *3 *4) (-12 (-5 *3 (-287 (-400 (-923 *5)))) (-5 *4 (-1142)) (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-1131 (-621 (-309 *5)) (-621 (-287 (-309 *5))))) (-5 *1 (-1095 *5)))) (-3816 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-400 (-923 *5)))) (-5 *4 (-621 (-1142))) (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-621 (-309 *5)))) (-5 *1 (-1095 *5)))) (-3816 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1142)) (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-309 *5))) (-5 *1 (-1095 *5)))) (-4287 (*1 *2 *3) (-12 (-5 *3 (-621 (-287 (-400 (-923 *4))))) (-4 *4 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-621 (-287 (-309 *4))))) (-5 *1 (-1095 *4)))) (-4287 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-287 (-400 (-923 *5))))) (-5 *4 (-621 (-1142))) (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-621 (-287 (-309 *5))))) (-5 *1 (-1095 *5)))) (-4287 (*1 *2 *3) (-12 (-5 *3 (-621 (-400 (-923 *4)))) (-4 *4 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-621 (-287 (-309 *4))))) (-5 *1 (-1095 *4)))) (-4287 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-400 (-923 *5)))) (-5 *4 (-621 (-1142))) (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-621 (-287 (-309 *5))))) (-5 *1 (-1095 *5)))) (-4287 (*1 *2 *3) (-12 (-5 *3 (-287 (-400 (-923 *4)))) (-4 *4 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-287 (-309 *4)))) (-5 *1 (-1095 *4)))) (-4287 (*1 *2 *3 *4) (-12 (-5 *3 (-287 (-400 (-923 *5)))) (-5 *4 (-1142)) (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-287 (-309 *5)))) (-5 *1 (-1095 *5)))) (-4287 (*1 *2 *3) (-12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-287 (-309 *4)))) (-5 *1 (-1095 *4)))) (-4287 (*1 *2 *3 *4) (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1142)) (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-287 (-309 *5)))) (-5 *1 (-1095 *5)))))
+(-10 -7 (-15 -4287 ((-621 (-287 (-309 |#1|))) (-400 (-923 |#1|)) (-1142))) (-15 -4287 ((-621 (-287 (-309 |#1|))) (-400 (-923 |#1|)))) (-15 -4287 ((-621 (-287 (-309 |#1|))) (-287 (-400 (-923 |#1|))) (-1142))) (-15 -4287 ((-621 (-287 (-309 |#1|))) (-287 (-400 (-923 |#1|))))) (-15 -4287 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-400 (-923 |#1|))) (-621 (-1142)))) (-15 -4287 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-400 (-923 |#1|))))) (-15 -4287 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-400 (-923 |#1|)))) (-621 (-1142)))) (-15 -4287 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-400 (-923 |#1|)))))) (-15 -3816 ((-621 (-309 |#1|)) (-400 (-923 |#1|)) (-1142))) (-15 -3816 ((-621 (-621 (-309 |#1|))) (-621 (-400 (-923 |#1|))) (-621 (-1142)))) (-15 -3549 ((-1131 (-621 (-309 |#1|)) (-621 (-287 (-309 |#1|)))) (-287 (-400 (-923 |#1|))) (-1142))) (-15 -3549 ((-1131 (-621 (-309 |#1|)) (-621 (-287 (-309 |#1|)))) (-400 (-923 |#1|)) (-1142))))
+((-3433 (((-400 (-1138 (-309 |#1|))) (-1225 (-309 |#1|)) (-400 (-1138 (-309 |#1|))) (-549)) 29)) (-2278 (((-400 (-1138 (-309 |#1|))) (-400 (-1138 (-309 |#1|))) (-400 (-1138 (-309 |#1|))) (-400 (-1138 (-309 |#1|)))) 40)))
+(((-1096 |#1|) (-10 -7 (-15 -2278 ((-400 (-1138 (-309 |#1|))) (-400 (-1138 (-309 |#1|))) (-400 (-1138 (-309 |#1|))) (-400 (-1138 (-309 |#1|))))) (-15 -3433 ((-400 (-1138 (-309 |#1|))) (-1225 (-309 |#1|)) (-400 (-1138 (-309 |#1|))) (-549)))) (-13 (-541) (-823))) (T -1096))
+((-3433 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-400 (-1138 (-309 *5)))) (-5 *3 (-1225 (-309 *5))) (-5 *4 (-549)) (-4 *5 (-13 (-541) (-823))) (-5 *1 (-1096 *5)))) (-2278 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-400 (-1138 (-309 *3)))) (-4 *3 (-13 (-541) (-823))) (-5 *1 (-1096 *3)))))
+(-10 -7 (-15 -2278 ((-400 (-1138 (-309 |#1|))) (-400 (-1138 (-309 |#1|))) (-400 (-1138 (-309 |#1|))) (-400 (-1138 (-309 |#1|))))) (-15 -3433 ((-400 (-1138 (-309 |#1|))) (-1225 (-309 |#1|)) (-400 (-1138 (-309 |#1|))) (-549))))
+((-2310 (((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-309 |#1|))) (-621 (-1142))) 224) (((-621 (-287 (-309 |#1|))) (-309 |#1|) (-1142)) 20) (((-621 (-287 (-309 |#1|))) (-287 (-309 |#1|)) (-1142)) 26) (((-621 (-287 (-309 |#1|))) (-287 (-309 |#1|))) 25) (((-621 (-287 (-309 |#1|))) (-309 |#1|)) 21)))
+(((-1097 |#1|) (-10 -7 (-15 -2310 ((-621 (-287 (-309 |#1|))) (-309 |#1|))) (-15 -2310 ((-621 (-287 (-309 |#1|))) (-287 (-309 |#1|)))) (-15 -2310 ((-621 (-287 (-309 |#1|))) (-287 (-309 |#1|)) (-1142))) (-15 -2310 ((-621 (-287 (-309 |#1|))) (-309 |#1|) (-1142))) (-15 -2310 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-309 |#1|))) (-621 (-1142))))) (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (T -1097))
+((-2310 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-1142))) (-4 *5 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-621 (-621 (-287 (-309 *5))))) (-5 *1 (-1097 *5)) (-5 *3 (-621 (-287 (-309 *5)))))) (-2310 (*1 *2 *3 *4) (-12 (-5 *4 (-1142)) (-4 *5 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-621 (-287 (-309 *5)))) (-5 *1 (-1097 *5)) (-5 *3 (-309 *5)))) (-2310 (*1 *2 *3 *4) (-12 (-5 *4 (-1142)) (-4 *5 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-621 (-287 (-309 *5)))) (-5 *1 (-1097 *5)) (-5 *3 (-287 (-309 *5))))) (-2310 (*1 *2 *3) (-12 (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-621 (-287 (-309 *4)))) (-5 *1 (-1097 *4)) (-5 *3 (-287 (-309 *4))))) (-2310 (*1 *2 *3) (-12 (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145))) (-5 *2 (-621 (-287 (-309 *4)))) (-5 *1 (-1097 *4)) (-5 *3 (-309 *4)))))
+(-10 -7 (-15 -2310 ((-621 (-287 (-309 |#1|))) (-309 |#1|))) (-15 -2310 ((-621 (-287 (-309 |#1|))) (-287 (-309 |#1|)))) (-15 -2310 ((-621 (-287 (-309 |#1|))) (-287 (-309 |#1|)) (-1142))) (-15 -2310 ((-621 (-287 (-309 |#1|))) (-309 |#1|) (-1142))) (-15 -2310 ((-621 (-621 (-287 (-309 |#1|)))) (-621 (-287 (-309 |#1|))) (-621 (-1142)))))
+((-2653 ((|#2| |#2|) 20 (|has| |#1| (-823))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 17)) (-2038 ((|#2| |#2|) 19 (|has| |#1| (-823))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 16)))
+(((-1098 |#1| |#2|) (-10 -7 (-15 -2038 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -2653 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-823)) (PROGN (-15 -2038 (|#2| |#2|)) (-15 -2653 (|#2| |#2|))) |%noBranch|)) (-1179) (-13 (-584 (-549) |#1|) (-10 -7 (-6 -4336) (-6 -4337)))) (T -1098))
+((-2653 (*1 *2 *2) (-12 (-4 *3 (-823)) (-4 *3 (-1179)) (-5 *1 (-1098 *3 *2)) (-4 *2 (-13 (-584 (-549) *3) (-10 -7 (-6 -4336) (-6 -4337)))))) (-2038 (*1 *2 *2) (-12 (-4 *3 (-823)) (-4 *3 (-1179)) (-5 *1 (-1098 *3 *2)) (-4 *2 (-13 (-584 (-549) *3) (-10 -7 (-6 -4336) (-6 -4337)))))) (-2653 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1179)) (-5 *1 (-1098 *4 *2)) (-4 *2 (-13 (-584 (-549) *4) (-10 -7 (-6 -4336) (-6 -4337)))))) (-2038 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1179)) (-5 *1 (-1098 *4 *2)) (-4 *2 (-13 (-584 (-549) *4) (-10 -7 (-6 -4336) (-6 -4337)))))))
+(-10 -7 (-15 -2038 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -2653 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-823)) (PROGN (-15 -2038 (|#2| |#2|)) (-15 -2653 (|#2| |#2|))) |%noBranch|))
+((-3832 (((-112) $ $) NIL)) (-1788 (((-1130 3 |#1|) $) 107)) (-4242 (((-112) $) 72)) (-2763 (($ $ (-621 (-914 |#1|))) 20) (($ $ (-621 (-621 |#1|))) 75) (($ (-621 (-914 |#1|))) 74) (((-621 (-914 |#1|)) $) 73)) (-2614 (((-112) $) 41)) (-2796 (($ $ (-914 |#1|)) 46) (($ $ (-621 |#1|)) 51) (($ $ (-747)) 53) (($ (-914 |#1|)) 47) (((-914 |#1|) $) 45)) (-1848 (((-2 (|:| -2359 (-747)) (|:| |curves| (-747)) (|:| |polygons| (-747)) (|:| |constructs| (-747))) $) 105)) (-2116 (((-747) $) 26)) (-1872 (((-747) $) 25)) (-2325 (($ $ (-747) (-914 |#1|)) 39)) (-3876 (((-112) $) 82)) (-2317 (($ $ (-621 (-621 (-914 |#1|))) (-621 (-169)) (-169)) 89) (($ $ (-621 (-621 (-621 |#1|))) (-621 (-169)) (-169)) 91) (($ $ (-621 (-621 (-914 |#1|))) (-112) (-112)) 85) (($ $ (-621 (-621 (-621 |#1|))) (-112) (-112)) 93) (($ (-621 (-621 (-914 |#1|)))) 86) (($ (-621 (-621 (-914 |#1|))) (-112) (-112)) 87) (((-621 (-621 (-914 |#1|))) $) 84)) (-3050 (($ (-621 $)) 28) (($ $ $) 29)) (-2512 (((-621 (-169)) $) 102)) (-2788 (((-621 (-914 |#1|)) $) 96)) (-2782 (((-621 (-621 (-169))) $) 101)) (-3116 (((-621 (-621 (-621 (-914 |#1|)))) $) NIL)) (-2611 (((-621 (-621 (-621 (-747)))) $) 99)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3638 (((-747) $ (-621 (-914 |#1|))) 37)) (-4283 (((-112) $) 54)) (-1906 (($ $ (-621 (-914 |#1|))) 56) (($ $ (-621 (-621 |#1|))) 62) (($ (-621 (-914 |#1|))) 57) (((-621 (-914 |#1|)) $) 55)) (-1929 (($) 23) (($ (-1130 3 |#1|)) 24)) (-2279 (($ $) 35)) (-1258 (((-621 $) $) 34)) (-1582 (($ (-621 $)) 31)) (-3669 (((-621 $) $) 33)) (-3845 (((-834) $) 111)) (-3107 (((-112) $) 64)) (-1798 (($ $ (-621 (-914 |#1|))) 66) (($ $ (-621 (-621 |#1|))) 69) (($ (-621 (-914 |#1|))) 67) (((-621 (-914 |#1|)) $) 65)) (-1282 (($ $) 106)) (-2387 (((-112) $ $) NIL)))
+(((-1099 |#1|) (-1100 |#1|) (-1018)) (T -1099))
+NIL
+(-1100 |#1|)
+((-3832 (((-112) $ $) 7)) (-1788 (((-1130 3 |#1|) $) 13)) (-4242 (((-112) $) 29)) (-2763 (($ $ (-621 (-914 |#1|))) 33) (($ $ (-621 (-621 |#1|))) 32) (($ (-621 (-914 |#1|))) 31) (((-621 (-914 |#1|)) $) 30)) (-2614 (((-112) $) 44)) (-2796 (($ $ (-914 |#1|)) 49) (($ $ (-621 |#1|)) 48) (($ $ (-747)) 47) (($ (-914 |#1|)) 46) (((-914 |#1|) $) 45)) (-1848 (((-2 (|:| -2359 (-747)) (|:| |curves| (-747)) (|:| |polygons| (-747)) (|:| |constructs| (-747))) $) 15)) (-2116 (((-747) $) 58)) (-1872 (((-747) $) 59)) (-2325 (($ $ (-747) (-914 |#1|)) 50)) (-3876 (((-112) $) 21)) (-2317 (($ $ (-621 (-621 (-914 |#1|))) (-621 (-169)) (-169)) 28) (($ $ (-621 (-621 (-621 |#1|))) (-621 (-169)) (-169)) 27) (($ $ (-621 (-621 (-914 |#1|))) (-112) (-112)) 26) (($ $ (-621 (-621 (-621 |#1|))) (-112) (-112)) 25) (($ (-621 (-621 (-914 |#1|)))) 24) (($ (-621 (-621 (-914 |#1|))) (-112) (-112)) 23) (((-621 (-621 (-914 |#1|))) $) 22)) (-3050 (($ (-621 $)) 57) (($ $ $) 56)) (-2512 (((-621 (-169)) $) 16)) (-2788 (((-621 (-914 |#1|)) $) 20)) (-2782 (((-621 (-621 (-169))) $) 17)) (-3116 (((-621 (-621 (-621 (-914 |#1|)))) $) 18)) (-2611 (((-621 (-621 (-621 (-747)))) $) 19)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3638 (((-747) $ (-621 (-914 |#1|))) 51)) (-4283 (((-112) $) 39)) (-1906 (($ $ (-621 (-914 |#1|))) 43) (($ $ (-621 (-621 |#1|))) 42) (($ (-621 (-914 |#1|))) 41) (((-621 (-914 |#1|)) $) 40)) (-1929 (($) 61) (($ (-1130 3 |#1|)) 60)) (-2279 (($ $) 52)) (-1258 (((-621 $) $) 53)) (-1582 (($ (-621 $)) 55)) (-3669 (((-621 $) $) 54)) (-3845 (((-834) $) 11)) (-3107 (((-112) $) 34)) (-1798 (($ $ (-621 (-914 |#1|))) 38) (($ $ (-621 (-621 |#1|))) 37) (($ (-621 (-914 |#1|))) 36) (((-621 (-914 |#1|)) $) 35)) (-1282 (($ $) 14)) (-2387 (((-112) $ $) 6)))
+(((-1100 |#1|) (-138) (-1018)) (T -1100))
+((-3845 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-834)))) (-1929 (*1 *1) (-12 (-4 *1 (-1100 *2)) (-4 *2 (-1018)))) (-1929 (*1 *1 *2) (-12 (-5 *2 (-1130 3 *3)) (-4 *3 (-1018)) (-4 *1 (-1100 *3)))) (-1872 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-747)))) (-2116 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-747)))) (-3050 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-1100 *3)) (-4 *3 (-1018)))) (-3050 (*1 *1 *1 *1) (-12 (-4 *1 (-1100 *2)) (-4 *2 (-1018)))) (-1582 (*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-1100 *3)) (-4 *3 (-1018)))) (-3669 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-5 *2 (-621 *1)) (-4 *1 (-1100 *3)))) (-1258 (*1 *2 *1) (-12 (-4 *3 (-1018)) (-5 *2 (-621 *1)) (-4 *1 (-1100 *3)))) (-2279 (*1 *1 *1) (-12 (-4 *1 (-1100 *2)) (-4 *2 (-1018)))) (-3638 (*1 *2 *1 *3) (-12 (-5 *3 (-621 (-914 *4))) (-4 *1 (-1100 *4)) (-4 *4 (-1018)) (-5 *2 (-747)))) (-2325 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *3 (-914 *4)) (-4 *1 (-1100 *4)) (-4 *4 (-1018)))) (-2796 (*1 *1 *1 *2) (-12 (-5 *2 (-914 *3)) (-4 *1 (-1100 *3)) (-4 *3 (-1018)))) (-2796 (*1 *1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *1 (-1100 *3)) (-4 *3 (-1018)))) (-2796 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1100 *3)) (-4 *3 (-1018)))) (-2796 (*1 *1 *2) (-12 (-5 *2 (-914 *3)) (-4 *3 (-1018)) (-4 *1 (-1100 *3)))) (-2796 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-914 *3)))) (-2614 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))) (-1906 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-914 *3))) (-4 *1 (-1100 *3)) (-4 *3 (-1018)))) (-1906 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *1 (-1100 *3)) (-4 *3 (-1018)))) (-1906 (*1 *1 *2) (-12 (-5 *2 (-621 (-914 *3))) (-4 *3 (-1018)) (-4 *1 (-1100 *3)))) (-1906 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-914 *3))))) (-4283 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))) (-1798 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-914 *3))) (-4 *1 (-1100 *3)) (-4 *3 (-1018)))) (-1798 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *1 (-1100 *3)) (-4 *3 (-1018)))) (-1798 (*1 *1 *2) (-12 (-5 *2 (-621 (-914 *3))) (-4 *3 (-1018)) (-4 *1 (-1100 *3)))) (-1798 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-914 *3))))) (-3107 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))) (-2763 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-914 *3))) (-4 *1 (-1100 *3)) (-4 *3 (-1018)))) (-2763 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *1 (-1100 *3)) (-4 *3 (-1018)))) (-2763 (*1 *1 *2) (-12 (-5 *2 (-621 (-914 *3))) (-4 *3 (-1018)) (-4 *1 (-1100 *3)))) (-2763 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-914 *3))))) (-4242 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))) (-2317 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-621 (-621 (-914 *5)))) (-5 *3 (-621 (-169))) (-5 *4 (-169)) (-4 *1 (-1100 *5)) (-4 *5 (-1018)))) (-2317 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-621 (-621 (-621 *5)))) (-5 *3 (-621 (-169))) (-5 *4 (-169)) (-4 *1 (-1100 *5)) (-4 *5 (-1018)))) (-2317 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-621 (-621 (-914 *4)))) (-5 *3 (-112)) (-4 *1 (-1100 *4)) (-4 *4 (-1018)))) (-2317 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-621 (-621 (-621 *4)))) (-5 *3 (-112)) (-4 *1 (-1100 *4)) (-4 *4 (-1018)))) (-2317 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 (-914 *3)))) (-4 *3 (-1018)) (-4 *1 (-1100 *3)))) (-2317 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-621 (-621 (-914 *4)))) (-5 *3 (-112)) (-4 *4 (-1018)) (-4 *1 (-1100 *4)))) (-2317 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-621 (-914 *3)))))) (-3876 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))) (-2788 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-914 *3))))) (-2611 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-621 (-621 (-747))))))) (-3116 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-621 (-621 (-914 *3))))))) (-2782 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-621 (-169)))))) (-2512 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-169))))) (-1848 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| -2359 (-747)) (|:| |curves| (-747)) (|:| |polygons| (-747)) (|:| |constructs| (-747)))))) (-1282 (*1 *1 *1) (-12 (-4 *1 (-1100 *2)) (-4 *2 (-1018)))) (-1788 (*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-1130 3 *3)))))
+(-13 (-1066) (-10 -8 (-15 -1929 ($)) (-15 -1929 ($ (-1130 3 |t#1|))) (-15 -1872 ((-747) $)) (-15 -2116 ((-747) $)) (-15 -3050 ($ (-621 $))) (-15 -3050 ($ $ $)) (-15 -1582 ($ (-621 $))) (-15 -3669 ((-621 $) $)) (-15 -1258 ((-621 $) $)) (-15 -2279 ($ $)) (-15 -3638 ((-747) $ (-621 (-914 |t#1|)))) (-15 -2325 ($ $ (-747) (-914 |t#1|))) (-15 -2796 ($ $ (-914 |t#1|))) (-15 -2796 ($ $ (-621 |t#1|))) (-15 -2796 ($ $ (-747))) (-15 -2796 ($ (-914 |t#1|))) (-15 -2796 ((-914 |t#1|) $)) (-15 -2614 ((-112) $)) (-15 -1906 ($ $ (-621 (-914 |t#1|)))) (-15 -1906 ($ $ (-621 (-621 |t#1|)))) (-15 -1906 ($ (-621 (-914 |t#1|)))) (-15 -1906 ((-621 (-914 |t#1|)) $)) (-15 -4283 ((-112) $)) (-15 -1798 ($ $ (-621 (-914 |t#1|)))) (-15 -1798 ($ $ (-621 (-621 |t#1|)))) (-15 -1798 ($ (-621 (-914 |t#1|)))) (-15 -1798 ((-621 (-914 |t#1|)) $)) (-15 -3107 ((-112) $)) (-15 -2763 ($ $ (-621 (-914 |t#1|)))) (-15 -2763 ($ $ (-621 (-621 |t#1|)))) (-15 -2763 ($ (-621 (-914 |t#1|)))) (-15 -2763 ((-621 (-914 |t#1|)) $)) (-15 -4242 ((-112) $)) (-15 -2317 ($ $ (-621 (-621 (-914 |t#1|))) (-621 (-169)) (-169))) (-15 -2317 ($ $ (-621 (-621 (-621 |t#1|))) (-621 (-169)) (-169))) (-15 -2317 ($ $ (-621 (-621 (-914 |t#1|))) (-112) (-112))) (-15 -2317 ($ $ (-621 (-621 (-621 |t#1|))) (-112) (-112))) (-15 -2317 ($ (-621 (-621 (-914 |t#1|))))) (-15 -2317 ($ (-621 (-621 (-914 |t#1|))) (-112) (-112))) (-15 -2317 ((-621 (-621 (-914 |t#1|))) $)) (-15 -3876 ((-112) $)) (-15 -2788 ((-621 (-914 |t#1|)) $)) (-15 -2611 ((-621 (-621 (-621 (-747)))) $)) (-15 -3116 ((-621 (-621 (-621 (-914 |t#1|)))) $)) (-15 -2782 ((-621 (-621 (-169))) $)) (-15 -2512 ((-621 (-169)) $)) (-15 -1848 ((-2 (|:| -2359 (-747)) (|:| |curves| (-747)) (|:| |polygons| (-747)) (|:| |constructs| (-747))) $)) (-15 -1282 ($ $)) (-15 -1788 ((-1130 3 |t#1|) $)) (-15 -3845 ((-834) $))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 162) (((-1147) $) 7) (($ (-1147)) NIL)) (-3263 (((-112) $ (|[\|\|]| (-515))) 17) (((-112) $ (|[\|\|]| (-212))) 21) (((-112) $ (|[\|\|]| (-652))) 25) (((-112) $ (|[\|\|]| (-1235))) 29) (((-112) $ (|[\|\|]| (-137))) 33) (((-112) $ (|[\|\|]| (-132))) 37) (((-112) $ (|[\|\|]| (-1081))) 41) (((-112) $ (|[\|\|]| (-95))) 45) (((-112) $ (|[\|\|]| (-657))) 49) (((-112) $ (|[\|\|]| (-508))) 53) (((-112) $ (|[\|\|]| (-1033))) 57) (((-112) $ (|[\|\|]| (-1236))) 61) (((-112) $ (|[\|\|]| (-516))) 65) (((-112) $ (|[\|\|]| (-152))) 69) (((-112) $ (|[\|\|]| (-647))) 73) (((-112) $ (|[\|\|]| (-304))) 77) (((-112) $ (|[\|\|]| (-1007))) 81) (((-112) $ (|[\|\|]| (-178))) 85) (((-112) $ (|[\|\|]| (-941))) 89) (((-112) $ (|[\|\|]| (-1040))) 93) (((-112) $ (|[\|\|]| (-1056))) 97) (((-112) $ (|[\|\|]| (-1062))) 101) (((-112) $ (|[\|\|]| (-604))) 105) (((-112) $ (|[\|\|]| (-1132))) 109) (((-112) $ (|[\|\|]| (-154))) 113) (((-112) $ (|[\|\|]| (-136))) 117) (((-112) $ (|[\|\|]| (-470))) 121) (((-112) $ (|[\|\|]| (-573))) 125)) (-2319 (((-515) $) 18) (((-212) $) 22) (((-652) $) 26) (((-1235) $) 30) (((-137) $) 34) (((-132) $) 38) (((-1081) $) 42) (((-95) $) 46) (((-657) $) 50) (((-508) $) 54) (((-1033) $) 58) (((-1236) $) 62) (((-516) $) 66) (((-152) $) 70) (((-647) $) 74) (((-304) $) 78) (((-1007) $) 82) (((-178) $) 86) (((-941) $) 90) (((-1040) $) 94) (((-1056) $) 98) (((-1062) $) 102) (((-604) $) 106) (((-1132) $) 110) (((-154) $) 114) (((-136) $) 118) (((-470) $) 122) (((-573) $) 126)) (-2387 (((-112) $ $) NIL)))
+(((-1101) (-1103)) (T -1101))
+NIL
+(-1103)
+((-3381 (((-621 (-1147)) (-1124)) 9)))
+(((-1102) (-10 -7 (-15 -3381 ((-621 (-1147)) (-1124))))) (T -1102))
+((-3381 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-621 (-1147))) (-5 *1 (-1102)))))
+(-10 -7 (-15 -3381 ((-621 (-1147)) (-1124))))
+((-3832 (((-112) $ $) 7)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11) (((-1147) $) 15) (($ (-1147)) 14)) (-3263 (((-112) $ (|[\|\|]| (-515))) 74) (((-112) $ (|[\|\|]| (-212))) 72) (((-112) $ (|[\|\|]| (-652))) 70) (((-112) $ (|[\|\|]| (-1235))) 68) (((-112) $ (|[\|\|]| (-137))) 66) (((-112) $ (|[\|\|]| (-132))) 64) (((-112) $ (|[\|\|]| (-1081))) 62) (((-112) $ (|[\|\|]| (-95))) 60) (((-112) $ (|[\|\|]| (-657))) 58) (((-112) $ (|[\|\|]| (-508))) 56) (((-112) $ (|[\|\|]| (-1033))) 54) (((-112) $ (|[\|\|]| (-1236))) 52) (((-112) $ (|[\|\|]| (-516))) 50) (((-112) $ (|[\|\|]| (-152))) 48) (((-112) $ (|[\|\|]| (-647))) 46) (((-112) $ (|[\|\|]| (-304))) 44) (((-112) $ (|[\|\|]| (-1007))) 42) (((-112) $ (|[\|\|]| (-178))) 40) (((-112) $ (|[\|\|]| (-941))) 38) (((-112) $ (|[\|\|]| (-1040))) 36) (((-112) $ (|[\|\|]| (-1056))) 34) (((-112) $ (|[\|\|]| (-1062))) 32) (((-112) $ (|[\|\|]| (-604))) 30) (((-112) $ (|[\|\|]| (-1132))) 28) (((-112) $ (|[\|\|]| (-154))) 26) (((-112) $ (|[\|\|]| (-136))) 24) (((-112) $ (|[\|\|]| (-470))) 22) (((-112) $ (|[\|\|]| (-573))) 20)) (-2319 (((-515) $) 73) (((-212) $) 71) (((-652) $) 69) (((-1235) $) 67) (((-137) $) 65) (((-132) $) 63) (((-1081) $) 61) (((-95) $) 59) (((-657) $) 57) (((-508) $) 55) (((-1033) $) 53) (((-1236) $) 51) (((-516) $) 49) (((-152) $) 47) (((-647) $) 45) (((-304) $) 43) (((-1007) $) 41) (((-178) $) 39) (((-941) $) 37) (((-1040) $) 35) (((-1056) $) 33) (((-1062) $) 31) (((-604) $) 29) (((-1132) $) 27) (((-154) $) 25) (((-136) $) 23) (((-470) $) 21) (((-573) $) 19)) (-2387 (((-112) $ $) 6)))
+(((-1103) (-138)) (T -1103))
+((-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-515))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-515)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-212))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-212)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-652))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-652)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1235))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1235)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-137))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-137)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-132))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-132)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1081))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1081)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-95))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-95)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-657))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-657)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-508))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-508)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1033))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1033)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1236))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1236)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-516))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-516)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-152))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-152)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-647))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-647)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-304))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-304)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1007))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1007)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-178))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-178)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-941))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-941)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1040))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1040)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1056))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1056)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1062))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1062)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-604))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-604)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1132))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1132)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-154))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-154)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-136))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-136)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-470))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-470)))) (-3263 (*1 *2 *1 *3) (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-573))) (-5 *2 (-112)))) (-2319 (*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-573)))))
+(-13 (-1049) (-1220) (-10 -8 (-15 -3263 ((-112) $ (|[\|\|]| (-515)))) (-15 -2319 ((-515) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-212)))) (-15 -2319 ((-212) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-652)))) (-15 -2319 ((-652) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-1235)))) (-15 -2319 ((-1235) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-137)))) (-15 -2319 ((-137) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-132)))) (-15 -2319 ((-132) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-1081)))) (-15 -2319 ((-1081) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-95)))) (-15 -2319 ((-95) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-657)))) (-15 -2319 ((-657) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-508)))) (-15 -2319 ((-508) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-1033)))) (-15 -2319 ((-1033) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-1236)))) (-15 -2319 ((-1236) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-516)))) (-15 -2319 ((-516) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-152)))) (-15 -2319 ((-152) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-647)))) (-15 -2319 ((-647) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-304)))) (-15 -2319 ((-304) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-1007)))) (-15 -2319 ((-1007) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-178)))) (-15 -2319 ((-178) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-941)))) (-15 -2319 ((-941) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-1040)))) (-15 -2319 ((-1040) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-1056)))) (-15 -2319 ((-1056) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-1062)))) (-15 -2319 ((-1062) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-604)))) (-15 -2319 ((-604) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-1132)))) (-15 -2319 ((-1132) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-154)))) (-15 -2319 ((-154) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-136)))) (-15 -2319 ((-136) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-470)))) (-15 -2319 ((-470) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-573)))) (-15 -2319 ((-573) $))))
+(((-92) . T) ((-101) . T) ((-593 (-834)) . T) ((-593 (-1147)) . T) ((-1066) . T) ((-1049) . T) ((-1220) . T))
+((-1478 (((-1230) (-621 (-834))) 23) (((-1230) (-834)) 22)) (-2605 (((-1230) (-621 (-834))) 21) (((-1230) (-834)) 20)) (-3314 (((-1230) (-621 (-834))) 19) (((-1230) (-834)) 11) (((-1230) (-1124) (-834)) 17)))
+(((-1104) (-10 -7 (-15 -3314 ((-1230) (-1124) (-834))) (-15 -3314 ((-1230) (-834))) (-15 -2605 ((-1230) (-834))) (-15 -1478 ((-1230) (-834))) (-15 -3314 ((-1230) (-621 (-834)))) (-15 -2605 ((-1230) (-621 (-834)))) (-15 -1478 ((-1230) (-621 (-834)))))) (T -1104))
+((-1478 (*1 *2 *3) (-12 (-5 *3 (-621 (-834))) (-5 *2 (-1230)) (-5 *1 (-1104)))) (-2605 (*1 *2 *3) (-12 (-5 *3 (-621 (-834))) (-5 *2 (-1230)) (-5 *1 (-1104)))) (-3314 (*1 *2 *3) (-12 (-5 *3 (-621 (-834))) (-5 *2 (-1230)) (-5 *1 (-1104)))) (-1478 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1230)) (-5 *1 (-1104)))) (-2605 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1230)) (-5 *1 (-1104)))) (-3314 (*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1230)) (-5 *1 (-1104)))) (-3314 (*1 *2 *3 *4) (-12 (-5 *3 (-1124)) (-5 *4 (-834)) (-5 *2 (-1230)) (-5 *1 (-1104)))))
+(-10 -7 (-15 -3314 ((-1230) (-1124) (-834))) (-15 -3314 ((-1230) (-834))) (-15 -2605 ((-1230) (-834))) (-15 -1478 ((-1230) (-834))) (-15 -3314 ((-1230) (-621 (-834)))) (-15 -2605 ((-1230) (-621 (-834)))) (-15 -1478 ((-1230) (-621 (-834)))))
+((-2974 (($ $ $) 10)) (-2711 (($ $) 9)) (-3146 (($ $ $) 13)) (-4288 (($ $ $) 15)) (-3112 (($ $ $) 12)) (-2052 (($ $ $) 14)) (-3241 (($ $) 17)) (-2016 (($ $) 16)) (-2199 (($ $) 6)) (-3695 (($ $ $) 11) (($ $) 7)) (-2051 (($ $ $) 8)))
+(((-1105) (-138)) (T -1105))
+((-3241 (*1 *1 *1) (-4 *1 (-1105))) (-2016 (*1 *1 *1) (-4 *1 (-1105))) (-4288 (*1 *1 *1 *1) (-4 *1 (-1105))) (-2052 (*1 *1 *1 *1) (-4 *1 (-1105))) (-3146 (*1 *1 *1 *1) (-4 *1 (-1105))) (-3112 (*1 *1 *1 *1) (-4 *1 (-1105))) (-3695 (*1 *1 *1 *1) (-4 *1 (-1105))) (-2974 (*1 *1 *1 *1) (-4 *1 (-1105))) (-2711 (*1 *1 *1) (-4 *1 (-1105))) (-2051 (*1 *1 *1 *1) (-4 *1 (-1105))) (-3695 (*1 *1 *1) (-4 *1 (-1105))) (-2199 (*1 *1 *1) (-4 *1 (-1105))))
+(-13 (-10 -8 (-15 -2199 ($ $)) (-15 -3695 ($ $)) (-15 -2051 ($ $ $)) (-15 -2711 ($ $)) (-15 -2974 ($ $ $)) (-15 -3695 ($ $ $)) (-15 -3112 ($ $ $)) (-15 -3146 ($ $ $)) (-15 -2052 ($ $ $)) (-15 -4288 ($ $ $)) (-15 -2016 ($ $)) (-15 -3241 ($ $))))
+((-3832 (((-112) $ $) 41)) (-4160 ((|#1| $) 15)) (-3589 (((-112) $ $ (-1 (-112) |#2| |#2|)) 36)) (-1463 (((-112) $) 17)) (-2048 (($ $ |#1|) 28)) (-3394 (($ $ (-112)) 30)) (-3970 (($ $) 31)) (-3073 (($ $ |#2|) 29)) (-3441 (((-1124) $) NIL)) (-1305 (((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|)) 35)) (-3988 (((-1086) $) NIL)) (-2643 (((-112) $) 14)) (-3288 (($) 10)) (-2279 (($ $) 27)) (-3853 (($ |#1| |#2| (-112)) 18) (($ |#1| |#2|) 19) (($ (-2 (|:| |val| |#1|) (|:| -1979 |#2|))) 21) (((-621 $) (-621 (-2 (|:| |val| |#1|) (|:| -1979 |#2|)))) 24) (((-621 $) |#1| (-621 |#2|)) 26)) (-1925 ((|#2| $) 16)) (-3845 (((-834) $) 50)) (-2387 (((-112) $ $) 39)))
+(((-1106 |#1| |#2|) (-13 (-1066) (-10 -8 (-15 -3288 ($)) (-15 -2643 ((-112) $)) (-15 -4160 (|#1| $)) (-15 -1925 (|#2| $)) (-15 -1463 ((-112) $)) (-15 -3853 ($ |#1| |#2| (-112))) (-15 -3853 ($ |#1| |#2|)) (-15 -3853 ($ (-2 (|:| |val| |#1|) (|:| -1979 |#2|)))) (-15 -3853 ((-621 $) (-621 (-2 (|:| |val| |#1|) (|:| -1979 |#2|))))) (-15 -3853 ((-621 $) |#1| (-621 |#2|))) (-15 -2279 ($ $)) (-15 -2048 ($ $ |#1|)) (-15 -3073 ($ $ |#2|)) (-15 -3394 ($ $ (-112))) (-15 -3970 ($ $)) (-15 -1305 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -3589 ((-112) $ $ (-1 (-112) |#2| |#2|))))) (-13 (-1066) (-34)) (-13 (-1066) (-34))) (T -1106))
+((-3288 (*1 *1) (-12 (-5 *1 (-1106 *2 *3)) (-4 *2 (-13 (-1066) (-34))) (-4 *3 (-13 (-1066) (-34))))) (-2643 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1106 *3 *4)) (-4 *3 (-13 (-1066) (-34))) (-4 *4 (-13 (-1066) (-34))))) (-4160 (*1 *2 *1) (-12 (-4 *2 (-13 (-1066) (-34))) (-5 *1 (-1106 *2 *3)) (-4 *3 (-13 (-1066) (-34))))) (-1925 (*1 *2 *1) (-12 (-4 *2 (-13 (-1066) (-34))) (-5 *1 (-1106 *3 *2)) (-4 *3 (-13 (-1066) (-34))))) (-1463 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1106 *3 *4)) (-4 *3 (-13 (-1066) (-34))) (-4 *4 (-13 (-1066) (-34))))) (-3853 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *1 (-1106 *2 *3)) (-4 *2 (-13 (-1066) (-34))) (-4 *3 (-13 (-1066) (-34))))) (-3853 (*1 *1 *2 *3) (-12 (-5 *1 (-1106 *2 *3)) (-4 *2 (-13 (-1066) (-34))) (-4 *3 (-13 (-1066) (-34))))) (-3853 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -1979 *4))) (-4 *3 (-13 (-1066) (-34))) (-4 *4 (-13 (-1066) (-34))) (-5 *1 (-1106 *3 *4)))) (-3853 (*1 *2 *3) (-12 (-5 *3 (-621 (-2 (|:| |val| *4) (|:| -1979 *5)))) (-4 *4 (-13 (-1066) (-34))) (-4 *5 (-13 (-1066) (-34))) (-5 *2 (-621 (-1106 *4 *5))) (-5 *1 (-1106 *4 *5)))) (-3853 (*1 *2 *3 *4) (-12 (-5 *4 (-621 *5)) (-4 *5 (-13 (-1066) (-34))) (-5 *2 (-621 (-1106 *3 *5))) (-5 *1 (-1106 *3 *5)) (-4 *3 (-13 (-1066) (-34))))) (-2279 (*1 *1 *1) (-12 (-5 *1 (-1106 *2 *3)) (-4 *2 (-13 (-1066) (-34))) (-4 *3 (-13 (-1066) (-34))))) (-2048 (*1 *1 *1 *2) (-12 (-5 *1 (-1106 *2 *3)) (-4 *2 (-13 (-1066) (-34))) (-4 *3 (-13 (-1066) (-34))))) (-3073 (*1 *1 *1 *2) (-12 (-5 *1 (-1106 *3 *2)) (-4 *3 (-13 (-1066) (-34))) (-4 *2 (-13 (-1066) (-34))))) (-3394 (*1 *1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1106 *3 *4)) (-4 *3 (-13 (-1066) (-34))) (-4 *4 (-13 (-1066) (-34))))) (-3970 (*1 *1 *1) (-12 (-5 *1 (-1106 *2 *3)) (-4 *2 (-13 (-1066) (-34))) (-4 *3 (-13 (-1066) (-34))))) (-1305 (*1 *2 *1 *1 *3 *4) (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1066) (-34))) (-4 *6 (-13 (-1066) (-34))) (-5 *2 (-112)) (-5 *1 (-1106 *5 *6)))) (-3589 (*1 *2 *1 *1 *3) (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1066) (-34))) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5)) (-4 *4 (-13 (-1066) (-34))))))
+(-13 (-1066) (-10 -8 (-15 -3288 ($)) (-15 -2643 ((-112) $)) (-15 -4160 (|#1| $)) (-15 -1925 (|#2| $)) (-15 -1463 ((-112) $)) (-15 -3853 ($ |#1| |#2| (-112))) (-15 -3853 ($ |#1| |#2|)) (-15 -3853 ($ (-2 (|:| |val| |#1|) (|:| -1979 |#2|)))) (-15 -3853 ((-621 $) (-621 (-2 (|:| |val| |#1|) (|:| -1979 |#2|))))) (-15 -3853 ((-621 $) |#1| (-621 |#2|))) (-15 -2279 ($ $)) (-15 -2048 ($ $ |#1|)) (-15 -3073 ($ $ |#2|)) (-15 -3394 ($ $ (-112))) (-15 -3970 ($ $)) (-15 -1305 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -3589 ((-112) $ $ (-1 (-112) |#2| |#2|)))))
+((-3832 (((-112) $ $) NIL (|has| (-1106 |#1| |#2|) (-1066)))) (-4160 (((-1106 |#1| |#2|) $) 25)) (-1924 (($ $) 76)) (-1544 (((-112) (-1106 |#1| |#2|) $ (-1 (-112) |#2| |#2|)) 85)) (-2353 (($ $ $ (-621 (-1106 |#1| |#2|))) 90) (($ $ $ (-621 (-1106 |#1| |#2|)) (-1 (-112) |#2| |#2|)) 91)) (-2850 (((-112) $ (-747)) NIL)) (-2797 (((-1106 |#1| |#2|) $ (-1106 |#1| |#2|)) 43 (|has| $ (-6 -4337)))) (-2250 (((-1106 |#1| |#2|) $ "value" (-1106 |#1| |#2|)) NIL (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) 41 (|has| $ (-6 -4337)))) (-3034 (($) NIL T CONST)) (-1498 (((-621 (-2 (|:| |val| |#1|) (|:| -1979 |#2|))) $) 80)) (-3546 (($ (-1106 |#1| |#2|) $) 39)) (-3812 (($ (-1106 |#1| |#2|) $) 31)) (-2987 (((-621 (-1106 |#1| |#2|)) $) NIL (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) 51)) (-2802 (((-112) (-1106 |#1| |#2|) $) 82)) (-3585 (((-112) $ $) NIL (|has| (-1106 |#1| |#2|) (-1066)))) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 (-1106 |#1| |#2|)) $) 55 (|has| $ (-6 -4336)))) (-1593 (((-112) (-1106 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-1106 |#1| |#2|) (-1066))))) (-1864 (($ (-1 (-1106 |#1| |#2|) (-1106 |#1| |#2|)) $) 47 (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-1106 |#1| |#2|) (-1106 |#1| |#2|)) $) 46)) (-3942 (((-112) $ (-747)) NIL)) (-3590 (((-621 (-1106 |#1| |#2|)) $) 53)) (-3028 (((-112) $) 42)) (-3441 (((-1124) $) NIL (|has| (-1106 |#1| |#2|) (-1066)))) (-3988 (((-1086) $) NIL (|has| (-1106 |#1| |#2|) (-1066)))) (-1328 (((-3 $ "failed") $) 75)) (-3360 (((-112) (-1 (-112) (-1106 |#1| |#2|)) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-1106 |#1| |#2|)))) NIL (-12 (|has| (-1106 |#1| |#2|) (-302 (-1106 |#1| |#2|))) (|has| (-1106 |#1| |#2|) (-1066)))) (($ $ (-287 (-1106 |#1| |#2|))) NIL (-12 (|has| (-1106 |#1| |#2|) (-302 (-1106 |#1| |#2|))) (|has| (-1106 |#1| |#2|) (-1066)))) (($ $ (-1106 |#1| |#2|) (-1106 |#1| |#2|)) NIL (-12 (|has| (-1106 |#1| |#2|) (-302 (-1106 |#1| |#2|))) (|has| (-1106 |#1| |#2|) (-1066)))) (($ $ (-621 (-1106 |#1| |#2|)) (-621 (-1106 |#1| |#2|))) NIL (-12 (|has| (-1106 |#1| |#2|) (-302 (-1106 |#1| |#2|))) (|has| (-1106 |#1| |#2|) (-1066))))) (-2520 (((-112) $ $) 50)) (-2643 (((-112) $) 22)) (-3288 (($) 24)) (-3339 (((-1106 |#1| |#2|) $ "value") NIL)) (-3541 (((-549) $ $) NIL)) (-2917 (((-112) $) 44)) (-3997 (((-747) (-1 (-112) (-1106 |#1| |#2|)) $) NIL (|has| $ (-6 -4336))) (((-747) (-1106 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-1106 |#1| |#2|) (-1066))))) (-2279 (($ $) 49)) (-3853 (($ (-1106 |#1| |#2|)) 9) (($ |#1| |#2| (-621 $)) 12) (($ |#1| |#2| (-621 (-1106 |#1| |#2|))) 14) (($ |#1| |#2| |#1| (-621 |#2|)) 17)) (-3591 (((-621 |#2|) $) 81)) (-3845 (((-834) $) 73 (|has| (-1106 |#1| |#2|) (-593 (-834))))) (-2095 (((-621 $) $) 28)) (-3605 (((-112) $ $) NIL (|has| (-1106 |#1| |#2|) (-1066)))) (-3025 (((-112) (-1 (-112) (-1106 |#1| |#2|)) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 64 (|has| (-1106 |#1| |#2|) (-1066)))) (-3774 (((-747) $) 58 (|has| $ (-6 -4336)))))
+(((-1107 |#1| |#2|) (-13 (-981 (-1106 |#1| |#2|)) (-10 -8 (-6 -4337) (-6 -4336) (-15 -1328 ((-3 $ "failed") $)) (-15 -1924 ($ $)) (-15 -3853 ($ (-1106 |#1| |#2|))) (-15 -3853 ($ |#1| |#2| (-621 $))) (-15 -3853 ($ |#1| |#2| (-621 (-1106 |#1| |#2|)))) (-15 -3853 ($ |#1| |#2| |#1| (-621 |#2|))) (-15 -3591 ((-621 |#2|) $)) (-15 -1498 ((-621 (-2 (|:| |val| |#1|) (|:| -1979 |#2|))) $)) (-15 -2802 ((-112) (-1106 |#1| |#2|) $)) (-15 -1544 ((-112) (-1106 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -3812 ($ (-1106 |#1| |#2|) $)) (-15 -3546 ($ (-1106 |#1| |#2|) $)) (-15 -2353 ($ $ $ (-621 (-1106 |#1| |#2|)))) (-15 -2353 ($ $ $ (-621 (-1106 |#1| |#2|)) (-1 (-112) |#2| |#2|))))) (-13 (-1066) (-34)) (-13 (-1066) (-34))) (T -1107))
+((-1328 (*1 *1 *1) (|partial| -12 (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1066) (-34))) (-4 *3 (-13 (-1066) (-34))))) (-1924 (*1 *1 *1) (-12 (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1066) (-34))) (-4 *3 (-13 (-1066) (-34))))) (-3853 (*1 *1 *2) (-12 (-5 *2 (-1106 *3 *4)) (-4 *3 (-13 (-1066) (-34))) (-4 *4 (-13 (-1066) (-34))) (-5 *1 (-1107 *3 *4)))) (-3853 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-621 (-1107 *2 *3))) (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1066) (-34))) (-4 *3 (-13 (-1066) (-34))))) (-3853 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-621 (-1106 *2 *3))) (-4 *2 (-13 (-1066) (-34))) (-4 *3 (-13 (-1066) (-34))) (-5 *1 (-1107 *2 *3)))) (-3853 (*1 *1 *2 *3 *2 *4) (-12 (-5 *4 (-621 *3)) (-4 *3 (-13 (-1066) (-34))) (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1066) (-34))))) (-3591 (*1 *2 *1) (-12 (-5 *2 (-621 *4)) (-5 *1 (-1107 *3 *4)) (-4 *3 (-13 (-1066) (-34))) (-4 *4 (-13 (-1066) (-34))))) (-1498 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4)))) (-5 *1 (-1107 *3 *4)) (-4 *3 (-13 (-1066) (-34))) (-4 *4 (-13 (-1066) (-34))))) (-2802 (*1 *2 *3 *1) (-12 (-5 *3 (-1106 *4 *5)) (-4 *4 (-13 (-1066) (-34))) (-4 *5 (-13 (-1066) (-34))) (-5 *2 (-112)) (-5 *1 (-1107 *4 *5)))) (-1544 (*1 *2 *3 *1 *4) (-12 (-5 *3 (-1106 *5 *6)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1066) (-34))) (-4 *6 (-13 (-1066) (-34))) (-5 *2 (-112)) (-5 *1 (-1107 *5 *6)))) (-3812 (*1 *1 *2 *1) (-12 (-5 *2 (-1106 *3 *4)) (-4 *3 (-13 (-1066) (-34))) (-4 *4 (-13 (-1066) (-34))) (-5 *1 (-1107 *3 *4)))) (-3546 (*1 *1 *2 *1) (-12 (-5 *2 (-1106 *3 *4)) (-4 *3 (-13 (-1066) (-34))) (-4 *4 (-13 (-1066) (-34))) (-5 *1 (-1107 *3 *4)))) (-2353 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-621 (-1106 *3 *4))) (-4 *3 (-13 (-1066) (-34))) (-4 *4 (-13 (-1066) (-34))) (-5 *1 (-1107 *3 *4)))) (-2353 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-1106 *4 *5))) (-5 *3 (-1 (-112) *5 *5)) (-4 *4 (-13 (-1066) (-34))) (-4 *5 (-13 (-1066) (-34))) (-5 *1 (-1107 *4 *5)))))
+(-13 (-981 (-1106 |#1| |#2|)) (-10 -8 (-6 -4337) (-6 -4336) (-15 -1328 ((-3 $ "failed") $)) (-15 -1924 ($ $)) (-15 -3853 ($ (-1106 |#1| |#2|))) (-15 -3853 ($ |#1| |#2| (-621 $))) (-15 -3853 ($ |#1| |#2| (-621 (-1106 |#1| |#2|)))) (-15 -3853 ($ |#1| |#2| |#1| (-621 |#2|))) (-15 -3591 ((-621 |#2|) $)) (-15 -1498 ((-621 (-2 (|:| |val| |#1|) (|:| -1979 |#2|))) $)) (-15 -2802 ((-112) (-1106 |#1| |#2|) $)) (-15 -1544 ((-112) (-1106 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -3812 ($ (-1106 |#1| |#2|) $)) (-15 -3546 ($ (-1106 |#1| |#2|) $)) (-15 -2353 ($ $ $ (-621 (-1106 |#1| |#2|)))) (-15 -2353 ($ $ $ (-621 (-1106 |#1| |#2|)) (-1 (-112) |#2| |#2|)))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4235 (($ $) NIL)) (-2904 ((|#2| $) NIL)) (-1831 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-2449 (($ (-665 |#2|)) 47)) (-1295 (((-112) $) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-2411 (($ |#2|) 9)) (-3034 (($) NIL T CONST)) (-3474 (($ $) 60 (|has| |#2| (-300)))) (-3437 (((-234 |#1| |#2|) $ (-549)) 34)) (-2712 (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-3 |#2| "failed") $) NIL)) (-2657 (((-549) $) NIL (|has| |#2| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-400 (-549))))) ((|#2| $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) NIL) (((-665 |#2|) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) 74)) (-3121 (((-747) $) 62 (|has| |#2| (-541)))) (-1807 ((|#2| $ (-549) (-549)) NIL)) (-2987 (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-2297 (((-112) $) NIL)) (-4303 (((-747) $) 64 (|has| |#2| (-541)))) (-3290 (((-621 (-234 |#1| |#2|)) $) 68 (|has| |#2| (-541)))) (-2140 (((-747) $) NIL)) (-2153 (((-747) $) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-4239 ((|#2| $) 58 (|has| |#2| (-6 (-4338 "*"))))) (-3057 (((-549) $) NIL)) (-3861 (((-549) $) NIL)) (-3698 (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-1766 (((-549) $) NIL)) (-2813 (((-549) $) NIL)) (-3944 (($ (-621 (-621 |#2|))) 29)) (-1864 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-1987 (((-621 (-621 |#2|)) $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL)) (-1299 (((-3 $ "failed") $) 71 (|has| |#2| (-356)))) (-3988 (((-1086) $) NIL)) (-2040 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-541)))) (-3360 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#2| $ (-549) (-549) |#2|) NIL) ((|#2| $ (-549) (-549)) NIL)) (-3455 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1142)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-747)) NIL (|has| |#2| (-227))) (($ $) NIL (|has| |#2| (-227)))) (-3354 ((|#2| $) NIL)) (-2874 (($ (-621 |#2|)) 42)) (-2839 (((-112) $) NIL)) (-2267 (((-234 |#1| |#2|) $) NIL)) (-2842 ((|#2| $) 56 (|has| |#2| (-6 (-4338 "*"))))) (-3997 (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-2279 (($ $) NIL)) (-2843 (((-525) $) 83 (|has| |#2| (-594 (-525))))) (-1476 (((-234 |#1| |#2|) $ (-549)) 36)) (-3845 (((-834) $) 39) (($ (-549)) NIL) (($ (-400 (-549))) NIL (|has| |#2| (-1009 (-400 (-549))))) (($ |#2|) NIL) (((-665 |#2|) $) 44)) (-2371 (((-747)) 17)) (-3025 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-3752 (((-112) $) NIL)) (-3274 (($) 11 T CONST)) (-3286 (($) 14 T CONST)) (-1699 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1142)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-747)) NIL (|has| |#2| (-227))) (($ $) NIL (|has| |#2| (-227)))) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) 54) (($ $ (-549)) 73 (|has| |#2| (-356)))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-234 |#1| |#2|) $ (-234 |#1| |#2|)) 50) (((-234 |#1| |#2|) (-234 |#1| |#2|) $) 52)) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-1108 |#1| |#2|) (-13 (-1089 |#1| |#2| (-234 |#1| |#2|) (-234 |#1| |#2|)) (-593 (-665 |#2|)) (-10 -8 (-15 -4235 ($ $)) (-15 -2449 ($ (-665 |#2|))) (-15 -3845 ((-665 |#2|) $)) (IF (|has| |#2| (-6 (-4338 "*"))) (-6 -4325) |%noBranch|) (IF (|has| |#2| (-6 (-4338 "*"))) (IF (|has| |#2| (-6 -4333)) (-6 -4333) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|))) (-747) (-1018)) (T -1108))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-665 *4)) (-5 *1 (-1108 *3 *4)) (-14 *3 (-747)) (-4 *4 (-1018)))) (-4235 (*1 *1 *1) (-12 (-5 *1 (-1108 *2 *3)) (-14 *2 (-747)) (-4 *3 (-1018)))) (-2449 (*1 *1 *2) (-12 (-5 *2 (-665 *4)) (-4 *4 (-1018)) (-5 *1 (-1108 *3 *4)) (-14 *3 (-747)))))
+(-13 (-1089 |#1| |#2| (-234 |#1| |#2|) (-234 |#1| |#2|)) (-593 (-665 |#2|)) (-10 -8 (-15 -4235 ($ $)) (-15 -2449 ($ (-665 |#2|))) (-15 -3845 ((-665 |#2|) $)) (IF (|has| |#2| (-6 (-4338 "*"))) (-6 -4325) |%noBranch|) (IF (|has| |#2| (-6 (-4338 "*"))) (IF (|has| |#2| (-6 -4333)) (-6 -4333) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-594 (-525))) (-6 (-594 (-525))) |%noBranch|)))
+((-2913 (($ $) 19)) (-3211 (($ $ (-142)) 10) (($ $ (-139)) 14)) (-2347 (((-112) $ $) 24)) (-1867 (($ $) 17)) (-3339 (((-142) $ (-549) (-142)) NIL) (((-142) $ (-549)) NIL) (($ $ (-1192 (-549))) NIL) (($ $ $) 29)) (-3845 (($ (-142)) 27) (((-834) $) NIL)))
+(((-1109 |#1|) (-10 -8 (-15 -3845 ((-834) |#1|)) (-15 -3339 (|#1| |#1| |#1|)) (-15 -3211 (|#1| |#1| (-139))) (-15 -3211 (|#1| |#1| (-142))) (-15 -3845 (|#1| (-142))) (-15 -2347 ((-112) |#1| |#1|)) (-15 -2913 (|#1| |#1|)) (-15 -1867 (|#1| |#1|)) (-15 -3339 (|#1| |#1| (-1192 (-549)))) (-15 -3339 ((-142) |#1| (-549))) (-15 -3339 ((-142) |#1| (-549) (-142)))) (-1110)) (T -1109))
+NIL
+(-10 -8 (-15 -3845 ((-834) |#1|)) (-15 -3339 (|#1| |#1| |#1|)) (-15 -3211 (|#1| |#1| (-139))) (-15 -3211 (|#1| |#1| (-142))) (-15 -3845 (|#1| (-142))) (-15 -2347 ((-112) |#1| |#1|)) (-15 -2913 (|#1| |#1|)) (-15 -1867 (|#1| |#1|)) (-15 -3339 (|#1| |#1| (-1192 (-549)))) (-15 -3339 ((-142) |#1| (-549))) (-15 -3339 ((-142) |#1| (-549) (-142))))
+((-3832 (((-112) $ $) 19 (|has| (-142) (-1066)))) (-3340 (($ $) 120)) (-2913 (($ $) 121)) (-3211 (($ $ (-142)) 108) (($ $ (-139)) 107)) (-3659 (((-1230) $ (-549) (-549)) 40 (|has| $ (-6 -4337)))) (-2318 (((-112) $ $) 118)) (-2289 (((-112) $ $ (-549)) 117)) (-3506 (((-621 $) $ (-142)) 110) (((-621 $) $ (-139)) 109)) (-2239 (((-112) (-1 (-112) (-142) (-142)) $) 98) (((-112) $) 92 (|has| (-142) (-823)))) (-2015 (($ (-1 (-112) (-142) (-142)) $) 89 (|has| $ (-6 -4337))) (($ $) 88 (-12 (|has| (-142) (-823)) (|has| $ (-6 -4337))))) (-3191 (($ (-1 (-112) (-142) (-142)) $) 99) (($ $) 93 (|has| (-142) (-823)))) (-2850 (((-112) $ (-747)) 8)) (-2250 (((-142) $ (-549) (-142)) 52 (|has| $ (-6 -4337))) (((-142) $ (-1192 (-549)) (-142)) 58 (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) (-142)) $) 75 (|has| $ (-6 -4336)))) (-3034 (($) 7 T CONST)) (-3588 (($ $ (-142)) 104) (($ $ (-139)) 103)) (-2918 (($ $) 90 (|has| $ (-6 -4337)))) (-3062 (($ $) 100)) (-4125 (($ $ (-1192 (-549)) $) 114)) (-3675 (($ $) 78 (-12 (|has| (-142) (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ (-142) $) 77 (-12 (|has| (-142) (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) (-142)) $) 74 (|has| $ (-6 -4336)))) (-2556 (((-142) (-1 (-142) (-142) (-142)) $ (-142) (-142)) 76 (-12 (|has| (-142) (-1066)) (|has| $ (-6 -4336)))) (((-142) (-1 (-142) (-142) (-142)) $ (-142)) 73 (|has| $ (-6 -4336))) (((-142) (-1 (-142) (-142) (-142)) $) 72 (|has| $ (-6 -4336)))) (-1875 (((-142) $ (-549) (-142)) 53 (|has| $ (-6 -4337)))) (-1807 (((-142) $ (-549)) 51)) (-2347 (((-112) $ $) 119)) (-2881 (((-549) (-1 (-112) (-142)) $) 97) (((-549) (-142) $) 96 (|has| (-142) (-1066))) (((-549) (-142) $ (-549)) 95 (|has| (-142) (-1066))) (((-549) $ $ (-549)) 113) (((-549) (-139) $ (-549)) 112)) (-2987 (((-621 (-142)) $) 30 (|has| $ (-6 -4336)))) (-3743 (($ (-747) (-142)) 69)) (-1777 (((-112) $ (-747)) 9)) (-2807 (((-549) $) 43 (|has| (-549) (-823)))) (-2861 (($ $ $) 87 (|has| (-142) (-823)))) (-3050 (($ (-1 (-112) (-142) (-142)) $ $) 101) (($ $ $) 94 (|has| (-142) (-823)))) (-3698 (((-621 (-142)) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) (-142) $) 27 (-12 (|has| (-142) (-1066)) (|has| $ (-6 -4336))))) (-3063 (((-549) $) 44 (|has| (-549) (-823)))) (-3574 (($ $ $) 86 (|has| (-142) (-823)))) (-2309 (((-112) $ $ (-142)) 115)) (-2472 (((-747) $ $ (-142)) 116)) (-1864 (($ (-1 (-142) (-142)) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-142) (-142)) $) 35) (($ (-1 (-142) (-142) (-142)) $ $) 64)) (-4100 (($ $) 122)) (-1867 (($ $) 123)) (-3942 (((-112) $ (-747)) 10)) (-3602 (($ $ (-142)) 106) (($ $ (-139)) 105)) (-3441 (((-1124) $) 22 (|has| (-142) (-1066)))) (-2613 (($ (-142) $ (-549)) 60) (($ $ $ (-549)) 59)) (-2296 (((-621 (-549)) $) 46)) (-2284 (((-112) (-549) $) 47)) (-3988 (((-1086) $) 21 (|has| (-142) (-1066)))) (-3645 (((-142) $) 42 (|has| (-549) (-823)))) (-3959 (((-3 (-142) "failed") (-1 (-112) (-142)) $) 71)) (-1943 (($ $ (-142)) 41 (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) (-142)) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-142)))) 26 (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066)))) (($ $ (-287 (-142))) 25 (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066)))) (($ $ (-142) (-142)) 24 (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066)))) (($ $ (-621 (-142)) (-621 (-142))) 23 (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066))))) (-2520 (((-112) $ $) 14)) (-2478 (((-112) (-142) $) 45 (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066))))) (-3347 (((-621 (-142)) $) 48)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 (((-142) $ (-549) (-142)) 50) (((-142) $ (-549)) 49) (($ $ (-1192 (-549))) 63) (($ $ $) 102)) (-2162 (($ $ (-549)) 62) (($ $ (-1192 (-549))) 61)) (-3997 (((-747) (-1 (-112) (-142)) $) 31 (|has| $ (-6 -4336))) (((-747) (-142) $) 28 (-12 (|has| (-142) (-1066)) (|has| $ (-6 -4336))))) (-2049 (($ $ $ (-549)) 91 (|has| $ (-6 -4337)))) (-2279 (($ $) 13)) (-2843 (((-525) $) 79 (|has| (-142) (-594 (-525))))) (-3853 (($ (-621 (-142))) 70)) (-1950 (($ $ (-142)) 68) (($ (-142) $) 67) (($ $ $) 66) (($ (-621 $)) 65)) (-3845 (($ (-142)) 111) (((-834) $) 18 (|has| (-142) (-593 (-834))))) (-3025 (((-112) (-1 (-112) (-142)) $) 33 (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) 84 (|has| (-142) (-823)))) (-2423 (((-112) $ $) 83 (|has| (-142) (-823)))) (-2387 (((-112) $ $) 20 (|has| (-142) (-1066)))) (-2436 (((-112) $ $) 85 (|has| (-142) (-823)))) (-2409 (((-112) $ $) 82 (|has| (-142) (-823)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-1110) (-138)) (T -1110))
+((-1867 (*1 *1 *1) (-4 *1 (-1110))) (-4100 (*1 *1 *1) (-4 *1 (-1110))) (-2913 (*1 *1 *1) (-4 *1 (-1110))) (-3340 (*1 *1 *1) (-4 *1 (-1110))) (-2347 (*1 *2 *1 *1) (-12 (-4 *1 (-1110)) (-5 *2 (-112)))) (-2318 (*1 *2 *1 *1) (-12 (-4 *1 (-1110)) (-5 *2 (-112)))) (-2289 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1110)) (-5 *3 (-549)) (-5 *2 (-112)))) (-2472 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1110)) (-5 *3 (-142)) (-5 *2 (-747)))) (-2309 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1110)) (-5 *3 (-142)) (-5 *2 (-112)))) (-4125 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-1110)) (-5 *2 (-1192 (-549))))) (-2881 (*1 *2 *1 *1 *2) (-12 (-4 *1 (-1110)) (-5 *2 (-549)))) (-2881 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1110)) (-5 *2 (-549)) (-5 *3 (-139)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-142)) (-4 *1 (-1110)))) (-3506 (*1 *2 *1 *3) (-12 (-5 *3 (-142)) (-5 *2 (-621 *1)) (-4 *1 (-1110)))) (-3506 (*1 *2 *1 *3) (-12 (-5 *3 (-139)) (-5 *2 (-621 *1)) (-4 *1 (-1110)))) (-3211 (*1 *1 *1 *2) (-12 (-4 *1 (-1110)) (-5 *2 (-142)))) (-3211 (*1 *1 *1 *2) (-12 (-4 *1 (-1110)) (-5 *2 (-139)))) (-3602 (*1 *1 *1 *2) (-12 (-4 *1 (-1110)) (-5 *2 (-142)))) (-3602 (*1 *1 *1 *2) (-12 (-4 *1 (-1110)) (-5 *2 (-139)))) (-3588 (*1 *1 *1 *2) (-12 (-4 *1 (-1110)) (-5 *2 (-142)))) (-3588 (*1 *1 *1 *2) (-12 (-4 *1 (-1110)) (-5 *2 (-139)))) (-3339 (*1 *1 *1 *1) (-4 *1 (-1110))))
+(-13 (-19 (-142)) (-10 -8 (-15 -1867 ($ $)) (-15 -4100 ($ $)) (-15 -2913 ($ $)) (-15 -3340 ($ $)) (-15 -2347 ((-112) $ $)) (-15 -2318 ((-112) $ $)) (-15 -2289 ((-112) $ $ (-549))) (-15 -2472 ((-747) $ $ (-142))) (-15 -2309 ((-112) $ $ (-142))) (-15 -4125 ($ $ (-1192 (-549)) $)) (-15 -2881 ((-549) $ $ (-549))) (-15 -2881 ((-549) (-139) $ (-549))) (-15 -3845 ($ (-142))) (-15 -3506 ((-621 $) $ (-142))) (-15 -3506 ((-621 $) $ (-139))) (-15 -3211 ($ $ (-142))) (-15 -3211 ($ $ (-139))) (-15 -3602 ($ $ (-142))) (-15 -3602 ($ $ (-139))) (-15 -3588 ($ $ (-142))) (-15 -3588 ($ $ (-139))) (-15 -3339 ($ $ $))))
+(((-34) . T) ((-101) -1536 (|has| (-142) (-1066)) (|has| (-142) (-823))) ((-593 (-834)) -1536 (|has| (-142) (-1066)) (|has| (-142) (-823)) (|has| (-142) (-593 (-834)))) ((-149 #0=(-142)) . T) ((-594 (-525)) |has| (-142) (-594 (-525))) ((-279 #1=(-549) #0#) . T) ((-281 #1# #0#) . T) ((-302 #0#) -12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066))) ((-366 #0#) . T) ((-481 #0#) . T) ((-584 #1# #0#) . T) ((-505 #0# #0#) -12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066))) ((-627 #0#) . T) ((-19 #0#) . T) ((-823) |has| (-142) (-823)) ((-1066) -1536 (|has| (-142) (-1066)) (|has| (-142) (-823))) ((-1179) . T))
+((-2076 (((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-621 |#4|) (-621 |#5|) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) (-747)) 94)) (-2833 (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5|) 55) (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747)) 54)) (-3761 (((-1230) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-747)) 85)) (-3948 (((-747) (-621 |#4|) (-621 |#5|)) 27)) (-4264 (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5|) 57) (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747)) 56) (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747) (-112)) 58)) (-2570 (((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112) (-112) (-112) (-112)) 76) (((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112)) 77)) (-2843 (((-1124) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) 80)) (-3150 (((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5|) 53)) (-2473 (((-747) (-621 |#4|) (-621 |#5|)) 19)))
+(((-1111 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2473 ((-747) (-621 |#4|) (-621 |#5|))) (-15 -3948 ((-747) (-621 |#4|) (-621 |#5|))) (-15 -3150 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5|)) (-15 -2833 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747))) (-15 -2833 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5|)) (-15 -4264 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747) (-112))) (-15 -4264 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747))) (-15 -4264 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5|)) (-15 -2570 ((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112))) (-15 -2570 ((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -2076 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-621 |#4|) (-621 |#5|) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) (-747))) (-15 -2843 ((-1124) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|)))) (-15 -3761 ((-1230) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-747)))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|) (-1075 |#1| |#2| |#3| |#4|)) (T -1111))
+((-3761 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-2 (|:| |val| (-621 *8)) (|:| -1979 *9)))) (-5 *4 (-747)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1075 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-1230)) (-5 *1 (-1111 *5 *6 *7 *8 *9)))) (-2843 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-621 *7)) (|:| -1979 *8))) (-4 *7 (-1032 *4 *5 *6)) (-4 *8 (-1075 *4 *5 *6 *7)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1124)) (-5 *1 (-1111 *4 *5 *6 *7 *8)))) (-2076 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-621 *11)) (|:| |todo| (-621 (-2 (|:| |val| *3) (|:| -1979 *11)))))) (-5 *6 (-747)) (-5 *2 (-621 (-2 (|:| |val| (-621 *10)) (|:| -1979 *11)))) (-5 *3 (-621 *10)) (-5 *4 (-621 *11)) (-4 *10 (-1032 *7 *8 *9)) (-4 *11 (-1075 *7 *8 *9 *10)) (-4 *7 (-444)) (-4 *8 (-769)) (-4 *9 (-823)) (-5 *1 (-1111 *7 *8 *9 *10 *11)))) (-2570 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-621 *9)) (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1075 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1111 *5 *6 *7 *8 *9)))) (-2570 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-621 *9)) (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1075 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1111 *5 *6 *7 *8 *9)))) (-4264 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4)))))) (-5 *1 (-1111 *5 *6 *7 *3 *4)) (-4 *4 (-1075 *5 *6 *7 *3)))) (-4264 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-747)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *3 (-1032 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4)))))) (-5 *1 (-1111 *6 *7 *8 *3 *4)) (-4 *4 (-1075 *6 *7 *8 *3)))) (-4264 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-747)) (-5 *6 (-112)) (-4 *7 (-444)) (-4 *8 (-769)) (-4 *9 (-823)) (-4 *3 (-1032 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4)))))) (-5 *1 (-1111 *7 *8 *9 *3 *4)) (-4 *4 (-1075 *7 *8 *9 *3)))) (-2833 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4)))))) (-5 *1 (-1111 *5 *6 *7 *3 *4)) (-4 *4 (-1075 *5 *6 *7 *3)))) (-2833 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-747)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *3 (-1032 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4)))))) (-5 *1 (-1111 *6 *7 *8 *3 *4)) (-4 *4 (-1075 *6 *7 *8 *3)))) (-3150 (*1 *2 *3 *4) (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-621 *4)) (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4)))))) (-5 *1 (-1111 *5 *6 *7 *3 *4)) (-4 *4 (-1075 *5 *6 *7 *3)))) (-3948 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *9)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1075 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-747)) (-5 *1 (-1111 *5 *6 *7 *8 *9)))) (-2473 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *9)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1075 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-747)) (-5 *1 (-1111 *5 *6 *7 *8 *9)))))
+(-10 -7 (-15 -2473 ((-747) (-621 |#4|) (-621 |#5|))) (-15 -3948 ((-747) (-621 |#4|) (-621 |#5|))) (-15 -3150 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5|)) (-15 -2833 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747))) (-15 -2833 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5|)) (-15 -4264 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747) (-112))) (-15 -4264 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5| (-747))) (-15 -4264 ((-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) |#4| |#5|)) (-15 -2570 ((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112))) (-15 -2570 ((-621 |#5|) (-621 |#4|) (-621 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -2076 ((-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-621 |#4|) (-621 |#5|) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-2 (|:| |done| (-621 |#5|)) (|:| |todo| (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))))) (-747))) (-15 -2843 ((-1124) (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|)))) (-15 -3761 ((-1230) (-621 (-2 (|:| |val| (-621 |#4|)) (|:| -1979 |#5|))) (-747))))
+((-3832 (((-112) $ $) NIL)) (-4063 (((-621 (-2 (|:| -2679 $) (|:| -1358 (-621 |#4|)))) (-621 |#4|)) NIL)) (-3587 (((-621 $) (-621 |#4|)) 110) (((-621 $) (-621 |#4|) (-112)) 111) (((-621 $) (-621 |#4|) (-112) (-112)) 109) (((-621 $) (-621 |#4|) (-112) (-112) (-112) (-112)) 112)) (-2270 (((-621 |#3|) $) NIL)) (-3735 (((-112) $) NIL)) (-2148 (((-112) $) NIL (|has| |#1| (-541)))) (-2210 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2156 ((|#4| |#4| $) NIL)) (-3239 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 $))) |#4| $) 84)) (-3191 (((-2 (|:| |under| $) (|:| -1349 $) (|:| |upper| $)) $ |#3|) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-1488 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336))) (((-3 |#4| "failed") $ |#3|) 62)) (-3034 (($) NIL T CONST)) (-4291 (((-112) $) 26 (|has| |#1| (-541)))) (-1663 (((-112) $ $) NIL (|has| |#1| (-541)))) (-4226 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2113 (((-112) $) NIL (|has| |#1| (-541)))) (-1409 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3480 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2393 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2712 (((-3 $ "failed") (-621 |#4|)) NIL)) (-2657 (($ (-621 |#4|)) NIL)) (-3656 (((-3 $ "failed") $) 39)) (-1852 ((|#4| |#4| $) 65)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066))))) (-3812 (($ |#4| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-1809 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 78 (|has| |#1| (-541)))) (-1804 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-1402 ((|#4| |#4| $) NIL)) (-2556 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4336))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4336))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3862 (((-2 (|:| -2679 (-621 |#4|)) (|:| -1358 (-621 |#4|))) $) NIL)) (-4267 (((-112) |#4| $) NIL)) (-2553 (((-112) |#4| $) NIL)) (-3504 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4138 (((-2 (|:| |val| (-621 |#4|)) (|:| |towers| (-621 $))) (-621 |#4|) (-112) (-112)) 124)) (-2987 (((-621 |#4|) $) 16 (|has| $ (-6 -4336)))) (-2240 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2510 ((|#3| $) 33)) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 |#4|) $) 17 (|has| $ (-6 -4336)))) (-1593 (((-112) |#4| $) 25 (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066))))) (-1864 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#4| |#4|) $) 21)) (-3991 (((-621 |#3|) $) NIL)) (-4192 (((-112) |#3| $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL)) (-4246 (((-3 |#4| (-621 $)) |#4| |#4| $) NIL)) (-3402 (((-621 (-2 (|:| |val| |#4|) (|:| -1979 $))) |#4| |#4| $) 103)) (-3828 (((-3 |#4| "failed") $) 37)) (-2114 (((-621 $) |#4| $) 88)) (-3219 (((-3 (-112) (-621 $)) |#4| $) NIL)) (-3287 (((-621 (-2 (|:| |val| (-112)) (|:| -1979 $))) |#4| $) 98) (((-112) |#4| $) 53)) (-3869 (((-621 $) |#4| $) 107) (((-621 $) (-621 |#4|) $) NIL) (((-621 $) (-621 |#4|) (-621 $)) 108) (((-621 $) |#4| (-621 $)) NIL)) (-3203 (((-621 $) (-621 |#4|) (-112) (-112) (-112)) 119)) (-2214 (($ |#4| $) 75) (($ (-621 |#4|) $) 76) (((-621 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 74)) (-1645 (((-621 |#4|) $) NIL)) (-1304 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3603 ((|#4| |#4| $) NIL)) (-3386 (((-112) $ $) NIL)) (-2179 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-541)))) (-4122 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4244 ((|#4| |#4| $) NIL)) (-3988 (((-1086) $) NIL)) (-3645 (((-3 |#4| "failed") $) 35)) (-3959 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1505 (((-3 $ "failed") $ |#4|) 48)) (-3796 (($ $ |#4|) NIL) (((-621 $) |#4| $) 90) (((-621 $) |#4| (-621 $)) NIL) (((-621 $) (-621 |#4|) $) NIL) (((-621 $) (-621 |#4|) (-621 $)) 86)) (-3360 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 |#4|) (-621 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-287 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-621 (-287 |#4|))) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) 15)) (-3288 (($) 13)) (-3977 (((-747) $) NIL)) (-3997 (((-747) |#4| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066)))) (((-747) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) 12)) (-2843 (((-525) $) NIL (|has| |#4| (-594 (-525))))) (-3853 (($ (-621 |#4|)) 20)) (-4085 (($ $ |#3|) 42)) (-2195 (($ $ |#3|) 44)) (-4292 (($ $) NIL)) (-4285 (($ $ |#3|) NIL)) (-3845 (((-834) $) 31) (((-621 |#4|) $) 40)) (-2503 (((-747) $) NIL (|has| |#3| (-361)))) (-2940 (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3760 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) NIL)) (-2008 (((-621 $) |#4| $) 54) (((-621 $) |#4| (-621 $)) NIL) (((-621 $) (-621 |#4|) $) NIL) (((-621 $) (-621 |#4|) (-621 $)) NIL)) (-3025 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-4044 (((-621 |#3|) $) NIL)) (-2930 (((-112) |#4| $) NIL)) (-1993 (((-112) |#3| $) 61)) (-2387 (((-112) $ $) NIL)) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-1112 |#1| |#2| |#3| |#4|) (-13 (-1075 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2214 ((-621 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -3587 ((-621 $) (-621 |#4|) (-112) (-112))) (-15 -3587 ((-621 $) (-621 |#4|) (-112) (-112) (-112) (-112))) (-15 -3203 ((-621 $) (-621 |#4|) (-112) (-112) (-112))) (-15 -4138 ((-2 (|:| |val| (-621 |#4|)) (|:| |towers| (-621 $))) (-621 |#4|) (-112) (-112))))) (-444) (-769) (-823) (-1032 |#1| |#2| |#3|)) (T -1112))
+((-2214 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 (-1112 *5 *6 *7 *3))) (-5 *1 (-1112 *5 *6 *7 *3)) (-4 *3 (-1032 *5 *6 *7)))) (-3587 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 (-1112 *5 *6 *7 *8))) (-5 *1 (-1112 *5 *6 *7 *8)))) (-3587 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 (-1112 *5 *6 *7 *8))) (-5 *1 (-1112 *5 *6 *7 *8)))) (-3203 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 (-1112 *5 *6 *7 *8))) (-5 *1 (-1112 *5 *6 *7 *8)))) (-4138 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-621 *8)) (|:| |towers| (-621 (-1112 *5 *6 *7 *8))))) (-5 *1 (-1112 *5 *6 *7 *8)) (-5 *3 (-621 *8)))))
+(-13 (-1075 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2214 ((-621 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -3587 ((-621 $) (-621 |#4|) (-112) (-112))) (-15 -3587 ((-621 $) (-621 |#4|) (-112) (-112) (-112) (-112))) (-15 -3203 ((-621 $) (-621 |#4|) (-112) (-112) (-112))) (-15 -4138 ((-2 (|:| |val| (-621 |#4|)) (|:| |towers| (-621 $))) (-621 |#4|) (-112) (-112)))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2316 ((|#1| $) 34)) (-3813 (($ (-621 |#1|)) 39)) (-2850 (((-112) $ (-747)) NIL)) (-3034 (($) NIL T CONST)) (-3677 ((|#1| |#1| $) 36)) (-1794 ((|#1| $) 32)) (-2987 (((-621 |#1|) $) 18 (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1864 (($ (-1 |#1| |#1|) $) 25 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 22)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-2548 ((|#1| $) 35)) (-1799 (($ |#1| $) 37)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3536 ((|#1| $) 33)) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) 31)) (-3288 (($) 38)) (-1319 (((-747) $) 29)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) 27)) (-3845 (((-834) $) 14 (|has| |#1| (-593 (-834))))) (-4213 (($ (-621 |#1|)) NIL)) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 17 (|has| |#1| (-1066)))) (-3774 (((-747) $) 30 (|has| $ (-6 -4336)))))
+(((-1113 |#1|) (-13 (-1087 |#1|) (-10 -8 (-15 -3813 ($ (-621 |#1|))))) (-1179)) (T -1113))
+((-3813 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-5 *1 (-1113 *3)))))
+(-13 (-1087 |#1|) (-10 -8 (-15 -3813 ($ (-621 |#1|)))))
+((-2250 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) NIL) (($ $ "rest" $) NIL) ((|#2| $ "last" |#2|) NIL) ((|#2| $ (-1192 (-549)) |#2|) 44) ((|#2| $ (-549) |#2|) 41)) (-2897 (((-112) $) 12)) (-1864 (($ (-1 |#2| |#2|) $) 39)) (-3645 ((|#2| $) NIL) (($ $ (-747)) 17)) (-1943 (($ $ |#2|) 40)) (-2791 (((-112) $) 11)) (-3339 ((|#2| $ "value") NIL) ((|#2| $ "first") NIL) (($ $ "rest") NIL) ((|#2| $ "last") NIL) (($ $ (-1192 (-549))) 31) ((|#2| $ (-549)) 23) ((|#2| $ (-549) |#2|) NIL)) (-3859 (($ $ $) 47) (($ $ |#2|) NIL)) (-1950 (($ $ $) 33) (($ |#2| $) NIL) (($ (-621 $)) 36) (($ $ |#2|) NIL)))
+(((-1114 |#1| |#2|) (-10 -8 (-15 -2897 ((-112) |#1|)) (-15 -2791 ((-112) |#1|)) (-15 -2250 (|#2| |#1| (-549) |#2|)) (-15 -3339 (|#2| |#1| (-549) |#2|)) (-15 -3339 (|#2| |#1| (-549))) (-15 -1943 (|#1| |#1| |#2|)) (-15 -1950 (|#1| |#1| |#2|)) (-15 -1950 (|#1| (-621 |#1|))) (-15 -3339 (|#1| |#1| (-1192 (-549)))) (-15 -2250 (|#2| |#1| (-1192 (-549)) |#2|)) (-15 -2250 (|#2| |#1| "last" |#2|)) (-15 -2250 (|#1| |#1| "rest" |#1|)) (-15 -2250 (|#2| |#1| "first" |#2|)) (-15 -3859 (|#1| |#1| |#2|)) (-15 -3859 (|#1| |#1| |#1|)) (-15 -3339 (|#2| |#1| "last")) (-15 -3339 (|#1| |#1| "rest")) (-15 -3645 (|#1| |#1| (-747))) (-15 -3339 (|#2| |#1| "first")) (-15 -3645 (|#2| |#1|)) (-15 -1950 (|#1| |#2| |#1|)) (-15 -1950 (|#1| |#1| |#1|)) (-15 -2250 (|#2| |#1| "value" |#2|)) (-15 -3339 (|#2| |#1| "value")) (-15 -1864 (|#1| (-1 |#2| |#2|) |#1|))) (-1115 |#2|) (-1179)) (T -1114))
+NIL
+(-10 -8 (-15 -2897 ((-112) |#1|)) (-15 -2791 ((-112) |#1|)) (-15 -2250 (|#2| |#1| (-549) |#2|)) (-15 -3339 (|#2| |#1| (-549) |#2|)) (-15 -3339 (|#2| |#1| (-549))) (-15 -1943 (|#1| |#1| |#2|)) (-15 -1950 (|#1| |#1| |#2|)) (-15 -1950 (|#1| (-621 |#1|))) (-15 -3339 (|#1| |#1| (-1192 (-549)))) (-15 -2250 (|#2| |#1| (-1192 (-549)) |#2|)) (-15 -2250 (|#2| |#1| "last" |#2|)) (-15 -2250 (|#1| |#1| "rest" |#1|)) (-15 -2250 (|#2| |#1| "first" |#2|)) (-15 -3859 (|#1| |#1| |#2|)) (-15 -3859 (|#1| |#1| |#1|)) (-15 -3339 (|#2| |#1| "last")) (-15 -3339 (|#1| |#1| "rest")) (-15 -3645 (|#1| |#1| (-747))) (-15 -3339 (|#2| |#1| "first")) (-15 -3645 (|#2| |#1|)) (-15 -1950 (|#1| |#2| |#1|)) (-15 -1950 (|#1| |#1| |#1|)) (-15 -2250 (|#2| |#1| "value" |#2|)) (-15 -3339 (|#2| |#1| "value")) (-15 -1864 (|#1| (-1 |#2| |#2|) |#1|)))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-4160 ((|#1| $) 48)) (-2837 ((|#1| $) 65)) (-1342 (($ $) 67)) (-3659 (((-1230) $ (-549) (-549)) 97 (|has| $ (-6 -4337)))) (-3327 (($ $ (-549)) 52 (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) 8)) (-2797 ((|#1| $ |#1|) 39 (|has| $ (-6 -4337)))) (-3931 (($ $ $) 56 (|has| $ (-6 -4337)))) (-1806 ((|#1| $ |#1|) 54 (|has| $ (-6 -4337)))) (-1368 ((|#1| $ |#1|) 58 (|has| $ (-6 -4337)))) (-2250 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4337))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4337))) (($ $ "rest" $) 55 (|has| $ (-6 -4337))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) 117 (|has| $ (-6 -4337))) ((|#1| $ (-549) |#1|) 86 (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) 41 (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) |#1|) $) 102 (|has| $ (-6 -4336)))) (-2827 ((|#1| $) 66)) (-3034 (($) 7 T CONST)) (-3656 (($ $) 73) (($ $ (-747)) 71)) (-3675 (($ $) 99 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4336))) (($ |#1| $) 100 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1875 ((|#1| $ (-549) |#1|) 85 (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) 87)) (-2897 (((-112) $) 83)) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) 50)) (-3585 (((-112) $ $) 42 (|has| |#1| (-1066)))) (-3743 (($ (-747) |#1|) 108)) (-1777 (((-112) $ (-747)) 9)) (-2807 (((-549) $) 95 (|has| (-549) (-823)))) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3063 (((-549) $) 94 (|has| (-549) (-823)))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-3942 (((-112) $ (-747)) 10)) (-3590 (((-621 |#1|) $) 45)) (-3028 (((-112) $) 49)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-3828 ((|#1| $) 70) (($ $ (-747)) 68)) (-2613 (($ $ $ (-549)) 116) (($ |#1| $ (-549)) 115)) (-2296 (((-621 (-549)) $) 92)) (-2284 (((-112) (-549) $) 91)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3645 ((|#1| $) 76) (($ $ (-747)) 74)) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-1943 (($ $ |#1|) 96 (|has| $ (-6 -4337)))) (-2791 (((-112) $) 84)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2478 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) 90)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1192 (-549))) 112) ((|#1| $ (-549)) 89) ((|#1| $ (-549) |#1|) 88)) (-3541 (((-549) $ $) 44)) (-2162 (($ $ (-1192 (-549))) 114) (($ $ (-549)) 113)) (-2917 (((-112) $) 46)) (-2188 (($ $) 62)) (-1829 (($ $) 59 (|has| $ (-6 -4337)))) (-3117 (((-747) $) 63)) (-2528 (($ $) 64)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-2843 (((-525) $) 98 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 107)) (-3859 (($ $ $) 61 (|has| $ (-6 -4337))) (($ $ |#1|) 60 (|has| $ (-6 -4337)))) (-1950 (($ $ $) 78) (($ |#1| $) 77) (($ (-621 $)) 110) (($ $ |#1|) 109)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) 51)) (-3605 (((-112) $ $) 43 (|has| |#1| (-1066)))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-1115 |#1|) (-138) (-1179)) (T -1115))
+((-2791 (*1 *2 *1) (-12 (-4 *1 (-1115 *3)) (-4 *3 (-1179)) (-5 *2 (-112)))) (-2897 (*1 *2 *1) (-12 (-4 *1 (-1115 *3)) (-4 *3 (-1179)) (-5 *2 (-112)))))
+(-13 (-1213 |t#1|) (-627 |t#1|) (-10 -8 (-15 -2791 ((-112) $)) (-15 -2897 ((-112) $))))
+(((-34) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-627 |#1|) . T) ((-981 |#1|) . T) ((-1066) |has| |#1| (-1066)) ((-1179) . T) ((-1213 |#1|) . T))
+((-3832 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3732 (($) NIL) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3659 (((-1230) $ |#1| |#1|) NIL (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 ((|#2| $ |#1| |#2|) NIL)) (-3827 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-3489 (((-3 |#2| "failed") |#1| $) NIL)) (-3034 (($) NIL T CONST)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-3546 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-3 |#2| "failed") |#1| $) NIL)) (-3812 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-2556 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (|has| $ (-6 -4336))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-1875 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#2| $ |#1|) NIL)) (-2987 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) NIL)) (-2807 ((|#1| $) NIL (|has| |#1| (-823)))) (-3698 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3063 ((|#1| $) NIL (|has| |#1| (-823)))) (-1864 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4337))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3448 (((-621 |#1|) $) NIL)) (-2130 (((-112) |#1| $) NIL)) (-2548 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-1799 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-2296 (((-621 |#1|) $) NIL)) (-2284 (((-112) |#1| $) NIL)) (-3988 (((-1086) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3645 ((|#2| $) NIL (|has| |#1| (-823)))) (-3959 (((-3 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) "failed") (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL)) (-1943 (($ $ |#2|) NIL (|has| $ (-6 -4337)))) (-3536 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-3360 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3347 (((-621 |#2|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3226 (($) NIL) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3997 (((-747) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-747) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066)))) (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-594 (-525))))) (-3853 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3845 (((-834) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-593 (-834))) (|has| |#2| (-593 (-834)))))) (-4213 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3025 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-1116 |#1| |#2| |#3|) (-1155 |#1| |#2|) (-1066) (-1066) |#2|) (T -1116))
+NIL
+(-1155 |#1| |#2|)
+((-3832 (((-112) $ $) 7)) (-2964 (((-3 $ "failed") $) 13)) (-3441 (((-1124) $) 9)) (-3059 (($) 14 T CONST)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11)) (-2387 (((-112) $ $) 6)))
+(((-1117) (-138)) (T -1117))
+((-3059 (*1 *1) (-4 *1 (-1117))) (-2964 (*1 *1 *1) (|partial| -4 *1 (-1117))))
+(-13 (-1066) (-10 -8 (-15 -3059 ($) -2587) (-15 -2964 ((-3 $ "failed") $))))
+(((-101) . T) ((-593 (-834)) . T) ((-1066) . T))
+((-4163 (((-1122 |#1|) (-1122 |#1|)) 17)) (-2978 (((-1122 |#1|) (-1122 |#1|)) 13)) (-3316 (((-1122 |#1|) (-1122 |#1|) (-549) (-549)) 20)) (-3956 (((-1122 |#1|) (-1122 |#1|)) 15)))
+(((-1118 |#1|) (-10 -7 (-15 -2978 ((-1122 |#1|) (-1122 |#1|))) (-15 -3956 ((-1122 |#1|) (-1122 |#1|))) (-15 -4163 ((-1122 |#1|) (-1122 |#1|))) (-15 -3316 ((-1122 |#1|) (-1122 |#1|) (-549) (-549)))) (-13 (-541) (-145))) (T -1118))
+((-3316 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1122 *4)) (-5 *3 (-549)) (-4 *4 (-13 (-541) (-145))) (-5 *1 (-1118 *4)))) (-4163 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-13 (-541) (-145))) (-5 *1 (-1118 *3)))) (-3956 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-13 (-541) (-145))) (-5 *1 (-1118 *3)))) (-2978 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-13 (-541) (-145))) (-5 *1 (-1118 *3)))))
+(-10 -7 (-15 -2978 ((-1122 |#1|) (-1122 |#1|))) (-15 -3956 ((-1122 |#1|) (-1122 |#1|))) (-15 -4163 ((-1122 |#1|) (-1122 |#1|))) (-15 -3316 ((-1122 |#1|) (-1122 |#1|) (-549) (-549))))
+((-1950 (((-1122 |#1|) (-1122 (-1122 |#1|))) 15)))
+(((-1119 |#1|) (-10 -7 (-15 -1950 ((-1122 |#1|) (-1122 (-1122 |#1|))))) (-1179)) (T -1119))
+((-1950 (*1 *2 *3) (-12 (-5 *3 (-1122 (-1122 *4))) (-5 *2 (-1122 *4)) (-5 *1 (-1119 *4)) (-4 *4 (-1179)))))
+(-10 -7 (-15 -1950 ((-1122 |#1|) (-1122 (-1122 |#1|)))))
+((-2394 (((-1122 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1122 |#1|)) 25)) (-2556 ((|#2| |#2| (-1 |#2| |#1| |#2|) (-1122 |#1|)) 26)) (-2795 (((-1122 |#2|) (-1 |#2| |#1|) (-1122 |#1|)) 16)))
+(((-1120 |#1| |#2|) (-10 -7 (-15 -2795 ((-1122 |#2|) (-1 |#2| |#1|) (-1122 |#1|))) (-15 -2394 ((-1122 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1122 |#1|))) (-15 -2556 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1122 |#1|)))) (-1179) (-1179)) (T -1120))
+((-2556 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1122 *5)) (-4 *5 (-1179)) (-4 *2 (-1179)) (-5 *1 (-1120 *5 *2)))) (-2394 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1122 *6)) (-4 *6 (-1179)) (-4 *3 (-1179)) (-5 *2 (-1122 *3)) (-5 *1 (-1120 *6 *3)))) (-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1122 *5)) (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-1122 *6)) (-5 *1 (-1120 *5 *6)))))
+(-10 -7 (-15 -2795 ((-1122 |#2|) (-1 |#2| |#1|) (-1122 |#1|))) (-15 -2394 ((-1122 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1122 |#1|))) (-15 -2556 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1122 |#1|))))
+((-2795 (((-1122 |#3|) (-1 |#3| |#1| |#2|) (-1122 |#1|) (-1122 |#2|)) 21)))
+(((-1121 |#1| |#2| |#3|) (-10 -7 (-15 -2795 ((-1122 |#3|) (-1 |#3| |#1| |#2|) (-1122 |#1|) (-1122 |#2|)))) (-1179) (-1179) (-1179)) (T -1121))
+((-2795 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1122 *6)) (-5 *5 (-1122 *7)) (-4 *6 (-1179)) (-4 *7 (-1179)) (-4 *8 (-1179)) (-5 *2 (-1122 *8)) (-5 *1 (-1121 *6 *7 *8)))))
+(-10 -7 (-15 -2795 ((-1122 |#3|) (-1 |#3| |#1| |#2|) (-1122 |#1|) (-1122 |#2|))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-4160 ((|#1| $) NIL)) (-2837 ((|#1| $) NIL)) (-1342 (($ $) 52)) (-3659 (((-1230) $ (-549) (-549)) 77 (|has| $ (-6 -4337)))) (-3327 (($ $ (-549)) 111 (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) NIL)) (-3102 (((-834) $) 41 (|has| |#1| (-1066)))) (-3277 (((-112)) 40 (|has| |#1| (-1066)))) (-2797 ((|#1| $ |#1|) NIL (|has| $ (-6 -4337)))) (-3931 (($ $ $) 99 (|has| $ (-6 -4337))) (($ $ (-549) $) 123)) (-1806 ((|#1| $ |#1|) 108 (|has| $ (-6 -4337)))) (-1368 ((|#1| $ |#1|) 103 (|has| $ (-6 -4337)))) (-2250 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4337))) ((|#1| $ "first" |#1|) 105 (|has| $ (-6 -4337))) (($ $ "rest" $) 107 (|has| $ (-6 -4337))) ((|#1| $ "last" |#1|) 110 (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) 90 (|has| $ (-6 -4337))) ((|#1| $ (-549) |#1|) 56 (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) NIL (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) |#1|) $) 59)) (-2827 ((|#1| $) NIL)) (-3034 (($) NIL T CONST)) (-3187 (($ $) 14)) (-3656 (($ $) 29) (($ $ (-747)) 89)) (-1609 (((-112) (-621 |#1|) $) 117 (|has| |#1| (-1066)))) (-2077 (($ (-621 |#1|)) 113)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) (($ (-1 (-112) |#1|) $) 58)) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1875 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) NIL)) (-2897 (((-112) $) NIL)) (-2987 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-2073 (((-1230) (-549) $) 122 (|has| |#1| (-1066)))) (-1336 (((-747) $) 119)) (-3747 (((-621 $) $) NIL)) (-3585 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3743 (($ (-747) |#1|) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) NIL (|has| (-549) (-823)))) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-1864 (($ (-1 |#1| |#1|) $) 74 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 64) (($ (-1 |#1| |#1| |#1|) $ $) 68)) (-3942 (((-112) $ (-747)) NIL)) (-3590 (((-621 |#1|) $) NIL)) (-3028 (((-112) $) NIL)) (-3065 (($ $) 91)) (-3266 (((-112) $) 13)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-3828 ((|#1| $) NIL) (($ $ (-747)) NIL)) (-2613 (($ $ $ (-549)) NIL) (($ |#1| $ (-549)) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) 75)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-1411 (($ (-1 |#1|)) 125) (($ (-1 |#1| |#1|) |#1|) 126)) (-1461 ((|#1| $) 10)) (-3645 ((|#1| $) 28) (($ $ (-747)) 50)) (-2804 (((-2 (|:| |cycle?| (-112)) (|:| -1887 (-747)) (|:| |period| (-747))) (-747) $) 25)) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1459 (($ (-1 (-112) |#1|) $) 127)) (-1473 (($ (-1 (-112) |#1|) $) 128)) (-1943 (($ $ |#1|) 69 (|has| $ (-6 -4337)))) (-3796 (($ $ (-549)) 32)) (-2791 (((-112) $) 73)) (-3783 (((-112) $) 12)) (-4161 (((-112) $) 118)) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 20)) (-2478 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) NIL)) (-2643 (((-112) $) 15)) (-3288 (($) 45)) (-3339 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1192 (-549))) NIL) ((|#1| $ (-549)) 55) ((|#1| $ (-549) |#1|) NIL)) (-3541 (((-549) $ $) 49)) (-2162 (($ $ (-1192 (-549))) NIL) (($ $ (-549)) NIL)) (-2155 (($ (-1 $)) 48)) (-2917 (((-112) $) 70)) (-2188 (($ $) 71)) (-1829 (($ $) 100 (|has| $ (-6 -4337)))) (-3117 (((-747) $) NIL)) (-2528 (($ $) NIL)) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) 44)) (-2843 (((-525) $) NIL (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 54)) (-3171 (($ |#1| $) 98)) (-3859 (($ $ $) 101 (|has| $ (-6 -4337))) (($ $ |#1|) 102 (|has| $ (-6 -4337)))) (-1950 (($ $ $) 79) (($ |#1| $) 46) (($ (-621 $)) 84) (($ $ |#1|) 78)) (-3958 (($ $) 51)) (-3845 (($ (-621 |#1|)) 112) (((-834) $) 42 (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) NIL)) (-3605 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 115 (|has| |#1| (-1066)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-1122 |#1|) (-13 (-650 |#1|) (-10 -8 (-6 -4337) (-15 -3845 ($ (-621 |#1|))) (-15 -2077 ($ (-621 |#1|))) (IF (|has| |#1| (-1066)) (-15 -1609 ((-112) (-621 |#1|) $)) |%noBranch|) (-15 -2804 ((-2 (|:| |cycle?| (-112)) (|:| -1887 (-747)) (|:| |period| (-747))) (-747) $)) (-15 -2155 ($ (-1 $))) (-15 -3171 ($ |#1| $)) (IF (|has| |#1| (-1066)) (PROGN (-15 -2073 ((-1230) (-549) $)) (-15 -3102 ((-834) $)) (-15 -3277 ((-112)))) |%noBranch|) (-15 -3931 ($ $ (-549) $)) (-15 -1411 ($ (-1 |#1|))) (-15 -1411 ($ (-1 |#1| |#1|) |#1|)) (-15 -1459 ($ (-1 (-112) |#1|) $)) (-15 -1473 ($ (-1 (-112) |#1|) $)))) (-1179)) (T -1122))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-5 *1 (-1122 *3)))) (-2077 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-5 *1 (-1122 *3)))) (-1609 (*1 *2 *3 *1) (-12 (-5 *3 (-621 *4)) (-4 *4 (-1066)) (-4 *4 (-1179)) (-5 *2 (-112)) (-5 *1 (-1122 *4)))) (-2804 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |cycle?| (-112)) (|:| -1887 (-747)) (|:| |period| (-747)))) (-5 *1 (-1122 *4)) (-4 *4 (-1179)) (-5 *3 (-747)))) (-2155 (*1 *1 *2) (-12 (-5 *2 (-1 (-1122 *3))) (-5 *1 (-1122 *3)) (-4 *3 (-1179)))) (-3171 (*1 *1 *2 *1) (-12 (-5 *1 (-1122 *2)) (-4 *2 (-1179)))) (-2073 (*1 *2 *3 *1) (-12 (-5 *3 (-549)) (-5 *2 (-1230)) (-5 *1 (-1122 *4)) (-4 *4 (-1066)) (-4 *4 (-1179)))) (-3102 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-1122 *3)) (-4 *3 (-1066)) (-4 *3 (-1179)))) (-3277 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1122 *3)) (-4 *3 (-1066)) (-4 *3 (-1179)))) (-3931 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1122 *3)) (-4 *3 (-1179)))) (-1411 (*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1179)) (-5 *1 (-1122 *3)))) (-1411 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1179)) (-5 *1 (-1122 *3)))) (-1459 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1179)) (-5 *1 (-1122 *3)))) (-1473 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1179)) (-5 *1 (-1122 *3)))))
+(-13 (-650 |#1|) (-10 -8 (-6 -4337) (-15 -3845 ($ (-621 |#1|))) (-15 -2077 ($ (-621 |#1|))) (IF (|has| |#1| (-1066)) (-15 -1609 ((-112) (-621 |#1|) $)) |%noBranch|) (-15 -2804 ((-2 (|:| |cycle?| (-112)) (|:| -1887 (-747)) (|:| |period| (-747))) (-747) $)) (-15 -2155 ($ (-1 $))) (-15 -3171 ($ |#1| $)) (IF (|has| |#1| (-1066)) (PROGN (-15 -2073 ((-1230) (-549) $)) (-15 -3102 ((-834) $)) (-15 -3277 ((-112)))) |%noBranch|) (-15 -3931 ($ $ (-549) $)) (-15 -1411 ($ (-1 |#1|))) (-15 -1411 ($ (-1 |#1| |#1|) |#1|)) (-15 -1459 ($ (-1 (-112) |#1|) $)) (-15 -1473 ($ (-1 (-112) |#1|) $))))
+((-3832 (((-112) $ $) 19)) (-3340 (($ $) 120)) (-2913 (($ $) 121)) (-3211 (($ $ (-142)) 108) (($ $ (-139)) 107)) (-3659 (((-1230) $ (-549) (-549)) 40 (|has| $ (-6 -4337)))) (-2318 (((-112) $ $) 118)) (-2289 (((-112) $ $ (-549)) 117)) (-1524 (($ (-549)) 127)) (-3506 (((-621 $) $ (-142)) 110) (((-621 $) $ (-139)) 109)) (-2239 (((-112) (-1 (-112) (-142) (-142)) $) 98) (((-112) $) 92 (|has| (-142) (-823)))) (-2015 (($ (-1 (-112) (-142) (-142)) $) 89 (|has| $ (-6 -4337))) (($ $) 88 (-12 (|has| (-142) (-823)) (|has| $ (-6 -4337))))) (-3191 (($ (-1 (-112) (-142) (-142)) $) 99) (($ $) 93 (|has| (-142) (-823)))) (-2850 (((-112) $ (-747)) 8)) (-2250 (((-142) $ (-549) (-142)) 52 (|has| $ (-6 -4337))) (((-142) $ (-1192 (-549)) (-142)) 58 (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) (-142)) $) 75 (|has| $ (-6 -4336)))) (-3034 (($) 7 T CONST)) (-3588 (($ $ (-142)) 104) (($ $ (-139)) 103)) (-2918 (($ $) 90 (|has| $ (-6 -4337)))) (-3062 (($ $) 100)) (-4125 (($ $ (-1192 (-549)) $) 114)) (-3675 (($ $) 78 (-12 (|has| (-142) (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ (-142) $) 77 (-12 (|has| (-142) (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) (-142)) $) 74 (|has| $ (-6 -4336)))) (-2556 (((-142) (-1 (-142) (-142) (-142)) $ (-142) (-142)) 76 (-12 (|has| (-142) (-1066)) (|has| $ (-6 -4336)))) (((-142) (-1 (-142) (-142) (-142)) $ (-142)) 73 (|has| $ (-6 -4336))) (((-142) (-1 (-142) (-142) (-142)) $) 72 (|has| $ (-6 -4336)))) (-1875 (((-142) $ (-549) (-142)) 53 (|has| $ (-6 -4337)))) (-1807 (((-142) $ (-549)) 51)) (-2347 (((-112) $ $) 119)) (-2881 (((-549) (-1 (-112) (-142)) $) 97) (((-549) (-142) $) 96 (|has| (-142) (-1066))) (((-549) (-142) $ (-549)) 95 (|has| (-142) (-1066))) (((-549) $ $ (-549)) 113) (((-549) (-139) $ (-549)) 112)) (-2987 (((-621 (-142)) $) 30 (|has| $ (-6 -4336)))) (-3743 (($ (-747) (-142)) 69)) (-1777 (((-112) $ (-747)) 9)) (-2807 (((-549) $) 43 (|has| (-549) (-823)))) (-2861 (($ $ $) 87 (|has| (-142) (-823)))) (-3050 (($ (-1 (-112) (-142) (-142)) $ $) 101) (($ $ $) 94 (|has| (-142) (-823)))) (-3698 (((-621 (-142)) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) (-142) $) 27 (-12 (|has| (-142) (-1066)) (|has| $ (-6 -4336))))) (-3063 (((-549) $) 44 (|has| (-549) (-823)))) (-3574 (($ $ $) 86 (|has| (-142) (-823)))) (-2309 (((-112) $ $ (-142)) 115)) (-2472 (((-747) $ $ (-142)) 116)) (-1864 (($ (-1 (-142) (-142)) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-142) (-142)) $) 35) (($ (-1 (-142) (-142) (-142)) $ $) 64)) (-4100 (($ $) 122)) (-1867 (($ $) 123)) (-3942 (((-112) $ (-747)) 10)) (-3602 (($ $ (-142)) 106) (($ $ (-139)) 105)) (-3441 (((-1124) $) 22)) (-2613 (($ (-142) $ (-549)) 60) (($ $ $ (-549)) 59)) (-2296 (((-621 (-549)) $) 46)) (-2284 (((-112) (-549) $) 47)) (-3988 (((-1086) $) 21)) (-3645 (((-142) $) 42 (|has| (-549) (-823)))) (-3959 (((-3 (-142) "failed") (-1 (-112) (-142)) $) 71)) (-1943 (($ $ (-142)) 41 (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) (-142)) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-142)))) 26 (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066)))) (($ $ (-287 (-142))) 25 (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066)))) (($ $ (-142) (-142)) 24 (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066)))) (($ $ (-621 (-142)) (-621 (-142))) 23 (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066))))) (-2520 (((-112) $ $) 14)) (-2478 (((-112) (-142) $) 45 (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066))))) (-3347 (((-621 (-142)) $) 48)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 (((-142) $ (-549) (-142)) 50) (((-142) $ (-549)) 49) (($ $ (-1192 (-549))) 63) (($ $ $) 102)) (-2162 (($ $ (-549)) 62) (($ $ (-1192 (-549))) 61)) (-3997 (((-747) (-1 (-112) (-142)) $) 31 (|has| $ (-6 -4336))) (((-747) (-142) $) 28 (-12 (|has| (-142) (-1066)) (|has| $ (-6 -4336))))) (-2049 (($ $ $ (-549)) 91 (|has| $ (-6 -4337)))) (-2279 (($ $) 13)) (-2843 (((-525) $) 79 (|has| (-142) (-594 (-525))))) (-3853 (($ (-621 (-142))) 70)) (-1950 (($ $ (-142)) 68) (($ (-142) $) 67) (($ $ $) 66) (($ (-621 $)) 65)) (-3845 (($ (-142)) 111) (((-834) $) 18)) (-3025 (((-112) (-1 (-112) (-142)) $) 33 (|has| $ (-6 -4336)))) (-4035 (((-1124) $) 131) (((-1124) $ (-112)) 130) (((-1230) (-798) $) 129) (((-1230) (-798) $ (-112)) 128)) (-2447 (((-112) $ $) 84 (|has| (-142) (-823)))) (-2423 (((-112) $ $) 83 (|has| (-142) (-823)))) (-2387 (((-112) $ $) 20)) (-2436 (((-112) $ $) 85 (|has| (-142) (-823)))) (-2409 (((-112) $ $) 82 (|has| (-142) (-823)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-1123) (-138)) (T -1123))
+((-1524 (*1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-1123)))))
+(-13 (-1110) (-1066) (-804) (-10 -8 (-15 -1524 ($ (-549)))))
+(((-34) . T) ((-101) . T) ((-593 (-834)) . T) ((-149 #0=(-142)) . T) ((-594 (-525)) |has| (-142) (-594 (-525))) ((-279 #1=(-549) #0#) . T) ((-281 #1# #0#) . T) ((-302 #0#) -12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066))) ((-366 #0#) . T) ((-481 #0#) . T) ((-584 #1# #0#) . T) ((-505 #0# #0#) -12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066))) ((-627 #0#) . T) ((-19 #0#) . T) ((-804) . T) ((-823) |has| (-142) (-823)) ((-1066) . T) ((-1110) . T) ((-1179) . T))
+((-3832 (((-112) $ $) NIL)) (-3340 (($ $) NIL)) (-2913 (($ $) NIL)) (-3211 (($ $ (-142)) NIL) (($ $ (-139)) NIL)) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-2318 (((-112) $ $) NIL)) (-2289 (((-112) $ $ (-549)) NIL)) (-1524 (($ (-549)) 7)) (-3506 (((-621 $) $ (-142)) NIL) (((-621 $) $ (-139)) NIL)) (-2239 (((-112) (-1 (-112) (-142) (-142)) $) NIL) (((-112) $) NIL (|has| (-142) (-823)))) (-2015 (($ (-1 (-112) (-142) (-142)) $) NIL (|has| $ (-6 -4337))) (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| (-142) (-823))))) (-3191 (($ (-1 (-112) (-142) (-142)) $) NIL) (($ $) NIL (|has| (-142) (-823)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 (((-142) $ (-549) (-142)) NIL (|has| $ (-6 -4337))) (((-142) $ (-1192 (-549)) (-142)) NIL (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-3588 (($ $ (-142)) NIL) (($ $ (-139)) NIL)) (-2918 (($ $) NIL (|has| $ (-6 -4337)))) (-3062 (($ $) NIL)) (-4125 (($ $ (-1192 (-549)) $) NIL)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066))))) (-3812 (($ (-142) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066)))) (($ (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4336)))) (-2556 (((-142) (-1 (-142) (-142) (-142)) $ (-142) (-142)) NIL (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066)))) (((-142) (-1 (-142) (-142) (-142)) $ (-142)) NIL (|has| $ (-6 -4336))) (((-142) (-1 (-142) (-142) (-142)) $) NIL (|has| $ (-6 -4336)))) (-1875 (((-142) $ (-549) (-142)) NIL (|has| $ (-6 -4337)))) (-1807 (((-142) $ (-549)) NIL)) (-2347 (((-112) $ $) NIL)) (-2881 (((-549) (-1 (-112) (-142)) $) NIL) (((-549) (-142) $) NIL (|has| (-142) (-1066))) (((-549) (-142) $ (-549)) NIL (|has| (-142) (-1066))) (((-549) $ $ (-549)) NIL) (((-549) (-139) $ (-549)) NIL)) (-2987 (((-621 (-142)) $) NIL (|has| $ (-6 -4336)))) (-3743 (($ (-747) (-142)) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) NIL (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (|has| (-142) (-823)))) (-3050 (($ (-1 (-112) (-142) (-142)) $ $) NIL) (($ $ $) NIL (|has| (-142) (-823)))) (-3698 (((-621 (-142)) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-142) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| (-142) (-823)))) (-2309 (((-112) $ $ (-142)) NIL)) (-2472 (((-747) $ $ (-142)) NIL)) (-1864 (($ (-1 (-142) (-142)) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-142) (-142)) $) NIL) (($ (-1 (-142) (-142) (-142)) $ $) NIL)) (-4100 (($ $) NIL)) (-1867 (($ $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3602 (($ $ (-142)) NIL) (($ $ (-139)) NIL)) (-3441 (((-1124) $) NIL)) (-2613 (($ (-142) $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3988 (((-1086) $) NIL)) (-3645 (((-142) $) NIL (|has| (-549) (-823)))) (-3959 (((-3 (-142) "failed") (-1 (-112) (-142)) $) NIL)) (-1943 (($ $ (-142)) NIL (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-142)))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066)))) (($ $ (-287 (-142))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066)))) (($ $ (-142) (-142)) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066)))) (($ $ (-621 (-142)) (-621 (-142))) NIL (-12 (|has| (-142) (-302 (-142))) (|has| (-142) (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) (-142) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066))))) (-3347 (((-621 (-142)) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 (((-142) $ (-549) (-142)) NIL) (((-142) $ (-549)) NIL) (($ $ (-1192 (-549))) NIL) (($ $ $) NIL)) (-2162 (($ $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-3997 (((-747) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4336))) (((-747) (-142) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-142) (-1066))))) (-2049 (($ $ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| (-142) (-594 (-525))))) (-3853 (($ (-621 (-142))) NIL)) (-1950 (($ $ (-142)) NIL) (($ (-142) $) NIL) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3845 (($ (-142)) NIL) (((-834) $) NIL)) (-3025 (((-112) (-1 (-112) (-142)) $) NIL (|has| $ (-6 -4336)))) (-4035 (((-1124) $) 18) (((-1124) $ (-112)) 20) (((-1230) (-798) $) 21) (((-1230) (-798) $ (-112)) 22)) (-2447 (((-112) $ $) NIL (|has| (-142) (-823)))) (-2423 (((-112) $ $) NIL (|has| (-142) (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| (-142) (-823)))) (-2409 (((-112) $ $) NIL (|has| (-142) (-823)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-1124) (-1123)) (T -1124))
+NIL
+(-1123)
+((-3832 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066)) (|has| |#1| (-1066))))) (-3732 (($) NIL) (($ (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) NIL)) (-3659 (((-1230) $ (-1124) (-1124)) NIL (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 ((|#1| $ (-1124) |#1|) NIL)) (-3827 (($ (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336)))) (-3489 (((-3 |#1| "failed") (-1124) $) NIL)) (-3034 (($) NIL T CONST)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066))))) (-3546 (($ (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) $) NIL (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336))) (((-3 |#1| "failed") (-1124) $) NIL)) (-3812 (($ (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066)))) (($ (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336)))) (-2556 (((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $ (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066)))) (((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $ (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) NIL (|has| $ (-6 -4336))) (((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336)))) (-1875 ((|#1| $ (-1124) |#1|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-1124)) NIL)) (-2987 (((-621 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336))) (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-1124) $) NIL (|has| (-1124) (-823)))) (-3698 (((-621 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336))) (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066)))) (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3063 (((-1124) $) NIL (|has| (-1124) (-823)))) (-1864 (($ (-1 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4337))) (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (-1536 (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066)) (|has| |#1| (-1066))))) (-3448 (((-621 (-1124)) $) NIL)) (-2130 (((-112) (-1124) $) NIL)) (-2548 (((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) $) NIL)) (-1799 (($ (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) $) NIL)) (-2296 (((-621 (-1124)) $) NIL)) (-2284 (((-112) (-1124) $) NIL)) (-3988 (((-1086) $) NIL (-1536 (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066)) (|has| |#1| (-1066))))) (-3645 ((|#1| $) NIL (|has| (-1124) (-823)))) (-3959 (((-3 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) "failed") (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL)) (-1943 (($ $ |#1|) NIL (|has| $ (-6 -4337)))) (-3536 (((-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) $) NIL)) (-3360 (((-112) (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))))) NIL (-12 (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066)))) (($ $ (-287 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) NIL (-12 (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066)))) (($ $ (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) NIL (-12 (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066)))) (($ $ (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) NIL (-12 (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-302 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#1| $ (-1124)) NIL) ((|#1| $ (-1124) |#1|) NIL)) (-3226 (($) NIL) (($ (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) NIL)) (-3997 (((-747) (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336))) (((-747) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066)))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-594 (-525))))) (-3853 (($ (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) NIL)) (-3845 (((-834) $) NIL (-1536 (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-593 (-834))) (|has| |#1| (-593 (-834)))))) (-4213 (($ (-621 (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)))) NIL)) (-3025 (((-112) (-1 (-112) (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3336 (-1124)) (|:| -1791 |#1|)) (-1066)) (|has| |#1| (-1066))))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-1125 |#1|) (-13 (-1155 (-1124) |#1|) (-10 -7 (-6 -4336))) (-1066)) (T -1125))
+NIL
+(-13 (-1155 (-1124) |#1|) (-10 -7 (-6 -4336)))
+((-1720 (((-1122 |#1|) (-1122 |#1|)) 77)) (-2612 (((-3 (-1122 |#1|) "failed") (-1122 |#1|)) 37)) (-1917 (((-1122 |#1|) (-400 (-549)) (-1122 |#1|)) 121 (|has| |#1| (-38 (-400 (-549)))))) (-1742 (((-1122 |#1|) |#1| (-1122 |#1|)) 127 (|has| |#1| (-356)))) (-2670 (((-1122 |#1|) (-1122 |#1|)) 90)) (-3333 (((-1122 (-549)) (-549)) 57)) (-4281 (((-1122 |#1|) (-1122 (-1122 |#1|))) 109 (|has| |#1| (-38 (-400 (-549)))))) (-2389 (((-1122 |#1|) (-549) (-549) (-1122 |#1|)) 95)) (-3525 (((-1122 |#1|) |#1| (-549)) 45)) (-3584 (((-1122 |#1|) (-1122 |#1|) (-1122 |#1|)) 60)) (-3449 (((-1122 |#1|) (-1122 |#1|) (-1122 |#1|)) 124 (|has| |#1| (-356)))) (-2486 (((-1122 |#1|) |#1| (-1 (-1122 |#1|))) 108 (|has| |#1| (-38 (-400 (-549)))))) (-2166 (((-1122 |#1|) (-1 |#1| (-549)) |#1| (-1 (-1122 |#1|))) 125 (|has| |#1| (-356)))) (-2488 (((-1122 |#1|) (-1122 |#1|)) 89)) (-3443 (((-1122 |#1|) (-1122 |#1|)) 76)) (-3010 (((-1122 |#1|) (-549) (-549) (-1122 |#1|)) 96)) (-3405 (((-1122 |#1|) |#1| (-1122 |#1|)) 105 (|has| |#1| (-38 (-400 (-549)))))) (-2669 (((-1122 (-549)) (-549)) 56)) (-1832 (((-1122 |#1|) |#1|) 59)) (-2224 (((-1122 |#1|) (-1122 |#1|) (-549) (-549)) 92)) (-3090 (((-1122 |#1|) (-1 |#1| (-549)) (-1122 |#1|)) 66)) (-2040 (((-3 (-1122 |#1|) "failed") (-1122 |#1|) (-1122 |#1|)) 35)) (-3169 (((-1122 |#1|) (-1122 |#1|)) 91)) (-2684 (((-1122 |#1|) (-1122 |#1|) |#1|) 71)) (-1814 (((-1122 |#1|) (-1122 |#1|)) 62)) (-4054 (((-1122 |#1|) (-1122 |#1|) (-1122 |#1|)) 72)) (-3845 (((-1122 |#1|) |#1|) 67)) (-4030 (((-1122 |#1|) (-1122 (-1122 |#1|))) 82)) (-2511 (((-1122 |#1|) (-1122 |#1|) (-1122 |#1|)) 36)) (-2498 (((-1122 |#1|) (-1122 |#1|)) 21) (((-1122 |#1|) (-1122 |#1|) (-1122 |#1|)) 23)) (-2484 (((-1122 |#1|) (-1122 |#1|) (-1122 |#1|)) 17)) (* (((-1122 |#1|) (-1122 |#1|) |#1|) 29) (((-1122 |#1|) |#1| (-1122 |#1|)) 26) (((-1122 |#1|) (-1122 |#1|) (-1122 |#1|)) 27)))
+(((-1126 |#1|) (-10 -7 (-15 -2484 ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 -2498 ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 -2498 ((-1122 |#1|) (-1122 |#1|))) (-15 * ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 * ((-1122 |#1|) |#1| (-1122 |#1|))) (-15 * ((-1122 |#1|) (-1122 |#1|) |#1|)) (-15 -2040 ((-3 (-1122 |#1|) "failed") (-1122 |#1|) (-1122 |#1|))) (-15 -2511 ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 -2612 ((-3 (-1122 |#1|) "failed") (-1122 |#1|))) (-15 -3525 ((-1122 |#1|) |#1| (-549))) (-15 -2669 ((-1122 (-549)) (-549))) (-15 -3333 ((-1122 (-549)) (-549))) (-15 -1832 ((-1122 |#1|) |#1|)) (-15 -3584 ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 -1814 ((-1122 |#1|) (-1122 |#1|))) (-15 -3090 ((-1122 |#1|) (-1 |#1| (-549)) (-1122 |#1|))) (-15 -3845 ((-1122 |#1|) |#1|)) (-15 -2684 ((-1122 |#1|) (-1122 |#1|) |#1|)) (-15 -4054 ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 -3443 ((-1122 |#1|) (-1122 |#1|))) (-15 -1720 ((-1122 |#1|) (-1122 |#1|))) (-15 -4030 ((-1122 |#1|) (-1122 (-1122 |#1|)))) (-15 -2488 ((-1122 |#1|) (-1122 |#1|))) (-15 -2670 ((-1122 |#1|) (-1122 |#1|))) (-15 -3169 ((-1122 |#1|) (-1122 |#1|))) (-15 -2224 ((-1122 |#1|) (-1122 |#1|) (-549) (-549))) (-15 -2389 ((-1122 |#1|) (-549) (-549) (-1122 |#1|))) (-15 -3010 ((-1122 |#1|) (-549) (-549) (-1122 |#1|))) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -3405 ((-1122 |#1|) |#1| (-1122 |#1|))) (-15 -2486 ((-1122 |#1|) |#1| (-1 (-1122 |#1|)))) (-15 -4281 ((-1122 |#1|) (-1122 (-1122 |#1|)))) (-15 -1917 ((-1122 |#1|) (-400 (-549)) (-1122 |#1|)))) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-15 -3449 ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 -2166 ((-1122 |#1|) (-1 |#1| (-549)) |#1| (-1 (-1122 |#1|)))) (-15 -1742 ((-1122 |#1|) |#1| (-1122 |#1|)))) |%noBranch|)) (-1018)) (T -1126))
+((-1742 (*1 *2 *3 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-356)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (-2166 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *4 (-549))) (-5 *5 (-1 (-1122 *4))) (-4 *4 (-356)) (-4 *4 (-1018)) (-5 *2 (-1122 *4)) (-5 *1 (-1126 *4)))) (-3449 (*1 *2 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-356)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (-1917 (*1 *2 *3 *2) (-12 (-5 *2 (-1122 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1018)) (-5 *3 (-400 (-549))) (-5 *1 (-1126 *4)))) (-4281 (*1 *2 *3) (-12 (-5 *3 (-1122 (-1122 *4))) (-5 *2 (-1122 *4)) (-5 *1 (-1126 *4)) (-4 *4 (-38 (-400 (-549)))) (-4 *4 (-1018)))) (-2486 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-1122 *3))) (-5 *2 (-1122 *3)) (-5 *1 (-1126 *3)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)))) (-3405 (*1 *2 *3 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (-3010 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1122 *4)) (-5 *3 (-549)) (-4 *4 (-1018)) (-5 *1 (-1126 *4)))) (-2389 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1122 *4)) (-5 *3 (-549)) (-4 *4 (-1018)) (-5 *1 (-1126 *4)))) (-2224 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1122 *4)) (-5 *3 (-549)) (-4 *4 (-1018)) (-5 *1 (-1126 *4)))) (-3169 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (-2670 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (-2488 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (-4030 (*1 *2 *3) (-12 (-5 *3 (-1122 (-1122 *4))) (-5 *2 (-1122 *4)) (-5 *1 (-1126 *4)) (-4 *4 (-1018)))) (-1720 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (-3443 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (-4054 (*1 *2 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (-2684 (*1 *2 *2 *3) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (-3845 (*1 *2 *3) (-12 (-5 *2 (-1122 *3)) (-5 *1 (-1126 *3)) (-4 *3 (-1018)))) (-3090 (*1 *2 *3 *2) (-12 (-5 *2 (-1122 *4)) (-5 *3 (-1 *4 (-549))) (-4 *4 (-1018)) (-5 *1 (-1126 *4)))) (-1814 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (-3584 (*1 *2 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (-1832 (*1 *2 *3) (-12 (-5 *2 (-1122 *3)) (-5 *1 (-1126 *3)) (-4 *3 (-1018)))) (-3333 (*1 *2 *3) (-12 (-5 *2 (-1122 (-549))) (-5 *1 (-1126 *4)) (-4 *4 (-1018)) (-5 *3 (-549)))) (-2669 (*1 *2 *3) (-12 (-5 *2 (-1122 (-549))) (-5 *1 (-1126 *4)) (-4 *4 (-1018)) (-5 *3 (-549)))) (-3525 (*1 *2 *3 *4) (-12 (-5 *4 (-549)) (-5 *2 (-1122 *3)) (-5 *1 (-1126 *3)) (-4 *3 (-1018)))) (-2612 (*1 *2 *2) (|partial| -12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (-2511 (*1 *2 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (-2040 (*1 *2 *2 *2) (|partial| -12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (* (*1 *2 *2 *3) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (-2498 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (-2498 (*1 *2 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))) (-2484 (*1 *2 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))))
+(-10 -7 (-15 -2484 ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 -2498 ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 -2498 ((-1122 |#1|) (-1122 |#1|))) (-15 * ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 * ((-1122 |#1|) |#1| (-1122 |#1|))) (-15 * ((-1122 |#1|) (-1122 |#1|) |#1|)) (-15 -2040 ((-3 (-1122 |#1|) "failed") (-1122 |#1|) (-1122 |#1|))) (-15 -2511 ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 -2612 ((-3 (-1122 |#1|) "failed") (-1122 |#1|))) (-15 -3525 ((-1122 |#1|) |#1| (-549))) (-15 -2669 ((-1122 (-549)) (-549))) (-15 -3333 ((-1122 (-549)) (-549))) (-15 -1832 ((-1122 |#1|) |#1|)) (-15 -3584 ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 -1814 ((-1122 |#1|) (-1122 |#1|))) (-15 -3090 ((-1122 |#1|) (-1 |#1| (-549)) (-1122 |#1|))) (-15 -3845 ((-1122 |#1|) |#1|)) (-15 -2684 ((-1122 |#1|) (-1122 |#1|) |#1|)) (-15 -4054 ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 -3443 ((-1122 |#1|) (-1122 |#1|))) (-15 -1720 ((-1122 |#1|) (-1122 |#1|))) (-15 -4030 ((-1122 |#1|) (-1122 (-1122 |#1|)))) (-15 -2488 ((-1122 |#1|) (-1122 |#1|))) (-15 -2670 ((-1122 |#1|) (-1122 |#1|))) (-15 -3169 ((-1122 |#1|) (-1122 |#1|))) (-15 -2224 ((-1122 |#1|) (-1122 |#1|) (-549) (-549))) (-15 -2389 ((-1122 |#1|) (-549) (-549) (-1122 |#1|))) (-15 -3010 ((-1122 |#1|) (-549) (-549) (-1122 |#1|))) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -3405 ((-1122 |#1|) |#1| (-1122 |#1|))) (-15 -2486 ((-1122 |#1|) |#1| (-1 (-1122 |#1|)))) (-15 -4281 ((-1122 |#1|) (-1122 (-1122 |#1|)))) (-15 -1917 ((-1122 |#1|) (-400 (-549)) (-1122 |#1|)))) |%noBranch|) (IF (|has| |#1| (-356)) (PROGN (-15 -3449 ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 -2166 ((-1122 |#1|) (-1 |#1| (-549)) |#1| (-1 (-1122 |#1|)))) (-15 -1742 ((-1122 |#1|) |#1| (-1122 |#1|)))) |%noBranch|))
+((-1662 (((-1122 |#1|) (-1122 |#1|)) 57)) (-1510 (((-1122 |#1|) (-1122 |#1|)) 39)) (-1638 (((-1122 |#1|) (-1122 |#1|)) 53)) (-1483 (((-1122 |#1|) (-1122 |#1|)) 35)) (-1684 (((-1122 |#1|) (-1122 |#1|)) 60)) (-1538 (((-1122 |#1|) (-1122 |#1|)) 42)) (-3631 (((-1122 |#1|) (-1122 |#1|)) 31)) (-2717 (((-1122 |#1|) (-1122 |#1|)) 27)) (-1696 (((-1122 |#1|) (-1122 |#1|)) 61)) (-1551 (((-1122 |#1|) (-1122 |#1|)) 43)) (-1673 (((-1122 |#1|) (-1122 |#1|)) 58)) (-1525 (((-1122 |#1|) (-1122 |#1|)) 40)) (-1648 (((-1122 |#1|) (-1122 |#1|)) 55)) (-1500 (((-1122 |#1|) (-1122 |#1|)) 37)) (-1731 (((-1122 |#1|) (-1122 |#1|)) 65)) (-1585 (((-1122 |#1|) (-1122 |#1|)) 47)) (-1708 (((-1122 |#1|) (-1122 |#1|)) 63)) (-1562 (((-1122 |#1|) (-1122 |#1|)) 45)) (-1753 (((-1122 |#1|) (-1122 |#1|)) 68)) (-1611 (((-1122 |#1|) (-1122 |#1|)) 50)) (-1932 (((-1122 |#1|) (-1122 |#1|)) 69)) (-1625 (((-1122 |#1|) (-1122 |#1|)) 51)) (-1743 (((-1122 |#1|) (-1122 |#1|)) 67)) (-1598 (((-1122 |#1|) (-1122 |#1|)) 49)) (-1719 (((-1122 |#1|) (-1122 |#1|)) 66)) (-1575 (((-1122 |#1|) (-1122 |#1|)) 48)) (** (((-1122 |#1|) (-1122 |#1|) (-1122 |#1|)) 33)))
+(((-1127 |#1|) (-10 -7 (-15 -2717 ((-1122 |#1|) (-1122 |#1|))) (-15 -3631 ((-1122 |#1|) (-1122 |#1|))) (-15 ** ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 -1483 ((-1122 |#1|) (-1122 |#1|))) (-15 -1500 ((-1122 |#1|) (-1122 |#1|))) (-15 -1510 ((-1122 |#1|) (-1122 |#1|))) (-15 -1525 ((-1122 |#1|) (-1122 |#1|))) (-15 -1538 ((-1122 |#1|) (-1122 |#1|))) (-15 -1551 ((-1122 |#1|) (-1122 |#1|))) (-15 -1562 ((-1122 |#1|) (-1122 |#1|))) (-15 -1575 ((-1122 |#1|) (-1122 |#1|))) (-15 -1585 ((-1122 |#1|) (-1122 |#1|))) (-15 -1598 ((-1122 |#1|) (-1122 |#1|))) (-15 -1611 ((-1122 |#1|) (-1122 |#1|))) (-15 -1625 ((-1122 |#1|) (-1122 |#1|))) (-15 -1638 ((-1122 |#1|) (-1122 |#1|))) (-15 -1648 ((-1122 |#1|) (-1122 |#1|))) (-15 -1662 ((-1122 |#1|) (-1122 |#1|))) (-15 -1673 ((-1122 |#1|) (-1122 |#1|))) (-15 -1684 ((-1122 |#1|) (-1122 |#1|))) (-15 -1696 ((-1122 |#1|) (-1122 |#1|))) (-15 -1708 ((-1122 |#1|) (-1122 |#1|))) (-15 -1719 ((-1122 |#1|) (-1122 |#1|))) (-15 -1731 ((-1122 |#1|) (-1122 |#1|))) (-15 -1743 ((-1122 |#1|) (-1122 |#1|))) (-15 -1753 ((-1122 |#1|) (-1122 |#1|))) (-15 -1932 ((-1122 |#1|) (-1122 |#1|)))) (-38 (-400 (-549)))) (T -1127))
+((-1932 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1753 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1743 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1731 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1719 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1708 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1696 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1684 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1673 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1662 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1648 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1638 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1625 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1611 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1598 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1585 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1575 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1562 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1551 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1538 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1525 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1510 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1500 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-1483 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-3631 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))) (-2717 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1127 *3)))))
+(-10 -7 (-15 -2717 ((-1122 |#1|) (-1122 |#1|))) (-15 -3631 ((-1122 |#1|) (-1122 |#1|))) (-15 ** ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 -1483 ((-1122 |#1|) (-1122 |#1|))) (-15 -1500 ((-1122 |#1|) (-1122 |#1|))) (-15 -1510 ((-1122 |#1|) (-1122 |#1|))) (-15 -1525 ((-1122 |#1|) (-1122 |#1|))) (-15 -1538 ((-1122 |#1|) (-1122 |#1|))) (-15 -1551 ((-1122 |#1|) (-1122 |#1|))) (-15 -1562 ((-1122 |#1|) (-1122 |#1|))) (-15 -1575 ((-1122 |#1|) (-1122 |#1|))) (-15 -1585 ((-1122 |#1|) (-1122 |#1|))) (-15 -1598 ((-1122 |#1|) (-1122 |#1|))) (-15 -1611 ((-1122 |#1|) (-1122 |#1|))) (-15 -1625 ((-1122 |#1|) (-1122 |#1|))) (-15 -1638 ((-1122 |#1|) (-1122 |#1|))) (-15 -1648 ((-1122 |#1|) (-1122 |#1|))) (-15 -1662 ((-1122 |#1|) (-1122 |#1|))) (-15 -1673 ((-1122 |#1|) (-1122 |#1|))) (-15 -1684 ((-1122 |#1|) (-1122 |#1|))) (-15 -1696 ((-1122 |#1|) (-1122 |#1|))) (-15 -1708 ((-1122 |#1|) (-1122 |#1|))) (-15 -1719 ((-1122 |#1|) (-1122 |#1|))) (-15 -1731 ((-1122 |#1|) (-1122 |#1|))) (-15 -1743 ((-1122 |#1|) (-1122 |#1|))) (-15 -1753 ((-1122 |#1|) (-1122 |#1|))) (-15 -1932 ((-1122 |#1|) (-1122 |#1|))))
+((-1662 (((-1122 |#1|) (-1122 |#1|)) 100)) (-1510 (((-1122 |#1|) (-1122 |#1|)) 64)) (-1664 (((-2 (|:| -1638 (-1122 |#1|)) (|:| -1648 (-1122 |#1|))) (-1122 |#1|)) 96)) (-1638 (((-1122 |#1|) (-1122 |#1|)) 97)) (-2970 (((-2 (|:| -1483 (-1122 |#1|)) (|:| -1500 (-1122 |#1|))) (-1122 |#1|)) 53)) (-1483 (((-1122 |#1|) (-1122 |#1|)) 54)) (-1684 (((-1122 |#1|) (-1122 |#1|)) 102)) (-1538 (((-1122 |#1|) (-1122 |#1|)) 71)) (-3631 (((-1122 |#1|) (-1122 |#1|)) 39)) (-2717 (((-1122 |#1|) (-1122 |#1|)) 36)) (-1696 (((-1122 |#1|) (-1122 |#1|)) 103)) (-1551 (((-1122 |#1|) (-1122 |#1|)) 72)) (-1673 (((-1122 |#1|) (-1122 |#1|)) 101)) (-1525 (((-1122 |#1|) (-1122 |#1|)) 67)) (-1648 (((-1122 |#1|) (-1122 |#1|)) 98)) (-1500 (((-1122 |#1|) (-1122 |#1|)) 55)) (-1731 (((-1122 |#1|) (-1122 |#1|)) 111)) (-1585 (((-1122 |#1|) (-1122 |#1|)) 86)) (-1708 (((-1122 |#1|) (-1122 |#1|)) 105)) (-1562 (((-1122 |#1|) (-1122 |#1|)) 82)) (-1753 (((-1122 |#1|) (-1122 |#1|)) 115)) (-1611 (((-1122 |#1|) (-1122 |#1|)) 90)) (-1932 (((-1122 |#1|) (-1122 |#1|)) 117)) (-1625 (((-1122 |#1|) (-1122 |#1|)) 92)) (-1743 (((-1122 |#1|) (-1122 |#1|)) 113)) (-1598 (((-1122 |#1|) (-1122 |#1|)) 88)) (-1719 (((-1122 |#1|) (-1122 |#1|)) 107)) (-1575 (((-1122 |#1|) (-1122 |#1|)) 84)) (** (((-1122 |#1|) (-1122 |#1|) (-1122 |#1|)) 40)))
+(((-1128 |#1|) (-10 -7 (-15 -2717 ((-1122 |#1|) (-1122 |#1|))) (-15 -3631 ((-1122 |#1|) (-1122 |#1|))) (-15 ** ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 -2970 ((-2 (|:| -1483 (-1122 |#1|)) (|:| -1500 (-1122 |#1|))) (-1122 |#1|))) (-15 -1483 ((-1122 |#1|) (-1122 |#1|))) (-15 -1500 ((-1122 |#1|) (-1122 |#1|))) (-15 -1510 ((-1122 |#1|) (-1122 |#1|))) (-15 -1525 ((-1122 |#1|) (-1122 |#1|))) (-15 -1538 ((-1122 |#1|) (-1122 |#1|))) (-15 -1551 ((-1122 |#1|) (-1122 |#1|))) (-15 -1562 ((-1122 |#1|) (-1122 |#1|))) (-15 -1575 ((-1122 |#1|) (-1122 |#1|))) (-15 -1585 ((-1122 |#1|) (-1122 |#1|))) (-15 -1598 ((-1122 |#1|) (-1122 |#1|))) (-15 -1611 ((-1122 |#1|) (-1122 |#1|))) (-15 -1625 ((-1122 |#1|) (-1122 |#1|))) (-15 -1664 ((-2 (|:| -1638 (-1122 |#1|)) (|:| -1648 (-1122 |#1|))) (-1122 |#1|))) (-15 -1638 ((-1122 |#1|) (-1122 |#1|))) (-15 -1648 ((-1122 |#1|) (-1122 |#1|))) (-15 -1662 ((-1122 |#1|) (-1122 |#1|))) (-15 -1673 ((-1122 |#1|) (-1122 |#1|))) (-15 -1684 ((-1122 |#1|) (-1122 |#1|))) (-15 -1696 ((-1122 |#1|) (-1122 |#1|))) (-15 -1708 ((-1122 |#1|) (-1122 |#1|))) (-15 -1719 ((-1122 |#1|) (-1122 |#1|))) (-15 -1731 ((-1122 |#1|) (-1122 |#1|))) (-15 -1743 ((-1122 |#1|) (-1122 |#1|))) (-15 -1753 ((-1122 |#1|) (-1122 |#1|))) (-15 -1932 ((-1122 |#1|) (-1122 |#1|)))) (-38 (-400 (-549)))) (T -1128))
+((-1932 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1753 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1743 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1731 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1719 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1708 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1696 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1684 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1673 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1662 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1648 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1638 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1664 (*1 *2 *3) (-12 (-4 *4 (-38 (-400 (-549)))) (-5 *2 (-2 (|:| -1638 (-1122 *4)) (|:| -1648 (-1122 *4)))) (-5 *1 (-1128 *4)) (-5 *3 (-1122 *4)))) (-1625 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1611 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1598 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1585 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1575 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1562 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1551 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1538 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1525 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1510 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1500 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-1483 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-2970 (*1 *2 *3) (-12 (-4 *4 (-38 (-400 (-549)))) (-5 *2 (-2 (|:| -1483 (-1122 *4)) (|:| -1500 (-1122 *4)))) (-5 *1 (-1128 *4)) (-5 *3 (-1122 *4)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-3631 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))) (-2717 (*1 *2 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1128 *3)))))
+(-10 -7 (-15 -2717 ((-1122 |#1|) (-1122 |#1|))) (-15 -3631 ((-1122 |#1|) (-1122 |#1|))) (-15 ** ((-1122 |#1|) (-1122 |#1|) (-1122 |#1|))) (-15 -2970 ((-2 (|:| -1483 (-1122 |#1|)) (|:| -1500 (-1122 |#1|))) (-1122 |#1|))) (-15 -1483 ((-1122 |#1|) (-1122 |#1|))) (-15 -1500 ((-1122 |#1|) (-1122 |#1|))) (-15 -1510 ((-1122 |#1|) (-1122 |#1|))) (-15 -1525 ((-1122 |#1|) (-1122 |#1|))) (-15 -1538 ((-1122 |#1|) (-1122 |#1|))) (-15 -1551 ((-1122 |#1|) (-1122 |#1|))) (-15 -1562 ((-1122 |#1|) (-1122 |#1|))) (-15 -1575 ((-1122 |#1|) (-1122 |#1|))) (-15 -1585 ((-1122 |#1|) (-1122 |#1|))) (-15 -1598 ((-1122 |#1|) (-1122 |#1|))) (-15 -1611 ((-1122 |#1|) (-1122 |#1|))) (-15 -1625 ((-1122 |#1|) (-1122 |#1|))) (-15 -1664 ((-2 (|:| -1638 (-1122 |#1|)) (|:| -1648 (-1122 |#1|))) (-1122 |#1|))) (-15 -1638 ((-1122 |#1|) (-1122 |#1|))) (-15 -1648 ((-1122 |#1|) (-1122 |#1|))) (-15 -1662 ((-1122 |#1|) (-1122 |#1|))) (-15 -1673 ((-1122 |#1|) (-1122 |#1|))) (-15 -1684 ((-1122 |#1|) (-1122 |#1|))) (-15 -1696 ((-1122 |#1|) (-1122 |#1|))) (-15 -1708 ((-1122 |#1|) (-1122 |#1|))) (-15 -1719 ((-1122 |#1|) (-1122 |#1|))) (-15 -1731 ((-1122 |#1|) (-1122 |#1|))) (-15 -1743 ((-1122 |#1|) (-1122 |#1|))) (-15 -1753 ((-1122 |#1|) (-1122 |#1|))) (-15 -1932 ((-1122 |#1|) (-1122 |#1|))))
+((-3382 (((-929 |#2|) |#2| |#2|) 35)) (-3004 ((|#2| |#2| |#1|) 19 (|has| |#1| (-300)))))
+(((-1129 |#1| |#2|) (-10 -7 (-15 -3382 ((-929 |#2|) |#2| |#2|)) (IF (|has| |#1| (-300)) (-15 -3004 (|#2| |#2| |#1|)) |%noBranch|)) (-541) (-1201 |#1|)) (T -1129))
+((-3004 (*1 *2 *2 *3) (-12 (-4 *3 (-300)) (-4 *3 (-541)) (-5 *1 (-1129 *3 *2)) (-4 *2 (-1201 *3)))) (-3382 (*1 *2 *3 *3) (-12 (-4 *4 (-541)) (-5 *2 (-929 *3)) (-5 *1 (-1129 *4 *3)) (-4 *3 (-1201 *4)))))
+(-10 -7 (-15 -3382 ((-929 |#2|) |#2| |#2|)) (IF (|has| |#1| (-300)) (-15 -3004 (|#2| |#2| |#1|)) |%noBranch|))
+((-3832 (((-112) $ $) NIL)) (-2111 (($ $ (-621 (-747))) 67)) (-1788 (($) 26)) (-2175 (($ $) 42)) (-3921 (((-621 $) $) 51)) (-3936 (((-112) $) 16)) (-1796 (((-621 (-914 |#2|)) $) 74)) (-4282 (($ $) 68)) (-2928 (((-747) $) 37)) (-3743 (($) 25)) (-3528 (($ $ (-621 (-747)) (-914 |#2|)) 60) (($ $ (-621 (-747)) (-747)) 61) (($ $ (-747) (-914 |#2|)) 63)) (-3050 (($ $ $) 48) (($ (-621 $)) 50)) (-1493 (((-747) $) 75)) (-3028 (((-112) $) 15)) (-3441 (((-1124) $) NIL)) (-2290 (((-112) $) 18)) (-3988 (((-1086) $) NIL)) (-2226 (((-169) $) 73)) (-1812 (((-914 |#2|) $) 69)) (-1618 (((-747) $) 70)) (-3844 (((-112) $) 72)) (-2118 (($ $ (-621 (-747)) (-169)) 66)) (-2032 (($ $) 43)) (-3845 (((-834) $) 86)) (-2567 (($ $ (-621 (-747)) (-112)) 65)) (-2095 (((-621 $) $) 11)) (-1955 (($ $ (-747)) 36)) (-2248 (($ $) 32)) (-3103 (($ $ $ (-914 |#2|) (-747)) 56)) (-2505 (($ $ (-914 |#2|)) 55)) (-4186 (($ $ (-621 (-747)) (-914 |#2|)) 54) (($ $ (-621 (-747)) (-747)) 58) (((-747) $ (-914 |#2|)) 59)) (-2387 (((-112) $ $) 80)))
+(((-1130 |#1| |#2|) (-13 (-1066) (-10 -8 (-15 -3028 ((-112) $)) (-15 -3936 ((-112) $)) (-15 -2290 ((-112) $)) (-15 -3743 ($)) (-15 -1788 ($)) (-15 -2248 ($ $)) (-15 -1955 ($ $ (-747))) (-15 -2095 ((-621 $) $)) (-15 -2928 ((-747) $)) (-15 -2175 ($ $)) (-15 -2032 ($ $)) (-15 -3050 ($ $ $)) (-15 -3050 ($ (-621 $))) (-15 -3921 ((-621 $) $)) (-15 -4186 ($ $ (-621 (-747)) (-914 |#2|))) (-15 -2505 ($ $ (-914 |#2|))) (-15 -3103 ($ $ $ (-914 |#2|) (-747))) (-15 -3528 ($ $ (-621 (-747)) (-914 |#2|))) (-15 -4186 ($ $ (-621 (-747)) (-747))) (-15 -3528 ($ $ (-621 (-747)) (-747))) (-15 -4186 ((-747) $ (-914 |#2|))) (-15 -3528 ($ $ (-747) (-914 |#2|))) (-15 -2567 ($ $ (-621 (-747)) (-112))) (-15 -2118 ($ $ (-621 (-747)) (-169))) (-15 -2111 ($ $ (-621 (-747)))) (-15 -1812 ((-914 |#2|) $)) (-15 -1618 ((-747) $)) (-15 -3844 ((-112) $)) (-15 -2226 ((-169) $)) (-15 -1493 ((-747) $)) (-15 -4282 ($ $)) (-15 -1796 ((-621 (-914 |#2|)) $)))) (-892) (-1018)) (T -1130))
+((-3028 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-3936 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-2290 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-3743 (*1 *1) (-12 (-5 *1 (-1130 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))) (-1788 (*1 *1) (-12 (-5 *1 (-1130 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))) (-2248 (*1 *1 *1) (-12 (-5 *1 (-1130 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))) (-1955 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-2095 (*1 *2 *1) (-12 (-5 *2 (-621 (-1130 *3 *4))) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-2928 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-2175 (*1 *1 *1) (-12 (-5 *1 (-1130 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))) (-2032 (*1 *1 *1) (-12 (-5 *1 (-1130 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))) (-3050 (*1 *1 *1 *1) (-12 (-5 *1 (-1130 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))) (-3050 (*1 *1 *2) (-12 (-5 *2 (-621 (-1130 *3 *4))) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-3921 (*1 *2 *1) (-12 (-5 *2 (-621 (-1130 *3 *4))) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-4186 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-747))) (-5 *3 (-914 *5)) (-4 *5 (-1018)) (-5 *1 (-1130 *4 *5)) (-14 *4 (-892)))) (-2505 (*1 *1 *1 *2) (-12 (-5 *2 (-914 *4)) (-4 *4 (-1018)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892)))) (-3103 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-914 *5)) (-5 *3 (-747)) (-4 *5 (-1018)) (-5 *1 (-1130 *4 *5)) (-14 *4 (-892)))) (-3528 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-747))) (-5 *3 (-914 *5)) (-4 *5 (-1018)) (-5 *1 (-1130 *4 *5)) (-14 *4 (-892)))) (-4186 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-747))) (-5 *3 (-747)) (-5 *1 (-1130 *4 *5)) (-14 *4 (-892)) (-4 *5 (-1018)))) (-3528 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-747))) (-5 *3 (-747)) (-5 *1 (-1130 *4 *5)) (-14 *4 (-892)) (-4 *5 (-1018)))) (-4186 (*1 *2 *1 *3) (-12 (-5 *3 (-914 *5)) (-4 *5 (-1018)) (-5 *2 (-747)) (-5 *1 (-1130 *4 *5)) (-14 *4 (-892)))) (-3528 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *3 (-914 *5)) (-4 *5 (-1018)) (-5 *1 (-1130 *4 *5)) (-14 *4 (-892)))) (-2567 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-747))) (-5 *3 (-112)) (-5 *1 (-1130 *4 *5)) (-14 *4 (-892)) (-4 *5 (-1018)))) (-2118 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-621 (-747))) (-5 *3 (-169)) (-5 *1 (-1130 *4 *5)) (-14 *4 (-892)) (-4 *5 (-1018)))) (-2111 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-747))) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-1812 (*1 *2 *1) (-12 (-5 *2 (-914 *4)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-1618 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-3844 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-2226 (*1 *2 *1) (-12 (-5 *2 (-169)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-1493 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))) (-4282 (*1 *1 *1) (-12 (-5 *1 (-1130 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))) (-1796 (*1 *2 *1) (-12 (-5 *2 (-621 (-914 *4))) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892)) (-4 *4 (-1018)))))
+(-13 (-1066) (-10 -8 (-15 -3028 ((-112) $)) (-15 -3936 ((-112) $)) (-15 -2290 ((-112) $)) (-15 -3743 ($)) (-15 -1788 ($)) (-15 -2248 ($ $)) (-15 -1955 ($ $ (-747))) (-15 -2095 ((-621 $) $)) (-15 -2928 ((-747) $)) (-15 -2175 ($ $)) (-15 -2032 ($ $)) (-15 -3050 ($ $ $)) (-15 -3050 ($ (-621 $))) (-15 -3921 ((-621 $) $)) (-15 -4186 ($ $ (-621 (-747)) (-914 |#2|))) (-15 -2505 ($ $ (-914 |#2|))) (-15 -3103 ($ $ $ (-914 |#2|) (-747))) (-15 -3528 ($ $ (-621 (-747)) (-914 |#2|))) (-15 -4186 ($ $ (-621 (-747)) (-747))) (-15 -3528 ($ $ (-621 (-747)) (-747))) (-15 -4186 ((-747) $ (-914 |#2|))) (-15 -3528 ($ $ (-747) (-914 |#2|))) (-15 -2567 ($ $ (-621 (-747)) (-112))) (-15 -2118 ($ $ (-621 (-747)) (-169))) (-15 -2111 ($ $ (-621 (-747)))) (-15 -1812 ((-914 |#2|) $)) (-15 -1618 ((-747) $)) (-15 -3844 ((-112) $)) (-15 -2226 ((-169) $)) (-15 -1493 ((-747) $)) (-15 -4282 ($ $)) (-15 -1796 ((-621 (-914 |#2|)) $))))
+((-3832 (((-112) $ $) NIL)) (-2200 ((|#2| $) 11)) (-2187 ((|#1| $) 10)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3853 (($ |#1| |#2|) 9)) (-3845 (((-834) $) 16)) (-2387 (((-112) $ $) NIL)))
+(((-1131 |#1| |#2|) (-13 (-1066) (-10 -8 (-15 -3853 ($ |#1| |#2|)) (-15 -2187 (|#1| $)) (-15 -2200 (|#2| $)))) (-1066) (-1066)) (T -1131))
+((-3853 (*1 *1 *2 *3) (-12 (-5 *1 (-1131 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066)))) (-2187 (*1 *2 *1) (-12 (-4 *2 (-1066)) (-5 *1 (-1131 *2 *3)) (-4 *3 (-1066)))) (-2200 (*1 *2 *1) (-12 (-4 *2 (-1066)) (-5 *1 (-1131 *3 *2)) (-4 *3 (-1066)))))
+(-13 (-1066) (-10 -8 (-15 -3853 ($ |#1| |#2|)) (-15 -2187 (|#1| $)) (-15 -2200 (|#2| $))))
+((-3832 (((-112) $ $) NIL)) (-2822 (((-1101) $) 9)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 17) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-1132) (-13 (-1049) (-10 -8 (-15 -2822 ((-1101) $))))) (T -1132))
+((-2822 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-1132)))))
+(-13 (-1049) (-10 -8 (-15 -2822 ((-1101) $))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3833 (((-1140 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-300)) (|has| |#1| (-356))))) (-2270 (((-621 (-1048)) $) NIL)) (-3009 (((-1142) $) 11)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1140 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-3044 (($ $) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1140 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-2774 (((-112) $) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1140 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-3691 (($ $ (-549)) NIL) (($ $ (-549) (-549)) 66)) (-2585 (((-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $) NIL)) (-1398 (((-1140 |#1| |#2| |#3|) $) 36)) (-2294 (((-3 (-1140 |#1| |#2| |#3|) "failed") $) 29)) (-2337 (((-1140 |#1| |#2| |#3|) $) 30)) (-1662 (($ $) 107 (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) 83 (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-3239 (($ $) NIL (|has| |#1| (-356)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2132 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-2680 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1638 (($ $) 103 (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) 79 (|has| |#1| (-38 (-400 (-549)))))) (-1741 (((-549) $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))))) (-2824 (($ (-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|)))) NIL)) (-1684 (($ $) 111 (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) 87 (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-1140 |#1| |#2| |#3|) "failed") $) 31) (((-3 (-1142) "failed") $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-1009 (-1142))) (|has| |#1| (-356)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356)))) (((-3 (-549) "failed") $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356))))) (-2657 (((-1140 |#1| |#2| |#3|) $) 131) (((-1142) $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-1009 (-1142))) (|has| |#1| (-356)))) (((-400 (-549)) $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356)))) (((-549) $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356))))) (-1904 (($ $) 34) (($ (-549) $) 35)) (-2091 (($ $ $) NIL (|has| |#1| (-356)))) (-2068 (($ $) NIL)) (-3446 (((-665 (-1140 |#1| |#2| |#3|)) (-665 $)) NIL (|has| |#1| (-356))) (((-2 (|:| -3697 (-665 (-1140 |#1| |#2| |#3|))) (|:| |vec| (-1225 (-1140 |#1| |#2| |#3|)))) (-665 $) (-1225 $)) NIL (|has| |#1| (-356))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-617 (-549))) (|has| |#1| (-356)))) (((-665 (-549)) (-665 $)) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-617 (-549))) (|has| |#1| (-356))))) (-2612 (((-3 $ "failed") $) 48)) (-1729 (((-400 (-923 |#1|)) $ (-549)) 65 (|has| |#1| (-541))) (((-400 (-923 |#1|)) $ (-549) (-549)) 67 (|has| |#1| (-541)))) (-3237 (($) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-534)) (|has| |#1| (-356))))) (-2065 (($ $ $) NIL (|has| |#1| (-356)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1464 (((-112) $) NIL (|has| |#1| (-356)))) (-2357 (((-112) $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))))) (-1410 (((-112) $) 25)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-857 (-549))) (|has| |#1| (-356)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-857 (-372))) (|has| |#1| (-356))))) (-2729 (((-549) $) NIL) (((-549) $ (-549)) 24)) (-2297 (((-112) $) NIL)) (-2096 (($ $) NIL (|has| |#1| (-356)))) (-1392 (((-1140 |#1| |#2| |#3|) $) 38 (|has| |#1| (-356)))) (-3621 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2964 (((-3 $ "failed") $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-1117)) (|has| |#1| (-356))))) (-1992 (((-112) $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))))) (-2625 (($ $ (-892)) NIL)) (-1837 (($ (-1 |#1| (-549)) $) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-549)) 18) (($ $ (-1048) (-549)) NIL) (($ $ (-621 (-1048)) (-621 (-549))) NIL)) (-2861 (($ $ $) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1140 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-3574 (($ $ $) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1140 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1140 |#1| |#2| |#3|) (-1140 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-356)))) (-3631 (($ $) 72 (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2352 (($ (-549) (-1140 |#1| |#2| |#3|)) 33)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL (|has| |#1| (-356)))) (-3405 (($ $) 70 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1142)) NIL (-1536 (-12 (|has| |#1| (-15 -3405 (|#1| |#1| (-1142)))) (|has| |#1| (-15 -2270 ((-621 (-1142)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1164))))) (($ $ (-1221 |#2|)) 71 (|has| |#1| (-38 (-400 (-549)))))) (-3059 (($) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-1117)) (|has| |#1| (-356))) CONST)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-356)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-1512 (($ $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-300)) (|has| |#1| (-356))))) (-1349 (((-1140 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-534)) (|has| |#1| (-356))))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-2119 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-3796 (($ $ (-549)) 145)) (-2040 (((-3 $ "failed") $ $) 49 (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1140 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2717 (($ $) 73 (|has| |#1| (-38 (-400 (-549)))))) (-2684 (((-1122 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-549))))) (($ $ (-1142) (-1140 |#1| |#2| |#3|)) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-505 (-1142) (-1140 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-621 (-1142)) (-621 (-1140 |#1| |#2| |#3|))) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-505 (-1142) (-1140 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-621 (-287 (-1140 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-302 (-1140 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-287 (-1140 |#1| |#2| |#3|))) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-302 (-1140 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-1140 |#1| |#2| |#3|) (-1140 |#1| |#2| |#3|)) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-302 (-1140 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-621 (-1140 |#1| |#2| |#3|)) (-621 (-1140 |#1| |#2| |#3|))) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-302 (-1140 |#1| |#2| |#3|))) (|has| |#1| (-356))))) (-1335 (((-747) $) NIL (|has| |#1| (-356)))) (-3339 ((|#1| $ (-549)) NIL) (($ $ $) 54 (|has| (-549) (-1078))) (($ $ (-1140 |#1| |#2| |#3|)) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-279 (-1140 |#1| |#2| |#3|) (-1140 |#1| |#2| |#3|))) (|has| |#1| (-356))))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-356)))) (-3455 (($ $ (-1 (-1140 |#1| |#2| |#3|) (-1140 |#1| |#2| |#3|))) NIL (|has| |#1| (-356))) (($ $ (-1 (-1140 |#1| |#2| |#3|) (-1140 |#1| |#2| |#3|)) (-747)) NIL (|has| |#1| (-356))) (($ $ (-1221 |#2|)) 51) (($ $ (-747)) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $) 50 (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-1142) (-747)) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-621 (-1142))) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-1142)) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142))))))) (-4095 (($ $) NIL (|has| |#1| (-356)))) (-1404 (((-1140 |#1| |#2| |#3|) $) 41 (|has| |#1| (-356)))) (-3977 (((-549) $) 37)) (-1696 (($ $) 113 (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) 89 (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) 109 (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) 85 (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) 105 (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) 81 (|has| |#1| (-38 (-400 (-549)))))) (-2843 (((-525) $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-594 (-525))) (|has| |#1| (-356)))) (((-372) $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-993)) (|has| |#1| (-356)))) (((-219) $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-993)) (|has| |#1| (-356)))) (((-863 (-372)) $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-594 (-863 (-372)))) (|has| |#1| (-356)))) (((-863 (-549)) $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-594 (-863 (-549)))) (|has| |#1| (-356))))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-1140 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-3958 (($ $) NIL)) (-3845 (((-834) $) 149) (($ (-549)) NIL) (($ |#1|) NIL (|has| |#1| (-170))) (($ (-1140 |#1| |#2| |#3|)) 27) (($ (-1221 |#2|)) 23) (($ (-1142)) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-1009 (-1142))) (|has| |#1| (-356)))) (($ $) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1140 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541)))) (($ (-400 (-549))) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356))) (|has| |#1| (-38 (-400 (-549))))))) (-4068 ((|#1| $ (-549)) 68)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-1140 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (-12 (|has| (-1140 |#1| |#2| |#3|) (-143)) (|has| |#1| (-356))) (|has| |#1| (-143))))) (-2371 (((-747)) NIL)) (-2596 ((|#1| $) 12)) (-3497 (((-1140 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-534)) (|has| |#1| (-356))))) (-1731 (($ $) 119 (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) 95 (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1140 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-1708 (($ $) 115 (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) 91 (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) 123 (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) 99 (|has| |#1| (-38 (-400 (-549)))))) (-2659 ((|#1| $ (-549)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-549)))) (|has| |#1| (-15 -3845 (|#1| (-1142))))))) (-1932 (($ $) 125 (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) 101 (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) 121 (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) 97 (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) 117 (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) 93 (|has| |#1| (-38 (-400 (-549)))))) (-2199 (($ $) NIL (-12 (|has| (-1140 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))))) (-3274 (($) 20 T CONST)) (-3286 (($) 16 T CONST)) (-1699 (($ $ (-1 (-1140 |#1| |#2| |#3|) (-1140 |#1| |#2| |#3|))) NIL (|has| |#1| (-356))) (($ $ (-1 (-1140 |#1| |#2| |#3|) (-1140 |#1| |#2| |#3|)) (-747)) NIL (|has| |#1| (-356))) (($ $ (-747)) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-1142) (-747)) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-621 (-1142))) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-1142)) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142))))))) (-2447 (((-112) $ $) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1140 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2423 (((-112) $ $) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1140 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1140 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2409 (((-112) $ $) NIL (-1536 (-12 (|has| (-1140 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1140 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) 44 (|has| |#1| (-356))) (($ (-1140 |#1| |#2| |#3|) (-1140 |#1| |#2| |#3|)) 45 (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) 21)) (** (($ $ (-892)) NIL) (($ $ (-747)) 53) (($ $ (-549)) NIL (|has| |#1| (-356))) (($ $ $) 74 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 128 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 32) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1140 |#1| |#2| |#3|)) 43 (|has| |#1| (-356))) (($ (-1140 |#1| |#2| |#3|) $) 42 (|has| |#1| (-356))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
+(((-1133 |#1| |#2| |#3|) (-13 (-1187 |#1| (-1140 |#1| |#2| |#3|)) (-10 -8 (-15 -3845 ($ (-1221 |#2|))) (-15 -3455 ($ $ (-1221 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3405 ($ $ (-1221 |#2|))) |%noBranch|))) (-1018) (-1142) |#1|) (T -1133))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1133 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3455 (*1 *1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1133 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3405 (*1 *1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1133 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3))))
+(-13 (-1187 |#1| (-1140 |#1| |#2| |#3|)) (-10 -8 (-15 -3845 ($ (-1221 |#2|))) (-15 -3455 ($ $ (-1221 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3405 ($ $ (-1221 |#2|))) |%noBranch|)))
+((-2819 ((|#2| |#2| (-1058 |#2|)) 26) ((|#2| |#2| (-1142)) 28)))
+(((-1134 |#1| |#2|) (-10 -7 (-15 -2819 (|#2| |#2| (-1142))) (-15 -2819 (|#2| |#2| (-1058 |#2|)))) (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-423 |#1|) (-158) (-27) (-1164))) (T -1134))
+((-2819 (*1 *2 *2 *3) (-12 (-5 *3 (-1058 *2)) (-4 *2 (-13 (-423 *4) (-158) (-27) (-1164))) (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1134 *4 *2)))) (-2819 (*1 *2 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1134 *4 *2)) (-4 *2 (-13 (-423 *4) (-158) (-27) (-1164))))))
+(-10 -7 (-15 -2819 (|#2| |#2| (-1142))) (-15 -2819 (|#2| |#2| (-1058 |#2|))))
+((-2819 (((-3 (-400 (-923 |#1|)) (-309 |#1|)) (-400 (-923 |#1|)) (-1058 (-400 (-923 |#1|)))) 31) (((-400 (-923 |#1|)) (-923 |#1|) (-1058 (-923 |#1|))) 44) (((-3 (-400 (-923 |#1|)) (-309 |#1|)) (-400 (-923 |#1|)) (-1142)) 33) (((-400 (-923 |#1|)) (-923 |#1|) (-1142)) 36)))
+(((-1135 |#1|) (-10 -7 (-15 -2819 ((-400 (-923 |#1|)) (-923 |#1|) (-1142))) (-15 -2819 ((-3 (-400 (-923 |#1|)) (-309 |#1|)) (-400 (-923 |#1|)) (-1142))) (-15 -2819 ((-400 (-923 |#1|)) (-923 |#1|) (-1058 (-923 |#1|)))) (-15 -2819 ((-3 (-400 (-923 |#1|)) (-309 |#1|)) (-400 (-923 |#1|)) (-1058 (-400 (-923 |#1|)))))) (-13 (-541) (-823) (-1009 (-549)))) (T -1135))
+((-2819 (*1 *2 *3 *4) (-12 (-5 *4 (-1058 (-400 (-923 *5)))) (-5 *3 (-400 (-923 *5))) (-4 *5 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-3 *3 (-309 *5))) (-5 *1 (-1135 *5)))) (-2819 (*1 *2 *3 *4) (-12 (-5 *4 (-1058 (-923 *5))) (-5 *3 (-923 *5)) (-4 *5 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-400 *3)) (-5 *1 (-1135 *5)))) (-2819 (*1 *2 *3 *4) (-12 (-5 *4 (-1142)) (-4 *5 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-3 (-400 (-923 *5)) (-309 *5))) (-5 *1 (-1135 *5)) (-5 *3 (-400 (-923 *5))))) (-2819 (*1 *2 *3 *4) (-12 (-5 *4 (-1142)) (-4 *5 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-400 (-923 *5))) (-5 *1 (-1135 *5)) (-5 *3 (-923 *5)))))
+(-10 -7 (-15 -2819 ((-400 (-923 |#1|)) (-923 |#1|) (-1142))) (-15 -2819 ((-3 (-400 (-923 |#1|)) (-309 |#1|)) (-400 (-923 |#1|)) (-1142))) (-15 -2819 ((-400 (-923 |#1|)) (-923 |#1|) (-1058 (-923 |#1|)))) (-15 -2819 ((-3 (-400 (-923 |#1|)) (-309 |#1|)) (-400 (-923 |#1|)) (-1058 (-400 (-923 |#1|))))))
+((-2795 (((-1138 |#2|) (-1 |#2| |#1|) (-1138 |#1|)) 13)))
+(((-1136 |#1| |#2|) (-10 -7 (-15 -2795 ((-1138 |#2|) (-1 |#2| |#1|) (-1138 |#1|)))) (-1018) (-1018)) (T -1136))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1138 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-5 *2 (-1138 *6)) (-5 *1 (-1136 *5 *6)))))
+(-10 -7 (-15 -2795 ((-1138 |#2|) (-1 |#2| |#1|) (-1138 |#1|))))
+((-2620 (((-411 (-1138 (-400 |#4|))) (-1138 (-400 |#4|))) 51)) (-2119 (((-411 (-1138 (-400 |#4|))) (-1138 (-400 |#4|))) 52)))
+(((-1137 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2119 ((-411 (-1138 (-400 |#4|))) (-1138 (-400 |#4|)))) (-15 -2620 ((-411 (-1138 (-400 |#4|))) (-1138 (-400 |#4|))))) (-769) (-823) (-444) (-920 |#3| |#1| |#2|)) (T -1137))
+((-2620 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-444)) (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-411 (-1138 (-400 *7)))) (-5 *1 (-1137 *4 *5 *6 *7)) (-5 *3 (-1138 (-400 *7))))) (-2119 (*1 *2 *3) (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-444)) (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-411 (-1138 (-400 *7)))) (-5 *1 (-1137 *4 *5 *6 *7)) (-5 *3 (-1138 (-400 *7))))))
+(-10 -7 (-15 -2119 ((-411 (-1138 (-400 |#4|))) (-1138 (-400 |#4|)))) (-15 -2620 ((-411 (-1138 (-400 |#4|))) (-1138 (-400 |#4|)))))
+((-3832 (((-112) $ $) 137)) (-3210 (((-112) $) 27)) (-1432 (((-1225 |#1|) $ (-747)) NIL)) (-2270 (((-621 (-1048)) $) NIL)) (-3842 (($ (-1138 |#1|)) NIL)) (-2082 (((-1138 $) $ (-1048)) 58) (((-1138 |#1|) $) 47)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) 132 (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-2216 (((-747) $) NIL) (((-747) $ (-621 (-1048))) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-2070 (($ $ $) 126 (|has| |#1| (-541)))) (-3630 (((-411 (-1138 $)) (-1138 $)) 71 (|has| |#1| (-880)))) (-3239 (($ $) NIL (|has| |#1| (-444)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) 91 (|has| |#1| (-880)))) (-2680 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1665 (($ $ (-747)) 39)) (-1586 (($ $ (-747)) 40)) (-3921 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-444)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#1| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-1048) "failed") $) NIL)) (-2657 ((|#1| $) NIL) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-1048) $) NIL)) (-4114 (($ $ $ (-1048)) NIL (|has| |#1| (-170))) ((|#1| $ $) 128 (|has| |#1| (-170)))) (-2091 (($ $ $) NIL (|has| |#1| (-356)))) (-2068 (($ $) 56)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) NIL) (((-665 |#1|) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-2065 (($ $ $) NIL (|has| |#1| (-356)))) (-1507 (($ $ $) 104)) (-1563 (($ $ $) NIL (|has| |#1| (-541)))) (-2805 (((-2 (|:| -1569 |#1|) (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-541)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-3004 (($ $) 133 (|has| |#1| (-444))) (($ $ (-1048)) NIL (|has| |#1| (-444)))) (-2056 (((-621 $) $) NIL)) (-1464 (((-112) $) NIL (|has| |#1| (-880)))) (-4064 (($ $ |#1| (-747) $) 45)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-1048) (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-1048) (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2856 (((-834) $ (-834)) 117)) (-2729 (((-747) $ $) NIL (|has| |#1| (-541)))) (-2297 (((-112) $) 30)) (-1751 (((-747) $) NIL)) (-2964 (((-3 $ "failed") $) NIL (|has| |#1| (-1117)))) (-2259 (($ (-1138 |#1|) (-1048)) 49) (($ (-1138 $) (-1048)) 65)) (-2625 (($ $ (-747)) 32)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-747)) 63) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ (-1048)) NIL) (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 121)) (-2391 (((-747) $) NIL) (((-747) $ (-1048)) NIL) (((-621 (-747)) $ (-621 (-1048))) NIL)) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-3224 (($ (-1 (-747) (-747)) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3440 (((-1138 |#1|) $) NIL)) (-2236 (((-3 (-1048) "failed") $) NIL)) (-2027 (($ $) NIL)) (-2042 ((|#1| $) 52)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) NIL (|has| |#1| (-444)))) (-3441 (((-1124) $) NIL)) (-3297 (((-2 (|:| -2262 $) (|:| -1809 $)) $ (-747)) 38)) (-4093 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-621 $) "failed") $) NIL)) (-1477 (((-3 (-2 (|:| |var| (-1048)) (|:| -1714 (-747))) "failed") $) NIL)) (-3405 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3059 (($) NIL (|has| |#1| (-1117)) CONST)) (-3988 (((-1086) $) NIL)) (-2001 (((-112) $) 31)) (-2011 ((|#1| $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 79 (|has| |#1| (-444)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-444))) (($ $ $) 135 (|has| |#1| (-444)))) (-4097 (($ $ (-747) |#1| $) 99)) (-2609 (((-411 (-1138 $)) (-1138 $)) 77 (|has| |#1| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) 76 (|has| |#1| (-880)))) (-2119 (((-411 $) $) 84 (|has| |#1| (-880)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-2040 (((-3 $ "failed") $ |#1|) 131 (|has| |#1| (-541))) (((-3 $ "failed") $ $) 100 (|has| |#1| (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2684 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-1048) |#1|) NIL) (($ $ (-621 (-1048)) (-621 |#1|)) NIL) (($ $ (-1048) $) NIL) (($ $ (-621 (-1048)) (-621 $)) NIL)) (-1335 (((-747) $) NIL (|has| |#1| (-356)))) (-3339 ((|#1| $ |#1|) 119) (($ $ $) 120) (((-400 $) (-400 $) (-400 $)) NIL (|has| |#1| (-541))) ((|#1| (-400 $) |#1|) NIL (|has| |#1| (-356))) (((-400 $) $ (-400 $)) NIL (|has| |#1| (-541)))) (-2432 (((-3 $ "failed") $ (-747)) 35)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 138 (|has| |#1| (-356)))) (-2740 (($ $ (-1048)) NIL (|has| |#1| (-170))) ((|#1| $) 124 (|has| |#1| (-170)))) (-3455 (($ $ (-1048)) NIL) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) NIL) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3977 (((-747) $) 54) (((-747) $ (-1048)) NIL) (((-621 (-747)) $ (-621 (-1048))) NIL)) (-2843 (((-863 (-372)) $) NIL (-12 (|has| (-1048) (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-1048) (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-1048) (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-1700 ((|#1| $) 130 (|has| |#1| (-444))) (($ $ (-1048)) NIL (|has| |#1| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#1| (-880))))) (-1582 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541))) (((-3 (-400 $) "failed") (-400 $) $) NIL (|has| |#1| (-541)))) (-3845 (((-834) $) 118) (($ (-549)) NIL) (($ |#1|) 53) (($ (-1048)) NIL) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#1| (-541)))) (-2157 (((-621 |#1|) $) NIL)) (-4068 ((|#1| $ (-747)) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2371 (((-747)) NIL)) (-4046 (($ $ $ (-747)) 25 (|has| |#1| (-170)))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3274 (($) 15 T CONST)) (-3286 (($) 16 T CONST)) (-1699 (($ $ (-1048)) NIL) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) NIL) (($ $ (-1142)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) 96)) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2511 (($ $ |#1|) 139 (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) 66)) (** (($ $ (-892)) 14) (($ $ (-747)) 12)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 24) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 102) (($ $ |#1|) NIL)))
+(((-1138 |#1|) (-13 (-1201 |#1|) (-10 -8 (-15 -2856 ((-834) $ (-834))) (-15 -4097 ($ $ (-747) |#1| $)))) (-1018)) (T -1138))
+((-2856 (*1 *2 *1 *2) (-12 (-5 *2 (-834)) (-5 *1 (-1138 *3)) (-4 *3 (-1018)))) (-4097 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-747)) (-5 *1 (-1138 *3)) (-4 *3 (-1018)))))
+(-13 (-1201 |#1|) (-10 -8 (-15 -2856 ((-834) $ (-834))) (-15 -4097 ($ $ (-747) |#1| $))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2270 (((-621 (-1048)) $) NIL)) (-3009 (((-1142) $) 11)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-3691 (($ $ (-400 (-549))) NIL) (($ $ (-400 (-549)) (-400 (-549))) NIL)) (-2585 (((-1122 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|))) $) NIL)) (-1662 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL (|has| |#1| (-356)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2132 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2680 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1638 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2824 (($ (-747) (-1122 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|)))) NIL)) (-1684 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-1133 |#1| |#2| |#3|) "failed") $) 33) (((-3 (-1140 |#1| |#2| |#3|) "failed") $) 36)) (-2657 (((-1133 |#1| |#2| |#3|) $) NIL) (((-1140 |#1| |#2| |#3|) $) NIL)) (-2091 (($ $ $) NIL (|has| |#1| (-356)))) (-2068 (($ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-4047 (((-400 (-549)) $) 55)) (-2065 (($ $ $) NIL (|has| |#1| (-356)))) (-2365 (($ (-400 (-549)) (-1133 |#1| |#2| |#3|)) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1464 (((-112) $) NIL (|has| |#1| (-356)))) (-1410 (((-112) $) NIL)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2729 (((-400 (-549)) $) NIL) (((-400 (-549)) $ (-400 (-549))) NIL)) (-2297 (((-112) $) NIL)) (-3621 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2625 (($ $ (-892)) NIL) (($ $ (-400 (-549))) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-400 (-549))) 20) (($ $ (-1048) (-400 (-549))) NIL) (($ $ (-621 (-1048)) (-621 (-400 (-549)))) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3631 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2300 (((-1133 |#1| |#2| |#3|) $) 41)) (-1966 (((-3 (-1133 |#1| |#2| |#3|) "failed") $) NIL)) (-2352 (((-1133 |#1| |#2| |#3|) $) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL (|has| |#1| (-356)))) (-3405 (($ $) 39 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1142)) NIL (-1536 (-12 (|has| |#1| (-15 -3405 (|#1| |#1| (-1142)))) (|has| |#1| (-15 -2270 ((-621 (-1142)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1164))))) (($ $ (-1221 |#2|)) 40 (|has| |#1| (-38 (-400 (-549)))))) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-356)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2119 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-3796 (($ $ (-400 (-549))) NIL)) (-2040 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2717 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2684 (((-1122 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))))) (-1335 (((-747) $) NIL (|has| |#1| (-356)))) (-3339 ((|#1| $ (-400 (-549))) NIL) (($ $ $) NIL (|has| (-400 (-549)) (-1078)))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-356)))) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $ (-1221 |#2|)) 38)) (-3977 (((-400 (-549)) $) NIL)) (-1696 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3958 (($ $) NIL)) (-3845 (((-834) $) 58) (($ (-549)) NIL) (($ |#1|) NIL (|has| |#1| (-170))) (($ (-1133 |#1| |#2| |#3|)) 30) (($ (-1140 |#1| |#2| |#3|)) 31) (($ (-1221 |#2|)) 26) (($ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541)))) (-4068 ((|#1| $ (-400 (-549))) NIL)) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) NIL)) (-2596 ((|#1| $) 12)) (-1731 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1708 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2659 ((|#1| $ (-400 (-549))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))) (|has| |#1| (-15 -3845 (|#1| (-1142))))))) (-1932 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3274 (($) 22 T CONST)) (-3286 (($) 16 T CONST)) (-1699 (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) 24)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
+(((-1139 |#1| |#2| |#3|) (-13 (-1208 |#1| (-1133 |#1| |#2| |#3|)) (-1009 (-1140 |#1| |#2| |#3|)) (-10 -8 (-15 -3845 ($ (-1221 |#2|))) (-15 -3455 ($ $ (-1221 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3405 ($ $ (-1221 |#2|))) |%noBranch|))) (-1018) (-1142) |#1|) (T -1139))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1139 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3455 (*1 *1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1139 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3405 (*1 *1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1139 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3))))
+(-13 (-1208 |#1| (-1133 |#1| |#2| |#3|)) (-1009 (-1140 |#1| |#2| |#3|)) (-10 -8 (-15 -3845 ($ (-1221 |#2|))) (-15 -3455 ($ $ (-1221 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3405 ($ $ (-1221 |#2|))) |%noBranch|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 125)) (-2270 (((-621 (-1048)) $) NIL)) (-3009 (((-1142) $) 116)) (-2895 (((-1198 |#2| |#1|) $ (-747)) 63)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-3691 (($ $ (-747)) 79) (($ $ (-747) (-747)) 76)) (-2585 (((-1122 (-2 (|:| |k| (-747)) (|:| |c| |#1|))) $) 102)) (-1662 (($ $) 169 (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) 145 (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) NIL)) (-2132 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1638 (($ $) 165 (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) 141 (|has| |#1| (-38 (-400 (-549)))))) (-2824 (($ (-1122 (-2 (|:| |k| (-747)) (|:| |c| |#1|)))) 115) (($ (-1122 |#1|)) 110)) (-1684 (($ $) 173 (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) 149 (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) NIL T CONST)) (-2068 (($ $) NIL)) (-2612 (((-3 $ "failed") $) 23)) (-3061 (($ $) 26)) (-1413 (((-923 |#1|) $ (-747)) 75) (((-923 |#1|) $ (-747) (-747)) 77)) (-1410 (((-112) $) 120)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2729 (((-747) $) 122) (((-747) $ (-747)) 124)) (-2297 (((-112) $) NIL)) (-3621 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2625 (($ $ (-892)) NIL)) (-1837 (($ (-1 |#1| (-549)) $) NIL)) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-747)) 13) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3631 (($ $) 131 (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-3441 (((-1124) $) NIL)) (-3405 (($ $) 129 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1142)) NIL (-1536 (-12 (|has| |#1| (-15 -3405 (|#1| |#1| (-1142)))) (|has| |#1| (-15 -2270 ((-621 (-1142)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1164))))) (($ $ (-1221 |#2|)) 130 (|has| |#1| (-38 (-400 (-549)))))) (-3988 (((-1086) $) NIL)) (-3796 (($ $ (-747)) 15)) (-2040 (((-3 $ "failed") $ $) 24 (|has| |#1| (-541)))) (-2717 (($ $) 133 (|has| |#1| (-38 (-400 (-549)))))) (-2684 (((-1122 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-747)))))) (-3339 ((|#1| $ (-747)) 119) (($ $ $) 128 (|has| (-747) (-1078)))) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142)) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-747) |#1|)))) (($ $) 27 (|has| |#1| (-15 * (|#1| (-747) |#1|)))) (($ $ (-1221 |#2|)) 29)) (-3977 (((-747) $) NIL)) (-1696 (($ $) 175 (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) 151 (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) 171 (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) 147 (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) 167 (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) 143 (|has| |#1| (-38 (-400 (-549)))))) (-3958 (($ $) NIL)) (-3845 (((-834) $) 201) (($ (-549)) NIL) (($ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541))) (($ |#1|) 126 (|has| |#1| (-170))) (($ (-1198 |#2| |#1|)) 51) (($ (-1221 |#2|)) 32)) (-2157 (((-1122 |#1|) $) 98)) (-4068 ((|#1| $ (-747)) 118)) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) NIL)) (-2596 ((|#1| $) 54)) (-1731 (($ $) 181 (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) 157 (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1708 (($ $) 177 (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) 153 (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) 185 (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) 161 (|has| |#1| (-38 (-400 (-549)))))) (-2659 ((|#1| $ (-747)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-747)))) (|has| |#1| (-15 -3845 (|#1| (-1142))))))) (-1932 (($ $) 187 (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) 163 (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) 183 (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) 159 (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) 179 (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) 155 (|has| |#1| (-38 (-400 (-549)))))) (-3274 (($) 17 T CONST)) (-3286 (($) 19 T CONST)) (-1699 (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142)) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-747) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) 194)) (-2484 (($ $ $) 31)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ |#1|) 198 (|has| |#1| (-356))) (($ $ $) 134 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 137 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 132) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
+(((-1140 |#1| |#2| |#3|) (-13 (-1216 |#1|) (-10 -8 (-15 -3845 ($ (-1198 |#2| |#1|))) (-15 -2895 ((-1198 |#2| |#1|) $ (-747))) (-15 -3845 ($ (-1221 |#2|))) (-15 -3455 ($ $ (-1221 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3405 ($ $ (-1221 |#2|))) |%noBranch|))) (-1018) (-1142) |#1|) (T -1140))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1198 *4 *3)) (-4 *3 (-1018)) (-14 *4 (-1142)) (-14 *5 *3) (-5 *1 (-1140 *3 *4 *5)))) (-2895 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1198 *5 *4)) (-5 *1 (-1140 *4 *5 *6)) (-4 *4 (-1018)) (-14 *5 (-1142)) (-14 *6 *4))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1140 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3455 (*1 *1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1140 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3405 (*1 *1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1140 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3))))
+(-13 (-1216 |#1|) (-10 -8 (-15 -3845 ($ (-1198 |#2| |#1|))) (-15 -2895 ((-1198 |#2| |#1|) $ (-747))) (-15 -3845 ($ (-1221 |#2|))) (-15 -3455 ($ $ (-1221 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3405 ($ $ (-1221 |#2|))) |%noBranch|)))
+((-3845 (((-834) $) 27) (($ (-1142)) 29)) (-1536 (($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $))) 40)) (-1522 (($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $))) 33) (($ $) 34)) (-3397 (($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $))) 35)) (-3387 (($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $))) 37)) (-3374 (($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $))) 36)) (-3363 (($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $))) 38)) (-3907 (($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $))) 41)) (-12 (($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $))) 39)))
+(((-1141) (-13 (-593 (-834)) (-10 -8 (-15 -3845 ($ (-1142))) (-15 -3397 ($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -3374 ($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -3387 ($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -3363 ($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -1536 ($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -3907 ($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -1522 ($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -1522 ($ $))))) (T -1141))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1141)))) (-3397 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1141)))) (-5 *1 (-1141)))) (-3374 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1141)))) (-5 *1 (-1141)))) (-3387 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1141)))) (-5 *1 (-1141)))) (-3363 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1141)))) (-5 *1 (-1141)))) (-1536 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1141)))) (-5 *1 (-1141)))) (-3907 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1141)))) (-5 *1 (-1141)))) (-12 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1141)))) (-5 *1 (-1141)))) (-1522 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1141)))) (-5 *1 (-1141)))) (-1522 (*1 *1 *1) (-5 *1 (-1141))))
+(-13 (-593 (-834)) (-10 -8 (-15 -3845 ($ (-1142))) (-15 -3397 ($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -3374 ($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -3387 ($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -3363 ($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -1536 ($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -3907 ($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)) (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -1522 ($ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372))) (|:| CF (-309 (-167 (-372)))) (|:| |switch| $)))) (-15 -1522 ($ $))))
+((-3832 (((-112) $ $) NIL)) (-3786 (($ $ (-621 (-834))) 59)) (-2490 (($ $ (-621 (-834))) 57)) (-1524 (((-1124) $) 84)) (-4219 (((-2 (|:| -2982 (-621 (-834))) (|:| -4280 (-621 (-834))) (|:| |presup| (-621 (-834))) (|:| -2125 (-621 (-834))) (|:| |args| (-621 (-834)))) $) 87)) (-2886 (((-112) $) 22)) (-1446 (($ $ (-621 (-621 (-834)))) 56) (($ $ (-2 (|:| -2982 (-621 (-834))) (|:| -4280 (-621 (-834))) (|:| |presup| (-621 (-834))) (|:| -2125 (-621 (-834))) (|:| |args| (-621 (-834))))) 82)) (-3034 (($) 124 T CONST)) (-3711 (((-1230)) 106)) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 66) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 73)) (-3743 (($) 95) (($ $) 101)) (-2479 (($ $) 83)) (-2861 (($ $ $) NIL)) (-3574 (($ $ $) NIL)) (-3521 (((-621 $) $) 107)) (-3441 (((-1124) $) 90)) (-3988 (((-1086) $) NIL)) (-3339 (($ $ (-621 (-834))) 58)) (-2843 (((-525) $) 46) (((-1142) $) 47) (((-863 (-549)) $) 77) (((-863 (-372)) $) 75)) (-3845 (((-834) $) 53) (($ (-1124)) 48)) (-3419 (($ $ (-621 (-834))) 60)) (-4035 (((-1124) $) 33) (((-1124) $ (-112)) 34) (((-1230) (-798) $) 35) (((-1230) (-798) $ (-112)) 36)) (-2447 (((-112) $ $) NIL)) (-2423 (((-112) $ $) NIL)) (-2387 (((-112) $ $) 49)) (-2436 (((-112) $ $) NIL)) (-2409 (((-112) $ $) 50)))
+(((-1142) (-13 (-823) (-594 (-525)) (-804) (-594 (-1142)) (-594 (-863 (-549))) (-594 (-863 (-372))) (-857 (-549)) (-857 (-372)) (-10 -8 (-15 -3743 ($)) (-15 -3743 ($ $)) (-15 -3711 ((-1230))) (-15 -3845 ($ (-1124))) (-15 -2479 ($ $)) (-15 -2886 ((-112) $)) (-15 -4219 ((-2 (|:| -2982 (-621 (-834))) (|:| -4280 (-621 (-834))) (|:| |presup| (-621 (-834))) (|:| -2125 (-621 (-834))) (|:| |args| (-621 (-834)))) $)) (-15 -1446 ($ $ (-621 (-621 (-834))))) (-15 -1446 ($ $ (-2 (|:| -2982 (-621 (-834))) (|:| -4280 (-621 (-834))) (|:| |presup| (-621 (-834))) (|:| -2125 (-621 (-834))) (|:| |args| (-621 (-834)))))) (-15 -2490 ($ $ (-621 (-834)))) (-15 -3786 ($ $ (-621 (-834)))) (-15 -3419 ($ $ (-621 (-834)))) (-15 -3339 ($ $ (-621 (-834)))) (-15 -1524 ((-1124) $)) (-15 -3521 ((-621 $) $)) (-15 -3034 ($) -2587)))) (T -1142))
+((-3743 (*1 *1) (-5 *1 (-1142))) (-3743 (*1 *1 *1) (-5 *1 (-1142))) (-3711 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-1142)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1142)))) (-2479 (*1 *1 *1) (-5 *1 (-1142))) (-2886 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1142)))) (-4219 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -2982 (-621 (-834))) (|:| -4280 (-621 (-834))) (|:| |presup| (-621 (-834))) (|:| -2125 (-621 (-834))) (|:| |args| (-621 (-834))))) (-5 *1 (-1142)))) (-1446 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-621 (-834)))) (-5 *1 (-1142)))) (-1446 (*1 *1 *1 *2) (-12 (-5 *2 (-2 (|:| -2982 (-621 (-834))) (|:| -4280 (-621 (-834))) (|:| |presup| (-621 (-834))) (|:| -2125 (-621 (-834))) (|:| |args| (-621 (-834))))) (-5 *1 (-1142)))) (-2490 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-1142)))) (-3786 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-1142)))) (-3419 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-1142)))) (-3339 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-1142)))) (-1524 (*1 *2 *1) (-12 (-5 *2 (-1124)) (-5 *1 (-1142)))) (-3521 (*1 *2 *1) (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-1142)))) (-3034 (*1 *1) (-5 *1 (-1142))))
+(-13 (-823) (-594 (-525)) (-804) (-594 (-1142)) (-594 (-863 (-549))) (-594 (-863 (-372))) (-857 (-549)) (-857 (-372)) (-10 -8 (-15 -3743 ($)) (-15 -3743 ($ $)) (-15 -3711 ((-1230))) (-15 -3845 ($ (-1124))) (-15 -2479 ($ $)) (-15 -2886 ((-112) $)) (-15 -4219 ((-2 (|:| -2982 (-621 (-834))) (|:| -4280 (-621 (-834))) (|:| |presup| (-621 (-834))) (|:| -2125 (-621 (-834))) (|:| |args| (-621 (-834)))) $)) (-15 -1446 ($ $ (-621 (-621 (-834))))) (-15 -1446 ($ $ (-2 (|:| -2982 (-621 (-834))) (|:| -4280 (-621 (-834))) (|:| |presup| (-621 (-834))) (|:| -2125 (-621 (-834))) (|:| |args| (-621 (-834)))))) (-15 -2490 ($ $ (-621 (-834)))) (-15 -3786 ($ $ (-621 (-834)))) (-15 -3419 ($ $ (-621 (-834)))) (-15 -3339 ($ $ (-621 (-834)))) (-15 -1524 ((-1124) $)) (-15 -3521 ((-621 $) $)) (-15 -3034 ($) -2587)))
+((-1326 (((-1225 |#1|) |#1| (-892)) 16) (((-1225 |#1|) (-621 |#1|)) 20)))
+(((-1143 |#1|) (-10 -7 (-15 -1326 ((-1225 |#1|) (-621 |#1|))) (-15 -1326 ((-1225 |#1|) |#1| (-892)))) (-1018)) (T -1143))
+((-1326 (*1 *2 *3 *4) (-12 (-5 *4 (-892)) (-5 *2 (-1225 *3)) (-5 *1 (-1143 *3)) (-4 *3 (-1018)))) (-1326 (*1 *2 *3) (-12 (-5 *3 (-621 *4)) (-4 *4 (-1018)) (-5 *2 (-1225 *4)) (-5 *1 (-1143 *4)))))
+(-10 -7 (-15 -1326 ((-1225 |#1|) (-621 |#1|))) (-15 -1326 ((-1225 |#1|) |#1| (-892))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL (|has| |#1| (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#1| (-1009 (-400 (-549))))) (((-3 |#1| "failed") $) NIL)) (-2657 (((-549) $) NIL (|has| |#1| (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| |#1| (-1009 (-400 (-549))))) ((|#1| $) NIL)) (-2068 (($ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3004 (($ $) NIL (|has| |#1| (-444)))) (-4064 (($ $ |#1| (-942) $) NIL)) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) NIL)) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-942)) NIL)) (-2391 (((-942) $) NIL)) (-3224 (($ (-1 (-942) (-942)) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2001 (((-112) $) NIL)) (-2011 ((|#1| $) NIL)) (-4097 (($ $ (-942) |#1| $) NIL (-12 (|has| (-942) (-130)) (|has| |#1| (-541))))) (-2040 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541))) (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-541)))) (-3977 (((-942) $) NIL)) (-1700 ((|#1| $) NIL (|has| |#1| (-444)))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ $) NIL (|has| |#1| (-541))) (($ |#1|) NIL) (($ (-400 (-549))) NIL (-1536 (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-1009 (-400 (-549))))))) (-2157 (((-621 |#1|) $) NIL)) (-4068 ((|#1| $ (-942)) NIL)) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) NIL)) (-4046 (($ $ $ (-747)) NIL (|has| |#1| (-170)))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-3274 (($) 9 T CONST)) (-3286 (($) 14 T CONST)) (-2387 (((-112) $ $) 16)) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) 19)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) 13) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
+(((-1144 |#1|) (-13 (-319 |#1| (-942)) (-10 -8 (IF (|has| |#1| (-541)) (IF (|has| (-942) (-130)) (-15 -4097 ($ $ (-942) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4334)) (-6 -4334) |%noBranch|))) (-1018)) (T -1144))
+((-4097 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-942)) (-4 *2 (-130)) (-5 *1 (-1144 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))))
+(-13 (-319 |#1| (-942)) (-10 -8 (IF (|has| |#1| (-541)) (IF (|has| (-942) (-130)) (-15 -4097 ($ $ (-942) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4334)) (-6 -4334) |%noBranch|)))
+((-3120 (((-1146) (-1142) $) 25)) (-3522 (($) 29)) (-2159 (((-3 (|:| |fst| (-427)) (|:| -2901 "void")) (-1142) $) 22)) (-3858 (((-1230) (-1142) (-3 (|:| |fst| (-427)) (|:| -2901 "void")) $) 41) (((-1230) (-1142) (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) 42) (((-1230) (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) 43)) (-1259 (((-1230) (-1142)) 58)) (-2074 (((-1230) (-1142) $) 55) (((-1230) (-1142)) 56) (((-1230)) 57)) (-1959 (((-1230) (-1142)) 37)) (-3431 (((-1142)) 36)) (-3288 (($) 34)) (-4099 (((-430) (-1142) (-430) (-1142) $) 45) (((-430) (-621 (-1142)) (-430) (-1142) $) 49) (((-430) (-1142) (-430)) 46) (((-430) (-1142) (-430) (-1142)) 50)) (-3765 (((-1142)) 35)) (-3845 (((-834) $) 28)) (-1738 (((-1230)) 30) (((-1230) (-1142)) 33)) (-3595 (((-621 (-1142)) (-1142) $) 24)) (-3227 (((-1230) (-1142) (-621 (-1142)) $) 38) (((-1230) (-1142) (-621 (-1142))) 39) (((-1230) (-621 (-1142))) 40)))
+(((-1145) (-13 (-593 (-834)) (-10 -8 (-15 -3522 ($)) (-15 -1738 ((-1230))) (-15 -1738 ((-1230) (-1142))) (-15 -4099 ((-430) (-1142) (-430) (-1142) $)) (-15 -4099 ((-430) (-621 (-1142)) (-430) (-1142) $)) (-15 -4099 ((-430) (-1142) (-430))) (-15 -4099 ((-430) (-1142) (-430) (-1142))) (-15 -1959 ((-1230) (-1142))) (-15 -3765 ((-1142))) (-15 -3431 ((-1142))) (-15 -3227 ((-1230) (-1142) (-621 (-1142)) $)) (-15 -3227 ((-1230) (-1142) (-621 (-1142)))) (-15 -3227 ((-1230) (-621 (-1142)))) (-15 -3858 ((-1230) (-1142) (-3 (|:| |fst| (-427)) (|:| -2901 "void")) $)) (-15 -3858 ((-1230) (-1142) (-3 (|:| |fst| (-427)) (|:| -2901 "void")))) (-15 -3858 ((-1230) (-3 (|:| |fst| (-427)) (|:| -2901 "void")))) (-15 -2074 ((-1230) (-1142) $)) (-15 -2074 ((-1230) (-1142))) (-15 -2074 ((-1230))) (-15 -1259 ((-1230) (-1142))) (-15 -3288 ($)) (-15 -2159 ((-3 (|:| |fst| (-427)) (|:| -2901 "void")) (-1142) $)) (-15 -3595 ((-621 (-1142)) (-1142) $)) (-15 -3120 ((-1146) (-1142) $))))) (T -1145))
+((-3522 (*1 *1) (-5 *1 (-1145))) (-1738 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-1145)))) (-1738 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-1230)) (-5 *1 (-1145)))) (-4099 (*1 *2 *3 *2 *3 *1) (-12 (-5 *2 (-430)) (-5 *3 (-1142)) (-5 *1 (-1145)))) (-4099 (*1 *2 *3 *2 *4 *1) (-12 (-5 *2 (-430)) (-5 *3 (-621 (-1142))) (-5 *4 (-1142)) (-5 *1 (-1145)))) (-4099 (*1 *2 *3 *2) (-12 (-5 *2 (-430)) (-5 *3 (-1142)) (-5 *1 (-1145)))) (-4099 (*1 *2 *3 *2 *3) (-12 (-5 *2 (-430)) (-5 *3 (-1142)) (-5 *1 (-1145)))) (-1959 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-1230)) (-5 *1 (-1145)))) (-3765 (*1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1145)))) (-3431 (*1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1145)))) (-3227 (*1 *2 *3 *4 *1) (-12 (-5 *4 (-621 (-1142))) (-5 *3 (-1142)) (-5 *2 (-1230)) (-5 *1 (-1145)))) (-3227 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-1142))) (-5 *3 (-1142)) (-5 *2 (-1230)) (-5 *1 (-1145)))) (-3227 (*1 *2 *3) (-12 (-5 *3 (-621 (-1142))) (-5 *2 (-1230)) (-5 *1 (-1145)))) (-3858 (*1 *2 *3 *4 *1) (-12 (-5 *3 (-1142)) (-5 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-5 *2 (-1230)) (-5 *1 (-1145)))) (-3858 (*1 *2 *3 *4) (-12 (-5 *3 (-1142)) (-5 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-5 *2 (-1230)) (-5 *1 (-1145)))) (-3858 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-5 *2 (-1230)) (-5 *1 (-1145)))) (-2074 (*1 *2 *3 *1) (-12 (-5 *3 (-1142)) (-5 *2 (-1230)) (-5 *1 (-1145)))) (-2074 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-1230)) (-5 *1 (-1145)))) (-2074 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-1145)))) (-1259 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-1230)) (-5 *1 (-1145)))) (-3288 (*1 *1) (-5 *1 (-1145))) (-2159 (*1 *2 *3 *1) (-12 (-5 *3 (-1142)) (-5 *2 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-5 *1 (-1145)))) (-3595 (*1 *2 *3 *1) (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-1145)) (-5 *3 (-1142)))) (-3120 (*1 *2 *3 *1) (-12 (-5 *3 (-1142)) (-5 *2 (-1146)) (-5 *1 (-1145)))))
+(-13 (-593 (-834)) (-10 -8 (-15 -3522 ($)) (-15 -1738 ((-1230))) (-15 -1738 ((-1230) (-1142))) (-15 -4099 ((-430) (-1142) (-430) (-1142) $)) (-15 -4099 ((-430) (-621 (-1142)) (-430) (-1142) $)) (-15 -4099 ((-430) (-1142) (-430))) (-15 -4099 ((-430) (-1142) (-430) (-1142))) (-15 -1959 ((-1230) (-1142))) (-15 -3765 ((-1142))) (-15 -3431 ((-1142))) (-15 -3227 ((-1230) (-1142) (-621 (-1142)) $)) (-15 -3227 ((-1230) (-1142) (-621 (-1142)))) (-15 -3227 ((-1230) (-621 (-1142)))) (-15 -3858 ((-1230) (-1142) (-3 (|:| |fst| (-427)) (|:| -2901 "void")) $)) (-15 -3858 ((-1230) (-1142) (-3 (|:| |fst| (-427)) (|:| -2901 "void")))) (-15 -3858 ((-1230) (-3 (|:| |fst| (-427)) (|:| -2901 "void")))) (-15 -2074 ((-1230) (-1142) $)) (-15 -2074 ((-1230) (-1142))) (-15 -2074 ((-1230))) (-15 -1259 ((-1230) (-1142))) (-15 -3288 ($)) (-15 -2159 ((-3 (|:| |fst| (-427)) (|:| -2901 "void")) (-1142) $)) (-15 -3595 ((-621 (-1142)) (-1142) $)) (-15 -3120 ((-1146) (-1142) $))))
+((-2456 (((-621 (-621 (-3 (|:| -2479 (-1142)) (|:| -1961 (-621 (-3 (|:| S (-1142)) (|:| P (-923 (-549))))))))) $) 59)) (-4265 (((-621 (-3 (|:| -2479 (-1142)) (|:| -1961 (-621 (-3 (|:| S (-1142)) (|:| P (-923 (-549)))))))) (-427) $) 43)) (-3270 (($ (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-430))))) 17)) (-1259 (((-1230) $) 67)) (-1820 (((-621 (-1142)) $) 22)) (-3829 (((-1070) $) 55)) (-3491 (((-430) (-1142) $) 27)) (-1393 (((-621 (-1142)) $) 30)) (-3288 (($) 19)) (-4099 (((-430) (-621 (-1142)) (-430) $) 25) (((-430) (-1142) (-430) $) 24)) (-3845 (((-834) $) 9) (((-1152 (-1142) (-430)) $) 13)))
+(((-1146) (-13 (-593 (-834)) (-10 -8 (-15 -3845 ((-1152 (-1142) (-430)) $)) (-15 -3288 ($)) (-15 -4099 ((-430) (-621 (-1142)) (-430) $)) (-15 -4099 ((-430) (-1142) (-430) $)) (-15 -3491 ((-430) (-1142) $)) (-15 -1820 ((-621 (-1142)) $)) (-15 -4265 ((-621 (-3 (|:| -2479 (-1142)) (|:| -1961 (-621 (-3 (|:| S (-1142)) (|:| P (-923 (-549)))))))) (-427) $)) (-15 -1393 ((-621 (-1142)) $)) (-15 -2456 ((-621 (-621 (-3 (|:| -2479 (-1142)) (|:| -1961 (-621 (-3 (|:| S (-1142)) (|:| P (-923 (-549))))))))) $)) (-15 -3829 ((-1070) $)) (-15 -1259 ((-1230) $)) (-15 -3270 ($ (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-430))))))))) (T -1146))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-1152 (-1142) (-430))) (-5 *1 (-1146)))) (-3288 (*1 *1) (-5 *1 (-1146))) (-4099 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-430)) (-5 *3 (-621 (-1142))) (-5 *1 (-1146)))) (-4099 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-430)) (-5 *3 (-1142)) (-5 *1 (-1146)))) (-3491 (*1 *2 *3 *1) (-12 (-5 *3 (-1142)) (-5 *2 (-430)) (-5 *1 (-1146)))) (-1820 (*1 *2 *1) (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-1146)))) (-4265 (*1 *2 *3 *1) (-12 (-5 *3 (-427)) (-5 *2 (-621 (-3 (|:| -2479 (-1142)) (|:| -1961 (-621 (-3 (|:| S (-1142)) (|:| P (-923 (-549))))))))) (-5 *1 (-1146)))) (-1393 (*1 *2 *1) (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-1146)))) (-2456 (*1 *2 *1) (-12 (-5 *2 (-621 (-621 (-3 (|:| -2479 (-1142)) (|:| -1961 (-621 (-3 (|:| S (-1142)) (|:| P (-923 (-549)))))))))) (-5 *1 (-1146)))) (-3829 (*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-1146)))) (-1259 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-1146)))) (-3270 (*1 *1 *2) (-12 (-5 *2 (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-430))))) (-5 *1 (-1146)))))
+(-13 (-593 (-834)) (-10 -8 (-15 -3845 ((-1152 (-1142) (-430)) $)) (-15 -3288 ($)) (-15 -4099 ((-430) (-621 (-1142)) (-430) $)) (-15 -4099 ((-430) (-1142) (-430) $)) (-15 -3491 ((-430) (-1142) $)) (-15 -1820 ((-621 (-1142)) $)) (-15 -4265 ((-621 (-3 (|:| -2479 (-1142)) (|:| -1961 (-621 (-3 (|:| S (-1142)) (|:| P (-923 (-549)))))))) (-427) $)) (-15 -1393 ((-621 (-1142)) $)) (-15 -2456 ((-621 (-621 (-3 (|:| -2479 (-1142)) (|:| -1961 (-621 (-3 (|:| S (-1142)) (|:| P (-923 (-549))))))))) $)) (-15 -3829 ((-1070) $)) (-15 -1259 ((-1230) $)) (-15 -3270 ($ (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-430))))))))
+((-3832 (((-112) $ $) NIL)) (-1527 (((-112) $) 42)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3705 (((-3 (-549) (-219) (-1142) (-1124) $) $) 50)) (-2332 (((-621 $) $) 55)) (-2843 (((-1070) $) 24) (($ (-1070)) 25)) (-2123 (((-112) $) 52)) (-3845 (((-834) $) NIL) (($ (-549)) 26) (((-549) $) 28) (($ (-219)) 29) (((-219) $) 31) (($ (-1142)) 32) (((-1142) $) 34) (($ (-1124)) 35) (((-1124) $) 37)) (-3263 (((-112) $ (|[\|\|]| (-549))) 11) (((-112) $ (|[\|\|]| (-219))) 15) (((-112) $ (|[\|\|]| (-1142))) 23) (((-112) $ (|[\|\|]| (-1124))) 19)) (-2591 (($ (-1142) (-621 $)) 39) (($ $ (-621 $)) 40)) (-2319 (((-549) $) 27) (((-219) $) 30) (((-1142) $) 33) (((-1124) $) 36)) (-2387 (((-112) $ $) 7)))
+(((-1147) (-13 (-1220) (-1066) (-10 -8 (-15 -2843 ((-1070) $)) (-15 -2843 ($ (-1070))) (-15 -3845 ($ (-549))) (-15 -3845 ((-549) $)) (-15 -2319 ((-549) $)) (-15 -3845 ($ (-219))) (-15 -3845 ((-219) $)) (-15 -2319 ((-219) $)) (-15 -3845 ($ (-1142))) (-15 -3845 ((-1142) $)) (-15 -2319 ((-1142) $)) (-15 -3845 ($ (-1124))) (-15 -3845 ((-1124) $)) (-15 -2319 ((-1124) $)) (-15 -2591 ($ (-1142) (-621 $))) (-15 -2591 ($ $ (-621 $))) (-15 -1527 ((-112) $)) (-15 -3705 ((-3 (-549) (-219) (-1142) (-1124) $) $)) (-15 -2332 ((-621 $) $)) (-15 -2123 ((-112) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-549)))) (-15 -3263 ((-112) $ (|[\|\|]| (-219)))) (-15 -3263 ((-112) $ (|[\|\|]| (-1142)))) (-15 -3263 ((-112) $ (|[\|\|]| (-1124))))))) (T -1147))
+((-2843 (*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-1147)))) (-2843 (*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1147)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1147)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1147)))) (-2319 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1147)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-1147)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-219)) (-5 *1 (-1147)))) (-2319 (*1 *2 *1) (-12 (-5 *2 (-219)) (-5 *1 (-1147)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1147)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-1147)))) (-2319 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-1147)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1147)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-1124)) (-5 *1 (-1147)))) (-2319 (*1 *2 *1) (-12 (-5 *2 (-1124)) (-5 *1 (-1147)))) (-2591 (*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-1147))) (-5 *1 (-1147)))) (-2591 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-1147))) (-5 *1 (-1147)))) (-1527 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1147)))) (-3705 (*1 *2 *1) (-12 (-5 *2 (-3 (-549) (-219) (-1142) (-1124) (-1147))) (-5 *1 (-1147)))) (-2332 (*1 *2 *1) (-12 (-5 *2 (-621 (-1147))) (-5 *1 (-1147)))) (-2123 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1147)))) (-3263 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-549))) (-5 *2 (-112)) (-5 *1 (-1147)))) (-3263 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-219))) (-5 *2 (-112)) (-5 *1 (-1147)))) (-3263 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1142))) (-5 *2 (-112)) (-5 *1 (-1147)))) (-3263 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1124))) (-5 *2 (-112)) (-5 *1 (-1147)))))
+(-13 (-1220) (-1066) (-10 -8 (-15 -2843 ((-1070) $)) (-15 -2843 ($ (-1070))) (-15 -3845 ($ (-549))) (-15 -3845 ((-549) $)) (-15 -2319 ((-549) $)) (-15 -3845 ($ (-219))) (-15 -3845 ((-219) $)) (-15 -2319 ((-219) $)) (-15 -3845 ($ (-1142))) (-15 -3845 ((-1142) $)) (-15 -2319 ((-1142) $)) (-15 -3845 ($ (-1124))) (-15 -3845 ((-1124) $)) (-15 -2319 ((-1124) $)) (-15 -2591 ($ (-1142) (-621 $))) (-15 -2591 ($ $ (-621 $))) (-15 -1527 ((-112) $)) (-15 -3705 ((-3 (-549) (-219) (-1142) (-1124) $) $)) (-15 -2332 ((-621 $) $)) (-15 -2123 ((-112) $)) (-15 -3263 ((-112) $ (|[\|\|]| (-549)))) (-15 -3263 ((-112) $ (|[\|\|]| (-219)))) (-15 -3263 ((-112) $ (|[\|\|]| (-1142)))) (-15 -3263 ((-112) $ (|[\|\|]| (-1124))))))
+((-1277 (((-621 (-621 (-923 |#1|))) (-621 (-400 (-923 |#1|))) (-621 (-1142))) 57)) (-2310 (((-621 (-287 (-400 (-923 |#1|)))) (-287 (-400 (-923 |#1|)))) 69) (((-621 (-287 (-400 (-923 |#1|)))) (-400 (-923 |#1|))) 65) (((-621 (-287 (-400 (-923 |#1|)))) (-287 (-400 (-923 |#1|))) (-1142)) 70) (((-621 (-287 (-400 (-923 |#1|)))) (-400 (-923 |#1|)) (-1142)) 64) (((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-287 (-400 (-923 |#1|))))) 93) (((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-400 (-923 |#1|)))) 92) (((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-287 (-400 (-923 |#1|)))) (-621 (-1142))) 94) (((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-400 (-923 |#1|))) (-621 (-1142))) 91)))
+(((-1148 |#1|) (-10 -7 (-15 -2310 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-400 (-923 |#1|))) (-621 (-1142)))) (-15 -2310 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-287 (-400 (-923 |#1|)))) (-621 (-1142)))) (-15 -2310 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-400 (-923 |#1|))))) (-15 -2310 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-287 (-400 (-923 |#1|)))))) (-15 -2310 ((-621 (-287 (-400 (-923 |#1|)))) (-400 (-923 |#1|)) (-1142))) (-15 -2310 ((-621 (-287 (-400 (-923 |#1|)))) (-287 (-400 (-923 |#1|))) (-1142))) (-15 -2310 ((-621 (-287 (-400 (-923 |#1|)))) (-400 (-923 |#1|)))) (-15 -2310 ((-621 (-287 (-400 (-923 |#1|)))) (-287 (-400 (-923 |#1|))))) (-15 -1277 ((-621 (-621 (-923 |#1|))) (-621 (-400 (-923 |#1|))) (-621 (-1142))))) (-541)) (T -1148))
+((-1277 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-400 (-923 *5)))) (-5 *4 (-621 (-1142))) (-4 *5 (-541)) (-5 *2 (-621 (-621 (-923 *5)))) (-5 *1 (-1148 *5)))) (-2310 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-621 (-287 (-400 (-923 *4))))) (-5 *1 (-1148 *4)) (-5 *3 (-287 (-400 (-923 *4)))))) (-2310 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-621 (-287 (-400 (-923 *4))))) (-5 *1 (-1148 *4)) (-5 *3 (-400 (-923 *4))))) (-2310 (*1 *2 *3 *4) (-12 (-5 *4 (-1142)) (-4 *5 (-541)) (-5 *2 (-621 (-287 (-400 (-923 *5))))) (-5 *1 (-1148 *5)) (-5 *3 (-287 (-400 (-923 *5)))))) (-2310 (*1 *2 *3 *4) (-12 (-5 *4 (-1142)) (-4 *5 (-541)) (-5 *2 (-621 (-287 (-400 (-923 *5))))) (-5 *1 (-1148 *5)) (-5 *3 (-400 (-923 *5))))) (-2310 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *4)))))) (-5 *1 (-1148 *4)) (-5 *3 (-621 (-287 (-400 (-923 *4))))))) (-2310 (*1 *2 *3) (-12 (-5 *3 (-621 (-400 (-923 *4)))) (-4 *4 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *4)))))) (-5 *1 (-1148 *4)))) (-2310 (*1 *2 *3 *4) (-12 (-5 *4 (-621 (-1142))) (-4 *5 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *5)))))) (-5 *1 (-1148 *5)) (-5 *3 (-621 (-287 (-400 (-923 *5))))))) (-2310 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-400 (-923 *5)))) (-5 *4 (-621 (-1142))) (-4 *5 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *5)))))) (-5 *1 (-1148 *5)))))
+(-10 -7 (-15 -2310 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-400 (-923 |#1|))) (-621 (-1142)))) (-15 -2310 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-287 (-400 (-923 |#1|)))) (-621 (-1142)))) (-15 -2310 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-400 (-923 |#1|))))) (-15 -2310 ((-621 (-621 (-287 (-400 (-923 |#1|))))) (-621 (-287 (-400 (-923 |#1|)))))) (-15 -2310 ((-621 (-287 (-400 (-923 |#1|)))) (-400 (-923 |#1|)) (-1142))) (-15 -2310 ((-621 (-287 (-400 (-923 |#1|)))) (-287 (-400 (-923 |#1|))) (-1142))) (-15 -2310 ((-621 (-287 (-400 (-923 |#1|)))) (-400 (-923 |#1|)))) (-15 -2310 ((-621 (-287 (-400 (-923 |#1|)))) (-287 (-400 (-923 |#1|))))) (-15 -1277 ((-621 (-621 (-923 |#1|))) (-621 (-400 (-923 |#1|))) (-621 (-1142)))))
+((-2194 (((-1124)) 7)) (-3031 (((-1124)) 9)) (-3019 (((-1230) (-1124)) 11)) (-4037 (((-1124)) 8)))
+(((-1149) (-10 -7 (-15 -2194 ((-1124))) (-15 -4037 ((-1124))) (-15 -3031 ((-1124))) (-15 -3019 ((-1230) (-1124))))) (T -1149))
+((-3019 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1149)))) (-3031 (*1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1149)))) (-4037 (*1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1149)))) (-2194 (*1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1149)))))
+(-10 -7 (-15 -2194 ((-1124))) (-15 -4037 ((-1124))) (-15 -3031 ((-1124))) (-15 -3019 ((-1230) (-1124))))
+((-2345 (((-621 (-621 |#1|)) (-621 (-621 |#1|)) (-621 (-621 (-621 |#1|)))) 38)) (-1329 (((-621 (-621 (-621 |#1|))) (-621 (-621 |#1|))) 24)) (-3246 (((-1151 (-621 |#1|)) (-621 |#1|)) 34)) (-4215 (((-621 (-621 |#1|)) (-621 |#1|)) 30)) (-3243 (((-2 (|:| |f1| (-621 |#1|)) (|:| |f2| (-621 (-621 (-621 |#1|)))) (|:| |f3| (-621 (-621 |#1|))) (|:| |f4| (-621 (-621 (-621 |#1|))))) (-621 (-621 (-621 |#1|)))) 37)) (-3807 (((-2 (|:| |f1| (-621 |#1|)) (|:| |f2| (-621 (-621 (-621 |#1|)))) (|:| |f3| (-621 (-621 |#1|))) (|:| |f4| (-621 (-621 (-621 |#1|))))) (-621 |#1|) (-621 (-621 (-621 |#1|))) (-621 (-621 |#1|)) (-621 (-621 (-621 |#1|))) (-621 (-621 (-621 |#1|))) (-621 (-621 (-621 |#1|)))) 36)) (-3773 (((-621 (-621 |#1|)) (-621 (-621 |#1|))) 28)) (-1299 (((-621 |#1|) (-621 |#1|)) 31)) (-3857 (((-621 (-621 (-621 |#1|))) (-621 |#1|) (-621 (-621 (-621 |#1|)))) 18)) (-3680 (((-621 (-621 (-621 |#1|))) (-1 (-112) |#1| |#1|) (-621 |#1|) (-621 (-621 (-621 |#1|)))) 16)) (-2333 (((-2 (|:| |fs| (-112)) (|:| |sd| (-621 |#1|)) (|:| |td| (-621 (-621 |#1|)))) (-1 (-112) |#1| |#1|) (-621 |#1|) (-621 (-621 |#1|))) 14)) (-3552 (((-621 (-621 |#1|)) (-621 (-621 (-621 |#1|)))) 39)) (-3625 (((-621 (-621 |#1|)) (-1151 (-621 |#1|))) 41)))
+(((-1150 |#1|) (-10 -7 (-15 -2333 ((-2 (|:| |fs| (-112)) (|:| |sd| (-621 |#1|)) (|:| |td| (-621 (-621 |#1|)))) (-1 (-112) |#1| |#1|) (-621 |#1|) (-621 (-621 |#1|)))) (-15 -3680 ((-621 (-621 (-621 |#1|))) (-1 (-112) |#1| |#1|) (-621 |#1|) (-621 (-621 (-621 |#1|))))) (-15 -3857 ((-621 (-621 (-621 |#1|))) (-621 |#1|) (-621 (-621 (-621 |#1|))))) (-15 -2345 ((-621 (-621 |#1|)) (-621 (-621 |#1|)) (-621 (-621 (-621 |#1|))))) (-15 -3552 ((-621 (-621 |#1|)) (-621 (-621 (-621 |#1|))))) (-15 -3625 ((-621 (-621 |#1|)) (-1151 (-621 |#1|)))) (-15 -1329 ((-621 (-621 (-621 |#1|))) (-621 (-621 |#1|)))) (-15 -3246 ((-1151 (-621 |#1|)) (-621 |#1|))) (-15 -3773 ((-621 (-621 |#1|)) (-621 (-621 |#1|)))) (-15 -4215 ((-621 (-621 |#1|)) (-621 |#1|))) (-15 -1299 ((-621 |#1|) (-621 |#1|))) (-15 -3807 ((-2 (|:| |f1| (-621 |#1|)) (|:| |f2| (-621 (-621 (-621 |#1|)))) (|:| |f3| (-621 (-621 |#1|))) (|:| |f4| (-621 (-621 (-621 |#1|))))) (-621 |#1|) (-621 (-621 (-621 |#1|))) (-621 (-621 |#1|)) (-621 (-621 (-621 |#1|))) (-621 (-621 (-621 |#1|))) (-621 (-621 (-621 |#1|))))) (-15 -3243 ((-2 (|:| |f1| (-621 |#1|)) (|:| |f2| (-621 (-621 (-621 |#1|)))) (|:| |f3| (-621 (-621 |#1|))) (|:| |f4| (-621 (-621 (-621 |#1|))))) (-621 (-621 (-621 |#1|)))))) (-823)) (T -1150))
+((-3243 (*1 *2 *3) (-12 (-4 *4 (-823)) (-5 *2 (-2 (|:| |f1| (-621 *4)) (|:| |f2| (-621 (-621 (-621 *4)))) (|:| |f3| (-621 (-621 *4))) (|:| |f4| (-621 (-621 (-621 *4)))))) (-5 *1 (-1150 *4)) (-5 *3 (-621 (-621 (-621 *4)))))) (-3807 (*1 *2 *3 *4 *5 *4 *4 *4) (-12 (-4 *6 (-823)) (-5 *3 (-621 *6)) (-5 *5 (-621 *3)) (-5 *2 (-2 (|:| |f1| *3) (|:| |f2| (-621 *5)) (|:| |f3| *5) (|:| |f4| (-621 *5)))) (-5 *1 (-1150 *6)) (-5 *4 (-621 *5)))) (-1299 (*1 *2 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-1150 *3)))) (-4215 (*1 *2 *3) (-12 (-4 *4 (-823)) (-5 *2 (-621 (-621 *4))) (-5 *1 (-1150 *4)) (-5 *3 (-621 *4)))) (-3773 (*1 *2 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-823)) (-5 *1 (-1150 *3)))) (-3246 (*1 *2 *3) (-12 (-4 *4 (-823)) (-5 *2 (-1151 (-621 *4))) (-5 *1 (-1150 *4)) (-5 *3 (-621 *4)))) (-1329 (*1 *2 *3) (-12 (-4 *4 (-823)) (-5 *2 (-621 (-621 (-621 *4)))) (-5 *1 (-1150 *4)) (-5 *3 (-621 (-621 *4))))) (-3625 (*1 *2 *3) (-12 (-5 *3 (-1151 (-621 *4))) (-4 *4 (-823)) (-5 *2 (-621 (-621 *4))) (-5 *1 (-1150 *4)))) (-3552 (*1 *2 *3) (-12 (-5 *3 (-621 (-621 (-621 *4)))) (-5 *2 (-621 (-621 *4))) (-5 *1 (-1150 *4)) (-4 *4 (-823)))) (-2345 (*1 *2 *2 *3) (-12 (-5 *3 (-621 (-621 (-621 *4)))) (-5 *2 (-621 (-621 *4))) (-4 *4 (-823)) (-5 *1 (-1150 *4)))) (-3857 (*1 *2 *3 *2) (-12 (-5 *2 (-621 (-621 (-621 *4)))) (-5 *3 (-621 *4)) (-4 *4 (-823)) (-5 *1 (-1150 *4)))) (-3680 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-621 (-621 (-621 *5)))) (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-621 *5)) (-4 *5 (-823)) (-5 *1 (-1150 *5)))) (-2333 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-823)) (-5 *4 (-621 *6)) (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-621 *4)))) (-5 *1 (-1150 *6)) (-5 *5 (-621 *4)))))
+(-10 -7 (-15 -2333 ((-2 (|:| |fs| (-112)) (|:| |sd| (-621 |#1|)) (|:| |td| (-621 (-621 |#1|)))) (-1 (-112) |#1| |#1|) (-621 |#1|) (-621 (-621 |#1|)))) (-15 -3680 ((-621 (-621 (-621 |#1|))) (-1 (-112) |#1| |#1|) (-621 |#1|) (-621 (-621 (-621 |#1|))))) (-15 -3857 ((-621 (-621 (-621 |#1|))) (-621 |#1|) (-621 (-621 (-621 |#1|))))) (-15 -2345 ((-621 (-621 |#1|)) (-621 (-621 |#1|)) (-621 (-621 (-621 |#1|))))) (-15 -3552 ((-621 (-621 |#1|)) (-621 (-621 (-621 |#1|))))) (-15 -3625 ((-621 (-621 |#1|)) (-1151 (-621 |#1|)))) (-15 -1329 ((-621 (-621 (-621 |#1|))) (-621 (-621 |#1|)))) (-15 -3246 ((-1151 (-621 |#1|)) (-621 |#1|))) (-15 -3773 ((-621 (-621 |#1|)) (-621 (-621 |#1|)))) (-15 -4215 ((-621 (-621 |#1|)) (-621 |#1|))) (-15 -1299 ((-621 |#1|) (-621 |#1|))) (-15 -3807 ((-2 (|:| |f1| (-621 |#1|)) (|:| |f2| (-621 (-621 (-621 |#1|)))) (|:| |f3| (-621 (-621 |#1|))) (|:| |f4| (-621 (-621 (-621 |#1|))))) (-621 |#1|) (-621 (-621 (-621 |#1|))) (-621 (-621 |#1|)) (-621 (-621 (-621 |#1|))) (-621 (-621 (-621 |#1|))) (-621 (-621 (-621 |#1|))))) (-15 -3243 ((-2 (|:| |f1| (-621 |#1|)) (|:| |f2| (-621 (-621 (-621 |#1|)))) (|:| |f3| (-621 (-621 |#1|))) (|:| |f4| (-621 (-621 (-621 |#1|))))) (-621 (-621 (-621 |#1|))))))
+((-2137 (($ (-621 (-621 |#1|))) 10)) (-1987 (((-621 (-621 |#1|)) $) 11)) (-3845 (((-834) $) 26)))
+(((-1151 |#1|) (-10 -8 (-15 -2137 ($ (-621 (-621 |#1|)))) (-15 -1987 ((-621 (-621 |#1|)) $)) (-15 -3845 ((-834) $))) (-1066)) (T -1151))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-1151 *3)) (-4 *3 (-1066)))) (-1987 (*1 *2 *1) (-12 (-5 *2 (-621 (-621 *3))) (-5 *1 (-1151 *3)) (-4 *3 (-1066)))) (-2137 (*1 *1 *2) (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1066)) (-5 *1 (-1151 *3)))))
+(-10 -8 (-15 -2137 ($ (-621 (-621 |#1|)))) (-15 -1987 ((-621 (-621 |#1|)) $)) (-15 -3845 ((-834) $)))
+((-3832 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3732 (($) NIL) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3659 (((-1230) $ |#1| |#1|) NIL (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 ((|#2| $ |#1| |#2|) NIL)) (-3827 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-3489 (((-3 |#2| "failed") |#1| $) NIL)) (-3034 (($) NIL T CONST)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-3546 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-3 |#2| "failed") |#1| $) NIL)) (-3812 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-2556 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (|has| $ (-6 -4336))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336)))) (-1875 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#2| $ |#1|) NIL)) (-2987 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) NIL)) (-2807 ((|#1| $) NIL (|has| |#1| (-823)))) (-3698 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-621 |#2|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3063 ((|#1| $) NIL (|has| |#1| (-823)))) (-1864 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4337))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3448 (((-621 |#1|) $) NIL)) (-2130 (((-112) |#1| $) NIL)) (-2548 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-1799 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-2296 (((-621 |#1|) $) NIL)) (-2284 (((-112) |#1| $) NIL)) (-3988 (((-1086) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3645 ((|#2| $) NIL (|has| |#1| (-823)))) (-3959 (((-3 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) "failed") (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL)) (-1943 (($ $ |#2|) NIL (|has| $ (-6 -4337)))) (-3536 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL)) (-3360 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3347 (((-621 |#2|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3226 (($) NIL) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3997 (((-747) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-747) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) NIL (-12 (|has| $ (-6 -4336)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (((-747) |#2| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066)))) (((-747) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-594 (-525))))) (-3853 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3845 (((-834) $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-593 (-834))) (|has| |#2| (-593 (-834)))))) (-4213 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) NIL)) (-3025 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) NIL (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) NIL (-1536 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| |#2| (-1066))))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-1152 |#1| |#2|) (-13 (-1155 |#1| |#2|) (-10 -7 (-6 -4336))) (-1066) (-1066)) (T -1152))
+NIL
+(-13 (-1155 |#1| |#2|) (-10 -7 (-6 -4336)))
+((-2938 ((|#1| (-621 |#1|)) 32)) (-3914 ((|#1| |#1| (-549)) 18)) (-1641 (((-1138 |#1|) |#1| (-892)) 15)))
+(((-1153 |#1|) (-10 -7 (-15 -2938 (|#1| (-621 |#1|))) (-15 -1641 ((-1138 |#1|) |#1| (-892))) (-15 -3914 (|#1| |#1| (-549)))) (-356)) (T -1153))
+((-3914 (*1 *2 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-1153 *2)) (-4 *2 (-356)))) (-1641 (*1 *2 *3 *4) (-12 (-5 *4 (-892)) (-5 *2 (-1138 *3)) (-5 *1 (-1153 *3)) (-4 *3 (-356)))) (-2938 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-5 *1 (-1153 *2)) (-4 *2 (-356)))))
+(-10 -7 (-15 -2938 (|#1| (-621 |#1|))) (-15 -1641 ((-1138 |#1|) |#1| (-892))) (-15 -3914 (|#1| |#1| (-549))))
+((-3732 (($) 10) (($ (-621 (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)))) 14)) (-3546 (($ (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) $) 61) (($ (-1 (-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) $) NIL) (((-3 |#3| "failed") |#2| $) NIL)) (-2987 (((-621 (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) $) 39) (((-621 |#3|) $) 41)) (-1864 (($ (-1 (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) $) 53) (($ (-1 |#3| |#3|) $) 33)) (-2795 (($ (-1 (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) $) 51) (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) 38)) (-2548 (((-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) $) 54)) (-1799 (($ (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) $) 16)) (-2296 (((-621 |#2|) $) 19)) (-2284 (((-112) |#2| $) 59)) (-3959 (((-3 (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) "failed") (-1 (-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) $) 58)) (-3536 (((-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) $) 63)) (-3360 (((-112) (-1 (-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 67)) (-3347 (((-621 |#3|) $) 43)) (-3339 ((|#3| $ |#2|) 30) ((|#3| $ |#2| |#3|) 31)) (-3997 (((-747) (-1 (-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) $) NIL) (((-747) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) $) NIL) (((-747) |#3| $) NIL) (((-747) (-1 (-112) |#3|) $) 68)) (-3845 (((-834) $) 27)) (-3025 (((-112) (-1 (-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 65)) (-2387 (((-112) $ $) 49)))
+(((-1154 |#1| |#2| |#3|) (-10 -8 (-15 -3845 ((-834) |#1|)) (-15 -2387 ((-112) |#1| |#1|)) (-15 -2795 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -3732 (|#1| (-621 (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))))) (-15 -3732 (|#1|)) (-15 -2795 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1864 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3025 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3360 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3997 ((-747) (-1 (-112) |#3|) |#1|)) (-15 -2987 ((-621 |#3|) |#1|)) (-15 -3997 ((-747) |#3| |#1|)) (-15 -3339 (|#3| |#1| |#2| |#3|)) (-15 -3339 (|#3| |#1| |#2|)) (-15 -3347 ((-621 |#3|) |#1|)) (-15 -2284 ((-112) |#2| |#1|)) (-15 -2296 ((-621 |#2|) |#1|)) (-15 -3546 ((-3 |#3| "failed") |#2| |#1|)) (-15 -3546 (|#1| (-1 (-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) |#1|)) (-15 -3546 (|#1| (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) |#1|)) (-15 -3959 ((-3 (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) "failed") (-1 (-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) |#1|)) (-15 -2548 ((-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) |#1|)) (-15 -1799 (|#1| (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) |#1|)) (-15 -3536 ((-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) |#1|)) (-15 -3997 ((-747) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) |#1|)) (-15 -2987 ((-621 (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) |#1|)) (-15 -3997 ((-747) (-1 (-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) |#1|)) (-15 -3360 ((-112) (-1 (-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) |#1|)) (-15 -3025 ((-112) (-1 (-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) |#1|)) (-15 -1864 (|#1| (-1 (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) |#1|)) (-15 -2795 (|#1| (-1 (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) |#1|))) (-1155 |#2| |#3|) (-1066) (-1066)) (T -1154))
+NIL
+(-10 -8 (-15 -3845 ((-834) |#1|)) (-15 -2387 ((-112) |#1| |#1|)) (-15 -2795 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -3732 (|#1| (-621 (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))))) (-15 -3732 (|#1|)) (-15 -2795 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1864 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3025 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3360 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3997 ((-747) (-1 (-112) |#3|) |#1|)) (-15 -2987 ((-621 |#3|) |#1|)) (-15 -3997 ((-747) |#3| |#1|)) (-15 -3339 (|#3| |#1| |#2| |#3|)) (-15 -3339 (|#3| |#1| |#2|)) (-15 -3347 ((-621 |#3|) |#1|)) (-15 -2284 ((-112) |#2| |#1|)) (-15 -2296 ((-621 |#2|) |#1|)) (-15 -3546 ((-3 |#3| "failed") |#2| |#1|)) (-15 -3546 (|#1| (-1 (-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) |#1|)) (-15 -3546 (|#1| (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) |#1|)) (-15 -3959 ((-3 (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) "failed") (-1 (-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) |#1|)) (-15 -2548 ((-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) |#1|)) (-15 -1799 (|#1| (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) |#1|)) (-15 -3536 ((-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) |#1|)) (-15 -3997 ((-747) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) |#1|)) (-15 -2987 ((-621 (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) |#1|)) (-15 -3997 ((-747) (-1 (-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) |#1|)) (-15 -3360 ((-112) (-1 (-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) |#1|)) (-15 -3025 ((-112) (-1 (-112) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) |#1|)) (-15 -1864 (|#1| (-1 (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) |#1|)) (-15 -2795 (|#1| (-1 (-2 (|:| -3336 |#2|) (|:| -1791 |#3|)) (-2 (|:| -3336 |#2|) (|:| -1791 |#3|))) |#1|)))
+((-3832 (((-112) $ $) 19 (-1536 (|has| |#2| (-1066)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-3732 (($) 72) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 71)) (-3659 (((-1230) $ |#1| |#1|) 99 (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) 8)) (-2250 ((|#2| $ |#1| |#2|) 73)) (-3827 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 45 (|has| $ (-6 -4336)))) (-1488 (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 55 (|has| $ (-6 -4336)))) (-3489 (((-3 |#2| "failed") |#1| $) 61)) (-3034 (($) 7 T CONST)) (-3675 (($ $) 58 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336))))) (-3546 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 47 (|has| $ (-6 -4336))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 46 (|has| $ (-6 -4336))) (((-3 |#2| "failed") |#1| $) 62)) (-3812 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 57 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 54 (|has| $ (-6 -4336)))) (-2556 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 56 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336)))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 53 (|has| $ (-6 -4336))) (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 52 (|has| $ (-6 -4336)))) (-1875 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4337)))) (-1807 ((|#2| $ |#1|) 88)) (-2987 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 30 (|has| $ (-6 -4336))) (((-621 |#2|) $) 79 (|has| $ (-6 -4336)))) (-1777 (((-112) $ (-747)) 9)) (-2807 ((|#1| $) 96 (|has| |#1| (-823)))) (-3698 (((-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 29 (|has| $ (-6 -4336))) (((-621 |#2|) $) 80 (|has| $ (-6 -4336)))) (-1593 (((-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 27 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336)))) (((-112) |#2| $) 82 (-12 (|has| |#2| (-1066)) (|has| $ (-6 -4336))))) (-3063 ((|#1| $) 95 (|has| |#1| (-823)))) (-1864 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 34 (|has| $ (-6 -4337))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4337)))) (-2795 (($ (-1 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70)) (-3942 (((-112) $ (-747)) 10)) (-3441 (((-1124) $) 22 (-1536 (|has| |#2| (-1066)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-3448 (((-621 |#1|) $) 63)) (-2130 (((-112) |#1| $) 64)) (-2548 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 39)) (-1799 (($ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 40)) (-2296 (((-621 |#1|) $) 93)) (-2284 (((-112) |#1| $) 92)) (-3988 (((-1086) $) 21 (-1536 (|has| |#2| (-1066)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-3645 ((|#2| $) 97 (|has| |#1| (-823)))) (-3959 (((-3 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) "failed") (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 51)) (-1943 (($ $ |#2|) 98 (|has| $ (-6 -4337)))) (-3536 (((-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 41)) (-3360 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 32 (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))))) 26 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-287 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 25 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) 24 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 23 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)))) (($ $ (-621 |#2|) (-621 |#2|)) 86 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-287 |#2|)) 84 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066)))) (($ $ (-621 (-287 |#2|))) 83 (-12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))))) (-2520 (((-112) $ $) 14)) (-2478 (((-112) |#2| $) 94 (-12 (|has| $ (-6 -4336)) (|has| |#2| (-1066))))) (-3347 (((-621 |#2|) $) 91)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89)) (-3226 (($) 49) (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 48)) (-3997 (((-747) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 31 (|has| $ (-6 -4336))) (((-747) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) $) 28 (-12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| $ (-6 -4336)))) (((-747) |#2| $) 81 (-12 (|has| |#2| (-1066)) (|has| $ (-6 -4336)))) (((-747) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4336)))) (-2279 (($ $) 13)) (-2843 (((-525) $) 59 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-594 (-525))))) (-3853 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 50)) (-3845 (((-834) $) 18 (-1536 (|has| |#2| (-593 (-834))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-593 (-834)))))) (-4213 (($ (-621 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) 42)) (-3025 (((-112) (-1 (-112) (-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) $) 33 (|has| $ (-6 -4336))) (((-112) (-1 (-112) |#2|) $) 76 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (-1536 (|has| |#2| (-1066)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-1155 |#1| |#2|) (-138) (-1066) (-1066)) (T -1155))
+((-2250 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-1155 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1066)))) (-3732 (*1 *1) (-12 (-4 *1 (-1155 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066)))) (-3732 (*1 *1 *2) (-12 (-5 *2 (-621 (-2 (|:| -3336 *3) (|:| -1791 *4)))) (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *1 (-1155 *3 *4)))) (-2795 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1155 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066)))))
+(-13 (-590 |t#1| |t#2|) (-584 |t#1| |t#2|) (-10 -8 (-15 -2250 (|t#2| $ |t#1| |t#2|)) (-15 -3732 ($)) (-15 -3732 ($ (-621 (-2 (|:| -3336 |t#1|) (|:| -1791 |t#2|))))) (-15 -2795 ($ (-1 |t#2| |t#2| |t#2|) $ $))))
+(((-34) . T) ((-106 #0=(-2 (|:| -3336 |#1|) (|:| -1791 |#2|))) . T) ((-101) -1536 (|has| |#2| (-1066)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))) ((-593 (-834)) -1536 (|has| |#2| (-1066)) (|has| |#2| (-593 (-834))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-593 (-834)))) ((-149 #0#) . T) ((-594 (-525)) |has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-594 (-525))) ((-223 #0#) . T) ((-229 #0#) . T) ((-279 |#1| |#2|) . T) ((-281 |#1| |#2|) . T) ((-302 #0#) -12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))) ((-302 |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) ((-481 #0#) . T) ((-481 |#2|) . T) ((-584 |#1| |#2|) . T) ((-505 #0# #0#) -12 (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-302 (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)))) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))) ((-505 |#2| |#2|) -12 (|has| |#2| (-302 |#2|)) (|has| |#2| (-1066))) ((-590 |#1| |#2|) . T) ((-1066) -1536 (|has| |#2| (-1066)) (|has| (-2 (|:| -3336 |#1|) (|:| -1791 |#2|)) (-1066))) ((-1179) . T))
+((-4269 (((-112)) 24)) (-2110 (((-1230) (-1124)) 26)) (-1502 (((-112)) 36)) (-2054 (((-1230)) 34)) (-3678 (((-1230) (-1124) (-1124)) 25)) (-2618 (((-112)) 37)) (-1799 (((-1230) |#1| |#2|) 44)) (-1895 (((-1230)) 20)) (-3359 (((-3 |#2| "failed") |#1|) 42)) (-2801 (((-1230)) 35)))
+(((-1156 |#1| |#2|) (-10 -7 (-15 -1895 ((-1230))) (-15 -3678 ((-1230) (-1124) (-1124))) (-15 -2110 ((-1230) (-1124))) (-15 -2054 ((-1230))) (-15 -2801 ((-1230))) (-15 -4269 ((-112))) (-15 -1502 ((-112))) (-15 -2618 ((-112))) (-15 -3359 ((-3 |#2| "failed") |#1|)) (-15 -1799 ((-1230) |#1| |#2|))) (-1066) (-1066)) (T -1156))
+((-1799 (*1 *2 *3 *4) (-12 (-5 *2 (-1230)) (-5 *1 (-1156 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066)))) (-3359 (*1 *2 *3) (|partial| -12 (-4 *2 (-1066)) (-5 *1 (-1156 *3 *2)) (-4 *3 (-1066)))) (-2618 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066)))) (-1502 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066)))) (-4269 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066)))) (-2801 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-1156 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066)))) (-2054 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-1156 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066)))) (-2110 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1156 *4 *5)) (-4 *4 (-1066)) (-4 *5 (-1066)))) (-3678 (*1 *2 *3 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1156 *4 *5)) (-4 *4 (-1066)) (-4 *5 (-1066)))) (-1895 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-1156 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066)))))
+(-10 -7 (-15 -1895 ((-1230))) (-15 -3678 ((-1230) (-1124) (-1124))) (-15 -2110 ((-1230) (-1124))) (-15 -2054 ((-1230))) (-15 -2801 ((-1230))) (-15 -4269 ((-112))) (-15 -1502 ((-112))) (-15 -2618 ((-112))) (-15 -3359 ((-3 |#2| "failed") |#1|)) (-15 -1799 ((-1230) |#1| |#2|)))
+((-1366 (((-1124) (-1124)) 18)) (-3396 (((-52) (-1124)) 21)))
+(((-1157) (-10 -7 (-15 -3396 ((-52) (-1124))) (-15 -1366 ((-1124) (-1124))))) (T -1157))
+((-1366 (*1 *2 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1157)))) (-3396 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-52)) (-5 *1 (-1157)))))
+(-10 -7 (-15 -3396 ((-52) (-1124))) (-15 -1366 ((-1124) (-1124))))
+((-3845 (((-1159) |#1|) 11)))
+(((-1158 |#1|) (-10 -7 (-15 -3845 ((-1159) |#1|))) (-1066)) (T -1158))
+((-3845 (*1 *2 *3) (-12 (-5 *2 (-1159)) (-5 *1 (-1158 *3)) (-4 *3 (-1066)))))
+(-10 -7 (-15 -3845 ((-1159) |#1|)))
+((-3832 (((-112) $ $) NIL)) (-1482 (((-621 (-1124)) $) 34)) (-1692 (((-621 (-1124)) $ (-621 (-1124))) 37)) (-2176 (((-621 (-1124)) $ (-621 (-1124))) 36)) (-1849 (((-621 (-1124)) $ (-621 (-1124))) 38)) (-1649 (((-621 (-1124)) $) 33)) (-3743 (($) 22)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3236 (((-621 (-1124)) $) 35)) (-2697 (((-1230) $ (-549)) 29) (((-1230) $) 30)) (-2843 (($ (-834) (-549)) 26) (($ (-834) (-549) (-834)) NIL)) (-3845 (((-834) $) 40) (($ (-834)) 24)) (-2387 (((-112) $ $) NIL)))
+(((-1159) (-13 (-1066) (-10 -8 (-15 -3845 ($ (-834))) (-15 -2843 ($ (-834) (-549))) (-15 -2843 ($ (-834) (-549) (-834))) (-15 -2697 ((-1230) $ (-549))) (-15 -2697 ((-1230) $)) (-15 -3236 ((-621 (-1124)) $)) (-15 -1482 ((-621 (-1124)) $)) (-15 -3743 ($)) (-15 -1649 ((-621 (-1124)) $)) (-15 -1849 ((-621 (-1124)) $ (-621 (-1124)))) (-15 -1692 ((-621 (-1124)) $ (-621 (-1124)))) (-15 -2176 ((-621 (-1124)) $ (-621 (-1124))))))) (T -1159))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-834)) (-5 *1 (-1159)))) (-2843 (*1 *1 *2 *3) (-12 (-5 *2 (-834)) (-5 *3 (-549)) (-5 *1 (-1159)))) (-2843 (*1 *1 *2 *3 *2) (-12 (-5 *2 (-834)) (-5 *3 (-549)) (-5 *1 (-1159)))) (-2697 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1230)) (-5 *1 (-1159)))) (-2697 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-1159)))) (-3236 (*1 *2 *1) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1159)))) (-1482 (*1 *2 *1) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1159)))) (-3743 (*1 *1) (-5 *1 (-1159))) (-1649 (*1 *2 *1) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1159)))) (-1849 (*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1159)))) (-1692 (*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1159)))) (-2176 (*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1159)))))
+(-13 (-1066) (-10 -8 (-15 -3845 ($ (-834))) (-15 -2843 ($ (-834) (-549))) (-15 -2843 ($ (-834) (-549) (-834))) (-15 -2697 ((-1230) $ (-549))) (-15 -2697 ((-1230) $)) (-15 -3236 ((-621 (-1124)) $)) (-15 -1482 ((-621 (-1124)) $)) (-15 -3743 ($)) (-15 -1649 ((-621 (-1124)) $)) (-15 -1849 ((-621 (-1124)) $ (-621 (-1124)))) (-15 -1692 ((-621 (-1124)) $ (-621 (-1124)))) (-15 -2176 ((-621 (-1124)) $ (-621 (-1124))))))
+((-3832 (((-112) $ $) NIL)) (-3337 (((-1124) $ (-1124)) 17) (((-1124) $) 16)) (-2145 (((-1124) $ (-1124)) 15)) (-4295 (($ $ (-1124)) NIL)) (-2744 (((-3 (-1124) "failed") $) 11)) (-1320 (((-1124) $) 8)) (-3706 (((-3 (-1124) "failed") $) 12)) (-3937 (((-1124) $) 9)) (-1358 (($ (-381)) NIL) (($ (-381) (-1124)) NIL)) (-2479 (((-381) $) NIL)) (-3441 (((-1124) $) NIL)) (-3939 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2131 (((-112) $) 18)) (-3845 (((-834) $) NIL)) (-2384 (($ $) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-1160) (-13 (-357 (-381) (-1124)) (-10 -8 (-15 -3337 ((-1124) $ (-1124))) (-15 -3337 ((-1124) $)) (-15 -1320 ((-1124) $)) (-15 -2744 ((-3 (-1124) "failed") $)) (-15 -3706 ((-3 (-1124) "failed") $)) (-15 -2131 ((-112) $))))) (T -1160))
+((-3337 (*1 *2 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1160)))) (-3337 (*1 *2 *1) (-12 (-5 *2 (-1124)) (-5 *1 (-1160)))) (-1320 (*1 *2 *1) (-12 (-5 *2 (-1124)) (-5 *1 (-1160)))) (-2744 (*1 *2 *1) (|partial| -12 (-5 *2 (-1124)) (-5 *1 (-1160)))) (-3706 (*1 *2 *1) (|partial| -12 (-5 *2 (-1124)) (-5 *1 (-1160)))) (-2131 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1160)))))
+(-13 (-357 (-381) (-1124)) (-10 -8 (-15 -3337 ((-1124) $ (-1124))) (-15 -3337 ((-1124) $)) (-15 -1320 ((-1124) $)) (-15 -2744 ((-3 (-1124) "failed") $)) (-15 -3706 ((-3 (-1124) "failed") $)) (-15 -2131 ((-112) $))))
+((-1741 (((-3 (-549) "failed") |#1|) 19)) (-3615 (((-3 (-549) "failed") |#1|) 14)) (-3712 (((-549) (-1124)) 28)))
+(((-1161 |#1|) (-10 -7 (-15 -1741 ((-3 (-549) "failed") |#1|)) (-15 -3615 ((-3 (-549) "failed") |#1|)) (-15 -3712 ((-549) (-1124)))) (-1018)) (T -1161))
+((-3712 (*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-549)) (-5 *1 (-1161 *4)) (-4 *4 (-1018)))) (-3615 (*1 *2 *3) (|partial| -12 (-5 *2 (-549)) (-5 *1 (-1161 *3)) (-4 *3 (-1018)))) (-1741 (*1 *2 *3) (|partial| -12 (-5 *2 (-549)) (-5 *1 (-1161 *3)) (-4 *3 (-1018)))))
+(-10 -7 (-15 -1741 ((-3 (-549) "failed") |#1|)) (-15 -3615 ((-3 (-549) "failed") |#1|)) (-15 -3712 ((-549) (-1124))))
+((-3792 (((-1099 (-219))) 9)))
+(((-1162) (-10 -7 (-15 -3792 ((-1099 (-219)))))) (T -1162))
+((-3792 (*1 *2) (-12 (-5 *2 (-1099 (-219))) (-5 *1 (-1162)))))
+(-10 -7 (-15 -3792 ((-1099 (-219)))))
+((-1425 (($) 11)) (-1731 (($ $) 35)) (-1708 (($ $) 33)) (-1562 (($ $) 25)) (-1753 (($ $) 17)) (-1932 (($ $) 15)) (-1743 (($ $) 19)) (-1598 (($ $) 30)) (-1719 (($ $) 34)) (-1575 (($ $) 29)))
+(((-1163 |#1|) (-10 -8 (-15 -1425 (|#1|)) (-15 -1731 (|#1| |#1|)) (-15 -1708 (|#1| |#1|)) (-15 -1753 (|#1| |#1|)) (-15 -1932 (|#1| |#1|)) (-15 -1743 (|#1| |#1|)) (-15 -1719 (|#1| |#1|)) (-15 -1562 (|#1| |#1|)) (-15 -1598 (|#1| |#1|)) (-15 -1575 (|#1| |#1|))) (-1164)) (T -1163))
+NIL
+(-10 -8 (-15 -1425 (|#1|)) (-15 -1731 (|#1| |#1|)) (-15 -1708 (|#1| |#1|)) (-15 -1753 (|#1| |#1|)) (-15 -1932 (|#1| |#1|)) (-15 -1743 (|#1| |#1|)) (-15 -1719 (|#1| |#1|)) (-15 -1562 (|#1| |#1|)) (-15 -1598 (|#1| |#1|)) (-15 -1575 (|#1| |#1|)))
+((-1662 (($ $) 26)) (-1510 (($ $) 11)) (-1638 (($ $) 27)) (-1483 (($ $) 10)) (-1684 (($ $) 28)) (-1538 (($ $) 9)) (-1425 (($) 16)) (-3631 (($ $) 19)) (-2717 (($ $) 18)) (-1696 (($ $) 29)) (-1551 (($ $) 8)) (-1673 (($ $) 30)) (-1525 (($ $) 7)) (-1648 (($ $) 31)) (-1500 (($ $) 6)) (-1731 (($ $) 20)) (-1585 (($ $) 32)) (-1708 (($ $) 21)) (-1562 (($ $) 33)) (-1753 (($ $) 22)) (-1611 (($ $) 34)) (-1932 (($ $) 23)) (-1625 (($ $) 35)) (-1743 (($ $) 24)) (-1598 (($ $) 36)) (-1719 (($ $) 25)) (-1575 (($ $) 37)) (** (($ $ $) 17)))
+(((-1164) (-138)) (T -1164))
+((-1425 (*1 *1) (-4 *1 (-1164))))
+(-13 (-1167) (-94) (-484) (-35) (-277) (-10 -8 (-15 -1425 ($))))
+(((-35) . T) ((-94) . T) ((-277) . T) ((-484) . T) ((-1167) . T))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-4160 ((|#1| $) 17)) (-1659 (($ |#1| (-621 $)) 23) (($ (-621 |#1|)) 27) (($ |#1|) 25)) (-2850 (((-112) $ (-747)) 48)) (-2797 ((|#1| $ |#1|) 14 (|has| $ (-6 -4337)))) (-2250 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) 13 (|has| $ (-6 -4337)))) (-3034 (($) NIL T CONST)) (-2987 (((-621 |#1|) $) 52 (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) 43)) (-3585 (((-112) $ $) 33 (|has| |#1| (-1066)))) (-1777 (((-112) $ (-747)) 41)) (-3698 (((-621 |#1|) $) 53 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 51 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-1864 (($ (-1 |#1| |#1|) $) 24 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 22)) (-3942 (((-112) $ (-747)) 40)) (-3590 (((-621 |#1|) $) 37)) (-3028 (((-112) $) 36)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3360 (((-112) (-1 (-112) |#1|) $) 50 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 74)) (-2643 (((-112) $) 9)) (-3288 (($) 10)) (-3339 ((|#1| $ "value") NIL)) (-3541 (((-549) $ $) 32)) (-1704 (((-621 $) $) 59)) (-3318 (((-112) $ $) 77)) (-2876 (((-621 $) $) 72)) (-2062 (($ $) 73)) (-2917 (((-112) $) 56)) (-3997 (((-747) (-1 (-112) |#1|) $) 20 (|has| $ (-6 -4336))) (((-747) |#1| $) 16 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2279 (($ $) 58)) (-3845 (((-834) $) 61 (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) 12)) (-3605 (((-112) $ $) 29 (|has| |#1| (-1066)))) (-3025 (((-112) (-1 (-112) |#1|) $) 49 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 28 (|has| |#1| (-1066)))) (-3774 (((-747) $) 39 (|has| $ (-6 -4336)))))
+(((-1165 |#1|) (-13 (-981 |#1|) (-10 -8 (-6 -4336) (-6 -4337) (-15 -1659 ($ |#1| (-621 $))) (-15 -1659 ($ (-621 |#1|))) (-15 -1659 ($ |#1|)) (-15 -2917 ((-112) $)) (-15 -2062 ($ $)) (-15 -2876 ((-621 $) $)) (-15 -3318 ((-112) $ $)) (-15 -1704 ((-621 $) $)))) (-1066)) (T -1165))
+((-2917 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1165 *3)) (-4 *3 (-1066)))) (-1659 (*1 *1 *2 *3) (-12 (-5 *3 (-621 (-1165 *2))) (-5 *1 (-1165 *2)) (-4 *2 (-1066)))) (-1659 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-5 *1 (-1165 *3)))) (-1659 (*1 *1 *2) (-12 (-5 *1 (-1165 *2)) (-4 *2 (-1066)))) (-2062 (*1 *1 *1) (-12 (-5 *1 (-1165 *2)) (-4 *2 (-1066)))) (-2876 (*1 *2 *1) (-12 (-5 *2 (-621 (-1165 *3))) (-5 *1 (-1165 *3)) (-4 *3 (-1066)))) (-3318 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1165 *3)) (-4 *3 (-1066)))) (-1704 (*1 *2 *1) (-12 (-5 *2 (-621 (-1165 *3))) (-5 *1 (-1165 *3)) (-4 *3 (-1066)))))
+(-13 (-981 |#1|) (-10 -8 (-6 -4336) (-6 -4337) (-15 -1659 ($ |#1| (-621 $))) (-15 -1659 ($ (-621 |#1|))) (-15 -1659 ($ |#1|)) (-15 -2917 ((-112) $)) (-15 -2062 ($ $)) (-15 -2876 ((-621 $) $)) (-15 -3318 ((-112) $ $)) (-15 -1704 ((-621 $) $))))
+((-1510 (($ $) 15)) (-1538 (($ $) 12)) (-1551 (($ $) 10)) (-1525 (($ $) 17)))
+(((-1166 |#1|) (-10 -8 (-15 -1525 (|#1| |#1|)) (-15 -1551 (|#1| |#1|)) (-15 -1538 (|#1| |#1|)) (-15 -1510 (|#1| |#1|))) (-1167)) (T -1166))
+NIL
+(-10 -8 (-15 -1525 (|#1| |#1|)) (-15 -1551 (|#1| |#1|)) (-15 -1538 (|#1| |#1|)) (-15 -1510 (|#1| |#1|)))
+((-1510 (($ $) 11)) (-1483 (($ $) 10)) (-1538 (($ $) 9)) (-1551 (($ $) 8)) (-1525 (($ $) 7)) (-1500 (($ $) 6)))
+(((-1167) (-138)) (T -1167))
+((-1510 (*1 *1 *1) (-4 *1 (-1167))) (-1483 (*1 *1 *1) (-4 *1 (-1167))) (-1538 (*1 *1 *1) (-4 *1 (-1167))) (-1551 (*1 *1 *1) (-4 *1 (-1167))) (-1525 (*1 *1 *1) (-4 *1 (-1167))) (-1500 (*1 *1 *1) (-4 *1 (-1167))))
+(-13 (-10 -8 (-15 -1500 ($ $)) (-15 -1525 ($ $)) (-15 -1551 ($ $)) (-15 -1538 ($ $)) (-15 -1483 ($ $)) (-15 -1510 ($ $))))
+((-1755 ((|#2| |#2|) 88)) (-2033 (((-112) |#2|) 26)) (-2146 ((|#2| |#2|) 30)) (-2158 ((|#2| |#2|) 32)) (-1420 ((|#2| |#2| (-1142)) 83) ((|#2| |#2|) 84)) (-2860 (((-167 |#2|) |#2|) 28)) (-2880 ((|#2| |#2| (-1142)) 85) ((|#2| |#2|) 86)))
+(((-1168 |#1| |#2|) (-10 -7 (-15 -1420 (|#2| |#2|)) (-15 -1420 (|#2| |#2| (-1142))) (-15 -2880 (|#2| |#2|)) (-15 -2880 (|#2| |#2| (-1142))) (-15 -1755 (|#2| |#2|)) (-15 -2146 (|#2| |#2|)) (-15 -2158 (|#2| |#2|)) (-15 -2033 ((-112) |#2|)) (-15 -2860 ((-167 |#2|) |#2|))) (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))) (-13 (-27) (-1164) (-423 |#1|))) (T -1168))
+((-2860 (*1 *2 *3) (-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-167 *3)) (-5 *1 (-1168 *4 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *4))))) (-2033 (*1 *2 *3) (-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *2 (-112)) (-5 *1 (-1168 *4 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *4))))) (-2158 (*1 *2 *2) (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1168 *3 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *3))))) (-2146 (*1 *2 *2) (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1168 *3 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *3))))) (-1755 (*1 *2 *2) (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1168 *3 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *3))))) (-2880 (*1 *2 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1168 *4 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *4))))) (-2880 (*1 *2 *2) (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1168 *3 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *3))))) (-1420 (*1 *2 *2 *3) (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1168 *4 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *4))))) (-1420 (*1 *2 *2) (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549)))) (-5 *1 (-1168 *3 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *3))))))
+(-10 -7 (-15 -1420 (|#2| |#2|)) (-15 -1420 (|#2| |#2| (-1142))) (-15 -2880 (|#2| |#2|)) (-15 -2880 (|#2| |#2| (-1142))) (-15 -1755 (|#2| |#2|)) (-15 -2146 (|#2| |#2|)) (-15 -2158 (|#2| |#2|)) (-15 -2033 ((-112) |#2|)) (-15 -2860 ((-167 |#2|) |#2|)))
+((-3060 ((|#4| |#4| |#1|) 27)) (-1643 ((|#4| |#4| |#1|) 28)))
+(((-1169 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3060 (|#4| |#4| |#1|)) (-15 -1643 (|#4| |#4| |#1|))) (-541) (-366 |#1|) (-366 |#1|) (-663 |#1| |#2| |#3|)) (T -1169))
+((-1643 (*1 *2 *2 *3) (-12 (-4 *3 (-541)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-1169 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))) (-3060 (*1 *2 *2 *3) (-12 (-4 *3 (-541)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3)) (-5 *1 (-1169 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))))
+(-10 -7 (-15 -3060 (|#4| |#4| |#1|)) (-15 -1643 (|#4| |#4| |#1|)))
+((-3053 ((|#2| |#2|) 133)) (-1923 ((|#2| |#2|) 130)) (-2603 ((|#2| |#2|) 121)) (-2604 ((|#2| |#2|) 118)) (-2651 ((|#2| |#2|) 126)) (-2607 ((|#2| |#2|) 114)) (-3100 ((|#2| |#2|) 43)) (-2215 ((|#2| |#2|) 94)) (-2164 ((|#2| |#2|) 74)) (-4000 ((|#2| |#2|) 128)) (-3681 ((|#2| |#2|) 116)) (-3173 ((|#2| |#2|) 138)) (-4236 ((|#2| |#2|) 136)) (-4240 ((|#2| |#2|) 137)) (-4262 ((|#2| |#2|) 135)) (-3300 ((|#2| |#2|) 148)) (-4165 ((|#2| |#2|) 30 (-12 (|has| |#2| (-594 (-863 |#1|))) (|has| |#2| (-857 |#1|)) (|has| |#1| (-594 (-863 |#1|))) (|has| |#1| (-857 |#1|))))) (-4112 ((|#2| |#2|) 75)) (-1451 ((|#2| |#2|) 139)) (-1448 ((|#2| |#2|) 140)) (-4168 ((|#2| |#2|) 127)) (-4243 ((|#2| |#2|) 115)) (-3953 ((|#2| |#2|) 134)) (-2152 ((|#2| |#2|) 132)) (-2291 ((|#2| |#2|) 122)) (-2674 ((|#2| |#2|) 120)) (-2830 ((|#2| |#2|) 124)) (-3994 ((|#2| |#2|) 112)))
+(((-1170 |#1| |#2|) (-10 -7 (-15 -1448 (|#2| |#2|)) (-15 -2164 (|#2| |#2|)) (-15 -3300 (|#2| |#2|)) (-15 -2215 (|#2| |#2|)) (-15 -3100 (|#2| |#2|)) (-15 -4112 (|#2| |#2|)) (-15 -1451 (|#2| |#2|)) (-15 -3994 (|#2| |#2|)) (-15 -2830 (|#2| |#2|)) (-15 -2291 (|#2| |#2|)) (-15 -3953 (|#2| |#2|)) (-15 -4243 (|#2| |#2|)) (-15 -4168 (|#2| |#2|)) (-15 -3681 (|#2| |#2|)) (-15 -4000 (|#2| |#2|)) (-15 -2607 (|#2| |#2|)) (-15 -2651 (|#2| |#2|)) (-15 -2603 (|#2| |#2|)) (-15 -3053 (|#2| |#2|)) (-15 -2604 (|#2| |#2|)) (-15 -1923 (|#2| |#2|)) (-15 -2674 (|#2| |#2|)) (-15 -2152 (|#2| |#2|)) (-15 -4262 (|#2| |#2|)) (-15 -4236 (|#2| |#2|)) (-15 -4240 (|#2| |#2|)) (-15 -3173 (|#2| |#2|)) (IF (|has| |#1| (-857 |#1|)) (IF (|has| |#1| (-594 (-863 |#1|))) (IF (|has| |#2| (-594 (-863 |#1|))) (IF (|has| |#2| (-857 |#1|)) (-15 -4165 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-13 (-823) (-444)) (-13 (-423 |#1|) (-1164))) (T -1170))
+((-4165 (*1 *2 *2) (-12 (-4 *3 (-594 (-863 *3))) (-4 *3 (-857 *3)) (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-594 (-863 *3))) (-4 *2 (-857 *3)) (-4 *2 (-13 (-423 *3) (-1164))))) (-3173 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-4240 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-4236 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-4262 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-2152 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-2674 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-1923 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-2604 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-3053 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-2603 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-2651 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-2607 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-4000 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-3681 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-4168 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-4243 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-3953 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-2291 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-2830 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-3994 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-1451 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-4112 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-3100 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-2215 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-3300 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-2164 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))) (-1448 (*1 *2 *2) (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2)) (-4 *2 (-13 (-423 *3) (-1164))))))
+(-10 -7 (-15 -1448 (|#2| |#2|)) (-15 -2164 (|#2| |#2|)) (-15 -3300 (|#2| |#2|)) (-15 -2215 (|#2| |#2|)) (-15 -3100 (|#2| |#2|)) (-15 -4112 (|#2| |#2|)) (-15 -1451 (|#2| |#2|)) (-15 -3994 (|#2| |#2|)) (-15 -2830 (|#2| |#2|)) (-15 -2291 (|#2| |#2|)) (-15 -3953 (|#2| |#2|)) (-15 -4243 (|#2| |#2|)) (-15 -4168 (|#2| |#2|)) (-15 -3681 (|#2| |#2|)) (-15 -4000 (|#2| |#2|)) (-15 -2607 (|#2| |#2|)) (-15 -2651 (|#2| |#2|)) (-15 -2603 (|#2| |#2|)) (-15 -3053 (|#2| |#2|)) (-15 -2604 (|#2| |#2|)) (-15 -1923 (|#2| |#2|)) (-15 -2674 (|#2| |#2|)) (-15 -2152 (|#2| |#2|)) (-15 -4262 (|#2| |#2|)) (-15 -4236 (|#2| |#2|)) (-15 -4240 (|#2| |#2|)) (-15 -3173 (|#2| |#2|)) (IF (|has| |#1| (-857 |#1|)) (IF (|has| |#1| (-594 (-863 |#1|))) (IF (|has| |#2| (-594 (-863 |#1|))) (IF (|has| |#2| (-857 |#1|)) (-15 -4165 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
+((-2210 (((-112) |#5| $) 60) (((-112) $) 102)) (-2156 ((|#5| |#5| $) 75)) (-1488 (($ (-1 (-112) |#5|) $) NIL) (((-3 |#5| "failed") $ |#4|) 119)) (-1409 (((-621 |#5|) (-621 |#5|) $ (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|)) 73)) (-2712 (((-3 $ "failed") (-621 |#5|)) 126)) (-3656 (((-3 $ "failed") $) 112)) (-1852 ((|#5| |#5| $) 94)) (-1804 (((-112) |#5| $ (-1 (-112) |#5| |#5|)) 31)) (-1402 ((|#5| |#5| $) 98)) (-2556 ((|#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|)) 69)) (-3862 (((-2 (|:| -2679 (-621 |#5|)) (|:| -1358 (-621 |#5|))) $) 55)) (-2240 (((-112) |#5| $) 58) (((-112) $) 103)) (-2510 ((|#4| $) 108)) (-3828 (((-3 |#5| "failed") $) 110)) (-1645 (((-621 |#5|) $) 49)) (-1304 (((-112) |#5| $) 67) (((-112) $) 107)) (-3603 ((|#5| |#5| $) 81)) (-3386 (((-112) $ $) 27)) (-4122 (((-112) |#5| $) 63) (((-112) $) 105)) (-4244 ((|#5| |#5| $) 78)) (-3645 (((-3 |#5| "failed") $) 109)) (-3796 (($ $ |#5|) 127)) (-3977 (((-747) $) 52)) (-3853 (($ (-621 |#5|)) 124)) (-4085 (($ $ |#4|) 122)) (-2195 (($ $ |#4|) 121)) (-4292 (($ $) 120)) (-3845 (((-834) $) NIL) (((-621 |#5|) $) 113)) (-2503 (((-747) $) 130)) (-2940 (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#5|))) "failed") (-621 |#5|) (-1 (-112) |#5| |#5|)) 43) (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#5|))) "failed") (-621 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|)) 45)) (-3760 (((-112) $ (-1 (-112) |#5| (-621 |#5|))) 100)) (-4044 (((-621 |#4|) $) 115)) (-1993 (((-112) |#4| $) 118)) (-2387 (((-112) $ $) 19)))
+(((-1171 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2503 ((-747) |#1|)) (-15 -3796 (|#1| |#1| |#5|)) (-15 -1488 ((-3 |#5| "failed") |#1| |#4|)) (-15 -1993 ((-112) |#4| |#1|)) (-15 -4044 ((-621 |#4|) |#1|)) (-15 -3656 ((-3 |#1| "failed") |#1|)) (-15 -3828 ((-3 |#5| "failed") |#1|)) (-15 -3645 ((-3 |#5| "failed") |#1|)) (-15 -1402 (|#5| |#5| |#1|)) (-15 -4292 (|#1| |#1|)) (-15 -1852 (|#5| |#5| |#1|)) (-15 -3603 (|#5| |#5| |#1|)) (-15 -4244 (|#5| |#5| |#1|)) (-15 -2156 (|#5| |#5| |#1|)) (-15 -1409 ((-621 |#5|) (-621 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2556 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -1304 ((-112) |#1|)) (-15 -4122 ((-112) |#1|)) (-15 -2210 ((-112) |#1|)) (-15 -3760 ((-112) |#1| (-1 (-112) |#5| (-621 |#5|)))) (-15 -1304 ((-112) |#5| |#1|)) (-15 -4122 ((-112) |#5| |#1|)) (-15 -2210 ((-112) |#5| |#1|)) (-15 -1804 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -2240 ((-112) |#1|)) (-15 -2240 ((-112) |#5| |#1|)) (-15 -3862 ((-2 (|:| -2679 (-621 |#5|)) (|:| -1358 (-621 |#5|))) |#1|)) (-15 -3977 ((-747) |#1|)) (-15 -1645 ((-621 |#5|) |#1|)) (-15 -2940 ((-3 (-2 (|:| |bas| |#1|) (|:| -2316 (-621 |#5|))) "failed") (-621 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -2940 ((-3 (-2 (|:| |bas| |#1|) (|:| -2316 (-621 |#5|))) "failed") (-621 |#5|) (-1 (-112) |#5| |#5|))) (-15 -3386 ((-112) |#1| |#1|)) (-15 -4085 (|#1| |#1| |#4|)) (-15 -2195 (|#1| |#1| |#4|)) (-15 -2510 (|#4| |#1|)) (-15 -2712 ((-3 |#1| "failed") (-621 |#5|))) (-15 -3845 ((-621 |#5|) |#1|)) (-15 -3853 (|#1| (-621 |#5|))) (-15 -2556 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -2556 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1488 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -2556 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3845 ((-834) |#1|)) (-15 -2387 ((-112) |#1| |#1|))) (-1172 |#2| |#3| |#4| |#5|) (-541) (-769) (-823) (-1032 |#2| |#3| |#4|)) (T -1171))
+NIL
+(-10 -8 (-15 -2503 ((-747) |#1|)) (-15 -3796 (|#1| |#1| |#5|)) (-15 -1488 ((-3 |#5| "failed") |#1| |#4|)) (-15 -1993 ((-112) |#4| |#1|)) (-15 -4044 ((-621 |#4|) |#1|)) (-15 -3656 ((-3 |#1| "failed") |#1|)) (-15 -3828 ((-3 |#5| "failed") |#1|)) (-15 -3645 ((-3 |#5| "failed") |#1|)) (-15 -1402 (|#5| |#5| |#1|)) (-15 -4292 (|#1| |#1|)) (-15 -1852 (|#5| |#5| |#1|)) (-15 -3603 (|#5| |#5| |#1|)) (-15 -4244 (|#5| |#5| |#1|)) (-15 -2156 (|#5| |#5| |#1|)) (-15 -1409 ((-621 |#5|) (-621 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2556 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -1304 ((-112) |#1|)) (-15 -4122 ((-112) |#1|)) (-15 -2210 ((-112) |#1|)) (-15 -3760 ((-112) |#1| (-1 (-112) |#5| (-621 |#5|)))) (-15 -1304 ((-112) |#5| |#1|)) (-15 -4122 ((-112) |#5| |#1|)) (-15 -2210 ((-112) |#5| |#1|)) (-15 -1804 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -2240 ((-112) |#1|)) (-15 -2240 ((-112) |#5| |#1|)) (-15 -3862 ((-2 (|:| -2679 (-621 |#5|)) (|:| -1358 (-621 |#5|))) |#1|)) (-15 -3977 ((-747) |#1|)) (-15 -1645 ((-621 |#5|) |#1|)) (-15 -2940 ((-3 (-2 (|:| |bas| |#1|) (|:| -2316 (-621 |#5|))) "failed") (-621 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -2940 ((-3 (-2 (|:| |bas| |#1|) (|:| -2316 (-621 |#5|))) "failed") (-621 |#5|) (-1 (-112) |#5| |#5|))) (-15 -3386 ((-112) |#1| |#1|)) (-15 -4085 (|#1| |#1| |#4|)) (-15 -2195 (|#1| |#1| |#4|)) (-15 -2510 (|#4| |#1|)) (-15 -2712 ((-3 |#1| "failed") (-621 |#5|))) (-15 -3845 ((-621 |#5|) |#1|)) (-15 -3853 (|#1| (-621 |#5|))) (-15 -2556 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -2556 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1488 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -2556 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3845 ((-834) |#1|)) (-15 -2387 ((-112) |#1| |#1|)))
+((-3832 (((-112) $ $) 7)) (-4063 (((-621 (-2 (|:| -2679 $) (|:| -1358 (-621 |#4|)))) (-621 |#4|)) 85)) (-3587 (((-621 $) (-621 |#4|)) 86)) (-2270 (((-621 |#3|) $) 33)) (-3735 (((-112) $) 26)) (-2148 (((-112) $) 17 (|has| |#1| (-541)))) (-2210 (((-112) |#4| $) 101) (((-112) $) 97)) (-2156 ((|#4| |#4| $) 92)) (-3191 (((-2 (|:| |under| $) (|:| -1349 $) (|:| |upper| $)) $ |#3|) 27)) (-2850 (((-112) $ (-747)) 44)) (-1488 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4336))) (((-3 |#4| "failed") $ |#3|) 79)) (-3034 (($) 45 T CONST)) (-4291 (((-112) $) 22 (|has| |#1| (-541)))) (-1663 (((-112) $ $) 24 (|has| |#1| (-541)))) (-4226 (((-112) $ $) 23 (|has| |#1| (-541)))) (-2113 (((-112) $) 25 (|has| |#1| (-541)))) (-1409 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3480 (((-621 |#4|) (-621 |#4|) $) 18 (|has| |#1| (-541)))) (-2393 (((-621 |#4|) (-621 |#4|) $) 19 (|has| |#1| (-541)))) (-2712 (((-3 $ "failed") (-621 |#4|)) 36)) (-2657 (($ (-621 |#4|)) 35)) (-3656 (((-3 $ "failed") $) 82)) (-1852 ((|#4| |#4| $) 89)) (-3675 (($ $) 68 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ |#4| $) 67 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4336)))) (-1809 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-541)))) (-1804 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-1402 ((|#4| |#4| $) 87)) (-2556 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4336))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4336))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-3862 (((-2 (|:| -2679 (-621 |#4|)) (|:| -1358 (-621 |#4|))) $) 105)) (-2987 (((-621 |#4|) $) 52 (|has| $ (-6 -4336)))) (-2240 (((-112) |#4| $) 104) (((-112) $) 103)) (-2510 ((|#3| $) 34)) (-1777 (((-112) $ (-747)) 43)) (-3698 (((-621 |#4|) $) 53 (|has| $ (-6 -4336)))) (-1593 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#4| |#4|) $) 47)) (-3991 (((-621 |#3|) $) 32)) (-4192 (((-112) |#3| $) 31)) (-3942 (((-112) $ (-747)) 42)) (-3441 (((-1124) $) 9)) (-3828 (((-3 |#4| "failed") $) 83)) (-1645 (((-621 |#4|) $) 107)) (-1304 (((-112) |#4| $) 99) (((-112) $) 95)) (-3603 ((|#4| |#4| $) 90)) (-3386 (((-112) $ $) 110)) (-2179 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-541)))) (-4122 (((-112) |#4| $) 100) (((-112) $) 96)) (-4244 ((|#4| |#4| $) 91)) (-3988 (((-1086) $) 10)) (-3645 (((-3 |#4| "failed") $) 84)) (-3959 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-1505 (((-3 $ "failed") $ |#4|) 78)) (-3796 (($ $ |#4|) 77)) (-3360 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 |#4|) (-621 |#4|)) 59 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-287 |#4|)) 57 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-621 (-287 |#4|))) 56 (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))) (-2520 (((-112) $ $) 38)) (-2643 (((-112) $) 41)) (-3288 (($) 40)) (-3977 (((-747) $) 106)) (-3997 (((-747) |#4| $) 54 (-12 (|has| |#4| (-1066)) (|has| $ (-6 -4336)))) (((-747) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4336)))) (-2279 (($ $) 39)) (-2843 (((-525) $) 69 (|has| |#4| (-594 (-525))))) (-3853 (($ (-621 |#4|)) 60)) (-4085 (($ $ |#3|) 28)) (-2195 (($ $ |#3|) 30)) (-4292 (($ $) 88)) (-4285 (($ $ |#3|) 29)) (-3845 (((-834) $) 11) (((-621 |#4|) $) 37)) (-2503 (((-747) $) 76 (|has| |#3| (-361)))) (-2940 (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-3760 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) 98)) (-3025 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4336)))) (-4044 (((-621 |#3|) $) 81)) (-1993 (((-112) |#3| $) 80)) (-2387 (((-112) $ $) 6)) (-3774 (((-747) $) 46 (|has| $ (-6 -4336)))))
+(((-1172 |#1| |#2| |#3| |#4|) (-138) (-541) (-769) (-823) (-1032 |t#1| |t#2| |t#3|)) (T -1172))
+((-3386 (*1 *2 *1 *1) (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))) (-2940 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2316 (-621 *8)))) (-5 *3 (-621 *8)) (-4 *1 (-1172 *5 *6 *7 *8)))) (-2940 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9)) (-4 *9 (-1032 *6 *7 *8)) (-4 *6 (-541)) (-4 *7 (-769)) (-4 *8 (-823)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2316 (-621 *9)))) (-5 *3 (-621 *9)) (-4 *1 (-1172 *6 *7 *8 *9)))) (-1645 (*1 *2 *1) (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-621 *6)))) (-3977 (*1 *2 *1) (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-747)))) (-3862 (*1 *2 *1) (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-2 (|:| -2679 (-621 *6)) (|:| -1358 (-621 *6)))))) (-2240 (*1 *2 *3 *1) (-12 (-4 *1 (-1172 *4 *5 *6 *3)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-2240 (*1 *2 *1) (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))) (-1804 (*1 *2 *3 *1 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1172 *5 *6 *7 *3)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-112)))) (-2210 (*1 *2 *3 *1) (-12 (-4 *1 (-1172 *4 *5 *6 *3)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-4122 (*1 *2 *3 *1) (-12 (-4 *1 (-1172 *4 *5 *6 *3)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-1304 (*1 *2 *3 *1) (-12 (-4 *1 (-1172 *4 *5 *6 *3)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-3760 (*1 *2 *1 *3) (-12 (-5 *3 (-1 (-112) *7 (-621 *7))) (-4 *1 (-1172 *4 *5 *6 *7)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)))) (-2210 (*1 *2 *1) (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))) (-4122 (*1 *2 *1) (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))) (-1304 (*1 *2 *1) (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))) (-2556 (*1 *2 *2 *1 *3 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-112) *2 *2)) (-4 *1 (-1172 *5 *6 *7 *2)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *2 (-1032 *5 *6 *7)))) (-1409 (*1 *2 *2 *1 *3 *4) (-12 (-5 *2 (-621 *8)) (-5 *3 (-1 *8 *8 *8)) (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1172 *5 *6 *7 *8)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)))) (-2156 (*1 *2 *2 *1) (-12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-4244 (*1 *2 *2 *1) (-12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-3603 (*1 *2 *2 *1) (-12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-1852 (*1 *2 *2 *1) (-12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-4292 (*1 *1 *1) (-12 (-4 *1 (-1172 *2 *3 *4 *5)) (-4 *2 (-541)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-1032 *2 *3 *4)))) (-1402 (*1 *2 *2 *1) (-12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-3587 (*1 *2 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *1)) (-4 *1 (-1172 *4 *5 *6 *7)))) (-4063 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-621 (-2 (|:| -2679 *1) (|:| -1358 (-621 *7))))) (-5 *3 (-621 *7)) (-4 *1 (-1172 *4 *5 *6 *7)))) (-3645 (*1 *2 *1) (|partial| -12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-3828 (*1 *2 *1) (|partial| -12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-3656 (*1 *1 *1) (|partial| -12 (-4 *1 (-1172 *2 *3 *4 *5)) (-4 *2 (-541)) (-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-1032 *2 *3 *4)))) (-4044 (*1 *2 *1) (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-621 *5)))) (-1993 (*1 *2 *3 *1) (-12 (-4 *1 (-1172 *4 *5 *3 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *3 (-823)) (-4 *6 (-1032 *4 *5 *3)) (-5 *2 (-112)))) (-1488 (*1 *2 *1 *3) (|partial| -12 (-4 *1 (-1172 *4 *5 *3 *2)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *3 (-823)) (-4 *2 (-1032 *4 *5 *3)))) (-1505 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-3796 (*1 *1 *1 *2) (-12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))) (-2503 (*1 *2 *1) (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *5 (-361)) (-5 *2 (-747)))))
+(-13 (-947 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-6 -4336) (-6 -4337) (-15 -3386 ((-112) $ $)) (-15 -2940 ((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |t#4|))) "failed") (-621 |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2940 ((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |t#4|))) "failed") (-621 |t#4|) (-1 (-112) |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -1645 ((-621 |t#4|) $)) (-15 -3977 ((-747) $)) (-15 -3862 ((-2 (|:| -2679 (-621 |t#4|)) (|:| -1358 (-621 |t#4|))) $)) (-15 -2240 ((-112) |t#4| $)) (-15 -2240 ((-112) $)) (-15 -1804 ((-112) |t#4| $ (-1 (-112) |t#4| |t#4|))) (-15 -2210 ((-112) |t#4| $)) (-15 -4122 ((-112) |t#4| $)) (-15 -1304 ((-112) |t#4| $)) (-15 -3760 ((-112) $ (-1 (-112) |t#4| (-621 |t#4|)))) (-15 -2210 ((-112) $)) (-15 -4122 ((-112) $)) (-15 -1304 ((-112) $)) (-15 -2556 (|t#4| |t#4| $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -1409 ((-621 |t#4|) (-621 |t#4|) $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2156 (|t#4| |t#4| $)) (-15 -4244 (|t#4| |t#4| $)) (-15 -3603 (|t#4| |t#4| $)) (-15 -1852 (|t#4| |t#4| $)) (-15 -4292 ($ $)) (-15 -1402 (|t#4| |t#4| $)) (-15 -3587 ((-621 $) (-621 |t#4|))) (-15 -4063 ((-621 (-2 (|:| -2679 $) (|:| -1358 (-621 |t#4|)))) (-621 |t#4|))) (-15 -3645 ((-3 |t#4| "failed") $)) (-15 -3828 ((-3 |t#4| "failed") $)) (-15 -3656 ((-3 $ "failed") $)) (-15 -4044 ((-621 |t#3|) $)) (-15 -1993 ((-112) |t#3| $)) (-15 -1488 ((-3 |t#4| "failed") $ |t#3|)) (-15 -1505 ((-3 $ "failed") $ |t#4|)) (-15 -3796 ($ $ |t#4|)) (IF (|has| |t#3| (-361)) (-15 -2503 ((-747) $)) |%noBranch|)))
+(((-34) . T) ((-101) . T) ((-593 (-621 |#4|)) . T) ((-593 (-834)) . T) ((-149 |#4|) . T) ((-594 (-525)) |has| |#4| (-594 (-525))) ((-302 |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))) ((-481 |#4|) . T) ((-505 |#4| |#4|) -12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))) ((-947 |#1| |#2| |#3| |#4|) . T) ((-1066) . T) ((-1179) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2270 (((-621 (-1142)) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-1662 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) NIL)) (-2132 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1638 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1684 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) NIL T CONST)) (-2068 (($ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-1413 (((-923 |#1|) $ (-747)) 17) (((-923 |#1|) $ (-747) (-747)) NIL)) (-1410 (((-112) $) NIL)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2729 (((-747) $ (-1142)) NIL) (((-747) $ (-1142) (-747)) NIL)) (-2297 (((-112) $) NIL)) (-3621 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2988 (((-112) $) NIL)) (-2244 (($ $ (-621 (-1142)) (-621 (-521 (-1142)))) NIL) (($ $ (-1142) (-521 (-1142))) NIL) (($ |#1| (-521 (-1142))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3631 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-3441 (((-1124) $) NIL)) (-3405 (($ $ (-1142)) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1142) |#1|) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3988 (((-1086) $) NIL)) (-2006 (($ (-1 $) (-1142) |#1|) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3796 (($ $ (-747)) NIL)) (-2040 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-2717 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2684 (($ $ (-1142) $) NIL) (($ $ (-621 (-1142)) (-621 $)) NIL) (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL)) (-3455 (($ $ (-1142)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL)) (-3977 (((-521 (-1142)) $) NIL)) (-1696 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3958 (($ $) NIL)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL (|has| |#1| (-170))) (($ $) NIL (|has| |#1| (-541))) (($ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-1142)) NIL) (($ (-923 |#1|)) NIL)) (-4068 ((|#1| $ (-521 (-1142))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL) (((-923 |#1|) $ (-747)) NIL)) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) NIL)) (-1731 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1708 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1932 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3274 (($) NIL T CONST)) (-3286 (($) NIL T CONST)) (-1699 (($ $ (-1142)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL)) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-1173 |#1|) (-13 (-717 |#1| (-1142)) (-10 -8 (-15 -4068 ((-923 |#1|) $ (-747))) (-15 -3845 ($ (-1142))) (-15 -3845 ($ (-923 |#1|))) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -3405 ($ $ (-1142) |#1|)) (-15 -2006 ($ (-1 $) (-1142) |#1|))) |%noBranch|))) (-1018)) (T -1173))
+((-4068 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *2 (-923 *4)) (-5 *1 (-1173 *4)) (-4 *4 (-1018)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1173 *3)) (-4 *3 (-1018)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-923 *3)) (-4 *3 (-1018)) (-5 *1 (-1173 *3)))) (-3405 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *1 (-1173 *3)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)))) (-2006 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1173 *4))) (-5 *3 (-1142)) (-5 *1 (-1173 *4)) (-4 *4 (-38 (-400 (-549)))) (-4 *4 (-1018)))))
+(-13 (-717 |#1| (-1142)) (-10 -8 (-15 -4068 ((-923 |#1|) $ (-747))) (-15 -3845 ($ (-1142))) (-15 -3845 ($ (-923 |#1|))) (IF (|has| |#1| (-38 (-400 (-549)))) (PROGN (-15 -3405 ($ $ (-1142) |#1|)) (-15 -2006 ($ (-1 $) (-1142) |#1|))) |%noBranch|)))
+((-1759 (($ |#1| (-621 (-621 (-914 (-219)))) (-112)) 19)) (-2273 (((-112) $ (-112)) 18)) (-1756 (((-112) $) 17)) (-3934 (((-621 (-621 (-914 (-219)))) $) 13)) (-2864 ((|#1| $) 8)) (-4248 (((-112) $) 15)))
+(((-1174 |#1|) (-10 -8 (-15 -2864 (|#1| $)) (-15 -3934 ((-621 (-621 (-914 (-219)))) $)) (-15 -4248 ((-112) $)) (-15 -1756 ((-112) $)) (-15 -2273 ((-112) $ (-112))) (-15 -1759 ($ |#1| (-621 (-621 (-914 (-219)))) (-112)))) (-945)) (T -1174))
+((-1759 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-112)) (-5 *1 (-1174 *2)) (-4 *2 (-945)))) (-2273 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3)) (-4 *3 (-945)))) (-1756 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3)) (-4 *3 (-945)))) (-4248 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3)) (-4 *3 (-945)))) (-3934 (*1 *2 *1) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *1 (-1174 *3)) (-4 *3 (-945)))) (-2864 (*1 *2 *1) (-12 (-5 *1 (-1174 *2)) (-4 *2 (-945)))))
+(-10 -8 (-15 -2864 (|#1| $)) (-15 -3934 ((-621 (-621 (-914 (-219)))) $)) (-15 -4248 ((-112) $)) (-15 -1756 ((-112) $)) (-15 -2273 ((-112) $ (-112))) (-15 -1759 ($ |#1| (-621 (-621 (-914 (-219)))) (-112))))
+((-1627 (((-914 (-219)) (-914 (-219))) 25)) (-2796 (((-914 (-219)) (-219) (-219) (-219) (-219)) 10)) (-4087 (((-621 (-914 (-219))) (-914 (-219)) (-914 (-219)) (-914 (-219)) (-219) (-621 (-621 (-219)))) 37)) (-1283 (((-219) (-914 (-219)) (-914 (-219))) 21)) (-1918 (((-914 (-219)) (-914 (-219)) (-914 (-219))) 22)) (-4096 (((-621 (-621 (-219))) (-549)) 31)) (-2498 (((-914 (-219)) (-914 (-219)) (-914 (-219))) 20)) (-2484 (((-914 (-219)) (-914 (-219)) (-914 (-219))) 19)) (* (((-914 (-219)) (-219) (-914 (-219))) 18)))
+(((-1175) (-10 -7 (-15 -2796 ((-914 (-219)) (-219) (-219) (-219) (-219))) (-15 * ((-914 (-219)) (-219) (-914 (-219)))) (-15 -2484 ((-914 (-219)) (-914 (-219)) (-914 (-219)))) (-15 -2498 ((-914 (-219)) (-914 (-219)) (-914 (-219)))) (-15 -1283 ((-219) (-914 (-219)) (-914 (-219)))) (-15 -1918 ((-914 (-219)) (-914 (-219)) (-914 (-219)))) (-15 -1627 ((-914 (-219)) (-914 (-219)))) (-15 -4096 ((-621 (-621 (-219))) (-549))) (-15 -4087 ((-621 (-914 (-219))) (-914 (-219)) (-914 (-219)) (-914 (-219)) (-219) (-621 (-621 (-219))))))) (T -1175))
+((-4087 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-621 (-621 (-219)))) (-5 *4 (-219)) (-5 *2 (-621 (-914 *4))) (-5 *1 (-1175)) (-5 *3 (-914 *4)))) (-4096 (*1 *2 *3) (-12 (-5 *3 (-549)) (-5 *2 (-621 (-621 (-219)))) (-5 *1 (-1175)))) (-1627 (*1 *2 *2) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1175)))) (-1918 (*1 *2 *2 *2) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1175)))) (-1283 (*1 *2 *3 *3) (-12 (-5 *3 (-914 (-219))) (-5 *2 (-219)) (-5 *1 (-1175)))) (-2498 (*1 *2 *2 *2) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1175)))) (-2484 (*1 *2 *2 *2) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1175)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-914 (-219))) (-5 *3 (-219)) (-5 *1 (-1175)))) (-2796 (*1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1175)) (-5 *3 (-219)))))
+(-10 -7 (-15 -2796 ((-914 (-219)) (-219) (-219) (-219) (-219))) (-15 * ((-914 (-219)) (-219) (-914 (-219)))) (-15 -2484 ((-914 (-219)) (-914 (-219)) (-914 (-219)))) (-15 -2498 ((-914 (-219)) (-914 (-219)) (-914 (-219)))) (-15 -1283 ((-219) (-914 (-219)) (-914 (-219)))) (-15 -1918 ((-914 (-219)) (-914 (-219)) (-914 (-219)))) (-15 -1627 ((-914 (-219)) (-914 (-219)))) (-15 -4096 ((-621 (-621 (-219))) (-549))) (-15 -4087 ((-621 (-914 (-219))) (-914 (-219)) (-914 (-219)) (-914 (-219)) (-219) (-621 (-621 (-219))))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-1488 ((|#1| $ (-747)) 13)) (-4210 (((-747) $) 12)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3845 (((-929 |#1|) $) 10) (($ (-929 |#1|)) 9) (((-834) $) 23 (|has| |#1| (-593 (-834))))) (-2387 (((-112) $ $) 16 (|has| |#1| (-1066)))))
+(((-1176 |#1|) (-13 (-593 (-929 |#1|)) (-10 -8 (-15 -3845 ($ (-929 |#1|))) (-15 -1488 (|#1| $ (-747))) (-15 -4210 ((-747) $)) (IF (|has| |#1| (-593 (-834))) (-6 (-593 (-834))) |%noBranch|) (IF (|has| |#1| (-1066)) (-6 (-1066)) |%noBranch|))) (-1179)) (T -1176))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-929 *3)) (-4 *3 (-1179)) (-5 *1 (-1176 *3)))) (-1488 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *1 (-1176 *2)) (-4 *2 (-1179)))) (-4210 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-1176 *3)) (-4 *3 (-1179)))))
+(-13 (-593 (-929 |#1|)) (-10 -8 (-15 -3845 ($ (-929 |#1|))) (-15 -1488 (|#1| $ (-747))) (-15 -4210 ((-747) $)) (IF (|has| |#1| (-593 (-834))) (-6 (-593 (-834))) |%noBranch|) (IF (|has| |#1| (-1066)) (-6 (-1066)) |%noBranch|)))
+((-1325 (((-411 (-1138 (-1138 |#1|))) (-1138 (-1138 |#1|)) (-549)) 80)) (-2683 (((-411 (-1138 (-1138 |#1|))) (-1138 (-1138 |#1|))) 74)) (-4066 (((-411 (-1138 (-1138 |#1|))) (-1138 (-1138 |#1|))) 59)))
+(((-1177 |#1|) (-10 -7 (-15 -2683 ((-411 (-1138 (-1138 |#1|))) (-1138 (-1138 |#1|)))) (-15 -4066 ((-411 (-1138 (-1138 |#1|))) (-1138 (-1138 |#1|)))) (-15 -1325 ((-411 (-1138 (-1138 |#1|))) (-1138 (-1138 |#1|)) (-549)))) (-342)) (T -1177))
+((-1325 (*1 *2 *3 *4) (-12 (-5 *4 (-549)) (-4 *5 (-342)) (-5 *2 (-411 (-1138 (-1138 *5)))) (-5 *1 (-1177 *5)) (-5 *3 (-1138 (-1138 *5))))) (-4066 (*1 *2 *3) (-12 (-4 *4 (-342)) (-5 *2 (-411 (-1138 (-1138 *4)))) (-5 *1 (-1177 *4)) (-5 *3 (-1138 (-1138 *4))))) (-2683 (*1 *2 *3) (-12 (-4 *4 (-342)) (-5 *2 (-411 (-1138 (-1138 *4)))) (-5 *1 (-1177 *4)) (-5 *3 (-1138 (-1138 *4))))))
+(-10 -7 (-15 -2683 ((-411 (-1138 (-1138 |#1|))) (-1138 (-1138 |#1|)))) (-15 -4066 ((-411 (-1138 (-1138 |#1|))) (-1138 (-1138 |#1|)))) (-15 -1325 ((-411 (-1138 (-1138 |#1|))) (-1138 (-1138 |#1|)) (-549))))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 9) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-1178) (-1049)) (T -1178))
+NIL
+(-1049)
+NIL
+(((-1179) (-138)) (T -1179))
+NIL
+(-13 (-10 -7 (-6 -2623)))
+((-1457 (((-112)) 15)) (-4224 (((-1230) (-621 |#1|) (-621 |#1|)) 19) (((-1230) (-621 |#1|)) 20)) (-1777 (((-112) |#1| |#1|) 32 (|has| |#1| (-823)))) (-3942 (((-112) |#1| |#1| (-1 (-112) |#1| |#1|)) 27) (((-3 (-112) "failed") |#1| |#1|) 25)) (-3733 ((|#1| (-621 |#1|)) 33 (|has| |#1| (-823))) ((|#1| (-621 |#1|) (-1 (-112) |#1| |#1|)) 28)) (-2958 (((-2 (|:| -1332 (-621 |#1|)) (|:| -3999 (-621 |#1|)))) 17)))
+(((-1180 |#1|) (-10 -7 (-15 -4224 ((-1230) (-621 |#1|))) (-15 -4224 ((-1230) (-621 |#1|) (-621 |#1|))) (-15 -2958 ((-2 (|:| -1332 (-621 |#1|)) (|:| -3999 (-621 |#1|))))) (-15 -3942 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3942 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -3733 (|#1| (-621 |#1|) (-1 (-112) |#1| |#1|))) (-15 -1457 ((-112))) (IF (|has| |#1| (-823)) (PROGN (-15 -3733 (|#1| (-621 |#1|))) (-15 -1777 ((-112) |#1| |#1|))) |%noBranch|)) (-1066)) (T -1180))
+((-1777 (*1 *2 *3 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1180 *3)) (-4 *3 (-823)) (-4 *3 (-1066)))) (-3733 (*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-4 *2 (-1066)) (-4 *2 (-823)) (-5 *1 (-1180 *2)))) (-1457 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1180 *3)) (-4 *3 (-1066)))) (-3733 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1180 *2)) (-4 *2 (-1066)))) (-3942 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1066)) (-5 *2 (-112)) (-5 *1 (-1180 *3)))) (-3942 (*1 *2 *3 *3) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1180 *3)) (-4 *3 (-1066)))) (-2958 (*1 *2) (-12 (-5 *2 (-2 (|:| -1332 (-621 *3)) (|:| -3999 (-621 *3)))) (-5 *1 (-1180 *3)) (-4 *3 (-1066)))) (-4224 (*1 *2 *3 *3) (-12 (-5 *3 (-621 *4)) (-4 *4 (-1066)) (-5 *2 (-1230)) (-5 *1 (-1180 *4)))) (-4224 (*1 *2 *3) (-12 (-5 *3 (-621 *4)) (-4 *4 (-1066)) (-5 *2 (-1230)) (-5 *1 (-1180 *4)))))
+(-10 -7 (-15 -4224 ((-1230) (-621 |#1|))) (-15 -4224 ((-1230) (-621 |#1|) (-621 |#1|))) (-15 -2958 ((-2 (|:| -1332 (-621 |#1|)) (|:| -3999 (-621 |#1|))))) (-15 -3942 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3942 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -3733 (|#1| (-621 |#1|) (-1 (-112) |#1| |#1|))) (-15 -1457 ((-112))) (IF (|has| |#1| (-823)) (PROGN (-15 -3733 (|#1| (-621 |#1|))) (-15 -1777 ((-112) |#1| |#1|))) |%noBranch|))
+((-2367 (((-1230) (-621 (-1142)) (-621 (-1142))) 13) (((-1230) (-621 (-1142))) 11)) (-2025 (((-1230)) 14)) (-3885 (((-2 (|:| -3999 (-621 (-1142))) (|:| -1332 (-621 (-1142))))) 18)))
+(((-1181) (-10 -7 (-15 -2367 ((-1230) (-621 (-1142)))) (-15 -2367 ((-1230) (-621 (-1142)) (-621 (-1142)))) (-15 -3885 ((-2 (|:| -3999 (-621 (-1142))) (|:| -1332 (-621 (-1142)))))) (-15 -2025 ((-1230))))) (T -1181))
+((-2025 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-1181)))) (-3885 (*1 *2) (-12 (-5 *2 (-2 (|:| -3999 (-621 (-1142))) (|:| -1332 (-621 (-1142))))) (-5 *1 (-1181)))) (-2367 (*1 *2 *3 *3) (-12 (-5 *3 (-621 (-1142))) (-5 *2 (-1230)) (-5 *1 (-1181)))) (-2367 (*1 *2 *3) (-12 (-5 *3 (-621 (-1142))) (-5 *2 (-1230)) (-5 *1 (-1181)))))
+(-10 -7 (-15 -2367 ((-1230) (-621 (-1142)))) (-15 -2367 ((-1230) (-621 (-1142)) (-621 (-1142)))) (-15 -3885 ((-2 (|:| -3999 (-621 (-1142))) (|:| -1332 (-621 (-1142)))))) (-15 -2025 ((-1230))))
+((-3239 (($ $) 17)) (-1464 (((-112) $) 24)))
+(((-1182 |#1|) (-10 -8 (-15 -3239 (|#1| |#1|)) (-15 -1464 ((-112) |#1|))) (-1183)) (T -1182))
+NIL
+(-10 -8 (-15 -3239 (|#1| |#1|)) (-15 -1464 ((-112) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-2416 (((-3 $ "failed") $ $) 19)) (-3239 (($ $) 49)) (-2620 (((-411 $) $) 50)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-1464 (((-112) $) 51)) (-2297 (((-112) $) 30)) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-2119 (((-411 $) $) 48)) (-2040 (((-3 $ "failed") $ $) 40)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41)) (-2371 (((-747)) 28)) (-2441 (((-112) $ $) 37)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24)))
+(((-1183) (-138)) (T -1183))
+((-1464 (*1 *2 *1) (-12 (-4 *1 (-1183)) (-5 *2 (-112)))) (-2620 (*1 *2 *1) (-12 (-5 *2 (-411 *1)) (-4 *1 (-1183)))) (-3239 (*1 *1 *1) (-4 *1 (-1183))) (-2119 (*1 *2 *1) (-12 (-5 *2 (-411 *1)) (-4 *1 (-1183)))))
+(-13 (-444) (-10 -8 (-15 -1464 ((-112) $)) (-15 -2620 ((-411 $) $)) (-15 -3239 ($ $)) (-15 -2119 ((-411 $) $))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-101) . T) ((-111 $ $) . T) ((-130) . T) ((-593 (-834)) . T) ((-170) . T) ((-283) . T) ((-444) . T) ((-541) . T) ((-624 $) . T) ((-694 $) . T) ((-703) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-2795 (((-1189 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1189 |#1| |#3| |#5|)) 23)))
+(((-1184 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2795 ((-1189 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1189 |#1| |#3| |#5|)))) (-1018) (-1018) (-1142) (-1142) |#1| |#2|) (T -1184))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1189 *5 *7 *9)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-14 *7 (-1142)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1189 *6 *8 *10)) (-5 *1 (-1184 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1142)))))
+(-10 -7 (-15 -2795 ((-1189 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1189 |#1| |#3| |#5|))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2270 (((-621 (-1048)) $) 72)) (-3009 (((-1142) $) 101)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-3044 (($ $) 50 (|has| |#1| (-541)))) (-2774 (((-112) $) 52 (|has| |#1| (-541)))) (-3691 (($ $ (-549)) 96) (($ $ (-549) (-549)) 95)) (-2585 (((-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $) 103)) (-1662 (($ $) 133 (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) 116 (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) 19)) (-3239 (($ $) 160 (|has| |#1| (-356)))) (-2620 (((-411 $) $) 161 (|has| |#1| (-356)))) (-2132 (($ $) 115 (|has| |#1| (-38 (-400 (-549)))))) (-2680 (((-112) $ $) 151 (|has| |#1| (-356)))) (-1638 (($ $) 132 (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) 117 (|has| |#1| (-38 (-400 (-549)))))) (-2824 (($ (-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|)))) 171)) (-1684 (($ $) 131 (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) 118 (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) 17 T CONST)) (-2091 (($ $ $) 155 (|has| |#1| (-356)))) (-2068 (($ $) 58)) (-2612 (((-3 $ "failed") $) 32)) (-1729 (((-400 (-923 |#1|)) $ (-549)) 169 (|has| |#1| (-541))) (((-400 (-923 |#1|)) $ (-549) (-549)) 168 (|has| |#1| (-541)))) (-2065 (($ $ $) 154 (|has| |#1| (-356)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 149 (|has| |#1| (-356)))) (-1464 (((-112) $) 162 (|has| |#1| (-356)))) (-1410 (((-112) $) 71)) (-1425 (($) 143 (|has| |#1| (-38 (-400 (-549)))))) (-2729 (((-549) $) 98) (((-549) $ (-549)) 97)) (-2297 (((-112) $) 30)) (-3621 (($ $ (-549)) 114 (|has| |#1| (-38 (-400 (-549)))))) (-2625 (($ $ (-892)) 99)) (-1837 (($ (-1 |#1| (-549)) $) 170)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 158 (|has| |#1| (-356)))) (-2988 (((-112) $) 60)) (-2244 (($ |#1| (-549)) 59) (($ $ (-1048) (-549)) 74) (($ $ (-621 (-1048)) (-621 (-549))) 73)) (-2795 (($ (-1 |#1| |#1|) $) 61)) (-3631 (($ $) 140 (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) 63)) (-2042 ((|#1| $) 64)) (-3696 (($ (-621 $)) 147 (|has| |#1| (-356))) (($ $ $) 146 (|has| |#1| (-356)))) (-3441 (((-1124) $) 9)) (-1990 (($ $) 163 (|has| |#1| (-356)))) (-3405 (($ $) 167 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1142)) 166 (-1536 (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-930)) (|has| |#1| (-1164)) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-15 -2270 ((-621 (-1142)) |#1|))) (|has| |#1| (-15 -3405 (|#1| |#1| (-1142)))) (|has| |#1| (-38 (-400 (-549)))))))) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 148 (|has| |#1| (-356)))) (-3726 (($ (-621 $)) 145 (|has| |#1| (-356))) (($ $ $) 144 (|has| |#1| (-356)))) (-2119 (((-411 $) $) 159 (|has| |#1| (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 157 (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 156 (|has| |#1| (-356)))) (-3796 (($ $ (-549)) 93)) (-2040 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 150 (|has| |#1| (-356)))) (-2717 (($ $) 141 (|has| |#1| (-38 (-400 (-549)))))) (-2684 (((-1122 |#1|) $ |#1|) 92 (|has| |#1| (-15 ** (|#1| |#1| (-549)))))) (-1335 (((-747) $) 152 (|has| |#1| (-356)))) (-3339 ((|#1| $ (-549)) 102) (($ $ $) 79 (|has| (-549) (-1078)))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 153 (|has| |#1| (-356)))) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) 87 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-1142) (-747)) 86 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1142))) 85 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-1142)) 84 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-747)) 82 (|has| |#1| (-15 * (|#1| (-549) |#1|)))) (($ $) 80 (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (-3977 (((-549) $) 62)) (-1696 (($ $) 130 (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) 119 (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) 129 (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) 120 (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) 128 (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) 121 (|has| |#1| (-38 (-400 (-549)))))) (-3958 (($ $) 70)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 45 (|has| |#1| (-170))) (($ (-400 (-549))) 55 (|has| |#1| (-38 (-400 (-549))))) (($ $) 47 (|has| |#1| (-541)))) (-4068 ((|#1| $ (-549)) 57)) (-2343 (((-3 $ "failed") $) 46 (|has| |#1| (-143)))) (-2371 (((-747)) 28)) (-2596 ((|#1| $) 100)) (-1731 (($ $) 139 (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) 127 (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) 51 (|has| |#1| (-541)))) (-1708 (($ $) 138 (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) 126 (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) 137 (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) 125 (|has| |#1| (-38 (-400 (-549)))))) (-2659 ((|#1| $ (-549)) 94 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-549)))) (|has| |#1| (-15 -3845 (|#1| (-1142))))))) (-1932 (($ $) 136 (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) 124 (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) 135 (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) 123 (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) 134 (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) 122 (|has| |#1| (-38 (-400 (-549)))))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ (-621 (-1142)) (-621 (-747))) 91 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-1142) (-747)) 90 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1142))) 89 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-1142)) 88 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-747)) 83 (|has| |#1| (-15 * (|#1| (-549) |#1|)))) (($ $) 81 (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (-2387 (((-112) $ $) 6)) (-2511 (($ $ |#1|) 56 (|has| |#1| (-356))) (($ $ $) 165 (|has| |#1| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 164 (|has| |#1| (-356))) (($ $ $) 142 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 113 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
+(((-1185 |#1|) (-138) (-1018)) (T -1185))
+((-2824 (*1 *1 *2) (-12 (-5 *2 (-1122 (-2 (|:| |k| (-549)) (|:| |c| *3)))) (-4 *3 (-1018)) (-4 *1 (-1185 *3)))) (-1837 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-549))) (-4 *1 (-1185 *3)) (-4 *3 (-1018)))) (-1729 (*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-1185 *4)) (-4 *4 (-1018)) (-4 *4 (-541)) (-5 *2 (-400 (-923 *4))))) (-1729 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-549)) (-4 *1 (-1185 *4)) (-4 *4 (-1018)) (-4 *4 (-541)) (-5 *2 (-400 (-923 *4))))) (-3405 (*1 *1 *1) (-12 (-4 *1 (-1185 *2)) (-4 *2 (-1018)) (-4 *2 (-38 (-400 (-549)))))) (-3405 (*1 *1 *1 *2) (-1536 (-12 (-5 *2 (-1142)) (-4 *1 (-1185 *3)) (-4 *3 (-1018)) (-12 (-4 *3 (-29 (-549))) (-4 *3 (-930)) (-4 *3 (-1164)) (-4 *3 (-38 (-400 (-549)))))) (-12 (-5 *2 (-1142)) (-4 *1 (-1185 *3)) (-4 *3 (-1018)) (-12 (|has| *3 (-15 -2270 ((-621 *2) *3))) (|has| *3 (-15 -3405 (*3 *3 *2))) (-4 *3 (-38 (-400 (-549)))))))))
+(-13 (-1203 |t#1| (-549)) (-10 -8 (-15 -2824 ($ (-1122 (-2 (|:| |k| (-549)) (|:| |c| |t#1|))))) (-15 -1837 ($ (-1 |t#1| (-549)) $)) (IF (|has| |t#1| (-541)) (PROGN (-15 -1729 ((-400 (-923 |t#1|)) $ (-549))) (-15 -1729 ((-400 (-923 |t#1|)) $ (-549) (-549)))) |%noBranch|) (IF (|has| |t#1| (-38 (-400 (-549)))) (PROGN (-15 -3405 ($ $)) (IF (|has| |t#1| (-15 -3405 (|t#1| |t#1| (-1142)))) (IF (|has| |t#1| (-15 -2270 ((-621 (-1142)) |t#1|))) (-15 -3405 ($ $ (-1142))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1164)) (IF (|has| |t#1| (-930)) (IF (|has| |t#1| (-29 (-549))) (-15 -3405 ($ $ (-1142))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-973)) (-6 (-1164))) |%noBranch|) (IF (|has| |t#1| (-356)) (-6 (-356)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-549)) . T) ((-25) . T) ((-38 #1=(-400 (-549))) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-35) |has| |#1| (-38 (-400 (-549)))) ((-94) |has| |#1| (-38 (-400 (-549)))) ((-101) . T) ((-111 #1# #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-227) |has| |#1| (-15 * (|#1| (-549) |#1|))) ((-237) |has| |#1| (-356)) ((-277) |has| |#1| (-38 (-400 (-549)))) ((-279 $ $) |has| (-549) (-1078)) ((-283) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-300) |has| |#1| (-356)) ((-356) |has| |#1| (-356)) ((-444) |has| |#1| (-356)) ((-484) |has| |#1| (-38 (-400 (-549)))) ((-541) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-624 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-703) . T) ((-871 (-1142)) -12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))) ((-944 |#1| #0# (-1048)) . T) ((-891) |has| |#1| (-356)) ((-973) |has| |#1| (-38 (-400 (-549)))) ((-1024 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1164) |has| |#1| (-38 (-400 (-549)))) ((-1167) |has| |#1| (-38 (-400 (-549)))) ((-1183) |has| |#1| (-356)) ((-1203 |#1| #0#) . T))
+((-3210 (((-112) $) 12)) (-2712 (((-3 |#3| "failed") $) 17) (((-3 (-1142) "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 (-549) "failed") $) NIL)) (-2657 ((|#3| $) 14) (((-1142) $) NIL) (((-400 (-549)) $) NIL) (((-549) $) NIL)))
+(((-1186 |#1| |#2| |#3|) (-10 -8 (-15 -2657 ((-549) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2657 ((-1142) |#1|)) (-15 -2712 ((-3 (-1142) "failed") |#1|)) (-15 -2657 (|#3| |#1|)) (-15 -2712 ((-3 |#3| "failed") |#1|)) (-15 -3210 ((-112) |#1|))) (-1187 |#2| |#3|) (-1018) (-1216 |#2|)) (T -1186))
+NIL
+(-10 -8 (-15 -2657 ((-549) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -2657 ((-1142) |#1|)) (-15 -2712 ((-3 (-1142) "failed") |#1|)) (-15 -2657 (|#3| |#1|)) (-15 -2712 ((-3 |#3| "failed") |#1|)) (-15 -3210 ((-112) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-3833 ((|#2| $) 228 (-1819 (|has| |#2| (-300)) (|has| |#1| (-356))))) (-2270 (((-621 (-1048)) $) 72)) (-3009 (((-1142) $) 101)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-3044 (($ $) 50 (|has| |#1| (-541)))) (-2774 (((-112) $) 52 (|has| |#1| (-541)))) (-3691 (($ $ (-549)) 96) (($ $ (-549) (-549)) 95)) (-2585 (((-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $) 103)) (-1398 ((|#2| $) 264)) (-2294 (((-3 |#2| "failed") $) 260)) (-2337 ((|#2| $) 261)) (-1662 (($ $) 133 (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) 116 (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) 19)) (-3630 (((-411 (-1138 $)) (-1138 $)) 237 (-1819 (|has| |#2| (-880)) (|has| |#1| (-356))))) (-3239 (($ $) 160 (|has| |#1| (-356)))) (-2620 (((-411 $) $) 161 (|has| |#1| (-356)))) (-2132 (($ $) 115 (|has| |#1| (-38 (-400 (-549)))))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) 234 (-1819 (|has| |#2| (-880)) (|has| |#1| (-356))))) (-2680 (((-112) $ $) 151 (|has| |#1| (-356)))) (-1638 (($ $) 132 (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) 117 (|has| |#1| (-38 (-400 (-549)))))) (-1741 (((-549) $) 246 (-1819 (|has| |#2| (-796)) (|has| |#1| (-356))))) (-2824 (($ (-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|)))) 171)) (-1684 (($ $) 131 (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) 118 (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) 17 T CONST)) (-2712 (((-3 |#2| "failed") $) 267) (((-3 (-549) "failed") $) 256 (-1819 (|has| |#2| (-1009 (-549))) (|has| |#1| (-356)))) (((-3 (-400 (-549)) "failed") $) 254 (-1819 (|has| |#2| (-1009 (-549))) (|has| |#1| (-356)))) (((-3 (-1142) "failed") $) 239 (-1819 (|has| |#2| (-1009 (-1142))) (|has| |#1| (-356))))) (-2657 ((|#2| $) 266) (((-549) $) 257 (-1819 (|has| |#2| (-1009 (-549))) (|has| |#1| (-356)))) (((-400 (-549)) $) 255 (-1819 (|has| |#2| (-1009 (-549))) (|has| |#1| (-356)))) (((-1142) $) 240 (-1819 (|has| |#2| (-1009 (-1142))) (|has| |#1| (-356))))) (-1904 (($ $) 263) (($ (-549) $) 262)) (-2091 (($ $ $) 155 (|has| |#1| (-356)))) (-2068 (($ $) 58)) (-3446 (((-665 |#2|) (-665 $)) 218 (|has| |#1| (-356))) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) 217 (|has| |#1| (-356))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 216 (-1819 (|has| |#2| (-617 (-549))) (|has| |#1| (-356)))) (((-665 (-549)) (-665 $)) 215 (-1819 (|has| |#2| (-617 (-549))) (|has| |#1| (-356))))) (-2612 (((-3 $ "failed") $) 32)) (-1729 (((-400 (-923 |#1|)) $ (-549)) 169 (|has| |#1| (-541))) (((-400 (-923 |#1|)) $ (-549) (-549)) 168 (|has| |#1| (-541)))) (-3237 (($) 230 (-1819 (|has| |#2| (-534)) (|has| |#1| (-356))))) (-2065 (($ $ $) 154 (|has| |#1| (-356)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 149 (|has| |#1| (-356)))) (-1464 (((-112) $) 162 (|has| |#1| (-356)))) (-2357 (((-112) $) 244 (-1819 (|has| |#2| (-796)) (|has| |#1| (-356))))) (-1410 (((-112) $) 71)) (-1425 (($) 143 (|has| |#1| (-38 (-400 (-549)))))) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 222 (-1819 (|has| |#2| (-857 (-372))) (|has| |#1| (-356)))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 221 (-1819 (|has| |#2| (-857 (-549))) (|has| |#1| (-356))))) (-2729 (((-549) $) 98) (((-549) $ (-549)) 97)) (-2297 (((-112) $) 30)) (-2096 (($ $) 226 (|has| |#1| (-356)))) (-1392 ((|#2| $) 224 (|has| |#1| (-356)))) (-3621 (($ $ (-549)) 114 (|has| |#1| (-38 (-400 (-549)))))) (-2964 (((-3 $ "failed") $) 258 (-1819 (|has| |#2| (-1117)) (|has| |#1| (-356))))) (-1992 (((-112) $) 245 (-1819 (|has| |#2| (-796)) (|has| |#1| (-356))))) (-2625 (($ $ (-892)) 99)) (-1837 (($ (-1 |#1| (-549)) $) 170)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 158 (|has| |#1| (-356)))) (-2988 (((-112) $) 60)) (-2244 (($ |#1| (-549)) 59) (($ $ (-1048) (-549)) 74) (($ $ (-621 (-1048)) (-621 (-549))) 73)) (-2861 (($ $ $) 248 (-1819 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-3574 (($ $ $) 249 (-1819 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2795 (($ (-1 |#1| |#1|) $) 61) (($ (-1 |#2| |#2|) $) 210 (|has| |#1| (-356)))) (-3631 (($ $) 140 (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) 63)) (-2042 ((|#1| $) 64)) (-3696 (($ (-621 $)) 147 (|has| |#1| (-356))) (($ $ $) 146 (|has| |#1| (-356)))) (-2352 (($ (-549) |#2|) 265)) (-3441 (((-1124) $) 9)) (-1990 (($ $) 163 (|has| |#1| (-356)))) (-3405 (($ $) 167 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1142)) 166 (-1536 (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-930)) (|has| |#1| (-1164)) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-15 -2270 ((-621 (-1142)) |#1|))) (|has| |#1| (-15 -3405 (|#1| |#1| (-1142)))) (|has| |#1| (-38 (-400 (-549)))))))) (-3059 (($) 259 (-1819 (|has| |#2| (-1117)) (|has| |#1| (-356))) CONST)) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 148 (|has| |#1| (-356)))) (-3726 (($ (-621 $)) 145 (|has| |#1| (-356))) (($ $ $) 144 (|has| |#1| (-356)))) (-1512 (($ $) 229 (-1819 (|has| |#2| (-300)) (|has| |#1| (-356))))) (-1349 ((|#2| $) 232 (-1819 (|has| |#2| (-534)) (|has| |#1| (-356))))) (-2609 (((-411 (-1138 $)) (-1138 $)) 235 (-1819 (|has| |#2| (-880)) (|has| |#1| (-356))))) (-2193 (((-411 (-1138 $)) (-1138 $)) 236 (-1819 (|has| |#2| (-880)) (|has| |#1| (-356))))) (-2119 (((-411 $) $) 159 (|has| |#1| (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 157 (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 156 (|has| |#1| (-356)))) (-3796 (($ $ (-549)) 93)) (-2040 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 150 (|has| |#1| (-356)))) (-2717 (($ $) 141 (|has| |#1| (-38 (-400 (-549)))))) (-2684 (((-1122 |#1|) $ |#1|) 92 (|has| |#1| (-15 ** (|#1| |#1| (-549))))) (($ $ (-1142) |#2|) 209 (-1819 (|has| |#2| (-505 (-1142) |#2|)) (|has| |#1| (-356)))) (($ $ (-621 (-1142)) (-621 |#2|)) 208 (-1819 (|has| |#2| (-505 (-1142) |#2|)) (|has| |#1| (-356)))) (($ $ (-621 (-287 |#2|))) 207 (-1819 (|has| |#2| (-302 |#2|)) (|has| |#1| (-356)))) (($ $ (-287 |#2|)) 206 (-1819 (|has| |#2| (-302 |#2|)) (|has| |#1| (-356)))) (($ $ |#2| |#2|) 205 (-1819 (|has| |#2| (-302 |#2|)) (|has| |#1| (-356)))) (($ $ (-621 |#2|) (-621 |#2|)) 204 (-1819 (|has| |#2| (-302 |#2|)) (|has| |#1| (-356))))) (-1335 (((-747) $) 152 (|has| |#1| (-356)))) (-3339 ((|#1| $ (-549)) 102) (($ $ $) 79 (|has| (-549) (-1078))) (($ $ |#2|) 203 (-1819 (|has| |#2| (-279 |#2| |#2|)) (|has| |#1| (-356))))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 153 (|has| |#1| (-356)))) (-3455 (($ $ (-1 |#2| |#2|)) 214 (|has| |#1| (-356))) (($ $ (-1 |#2| |#2|) (-747)) 213 (|has| |#1| (-356))) (($ $ (-747)) 82 (-1536 (-1819 (|has| |#2| (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $) 80 (-1536 (-1819 (|has| |#2| (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1142)) (-621 (-747))) 87 (-1536 (-1819 (|has| |#2| (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-549) |#1|)))))) (($ $ (-1142) (-747)) 86 (-1536 (-1819 (|has| |#2| (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-549) |#1|)))))) (($ $ (-621 (-1142))) 85 (-1536 (-1819 (|has| |#2| (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-549) |#1|)))))) (($ $ (-1142)) 84 (-1536 (-1819 (|has| |#2| (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))))) (-4095 (($ $) 227 (|has| |#1| (-356)))) (-1404 ((|#2| $) 225 (|has| |#1| (-356)))) (-3977 (((-549) $) 62)) (-1696 (($ $) 130 (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) 119 (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) 129 (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) 120 (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) 128 (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) 121 (|has| |#1| (-38 (-400 (-549)))))) (-2843 (((-219) $) 243 (-1819 (|has| |#2| (-993)) (|has| |#1| (-356)))) (((-372) $) 242 (-1819 (|has| |#2| (-993)) (|has| |#1| (-356)))) (((-525) $) 241 (-1819 (|has| |#2| (-594 (-525))) (|has| |#1| (-356)))) (((-863 (-372)) $) 220 (-1819 (|has| |#2| (-594 (-863 (-372)))) (|has| |#1| (-356)))) (((-863 (-549)) $) 219 (-1819 (|has| |#2| (-594 (-863 (-549)))) (|has| |#1| (-356))))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) 233 (-1819 (-1819 (|has| $ (-143)) (|has| |#2| (-880))) (|has| |#1| (-356))))) (-3958 (($ $) 70)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 45 (|has| |#1| (-170))) (($ |#2|) 268) (($ (-1142)) 238 (-1819 (|has| |#2| (-1009 (-1142))) (|has| |#1| (-356)))) (($ (-400 (-549))) 55 (|has| |#1| (-38 (-400 (-549))))) (($ $) 47 (|has| |#1| (-541)))) (-4068 ((|#1| $ (-549)) 57)) (-2343 (((-3 $ "failed") $) 46 (-1536 (-1819 (-1536 (|has| |#2| (-143)) (-1819 (|has| $ (-143)) (|has| |#2| (-880)))) (|has| |#1| (-356))) (|has| |#1| (-143))))) (-2371 (((-747)) 28)) (-2596 ((|#1| $) 100)) (-3497 ((|#2| $) 231 (-1819 (|has| |#2| (-534)) (|has| |#1| (-356))))) (-1731 (($ $) 139 (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) 127 (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) 51 (|has| |#1| (-541)))) (-1708 (($ $) 138 (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) 126 (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) 137 (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) 125 (|has| |#1| (-38 (-400 (-549)))))) (-2659 ((|#1| $ (-549)) 94 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-549)))) (|has| |#1| (-15 -3845 (|#1| (-1142))))))) (-1932 (($ $) 136 (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) 124 (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) 135 (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) 123 (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) 134 (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) 122 (|has| |#1| (-38 (-400 (-549)))))) (-2199 (($ $) 247 (-1819 (|has| |#2| (-796)) (|has| |#1| (-356))))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ (-1 |#2| |#2|)) 212 (|has| |#1| (-356))) (($ $ (-1 |#2| |#2|) (-747)) 211 (|has| |#1| (-356))) (($ $ (-747)) 83 (-1536 (-1819 (|has| |#2| (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $) 81 (-1536 (-1819 (|has| |#2| (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1142)) (-621 (-747))) 91 (-1536 (-1819 (|has| |#2| (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-549) |#1|)))))) (($ $ (-1142) (-747)) 90 (-1536 (-1819 (|has| |#2| (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-549) |#1|)))))) (($ $ (-621 (-1142))) 89 (-1536 (-1819 (|has| |#2| (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-549) |#1|)))))) (($ $ (-1142)) 88 (-1536 (-1819 (|has| |#2| (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))))) (-2447 (((-112) $ $) 251 (-1819 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2423 (((-112) $ $) 252 (-1819 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 250 (-1819 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2409 (((-112) $ $) 253 (-1819 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2511 (($ $ |#1|) 56 (|has| |#1| (-356))) (($ $ $) 165 (|has| |#1| (-356))) (($ |#2| |#2|) 223 (|has| |#1| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 164 (|has| |#1| (-356))) (($ $ $) 142 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 113 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ $ |#2|) 202 (|has| |#1| (-356))) (($ |#2| $) 201 (|has| |#1| (-356))) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
+(((-1187 |#1| |#2|) (-138) (-1018) (-1216 |t#1|)) (T -1187))
+((-3977 (*1 *2 *1) (-12 (-4 *1 (-1187 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1216 *3)) (-5 *2 (-549)))) (-3845 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-4 *1 (-1187 *3 *2)) (-4 *2 (-1216 *3)))) (-2352 (*1 *1 *2 *3) (-12 (-5 *2 (-549)) (-4 *4 (-1018)) (-4 *1 (-1187 *4 *3)) (-4 *3 (-1216 *4)))) (-1398 (*1 *2 *1) (-12 (-4 *1 (-1187 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1216 *3)))) (-1904 (*1 *1 *1) (-12 (-4 *1 (-1187 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1216 *2)))) (-1904 (*1 *1 *2 *1) (-12 (-5 *2 (-549)) (-4 *1 (-1187 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1216 *3)))) (-2337 (*1 *2 *1) (-12 (-4 *1 (-1187 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1216 *3)))) (-2294 (*1 *2 *1) (|partial| -12 (-4 *1 (-1187 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1216 *3)))))
+(-13 (-1185 |t#1|) (-1009 |t#2|) (-10 -8 (-15 -2352 ($ (-549) |t#2|)) (-15 -3977 ((-549) $)) (-15 -1398 (|t#2| $)) (-15 -1904 ($ $)) (-15 -1904 ($ (-549) $)) (-15 -3845 ($ |t#2|)) (-15 -2337 (|t#2| $)) (-15 -2294 ((-3 |t#2| "failed") $)) (IF (|has| |t#1| (-356)) (-6 (-963 |t#2|)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-549)) . T) ((-25) . T) ((-38 #1=(-400 (-549))) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-38 |#1|) |has| |#1| (-170)) ((-38 |#2|) |has| |#1| (-356)) ((-38 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-35) |has| |#1| (-38 (-400 (-549)))) ((-94) |has| |#1| (-38 (-400 (-549)))) ((-101) . T) ((-111 #1# #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-111 |#1| |#1|) . T) ((-111 |#2| |#2|) |has| |#1| (-356)) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-130) . T) ((-143) -1536 (-12 (|has| |#1| (-356)) (|has| |#2| (-143))) (|has| |#1| (-143))) ((-145) -1536 (-12 (|has| |#1| (-356)) (|has| |#2| (-145))) (|has| |#1| (-145))) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-594 (-219)) -12 (|has| |#1| (-356)) (|has| |#2| (-993))) ((-594 (-372)) -12 (|has| |#1| (-356)) (|has| |#2| (-993))) ((-594 (-525)) -12 (|has| |#1| (-356)) (|has| |#2| (-594 (-525)))) ((-594 (-863 (-372))) -12 (|has| |#1| (-356)) (|has| |#2| (-594 (-863 (-372))))) ((-594 (-863 (-549))) -12 (|has| |#1| (-356)) (|has| |#2| (-594 (-863 (-549))))) ((-225 |#2|) |has| |#1| (-356)) ((-227) -1536 (-12 (|has| |#1| (-356)) (|has| |#2| (-227))) (|has| |#1| (-15 * (|#1| (-549) |#1|)))) ((-237) |has| |#1| (-356)) ((-277) |has| |#1| (-38 (-400 (-549)))) ((-279 |#2| $) -12 (|has| |#1| (-356)) (|has| |#2| (-279 |#2| |#2|))) ((-279 $ $) |has| (-549) (-1078)) ((-283) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-300) |has| |#1| (-356)) ((-302 |#2|) -12 (|has| |#1| (-356)) (|has| |#2| (-302 |#2|))) ((-356) |has| |#1| (-356)) ((-331 |#2|) |has| |#1| (-356)) ((-370 |#2|) |has| |#1| (-356)) ((-393 |#2|) |has| |#1| (-356)) ((-444) |has| |#1| (-356)) ((-484) |has| |#1| (-38 (-400 (-549)))) ((-505 (-1142) |#2|) -12 (|has| |#1| (-356)) (|has| |#2| (-505 (-1142) |#2|))) ((-505 |#2| |#2|) -12 (|has| |#1| (-356)) (|has| |#2| (-302 |#2|))) ((-541) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-624 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-624 |#1|) . T) ((-624 |#2|) |has| |#1| (-356)) ((-624 $) . T) ((-617 (-549)) -12 (|has| |#1| (-356)) (|has| |#2| (-617 (-549)))) ((-617 |#2|) |has| |#1| (-356)) ((-694 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-694 |#1|) |has| |#1| (-170)) ((-694 |#2|) |has| |#1| (-356)) ((-694 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-703) . T) ((-767) -12 (|has| |#1| (-356)) (|has| |#2| (-796))) ((-768) -12 (|has| |#1| (-356)) (|has| |#2| (-796))) ((-770) -12 (|has| |#1| (-356)) (|has| |#2| (-796))) ((-771) -12 (|has| |#1| (-356)) (|has| |#2| (-796))) ((-796) -12 (|has| |#1| (-356)) (|has| |#2| (-796))) ((-821) -12 (|has| |#1| (-356)) (|has| |#2| (-796))) ((-823) -1536 (-12 (|has| |#1| (-356)) (|has| |#2| (-823))) (-12 (|has| |#1| (-356)) (|has| |#2| (-796)))) ((-871 (-1142)) -1536 (-12 (|has| |#1| (-356)) (|has| |#2| (-871 (-1142)))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142))))) ((-857 (-372)) -12 (|has| |#1| (-356)) (|has| |#2| (-857 (-372)))) ((-857 (-549)) -12 (|has| |#1| (-356)) (|has| |#2| (-857 (-549)))) ((-855 |#2|) |has| |#1| (-356)) ((-880) -12 (|has| |#1| (-356)) (|has| |#2| (-880))) ((-944 |#1| #0# (-1048)) . T) ((-891) |has| |#1| (-356)) ((-963 |#2|) |has| |#1| (-356)) ((-973) |has| |#1| (-38 (-400 (-549)))) ((-993) -12 (|has| |#1| (-356)) (|has| |#2| (-993))) ((-1009 (-400 (-549))) -12 (|has| |#1| (-356)) (|has| |#2| (-1009 (-549)))) ((-1009 (-549)) -12 (|has| |#1| (-356)) (|has| |#2| (-1009 (-549)))) ((-1009 (-1142)) -12 (|has| |#1| (-356)) (|has| |#2| (-1009 (-1142)))) ((-1009 |#2|) . T) ((-1024 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-1024 |#1|) . T) ((-1024 |#2|) |has| |#1| (-356)) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1117) -12 (|has| |#1| (-356)) (|has| |#2| (-1117))) ((-1164) |has| |#1| (-38 (-400 (-549)))) ((-1167) |has| |#1| (-38 (-400 (-549)))) ((-1179) |has| |#1| (-356)) ((-1183) |has| |#1| (-356)) ((-1185 |#1|) . T) ((-1203 |#1| #0#) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 70)) (-3833 ((|#2| $) NIL (-12 (|has| |#2| (-300)) (|has| |#1| (-356))))) (-2270 (((-621 (-1048)) $) NIL)) (-3009 (((-1142) $) 88)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-3691 (($ $ (-549)) 97) (($ $ (-549) (-549)) 99)) (-2585 (((-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $) 47)) (-1398 ((|#2| $) 11)) (-2294 (((-3 |#2| "failed") $) 30)) (-2337 ((|#2| $) 31)) (-1662 (($ $) 192 (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) 168 (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (-12 (|has| |#2| (-880)) (|has| |#1| (-356))))) (-3239 (($ $) NIL (|has| |#1| (-356)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2132 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (-12 (|has| |#2| (-880)) (|has| |#1| (-356))))) (-2680 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1638 (($ $) 188 (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) 164 (|has| |#1| (-38 (-400 (-549)))))) (-1741 (((-549) $) NIL (-12 (|has| |#2| (-796)) (|has| |#1| (-356))))) (-2824 (($ (-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|)))) 57)) (-1684 (($ $) 196 (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) 172 (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#2| "failed") $) 144) (((-3 (-549) "failed") $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#1| (-356)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#1| (-356)))) (((-3 (-1142) "failed") $) NIL (-12 (|has| |#2| (-1009 (-1142))) (|has| |#1| (-356))))) (-2657 ((|#2| $) 143) (((-549) $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#1| (-356)))) (((-400 (-549)) $) NIL (-12 (|has| |#2| (-1009 (-549))) (|has| |#1| (-356)))) (((-1142) $) NIL (-12 (|has| |#2| (-1009 (-1142))) (|has| |#1| (-356))))) (-1904 (($ $) 61) (($ (-549) $) 24)) (-2091 (($ $ $) NIL (|has| |#1| (-356)))) (-2068 (($ $) NIL)) (-3446 (((-665 |#2|) (-665 $)) NIL (|has| |#1| (-356))) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) NIL (|has| |#1| (-356))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (-12 (|has| |#2| (-617 (-549))) (|has| |#1| (-356)))) (((-665 (-549)) (-665 $)) NIL (-12 (|has| |#2| (-617 (-549))) (|has| |#1| (-356))))) (-2612 (((-3 $ "failed") $) 77)) (-1729 (((-400 (-923 |#1|)) $ (-549)) 112 (|has| |#1| (-541))) (((-400 (-923 |#1|)) $ (-549) (-549)) 114 (|has| |#1| (-541)))) (-3237 (($) NIL (-12 (|has| |#2| (-534)) (|has| |#1| (-356))))) (-2065 (($ $ $) NIL (|has| |#1| (-356)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1464 (((-112) $) NIL (|has| |#1| (-356)))) (-2357 (((-112) $) NIL (-12 (|has| |#2| (-796)) (|has| |#1| (-356))))) (-1410 (((-112) $) 64)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| |#2| (-857 (-372))) (|has| |#1| (-356)))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| |#2| (-857 (-549))) (|has| |#1| (-356))))) (-2729 (((-549) $) 93) (((-549) $ (-549)) 95)) (-2297 (((-112) $) NIL)) (-2096 (($ $) NIL (|has| |#1| (-356)))) (-1392 ((|#2| $) 151 (|has| |#1| (-356)))) (-3621 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2964 (((-3 $ "failed") $) NIL (-12 (|has| |#2| (-1117)) (|has| |#1| (-356))))) (-1992 (((-112) $) NIL (-12 (|has| |#2| (-796)) (|has| |#1| (-356))))) (-2625 (($ $ (-892)) 136)) (-1837 (($ (-1 |#1| (-549)) $) 132)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-549)) 19) (($ $ (-1048) (-549)) NIL) (($ $ (-621 (-1048)) (-621 (-549))) NIL)) (-2861 (($ $ $) NIL (-12 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-3574 (($ $ $) NIL (-12 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2795 (($ (-1 |#1| |#1|) $) 129) (($ (-1 |#2| |#2|) $) NIL (|has| |#1| (-356)))) (-3631 (($ $) 162 (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2352 (($ (-549) |#2|) 10)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 145 (|has| |#1| (-356)))) (-3405 (($ $) 214 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1142)) 219 (-1536 (-12 (|has| |#1| (-15 -3405 (|#1| |#1| (-1142)))) (|has| |#1| (-15 -2270 ((-621 (-1142)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1164)))))) (-3059 (($) NIL (-12 (|has| |#2| (-1117)) (|has| |#1| (-356))) CONST)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-356)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-1512 (($ $) NIL (-12 (|has| |#2| (-300)) (|has| |#1| (-356))))) (-1349 ((|#2| $) NIL (-12 (|has| |#2| (-534)) (|has| |#1| (-356))))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (-12 (|has| |#2| (-880)) (|has| |#1| (-356))))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (-12 (|has| |#2| (-880)) (|has| |#1| (-356))))) (-2119 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-3796 (($ $ (-549)) 126)) (-2040 (((-3 $ "failed") $ $) 116 (|has| |#1| (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2717 (($ $) 160 (|has| |#1| (-38 (-400 (-549)))))) (-2684 (((-1122 |#1|) $ |#1|) 85 (|has| |#1| (-15 ** (|#1| |#1| (-549))))) (($ $ (-1142) |#2|) NIL (-12 (|has| |#2| (-505 (-1142) |#2|)) (|has| |#1| (-356)))) (($ $ (-621 (-1142)) (-621 |#2|)) NIL (-12 (|has| |#2| (-505 (-1142) |#2|)) (|has| |#1| (-356)))) (($ $ (-621 (-287 |#2|))) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#1| (-356)))) (($ $ (-287 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#1| (-356)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#1| (-356)))) (($ $ (-621 |#2|) (-621 |#2|)) NIL (-12 (|has| |#2| (-302 |#2|)) (|has| |#1| (-356))))) (-1335 (((-747) $) NIL (|has| |#1| (-356)))) (-3339 ((|#1| $ (-549)) 91) (($ $ $) 79 (|has| (-549) (-1078))) (($ $ |#2|) NIL (-12 (|has| |#2| (-279 |#2| |#2|)) (|has| |#1| (-356))))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-356)))) (-3455 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-356))) (($ $ (-1 |#2| |#2|) (-747)) NIL (|has| |#1| (-356))) (($ $ (-747)) NIL (-1536 (-12 (|has| |#2| (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $) 137 (-1536 (-12 (|has| |#2| (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-1536 (-12 (|has| |#2| (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-1142) (-747)) NIL (-1536 (-12 (|has| |#2| (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-621 (-1142))) NIL (-1536 (-12 (|has| |#2| (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-1142)) 140 (-1536 (-12 (|has| |#2| (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142))))))) (-4095 (($ $) NIL (|has| |#1| (-356)))) (-1404 ((|#2| $) 152 (|has| |#1| (-356)))) (-3977 (((-549) $) 12)) (-1696 (($ $) 198 (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) 174 (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) 194 (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) 170 (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) 190 (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) 166 (|has| |#1| (-38 (-400 (-549)))))) (-2843 (((-219) $) NIL (-12 (|has| |#2| (-993)) (|has| |#1| (-356)))) (((-372) $) NIL (-12 (|has| |#2| (-993)) (|has| |#1| (-356)))) (((-525) $) NIL (-12 (|has| |#2| (-594 (-525))) (|has| |#1| (-356)))) (((-863 (-372)) $) NIL (-12 (|has| |#2| (-594 (-863 (-372)))) (|has| |#1| (-356)))) (((-863 (-549)) $) NIL (-12 (|has| |#2| (-594 (-863 (-549)))) (|has| |#1| (-356))))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#2| (-880)) (|has| |#1| (-356))))) (-3958 (($ $) 124)) (-3845 (((-834) $) 245) (($ (-549)) 23) (($ |#1|) 21 (|has| |#1| (-170))) (($ |#2|) 20) (($ (-1142)) NIL (-12 (|has| |#2| (-1009 (-1142))) (|has| |#1| (-356)))) (($ (-400 (-549))) 155 (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541)))) (-4068 ((|#1| $ (-549)) 74)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#2| (-880)) (|has| |#1| (-356))) (-12 (|has| |#2| (-143)) (|has| |#1| (-356))) (|has| |#1| (-143))))) (-2371 (((-747)) 142)) (-2596 ((|#1| $) 90)) (-3497 ((|#2| $) NIL (-12 (|has| |#2| (-534)) (|has| |#1| (-356))))) (-1731 (($ $) 204 (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) 180 (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1708 (($ $) 200 (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) 176 (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) 208 (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) 184 (|has| |#1| (-38 (-400 (-549)))))) (-2659 ((|#1| $ (-549)) 122 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-549)))) (|has| |#1| (-15 -3845 (|#1| (-1142))))))) (-1932 (($ $) 210 (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) 186 (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) 206 (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) 182 (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) 202 (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) 178 (|has| |#1| (-38 (-400 (-549)))))) (-2199 (($ $) NIL (-12 (|has| |#2| (-796)) (|has| |#1| (-356))))) (-3274 (($) 13 T CONST)) (-3286 (($) 17 T CONST)) (-1699 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-356))) (($ $ (-1 |#2| |#2|) (-747)) NIL (|has| |#1| (-356))) (($ $ (-747)) NIL (-1536 (-12 (|has| |#2| (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $) NIL (-1536 (-12 (|has| |#2| (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-1536 (-12 (|has| |#2| (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-1142) (-747)) NIL (-1536 (-12 (|has| |#2| (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-621 (-1142))) NIL (-1536 (-12 (|has| |#2| (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-1142)) NIL (-1536 (-12 (|has| |#2| (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142))))))) (-2447 (((-112) $ $) NIL (-12 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2423 (((-112) $ $) NIL (-12 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2387 (((-112) $ $) 63)) (-2436 (((-112) $ $) NIL (-12 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2409 (((-112) $ $) NIL (-12 (|has| |#2| (-823)) (|has| |#1| (-356))))) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) 149 (|has| |#1| (-356))) (($ |#2| |#2|) 150 (|has| |#1| (-356)))) (-2498 (($ $) 213) (($ $ $) 68)) (-2484 (($ $ $) 66)) (** (($ $ (-892)) NIL) (($ $ (-747)) 73) (($ $ (-549)) 146 (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 158 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 139) (($ $ |#2|) 148 (|has| |#1| (-356))) (($ |#2| $) 147 (|has| |#1| (-356))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
+(((-1188 |#1| |#2|) (-1187 |#1| |#2|) (-1018) (-1216 |#1|)) (T -1188))
+NIL
+(-1187 |#1| |#2|)
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3833 (((-1217 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-300)) (|has| |#1| (-356))))) (-2270 (((-621 (-1048)) $) NIL)) (-3009 (((-1142) $) 10)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1217 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-3044 (($ $) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1217 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-2774 (((-112) $) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1217 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-3691 (($ $ (-549)) NIL) (($ $ (-549) (-549)) NIL)) (-2585 (((-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|))) $) NIL)) (-1398 (((-1217 |#1| |#2| |#3|) $) NIL)) (-2294 (((-3 (-1217 |#1| |#2| |#3|) "failed") $) NIL)) (-2337 (((-1217 |#1| |#2| |#3|) $) NIL)) (-1662 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-3239 (($ $) NIL (|has| |#1| (-356)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2132 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-2680 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1638 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1741 (((-549) $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))))) (-2824 (($ (-1122 (-2 (|:| |k| (-549)) (|:| |c| |#1|)))) NIL)) (-1684 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-1217 |#1| |#2| |#3|) "failed") $) NIL) (((-3 (-1142) "failed") $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-1009 (-1142))) (|has| |#1| (-356)))) (((-3 (-400 (-549)) "failed") $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356)))) (((-3 (-549) "failed") $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356))))) (-2657 (((-1217 |#1| |#2| |#3|) $) NIL) (((-1142) $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-1009 (-1142))) (|has| |#1| (-356)))) (((-400 (-549)) $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356)))) (((-549) $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356))))) (-1904 (($ $) NIL) (($ (-549) $) NIL)) (-2091 (($ $ $) NIL (|has| |#1| (-356)))) (-2068 (($ $) NIL)) (-3446 (((-665 (-1217 |#1| |#2| |#3|)) (-665 $)) NIL (|has| |#1| (-356))) (((-2 (|:| -3697 (-665 (-1217 |#1| |#2| |#3|))) (|:| |vec| (-1225 (-1217 |#1| |#2| |#3|)))) (-665 $) (-1225 $)) NIL (|has| |#1| (-356))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-617 (-549))) (|has| |#1| (-356)))) (((-665 (-549)) (-665 $)) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-617 (-549))) (|has| |#1| (-356))))) (-2612 (((-3 $ "failed") $) NIL)) (-1729 (((-400 (-923 |#1|)) $ (-549)) NIL (|has| |#1| (-541))) (((-400 (-923 |#1|)) $ (-549) (-549)) NIL (|has| |#1| (-541)))) (-3237 (($) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-534)) (|has| |#1| (-356))))) (-2065 (($ $ $) NIL (|has| |#1| (-356)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1464 (((-112) $) NIL (|has| |#1| (-356)))) (-2357 (((-112) $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))))) (-1410 (((-112) $) NIL)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3849 (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-857 (-549))) (|has| |#1| (-356)))) (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-857 (-372))) (|has| |#1| (-356))))) (-2729 (((-549) $) NIL) (((-549) $ (-549)) NIL)) (-2297 (((-112) $) NIL)) (-2096 (($ $) NIL (|has| |#1| (-356)))) (-1392 (((-1217 |#1| |#2| |#3|) $) NIL (|has| |#1| (-356)))) (-3621 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2964 (((-3 $ "failed") $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-1117)) (|has| |#1| (-356))))) (-1992 (((-112) $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))))) (-2625 (($ $ (-892)) NIL)) (-1837 (($ (-1 |#1| (-549)) $) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-549)) 17) (($ $ (-1048) (-549)) NIL) (($ $ (-621 (-1048)) (-621 (-549))) NIL)) (-2861 (($ $ $) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1217 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-3574 (($ $ $) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1217 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1217 |#1| |#2| |#3|) (-1217 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-356)))) (-3631 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2352 (($ (-549) (-1217 |#1| |#2| |#3|)) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL (|has| |#1| (-356)))) (-3405 (($ $) 25 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1142)) NIL (-1536 (-12 (|has| |#1| (-15 -3405 (|#1| |#1| (-1142)))) (|has| |#1| (-15 -2270 ((-621 (-1142)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1164))))) (($ $ (-1221 |#2|)) 26 (|has| |#1| (-38 (-400 (-549)))))) (-3059 (($) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-1117)) (|has| |#1| (-356))) CONST)) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-356)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-1512 (($ $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-300)) (|has| |#1| (-356))))) (-1349 (((-1217 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-534)) (|has| |#1| (-356))))) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-2119 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-3796 (($ $ (-549)) NIL)) (-2040 (((-3 $ "failed") $ $) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1217 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2717 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2684 (((-1122 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-549))))) (($ $ (-1142) (-1217 |#1| |#2| |#3|)) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-505 (-1142) (-1217 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-621 (-1142)) (-621 (-1217 |#1| |#2| |#3|))) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-505 (-1142) (-1217 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-621 (-287 (-1217 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-302 (-1217 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-287 (-1217 |#1| |#2| |#3|))) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-302 (-1217 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-1217 |#1| |#2| |#3|) (-1217 |#1| |#2| |#3|)) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-302 (-1217 |#1| |#2| |#3|))) (|has| |#1| (-356)))) (($ $ (-621 (-1217 |#1| |#2| |#3|)) (-621 (-1217 |#1| |#2| |#3|))) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-302 (-1217 |#1| |#2| |#3|))) (|has| |#1| (-356))))) (-1335 (((-747) $) NIL (|has| |#1| (-356)))) (-3339 ((|#1| $ (-549)) NIL) (($ $ $) NIL (|has| (-549) (-1078))) (($ $ (-1217 |#1| |#2| |#3|)) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-279 (-1217 |#1| |#2| |#3|) (-1217 |#1| |#2| |#3|))) (|has| |#1| (-356))))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-356)))) (-3455 (($ $ (-1 (-1217 |#1| |#2| |#3|) (-1217 |#1| |#2| |#3|))) NIL (|has| |#1| (-356))) (($ $ (-1 (-1217 |#1| |#2| |#3|) (-1217 |#1| |#2| |#3|)) (-747)) NIL (|has| |#1| (-356))) (($ $ (-1221 |#2|)) 24) (($ $ (-747)) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $) 23 (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-1142) (-747)) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-621 (-1142))) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-1142)) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142))))))) (-4095 (($ $) NIL (|has| |#1| (-356)))) (-1404 (((-1217 |#1| |#2| |#3|) $) NIL (|has| |#1| (-356)))) (-3977 (((-549) $) NIL)) (-1696 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2843 (((-525) $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-594 (-525))) (|has| |#1| (-356)))) (((-372) $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-993)) (|has| |#1| (-356)))) (((-219) $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-993)) (|has| |#1| (-356)))) (((-863 (-372)) $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-594 (-863 (-372)))) (|has| |#1| (-356)))) (((-863 (-549)) $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-594 (-863 (-549)))) (|has| |#1| (-356))))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| (-1217 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))))) (-3958 (($ $) NIL)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL (|has| |#1| (-170))) (($ (-1217 |#1| |#2| |#3|)) NIL) (($ (-1221 |#2|)) 22) (($ (-1142)) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-1009 (-1142))) (|has| |#1| (-356)))) (($ $) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1217 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541)))) (($ (-400 (-549))) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-1009 (-549))) (|has| |#1| (-356))) (|has| |#1| (-38 (-400 (-549))))))) (-4068 ((|#1| $ (-549)) NIL)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| (-1217 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (-12 (|has| (-1217 |#1| |#2| |#3|) (-143)) (|has| |#1| (-356))) (|has| |#1| (-143))))) (-2371 (((-747)) NIL)) (-2596 ((|#1| $) 11)) (-3497 (((-1217 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-534)) (|has| |#1| (-356))))) (-1731 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1217 |#1| |#2| |#3|) (-880)) (|has| |#1| (-356))) (|has| |#1| (-541))))) (-1708 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2659 ((|#1| $ (-549)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-549)))) (|has| |#1| (-15 -3845 (|#1| (-1142))))))) (-1932 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2199 (($ $) NIL (-12 (|has| (-1217 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))))) (-3274 (($) 19 T CONST)) (-3286 (($) 15 T CONST)) (-1699 (($ $ (-1 (-1217 |#1| |#2| |#3|) (-1217 |#1| |#2| |#3|))) NIL (|has| |#1| (-356))) (($ $ (-1 (-1217 |#1| |#2| |#3|) (-1217 |#1| |#2| |#3|)) (-747)) NIL (|has| |#1| (-356))) (($ $ (-747)) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-227)) (|has| |#1| (-356))) (|has| |#1| (-15 * (|#1| (-549) |#1|))))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-1142) (-747)) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-621 (-1142))) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142)))))) (($ $ (-1142)) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-871 (-1142))) (|has| |#1| (-356))) (-12 (|has| |#1| (-15 * (|#1| (-549) |#1|))) (|has| |#1| (-871 (-1142))))))) (-2447 (((-112) $ $) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1217 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2423 (((-112) $ $) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1217 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1217 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2409 (((-112) $ $) NIL (-1536 (-12 (|has| (-1217 |#1| |#2| |#3|) (-796)) (|has| |#1| (-356))) (-12 (|has| (-1217 |#1| |#2| |#3|) (-823)) (|has| |#1| (-356)))))) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356))) (($ (-1217 |#1| |#2| |#3|) (-1217 |#1| |#2| |#3|)) NIL (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) 20)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1217 |#1| |#2| |#3|)) NIL (|has| |#1| (-356))) (($ (-1217 |#1| |#2| |#3|) $) NIL (|has| |#1| (-356))) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
+(((-1189 |#1| |#2| |#3|) (-13 (-1187 |#1| (-1217 |#1| |#2| |#3|)) (-10 -8 (-15 -3845 ($ (-1221 |#2|))) (-15 -3455 ($ $ (-1221 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3405 ($ $ (-1221 |#2|))) |%noBranch|))) (-1018) (-1142) |#1|) (T -1189))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1189 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3455 (*1 *1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1189 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3405 (*1 *1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1189 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3))))
+(-13 (-1187 |#1| (-1217 |#1| |#2| |#3|)) (-10 -8 (-15 -3845 ($ (-1221 |#2|))) (-15 -3455 ($ $ (-1221 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3405 ($ $ (-1221 |#2|))) |%noBranch|)))
+((-3435 (((-2 (|:| |contp| (-549)) (|:| -3390 (-621 (-2 (|:| |irr| |#1|) (|:| -2129 (-549)))))) |#1| (-112)) 12)) (-3777 (((-411 |#1|) |#1|) 22)) (-2119 (((-411 |#1|) |#1|) 21)))
+(((-1190 |#1|) (-10 -7 (-15 -2119 ((-411 |#1|) |#1|)) (-15 -3777 ((-411 |#1|) |#1|)) (-15 -3435 ((-2 (|:| |contp| (-549)) (|:| -3390 (-621 (-2 (|:| |irr| |#1|) (|:| -2129 (-549)))))) |#1| (-112)))) (-1201 (-549))) (T -1190))
+((-3435 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-549)) (|:| -3390 (-621 (-2 (|:| |irr| *3) (|:| -2129 (-549))))))) (-5 *1 (-1190 *3)) (-4 *3 (-1201 (-549))))) (-3777 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-1190 *3)) (-4 *3 (-1201 (-549))))) (-2119 (*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-1190 *3)) (-4 *3 (-1201 (-549))))))
+(-10 -7 (-15 -2119 ((-411 |#1|) |#1|)) (-15 -3777 ((-411 |#1|) |#1|)) (-15 -3435 ((-2 (|:| |contp| (-549)) (|:| -3390 (-621 (-2 (|:| |irr| |#1|) (|:| -2129 (-549)))))) |#1| (-112))))
+((-2795 (((-1122 |#2|) (-1 |#2| |#1|) (-1192 |#1|)) 23 (|has| |#1| (-821))) (((-1192 |#2|) (-1 |#2| |#1|) (-1192 |#1|)) 17)))
+(((-1191 |#1| |#2|) (-10 -7 (-15 -2795 ((-1192 |#2|) (-1 |#2| |#1|) (-1192 |#1|))) (IF (|has| |#1| (-821)) (-15 -2795 ((-1122 |#2|) (-1 |#2| |#1|) (-1192 |#1|))) |%noBranch|)) (-1179) (-1179)) (T -1191))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1192 *5)) (-4 *5 (-821)) (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-1122 *6)) (-5 *1 (-1191 *5 *6)))) (-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1192 *5)) (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-1192 *6)) (-5 *1 (-1191 *5 *6)))))
+(-10 -7 (-15 -2795 ((-1192 |#2|) (-1 |#2| |#1|) (-1192 |#1|))) (IF (|has| |#1| (-821)) (-15 -2795 ((-1122 |#2|) (-1 |#2| |#1|) (-1192 |#1|))) |%noBranch|))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3128 (($ |#1| |#1|) 9) (($ |#1|) 8)) (-2795 (((-1122 |#1|) (-1 |#1| |#1|) $) 41 (|has| |#1| (-821)))) (-1332 ((|#1| $) 14)) (-1266 ((|#1| $) 10)) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-1275 (((-549) $) 18)) (-3999 ((|#1| $) 17)) (-1288 ((|#1| $) 11)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-4225 (((-112) $) 16)) (-1448 (((-1122 |#1|) $) 38 (|has| |#1| (-821))) (((-1122 |#1|) (-621 $)) 37 (|has| |#1| (-821)))) (-2843 (($ |#1|) 25)) (-3845 (($ (-1060 |#1|)) 24) (((-834) $) 34 (|has| |#1| (-1066)))) (-1856 (($ |#1| |#1|) 20) (($ |#1|) 19)) (-2121 (($ $ (-549)) 13)) (-2387 (((-112) $ $) 27 (|has| |#1| (-1066)))))
+(((-1192 |#1|) (-13 (-1059 |#1|) (-10 -8 (-15 -1856 ($ |#1|)) (-15 -3128 ($ |#1|)) (-15 -3845 ($ (-1060 |#1|))) (-15 -4225 ((-112) $)) (IF (|has| |#1| (-1066)) (-6 (-1066)) |%noBranch|) (IF (|has| |#1| (-821)) (-6 (-1061 |#1| (-1122 |#1|))) |%noBranch|))) (-1179)) (T -1192))
+((-1856 (*1 *1 *2) (-12 (-5 *1 (-1192 *2)) (-4 *2 (-1179)))) (-3128 (*1 *1 *2) (-12 (-5 *1 (-1192 *2)) (-4 *2 (-1179)))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-1060 *3)) (-4 *3 (-1179)) (-5 *1 (-1192 *3)))) (-4225 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1192 *3)) (-4 *3 (-1179)))))
+(-13 (-1059 |#1|) (-10 -8 (-15 -1856 ($ |#1|)) (-15 -3128 ($ |#1|)) (-15 -3845 ($ (-1060 |#1|))) (-15 -4225 ((-112) $)) (IF (|has| |#1| (-1066)) (-6 (-1066)) |%noBranch|) (IF (|has| |#1| (-821)) (-6 (-1061 |#1| (-1122 |#1|))) |%noBranch|)))
+((-2795 (((-1198 |#3| |#4|) (-1 |#4| |#2|) (-1198 |#1| |#2|)) 15)))
+(((-1193 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2795 ((-1198 |#3| |#4|) (-1 |#4| |#2|) (-1198 |#1| |#2|)))) (-1142) (-1018) (-1142) (-1018)) (T -1193))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1198 *5 *6)) (-14 *5 (-1142)) (-4 *6 (-1018)) (-4 *8 (-1018)) (-5 *2 (-1198 *7 *8)) (-5 *1 (-1193 *5 *6 *7 *8)) (-14 *7 (-1142)))))
+(-10 -7 (-15 -2795 ((-1198 |#3| |#4|) (-1 |#4| |#2|) (-1198 |#1| |#2|))))
+((-1758 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 21)) (-3727 ((|#1| |#3|) 13)) (-2308 ((|#3| |#3|) 19)))
+(((-1194 |#1| |#2| |#3|) (-10 -7 (-15 -3727 (|#1| |#3|)) (-15 -2308 (|#3| |#3|)) (-15 -1758 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-541) (-963 |#1|) (-1201 |#2|)) (T -1194))
+((-1758 (*1 *2 *3) (-12 (-4 *4 (-541)) (-4 *5 (-963 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1194 *4 *5 *3)) (-4 *3 (-1201 *5)))) (-2308 (*1 *2 *2) (-12 (-4 *3 (-541)) (-4 *4 (-963 *3)) (-5 *1 (-1194 *3 *4 *2)) (-4 *2 (-1201 *4)))) (-3727 (*1 *2 *3) (-12 (-4 *4 (-963 *2)) (-4 *2 (-541)) (-5 *1 (-1194 *2 *4 *3)) (-4 *3 (-1201 *4)))))
+(-10 -7 (-15 -3727 (|#1| |#3|)) (-15 -2308 (|#3| |#3|)) (-15 -1758 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
+((-3222 (((-3 |#2| "failed") |#2| (-747) |#1|) 29)) (-2212 (((-3 |#2| "failed") |#2| (-747)) 30)) (-2747 (((-3 (-2 (|:| -3837 |#2|) (|:| -3847 |#2|)) "failed") |#2|) 43)) (-2636 (((-621 |#2|) |#2|) 45)) (-2990 (((-3 |#2| "failed") |#2| |#2|) 40)))
+(((-1195 |#1| |#2|) (-10 -7 (-15 -2212 ((-3 |#2| "failed") |#2| (-747))) (-15 -3222 ((-3 |#2| "failed") |#2| (-747) |#1|)) (-15 -2990 ((-3 |#2| "failed") |#2| |#2|)) (-15 -2747 ((-3 (-2 (|:| -3837 |#2|) (|:| -3847 |#2|)) "failed") |#2|)) (-15 -2636 ((-621 |#2|) |#2|))) (-13 (-541) (-145)) (-1201 |#1|)) (T -1195))
+((-2636 (*1 *2 *3) (-12 (-4 *4 (-13 (-541) (-145))) (-5 *2 (-621 *3)) (-5 *1 (-1195 *4 *3)) (-4 *3 (-1201 *4)))) (-2747 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-541) (-145))) (-5 *2 (-2 (|:| -3837 *3) (|:| -3847 *3))) (-5 *1 (-1195 *4 *3)) (-4 *3 (-1201 *4)))) (-2990 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-13 (-541) (-145))) (-5 *1 (-1195 *3 *2)) (-4 *2 (-1201 *3)))) (-3222 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-747)) (-4 *4 (-13 (-541) (-145))) (-5 *1 (-1195 *4 *2)) (-4 *2 (-1201 *4)))) (-2212 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-747)) (-4 *4 (-13 (-541) (-145))) (-5 *1 (-1195 *4 *2)) (-4 *2 (-1201 *4)))))
+(-10 -7 (-15 -2212 ((-3 |#2| "failed") |#2| (-747))) (-15 -3222 ((-3 |#2| "failed") |#2| (-747) |#1|)) (-15 -2990 ((-3 |#2| "failed") |#2| |#2|)) (-15 -2747 ((-3 (-2 (|:| -3837 |#2|) (|:| -3847 |#2|)) "failed") |#2|)) (-15 -2636 ((-621 |#2|) |#2|)))
+((-3834 (((-3 (-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) "failed") |#2| |#2|) 32)))
+(((-1196 |#1| |#2|) (-10 -7 (-15 -3834 ((-3 (-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) "failed") |#2| |#2|))) (-541) (-1201 |#1|)) (T -1196))
+((-3834 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-541)) (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3))) (-5 *1 (-1196 *4 *3)) (-4 *3 (-1201 *4)))))
+(-10 -7 (-15 -3834 ((-3 (-2 (|:| -2262 |#2|) (|:| -1809 |#2|)) "failed") |#2| |#2|)))
+((-4231 ((|#2| |#2| |#2|) 19)) (-2412 ((|#2| |#2| |#2|) 30)) (-1960 ((|#2| |#2| |#2| (-747) (-747)) 36)))
+(((-1197 |#1| |#2|) (-10 -7 (-15 -4231 (|#2| |#2| |#2|)) (-15 -2412 (|#2| |#2| |#2|)) (-15 -1960 (|#2| |#2| |#2| (-747) (-747)))) (-1018) (-1201 |#1|)) (T -1197))
+((-1960 (*1 *2 *2 *2 *3 *3) (-12 (-5 *3 (-747)) (-4 *4 (-1018)) (-5 *1 (-1197 *4 *2)) (-4 *2 (-1201 *4)))) (-2412 (*1 *2 *2 *2) (-12 (-4 *3 (-1018)) (-5 *1 (-1197 *3 *2)) (-4 *2 (-1201 *3)))) (-4231 (*1 *2 *2 *2) (-12 (-4 *3 (-1018)) (-5 *1 (-1197 *3 *2)) (-4 *2 (-1201 *3)))))
+(-10 -7 (-15 -4231 (|#2| |#2| |#2|)) (-15 -2412 (|#2| |#2| |#2|)) (-15 -1960 (|#2| |#2| |#2| (-747) (-747))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-1432 (((-1225 |#2|) $ (-747)) NIL)) (-2270 (((-621 (-1048)) $) NIL)) (-3842 (($ (-1138 |#2|)) NIL)) (-2082 (((-1138 $) $ (-1048)) NIL) (((-1138 |#2|) $) NIL)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#2| (-541)))) (-3044 (($ $) NIL (|has| |#2| (-541)))) (-2774 (((-112) $) NIL (|has| |#2| (-541)))) (-2216 (((-747) $) NIL) (((-747) $ (-621 (-1048))) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-2070 (($ $ $) NIL (|has| |#2| (-541)))) (-3630 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-3239 (($ $) NIL (|has| |#2| (-444)))) (-2620 (((-411 $) $) NIL (|has| |#2| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-2680 (((-112) $ $) NIL (|has| |#2| (-356)))) (-1665 (($ $ (-747)) NIL)) (-1586 (($ $ (-747)) NIL)) (-3921 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#2| (-444)))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#2| "failed") $) NIL) (((-3 (-400 (-549)) "failed") $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) NIL (|has| |#2| (-1009 (-549)))) (((-3 (-1048) "failed") $) NIL)) (-2657 ((|#2| $) NIL) (((-400 (-549)) $) NIL (|has| |#2| (-1009 (-400 (-549))))) (((-549) $) NIL (|has| |#2| (-1009 (-549)))) (((-1048) $) NIL)) (-4114 (($ $ $ (-1048)) NIL (|has| |#2| (-170))) ((|#2| $ $) NIL (|has| |#2| (-170)))) (-2091 (($ $ $) NIL (|has| |#2| (-356)))) (-2068 (($ $) NIL)) (-3446 (((-665 (-549)) (-665 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) NIL (|has| |#2| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#2|)) (|:| |vec| (-1225 |#2|))) (-665 $) (-1225 $)) NIL) (((-665 |#2|) (-665 $)) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-2065 (($ $ $) NIL (|has| |#2| (-356)))) (-1507 (($ $ $) NIL)) (-1563 (($ $ $) NIL (|has| |#2| (-541)))) (-2805 (((-2 (|:| -1569 |#2|) (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#2| (-541)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| |#2| (-356)))) (-3004 (($ $) NIL (|has| |#2| (-444))) (($ $ (-1048)) NIL (|has| |#2| (-444)))) (-2056 (((-621 $) $) NIL)) (-1464 (((-112) $) NIL (|has| |#2| (-880)))) (-4064 (($ $ |#2| (-747) $) NIL)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) NIL (-12 (|has| (-1048) (-857 (-372))) (|has| |#2| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) NIL (-12 (|has| (-1048) (-857 (-549))) (|has| |#2| (-857 (-549)))))) (-2729 (((-747) $ $) NIL (|has| |#2| (-541)))) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) NIL)) (-2964 (((-3 $ "failed") $) NIL (|has| |#2| (-1117)))) (-2259 (($ (-1138 |#2|) (-1048)) NIL) (($ (-1138 $) (-1048)) NIL)) (-2625 (($ $ (-747)) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#2| (-356)))) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) NIL)) (-2244 (($ |#2| (-747)) 17) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ (-1048)) NIL) (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL)) (-2391 (((-747) $) NIL) (((-747) $ (-1048)) NIL) (((-621 (-747)) $ (-621 (-1048))) NIL)) (-2861 (($ $ $) NIL (|has| |#2| (-823)))) (-3574 (($ $ $) NIL (|has| |#2| (-823)))) (-3224 (($ (-1 (-747) (-747)) $) NIL)) (-2795 (($ (-1 |#2| |#2|) $) NIL)) (-3440 (((-1138 |#2|) $) NIL)) (-2236 (((-3 (-1048) "failed") $) NIL)) (-2027 (($ $) NIL)) (-2042 ((|#2| $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-3441 (((-1124) $) NIL)) (-3297 (((-2 (|:| -2262 $) (|:| -1809 $)) $ (-747)) NIL)) (-4093 (((-3 (-621 $) "failed") $) NIL)) (-1503 (((-3 (-621 $) "failed") $) NIL)) (-1477 (((-3 (-2 (|:| |var| (-1048)) (|:| -1714 (-747))) "failed") $) NIL)) (-3405 (($ $) NIL (|has| |#2| (-38 (-400 (-549)))))) (-3059 (($) NIL (|has| |#2| (-1117)) CONST)) (-3988 (((-1086) $) NIL)) (-2001 (((-112) $) NIL)) (-2011 ((|#2| $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#2| (-444)))) (-3726 (($ (-621 $)) NIL (|has| |#2| (-444))) (($ $ $) NIL (|has| |#2| (-444)))) (-4097 (($ $ (-747) |#2| $) NIL)) (-2609 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) NIL (|has| |#2| (-880)))) (-2119 (((-411 $) $) NIL (|has| |#2| (-880)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#2| (-356)))) (-2040 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-541))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#2| (-356)))) (-2684 (($ $ (-621 (-287 $))) NIL) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-1048) |#2|) NIL) (($ $ (-621 (-1048)) (-621 |#2|)) NIL) (($ $ (-1048) $) NIL) (($ $ (-621 (-1048)) (-621 $)) NIL)) (-1335 (((-747) $) NIL (|has| |#2| (-356)))) (-3339 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-400 $) (-400 $) (-400 $)) NIL (|has| |#2| (-541))) ((|#2| (-400 $) |#2|) NIL (|has| |#2| (-356))) (((-400 $) $ (-400 $)) NIL (|has| |#2| (-541)))) (-2432 (((-3 $ "failed") $ (-747)) NIL)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#2| (-356)))) (-2740 (($ $ (-1048)) NIL (|has| |#2| (-170))) ((|#2| $) NIL (|has| |#2| (-170)))) (-3455 (($ $ (-1048)) NIL) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) NIL) (($ $ (-1142)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) $) NIL)) (-3977 (((-747) $) NIL) (((-747) $ (-1048)) NIL) (((-621 (-747)) $ (-621 (-1048))) NIL)) (-2843 (((-863 (-372)) $) NIL (-12 (|has| (-1048) (-594 (-863 (-372)))) (|has| |#2| (-594 (-863 (-372)))))) (((-863 (-549)) $) NIL (-12 (|has| (-1048) (-594 (-863 (-549)))) (|has| |#2| (-594 (-863 (-549)))))) (((-525) $) NIL (-12 (|has| (-1048) (-594 (-525))) (|has| |#2| (-594 (-525)))))) (-1700 ((|#2| $) NIL (|has| |#2| (-444))) (($ $ (-1048)) NIL (|has| |#2| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) NIL (-12 (|has| $ (-143)) (|has| |#2| (-880))))) (-1582 (((-3 $ "failed") $ $) NIL (|has| |#2| (-541))) (((-3 (-400 $) "failed") (-400 $) $) NIL (|has| |#2| (-541)))) (-3845 (((-834) $) 13) (($ (-549)) NIL) (($ |#2|) NIL) (($ (-1048)) NIL) (($ (-1221 |#1|)) 19) (($ (-400 (-549))) NIL (-1536 (|has| |#2| (-38 (-400 (-549)))) (|has| |#2| (-1009 (-400 (-549)))))) (($ $) NIL (|has| |#2| (-541)))) (-2157 (((-621 |#2|) $) NIL)) (-4068 ((|#2| $ (-747)) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-2343 (((-3 $ "failed") $) NIL (-1536 (-12 (|has| $ (-143)) (|has| |#2| (-880))) (|has| |#2| (-143))))) (-2371 (((-747)) NIL)) (-4046 (($ $ $ (-747)) NIL (|has| |#2| (-170)))) (-2441 (((-112) $ $) NIL (|has| |#2| (-541)))) (-3274 (($) NIL T CONST)) (-3286 (($) 14 T CONST)) (-1699 (($ $ (-1048)) NIL) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) NIL) (($ $ (-1142)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-621 (-1142))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1142) (-747)) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) NIL (|has| |#2| (-871 (-1142)))) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-2447 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2387 (((-112) $ $) NIL)) (-2436 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#2| (-823)))) (-2511 (($ $ |#2|) NIL (|has| |#2| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-400 (-549))) NIL (|has| |#2| (-38 (-400 (-549))))) (($ (-400 (-549)) $) NIL (|has| |#2| (-38 (-400 (-549))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-1198 |#1| |#2|) (-13 (-1201 |#2|) (-10 -8 (-15 -3845 ($ (-1221 |#1|))) (-15 -4097 ($ $ (-747) |#2| $)))) (-1142) (-1018)) (T -1198))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1221 *3)) (-14 *3 (-1142)) (-5 *1 (-1198 *3 *4)) (-4 *4 (-1018)))) (-4097 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-747)) (-5 *1 (-1198 *4 *3)) (-14 *4 (-1142)) (-4 *3 (-1018)))))
+(-13 (-1201 |#2|) (-10 -8 (-15 -3845 ($ (-1221 |#1|))) (-15 -4097 ($ $ (-747) |#2| $))))
+((-2795 ((|#4| (-1 |#3| |#1|) |#2|) 22)))
+(((-1199 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2795 (|#4| (-1 |#3| |#1|) |#2|))) (-1018) (-1201 |#1|) (-1018) (-1201 |#3|)) (T -1199))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-1201 *6)) (-5 *1 (-1199 *5 *4 *6 *2)) (-4 *4 (-1201 *5)))))
+(-10 -7 (-15 -2795 (|#4| (-1 |#3| |#1|) |#2|)))
+((-1432 (((-1225 |#2|) $ (-747)) 114)) (-2270 (((-621 (-1048)) $) 15)) (-3842 (($ (-1138 |#2|)) 67)) (-2216 (((-747) $) NIL) (((-747) $ (-621 (-1048))) 18)) (-3630 (((-411 (-1138 $)) (-1138 $)) 185)) (-3239 (($ $) 175)) (-2620 (((-411 $) $) 173)) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) 82)) (-1665 (($ $ (-747)) 71)) (-1586 (($ $ (-747)) 73)) (-3921 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 130)) (-2712 (((-3 |#2| "failed") $) 117) (((-3 (-400 (-549)) "failed") $) NIL) (((-3 (-549) "failed") $) NIL) (((-3 (-1048) "failed") $) NIL)) (-2657 ((|#2| $) 115) (((-400 (-549)) $) NIL) (((-549) $) NIL) (((-1048) $) NIL)) (-1563 (($ $ $) 151)) (-2805 (((-2 (|:| -1569 |#2|) (|:| -2262 $) (|:| -1809 $)) $ $) 153)) (-2729 (((-747) $ $) 170)) (-2964 (((-3 $ "failed") $) 123)) (-2244 (($ |#2| (-747)) NIL) (($ $ (-1048) (-747)) 47) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-2391 (((-747) $) NIL) (((-747) $ (-1048)) 42) (((-621 (-747)) $ (-621 (-1048))) 43)) (-3440 (((-1138 |#2|) $) 59)) (-2236 (((-3 (-1048) "failed") $) 40)) (-3297 (((-2 (|:| -2262 $) (|:| -1809 $)) $ (-747)) 70)) (-3405 (($ $) 197)) (-3059 (($) 119)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 182)) (-2609 (((-411 (-1138 $)) (-1138 $)) 88)) (-2193 (((-411 (-1138 $)) (-1138 $)) 86)) (-2119 (((-411 $) $) 107)) (-2684 (($ $ (-621 (-287 $))) 39) (($ $ (-287 $)) NIL) (($ $ $ $) NIL) (($ $ (-621 $) (-621 $)) NIL) (($ $ (-1048) |#2|) 31) (($ $ (-621 (-1048)) (-621 |#2|)) 28) (($ $ (-1048) $) 25) (($ $ (-621 (-1048)) (-621 $)) 23)) (-1335 (((-747) $) 188)) (-3339 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-400 $) (-400 $) (-400 $)) 147) ((|#2| (-400 $) |#2|) 187) (((-400 $) $ (-400 $)) 169)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 191)) (-3455 (($ $ (-1048)) 140) (($ $ (-621 (-1048))) NIL) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL) (($ $ (-747)) NIL) (($ $) 138) (($ $ (-1142)) NIL) (($ $ (-621 (-1142))) NIL) (($ $ (-1142) (-747)) NIL) (($ $ (-621 (-1142)) (-621 (-747))) NIL) (($ $ (-1 |#2| |#2|) (-747)) NIL) (($ $ (-1 |#2| |#2|)) 137) (($ $ (-1 |#2| |#2|) $) 134)) (-3977 (((-747) $) NIL) (((-747) $ (-1048)) 16) (((-621 (-747)) $ (-621 (-1048))) 20)) (-1700 ((|#2| $) NIL) (($ $ (-1048)) 125)) (-1582 (((-3 $ "failed") $ $) 161) (((-3 (-400 $) "failed") (-400 $) $) 157)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#2|) NIL) (($ (-1048)) 51) (($ (-400 (-549))) NIL) (($ $) NIL)))
+(((-1200 |#1| |#2|) (-10 -8 (-15 -3845 (|#1| |#1|)) (-15 -2994 ((-1138 |#1|) (-1138 |#1|) (-1138 |#1|))) (-15 -2620 ((-411 |#1|) |#1|)) (-15 -3239 (|#1| |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -3059 (|#1|)) (-15 -2964 ((-3 |#1| "failed") |#1|)) (-15 -3339 ((-400 |#1|) |#1| (-400 |#1|))) (-15 -1335 ((-747) |#1|)) (-15 -2288 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|)) (-15 -3405 (|#1| |#1|)) (-15 -3339 (|#2| (-400 |#1|) |#2|)) (-15 -3921 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -2805 ((-2 (|:| -1569 |#2|) (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|)) (-15 -1563 (|#1| |#1| |#1|)) (-15 -1582 ((-3 (-400 |#1|) "failed") (-400 |#1|) |#1|)) (-15 -1582 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2729 ((-747) |#1| |#1|)) (-15 -3339 ((-400 |#1|) (-400 |#1|) (-400 |#1|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -1586 (|#1| |#1| (-747))) (-15 -1665 (|#1| |#1| (-747))) (-15 -3297 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| (-747))) (-15 -3842 (|#1| (-1138 |#2|))) (-15 -3440 ((-1138 |#2|) |#1|)) (-15 -1432 ((-1225 |#2|) |#1| (-747))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -3339 (|#1| |#1| |#1|)) (-15 -3339 (|#2| |#1| |#2|)) (-15 -2119 ((-411 |#1|) |#1|)) (-15 -3630 ((-411 (-1138 |#1|)) (-1138 |#1|))) (-15 -2193 ((-411 (-1138 |#1|)) (-1138 |#1|))) (-15 -2609 ((-411 (-1138 |#1|)) (-1138 |#1|))) (-15 -3955 ((-3 (-621 (-1138 |#1|)) "failed") (-621 (-1138 |#1|)) (-1138 |#1|))) (-15 -1700 (|#1| |#1| (-1048))) (-15 -2270 ((-621 (-1048)) |#1|)) (-15 -2216 ((-747) |#1| (-621 (-1048)))) (-15 -2216 ((-747) |#1|)) (-15 -2244 (|#1| |#1| (-621 (-1048)) (-621 (-747)))) (-15 -2244 (|#1| |#1| (-1048) (-747))) (-15 -2391 ((-621 (-747)) |#1| (-621 (-1048)))) (-15 -2391 ((-747) |#1| (-1048))) (-15 -2236 ((-3 (-1048) "failed") |#1|)) (-15 -3977 ((-621 (-747)) |#1| (-621 (-1048)))) (-15 -3977 ((-747) |#1| (-1048))) (-15 -2657 ((-1048) |#1|)) (-15 -2712 ((-3 (-1048) "failed") |#1|)) (-15 -3845 (|#1| (-1048))) (-15 -2684 (|#1| |#1| (-621 (-1048)) (-621 |#1|))) (-15 -2684 (|#1| |#1| (-1048) |#1|)) (-15 -2684 (|#1| |#1| (-621 (-1048)) (-621 |#2|))) (-15 -2684 (|#1| |#1| (-1048) |#2|)) (-15 -2684 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2684 (|#1| |#1| |#1| |#1|)) (-15 -2684 (|#1| |#1| (-287 |#1|))) (-15 -2684 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -3977 ((-747) |#1|)) (-15 -2244 (|#1| |#2| (-747))) (-15 -2657 ((-549) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3845 (|#1| |#2|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -2657 (|#2| |#1|)) (-15 -2391 ((-747) |#1|)) (-15 -1700 (|#2| |#1|)) (-15 -3455 (|#1| |#1| (-621 (-1048)) (-621 (-747)))) (-15 -3455 (|#1| |#1| (-1048) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1048)))) (-15 -3455 (|#1| |#1| (-1048))) (-15 -3845 (|#1| (-549))) (-15 -3845 ((-834) |#1|))) (-1201 |#2|) (-1018)) (T -1200))
+NIL
+(-10 -8 (-15 -3845 (|#1| |#1|)) (-15 -2994 ((-1138 |#1|) (-1138 |#1|) (-1138 |#1|))) (-15 -2620 ((-411 |#1|) |#1|)) (-15 -3239 (|#1| |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -3059 (|#1|)) (-15 -2964 ((-3 |#1| "failed") |#1|)) (-15 -3339 ((-400 |#1|) |#1| (-400 |#1|))) (-15 -1335 ((-747) |#1|)) (-15 -2288 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|)) (-15 -3405 (|#1| |#1|)) (-15 -3339 (|#2| (-400 |#1|) |#2|)) (-15 -3921 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -2805 ((-2 (|:| -1569 |#2|) (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| |#1|)) (-15 -1563 (|#1| |#1| |#1|)) (-15 -1582 ((-3 (-400 |#1|) "failed") (-400 |#1|) |#1|)) (-15 -1582 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2729 ((-747) |#1| |#1|)) (-15 -3339 ((-400 |#1|) (-400 |#1|) (-400 |#1|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -1586 (|#1| |#1| (-747))) (-15 -1665 (|#1| |#1| (-747))) (-15 -3297 ((-2 (|:| -2262 |#1|) (|:| -1809 |#1|)) |#1| (-747))) (-15 -3842 (|#1| (-1138 |#2|))) (-15 -3440 ((-1138 |#2|) |#1|)) (-15 -1432 ((-1225 |#2|) |#1| (-747))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3455 (|#1| |#1| (-1 |#2| |#2|) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)) (-621 (-747)))) (-15 -3455 (|#1| |#1| (-1142) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1142)))) (-15 -3455 (|#1| |#1| (-1142))) (-15 -3455 (|#1| |#1|)) (-15 -3455 (|#1| |#1| (-747))) (-15 -3339 (|#1| |#1| |#1|)) (-15 -3339 (|#2| |#1| |#2|)) (-15 -2119 ((-411 |#1|) |#1|)) (-15 -3630 ((-411 (-1138 |#1|)) (-1138 |#1|))) (-15 -2193 ((-411 (-1138 |#1|)) (-1138 |#1|))) (-15 -2609 ((-411 (-1138 |#1|)) (-1138 |#1|))) (-15 -3955 ((-3 (-621 (-1138 |#1|)) "failed") (-621 (-1138 |#1|)) (-1138 |#1|))) (-15 -1700 (|#1| |#1| (-1048))) (-15 -2270 ((-621 (-1048)) |#1|)) (-15 -2216 ((-747) |#1| (-621 (-1048)))) (-15 -2216 ((-747) |#1|)) (-15 -2244 (|#1| |#1| (-621 (-1048)) (-621 (-747)))) (-15 -2244 (|#1| |#1| (-1048) (-747))) (-15 -2391 ((-621 (-747)) |#1| (-621 (-1048)))) (-15 -2391 ((-747) |#1| (-1048))) (-15 -2236 ((-3 (-1048) "failed") |#1|)) (-15 -3977 ((-621 (-747)) |#1| (-621 (-1048)))) (-15 -3977 ((-747) |#1| (-1048))) (-15 -2657 ((-1048) |#1|)) (-15 -2712 ((-3 (-1048) "failed") |#1|)) (-15 -3845 (|#1| (-1048))) (-15 -2684 (|#1| |#1| (-621 (-1048)) (-621 |#1|))) (-15 -2684 (|#1| |#1| (-1048) |#1|)) (-15 -2684 (|#1| |#1| (-621 (-1048)) (-621 |#2|))) (-15 -2684 (|#1| |#1| (-1048) |#2|)) (-15 -2684 (|#1| |#1| (-621 |#1|) (-621 |#1|))) (-15 -2684 (|#1| |#1| |#1| |#1|)) (-15 -2684 (|#1| |#1| (-287 |#1|))) (-15 -2684 (|#1| |#1| (-621 (-287 |#1|)))) (-15 -3977 ((-747) |#1|)) (-15 -2244 (|#1| |#2| (-747))) (-15 -2657 ((-549) |#1|)) (-15 -2712 ((-3 (-549) "failed") |#1|)) (-15 -2657 ((-400 (-549)) |#1|)) (-15 -2712 ((-3 (-400 (-549)) "failed") |#1|)) (-15 -3845 (|#1| |#2|)) (-15 -2712 ((-3 |#2| "failed") |#1|)) (-15 -2657 (|#2| |#1|)) (-15 -2391 ((-747) |#1|)) (-15 -1700 (|#2| |#1|)) (-15 -3455 (|#1| |#1| (-621 (-1048)) (-621 (-747)))) (-15 -3455 (|#1| |#1| (-1048) (-747))) (-15 -3455 (|#1| |#1| (-621 (-1048)))) (-15 -3455 (|#1| |#1| (-1048))) (-15 -3845 (|#1| (-549))) (-15 -3845 ((-834) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-1432 (((-1225 |#1|) $ (-747)) 236)) (-2270 (((-621 (-1048)) $) 108)) (-3842 (($ (-1138 |#1|)) 234)) (-2082 (((-1138 $) $ (-1048)) 123) (((-1138 |#1|) $) 122)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 85 (|has| |#1| (-541)))) (-3044 (($ $) 86 (|has| |#1| (-541)))) (-2774 (((-112) $) 88 (|has| |#1| (-541)))) (-2216 (((-747) $) 110) (((-747) $ (-621 (-1048))) 109)) (-2416 (((-3 $ "failed") $ $) 19)) (-2070 (($ $ $) 221 (|has| |#1| (-541)))) (-3630 (((-411 (-1138 $)) (-1138 $)) 98 (|has| |#1| (-880)))) (-3239 (($ $) 96 (|has| |#1| (-444)))) (-2620 (((-411 $) $) 95 (|has| |#1| (-444)))) (-3955 (((-3 (-621 (-1138 $)) "failed") (-621 (-1138 $)) (-1138 $)) 101 (|has| |#1| (-880)))) (-2680 (((-112) $ $) 206 (|has| |#1| (-356)))) (-1665 (($ $ (-747)) 229)) (-1586 (($ $ (-747)) 228)) (-3921 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 216 (|has| |#1| (-444)))) (-3034 (($) 17 T CONST)) (-2712 (((-3 |#1| "failed") $) 162) (((-3 (-400 (-549)) "failed") $) 160 (|has| |#1| (-1009 (-400 (-549))))) (((-3 (-549) "failed") $) 158 (|has| |#1| (-1009 (-549)))) (((-3 (-1048) "failed") $) 134)) (-2657 ((|#1| $) 163) (((-400 (-549)) $) 159 (|has| |#1| (-1009 (-400 (-549))))) (((-549) $) 157 (|has| |#1| (-1009 (-549)))) (((-1048) $) 133)) (-4114 (($ $ $ (-1048)) 106 (|has| |#1| (-170))) ((|#1| $ $) 224 (|has| |#1| (-170)))) (-2091 (($ $ $) 210 (|has| |#1| (-356)))) (-2068 (($ $) 152)) (-3446 (((-665 (-549)) (-665 $)) 132 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 (-549))) (|:| |vec| (-1225 (-549)))) (-665 $) (-1225 $)) 131 (|has| |#1| (-617 (-549)))) (((-2 (|:| -3697 (-665 |#1|)) (|:| |vec| (-1225 |#1|))) (-665 $) (-1225 $)) 130) (((-665 |#1|) (-665 $)) 129)) (-2612 (((-3 $ "failed") $) 32)) (-2065 (($ $ $) 209 (|has| |#1| (-356)))) (-1507 (($ $ $) 227)) (-1563 (($ $ $) 218 (|has| |#1| (-541)))) (-2805 (((-2 (|:| -1569 |#1|) (|:| -2262 $) (|:| -1809 $)) $ $) 217 (|has| |#1| (-541)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 204 (|has| |#1| (-356)))) (-3004 (($ $) 174 (|has| |#1| (-444))) (($ $ (-1048)) 103 (|has| |#1| (-444)))) (-2056 (((-621 $) $) 107)) (-1464 (((-112) $) 94 (|has| |#1| (-880)))) (-4064 (($ $ |#1| (-747) $) 170)) (-3849 (((-860 (-372) $) $ (-863 (-372)) (-860 (-372) $)) 82 (-12 (|has| (-1048) (-857 (-372))) (|has| |#1| (-857 (-372))))) (((-860 (-549) $) $ (-863 (-549)) (-860 (-549) $)) 81 (-12 (|has| (-1048) (-857 (-549))) (|has| |#1| (-857 (-549)))))) (-2729 (((-747) $ $) 222 (|has| |#1| (-541)))) (-2297 (((-112) $) 30)) (-1751 (((-747) $) 167)) (-2964 (((-3 $ "failed") $) 202 (|has| |#1| (-1117)))) (-2259 (($ (-1138 |#1|) (-1048)) 115) (($ (-1138 $) (-1048)) 114)) (-2625 (($ $ (-747)) 233)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 213 (|has| |#1| (-356)))) (-2758 (((-621 $) $) 124)) (-2988 (((-112) $) 150)) (-2244 (($ |#1| (-747)) 151) (($ $ (-1048) (-747)) 117) (($ $ (-621 (-1048)) (-621 (-747))) 116)) (-4218 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $ (-1048)) 118) (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 231)) (-2391 (((-747) $) 168) (((-747) $ (-1048)) 120) (((-621 (-747)) $ (-621 (-1048))) 119)) (-2861 (($ $ $) 77 (|has| |#1| (-823)))) (-3574 (($ $ $) 76 (|has| |#1| (-823)))) (-3224 (($ (-1 (-747) (-747)) $) 169)) (-2795 (($ (-1 |#1| |#1|) $) 149)) (-3440 (((-1138 |#1|) $) 235)) (-2236 (((-3 (-1048) "failed") $) 121)) (-2027 (($ $) 147)) (-2042 ((|#1| $) 146)) (-3696 (($ (-621 $)) 92 (|has| |#1| (-444))) (($ $ $) 91 (|has| |#1| (-444)))) (-3441 (((-1124) $) 9)) (-3297 (((-2 (|:| -2262 $) (|:| -1809 $)) $ (-747)) 230)) (-4093 (((-3 (-621 $) "failed") $) 112)) (-1503 (((-3 (-621 $) "failed") $) 113)) (-1477 (((-3 (-2 (|:| |var| (-1048)) (|:| -1714 (-747))) "failed") $) 111)) (-3405 (($ $) 214 (|has| |#1| (-38 (-400 (-549)))))) (-3059 (($) 201 (|has| |#1| (-1117)) CONST)) (-3988 (((-1086) $) 10)) (-2001 (((-112) $) 164)) (-2011 ((|#1| $) 165)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 93 (|has| |#1| (-444)))) (-3726 (($ (-621 $)) 90 (|has| |#1| (-444))) (($ $ $) 89 (|has| |#1| (-444)))) (-2609 (((-411 (-1138 $)) (-1138 $)) 100 (|has| |#1| (-880)))) (-2193 (((-411 (-1138 $)) (-1138 $)) 99 (|has| |#1| (-880)))) (-2119 (((-411 $) $) 97 (|has| |#1| (-880)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 212 (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 211 (|has| |#1| (-356)))) (-2040 (((-3 $ "failed") $ |#1|) 172 (|has| |#1| (-541))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 205 (|has| |#1| (-356)))) (-2684 (($ $ (-621 (-287 $))) 143) (($ $ (-287 $)) 142) (($ $ $ $) 141) (($ $ (-621 $) (-621 $)) 140) (($ $ (-1048) |#1|) 139) (($ $ (-621 (-1048)) (-621 |#1|)) 138) (($ $ (-1048) $) 137) (($ $ (-621 (-1048)) (-621 $)) 136)) (-1335 (((-747) $) 207 (|has| |#1| (-356)))) (-3339 ((|#1| $ |#1|) 254) (($ $ $) 253) (((-400 $) (-400 $) (-400 $)) 223 (|has| |#1| (-541))) ((|#1| (-400 $) |#1|) 215 (|has| |#1| (-356))) (((-400 $) $ (-400 $)) 203 (|has| |#1| (-541)))) (-2432 (((-3 $ "failed") $ (-747)) 232)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 208 (|has| |#1| (-356)))) (-2740 (($ $ (-1048)) 105 (|has| |#1| (-170))) ((|#1| $) 225 (|has| |#1| (-170)))) (-3455 (($ $ (-1048)) 40) (($ $ (-621 (-1048))) 39) (($ $ (-1048) (-747)) 38) (($ $ (-621 (-1048)) (-621 (-747))) 37) (($ $ (-747)) 251) (($ $) 249) (($ $ (-1142)) 248 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) 247 (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) 246 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) 245 (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) 238) (($ $ (-1 |#1| |#1|)) 237) (($ $ (-1 |#1| |#1|) $) 226)) (-3977 (((-747) $) 148) (((-747) $ (-1048)) 128) (((-621 (-747)) $ (-621 (-1048))) 127)) (-2843 (((-863 (-372)) $) 80 (-12 (|has| (-1048) (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372)))))) (((-863 (-549)) $) 79 (-12 (|has| (-1048) (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549)))))) (((-525) $) 78 (-12 (|has| (-1048) (-594 (-525))) (|has| |#1| (-594 (-525)))))) (-1700 ((|#1| $) 173 (|has| |#1| (-444))) (($ $ (-1048)) 104 (|has| |#1| (-444)))) (-3499 (((-3 (-1225 $) "failed") (-665 $)) 102 (-1819 (|has| $ (-143)) (|has| |#1| (-880))))) (-1582 (((-3 $ "failed") $ $) 220 (|has| |#1| (-541))) (((-3 (-400 $) "failed") (-400 $) $) 219 (|has| |#1| (-541)))) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 161) (($ (-1048)) 135) (($ (-400 (-549))) 70 (-1536 (|has| |#1| (-1009 (-400 (-549)))) (|has| |#1| (-38 (-400 (-549)))))) (($ $) 83 (|has| |#1| (-541)))) (-2157 (((-621 |#1|) $) 166)) (-4068 ((|#1| $ (-747)) 153) (($ $ (-1048) (-747)) 126) (($ $ (-621 (-1048)) (-621 (-747))) 125)) (-2343 (((-3 $ "failed") $) 71 (-1536 (-1819 (|has| $ (-143)) (|has| |#1| (-880))) (|has| |#1| (-143))))) (-2371 (((-747)) 28)) (-4046 (($ $ $ (-747)) 171 (|has| |#1| (-170)))) (-2441 (((-112) $ $) 87 (|has| |#1| (-541)))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ (-1048)) 36) (($ $ (-621 (-1048))) 35) (($ $ (-1048) (-747)) 34) (($ $ (-621 (-1048)) (-621 (-747))) 33) (($ $ (-747)) 252) (($ $) 250) (($ $ (-1142)) 244 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142))) 243 (|has| |#1| (-871 (-1142)))) (($ $ (-1142) (-747)) 242 (|has| |#1| (-871 (-1142)))) (($ $ (-621 (-1142)) (-621 (-747))) 241 (|has| |#1| (-871 (-1142)))) (($ $ (-1 |#1| |#1|) (-747)) 240) (($ $ (-1 |#1| |#1|)) 239)) (-2447 (((-112) $ $) 74 (|has| |#1| (-823)))) (-2423 (((-112) $ $) 73 (|has| |#1| (-823)))) (-2387 (((-112) $ $) 6)) (-2436 (((-112) $ $) 75 (|has| |#1| (-823)))) (-2409 (((-112) $ $) 72 (|has| |#1| (-823)))) (-2511 (($ $ |#1|) 154 (|has| |#1| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 156 (|has| |#1| (-38 (-400 (-549))))) (($ (-400 (-549)) $) 155 (|has| |#1| (-38 (-400 (-549))))) (($ |#1| $) 145) (($ $ |#1|) 144)))
+(((-1201 |#1|) (-138) (-1018)) (T -1201))
+((-1432 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *1 (-1201 *4)) (-4 *4 (-1018)) (-5 *2 (-1225 *4)))) (-3440 (*1 *2 *1) (-12 (-4 *1 (-1201 *3)) (-4 *3 (-1018)) (-5 *2 (-1138 *3)))) (-3842 (*1 *1 *2) (-12 (-5 *2 (-1138 *3)) (-4 *3 (-1018)) (-4 *1 (-1201 *3)))) (-2625 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1201 *3)) (-4 *3 (-1018)))) (-2432 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-747)) (-4 *1 (-1201 *3)) (-4 *3 (-1018)))) (-4218 (*1 *2 *1 *1) (-12 (-4 *3 (-1018)) (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-1201 *3)))) (-3297 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *4 (-1018)) (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-1201 *4)))) (-1665 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1201 *3)) (-4 *3 (-1018)))) (-1586 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1201 *3)) (-4 *3 (-1018)))) (-1507 (*1 *1 *1 *1) (-12 (-4 *1 (-1201 *2)) (-4 *2 (-1018)))) (-3455 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1201 *3)) (-4 *3 (-1018)))) (-2740 (*1 *2 *1) (-12 (-4 *1 (-1201 *2)) (-4 *2 (-1018)) (-4 *2 (-170)))) (-4114 (*1 *2 *1 *1) (-12 (-4 *1 (-1201 *2)) (-4 *2 (-1018)) (-4 *2 (-170)))) (-3339 (*1 *2 *2 *2) (-12 (-5 *2 (-400 *1)) (-4 *1 (-1201 *3)) (-4 *3 (-1018)) (-4 *3 (-541)))) (-2729 (*1 *2 *1 *1) (-12 (-4 *1 (-1201 *3)) (-4 *3 (-1018)) (-4 *3 (-541)) (-5 *2 (-747)))) (-2070 (*1 *1 *1 *1) (-12 (-4 *1 (-1201 *2)) (-4 *2 (-1018)) (-4 *2 (-541)))) (-1582 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-1201 *2)) (-4 *2 (-1018)) (-4 *2 (-541)))) (-1582 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-400 *1)) (-4 *1 (-1201 *3)) (-4 *3 (-1018)) (-4 *3 (-541)))) (-1563 (*1 *1 *1 *1) (-12 (-4 *1 (-1201 *2)) (-4 *2 (-1018)) (-4 *2 (-541)))) (-2805 (*1 *2 *1 *1) (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| -1569 *3) (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-1201 *3)))) (-3921 (*1 *2 *1 *1) (-12 (-4 *3 (-444)) (-4 *3 (-1018)) (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1))) (-4 *1 (-1201 *3)))) (-3339 (*1 *2 *3 *2) (-12 (-5 *3 (-400 *1)) (-4 *1 (-1201 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-3405 (*1 *1 *1) (-12 (-4 *1 (-1201 *2)) (-4 *2 (-1018)) (-4 *2 (-38 (-400 (-549)))))))
+(-13 (-920 |t#1| (-747) (-1048)) (-279 |t#1| |t#1|) (-279 $ $) (-227) (-225 |t#1|) (-10 -8 (-15 -1432 ((-1225 |t#1|) $ (-747))) (-15 -3440 ((-1138 |t#1|) $)) (-15 -3842 ($ (-1138 |t#1|))) (-15 -2625 ($ $ (-747))) (-15 -2432 ((-3 $ "failed") $ (-747))) (-15 -4218 ((-2 (|:| -2262 $) (|:| -1809 $)) $ $)) (-15 -3297 ((-2 (|:| -2262 $) (|:| -1809 $)) $ (-747))) (-15 -1665 ($ $ (-747))) (-15 -1586 ($ $ (-747))) (-15 -1507 ($ $ $)) (-15 -3455 ($ $ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-1117)) (-6 (-1117)) |%noBranch|) (IF (|has| |t#1| (-170)) (PROGN (-15 -2740 (|t#1| $)) (-15 -4114 (|t#1| $ $))) |%noBranch|) (IF (|has| |t#1| (-541)) (PROGN (-6 (-279 (-400 $) (-400 $))) (-15 -3339 ((-400 $) (-400 $) (-400 $))) (-15 -2729 ((-747) $ $)) (-15 -2070 ($ $ $)) (-15 -1582 ((-3 $ "failed") $ $)) (-15 -1582 ((-3 (-400 $) "failed") (-400 $) $)) (-15 -1563 ($ $ $)) (-15 -2805 ((-2 (|:| -1569 |t#1|) (|:| -2262 $) (|:| -1809 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-444)) (-15 -3921 ((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $)) |%noBranch|) (IF (|has| |t#1| (-356)) (PROGN (-6 (-300)) (-6 -4332) (-15 -3339 (|t#1| (-400 $) |t#1|))) |%noBranch|) (IF (|has| |t#1| (-38 (-400 (-549)))) (-15 -3405 ($ $)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-747)) . T) ((-25) . T) ((-38 #1=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-356))) ((-101) . T) ((-111 #1# #1#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-594 (-525)) -12 (|has| (-1048) (-594 (-525))) (|has| |#1| (-594 (-525)))) ((-594 (-863 (-372))) -12 (|has| (-1048) (-594 (-863 (-372)))) (|has| |#1| (-594 (-863 (-372))))) ((-594 (-863 (-549))) -12 (|has| (-1048) (-594 (-863 (-549)))) (|has| |#1| (-594 (-863 (-549))))) ((-225 |#1|) . T) ((-227) . T) ((-279 (-400 $) (-400 $)) |has| |#1| (-541)) ((-279 |#1| |#1|) . T) ((-279 $ $) . T) ((-283) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-356))) ((-300) |has| |#1| (-356)) ((-302 $) . T) ((-319 |#1| #0#) . T) ((-370 |#1|) . T) ((-404 |#1|) . T) ((-444) -1536 (|has| |#1| (-880)) (|has| |#1| (-444)) (|has| |#1| (-356))) ((-505 #2=(-1048) |#1|) . T) ((-505 #2# $) . T) ((-505 $ $) . T) ((-541) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-356))) ((-624 #1#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-617 (-549)) |has| |#1| (-617 (-549))) ((-617 |#1|) . T) ((-694 #1#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-356))) ((-703) . T) ((-823) |has| |#1| (-823)) ((-871 #2#) . T) ((-871 (-1142)) |has| |#1| (-871 (-1142))) ((-857 (-372)) -12 (|has| (-1048) (-857 (-372))) (|has| |#1| (-857 (-372)))) ((-857 (-549)) -12 (|has| (-1048) (-857 (-549))) (|has| |#1| (-857 (-549)))) ((-920 |#1| #0# #2#) . T) ((-880) |has| |#1| (-880)) ((-891) |has| |#1| (-356)) ((-1009 (-400 (-549))) |has| |#1| (-1009 (-400 (-549)))) ((-1009 (-549)) |has| |#1| (-1009 (-549))) ((-1009 #2#) . T) ((-1009 |#1|) . T) ((-1024 #1#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-880)) (|has| |#1| (-541)) (|has| |#1| (-444)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1117) |has| |#1| (-1117)) ((-1183) |has| |#1| (-880)))
+((-2270 (((-621 (-1048)) $) 28)) (-2068 (($ $) 25)) (-2244 (($ |#2| |#3|) NIL) (($ $ (-1048) |#3|) 22) (($ $ (-621 (-1048)) (-621 |#3|)) 21)) (-2027 (($ $) 14)) (-2042 ((|#2| $) 12)) (-3977 ((|#3| $) 10)))
+(((-1202 |#1| |#2| |#3|) (-10 -8 (-15 -2270 ((-621 (-1048)) |#1|)) (-15 -2244 (|#1| |#1| (-621 (-1048)) (-621 |#3|))) (-15 -2244 (|#1| |#1| (-1048) |#3|)) (-15 -2068 (|#1| |#1|)) (-15 -2244 (|#1| |#2| |#3|)) (-15 -3977 (|#3| |#1|)) (-15 -2027 (|#1| |#1|)) (-15 -2042 (|#2| |#1|))) (-1203 |#2| |#3|) (-1018) (-768)) (T -1202))
+NIL
+(-10 -8 (-15 -2270 ((-621 (-1048)) |#1|)) (-15 -2244 (|#1| |#1| (-621 (-1048)) (-621 |#3|))) (-15 -2244 (|#1| |#1| (-1048) |#3|)) (-15 -2068 (|#1| |#1|)) (-15 -2244 (|#1| |#2| |#3|)) (-15 -3977 (|#3| |#1|)) (-15 -2027 (|#1| |#1|)) (-15 -2042 (|#2| |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2270 (((-621 (-1048)) $) 72)) (-3009 (((-1142) $) 101)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-3044 (($ $) 50 (|has| |#1| (-541)))) (-2774 (((-112) $) 52 (|has| |#1| (-541)))) (-3691 (($ $ |#2|) 96) (($ $ |#2| |#2|) 95)) (-2585 (((-1122 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 103)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2068 (($ $) 58)) (-2612 (((-3 $ "failed") $) 32)) (-1410 (((-112) $) 71)) (-2729 ((|#2| $) 98) ((|#2| $ |#2|) 97)) (-2297 (((-112) $) 30)) (-2625 (($ $ (-892)) 99)) (-2988 (((-112) $) 60)) (-2244 (($ |#1| |#2|) 59) (($ $ (-1048) |#2|) 74) (($ $ (-621 (-1048)) (-621 |#2|)) 73)) (-2795 (($ (-1 |#1| |#1|) $) 61)) (-2027 (($ $) 63)) (-2042 ((|#1| $) 64)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3796 (($ $ |#2|) 93)) (-2040 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541)))) (-2684 (((-1122 |#1|) $ |#1|) 92 (|has| |#1| (-15 ** (|#1| |#1| |#2|))))) (-3339 ((|#1| $ |#2|) 102) (($ $ $) 79 (|has| |#2| (-1078)))) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) 87 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1142) (-747)) 86 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-621 (-1142))) 85 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1142)) 84 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-747)) 82 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 80 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-3977 ((|#2| $) 62)) (-3958 (($ $) 70)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 55 (|has| |#1| (-38 (-400 (-549))))) (($ $) 47 (|has| |#1| (-541))) (($ |#1|) 45 (|has| |#1| (-170)))) (-4068 ((|#1| $ |#2|) 57)) (-2343 (((-3 $ "failed") $) 46 (|has| |#1| (-143)))) (-2371 (((-747)) 28)) (-2596 ((|#1| $) 100)) (-2441 (((-112) $ $) 51 (|has| |#1| (-541)))) (-2659 ((|#1| $ |#2|) 94 (-12 (|has| |#1| (-15 ** (|#1| |#1| |#2|))) (|has| |#1| (-15 -3845 (|#1| (-1142))))))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ (-621 (-1142)) (-621 (-747))) 91 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1142) (-747)) 90 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-621 (-1142))) 89 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1142)) 88 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-747)) 83 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 81 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-2387 (((-112) $ $) 6)) (-2511 (($ $ |#1|) 56 (|has| |#1| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
+(((-1203 |#1| |#2|) (-138) (-1018) (-768)) (T -1203))
+((-2585 (*1 *2 *1) (-12 (-4 *1 (-1203 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)) (-5 *2 (-1122 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-3339 (*1 *2 *1 *3) (-12 (-4 *1 (-1203 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018)))) (-3009 (*1 *2 *1) (-12 (-4 *1 (-1203 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)) (-5 *2 (-1142)))) (-2596 (*1 *2 *1) (-12 (-4 *1 (-1203 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018)))) (-2625 (*1 *1 *1 *2) (-12 (-5 *2 (-892)) (-4 *1 (-1203 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)))) (-2729 (*1 *2 *1) (-12 (-4 *1 (-1203 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))) (-2729 (*1 *2 *1 *2) (-12 (-4 *1 (-1203 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))) (-3691 (*1 *1 *1 *2) (-12 (-4 *1 (-1203 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))) (-3691 (*1 *1 *1 *2 *2) (-12 (-4 *1 (-1203 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))) (-2659 (*1 *2 *1 *3) (-12 (-4 *1 (-1203 *2 *3)) (-4 *3 (-768)) (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -3845 (*2 (-1142)))) (-4 *2 (-1018)))) (-3796 (*1 *1 *1 *2) (-12 (-4 *1 (-1203 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))) (-2684 (*1 *2 *1 *3) (-12 (-4 *1 (-1203 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768)) (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1122 *3)))))
+(-13 (-944 |t#1| |t#2| (-1048)) (-10 -8 (-15 -2585 ((-1122 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -3339 (|t#1| $ |t#2|)) (-15 -3009 ((-1142) $)) (-15 -2596 (|t#1| $)) (-15 -2625 ($ $ (-892))) (-15 -2729 (|t#2| $)) (-15 -2729 (|t#2| $ |t#2|)) (-15 -3691 ($ $ |t#2|)) (-15 -3691 ($ $ |t#2| |t#2|)) (IF (|has| |t#1| (-15 -3845 (|t#1| (-1142)))) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -2659 (|t#1| $ |t#2|)) |%noBranch|) |%noBranch|) (-15 -3796 ($ $ |t#2|)) (IF (|has| |t#2| (-1078)) (-6 (-279 $ $)) |%noBranch|) (IF (|has| |t#1| (-15 * (|t#1| |t#2| |t#1|))) (PROGN (-6 (-227)) (IF (|has| |t#1| (-871 (-1142))) (-6 (-871 (-1142))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -2684 ((-1122 |t#1|) $ |t#1|)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) |has| |#1| (-541)) ((-101) . T) ((-111 #0# #0#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-227) |has| |#1| (-15 * (|#1| |#2| |#1|))) ((-279 $ $) |has| |#2| (-1078)) ((-283) |has| |#1| (-541)) ((-541) |has| |#1| (-541)) ((-624 #0#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #0#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) |has| |#1| (-541)) ((-703) . T) ((-871 (-1142)) -12 (|has| |#1| (-15 * (|#1| |#2| |#1|))) (|has| |#1| (-871 (-1142)))) ((-944 |#1| |#2| (-1048)) . T) ((-1024 #0#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-3239 ((|#2| |#2|) 12)) (-2620 (((-411 |#2|) |#2|) 14)) (-2017 (((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-549))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-549)))) 30)))
+(((-1204 |#1| |#2|) (-10 -7 (-15 -2620 ((-411 |#2|) |#2|)) (-15 -3239 (|#2| |#2|)) (-15 -2017 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-549))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-549)))))) (-541) (-13 (-1201 |#1|) (-541) (-10 -8 (-15 -3726 ($ $ $))))) (T -1204))
+((-2017 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4) (|:| |xpnt| (-549)))) (-4 *4 (-13 (-1201 *3) (-541) (-10 -8 (-15 -3726 ($ $ $))))) (-4 *3 (-541)) (-5 *1 (-1204 *3 *4)))) (-3239 (*1 *2 *2) (-12 (-4 *3 (-541)) (-5 *1 (-1204 *3 *2)) (-4 *2 (-13 (-1201 *3) (-541) (-10 -8 (-15 -3726 ($ $ $))))))) (-2620 (*1 *2 *3) (-12 (-4 *4 (-541)) (-5 *2 (-411 *3)) (-5 *1 (-1204 *4 *3)) (-4 *3 (-13 (-1201 *4) (-541) (-10 -8 (-15 -3726 ($ $ $))))))))
+(-10 -7 (-15 -2620 ((-411 |#2|) |#2|)) (-15 -3239 (|#2| |#2|)) (-15 -2017 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-549))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-549))))))
+((-2795 (((-1210 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1210 |#1| |#3| |#5|)) 24)))
+(((-1205 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2795 ((-1210 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1210 |#1| |#3| |#5|)))) (-1018) (-1018) (-1142) (-1142) |#1| |#2|) (T -1205))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1210 *5 *7 *9)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-14 *7 (-1142)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1210 *6 *8 *10)) (-5 *1 (-1205 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1142)))))
+(-10 -7 (-15 -2795 ((-1210 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1210 |#1| |#3| |#5|))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2270 (((-621 (-1048)) $) 72)) (-3009 (((-1142) $) 101)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-3044 (($ $) 50 (|has| |#1| (-541)))) (-2774 (((-112) $) 52 (|has| |#1| (-541)))) (-3691 (($ $ (-400 (-549))) 96) (($ $ (-400 (-549)) (-400 (-549))) 95)) (-2585 (((-1122 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|))) $) 103)) (-1662 (($ $) 133 (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) 116 (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) 19)) (-3239 (($ $) 160 (|has| |#1| (-356)))) (-2620 (((-411 $) $) 161 (|has| |#1| (-356)))) (-2132 (($ $) 115 (|has| |#1| (-38 (-400 (-549)))))) (-2680 (((-112) $ $) 151 (|has| |#1| (-356)))) (-1638 (($ $) 132 (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) 117 (|has| |#1| (-38 (-400 (-549)))))) (-2824 (($ (-747) (-1122 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|)))) 169)) (-1684 (($ $) 131 (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) 118 (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) 17 T CONST)) (-2091 (($ $ $) 155 (|has| |#1| (-356)))) (-2068 (($ $) 58)) (-2612 (((-3 $ "failed") $) 32)) (-2065 (($ $ $) 154 (|has| |#1| (-356)))) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 149 (|has| |#1| (-356)))) (-1464 (((-112) $) 162 (|has| |#1| (-356)))) (-1410 (((-112) $) 71)) (-1425 (($) 143 (|has| |#1| (-38 (-400 (-549)))))) (-2729 (((-400 (-549)) $) 98) (((-400 (-549)) $ (-400 (-549))) 97)) (-2297 (((-112) $) 30)) (-3621 (($ $ (-549)) 114 (|has| |#1| (-38 (-400 (-549)))))) (-2625 (($ $ (-892)) 99) (($ $ (-400 (-549))) 168)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 158 (|has| |#1| (-356)))) (-2988 (((-112) $) 60)) (-2244 (($ |#1| (-400 (-549))) 59) (($ $ (-1048) (-400 (-549))) 74) (($ $ (-621 (-1048)) (-621 (-400 (-549)))) 73)) (-2795 (($ (-1 |#1| |#1|) $) 61)) (-3631 (($ $) 140 (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) 63)) (-2042 ((|#1| $) 64)) (-3696 (($ (-621 $)) 147 (|has| |#1| (-356))) (($ $ $) 146 (|has| |#1| (-356)))) (-3441 (((-1124) $) 9)) (-1990 (($ $) 163 (|has| |#1| (-356)))) (-3405 (($ $) 167 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1142)) 166 (-1536 (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-930)) (|has| |#1| (-1164)) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-15 -2270 ((-621 (-1142)) |#1|))) (|has| |#1| (-15 -3405 (|#1| |#1| (-1142)))) (|has| |#1| (-38 (-400 (-549)))))))) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 148 (|has| |#1| (-356)))) (-3726 (($ (-621 $)) 145 (|has| |#1| (-356))) (($ $ $) 144 (|has| |#1| (-356)))) (-2119 (((-411 $) $) 159 (|has| |#1| (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 157 (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 156 (|has| |#1| (-356)))) (-3796 (($ $ (-400 (-549))) 93)) (-2040 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 150 (|has| |#1| (-356)))) (-2717 (($ $) 141 (|has| |#1| (-38 (-400 (-549)))))) (-2684 (((-1122 |#1|) $ |#1|) 92 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))))) (-1335 (((-747) $) 152 (|has| |#1| (-356)))) (-3339 ((|#1| $ (-400 (-549))) 102) (($ $ $) 79 (|has| (-400 (-549)) (-1078)))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 153 (|has| |#1| (-356)))) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) 87 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-1142) (-747)) 86 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-621 (-1142))) 85 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-1142)) 84 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-747)) 82 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) 80 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-3977 (((-400 (-549)) $) 62)) (-1696 (($ $) 130 (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) 119 (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) 129 (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) 120 (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) 128 (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) 121 (|has| |#1| (-38 (-400 (-549)))))) (-3958 (($ $) 70)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 45 (|has| |#1| (-170))) (($ (-400 (-549))) 55 (|has| |#1| (-38 (-400 (-549))))) (($ $) 47 (|has| |#1| (-541)))) (-4068 ((|#1| $ (-400 (-549))) 57)) (-2343 (((-3 $ "failed") $) 46 (|has| |#1| (-143)))) (-2371 (((-747)) 28)) (-2596 ((|#1| $) 100)) (-1731 (($ $) 139 (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) 127 (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) 51 (|has| |#1| (-541)))) (-1708 (($ $) 138 (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) 126 (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) 137 (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) 125 (|has| |#1| (-38 (-400 (-549)))))) (-2659 ((|#1| $ (-400 (-549))) 94 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))) (|has| |#1| (-15 -3845 (|#1| (-1142))))))) (-1932 (($ $) 136 (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) 124 (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) 135 (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) 123 (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) 134 (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) 122 (|has| |#1| (-38 (-400 (-549)))))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ (-621 (-1142)) (-621 (-747))) 91 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-1142) (-747)) 90 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-621 (-1142))) 89 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-1142)) 88 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-747)) 83 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) 81 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-2387 (((-112) $ $) 6)) (-2511 (($ $ |#1|) 56 (|has| |#1| (-356))) (($ $ $) 165 (|has| |#1| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 164 (|has| |#1| (-356))) (($ $ $) 142 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 113 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
+(((-1206 |#1|) (-138) (-1018)) (T -1206))
+((-2824 (*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *3 (-1122 (-2 (|:| |k| (-400 (-549))) (|:| |c| *4)))) (-4 *4 (-1018)) (-4 *1 (-1206 *4)))) (-2625 (*1 *1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-4 *1 (-1206 *3)) (-4 *3 (-1018)))) (-3405 (*1 *1 *1) (-12 (-4 *1 (-1206 *2)) (-4 *2 (-1018)) (-4 *2 (-38 (-400 (-549)))))) (-3405 (*1 *1 *1 *2) (-1536 (-12 (-5 *2 (-1142)) (-4 *1 (-1206 *3)) (-4 *3 (-1018)) (-12 (-4 *3 (-29 (-549))) (-4 *3 (-930)) (-4 *3 (-1164)) (-4 *3 (-38 (-400 (-549)))))) (-12 (-5 *2 (-1142)) (-4 *1 (-1206 *3)) (-4 *3 (-1018)) (-12 (|has| *3 (-15 -2270 ((-621 *2) *3))) (|has| *3 (-15 -3405 (*3 *3 *2))) (-4 *3 (-38 (-400 (-549)))))))))
+(-13 (-1203 |t#1| (-400 (-549))) (-10 -8 (-15 -2824 ($ (-747) (-1122 (-2 (|:| |k| (-400 (-549))) (|:| |c| |t#1|))))) (-15 -2625 ($ $ (-400 (-549)))) (IF (|has| |t#1| (-38 (-400 (-549)))) (PROGN (-15 -3405 ($ $)) (IF (|has| |t#1| (-15 -3405 (|t#1| |t#1| (-1142)))) (IF (|has| |t#1| (-15 -2270 ((-621 (-1142)) |t#1|))) (-15 -3405 ($ $ (-1142))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1164)) (IF (|has| |t#1| (-930)) (IF (|has| |t#1| (-29 (-549))) (-15 -3405 ($ $ (-1142))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-973)) (-6 (-1164))) |%noBranch|) (IF (|has| |t#1| (-356)) (-6 (-356)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-400 (-549))) . T) ((-25) . T) ((-38 #1=(-400 (-549))) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-35) |has| |#1| (-38 (-400 (-549)))) ((-94) |has| |#1| (-38 (-400 (-549)))) ((-101) . T) ((-111 #1# #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-227) |has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) ((-237) |has| |#1| (-356)) ((-277) |has| |#1| (-38 (-400 (-549)))) ((-279 $ $) |has| (-400 (-549)) (-1078)) ((-283) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-300) |has| |#1| (-356)) ((-356) |has| |#1| (-356)) ((-444) |has| |#1| (-356)) ((-484) |has| |#1| (-38 (-400 (-549)))) ((-541) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-624 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-703) . T) ((-871 (-1142)) -12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142)))) ((-944 |#1| #0# (-1048)) . T) ((-891) |has| |#1| (-356)) ((-973) |has| |#1| (-38 (-400 (-549)))) ((-1024 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1164) |has| |#1| (-38 (-400 (-549)))) ((-1167) |has| |#1| (-38 (-400 (-549)))) ((-1183) |has| |#1| (-356)) ((-1203 |#1| #0#) . T))
+((-3210 (((-112) $) 12)) (-2712 (((-3 |#3| "failed") $) 17)) (-2657 ((|#3| $) 14)))
+(((-1207 |#1| |#2| |#3|) (-10 -8 (-15 -2657 (|#3| |#1|)) (-15 -2712 ((-3 |#3| "failed") |#1|)) (-15 -3210 ((-112) |#1|))) (-1208 |#2| |#3|) (-1018) (-1185 |#2|)) (T -1207))
+NIL
+(-10 -8 (-15 -2657 (|#3| |#1|)) (-15 -2712 ((-3 |#3| "failed") |#1|)) (-15 -3210 ((-112) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2270 (((-621 (-1048)) $) 72)) (-3009 (((-1142) $) 101)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-3044 (($ $) 50 (|has| |#1| (-541)))) (-2774 (((-112) $) 52 (|has| |#1| (-541)))) (-3691 (($ $ (-400 (-549))) 96) (($ $ (-400 (-549)) (-400 (-549))) 95)) (-2585 (((-1122 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|))) $) 103)) (-1662 (($ $) 133 (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) 116 (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) 19)) (-3239 (($ $) 160 (|has| |#1| (-356)))) (-2620 (((-411 $) $) 161 (|has| |#1| (-356)))) (-2132 (($ $) 115 (|has| |#1| (-38 (-400 (-549)))))) (-2680 (((-112) $ $) 151 (|has| |#1| (-356)))) (-1638 (($ $) 132 (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) 117 (|has| |#1| (-38 (-400 (-549)))))) (-2824 (($ (-747) (-1122 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|)))) 169)) (-1684 (($ $) 131 (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) 118 (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) 17 T CONST)) (-2712 (((-3 |#2| "failed") $) 180)) (-2657 ((|#2| $) 179)) (-2091 (($ $ $) 155 (|has| |#1| (-356)))) (-2068 (($ $) 58)) (-2612 (((-3 $ "failed") $) 32)) (-4047 (((-400 (-549)) $) 177)) (-2065 (($ $ $) 154 (|has| |#1| (-356)))) (-2365 (($ (-400 (-549)) |#2|) 178)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 149 (|has| |#1| (-356)))) (-1464 (((-112) $) 162 (|has| |#1| (-356)))) (-1410 (((-112) $) 71)) (-1425 (($) 143 (|has| |#1| (-38 (-400 (-549)))))) (-2729 (((-400 (-549)) $) 98) (((-400 (-549)) $ (-400 (-549))) 97)) (-2297 (((-112) $) 30)) (-3621 (($ $ (-549)) 114 (|has| |#1| (-38 (-400 (-549)))))) (-2625 (($ $ (-892)) 99) (($ $ (-400 (-549))) 168)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 158 (|has| |#1| (-356)))) (-2988 (((-112) $) 60)) (-2244 (($ |#1| (-400 (-549))) 59) (($ $ (-1048) (-400 (-549))) 74) (($ $ (-621 (-1048)) (-621 (-400 (-549)))) 73)) (-2795 (($ (-1 |#1| |#1|) $) 61)) (-3631 (($ $) 140 (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) 63)) (-2042 ((|#1| $) 64)) (-3696 (($ (-621 $)) 147 (|has| |#1| (-356))) (($ $ $) 146 (|has| |#1| (-356)))) (-2300 ((|#2| $) 176)) (-1966 (((-3 |#2| "failed") $) 174)) (-2352 ((|#2| $) 175)) (-3441 (((-1124) $) 9)) (-1990 (($ $) 163 (|has| |#1| (-356)))) (-3405 (($ $) 167 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1142)) 166 (-1536 (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-930)) (|has| |#1| (-1164)) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-15 -2270 ((-621 (-1142)) |#1|))) (|has| |#1| (-15 -3405 (|#1| |#1| (-1142)))) (|has| |#1| (-38 (-400 (-549)))))))) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 148 (|has| |#1| (-356)))) (-3726 (($ (-621 $)) 145 (|has| |#1| (-356))) (($ $ $) 144 (|has| |#1| (-356)))) (-2119 (((-411 $) $) 159 (|has| |#1| (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 157 (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 156 (|has| |#1| (-356)))) (-3796 (($ $ (-400 (-549))) 93)) (-2040 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 150 (|has| |#1| (-356)))) (-2717 (($ $) 141 (|has| |#1| (-38 (-400 (-549)))))) (-2684 (((-1122 |#1|) $ |#1|) 92 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))))) (-1335 (((-747) $) 152 (|has| |#1| (-356)))) (-3339 ((|#1| $ (-400 (-549))) 102) (($ $ $) 79 (|has| (-400 (-549)) (-1078)))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 153 (|has| |#1| (-356)))) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) 87 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-1142) (-747)) 86 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-621 (-1142))) 85 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-1142)) 84 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-747)) 82 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) 80 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-3977 (((-400 (-549)) $) 62)) (-1696 (($ $) 130 (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) 119 (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) 129 (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) 120 (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) 128 (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) 121 (|has| |#1| (-38 (-400 (-549)))))) (-3958 (($ $) 70)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 45 (|has| |#1| (-170))) (($ |#2|) 181) (($ (-400 (-549))) 55 (|has| |#1| (-38 (-400 (-549))))) (($ $) 47 (|has| |#1| (-541)))) (-4068 ((|#1| $ (-400 (-549))) 57)) (-2343 (((-3 $ "failed") $) 46 (|has| |#1| (-143)))) (-2371 (((-747)) 28)) (-2596 ((|#1| $) 100)) (-1731 (($ $) 139 (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) 127 (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) 51 (|has| |#1| (-541)))) (-1708 (($ $) 138 (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) 126 (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) 137 (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) 125 (|has| |#1| (-38 (-400 (-549)))))) (-2659 ((|#1| $ (-400 (-549))) 94 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))) (|has| |#1| (-15 -3845 (|#1| (-1142))))))) (-1932 (($ $) 136 (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) 124 (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) 135 (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) 123 (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) 134 (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) 122 (|has| |#1| (-38 (-400 (-549)))))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ (-621 (-1142)) (-621 (-747))) 91 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-1142) (-747)) 90 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-621 (-1142))) 89 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-1142)) 88 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (($ $ (-747)) 83 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) 81 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-2387 (((-112) $ $) 6)) (-2511 (($ $ |#1|) 56 (|has| |#1| (-356))) (($ $ $) 165 (|has| |#1| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 164 (|has| |#1| (-356))) (($ $ $) 142 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 113 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
+(((-1208 |#1| |#2|) (-138) (-1018) (-1185 |t#1|)) (T -1208))
+((-3977 (*1 *2 *1) (-12 (-4 *1 (-1208 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1185 *3)) (-5 *2 (-400 (-549))))) (-3845 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-4 *1 (-1208 *3 *2)) (-4 *2 (-1185 *3)))) (-2365 (*1 *1 *2 *3) (-12 (-5 *2 (-400 (-549))) (-4 *4 (-1018)) (-4 *1 (-1208 *4 *3)) (-4 *3 (-1185 *4)))) (-4047 (*1 *2 *1) (-12 (-4 *1 (-1208 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1185 *3)) (-5 *2 (-400 (-549))))) (-2300 (*1 *2 *1) (-12 (-4 *1 (-1208 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1185 *3)))) (-2352 (*1 *2 *1) (-12 (-4 *1 (-1208 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1185 *3)))) (-1966 (*1 *2 *1) (|partial| -12 (-4 *1 (-1208 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1185 *3)))))
+(-13 (-1206 |t#1|) (-1009 |t#2|) (-10 -8 (-15 -2365 ($ (-400 (-549)) |t#2|)) (-15 -4047 ((-400 (-549)) $)) (-15 -2300 (|t#2| $)) (-15 -3977 ((-400 (-549)) $)) (-15 -3845 ($ |t#2|)) (-15 -2352 (|t#2| $)) (-15 -1966 ((-3 |t#2| "failed") $))))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-400 (-549))) . T) ((-25) . T) ((-38 #1=(-400 (-549))) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-35) |has| |#1| (-38 (-400 (-549)))) ((-94) |has| |#1| (-38 (-400 (-549)))) ((-101) . T) ((-111 #1# #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-227) |has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) ((-237) |has| |#1| (-356)) ((-277) |has| |#1| (-38 (-400 (-549)))) ((-279 $ $) |has| (-400 (-549)) (-1078)) ((-283) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-300) |has| |#1| (-356)) ((-356) |has| |#1| (-356)) ((-444) |has| |#1| (-356)) ((-484) |has| |#1| (-38 (-400 (-549)))) ((-541) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-624 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356))) ((-703) . T) ((-871 (-1142)) -12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142)))) ((-944 |#1| #0# (-1048)) . T) ((-891) |has| |#1| (-356)) ((-973) |has| |#1| (-38 (-400 (-549)))) ((-1009 |#2|) . T) ((-1024 #1#) -1536 (|has| |#1| (-356)) (|has| |#1| (-38 (-400 (-549))))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-356)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1164) |has| |#1| (-38 (-400 (-549)))) ((-1167) |has| |#1| (-38 (-400 (-549)))) ((-1183) |has| |#1| (-356)) ((-1203 |#1| #0#) . T) ((-1206 |#1|) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2270 (((-621 (-1048)) $) NIL)) (-3009 (((-1142) $) 96)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-3691 (($ $ (-400 (-549))) 106) (($ $ (-400 (-549)) (-400 (-549))) 108)) (-2585 (((-1122 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|))) $) 51)) (-1662 (($ $) 180 (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) 156 (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL (|has| |#1| (-356)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2132 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2680 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1638 (($ $) 176 (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) 152 (|has| |#1| (-38 (-400 (-549)))))) (-2824 (($ (-747) (-1122 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|)))) 61)) (-1684 (($ $) 184 (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) 160 (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#2| "failed") $) NIL)) (-2657 ((|#2| $) NIL)) (-2091 (($ $ $) NIL (|has| |#1| (-356)))) (-2068 (($ $) NIL)) (-2612 (((-3 $ "failed") $) 79)) (-4047 (((-400 (-549)) $) 13)) (-2065 (($ $ $) NIL (|has| |#1| (-356)))) (-2365 (($ (-400 (-549)) |#2|) 11)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1464 (((-112) $) NIL (|has| |#1| (-356)))) (-1410 (((-112) $) 68)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2729 (((-400 (-549)) $) 103) (((-400 (-549)) $ (-400 (-549))) 104)) (-2297 (((-112) $) NIL)) (-3621 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2625 (($ $ (-892)) 120) (($ $ (-400 (-549))) 118)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-400 (-549))) 31) (($ $ (-1048) (-400 (-549))) NIL) (($ $ (-621 (-1048)) (-621 (-400 (-549)))) NIL)) (-2795 (($ (-1 |#1| |#1|) $) 115)) (-3631 (($ $) 150 (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2300 ((|#2| $) 12)) (-1966 (((-3 |#2| "failed") $) 41)) (-2352 ((|#2| $) 42)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) 93 (|has| |#1| (-356)))) (-3405 (($ $) 135 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1142)) 140 (-1536 (-12 (|has| |#1| (-15 -3405 (|#1| |#1| (-1142)))) (|has| |#1| (-15 -2270 ((-621 (-1142)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1164)))))) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-356)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2119 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-3796 (($ $ (-400 (-549))) 112)) (-2040 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2717 (($ $) 148 (|has| |#1| (-38 (-400 (-549)))))) (-2684 (((-1122 |#1|) $ |#1|) 90 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))))) (-1335 (((-747) $) NIL (|has| |#1| (-356)))) (-3339 ((|#1| $ (-400 (-549))) 100) (($ $ $) 86 (|has| (-400 (-549)) (-1078)))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-356)))) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142)) 127 (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) 124 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-3977 (((-400 (-549)) $) 16)) (-1696 (($ $) 186 (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) 162 (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) 182 (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) 158 (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) 178 (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) 154 (|has| |#1| (-38 (-400 (-549)))))) (-3958 (($ $) 110)) (-3845 (((-834) $) NIL) (($ (-549)) 35) (($ |#1|) 27 (|has| |#1| (-170))) (($ |#2|) 32) (($ (-400 (-549))) 128 (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541)))) (-4068 ((|#1| $ (-400 (-549))) 99)) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) 117)) (-2596 ((|#1| $) 98)) (-1731 (($ $) 192 (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) 168 (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1708 (($ $) 188 (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) 164 (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) 196 (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) 172 (|has| |#1| (-38 (-400 (-549)))))) (-2659 ((|#1| $ (-400 (-549))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))) (|has| |#1| (-15 -3845 (|#1| (-1142))))))) (-1932 (($ $) 198 (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) 174 (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) 194 (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) 170 (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) 190 (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) 166 (|has| |#1| (-38 (-400 (-549)))))) (-3274 (($) 21 T CONST)) (-3286 (($) 17 T CONST)) (-1699 (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-2387 (((-112) $ $) 66)) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) 92 (|has| |#1| (-356)))) (-2498 (($ $) 131) (($ $ $) 72)) (-2484 (($ $ $) 70)) (** (($ $ (-892)) NIL) (($ $ (-747)) 76) (($ $ (-549)) 145 (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 146 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 74) (($ $ |#1|) NIL) (($ |#1| $) 126) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
+(((-1209 |#1| |#2|) (-1208 |#1| |#2|) (-1018) (-1185 |#1|)) (T -1209))
+NIL
+(-1208 |#1| |#2|)
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2270 (((-621 (-1048)) $) NIL)) (-3009 (((-1142) $) 11)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) NIL (|has| |#1| (-541)))) (-3691 (($ $ (-400 (-549))) NIL) (($ $ (-400 (-549)) (-400 (-549))) NIL)) (-2585 (((-1122 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|))) $) NIL)) (-1662 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) NIL)) (-3239 (($ $) NIL (|has| |#1| (-356)))) (-2620 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2132 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2680 (((-112) $ $) NIL (|has| |#1| (-356)))) (-1638 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2824 (($ (-747) (-1122 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#1|)))) NIL)) (-1684 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-1189 |#1| |#2| |#3|) "failed") $) 19) (((-3 (-1217 |#1| |#2| |#3|) "failed") $) 22)) (-2657 (((-1189 |#1| |#2| |#3|) $) NIL) (((-1217 |#1| |#2| |#3|) $) NIL)) (-2091 (($ $ $) NIL (|has| |#1| (-356)))) (-2068 (($ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-4047 (((-400 (-549)) $) 57)) (-2065 (($ $ $) NIL (|has| |#1| (-356)))) (-2365 (($ (-400 (-549)) (-1189 |#1| |#2| |#3|)) NIL)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) NIL (|has| |#1| (-356)))) (-1464 (((-112) $) NIL (|has| |#1| (-356)))) (-1410 (((-112) $) NIL)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2729 (((-400 (-549)) $) NIL) (((-400 (-549)) $ (-400 (-549))) NIL)) (-2297 (((-112) $) NIL)) (-3621 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2625 (($ $ (-892)) NIL) (($ $ (-400 (-549))) NIL)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-400 (-549))) 30) (($ $ (-1048) (-400 (-549))) NIL) (($ $ (-621 (-1048)) (-621 (-400 (-549)))) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-3631 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-3696 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2300 (((-1189 |#1| |#2| |#3|) $) 60)) (-1966 (((-3 (-1189 |#1| |#2| |#3|) "failed") $) NIL)) (-2352 (((-1189 |#1| |#2| |#3|) $) NIL)) (-3441 (((-1124) $) NIL)) (-1990 (($ $) NIL (|has| |#1| (-356)))) (-3405 (($ $) 39 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1142)) NIL (-1536 (-12 (|has| |#1| (-15 -3405 (|#1| |#1| (-1142)))) (|has| |#1| (-15 -2270 ((-621 (-1142)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1164))))) (($ $ (-1221 |#2|)) 40 (|has| |#1| (-38 (-400 (-549)))))) (-3988 (((-1086) $) NIL)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) NIL (|has| |#1| (-356)))) (-3726 (($ (-621 $)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2119 (((-411 $) $) NIL (|has| |#1| (-356)))) (-2161 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-356))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) NIL (|has| |#1| (-356)))) (-3796 (($ $ (-400 (-549))) NIL)) (-2040 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-4075 (((-3 (-621 $) "failed") (-621 $) $) NIL (|has| |#1| (-356)))) (-2717 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2684 (((-1122 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))))) (-1335 (((-747) $) NIL (|has| |#1| (-356)))) (-3339 ((|#1| $ (-400 (-549))) NIL) (($ $ $) NIL (|has| (-400 (-549)) (-1078)))) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) NIL (|has| |#1| (-356)))) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $ (-1221 |#2|)) 38)) (-3977 (((-400 (-549)) $) NIL)) (-1696 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3958 (($ $) NIL)) (-3845 (((-834) $) 89) (($ (-549)) NIL) (($ |#1|) NIL (|has| |#1| (-170))) (($ (-1189 |#1| |#2| |#3|)) 16) (($ (-1217 |#1| |#2| |#3|)) 17) (($ (-1221 |#2|)) 36) (($ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541)))) (-4068 ((|#1| $ (-400 (-549))) NIL)) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) NIL)) (-2596 ((|#1| $) 12)) (-1731 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1708 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2659 ((|#1| $ (-400 (-549))) 62 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-400 (-549))))) (|has| |#1| (-15 -3845 (|#1| (-1142))))))) (-1932 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3274 (($) 32 T CONST)) (-3286 (($) 26 T CONST)) (-1699 (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142)) NIL (-12 (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-400 (-549)) |#1|))))) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) 34)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ (-549)) NIL (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
+(((-1210 |#1| |#2| |#3|) (-13 (-1208 |#1| (-1189 |#1| |#2| |#3|)) (-1009 (-1217 |#1| |#2| |#3|)) (-10 -8 (-15 -3845 ($ (-1221 |#2|))) (-15 -3455 ($ $ (-1221 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3405 ($ $ (-1221 |#2|))) |%noBranch|))) (-1018) (-1142) |#1|) (T -1210))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1210 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3455 (*1 *1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1210 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3405 (*1 *1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1210 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3))))
+(-13 (-1208 |#1| (-1189 |#1| |#2| |#3|)) (-1009 (-1217 |#1| |#2| |#3|)) (-10 -8 (-15 -3845 ($ (-1221 |#2|))) (-15 -3455 ($ $ (-1221 |#2|))) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3405 ($ $ (-1221 |#2|))) |%noBranch|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 34)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL)) (-3044 (($ $) NIL)) (-2774 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 (-549) "failed") $) NIL (|has| (-1210 |#2| |#3| |#4|) (-1009 (-549)))) (((-3 (-400 (-549)) "failed") $) NIL (|has| (-1210 |#2| |#3| |#4|) (-1009 (-400 (-549))))) (((-3 (-1210 |#2| |#3| |#4|) "failed") $) 20)) (-2657 (((-549) $) NIL (|has| (-1210 |#2| |#3| |#4|) (-1009 (-549)))) (((-400 (-549)) $) NIL (|has| (-1210 |#2| |#3| |#4|) (-1009 (-400 (-549))))) (((-1210 |#2| |#3| |#4|) $) NIL)) (-2068 (($ $) 35)) (-2612 (((-3 $ "failed") $) 25)) (-3004 (($ $) NIL (|has| (-1210 |#2| |#3| |#4|) (-444)))) (-4064 (($ $ (-1210 |#2| |#3| |#4|) (-312 |#2| |#3| |#4|) $) NIL)) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) 11)) (-2988 (((-112) $) NIL)) (-2244 (($ (-1210 |#2| |#3| |#4|) (-312 |#2| |#3| |#4|)) 23)) (-2391 (((-312 |#2| |#3| |#4|) $) NIL)) (-3224 (($ (-1 (-312 |#2| |#3| |#4|) (-312 |#2| |#3| |#4|)) $) NIL)) (-2795 (($ (-1 (-1210 |#2| |#3| |#4|) (-1210 |#2| |#3| |#4|)) $) NIL)) (-2450 (((-3 (-816 |#2|) "failed") $) 75)) (-2027 (($ $) NIL)) (-2042 (((-1210 |#2| |#3| |#4|) $) 18)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2001 (((-112) $) NIL)) (-2011 (((-1210 |#2| |#3| |#4|) $) NIL)) (-2040 (((-3 $ "failed") $ (-1210 |#2| |#3| |#4|)) NIL (|has| (-1210 |#2| |#3| |#4|) (-541))) (((-3 $ "failed") $ $) NIL)) (-2560 (((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1210 |#2| |#3| |#4|)) (|:| |%expon| (-312 |#2| |#3| |#4|)) (|:| |%expTerms| (-621 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#2|)))))) (|:| |%type| (-1124))) "failed") $) 58)) (-3977 (((-312 |#2| |#3| |#4|) $) 14)) (-1700 (((-1210 |#2| |#3| |#4|) $) NIL (|has| (-1210 |#2| |#3| |#4|) (-444)))) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ (-1210 |#2| |#3| |#4|)) NIL) (($ $) NIL) (($ (-400 (-549))) NIL (-1536 (|has| (-1210 |#2| |#3| |#4|) (-38 (-400 (-549)))) (|has| (-1210 |#2| |#3| |#4|) (-1009 (-400 (-549))))))) (-2157 (((-621 (-1210 |#2| |#3| |#4|)) $) NIL)) (-4068 (((-1210 |#2| |#3| |#4|) $ (-312 |#2| |#3| |#4|)) NIL)) (-2343 (((-3 $ "failed") $) NIL (|has| (-1210 |#2| |#3| |#4|) (-143)))) (-2371 (((-747)) NIL)) (-4046 (($ $ $ (-747)) NIL (|has| (-1210 |#2| |#3| |#4|) (-170)))) (-2441 (((-112) $ $) NIL)) (-3274 (($) 63 T CONST)) (-3286 (($) NIL T CONST)) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ (-1210 |#2| |#3| |#4|)) NIL (|has| (-1210 |#2| |#3| |#4|) (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ (-1210 |#2| |#3| |#4|)) NIL) (($ (-1210 |#2| |#3| |#4|) $) NIL) (($ (-400 (-549)) $) NIL (|has| (-1210 |#2| |#3| |#4|) (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| (-1210 |#2| |#3| |#4|) (-38 (-400 (-549)))))))
+(((-1211 |#1| |#2| |#3| |#4|) (-13 (-319 (-1210 |#2| |#3| |#4|) (-312 |#2| |#3| |#4|)) (-541) (-10 -8 (-15 -2450 ((-3 (-816 |#2|) "failed") $)) (-15 -2560 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1210 |#2| |#3| |#4|)) (|:| |%expon| (-312 |#2| |#3| |#4|)) (|:| |%expTerms| (-621 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#2|)))))) (|:| |%type| (-1124))) "failed") $)))) (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444)) (-13 (-27) (-1164) (-423 |#1|)) (-1142) |#2|) (T -1211))
+((-2450 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444))) (-5 *2 (-816 *4)) (-5 *1 (-1211 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1164) (-423 *3))) (-14 *5 (-1142)) (-14 *6 *4))) (-2560 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444))) (-5 *2 (-2 (|:| |%term| (-2 (|:| |%coef| (-1210 *4 *5 *6)) (|:| |%expon| (-312 *4 *5 *6)) (|:| |%expTerms| (-621 (-2 (|:| |k| (-400 (-549))) (|:| |c| *4)))))) (|:| |%type| (-1124)))) (-5 *1 (-1211 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1164) (-423 *3))) (-14 *5 (-1142)) (-14 *6 *4))))
+(-13 (-319 (-1210 |#2| |#3| |#4|) (-312 |#2| |#3| |#4|)) (-541) (-10 -8 (-15 -2450 ((-3 (-816 |#2|) "failed") $)) (-15 -2560 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1210 |#2| |#3| |#4|)) (|:| |%expon| (-312 |#2| |#3| |#4|)) (|:| |%expTerms| (-621 (-2 (|:| |k| (-400 (-549))) (|:| |c| |#2|)))))) (|:| |%type| (-1124))) "failed") $))))
+((-4160 ((|#2| $) 29)) (-2837 ((|#2| $) 18)) (-1342 (($ $) 36)) (-3327 (($ $ (-549)) 64)) (-2850 (((-112) $ (-747)) 33)) (-2797 ((|#2| $ |#2|) 61)) (-1806 ((|#2| $ |#2|) 59)) (-2250 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) 52) (($ $ "rest" $) 56) ((|#2| $ "last" |#2|) 54)) (-1506 (($ $ (-621 $)) 60)) (-2827 ((|#2| $) 17)) (-3656 (($ $) NIL) (($ $ (-747)) 42)) (-3747 (((-621 $) $) 26)) (-3585 (((-112) $ $) 50)) (-1777 (((-112) $ (-747)) 32)) (-3942 (((-112) $ (-747)) 31)) (-3028 (((-112) $) 28)) (-3828 ((|#2| $) 24) (($ $ (-747)) 46)) (-3339 ((|#2| $ "value") NIL) ((|#2| $ "first") 10) (($ $ "rest") 16) ((|#2| $ "last") 13)) (-2917 (((-112) $) 22)) (-2188 (($ $) 39)) (-1829 (($ $) 65)) (-3117 (((-747) $) 41)) (-2528 (($ $) 40)) (-1950 (($ $ $) 58) (($ |#2| $) NIL)) (-2095 (((-621 $) $) 27)) (-2387 (((-112) $ $) 48)) (-3774 (((-747) $) 35)))
+(((-1212 |#1| |#2|) (-10 -8 (-15 -3327 (|#1| |#1| (-549))) (-15 -2250 (|#2| |#1| "last" |#2|)) (-15 -1806 (|#2| |#1| |#2|)) (-15 -2250 (|#1| |#1| "rest" |#1|)) (-15 -2250 (|#2| |#1| "first" |#2|)) (-15 -1829 (|#1| |#1|)) (-15 -2188 (|#1| |#1|)) (-15 -3117 ((-747) |#1|)) (-15 -2528 (|#1| |#1|)) (-15 -2837 (|#2| |#1|)) (-15 -2827 (|#2| |#1|)) (-15 -1342 (|#1| |#1|)) (-15 -3828 (|#1| |#1| (-747))) (-15 -3339 (|#2| |#1| "last")) (-15 -3828 (|#2| |#1|)) (-15 -3656 (|#1| |#1| (-747))) (-15 -3339 (|#1| |#1| "rest")) (-15 -3656 (|#1| |#1|)) (-15 -3339 (|#2| |#1| "first")) (-15 -1950 (|#1| |#2| |#1|)) (-15 -1950 (|#1| |#1| |#1|)) (-15 -2797 (|#2| |#1| |#2|)) (-15 -2250 (|#2| |#1| "value" |#2|)) (-15 -1506 (|#1| |#1| (-621 |#1|))) (-15 -3585 ((-112) |#1| |#1|)) (-15 -2917 ((-112) |#1|)) (-15 -3339 (|#2| |#1| "value")) (-15 -4160 (|#2| |#1|)) (-15 -3028 ((-112) |#1|)) (-15 -3747 ((-621 |#1|) |#1|)) (-15 -2095 ((-621 |#1|) |#1|)) (-15 -2387 ((-112) |#1| |#1|)) (-15 -3774 ((-747) |#1|)) (-15 -2850 ((-112) |#1| (-747))) (-15 -1777 ((-112) |#1| (-747))) (-15 -3942 ((-112) |#1| (-747)))) (-1213 |#2|) (-1179)) (T -1212))
+NIL
+(-10 -8 (-15 -3327 (|#1| |#1| (-549))) (-15 -2250 (|#2| |#1| "last" |#2|)) (-15 -1806 (|#2| |#1| |#2|)) (-15 -2250 (|#1| |#1| "rest" |#1|)) (-15 -2250 (|#2| |#1| "first" |#2|)) (-15 -1829 (|#1| |#1|)) (-15 -2188 (|#1| |#1|)) (-15 -3117 ((-747) |#1|)) (-15 -2528 (|#1| |#1|)) (-15 -2837 (|#2| |#1|)) (-15 -2827 (|#2| |#1|)) (-15 -1342 (|#1| |#1|)) (-15 -3828 (|#1| |#1| (-747))) (-15 -3339 (|#2| |#1| "last")) (-15 -3828 (|#2| |#1|)) (-15 -3656 (|#1| |#1| (-747))) (-15 -3339 (|#1| |#1| "rest")) (-15 -3656 (|#1| |#1|)) (-15 -3339 (|#2| |#1| "first")) (-15 -1950 (|#1| |#2| |#1|)) (-15 -1950 (|#1| |#1| |#1|)) (-15 -2797 (|#2| |#1| |#2|)) (-15 -2250 (|#2| |#1| "value" |#2|)) (-15 -1506 (|#1| |#1| (-621 |#1|))) (-15 -3585 ((-112) |#1| |#1|)) (-15 -2917 ((-112) |#1|)) (-15 -3339 (|#2| |#1| "value")) (-15 -4160 (|#2| |#1|)) (-15 -3028 ((-112) |#1|)) (-15 -3747 ((-621 |#1|) |#1|)) (-15 -2095 ((-621 |#1|) |#1|)) (-15 -2387 ((-112) |#1| |#1|)) (-15 -3774 ((-747) |#1|)) (-15 -2850 ((-112) |#1| (-747))) (-15 -1777 ((-112) |#1| (-747))) (-15 -3942 ((-112) |#1| (-747))))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-4160 ((|#1| $) 48)) (-2837 ((|#1| $) 65)) (-1342 (($ $) 67)) (-3327 (($ $ (-549)) 52 (|has| $ (-6 -4337)))) (-2850 (((-112) $ (-747)) 8)) (-2797 ((|#1| $ |#1|) 39 (|has| $ (-6 -4337)))) (-3931 (($ $ $) 56 (|has| $ (-6 -4337)))) (-1806 ((|#1| $ |#1|) 54 (|has| $ (-6 -4337)))) (-1368 ((|#1| $ |#1|) 58 (|has| $ (-6 -4337)))) (-2250 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4337))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4337))) (($ $ "rest" $) 55 (|has| $ (-6 -4337))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4337)))) (-1506 (($ $ (-621 $)) 41 (|has| $ (-6 -4337)))) (-2827 ((|#1| $) 66)) (-3034 (($) 7 T CONST)) (-3656 (($ $) 73) (($ $ (-747)) 71)) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-3747 (((-621 $) $) 50)) (-3585 (((-112) $ $) 42 (|has| |#1| (-1066)))) (-1777 (((-112) $ (-747)) 9)) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35)) (-3942 (((-112) $ (-747)) 10)) (-3590 (((-621 |#1|) $) 45)) (-3028 (((-112) $) 49)) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-3828 ((|#1| $) 70) (($ $ (-747)) 68)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3645 ((|#1| $) 76) (($ $ (-747)) 74)) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69)) (-3541 (((-549) $ $) 44)) (-2917 (((-112) $) 46)) (-2188 (($ $) 62)) (-1829 (($ $) 59 (|has| $ (-6 -4337)))) (-3117 (((-747) $) 63)) (-2528 (($ $) 64)) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2279 (($ $) 13)) (-3859 (($ $ $) 61 (|has| $ (-6 -4337))) (($ $ |#1|) 60 (|has| $ (-6 -4337)))) (-1950 (($ $ $) 78) (($ |#1| $) 77)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-2095 (((-621 $) $) 51)) (-3605 (((-112) $ $) 43 (|has| |#1| (-1066)))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-1213 |#1|) (-138) (-1179)) (T -1213))
+((-1950 (*1 *1 *1 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-1950 (*1 *1 *2 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-3645 (*1 *2 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-3339 (*1 *2 *1 *3) (-12 (-5 *3 "first") (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-3645 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1213 *3)) (-4 *3 (-1179)))) (-3656 (*1 *1 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-3339 (*1 *1 *1 *2) (-12 (-5 *2 "rest") (-4 *1 (-1213 *3)) (-4 *3 (-1179)))) (-3656 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1213 *3)) (-4 *3 (-1179)))) (-3828 (*1 *2 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-3339 (*1 *2 *1 *3) (-12 (-5 *3 "last") (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-3828 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1213 *3)) (-4 *3 (-1179)))) (-1342 (*1 *1 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-2827 (*1 *2 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-2837 (*1 *2 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-2528 (*1 *1 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-3117 (*1 *2 *1) (-12 (-4 *1 (-1213 *3)) (-4 *3 (-1179)) (-5 *2 (-747)))) (-2188 (*1 *1 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-3859 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-3859 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-1829 (*1 *1 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-1368 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-2250 (*1 *2 *1 *3 *2) (-12 (-5 *3 "first") (|has| *1 (-6 -4337)) (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-3931 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-2250 (*1 *1 *1 *2 *1) (-12 (-5 *2 "rest") (|has| *1 (-6 -4337)) (-4 *1 (-1213 *3)) (-4 *3 (-1179)))) (-1806 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-2250 (*1 *2 *1 *3 *2) (-12 (-5 *3 "last") (|has| *1 (-6 -4337)) (-4 *1 (-1213 *2)) (-4 *2 (-1179)))) (-3327 (*1 *1 *1 *2) (-12 (-5 *2 (-549)) (|has| *1 (-6 -4337)) (-4 *1 (-1213 *3)) (-4 *3 (-1179)))))
+(-13 (-981 |t#1|) (-10 -8 (-15 -1950 ($ $ $)) (-15 -1950 ($ |t#1| $)) (-15 -3645 (|t#1| $)) (-15 -3339 (|t#1| $ "first")) (-15 -3645 ($ $ (-747))) (-15 -3656 ($ $)) (-15 -3339 ($ $ "rest")) (-15 -3656 ($ $ (-747))) (-15 -3828 (|t#1| $)) (-15 -3339 (|t#1| $ "last")) (-15 -3828 ($ $ (-747))) (-15 -1342 ($ $)) (-15 -2827 (|t#1| $)) (-15 -2837 (|t#1| $)) (-15 -2528 ($ $)) (-15 -3117 ((-747) $)) (-15 -2188 ($ $)) (IF (|has| $ (-6 -4337)) (PROGN (-15 -3859 ($ $ $)) (-15 -3859 ($ $ |t#1|)) (-15 -1829 ($ $)) (-15 -1368 (|t#1| $ |t#1|)) (-15 -2250 (|t#1| $ "first" |t#1|)) (-15 -3931 ($ $ $)) (-15 -2250 ($ $ "rest" $)) (-15 -1806 (|t#1| $ |t#1|)) (-15 -2250 (|t#1| $ "last" |t#1|)) (-15 -3327 ($ $ (-549)))) |%noBranch|)))
+(((-34) . T) ((-101) |has| |#1| (-1066)) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-593 (-834)))) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-481 |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-981 |#1|) . T) ((-1066) |has| |#1| (-1066)) ((-1179) . T))
+((-2795 ((|#4| (-1 |#2| |#1|) |#3|) 17)))
+(((-1214 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2795 (|#4| (-1 |#2| |#1|) |#3|))) (-1018) (-1018) (-1216 |#1|) (-1216 |#2|)) (T -1214))
+((-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1018)) (-4 *6 (-1018)) (-4 *2 (-1216 *6)) (-5 *1 (-1214 *5 *6 *4 *2)) (-4 *4 (-1216 *5)))))
+(-10 -7 (-15 -2795 (|#4| (-1 |#2| |#1|) |#3|)))
+((-3210 (((-112) $) 15)) (-1662 (($ $) 92)) (-1510 (($ $) 68)) (-1638 (($ $) 88)) (-1483 (($ $) 64)) (-1684 (($ $) 96)) (-1538 (($ $) 72)) (-3631 (($ $) 62)) (-2717 (($ $) 60)) (-1696 (($ $) 98)) (-1551 (($ $) 74)) (-1673 (($ $) 94)) (-1525 (($ $) 70)) (-1648 (($ $) 90)) (-1500 (($ $) 66)) (-3845 (((-834) $) 48) (($ (-549)) NIL) (($ (-400 (-549))) NIL) (($ $) NIL) (($ |#2|) NIL)) (-1731 (($ $) 104)) (-1585 (($ $) 80)) (-1708 (($ $) 100)) (-1562 (($ $) 76)) (-1753 (($ $) 108)) (-1611 (($ $) 84)) (-1932 (($ $) 110)) (-1625 (($ $) 86)) (-1743 (($ $) 106)) (-1598 (($ $) 82)) (-1719 (($ $) 102)) (-1575 (($ $) 78)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ |#2|) 52) (($ $ $) 55) (($ $ (-400 (-549))) 58)))
+(((-1215 |#1| |#2|) (-10 -8 (-15 ** (|#1| |#1| (-400 (-549)))) (-15 -1510 (|#1| |#1|)) (-15 -1483 (|#1| |#1|)) (-15 -1538 (|#1| |#1|)) (-15 -1551 (|#1| |#1|)) (-15 -1525 (|#1| |#1|)) (-15 -1500 (|#1| |#1|)) (-15 -1575 (|#1| |#1|)) (-15 -1598 (|#1| |#1|)) (-15 -1625 (|#1| |#1|)) (-15 -1611 (|#1| |#1|)) (-15 -1562 (|#1| |#1|)) (-15 -1585 (|#1| |#1|)) (-15 -1648 (|#1| |#1|)) (-15 -1673 (|#1| |#1|)) (-15 -1696 (|#1| |#1|)) (-15 -1684 (|#1| |#1|)) (-15 -1638 (|#1| |#1|)) (-15 -1662 (|#1| |#1|)) (-15 -1719 (|#1| |#1|)) (-15 -1743 (|#1| |#1|)) (-15 -1932 (|#1| |#1|)) (-15 -1753 (|#1| |#1|)) (-15 -1708 (|#1| |#1|)) (-15 -1731 (|#1| |#1|)) (-15 -3631 (|#1| |#1|)) (-15 -2717 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3845 (|#1| |#2|)) (-15 -3845 (|#1| |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -3845 (|#1| (-549))) (-15 ** (|#1| |#1| (-747))) (-15 ** (|#1| |#1| (-892))) (-15 -3210 ((-112) |#1|)) (-15 -3845 ((-834) |#1|))) (-1216 |#2|) (-1018)) (T -1215))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-400 (-549)))) (-15 -1510 (|#1| |#1|)) (-15 -1483 (|#1| |#1|)) (-15 -1538 (|#1| |#1|)) (-15 -1551 (|#1| |#1|)) (-15 -1525 (|#1| |#1|)) (-15 -1500 (|#1| |#1|)) (-15 -1575 (|#1| |#1|)) (-15 -1598 (|#1| |#1|)) (-15 -1625 (|#1| |#1|)) (-15 -1611 (|#1| |#1|)) (-15 -1562 (|#1| |#1|)) (-15 -1585 (|#1| |#1|)) (-15 -1648 (|#1| |#1|)) (-15 -1673 (|#1| |#1|)) (-15 -1696 (|#1| |#1|)) (-15 -1684 (|#1| |#1|)) (-15 -1638 (|#1| |#1|)) (-15 -1662 (|#1| |#1|)) (-15 -1719 (|#1| |#1|)) (-15 -1743 (|#1| |#1|)) (-15 -1932 (|#1| |#1|)) (-15 -1753 (|#1| |#1|)) (-15 -1708 (|#1| |#1|)) (-15 -1731 (|#1| |#1|)) (-15 -3631 (|#1| |#1|)) (-15 -2717 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3845 (|#1| |#2|)) (-15 -3845 (|#1| |#1|)) (-15 -3845 (|#1| (-400 (-549)))) (-15 -3845 (|#1| (-549))) (-15 ** (|#1| |#1| (-747))) (-15 ** (|#1| |#1| (-892))) (-15 -3210 ((-112) |#1|)) (-15 -3845 ((-834) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2270 (((-621 (-1048)) $) 72)) (-3009 (((-1142) $) 101)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 49 (|has| |#1| (-541)))) (-3044 (($ $) 50 (|has| |#1| (-541)))) (-2774 (((-112) $) 52 (|has| |#1| (-541)))) (-3691 (($ $ (-747)) 96) (($ $ (-747) (-747)) 95)) (-2585 (((-1122 (-2 (|:| |k| (-747)) (|:| |c| |#1|))) $) 103)) (-1662 (($ $) 133 (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) 116 (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) 19)) (-2132 (($ $) 115 (|has| |#1| (-38 (-400 (-549)))))) (-1638 (($ $) 132 (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) 117 (|has| |#1| (-38 (-400 (-549)))))) (-2824 (($ (-1122 (-2 (|:| |k| (-747)) (|:| |c| |#1|)))) 153) (($ (-1122 |#1|)) 151)) (-1684 (($ $) 131 (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) 118 (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) 17 T CONST)) (-2068 (($ $) 58)) (-2612 (((-3 $ "failed") $) 32)) (-3061 (($ $) 150)) (-1413 (((-923 |#1|) $ (-747)) 148) (((-923 |#1|) $ (-747) (-747)) 147)) (-1410 (((-112) $) 71)) (-1425 (($) 143 (|has| |#1| (-38 (-400 (-549)))))) (-2729 (((-747) $) 98) (((-747) $ (-747)) 97)) (-2297 (((-112) $) 30)) (-3621 (($ $ (-549)) 114 (|has| |#1| (-38 (-400 (-549)))))) (-2625 (($ $ (-892)) 99)) (-1837 (($ (-1 |#1| (-549)) $) 149)) (-2988 (((-112) $) 60)) (-2244 (($ |#1| (-747)) 59) (($ $ (-1048) (-747)) 74) (($ $ (-621 (-1048)) (-621 (-747))) 73)) (-2795 (($ (-1 |#1| |#1|) $) 61)) (-3631 (($ $) 140 (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) 63)) (-2042 ((|#1| $) 64)) (-3441 (((-1124) $) 9)) (-3405 (($ $) 145 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1142)) 144 (-1536 (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-930)) (|has| |#1| (-1164)) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-15 -2270 ((-621 (-1142)) |#1|))) (|has| |#1| (-15 -3405 (|#1| |#1| (-1142)))) (|has| |#1| (-38 (-400 (-549)))))))) (-3988 (((-1086) $) 10)) (-3796 (($ $ (-747)) 93)) (-2040 (((-3 $ "failed") $ $) 48 (|has| |#1| (-541)))) (-2717 (($ $) 141 (|has| |#1| (-38 (-400 (-549)))))) (-2684 (((-1122 |#1|) $ |#1|) 92 (|has| |#1| (-15 ** (|#1| |#1| (-747)))))) (-3339 ((|#1| $ (-747)) 102) (($ $ $) 79 (|has| (-747) (-1078)))) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) 87 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (($ $ (-1142) (-747)) 86 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (($ $ (-621 (-1142))) 85 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (($ $ (-1142)) 84 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (($ $ (-747)) 82 (|has| |#1| (-15 * (|#1| (-747) |#1|)))) (($ $) 80 (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (-3977 (((-747) $) 62)) (-1696 (($ $) 130 (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) 119 (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) 129 (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) 120 (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) 128 (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) 121 (|has| |#1| (-38 (-400 (-549)))))) (-3958 (($ $) 70)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ (-400 (-549))) 55 (|has| |#1| (-38 (-400 (-549))))) (($ $) 47 (|has| |#1| (-541))) (($ |#1|) 45 (|has| |#1| (-170)))) (-2157 (((-1122 |#1|) $) 152)) (-4068 ((|#1| $ (-747)) 57)) (-2343 (((-3 $ "failed") $) 46 (|has| |#1| (-143)))) (-2371 (((-747)) 28)) (-2596 ((|#1| $) 100)) (-1731 (($ $) 139 (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) 127 (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) 51 (|has| |#1| (-541)))) (-1708 (($ $) 138 (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) 126 (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) 137 (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) 125 (|has| |#1| (-38 (-400 (-549)))))) (-2659 ((|#1| $ (-747)) 94 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-747)))) (|has| |#1| (-15 -3845 (|#1| (-1142))))))) (-1932 (($ $) 136 (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) 124 (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) 135 (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) 123 (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) 134 (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) 122 (|has| |#1| (-38 (-400 (-549)))))) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-1699 (($ $ (-621 (-1142)) (-621 (-747))) 91 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (($ $ (-1142) (-747)) 90 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (($ $ (-621 (-1142))) 89 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (($ $ (-1142)) 88 (-12 (|has| |#1| (-871 (-1142))) (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (($ $ (-747)) 83 (|has| |#1| (-15 * (|#1| (-747) |#1|)))) (($ $) 81 (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (-2387 (((-112) $ $) 6)) (-2511 (($ $ |#1|) 56 (|has| |#1| (-356)))) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ |#1|) 146 (|has| |#1| (-356))) (($ $ $) 142 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 113 (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 66) (($ |#1| $) 65) (($ (-400 (-549)) $) 54 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) 53 (|has| |#1| (-38 (-400 (-549)))))))
+(((-1216 |#1|) (-138) (-1018)) (T -1216))
+((-2824 (*1 *1 *2) (-12 (-5 *2 (-1122 (-2 (|:| |k| (-747)) (|:| |c| *3)))) (-4 *3 (-1018)) (-4 *1 (-1216 *3)))) (-2157 (*1 *2 *1) (-12 (-4 *1 (-1216 *3)) (-4 *3 (-1018)) (-5 *2 (-1122 *3)))) (-2824 (*1 *1 *2) (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-4 *1 (-1216 *3)))) (-3061 (*1 *1 *1) (-12 (-4 *1 (-1216 *2)) (-4 *2 (-1018)))) (-1837 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-549))) (-4 *1 (-1216 *3)) (-4 *3 (-1018)))) (-1413 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *1 (-1216 *4)) (-4 *4 (-1018)) (-5 *2 (-923 *4)))) (-1413 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-747)) (-4 *1 (-1216 *4)) (-4 *4 (-1018)) (-5 *2 (-923 *4)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1216 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))) (-3405 (*1 *1 *1) (-12 (-4 *1 (-1216 *2)) (-4 *2 (-1018)) (-4 *2 (-38 (-400 (-549)))))) (-3405 (*1 *1 *1 *2) (-1536 (-12 (-5 *2 (-1142)) (-4 *1 (-1216 *3)) (-4 *3 (-1018)) (-12 (-4 *3 (-29 (-549))) (-4 *3 (-930)) (-4 *3 (-1164)) (-4 *3 (-38 (-400 (-549)))))) (-12 (-5 *2 (-1142)) (-4 *1 (-1216 *3)) (-4 *3 (-1018)) (-12 (|has| *3 (-15 -2270 ((-621 *2) *3))) (|has| *3 (-15 -3405 (*3 *3 *2))) (-4 *3 (-38 (-400 (-549)))))))))
+(-13 (-1203 |t#1| (-747)) (-10 -8 (-15 -2824 ($ (-1122 (-2 (|:| |k| (-747)) (|:| |c| |t#1|))))) (-15 -2157 ((-1122 |t#1|) $)) (-15 -2824 ($ (-1122 |t#1|))) (-15 -3061 ($ $)) (-15 -1837 ($ (-1 |t#1| (-549)) $)) (-15 -1413 ((-923 |t#1|) $ (-747))) (-15 -1413 ((-923 |t#1|) $ (-747) (-747))) (IF (|has| |t#1| (-356)) (-15 ** ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-38 (-400 (-549)))) (PROGN (-15 -3405 ($ $)) (IF (|has| |t#1| (-15 -3405 (|t#1| |t#1| (-1142)))) (IF (|has| |t#1| (-15 -2270 ((-621 (-1142)) |t#1|))) (-15 -3405 ($ $ (-1142))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1164)) (IF (|has| |t#1| (-930)) (IF (|has| |t#1| (-29 (-549))) (-15 -3405 ($ $ (-1142))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-973)) (-6 (-1164))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-747)) . T) ((-25) . T) ((-38 #1=(-400 (-549))) |has| |#1| (-38 (-400 (-549)))) ((-38 |#1|) |has| |#1| (-170)) ((-38 $) |has| |#1| (-541)) ((-35) |has| |#1| (-38 (-400 (-549)))) ((-94) |has| |#1| (-38 (-400 (-549)))) ((-101) . T) ((-111 #1# #1#) |has| |#1| (-38 (-400 (-549)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-130) . T) ((-143) |has| |#1| (-143)) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-227) |has| |#1| (-15 * (|#1| (-747) |#1|))) ((-277) |has| |#1| (-38 (-400 (-549)))) ((-279 $ $) |has| (-747) (-1078)) ((-283) |has| |#1| (-541)) ((-484) |has| |#1| (-38 (-400 (-549)))) ((-541) |has| |#1| (-541)) ((-624 #1#) |has| |#1| (-38 (-400 (-549)))) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #1#) |has| |#1| (-38 (-400 (-549)))) ((-694 |#1|) |has| |#1| (-170)) ((-694 $) |has| |#1| (-541)) ((-703) . T) ((-871 (-1142)) -12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142)))) ((-944 |#1| #0# (-1048)) . T) ((-973) |has| |#1| (-38 (-400 (-549)))) ((-1024 #1#) |has| |#1| (-38 (-400 (-549)))) ((-1024 |#1|) . T) ((-1024 $) -1536 (|has| |#1| (-541)) (|has| |#1| (-170))) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1164) |has| |#1| (-38 (-400 (-549)))) ((-1167) |has| |#1| (-38 (-400 (-549)))) ((-1203 |#1| #0#) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2270 (((-621 (-1048)) $) NIL)) (-3009 (((-1142) $) 87)) (-2895 (((-1198 |#2| |#1|) $ (-747)) 73)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) NIL (|has| |#1| (-541)))) (-3044 (($ $) NIL (|has| |#1| (-541)))) (-2774 (((-112) $) 137 (|has| |#1| (-541)))) (-3691 (($ $ (-747)) 122) (($ $ (-747) (-747)) 124)) (-2585 (((-1122 (-2 (|:| |k| (-747)) (|:| |c| |#1|))) $) 42)) (-1662 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1510 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2416 (((-3 $ "failed") $ $) NIL)) (-2132 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1638 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1483 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2824 (($ (-1122 (-2 (|:| |k| (-747)) (|:| |c| |#1|)))) 53) (($ (-1122 |#1|)) NIL)) (-1684 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1538 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3034 (($) NIL T CONST)) (-1720 (($ $) 128)) (-2068 (($ $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-3061 (($ $) 135)) (-1413 (((-923 |#1|) $ (-747)) 63) (((-923 |#1|) $ (-747) (-747)) 65)) (-1410 (((-112) $) NIL)) (-1425 (($) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2729 (((-747) $) NIL) (((-747) $ (-747)) NIL)) (-2297 (((-112) $) NIL)) (-2670 (($ $) 112)) (-3621 (($ $ (-549)) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2389 (($ (-549) (-549) $) 130)) (-2625 (($ $ (-892)) 134)) (-1837 (($ (-1 |#1| (-549)) $) 106)) (-2988 (((-112) $) NIL)) (-2244 (($ |#1| (-747)) 15) (($ $ (-1048) (-747)) NIL) (($ $ (-621 (-1048)) (-621 (-747))) NIL)) (-2795 (($ (-1 |#1| |#1|) $) 94)) (-3631 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2027 (($ $) NIL)) (-2042 ((|#1| $) NIL)) (-3441 (((-1124) $) NIL)) (-2488 (($ $) 110)) (-3443 (($ $) 108)) (-3010 (($ (-549) (-549) $) 132)) (-3405 (($ $) 145 (|has| |#1| (-38 (-400 (-549))))) (($ $ (-1142)) 151 (-1536 (-12 (|has| |#1| (-15 -3405 (|#1| |#1| (-1142)))) (|has| |#1| (-15 -2270 ((-621 (-1142)) |#1|))) (|has| |#1| (-38 (-400 (-549))))) (-12 (|has| |#1| (-29 (-549))) (|has| |#1| (-38 (-400 (-549)))) (|has| |#1| (-930)) (|has| |#1| (-1164))))) (($ $ (-1221 |#2|)) 146 (|has| |#1| (-38 (-400 (-549)))))) (-3988 (((-1086) $) NIL)) (-2224 (($ $ (-549) (-549)) 116)) (-3796 (($ $ (-747)) 118)) (-2040 (((-3 $ "failed") $ $) NIL (|has| |#1| (-541)))) (-2717 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3169 (($ $) 114)) (-2684 (((-1122 |#1|) $ |#1|) 96 (|has| |#1| (-15 ** (|#1| |#1| (-747)))))) (-3339 ((|#1| $ (-747)) 91) (($ $ $) 126 (|has| (-747) (-1078)))) (-3455 (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142)) 103 (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-747) |#1|)))) (($ $) 98 (|has| |#1| (-15 * (|#1| (-747) |#1|)))) (($ $ (-1221 |#2|)) 99)) (-3977 (((-747) $) NIL)) (-1696 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1551 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1673 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1525 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1648 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1500 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3958 (($ $) 120)) (-3845 (((-834) $) NIL) (($ (-549)) 24) (($ (-400 (-549))) 143 (|has| |#1| (-38 (-400 (-549))))) (($ $) NIL (|has| |#1| (-541))) (($ |#1|) 23 (|has| |#1| (-170))) (($ (-1198 |#2| |#1|)) 80) (($ (-1221 |#2|)) 20)) (-2157 (((-1122 |#1|) $) NIL)) (-4068 ((|#1| $ (-747)) 90)) (-2343 (((-3 $ "failed") $) NIL (|has| |#1| (-143)))) (-2371 (((-747)) NIL)) (-2596 ((|#1| $) 88)) (-1731 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1585 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2441 (((-112) $ $) NIL (|has| |#1| (-541)))) (-1708 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1562 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1753 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1611 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-2659 ((|#1| $ (-747)) 86 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-747)))) (|has| |#1| (-15 -3845 (|#1| (-1142))))))) (-1932 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1625 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1743 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1598 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1719 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-1575 (($ $) NIL (|has| |#1| (-38 (-400 (-549)))))) (-3274 (($) 17 T CONST)) (-3286 (($) 13 T CONST)) (-1699 (($ $ (-621 (-1142)) (-621 (-747))) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142) (-747)) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-621 (-1142))) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-1142)) NIL (-12 (|has| |#1| (-15 * (|#1| (-747) |#1|))) (|has| |#1| (-871 (-1142))))) (($ $ (-747)) NIL (|has| |#1| (-15 * (|#1| (-747) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-747) |#1|))))) (-2387 (((-112) $ $) NIL)) (-2511 (($ $ |#1|) NIL (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) 102)) (-2484 (($ $ $) 18)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL) (($ $ |#1|) 140 (|has| |#1| (-356))) (($ $ $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 101) (($ (-400 (-549)) $) NIL (|has| |#1| (-38 (-400 (-549))))) (($ $ (-400 (-549))) NIL (|has| |#1| (-38 (-400 (-549)))))))
+(((-1217 |#1| |#2| |#3|) (-13 (-1216 |#1|) (-10 -8 (-15 -3845 ($ (-1198 |#2| |#1|))) (-15 -2895 ((-1198 |#2| |#1|) $ (-747))) (-15 -3845 ($ (-1221 |#2|))) (-15 -3455 ($ $ (-1221 |#2|))) (-15 -3443 ($ $)) (-15 -2488 ($ $)) (-15 -2670 ($ $)) (-15 -3169 ($ $)) (-15 -2224 ($ $ (-549) (-549))) (-15 -1720 ($ $)) (-15 -2389 ($ (-549) (-549) $)) (-15 -3010 ($ (-549) (-549) $)) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3405 ($ $ (-1221 |#2|))) |%noBranch|))) (-1018) (-1142) |#1|) (T -1217))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-1198 *4 *3)) (-4 *3 (-1018)) (-14 *4 (-1142)) (-14 *5 *3) (-5 *1 (-1217 *3 *4 *5)))) (-2895 (*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1198 *5 *4)) (-5 *1 (-1217 *4 *5 *6)) (-4 *4 (-1018)) (-14 *5 (-1142)) (-14 *6 *4))) (-3845 (*1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1217 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3455 (*1 *1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1217 *3 *4 *5)) (-4 *3 (-1018)) (-14 *5 *3))) (-3443 (*1 *1 *1) (-12 (-5 *1 (-1217 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1142)) (-14 *4 *2))) (-2488 (*1 *1 *1) (-12 (-5 *1 (-1217 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1142)) (-14 *4 *2))) (-2670 (*1 *1 *1) (-12 (-5 *1 (-1217 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1142)) (-14 *4 *2))) (-3169 (*1 *1 *1) (-12 (-5 *1 (-1217 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1142)) (-14 *4 *2))) (-2224 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1217 *3 *4 *5)) (-4 *3 (-1018)) (-14 *4 (-1142)) (-14 *5 *3))) (-1720 (*1 *1 *1) (-12 (-5 *1 (-1217 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1142)) (-14 *4 *2))) (-2389 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1217 *3 *4 *5)) (-4 *3 (-1018)) (-14 *4 (-1142)) (-14 *5 *3))) (-3010 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1217 *3 *4 *5)) (-4 *3 (-1018)) (-14 *4 (-1142)) (-14 *5 *3))) (-3405 (*1 *1 *1 *2) (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1217 *3 *4 *5)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3))))
+(-13 (-1216 |#1|) (-10 -8 (-15 -3845 ($ (-1198 |#2| |#1|))) (-15 -2895 ((-1198 |#2| |#1|) $ (-747))) (-15 -3845 ($ (-1221 |#2|))) (-15 -3455 ($ $ (-1221 |#2|))) (-15 -3443 ($ $)) (-15 -2488 ($ $)) (-15 -2670 ($ $)) (-15 -3169 ($ $)) (-15 -2224 ($ $ (-549) (-549))) (-15 -1720 ($ $)) (-15 -2389 ($ (-549) (-549) $)) (-15 -3010 ($ (-549) (-549) $)) (IF (|has| |#1| (-38 (-400 (-549)))) (-15 -3405 ($ $ (-1221 |#2|))) |%noBranch|)))
+((-2891 (((-1 (-1122 |#1|) (-621 (-1122 |#1|))) (-1 |#2| (-621 |#2|))) 24)) (-4045 (((-1 (-1122 |#1|) (-1122 |#1|) (-1122 |#1|)) (-1 |#2| |#2| |#2|)) 16)) (-1310 (((-1 (-1122 |#1|) (-1122 |#1|)) (-1 |#2| |#2|)) 13)) (-2258 ((|#2| (-1 |#2| |#2| |#2|) |#1| |#1|) 48)) (-2202 ((|#2| (-1 |#2| |#2|) |#1|) 46)) (-3819 ((|#2| (-1 |#2| (-621 |#2|)) (-621 |#1|)) 54)) (-3622 (((-621 |#2|) (-621 |#1|) (-621 (-1 |#2| (-621 |#2|)))) 61)) (-3452 ((|#2| |#2| |#2|) 43)))
+(((-1218 |#1| |#2|) (-10 -7 (-15 -1310 ((-1 (-1122 |#1|) (-1122 |#1|)) (-1 |#2| |#2|))) (-15 -4045 ((-1 (-1122 |#1|) (-1122 |#1|) (-1122 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2891 ((-1 (-1122 |#1|) (-621 (-1122 |#1|))) (-1 |#2| (-621 |#2|)))) (-15 -3452 (|#2| |#2| |#2|)) (-15 -2202 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -2258 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3819 (|#2| (-1 |#2| (-621 |#2|)) (-621 |#1|))) (-15 -3622 ((-621 |#2|) (-621 |#1|) (-621 (-1 |#2| (-621 |#2|)))))) (-38 (-400 (-549))) (-1216 |#1|)) (T -1218))
+((-3622 (*1 *2 *3 *4) (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 (-1 *6 (-621 *6)))) (-4 *5 (-38 (-400 (-549)))) (-4 *6 (-1216 *5)) (-5 *2 (-621 *6)) (-5 *1 (-1218 *5 *6)))) (-3819 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-621 *2))) (-5 *4 (-621 *5)) (-4 *5 (-38 (-400 (-549)))) (-4 *2 (-1216 *5)) (-5 *1 (-1218 *5 *2)))) (-2258 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1216 *4)) (-5 *1 (-1218 *4 *2)) (-4 *4 (-38 (-400 (-549)))))) (-2202 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1216 *4)) (-5 *1 (-1218 *4 *2)) (-4 *4 (-38 (-400 (-549)))))) (-3452 (*1 *2 *2 *2) (-12 (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1218 *3 *2)) (-4 *2 (-1216 *3)))) (-2891 (*1 *2 *3) (-12 (-5 *3 (-1 *5 (-621 *5))) (-4 *5 (-1216 *4)) (-4 *4 (-38 (-400 (-549)))) (-5 *2 (-1 (-1122 *4) (-621 (-1122 *4)))) (-5 *1 (-1218 *4 *5)))) (-4045 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1216 *4)) (-4 *4 (-38 (-400 (-549)))) (-5 *2 (-1 (-1122 *4) (-1122 *4) (-1122 *4))) (-5 *1 (-1218 *4 *5)))) (-1310 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1216 *4)) (-4 *4 (-38 (-400 (-549)))) (-5 *2 (-1 (-1122 *4) (-1122 *4))) (-5 *1 (-1218 *4 *5)))))
+(-10 -7 (-15 -1310 ((-1 (-1122 |#1|) (-1122 |#1|)) (-1 |#2| |#2|))) (-15 -4045 ((-1 (-1122 |#1|) (-1122 |#1|) (-1122 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2891 ((-1 (-1122 |#1|) (-621 (-1122 |#1|))) (-1 |#2| (-621 |#2|)))) (-15 -3452 (|#2| |#2| |#2|)) (-15 -2202 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -2258 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3819 (|#2| (-1 |#2| (-621 |#2|)) (-621 |#1|))) (-15 -3622 ((-621 |#2|) (-621 |#1|) (-621 (-1 |#2| (-621 |#2|))))))
+((-4032 ((|#2| |#4| (-747)) 30)) (-3745 ((|#4| |#2|) 25)) (-3157 ((|#4| (-400 |#2|)) 52 (|has| |#1| (-541)))) (-3362 (((-1 |#4| (-621 |#4|)) |#3|) 46)))
+(((-1219 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3745 (|#4| |#2|)) (-15 -4032 (|#2| |#4| (-747))) (-15 -3362 ((-1 |#4| (-621 |#4|)) |#3|)) (IF (|has| |#1| (-541)) (-15 -3157 (|#4| (-400 |#2|))) |%noBranch|)) (-1018) (-1201 |#1|) (-632 |#2|) (-1216 |#1|)) (T -1219))
+((-3157 (*1 *2 *3) (-12 (-5 *3 (-400 *5)) (-4 *5 (-1201 *4)) (-4 *4 (-541)) (-4 *4 (-1018)) (-4 *2 (-1216 *4)) (-5 *1 (-1219 *4 *5 *6 *2)) (-4 *6 (-632 *5)))) (-3362 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-4 *5 (-1201 *4)) (-5 *2 (-1 *6 (-621 *6))) (-5 *1 (-1219 *4 *5 *3 *6)) (-4 *3 (-632 *5)) (-4 *6 (-1216 *4)))) (-4032 (*1 *2 *3 *4) (-12 (-5 *4 (-747)) (-4 *5 (-1018)) (-4 *2 (-1201 *5)) (-5 *1 (-1219 *5 *2 *6 *3)) (-4 *6 (-632 *2)) (-4 *3 (-1216 *5)))) (-3745 (*1 *2 *3) (-12 (-4 *4 (-1018)) (-4 *3 (-1201 *4)) (-4 *2 (-1216 *4)) (-5 *1 (-1219 *4 *3 *5 *2)) (-4 *5 (-632 *3)))))
+(-10 -7 (-15 -3745 (|#4| |#2|)) (-15 -4032 (|#2| |#4| (-747))) (-15 -3362 ((-1 |#4| (-621 |#4|)) |#3|)) (IF (|has| |#1| (-541)) (-15 -3157 (|#4| (-400 |#2|))) |%noBranch|))
+NIL
+(((-1220) (-138)) (T -1220))
+NIL
+(-13 (-10 -7 (-6 -2623)))
+((-3832 (((-112) $ $) NIL)) (-3009 (((-1142)) 12)) (-3441 (((-1124) $) 17)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 11) (((-1142) $) 8)) (-2387 (((-112) $ $) 14)))
+(((-1221 |#1|) (-13 (-1066) (-593 (-1142)) (-10 -8 (-15 -3845 ((-1142) $)) (-15 -3009 ((-1142))))) (-1142)) (T -1221))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-1221 *3)) (-14 *3 *2))) (-3009 (*1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1221 *3)) (-14 *3 *2))))
+(-13 (-1066) (-593 (-1142)) (-10 -8 (-15 -3845 ((-1142) $)) (-15 -3009 ((-1142)))))
+((-3768 (($ (-747)) 18)) (-4049 (((-665 |#2|) $ $) 40)) (-3144 ((|#2| $) 48)) (-4210 ((|#2| $) 47)) (-1283 ((|#2| $ $) 35)) (-1918 (($ $ $) 44)) (-2498 (($ $) 22) (($ $ $) 28)) (-2484 (($ $ $) 15)) (* (($ (-549) $) 25) (($ |#2| $) 31) (($ $ |#2|) 30)))
+(((-1222 |#1| |#2|) (-10 -8 (-15 -3144 (|#2| |#1|)) (-15 -4210 (|#2| |#1|)) (-15 -1918 (|#1| |#1| |#1|)) (-15 -4049 ((-665 |#2|) |#1| |#1|)) (-15 -1283 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 -2498 (|#1| |#1| |#1|)) (-15 -2498 (|#1| |#1|)) (-15 -3768 (|#1| (-747))) (-15 -2484 (|#1| |#1| |#1|))) (-1223 |#2|) (-1179)) (T -1222))
+NIL
+(-10 -8 (-15 -3144 (|#2| |#1|)) (-15 -4210 (|#2| |#1|)) (-15 -1918 (|#1| |#1| |#1|)) (-15 -4049 ((-665 |#2|) |#1| |#1|)) (-15 -1283 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-549) |#1|)) (-15 -2498 (|#1| |#1| |#1|)) (-15 -2498 (|#1| |#1|)) (-15 -3768 (|#1| (-747))) (-15 -2484 (|#1| |#1| |#1|)))
+((-3832 (((-112) $ $) 19 (|has| |#1| (-1066)))) (-3768 (($ (-747)) 112 (|has| |#1| (-23)))) (-3659 (((-1230) $ (-549) (-549)) 40 (|has| $ (-6 -4337)))) (-2239 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-823)))) (-2015 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4337))) (($ $) 88 (-12 (|has| |#1| (-823)) (|has| $ (-6 -4337))))) (-3191 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-823)))) (-2850 (((-112) $ (-747)) 8)) (-2250 ((|#1| $ (-549) |#1|) 52 (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) 58 (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4336)))) (-3034 (($) 7 T CONST)) (-2918 (($ $) 90 (|has| $ (-6 -4337)))) (-3062 (($ $) 100)) (-3675 (($ $) 78 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3812 (($ |#1| $) 77 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4336)))) (-1875 ((|#1| $ (-549) |#1|) 53 (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) 51)) (-2881 (((-549) (-1 (-112) |#1|) $) 97) (((-549) |#1| $) 96 (|has| |#1| (-1066))) (((-549) |#1| $ (-549)) 95 (|has| |#1| (-1066)))) (-2987 (((-621 |#1|) $) 30 (|has| $ (-6 -4336)))) (-4049 (((-665 |#1|) $ $) 105 (|has| |#1| (-1018)))) (-3743 (($ (-747) |#1|) 69)) (-1777 (((-112) $ (-747)) 9)) (-2807 (((-549) $) 43 (|has| (-549) (-823)))) (-2861 (($ $ $) 87 (|has| |#1| (-823)))) (-3050 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-823)))) (-3698 (((-621 |#1|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-3063 (((-549) $) 44 (|has| (-549) (-823)))) (-3574 (($ $ $) 86 (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3144 ((|#1| $) 102 (-12 (|has| |#1| (-1018)) (|has| |#1| (-973))))) (-3942 (((-112) $ (-747)) 10)) (-4210 ((|#1| $) 103 (-12 (|has| |#1| (-1018)) (|has| |#1| (-973))))) (-3441 (((-1124) $) 22 (|has| |#1| (-1066)))) (-2613 (($ |#1| $ (-549)) 60) (($ $ $ (-549)) 59)) (-2296 (((-621 (-549)) $) 46)) (-2284 (((-112) (-549) $) 47)) (-3988 (((-1086) $) 21 (|has| |#1| (-1066)))) (-3645 ((|#1| $) 42 (|has| (-549) (-823)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-1943 (($ $ |#1|) 41 (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) 26 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) 25 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) 23 (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) 14)) (-2478 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) 48)) (-2643 (((-112) $) 11)) (-3288 (($) 12)) (-3339 ((|#1| $ (-549) |#1|) 50) ((|#1| $ (-549)) 49) (($ $ (-1192 (-549))) 63)) (-1283 ((|#1| $ $) 106 (|has| |#1| (-1018)))) (-2162 (($ $ (-549)) 62) (($ $ (-1192 (-549))) 61)) (-1918 (($ $ $) 104 (|has| |#1| (-1018)))) (-3997 (((-747) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4336))) (((-747) |#1| $) 28 (-12 (|has| |#1| (-1066)) (|has| $ (-6 -4336))))) (-2049 (($ $ $ (-549)) 91 (|has| $ (-6 -4337)))) (-2279 (($ $) 13)) (-2843 (((-525) $) 79 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 70)) (-1950 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-621 $)) 65)) (-3845 (((-834) $) 18 (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) 84 (|has| |#1| (-823)))) (-2423 (((-112) $ $) 83 (|has| |#1| (-823)))) (-2387 (((-112) $ $) 20 (|has| |#1| (-1066)))) (-2436 (((-112) $ $) 85 (|has| |#1| (-823)))) (-2409 (((-112) $ $) 82 (|has| |#1| (-823)))) (-2498 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-2484 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-549) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-703))) (($ $ |#1|) 107 (|has| |#1| (-703)))) (-3774 (((-747) $) 6 (|has| $ (-6 -4336)))))
+(((-1223 |#1|) (-138) (-1179)) (T -1223))
+((-2484 (*1 *1 *1 *1) (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-25)))) (-3768 (*1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1223 *3)) (-4 *3 (-23)) (-4 *3 (-1179)))) (-2498 (*1 *1 *1) (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-21)))) (-2498 (*1 *1 *1 *1) (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-21)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-549)) (-4 *1 (-1223 *3)) (-4 *3 (-1179)) (-4 *3 (-21)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-703)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-703)))) (-1283 (*1 *2 *1 *1) (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-1018)))) (-4049 (*1 *2 *1 *1) (-12 (-4 *1 (-1223 *3)) (-4 *3 (-1179)) (-4 *3 (-1018)) (-5 *2 (-665 *3)))) (-1918 (*1 *1 *1 *1) (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-1018)))) (-4210 (*1 *2 *1) (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-973)) (-4 *2 (-1018)))) (-3144 (*1 *2 *1) (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-973)) (-4 *2 (-1018)))))
+(-13 (-19 |t#1|) (-10 -8 (IF (|has| |t#1| (-25)) (-15 -2484 ($ $ $)) |%noBranch|) (IF (|has| |t#1| (-23)) (-15 -3768 ($ (-747))) |%noBranch|) (IF (|has| |t#1| (-21)) (PROGN (-15 -2498 ($ $)) (-15 -2498 ($ $ $)) (-15 * ($ (-549) $))) |%noBranch|) (IF (|has| |t#1| (-703)) (PROGN (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-1018)) (PROGN (-15 -1283 (|t#1| $ $)) (-15 -4049 ((-665 |t#1|) $ $)) (-15 -1918 ($ $ $))) |%noBranch|) (IF (|has| |t#1| (-973)) (IF (|has| |t#1| (-1018)) (PROGN (-15 -4210 (|t#1| $)) (-15 -3144 (|t#1| $))) |%noBranch|) |%noBranch|)))
+(((-34) . T) ((-101) -1536 (|has| |#1| (-1066)) (|has| |#1| (-823))) ((-593 (-834)) -1536 (|has| |#1| (-1066)) (|has| |#1| (-823)) (|has| |#1| (-593 (-834)))) ((-149 |#1|) . T) ((-594 (-525)) |has| |#1| (-594 (-525))) ((-279 #0=(-549) |#1|) . T) ((-281 #0# |#1|) . T) ((-302 |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-366 |#1|) . T) ((-481 |#1|) . T) ((-584 #0# |#1|) . T) ((-505 |#1| |#1|) -12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))) ((-627 |#1|) . T) ((-19 |#1|) . T) ((-823) |has| |#1| (-823)) ((-1066) -1536 (|has| |#1| (-1066)) (|has| |#1| (-823))) ((-1179) . T))
+((-2394 (((-1225 |#2|) (-1 |#2| |#1| |#2|) (-1225 |#1|) |#2|) 13)) (-2556 ((|#2| (-1 |#2| |#1| |#2|) (-1225 |#1|) |#2|) 15)) (-2795 (((-3 (-1225 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1225 |#1|)) 28) (((-1225 |#2|) (-1 |#2| |#1|) (-1225 |#1|)) 18)))
+(((-1224 |#1| |#2|) (-10 -7 (-15 -2394 ((-1225 |#2|) (-1 |#2| |#1| |#2|) (-1225 |#1|) |#2|)) (-15 -2556 (|#2| (-1 |#2| |#1| |#2|) (-1225 |#1|) |#2|)) (-15 -2795 ((-1225 |#2|) (-1 |#2| |#1|) (-1225 |#1|))) (-15 -2795 ((-3 (-1225 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1225 |#1|)))) (-1179) (-1179)) (T -1224))
+((-2795 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1225 *5)) (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-1225 *6)) (-5 *1 (-1224 *5 *6)))) (-2795 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1225 *5)) (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-1225 *6)) (-5 *1 (-1224 *5 *6)))) (-2556 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1225 *5)) (-4 *5 (-1179)) (-4 *2 (-1179)) (-5 *1 (-1224 *5 *2)))) (-2394 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1225 *6)) (-4 *6 (-1179)) (-4 *5 (-1179)) (-5 *2 (-1225 *5)) (-5 *1 (-1224 *6 *5)))))
+(-10 -7 (-15 -2394 ((-1225 |#2|) (-1 |#2| |#1| |#2|) (-1225 |#1|) |#2|)) (-15 -2556 (|#2| (-1 |#2| |#1| |#2|) (-1225 |#1|) |#2|)) (-15 -2795 ((-1225 |#2|) (-1 |#2| |#1|) (-1225 |#1|))) (-15 -2795 ((-3 (-1225 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1225 |#1|))))
+((-3832 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-3768 (($ (-747)) NIL (|has| |#1| (-23)))) (-3444 (($ (-621 |#1|)) 9)) (-3659 (((-1230) $ (-549) (-549)) NIL (|has| $ (-6 -4337)))) (-2239 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-823)))) (-2015 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4337))) (($ $) NIL (-12 (|has| $ (-6 -4337)) (|has| |#1| (-823))))) (-3191 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-823)))) (-2850 (((-112) $ (-747)) NIL)) (-2250 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4337))) ((|#1| $ (-1192 (-549)) |#1|) NIL (|has| $ (-6 -4337)))) (-1488 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-3034 (($) NIL T CONST)) (-2918 (($ $) NIL (|has| $ (-6 -4337)))) (-3062 (($ $) NIL)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3812 (($ |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2556 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4336))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4336)))) (-1875 ((|#1| $ (-549) |#1|) NIL (|has| $ (-6 -4337)))) (-1807 ((|#1| $ (-549)) NIL)) (-2881 (((-549) (-1 (-112) |#1|) $) NIL) (((-549) |#1| $) NIL (|has| |#1| (-1066))) (((-549) |#1| $ (-549)) NIL (|has| |#1| (-1066)))) (-2987 (((-621 |#1|) $) 15 (|has| $ (-6 -4336)))) (-4049 (((-665 |#1|) $ $) NIL (|has| |#1| (-1018)))) (-3743 (($ (-747) |#1|) NIL)) (-1777 (((-112) $ (-747)) NIL)) (-2807 (((-549) $) NIL (|has| (-549) (-823)))) (-2861 (($ $ $) NIL (|has| |#1| (-823)))) (-3050 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-823)))) (-3698 (((-621 |#1|) $) NIL (|has| $ (-6 -4336)))) (-1593 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3063 (((-549) $) NIL (|has| (-549) (-823)))) (-3574 (($ $ $) NIL (|has| |#1| (-823)))) (-1864 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3144 ((|#1| $) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1018))))) (-3942 (((-112) $ (-747)) NIL)) (-4210 ((|#1| $) NIL (-12 (|has| |#1| (-973)) (|has| |#1| (-1018))))) (-3441 (((-1124) $) NIL (|has| |#1| (-1066)))) (-2613 (($ |#1| $ (-549)) NIL) (($ $ $ (-549)) NIL)) (-2296 (((-621 (-549)) $) NIL)) (-2284 (((-112) (-549) $) NIL)) (-3988 (((-1086) $) NIL (|has| |#1| (-1066)))) (-3645 ((|#1| $) NIL (|has| (-549) (-823)))) (-3959 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1943 (($ $ |#1|) NIL (|has| $ (-6 -4337)))) (-3360 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 (-287 |#1|))) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-287 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066)))) (($ $ (-621 |#1|) (-621 |#1|)) NIL (-12 (|has| |#1| (-302 |#1|)) (|has| |#1| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2478 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-3347 (((-621 |#1|) $) NIL)) (-2643 (((-112) $) NIL)) (-3288 (($) NIL)) (-3339 ((|#1| $ (-549) |#1|) NIL) ((|#1| $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-1283 ((|#1| $ $) NIL (|has| |#1| (-1018)))) (-2162 (($ $ (-549)) NIL) (($ $ (-1192 (-549))) NIL)) (-1918 (($ $ $) NIL (|has| |#1| (-1018)))) (-3997 (((-747) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336))) (((-747) |#1| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#1| (-1066))))) (-2049 (($ $ $ (-549)) NIL (|has| $ (-6 -4337)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) 19 (|has| |#1| (-594 (-525))))) (-3853 (($ (-621 |#1|)) 8)) (-1950 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-621 $)) NIL)) (-3845 (((-834) $) NIL (|has| |#1| (-593 (-834))))) (-3025 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4336)))) (-2447 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2423 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2387 (((-112) $ $) NIL (|has| |#1| (-1066)))) (-2436 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2409 (((-112) $ $) NIL (|has| |#1| (-823)))) (-2498 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-2484 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-549) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-703))) (($ $ |#1|) NIL (|has| |#1| (-703)))) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-1225 |#1|) (-13 (-1223 |#1|) (-10 -8 (-15 -3444 ($ (-621 |#1|))))) (-1179)) (T -1225))
+((-3444 (*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-5 *1 (-1225 *3)))))
+(-13 (-1223 |#1|) (-10 -8 (-15 -3444 ($ (-621 |#1|)))))
+((-3832 (((-112) $ $) NIL)) (-2523 (((-1124) $ (-1124)) 90) (((-1124) $ (-1124) (-1124)) 88) (((-1124) $ (-1124) (-621 (-1124))) 87)) (-1511 (($) 59)) (-2823 (((-1230) $ (-460) (-892)) 45)) (-2034 (((-1230) $ (-892) (-1124)) 73) (((-1230) $ (-892) (-845)) 74)) (-2781 (((-1230) $ (-892) (-372) (-372)) 48)) (-1594 (((-1230) $ (-1124)) 69)) (-2884 (((-1230) $ (-892) (-1124)) 78)) (-2828 (((-1230) $ (-892) (-372) (-372)) 49)) (-3867 (((-1230) $ (-892) (-892)) 46)) (-2496 (((-1230) $) 70)) (-3151 (((-1230) $ (-892) (-1124)) 77)) (-2208 (((-1230) $ (-460) (-892)) 31)) (-2359 (((-1230) $ (-892) (-1124)) 76)) (-1484 (((-621 (-256)) $) 23) (($ $ (-621 (-256))) 24)) (-2877 (((-1230) $ (-747) (-747)) 43)) (-3608 (($ $) 60) (($ (-460) (-621 (-256))) 61)) (-3441 (((-1124) $) NIL)) (-3336 (((-549) $) 38)) (-3988 (((-1086) $) NIL)) (-3505 (((-1225 (-3 (-460) "undefined")) $) 37)) (-4061 (((-1225 (-2 (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)) (|:| -2359 (-549)) (|:| -3341 (-549)) (|:| |spline| (-549)) (|:| -4199 (-549)) (|:| |axesColor| (-845)) (|:| -2034 (-549)) (|:| |unitsColor| (-845)) (|:| |showing| (-549)))) $) 36)) (-2914 (((-1230) $ (-892) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-845) (-549) (-845) (-549)) 68)) (-1556 (((-621 (-914 (-219))) $) NIL)) (-2580 (((-460) $ (-892)) 33)) (-2753 (((-1230) $ (-747) (-747) (-892) (-892)) 40)) (-3244 (((-1230) $ (-1124)) 79)) (-3341 (((-1230) $ (-892) (-1124)) 75)) (-3845 (((-834) $) 85)) (-2679 (((-1230) $) 80)) (-4199 (((-1230) $ (-892) (-1124)) 71) (((-1230) $ (-892) (-845)) 72)) (-2387 (((-112) $ $) NIL)))
+(((-1226) (-13 (-1066) (-10 -8 (-15 -1556 ((-621 (-914 (-219))) $)) (-15 -1511 ($)) (-15 -3608 ($ $)) (-15 -1484 ((-621 (-256)) $)) (-15 -1484 ($ $ (-621 (-256)))) (-15 -3608 ($ (-460) (-621 (-256)))) (-15 -2914 ((-1230) $ (-892) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-845) (-549) (-845) (-549))) (-15 -4061 ((-1225 (-2 (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)) (|:| -2359 (-549)) (|:| -3341 (-549)) (|:| |spline| (-549)) (|:| -4199 (-549)) (|:| |axesColor| (-845)) (|:| -2034 (-549)) (|:| |unitsColor| (-845)) (|:| |showing| (-549)))) $)) (-15 -3505 ((-1225 (-3 (-460) "undefined")) $)) (-15 -1594 ((-1230) $ (-1124))) (-15 -2208 ((-1230) $ (-460) (-892))) (-15 -2580 ((-460) $ (-892))) (-15 -4199 ((-1230) $ (-892) (-1124))) (-15 -4199 ((-1230) $ (-892) (-845))) (-15 -2034 ((-1230) $ (-892) (-1124))) (-15 -2034 ((-1230) $ (-892) (-845))) (-15 -2359 ((-1230) $ (-892) (-1124))) (-15 -3151 ((-1230) $ (-892) (-1124))) (-15 -3341 ((-1230) $ (-892) (-1124))) (-15 -3244 ((-1230) $ (-1124))) (-15 -2679 ((-1230) $)) (-15 -2753 ((-1230) $ (-747) (-747) (-892) (-892))) (-15 -2828 ((-1230) $ (-892) (-372) (-372))) (-15 -2781 ((-1230) $ (-892) (-372) (-372))) (-15 -2884 ((-1230) $ (-892) (-1124))) (-15 -2877 ((-1230) $ (-747) (-747))) (-15 -2823 ((-1230) $ (-460) (-892))) (-15 -3867 ((-1230) $ (-892) (-892))) (-15 -2523 ((-1124) $ (-1124))) (-15 -2523 ((-1124) $ (-1124) (-1124))) (-15 -2523 ((-1124) $ (-1124) (-621 (-1124)))) (-15 -2496 ((-1230) $)) (-15 -3336 ((-549) $)) (-15 -3845 ((-834) $))))) (T -1226))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-1226)))) (-1556 (*1 *2 *1) (-12 (-5 *2 (-621 (-914 (-219)))) (-5 *1 (-1226)))) (-1511 (*1 *1) (-5 *1 (-1226))) (-3608 (*1 *1 *1) (-5 *1 (-1226))) (-1484 (*1 *2 *1) (-12 (-5 *2 (-621 (-256))) (-5 *1 (-1226)))) (-1484 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-256))) (-5 *1 (-1226)))) (-3608 (*1 *1 *2 *3) (-12 (-5 *2 (-460)) (-5 *3 (-621 (-256))) (-5 *1 (-1226)))) (-2914 (*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5) (-12 (-5 *3 (-892)) (-5 *4 (-219)) (-5 *5 (-549)) (-5 *6 (-845)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-4061 (*1 *2 *1) (-12 (-5 *2 (-1225 (-2 (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)) (|:| -2359 (-549)) (|:| -3341 (-549)) (|:| |spline| (-549)) (|:| -4199 (-549)) (|:| |axesColor| (-845)) (|:| -2034 (-549)) (|:| |unitsColor| (-845)) (|:| |showing| (-549))))) (-5 *1 (-1226)))) (-3505 (*1 *2 *1) (-12 (-5 *2 (-1225 (-3 (-460) "undefined"))) (-5 *1 (-1226)))) (-1594 (*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-2208 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-460)) (-5 *4 (-892)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-2580 (*1 *2 *1 *3) (-12 (-5 *3 (-892)) (-5 *2 (-460)) (-5 *1 (-1226)))) (-4199 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-4199 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-845)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-2034 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-2034 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-845)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-2359 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-3151 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-3341 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-3244 (*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-2679 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-1226)))) (-2753 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-747)) (-5 *4 (-892)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-2828 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-892)) (-5 *4 (-372)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-2781 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-892)) (-5 *4 (-372)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-2884 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-892)) (-5 *4 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-2877 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-2823 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-460)) (-5 *4 (-892)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-3867 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1230)) (-5 *1 (-1226)))) (-2523 (*1 *2 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1226)))) (-2523 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1226)))) (-2523 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-621 (-1124))) (-5 *2 (-1124)) (-5 *1 (-1226)))) (-2496 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-1226)))) (-3336 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1226)))))
+(-13 (-1066) (-10 -8 (-15 -1556 ((-621 (-914 (-219))) $)) (-15 -1511 ($)) (-15 -3608 ($ $)) (-15 -1484 ((-621 (-256)) $)) (-15 -1484 ($ $ (-621 (-256)))) (-15 -3608 ($ (-460) (-621 (-256)))) (-15 -2914 ((-1230) $ (-892) (-219) (-219) (-219) (-219) (-549) (-549) (-549) (-549) (-845) (-549) (-845) (-549))) (-15 -4061 ((-1225 (-2 (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)) (|:| -2359 (-549)) (|:| -3341 (-549)) (|:| |spline| (-549)) (|:| -4199 (-549)) (|:| |axesColor| (-845)) (|:| -2034 (-549)) (|:| |unitsColor| (-845)) (|:| |showing| (-549)))) $)) (-15 -3505 ((-1225 (-3 (-460) "undefined")) $)) (-15 -1594 ((-1230) $ (-1124))) (-15 -2208 ((-1230) $ (-460) (-892))) (-15 -2580 ((-460) $ (-892))) (-15 -4199 ((-1230) $ (-892) (-1124))) (-15 -4199 ((-1230) $ (-892) (-845))) (-15 -2034 ((-1230) $ (-892) (-1124))) (-15 -2034 ((-1230) $ (-892) (-845))) (-15 -2359 ((-1230) $ (-892) (-1124))) (-15 -3151 ((-1230) $ (-892) (-1124))) (-15 -3341 ((-1230) $ (-892) (-1124))) (-15 -3244 ((-1230) $ (-1124))) (-15 -2679 ((-1230) $)) (-15 -2753 ((-1230) $ (-747) (-747) (-892) (-892))) (-15 -2828 ((-1230) $ (-892) (-372) (-372))) (-15 -2781 ((-1230) $ (-892) (-372) (-372))) (-15 -2884 ((-1230) $ (-892) (-1124))) (-15 -2877 ((-1230) $ (-747) (-747))) (-15 -2823 ((-1230) $ (-460) (-892))) (-15 -3867 ((-1230) $ (-892) (-892))) (-15 -2523 ((-1124) $ (-1124))) (-15 -2523 ((-1124) $ (-1124) (-1124))) (-15 -2523 ((-1124) $ (-1124) (-621 (-1124)))) (-15 -2496 ((-1230) $)) (-15 -3336 ((-549) $)) (-15 -3845 ((-834) $))))
+((-3832 (((-112) $ $) NIL)) (-1977 (((-1230) $ (-372)) 140) (((-1230) $ (-372) (-372) (-372)) 141)) (-2523 (((-1124) $ (-1124)) 148) (((-1124) $ (-1124) (-1124)) 146) (((-1124) $ (-1124) (-621 (-1124))) 145)) (-1901 (($) 50)) (-2972 (((-1230) $ (-372) (-372) (-372) (-372) (-372)) 116) (((-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))) $) 114) (((-1230) $ (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)))) 115) (((-1230) $ (-549) (-549) (-372) (-372) (-372)) 117) (((-1230) $ (-372) (-372)) 118) (((-1230) $ (-372) (-372) (-372)) 125)) (-3932 (((-372)) 97) (((-372) (-372)) 98)) (-3268 (((-372)) 92) (((-372) (-372)) 94)) (-4129 (((-372)) 95) (((-372) (-372)) 96)) (-1515 (((-372)) 101) (((-372) (-372)) 102)) (-1763 (((-372)) 99) (((-372) (-372)) 100)) (-2781 (((-1230) $ (-372) (-372)) 142)) (-1594 (((-1230) $ (-1124)) 126)) (-1788 (((-1099 (-219)) $) 51) (($ $ (-1099 (-219))) 52)) (-2992 (((-1230) $ (-1124)) 154)) (-1915 (((-1230) $ (-1124)) 155)) (-2727 (((-1230) $ (-372) (-372)) 124) (((-1230) $ (-549) (-549)) 139)) (-3867 (((-1230) $ (-892) (-892)) 132)) (-2496 (((-1230) $) 112)) (-3383 (((-1230) $ (-1124)) 153)) (-2960 (((-1230) $ (-1124)) 109)) (-1484 (((-621 (-256)) $) 53) (($ $ (-621 (-256))) 54)) (-2877 (((-1230) $ (-747) (-747)) 131)) (-2325 (((-1230) $ (-747) (-914 (-219))) 160)) (-4180 (($ $) 56) (($ (-1099 (-219)) (-1124)) 57) (($ (-1099 (-219)) (-621 (-256))) 58)) (-1656 (((-1230) $ (-372) (-372) (-372)) 106)) (-3441 (((-1124) $) NIL)) (-3336 (((-549) $) 103)) (-2428 (((-1230) $ (-372)) 143)) (-1417 (((-1230) $ (-372)) 158)) (-3988 (((-1086) $) NIL)) (-4259 (((-1230) $ (-372)) 157)) (-2104 (((-1230) $ (-1124)) 111)) (-2753 (((-1230) $ (-747) (-747) (-892) (-892)) 130)) (-4042 (((-1230) $ (-1124)) 108)) (-3244 (((-1230) $ (-1124)) 110)) (-1782 (((-1230) $ (-155) (-155)) 129)) (-3845 (((-834) $) 137)) (-2679 (((-1230) $) 113)) (-2251 (((-1230) $ (-1124)) 156)) (-4199 (((-1230) $ (-1124)) 107)) (-2387 (((-112) $ $) NIL)))
+(((-1227) (-13 (-1066) (-10 -8 (-15 -3268 ((-372))) (-15 -3268 ((-372) (-372))) (-15 -4129 ((-372))) (-15 -4129 ((-372) (-372))) (-15 -3932 ((-372))) (-15 -3932 ((-372) (-372))) (-15 -1763 ((-372))) (-15 -1763 ((-372) (-372))) (-15 -1515 ((-372))) (-15 -1515 ((-372) (-372))) (-15 -1901 ($)) (-15 -4180 ($ $)) (-15 -4180 ($ (-1099 (-219)) (-1124))) (-15 -4180 ($ (-1099 (-219)) (-621 (-256)))) (-15 -1788 ((-1099 (-219)) $)) (-15 -1788 ($ $ (-1099 (-219)))) (-15 -2325 ((-1230) $ (-747) (-914 (-219)))) (-15 -1484 ((-621 (-256)) $)) (-15 -1484 ($ $ (-621 (-256)))) (-15 -2877 ((-1230) $ (-747) (-747))) (-15 -3867 ((-1230) $ (-892) (-892))) (-15 -1594 ((-1230) $ (-1124))) (-15 -2753 ((-1230) $ (-747) (-747) (-892) (-892))) (-15 -2972 ((-1230) $ (-372) (-372) (-372) (-372) (-372))) (-15 -2972 ((-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))) $)) (-15 -2972 ((-1230) $ (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))) (-15 -2972 ((-1230) $ (-549) (-549) (-372) (-372) (-372))) (-15 -2972 ((-1230) $ (-372) (-372))) (-15 -2972 ((-1230) $ (-372) (-372) (-372))) (-15 -3244 ((-1230) $ (-1124))) (-15 -4199 ((-1230) $ (-1124))) (-15 -4042 ((-1230) $ (-1124))) (-15 -2960 ((-1230) $ (-1124))) (-15 -2104 ((-1230) $ (-1124))) (-15 -2727 ((-1230) $ (-372) (-372))) (-15 -2727 ((-1230) $ (-549) (-549))) (-15 -1977 ((-1230) $ (-372))) (-15 -1977 ((-1230) $ (-372) (-372) (-372))) (-15 -2781 ((-1230) $ (-372) (-372))) (-15 -3383 ((-1230) $ (-1124))) (-15 -4259 ((-1230) $ (-372))) (-15 -1417 ((-1230) $ (-372))) (-15 -2992 ((-1230) $ (-1124))) (-15 -1915 ((-1230) $ (-1124))) (-15 -2251 ((-1230) $ (-1124))) (-15 -1656 ((-1230) $ (-372) (-372) (-372))) (-15 -2428 ((-1230) $ (-372))) (-15 -2496 ((-1230) $)) (-15 -1782 ((-1230) $ (-155) (-155))) (-15 -2523 ((-1124) $ (-1124))) (-15 -2523 ((-1124) $ (-1124) (-1124))) (-15 -2523 ((-1124) $ (-1124) (-621 (-1124)))) (-15 -2679 ((-1230) $)) (-15 -3336 ((-549) $))))) (T -1227))
+((-3268 (*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227)))) (-3268 (*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227)))) (-4129 (*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227)))) (-4129 (*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227)))) (-3932 (*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227)))) (-3932 (*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227)))) (-1763 (*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227)))) (-1763 (*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227)))) (-1515 (*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227)))) (-1515 (*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227)))) (-1901 (*1 *1) (-5 *1 (-1227))) (-4180 (*1 *1 *1) (-5 *1 (-1227))) (-4180 (*1 *1 *2 *3) (-12 (-5 *2 (-1099 (-219))) (-5 *3 (-1124)) (-5 *1 (-1227)))) (-4180 (*1 *1 *2 *3) (-12 (-5 *2 (-1099 (-219))) (-5 *3 (-621 (-256))) (-5 *1 (-1227)))) (-1788 (*1 *2 *1) (-12 (-5 *2 (-1099 (-219))) (-5 *1 (-1227)))) (-1788 (*1 *1 *1 *2) (-12 (-5 *2 (-1099 (-219))) (-5 *1 (-1227)))) (-2325 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-747)) (-5 *4 (-914 (-219))) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-1484 (*1 *2 *1) (-12 (-5 *2 (-621 (-256))) (-5 *1 (-1227)))) (-1484 (*1 *1 *1 *2) (-12 (-5 *2 (-621 (-256))) (-5 *1 (-1227)))) (-2877 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-3867 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-1594 (*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-2753 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-747)) (-5 *4 (-892)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-2972 (*1 *2 *1 *3 *3 *3 *3 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-2972 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)))) (-5 *1 (-1227)))) (-2972 (*1 *2 *1 *3) (-12 (-5 *3 (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219)))) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-2972 (*1 *2 *1 *3 *3 *4 *4 *4) (-12 (-5 *3 (-549)) (-5 *4 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-2972 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-2972 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-3244 (*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-4199 (*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-4042 (*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-2960 (*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-2104 (*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-2727 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-2727 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-1977 (*1 *2 *1 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-1977 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-2781 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-3383 (*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-4259 (*1 *2 *1 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-1417 (*1 *2 *1 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-2992 (*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-1915 (*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-2251 (*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-1656 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-2428 (*1 *2 *1 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-2496 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-1227)))) (-1782 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-155)) (-5 *2 (-1230)) (-5 *1 (-1227)))) (-2523 (*1 *2 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1227)))) (-2523 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1227)))) (-2523 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-621 (-1124))) (-5 *2 (-1124)) (-5 *1 (-1227)))) (-2679 (*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-1227)))) (-3336 (*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1227)))))
+(-13 (-1066) (-10 -8 (-15 -3268 ((-372))) (-15 -3268 ((-372) (-372))) (-15 -4129 ((-372))) (-15 -4129 ((-372) (-372))) (-15 -3932 ((-372))) (-15 -3932 ((-372) (-372))) (-15 -1763 ((-372))) (-15 -1763 ((-372) (-372))) (-15 -1515 ((-372))) (-15 -1515 ((-372) (-372))) (-15 -1901 ($)) (-15 -4180 ($ $)) (-15 -4180 ($ (-1099 (-219)) (-1124))) (-15 -4180 ($ (-1099 (-219)) (-621 (-256)))) (-15 -1788 ((-1099 (-219)) $)) (-15 -1788 ($ $ (-1099 (-219)))) (-15 -2325 ((-1230) $ (-747) (-914 (-219)))) (-15 -1484 ((-621 (-256)) $)) (-15 -1484 ($ $ (-621 (-256)))) (-15 -2877 ((-1230) $ (-747) (-747))) (-15 -3867 ((-1230) $ (-892) (-892))) (-15 -1594 ((-1230) $ (-1124))) (-15 -2753 ((-1230) $ (-747) (-747) (-892) (-892))) (-15 -2972 ((-1230) $ (-372) (-372) (-372) (-372) (-372))) (-15 -2972 ((-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))) $)) (-15 -2972 ((-1230) $ (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219)) (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219)) (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))) (-15 -2972 ((-1230) $ (-549) (-549) (-372) (-372) (-372))) (-15 -2972 ((-1230) $ (-372) (-372))) (-15 -2972 ((-1230) $ (-372) (-372) (-372))) (-15 -3244 ((-1230) $ (-1124))) (-15 -4199 ((-1230) $ (-1124))) (-15 -4042 ((-1230) $ (-1124))) (-15 -2960 ((-1230) $ (-1124))) (-15 -2104 ((-1230) $ (-1124))) (-15 -2727 ((-1230) $ (-372) (-372))) (-15 -2727 ((-1230) $ (-549) (-549))) (-15 -1977 ((-1230) $ (-372))) (-15 -1977 ((-1230) $ (-372) (-372) (-372))) (-15 -2781 ((-1230) $ (-372) (-372))) (-15 -3383 ((-1230) $ (-1124))) (-15 -4259 ((-1230) $ (-372))) (-15 -1417 ((-1230) $ (-372))) (-15 -2992 ((-1230) $ (-1124))) (-15 -1915 ((-1230) $ (-1124))) (-15 -2251 ((-1230) $ (-1124))) (-15 -1656 ((-1230) $ (-372) (-372) (-372))) (-15 -2428 ((-1230) $ (-372))) (-15 -2496 ((-1230) $)) (-15 -1782 ((-1230) $ (-155) (-155))) (-15 -2523 ((-1124) $ (-1124))) (-15 -2523 ((-1124) $ (-1124) (-1124))) (-15 -2523 ((-1124) $ (-1124) (-621 (-1124)))) (-15 -2679 ((-1230) $)) (-15 -3336 ((-549) $))))
+((-2036 (((-621 (-1124)) (-621 (-1124))) 94) (((-621 (-1124))) 90)) (-3822 (((-621 (-1124))) 88)) (-2285 (((-621 (-892)) (-621 (-892))) 63) (((-621 (-892))) 60)) (-2536 (((-621 (-747)) (-621 (-747))) 57) (((-621 (-747))) 53)) (-3080 (((-1230)) 65)) (-2470 (((-892) (-892)) 81) (((-892)) 80)) (-4314 (((-892) (-892)) 79) (((-892)) 78)) (-2672 (((-845) (-845)) 75) (((-845)) 74)) (-4091 (((-219)) 85) (((-219) (-372)) 87)) (-1790 (((-892)) 82) (((-892) (-892)) 83)) (-4126 (((-892) (-892)) 77) (((-892)) 76)) (-1580 (((-845) (-845)) 69) (((-845)) 67)) (-4181 (((-845) (-845)) 71) (((-845)) 70)) (-3197 (((-845) (-845)) 73) (((-845)) 72)))
+(((-1228) (-10 -7 (-15 -1580 ((-845))) (-15 -1580 ((-845) (-845))) (-15 -4181 ((-845))) (-15 -4181 ((-845) (-845))) (-15 -3197 ((-845))) (-15 -3197 ((-845) (-845))) (-15 -2672 ((-845))) (-15 -2672 ((-845) (-845))) (-15 -4126 ((-892))) (-15 -4126 ((-892) (-892))) (-15 -2536 ((-621 (-747)))) (-15 -2536 ((-621 (-747)) (-621 (-747)))) (-15 -2285 ((-621 (-892)))) (-15 -2285 ((-621 (-892)) (-621 (-892)))) (-15 -3080 ((-1230))) (-15 -2036 ((-621 (-1124)))) (-15 -2036 ((-621 (-1124)) (-621 (-1124)))) (-15 -3822 ((-621 (-1124)))) (-15 -4314 ((-892))) (-15 -2470 ((-892))) (-15 -4314 ((-892) (-892))) (-15 -2470 ((-892) (-892))) (-15 -1790 ((-892) (-892))) (-15 -1790 ((-892))) (-15 -4091 ((-219) (-372))) (-15 -4091 ((-219))))) (T -1228))
+((-4091 (*1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-1228)))) (-4091 (*1 *2 *3) (-12 (-5 *3 (-372)) (-5 *2 (-219)) (-5 *1 (-1228)))) (-1790 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1228)))) (-1790 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1228)))) (-2470 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1228)))) (-4314 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1228)))) (-2470 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1228)))) (-4314 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1228)))) (-3822 (*1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1228)))) (-2036 (*1 *2 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1228)))) (-2036 (*1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1228)))) (-3080 (*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-1228)))) (-2285 (*1 *2 *2) (-12 (-5 *2 (-621 (-892))) (-5 *1 (-1228)))) (-2285 (*1 *2) (-12 (-5 *2 (-621 (-892))) (-5 *1 (-1228)))) (-2536 (*1 *2 *2) (-12 (-5 *2 (-621 (-747))) (-5 *1 (-1228)))) (-2536 (*1 *2) (-12 (-5 *2 (-621 (-747))) (-5 *1 (-1228)))) (-4126 (*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1228)))) (-4126 (*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1228)))) (-2672 (*1 *2 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1228)))) (-2672 (*1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1228)))) (-3197 (*1 *2 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1228)))) (-3197 (*1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1228)))) (-4181 (*1 *2 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1228)))) (-4181 (*1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1228)))) (-1580 (*1 *2 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1228)))) (-1580 (*1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1228)))))
+(-10 -7 (-15 -1580 ((-845))) (-15 -1580 ((-845) (-845))) (-15 -4181 ((-845))) (-15 -4181 ((-845) (-845))) (-15 -3197 ((-845))) (-15 -3197 ((-845) (-845))) (-15 -2672 ((-845))) (-15 -2672 ((-845) (-845))) (-15 -4126 ((-892))) (-15 -4126 ((-892) (-892))) (-15 -2536 ((-621 (-747)))) (-15 -2536 ((-621 (-747)) (-621 (-747)))) (-15 -2285 ((-621 (-892)))) (-15 -2285 ((-621 (-892)) (-621 (-892)))) (-15 -3080 ((-1230))) (-15 -2036 ((-621 (-1124)))) (-15 -2036 ((-621 (-1124)) (-621 (-1124)))) (-15 -3822 ((-621 (-1124)))) (-15 -4314 ((-892))) (-15 -2470 ((-892))) (-15 -4314 ((-892) (-892))) (-15 -2470 ((-892) (-892))) (-15 -1790 ((-892) (-892))) (-15 -1790 ((-892))) (-15 -4091 ((-219) (-372))) (-15 -4091 ((-219))))
+((-3032 (((-460) (-621 (-621 (-914 (-219)))) (-621 (-256))) 21) (((-460) (-621 (-621 (-914 (-219))))) 20) (((-460) (-621 (-621 (-914 (-219)))) (-845) (-845) (-892) (-621 (-256))) 19)) (-3524 (((-1226) (-621 (-621 (-914 (-219)))) (-621 (-256))) 27) (((-1226) (-621 (-621 (-914 (-219)))) (-845) (-845) (-892) (-621 (-256))) 26)) (-3845 (((-1226) (-460)) 38)))
+(((-1229) (-10 -7 (-15 -3032 ((-460) (-621 (-621 (-914 (-219)))) (-845) (-845) (-892) (-621 (-256)))) (-15 -3032 ((-460) (-621 (-621 (-914 (-219)))))) (-15 -3032 ((-460) (-621 (-621 (-914 (-219)))) (-621 (-256)))) (-15 -3524 ((-1226) (-621 (-621 (-914 (-219)))) (-845) (-845) (-892) (-621 (-256)))) (-15 -3524 ((-1226) (-621 (-621 (-914 (-219)))) (-621 (-256)))) (-15 -3845 ((-1226) (-460))))) (T -1229))
+((-3845 (*1 *2 *3) (-12 (-5 *3 (-460)) (-5 *2 (-1226)) (-5 *1 (-1229)))) (-3524 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-621 (-256))) (-5 *2 (-1226)) (-5 *1 (-1229)))) (-3524 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-845)) (-5 *5 (-892)) (-5 *6 (-621 (-256))) (-5 *2 (-1226)) (-5 *1 (-1229)))) (-3032 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-621 (-256))) (-5 *2 (-460)) (-5 *1 (-1229)))) (-3032 (*1 *2 *3) (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *2 (-460)) (-5 *1 (-1229)))) (-3032 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-845)) (-5 *5 (-892)) (-5 *6 (-621 (-256))) (-5 *2 (-460)) (-5 *1 (-1229)))))
+(-10 -7 (-15 -3032 ((-460) (-621 (-621 (-914 (-219)))) (-845) (-845) (-892) (-621 (-256)))) (-15 -3032 ((-460) (-621 (-621 (-914 (-219)))))) (-15 -3032 ((-460) (-621 (-621 (-914 (-219)))) (-621 (-256)))) (-15 -3524 ((-1226) (-621 (-621 (-914 (-219)))) (-845) (-845) (-892) (-621 (-256)))) (-15 -3524 ((-1226) (-621 (-621 (-914 (-219)))) (-621 (-256)))) (-15 -3845 ((-1226) (-460))))
+((-2901 (($) 7)) (-3845 (((-834) $) 10)))
+(((-1230) (-10 -8 (-15 -2901 ($)) (-15 -3845 ((-834) $)))) (T -1230))
+((-3845 (*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-1230)))) (-2901 (*1 *1) (-5 *1 (-1230))))
+(-10 -8 (-15 -2901 ($)) (-15 -3845 ((-834) $)))
+((-2511 (($ $ |#2|) 10)))
+(((-1231 |#1| |#2|) (-10 -8 (-15 -2511 (|#1| |#1| |#2|))) (-1232 |#2|) (-356)) (T -1231))
+NIL
+(-10 -8 (-15 -2511 (|#1| |#1| |#2|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-2260 (((-133)) 28)) (-3845 (((-834) $) 11)) (-3274 (($) 18 T CONST)) (-2387 (((-112) $ $) 6)) (-2511 (($ $ |#1|) 29)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
+(((-1232 |#1|) (-138) (-356)) (T -1232))
+((-2511 (*1 *1 *1 *2) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-356)))) (-2260 (*1 *2) (-12 (-4 *1 (-1232 *3)) (-4 *3 (-356)) (-5 *2 (-133)))))
+(-13 (-694 |t#1|) (-10 -8 (-15 -2511 ($ $ |t#1|)) (-15 -2260 ((-133)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-694 |#1|) . T) ((-1024 |#1|) . T) ((-1066) . T))
+((-3952 (((-621 (-1173 |#1|)) (-1142) (-1173 |#1|)) 74)) (-2196 (((-1122 (-1122 (-923 |#1|))) (-1142) (-1122 (-923 |#1|))) 53)) (-3312 (((-1 (-1122 (-1173 |#1|)) (-1122 (-1173 |#1|))) (-747) (-1173 |#1|) (-1122 (-1173 |#1|))) 64)) (-4076 (((-1 (-1122 (-923 |#1|)) (-1122 (-923 |#1|))) (-747)) 55)) (-1312 (((-1 (-1138 (-923 |#1|)) (-923 |#1|)) (-1142)) 29)) (-2339 (((-1 (-1122 (-923 |#1|)) (-1122 (-923 |#1|))) (-747)) 54)))
+(((-1233 |#1|) (-10 -7 (-15 -4076 ((-1 (-1122 (-923 |#1|)) (-1122 (-923 |#1|))) (-747))) (-15 -2339 ((-1 (-1122 (-923 |#1|)) (-1122 (-923 |#1|))) (-747))) (-15 -2196 ((-1122 (-1122 (-923 |#1|))) (-1142) (-1122 (-923 |#1|)))) (-15 -1312 ((-1 (-1138 (-923 |#1|)) (-923 |#1|)) (-1142))) (-15 -3952 ((-621 (-1173 |#1|)) (-1142) (-1173 |#1|))) (-15 -3312 ((-1 (-1122 (-1173 |#1|)) (-1122 (-1173 |#1|))) (-747) (-1173 |#1|) (-1122 (-1173 |#1|))))) (-356)) (T -1233))
+((-3312 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-747)) (-4 *6 (-356)) (-5 *4 (-1173 *6)) (-5 *2 (-1 (-1122 *4) (-1122 *4))) (-5 *1 (-1233 *6)) (-5 *5 (-1122 *4)))) (-3952 (*1 *2 *3 *4) (-12 (-5 *3 (-1142)) (-4 *5 (-356)) (-5 *2 (-621 (-1173 *5))) (-5 *1 (-1233 *5)) (-5 *4 (-1173 *5)))) (-1312 (*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-1 (-1138 (-923 *4)) (-923 *4))) (-5 *1 (-1233 *4)) (-4 *4 (-356)))) (-2196 (*1 *2 *3 *4) (-12 (-5 *3 (-1142)) (-4 *5 (-356)) (-5 *2 (-1122 (-1122 (-923 *5)))) (-5 *1 (-1233 *5)) (-5 *4 (-1122 (-923 *5))))) (-2339 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1 (-1122 (-923 *4)) (-1122 (-923 *4)))) (-5 *1 (-1233 *4)) (-4 *4 (-356)))) (-4076 (*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1 (-1122 (-923 *4)) (-1122 (-923 *4)))) (-5 *1 (-1233 *4)) (-4 *4 (-356)))))
+(-10 -7 (-15 -4076 ((-1 (-1122 (-923 |#1|)) (-1122 (-923 |#1|))) (-747))) (-15 -2339 ((-1 (-1122 (-923 |#1|)) (-1122 (-923 |#1|))) (-747))) (-15 -2196 ((-1122 (-1122 (-923 |#1|))) (-1142) (-1122 (-923 |#1|)))) (-15 -1312 ((-1 (-1138 (-923 |#1|)) (-923 |#1|)) (-1142))) (-15 -3952 ((-621 (-1173 |#1|)) (-1142) (-1173 |#1|))) (-15 -3312 ((-1 (-1122 (-1173 |#1|)) (-1122 (-1173 |#1|))) (-747) (-1173 |#1|) (-1122 (-1173 |#1|)))))
+((-2720 (((-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) |#2|) 75)) (-1311 (((-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|)))) 74)))
+(((-1234 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1311 ((-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))))) (-15 -2720 ((-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) |#2|))) (-342) (-1201 |#1|) (-1201 |#2|) (-402 |#2| |#3|)) (T -1234))
+((-2720 (*1 *2 *3) (-12 (-4 *4 (-342)) (-4 *3 (-1201 *4)) (-4 *5 (-1201 *3)) (-5 *2 (-2 (|:| -2619 (-665 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-665 *3)))) (-5 *1 (-1234 *4 *3 *5 *6)) (-4 *6 (-402 *3 *5)))) (-1311 (*1 *2) (-12 (-4 *3 (-342)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 *4)) (-5 *2 (-2 (|:| -2619 (-665 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-665 *4)))) (-5 *1 (-1234 *3 *4 *5 *6)) (-4 *6 (-402 *4 *5)))))
+(-10 -7 (-15 -1311 ((-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))))) (-15 -2720 ((-2 (|:| -2619 (-665 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-665 |#2|))) |#2|)))
+((-3832 (((-112) $ $) NIL)) (-2961 (((-1101) $) 11)) (-1899 (((-1101) $) 9)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 19) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-1235) (-13 (-1049) (-10 -8 (-15 -1899 ((-1101) $)) (-15 -2961 ((-1101) $))))) (T -1235))
+((-1899 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-1235)))) (-2961 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-1235)))))
+(-13 (-1049) (-10 -8 (-15 -1899 ((-1101) $)) (-15 -2961 ((-1101) $))))
+((-3832 (((-112) $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-1925 (((-1101) $) 9)) (-3845 (((-834) $) 17) (((-1147) $) NIL) (($ (-1147)) NIL)) (-2387 (((-112) $ $) NIL)))
+(((-1236) (-13 (-1049) (-10 -8 (-15 -1925 ((-1101) $))))) (T -1236))
+((-1925 (*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-1236)))))
+(-13 (-1049) (-10 -8 (-15 -1925 ((-1101) $))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 43)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2612 (((-3 $ "failed") $) NIL)) (-2297 (((-112) $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3845 (((-834) $) 64) (($ (-549)) NIL) ((|#4| $) 54) (($ |#4|) 49) (($ |#1|) NIL (|has| |#1| (-170)))) (-2371 (((-747)) NIL)) (-3881 (((-1230) (-747)) 16)) (-3274 (($) 27 T CONST)) (-3286 (($) 67 T CONST)) (-2387 (((-112) $ $) 69)) (-2511 (((-3 $ "failed") $ $) NIL (|has| |#1| (-356)))) (-2498 (($ $) 71) (($ $ $) NIL)) (-2484 (($ $ $) 47)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 73) (($ |#1| $) NIL (|has| |#1| (-170))) (($ $ |#1|) NIL (|has| |#1| (-170)))))
+(((-1237 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-13 (-1018) (-10 -8 (IF (|has| |#1| (-170)) (-6 (-38 |#1|)) |%noBranch|) (-15 -3845 (|#4| $)) (IF (|has| |#1| (-356)) (-15 -2511 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3845 ($ |#4|)) (-15 -3881 ((-1230) (-747))))) (-1018) (-823) (-769) (-920 |#1| |#3| |#2|) (-621 |#2|) (-621 (-747)) (-747)) (T -1237))
+((-3845 (*1 *2 *1) (-12 (-4 *2 (-920 *3 *5 *4)) (-5 *1 (-1237 *3 *4 *5 *2 *6 *7 *8)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-769)) (-14 *6 (-621 *4)) (-14 *7 (-621 (-747))) (-14 *8 (-747)))) (-2511 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-356)) (-4 *2 (-1018)) (-4 *3 (-823)) (-4 *4 (-769)) (-14 *6 (-621 *3)) (-5 *1 (-1237 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-920 *2 *4 *3)) (-14 *7 (-621 (-747))) (-14 *8 (-747)))) (-3845 (*1 *1 *2) (-12 (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-769)) (-14 *6 (-621 *4)) (-5 *1 (-1237 *3 *4 *5 *2 *6 *7 *8)) (-4 *2 (-920 *3 *5 *4)) (-14 *7 (-621 (-747))) (-14 *8 (-747)))) (-3881 (*1 *2 *3) (-12 (-5 *3 (-747)) (-4 *4 (-1018)) (-4 *5 (-823)) (-4 *6 (-769)) (-14 *8 (-621 *5)) (-5 *2 (-1230)) (-5 *1 (-1237 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-920 *4 *6 *5)) (-14 *9 (-621 *3)) (-14 *10 *3))))
+(-13 (-1018) (-10 -8 (IF (|has| |#1| (-170)) (-6 (-38 |#1|)) |%noBranch|) (-15 -3845 (|#4| $)) (IF (|has| |#1| (-356)) (-15 -2511 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3845 ($ |#4|)) (-15 -3881 ((-1230) (-747)))))
+((-3832 (((-112) $ $) NIL)) (-4063 (((-621 (-2 (|:| -2679 $) (|:| -1358 (-621 |#4|)))) (-621 |#4|)) NIL)) (-3587 (((-621 $) (-621 |#4|)) 88)) (-2270 (((-621 |#3|) $) NIL)) (-3735 (((-112) $) NIL)) (-2148 (((-112) $) NIL (|has| |#1| (-541)))) (-2210 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2156 ((|#4| |#4| $) NIL)) (-3191 (((-2 (|:| |under| $) (|:| -1349 $) (|:| |upper| $)) $ |#3|) NIL)) (-2850 (((-112) $ (-747)) NIL)) (-1488 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336))) (((-3 |#4| "failed") $ |#3|) NIL)) (-3034 (($) NIL T CONST)) (-4291 (((-112) $) NIL (|has| |#1| (-541)))) (-1663 (((-112) $ $) NIL (|has| |#1| (-541)))) (-4226 (((-112) $ $) NIL (|has| |#1| (-541)))) (-2113 (((-112) $) NIL (|has| |#1| (-541)))) (-1409 (((-621 |#4|) (-621 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 28)) (-3480 (((-621 |#4|) (-621 |#4|) $) 25 (|has| |#1| (-541)))) (-2393 (((-621 |#4|) (-621 |#4|) $) NIL (|has| |#1| (-541)))) (-2712 (((-3 $ "failed") (-621 |#4|)) NIL)) (-2657 (($ (-621 |#4|)) NIL)) (-3656 (((-3 $ "failed") $) 70)) (-1852 ((|#4| |#4| $) 75)) (-3675 (($ $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066))))) (-3812 (($ |#4| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-1809 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-541)))) (-1804 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-1402 ((|#4| |#4| $) NIL)) (-2556 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4336))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4336))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3862 (((-2 (|:| -2679 (-621 |#4|)) (|:| -1358 (-621 |#4|))) $) NIL)) (-2987 (((-621 |#4|) $) NIL (|has| $ (-6 -4336)))) (-2240 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2510 ((|#3| $) 76)) (-1777 (((-112) $ (-747)) NIL)) (-3698 (((-621 |#4|) $) 29 (|has| $ (-6 -4336)))) (-1593 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066))))) (-3068 (((-3 $ "failed") (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 32) (((-3 $ "failed") (-621 |#4|)) 35)) (-1864 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4337)))) (-2795 (($ (-1 |#4| |#4|) $) NIL)) (-3991 (((-621 |#3|) $) NIL)) (-4192 (((-112) |#3| $) NIL)) (-3942 (((-112) $ (-747)) NIL)) (-3441 (((-1124) $) NIL)) (-3828 (((-3 |#4| "failed") $) NIL)) (-1645 (((-621 |#4|) $) 50)) (-1304 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3603 ((|#4| |#4| $) 74)) (-3386 (((-112) $ $) 85)) (-2179 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-541)))) (-4122 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4244 ((|#4| |#4| $) NIL)) (-3988 (((-1086) $) NIL)) (-3645 (((-3 |#4| "failed") $) 69)) (-3959 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1505 (((-3 $ "failed") $ |#4|) NIL)) (-3796 (($ $ |#4|) NIL)) (-3360 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-2684 (($ $ (-621 |#4|) (-621 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-287 |#4|)) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066)))) (($ $ (-621 (-287 |#4|))) NIL (-12 (|has| |#4| (-302 |#4|)) (|has| |#4| (-1066))))) (-2520 (((-112) $ $) NIL)) (-2643 (((-112) $) 67)) (-3288 (($) 42)) (-3977 (((-747) $) NIL)) (-3997 (((-747) |#4| $) NIL (-12 (|has| $ (-6 -4336)) (|has| |#4| (-1066)))) (((-747) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-2279 (($ $) NIL)) (-2843 (((-525) $) NIL (|has| |#4| (-594 (-525))))) (-3853 (($ (-621 |#4|)) NIL)) (-4085 (($ $ |#3|) NIL)) (-2195 (($ $ |#3|) NIL)) (-4292 (($ $) NIL)) (-4285 (($ $ |#3|) NIL)) (-3845 (((-834) $) NIL) (((-621 |#4|) $) 57)) (-2503 (((-747) $) NIL (|has| |#3| (-361)))) (-2295 (((-3 $ "failed") (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 40) (((-3 $ "failed") (-621 |#4|)) 41)) (-3194 (((-621 $) (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 65) (((-621 $) (-621 |#4|)) 66)) (-2940 (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4| |#4|)) 24) (((-3 (-2 (|:| |bas| $) (|:| -2316 (-621 |#4|))) "failed") (-621 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3760 (((-112) $ (-1 (-112) |#4| (-621 |#4|))) NIL)) (-3025 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4336)))) (-4044 (((-621 |#3|) $) NIL)) (-1993 (((-112) |#3| $) NIL)) (-2387 (((-112) $ $) NIL)) (-3774 (((-747) $) NIL (|has| $ (-6 -4336)))))
+(((-1238 |#1| |#2| |#3| |#4|) (-13 (-1172 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3068 ((-3 $ "failed") (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3068 ((-3 $ "failed") (-621 |#4|))) (-15 -2295 ((-3 $ "failed") (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2295 ((-3 $ "failed") (-621 |#4|))) (-15 -3194 ((-621 $) (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3194 ((-621 $) (-621 |#4|))))) (-541) (-769) (-823) (-1032 |#1| |#2| |#3|)) (T -1238))
+((-3068 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-621 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1238 *5 *6 *7 *8)))) (-3068 (*1 *1 *2) (|partial| -12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-1238 *3 *4 *5 *6)))) (-2295 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-621 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1238 *5 *6 *7 *8)))) (-2295 (*1 *1 *2) (|partial| -12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-1238 *3 *4 *5 *6)))) (-3194 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-621 *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1032 *6 *7 *8)) (-4 *6 (-541)) (-4 *7 (-769)) (-4 *8 (-823)) (-5 *2 (-621 (-1238 *6 *7 *8 *9))) (-5 *1 (-1238 *6 *7 *8 *9)))) (-3194 (*1 *2 *3) (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 (-1238 *4 *5 *6 *7))) (-5 *1 (-1238 *4 *5 *6 *7)))))
+(-13 (-1172 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3068 ((-3 $ "failed") (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3068 ((-3 $ "failed") (-621 |#4|))) (-15 -2295 ((-3 $ "failed") (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2295 ((-3 $ "failed") (-621 |#4|))) (-15 -3194 ((-621 $) (-621 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3194 ((-621 $) (-621 |#4|)))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-2416 (((-3 $ "failed") $ $) 19)) (-3034 (($) 17 T CONST)) (-2612 (((-3 $ "failed") $) 32)) (-2297 (((-112) $) 30)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#1|) 36)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ |#1|) 38) (($ |#1| $) 37)))
+(((-1239 |#1|) (-138) (-1018)) (T -1239))
+((-3845 (*1 *1 *2) (-12 (-4 *1 (-1239 *2)) (-4 *2 (-1018)))))
+(-13 (-1018) (-111 |t#1| |t#1|) (-10 -8 (-15 -3845 ($ |t#1|)) (IF (|has| |t#1| (-170)) (-6 (-38 |t#1|)) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-170)) ((-101) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 |#1|) |has| |#1| (-170)) ((-703) . T) ((-1024 |#1|) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T))
+((-3832 (((-112) $ $) 60)) (-3210 (((-112) $) NIL)) (-3302 (((-621 |#1|) $) 45)) (-3175 (($ $ (-747)) 39)) (-2416 (((-3 $ "failed") $ $) NIL)) (-1768 (($ $ (-747)) 18 (|has| |#2| (-170))) (($ $ $) 19 (|has| |#2| (-170)))) (-3034 (($) NIL T CONST)) (-1376 (($ $ $) 63) (($ $ (-795 |#1|)) 49) (($ $ |#1|) 53)) (-2712 (((-3 (-795 |#1|) "failed") $) NIL)) (-2657 (((-795 |#1|) $) NIL)) (-2068 (($ $) 32)) (-2612 (((-3 $ "failed") $) NIL)) (-2369 (((-112) $) NIL)) (-3962 (($ $) NIL)) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) NIL)) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) NIL)) (-3525 (($ (-795 |#1|) |#2|) 31)) (-3626 (($ $) 33)) (-2127 (((-2 (|:| |k| (-795 |#1|)) (|:| |c| |#2|)) $) 12)) (-1716 (((-795 |#1|) $) NIL)) (-4120 (((-795 |#1|) $) 34)) (-2795 (($ (-1 |#2| |#2|) $) NIL)) (-4315 (($ $ $) 62) (($ $ (-795 |#1|)) 51) (($ $ |#1|) 55)) (-4249 (((-2 (|:| |k| (-795 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2027 (((-795 |#1|) $) 28)) (-2042 ((|#2| $) 30)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3977 (((-747) $) 36)) (-3872 (((-112) $) 40)) (-2587 ((|#2| $) NIL)) (-3845 (((-834) $) NIL) (($ (-795 |#1|)) 24) (($ |#1|) 25) (($ |#2|) NIL) (($ (-549)) NIL)) (-2157 (((-621 |#2|) $) NIL)) (-4068 ((|#2| $ (-795 |#1|)) NIL)) (-1569 ((|#2| $ $) 65) ((|#2| $ (-795 |#1|)) NIL)) (-2371 (((-747)) NIL)) (-3274 (($) 13 T CONST)) (-3286 (($) 15 T CONST)) (-2087 (((-621 (-2 (|:| |k| (-795 |#1|)) (|:| |c| |#2|))) $) NIL)) (-2387 (((-112) $ $) 38)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) 22)) (** (($ $ (-747)) NIL) (($ $ (-892)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ |#2| $) 21) (($ $ |#2|) 61) (($ |#2| (-795 |#1|)) NIL) (($ |#1| $) 27) (($ $ $) NIL)))
+(((-1240 |#1| |#2|) (-13 (-375 |#2| (-795 |#1|)) (-1246 |#1| |#2|)) (-823) (-1018)) (T -1240))
+NIL
+(-13 (-375 |#2| (-795 |#1|)) (-1246 |#1| |#2|))
+((-3631 ((|#3| |#3| (-747)) 23)) (-2717 ((|#3| |#3| (-747)) 27)) (-2060 ((|#3| |#3| |#3| (-747)) 28)))
+(((-1241 |#1| |#2| |#3|) (-10 -7 (-15 -2717 (|#3| |#3| (-747))) (-15 -3631 (|#3| |#3| (-747))) (-15 -2060 (|#3| |#3| |#3| (-747)))) (-13 (-1018) (-694 (-400 (-549)))) (-823) (-1246 |#2| |#1|)) (T -1241))
+((-2060 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-747)) (-4 *4 (-13 (-1018) (-694 (-400 (-549))))) (-4 *5 (-823)) (-5 *1 (-1241 *4 *5 *2)) (-4 *2 (-1246 *5 *4)))) (-3631 (*1 *2 *2 *3) (-12 (-5 *3 (-747)) (-4 *4 (-13 (-1018) (-694 (-400 (-549))))) (-4 *5 (-823)) (-5 *1 (-1241 *4 *5 *2)) (-4 *2 (-1246 *5 *4)))) (-2717 (*1 *2 *2 *3) (-12 (-5 *3 (-747)) (-4 *4 (-13 (-1018) (-694 (-400 (-549))))) (-4 *5 (-823)) (-5 *1 (-1241 *4 *5 *2)) (-4 *2 (-1246 *5 *4)))))
+(-10 -7 (-15 -2717 (|#3| |#3| (-747))) (-15 -3631 (|#3| |#3| (-747))) (-15 -2060 (|#3| |#3| |#3| (-747))))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-3302 (((-621 |#1|) $) 38)) (-2416 (((-3 $ "failed") $ $) 19)) (-1768 (($ $ $) 41 (|has| |#2| (-170))) (($ $ (-747)) 40 (|has| |#2| (-170)))) (-3034 (($) 17 T CONST)) (-1376 (($ $ |#1|) 52) (($ $ (-795 |#1|)) 51) (($ $ $) 50)) (-2712 (((-3 (-795 |#1|) "failed") $) 62)) (-2657 (((-795 |#1|) $) 61)) (-2612 (((-3 $ "failed") $) 32)) (-2369 (((-112) $) 43)) (-3962 (($ $) 42)) (-2297 (((-112) $) 30)) (-2988 (((-112) $) 48)) (-3525 (($ (-795 |#1|) |#2|) 49)) (-3626 (($ $) 47)) (-2127 (((-2 (|:| |k| (-795 |#1|)) (|:| |c| |#2|)) $) 58)) (-1716 (((-795 |#1|) $) 59)) (-2795 (($ (-1 |#2| |#2|) $) 39)) (-4315 (($ $ |#1|) 55) (($ $ (-795 |#1|)) 54) (($ $ $) 53)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3872 (((-112) $) 45)) (-2587 ((|#2| $) 44)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#2|) 66) (($ (-795 |#1|)) 63) (($ |#1|) 46)) (-1569 ((|#2| $ (-795 |#1|)) 57) ((|#2| $ $) 56)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ |#2| $) 65) (($ $ |#2|) 64) (($ |#1| $) 60)))
+(((-1242 |#1| |#2|) (-138) (-823) (-1018)) (T -1242))
+((* (*1 *1 *1 *2) (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-823)) (-4 *2 (-1018)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))) (-1716 (*1 *2 *1) (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *2 (-795 *3)))) (-2127 (*1 *2 *1) (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *2 (-2 (|:| |k| (-795 *3)) (|:| |c| *4))))) (-1569 (*1 *2 *1 *3) (-12 (-5 *3 (-795 *4)) (-4 *1 (-1242 *4 *2)) (-4 *4 (-823)) (-4 *2 (-1018)))) (-1569 (*1 *2 *1 *1) (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-823)) (-4 *2 (-1018)))) (-4315 (*1 *1 *1 *2) (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))) (-4315 (*1 *1 *1 *2) (-12 (-5 *2 (-795 *3)) (-4 *1 (-1242 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)))) (-4315 (*1 *1 *1 *1) (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))) (-1376 (*1 *1 *1 *2) (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))) (-1376 (*1 *1 *1 *2) (-12 (-5 *2 (-795 *3)) (-4 *1 (-1242 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)))) (-1376 (*1 *1 *1 *1) (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))) (-3525 (*1 *1 *2 *3) (-12 (-5 *2 (-795 *4)) (-4 *4 (-823)) (-4 *1 (-1242 *4 *3)) (-4 *3 (-1018)))) (-2988 (*1 *2 *1) (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *2 (-112)))) (-3626 (*1 *1 *1) (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))) (-3845 (*1 *1 *2) (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))) (-3872 (*1 *2 *1) (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *2 (-112)))) (-2587 (*1 *2 *1) (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-823)) (-4 *2 (-1018)))) (-2369 (*1 *2 *1) (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *2 (-112)))) (-3962 (*1 *1 *1) (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))) (-1768 (*1 *1 *1 *1) (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)) (-4 *3 (-170)))) (-1768 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1242 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-4 *4 (-170)))) (-2795 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1242 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)))) (-3302 (*1 *2 *1) (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *2 (-621 *3)))))
+(-13 (-1018) (-1239 |t#2|) (-1009 (-795 |t#1|)) (-10 -8 (-15 * ($ |t#1| $)) (-15 * ($ $ |t#2|)) (-15 -1716 ((-795 |t#1|) $)) (-15 -2127 ((-2 (|:| |k| (-795 |t#1|)) (|:| |c| |t#2|)) $)) (-15 -1569 (|t#2| $ (-795 |t#1|))) (-15 -1569 (|t#2| $ $)) (-15 -4315 ($ $ |t#1|)) (-15 -4315 ($ $ (-795 |t#1|))) (-15 -4315 ($ $ $)) (-15 -1376 ($ $ |t#1|)) (-15 -1376 ($ $ (-795 |t#1|))) (-15 -1376 ($ $ $)) (-15 -3525 ($ (-795 |t#1|) |t#2|)) (-15 -2988 ((-112) $)) (-15 -3626 ($ $)) (-15 -3845 ($ |t#1|)) (-15 -3872 ((-112) $)) (-15 -2587 (|t#2| $)) (-15 -2369 ((-112) $)) (-15 -3962 ($ $)) (IF (|has| |t#2| (-170)) (PROGN (-15 -1768 ($ $ $)) (-15 -1768 ($ $ (-747)))) |%noBranch|) (-15 -2795 ($ (-1 |t#2| |t#2|) $)) (-15 -3302 ((-621 |t#1|) $)) (IF (|has| |t#2| (-6 -4329)) (-6 -4329) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#2|) |has| |#2| (-170)) ((-101) . T) ((-111 |#2| |#2|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#2|) . T) ((-624 $) . T) ((-694 |#2|) |has| |#2| (-170)) ((-703) . T) ((-1009 (-795 |#1|)) . T) ((-1024 |#2|) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1239 |#2|) . T))
+((-2638 (((-112) $) 15)) (-1993 (((-112) $) 14)) (-3495 (($ $) 19) (($ $ (-747)) 20)))
+(((-1243 |#1| |#2|) (-10 -8 (-15 -3495 (|#1| |#1| (-747))) (-15 -3495 (|#1| |#1|)) (-15 -2638 ((-112) |#1|)) (-15 -1993 ((-112) |#1|))) (-1244 |#2|) (-356)) (T -1243))
+NIL
+(-10 -8 (-15 -3495 (|#1| |#1| (-747))) (-15 -3495 (|#1| |#1|)) (-15 -2638 ((-112) |#1|)) (-15 -1993 ((-112) |#1|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-4010 (((-2 (|:| -1951 $) (|:| -4323 $) (|:| |associate| $)) $) 39)) (-3044 (($ $) 38)) (-2774 (((-112) $) 36)) (-2638 (((-112) $) 91)) (-2464 (((-747)) 87)) (-2416 (((-3 $ "failed") $ $) 19)) (-3239 (($ $) 70)) (-2620 (((-411 $) $) 69)) (-2680 (((-112) $ $) 57)) (-3034 (($) 17 T CONST)) (-2712 (((-3 |#1| "failed") $) 98)) (-2657 ((|#1| $) 97)) (-2091 (($ $ $) 53)) (-2612 (((-3 $ "failed") $) 32)) (-2065 (($ $ $) 54)) (-2448 (((-2 (|:| -1569 (-621 $)) (|:| -4247 $)) (-621 $)) 49)) (-3517 (($ $ (-747)) 84 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361)))) (($ $) 83 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-1464 (((-112) $) 68)) (-2729 (((-809 (-892)) $) 81 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2297 (((-112) $) 30)) (-1385 (((-3 (-621 $) "failed") (-621 $) $) 50)) (-3696 (($ $ $) 44) (($ (-621 $)) 43)) (-3441 (((-1124) $) 9)) (-1990 (($ $) 67)) (-2165 (((-112) $) 90)) (-3988 (((-1086) $) 10)) (-2994 (((-1138 $) (-1138 $) (-1138 $)) 42)) (-3726 (($ $ $) 46) (($ (-621 $)) 45)) (-2119 (((-411 $) $) 71)) (-1485 (((-809 (-892))) 88)) (-2161 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4247 $)) $ $) 52) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 51)) (-2040 (((-3 $ "failed") $ $) 40)) (-4075 (((-3 (-621 $) "failed") (-621 $) $) 48)) (-1335 (((-747) $) 56)) (-2288 (((-2 (|:| -2262 $) (|:| -1809 $)) $ $) 55)) (-3189 (((-3 (-747) "failed") $ $) 82 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2260 (((-133)) 96)) (-3977 (((-809 (-892)) $) 89)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ $) 41) (($ (-400 (-549))) 63) (($ |#1|) 99)) (-2343 (((-3 $ "failed") $) 80 (-1536 (|has| |#1| (-143)) (|has| |#1| (-361))))) (-2371 (((-747)) 28)) (-2441 (((-112) $ $) 37)) (-1993 (((-112) $) 92)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-3495 (($ $) 86 (|has| |#1| (-361))) (($ $ (-747)) 85 (|has| |#1| (-361)))) (-2387 (((-112) $ $) 6)) (-2511 (($ $ $) 62) (($ $ |#1|) 95)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31) (($ $ (-549)) 66)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ $ (-400 (-549))) 65) (($ (-400 (-549)) $) 64) (($ $ |#1|) 94) (($ |#1| $) 93)))
+(((-1244 |#1|) (-138) (-356)) (T -1244))
+((-1993 (*1 *2 *1) (-12 (-4 *1 (-1244 *3)) (-4 *3 (-356)) (-5 *2 (-112)))) (-2638 (*1 *2 *1) (-12 (-4 *1 (-1244 *3)) (-4 *3 (-356)) (-5 *2 (-112)))) (-2165 (*1 *2 *1) (-12 (-4 *1 (-1244 *3)) (-4 *3 (-356)) (-5 *2 (-112)))) (-3977 (*1 *2 *1) (-12 (-4 *1 (-1244 *3)) (-4 *3 (-356)) (-5 *2 (-809 (-892))))) (-1485 (*1 *2) (-12 (-4 *1 (-1244 *3)) (-4 *3 (-356)) (-5 *2 (-809 (-892))))) (-2464 (*1 *2) (-12 (-4 *1 (-1244 *3)) (-4 *3 (-356)) (-5 *2 (-747)))) (-3495 (*1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-356)) (-4 *2 (-361)))) (-3495 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1244 *3)) (-4 *3 (-356)) (-4 *3 (-361)))))
+(-13 (-356) (-1009 |t#1|) (-1232 |t#1|) (-10 -8 (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-143)) (-6 (-395)) |%noBranch|) (-15 -1993 ((-112) $)) (-15 -2638 ((-112) $)) (-15 -2165 ((-112) $)) (-15 -3977 ((-809 (-892)) $)) (-15 -1485 ((-809 (-892)))) (-15 -2464 ((-747))) (IF (|has| |t#1| (-361)) (PROGN (-6 (-395)) (-15 -3495 ($ $)) (-15 -3495 ($ $ (-747)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-400 (-549))) . T) ((-38 $) . T) ((-101) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-130) . T) ((-143) -1536 (|has| |#1| (-361)) (|has| |#1| (-143))) ((-145) |has| |#1| (-145)) ((-593 (-834)) . T) ((-170) . T) ((-237) . T) ((-283) . T) ((-300) . T) ((-356) . T) ((-395) -1536 (|has| |#1| (-361)) (|has| |#1| (-143))) ((-444) . T) ((-541) . T) ((-624 #0#) . T) ((-624 |#1|) . T) ((-624 $) . T) ((-694 #0#) . T) ((-694 |#1|) . T) ((-694 $) . T) ((-703) . T) ((-891) . T) ((-1009 |#1|) . T) ((-1024 #0#) . T) ((-1024 |#1|) . T) ((-1024 $) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1183) . T) ((-1232 |#1|) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3302 (((-621 |#1|) $) 86)) (-3175 (($ $ (-747)) 89)) (-2416 (((-3 $ "failed") $ $) NIL)) (-1768 (($ $ $) NIL (|has| |#2| (-170))) (($ $ (-747)) NIL (|has| |#2| (-170)))) (-3034 (($) NIL T CONST)) (-1376 (($ $ |#1|) NIL) (($ $ (-795 |#1|)) NIL) (($ $ $) NIL)) (-2712 (((-3 (-795 |#1|) "failed") $) NIL) (((-3 (-864 |#1|) "failed") $) NIL)) (-2657 (((-795 |#1|) $) NIL) (((-864 |#1|) $) NIL)) (-2068 (($ $) 88)) (-2612 (((-3 $ "failed") $) NIL)) (-2369 (((-112) $) 77)) (-3962 (($ $) 81)) (-1268 (($ $ $ (-747)) 90)) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) NIL)) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) NIL)) (-3525 (($ (-795 |#1|) |#2|) NIL) (($ (-864 |#1|) |#2|) 26)) (-3626 (($ $) 103)) (-2127 (((-2 (|:| |k| (-795 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1716 (((-795 |#1|) $) NIL)) (-4120 (((-795 |#1|) $) NIL)) (-2795 (($ (-1 |#2| |#2|) $) NIL)) (-4315 (($ $ |#1|) NIL) (($ $ (-795 |#1|)) NIL) (($ $ $) NIL)) (-3631 (($ $ (-747)) 97 (|has| |#2| (-694 (-400 (-549)))))) (-4249 (((-2 (|:| |k| (-864 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2027 (((-864 |#1|) $) 70)) (-2042 ((|#2| $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-2717 (($ $ (-747)) 94 (|has| |#2| (-694 (-400 (-549)))))) (-3977 (((-747) $) 87)) (-3872 (((-112) $) 71)) (-2587 ((|#2| $) 75)) (-3845 (((-834) $) 57) (($ (-549)) NIL) (($ |#2|) 51) (($ (-795 |#1|)) NIL) (($ |#1|) 59) (($ (-864 |#1|)) NIL) (($ (-640 |#1| |#2|)) 43) (((-1240 |#1| |#2|) $) 64) (((-1249 |#1| |#2|) $) 69)) (-2157 (((-621 |#2|) $) NIL)) (-4068 ((|#2| $ (-864 |#1|)) NIL)) (-1569 ((|#2| $ (-795 |#1|)) NIL) ((|#2| $ $) NIL)) (-2371 (((-747)) NIL)) (-3274 (($) 21 T CONST)) (-3286 (($) 25 T CONST)) (-2087 (((-621 (-2 (|:| |k| (-864 |#1|)) (|:| |c| |#2|))) $) NIL)) (-1486 (((-3 (-640 |#1| |#2|) "failed") $) 102)) (-2387 (((-112) $ $) 65)) (-2498 (($ $) 96) (($ $ $) 95)) (-2484 (($ $ $) 20)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 44) (($ |#2| $) 19) (($ $ |#2|) NIL) (($ |#1| $) NIL) (($ |#2| (-864 |#1|)) NIL)))
+(((-1245 |#1| |#2|) (-13 (-1246 |#1| |#2|) (-375 |#2| (-864 |#1|)) (-10 -8 (-15 -3845 ($ (-640 |#1| |#2|))) (-15 -3845 ((-1240 |#1| |#2|) $)) (-15 -3845 ((-1249 |#1| |#2|) $)) (-15 -1486 ((-3 (-640 |#1| |#2|) "failed") $)) (-15 -1268 ($ $ $ (-747))) (IF (|has| |#2| (-694 (-400 (-549)))) (PROGN (-15 -2717 ($ $ (-747))) (-15 -3631 ($ $ (-747)))) |%noBranch|))) (-823) (-170)) (T -1245))
+((-3845 (*1 *1 *2) (-12 (-5 *2 (-640 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)) (-5 *1 (-1245 *3 *4)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-1240 *3 *4)) (-5 *1 (-1245 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)))) (-3845 (*1 *2 *1) (-12 (-5 *2 (-1249 *3 *4)) (-5 *1 (-1245 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)))) (-1486 (*1 *2 *1) (|partial| -12 (-5 *2 (-640 *3 *4)) (-5 *1 (-1245 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)))) (-1268 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-1245 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170)))) (-2717 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-1245 *3 *4)) (-4 *4 (-694 (-400 (-549)))) (-4 *3 (-823)) (-4 *4 (-170)))) (-3631 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-1245 *3 *4)) (-4 *4 (-694 (-400 (-549)))) (-4 *3 (-823)) (-4 *4 (-170)))))
+(-13 (-1246 |#1| |#2|) (-375 |#2| (-864 |#1|)) (-10 -8 (-15 -3845 ($ (-640 |#1| |#2|))) (-15 -3845 ((-1240 |#1| |#2|) $)) (-15 -3845 ((-1249 |#1| |#2|) $)) (-15 -1486 ((-3 (-640 |#1| |#2|) "failed") $)) (-15 -1268 ($ $ $ (-747))) (IF (|has| |#2| (-694 (-400 (-549)))) (PROGN (-15 -2717 ($ $ (-747))) (-15 -3631 ($ $ (-747)))) |%noBranch|)))
+((-3832 (((-112) $ $) 7)) (-3210 (((-112) $) 16)) (-3302 (((-621 |#1|) $) 38)) (-3175 (($ $ (-747)) 71)) (-2416 (((-3 $ "failed") $ $) 19)) (-1768 (($ $ $) 41 (|has| |#2| (-170))) (($ $ (-747)) 40 (|has| |#2| (-170)))) (-3034 (($) 17 T CONST)) (-1376 (($ $ |#1|) 52) (($ $ (-795 |#1|)) 51) (($ $ $) 50)) (-2712 (((-3 (-795 |#1|) "failed") $) 62)) (-2657 (((-795 |#1|) $) 61)) (-2612 (((-3 $ "failed") $) 32)) (-2369 (((-112) $) 43)) (-3962 (($ $) 42)) (-2297 (((-112) $) 30)) (-2988 (((-112) $) 48)) (-3525 (($ (-795 |#1|) |#2|) 49)) (-3626 (($ $) 47)) (-2127 (((-2 (|:| |k| (-795 |#1|)) (|:| |c| |#2|)) $) 58)) (-1716 (((-795 |#1|) $) 59)) (-4120 (((-795 |#1|) $) 73)) (-2795 (($ (-1 |#2| |#2|) $) 39)) (-4315 (($ $ |#1|) 55) (($ $ (-795 |#1|)) 54) (($ $ $) 53)) (-3441 (((-1124) $) 9)) (-3988 (((-1086) $) 10)) (-3977 (((-747) $) 72)) (-3872 (((-112) $) 45)) (-2587 ((|#2| $) 44)) (-3845 (((-834) $) 11) (($ (-549)) 27) (($ |#2|) 66) (($ (-795 |#1|)) 63) (($ |#1|) 46)) (-1569 ((|#2| $ (-795 |#1|)) 57) ((|#2| $ $) 56)) (-2371 (((-747)) 28)) (-3274 (($) 18 T CONST)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 6)) (-2498 (($ $) 22) (($ $ $) 21)) (-2484 (($ $ $) 14)) (** (($ $ (-892)) 25) (($ $ (-747)) 31)) (* (($ (-892) $) 13) (($ (-747) $) 15) (($ (-549) $) 20) (($ $ $) 24) (($ |#2| $) 65) (($ $ |#2|) 64) (($ |#1| $) 60)))
+(((-1246 |#1| |#2|) (-138) (-823) (-1018)) (T -1246))
+((-4120 (*1 *2 *1) (-12 (-4 *1 (-1246 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *2 (-795 *3)))) (-3977 (*1 *2 *1) (-12 (-4 *1 (-1246 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *2 (-747)))) (-3175 (*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-1246 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)))))
+(-13 (-1242 |t#1| |t#2|) (-10 -8 (-15 -4120 ((-795 |t#1|) $)) (-15 -3977 ((-747) $)) (-15 -3175 ($ $ (-747)))))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#2|) |has| |#2| (-170)) ((-101) . T) ((-111 |#2| |#2|) . T) ((-130) . T) ((-593 (-834)) . T) ((-624 |#2|) . T) ((-624 $) . T) ((-694 |#2|) |has| |#2| (-170)) ((-703) . T) ((-1009 (-795 |#1|)) . T) ((-1024 |#2|) . T) ((-1018) . T) ((-1025) . T) ((-1078) . T) ((-1066) . T) ((-1239 |#2|) . T) ((-1242 |#1| |#2|) . T))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-3302 (((-621 (-1142)) $) NIL)) (-1745 (($ (-1240 (-1142) |#1|)) NIL)) (-3175 (($ $ (-747)) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-1768 (($ $ $) NIL (|has| |#1| (-170))) (($ $ (-747)) NIL (|has| |#1| (-170)))) (-3034 (($) NIL T CONST)) (-1376 (($ $ (-1142)) NIL) (($ $ (-795 (-1142))) NIL) (($ $ $) NIL)) (-2712 (((-3 (-795 (-1142)) "failed") $) NIL)) (-2657 (((-795 (-1142)) $) NIL)) (-2612 (((-3 $ "failed") $) NIL)) (-2369 (((-112) $) NIL)) (-3962 (($ $) NIL)) (-2297 (((-112) $) NIL)) (-2988 (((-112) $) NIL)) (-3525 (($ (-795 (-1142)) |#1|) NIL)) (-3626 (($ $) NIL)) (-2127 (((-2 (|:| |k| (-795 (-1142))) (|:| |c| |#1|)) $) NIL)) (-1716 (((-795 (-1142)) $) NIL)) (-4120 (((-795 (-1142)) $) NIL)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-4315 (($ $ (-1142)) NIL) (($ $ (-795 (-1142))) NIL) (($ $ $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-1448 (((-1240 (-1142) |#1|) $) NIL)) (-3977 (((-747) $) NIL)) (-3872 (((-112) $) NIL)) (-2587 ((|#1| $) NIL)) (-3845 (((-834) $) NIL) (($ (-549)) NIL) (($ |#1|) NIL) (($ (-795 (-1142))) NIL) (($ (-1142)) NIL)) (-1569 ((|#1| $ (-795 (-1142))) NIL) ((|#1| $ $) NIL)) (-2371 (((-747)) NIL)) (-3274 (($) NIL T CONST)) (-2660 (((-621 (-2 (|:| |k| (-1142)) (|:| |c| $))) $) NIL)) (-3286 (($) NIL T CONST)) (-2387 (((-112) $ $) NIL)) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) NIL)) (** (($ $ (-892)) NIL) (($ $ (-747)) NIL)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-1142) $) NIL)))
+(((-1247 |#1|) (-13 (-1246 (-1142) |#1|) (-10 -8 (-15 -1448 ((-1240 (-1142) |#1|) $)) (-15 -1745 ($ (-1240 (-1142) |#1|))) (-15 -2660 ((-621 (-2 (|:| |k| (-1142)) (|:| |c| $))) $)))) (-1018)) (T -1247))
+((-1448 (*1 *2 *1) (-12 (-5 *2 (-1240 (-1142) *3)) (-5 *1 (-1247 *3)) (-4 *3 (-1018)))) (-1745 (*1 *1 *2) (-12 (-5 *2 (-1240 (-1142) *3)) (-4 *3 (-1018)) (-5 *1 (-1247 *3)))) (-2660 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |k| (-1142)) (|:| |c| (-1247 *3))))) (-5 *1 (-1247 *3)) (-4 *3 (-1018)))))
+(-13 (-1246 (-1142) |#1|) (-10 -8 (-15 -1448 ((-1240 (-1142) |#1|) $)) (-15 -1745 ($ (-1240 (-1142) |#1|))) (-15 -2660 ((-621 (-2 (|:| |k| (-1142)) (|:| |c| $))) $))))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) NIL)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3034 (($) NIL T CONST)) (-2712 (((-3 |#2| "failed") $) NIL)) (-2657 ((|#2| $) NIL)) (-2068 (($ $) NIL)) (-2612 (((-3 $ "failed") $) 36)) (-2369 (((-112) $) 30)) (-3962 (($ $) 32)) (-2297 (((-112) $) NIL)) (-1751 (((-747) $) NIL)) (-2758 (((-621 $) $) NIL)) (-2988 (((-112) $) NIL)) (-3525 (($ |#2| |#1|) NIL)) (-1716 ((|#2| $) 19)) (-4120 ((|#2| $) 16)) (-2795 (($ (-1 |#1| |#1|) $) NIL)) (-4249 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) NIL)) (-2027 ((|#2| $) NIL)) (-2042 ((|#1| $) NIL)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-3872 (((-112) $) 27)) (-2587 ((|#1| $) 28)) (-3845 (((-834) $) 55) (($ (-549)) 40) (($ |#1|) 35) (($ |#2|) NIL)) (-2157 (((-621 |#1|) $) NIL)) (-4068 ((|#1| $ |#2|) NIL)) (-1569 ((|#1| $ |#2|) 24)) (-2371 (((-747)) 14)) (-3274 (($) 25 T CONST)) (-3286 (($) 11 T CONST)) (-2087 (((-621 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) NIL)) (-2387 (((-112) $ $) 26)) (-2511 (($ $ |#1|) 57 (|has| |#1| (-356)))) (-2498 (($ $) NIL) (($ $ $) NIL)) (-2484 (($ $ $) 44)) (** (($ $ (-892)) NIL) (($ $ (-747)) 46)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) NIL) (($ $ $) 45) (($ |#1| $) 41) (($ $ |#1|) NIL) (($ |#1| |#2|) NIL)) (-3774 (((-747) $) 15)))
+(((-1248 |#1| |#2|) (-13 (-1018) (-1239 |#1|) (-375 |#1| |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3774 ((-747) $)) (-15 -3845 ($ |#2|)) (-15 -4120 (|#2| $)) (-15 -1716 (|#2| $)) (-15 -2068 ($ $)) (-15 -1569 (|#1| $ |#2|)) (-15 -3872 ((-112) $)) (-15 -2587 (|#1| $)) (-15 -2369 ((-112) $)) (-15 -3962 ($ $)) (-15 -2795 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-356)) (-15 -2511 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4329)) (-6 -4329) |%noBranch|) (IF (|has| |#1| (-6 -4333)) (-6 -4333) |%noBranch|) (IF (|has| |#1| (-6 -4334)) (-6 -4334) |%noBranch|))) (-1018) (-819)) (T -1248))
+((* (*1 *1 *1 *2) (-12 (-5 *1 (-1248 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-819)))) (-2068 (*1 *1 *1) (-12 (-5 *1 (-1248 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-819)))) (-2795 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-1248 *3 *4)) (-4 *4 (-819)))) (-3845 (*1 *1 *2) (-12 (-5 *1 (-1248 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-819)))) (-3774 (*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-1248 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-819)))) (-4120 (*1 *2 *1) (-12 (-4 *2 (-819)) (-5 *1 (-1248 *3 *2)) (-4 *3 (-1018)))) (-1716 (*1 *2 *1) (-12 (-4 *2 (-819)) (-5 *1 (-1248 *3 *2)) (-4 *3 (-1018)))) (-1569 (*1 *2 *1 *3) (-12 (-4 *2 (-1018)) (-5 *1 (-1248 *2 *3)) (-4 *3 (-819)))) (-3872 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1248 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-819)))) (-2587 (*1 *2 *1) (-12 (-4 *2 (-1018)) (-5 *1 (-1248 *2 *3)) (-4 *3 (-819)))) (-2369 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1248 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-819)))) (-3962 (*1 *1 *1) (-12 (-5 *1 (-1248 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-819)))) (-2511 (*1 *1 *1 *2) (-12 (-5 *1 (-1248 *2 *3)) (-4 *2 (-356)) (-4 *2 (-1018)) (-4 *3 (-819)))))
+(-13 (-1018) (-1239 |#1|) (-375 |#1| |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3774 ((-747) $)) (-15 -3845 ($ |#2|)) (-15 -4120 (|#2| $)) (-15 -1716 (|#2| $)) (-15 -2068 ($ $)) (-15 -1569 (|#1| $ |#2|)) (-15 -3872 ((-112) $)) (-15 -2587 (|#1| $)) (-15 -2369 ((-112) $)) (-15 -3962 ($ $)) (-15 -2795 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-356)) (-15 -2511 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4329)) (-6 -4329) |%noBranch|) (IF (|has| |#1| (-6 -4333)) (-6 -4333) |%noBranch|) (IF (|has| |#1| (-6 -4334)) (-6 -4334) |%noBranch|)))
+((-3832 (((-112) $ $) 26)) (-3210 (((-112) $) NIL)) (-3302 (((-621 |#1|) $) 120)) (-1745 (($ (-1240 |#1| |#2|)) 44)) (-3175 (($ $ (-747)) 32)) (-2416 (((-3 $ "failed") $ $) NIL)) (-1768 (($ $ $) 48 (|has| |#2| (-170))) (($ $ (-747)) 46 (|has| |#2| (-170)))) (-3034 (($) NIL T CONST)) (-1376 (($ $ |#1|) 102) (($ $ (-795 |#1|)) 103) (($ $ $) 25)) (-2712 (((-3 (-795 |#1|) "failed") $) NIL)) (-2657 (((-795 |#1|) $) NIL)) (-2612 (((-3 $ "failed") $) 110)) (-2369 (((-112) $) 105)) (-3962 (($ $) 106)) (-2297 (((-112) $) NIL)) (-2988 (((-112) $) NIL)) (-3525 (($ (-795 |#1|) |#2|) 19)) (-3626 (($ $) NIL)) (-2127 (((-2 (|:| |k| (-795 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1716 (((-795 |#1|) $) 111)) (-4120 (((-795 |#1|) $) 114)) (-2795 (($ (-1 |#2| |#2|) $) 119)) (-4315 (($ $ |#1|) 100) (($ $ (-795 |#1|)) 101) (($ $ $) 56)) (-3441 (((-1124) $) NIL)) (-3988 (((-1086) $) NIL)) (-1448 (((-1240 |#1| |#2|) $) 84)) (-3977 (((-747) $) 117)) (-3872 (((-112) $) 70)) (-2587 ((|#2| $) 28)) (-3845 (((-834) $) 63) (($ (-549)) 77) (($ |#2|) 74) (($ (-795 |#1|)) 17) (($ |#1|) 73)) (-1569 ((|#2| $ (-795 |#1|)) 104) ((|#2| $ $) 27)) (-2371 (((-747)) 108)) (-3274 (($) 14 T CONST)) (-2660 (((-621 (-2 (|:| |k| |#1|) (|:| |c| $))) $) 53)) (-3286 (($) 29 T CONST)) (-2387 (((-112) $ $) 13)) (-2498 (($ $) 88) (($ $ $) 91)) (-2484 (($ $ $) 55)) (** (($ $ (-892)) NIL) (($ $ (-747)) 49)) (* (($ (-892) $) NIL) (($ (-747) $) 47) (($ (-549) $) 94) (($ $ $) 21) (($ |#2| $) 18) (($ $ |#2|) 20) (($ |#1| $) 82)))
+(((-1249 |#1| |#2|) (-13 (-1246 |#1| |#2|) (-10 -8 (-15 -1448 ((-1240 |#1| |#2|) $)) (-15 -1745 ($ (-1240 |#1| |#2|))) (-15 -2660 ((-621 (-2 (|:| |k| |#1|) (|:| |c| $))) $)))) (-823) (-1018)) (T -1249))
+((-1448 (*1 *2 *1) (-12 (-5 *2 (-1240 *3 *4)) (-5 *1 (-1249 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)))) (-1745 (*1 *1 *2) (-12 (-5 *2 (-1240 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)) (-5 *1 (-1249 *3 *4)))) (-2660 (*1 *2 *1) (-12 (-5 *2 (-621 (-2 (|:| |k| *3) (|:| |c| (-1249 *3 *4))))) (-5 *1 (-1249 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)))))
+(-13 (-1246 |#1| |#2|) (-10 -8 (-15 -1448 ((-1240 |#1| |#2|) $)) (-15 -1745 ($ (-1240 |#1| |#2|))) (-15 -2660 ((-621 (-2 (|:| |k| |#1|) (|:| |c| $))) $))))
+((-2661 (((-621 (-1122 |#1|)) (-1 (-621 (-1122 |#1|)) (-621 (-1122 |#1|))) (-549)) 15) (((-1122 |#1|) (-1 (-1122 |#1|) (-1122 |#1|))) 11)))
+(((-1250 |#1|) (-10 -7 (-15 -2661 ((-1122 |#1|) (-1 (-1122 |#1|) (-1122 |#1|)))) (-15 -2661 ((-621 (-1122 |#1|)) (-1 (-621 (-1122 |#1|)) (-621 (-1122 |#1|))) (-549)))) (-1179)) (T -1250))
+((-2661 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-621 (-1122 *5)) (-621 (-1122 *5)))) (-5 *4 (-549)) (-5 *2 (-621 (-1122 *5))) (-5 *1 (-1250 *5)) (-4 *5 (-1179)))) (-2661 (*1 *2 *3) (-12 (-5 *3 (-1 (-1122 *4) (-1122 *4))) (-5 *2 (-1122 *4)) (-5 *1 (-1250 *4)) (-4 *4 (-1179)))))
+(-10 -7 (-15 -2661 ((-1122 |#1|) (-1 (-1122 |#1|) (-1122 |#1|)))) (-15 -2661 ((-621 (-1122 |#1|)) (-1 (-621 (-1122 |#1|)) (-621 (-1122 |#1|))) (-549))))
+((-3519 (((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|))) 148) (((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112)) 147) (((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112)) 146) (((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112) (-112)) 145) (((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-1015 |#1| |#2|)) 130)) (-1680 (((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|))) 72) (((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|)) (-112)) 71) (((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|)) (-112) (-112)) 70)) (-2620 (((-621 (-1112 |#1| (-521 (-836 |#3|)) (-836 |#3|) (-756 |#1| (-836 |#3|)))) (-1015 |#1| |#2|)) 61)) (-1963 (((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|))) 115) (((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112)) 114) (((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112)) 113) (((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112) (-112)) 112) (((-621 (-621 (-995 (-400 |#1|)))) (-1015 |#1| |#2|)) 107)) (-2925 (((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|))) 120) (((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112)) 119) (((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112)) 118) (((-621 (-621 (-995 (-400 |#1|)))) (-1015 |#1| |#2|)) 117)) (-2843 (((-621 (-756 |#1| (-836 |#3|))) (-1112 |#1| (-521 (-836 |#3|)) (-836 |#3|) (-756 |#1| (-836 |#3|)))) 98) (((-1138 (-995 (-400 |#1|))) (-1138 |#1|)) 89) (((-923 (-995 (-400 |#1|))) (-756 |#1| (-836 |#3|))) 96) (((-923 (-995 (-400 |#1|))) (-923 |#1|)) 94) (((-756 |#1| (-836 |#3|)) (-756 |#1| (-836 |#2|))) 33)))
+(((-1251 |#1| |#2| |#3|) (-10 -7 (-15 -1680 ((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|)) (-112) (-112))) (-15 -1680 ((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|)) (-112))) (-15 -1680 ((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|)))) (-15 -3519 ((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-1015 |#1| |#2|))) (-15 -3519 ((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112) (-112))) (-15 -3519 ((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112))) (-15 -3519 ((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112))) (-15 -3519 ((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)))) (-15 -1963 ((-621 (-621 (-995 (-400 |#1|)))) (-1015 |#1| |#2|))) (-15 -1963 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112) (-112))) (-15 -1963 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112))) (-15 -1963 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112))) (-15 -1963 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)))) (-15 -2925 ((-621 (-621 (-995 (-400 |#1|)))) (-1015 |#1| |#2|))) (-15 -2925 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112))) (-15 -2925 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112))) (-15 -2925 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)))) (-15 -2620 ((-621 (-1112 |#1| (-521 (-836 |#3|)) (-836 |#3|) (-756 |#1| (-836 |#3|)))) (-1015 |#1| |#2|))) (-15 -2843 ((-756 |#1| (-836 |#3|)) (-756 |#1| (-836 |#2|)))) (-15 -2843 ((-923 (-995 (-400 |#1|))) (-923 |#1|))) (-15 -2843 ((-923 (-995 (-400 |#1|))) (-756 |#1| (-836 |#3|)))) (-15 -2843 ((-1138 (-995 (-400 |#1|))) (-1138 |#1|))) (-15 -2843 ((-621 (-756 |#1| (-836 |#3|))) (-1112 |#1| (-521 (-836 |#3|)) (-836 |#3|) (-756 |#1| (-836 |#3|)))))) (-13 (-821) (-300) (-145) (-993)) (-621 (-1142)) (-621 (-1142))) (T -1251))
+((-2843 (*1 *2 *3) (-12 (-5 *3 (-1112 *4 (-521 (-836 *6)) (-836 *6) (-756 *4 (-836 *6)))) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *6 (-621 (-1142))) (-5 *2 (-621 (-756 *4 (-836 *6)))) (-5 *1 (-1251 *4 *5 *6)) (-14 *5 (-621 (-1142))))) (-2843 (*1 *2 *3) (-12 (-5 *3 (-1138 *4)) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-1138 (-995 (-400 *4)))) (-5 *1 (-1251 *4 *5 *6)) (-14 *5 (-621 (-1142))) (-14 *6 (-621 (-1142))))) (-2843 (*1 *2 *3) (-12 (-5 *3 (-756 *4 (-836 *6))) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *6 (-621 (-1142))) (-5 *2 (-923 (-995 (-400 *4)))) (-5 *1 (-1251 *4 *5 *6)) (-14 *5 (-621 (-1142))))) (-2843 (*1 *2 *3) (-12 (-5 *3 (-923 *4)) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-923 (-995 (-400 *4)))) (-5 *1 (-1251 *4 *5 *6)) (-14 *5 (-621 (-1142))) (-14 *6 (-621 (-1142))))) (-2843 (*1 *2 *3) (-12 (-5 *3 (-756 *4 (-836 *5))) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *5 (-621 (-1142))) (-5 *2 (-756 *4 (-836 *6))) (-5 *1 (-1251 *4 *5 *6)) (-14 *6 (-621 (-1142))))) (-2620 (*1 *2 *3) (-12 (-5 *3 (-1015 *4 *5)) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *5 (-621 (-1142))) (-5 *2 (-621 (-1112 *4 (-521 (-836 *6)) (-836 *6) (-756 *4 (-836 *6))))) (-5 *1 (-1251 *4 *5 *6)) (-14 *6 (-621 (-1142))))) (-2925 (*1 *2 *3) (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-621 (-995 (-400 *4))))) (-5 *1 (-1251 *4 *5 *6)) (-14 *5 (-621 (-1142))) (-14 *6 (-621 (-1142))))) (-2925 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1251 *5 *6 *7)) (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142))))) (-2925 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1251 *5 *6 *7)) (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142))))) (-2925 (*1 *2 *3) (-12 (-5 *3 (-1015 *4 *5)) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *5 (-621 (-1142))) (-5 *2 (-621 (-621 (-995 (-400 *4))))) (-5 *1 (-1251 *4 *5 *6)) (-14 *6 (-621 (-1142))))) (-1963 (*1 *2 *3) (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-621 (-995 (-400 *4))))) (-5 *1 (-1251 *4 *5 *6)) (-14 *5 (-621 (-1142))) (-14 *6 (-621 (-1142))))) (-1963 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1251 *5 *6 *7)) (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142))))) (-1963 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1251 *5 *6 *7)) (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142))))) (-1963 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1251 *5 *6 *7)) (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142))))) (-1963 (*1 *2 *3) (-12 (-5 *3 (-1015 *4 *5)) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *5 (-621 (-1142))) (-5 *2 (-621 (-621 (-995 (-400 *4))))) (-5 *1 (-1251 *4 *5 *6)) (-14 *6 (-621 (-1142))))) (-3519 (*1 *2 *3) (-12 (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-2 (|:| -3609 (-1138 *4)) (|:| -1981 (-621 (-923 *4)))))) (-5 *1 (-1251 *4 *5 *6)) (-5 *3 (-621 (-923 *4))) (-14 *5 (-621 (-1142))) (-14 *6 (-621 (-1142))))) (-3519 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-2 (|:| -3609 (-1138 *5)) (|:| -1981 (-621 (-923 *5)))))) (-5 *1 (-1251 *5 *6 *7)) (-5 *3 (-621 (-923 *5))) (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142))))) (-3519 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-2 (|:| -3609 (-1138 *5)) (|:| -1981 (-621 (-923 *5)))))) (-5 *1 (-1251 *5 *6 *7)) (-5 *3 (-621 (-923 *5))) (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142))))) (-3519 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-2 (|:| -3609 (-1138 *5)) (|:| -1981 (-621 (-923 *5)))))) (-5 *1 (-1251 *5 *6 *7)) (-5 *3 (-621 (-923 *5))) (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142))))) (-3519 (*1 *2 *3) (-12 (-5 *3 (-1015 *4 *5)) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *5 (-621 (-1142))) (-5 *2 (-621 (-2 (|:| -3609 (-1138 *4)) (|:| -1981 (-621 (-923 *4)))))) (-5 *1 (-1251 *4 *5 *6)) (-14 *6 (-621 (-1142))))) (-1680 (*1 *2 *3) (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-1015 *4 *5))) (-5 *1 (-1251 *4 *5 *6)) (-14 *5 (-621 (-1142))) (-14 *6 (-621 (-1142))))) (-1680 (*1 *2 *3 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-1015 *5 *6))) (-5 *1 (-1251 *5 *6 *7)) (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142))))) (-1680 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993))) (-5 *2 (-621 (-1015 *5 *6))) (-5 *1 (-1251 *5 *6 *7)) (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142))))))
+(-10 -7 (-15 -1680 ((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|)) (-112) (-112))) (-15 -1680 ((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|)) (-112))) (-15 -1680 ((-621 (-1015 |#1| |#2|)) (-621 (-923 |#1|)))) (-15 -3519 ((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-1015 |#1| |#2|))) (-15 -3519 ((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112) (-112))) (-15 -3519 ((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112) (-112))) (-15 -3519 ((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)) (-112))) (-15 -3519 ((-621 (-2 (|:| -3609 (-1138 |#1|)) (|:| -1981 (-621 (-923 |#1|))))) (-621 (-923 |#1|)))) (-15 -1963 ((-621 (-621 (-995 (-400 |#1|)))) (-1015 |#1| |#2|))) (-15 -1963 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112) (-112))) (-15 -1963 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112))) (-15 -1963 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112))) (-15 -1963 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)))) (-15 -2925 ((-621 (-621 (-995 (-400 |#1|)))) (-1015 |#1| |#2|))) (-15 -2925 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112) (-112))) (-15 -2925 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)) (-112))) (-15 -2925 ((-621 (-621 (-995 (-400 |#1|)))) (-621 (-923 |#1|)))) (-15 -2620 ((-621 (-1112 |#1| (-521 (-836 |#3|)) (-836 |#3|) (-756 |#1| (-836 |#3|)))) (-1015 |#1| |#2|))) (-15 -2843 ((-756 |#1| (-836 |#3|)) (-756 |#1| (-836 |#2|)))) (-15 -2843 ((-923 (-995 (-400 |#1|))) (-923 |#1|))) (-15 -2843 ((-923 (-995 (-400 |#1|))) (-756 |#1| (-836 |#3|)))) (-15 -2843 ((-1138 (-995 (-400 |#1|))) (-1138 |#1|))) (-15 -2843 ((-621 (-756 |#1| (-836 |#3|))) (-1112 |#1| (-521 (-836 |#3|)) (-836 |#3|) (-756 |#1| (-836 |#3|))))))
+((-2889 (((-3 (-1225 (-400 (-549))) "failed") (-1225 |#1|) |#1|) 21)) (-2981 (((-112) (-1225 |#1|)) 12)) (-2789 (((-3 (-1225 (-549)) "failed") (-1225 |#1|)) 16)))
+(((-1252 |#1|) (-10 -7 (-15 -2981 ((-112) (-1225 |#1|))) (-15 -2789 ((-3 (-1225 (-549)) "failed") (-1225 |#1|))) (-15 -2889 ((-3 (-1225 (-400 (-549))) "failed") (-1225 |#1|) |#1|))) (-617 (-549))) (T -1252))
+((-2889 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1225 *4)) (-4 *4 (-617 (-549))) (-5 *2 (-1225 (-400 (-549)))) (-5 *1 (-1252 *4)))) (-2789 (*1 *2 *3) (|partial| -12 (-5 *3 (-1225 *4)) (-4 *4 (-617 (-549))) (-5 *2 (-1225 (-549))) (-5 *1 (-1252 *4)))) (-2981 (*1 *2 *3) (-12 (-5 *3 (-1225 *4)) (-4 *4 (-617 (-549))) (-5 *2 (-112)) (-5 *1 (-1252 *4)))))
+(-10 -7 (-15 -2981 ((-112) (-1225 |#1|))) (-15 -2789 ((-3 (-1225 (-549)) "failed") (-1225 |#1|))) (-15 -2889 ((-3 (-1225 (-400 (-549))) "failed") (-1225 |#1|) |#1|)))
+((-3832 (((-112) $ $) NIL)) (-3210 (((-112) $) 11)) (-2416 (((-3 $ "failed") $ $) NIL)) (-3614 (((-747)) 8)) (-3034 (($) NIL T CONST)) (-2612 (((-3 $ "failed") $) 43)) (-3237 (($) 36)) (-2297 (((-112) $) NIL)) (-2964 (((-3 $ "failed") $) 29)) (-3309 (((-892) $) 15)) (-3441 (((-1124) $) NIL)) (-3059 (($) 25 T CONST)) (-3494 (($ (-892)) 37)) (-3988 (((-1086) $) NIL)) (-2843 (((-549) $) 13)) (-3845 (((-834) $) 22) (($ (-549)) 19)) (-2371 (((-747)) 9)) (-3274 (($) 23 T CONST)) (-3286 (($) 24 T CONST)) (-2387 (((-112) $ $) 27)) (-2498 (($ $) 38) (($ $ $) 35)) (-2484 (($ $ $) 26)) (** (($ $ (-892)) NIL) (($ $ (-747)) 40)) (* (($ (-892) $) NIL) (($ (-747) $) NIL) (($ (-549) $) 32) (($ $ $) 31)))
+(((-1253 |#1|) (-13 (-170) (-361) (-594 (-549)) (-1117)) (-892)) (T -1253))
+NIL
+(-13 (-170) (-361) (-594 (-549)) (-1117))
+NIL
+NIL
+NIL
+NIL
+NIL
+NIL
+NIL
+NIL
+NIL
+NIL
+NIL
+NIL
+((-3 3173096 3173101 3173106 NIL NIL NIL NIL (NIL) -8 NIL NIL) (-2 3173081 3173086 3173091 NIL NIL NIL NIL (NIL) -8 NIL NIL) (-1 3173066 3173071 3173076 NIL NIL NIL NIL (NIL) -8 NIL NIL) (0 3173051 3173056 3173061 NIL NIL NIL NIL (NIL) -8 NIL NIL) (-1253 3172227 3172926 3173003 "ZMOD" 3173008 NIL ZMOD (NIL NIL) -8 NIL NIL) (-1252 3171337 3171501 3171710 "ZLINDEP" 3172059 NIL ZLINDEP (NIL T) -7 NIL NIL) (-1251 3160713 3162465 3164424 "ZDSOLVE" 3169479 NIL ZDSOLVE (NIL T NIL NIL) -7 NIL NIL) (-1250 3159959 3160100 3160289 "YSTREAM" 3160559 NIL YSTREAM (NIL T) -7 NIL NIL) (-1249 3157770 3159260 3159464 "XRPOLY" 3159802 NIL XRPOLY (NIL T T) -8 NIL NIL) (-1248 3154262 3155545 3156129 "XPR" 3157233 NIL XPR (NIL T T) -8 NIL NIL) (-1247 3152018 3153593 3153797 "XPOLY" 3154093 NIL XPOLY (NIL T) -8 NIL NIL) (-1246 3149867 3151201 3151256 "XPOLYC" 3151544 NIL XPOLYC (NIL T T) -9 NIL 3151657) (-1245 3146285 3148384 3148772 "XPBWPOLY" 3149525 NIL XPBWPOLY (NIL T T) -8 NIL NIL) (-1244 3142270 3144518 3144560 "XF" 3145181 NIL XF (NIL T) -9 NIL 3145581) (-1243 3141891 3141979 3142148 "XF-" 3142153 NIL XF- (NIL T T) -8 NIL NIL) (-1242 3137283 3138538 3138593 "XFALG" 3140765 NIL XFALG (NIL T T) -9 NIL 3141554) (-1241 3136416 3136520 3136725 "XEXPPKG" 3137175 NIL XEXPPKG (NIL T T T) -7 NIL NIL) (-1240 3134560 3136266 3136362 "XDPOLY" 3136367 NIL XDPOLY (NIL T T) -8 NIL NIL) (-1239 3133476 3134042 3134085 "XALG" 3134148 NIL XALG (NIL T) -9 NIL 3134268) (-1238 3126945 3131453 3131947 "WUTSET" 3133068 NIL WUTSET (NIL T T T T) -8 NIL NIL) (-1237 3124796 3125557 3125910 "WP" 3126726 NIL WP (NIL T T T T NIL NIL NIL) -8 NIL NIL) (-1236 3124425 3124618 3124688 "WHILEAST" 3124748 T WHILEAST (NIL) -8 NIL NIL) (-1235 3123924 3124142 3124236 "WHEREAST" 3124353 T WHEREAST (NIL) -8 NIL NIL) (-1234 3122810 3123008 3123303 "WFFINTBS" 3123721 NIL WFFINTBS (NIL T T T T) -7 NIL NIL) (-1233 3120714 3121141 3121603 "WEIER" 3122382 NIL WEIER (NIL T) -7 NIL NIL) (-1232 3119861 3120285 3120327 "VSPACE" 3120463 NIL VSPACE (NIL T) -9 NIL 3120537) (-1231 3119699 3119726 3119817 "VSPACE-" 3119822 NIL VSPACE- (NIL T T) -8 NIL NIL) (-1230 3119445 3119488 3119559 "VOID" 3119650 T VOID (NIL) -8 NIL NIL) (-1229 3117581 3117940 3118346 "VIEW" 3119061 T VIEW (NIL) -7 NIL NIL) (-1228 3114006 3114644 3115381 "VIEWDEF" 3116866 T VIEWDEF (NIL) -7 NIL NIL) (-1227 3103344 3105554 3107727 "VIEW3D" 3111855 T VIEW3D (NIL) -8 NIL NIL) (-1226 3095626 3097255 3098834 "VIEW2D" 3101787 T VIEW2D (NIL) -8 NIL NIL) (-1225 3091030 3095396 3095488 "VECTOR" 3095569 NIL VECTOR (NIL T) -8 NIL NIL) (-1224 3089607 3089866 3090184 "VECTOR2" 3090760 NIL VECTOR2 (NIL T T) -7 NIL NIL) (-1223 3083134 3087391 3087434 "VECTCAT" 3088427 NIL VECTCAT (NIL T) -9 NIL 3089013) (-1222 3082148 3082402 3082792 "VECTCAT-" 3082797 NIL VECTCAT- (NIL T T) -8 NIL NIL) (-1221 3081629 3081799 3081919 "VARIABLE" 3082063 NIL VARIABLE (NIL NIL) -8 NIL NIL) (-1220 3081562 3081567 3081597 "UTYPE" 3081602 T UTYPE (NIL) -9 NIL NIL) (-1219 3080392 3080546 3080808 "UTSODETL" 3081388 NIL UTSODETL (NIL T T T T) -7 NIL NIL) (-1218 3077832 3078292 3078816 "UTSODE" 3079933 NIL UTSODE (NIL T T) -7 NIL NIL) (-1217 3069708 3075458 3075947 "UTS" 3077401 NIL UTS (NIL T NIL NIL) -8 NIL NIL) (-1216 3061081 3066400 3066443 "UTSCAT" 3067555 NIL UTSCAT (NIL T) -9 NIL 3068312) (-1215 3058435 3059151 3060140 "UTSCAT-" 3060145 NIL UTSCAT- (NIL T T) -8 NIL NIL) (-1214 3058062 3058105 3058238 "UTS2" 3058386 NIL UTS2 (NIL T T T T) -7 NIL NIL) (-1213 3052337 3054902 3054945 "URAGG" 3057015 NIL URAGG (NIL T) -9 NIL 3057737) (-1212 3049276 3050139 3051262 "URAGG-" 3051267 NIL URAGG- (NIL T T) -8 NIL NIL) (-1211 3045000 3047890 3048362 "UPXSSING" 3048940 NIL UPXSSING (NIL T T NIL NIL) -8 NIL NIL) (-1210 3036970 3044115 3044397 "UPXS" 3044776 NIL UPXS (NIL T NIL NIL) -8 NIL NIL) (-1209 3030083 3036874 3036946 "UPXSCONS" 3036951 NIL UPXSCONS (NIL T T) -8 NIL NIL) (-1208 3020441 3027186 3027248 "UPXSCCA" 3027904 NIL UPXSCCA (NIL T T) -9 NIL 3028146) (-1207 3020079 3020164 3020338 "UPXSCCA-" 3020343 NIL UPXSCCA- (NIL T T T) -8 NIL NIL) (-1206 3010363 3016881 3016924 "UPXSCAT" 3017572 NIL UPXSCAT (NIL T) -9 NIL 3018180) (-1205 3009793 3009872 3010051 "UPXS2" 3010278 NIL UPXS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL) (-1204 3008447 3008700 3009051 "UPSQFREE" 3009536 NIL UPSQFREE (NIL T T) -7 NIL NIL) (-1203 3002365 3005374 3005429 "UPSCAT" 3006590 NIL UPSCAT (NIL T T) -9 NIL 3007364) (-1202 3001569 3001776 3002103 "UPSCAT-" 3002108 NIL UPSCAT- (NIL T T T) -8 NIL NIL) (-1201 2987660 2995656 2995699 "UPOLYC" 2997800 NIL UPOLYC (NIL T) -9 NIL 2999021) (-1200 2978989 2981414 2984561 "UPOLYC-" 2984566 NIL UPOLYC- (NIL T T) -8 NIL NIL) (-1199 2978616 2978659 2978792 "UPOLYC2" 2978940 NIL UPOLYC2 (NIL T T T T) -7 NIL NIL) (-1198 2970073 2978182 2978320 "UP" 2978526 NIL UP (NIL NIL T) -8 NIL NIL) (-1197 2969412 2969519 2969683 "UPMP" 2969962 NIL UPMP (NIL T T) -7 NIL NIL) (-1196 2968965 2969046 2969185 "UPDIVP" 2969325 NIL UPDIVP (NIL T T) -7 NIL NIL) (-1195 2967533 2967782 2968098 "UPDECOMP" 2968714 NIL UPDECOMP (NIL T T) -7 NIL NIL) (-1194 2966768 2966880 2967065 "UPCDEN" 2967417 NIL UPCDEN (NIL T T T) -7 NIL NIL) (-1193 2966287 2966356 2966505 "UP2" 2966693 NIL UP2 (NIL NIL T NIL T) -7 NIL NIL) (-1192 2964804 2965491 2965768 "UNISEG" 2966045 NIL UNISEG (NIL T) -8 NIL NIL) (-1191 2964019 2964146 2964351 "UNISEG2" 2964647 NIL UNISEG2 (NIL T T) -7 NIL NIL) (-1190 2963079 2963259 2963485 "UNIFACT" 2963835 NIL UNIFACT (NIL T) -7 NIL NIL) (-1189 2947048 2962256 2962507 "ULS" 2962886 NIL ULS (NIL T NIL NIL) -8 NIL NIL) (-1188 2935090 2946952 2947024 "ULSCONS" 2947029 NIL ULSCONS (NIL T T) -8 NIL NIL) (-1187 2917894 2929829 2929891 "ULSCCAT" 2930611 NIL ULSCCAT (NIL T T) -9 NIL 2930908) (-1186 2916944 2917189 2917577 "ULSCCAT-" 2917582 NIL ULSCCAT- (NIL T T T) -8 NIL NIL) (-1185 2907005 2913437 2913480 "ULSCAT" 2914343 NIL ULSCAT (NIL T) -9 NIL 2915073) (-1184 2906435 2906514 2906693 "ULS2" 2906920 NIL ULS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL) (-1183 2904873 2905796 2905826 "UFD" 2906038 T UFD (NIL) -9 NIL 2906152) (-1182 2904667 2904713 2904808 "UFD-" 2904813 NIL UFD- (NIL T) -8 NIL NIL) (-1181 2903749 2903932 2904148 "UDVO" 2904473 T UDVO (NIL) -7 NIL NIL) (-1180 2901565 2901974 2902445 "UDPO" 2903313 NIL UDPO (NIL T) -7 NIL NIL) (-1179 2901498 2901503 2901533 "TYPE" 2901538 T TYPE (NIL) -9 NIL NIL) (-1178 2901285 2901453 2901484 "TYPEAST" 2901489 T TYPEAST (NIL) -8 NIL NIL) (-1177 2900256 2900458 2900698 "TWOFACT" 2901079 NIL TWOFACT (NIL T) -7 NIL NIL) (-1176 2899194 2899531 2899794 "TUPLE" 2900028 NIL TUPLE (NIL T) -8 NIL NIL) (-1175 2896885 2897404 2897943 "TUBETOOL" 2898677 T TUBETOOL (NIL) -7 NIL NIL) (-1174 2895734 2895939 2896180 "TUBE" 2896678 NIL TUBE (NIL T) -8 NIL NIL) (-1173 2890498 2894706 2894989 "TS" 2895486 NIL TS (NIL T) -8 NIL NIL) (-1172 2879165 2883257 2883354 "TSETCAT" 2888623 NIL TSETCAT (NIL T T T T) -9 NIL 2890154) (-1171 2873899 2875497 2877388 "TSETCAT-" 2877393 NIL TSETCAT- (NIL T T T T T) -8 NIL NIL) (-1170 2868162 2869008 2869950 "TRMANIP" 2873035 NIL TRMANIP (NIL T T) -7 NIL NIL) (-1169 2867603 2867666 2867829 "TRIMAT" 2868094 NIL TRIMAT (NIL T T T T) -7 NIL NIL) (-1168 2865399 2865636 2866000 "TRIGMNIP" 2867352 NIL TRIGMNIP (NIL T T) -7 NIL NIL) (-1167 2864919 2865032 2865062 "TRIGCAT" 2865275 T TRIGCAT (NIL) -9 NIL NIL) (-1166 2864588 2864667 2864808 "TRIGCAT-" 2864813 NIL TRIGCAT- (NIL T) -8 NIL NIL) (-1165 2861487 2863448 2863728 "TREE" 2864343 NIL TREE (NIL T) -8 NIL NIL) (-1164 2860761 2861289 2861319 "TRANFUN" 2861354 T TRANFUN (NIL) -9 NIL 2861420) (-1163 2860040 2860231 2860511 "TRANFUN-" 2860516 NIL TRANFUN- (NIL T) -8 NIL NIL) (-1162 2859844 2859876 2859937 "TOPSP" 2860001 T TOPSP (NIL) -7 NIL NIL) (-1161 2859192 2859307 2859461 "TOOLSIGN" 2859725 NIL TOOLSIGN (NIL T) -7 NIL NIL) (-1160 2857853 2858369 2858608 "TEXTFILE" 2858975 T TEXTFILE (NIL) -8 NIL NIL) (-1159 2855718 2856232 2856670 "TEX" 2857437 T TEX (NIL) -8 NIL NIL) (-1158 2855499 2855530 2855602 "TEX1" 2855681 NIL TEX1 (NIL T) -7 NIL NIL) (-1157 2855147 2855210 2855300 "TEMUTL" 2855431 T TEMUTL (NIL) -7 NIL NIL) (-1156 2853301 2853581 2853906 "TBCMPPK" 2854870 NIL TBCMPPK (NIL T T) -7 NIL NIL) (-1155 2845189 2851461 2851517 "TBAGG" 2851917 NIL TBAGG (NIL T T) -9 NIL 2852128) (-1154 2840259 2841747 2843501 "TBAGG-" 2843506 NIL TBAGG- (NIL T T T) -8 NIL NIL) (-1153 2839643 2839750 2839895 "TANEXP" 2840148 NIL TANEXP (NIL T) -7 NIL NIL) (-1152 2833144 2839500 2839593 "TABLE" 2839598 NIL TABLE (NIL T T) -8 NIL NIL) (-1151 2832556 2832655 2832793 "TABLEAU" 2833041 NIL TABLEAU (NIL T) -8 NIL NIL) (-1150 2827164 2828384 2829632 "TABLBUMP" 2831342 NIL TABLBUMP (NIL T) -7 NIL NIL) (-1149 2826592 2826692 2826820 "SYSTEM" 2827058 T SYSTEM (NIL) -7 NIL NIL) (-1148 2823055 2823750 2824533 "SYSSOLP" 2825843 NIL SYSSOLP (NIL T) -7 NIL NIL) (-1147 2819346 2820054 2820788 "SYNTAX" 2822343 T SYNTAX (NIL) -8 NIL NIL) (-1146 2816504 2817106 2817738 "SYMTAB" 2818736 T SYMTAB (NIL) -8 NIL NIL) (-1145 2811753 2812655 2813638 "SYMS" 2815543 T SYMS (NIL) -8 NIL NIL) (-1144 2809025 2811211 2811441 "SYMPOLY" 2811558 NIL SYMPOLY (NIL T) -8 NIL NIL) (-1143 2808542 2808617 2808740 "SYMFUNC" 2808937 NIL SYMFUNC (NIL T) -7 NIL NIL) (-1142 2804519 2805779 2806601 "SYMBOL" 2807742 T SYMBOL (NIL) -8 NIL NIL) (-1141 2798058 2799747 2801467 "SWITCH" 2802821 T SWITCH (NIL) -8 NIL NIL) (-1140 2791328 2796879 2797182 "SUTS" 2797813 NIL SUTS (NIL T NIL NIL) -8 NIL NIL) (-1139 2783297 2790443 2790725 "SUPXS" 2791104 NIL SUPXS (NIL T NIL NIL) -8 NIL NIL) (-1138 2774826 2782915 2783041 "SUP" 2783206 NIL SUP (NIL T) -8 NIL NIL) (-1137 2773985 2774112 2774329 "SUPFRACF" 2774694 NIL SUPFRACF (NIL T T T T) -7 NIL NIL) (-1136 2773606 2773665 2773778 "SUP2" 2773920 NIL SUP2 (NIL T T) -7 NIL NIL) (-1135 2772019 2772293 2772656 "SUMRF" 2773305 NIL SUMRF (NIL T) -7 NIL NIL) (-1134 2771333 2771399 2771598 "SUMFS" 2771940 NIL SUMFS (NIL T T) -7 NIL NIL) (-1133 2755342 2770510 2770761 "SULS" 2771140 NIL SULS (NIL T NIL NIL) -8 NIL NIL) (-1132 2754971 2755164 2755234 "SUCHTAST" 2755294 T SUCHTAST (NIL) -8 NIL NIL) (-1131 2754293 2754496 2754636 "SUCH" 2754879 NIL SUCH (NIL T T) -8 NIL NIL) (-1130 2748187 2749199 2750158 "SUBSPACE" 2753381 NIL SUBSPACE (NIL NIL T) -8 NIL NIL) (-1129 2747617 2747707 2747871 "SUBRESP" 2748075 NIL SUBRESP (NIL T T) -7 NIL NIL) (-1128 2740986 2742282 2743593 "STTF" 2746353 NIL STTF (NIL T) -7 NIL NIL) (-1127 2735159 2736279 2737426 "STTFNC" 2739886 NIL STTFNC (NIL T) -7 NIL NIL) (-1126 2726474 2728341 2730135 "STTAYLOR" 2733400 NIL STTAYLOR (NIL T) -7 NIL NIL) (-1125 2719718 2726338 2726421 "STRTBL" 2726426 NIL STRTBL (NIL T) -8 NIL NIL) (-1124 2715109 2719673 2719704 "STRING" 2719709 T STRING (NIL) -8 NIL NIL) (-1123 2709997 2714482 2714512 "STRICAT" 2714571 T STRICAT (NIL) -9 NIL 2714633) (-1122 2702710 2707520 2708140 "STREAM" 2709412 NIL STREAM (NIL T) -8 NIL NIL) (-1121 2702220 2702297 2702441 "STREAM3" 2702627 NIL STREAM3 (NIL T T T) -7 NIL NIL) (-1120 2701202 2701385 2701620 "STREAM2" 2702033 NIL STREAM2 (NIL T T) -7 NIL NIL) (-1119 2700890 2700942 2701035 "STREAM1" 2701144 NIL STREAM1 (NIL T) -7 NIL NIL) (-1118 2699906 2700087 2700318 "STINPROD" 2700706 NIL STINPROD (NIL T) -7 NIL NIL) (-1117 2699484 2699668 2699698 "STEP" 2699778 T STEP (NIL) -9 NIL 2699856) (-1116 2693027 2699383 2699460 "STBL" 2699465 NIL STBL (NIL T T NIL) -8 NIL NIL) (-1115 2688202 2692249 2692292 "STAGG" 2692445 NIL STAGG (NIL T) -9 NIL 2692534) (-1114 2685904 2686506 2687378 "STAGG-" 2687383 NIL STAGG- (NIL T T) -8 NIL NIL) (-1113 2684099 2685674 2685766 "STACK" 2685847 NIL STACK (NIL T) -8 NIL NIL) (-1112 2676824 2682240 2682696 "SREGSET" 2683729 NIL SREGSET (NIL T T T T) -8 NIL NIL) (-1111 2669250 2670618 2672131 "SRDCMPK" 2675430 NIL SRDCMPK (NIL T T T T T) -7 NIL NIL) (-1110 2662217 2666690 2666720 "SRAGG" 2668023 T SRAGG (NIL) -9 NIL 2668631) (-1109 2661234 2661489 2661868 "SRAGG-" 2661873 NIL SRAGG- (NIL T) -8 NIL NIL) (-1108 2655720 2660149 2660577 "SQMATRIX" 2660853 NIL SQMATRIX (NIL NIL T) -8 NIL NIL) (-1107 2649472 2652440 2653166 "SPLTREE" 2655066 NIL SPLTREE (NIL T T) -8 NIL NIL) (-1106 2645462 2646128 2646774 "SPLNODE" 2648898 NIL SPLNODE (NIL T T) -8 NIL NIL) (-1105 2644509 2644742 2644772 "SPFCAT" 2645216 T SPFCAT (NIL) -9 NIL NIL) (-1104 2643246 2643456 2643720 "SPECOUT" 2644267 T SPECOUT (NIL) -7 NIL NIL) (-1103 2635706 2637298 2637328 "SPADXPT" 2641295 T SPADXPT (NIL) -9 NIL 2643135) (-1102 2635467 2635507 2635576 "SPADPRSR" 2635659 T SPADPRSR (NIL) -7 NIL NIL) (-1101 2633808 2635422 2635453 "SPADAST" 2635458 T SPADAST (NIL) -8 NIL NIL) (-1100 2625779 2627526 2627569 "SPACEC" 2631942 NIL SPACEC (NIL T) -9 NIL 2633758) (-1099 2623950 2625711 2625760 "SPACE3" 2625765 NIL SPACE3 (NIL T) -8 NIL NIL) (-1098 2622702 2622873 2623164 "SORTPAK" 2623755 NIL SORTPAK (NIL T T) -7 NIL NIL) (-1097 2620752 2621055 2621474 "SOLVETRA" 2622366 NIL SOLVETRA (NIL T) -7 NIL NIL) (-1096 2619763 2619985 2620259 "SOLVESER" 2620525 NIL SOLVESER (NIL T) -7 NIL NIL) (-1095 2614983 2615864 2616866 "SOLVERAD" 2618815 NIL SOLVERAD (NIL T) -7 NIL NIL) (-1094 2610798 2611407 2612136 "SOLVEFOR" 2614350 NIL SOLVEFOR (NIL T T) -7 NIL NIL) (-1093 2605095 2610147 2610244 "SNTSCAT" 2610249 NIL SNTSCAT (NIL T T T T) -9 NIL 2610319) (-1092 2599238 2603418 2603809 "SMTS" 2604785 NIL SMTS (NIL T T T) -8 NIL NIL) (-1091 2593688 2599126 2599203 "SMP" 2599208 NIL SMP (NIL T T) -8 NIL NIL) (-1090 2591847 2592148 2592546 "SMITH" 2593385 NIL SMITH (NIL T T T T) -7 NIL NIL) (-1089 2584830 2588985 2589088 "SMATCAT" 2590439 NIL SMATCAT (NIL NIL T T T) -9 NIL 2590989) (-1088 2581770 2582593 2583771 "SMATCAT-" 2583776 NIL SMATCAT- (NIL T NIL T T T) -8 NIL NIL) (-1087 2579483 2581006 2581049 "SKAGG" 2581310 NIL SKAGG (NIL T) -9 NIL 2581445) (-1086 2575599 2578587 2578865 "SINT" 2579227 T SINT (NIL) -8 NIL NIL) (-1085 2575371 2575409 2575475 "SIMPAN" 2575555 T SIMPAN (NIL) -7 NIL NIL) (-1084 2574678 2574906 2575046 "SIG" 2575253 T SIG (NIL) -8 NIL NIL) (-1083 2573516 2573737 2574012 "SIGNRF" 2574437 NIL SIGNRF (NIL T) -7 NIL NIL) (-1082 2572321 2572472 2572763 "SIGNEF" 2573345 NIL SIGNEF (NIL T T) -7 NIL NIL) (-1081 2571654 2571904 2572028 "SIGAST" 2572219 T SIGAST (NIL) -8 NIL NIL) (-1080 2569344 2569798 2570304 "SHP" 2571195 NIL SHP (NIL T NIL) -7 NIL NIL) (-1079 2563250 2569245 2569321 "SHDP" 2569326 NIL SHDP (NIL NIL NIL T) -8 NIL NIL) (-1078 2562849 2563015 2563045 "SGROUP" 2563138 T SGROUP (NIL) -9 NIL 2563200) (-1077 2562707 2562733 2562806 "SGROUP-" 2562811 NIL SGROUP- (NIL T) -8 NIL NIL) (-1076 2559543 2560240 2560963 "SGCF" 2562006 T SGCF (NIL) -7 NIL NIL) (-1075 2553938 2558990 2559087 "SFRTCAT" 2559092 NIL SFRTCAT (NIL T T T T) -9 NIL 2559131) (-1074 2547362 2548377 2549513 "SFRGCD" 2552921 NIL SFRGCD (NIL T T T T T) -7 NIL NIL) (-1073 2540490 2541561 2542747 "SFQCMPK" 2546295 NIL SFQCMPK (NIL T T T T T) -7 NIL NIL) (-1072 2540112 2540201 2540311 "SFORT" 2540431 NIL SFORT (NIL T T) -8 NIL NIL) (-1071 2539257 2539952 2540073 "SEXOF" 2540078 NIL SEXOF (NIL T T T T T) -8 NIL NIL) (-1070 2538391 2539138 2539206 "SEX" 2539211 T SEX (NIL) -8 NIL NIL) (-1069 2533167 2533856 2533951 "SEXCAT" 2537722 NIL SEXCAT (NIL T T T T T) -9 NIL 2538341) (-1068 2530347 2533101 2533149 "SET" 2533154 NIL SET (NIL T) -8 NIL NIL) (-1067 2528598 2529060 2529365 "SETMN" 2530088 NIL SETMN (NIL NIL NIL) -8 NIL NIL) (-1066 2528204 2528330 2528360 "SETCAT" 2528477 T SETCAT (NIL) -9 NIL 2528562) (-1065 2527984 2528036 2528135 "SETCAT-" 2528140 NIL SETCAT- (NIL T) -8 NIL NIL) (-1064 2524371 2526445 2526488 "SETAGG" 2527358 NIL SETAGG (NIL T) -9 NIL 2527698) (-1063 2523829 2523945 2524182 "SETAGG-" 2524187 NIL SETAGG- (NIL T T) -8 NIL NIL) (-1062 2523299 2523525 2523626 "SEQAST" 2523750 T SEQAST (NIL) -8 NIL NIL) (-1061 2522503 2522796 2522857 "SEGXCAT" 2523143 NIL SEGXCAT (NIL T T) -9 NIL 2523263) (-1060 2521559 2522169 2522351 "SEG" 2522356 NIL SEG (NIL T) -8 NIL NIL) (-1059 2520466 2520679 2520722 "SEGCAT" 2521304 NIL SEGCAT (NIL T) -9 NIL 2521542) (-1058 2519515 2519845 2520045 "SEGBIND" 2520301 NIL SEGBIND (NIL T) -8 NIL NIL) (-1057 2519136 2519195 2519308 "SEGBIND2" 2519450 NIL SEGBIND2 (NIL T T) -7 NIL NIL) (-1056 2518737 2518937 2519014 "SEGAST" 2519081 T SEGAST (NIL) -8 NIL NIL) (-1055 2517956 2518082 2518286 "SEG2" 2518581 NIL SEG2 (NIL T T) -7 NIL NIL) (-1054 2517393 2517891 2517938 "SDVAR" 2517943 NIL SDVAR (NIL T) -8 NIL NIL) (-1053 2509683 2517163 2517293 "SDPOL" 2517298 NIL SDPOL (NIL T) -8 NIL NIL) (-1052 2508276 2508542 2508861 "SCPKG" 2509398 NIL SCPKG (NIL T) -7 NIL NIL) (-1051 2507412 2507592 2507792 "SCOPE" 2508098 T SCOPE (NIL) -8 NIL NIL) (-1050 2506633 2506766 2506945 "SCACHE" 2507267 NIL SCACHE (NIL T) -7 NIL NIL) (-1049 2506342 2506502 2506532 "SASTCAT" 2506537 T SASTCAT (NIL) -9 NIL 2506550) (-1048 2505781 2506102 2506187 "SAOS" 2506279 T SAOS (NIL) -8 NIL NIL) (-1047 2505346 2505381 2505554 "SAERFFC" 2505740 NIL SAERFFC (NIL T T T) -7 NIL NIL) (-1046 2499320 2505243 2505323 "SAE" 2505328 NIL SAE (NIL T T NIL) -8 NIL NIL) (-1045 2498913 2498948 2499107 "SAEFACT" 2499279 NIL SAEFACT (NIL T T T) -7 NIL NIL) (-1044 2497234 2497548 2497949 "RURPK" 2498579 NIL RURPK (NIL T NIL) -7 NIL NIL) (-1043 2495870 2496149 2496461 "RULESET" 2497068 NIL RULESET (NIL T T T) -8 NIL NIL) (-1042 2493057 2493560 2494025 "RULE" 2495551 NIL RULE (NIL T T T) -8 NIL NIL) (-1041 2492696 2492851 2492934 "RULECOLD" 2493009 NIL RULECOLD (NIL NIL) -8 NIL NIL) (-1040 2492194 2492413 2492507 "RSTRCAST" 2492624 T RSTRCAST (NIL) -8 NIL NIL) (-1039 2487043 2487837 2488757 "RSETGCD" 2491393 NIL RSETGCD (NIL T T T T T) -7 NIL NIL) (-1038 2476300 2481352 2481449 "RSETCAT" 2485568 NIL RSETCAT (NIL T T T T) -9 NIL 2486665) (-1037 2474227 2474766 2475590 "RSETCAT-" 2475595 NIL RSETCAT- (NIL T T T T T) -8 NIL NIL) (-1036 2466614 2467989 2469509 "RSDCMPK" 2472826 NIL RSDCMPK (NIL T T T T T) -7 NIL NIL) (-1035 2464619 2465060 2465134 "RRCC" 2466220 NIL RRCC (NIL T T) -9 NIL 2466564) (-1034 2463970 2464144 2464423 "RRCC-" 2464428 NIL RRCC- (NIL T T T) -8 NIL NIL) (-1033 2463440 2463666 2463767 "RPTAST" 2463891 T RPTAST (NIL) -8 NIL NIL) (-1032 2437668 2447253 2447320 "RPOLCAT" 2457984 NIL RPOLCAT (NIL T T T) -9 NIL 2461143) (-1031 2429168 2431506 2434628 "RPOLCAT-" 2434633 NIL RPOLCAT- (NIL T T T T) -8 NIL NIL) (-1030 2420215 2427379 2427861 "ROUTINE" 2428708 T ROUTINE (NIL) -8 NIL NIL) (-1029 2416973 2419766 2419915 "ROMAN" 2420088 T ROMAN (NIL) -8 NIL NIL) (-1028 2415248 2415833 2416093 "ROIRC" 2416778 NIL ROIRC (NIL T T) -8 NIL NIL) (-1027 2411699 2413938 2413968 "RNS" 2414272 T RNS (NIL) -9 NIL 2414544) (-1026 2410208 2410591 2411125 "RNS-" 2411200 NIL RNS- (NIL T) -8 NIL NIL) (-1025 2409657 2410039 2410069 "RNG" 2410074 T RNG (NIL) -9 NIL 2410095) (-1024 2409049 2409411 2409454 "RMODULE" 2409516 NIL RMODULE (NIL T) -9 NIL 2409558) (-1023 2407885 2407979 2408315 "RMCAT2" 2408950 NIL RMCAT2 (NIL NIL NIL T T T T T T T T) -7 NIL NIL) (-1022 2404590 2407059 2407384 "RMATRIX" 2407619 NIL RMATRIX (NIL NIL NIL T) -8 NIL NIL) (-1021 2397532 2399766 2399881 "RMATCAT" 2403240 NIL RMATCAT (NIL NIL NIL T T T) -9 NIL 2404222) (-1020 2396907 2397054 2397361 "RMATCAT-" 2397366 NIL RMATCAT- (NIL T NIL NIL T T T) -8 NIL NIL) (-1019 2396474 2396549 2396677 "RINTERP" 2396826 NIL RINTERP (NIL NIL T) -7 NIL NIL) (-1018 2395562 2396082 2396112 "RING" 2396224 T RING (NIL) -9 NIL 2396319) (-1017 2395354 2395398 2395495 "RING-" 2395500 NIL RING- (NIL T) -8 NIL NIL) (-1016 2394195 2394432 2394690 "RIDIST" 2395118 T RIDIST (NIL) -7 NIL NIL) (-1015 2385511 2393663 2393869 "RGCHAIN" 2394043 NIL RGCHAIN (NIL T NIL) -8 NIL NIL) (-1014 2382505 2383119 2383789 "RF" 2384875 NIL RF (NIL T) -7 NIL NIL) (-1013 2382151 2382214 2382317 "RFFACTOR" 2382436 NIL RFFACTOR (NIL T) -7 NIL NIL) (-1012 2381876 2381911 2382008 "RFFACT" 2382110 NIL RFFACT (NIL T) -7 NIL NIL) (-1011 2379993 2380357 2380739 "RFDIST" 2381516 T RFDIST (NIL) -7 NIL NIL) (-1010 2379446 2379538 2379701 "RETSOL" 2379895 NIL RETSOL (NIL T T) -7 NIL NIL) (-1009 2379034 2379114 2379157 "RETRACT" 2379350 NIL RETRACT (NIL T) -9 NIL NIL) (-1008 2378883 2378908 2378995 "RETRACT-" 2379000 NIL RETRACT- (NIL T T) -8 NIL NIL) (-1007 2378512 2378705 2378775 "RETAST" 2378835 T RETAST (NIL) -8 NIL NIL) (-1006 2371366 2378165 2378292 "RESULT" 2378407 T RESULT (NIL) -8 NIL NIL) (-1005 2369992 2370635 2370834 "RESRING" 2371269 NIL RESRING (NIL T T T T NIL) -8 NIL NIL) (-1004 2369628 2369677 2369775 "RESLATC" 2369929 NIL RESLATC (NIL T) -7 NIL NIL) (-1003 2369334 2369368 2369475 "REPSQ" 2369587 NIL REPSQ (NIL T) -7 NIL NIL) (-1002 2366756 2367336 2367938 "REP" 2368754 T REP (NIL) -7 NIL NIL) (-1001 2366454 2366488 2366599 "REPDB" 2366715 NIL REPDB (NIL T) -7 NIL NIL) (-1000 2360364 2361743 2362966 "REP2" 2365266 NIL REP2 (NIL T) -7 NIL NIL) (-999 2356756 2357437 2358243 "REP1" 2359591 NIL REP1 (NIL T) -7 NIL NIL) (-998 2349494 2354909 2355363 "REGSET" 2356386 NIL REGSET (NIL T T T T) -8 NIL NIL) (-997 2348315 2348650 2348898 "REF" 2349279 NIL REF (NIL T) -8 NIL NIL) (-996 2347696 2347799 2347964 "REDORDER" 2348199 NIL REDORDER (NIL T T) -7 NIL NIL) (-995 2343716 2346924 2347147 "RECLOS" 2347525 NIL RECLOS (NIL T) -8 NIL NIL) (-994 2342773 2342954 2343167 "REALSOLV" 2343523 T REALSOLV (NIL) -7 NIL NIL) (-993 2342621 2342662 2342690 "REAL" 2342695 T REAL (NIL) -9 NIL 2342730) (-992 2339112 2339914 2340796 "REAL0Q" 2341786 NIL REAL0Q (NIL T) -7 NIL NIL) (-991 2334723 2335711 2336770 "REAL0" 2338093 NIL REAL0 (NIL T) -7 NIL NIL) (-990 2334225 2334444 2334536 "RDUCEAST" 2334651 T RDUCEAST (NIL) -8 NIL NIL) (-989 2333633 2333705 2333910 "RDIV" 2334147 NIL RDIV (NIL T T T T T) -7 NIL NIL) (-988 2332706 2332880 2333091 "RDIST" 2333455 NIL RDIST (NIL T) -7 NIL NIL) (-987 2331307 2331594 2331964 "RDETRS" 2332414 NIL RDETRS (NIL T T) -7 NIL NIL) (-986 2329124 2329578 2330114 "RDETR" 2330849 NIL RDETR (NIL T T) -7 NIL NIL) (-985 2327738 2328016 2328418 "RDEEFS" 2328840 NIL RDEEFS (NIL T T) -7 NIL NIL) (-984 2326236 2326542 2326972 "RDEEF" 2327426 NIL RDEEF (NIL T T) -7 NIL NIL) (-983 2320573 2323444 2323472 "RCFIELD" 2324749 T RCFIELD (NIL) -9 NIL 2325479) (-982 2318642 2319146 2319839 "RCFIELD-" 2319912 NIL RCFIELD- (NIL T) -8 NIL NIL) (-981 2314973 2316758 2316799 "RCAGG" 2317870 NIL RCAGG (NIL T) -9 NIL 2318335) (-980 2314604 2314698 2314858 "RCAGG-" 2314863 NIL RCAGG- (NIL T T) -8 NIL NIL) (-979 2313944 2314056 2314219 "RATRET" 2314488 NIL RATRET (NIL T) -7 NIL NIL) (-978 2313501 2313568 2313687 "RATFACT" 2313872 NIL RATFACT (NIL T) -7 NIL NIL) (-977 2312816 2312936 2313086 "RANDSRC" 2313371 T RANDSRC (NIL) -7 NIL NIL) (-976 2312553 2312597 2312668 "RADUTIL" 2312765 T RADUTIL (NIL) -7 NIL NIL) (-975 2305618 2311296 2311613 "RADIX" 2312268 NIL RADIX (NIL NIL) -8 NIL NIL) (-974 2297274 2305462 2305590 "RADFF" 2305595 NIL RADFF (NIL T T T NIL NIL) -8 NIL NIL) (-973 2296926 2297001 2297029 "RADCAT" 2297186 T RADCAT (NIL) -9 NIL NIL) (-972 2296711 2296759 2296856 "RADCAT-" 2296861 NIL RADCAT- (NIL T) -8 NIL NIL) (-971 2294862 2296486 2296575 "QUEUE" 2296655 NIL QUEUE (NIL T) -8 NIL NIL) (-970 2291438 2294799 2294844 "QUAT" 2294849 NIL QUAT (NIL T) -8 NIL NIL) (-969 2291076 2291119 2291246 "QUATCT2" 2291389 NIL QUATCT2 (NIL T T T T) -7 NIL NIL) (-968 2284936 2288237 2288277 "QUATCAT" 2289057 NIL QUATCAT (NIL T) -9 NIL 2289823) (-967 2281080 2282117 2283504 "QUATCAT-" 2283598 NIL QUATCAT- (NIL T T) -8 NIL NIL) (-966 2278600 2280164 2280205 "QUAGG" 2280580 NIL QUAGG (NIL T) -9 NIL 2280755) (-965 2278232 2278425 2278493 "QQUTAST" 2278552 T QQUTAST (NIL) -8 NIL NIL) (-964 2277157 2277630 2277802 "QFORM" 2278104 NIL QFORM (NIL NIL T) -8 NIL NIL) (-963 2268490 2273693 2273733 "QFCAT" 2274391 NIL QFCAT (NIL T) -9 NIL 2275390) (-962 2264062 2265263 2266854 "QFCAT-" 2266948 NIL QFCAT- (NIL T T) -8 NIL NIL) (-961 2263700 2263743 2263870 "QFCAT2" 2264013 NIL QFCAT2 (NIL T T T T) -7 NIL NIL) (-960 2263160 2263270 2263400 "QEQUAT" 2263590 T QEQUAT (NIL) -8 NIL NIL) (-959 2256308 2257379 2258563 "QCMPACK" 2262093 NIL QCMPACK (NIL T T T T T) -7 NIL NIL) (-958 2253884 2254305 2254733 "QALGSET" 2255963 NIL QALGSET (NIL T T T T) -8 NIL NIL) (-957 2253129 2253303 2253535 "QALGSET2" 2253704 NIL QALGSET2 (NIL NIL NIL) -7 NIL NIL) (-956 2251820 2252043 2252360 "PWFFINTB" 2252902 NIL PWFFINTB (NIL T T T T) -7 NIL NIL) (-955 2250002 2250170 2250524 "PUSHVAR" 2251634 NIL PUSHVAR (NIL T T T T) -7 NIL NIL) (-954 2245920 2246974 2247015 "PTRANFN" 2248899 NIL PTRANFN (NIL T) -9 NIL NIL) (-953 2244322 2244613 2244935 "PTPACK" 2245631 NIL PTPACK (NIL T) -7 NIL NIL) (-952 2243954 2244011 2244120 "PTFUNC2" 2244259 NIL PTFUNC2 (NIL T T) -7 NIL NIL) (-951 2238420 2242765 2242806 "PTCAT" 2243179 NIL PTCAT (NIL T) -9 NIL 2243341) (-950 2238078 2238113 2238237 "PSQFR" 2238379 NIL PSQFR (NIL T T T T) -7 NIL NIL) (-949 2236673 2236971 2237305 "PSEUDLIN" 2237776 NIL PSEUDLIN (NIL T) -7 NIL NIL) (-948 2223442 2225807 2228131 "PSETPK" 2234433 NIL PSETPK (NIL T T T T) -7 NIL NIL) (-947 2216486 2219200 2219296 "PSETCAT" 2222317 NIL PSETCAT (NIL T T T T) -9 NIL 2223131) (-946 2214322 2214956 2215777 "PSETCAT-" 2215782 NIL PSETCAT- (NIL T T T T T) -8 NIL NIL) (-945 2213671 2213836 2213864 "PSCURVE" 2214132 T PSCURVE (NIL) -9 NIL 2214299) (-944 2210152 2211634 2211699 "PSCAT" 2212543 NIL PSCAT (NIL T T T) -9 NIL 2212783) (-943 2209215 2209431 2209831 "PSCAT-" 2209836 NIL PSCAT- (NIL T T T T) -8 NIL NIL) (-942 2207867 2208500 2208714 "PRTITION" 2209021 T PRTITION (NIL) -8 NIL NIL) (-941 2207369 2207588 2207680 "PRTDAST" 2207795 T PRTDAST (NIL) -8 NIL NIL) (-940 2196467 2198673 2200861 "PRS" 2205231 NIL PRS (NIL T T) -7 NIL NIL) (-939 2194325 2195817 2195857 "PRQAGG" 2196040 NIL PRQAGG (NIL T) -9 NIL 2196142) (-938 2193711 2193940 2193968 "PROPLOG" 2194153 T PROPLOG (NIL) -9 NIL 2194275) (-937 2190881 2191525 2191989 "PROPFRML" 2193279 NIL PROPFRML (NIL T) -8 NIL NIL) (-936 2190341 2190451 2190581 "PROPERTY" 2190771 T PROPERTY (NIL) -8 NIL NIL) (-935 2184426 2188507 2189327 "PRODUCT" 2189567 NIL PRODUCT (NIL T T) -8 NIL NIL) (-934 2181739 2183884 2184118 "PR" 2184237 NIL PR (NIL T T) -8 NIL NIL) (-933 2181535 2181567 2181626 "PRINT" 2181700 T PRINT (NIL) -7 NIL NIL) (-932 2180875 2180992 2181144 "PRIMES" 2181415 NIL PRIMES (NIL T) -7 NIL NIL) (-931 2178940 2179341 2179807 "PRIMELT" 2180454 NIL PRIMELT (NIL T) -7 NIL NIL) (-930 2178669 2178718 2178746 "PRIMCAT" 2178870 T PRIMCAT (NIL) -9 NIL NIL) (-929 2174830 2178607 2178652 "PRIMARR" 2178657 NIL PRIMARR (NIL T) -8 NIL NIL) (-928 2173837 2174015 2174243 "PRIMARR2" 2174648 NIL PRIMARR2 (NIL T T) -7 NIL NIL) (-927 2173480 2173536 2173647 "PREASSOC" 2173775 NIL PREASSOC (NIL T T) -7 NIL NIL) (-926 2172955 2173088 2173116 "PPCURVE" 2173321 T PPCURVE (NIL) -9 NIL 2173457) (-925 2172577 2172750 2172833 "PORTNUM" 2172892 T PORTNUM (NIL) -8 NIL NIL) (-924 2169936 2170335 2170927 "POLYROOT" 2172158 NIL POLYROOT (NIL T T T T T) -7 NIL NIL) (-923 2163881 2169540 2169700 "POLY" 2169809 NIL POLY (NIL T) -8 NIL NIL) (-922 2163264 2163322 2163556 "POLYLIFT" 2163817 NIL POLYLIFT (NIL T T T T T) -7 NIL NIL) (-921 2159539 2159988 2160617 "POLYCATQ" 2162809 NIL POLYCATQ (NIL T T T T T) -7 NIL NIL) (-920 2146578 2151934 2151999 "POLYCAT" 2155513 NIL POLYCAT (NIL T T T) -9 NIL 2157441) (-919 2140028 2141889 2144273 "POLYCAT-" 2144278 NIL POLYCAT- (NIL T T T T) -8 NIL NIL) (-918 2139615 2139683 2139803 "POLY2UP" 2139954 NIL POLY2UP (NIL NIL T) -7 NIL NIL) (-917 2139247 2139304 2139413 "POLY2" 2139552 NIL POLY2 (NIL T T) -7 NIL NIL) (-916 2137932 2138171 2138447 "POLUTIL" 2139021 NIL POLUTIL (NIL T T) -7 NIL NIL) (-915 2136287 2136564 2136895 "POLTOPOL" 2137654 NIL POLTOPOL (NIL NIL T) -7 NIL NIL) (-914 2131805 2136223 2136269 "POINT" 2136274 NIL POINT (NIL T) -8 NIL NIL) (-913 2129992 2130349 2130724 "PNTHEORY" 2131450 T PNTHEORY (NIL) -7 NIL NIL) (-912 2128411 2128708 2129120 "PMTOOLS" 2129690 NIL PMTOOLS (NIL T T T) -7 NIL NIL) (-911 2128004 2128082 2128199 "PMSYM" 2128327 NIL PMSYM (NIL T) -7 NIL NIL) (-910 2127514 2127583 2127757 "PMQFCAT" 2127929 NIL PMQFCAT (NIL T T T) -7 NIL NIL) (-909 2126869 2126979 2127135 "PMPRED" 2127391 NIL PMPRED (NIL T) -7 NIL NIL) (-908 2126265 2126351 2126512 "PMPREDFS" 2126770 NIL PMPREDFS (NIL T T T) -7 NIL NIL) (-907 2124908 2125116 2125501 "PMPLCAT" 2126027 NIL PMPLCAT (NIL T T T T T) -7 NIL NIL) (-906 2124440 2124519 2124671 "PMLSAGG" 2124823 NIL PMLSAGG (NIL T T T) -7 NIL NIL) (-905 2123915 2123991 2124172 "PMKERNEL" 2124358 NIL PMKERNEL (NIL T T) -7 NIL NIL) (-904 2123532 2123607 2123720 "PMINS" 2123834 NIL PMINS (NIL T) -7 NIL NIL) (-903 2122960 2123029 2123245 "PMFS" 2123457 NIL PMFS (NIL T T T) -7 NIL NIL) (-902 2122188 2122306 2122511 "PMDOWN" 2122837 NIL PMDOWN (NIL T T T) -7 NIL NIL) (-901 2121351 2121510 2121692 "PMASS" 2122026 T PMASS (NIL) -7 NIL NIL) (-900 2120625 2120736 2120899 "PMASSFS" 2121237 NIL PMASSFS (NIL T T) -7 NIL NIL) (-899 2120280 2120348 2120442 "PLOTTOOL" 2120551 T PLOTTOOL (NIL) -7 NIL NIL) (-898 2114902 2116091 2117239 "PLOT" 2119152 T PLOT (NIL) -8 NIL NIL) (-897 2110716 2111750 2112671 "PLOT3D" 2114001 T PLOT3D (NIL) -8 NIL NIL) (-896 2109628 2109805 2110040 "PLOT1" 2110520 NIL PLOT1 (NIL T) -7 NIL NIL) (-895 2085022 2089694 2094545 "PLEQN" 2104894 NIL PLEQN (NIL T T T T) -7 NIL NIL) (-894 2084340 2084462 2084642 "PINTERP" 2084887 NIL PINTERP (NIL NIL T) -7 NIL NIL) (-893 2084033 2084080 2084183 "PINTERPA" 2084287 NIL PINTERPA (NIL T T) -7 NIL NIL) (-892 2083318 2083839 2083926 "PI" 2083966 T PI (NIL) -8 NIL NIL) (-891 2081750 2082691 2082719 "PID" 2082901 T PID (NIL) -9 NIL 2083035) (-890 2081475 2081512 2081600 "PICOERCE" 2081707 NIL PICOERCE (NIL T) -7 NIL NIL) (-889 2080795 2080934 2081110 "PGROEB" 2081331 NIL PGROEB (NIL T) -7 NIL NIL) (-888 2076382 2077196 2078101 "PGE" 2079910 T PGE (NIL) -7 NIL NIL) (-887 2074506 2074752 2075118 "PGCD" 2076099 NIL PGCD (NIL T T T T) -7 NIL NIL) (-886 2073844 2073947 2074108 "PFRPAC" 2074390 NIL PFRPAC (NIL T) -7 NIL NIL) (-885 2070524 2072392 2072745 "PFR" 2073523 NIL PFR (NIL T) -8 NIL NIL) (-884 2068913 2069157 2069482 "PFOTOOLS" 2070271 NIL PFOTOOLS (NIL T T) -7 NIL NIL) (-883 2067446 2067685 2068036 "PFOQ" 2068670 NIL PFOQ (NIL T T T) -7 NIL NIL) (-882 2065919 2066131 2066494 "PFO" 2067230 NIL PFO (NIL T T T T T) -7 NIL NIL) (-881 2062507 2065808 2065877 "PF" 2065882 NIL PF (NIL NIL) -8 NIL NIL) (-880 2059976 2061213 2061241 "PFECAT" 2061826 T PFECAT (NIL) -9 NIL 2062210) (-879 2059421 2059575 2059789 "PFECAT-" 2059794 NIL PFECAT- (NIL T) -8 NIL NIL) (-878 2058025 2058276 2058577 "PFBRU" 2059170 NIL PFBRU (NIL T T) -7 NIL NIL) (-877 2055892 2056243 2056675 "PFBR" 2057676 NIL PFBR (NIL T T T T) -7 NIL NIL) (-876 2051808 2053268 2053944 "PERM" 2055249 NIL PERM (NIL T) -8 NIL NIL) (-875 2047074 2048015 2048885 "PERMGRP" 2050971 NIL PERMGRP (NIL T) -8 NIL NIL) (-874 2045206 2046137 2046178 "PERMCAT" 2046624 NIL PERMCAT (NIL T) -9 NIL 2046929) (-873 2044859 2044900 2045024 "PERMAN" 2045159 NIL PERMAN (NIL NIL T) -7 NIL NIL) (-872 2042299 2044428 2044559 "PENDTREE" 2044761 NIL PENDTREE (NIL T) -8 NIL NIL) (-871 2040412 2041146 2041187 "PDRING" 2041844 NIL PDRING (NIL T) -9 NIL 2042130) (-870 2039515 2039733 2040095 "PDRING-" 2040100 NIL PDRING- (NIL T T) -8 NIL NIL) (-869 2036656 2037407 2038098 "PDEPROB" 2038844 T PDEPROB (NIL) -8 NIL NIL) (-868 2034203 2034705 2035260 "PDEPACK" 2036121 T PDEPACK (NIL) -7 NIL NIL) (-867 2033115 2033305 2033556 "PDECOMP" 2034002 NIL PDECOMP (NIL T T) -7 NIL NIL) (-866 2030720 2031537 2031565 "PDECAT" 2032352 T PDECAT (NIL) -9 NIL 2033065) (-865 2030471 2030504 2030594 "PCOMP" 2030681 NIL PCOMP (NIL T T) -7 NIL NIL) (-864 2028676 2029272 2029569 "PBWLB" 2030200 NIL PBWLB (NIL T) -8 NIL NIL) (-863 2021180 2022749 2024087 "PATTERN" 2027359 NIL PATTERN (NIL T) -8 NIL NIL) (-862 2020812 2020869 2020978 "PATTERN2" 2021117 NIL PATTERN2 (NIL T T) -7 NIL NIL) (-861 2018569 2018957 2019414 "PATTERN1" 2020401 NIL PATTERN1 (NIL T T) -7 NIL NIL) (-860 2015964 2016518 2016999 "PATRES" 2018134 NIL PATRES (NIL T T) -8 NIL NIL) (-859 2015528 2015595 2015727 "PATRES2" 2015891 NIL PATRES2 (NIL T T T) -7 NIL NIL) (-858 2013411 2013816 2014223 "PATMATCH" 2015195 NIL PATMATCH (NIL T T T) -7 NIL NIL) (-857 2012947 2013130 2013171 "PATMAB" 2013278 NIL PATMAB (NIL T) -9 NIL 2013361) (-856 2011492 2011801 2012059 "PATLRES" 2012752 NIL PATLRES (NIL T T T) -8 NIL NIL) (-855 2011038 2011161 2011202 "PATAB" 2011207 NIL PATAB (NIL T) -9 NIL 2011379) (-854 2008519 2009051 2009624 "PARTPERM" 2010485 T PARTPERM (NIL) -7 NIL NIL) (-853 2008140 2008203 2008305 "PARSURF" 2008450 NIL PARSURF (NIL T) -8 NIL NIL) (-852 2007772 2007829 2007938 "PARSU2" 2008077 NIL PARSU2 (NIL T T) -7 NIL NIL) (-851 2007536 2007576 2007643 "PARSER" 2007725 T PARSER (NIL) -7 NIL NIL) (-850 2007157 2007220 2007322 "PARSCURV" 2007467 NIL PARSCURV (NIL T) -8 NIL NIL) (-849 2006789 2006846 2006955 "PARSC2" 2007094 NIL PARSC2 (NIL T T) -7 NIL NIL) (-848 2006428 2006486 2006583 "PARPCURV" 2006725 NIL PARPCURV (NIL T) -8 NIL NIL) (-847 2006060 2006117 2006226 "PARPC2" 2006365 NIL PARPC2 (NIL T T) -7 NIL NIL) (-846 2005580 2005666 2005785 "PAN2EXPR" 2005961 T PAN2EXPR (NIL) -7 NIL NIL) (-845 2004386 2004701 2004929 "PALETTE" 2005372 T PALETTE (NIL) -8 NIL NIL) (-844 2002854 2003391 2003751 "PAIR" 2004072 NIL PAIR (NIL T T) -8 NIL NIL) (-843 1996762 2002113 2002307 "PADICRC" 2002709 NIL PADICRC (NIL NIL T) -8 NIL NIL) (-842 1990028 1996108 1996292 "PADICRAT" 1996610 NIL PADICRAT (NIL NIL) -8 NIL NIL) (-841 1988378 1989965 1990010 "PADIC" 1990015 NIL PADIC (NIL NIL) -8 NIL NIL) (-840 1985623 1987153 1987193 "PADICCT" 1987774 NIL PADICCT (NIL NIL) -9 NIL 1988056) (-839 1984580 1984780 1985048 "PADEPAC" 1985410 NIL PADEPAC (NIL T NIL NIL) -7 NIL NIL) (-838 1983792 1983925 1984131 "PADE" 1984442 NIL PADE (NIL T T T) -7 NIL NIL) (-837 1981842 1982628 1982945 "OWP" 1983559 NIL OWP (NIL T NIL NIL NIL) -8 NIL NIL) (-836 1980951 1981447 1981619 "OVAR" 1981710 NIL OVAR (NIL NIL) -8 NIL NIL) (-835 1980215 1980336 1980497 "OUT" 1980810 T OUT (NIL) -7 NIL NIL) (-834 1969269 1971440 1973610 "OUTFORM" 1978065 T OUTFORM (NIL) -8 NIL NIL) (-833 1968906 1968989 1969017 "OUTBCON" 1969168 T OUTBCON (NIL) -9 NIL 1969253) (-832 1968746 1968781 1968857 "OUTBCON-" 1968862 NIL OUTBCON- (NIL T) -8 NIL NIL) (-831 1968154 1968475 1968564 "OSI" 1968677 T OSI (NIL) -8 NIL NIL) (-830 1967710 1968022 1968050 "OSGROUP" 1968055 T OSGROUP (NIL) -9 NIL 1968077) (-829 1966455 1966682 1966967 "ORTHPOL" 1967457 NIL ORTHPOL (NIL T) -7 NIL NIL) (-828 1963865 1966114 1966253 "OREUP" 1966398 NIL OREUP (NIL NIL T NIL NIL) -8 NIL NIL) (-827 1961303 1963556 1963683 "ORESUP" 1963807 NIL ORESUP (NIL T NIL NIL) -8 NIL NIL) (-826 1958831 1959331 1959892 "OREPCTO" 1960792 NIL OREPCTO (NIL T T) -7 NIL NIL) (-825 1952742 1954909 1954950 "OREPCAT" 1957298 NIL OREPCAT (NIL T) -9 NIL 1958402) (-824 1949889 1950671 1951729 "OREPCAT-" 1951734 NIL OREPCAT- (NIL T T) -8 NIL NIL) (-823 1949066 1949338 1949366 "ORDSET" 1949675 T ORDSET (NIL) -9 NIL 1949839) (-822 1948585 1948707 1948900 "ORDSET-" 1948905 NIL ORDSET- (NIL T) -8 NIL NIL) (-821 1947239 1947996 1948024 "ORDRING" 1948226 T ORDRING (NIL) -9 NIL 1948351) (-820 1946884 1946978 1947122 "ORDRING-" 1947127 NIL ORDRING- (NIL T) -8 NIL NIL) (-819 1946290 1946727 1946755 "ORDMON" 1946760 T ORDMON (NIL) -9 NIL 1946781) (-818 1945452 1945599 1945794 "ORDFUNS" 1946139 NIL ORDFUNS (NIL NIL T) -7 NIL NIL) (-817 1944963 1945322 1945350 "ORDFIN" 1945355 T ORDFIN (NIL) -9 NIL 1945376) (-816 1941555 1943549 1943958 "ORDCOMP" 1944587 NIL ORDCOMP (NIL T) -8 NIL NIL) (-815 1940821 1940948 1941134 "ORDCOMP2" 1941415 NIL ORDCOMP2 (NIL T T) -7 NIL NIL) (-814 1937328 1938211 1939048 "OPTPROB" 1940004 T OPTPROB (NIL) -8 NIL NIL) (-813 1934130 1934769 1935473 "OPTPACK" 1936644 T OPTPACK (NIL) -7 NIL NIL) (-812 1931843 1932583 1932611 "OPTCAT" 1933430 T OPTCAT (NIL) -9 NIL 1934080) (-811 1931611 1931650 1931716 "OPQUERY" 1931797 T OPQUERY (NIL) -7 NIL NIL) (-810 1928777 1929922 1930426 "OP" 1931140 NIL OP (NIL T) -8 NIL NIL) (-809 1925622 1927574 1927943 "ONECOMP" 1928441 NIL ONECOMP (NIL T) -8 NIL NIL) (-808 1924927 1925042 1925216 "ONECOMP2" 1925494 NIL ONECOMP2 (NIL T T) -7 NIL NIL) (-807 1924346 1924452 1924582 "OMSERVER" 1924817 T OMSERVER (NIL) -7 NIL NIL) (-806 1921234 1923786 1923826 "OMSAGG" 1923887 NIL OMSAGG (NIL T) -9 NIL 1923951) (-805 1919857 1920120 1920402 "OMPKG" 1920972 T OMPKG (NIL) -7 NIL NIL) (-804 1919287 1919390 1919418 "OM" 1919717 T OM (NIL) -9 NIL NIL) (-803 1917869 1918836 1919005 "OMLO" 1919168 NIL OMLO (NIL T T) -8 NIL NIL) (-802 1916794 1916941 1917168 "OMEXPR" 1917695 NIL OMEXPR (NIL T) -7 NIL NIL) (-801 1916112 1916340 1916476 "OMERR" 1916678 T OMERR (NIL) -8 NIL NIL) (-800 1915290 1915533 1915693 "OMERRK" 1915972 T OMERRK (NIL) -8 NIL NIL) (-799 1914768 1914967 1915075 "OMENC" 1915202 T OMENC (NIL) -8 NIL NIL) (-798 1908663 1909848 1911019 "OMDEV" 1913617 T OMDEV (NIL) -8 NIL NIL) (-797 1907732 1907903 1908097 "OMCONN" 1908489 T OMCONN (NIL) -8 NIL NIL) (-796 1906388 1907330 1907358 "OINTDOM" 1907363 T OINTDOM (NIL) -9 NIL 1907384) (-795 1902194 1903378 1904094 "OFMONOID" 1905704 NIL OFMONOID (NIL T) -8 NIL NIL) (-794 1901632 1902131 1902176 "ODVAR" 1902181 NIL ODVAR (NIL T) -8 NIL NIL) (-793 1898842 1901129 1901314 "ODR" 1901507 NIL ODR (NIL T T NIL) -8 NIL NIL) (-792 1891186 1898618 1898744 "ODPOL" 1898749 NIL ODPOL (NIL T) -8 NIL NIL) (-791 1885062 1891058 1891163 "ODP" 1891168 NIL ODP (NIL NIL T NIL) -8 NIL NIL) (-790 1883828 1884043 1884318 "ODETOOLS" 1884836 NIL ODETOOLS (NIL T T) -7 NIL NIL) (-789 1880797 1881453 1882169 "ODESYS" 1883161 NIL ODESYS (NIL T T) -7 NIL NIL) (-788 1875679 1876587 1877612 "ODERTRIC" 1879872 NIL ODERTRIC (NIL T T) -7 NIL NIL) (-787 1875105 1875187 1875381 "ODERED" 1875591 NIL ODERED (NIL T T T T T) -7 NIL NIL) (-786 1871993 1872541 1873218 "ODERAT" 1874528 NIL ODERAT (NIL T T) -7 NIL NIL) (-785 1868953 1869417 1870014 "ODEPRRIC" 1871522 NIL ODEPRRIC (NIL T T T T) -7 NIL NIL) (-784 1866822 1867391 1867900 "ODEPROB" 1868464 T ODEPROB (NIL) -8 NIL NIL) (-783 1863344 1863827 1864474 "ODEPRIM" 1866301 NIL ODEPRIM (NIL T T T T) -7 NIL NIL) (-782 1862593 1862695 1862955 "ODEPAL" 1863236 NIL ODEPAL (NIL T T T T) -7 NIL NIL) (-781 1858755 1859546 1860410 "ODEPACK" 1861749 T ODEPACK (NIL) -7 NIL NIL) (-780 1857788 1857895 1858124 "ODEINT" 1858644 NIL ODEINT (NIL T T) -7 NIL NIL) (-779 1851889 1853314 1854761 "ODEIFTBL" 1856361 T ODEIFTBL (NIL) -8 NIL NIL) (-778 1847224 1848010 1848969 "ODEEF" 1851048 NIL ODEEF (NIL T T) -7 NIL NIL) (-777 1846559 1846648 1846878 "ODECONST" 1847129 NIL ODECONST (NIL T T T) -7 NIL NIL) (-776 1844710 1845345 1845373 "ODECAT" 1845978 T ODECAT (NIL) -9 NIL 1846509) (-775 1841617 1844422 1844541 "OCT" 1844623 NIL OCT (NIL T) -8 NIL NIL) (-774 1841255 1841298 1841425 "OCTCT2" 1841568 NIL OCTCT2 (NIL T T T T) -7 NIL NIL) (-773 1836116 1838516 1838556 "OC" 1839653 NIL OC (NIL T) -9 NIL 1840511) (-772 1833343 1834091 1835081 "OC-" 1835175 NIL OC- (NIL T T) -8 NIL NIL) (-771 1832721 1833163 1833191 "OCAMON" 1833196 T OCAMON (NIL) -9 NIL 1833217) (-770 1832278 1832593 1832621 "OASGP" 1832626 T OASGP (NIL) -9 NIL 1832646) (-769 1831565 1832028 1832056 "OAMONS" 1832096 T OAMONS (NIL) -9 NIL 1832139) (-768 1831005 1831412 1831440 "OAMON" 1831445 T OAMON (NIL) -9 NIL 1831465) (-767 1830309 1830801 1830829 "OAGROUP" 1830834 T OAGROUP (NIL) -9 NIL 1830854) (-766 1829999 1830049 1830137 "NUMTUBE" 1830253 NIL NUMTUBE (NIL T) -7 NIL NIL) (-765 1823572 1825090 1826626 "NUMQUAD" 1828483 T NUMQUAD (NIL) -7 NIL NIL) (-764 1819328 1820316 1821341 "NUMODE" 1822567 T NUMODE (NIL) -7 NIL NIL) (-763 1816709 1817563 1817591 "NUMINT" 1818514 T NUMINT (NIL) -9 NIL 1819278) (-762 1815657 1815854 1816072 "NUMFMT" 1816511 T NUMFMT (NIL) -7 NIL NIL) (-761 1802016 1804961 1807493 "NUMERIC" 1813164 NIL NUMERIC (NIL T) -7 NIL NIL) (-760 1796413 1801465 1801560 "NTSCAT" 1801565 NIL NTSCAT (NIL T T T T) -9 NIL 1801604) (-759 1795607 1795772 1795965 "NTPOLFN" 1796252 NIL NTPOLFN (NIL T) -7 NIL NIL) (-758 1783447 1792432 1793244 "NSUP" 1794828 NIL NSUP (NIL T) -8 NIL NIL) (-757 1783079 1783136 1783245 "NSUP2" 1783384 NIL NSUP2 (NIL T T) -7 NIL NIL) (-756 1773076 1782853 1782986 "NSMP" 1782991 NIL NSMP (NIL T T) -8 NIL NIL) (-755 1771508 1771809 1772166 "NREP" 1772764 NIL NREP (NIL T) -7 NIL NIL) (-754 1770099 1770351 1770709 "NPCOEF" 1771251 NIL NPCOEF (NIL T T T T T) -7 NIL NIL) (-753 1769165 1769280 1769496 "NORMRETR" 1769980 NIL NORMRETR (NIL T T T T NIL) -7 NIL NIL) (-752 1767206 1767496 1767905 "NORMPK" 1768873 NIL NORMPK (NIL T T T T T) -7 NIL NIL) (-751 1766891 1766919 1767043 "NORMMA" 1767172 NIL NORMMA (NIL T T T T) -7 NIL NIL) (-750 1766718 1766848 1766877 "NONE" 1766882 T NONE (NIL) -8 NIL NIL) (-749 1766507 1766536 1766605 "NONE1" 1766682 NIL NONE1 (NIL T) -7 NIL NIL) (-748 1765990 1766052 1766238 "NODE1" 1766439 NIL NODE1 (NIL T T) -7 NIL NIL) (-747 1764330 1765153 1765408 "NNI" 1765755 T NNI (NIL) -8 NIL NIL) (-746 1762750 1763063 1763427 "NLINSOL" 1763998 NIL NLINSOL (NIL T) -7 NIL NIL) (-745 1758917 1759885 1760807 "NIPROB" 1761848 T NIPROB (NIL) -8 NIL NIL) (-744 1757674 1757908 1758210 "NFINTBAS" 1758679 NIL NFINTBAS (NIL T T) -7 NIL NIL) (-743 1756382 1756613 1756894 "NCODIV" 1757442 NIL NCODIV (NIL T T) -7 NIL NIL) (-742 1756144 1756181 1756256 "NCNTFRAC" 1756339 NIL NCNTFRAC (NIL T) -7 NIL NIL) (-741 1754324 1754688 1755108 "NCEP" 1755769 NIL NCEP (NIL T) -7 NIL NIL) (-740 1753235 1753974 1754002 "NASRING" 1754112 T NASRING (NIL) -9 NIL 1754186) (-739 1753030 1753074 1753168 "NASRING-" 1753173 NIL NASRING- (NIL T) -8 NIL NIL) (-738 1752183 1752682 1752710 "NARNG" 1752827 T NARNG (NIL) -9 NIL 1752918) (-737 1751875 1751942 1752076 "NARNG-" 1752081 NIL NARNG- (NIL T) -8 NIL NIL) (-736 1750754 1750961 1751196 "NAGSP" 1751660 T NAGSP (NIL) -7 NIL NIL) (-735 1742026 1743710 1745383 "NAGS" 1749101 T NAGS (NIL) -7 NIL NIL) (-734 1740574 1740882 1741213 "NAGF07" 1741715 T NAGF07 (NIL) -7 NIL NIL) (-733 1735112 1736403 1737710 "NAGF04" 1739287 T NAGF04 (NIL) -7 NIL NIL) (-732 1728080 1729694 1731327 "NAGF02" 1733499 T NAGF02 (NIL) -7 NIL NIL) (-731 1723304 1724404 1725521 "NAGF01" 1726983 T NAGF01 (NIL) -7 NIL NIL) (-730 1716932 1718498 1720083 "NAGE04" 1721739 T NAGE04 (NIL) -7 NIL NIL) (-729 1708101 1710222 1712352 "NAGE02" 1714822 T NAGE02 (NIL) -7 NIL NIL) (-728 1704054 1705001 1705965 "NAGE01" 1707157 T NAGE01 (NIL) -7 NIL NIL) (-727 1701849 1702383 1702941 "NAGD03" 1703516 T NAGD03 (NIL) -7 NIL NIL) (-726 1693599 1695527 1697481 "NAGD02" 1699915 T NAGD02 (NIL) -7 NIL NIL) (-725 1687410 1688835 1690275 "NAGD01" 1692179 T NAGD01 (NIL) -7 NIL NIL) (-724 1683619 1684441 1685278 "NAGC06" 1686593 T NAGC06 (NIL) -7 NIL NIL) (-723 1682084 1682416 1682772 "NAGC05" 1683283 T NAGC05 (NIL) -7 NIL NIL) (-722 1681460 1681579 1681723 "NAGC02" 1681960 T NAGC02 (NIL) -7 NIL NIL) (-721 1680520 1681077 1681117 "NAALG" 1681196 NIL NAALG (NIL T) -9 NIL 1681257) (-720 1680355 1680384 1680474 "NAALG-" 1680479 NIL NAALG- (NIL T T) -8 NIL NIL) (-719 1674305 1675413 1676600 "MULTSQFR" 1679251 NIL MULTSQFR (NIL T T T T) -7 NIL NIL) (-718 1673624 1673699 1673883 "MULTFACT" 1674217 NIL MULTFACT (NIL T T T T) -7 NIL NIL) (-717 1666847 1670712 1670765 "MTSCAT" 1671835 NIL MTSCAT (NIL T T) -9 NIL 1672349) (-716 1666559 1666613 1666705 "MTHING" 1666787 NIL MTHING (NIL T) -7 NIL NIL) (-715 1666351 1666384 1666444 "MSYSCMD" 1666519 T MSYSCMD (NIL) -7 NIL NIL) (-714 1662463 1665106 1665426 "MSET" 1666064 NIL MSET (NIL T) -8 NIL NIL) (-713 1659558 1662024 1662065 "MSETAGG" 1662070 NIL MSETAGG (NIL T) -9 NIL 1662104) (-712 1655441 1656937 1657682 "MRING" 1658858 NIL MRING (NIL T T) -8 NIL NIL) (-711 1655007 1655074 1655205 "MRF2" 1655368 NIL MRF2 (NIL T T T) -7 NIL NIL) (-710 1654625 1654660 1654804 "MRATFAC" 1654966 NIL MRATFAC (NIL T T T T) -7 NIL NIL) (-709 1652237 1652532 1652963 "MPRFF" 1654330 NIL MPRFF (NIL T T T T) -7 NIL NIL) (-708 1646297 1652091 1652188 "MPOLY" 1652193 NIL MPOLY (NIL NIL T) -8 NIL NIL) (-707 1645787 1645822 1646030 "MPCPF" 1646256 NIL MPCPF (NIL T T T T) -7 NIL NIL) (-706 1645301 1645344 1645528 "MPC3" 1645738 NIL MPC3 (NIL T T T T T T T) -7 NIL NIL) (-705 1644496 1644577 1644798 "MPC2" 1645216 NIL MPC2 (NIL T T T T T T T) -7 NIL NIL) (-704 1642797 1643134 1643524 "MONOTOOL" 1644156 NIL MONOTOOL (NIL T T) -7 NIL NIL) (-703 1642048 1642339 1642367 "MONOID" 1642586 T MONOID (NIL) -9 NIL 1642733) (-702 1641594 1641713 1641894 "MONOID-" 1641899 NIL MONOID- (NIL T) -8 NIL NIL) (-701 1632644 1638550 1638609 "MONOGEN" 1639283 NIL MONOGEN (NIL T T) -9 NIL 1639739) (-700 1629862 1630597 1631597 "MONOGEN-" 1631716 NIL MONOGEN- (NIL T T T) -8 NIL NIL) (-699 1628721 1629141 1629169 "MONADWU" 1629561 T MONADWU (NIL) -9 NIL 1629799) (-698 1628093 1628252 1628500 "MONADWU-" 1628505 NIL MONADWU- (NIL T) -8 NIL NIL) (-697 1627478 1627696 1627724 "MONAD" 1627931 T MONAD (NIL) -9 NIL 1628043) (-696 1627163 1627241 1627373 "MONAD-" 1627378 NIL MONAD- (NIL T) -8 NIL NIL) (-695 1625479 1626076 1626355 "MOEBIUS" 1626916 NIL MOEBIUS (NIL T) -8 NIL NIL) (-694 1624871 1625249 1625289 "MODULE" 1625294 NIL MODULE (NIL T) -9 NIL 1625320) (-693 1624439 1624535 1624725 "MODULE-" 1624730 NIL MODULE- (NIL T T) -8 NIL NIL) (-692 1622154 1622803 1623130 "MODRING" 1624263 NIL MODRING (NIL T T NIL NIL NIL) -8 NIL NIL) (-691 1619140 1620259 1620780 "MODOP" 1621683 NIL MODOP (NIL T T) -8 NIL NIL) (-690 1617327 1617779 1618120 "MODMONOM" 1618939 NIL MODMONOM (NIL T T NIL) -8 NIL NIL) (-689 1607035 1615519 1615942 "MODMON" 1616955 NIL MODMON (NIL T T) -8 NIL NIL) (-688 1604226 1605879 1606155 "MODFIELD" 1606910 NIL MODFIELD (NIL T T NIL NIL NIL) -8 NIL NIL) (-687 1603230 1603507 1603697 "MMLFORM" 1604056 T MMLFORM (NIL) -8 NIL NIL) (-686 1602756 1602799 1602978 "MMAP" 1603181 NIL MMAP (NIL T T T T T T) -7 NIL NIL) (-685 1601025 1601758 1601799 "MLO" 1602222 NIL MLO (NIL T) -9 NIL 1602464) (-684 1598392 1598907 1599509 "MLIFT" 1600506 NIL MLIFT (NIL T T T T) -7 NIL NIL) (-683 1597783 1597867 1598021 "MKUCFUNC" 1598303 NIL MKUCFUNC (NIL T T T) -7 NIL NIL) (-682 1597382 1597452 1597575 "MKRECORD" 1597706 NIL MKRECORD (NIL T T) -7 NIL NIL) (-681 1596430 1596591 1596819 "MKFUNC" 1597193 NIL MKFUNC (NIL T) -7 NIL NIL) (-680 1595818 1595922 1596078 "MKFLCFN" 1596313 NIL MKFLCFN (NIL T) -7 NIL NIL) (-679 1595244 1595611 1595700 "MKCHSET" 1595762 NIL MKCHSET (NIL T) -8 NIL NIL) (-678 1594521 1594623 1594808 "MKBCFUNC" 1595137 NIL MKBCFUNC (NIL T T T T) -7 NIL NIL) (-677 1591263 1594075 1594211 "MINT" 1594405 T MINT (NIL) -8 NIL NIL) (-676 1590075 1590318 1590595 "MHROWRED" 1591018 NIL MHROWRED (NIL T) -7 NIL NIL) (-675 1585407 1588516 1588942 "MFLOAT" 1589669 T MFLOAT (NIL) -8 NIL NIL) (-674 1584764 1584840 1585011 "MFINFACT" 1585319 NIL MFINFACT (NIL T T T T) -7 NIL NIL) (-673 1581079 1581927 1582811 "MESH" 1583900 T MESH (NIL) -7 NIL NIL) (-672 1579469 1579781 1580134 "MDDFACT" 1580766 NIL MDDFACT (NIL T) -7 NIL NIL) (-671 1576311 1578628 1578669 "MDAGG" 1578924 NIL MDAGG (NIL T) -9 NIL 1579067) (-670 1566091 1575604 1575811 "MCMPLX" 1576124 T MCMPLX (NIL) -8 NIL NIL) (-669 1565232 1565378 1565578 "MCDEN" 1565940 NIL MCDEN (NIL T T) -7 NIL NIL) (-668 1563122 1563392 1563772 "MCALCFN" 1564962 NIL MCALCFN (NIL T T T T) -7 NIL NIL) (-667 1562033 1562206 1562447 "MAYBE" 1562920 NIL MAYBE (NIL T) -8 NIL NIL) (-666 1559645 1560168 1560730 "MATSTOR" 1561504 NIL MATSTOR (NIL T) -7 NIL NIL) (-665 1555651 1559017 1559265 "MATRIX" 1559430 NIL MATRIX (NIL T) -8 NIL NIL) (-664 1551420 1552124 1552860 "MATLIN" 1555008 NIL MATLIN (NIL T T T T) -7 NIL NIL) (-663 1541574 1544712 1544789 "MATCAT" 1549669 NIL MATCAT (NIL T T T) -9 NIL 1551086) (-662 1537938 1538951 1540307 "MATCAT-" 1540312 NIL MATCAT- (NIL T T T T) -8 NIL NIL) (-661 1536532 1536685 1537018 "MATCAT2" 1537773 NIL MATCAT2 (NIL T T T T T T T T) -7 NIL NIL) (-660 1534644 1534968 1535352 "MAPPKG3" 1536207 NIL MAPPKG3 (NIL T T T) -7 NIL NIL) (-659 1533625 1533798 1534020 "MAPPKG2" 1534468 NIL MAPPKG2 (NIL T T) -7 NIL NIL) (-658 1532124 1532408 1532735 "MAPPKG1" 1533331 NIL MAPPKG1 (NIL T) -7 NIL NIL) (-657 1531230 1531530 1531707 "MAPPAST" 1531967 T MAPPAST (NIL) -8 NIL NIL) (-656 1530841 1530899 1531022 "MAPHACK3" 1531166 NIL MAPHACK3 (NIL T T T) -7 NIL NIL) (-655 1530433 1530494 1530608 "MAPHACK2" 1530773 NIL MAPHACK2 (NIL T T) -7 NIL NIL) (-654 1529871 1529974 1530116 "MAPHACK1" 1530324 NIL MAPHACK1 (NIL T) -7 NIL NIL) (-653 1527977 1528571 1528875 "MAGMA" 1529599 NIL MAGMA (NIL T) -8 NIL NIL) (-652 1527483 1527701 1527792 "MACROAST" 1527906 T MACROAST (NIL) -8 NIL NIL) (-651 1523950 1525722 1526183 "M3D" 1527055 NIL M3D (NIL T) -8 NIL NIL) (-650 1518105 1522320 1522361 "LZSTAGG" 1523143 NIL LZSTAGG (NIL T) -9 NIL 1523438) (-649 1514078 1515236 1516693 "LZSTAGG-" 1516698 NIL LZSTAGG- (NIL T T) -8 NIL NIL) (-648 1511192 1511969 1512456 "LWORD" 1513623 NIL LWORD (NIL T) -8 NIL NIL) (-647 1510795 1510996 1511071 "LSTAST" 1511137 T LSTAST (NIL) -8 NIL NIL) (-646 1503996 1510566 1510700 "LSQM" 1510705 NIL LSQM (NIL NIL T) -8 NIL NIL) (-645 1503220 1503359 1503587 "LSPP" 1503851 NIL LSPP (NIL T T T T) -7 NIL NIL) (-644 1501032 1501333 1501789 "LSMP" 1502909 NIL LSMP (NIL T T T T) -7 NIL NIL) (-643 1497811 1498485 1499215 "LSMP1" 1500334 NIL LSMP1 (NIL T) -7 NIL NIL) (-642 1491737 1496979 1497020 "LSAGG" 1497082 NIL LSAGG (NIL T) -9 NIL 1497160) (-641 1488432 1489356 1490569 "LSAGG-" 1490574 NIL LSAGG- (NIL T T) -8 NIL NIL) (-640 1486058 1487576 1487825 "LPOLY" 1488227 NIL LPOLY (NIL T T) -8 NIL NIL) (-639 1485640 1485725 1485848 "LPEFRAC" 1485967 NIL LPEFRAC (NIL T) -7 NIL NIL) (-638 1483987 1484734 1484987 "LO" 1485472 NIL LO (NIL T T T) -8 NIL NIL) (-637 1483639 1483751 1483779 "LOGIC" 1483890 T LOGIC (NIL) -9 NIL 1483971) (-636 1483501 1483524 1483595 "LOGIC-" 1483600 NIL LOGIC- (NIL T) -8 NIL NIL) (-635 1482694 1482834 1483027 "LODOOPS" 1483357 NIL LODOOPS (NIL T T) -7 NIL NIL) (-634 1480152 1482610 1482676 "LODO" 1482681 NIL LODO (NIL T NIL) -8 NIL NIL) (-633 1478690 1478925 1479278 "LODOF" 1479899 NIL LODOF (NIL T T) -7 NIL NIL) (-632 1475133 1477530 1477571 "LODOCAT" 1478009 NIL LODOCAT (NIL T) -9 NIL 1478220) (-631 1474866 1474924 1475051 "LODOCAT-" 1475056 NIL LODOCAT- (NIL T T) -8 NIL NIL) (-630 1472221 1474707 1474825 "LODO2" 1474830 NIL LODO2 (NIL T T) -8 NIL NIL) (-629 1469691 1472158 1472203 "LODO1" 1472208 NIL LODO1 (NIL T) -8 NIL NIL) (-628 1468551 1468716 1469028 "LODEEF" 1469514 NIL LODEEF (NIL T T T) -7 NIL NIL) (-627 1463837 1466681 1466722 "LNAGG" 1467669 NIL LNAGG (NIL T) -9 NIL 1468113) (-626 1462984 1463198 1463540 "LNAGG-" 1463545 NIL LNAGG- (NIL T T) -8 NIL NIL) (-625 1459147 1459909 1460548 "LMOPS" 1462399 NIL LMOPS (NIL T T NIL) -8 NIL NIL) (-624 1458542 1458904 1458945 "LMODULE" 1459006 NIL LMODULE (NIL T) -9 NIL 1459048) (-623 1455788 1458187 1458310 "LMDICT" 1458452 NIL LMDICT (NIL T) -8 NIL NIL) (-622 1455514 1455696 1455756 "LITERAL" 1455761 NIL LITERAL (NIL T) -8 NIL NIL) (-621 1448741 1454460 1454758 "LIST" 1455249 NIL LIST (NIL T) -8 NIL NIL) (-620 1448266 1448340 1448479 "LIST3" 1448661 NIL LIST3 (NIL T T T) -7 NIL NIL) (-619 1447273 1447451 1447679 "LIST2" 1448084 NIL LIST2 (NIL T T) -7 NIL NIL) (-618 1445407 1445719 1446118 "LIST2MAP" 1446920 NIL LIST2MAP (NIL T T) -7 NIL NIL) (-617 1444157 1444793 1444834 "LINEXP" 1445089 NIL LINEXP (NIL T) -9 NIL 1445238) (-616 1442804 1443064 1443361 "LINDEP" 1443909 NIL LINDEP (NIL T T) -7 NIL NIL) (-615 1439571 1440290 1441067 "LIMITRF" 1442059 NIL LIMITRF (NIL T) -7 NIL NIL) (-614 1437847 1438142 1438558 "LIMITPS" 1439266 NIL LIMITPS (NIL T T) -7 NIL NIL) (-613 1432302 1437358 1437586 "LIE" 1437668 NIL LIE (NIL T T) -8 NIL NIL) (-612 1431351 1431794 1431834 "LIECAT" 1431974 NIL LIECAT (NIL T) -9 NIL 1432125) (-611 1431192 1431219 1431307 "LIECAT-" 1431312 NIL LIECAT- (NIL T T) -8 NIL NIL) (-610 1423804 1430641 1430806 "LIB" 1431047 T LIB (NIL) -8 NIL NIL) (-609 1419441 1420322 1421257 "LGROBP" 1422921 NIL LGROBP (NIL NIL T) -7 NIL NIL) (-608 1417307 1417581 1417943 "LF" 1419162 NIL LF (NIL T T) -7 NIL NIL) (-607 1416147 1416839 1416867 "LFCAT" 1417074 T LFCAT (NIL) -9 NIL 1417213) (-606 1413051 1413679 1414367 "LEXTRIPK" 1415511 NIL LEXTRIPK (NIL T NIL) -7 NIL NIL) (-605 1409822 1410621 1411124 "LEXP" 1412631 NIL LEXP (NIL T T NIL) -8 NIL NIL) (-604 1409325 1409543 1409635 "LETAST" 1409750 T LETAST (NIL) -8 NIL NIL) (-603 1407723 1408036 1408437 "LEADCDET" 1409007 NIL LEADCDET (NIL T T T T) -7 NIL NIL) (-602 1406913 1406987 1407216 "LAZM3PK" 1407644 NIL LAZM3PK (NIL T T T T T T) -7 NIL NIL) (-601 1401869 1404990 1405528 "LAUPOL" 1406425 NIL LAUPOL (NIL T T) -8 NIL NIL) (-600 1401434 1401478 1401646 "LAPLACE" 1401819 NIL LAPLACE (NIL T T) -7 NIL NIL) (-599 1399408 1400535 1400786 "LA" 1401267 NIL LA (NIL T T T) -8 NIL NIL) (-598 1398509 1399059 1399100 "LALG" 1399162 NIL LALG (NIL T) -9 NIL 1399221) (-597 1398223 1398282 1398418 "LALG-" 1398423 NIL LALG- (NIL T T) -8 NIL NIL) (-596 1397023 1397440 1397669 "KTVLOGIC" 1398014 T KTVLOGIC (NIL) -8 NIL NIL) (-595 1395927 1396114 1396413 "KOVACIC" 1396823 NIL KOVACIC (NIL T T) -7 NIL NIL) (-594 1395762 1395786 1395827 "KONVERT" 1395889 NIL KONVERT (NIL T) -9 NIL NIL) (-593 1395597 1395621 1395662 "KOERCE" 1395724 NIL KOERCE (NIL T) -9 NIL NIL) (-592 1393331 1394091 1394484 "KERNEL" 1395236 NIL KERNEL (NIL T) -8 NIL NIL) (-591 1392833 1392914 1393044 "KERNEL2" 1393245 NIL KERNEL2 (NIL T T) -7 NIL NIL) (-590 1386684 1391372 1391426 "KDAGG" 1391803 NIL KDAGG (NIL T T) -9 NIL 1392009) (-589 1386213 1386337 1386542 "KDAGG-" 1386547 NIL KDAGG- (NIL T T T) -8 NIL NIL) (-588 1379388 1385874 1386029 "KAFILE" 1386091 NIL KAFILE (NIL T) -8 NIL NIL) (-587 1373843 1378899 1379127 "JORDAN" 1379209 NIL JORDAN (NIL T T) -8 NIL NIL) (-586 1373249 1373492 1373613 "JOINAST" 1373742 T JOINAST (NIL) -8 NIL NIL) (-585 1372978 1373037 1373124 "JAVACODE" 1373182 T JAVACODE (NIL) -8 NIL NIL) (-584 1369277 1371183 1371237 "IXAGG" 1372166 NIL IXAGG (NIL T T) -9 NIL 1372625) (-583 1368196 1368502 1368921 "IXAGG-" 1368926 NIL IXAGG- (NIL T T T) -8 NIL NIL) (-582 1363776 1368118 1368177 "IVECTOR" 1368182 NIL IVECTOR (NIL T NIL) -8 NIL NIL) (-581 1362542 1362779 1363045 "ITUPLE" 1363543 NIL ITUPLE (NIL T) -8 NIL NIL) (-580 1360978 1361155 1361461 "ITRIGMNP" 1362364 NIL ITRIGMNP (NIL T T T) -7 NIL NIL) (-579 1359723 1359927 1360210 "ITFUN3" 1360754 NIL ITFUN3 (NIL T T T) -7 NIL NIL) (-578 1359355 1359412 1359521 "ITFUN2" 1359660 NIL ITFUN2 (NIL T T) -7 NIL NIL) (-577 1357192 1358217 1358516 "ITAYLOR" 1359089 NIL ITAYLOR (NIL T) -8 NIL NIL) (-576 1346186 1351338 1352498 "ISUPS" 1356065 NIL ISUPS (NIL T) -8 NIL NIL) (-575 1345290 1345430 1345666 "ISUMP" 1346033 NIL ISUMP (NIL T T T T) -7 NIL NIL) (-574 1340554 1345091 1345170 "ISTRING" 1345243 NIL ISTRING (NIL NIL) -8 NIL NIL) (-573 1340057 1340275 1340367 "ISAST" 1340482 T ISAST (NIL) -8 NIL NIL) (-572 1339267 1339348 1339564 "IRURPK" 1339971 NIL IRURPK (NIL T T T T T) -7 NIL NIL) (-571 1338203 1338404 1338644 "IRSN" 1339047 T IRSN (NIL) -7 NIL NIL) (-570 1336232 1336587 1337023 "IRRF2F" 1337841 NIL IRRF2F (NIL T) -7 NIL NIL) (-569 1335979 1336017 1336093 "IRREDFFX" 1336188 NIL IRREDFFX (NIL T) -7 NIL NIL) (-568 1334594 1334853 1335152 "IROOT" 1335712 NIL IROOT (NIL T) -7 NIL NIL) (-567 1331226 1332278 1332970 "IR" 1333934 NIL IR (NIL T) -8 NIL NIL) (-566 1328839 1329334 1329900 "IR2" 1330704 NIL IR2 (NIL T T) -7 NIL NIL) (-565 1327911 1328024 1328245 "IR2F" 1328722 NIL IR2F (NIL T T) -7 NIL NIL) (-564 1327702 1327736 1327796 "IPRNTPK" 1327871 T IPRNTPK (NIL) -7 NIL NIL) (-563 1324321 1327591 1327660 "IPF" 1327665 NIL IPF (NIL NIL) -8 NIL NIL) (-562 1322684 1324246 1324303 "IPADIC" 1324308 NIL IPADIC (NIL NIL NIL) -8 NIL NIL) (-561 1322448 1322588 1322616 "IOBCON" 1322621 T IOBCON (NIL) -9 NIL 1322642) (-560 1321945 1322003 1322193 "INVLAPLA" 1322384 NIL INVLAPLA (NIL T T) -7 NIL NIL) (-559 1311594 1313947 1316333 "INTTR" 1319609 NIL INTTR (NIL T T) -7 NIL NIL) (-558 1307938 1308680 1309544 "INTTOOLS" 1310779 NIL INTTOOLS (NIL T T) -7 NIL NIL) (-557 1307524 1307615 1307732 "INTSLPE" 1307841 T INTSLPE (NIL) -7 NIL NIL) (-556 1305519 1307447 1307506 "INTRVL" 1307511 NIL INTRVL (NIL T) -8 NIL NIL) (-555 1303121 1303633 1304208 "INTRF" 1305004 NIL INTRF (NIL T) -7 NIL NIL) (-554 1302532 1302629 1302771 "INTRET" 1303019 NIL INTRET (NIL T) -7 NIL NIL) (-553 1300529 1300918 1301388 "INTRAT" 1302140 NIL INTRAT (NIL T T) -7 NIL NIL) (-552 1297757 1298340 1298966 "INTPM" 1300014 NIL INTPM (NIL T T) -7 NIL NIL) (-551 1294460 1295059 1295804 "INTPAF" 1297143 NIL INTPAF (NIL T T T) -7 NIL NIL) (-550 1289639 1290601 1291652 "INTPACK" 1293429 T INTPACK (NIL) -7 NIL NIL) (-549 1286551 1289368 1289495 "INT" 1289532 T INT (NIL) -8 NIL NIL) (-548 1285803 1285955 1286163 "INTHERTR" 1286393 NIL INTHERTR (NIL T T) -7 NIL NIL) (-547 1285242 1285322 1285510 "INTHERAL" 1285717 NIL INTHERAL (NIL T T T T) -7 NIL NIL) (-546 1283088 1283531 1283988 "INTHEORY" 1284805 T INTHEORY (NIL) -7 NIL NIL) (-545 1274396 1276017 1277796 "INTG0" 1281440 NIL INTG0 (NIL T T T) -7 NIL NIL) (-544 1254969 1259759 1264569 "INTFTBL" 1269606 T INTFTBL (NIL) -8 NIL NIL) (-543 1254218 1254356 1254529 "INTFACT" 1254828 NIL INTFACT (NIL T) -7 NIL NIL) (-542 1251603 1252049 1252613 "INTEF" 1253772 NIL INTEF (NIL T T) -7 NIL NIL) (-541 1250105 1250810 1250838 "INTDOM" 1251139 T INTDOM (NIL) -9 NIL 1251346) (-540 1249474 1249648 1249890 "INTDOM-" 1249895 NIL INTDOM- (NIL T) -8 NIL NIL) (-539 1246007 1247893 1247947 "INTCAT" 1248746 NIL INTCAT (NIL T) -9 NIL 1249066) (-538 1245480 1245582 1245710 "INTBIT" 1245899 T INTBIT (NIL) -7 NIL NIL) (-537 1244151 1244305 1244619 "INTALG" 1245325 NIL INTALG (NIL T T T T T) -7 NIL NIL) (-536 1243608 1243698 1243868 "INTAF" 1244055 NIL INTAF (NIL T T) -7 NIL NIL) (-535 1237062 1243418 1243558 "INTABL" 1243563 NIL INTABL (NIL T T T) -8 NIL NIL) (-534 1232117 1234788 1234816 "INS" 1235750 T INS (NIL) -9 NIL 1236414) (-533 1229357 1230128 1231102 "INS-" 1231175 NIL INS- (NIL T) -8 NIL NIL) (-532 1228132 1228359 1228657 "INPSIGN" 1229110 NIL INPSIGN (NIL T T) -7 NIL NIL) (-531 1227250 1227367 1227564 "INPRODPF" 1228012 NIL INPRODPF (NIL T T) -7 NIL NIL) (-530 1226144 1226261 1226498 "INPRODFF" 1227130 NIL INPRODFF (NIL T T T T) -7 NIL NIL) (-529 1225144 1225296 1225556 "INNMFACT" 1225980 NIL INNMFACT (NIL T T T T) -7 NIL NIL) (-528 1224341 1224438 1224626 "INMODGCD" 1225043 NIL INMODGCD (NIL T T NIL NIL) -7 NIL NIL) (-527 1222850 1223094 1223418 "INFSP" 1224086 NIL INFSP (NIL T T T) -7 NIL NIL) (-526 1222034 1222151 1222334 "INFPROD0" 1222730 NIL INFPROD0 (NIL T T) -7 NIL NIL) (-525 1218916 1220099 1220614 "INFORM" 1221527 T INFORM (NIL) -8 NIL NIL) (-524 1218526 1218586 1218684 "INFORM1" 1218851 NIL INFORM1 (NIL T) -7 NIL NIL) (-523 1218049 1218138 1218252 "INFINITY" 1218432 T INFINITY (NIL) -7 NIL NIL) (-522 1216666 1216915 1217236 "INEP" 1217797 NIL INEP (NIL T T T) -7 NIL NIL) (-521 1215942 1216563 1216628 "INDE" 1216633 NIL INDE (NIL T) -8 NIL NIL) (-520 1215506 1215574 1215691 "INCRMAPS" 1215869 NIL INCRMAPS (NIL T) -7 NIL NIL) (-519 1210817 1211742 1212686 "INBFF" 1214594 NIL INBFF (NIL T) -7 NIL NIL) (-518 1210486 1210562 1210590 "INBCON" 1210723 T INBCON (NIL) -9 NIL 1210801) (-517 1210326 1210361 1210437 "INBCON-" 1210442 NIL INBCON- (NIL T) -8 NIL NIL) (-516 1209828 1210047 1210139 "INAST" 1210254 T INAST (NIL) -8 NIL NIL) (-515 1209282 1209507 1209613 "IMPTAST" 1209742 T IMPTAST (NIL) -8 NIL NIL) (-514 1205776 1209126 1209230 "IMATRIX" 1209235 NIL IMATRIX (NIL T NIL NIL) -8 NIL NIL) (-513 1204488 1204611 1204926 "IMATQF" 1205632 NIL IMATQF (NIL T T T T T T T T) -7 NIL NIL) (-512 1202708 1202935 1203272 "IMATLIN" 1204244 NIL IMATLIN (NIL T T T T) -7 NIL NIL) (-511 1197334 1202632 1202690 "ILIST" 1202695 NIL ILIST (NIL T NIL) -8 NIL NIL) (-510 1195287 1197194 1197307 "IIARRAY2" 1197312 NIL IIARRAY2 (NIL T NIL NIL T T) -8 NIL NIL) (-509 1190720 1195198 1195262 "IFF" 1195267 NIL IFF (NIL NIL NIL) -8 NIL NIL) (-508 1190094 1190337 1190453 "IFAST" 1190624 T IFAST (NIL) -8 NIL NIL) (-507 1185137 1189386 1189574 "IFARRAY" 1189951 NIL IFARRAY (NIL T NIL) -8 NIL NIL) (-506 1184344 1185041 1185114 "IFAMON" 1185119 NIL IFAMON (NIL T T NIL) -8 NIL NIL) (-505 1183928 1183993 1184047 "IEVALAB" 1184254 NIL IEVALAB (NIL T T) -9 NIL NIL) (-504 1183603 1183671 1183831 "IEVALAB-" 1183836 NIL IEVALAB- (NIL T T T) -8 NIL NIL) (-503 1183261 1183517 1183580 "IDPO" 1183585 NIL IDPO (NIL T T) -8 NIL NIL) (-502 1182538 1183150 1183225 "IDPOAMS" 1183230 NIL IDPOAMS (NIL T T) -8 NIL NIL) (-501 1181872 1182427 1182502 "IDPOAM" 1182507 NIL IDPOAM (NIL T T) -8 NIL NIL) (-500 1180957 1181207 1181260 "IDPC" 1181673 NIL IDPC (NIL T T) -9 NIL 1181822) (-499 1180453 1180849 1180922 "IDPAM" 1180927 NIL IDPAM (NIL T T) -8 NIL NIL) (-498 1179856 1180345 1180418 "IDPAG" 1180423 NIL IDPAG (NIL T T) -8 NIL NIL) (-497 1179586 1179771 1179821 "IDENT" 1179826 T IDENT (NIL) -8 NIL NIL) (-496 1175841 1176689 1177584 "IDECOMP" 1178743 NIL IDECOMP (NIL NIL NIL) -7 NIL NIL) (-495 1168714 1169764 1170811 "IDEAL" 1174877 NIL IDEAL (NIL T T T T) -8 NIL NIL) (-494 1167878 1167990 1168189 "ICDEN" 1168598 NIL ICDEN (NIL T T T T) -7 NIL NIL) (-493 1166977 1167358 1167505 "ICARD" 1167751 T ICARD (NIL) -8 NIL NIL) (-492 1165037 1165350 1165755 "IBPTOOLS" 1166654 NIL IBPTOOLS (NIL T T T T) -7 NIL NIL) (-491 1160671 1164657 1164770 "IBITS" 1164956 NIL IBITS (NIL NIL) -8 NIL NIL) (-490 1157394 1157970 1158665 "IBATOOL" 1160088 NIL IBATOOL (NIL T T T) -7 NIL NIL) (-489 1155174 1155635 1156168 "IBACHIN" 1156929 NIL IBACHIN (NIL T T T) -7 NIL NIL) (-488 1153051 1155020 1155123 "IARRAY2" 1155128 NIL IARRAY2 (NIL T NIL NIL) -8 NIL NIL) (-487 1149204 1152977 1153034 "IARRAY1" 1153039 NIL IARRAY1 (NIL T NIL) -8 NIL NIL) (-486 1143199 1147618 1148098 "IAN" 1148744 T IAN (NIL) -8 NIL NIL) (-485 1142710 1142767 1142940 "IALGFACT" 1143136 NIL IALGFACT (NIL T T T T) -7 NIL NIL) (-484 1142238 1142351 1142379 "HYPCAT" 1142586 T HYPCAT (NIL) -9 NIL NIL) (-483 1141776 1141893 1142079 "HYPCAT-" 1142084 NIL HYPCAT- (NIL T) -8 NIL NIL) (-482 1141398 1141571 1141654 "HOSTNAME" 1141713 T HOSTNAME (NIL) -8 NIL NIL) (-481 1138077 1139408 1139449 "HOAGG" 1140430 NIL HOAGG (NIL T) -9 NIL 1141109) (-480 1136671 1137070 1137596 "HOAGG-" 1137601 NIL HOAGG- (NIL T T) -8 NIL NIL) (-479 1130559 1136112 1136278 "HEXADEC" 1136525 T HEXADEC (NIL) -8 NIL NIL) (-478 1129307 1129529 1129792 "HEUGCD" 1130336 NIL HEUGCD (NIL T) -7 NIL NIL) (-477 1128410 1129144 1129274 "HELLFDIV" 1129279 NIL HELLFDIV (NIL T T T T) -8 NIL NIL) (-476 1126638 1128187 1128275 "HEAP" 1128354 NIL HEAP (NIL T) -8 NIL NIL) (-475 1125929 1126190 1126324 "HEADAST" 1126524 T HEADAST (NIL) -8 NIL NIL) (-474 1119849 1125844 1125906 "HDP" 1125911 NIL HDP (NIL NIL T) -8 NIL NIL) (-473 1113600 1119484 1119636 "HDMP" 1119750 NIL HDMP (NIL NIL T) -8 NIL NIL) (-472 1112925 1113064 1113228 "HB" 1113456 T HB (NIL) -7 NIL NIL) (-471 1106422 1112771 1112875 "HASHTBL" 1112880 NIL HASHTBL (NIL T T NIL) -8 NIL NIL) (-470 1105925 1106143 1106235 "HASAST" 1106350 T HASAST (NIL) -8 NIL NIL) (-469 1103739 1105549 1105730 "HACKPI" 1105764 T HACKPI (NIL) -8 NIL NIL) (-468 1099434 1103592 1103705 "GTSET" 1103710 NIL GTSET (NIL T T T T) -8 NIL NIL) (-467 1092960 1099312 1099410 "GSTBL" 1099415 NIL GSTBL (NIL T T T NIL) -8 NIL NIL) (-466 1085273 1091991 1092256 "GSERIES" 1092751 NIL GSERIES (NIL T NIL NIL) -8 NIL NIL) (-465 1084440 1084831 1084859 "GROUP" 1085062 T GROUP (NIL) -9 NIL 1085196) (-464 1083806 1083965 1084216 "GROUP-" 1084221 NIL GROUP- (NIL T) -8 NIL NIL) (-463 1082175 1082494 1082881 "GROEBSOL" 1083483 NIL GROEBSOL (NIL NIL T T) -7 NIL NIL) (-462 1081115 1081377 1081428 "GRMOD" 1081957 NIL GRMOD (NIL T T) -9 NIL 1082125) (-461 1080883 1080919 1081047 "GRMOD-" 1081052 NIL GRMOD- (NIL T T T) -8 NIL NIL) (-460 1076208 1077237 1078237 "GRIMAGE" 1079903 T GRIMAGE (NIL) -8 NIL NIL) (-459 1074675 1074935 1075259 "GRDEF" 1075904 T GRDEF (NIL) -7 NIL NIL) (-458 1074119 1074235 1074376 "GRAY" 1074554 T GRAY (NIL) -7 NIL NIL) (-457 1073350 1073730 1073781 "GRALG" 1073934 NIL GRALG (NIL T T) -9 NIL 1074027) (-456 1073011 1073084 1073247 "GRALG-" 1073252 NIL GRALG- (NIL T T T) -8 NIL NIL) (-455 1069815 1072596 1072774 "GPOLSET" 1072918 NIL GPOLSET (NIL T T T T) -8 NIL NIL) (-454 1069169 1069226 1069484 "GOSPER" 1069752 NIL GOSPER (NIL T T T T T) -7 NIL NIL) (-453 1064928 1065607 1066133 "GMODPOL" 1068868 NIL GMODPOL (NIL NIL T T T NIL T) -8 NIL NIL) (-452 1063933 1064117 1064355 "GHENSEL" 1064740 NIL GHENSEL (NIL T T) -7 NIL NIL) (-451 1057984 1058827 1059854 "GENUPS" 1063017 NIL GENUPS (NIL T T) -7 NIL NIL) (-450 1057681 1057732 1057821 "GENUFACT" 1057927 NIL GENUFACT (NIL T) -7 NIL NIL) (-449 1057093 1057170 1057335 "GENPGCD" 1057599 NIL GENPGCD (NIL T T T T) -7 NIL NIL) (-448 1056567 1056602 1056815 "GENMFACT" 1057052 NIL GENMFACT (NIL T T T T T) -7 NIL NIL) (-447 1055135 1055390 1055697 "GENEEZ" 1056310 NIL GENEEZ (NIL T T) -7 NIL NIL) (-446 1049048 1054746 1054908 "GDMP" 1055058 NIL GDMP (NIL NIL T T) -8 NIL NIL) (-445 1038425 1042819 1043925 "GCNAALG" 1048031 NIL GCNAALG (NIL T NIL NIL NIL) -8 NIL NIL) (-444 1036887 1037715 1037743 "GCDDOM" 1037998 T GCDDOM (NIL) -9 NIL 1038155) (-443 1036357 1036484 1036699 "GCDDOM-" 1036704 NIL GCDDOM- (NIL T) -8 NIL NIL) (-442 1035029 1035214 1035518 "GB" 1036136 NIL GB (NIL T T T T) -7 NIL NIL) (-441 1023649 1025975 1028367 "GBINTERN" 1032720 NIL GBINTERN (NIL T T T T) -7 NIL NIL) (-440 1021486 1021778 1022199 "GBF" 1023324 NIL GBF (NIL T T T T) -7 NIL NIL) (-439 1020267 1020432 1020699 "GBEUCLID" 1021302 NIL GBEUCLID (NIL T T T T) -7 NIL NIL) (-438 1019616 1019741 1019890 "GAUSSFAC" 1020138 T GAUSSFAC (NIL) -7 NIL NIL) (-437 1017983 1018285 1018599 "GALUTIL" 1019335 NIL GALUTIL (NIL T) -7 NIL NIL) (-436 1016291 1016565 1016889 "GALPOLYU" 1017710 NIL GALPOLYU (NIL T T) -7 NIL NIL) (-435 1013656 1013946 1014353 "GALFACTU" 1015988 NIL GALFACTU (NIL T T T) -7 NIL NIL) (-434 1005462 1006961 1008569 "GALFACT" 1012088 NIL GALFACT (NIL T) -7 NIL NIL) (-433 1002850 1003508 1003536 "FVFUN" 1004692 T FVFUN (NIL) -9 NIL 1005412) (-432 1002116 1002298 1002326 "FVC" 1002617 T FVC (NIL) -9 NIL 1002800) (-431 1001758 1001913 1001994 "FUNCTION" 1002068 NIL FUNCTION (NIL NIL) -8 NIL NIL) (-430 999428 999979 1000468 "FT" 1001289 T FT (NIL) -8 NIL NIL) (-429 998246 998729 998932 "FTEM" 999245 T FTEM (NIL) -8 NIL NIL) (-428 996502 996791 997195 "FSUPFACT" 997937 NIL FSUPFACT (NIL T T T) -7 NIL NIL) (-427 994899 995188 995520 "FST" 996190 T FST (NIL) -8 NIL NIL) (-426 994070 994176 994371 "FSRED" 994781 NIL FSRED (NIL T T) -7 NIL NIL) (-425 992749 993004 993358 "FSPRMELT" 993785 NIL FSPRMELT (NIL T T) -7 NIL NIL) (-424 989834 990272 990771 "FSPECF" 992312 NIL FSPECF (NIL T T) -7 NIL NIL) (-423 972276 980718 980758 "FS" 984606 NIL FS (NIL T) -9 NIL 986895) (-422 960926 963916 967972 "FS-" 968269 NIL FS- (NIL T T) -8 NIL NIL) (-421 960440 960494 960671 "FSINT" 960867 NIL FSINT (NIL T T) -7 NIL NIL) (-420 958767 959433 959736 "FSERIES" 960219 NIL FSERIES (NIL T T) -8 NIL NIL) (-419 957781 957897 958128 "FSCINT" 958647 NIL FSCINT (NIL T T) -7 NIL NIL) (-418 954015 956725 956766 "FSAGG" 957136 NIL FSAGG (NIL T) -9 NIL 957395) (-417 951777 952378 953174 "FSAGG-" 953269 NIL FSAGG- (NIL T T) -8 NIL NIL) (-416 950819 950962 951189 "FSAGG2" 951630 NIL FSAGG2 (NIL T T T T) -7 NIL NIL) (-415 948474 948753 949307 "FS2UPS" 950537 NIL FS2UPS (NIL T T T T T NIL) -7 NIL NIL) (-414 948056 948099 948254 "FS2" 948425 NIL FS2 (NIL T T T T) -7 NIL NIL) (-413 946913 947084 947393 "FS2EXPXP" 947881 NIL FS2EXPXP (NIL T T NIL NIL) -7 NIL NIL) (-412 946339 946454 946606 "FRUTIL" 946793 NIL FRUTIL (NIL T) -7 NIL NIL) (-411 937800 941838 943194 "FR" 945015 NIL FR (NIL T) -8 NIL NIL) (-410 932875 935518 935558 "FRNAALG" 936954 NIL FRNAALG (NIL T) -9 NIL 937561) (-409 928553 929624 930899 "FRNAALG-" 931649 NIL FRNAALG- (NIL T T) -8 NIL NIL) (-408 928191 928234 928361 "FRNAAF2" 928504 NIL FRNAAF2 (NIL T T T T) -7 NIL NIL) (-407 926598 927045 927340 "FRMOD" 928003 NIL FRMOD (NIL T T T T NIL) -8 NIL NIL) (-406 924377 924981 925298 "FRIDEAL" 926389 NIL FRIDEAL (NIL T T T T) -8 NIL NIL) (-405 923572 923659 923948 "FRIDEAL2" 924284 NIL FRIDEAL2 (NIL T T T T T T T T) -7 NIL NIL) (-404 922814 923228 923269 "FRETRCT" 923274 NIL FRETRCT (NIL T) -9 NIL 923450) (-403 921926 922157 922508 "FRETRCT-" 922513 NIL FRETRCT- (NIL T T) -8 NIL NIL) (-402 919176 920352 920411 "FRAMALG" 921293 NIL FRAMALG (NIL T T) -9 NIL 921585) (-401 917310 917765 918395 "FRAMALG-" 918618 NIL FRAMALG- (NIL T T T) -8 NIL NIL) (-400 911270 916785 917061 "FRAC" 917066 NIL FRAC (NIL T) -8 NIL NIL) (-399 910906 910963 911070 "FRAC2" 911207 NIL FRAC2 (NIL T T) -7 NIL NIL) (-398 910542 910599 910706 "FR2" 910843 NIL FR2 (NIL T T) -7 NIL NIL) (-397 905272 908120 908148 "FPS" 909267 T FPS (NIL) -9 NIL 909824) (-396 904721 904830 904994 "FPS-" 905140 NIL FPS- (NIL T) -8 NIL NIL) (-395 902227 903862 903890 "FPC" 904115 T FPC (NIL) -9 NIL 904257) (-394 902020 902060 902157 "FPC-" 902162 NIL FPC- (NIL T) -8 NIL NIL) (-393 900898 901508 901549 "FPATMAB" 901554 NIL FPATMAB (NIL T) -9 NIL 901706) (-392 898598 899074 899500 "FPARFRAC" 900535 NIL FPARFRAC (NIL T T) -8 NIL NIL) (-391 893991 894490 895172 "FORTRAN" 898030 NIL FORTRAN (NIL NIL NIL NIL NIL) -8 NIL NIL) (-390 891707 892207 892746 "FORT" 893472 T FORT (NIL) -7 NIL NIL) (-389 889383 889945 889973 "FORTFN" 891033 T FORTFN (NIL) -9 NIL 891657) (-388 889147 889197 889225 "FORTCAT" 889284 T FORTCAT (NIL) -9 NIL 889346) (-387 887207 887690 888089 "FORMULA" 888768 T FORMULA (NIL) -8 NIL NIL) (-386 886995 887025 887094 "FORMULA1" 887171 NIL FORMULA1 (NIL T) -7 NIL NIL) (-385 886518 886570 886743 "FORDER" 886937 NIL FORDER (NIL T T T T) -7 NIL NIL) (-384 885614 885778 885971 "FOP" 886345 T FOP (NIL) -7 NIL NIL) (-383 884222 884894 885068 "FNLA" 885496 NIL FNLA (NIL NIL NIL T) -8 NIL NIL) (-382 882890 883279 883307 "FNCAT" 883879 T FNCAT (NIL) -9 NIL 884172) (-381 882456 882849 882877 "FNAME" 882882 T FNAME (NIL) -8 NIL NIL) (-380 881154 882083 882111 "FMTC" 882116 T FMTC (NIL) -9 NIL 882152) (-379 877516 878677 879306 "FMONOID" 880558 NIL FMONOID (NIL T) -8 NIL NIL) (-378 876735 877258 877407 "FM" 877412 NIL FM (NIL T T) -8 NIL NIL) (-377 874159 874805 874833 "FMFUN" 875977 T FMFUN (NIL) -9 NIL 876685) (-376 873428 873609 873637 "FMC" 873927 T FMC (NIL) -9 NIL 874109) (-375 870640 871474 871528 "FMCAT" 872723 NIL FMCAT (NIL T T) -9 NIL 873218) (-374 869533 870406 870506 "FM1" 870585 NIL FM1 (NIL T T) -8 NIL NIL) (-373 867307 867723 868217 "FLOATRP" 869084 NIL FLOATRP (NIL T) -7 NIL NIL) (-372 860858 864963 865593 "FLOAT" 866697 T FLOAT (NIL) -8 NIL NIL) (-371 858296 858796 859374 "FLOATCP" 860325 NIL FLOATCP (NIL T) -7 NIL NIL) (-370 857125 857929 857970 "FLINEXP" 857975 NIL FLINEXP (NIL T) -9 NIL 858068) (-369 856279 856514 856842 "FLINEXP-" 856847 NIL FLINEXP- (NIL T T) -8 NIL NIL) (-368 855355 855499 855723 "FLASORT" 856131 NIL FLASORT (NIL T T) -7 NIL NIL) (-367 852572 853414 853466 "FLALG" 854693 NIL FLALG (NIL T T) -9 NIL 855160) (-366 846356 850058 850099 "FLAGG" 851361 NIL FLAGG (NIL T) -9 NIL 852013) (-365 845082 845421 845911 "FLAGG-" 845916 NIL FLAGG- (NIL T T) -8 NIL NIL) (-364 844124 844267 844494 "FLAGG2" 844935 NIL FLAGG2 (NIL T T T T) -7 NIL NIL) (-363 841137 842111 842170 "FINRALG" 843298 NIL FINRALG (NIL T T) -9 NIL 843806) (-362 840297 840526 840865 "FINRALG-" 840870 NIL FINRALG- (NIL T T T) -8 NIL NIL) (-361 839703 839916 839944 "FINITE" 840140 T FINITE (NIL) -9 NIL 840247) (-360 832161 834322 834362 "FINAALG" 838029 NIL FINAALG (NIL T) -9 NIL 839482) (-359 827502 828543 829687 "FINAALG-" 831066 NIL FINAALG- (NIL T T) -8 NIL NIL) (-358 826897 827257 827360 "FILE" 827432 NIL FILE (NIL T) -8 NIL NIL) (-357 825581 825893 825947 "FILECAT" 826631 NIL FILECAT (NIL T T) -9 NIL 826847) (-356 823501 824995 825023 "FIELD" 825063 T FIELD (NIL) -9 NIL 825143) (-355 822121 822506 823017 "FIELD-" 823022 NIL FIELD- (NIL T) -8 NIL NIL) (-354 819999 820756 821103 "FGROUP" 821807 NIL FGROUP (NIL T) -8 NIL NIL) (-353 819089 819253 819473 "FGLMICPK" 819831 NIL FGLMICPK (NIL T NIL) -7 NIL NIL) (-352 814956 819014 819071 "FFX" 819076 NIL FFX (NIL T NIL) -8 NIL NIL) (-351 814557 814618 814753 "FFSLPE" 814889 NIL FFSLPE (NIL T T T) -7 NIL NIL) (-350 810550 811329 812125 "FFPOLY" 813793 NIL FFPOLY (NIL T) -7 NIL NIL) (-349 810054 810090 810299 "FFPOLY2" 810508 NIL FFPOLY2 (NIL T T) -7 NIL NIL) (-348 805940 809973 810036 "FFP" 810041 NIL FFP (NIL T NIL) -8 NIL NIL) (-347 801373 805851 805915 "FF" 805920 NIL FF (NIL NIL NIL) -8 NIL NIL) (-346 796534 800716 800906 "FFNBX" 801227 NIL FFNBX (NIL T NIL) -8 NIL NIL) (-345 791508 795669 795927 "FFNBP" 796388 NIL FFNBP (NIL T NIL) -8 NIL NIL) (-344 786176 790792 791003 "FFNB" 791341 NIL FFNB (NIL NIL NIL) -8 NIL NIL) (-343 785008 785206 785521 "FFINTBAS" 785973 NIL FFINTBAS (NIL T T T) -7 NIL NIL) (-342 781292 783467 783495 "FFIELDC" 784115 T FFIELDC (NIL) -9 NIL 784491) (-341 779955 780325 780822 "FFIELDC-" 780827 NIL FFIELDC- (NIL T) -8 NIL NIL) (-340 779525 779570 779694 "FFHOM" 779897 NIL FFHOM (NIL T T T) -7 NIL NIL) (-339 777223 777707 778224 "FFF" 779040 NIL FFF (NIL T) -7 NIL NIL) (-338 772876 776965 777066 "FFCGX" 777166 NIL FFCGX (NIL T NIL) -8 NIL NIL) (-337 768543 772608 772715 "FFCGP" 772819 NIL FFCGP (NIL T NIL) -8 NIL NIL) (-336 763761 768270 768378 "FFCG" 768479 NIL FFCG (NIL NIL NIL) -8 NIL NIL) (-335 745819 754855 754941 "FFCAT" 760106 NIL FFCAT (NIL T T T) -9 NIL 761557) (-334 741017 742064 743378 "FFCAT-" 744608 NIL FFCAT- (NIL T T T T) -8 NIL NIL) (-333 740428 740471 740706 "FFCAT2" 740968 NIL FFCAT2 (NIL T T T T T T T T) -7 NIL NIL) (-332 729640 733400 734620 "FEXPR" 739280 NIL FEXPR (NIL NIL NIL T) -8 NIL NIL) (-331 728640 729075 729116 "FEVALAB" 729200 NIL FEVALAB (NIL T) -9 NIL 729461) (-330 727799 728009 728347 "FEVALAB-" 728352 NIL FEVALAB- (NIL T T) -8 NIL NIL) (-329 726392 727182 727385 "FDIV" 727698 NIL FDIV (NIL T T T T) -8 NIL NIL) (-328 723458 724173 724288 "FDIVCAT" 725856 NIL FDIVCAT (NIL T T T T) -9 NIL 726293) (-327 723220 723247 723417 "FDIVCAT-" 723422 NIL FDIVCAT- (NIL T T T T T) -8 NIL NIL) (-326 722440 722527 722804 "FDIV2" 723127 NIL FDIV2 (NIL T T T T T T T T) -7 NIL NIL) (-325 721126 721385 721674 "FCPAK1" 722171 T FCPAK1 (NIL) -7 NIL NIL) (-324 720254 720626 720767 "FCOMP" 721017 NIL FCOMP (NIL T) -8 NIL NIL) (-323 703889 707303 710864 "FC" 716713 T FC (NIL) -8 NIL NIL) (-322 696542 700523 700563 "FAXF" 702365 NIL FAXF (NIL T) -9 NIL 703057) (-321 693821 694476 695301 "FAXF-" 695766 NIL FAXF- (NIL T T) -8 NIL NIL) (-320 688921 693197 693373 "FARRAY" 693678 NIL FARRAY (NIL T) -8 NIL NIL) (-319 684328 686360 686413 "FAMR" 687436 NIL FAMR (NIL T T) -9 NIL 687896) (-318 683218 683520 683955 "FAMR-" 683960 NIL FAMR- (NIL T T T) -8 NIL NIL) (-317 682414 683140 683193 "FAMONOID" 683198 NIL FAMONOID (NIL T) -8 NIL NIL) (-316 680244 680928 680981 "FAMONC" 681922 NIL FAMONC (NIL T T) -9 NIL 682308) (-315 678936 679998 680135 "FAGROUP" 680140 NIL FAGROUP (NIL T) -8 NIL NIL) (-314 676731 677050 677453 "FACUTIL" 678617 NIL FACUTIL (NIL T T T T) -7 NIL NIL) (-313 675830 676015 676237 "FACTFUNC" 676541 NIL FACTFUNC (NIL T) -7 NIL NIL) (-312 668235 675081 675293 "EXPUPXS" 675686 NIL EXPUPXS (NIL T NIL NIL) -8 NIL NIL) (-311 665718 666258 666844 "EXPRTUBE" 667669 T EXPRTUBE (NIL) -7 NIL NIL) (-310 661912 662504 663241 "EXPRODE" 665057 NIL EXPRODE (NIL T T) -7 NIL NIL) (-309 647286 660567 660995 "EXPR" 661516 NIL EXPR (NIL T) -8 NIL NIL) (-308 641693 642280 643093 "EXPR2UPS" 646584 NIL EXPR2UPS (NIL T T) -7 NIL NIL) (-307 641329 641386 641493 "EXPR2" 641630 NIL EXPR2 (NIL T T) -7 NIL NIL) (-306 632736 640461 640758 "EXPEXPAN" 641166 NIL EXPEXPAN (NIL T T NIL NIL) -8 NIL NIL) (-305 632563 632693 632722 "EXIT" 632727 T EXIT (NIL) -8 NIL NIL) (-304 632070 632287 632378 "EXITAST" 632492 T EXITAST (NIL) -8 NIL NIL) (-303 631697 631759 631872 "EVALCYC" 632002 NIL EVALCYC (NIL T) -7 NIL NIL) (-302 631238 631356 631397 "EVALAB" 631567 NIL EVALAB (NIL T) -9 NIL 631671) (-301 630719 630841 631062 "EVALAB-" 631067 NIL EVALAB- (NIL T T) -8 NIL NIL) (-300 628222 629490 629518 "EUCDOM" 630073 T EUCDOM (NIL) -9 NIL 630423) (-299 626627 627069 627659 "EUCDOM-" 627664 NIL EUCDOM- (NIL T) -8 NIL NIL) (-298 614167 616925 619675 "ESTOOLS" 623897 T ESTOOLS (NIL) -7 NIL NIL) (-297 613799 613856 613965 "ESTOOLS2" 614104 NIL ESTOOLS2 (NIL T T) -7 NIL NIL) (-296 613550 613592 613672 "ESTOOLS1" 613751 NIL ESTOOLS1 (NIL T) -7 NIL NIL) (-295 607475 609203 609231 "ES" 611999 T ES (NIL) -9 NIL 613408) (-294 602422 603709 605526 "ES-" 605690 NIL ES- (NIL T) -8 NIL NIL) (-293 598797 599557 600337 "ESCONT" 601662 T ESCONT (NIL) -7 NIL NIL) (-292 598542 598574 598656 "ESCONT1" 598759 NIL ESCONT1 (NIL NIL NIL) -7 NIL NIL) (-291 598217 598267 598367 "ES2" 598486 NIL ES2 (NIL T T) -7 NIL NIL) (-290 597847 597905 598014 "ES1" 598153 NIL ES1 (NIL T T) -7 NIL NIL) (-289 597063 597192 597368 "ERROR" 597691 T ERROR (NIL) -7 NIL NIL) (-288 590566 596922 597013 "EQTBL" 597018 NIL EQTBL (NIL T T) -8 NIL NIL) (-287 583123 585880 587329 "EQ" 589150 NIL -3907 (NIL T) -8 NIL NIL) (-286 582755 582812 582921 "EQ2" 583060 NIL EQ2 (NIL T T) -7 NIL NIL) (-285 578047 579093 580186 "EP" 581694 NIL EP (NIL T) -7 NIL NIL) (-284 576629 576930 577247 "ENV" 577750 T ENV (NIL) -8 NIL NIL) (-283 575828 576348 576376 "ENTIRER" 576381 T ENTIRER (NIL) -9 NIL 576427) (-282 572330 573783 574153 "EMR" 575627 NIL EMR (NIL T T T NIL NIL NIL) -8 NIL NIL) (-281 571474 571659 571713 "ELTAGG" 572093 NIL ELTAGG (NIL T T) -9 NIL 572304) (-280 571193 571255 571396 "ELTAGG-" 571401 NIL ELTAGG- (NIL T T T) -8 NIL NIL) (-279 570982 571011 571065 "ELTAB" 571149 NIL ELTAB (NIL T T) -9 NIL NIL) (-278 570108 570254 570453 "ELFUTS" 570833 NIL ELFUTS (NIL T T) -7 NIL NIL) (-277 569850 569906 569934 "ELEMFUN" 570039 T ELEMFUN (NIL) -9 NIL NIL) (-276 569720 569741 569809 "ELEMFUN-" 569814 NIL ELEMFUN- (NIL T) -8 NIL NIL) (-275 564611 567820 567861 "ELAGG" 568801 NIL ELAGG (NIL T) -9 NIL 569264) (-274 562896 563330 563993 "ELAGG-" 563998 NIL ELAGG- (NIL T T) -8 NIL NIL) (-273 561553 561833 562128 "ELABEXPR" 562621 T ELABEXPR (NIL) -8 NIL NIL) (-272 554419 556220 557047 "EFUPXS" 560829 NIL EFUPXS (NIL T T T T) -8 NIL NIL) (-271 547869 549670 550480 "EFULS" 553695 NIL EFULS (NIL T T T) -8 NIL NIL) (-270 545291 545649 546128 "EFSTRUC" 547501 NIL EFSTRUC (NIL T T) -7 NIL NIL) (-269 534363 535928 537488 "EF" 543806 NIL EF (NIL T T) -7 NIL NIL) (-268 533464 533848 533997 "EAB" 534234 T EAB (NIL) -8 NIL NIL) (-267 532673 533423 533451 "E04UCFA" 533456 T E04UCFA (NIL) -8 NIL NIL) (-266 531882 532632 532660 "E04NAFA" 532665 T E04NAFA (NIL) -8 NIL NIL) (-265 531091 531841 531869 "E04MBFA" 531874 T E04MBFA (NIL) -8 NIL NIL) (-264 530300 531050 531078 "E04JAFA" 531083 T E04JAFA (NIL) -8 NIL NIL) (-263 529511 530259 530287 "E04GCFA" 530292 T E04GCFA (NIL) -8 NIL NIL) (-262 528722 529470 529498 "E04FDFA" 529503 T E04FDFA (NIL) -8 NIL NIL) (-261 527931 528681 528709 "E04DGFA" 528714 T E04DGFA (NIL) -8 NIL NIL) (-260 522109 523456 524820 "E04AGNT" 526587 T E04AGNT (NIL) -7 NIL NIL) (-259 520833 521313 521353 "DVARCAT" 521828 NIL DVARCAT (NIL T) -9 NIL 522027) (-258 520037 520249 520563 "DVARCAT-" 520568 NIL DVARCAT- (NIL T T) -8 NIL NIL) (-257 512937 519836 519965 "DSMP" 519970 NIL DSMP (NIL T T T) -8 NIL NIL) (-256 507747 508882 509950 "DROPT" 511889 T DROPT (NIL) -8 NIL NIL) (-255 507412 507471 507569 "DROPT1" 507682 NIL DROPT1 (NIL T) -7 NIL NIL) (-254 502527 503653 504790 "DROPT0" 506295 T DROPT0 (NIL) -7 NIL NIL) (-253 500872 501197 501583 "DRAWPT" 502161 T DRAWPT (NIL) -7 NIL NIL) (-252 495459 496382 497461 "DRAW" 499846 NIL DRAW (NIL T) -7 NIL NIL) (-251 495092 495145 495263 "DRAWHACK" 495400 NIL DRAWHACK (NIL T) -7 NIL NIL) (-250 493823 494092 494383 "DRAWCX" 494821 T DRAWCX (NIL) -7 NIL NIL) (-249 493339 493407 493558 "DRAWCURV" 493749 NIL DRAWCURV (NIL T T) -7 NIL NIL) (-248 483810 485769 487884 "DRAWCFUN" 491244 T DRAWCFUN (NIL) -7 NIL NIL) (-247 480623 482505 482546 "DQAGG" 483175 NIL DQAGG (NIL T) -9 NIL 483448) (-246 469142 475839 475922 "DPOLCAT" 477774 NIL DPOLCAT (NIL T T T T) -9 NIL 478319) (-245 463981 465327 467285 "DPOLCAT-" 467290 NIL DPOLCAT- (NIL T T T T T) -8 NIL NIL) (-244 457136 463842 463940 "DPMO" 463945 NIL DPMO (NIL NIL T T) -8 NIL NIL) (-243 450194 456916 457083 "DPMM" 457088 NIL DPMM (NIL NIL T T T) -8 NIL NIL) (-242 449614 449817 449931 "DOMAIN" 450100 T DOMAIN (NIL) -8 NIL NIL) (-241 443365 449249 449401 "DMP" 449515 NIL DMP (NIL NIL T) -8 NIL NIL) (-240 442965 443021 443165 "DLP" 443303 NIL DLP (NIL T) -7 NIL NIL) (-239 436609 442066 442293 "DLIST" 442770 NIL DLIST (NIL T) -8 NIL NIL) (-238 433455 435464 435505 "DLAGG" 436055 NIL DLAGG (NIL T) -9 NIL 436284) (-237 432305 432935 432963 "DIVRING" 433055 T DIVRING (NIL) -9 NIL 433138) (-236 431542 431732 432032 "DIVRING-" 432037 NIL DIVRING- (NIL T) -8 NIL NIL) (-235 429644 430001 430407 "DISPLAY" 431156 T DISPLAY (NIL) -7 NIL NIL) (-234 423586 429558 429621 "DIRPROD" 429626 NIL DIRPROD (NIL NIL T) -8 NIL NIL) (-233 422434 422637 422902 "DIRPROD2" 423379 NIL DIRPROD2 (NIL NIL T T) -7 NIL NIL) (-232 411972 417924 417977 "DIRPCAT" 418387 NIL DIRPCAT (NIL NIL T) -9 NIL 419227) (-231 409298 409940 410821 "DIRPCAT-" 411158 NIL DIRPCAT- (NIL T NIL T) -8 NIL NIL) (-230 408585 408745 408931 "DIOSP" 409132 T DIOSP (NIL) -7 NIL NIL) (-229 405287 407497 407538 "DIOPS" 407972 NIL DIOPS (NIL T) -9 NIL 408201) (-228 404836 404950 405141 "DIOPS-" 405146 NIL DIOPS- (NIL T T) -8 NIL NIL) (-227 403748 404342 404370 "DIFRING" 404557 T DIFRING (NIL) -9 NIL 404667) (-226 403394 403471 403623 "DIFRING-" 403628 NIL DIFRING- (NIL T) -8 NIL NIL) (-225 401219 402457 402498 "DIFEXT" 402861 NIL DIFEXT (NIL T) -9 NIL 403155) (-224 399504 399932 400598 "DIFEXT-" 400603 NIL DIFEXT- (NIL T T) -8 NIL NIL) (-223 396826 399036 399077 "DIAGG" 399082 NIL DIAGG (NIL T) -9 NIL 399102) (-222 396210 396367 396619 "DIAGG-" 396624 NIL DIAGG- (NIL T T) -8 NIL NIL) (-221 391675 395169 395446 "DHMATRIX" 395979 NIL DHMATRIX (NIL T) -8 NIL NIL) (-220 387287 388196 389206 "DFSFUN" 390685 T DFSFUN (NIL) -7 NIL NIL) (-219 382255 386102 386444 "DFLOAT" 386965 T DFLOAT (NIL) -8 NIL NIL) (-218 380483 380764 381160 "DFINTTLS" 381963 NIL DFINTTLS (NIL T T) -7 NIL NIL) (-217 377548 378504 378904 "DERHAM" 380149 NIL DERHAM (NIL T NIL) -8 NIL NIL) (-216 375397 377323 377412 "DEQUEUE" 377492 NIL DEQUEUE (NIL T) -8 NIL NIL) (-215 374612 374745 374941 "DEGRED" 375259 NIL DEGRED (NIL T T) -7 NIL NIL) (-214 371007 371752 372605 "DEFINTRF" 373840 NIL DEFINTRF (NIL T) -7 NIL NIL) (-213 368534 369003 369602 "DEFINTEF" 370526 NIL DEFINTEF (NIL T T) -7 NIL NIL) (-212 367911 368154 368269 "DEFAST" 368439 T DEFAST (NIL) -8 NIL NIL) (-211 361799 367352 367518 "DECIMAL" 367765 T DECIMAL (NIL) -8 NIL NIL) (-210 359311 359769 360275 "DDFACT" 361343 NIL DDFACT (NIL T T) -7 NIL NIL) (-209 358907 358950 359101 "DBLRESP" 359262 NIL DBLRESP (NIL T T T T) -7 NIL NIL) (-208 356617 356951 357320 "DBASE" 358665 NIL DBASE (NIL T) -8 NIL NIL) (-207 355886 356097 356243 "DATABUF" 356516 NIL DATABUF (NIL NIL T) -8 NIL NIL) (-206 355019 355845 355873 "D03FAFA" 355878 T D03FAFA (NIL) -8 NIL NIL) (-205 354153 354978 355006 "D03EEFA" 355011 T D03EEFA (NIL) -8 NIL NIL) (-204 352103 352569 353058 "D03AGNT" 353684 T D03AGNT (NIL) -7 NIL NIL) (-203 351419 352062 352090 "D02EJFA" 352095 T D02EJFA (NIL) -8 NIL NIL) (-202 350735 351378 351406 "D02CJFA" 351411 T D02CJFA (NIL) -8 NIL NIL) (-201 350051 350694 350722 "D02BHFA" 350727 T D02BHFA (NIL) -8 NIL NIL) (-200 349367 350010 350038 "D02BBFA" 350043 T D02BBFA (NIL) -8 NIL NIL) (-199 342565 344153 345759 "D02AGNT" 347781 T D02AGNT (NIL) -7 NIL NIL) (-198 340334 340856 341402 "D01WGTS" 342039 T D01WGTS (NIL) -7 NIL NIL) (-197 339429 340293 340321 "D01TRNS" 340326 T D01TRNS (NIL) -8 NIL NIL) (-196 338524 339388 339416 "D01GBFA" 339421 T D01GBFA (NIL) -8 NIL NIL) (-195 337619 338483 338511 "D01FCFA" 338516 T D01FCFA (NIL) -8 NIL NIL) (-194 336714 337578 337606 "D01ASFA" 337611 T D01ASFA (NIL) -8 NIL NIL) (-193 335809 336673 336701 "D01AQFA" 336706 T D01AQFA (NIL) -8 NIL NIL) (-192 334904 335768 335796 "D01APFA" 335801 T D01APFA (NIL) -8 NIL NIL) (-191 333999 334863 334891 "D01ANFA" 334896 T D01ANFA (NIL) -8 NIL NIL) (-190 333094 333958 333986 "D01AMFA" 333991 T D01AMFA (NIL) -8 NIL NIL) (-189 332189 333053 333081 "D01ALFA" 333086 T D01ALFA (NIL) -8 NIL NIL) (-188 331284 332148 332176 "D01AKFA" 332181 T D01AKFA (NIL) -8 NIL NIL) (-187 330379 331243 331271 "D01AJFA" 331276 T D01AJFA (NIL) -8 NIL NIL) (-186 323676 325227 326788 "D01AGNT" 328838 T D01AGNT (NIL) -7 NIL NIL) (-185 323013 323141 323293 "CYCLOTOM" 323544 T CYCLOTOM (NIL) -7 NIL NIL) (-184 319748 320461 321188 "CYCLES" 322306 T CYCLES (NIL) -7 NIL NIL) (-183 319060 319194 319365 "CVMP" 319609 NIL CVMP (NIL T) -7 NIL NIL) (-182 316831 317089 317465 "CTRIGMNP" 318788 NIL CTRIGMNP (NIL T T) -7 NIL NIL) (-181 316342 316531 316630 "CTORCALL" 316752 T CTORCALL (NIL) -8 NIL NIL) (-180 315716 315815 315968 "CSTTOOLS" 316239 NIL CSTTOOLS (NIL T T) -7 NIL NIL) (-179 311515 312172 312930 "CRFP" 315028 NIL CRFP (NIL T T) -7 NIL NIL) (-178 311017 311236 311328 "CRCEAST" 311443 T CRCEAST (NIL) -8 NIL NIL) (-177 310064 310249 310477 "CRAPACK" 310821 NIL CRAPACK (NIL T) -7 NIL NIL) (-176 309448 309549 309753 "CPMATCH" 309940 NIL CPMATCH (NIL T T T) -7 NIL NIL) (-175 309173 309201 309307 "CPIMA" 309414 NIL CPIMA (NIL T T T) -7 NIL NIL) (-174 305537 306209 306927 "COORDSYS" 308508 NIL COORDSYS (NIL T) -7 NIL NIL) (-173 304921 305050 305200 "CONTOUR" 305407 T CONTOUR (NIL) -8 NIL NIL) (-172 300847 302924 303416 "CONTFRAC" 304461 NIL CONTFRAC (NIL T) -8 NIL NIL) (-171 300727 300748 300776 "CONDUIT" 300813 T CONDUIT (NIL) -9 NIL NIL) (-170 299920 300440 300468 "COMRING" 300473 T COMRING (NIL) -9 NIL 300525) (-169 299001 299278 299462 "COMPPROP" 299756 T COMPPROP (NIL) -8 NIL NIL) (-168 298662 298697 298825 "COMPLPAT" 298960 NIL COMPLPAT (NIL T T T) -7 NIL NIL) (-167 288721 298471 298580 "COMPLEX" 298585 NIL COMPLEX (NIL T) -8 NIL NIL) (-166 288357 288414 288521 "COMPLEX2" 288658 NIL COMPLEX2 (NIL T T) -7 NIL NIL) (-165 288075 288110 288208 "COMPFACT" 288316 NIL COMPFACT (NIL T T) -7 NIL NIL) (-164 272473 282689 282729 "COMPCAT" 283733 NIL COMPCAT (NIL T) -9 NIL 285128) (-163 261988 264912 268539 "COMPCAT-" 268895 NIL COMPCAT- (NIL T T) -8 NIL NIL) (-162 261717 261745 261848 "COMMUPC" 261954 NIL COMMUPC (NIL T T T) -7 NIL NIL) (-161 261512 261545 261604 "COMMONOP" 261678 T COMMONOP (NIL) -7 NIL NIL) (-160 261095 261263 261350 "COMM" 261445 T COMM (NIL) -8 NIL NIL) (-159 260699 260899 260974 "COMMAAST" 261040 T COMMAAST (NIL) -8 NIL NIL) (-158 259948 260142 260170 "COMBOPC" 260508 T COMBOPC (NIL) -9 NIL 260683) (-157 258844 259054 259296 "COMBINAT" 259738 NIL COMBINAT (NIL T) -7 NIL NIL) (-156 255042 255615 256255 "COMBF" 258266 NIL COMBF (NIL T T) -7 NIL NIL) (-155 253828 254158 254393 "COLOR" 254827 T COLOR (NIL) -8 NIL NIL) (-154 253331 253549 253641 "COLONAST" 253756 T COLONAST (NIL) -8 NIL NIL) (-153 252971 253018 253143 "CMPLXRT" 253278 NIL CMPLXRT (NIL T T) -7 NIL NIL) (-152 252446 252671 252770 "CLLCTAST" 252892 T CLLCTAST (NIL) -8 NIL NIL) (-151 247948 248976 250056 "CLIP" 251386 T CLIP (NIL) -7 NIL NIL) (-150 246330 247054 247293 "CLIF" 247775 NIL CLIF (NIL NIL T NIL) -8 NIL NIL) (-149 242552 244476 244517 "CLAGG" 245446 NIL CLAGG (NIL T) -9 NIL 245982) (-148 240974 241431 242014 "CLAGG-" 242019 NIL CLAGG- (NIL T T) -8 NIL NIL) (-147 240518 240603 240743 "CINTSLPE" 240883 NIL CINTSLPE (NIL T T) -7 NIL NIL) (-146 238019 238490 239038 "CHVAR" 240046 NIL CHVAR (NIL T T T) -7 NIL NIL) (-145 237282 237802 237830 "CHARZ" 237835 T CHARZ (NIL) -9 NIL 237850) (-144 237036 237076 237154 "CHARPOL" 237236 NIL CHARPOL (NIL T) -7 NIL NIL) (-143 236183 236736 236764 "CHARNZ" 236811 T CHARNZ (NIL) -9 NIL 236867) (-142 234208 234873 235208 "CHAR" 235868 T CHAR (NIL) -8 NIL NIL) (-141 233934 233995 234023 "CFCAT" 234134 T CFCAT (NIL) -9 NIL NIL) (-140 233179 233290 233472 "CDEN" 233818 NIL CDEN (NIL T T T) -7 NIL NIL) (-139 229171 232332 232612 "CCLASS" 232919 T CCLASS (NIL) -8 NIL NIL) (-138 229090 229116 229151 "CATEGORY" 229156 T -10 (NIL) -8 NIL NIL) (-137 228564 228790 228889 "CATAST" 229011 T CATAST (NIL) -8 NIL NIL) (-136 228067 228285 228377 "CASEAST" 228492 T CASEAST (NIL) -8 NIL NIL) (-135 223119 224096 224849 "CARTEN" 227370 NIL CARTEN (NIL NIL NIL T) -8 NIL NIL) (-134 222227 222375 222596 "CARTEN2" 222966 NIL CARTEN2 (NIL NIL NIL T T) -7 NIL NIL) (-133 220569 221377 221634 "CARD" 221990 T CARD (NIL) -8 NIL NIL) (-132 220172 220373 220448 "CAPSLAST" 220514 T CAPSLAST (NIL) -8 NIL NIL) (-131 219544 219872 219900 "CACHSET" 220032 T CACHSET (NIL) -9 NIL 220109) (-130 219040 219336 219364 "CABMON" 219414 T CABMON (NIL) -9 NIL 219470) (-129 218209 218587 218730 "BYTE" 218917 T BYTE (NIL) -8 NIL NIL) (-128 214157 218156 218190 "BYTEARY" 218195 T BYTEARY (NIL) -8 NIL NIL) (-127 211714 213849 213956 "BTREE" 214083 NIL BTREE (NIL T) -8 NIL NIL) (-126 209212 211362 211484 "BTOURN" 211624 NIL BTOURN (NIL T) -8 NIL NIL) (-125 206630 208683 208724 "BTCAT" 208792 NIL BTCAT (NIL T) -9 NIL 208869) (-124 206297 206377 206526 "BTCAT-" 206531 NIL BTCAT- (NIL T T) -8 NIL NIL) (-123 201589 205440 205468 "BTAGG" 205690 T BTAGG (NIL) -9 NIL 205851) (-122 201079 201204 201410 "BTAGG-" 201415 NIL BTAGG- (NIL T) -8 NIL NIL) (-121 198123 200357 200572 "BSTREE" 200896 NIL BSTREE (NIL T) -8 NIL NIL) (-120 197261 197387 197571 "BRILL" 197979 NIL BRILL (NIL T) -7 NIL NIL) (-119 193962 195989 196030 "BRAGG" 196679 NIL BRAGG (NIL T) -9 NIL 196936) (-118 192491 192897 193452 "BRAGG-" 193457 NIL BRAGG- (NIL T T) -8 NIL NIL) (-117 185757 191837 192021 "BPADICRT" 192339 NIL BPADICRT (NIL NIL) -8 NIL NIL) (-116 184107 185694 185739 "BPADIC" 185744 NIL BPADIC (NIL NIL) -8 NIL NIL) (-115 183805 183835 183949 "BOUNDZRO" 184071 NIL BOUNDZRO (NIL T T) -7 NIL NIL) (-114 179320 180411 181278 "BOP" 182958 T BOP (NIL) -8 NIL NIL) (-113 176941 177385 177905 "BOP1" 178833 NIL BOP1 (NIL T) -7 NIL NIL) (-112 175679 176365 176558 "BOOLEAN" 176768 T BOOLEAN (NIL) -8 NIL NIL) (-111 175041 175419 175473 "BMODULE" 175478 NIL BMODULE (NIL T T) -9 NIL 175543) (-110 170871 174839 174912 "BITS" 174988 T BITS (NIL) -8 NIL NIL) (-109 169968 170403 170555 "BINFILE" 170739 T BINFILE (NIL) -8 NIL NIL) (-108 169380 169502 169644 "BINDING" 169846 T BINDING (NIL) -8 NIL NIL) (-107 163272 168824 168989 "BINARY" 169235 T BINARY (NIL) -8 NIL NIL) (-106 161099 162527 162568 "BGAGG" 162828 NIL BGAGG (NIL T) -9 NIL 162965) (-105 160930 160962 161053 "BGAGG-" 161058 NIL BGAGG- (NIL T T) -8 NIL NIL) (-104 160028 160314 160519 "BFUNCT" 160745 T BFUNCT (NIL) -8 NIL NIL) (-103 158718 158896 159184 "BEZOUT" 159852 NIL BEZOUT (NIL T T T T T) -7 NIL NIL) (-102 155235 157570 157900 "BBTREE" 158421 NIL BBTREE (NIL T) -8 NIL NIL) (-101 154969 155022 155050 "BASTYPE" 155169 T BASTYPE (NIL) -9 NIL NIL) (-100 154821 154850 154923 "BASTYPE-" 154928 NIL BASTYPE- (NIL T) -8 NIL NIL) (-99 154259 154335 154485 "BALFACT" 154732 NIL BALFACT (NIL T T) -7 NIL NIL) (-98 153142 153674 153860 "AUTOMOR" 154104 NIL AUTOMOR (NIL T) -8 NIL NIL) (-97 152868 152873 152899 "ATTREG" 152904 T ATTREG (NIL) -9 NIL NIL) (-96 151147 151565 151917 "ATTRBUT" 152534 T ATTRBUT (NIL) -8 NIL NIL) (-95 150782 150975 151041 "ATTRAST" 151099 T ATTRAST (NIL) -8 NIL NIL) (-94 150318 150431 150457 "ATRIG" 150658 T ATRIG (NIL) -9 NIL NIL) (-93 150127 150168 150255 "ATRIG-" 150260 NIL ATRIG- (NIL T) -8 NIL NIL) (-92 149749 149909 149935 "ASTCAT" 149993 T ASTCAT (NIL) -9 NIL 150056) (-91 149476 149535 149654 "ASTCAT-" 149659 NIL ASTCAT- (NIL T) -8 NIL NIL) (-90 147673 149252 149340 "ASTACK" 149419 NIL ASTACK (NIL T) -8 NIL NIL) (-89 146178 146475 146840 "ASSOCEQ" 147355 NIL ASSOCEQ (NIL T T) -7 NIL NIL) (-88 145210 145837 145961 "ASP9" 146085 NIL ASP9 (NIL NIL) -8 NIL NIL) (-87 144974 145158 145197 "ASP8" 145202 NIL ASP8 (NIL NIL) -8 NIL NIL) (-86 143843 144579 144721 "ASP80" 144863 NIL ASP80 (NIL NIL) -8 NIL NIL) (-85 142742 143478 143610 "ASP7" 143742 NIL ASP7 (NIL NIL) -8 NIL NIL) (-84 141696 142419 142537 "ASP78" 142655 NIL ASP78 (NIL NIL) -8 NIL NIL) (-83 140665 141376 141493 "ASP77" 141610 NIL ASP77 (NIL NIL) -8 NIL NIL) (-82 139577 140303 140434 "ASP74" 140565 NIL ASP74 (NIL NIL) -8 NIL NIL) (-81 138477 139212 139344 "ASP73" 139476 NIL ASP73 (NIL NIL) -8 NIL NIL) (-80 137432 138154 138272 "ASP6" 138390 NIL ASP6 (NIL NIL) -8 NIL NIL) (-79 136380 137109 137227 "ASP55" 137345 NIL ASP55 (NIL NIL) -8 NIL NIL) (-78 135330 136054 136173 "ASP50" 136292 NIL ASP50 (NIL NIL) -8 NIL NIL) (-77 134418 135031 135141 "ASP4" 135251 NIL ASP4 (NIL NIL) -8 NIL NIL) (-76 133506 134119 134229 "ASP49" 134339 NIL ASP49 (NIL NIL) -8 NIL NIL) (-75 132291 133045 133213 "ASP42" 133395 NIL ASP42 (NIL NIL NIL NIL) -8 NIL NIL) (-74 131068 131824 131994 "ASP41" 132178 NIL ASP41 (NIL NIL NIL NIL) -8 NIL NIL) (-73 130018 130745 130863 "ASP35" 130981 NIL ASP35 (NIL NIL) -8 NIL NIL) (-72 129783 129966 130005 "ASP34" 130010 NIL ASP34 (NIL NIL) -8 NIL NIL) (-71 129520 129587 129663 "ASP33" 129738 NIL ASP33 (NIL NIL) -8 NIL NIL) (-70 128415 129155 129287 "ASP31" 129419 NIL ASP31 (NIL NIL) -8 NIL NIL) (-69 128180 128363 128402 "ASP30" 128407 NIL ASP30 (NIL NIL) -8 NIL NIL) (-68 127915 127984 128060 "ASP29" 128135 NIL ASP29 (NIL NIL) -8 NIL NIL) (-67 127680 127863 127902 "ASP28" 127907 NIL ASP28 (NIL NIL) -8 NIL NIL) (-66 127445 127628 127667 "ASP27" 127672 NIL ASP27 (NIL NIL) -8 NIL NIL) (-65 126529 127143 127254 "ASP24" 127365 NIL ASP24 (NIL NIL) -8 NIL NIL) (-64 125445 126170 126300 "ASP20" 126430 NIL ASP20 (NIL NIL) -8 NIL NIL) (-63 124533 125146 125256 "ASP1" 125366 NIL ASP1 (NIL NIL) -8 NIL NIL) (-62 123477 124207 124326 "ASP19" 124445 NIL ASP19 (NIL NIL) -8 NIL NIL) (-61 123214 123281 123357 "ASP12" 123432 NIL ASP12 (NIL NIL) -8 NIL NIL) (-60 122066 122813 122957 "ASP10" 123101 NIL ASP10 (NIL NIL) -8 NIL NIL) (-59 119965 121910 122001 "ARRAY2" 122006 NIL ARRAY2 (NIL T) -8 NIL NIL) (-58 115781 119613 119727 "ARRAY1" 119882 NIL ARRAY1 (NIL T) -8 NIL NIL) (-57 114813 114986 115207 "ARRAY12" 115604 NIL ARRAY12 (NIL T T) -7 NIL NIL) (-56 109172 111043 111118 "ARR2CAT" 113748 NIL ARR2CAT (NIL T T T) -9 NIL 114506) (-55 106606 107350 108304 "ARR2CAT-" 108309 NIL ARR2CAT- (NIL T T T T) -8 NIL NIL) (-54 105354 105506 105812 "APPRULE" 106442 NIL APPRULE (NIL T T T) -7 NIL NIL) (-53 105005 105053 105172 "APPLYORE" 105300 NIL APPLYORE (NIL T T T) -7 NIL NIL) (-52 103979 104270 104465 "ANY" 104828 T ANY (NIL) -8 NIL NIL) (-51 103257 103380 103537 "ANY1" 103853 NIL ANY1 (NIL T) -7 NIL NIL) (-50 100822 101694 102021 "ANTISYM" 102981 NIL ANTISYM (NIL T NIL) -8 NIL NIL) (-49 100337 100526 100623 "ANON" 100743 T ANON (NIL) -8 NIL NIL) (-48 94471 98878 99331 "AN" 99902 T AN (NIL) -8 NIL NIL) (-47 90852 92206 92257 "AMR" 93005 NIL AMR (NIL T T) -9 NIL 93605) (-46 89964 90185 90548 "AMR-" 90553 NIL AMR- (NIL T T T) -8 NIL NIL) (-45 74514 89881 89942 "ALIST" 89947 NIL ALIST (NIL T T) -8 NIL NIL) (-44 71351 74108 74277 "ALGSC" 74432 NIL ALGSC (NIL T NIL NIL NIL) -8 NIL NIL) (-43 67907 68461 69068 "ALGPKG" 70791 NIL ALGPKG (NIL T T) -7 NIL NIL) (-42 67184 67285 67469 "ALGMFACT" 67793 NIL ALGMFACT (NIL T T T) -7 NIL NIL) (-41 62923 63608 64263 "ALGMANIP" 66707 NIL ALGMANIP (NIL T T) -7 NIL NIL) (-40 54329 62549 62699 "ALGFF" 62856 NIL ALGFF (NIL T T T NIL) -8 NIL NIL) (-39 53525 53656 53835 "ALGFACT" 54187 NIL ALGFACT (NIL T) -7 NIL NIL) (-38 52555 53121 53159 "ALGEBRA" 53219 NIL ALGEBRA (NIL T) -9 NIL 53278) (-37 52273 52332 52464 "ALGEBRA-" 52469 NIL ALGEBRA- (NIL T T) -8 NIL NIL) (-36 34533 50276 50328 "ALAGG" 50464 NIL ALAGG (NIL T T) -9 NIL 50625) (-35 34069 34182 34208 "AHYP" 34409 T AHYP (NIL) -9 NIL NIL) (-34 33000 33248 33274 "AGG" 33773 T AGG (NIL) -9 NIL 34052) (-33 32434 32596 32810 "AGG-" 32815 NIL AGG- (NIL T) -8 NIL NIL) (-32 30111 30533 30951 "AF" 32076 NIL AF (NIL T T) -7 NIL NIL) (-31 29618 29836 29926 "ADDAST" 30039 T ADDAST (NIL) -8 NIL NIL) (-30 28887 29145 29301 "ACPLOT" 29480 T ACPLOT (NIL) -8 NIL NIL) (-29 18358 26279 26330 "ACFS" 27041 NIL ACFS (NIL T) -9 NIL 27280) (-28 16372 16862 17637 "ACFS-" 17642 NIL ACFS- (NIL T T) -8 NIL NIL) (-27 12697 14591 14617 "ACF" 15496 T ACF (NIL) -9 NIL 15908) (-26 11401 11735 12228 "ACF-" 12233 NIL ACF- (NIL T) -8 NIL NIL) (-25 10999 11168 11194 "ABELSG" 11286 T ABELSG (NIL) -9 NIL 11351) (-24 10866 10891 10957 "ABELSG-" 10962 NIL ABELSG- (NIL T) -8 NIL NIL) (-23 10235 10496 10522 "ABELMON" 10692 T ABELMON (NIL) -9 NIL 10804) (-22 9899 9983 10121 "ABELMON-" 10126 NIL ABELMON- (NIL T) -8 NIL NIL) (-21 9233 9579 9605 "ABELGRP" 9730 T ABELGRP (NIL) -9 NIL 9812) (-20 8696 8825 9041 "ABELGRP-" 9046 NIL ABELGRP- (NIL T) -8 NIL NIL) (-19 4333 8035 8074 "A1AGG" 8079 NIL A1AGG (NIL T) -9 NIL 8119) (-18 30 1251 2813 "A1AGG-" 2818 NIL A1AGG- (NIL T T) -8 NIL NIL)) \ No newline at end of file
diff --git a/src/share/algebra/operation.daase b/src/share/algebra/operation.daase
index 97b2552f..18dc8208 100644
--- a/src/share/algebra/operation.daase
+++ b/src/share/algebra/operation.daase
@@ -1,627 +1,794 @@
-(737354 . 3431018169)
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-947 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *2 (-823)) (-4 *5 (-1032 *3 *4 *2)))))
+(737338 . 3431030412)
(((*1 *2 *2 *3)
- (-12 (-4 *4 (-1067)) (-4 *2 (-871 *4)) (-5 *1 (-668 *4 *2 *5 *3))
- (-4 *5 (-366 *2)) (-4 *3 (-13 (-366 *4) (-10 -7 (-6 -4337)))))))
-(((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-621 (-1226 *4))) (-5 *1 (-359 *3 *4))
- (-4 *3 (-360 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-4 *3 (-541))
- (-5 *2 (-621 (-1226 *3))))))
+ (-12 (-5 *3 (-621 (-241 *4 *5))) (-5 *2 (-241 *4 *5))
+ (-14 *4 (-621 (-1142))) (-4 *5 (-444)) (-5 *1 (-609 *4 *5)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-1249 *3 *4)) (-4 *1 (-367 *3 *4)) (-4 *3 (-823))
+ (-4 *4 (-170))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-379 *2)) (-4 *2 (-1066))))
+ ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-795 *2)) (-4 *2 (-823))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-795 *2)) (-4 *2 (-823))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-795 *3)) (-4 *1 (-1242 *3 *4)) (-4 *3 (-823))
+ (-4 *4 (-1018))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))))
+(((*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1228))))
+ ((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1228)))))
(((*1 *2 *3)
- (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-549))) (-5 *1 (-1016)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1202 *5)) (-4 *5 (-356))
- (-5 *2 (-2 (|:| -4041 (-411 *3)) (|:| |special| (-411 *3))))
- (-5 *1 (-704 *5 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *7)) (-4 *7 (-823))
- (-4 *8 (-920 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769))
+ (-12 (-4 *4 (-1018)) (-5 *2 (-112)) (-5 *1 (-436 *4 *3))
+ (-4 *3 (-1201 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-5 *2 (-112)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3))))
+ ((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-621 (-621 *7)))
+ (-5 *1 (-440 *4 *5 *6 *7)) (-5 *3 (-621 *7))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769))
+ (-4 *7 (-823)) (-4 *8 (-920 *5 *6 *7)) (-5 *2 (-621 (-621 *8)))
+ (-5 *1 (-440 *5 *6 *7 *8)) (-5 *3 (-621 *8))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-621 (-621 *7)))
+ (-5 *1 (-440 *4 *5 *6 *7)) (-5 *3 (-621 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769))
+ (-4 *7 (-823)) (-4 *8 (-920 *5 *6 *7)) (-5 *2 (-621 (-621 *8)))
+ (-5 *1 (-440 *5 *6 *7 *8)) (-5 *3 (-621 *8)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *1) (-5 *1 (-1051))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
+(((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *4 (-219))
(-5 *2
- (-2 (|:| |particular| (-3 (-1226 (-400 *8)) "failed"))
- (|:| -1949 (-621 (-1226 (-400 *8))))))
- (-5 *1 (-645 *5 *6 *7 *8)))))
-(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-366 *2)) (-4 *2 (-1180))
- (-4 *2 (-823))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4338))
- (-4 *1 (-366 *3)) (-4 *3 (-1180)))))
-(((*1 *1) (-5 *1 (-139))))
+ (-2 (|:| |brans| (-621 (-621 (-914 *4))))
+ (|:| |xValues| (-1060 *4)) (|:| |yValues| (-1060 *4))))
+ (-5 *1 (-151)) (-5 *3 (-621 (-621 (-914 *4)))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-300)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4))
- (-5 *2
- (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3)))
- (-5 *1 (-1091 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 *4))
- (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-356)) (-5 *1 (-996 *3 *2)) (-4 *2 (-632 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-356)) (-5 *2 (-2 (|:| -2652 *3) (|:| -2721 (-621 *5))))
- (-5 *1 (-996 *5 *3)) (-5 *4 (-621 *5)) (-4 *3 (-632 *5)))))
-(((*1 *2 *3 *3 *1)
- (|partial| -12 (-5 *3 (-1143)) (-5 *2 (-1071)) (-5 *1 (-284)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018))
- (-14 *4 (-621 (-1143)))))
+ (-12 (-5 *3 (-665 (-400 (-923 (-549))))) (-5 *2 (-621 (-309 (-549))))
+ (-5 *1 (-1002)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-697)) (-5 *2 (-892))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-699)) (-5 *2 (-747)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-356)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4))
+ (-5 *2 (-747)) (-5 *1 (-512 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3))
+ (-4 *5 (-366 *3)) (-4 *3 (-541)) (-5 *2 (-747))))
((*1 *2 *3)
- (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1180))))
+ (-12 (-4 *4 (-541)) (-4 *4 (-170)) (-4 *5 (-366 *4))
+ (-4 *6 (-366 *4)) (-5 *2 (-747)) (-5 *1 (-664 *4 *5 *6 *3))
+ (-4 *3 (-663 *4 *5 *6))))
((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823)))
- (-14 *4 (-621 (-1143)))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-648 *3)) (-4 *3 (-823))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-653 *3)) (-4 *3 (-823))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-864 *3)) (-4 *3 (-823)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 (-621 *7) *7 (-1139 *7))) (-5 *5 (-1 (-411 *7) *7))
- (-4 *7 (-1202 *6)) (-4 *6 (-13 (-356) (-145) (-1009 (-400 (-549)))))
- (-5 *2 (-621 (-2 (|:| |frac| (-400 *7)) (|:| -2652 *3))))
- (-5 *1 (-785 *6 *7 *3 *8)) (-4 *3 (-632 *7))
- (-4 *8 (-632 (-400 *7)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-411 *6) *6)) (-4 *6 (-1202 *5))
- (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
+ (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-4 *5 (-541))
+ (-5 *2 (-747)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-621 (-1142))) (-4 *5 (-541))
+ (-5 *2 (-621 (-621 (-287 (-400 (-923 *5)))))) (-5 *1 (-746 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-541))
+ (-5 *2 (-621 (-621 (-287 (-400 (-923 *4)))))) (-5 *1 (-746 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-665 *7))
+ (-5 *5
+ (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -2619 (-621 *6)))
+ *7 *6))
+ (-4 *6 (-356)) (-4 *7 (-632 *6))
(-5 *2
- (-621 (-2 (|:| |frac| (-400 *6)) (|:| -2652 (-630 *6 (-400 *6))))))
- (-5 *1 (-788 *5 *6)) (-5 *3 (-630 *6 (-400 *6))))))
+ (-2 (|:| |particular| (-3 (-1225 *6) "failed"))
+ (|:| -2619 (-621 (-1225 *6)))))
+ (-5 *1 (-789 *6 *7)) (-5 *4 (-1225 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-360 *2)) (-4 *2 (-170)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2))
- (-4 *4 (-13 (-823) (-541))))))
-(((*1 *1 *1) (-12 (-5 *1 (-885 *2)) (-4 *2 (-300)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-983)) (-5 *2 (-834)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-665 (-400 (-923 (-549)))))
+ (-5 *2
+ (-621
+ (-2 (|:| |radval| (-309 (-549))) (|:| |radmult| (-549))
+ (|:| |radvect| (-621 (-665 (-309 (-549))))))))
+ (-5 *1 (-1002)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-892)) (-5 *3 (-621 (-256))) (-5 *1 (-254))))
+ ((*1 *1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-256)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-429)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1124)) (-4 *1 (-357 *3 *4)) (-4 *3 (-1066))
+ (-4 *4 (-1066)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-300)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3))
+ (-5 *1 (-1090 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1164) (-973)))
+ (-5 *1 (-174 *3)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1172 *2 *3 *4 *5)) (-4 *2 (-541)) (-4 *3 (-769))
+ (-4 *4 (-823)) (-4 *5 (-1032 *2 *3 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
+ (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *3 *3 *4 *5)
(-12 (-5 *3 (-219)) (-5 *4 (-549))
- (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) (-5 *2 (-1006))
- (-5 *1 (-725)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823))))
- ((*1 *2 *2 *1)
- (-12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *3 (-300)) (-4 *3 (-170)) (-4 *4 (-366 *3))
- (-4 *5 (-366 *3)) (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3)))
- (-5 *1 (-664 *3 *4 *5 *6)) (-4 *6 (-663 *3 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3))) (-5 *1 (-676 *3))
- (-4 *3 (-300)))))
+ (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421))))
+ (-5 *2 (-1006)) (-5 *1 (-723)))))
+(((*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
+ (-4 *2 (-423 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1105))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8))
- (-5 *4 (-665 (-1139 *8))) (-4 *5 (-1018)) (-4 *8 (-1018))
- (-4 *6 (-1202 *5)) (-5 *2 (-665 *6)) (-5 *1 (-492 *5 *6 *7 *8))
- (-4 *7 (-1202 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-621 (-621 (-549)))) (-5 *1 (-942))
- (-5 *3 (-621 (-549))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1143))
- (-4 *4 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-419 *4 *2)) (-4 *2 (-13 (-1165) (-29 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1143)) (-4 *5 (-145))
- (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549))))
- (-5 *2 (-309 *5)) (-5 *1 (-570 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1143))
- (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
- (-5 *1 (-780 *4 *2)) (-4 *2 (-13 (-29 *4) (-1165) (-930)))))
- ((*1 *1 *1 *1 *1) (-5 *1 (-834))) ((*1 *1 *1 *1) (-5 *1 (-834)))
- ((*1 *1 *1) (-5 *1 (-834)))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1123 *3)) (-5 *1 (-1127 *3)) (-4 *3 (-1018)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-769))
- (-4 *5 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $))))) (-4 *6 (-541))
- (-5 *2 (-2 (|:| -2861 (-923 *6)) (|:| -3019 (-923 *6))))
- (-5 *1 (-709 *4 *5 *6 *3)) (-4 *3 (-920 (-400 (-923 *6)) *4 *5)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-665 *4)) (-5 *3 (-892)) (-4 *4 (-1018))
- (-5 *1 (-999 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-621 (-665 *4))) (-5 *3 (-892)) (-4 *4 (-1018))
- (-5 *1 (-999 *4)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1202 *2)) (-4 *2 (-1018)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1202 *5))
- (-4 *5 (-13 (-27) (-423 *4)))
- (-4 *4 (-13 (-823) (-541) (-1009 (-549))))
- (-4 *7 (-1202 (-400 *6))) (-5 *1 (-537 *4 *5 *6 *7 *2))
- (-4 *2 (-335 *5 *6 *7)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1180)) (-5 *1 (-1099 *4 *2))
- (-4 *2 (-13 (-584 (-549) *4) (-10 -7 (-6 -4337) (-6 -4338))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-823)) (-4 *3 (-1180)) (-5 *1 (-1099 *3 *2))
- (-4 *2 (-13 (-584 (-549) *3) (-10 -7 (-6 -4337) (-6 -4338)))))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112))
- (-5 *1 (-32 *4 *5)) (-4 *5 (-423 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112))
- (-5 *1 (-156 *4 *5)) (-4 *5 (-423 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112))
- (-5 *1 (-269 *4 *5)) (-4 *5 (-13 (-423 *4) (-973)))))
+ (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1142))
+ (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-287 (-309 *5))))
+ (-5 *1 (-1095 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-294 *4)) (-4 *4 (-295))))
- ((*1 *2 *3) (-12 (-4 *1 (-295)) (-5 *3 (-114)) (-5 *2 (-112))))
+ (-12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-13 (-300) (-823) (-145)))
+ (-5 *2 (-621 (-287 (-309 *4)))) (-5 *1 (-1095 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-287 (-400 (-923 *5)))) (-5 *4 (-1142))
+ (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-287 (-309 *5))))
+ (-5 *1 (-1095 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *5 (-823)) (-5 *2 (-112))
- (-5 *1 (-422 *4 *5)) (-4 *4 (-423 *5))))
+ (-12 (-5 *3 (-287 (-400 (-923 *4))))
+ (-4 *4 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-287 (-309 *4))))
+ (-5 *1 (-1095 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-400 (-923 *5)))) (-5 *4 (-621 (-1142)))
+ (-4 *5 (-13 (-300) (-823) (-145)))
+ (-5 *2 (-621 (-621 (-287 (-309 *5))))) (-5 *1 (-1095 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112))
- (-5 *1 (-424 *4 *5)) (-4 *5 (-423 *4))))
+ (-12 (-5 *3 (-621 (-400 (-923 *4))))
+ (-4 *4 (-13 (-300) (-823) (-145)))
+ (-5 *2 (-621 (-621 (-287 (-309 *4))))) (-5 *1 (-1095 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-287 (-400 (-923 *5))))) (-5 *4 (-621 (-1142)))
+ (-4 *5 (-13 (-300) (-823) (-145)))
+ (-5 *2 (-621 (-621 (-287 (-309 *5))))) (-5 *1 (-1095 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112))
- (-5 *1 (-608 *4 *5)) (-4 *5 (-13 (-423 *4) (-973) (-1165))))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-621 (-273))) (-5 *1 (-273))))
- ((*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-1148)))))
-(((*1 *2 *3 *1 *4 *4 *4 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-5 *2 (-621 (-998 *5 *6 *7 *3))) (-5 *1 (-998 *5 *6 *7 *3))
- (-4 *3 (-1032 *5 *6 *7))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-621 *6)) (-4 *1 (-1038 *3 *4 *5 *6)) (-4 *3 (-444))
- (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5))))
- ((*1 *1 *2 *1)
- (-12 (-4 *1 (-1038 *3 *4 *5 *2)) (-4 *3 (-444)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5))))
- ((*1 *2 *3 *1 *4 *4 *4 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-5 *2 (-621 (-1113 *5 *6 *7 *3))) (-5 *1 (-1113 *5 *6 *7 *3))
- (-4 *3 (-1032 *5 *6 *7)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1074 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4 *3 *4 *4 *4)
- (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *2 (-1006))
- (-5 *1 (-733)))))
+ (-12 (-5 *3 (-621 (-287 (-400 (-923 *4)))))
+ (-4 *4 (-13 (-300) (-823) (-145)))
+ (-5 *2 (-621 (-621 (-287 (-309 *4))))) (-5 *1 (-1095 *4)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-947 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *2 (-823)) (-4 *5 (-1032 *3 *4 *2)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1130 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-1125))) (-5 *2 (-1125)) (-5 *1 (-186))))
- ((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-400 *4)) (-4 *4 (-1202 *3)) (-4 *3 (-13 (-356) (-145)))
- (-5 *1 (-392 *3 *4)))))
+ (-12 (-5 *3 (-1122 (-1122 *4))) (-5 *2 (-1122 *4)) (-5 *1 (-1126 *4))
+ (-4 *4 (-38 (-400 (-549)))) (-4 *4 (-1018)))))
+(((*1 *2 *1) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1164)))))
+ ((*1 *1 *1 *1) (-4 *1 (-769))))
+(((*1 *2 *3 *3 *3)
+ (|partial| -12
+ (-4 *4 (-13 (-145) (-27) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-4 *5 (-1201 *4)) (-5 *2 (-1138 (-400 *5))) (-5 *1 (-595 *4 *5))
+ (-5 *3 (-400 *5))))
+ ((*1 *2 *3 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 (-411 *6) *6)) (-4 *6 (-1201 *5))
+ (-4 *5 (-13 (-145) (-27) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-5 *2 (-1138 (-400 *6))) (-5 *1 (-595 *5 *6)) (-5 *3 (-400 *6)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
- ((*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
+ (-12 (-4 *4 (-1183)) (-4 *5 (-1201 *4))
+ (-5 *2 (-2 (|:| -1569 (-400 *5)) (|:| |poly| *3)))
+ (-5 *1 (-146 *4 *5 *3)) (-4 *3 (-1201 (-400 *5))))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-621 *7)) (-5 *3 (-112)) (-4 *7 (-1032 *4 *5 *6))
+ (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-5 *1 (-948 *4 *5 *6 *7)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-541))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -4114 *4)))
+ (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1138 *4)) (-4 *4 (-342))
+ (-4 *2
+ (-13 (-395)
+ (-10 -7 (-15 -3845 (*2 *4)) (-15 -3309 ((-892) *2))
+ (-15 -2619 ((-1225 *2) (-892))) (-15 -3495 (*2 *2)))))
+ (-5 *1 (-349 *2 *4)))))
+(((*1 *1 *1) (-5 *1 (-1030))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1225 *5)) (-4 *5 (-768)) (-5 *2 (-112))
+ (-5 *1 (-818 *4 *5)) (-14 *4 (-747)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123))))
-(((*1 *2 *3 *4 *5 *4 *4 *4)
- (-12 (-4 *6 (-823)) (-5 *3 (-621 *6)) (-5 *5 (-621 *3))
- (-5 *2
- (-2 (|:| |f1| *3) (|:| |f2| (-621 *5)) (|:| |f3| *5)
- (|:| |f4| (-621 *5))))
- (-5 *1 (-1151 *6)) (-5 *4 (-621 *5)))))
+ (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-4 *6 (-1032 *3 *4 *5)) (-5 *1 (-602 *3 *4 *5 *6 *7 *2))
+ (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *2 (-1075 *3 *4 *5 *6)))))
(((*1 *2 *3)
- (-12
- (-5 *2
- (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))))
- (-5 *1 (-991 *3)) (-4 *3 (-1202 (-549)))))
- ((*1 *2 *3 *4)
- (-12
+ (-12 (-5 *3 (-892)) (-5 *2 (-1138 *4)) (-5 *1 (-350 *4))
+ (-4 *4 (-342)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-4 *3 (-1066))
+ (-4 *4 (-1066)))))
+(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-798)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769))
+ (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1201 *5)) (-4 *5 (-356))
+ (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3)))
+ (-5 *1 (-559 *5 *3)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-427))
(-5 *2
- (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))))
- (-5 *1 (-991 *3)) (-4 *3 (-1202 (-549)))
- (-5 *4 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))))
- ((*1 *2 *3 *4)
- (-12
+ (-621
+ (-3 (|:| -2479 (-1142))
+ (|:| -1961 (-621 (-3 (|:| S (-1142)) (|:| P (-923 (-549)))))))))
+ (-5 *1 (-1146)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-747)) (-5 *6 (-112)) (-4 *7 (-444)) (-4 *8 (-769))
+ (-4 *9 (-823)) (-4 *3 (-1032 *7 *8 *9))
(-5 *2
- (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))))
- (-5 *1 (-991 *3)) (-4 *3 (-1202 (-549))) (-5 *4 (-400 (-549)))))
+ (-2 (|:| |done| (-621 *4))
+ (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4))))))
+ (-5 *1 (-1036 *7 *8 *9 *3 *4)) (-4 *4 (-1038 *7 *8 *9 *3))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-400 (-549)))
- (-5 *2 (-621 (-2 (|:| -3838 *5) (|:| -3848 *5)))) (-5 *1 (-991 *3))
- (-4 *3 (-1202 (-549))) (-5 *4 (-2 (|:| -3838 *5) (|:| -3848 *5)))))
- ((*1 *2 *3)
- (-12
+ (-12 (-5 *5 (-747)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
+ (-4 *3 (-1032 *6 *7 *8))
(-5 *2
- (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))))
- (-5 *1 (-992 *3)) (-4 *3 (-1202 (-400 (-549))))))
+ (-2 (|:| |done| (-621 *4))
+ (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4))))))
+ (-5 *1 (-1036 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3))))
((*1 *2 *3 *4)
- (-12
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
(-5 *2
- (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))))
- (-5 *1 (-992 *3)) (-4 *3 (-1202 (-400 (-549))))
- (-5 *4 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-400 (-549)))
- (-5 *2 (-621 (-2 (|:| -3838 *4) (|:| -3848 *4)))) (-5 *1 (-992 *3))
- (-4 *3 (-1202 *4))))
+ (-2 (|:| |done| (-621 *4))
+ (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4))))))
+ (-5 *1 (-1036 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-747)) (-5 *6 (-112)) (-4 *7 (-444)) (-4 *8 (-769))
+ (-4 *9 (-823)) (-4 *3 (-1032 *7 *8 *9))
+ (-5 *2
+ (-2 (|:| |done| (-621 *4))
+ (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4))))))
+ (-5 *1 (-1111 *7 *8 *9 *3 *4)) (-4 *4 (-1075 *7 *8 *9 *3))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-400 (-549)))
- (-5 *2 (-621 (-2 (|:| -3838 *5) (|:| -3848 *5)))) (-5 *1 (-992 *3))
- (-4 *3 (-1202 *5)) (-5 *4 (-2 (|:| -3838 *5) (|:| -3848 *5))))))
-(((*1 *1 *1) (-12 (-4 *1 (-367 *2 *3)) (-4 *2 (-823)) (-4 *3 (-170))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-605 *2 *3 *4)) (-4 *2 (-823))
- (-4 *3 (-13 (-170) (-694 (-400 (-549))))) (-14 *4 (-892))))
- ((*1 *1 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823))))
- ((*1 *1 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-738))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-665 *3)) (-4 *3 (-300)) (-5 *1 (-676 *3)))))
-(((*1 *2 *3 *3 *4)
+ (-12 (-5 *5 (-747)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
+ (-4 *3 (-1032 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-621 *4))
+ (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4))))))
+ (-5 *1 (-1111 *6 *7 *8 *3 *4)) (-4 *4 (-1075 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
(-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
(-4 *3 (-1032 *5 *6 *7))
- (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4))))
- (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-4 *3 (-1067))
- (-4 *4 (-1067)))))
-(((*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-677))))
- ((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-677)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1079)) (-4 *3 (-823)) (-5 *2 (-621 *1))
- (-4 *1 (-423 *3))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3))
- (-4 *3 (-1067))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *2 (-621 *1)) (-4 *1 (-920 *3 *4 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018))
- (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-621 *3))
- (-5 *1 (-921 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-356)
- (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $))
- (-15 -1403 (*7 $))))))))
-(((*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6)
- (-12 (-5 *4 (-549)) (-5 *5 (-665 (-219)))
- (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422)))) (-5 *3 (-219))
- (-5 *2 (-1006)) (-5 *1 (-725)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-914 (-219)) (-914 (-219)))) (-5 *1 (-256))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1226 *1)) (-4 *1 (-322 *4)) (-4 *4 (-356))
- (-5 *2 (-665 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-1226 *3))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170))
- (-5 *2 (-665 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170))
- (-5 *2 (-1226 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-1226 *1)) (-4 *1 (-363 *4 *5)) (-4 *4 (-170))
- (-4 *5 (-1202 *4)) (-5 *2 (-665 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1226 *1)) (-4 *1 (-363 *4 *5)) (-4 *4 (-170))
- (-4 *5 (-1202 *4)) (-5 *2 (-1226 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1226 *1)) (-4 *1 (-402 *4 *5)) (-4 *4 (-170))
- (-4 *5 (-1202 *4)) (-5 *2 (-665 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-402 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1202 *3))
- (-5 *2 (-1226 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1226 *1)) (-4 *1 (-410 *4)) (-4 *4 (-170))
- (-5 *2 (-665 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-1226 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 (-665 *5))) (-5 *3 (-665 *5)) (-4 *5 (-356))
- (-5 *2 (-1226 *5)) (-5 *1 (-1053 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-250)))))
+ (-5 *2
+ (-2 (|:| |done| (-621 *4))
+ (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4))))))
+ (-5 *1 (-1111 *5 *6 *7 *3 *4)) (-4 *4 (-1075 *5 *6 *7 *3)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-796)) (-14 *5 (-1143)) (-5 *2 (-621 (-1199 *5 *4)))
- (-5 *1 (-1081 *4 *5)) (-5 *3 (-1199 *5 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-400 (-549))) (-5 *4 (-549)) (-5 *2 (-52))
- (-5 *1 (-976)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
- (-4 *3 (-360 *4))))
- ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-665 (-549))) (-5 *1 (-1076)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-914 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-621 (-914 *3))) (-4 *3 (-1018)) (-4 *1 (-1101 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-621 *3))) (-4 *1 (-1101 *3)) (-4 *3 (-1018))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-914 *3))) (-4 *1 (-1101 *3)) (-4 *3 (-1018)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-300))
- (-5 *2 (-400 (-411 (-923 *4)))) (-5 *1 (-1013 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-356) (-1009 (-400 *2)))) (-5 *2 (-549))
- (-5 *1 (-115 *4 *3)) (-4 *3 (-1202 *4)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1139 *9)) (-5 *4 (-621 *7)) (-4 *7 (-823))
- (-4 *9 (-920 *8 *6 *7)) (-4 *6 (-769)) (-4 *8 (-300))
- (-5 *2 (-621 (-747))) (-5 *1 (-719 *6 *7 *8 *9)) (-5 *5 (-747)))))
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *1 *2) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1179)))))
(((*1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-892)) (-5 *1 (-1068 *3 *4)) (-14 *3 *2)
- (-14 *4 *2))))
-(((*1 *1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
-(((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7))
- (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-5 *2 (-621 (-998 *5 *6 *7 *8))) (-5 *1 (-998 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7))
- (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-5 *2 (-621 (-1113 *5 *6 *7 *8))) (-5 *1 (-1113 *5 *6 *7 *8)))))
+ (-12 (-5 *2 (-549)) (-5 *1 (-309 *3)) (-4 *3 (-541)) (-4 *3 (-823)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-444)) (-4 *3 (-823)) (-4 *3 (-1009 (-549)))
+ (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-423 *3))
+ (-4 *2
+ (-13 (-356) (-295)
+ (-10 -8 (-15 -1392 ((-1091 *3 (-592 $)) $))
+ (-15 -1404 ((-1091 *3 (-592 $)) $))
+ (-15 -3845 ($ (-1091 *3 (-592 $))))))))))
+(((*1 *2 *1) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-1138 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-372)) (-5 *2 (-219)) (-5 *1 (-298)))))
+(((*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))))
+(((*1 *1 *2 *2 *3 *1)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-1070)) (-5 *1 (-284)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-400 (-549))) (-5 *1 (-576 *3)) (-4 *3 (-38 *2))
+ (-4 *3 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2))
+ (-4 *4 (-13 (-823) (-541))))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| -3726 (-758 *3)) (|:| |coef1| (-758 *3))
+ (|:| |coef2| (-758 *3))))
+ (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *2 (-2 (|:| -3726 *1) (|:| |coef1| *1) (|:| |coef2| *1)))
+ (-4 *1 (-1032 *3 *4 *5)))))
+(((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1016)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1066))
+ (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-169))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3)) (-4 *3 (-945)))))
(((*1 *1 *2)
(-12 (-5 *2 (-747)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018))
- (-14 *4 (-621 (-1143)))))
+ (-14 *4 (-621 (-1142)))))
((*1 *1 *2)
(-12 (-5 *2 (-747)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823)))
- (-14 *4 (-621 (-1143)))))
+ (-14 *4 (-621 (-1142)))))
((*1 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-361)) (-4 *2 (-356))))
((*1 *2 *1)
(|partial| -12 (-4 *1 (-328 *3 *4 *5 *2)) (-4 *3 (-356))
- (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4)))
+ (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4)))
(-4 *2 (-335 *3 *4 *5))))
((*1 *1 *2)
(-12 (-5 *2 (-747)) (-5 *1 (-383 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
(-4 *5 (-170))))
- ((*1 *1) (-12 (-4 *2 (-170)) (-4 *1 (-701 *2 *3)) (-4 *3 (-1202 *2)))))
+ ((*1 *1) (-12 (-4 *2 (-170)) (-4 *1 (-701 *2 *3)) (-4 *3 (-1201 *2)))))
+(((*1 *2 *3 *3 *1)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-3 *3 (-621 *1)))
+ (-4 *1 (-1038 *4 *5 *6 *3)))))
+(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823))))
+ ((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))))
(((*1 *2 *1)
(-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
(-4 *5 (-823)) (-5 *2 (-747)))))
-(((*1 *2 *3) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-546)) (-5 *3 (-549)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-309 *4)) (-4 *4 (-13 (-804) (-823) (-1018)))
- (-5 *2 (-1125)) (-5 *1 (-802 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-309 *5)) (-5 *4 (-112))
- (-4 *5 (-13 (-804) (-823) (-1018))) (-5 *2 (-1125))
- (-5 *1 (-802 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-798)) (-5 *4 (-309 *5))
- (-4 *5 (-13 (-804) (-823) (-1018))) (-5 *2 (-1231))
- (-5 *1 (-802 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-798)) (-5 *4 (-309 *6)) (-5 *5 (-112))
- (-4 *6 (-13 (-804) (-823) (-1018))) (-5 *2 (-1231))
- (-5 *1 (-802 *6))))
- ((*1 *2 *1) (-12 (-4 *1 (-804)) (-5 *2 (-1125))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-804)) (-5 *3 (-112)) (-5 *2 (-1125))))
- ((*1 *2 *3 *1) (-12 (-4 *1 (-804)) (-5 *3 (-798)) (-5 *2 (-1231))))
- ((*1 *2 *3 *1 *4)
- (-12 (-4 *1 (-804)) (-5 *3 (-798)) (-5 *4 (-112)) (-5 *2 (-1231)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1143)) (-4 *5 (-356)) (-5 *2 (-621 (-1174 *5)))
- (-5 *1 (-1234 *5)) (-5 *4 (-1174 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3))
- (-4 *3 (-13 (-356) (-1165) (-973))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *2 (-549)) (-5 *1 (-554 *3)) (-4 *3 (-1009 *2)))))
-(((*1 *2)
- (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-410 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1))
- (-4 *1 (-1032 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-324 *3)) (-4 *3 (-823)))))
+ (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2))
+ (|has| *2 (-6 (-4338 "*"))) (-4 *2 (-1018))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-366 *2)) (-4 *5 (-366 *2)) (-4 *2 (-170))
+ (-5 *1 (-664 *2 *4 *5 *3)) (-4 *3 (-663 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1089 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2))
+ (-4 *5 (-232 *3 *2)) (|has| *2 (-6 (-4338 "*"))) (-4 *2 (-1018)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1124)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1230))
+ (-5 *1 (-1039 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1124)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1230))
+ (-5 *1 (-1074 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1143)) (-5 *2 (-1 (-1139 (-923 *4)) (-923 *4)))
- (-5 *1 (-1234 *4)) (-4 *4 (-356)))))
-(((*1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-479)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1209 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1186 *3)))))
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
+ (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
+ (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
+ (|:| |abserr| (-219)) (|:| |relerr| (-219))))
+ (-5 *2
+ (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372))
+ (|:| |expense| (-372)) (|:| |accuracy| (-372))
+ (|:| |intermediateResults| (-372))))
+ (-5 *1 (-779)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-549)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-747)) (-4 *5 (-170))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747))
+ (-4 *4 (-170))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2))
+ (-4 *4 (-366 *2))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-1018)) (-4 *1 (-663 *3 *2 *4)) (-4 *2 (-366 *3))
+ (-4 *4 (-366 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1108 *2 *3)) (-14 *2 (-747)) (-4 *3 (-1018)))))
+(((*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1124)) (-5 *1 (-762)))))
+(((*1 *2)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-2 (|:| -2121 *4) (|:| -3701 (-549)))))
- (-4 *4 (-1202 (-549))) (-5 *2 (-714 (-747))) (-5 *1 (-434 *4))))
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *6 *5))
+ (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142))))
+ (-4 *6 (-769)) (-5 *2 (-112)) (-5 *1 (-895 *4 *5 *6 *7))))
((*1 *2 *3)
- (-12 (-5 *3 (-411 *5)) (-4 *5 (-1202 *4)) (-4 *4 (-1018))
- (-5 *2 (-714 (-747))) (-5 *1 (-436 *4 *5)))))
+ (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-13 (-300) (-145)))
+ (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *2 (-112))
+ (-5 *1 (-895 *4 *5 *6 *7)) (-4 *7 (-920 *4 *6 *5)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1018)) (-5 *1 (-1197 *3 *2)) (-4 *2 (-1201 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *1 *2 *2 *2 *2 *2 *2 *2 *2)
+ (-12 (-4 *1 (-773 *2)) (-4 *2 (-170))))
+ ((*1 *1 *2 *2)
+ (-12 (-5 *2 (-970 *3)) (-4 *3 (-170)) (-5 *1 (-775 *3)))))
+(((*1 *2 *1)
+ (-12 (-14 *3 (-621 (-1142))) (-4 *4 (-170))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -3494 *5) (|:| -1714 *2))
+ (-2 (|:| -3494 *5) (|:| -1714 *2))))
+ (-4 *2 (-232 (-3774 *3) (-747))) (-5 *1 (-453 *3 *4 *5 *2 *6 *7))
+ (-4 *5 (-823)) (-4 *7 (-920 *4 *2 (-836 *3))))))
+(((*1 *1) (-5 *1 (-430))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
+ (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1192 *3)) (-4 *3 (-1179)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))))
- (-5 *2 (-621 (-219))) (-5 *1 (-298)))))
+ (-12 (-5 *3 (-621 *4)) (-4 *4 (-1066)) (-5 *2 (-1230))
+ (-5 *1 (-1180 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-621 *4)) (-4 *4 (-1066)) (-5 *2 (-1230))
+ (-5 *1 (-1180 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
+ (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *2 (-823))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-621 (-497))) (-5 *2 (-497)) (-5 *1 (-475)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1145 (-400 (-549)))) (-5 *2 (-400 (-549)))
- (-5 *1 (-184)))))
-(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))))
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
(((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1218 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1143))
- (-14 *4 *2))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-13 (-356) (-145) (-1009 (-549))))
- (-4 *5 (-1202 *4))
- (-5 *2 (-2 (|:| -3440 (-400 *5)) (|:| |coeff| (-400 *5))))
- (-5 *1 (-553 *4 *5)) (-5 *3 (-400 *5)))))
-(((*1 *2) (-12 (-5 *2 (-1114 (-1125))) (-5 *1 (-384)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-2 (|:| -4161 *4) (|:| -1637 (-549)))))
- (-4 *4 (-1067)) (-5 *2 (-1 *4)) (-5 *1 (-988 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-823)) (-5 *2 (-1152 (-621 *4))) (-5 *1 (-1151 *4))
- (-5 *3 (-621 *4)))))
+ (-12
+ (-5 *2
+ (-958 (-400 (-549)) (-836 *3) (-234 *4 (-747))
+ (-241 *3 (-400 (-549)))))
+ (-14 *3 (-621 (-1142))) (-14 *4 (-747)) (-5 *1 (-957 *3 *4)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834))))
((*1 *2 *1)
(-12
(-5 *2
- (-2 (|:| -2895 (-621 (-834))) (|:| -2861 (-621 (-834)))
- (|:| |presup| (-621 (-834))) (|:| -3395 (-621 (-834)))
+ (-2 (|:| -2982 (-621 (-834))) (|:| -4280 (-621 (-834)))
+ (|:| |presup| (-621 (-834))) (|:| -2125 (-621 (-834)))
(|:| |args| (-621 (-834)))))
- (-5 *1 (-1143)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2))
- (-4 *4 (-366 *2)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-621 *3)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-410 *4)))))
-(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-549)) (-5 *3 (-892)) (-5 *1 (-675))))
- ((*1 *2 *2 *2 *3 *4)
- (-12 (-5 *2 (-665 *5)) (-5 *3 (-98 *5)) (-5 *4 (-1 *5 *5))
- (-4 *5 (-356)) (-5 *1 (-949 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-801)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-356) (-821)))
- (-5 *2 (-2 (|:| |start| *3) (|:| -4024 (-411 *3))))
- (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4))))))
-(((*1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-736)))))
+ (-5 *1 (-1142)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823))
+ (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-920 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1018)) (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1)))
+ (-4 *1 (-1201 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-541)) (-4 *3 (-170)) (-4 *4 (-366 *3))
+ (-4 *5 (-366 *3)) (-5 *1 (-664 *3 *4 *5 *2))
+ (-4 *2 (-663 *3 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170))
- (-5 *2 (-665 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-665 *4)) (-5 *1 (-409 *3 *4))
- (-4 *3 (-410 *4))))
- ((*1 *2) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-665 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-541))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))))
+ (-12 (-4 *4 (-823)) (-5 *2 (-621 (-621 *4))) (-5 *1 (-1150 *4))
+ (-5 *3 (-621 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-1124)) (-5 *1 (-186))))
+ ((*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-1124)) (-5 *1 (-293))))
+ ((*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-1124)) (-5 *1 (-298)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-4 *1 (-106 *3)))))
+(((*1 *1 *1) (-4 *1 (-607)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973) (-1164))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-516)))))
(((*1 *2 *3)
(-12 (-4 *4 (-1018))
- (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1165) (-277)))
- (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1202 *4))))
+ (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1164) (-277)))
+ (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1201 *4))))
((*1 *1 *1) (-4 *1 (-534)))
((*1 *2 *1) (-12 (-5 *2 (-892)) (-5 *1 (-648 *3)) (-4 *3 (-823))))
((*1 *2 *1) (-12 (-5 *2 (-892)) (-5 *1 (-653 *3)) (-4 *3 (-823))))
((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-795 *3)) (-4 *3 (-823))))
((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-864 *3)) (-4 *3 (-823))))
- ((*1 *2 *1) (-12 (-4 *1 (-966 *3)) (-4 *3 (-1180)) (-5 *2 (-747))))
- ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-1177 *3)) (-4 *3 (-1180))))
+ ((*1 *2 *1) (-12 (-4 *1 (-966 *3)) (-4 *3 (-1179)) (-5 *2 (-747))))
+ ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-1176 *3)) (-4 *3 (-1179))))
((*1 *2 *1)
- (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-973))
+ (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-973))
(-4 *2 (-1018)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1165) (-973)))
- (-5 *1 (-174 *3)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 (-747) *2)) (-5 *4 (-747)) (-4 *2 (-1066))
+ (-5 *1 (-654 *2))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1 *3 (-747) *3)) (-4 *3 (-1066)) (-5 *1 (-658 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *1) (-5 *1 (-155))))
(((*1 *1 *1 *1) (-4 *1 (-123))) ((*1 *1 *1 *1) (-5 *1 (-834)))
((*1 *1 *1 *1) (-4 *1 (-938))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018))
- (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9)
- (-12 (-5 *4 (-549)) (-5 *5 (-1125)) (-5 *6 (-665 (-219)))
- (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))))
- (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))))
- (-5 *9 (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))
- (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-473 *4 *5)) (-14 *4 (-621 (-1142))) (-4 *5 (-1018))
+ (-5 *2 (-923 *5)) (-5 *1 (-915 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1124)) (-5 *1 (-525)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1138 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
+(((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7)
+ (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-219))
+ (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN))))
+ (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL))))
+ (-5 *2 (-1006)) (-5 *1 (-726))))
+ ((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8)
+ (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-219))
+ (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN))))
+ (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL))))
+ (-5 *8 (-381)) (-5 *2 (-1006)) (-5 *1 (-726)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-549)) (-5 *1 (-478 *4))
+ (-4 *4 (-1201 *2)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-892)) (-5 *4 (-845)) (-5 *2 (-1230)) (-5 *1 (-1226))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-892)) (-5 *4 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1226))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-112))
+ (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
+ (-4 *3 (-13 (-27) (-1164) (-423 *6) (-10 -8 (-15 -3845 ($ *7)))))
+ (-4 *7 (-821))
+ (-4 *8
+ (-13 (-1203 *3 *7) (-356) (-1164)
+ (-10 -8 (-15 -3455 ($ $)) (-15 -3405 ($ $)))))
+ (-5 *2
+ (-3 (|:| |%series| *8)
+ (|:| |%problem| (-2 (|:| |func| (-1124)) (|:| |prob| (-1124))))))
+ (-5 *1 (-415 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1124)) (-4 *9 (-954 *8))
+ (-14 *10 (-1142)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1226 (-309 (-219)))) (-5 *4 (-621 (-1143)))
- (-5 *2 (-665 (-309 (-219)))) (-5 *1 (-199))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1067)) (-4 *6 (-871 *5)) (-5 *2 (-665 *6))
- (-5 *1 (-668 *5 *6 *3 *4)) (-4 *3 (-366 *6))
- (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4337)))))))
+ (-12 (-4 *5 (-356)) (-4 *7 (-1201 *5)) (-4 *4 (-701 *5 *7))
+ (-5 *2 (-2 (|:| -3697 (-665 *6)) (|:| |vec| (-1225 *5))))
+ (-5 *1 (-787 *5 *6 *7 *4 *3)) (-4 *6 (-632 *5)) (-4 *3 (-632 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-390)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1018)) (-4 *7 (-1018))
+ (-4 *6 (-1201 *5)) (-5 *2 (-1138 (-1138 *7)))
+ (-5 *1 (-492 *5 *6 *4 *7)) (-4 *4 (-1201 *6)))))
(((*1 *2 *3 *1)
- (-12 (-4 *1 (-947 *4 *5 *6 *3)) (-4 *4 (-1018)) (-4 *5 (-769))
- (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-4 *4 (-541))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))))
-(((*1 *2)
- (-12 (-5 *2 (-1231)) (-5 *1 (-1157 *3 *4)) (-4 *3 (-1067))
- (-4 *4 (-1067)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-219))) (-5 *2 (-1226 (-675))) (-5 *1 (-298)))))
+ (-12 (-4 *1 (-947 *4 *5 *3 *6)) (-4 *4 (-1018)) (-4 *5 (-769))
+ (-4 *3 (-823)) (-4 *6 (-1032 *4 *5 *3)) (-5 *2 (-112)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-387)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-270 *3 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1142))
+ (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-270 *4 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *4)))))
+ ((*1 *1 *1) (-5 *1 (-372)))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
+ (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4))))
+ (-5 *1 (-752 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-1066)) (-4 *2 (-871 *4)) (-5 *1 (-668 *4 *2 *5 *3))
+ (-4 *5 (-366 *2)) (-4 *3 (-13 (-366 *4) (-10 -7 (-6 -4336)))))))
+(((*1 *1 *1 *1) (-5 *1 (-834))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
+ (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4))))
+ (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
(((*1 *2 *1 *3)
- (-12 (-5 *3 (-621 (-914 *4))) (-4 *1 (-1101 *4)) (-4 *4 (-1018))
- (-5 *2 (-747)))))
-(((*1 *1) (-5 *1 (-430))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-936))) (-5 *1 (-284)))))
-(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))))
+ (-12 (-5 *3 (-914 *5)) (-4 *5 (-1018)) (-5 *2 (-747))
+ (-5 *1 (-1130 *4 *5)) (-14 *4 (-892))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-621 (-747))) (-5 *3 (-747)) (-5 *1 (-1130 *4 *5))
+ (-14 *4 (-892)) (-4 *5 (-1018))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-621 (-747))) (-5 *3 (-914 *5)) (-4 *5 (-1018))
+ (-5 *1 (-1130 *4 *5)) (-14 *4 (-892)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-497)) (-5 *3 (-1084)) (-5 *1 (-1081)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-114)) (-4 *4 (-1018)) (-5 *1 (-691 *4 *2))
+ (-4 *2 (-624 *4))))
+ ((*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-5 *1 (-810 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1124)) (-5 *4 (-549)) (-5 *5 (-665 (-167 (-219))))
+ (-5 *2 (-1006)) (-5 *1 (-731)))))
+(((*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-677))))
+ ((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-677)))))
+(((*1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1228))))
+ ((*1 *2 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1228)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1099 (-219))) (-5 *3 (-621 (-256))) (-5 *1 (-1227))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1099 (-219))) (-5 *3 (-1124)) (-5 *1 (-1227))))
+ ((*1 *1 *1) (-5 *1 (-1227))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2))
+ (-4 *4 (-366 *2)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-621 (-923 *6))) (-5 *4 (-621 (-1142))) (-4 *6 (-444))
+ (-5 *2 (-621 (-621 *7))) (-5 *1 (-527 *6 *7 *5)) (-4 *7 (-356))
+ (-4 *5 (-13 (-356) (-821))))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-892))
+ (-5 *2 (-1225 (-621 (-2 (|:| -4160 *4) (|:| -3494 (-1086))))))
+ (-5 *1 (-339 *4)) (-4 *4 (-342)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-747)) (-4 *4 (-541)) (-5 *1 (-940 *4 *2))
+ (-4 *2 (-1201 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-658 *2)) (-4 *2 (-1067))))
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
+ ((*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-892)) (-5 *1 (-762)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-444))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-441 *3 *4 *5 *6)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3)
+ (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *6 (-219))
+ (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-729)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-621 (-473 *5 *6))) (-5 *4 (-836 *5))
+ (-14 *5 (-621 (-1142))) (-5 *2 (-473 *5 *6)) (-5 *1 (-609 *5 *6))
+ (-4 *6 (-444))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-621 *5) (-621 *5))) (-5 *4 (-549))
- (-5 *2 (-621 *5)) (-5 *1 (-658 *5)) (-4 *5 (-1067)))))
+ (-12 (-5 *3 (-621 (-473 *5 *6))) (-5 *4 (-836 *5))
+ (-14 *5 (-621 (-1142))) (-5 *2 (-473 *5 *6)) (-5 *1 (-609 *5 *6))
+ (-4 *6 (-444)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-621 (-923 *4))) (-5 *3 (-621 (-1142))) (-4 *4 (-444))
+ (-5 *1 (-889 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-287 (-923 (-549))))
+ (-12 (-4 *4 (-444))
(-5 *2
- (-2 (|:| |varOrder| (-621 (-1143)))
- (|:| |inhom| (-3 (-621 (-1226 (-747))) "failed"))
- (|:| |hom| (-621 (-1226 (-747))))))
- (-5 *1 (-230)))))
-(((*1 *1 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1236)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-648 *3)) (-4 *3 (-823))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-653 *3)) (-4 *3 (-823))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-795 *3)) (-4 *3 (-823)))))
-(((*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1011)))))
+ (-621
+ (-2 (|:| |eigval| (-3 (-400 (-923 *4)) (-1131 (-1142) (-923 *4))))
+ (|:| |eigmult| (-747))
+ (|:| |eigvec| (-621 (-665 (-400 (-923 *4))))))))
+ (-5 *1 (-285 *4)) (-5 *3 (-665 (-400 (-923 *4)))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-594 (-863 *3))) (-4 *3 (-857 *3))
+ (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-594 (-863 *3))) (-4 *2 (-857 *3))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219)))
+ (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-65 FUNCT1))))
+ (-5 *2 (-1006)) (-5 *1 (-730)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-541) (-145))) (-5 *1 (-526 *3 *2))
+ (-4 *2 (-1216 *3))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-4 *4 (-1201 *3))
+ (-4 *5 (-701 *3 *4)) (-5 *1 (-530 *3 *4 *5 *2)) (-4 *2 (-1216 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-5 *1 (-531 *3 *2))
+ (-4 *2 (-1216 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-13 (-541) (-145)))
+ (-5 *1 (-1118 *3)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-549)) (-5 *1 (-372)))))
+(((*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-1179)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-831))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-936))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1124)) (-5 *1 (-960))))
+ ((*1 *2 *1) (-12 (-4 *1 (-981 *2)) (-4 *2 (-1179))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-1066) (-34))) (-5 *1 (-1106 *2 *3))
+ (-4 *3 (-13 (-1066) (-34))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *3 (-300)) (-4 *3 (-170)) (-4 *4 (-366 *3))
+ (-4 *5 (-366 *3)) (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3)))
+ (-5 *1 (-664 *3 *4 *5 *6)) (-4 *6 (-663 *3 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3))) (-5 *1 (-676 *3))
+ (-4 *3 (-300)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-295))))
+ ((*1 *1 *1) (-4 *1 (-295)))
+ ((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834))))
+ ((*1 *1 *1) (-5 *1 (-834))))
+(((*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3)
+ (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *3 (-549))
+ (-5 *2 (-1006)) (-5 *1 (-733)))))
+(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-541)) (-4 *3 (-1018))
+ (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-825 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-98 *5)) (-4 *5 (-541)) (-4 *5 (-1018))
+ (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3))) (-5 *1 (-826 *5 *3))
+ (-4 *3 (-825 *5)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1225 *4)) (-5 *3 (-1086)) (-4 *4 (-342))
+ (-5 *1 (-519 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-309 (-219))) (-5 *2 (-309 (-400 (-549))))
+ (-5 *1 (-298)))))
+(((*1 *1) (-5 *1 (-155))))
(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1202 (-549))))))
+ (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))))
+(((*1 *1)
+ (-12 (-4 *3 (-1066)) (-5 *1 (-856 *2 *3 *4)) (-4 *2 (-1066))
+ (-4 *4 (-642 *3))))
+ ((*1 *1) (-12 (-5 *1 (-860 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7)
+ (-12 (-5 *3 (-876 (-549))) (-5 *4 (-549)) (-5 *2 (-665 *4))
+ (-5 *1 (-999 *5)) (-4 *5 (-1018))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-665 (-549))) (-5 *1 (-999 *4))
+ (-4 *4 (-1018))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-876 (-549)))) (-5 *4 (-549))
+ (-5 *2 (-621 (-665 *4))) (-5 *1 (-999 *5)) (-4 *5 (-1018))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-621 (-549)))) (-5 *2 (-621 (-665 (-549))))
+ (-5 *1 (-999 *4)) (-4 *4 (-1018)))))
+(((*1 *1) (-5 *1 (-323))))
+(((*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7)
(-12 (-5 *4 (-549)) (-5 *5 (-665 (-219)))
- (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-83 FCNF))))
- (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-84 FCNG)))) (-5 *3 (-219))
- (-5 *2 (-1006)) (-5 *1 (-726)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-411 *5)) (-4 *5 (-541))
+ (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))))
+ (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))
+ (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-549)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-747)) (-4 *5 (-170))))
+ ((*1 *1 *1 *2 *1 *2)
+ (-12 (-5 *2 (-549)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-747)) (-4 *5 (-170))))
+ ((*1 *2 *2 *3)
+ (-12
(-5 *2
- (-2 (|:| -3731 (-747)) (|:| -1570 *5) (|:| |radicand| (-621 *5))))
- (-5 *1 (-313 *5)) (-5 *4 (-747))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-973)) (-5 *2 (-549)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-665 *1)) (-4 *1 (-342)) (-5 *2 (-1226 *1))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-665 *1)) (-4 *1 (-143)) (-4 *1 (-880))
- (-5 *2 (-1226 *1)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-665 (-400 (-923 (-549)))))
- (-5 *2 (-621 (-665 (-309 (-549))))) (-5 *1 (-1002)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769))
- (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *3 (-1032 *4 *5 *6))
- (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1981 *1))))
- (-4 *1 (-1038 *4 *5 *6 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-217 *2 *3)) (-4 *2 (-13 (-1018) (-823)))
- (-14 *3 (-621 (-1143))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
+ (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4)
+ (-241 *4 (-400 (-549)))))
+ (-5 *3 (-621 (-836 *4))) (-14 *4 (-621 (-1142))) (-14 *5 (-747))
+ (-5 *1 (-496 *4 *5)))))
+(((*1 *1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-112)) (-5 *1 (-863 *4))
+ (-4 *4 (-1066)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 *4))
+ (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
+ (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-156 *4 *2))
+ (-4 *2 (-423 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1058 *2)) (-4 *2 (-423 *4)) (-4 *4 (-13 (-823) (-541)))
+ (-5 *1 (-156 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1058 *1)) (-4 *1 (-158))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-158)) (-5 *2 (-1142)))))
+(((*1 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
(((*1 *2 *3 *4 *4)
(-12 (-5 *4 (-112)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
(-4 *8 (-1032 *5 *6 *7))
@@ -633,1451 +800,1355 @@
(-4 *8 (-1032 *5 *6 *7))
(-5 *2
(-2 (|:| |val| (-621 *8))
- (|:| |towers| (-621 (-1113 *5 *6 *7 *8)))))
- (-5 *1 (-1113 *5 *6 *7 *8)) (-5 *3 (-621 *8)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *4 *5 *6)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-441 *4 *5 *6 *2)))))
-(((*1 *1 *1 *2 *1)
- (-12 (-5 *2 (-549)) (-5 *1 (-1123 *3)) (-4 *3 (-1180))))
- ((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-1214 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-541)) (-4 *3 (-170)) (-4 *4 (-366 *3))
- (-4 *5 (-366 *3)) (-5 *1 (-664 *3 *4 *5 *2))
- (-4 *2 (-663 *3 *4 *5)))))
+ (|:| |towers| (-621 (-1112 *5 *6 *7 *8)))))
+ (-5 *1 (-1112 *5 *6 *7 *8)) (-5 *3 (-621 *8)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1143))
- (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
- (-5 *2 (-567 *3)) (-5 *1 (-419 *5 *3))
- (-4 *3 (-13 (-1165) (-29 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1143)) (-4 *5 (-13 (-541) (-1009 (-549)) (-145)))
- (-5 *2 (-567 (-400 (-923 *5)))) (-5 *1 (-555 *5))
- (-5 *3 (-400 (-923 *5))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1125)) (-5 *3 (-750)) (-5 *1 (-114)))))
-(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-977))))
- ((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-977)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-732)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1165) (-973)))
- (-5 *1 (-174 *3)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-387))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1160)))))
-(((*1 *1) (-5 *1 (-284))))
-(((*1 *2 *3) (-12 (-5 *3 (-112)) (-5 *2 (-1125)) (-5 *1 (-52)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-30))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-411 *4) *4)) (-4 *4 (-541)) (-5 *2 (-411 *4))
- (-5 *1 (-412 *4))))
- ((*1 *1 *1) (-5 *1 (-897)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-897))))
- ((*1 *1 *1) (-5 *1 (-898)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-898))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))
- (-5 *4 (-400 (-549))) (-5 *1 (-991 *3)) (-4 *3 (-1202 (-549)))))
- ((*1 *2 *3 *2 *2)
- (|partial| -12
- (-5 *2 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))
- (-5 *1 (-991 *3)) (-4 *3 (-1202 (-549)))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))
- (-5 *4 (-400 (-549))) (-5 *1 (-992 *3)) (-4 *3 (-1202 *4))))
- ((*1 *2 *3 *2 *2)
- (|partial| -12
- (-5 *2 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))
- (-5 *1 (-992 *3)) (-4 *3 (-1202 (-400 (-549))))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3))
- (-4 *3 (-1202 *2)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1125)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1231))
- (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1125)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1231))
- (-5 *1 (-1074 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
-(((*1 *2 *1 *1)
- (-12
+ (-12 (-5 *3 (-3 (-400 (-923 *5)) (-1131 (-1142) (-923 *5))))
+ (-4 *5 (-444)) (-5 *2 (-621 (-665 (-400 (-923 *5)))))
+ (-5 *1 (-285 *5)) (-5 *4 (-665 (-400 (-923 *5)))))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-295))))
+ ((*1 *1 *1) (-4 *1 (-295))) ((*1 *1 *1) (-5 *1 (-834))))
+(((*1 *2 *3) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-546)) (-5 *3 (-549)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-444)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-5 *2 (-621 *3)) (-5 *1 (-948 *4 *5 *6 *3))
+ (-4 *3 (-1032 *4 *5 *6)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-747)) (-4 *4 (-342)) (-5 *1 (-210 *4 *2))
+ (-4 *2 (-1201 *4))))
+ ((*1 *2 *2 *3 *2 *3)
+ (-12 (-5 *3 (-549)) (-5 *1 (-672 *2)) (-4 *2 (-1201 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1068 *3)) (-5 *1 (-876 *3)) (-4 *3 (-361))
+ (-4 *3 (-1066)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-747)) (-5 *2 (-112)) (-5 *1 (-568 *3)) (-4 *3 (-534)))))
+(((*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227))))
+ ((*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227)))))
+(((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-1138 (-923 *4))) (-5 *1 (-409 *3 *4))
+ (-4 *3 (-410 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-4 *3 (-356))
+ (-5 *2 (-1138 (-923 *3)))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1138 (-400 (-923 *3)))) (-5 *1 (-445 *3 *4 *5 *6))
+ (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))))
+(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-372)) (-5 *3 (-1124)) (-5 *1 (-96))))
+ ((*1 *2 *3 *2) (-12 (-5 *2 (-372)) (-5 *3 (-1124)) (-5 *1 (-96)))))
+(((*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1228))))
+ ((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1228)))))
+(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-1110)) (-5 *2 (-1192 (-549))))))
+(((*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-309 (-219)))) (-5 *4 (-747))
+ (-5 *2 (-665 (-219))) (-5 *1 (-260)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-621 *1)) (-4 *1 (-1032 *4 *5 *6)) (-4 *4 (-1018))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1172 *4 *5 *6 *3)) (-4 *4 (-541)) (-4 *5 (-769))
+ (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *4 (-356)) (-5 *2 (-621 (-1122 *4))) (-5 *1 (-278 *4 *5))
+ (-5 *3 (-1122 *4)) (-4 *5 (-1216 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1246 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
+ (-5 *2 (-795 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-819)) (-5 *1 (-1248 *3 *2)) (-4 *3 (-1018)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834))))
+ ((*1 *1 *1) (-5 *1 (-834)))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-4 *1 (-1064 *3))))
+ ((*1 *1) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-621 (-836 *5))) (-14 *5 (-621 (-1142))) (-4 *6 (-444))
(-5 *2
- (-2 (|:| -1570 *3) (|:| |gap| (-747)) (|:| -4013 (-758 *3))
- (|:| -3675 (-758 *3))))
- (-5 *1 (-758 *3)) (-4 *3 (-1018))))
- ((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823))
+ (-2 (|:| |dpolys| (-621 (-241 *5 *6)))
+ (|:| |coords| (-621 (-549)))))
+ (-5 *1 (-463 *5 *6 *7)) (-5 *3 (-621 (-241 *5 *6))) (-4 *7 (-444)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-665 (-167 (-400 (-549))))) (-5 *2 (-621 (-167 *4)))
+ (-5 *1 (-741 *4)) (-4 *4 (-13 (-356) (-821))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-342))
(-5 *2
- (-2 (|:| -1570 *1) (|:| |gap| (-747)) (|:| -4013 *1)
- (|:| -3675 *1)))
- (-4 *1 (-1032 *4 *5 *3))))
+ (-2 (|:| |cont| *5)
+ (|:| -3390 (-621 (-2 (|:| |irr| *3) (|:| -2129 (-549)))))))
+ (-5 *1 (-210 *5 *3)) (-4 *3 (-1201 *5)))))
+(((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
+ (-4 *3 (-360 *4))))
+ ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *2 (-823)) (-4 *3 (-170))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *2 (-541)) (-5 *1 (-940 *2 *3)) (-4 *3 (-1201 *2))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)) (-4 *2 (-541))))
((*1 *2 *1 *1)
- (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *2
- (-2 (|:| -1570 *1) (|:| |gap| (-747)) (|:| -4013 *1)
- (|:| -3675 *1)))
- (-4 *1 (-1032 *3 *4 *5)))))
+ (-12 (-4 *1 (-1201 *2)) (-4 *2 (-1018)) (-4 *2 (-170)))))
+(((*1 *2)
+ (-12 (-5 *2 (-747)) (-5 *1 (-120 *3)) (-4 *3 (-1201 (-549)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-747)) (-5 *1 (-120 *3)) (-4 *3 (-1201 (-549))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
(((*1 *2 *3)
- (-12 (-14 *4 (-621 (-1143))) (-14 *5 (-747))
+ (-12 (-5 *3 (-898))
(-5 *2
- (-621
- (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4)
- (-241 *4 (-400 (-549))))))
- (-5 *1 (-496 *4 *5))
- (-5 *3
- (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4)
- (-241 *4 (-400 (-549))))))))
-(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-831))))
- ((*1 *2 *1) (-12 (-5 *2 (-1071)) (-5 *1 (-936))))
- ((*1 *2 *1) (-12 (-5 *2 (-1125)) (-5 *1 (-960))))
- ((*1 *2 *1) (-12 (-4 *1 (-981 *2)) (-4 *2 (-1180))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-13 (-1067) (-34))) (-5 *1 (-1107 *2 *3))
- (-4 *3 (-13 (-1067) (-34))))))
-(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-1 (-112) *8))) (-4 *8 (-1032 *5 *6 *7))
- (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823))
- (-5 *2 (-2 (|:| |goodPols| (-621 *8)) (|:| |badPols| (-621 *8))))
- (-5 *1 (-948 *5 *6 *7 *8)) (-5 *4 (-621 *8)))))
-(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-675))))
- ((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-675)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1226 *5)) (-4 *5 (-617 *4)) (-4 *4 (-541))
- (-5 *2 (-1226 *4)) (-5 *1 (-616 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-300)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3))
- (-5 *1 (-1091 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-549)) (-5 *1 (-372)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-665 *2)) (-4 *2 (-170)) (-5 *1 (-144 *2))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-170)) (-4 *2 (-1202 *4)) (-5 *1 (-175 *4 *2 *3))
- (-4 *3 (-701 *4 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-665 (-400 (-923 *5)))) (-5 *4 (-1143))
- (-5 *2 (-923 *5)) (-5 *1 (-285 *5)) (-4 *5 (-444))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-665 (-400 (-923 *4)))) (-5 *2 (-923 *4))
- (-5 *1 (-285 *4)) (-4 *4 (-444))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-363 *3 *2)) (-4 *3 (-170)) (-4 *2 (-1202 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-665 (-167 (-400 (-549)))))
- (-5 *2 (-923 (-167 (-400 (-549))))) (-5 *1 (-741 *4))
- (-4 *4 (-13 (-356) (-821)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-665 (-167 (-400 (-549))))) (-5 *4 (-1143))
- (-5 *2 (-923 (-167 (-400 (-549))))) (-5 *1 (-741 *5))
- (-4 *5 (-13 (-356) (-821)))))
+ (-2 (|:| |brans| (-621 (-621 (-914 (-219)))))
+ (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))))
+ (-5 *1 (-151))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-898)) (-5 *4 (-400 (-549)))
+ (-5 *2
+ (-2 (|:| |brans| (-621 (-621 (-914 (-219)))))
+ (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))))
+ (-5 *1 (-151))))
((*1 *2 *3)
- (-12 (-5 *3 (-665 (-400 (-549)))) (-5 *2 (-923 (-400 (-549))))
- (-5 *1 (-755 *4)) (-4 *4 (-13 (-356) (-821)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-665 (-400 (-549)))) (-5 *4 (-1143))
- (-5 *2 (-923 (-400 (-549)))) (-5 *1 (-755 *5))
- (-4 *5 (-13 (-356) (-821))))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-747)) (|:| |poli| *2)
- (|:| |polj| *2)))
- (-4 *5 (-769)) (-4 *2 (-920 *4 *5 *6)) (-5 *1 (-441 *4 *5 *6 *2))
- (-4 *4 (-444)) (-4 *6 (-823)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *4 *5 *6)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-441 *4 *5 *6 *2)))))
-(((*1 *1)
- (-12 (-4 *3 (-1067)) (-5 *1 (-856 *2 *3 *4)) (-4 *2 (-1067))
- (-4 *4 (-642 *3))))
- ((*1 *1) (-12 (-5 *1 (-860 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067)))))
-(((*1 *1) (-5 *1 (-323))))
-(((*1 *2 *3)
(-12
- (-5 *3
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
- (|:| |relerr| (-219))))
(-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 (-186)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2719 *4))))
- (-4 *3 (-1067)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-625 *3 *4 *5)))))
-(((*1 *2 *2 *3)
+ (-2 (|:| |brans| (-621 (-621 (-914 (-219)))))
+ (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))))
+ (-5 *1 (-151)) (-5 *3 (-621 (-914 (-219))))))
+ ((*1 *2 *3)
(-12
(-5 *2
- (-2 (|:| |partsol| (-1226 (-400 (-923 *4))))
- (|:| -1949 (-621 (-1226 (-400 (-923 *4)))))))
- (-5 *3 (-621 *7)) (-4 *4 (-13 (-300) (-145)))
- (-4 *7 (-920 *4 *6 *5)) (-4 *5 (-13 (-823) (-594 (-1143))))
- (-4 *6 (-769)) (-5 *1 (-895 *4 *5 *6 *7)))))
-(((*1 *1) (-5 *1 (-142))) ((*1 *1 *1) (-5 *1 (-834))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-366 *3)) (-4 *3 (-1180)) (-4 *3 (-823)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-366 *4)) (-4 *4 (-1180))
- (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-319 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768))
- (-5 *2 (-621 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1067))
- (-5 *2 (-621 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1123 *3)) (-5 *1 (-577 *3)) (-4 *3 (-1018))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-621 *3)) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018))
- (-4 *4 (-703))))
- ((*1 *2 *1) (-12 (-4 *1 (-825 *3)) (-4 *3 (-1018)) (-5 *2 (-621 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1217 *3)) (-4 *3 (-1018)) (-5 *2 (-1123 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-914 *4)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892))
- (-4 *4 (-1018)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-372)) (-5 *1 (-1030)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-892)) (-4 *5 (-541)) (-5 *2 (-665 *5))
- (-5 *1 (-927 *5 *3)) (-4 *3 (-632 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-295))))
- ((*1 *1 *1) (-4 *1 (-295))) ((*1 *1 *1) (-5 *1 (-834))))
-(((*1 *2 *2) (-12 (-5 *2 (-1061 (-816 (-219)))) (-5 *1 (-298)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-1214 *2)) (-4 *2 (-1180)))))
+ (-2 (|:| |brans| (-621 (-621 (-914 (-219)))))
+ (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))))
+ (-5 *1 (-151)) (-5 *3 (-621 (-621 (-914 (-219)))))))
+ ((*1 *1 *2) (-12 (-5 *2 (-621 (-1060 (-372)))) (-5 *1 (-256))))
+ ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-256)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018))
- (-5 *2 (-621 (-621 (-621 (-747))))))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-1125)) (-5 *4 (-1087)) (-5 *2 (-112)) (-5 *1 (-797)))))
+ (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1))
+ (-4 *1 (-1032 *3 *4 *5)))))
+(((*1 *1 *2 *1 *1) (-12 (-5 *2 (-1141)) (-5 *1 (-323))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-1141)) (-5 *1 (-323)))))
+(((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-96)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 (-400 *6))) (-5 *4 (-400 *6)) (-4 *6 (-1202 *5))
- (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-12 (-5 *3 (-665 *8)) (-4 *8 (-920 *5 *7 *6))
+ (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1142))))
+ (-4 *7 (-769))
(-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1949 (-621 *4))))
- (-5 *1 (-786 *5 *6))))
+ (-621
+ (-2 (|:| |eqzro| (-621 *8)) (|:| |neqzro| (-621 *8))
+ (|:| |wcond| (-621 (-923 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1225 (-400 (-923 *5))))
+ (|:| -2619 (-621 (-1225 (-400 (-923 *5))))))))))
+ (-5 *1 (-895 *5 *6 *7 *8)) (-5 *4 (-621 *8))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 (-400 *6))) (-4 *6 (-1202 *5))
- (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
- (-5 *2 (-2 (|:| -1949 (-621 (-400 *6))) (|:| -3521 (-665 *5))))
- (-5 *1 (-786 *5 *6)) (-5 *4 (-621 (-400 *6)))))
+ (-12 (-5 *3 (-665 *8)) (-5 *4 (-621 (-1142))) (-4 *8 (-920 *5 *7 *6))
+ (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1142))))
+ (-4 *7 (-769))
+ (-5 *2
+ (-621
+ (-2 (|:| |eqzro| (-621 *8)) (|:| |neqzro| (-621 *8))
+ (|:| |wcond| (-621 (-923 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1225 (-400 (-923 *5))))
+ (|:| -2619 (-621 (-1225 (-400 (-923 *5))))))))))
+ (-5 *1 (-895 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-665 *7)) (-4 *7 (-920 *4 *6 *5))
+ (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142))))
+ (-4 *6 (-769))
+ (-5 *2
+ (-621
+ (-2 (|:| |eqzro| (-621 *7)) (|:| |neqzro| (-621 *7))
+ (|:| |wcond| (-621 (-923 *4)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1225 (-400 (-923 *4))))
+ (|:| -2619 (-621 (-1225 (-400 (-923 *4))))))))))
+ (-5 *1 (-895 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-665 *9)) (-5 *5 (-892)) (-4 *9 (-920 *6 *8 *7))
+ (-4 *6 (-13 (-300) (-145))) (-4 *7 (-13 (-823) (-594 (-1142))))
+ (-4 *8 (-769))
+ (-5 *2
+ (-621
+ (-2 (|:| |eqzro| (-621 *9)) (|:| |neqzro| (-621 *9))
+ (|:| |wcond| (-621 (-923 *6)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1225 (-400 (-923 *6))))
+ (|:| -2619 (-621 (-1225 (-400 (-923 *6))))))))))
+ (-5 *1 (-895 *6 *7 *8 *9)) (-5 *4 (-621 *9))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-665 *9)) (-5 *4 (-621 (-1142))) (-5 *5 (-892))
+ (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145)))
+ (-4 *7 (-13 (-823) (-594 (-1142)))) (-4 *8 (-769))
+ (-5 *2
+ (-621
+ (-2 (|:| |eqzro| (-621 *9)) (|:| |neqzro| (-621 *9))
+ (|:| |wcond| (-621 (-923 *6)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1225 (-400 (-923 *6))))
+ (|:| -2619 (-621 (-1225 (-400 (-923 *6))))))))))
+ (-5 *1 (-895 *6 *7 *8 *9))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-630 *6 (-400 *6))) (-5 *4 (-400 *6)) (-4 *6 (-1202 *5))
- (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-12 (-5 *3 (-665 *8)) (-5 *4 (-892)) (-4 *8 (-920 *5 *7 *6))
+ (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1142))))
+ (-4 *7 (-769))
(-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1949 (-621 *4))))
- (-5 *1 (-786 *5 *6))))
+ (-621
+ (-2 (|:| |eqzro| (-621 *8)) (|:| |neqzro| (-621 *8))
+ (|:| |wcond| (-621 (-923 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1225 (-400 (-923 *5))))
+ (|:| -2619 (-621 (-1225 (-400 (-923 *5))))))))))
+ (-5 *1 (-895 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-665 *9)) (-5 *4 (-621 *9)) (-5 *5 (-1124))
+ (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145)))
+ (-4 *7 (-13 (-823) (-594 (-1142)))) (-4 *8 (-769)) (-5 *2 (-549))
+ (-5 *1 (-895 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-665 *9)) (-5 *4 (-621 (-1142))) (-5 *5 (-1124))
+ (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145)))
+ (-4 *7 (-13 (-823) (-594 (-1142)))) (-4 *8 (-769)) (-5 *2 (-549))
+ (-5 *1 (-895 *6 *7 *8 *9))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-630 *6 (-400 *6))) (-4 *6 (-1202 *5))
- (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
- (-5 *2 (-2 (|:| -1949 (-621 (-400 *6))) (|:| -3521 (-665 *5))))
- (-5 *1 (-786 *5 *6)) (-5 *4 (-621 (-400 *6))))))
+ (-12 (-5 *3 (-665 *8)) (-5 *4 (-1124)) (-4 *8 (-920 *5 *7 *6))
+ (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1142))))
+ (-4 *7 (-769)) (-5 *2 (-549)) (-5 *1 (-895 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-665 *10)) (-5 *4 (-621 *10)) (-5 *5 (-892))
+ (-5 *6 (-1124)) (-4 *10 (-920 *7 *9 *8)) (-4 *7 (-13 (-300) (-145)))
+ (-4 *8 (-13 (-823) (-594 (-1142)))) (-4 *9 (-769)) (-5 *2 (-549))
+ (-5 *1 (-895 *7 *8 *9 *10))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-665 *10)) (-5 *4 (-621 (-1142))) (-5 *5 (-892))
+ (-5 *6 (-1124)) (-4 *10 (-920 *7 *9 *8)) (-4 *7 (-13 (-300) (-145)))
+ (-4 *8 (-13 (-823) (-594 (-1142)))) (-4 *9 (-769)) (-5 *2 (-549))
+ (-5 *1 (-895 *7 *8 *9 *10))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-665 *9)) (-5 *4 (-892)) (-5 *5 (-1124))
+ (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145)))
+ (-4 *7 (-13 (-823) (-594 (-1142)))) (-4 *8 (-769)) (-5 *2 (-549))
+ (-5 *1 (-895 *6 *7 *8 *9)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-621
- (-2 (|:| -3123 (-747))
- (|:| |eqns|
- (-621
- (-2 (|:| |det| *7) (|:| |rows| (-621 (-549)))
- (|:| |cols| (-621 (-549))))))
- (|:| |fgb| (-621 *7)))))
- (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145)))
- (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *2 (-747))
- (-5 *1 (-895 *4 *5 *6 *7)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1030)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-621 (-747))) (-5 *3 (-169)) (-5 *1 (-1131 *4 *5))
- (-14 *4 (-892)) (-4 *5 (-1018)))))
-(((*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3)
- (-12 (-5 *5 (-665 (-219))) (-5 *6 (-665 (-549))) (-5 *3 (-549))
- (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1180)) (-5 *1 (-1099 *4 *2))
- (-4 *2 (-13 (-584 (-549) *4) (-10 -7 (-6 -4337) (-6 -4338))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-823)) (-4 *3 (-1180)) (-5 *1 (-1099 *3 *2))
- (-4 *2 (-13 (-584 (-549) *3) (-10 -7 (-6 -4337) (-6 -4338)))))))
-(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-1111)) (-5 *2 (-1193 (-549))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1143))
- (-4 *5 (-13 (-823) (-1009 (-549)) (-444) (-617 (-549))))
- (-5 *2 (-2 (|:| -1759 *3) (|:| |nconst| *3))) (-5 *1 (-552 *5 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *5))))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))))
+ (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3))
+ (-4 *3 (-13 (-356) (-1164) (-973))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-1166 *3))) (-5 *1 (-1166 *3)) (-4 *3 (-1067)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-379 *2)) (-4 *2 (-1067))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))))
-(((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-1125)) (-5 *4 (-167 (-219))) (-5 *5 (-549))
- (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834))))
- ((*1 *1 *1) (-5 *1 (-834)))
- ((*1 *1 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-4 *1 (-1065 *3))))
- ((*1 *1) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1018))
- (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1165) (-277)))
- (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1202 *4)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-621 (-2 (|:| |val| (-621 *6)) (|:| -1981 *7))))
- (-4 *6 (-1032 *3 *4 *5)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444))
- (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-959 *3 *4 *5 *6 *7))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-621 (-2 (|:| |val| (-621 *6)) (|:| -1981 *7))))
- (-4 *6 (-1032 *3 *4 *5)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444))
- (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-1074 *3 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-309 (-219))) (-5 *4 (-1143))
- (-5 *5 (-1061 (-816 (-219)))) (-5 *2 (-621 (-219))) (-5 *1 (-186))))
+ (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-411 *2)) (-4 *2 (-300)) (-5 *1 (-885 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1142))
+ (-4 *5 (-13 (-300) (-145))) (-5 *2 (-52)) (-5 *1 (-886 *5))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-309 (-219))) (-5 *4 (-1143))
- (-5 *5 (-1061 (-816 (-219)))) (-5 *2 (-621 (-219))) (-5 *1 (-293)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-172 (-400 (-549)))) (-5 *1 (-117 *3)) (-14 *3 (-549))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *3 (-1123 *2)) (-4 *2 (-300)) (-5 *1 (-172 *2))))
- ((*1 *1 *2) (-12 (-5 *2 (-400 *3)) (-4 *3 (-300)) (-5 *1 (-172 *3))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-172 (-549))) (-5 *1 (-742 *3)) (-4 *3 (-397))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-172 (-400 (-549)))) (-5 *1 (-842 *3)) (-14 *3 (-549))))
- ((*1 *2 *1)
- (-12 (-14 *3 (-549)) (-5 *2 (-172 (-400 (-549))))
- (-5 *1 (-843 *3 *4)) (-4 *4 (-840 *3)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-892)) (-5 *4 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1227)))))
-(((*1 *1 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1067))))
- ((*1 *1 *1) (-5 *1 (-610))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-665 *5))) (-5 *4 (-549)) (-4 *5 (-356))
- (-4 *5 (-1018)) (-5 *2 (-112)) (-5 *1 (-1000 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-665 *4))) (-4 *4 (-356)) (-4 *4 (-1018))
- (-5 *2 (-112)) (-5 *1 (-1000 *4)))))
+ (-12 (-5 *4 (-411 (-923 *6))) (-5 *5 (-1142)) (-5 *3 (-923 *6))
+ (-4 *6 (-13 (-300) (-145))) (-5 *2 (-52)) (-5 *1 (-886 *6)))))
(((*1 *2 *3 *4)
- (-12 (-4 *7 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-541))
- (-4 *8 (-920 *7 *5 *6))
- (-5 *2 (-2 (|:| -3731 (-747)) (|:| -1570 *3) (|:| |radicand| *3)))
- (-5 *1 (-924 *5 *6 *7 *8 *3)) (-5 *4 (-747))
- (-4 *3
- (-13 (-356)
- (-10 -8 (-15 -1394 (*8 $)) (-15 -1403 (*8 $)) (-15 -3846 ($ *8))))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170))
- (-5 *2 (-621 (-923 *4)))))
- ((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-621 (-923 *4))) (-5 *1 (-409 *3 *4))
- (-4 *3 (-410 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-621 (-923 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-621 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
- (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1226 (-445 *4 *5 *6 *7))) (-5 *2 (-621 (-923 *4)))
- (-5 *1 (-445 *4 *5 *6 *7)) (-4 *4 (-541)) (-4 *4 (-170))
- (-14 *5 (-892)) (-14 *6 (-621 (-1143))) (-14 *7 (-1226 (-665 *4))))))
-(((*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))))
-(((*1 *1 *2 *1 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-323))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-323)))))
+ (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1066)) (-4 *5 (-1066))
+ (-5 *2 (-1 *5)) (-5 *1 (-659 *4 *5)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-592 *4)) (-4 *4 (-823)) (-4 *2 (-823))
- (-5 *1 (-591 *2 *4)))))
+ (-12 (-5 *3 (-1138 *4)) (-4 *4 (-342))
+ (-5 *2 (-1225 (-621 (-2 (|:| -4160 *4) (|:| -3494 (-1086))))))
+ (-5 *1 (-339 *4)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1180)) (-5 *2 (-747)) (-5 *1 (-180 *4 *3))
- (-4 *3 (-650 *4)))))
-(((*1 *1 *1) (-12 (-5 *1 (-885 *2)) (-4 *2 (-300)))))
-(((*1 *2)
- (-12 (-5 *2 (-1231)) (-5 *1 (-1157 *3 *4)) (-4 *3 (-1067))
- (-4 *4 (-1067)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5
- (-1 (-2 (|:| |ans| *6) (|:| -3848 *6) (|:| |sol?| (-112))) (-549)
- *6))
- (-4 *6 (-356)) (-4 *7 (-1202 *6))
- (-5 *2 (-2 (|:| |answer| (-567 (-400 *7))) (|:| |a0| *6)))
- (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *3 (-621 (-549)))
- (-5 *1 (-854)))))
-(((*1 *2 *3 *3 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219))
- (-5 *2 (-1006)) (-5 *1 (-733)))))
-(((*1 *1)
- (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-541)) (-4 *2 (-170)))))
+ (-12 (-5 *3 (-1124))
+ (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *2 (-112)) (-5 *1 (-218 *4 *5)) (-4 *5 (-13 (-1164) (-29 *4))))))
+(((*1 *1 *1) (-4 *1 (-1110))))
(((*1 *2 *3 *2 *3)
- (-12 (-5 *2 (-430)) (-5 *3 (-1143)) (-5 *1 (-1146))))
- ((*1 *2 *3 *2) (-12 (-5 *2 (-430)) (-5 *3 (-1143)) (-5 *1 (-1146))))
+ (-12 (-5 *2 (-430)) (-5 *3 (-1142)) (-5 *1 (-1145))))
+ ((*1 *2 *3 *2) (-12 (-5 *2 (-430)) (-5 *3 (-1142)) (-5 *1 (-1145))))
((*1 *2 *3 *2 *4 *1)
- (-12 (-5 *2 (-430)) (-5 *3 (-621 (-1143))) (-5 *4 (-1143))
- (-5 *1 (-1146))))
+ (-12 (-5 *2 (-430)) (-5 *3 (-621 (-1142))) (-5 *4 (-1142))
+ (-5 *1 (-1145))))
((*1 *2 *3 *2 *3 *1)
- (-12 (-5 *2 (-430)) (-5 *3 (-1143)) (-5 *1 (-1146))))
+ (-12 (-5 *2 (-430)) (-5 *3 (-1142)) (-5 *1 (-1145))))
((*1 *2 *3 *2 *1)
- (-12 (-5 *2 (-430)) (-5 *3 (-1143)) (-5 *1 (-1147))))
+ (-12 (-5 *2 (-430)) (-5 *3 (-1142)) (-5 *1 (-1146))))
((*1 *2 *3 *2 *1)
- (-12 (-5 *2 (-430)) (-5 *3 (-621 (-1143))) (-5 *1 (-1147)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1018)) (-5 *2 (-1226 *3)) (-5 *1 (-689 *3 *4))
- (-4 *4 (-1202 *3)))))
-(((*1 *1 *2) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1165))))))
-(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))))
+ (-12 (-5 *2 (-430)) (-5 *3 (-621 (-1142))) (-5 *1 (-1146)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
+ (-5 *1 (-948 *4 *5 *6 *7)))))
+(((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-747)) (-5 *1 (-758 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *1 (-934 *3 *2)) (-4 *2 (-130)) (-4 *3 (-541))
+ (-4 *3 (-1018)) (-4 *2 (-768))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-747)) (-5 *1 (-1138 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-942)) (-4 *2 (-130)) (-5 *1 (-1144 *3)) (-4 *3 (-541))
+ (-4 *3 (-1018))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-747)) (-5 *1 (-1198 *4 *3)) (-14 *4 (-1142))
+ (-4 *3 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-549)) (-5 *2 (-621 (-621 (-219)))) (-5 *1 (-1175)))))
+(((*1 *1 *1) (-12 (-4 *1 (-423 *2)) (-4 *2 (-823)) (-4 *2 (-541))))
+ ((*1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)))))
(((*1 *1) (-12 (-5 *1 (-667 *2)) (-4 *2 (-593 (-834))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1143))
- (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-287 (-309 *5))))
- (-5 *1 (-1096 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-13 (-300) (-823) (-145)))
- (-5 *2 (-621 (-287 (-309 *4)))) (-5 *1 (-1096 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-287 (-400 (-923 *5)))) (-5 *4 (-1143))
- (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-287 (-309 *5))))
- (-5 *1 (-1096 *5))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1078)) (-4 *3 (-823)) (-5 *2 (-621 *1))
+ (-4 *1 (-423 *3))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3))
+ (-4 *3 (-1066))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *2 (-621 *1)) (-4 *1 (-920 *3 *4 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-287 (-400 (-923 *4))))
- (-4 *4 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-287 (-309 *4))))
- (-5 *1 (-1096 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-400 (-923 *5)))) (-5 *4 (-621 (-1143)))
- (-4 *5 (-13 (-300) (-823) (-145)))
- (-5 *2 (-621 (-621 (-287 (-309 *5))))) (-5 *1 (-1096 *5))))
+ (|partial| -12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018))
+ (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-621 *3))
+ (-5 *1 (-921 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-356)
+ (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $))
+ (-15 -1404 (*7 $))))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-549)) (-5 *1 (-672 *2)) (-4 *2 (-1201 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-372)) (-5 *2 (-219)) (-5 *1 (-1228))))
+ ((*1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-1228)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1138 *7)) (-5 *3 (-549)) (-4 *7 (-920 *6 *4 *5))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018))
+ (-5 *1 (-314 *4 *5 *6 *7)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))))
+(((*1 *1 *1 *1) (-5 *1 (-834))))
+(((*1 *2 *3 *3 *3 *4 *5)
+ (-12 (-5 *5 (-621 (-621 (-219)))) (-5 *4 (-219))
+ (-5 *2 (-621 (-914 *4))) (-5 *1 (-1175)) (-5 *3 (-914 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-219))) (-5 *2 (-621 (-1124))) (-5 *1 (-186))))
((*1 *2 *3)
- (-12 (-5 *3 (-621 (-400 (-923 *4))))
- (-4 *4 (-13 (-300) (-823) (-145)))
- (-5 *2 (-621 (-621 (-287 (-309 *4))))) (-5 *1 (-1096 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-287 (-400 (-923 *5))))) (-5 *4 (-621 (-1143)))
- (-4 *5 (-13 (-300) (-823) (-145)))
- (-5 *2 (-621 (-621 (-287 (-309 *5))))) (-5 *1 (-1096 *5))))
+ (-12 (-5 *3 (-621 (-219))) (-5 *2 (-621 (-1124))) (-5 *1 (-293))))
((*1 *2 *3)
- (-12 (-5 *3 (-621 (-287 (-400 (-923 *4)))))
- (-4 *4 (-13 (-300) (-823) (-145)))
- (-5 *2 (-621 (-621 (-287 (-309 *4))))) (-5 *1 (-1096 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-516)))))
-(((*1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-1018)))))
+ (-12 (-5 *3 (-621 (-219))) (-5 *2 (-621 (-1124))) (-5 *1 (-298)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-947 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *2 (-823)) (-4 *5 (-1032 *3 *4 *2)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1028 (-995 *4) (-1138 (-995 *4)))) (-5 *3 (-834))
+ (-5 *1 (-995 *4)) (-4 *4 (-13 (-821) (-356) (-993))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-621 *6)) (-4 *6 (-823)) (-4 *4 (-356)) (-4 *5 (-769))
+ (-5 *2
+ (-2 (|:| |mval| (-665 *4)) (|:| |invmval| (-665 *4))
+ (|:| |genIdeal| (-495 *4 *5 *6 *7))))
+ (-5 *1 (-495 *4 *5 *6 *7)) (-4 *7 (-920 *4 *5 *6)))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-356)) (-5 *1 (-867 *2 *3))
+ (-4 *2 (-1201 *3)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-1 (-621 *2) *2 *2 *2)) (-4 *2 (-1066))
+ (-5 *1 (-102 *2))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1066)) (-5 *1 (-102 *2)))))
+(((*1 *2 *3 *4 *4 *5 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-729)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1142)) (-5 *5 (-1060 (-219))) (-5 *2 (-898))
+ (-5 *1 (-896 *3)) (-4 *3 (-594 (-525)))))
+ ((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *4 (-1142)) (-5 *5 (-1060 (-219))) (-5 *2 (-898))
+ (-5 *1 (-896 *3)) (-4 *3 (-594 (-525)))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-897))))
+ ((*1 *1 *2 *2 *2 *2 *3 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1060 (-219)))
+ (-5 *1 (-897))))
+ ((*1 *1 *2 *2 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1060 (-219)))
+ (-5 *1 (-897))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-898))))
+ ((*1 *1 *2 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1060 (-219)))
+ (-5 *1 (-898))))
+ ((*1 *1 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1060 (-219)))
+ (-5 *1 (-898))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-621 (-1 (-219) (-219)))) (-5 *3 (-1060 (-219)))
+ (-5 *1 (-898))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-621 (-1 (-219) (-219)))) (-5 *3 (-1060 (-219)))
+ (-5 *1 (-898))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1060 (-219)))
+ (-5 *1 (-898))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1060 (-219)))
+ (-5 *1 (-898)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1138 *1)) (-4 *1 (-983)))))
+(((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-747)) (-4 *5 (-356)) (-5 *2 (-172 *6))
+ (-5 *1 (-838 *5 *4 *6)) (-4 *4 (-1216 *5)) (-4 *6 (-1201 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-747)) (-5 *2 (-1 (-1122 (-923 *4)) (-1122 (-923 *4))))
+ (-5 *1 (-1233 *4)) (-4 *4 (-356)))))
+(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-621 *1)) (-4 *1 (-891)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1139 *4)) (-4 *4 (-342)) (-5 *2 (-112))
- (-5 *1 (-350 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1226 *4)) (-4 *4 (-342)) (-5 *2 (-112))
- (-5 *1 (-519 *4)))))
-(((*1 *2 *3 *3 *2)
- (|partial| -12 (-5 *2 (-747))
- (-4 *3 (-13 (-703) (-361) (-10 -7 (-15 ** (*3 *3 (-549))))))
- (-5 *1 (-240 *3)))))
+ (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
+ (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-844 (-937 *3) (-937 *3))) (-5 *1 (-937 *3))
- (-4 *3 (-938)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1131 3 *3)) (-4 *3 (-1018)) (-4 *1 (-1101 *3))))
- ((*1 *1) (-12 (-4 *1 (-1101 *2)) (-4 *2 (-1018)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112))
- (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *2
- (-3 (|:| |%expansion| (-306 *5 *3 *6 *7))
- (|:| |%problem| (-2 (|:| |func| (-1125)) (|:| |prob| (-1125))))))
- (-5 *1 (-413 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1165) (-423 *5)))
- (-14 *6 (-1143)) (-14 *7 *3))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *3 (-1202 (-549))) (-5 *1 (-478 *3)))))
+ (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-5 *2 (-621 *3)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-410 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-1124)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-112))
- (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1981 *4))))
- (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
- (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
- (-5 *1 (-1074 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
-(((*1 *1 *2 *3 *1 *3)
- (-12 (-5 *2 (-863 *4)) (-4 *4 (-1067)) (-5 *1 (-860 *4 *3))
- (-4 *3 (-1067)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))))
+ (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8))
+ (-5 *4 (-665 (-1138 *8))) (-4 *5 (-1018)) (-4 *8 (-1018))
+ (-4 *6 (-1201 *5)) (-5 *2 (-665 *6)) (-5 *1 (-492 *5 *6 *7 *8))
+ (-4 *7 (-1201 *6)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *2 (-1018)) (-5 *1 (-50 *2 *3)) (-14 *3 (-621 (-1142)))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-621 (-892))) (-4 *2 (-356)) (-5 *1 (-150 *4 *2 *5))
+ (-14 *4 (-892)) (-14 *5 (-964 *4 *2))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-309 *3)) (-5 *1 (-217 *3 *4))
+ (-4 *3 (-13 (-1018) (-823))) (-14 *4 (-621 (-1142)))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-316 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-130))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1066)) (-4 *2 (-1018))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-549)) (-4 *2 (-541)) (-5 *1 (-601 *2 *4))
+ (-4 *4 (-1201 *2))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *1 (-685 *2)) (-4 *2 (-1018))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *2 (-1018)) (-5 *1 (-712 *2 *3)) (-4 *3 (-703))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-621 *5)) (-5 *3 (-621 (-747))) (-4 *1 (-717 *4 *5))
+ (-4 *4 (-1018)) (-4 *5 (-823))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-747)) (-4 *1 (-717 *4 *2)) (-4 *4 (-1018))
+ (-4 *2 (-823))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *1 (-825 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-621 *6)) (-5 *3 (-621 (-747))) (-4 *1 (-920 *4 *5 *6))
+ (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-747)) (-4 *1 (-920 *4 *5 *2)) (-4 *4 (-1018))
+ (-4 *5 (-769)) (-4 *2 (-823))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-747)) (-4 *2 (-920 *4 (-521 *5) *5))
+ (-5 *1 (-1092 *4 *5 *2)) (-4 *4 (-1018)) (-4 *5 (-823))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-747)) (-5 *2 (-923 *4)) (-5 *1 (-1173 *4))
+ (-4 *4 (-1018)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
+ (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN))))
+ (-5 *2 (-1006)) (-5 *1 (-725)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2))
- (-4 *4 (-13 (-823) (-541))))))
-(((*1 *2 *3 *4 *3 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-733)))))
+ (-12 (-4 *4 (-342)) (-5 *2 (-411 (-1138 (-1138 *4))))
+ (-5 *1 (-1177 *4)) (-5 *3 (-1138 (-1138 *4))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-621 *7)) (|:| |badPols| (-621 *7))))
+ (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))))
+(((*1 *1 *1 *2 *3 *1)
+ (-12 (-4 *1 (-319 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6))
+ (-5 *2 (-621 (-2 (|:| -2679 *1) (|:| -1358 (-621 *7)))))
+ (-5 *3 (-621 *7)) (-4 *1 (-1172 *4 *5 *6 *7)))))
(((*1 *2 *3)
(-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3))
(-4 *3 (-410 *4)))))
-(((*1 *2 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-731)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-747)) (-5 *2 (-1 (-1123 (-923 *4)) (-1123 (-923 *4))))
- (-5 *1 (-1234 *4)) (-4 *4 (-356)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1139 *9)) (-5 *4 (-621 *7)) (-5 *5 (-621 (-621 *8)))
- (-4 *7 (-823)) (-4 *8 (-300)) (-4 *9 (-920 *8 *6 *7)) (-4 *6 (-769))
+(((*1 *2 *1)
+ (-12
(-5 *2
- (-2 (|:| |upol| (-1139 *8)) (|:| |Lval| (-621 *8))
- (|:| |Lfact|
- (-621 (-2 (|:| -2121 (-1139 *8)) (|:| -3731 (-549)))))
- (|:| |ctpol| *8)))
- (-5 *1 (-719 *6 *7 *8 *9)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1143))
- (-5 *2 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-5 *1 (-1146)))))
+ (-1225
+ (-2 (|:| |scaleX| (-219)) (|:| |scaleY| (-219))
+ (|:| |deltaX| (-219)) (|:| |deltaY| (-219)) (|:| -2359 (-549))
+ (|:| -3341 (-549)) (|:| |spline| (-549)) (|:| -4199 (-549))
+ (|:| |axesColor| (-845)) (|:| -2034 (-549))
+ (|:| |unitsColor| (-845)) (|:| |showing| (-549)))))
+ (-5 *1 (-1226)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1231))
- (-5 *1 (-441 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))))
-(((*1 *1 *1 *2 *2)
- (|partial| -12 (-5 *2 (-892)) (-5 *1 (-1068 *3 *4)) (-14 *3 *2)
- (-14 *4 *2))))
-(((*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-1125)))))
-(((*1 *2 *2 *3 *4 *4)
- (-12 (-5 *4 (-549)) (-4 *3 (-170)) (-4 *5 (-366 *3))
- (-4 *6 (-366 *3)) (-5 *1 (-664 *3 *5 *6 *2))
- (-4 *2 (-663 *3 *5 *6)))))
-(((*1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1150)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-1202 (-400 (-549)))) (-5 *1 (-884 *3 *2))
- (-4 *2 (-1202 (-400 *3))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1123 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))))
-(((*1 *2)
- (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823))
- (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1231))
- (-5 *1 (-1039 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823))
- (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1231))
- (-5 *1 (-1075 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1139 *2)) (-4 *2 (-423 *4)) (-4 *4 (-13 (-823) (-541)))
- (-5 *1 (-32 *4 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-173))) (-5 *1 (-1052)))))
-(((*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-429))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-429)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-1018)) (-5 *1 (-436 *3 *2)) (-4 *2 (-1202 *3)))))
+ (-12 (-5 *3 (-549)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1018))
+ (-5 *1 (-314 *4 *5 *2 *6)) (-4 *6 (-920 *2 *4 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1015 *4 *5)) (-4 *4 (-13 (-821) (-300) (-145) (-993)))
- (-14 *5 (-621 (-1143)))
- (-5 *2
- (-621 (-2 (|:| -1298 (-1139 *4)) (|:| -4263 (-621 (-923 *4))))))
- (-5 *1 (-1252 *4 *5 *6)) (-14 *6 (-621 (-1143)))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993)))
- (-5 *2
- (-621 (-2 (|:| -1298 (-1139 *5)) (|:| -4263 (-621 (-923 *5))))))
- (-5 *1 (-1252 *5 *6 *7)) (-5 *3 (-621 (-923 *5)))
- (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993)))
- (-5 *2
- (-621 (-2 (|:| -1298 (-1139 *5)) (|:| -4263 (-621 (-923 *5))))))
- (-5 *1 (-1252 *5 *6 *7)) (-5 *3 (-621 (-923 *5)))
- (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993)))
- (-5 *2
- (-621 (-2 (|:| -1298 (-1139 *5)) (|:| -4263 (-621 (-923 *5))))))
- (-5 *1 (-1252 *5 *6 *7)) (-5 *3 (-621 (-923 *5)))
- (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-821) (-300) (-145) (-993)))
+ (-12 (-5 *3 (-1225 (-621 (-2 (|:| -4160 *4) (|:| -3494 (-1086))))))
+ (-4 *4 (-342)) (-5 *2 (-747)) (-5 *1 (-339 *4))))
+ ((*1 *2)
+ (-12 (-5 *2 (-747)) (-5 *1 (-344 *3 *4)) (-14 *3 (-892))
+ (-14 *4 (-892))))
+ ((*1 *2)
+ (-12 (-5 *2 (-747)) (-5 *1 (-345 *3 *4)) (-4 *3 (-342))
+ (-14 *4
+ (-3 (-1138 *3)
+ (-1225 (-621 (-2 (|:| -4160 *3) (|:| -3494 (-1086)))))))))
+ ((*1 *2)
+ (-12 (-5 *2 (-747)) (-5 *1 (-346 *3 *4)) (-4 *3 (-342))
+ (-14 *4 (-892)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1142))
+ (-4 *5 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2
- (-621 (-2 (|:| -1298 (-1139 *4)) (|:| -4263 (-621 (-923 *4))))))
- (-5 *1 (-1252 *4 *5 *6)) (-5 *3 (-621 (-923 *4)))
- (-14 *5 (-621 (-1143))) (-14 *6 (-621 (-1143))))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-549)) (-4 *1 (-56 *4 *2 *5)) (-4 *4 (-1180))
- (-4 *5 (-366 *4)) (-4 *2 (-366 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-549)) (-4 *1 (-1021 *4 *5 *6 *2 *7)) (-4 *6 (-1018))
- (-4 *7 (-232 *4 *6)) (-4 *2 (-232 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-942)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-516)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1123 (-1123 *4))) (-5 *2 (-1123 *4)) (-5 *1 (-1127 *4))
- (-4 *4 (-38 (-400 (-549)))) (-4 *4 (-1018)))))
+ (-2 (|:| |func| *3) (|:| |kers| (-621 (-592 *3)))
+ (|:| |vals| (-621 *3))))
+ (-5 *1 (-270 *5 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-397)) (-4 *3 (-1018))))
+ ((*1 *2)
+ (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-397)) (-4 *3 (-1018)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-549)) (-5 *2 (-621 (-621 (-219)))) (-5 *1 (-1176)))))
-(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
- (-12 (-5 *3 (-1125)) (-5 *4 (-549)) (-5 *5 (-665 (-219)))
- (-5 *2 (-1006)) (-5 *1 (-731)))))
-(((*1 *1) (-5 *1 (-430))))
+ (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1066)) (-5 *1 (-876 *3)))))
+(((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
+ (-4 *3 (-360 *4))))
+ ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1018)) (-5 *1 (-865 *2 *3)) (-4 *2 (-1201 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))))
+(((*1 *1 *1) (-5 *1 (-219))) ((*1 *1 *1) (-5 *1 (-372)))
+ ((*1 *1) (-5 *1 (-372))))
+(((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-112))
+ (-5 *2 (-1006)) (-5 *1 (-722)))))
(((*1 *2 *1)
(-12 (-4 *1 (-246 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-823))
(-4 *5 (-769)) (-4 *2 (-259 *4)))))
-(((*1 *1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-5 *1 (-714 *3))))
+ ((*1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-1066))))
+ ((*1 *1) (-12 (-5 *1 (-714 *2)) (-4 *2 (-1066)))))
(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1224 *3)) (-4 *3 (-1180)) (-4 *3 (-1018))
+ (-12 (-4 *1 (-1223 *3)) (-4 *3 (-1179)) (-4 *3 (-1018))
(-5 *2 (-665 *3)))))
-(((*1 *1 *1 *1) (-5 *1 (-834))))
-(((*1 *2 *1) (-12 (-5 *2 (-1125)) (-5 *1 (-798)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
- (-5 *2 (-1006)) (-5 *1 (-729)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-400 (-549)))
- (-5 *1 (-426 *4 *3)) (-4 *3 (-423 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-592 *3)) (-4 *3 (-423 *5))
- (-4 *5 (-13 (-823) (-541) (-1009 (-549))))
- (-5 *2 (-1139 (-400 (-549)))) (-5 *1 (-426 *5 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1066)) (-5 *1 (-876 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1208 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1185 *3))
+ (-5 *2 (-400 (-549))))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-747)) (-4 *1 (-319 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-768)) (-4 *3 (-170)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549)))))
- (-5 *2 (-400 (-549))) (-5 *1 (-991 *4)) (-4 *4 (-1202 (-549))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-1125)) (-5 *3 (-799)) (-5 *1 (-798)))))
+ (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1216 *4))
+ (-4 *4 (-38 (-400 (-549))))
+ (-5 *2 (-1 (-1122 *4) (-1122 *4) (-1122 *4))) (-5 *1 (-1218 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-621 *5)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
+ (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4))))
+ (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1))
+ (-4 *1 (-1032 *3 *4 *5)))))
(((*1 *2 *3 *3)
(-12 (-5 *2 (-1 (-372))) (-5 *1 (-1011)) (-5 *3 (-372)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *4 (-1143)) (-5 *6 (-112))
- (-4 *7 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
- (-4 *3 (-13 (-1165) (-930) (-29 *7)))
+(((*1 *2 *3 *2)
+ (-12
(-5 *2
- (-3 (|:| |f1| (-816 *3)) (|:| |f2| (-621 (-816 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-213 *7 *3)) (-5 *5 (-816 *3)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-379 *2)) (-4 *2 (-1067))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-145)) (-4 *2 (-300)) (-4 *2 (-444)) (-4 *3 (-823))
- (-4 *4 (-769)) (-5 *1 (-958 *2 *3 *4 *5)) (-4 *5 (-920 *2 *4 *3))))
- ((*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-309 (-549))) (-5 *1 (-1086))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-923 *6))) (-5 *4 (-621 (-1143)))
- (-4 *6 (-13 (-541) (-1009 *5))) (-4 *5 (-541))
- (-5 *2 (-621 (-621 (-287 (-400 (-923 *6)))))) (-5 *1 (-1010 *5 *6)))))
-(((*1 *2 *1) (-12 (-4 *1 (-247 *3)) (-4 *3 (-1180)) (-5 *2 (-747))))
+ (-621
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-747)) (|:| |poli| *3)
+ (|:| |polj| *3))))
+ (-4 *5 (-769)) (-4 *3 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *6 (-823))
+ (-5 *1 (-441 *4 *5 *6 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1149)))))
+(((*1 *2 *1) (-12 (-4 *1 (-247 *3)) (-4 *3 (-1179)) (-5 *2 (-747))))
((*1 *2 *1) (-12 (-4 *1 (-295)) (-5 *2 (-747))))
((*1 *2 *3)
(-12 (-4 *4 (-1018))
- (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1165) (-277)))
- (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1202 *4))))
+ (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1164) (-277)))
+ (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1201 *4))))
((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-592 *3)) (-4 *3 (-823))))
((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834))))
((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-834)))))
-(((*1 *2 *3 *3 *3 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-1107 *3 *2)) (-4 *3 (-13 (-1067) (-34)))
- (-4 *2 (-13 (-1067) (-34))))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
- (-5 *2
- (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549))
- (|:| |success| (-112))))
- (-5 *1 (-765)) (-5 *5 (-549)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -1353 *3) (|:| |coef2| (-758 *3))))
- (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-309 *4)) (-4 *4 (-13 (-804) (-823) (-1018)))
+ (-5 *2 (-1124)) (-5 *1 (-802 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-309 *5)) (-5 *4 (-112))
+ (-4 *5 (-13 (-804) (-823) (-1018))) (-5 *2 (-1124))
+ (-5 *1 (-802 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-798)) (-5 *4 (-309 *5))
+ (-4 *5 (-13 (-804) (-823) (-1018))) (-5 *2 (-1230))
+ (-5 *1 (-802 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-798)) (-5 *4 (-309 *6)) (-5 *5 (-112))
+ (-4 *6 (-13 (-804) (-823) (-1018))) (-5 *2 (-1230))
+ (-5 *1 (-802 *6))))
+ ((*1 *2 *1) (-12 (-4 *1 (-804)) (-5 *2 (-1124))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-804)) (-5 *3 (-112)) (-5 *2 (-1124))))
+ ((*1 *2 *3 *1) (-12 (-4 *1 (-804)) (-5 *3 (-798)) (-5 *2 (-1230))))
+ ((*1 *2 *3 *1 *4)
+ (-12 (-4 *1 (-804)) (-5 *3 (-798)) (-5 *4 (-112)) (-5 *2 (-1230)))))
+(((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
+ (-4 *3 (-360 *4))))
+ ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-567 *3)) (-4 *3 (-356)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-747)) (-4 *5 (-1018)) (-4 *2 (-1201 *5))
+ (-5 *1 (-1219 *5 *2 *6 *3)) (-4 *6 (-632 *2)) (-4 *3 (-1216 *5)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-584 *2 *3)) (-4 *3 (-1180)) (-4 *2 (-1067))
- (-4 *2 (-823)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-199))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-621 (-372))) (-5 *2 (-372)) (-5 *1 (-199)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1184)) (-4 *5 (-1202 *4))
- (-5 *2
- (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-400 *5))
- (|:| |c2| (-400 *5)) (|:| |deg| (-747))))
- (-5 *1 (-146 *4 *5 *3)) (-4 *3 (-1202 (-400 *5))))))
+ (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361)) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1138 *4)) (-4 *4 (-342)) (-5 *2 (-112))
+ (-5 *1 (-350 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1225 *4)) (-4 *4 (-342)) (-5 *2 (-112))
+ (-5 *1 (-519 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1122 (-1122 *4))) (-5 *2 (-1122 *4)) (-5 *1 (-1126 *4))
+ (-4 *4 (-1018)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-13 (-541) (-823) (-1009 (-549))))
+ (-4 *5 (-423 *4)) (-5 *2 (-411 (-1138 (-400 (-549)))))
+ (-5 *1 (-428 *4 *5 *3)) (-4 *3 (-1201 *5)))))
(((*1 *2 *3 *2)
(-12 (-5 *3 (-892)) (-5 *1 (-1001 *2))
- (-4 *2 (-13 (-1067) (-10 -8 (-15 -2486 ($ $ $))))))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1143)) (-5 *5 (-621 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *6)))
- (-4 *6 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-542 *6 *3)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
- (-5 *2
- (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549))
- (|:| |success| (-112))))
- (-5 *1 (-765)) (-5 *5 (-549)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2719 (-549)))))
- (-5 *1 (-354 *3)) (-4 *3 (-1067))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2719 (-747)))))
- (-5 *1 (-379 *3)) (-4 *3 (-1067))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-621 (-2 (|:| -2121 *3) (|:| -3731 (-549)))))
- (-5 *1 (-411 *3)) (-4 *3 (-541))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2719 (-747)))))
- (-5 *1 (-795 *3)) (-4 *3 (-823)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-372)) (-5 *1 (-1030)))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1 *8 *8))
- (-5 *5
- (-1 (-2 (|:| |ans| *7) (|:| -3848 *7) (|:| |sol?| (-112)))
- (-549) *7))
- (-5 *6 (-621 (-400 *8))) (-4 *7 (-356)) (-4 *8 (-1202 *7))
- (-5 *3 (-400 *8))
- (-5 *2
- (-2
- (|:| |answer|
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (|:| |a0| *7)))
- (-5 *1 (-559 *7 *8)))))
+ (-4 *2 (-13 (-1066) (-10 -8 (-15 -2484 ($ $ $))))))))
(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
- (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
- (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
- (|:| |abserr| (-219)) (|:| |relerr| (-219))))
- (-5 *2
- (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372))
- (|:| |expense| (-372)) (|:| |accuracy| (-372))
- (|:| |intermediateResults| (-372))))
- (-5 *1 (-779)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
- (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-665 *11)) (-5 *4 (-621 (-400 (-923 *8))))
- (-5 *5 (-747)) (-5 *6 (-1125)) (-4 *8 (-13 (-300) (-145)))
- (-4 *11 (-920 *8 *10 *9)) (-4 *9 (-13 (-823) (-594 (-1143))))
- (-4 *10 (-769))
- (-5 *2
- (-2
- (|:| |rgl|
- (-621
- (-2 (|:| |eqzro| (-621 *11)) (|:| |neqzro| (-621 *11))
- (|:| |wcond| (-621 (-923 *8)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1226 (-400 (-923 *8))))
- (|:| -1949 (-621 (-1226 (-400 (-923 *8))))))))))
- (|:| |rgsz| (-549))))
- (-5 *1 (-895 *8 *9 *10 *11)) (-5 *7 (-549)))))
+ (|partial| -12 (-4 *5 (-1009 (-48)))
+ (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-4 *5 (-423 *4))
+ (-5 *2 (-411 (-1138 (-48)))) (-5 *1 (-428 *4 *5 *3))
+ (-4 *3 (-1201 *5)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *4 *5 *6)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-441 *4 *5 *6 *2)))))
+(((*1 *2 *3 *2)
+ (-12 (-4 *2 (-13 (-356) (-821))) (-5 *1 (-179 *2 *3))
+ (-4 *3 (-1201 (-167 *2)))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-13 (-356) (-821))) (-5 *1 (-179 *2 *3))
+ (-4 *3 (-1201 (-167 *2))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-5 *2 (-1231)) (-5 *1 (-1146))))
+ (-12 (-4 *4 (-300)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4))
+ (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3)))
+ (-5 *1 (-1090 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361))
+ (-5 *2 (-1138 *3)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-665 *2)) (-4 *2 (-170)) (-5 *1 (-144 *2))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-170)) (-4 *2 (-1201 *4)) (-5 *1 (-175 *4 *2 *3))
+ (-4 *3 (-701 *4 *2))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1143))
- (-5 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-5 *2 (-1231))
- (-5 *1 (-1146))))
- ((*1 *2 *3 *4 *1)
- (-12 (-5 *3 (-1143))
- (-5 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void"))) (-5 *2 (-1231))
- (-5 *1 (-1146)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *6)) (-5 *4 (-621 (-1123 *7))) (-4 *6 (-823))
- (-4 *7 (-920 *5 (-521 *6) *6)) (-4 *5 (-1018))
- (-5 *2 (-1 (-1123 *7) *7)) (-5 *1 (-1093 *5 *6 *7)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1143))
- (-4 *5 (-13 (-541) (-1009 (-549)) (-145)))
- (-5 *2
- (-2 (|:| -3440 (-400 (-923 *5))) (|:| |coeff| (-400 (-923 *5)))))
- (-5 *1 (-555 *5)) (-5 *3 (-400 (-923 *5))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-621 *7)) (|:| |badPols| (-621 *7))))
- (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *1 (-495 *3 *4 *5 *2)) (-4 *2 (-920 *3 *4 *5))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823))
- (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546))))
+ (-12 (-5 *3 (-665 (-400 (-923 *5)))) (-5 *4 (-1142))
+ (-5 *2 (-923 *5)) (-5 *1 (-285 *5)) (-4 *5 (-444))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-665 (-400 (-923 *4)))) (-5 *2 (-923 *4))
+ (-5 *1 (-285 *4)) (-4 *4 (-444))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-363 *3 *2)) (-4 *3 (-170)) (-4 *2 (-1201 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-665 (-167 (-400 (-549)))))
+ (-5 *2 (-923 (-167 (-400 (-549))))) (-5 *1 (-741 *4))
+ (-4 *4 (-13 (-356) (-821)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-665 (-167 (-400 (-549))))) (-5 *4 (-1142))
+ (-5 *2 (-923 (-167 (-400 (-549))))) (-5 *1 (-741 *5))
+ (-4 *5 (-13 (-356) (-821)))))
((*1 *2 *3)
- (-12 (-5 *2 (-1139 (-400 (-549)))) (-5 *1 (-913)) (-5 *3 (-549)))))
+ (-12 (-5 *3 (-665 (-400 (-549)))) (-5 *2 (-923 (-400 (-549))))
+ (-5 *1 (-755 *4)) (-4 *4 (-13 (-356) (-821)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-665 (-400 (-549)))) (-5 *4 (-1142))
+ (-5 *2 (-923 (-400 (-549)))) (-5 *1 (-755 *5))
+ (-4 *5 (-13 (-356) (-821))))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-724)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-219) (-219))) (-5 *1 (-311)) (-5 *3 (-219)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *4 (-549))) (-5 *5 (-1 (-1123 *4))) (-4 *4 (-356))
- (-4 *4 (-1018)) (-5 *2 (-1123 *4)) (-5 *1 (-1127 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-715)))))
+ (-12 (-4 *3 (-1201 *2)) (-4 *2 (-1201 *4)) (-5 *1 (-956 *4 *2 *3 *5))
+ (-4 *4 (-342)) (-4 *5 (-701 *2 *3)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-1018)))))
+(((*1 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *6 (-1124))
+ (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| -1951 *1) (|:| -4323 *1) (|:| |associate| *1)))
+ (-4 *1 (-541)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-715)))))
+(((*1 *2 *3 *4 *5 *6 *2 *7 *8)
+ (|partial| -12 (-5 *2 (-621 (-1138 *11))) (-5 *3 (-1138 *11))
+ (-5 *4 (-621 *10)) (-5 *5 (-621 *8)) (-5 *6 (-621 (-747)))
+ (-5 *7 (-1225 (-621 (-1138 *8)))) (-4 *10 (-823))
+ (-4 *8 (-300)) (-4 *11 (-920 *8 *9 *10)) (-4 *9 (-769))
+ (-5 *1 (-684 *9 *10 *8 *11)))))
(((*1 *1 *1) (-4 *1 (-123))) ((*1 *1 *1) (-5 *1 (-834)))
- ((*1 *1 *1) (-4 *1 (-938))) ((*1 *1 *1) (-5 *1 (-1087))))
-(((*1 *1 *1) (-12 (-5 *1 (-1166 *2)) (-4 *2 (-1067)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-997 (-816 (-549))))
- (-5 *3 (-1123 (-2 (|:| |k| (-549)) (|:| |c| *4)))) (-4 *4 (-1018))
- (-5 *1 (-576 *4)))))
-(((*1 *1 *1) (-4 *1 (-141)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2))
- (-4 *2 (-423 *3))))
- ((*1 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *3 (-621 (-845)))
- (-5 *1 (-460)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-112)) (-5 *1 (-805)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-356)) (-5 *1 (-278 *3 *2)) (-4 *2 (-1217 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1226 *5)) (-4 *5 (-617 *4)) (-4 *4 (-541))
- (-5 *2 (-112)) (-5 *1 (-616 *4 *5)))))
+ ((*1 *1 *1) (-4 *1 (-938))) ((*1 *1 *1) (-5 *1 (-1086))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3)
+ (-12 (-5 *3 (-549)) (-5 *5 (-112)) (-5 *6 (-665 (-219)))
+ (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-732)))))
+(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1124)) (-5 *4 (-549)) (-5 *5 (-665 (-219)))
+ (-5 *2 (-1006)) (-5 *1 (-731)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1138 *7)) (-4 *5 (-1018))
+ (-4 *7 (-1018)) (-4 *2 (-1201 *5)) (-5 *1 (-492 *5 *2 *6 *7))
+ (-4 *6 (-1201 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1018)) (-4 *7 (-1018))
+ (-4 *4 (-1201 *5)) (-5 *2 (-1138 *7)) (-5 *1 (-492 *5 *4 *6 *7))
+ (-4 *6 (-1201 *4)))))
+(((*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6)
+ (-12 (-5 *4 (-549)) (-5 *5 (-665 (-219)))
+ (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421)))) (-5 *3 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-725)))))
+(((*1 *2)
+ (|partial| -12 (-4 *3 (-541)) (-4 *3 (-170))
+ (-5 *2 (-2 (|:| |particular| *1) (|:| -2619 (-621 *1))))
+ (-4 *1 (-360 *3))))
+ ((*1 *2)
+ (|partial| -12
+ (-5 *2
+ (-2 (|:| |particular| (-445 *3 *4 *5 *6))
+ (|:| -2619 (-621 (-445 *3 *4 *5 *6)))))
+ (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-892))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1059 *2)) (-4 *2 (-1179)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)) (-4 *2 (-541))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)) (-4 *2 (-541)))))
(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4337)) (-4 *1 (-481 *3)) (-4 *3 (-1180))
- (-4 *3 (-1067)) (-5 *2 (-747))))
+ (-12 (|has| *1 (-6 -4336)) (-4 *1 (-481 *3)) (-4 *3 (-1179))
+ (-4 *3 (-1066)) (-5 *2 (-747))))
((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4337)) (-4 *1 (-481 *4))
- (-4 *4 (-1180)) (-5 *2 (-747)))))
-(((*1 *1 *1) (-5 *1 (-1030))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))))
-(((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-96)))))
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4336)) (-4 *1 (-481 *4))
+ (-4 *4 (-1179)) (-5 *2 (-747)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-356)) (-5 *1 (-278 *3 *2)) (-4 *2 (-1216 *3)))))
(((*1 *2 *3)
- (-12 (-4 *3 (-1202 *2)) (-4 *2 (-1202 *4)) (-5 *1 (-956 *4 *2 *3 *5))
- (-4 *4 (-342)) (-4 *5 (-701 *2 *3)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2 (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4))))
- (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
-(((*1 *2 *1 *3 *3 *3 *2)
- (-12 (-5 *3 (-747)) (-5 *1 (-651 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-13 (-821) (-356))) (-5 *2 (-112)) (-5 *1 (-1028 *4 *3))
- (-4 *3 (-1202 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))))
+ (-12 (-5 *2 (-592 *4)) (-5 *1 (-591 *3 *4)) (-4 *3 (-823))
+ (-4 *4 (-823)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1225 (-621 (-2 (|:| -4160 *4) (|:| -3494 (-1086))))))
+ (-4 *4 (-342)) (-5 *2 (-665 *4)) (-5 *1 (-339 *4)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-621 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-268)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1198 *5 *4)) (-4 *4 (-796)) (-14 *5 (-1142))
+ (-5 *2 (-549)) (-5 *1 (-1080 *4 *5)))))
(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-574 *3)) (-14 *3 *2)))
- ((*1 *2 *1) (-12 (-4 *1 (-1067)) (-5 *2 (-1087)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1066)) (-5 *2 (-1086)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-621 (-923 *3))) (-4 *3 (-444)) (-5 *1 (-353 *3 *4))
- (-14 *4 (-621 (-1143)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-444))
- (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-442 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-621 *7)) (-5 *3 (-1125)) (-4 *7 (-920 *4 *5 *6))
- (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-5 *1 (-442 *4 *5 *6 *7))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-621 *7)) (-5 *3 (-1125)) (-4 *7 (-920 *4 *5 *6))
- (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-5 *1 (-442 *4 *5 *6 *7))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823))
- (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-621 (-756 *3 (-836 *4)))) (-4 *3 (-444))
- (-14 *4 (-621 (-1143))) (-5 *1 (-606 *3 *4)))))
-(((*1 *2 *3 *4 *5 *5 *4 *6)
- (-12 (-5 *4 (-549)) (-5 *6 (-1 (-1231) (-1226 *5) (-1226 *5) (-372)))
- (-5 *3 (-1226 (-372))) (-5 *5 (-372)) (-5 *2 (-1231))
- (-5 *1 (-764)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-323)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-212))))
- ((*1 *2 *1) (-12 (-5 *2 (-1085)) (-5 *1 (-1082))))
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1179)) (-5 *1 (-368 *4 *2))
+ (-4 *2 (-13 (-366 *4) (-10 -7 (-6 -4337)))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-212))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1084)) (-5 *1 (-1081))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-621 (-1148))) (-5 *3 (-1148)) (-5 *1 (-1085)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1143)) (-5 *4 (-923 (-549))) (-5 *2 (-323))
- (-5 *1 (-325))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1143)) (-5 *4 (-1059 (-923 (-549)))) (-5 *2 (-323))
- (-5 *1 (-325))))
- ((*1 *1 *2 *2 *2)
- (-12 (-5 *2 (-747)) (-5 *1 (-651 *3)) (-4 *3 (-1018))
- (-4 *3 (-1067)))))
+ (-12 (-5 *2 (-621 (-1147))) (-5 *3 (-1147)) (-5 *1 (-1084)))))
+(((*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-129)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1138 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))))
(((*1 *2 *2) (|partial| -12 (-5 *2 (-309 (-219))) (-5 *1 (-298))))
((*1 *2 *1)
(|partial| -12
(-5 *2 (-2 (|:| |num| (-863 *3)) (|:| |den| (-863 *3))))
- (-5 *1 (-863 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-112)))))
+ (-5 *1 (-863 *3)) (-4 *3 (-1066)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+ (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444))
+ (-14 *6 (-621 (-1142))) (-5 *2 (-621 (-1015 *5 *6)))
+ (-5 *1 (-606 *5 *6)))))
+(((*1 *2 *3 *4 *4 *3 *3 *5)
+ (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-1138 *3))
+ (-4 *3 (-13 (-423 *6) (-27) (-1164)))
+ (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
+ (-5 *2 (-2 (|:| -2677 *3) (|:| |coeff| *3)))
+ (-5 *1 (-545 *6 *3 *7)) (-4 *7 (-1066))))
+ ((*1 *2 *3 *4 *4 *3 *4 *3 *5)
+ (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-400 (-1138 *3)))
+ (-4 *3 (-13 (-423 *6) (-27) (-1164)))
+ (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
+ (-5 *2 (-2 (|:| -2677 *3) (|:| |coeff| *3)))
+ (-5 *1 (-545 *6 *3 *7)) (-4 *7 (-1066)))))
+(((*1 *1 *1) (-5 *1 (-1030))))
(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3))
- (-4 *3 (-13 (-356) (-1165) (-973))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1245 *3)) (-4 *3 (-356)) (-5 *2 (-112)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-920 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *2 (-444))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *3 (-1032 *4 *5 *6))
- (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *1))))
- (-4 *1 (-1038 *4 *5 *6 *3))))
- ((*1 *1 *1) (-4 *1 (-1184)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-541)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-1202 *3) (-541) (-10 -8 (-15 -3727 ($ $ $))))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-400 *5)) (-4 *5 (-1202 *4)) (-4 *4 (-541))
- (-4 *4 (-1018)) (-4 *2 (-1217 *4)) (-5 *1 (-1220 *4 *5 *6 *2))
- (-4 *6 (-632 *5)))))
-(((*1 *2 *1 *3)
+ (-12 (-4 *4 (-541)) (-5 *2 (-621 (-747))) (-5 *1 (-940 *4 *3))
+ (-4 *3 (-1201 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-747)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018))
+ (-14 *4 (-621 (-1142)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-549)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823)))
+ (-14 *4 (-621 (-1142)))))
+ ((*1 *2 *1 *3)
(-12 (-4 *1 (-246 *4 *3 *5 *6)) (-4 *4 (-1018)) (-4 *3 (-823))
- (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-621 (-747)))))
+ (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-747))))
+ ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-268))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1138 *8)) (-5 *4 (-621 *6)) (-4 *6 (-823))
+ (-4 *8 (-920 *7 *5 *6)) (-4 *5 (-769)) (-4 *7 (-1018))
+ (-5 *2 (-621 (-747))) (-5 *1 (-314 *5 *6 *7 *8))))
+ ((*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-892))))
((*1 *2 *1)
- (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823))
- (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-621 (-747))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
- (-4 *3 (-360 *4))))
- ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
-(((*1 *1) (-5 *1 (-430))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
- (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
- (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
- (|:| |abserr| (-219)) (|:| |relerr| (-219))))
- (-5 *2 (-372)) (-5 *1 (-199)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1123 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1018)) (-5 *2 (-621 *1)) (-4 *1 (-1101 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-816 *3)) (-4 *3 (-1067)))))
+ (-12 (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170))
+ (-5 *2 (-747))))
+ ((*1 *2 *1) (-12 (-4 *1 (-462 *3 *2)) (-4 *3 (-170)) (-4 *2 (-23))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-541)) (-5 *2 (-549)) (-5 *1 (-601 *3 *4))
+ (-4 *4 (-1201 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-685 *3)) (-4 *3 (-1018)) (-5 *2 (-747))))
+ ((*1 *2 *1) (-12 (-4 *1 (-825 *3)) (-4 *3 (-1018)) (-5 *2 (-747))))
+ ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-875 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-876 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-621 *6)) (-4 *1 (-920 *4 *5 *6)) (-4 *4 (-1018))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 (-747)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-920 *4 *5 *3)) (-4 *4 (-1018)) (-4 *5 (-769))
+ (-4 *3 (-823)) (-5 *2 (-747))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-944 *3 *2 *4)) (-4 *3 (-1018)) (-4 *4 (-823))
+ (-4 *2 (-768))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-747))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1187 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1216 *3))
+ (-5 *2 (-549))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1208 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1185 *3))
+ (-5 *2 (-400 (-549)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1244 *3)) (-4 *3 (-356)) (-5 *2 (-809 (-892)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1246 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
+ (-5 *2 (-747)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
+ (-5 *2
+ (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549))
+ (|:| |success| (-112))))
+ (-5 *1 (-765)) (-5 *5 (-549)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1201 *5)) (-4 *5 (-356))
+ (-5 *2
+ (-2 (|:| |ir| (-567 (-400 *6))) (|:| |specpart| (-400 *6))
+ (|:| |polypart| *6)))
+ (-5 *1 (-559 *5 *6)) (-5 *3 (-400 *6)))))
+(((*1 *1) (-5 *1 (-799))))
+(((*1 *2 *3 *4 *3 *5 *3)
+ (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *3 (-549))
+ (-5 *2 (-1006)) (-5 *1 (-731)))))
+(((*1 *1 *2) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1164))))))
+(((*1 *2 *2) (-12 (-5 *2 (-1086)) (-5 *1 (-323)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1106 *2 *3)) (-4 *2 (-13 (-1066) (-34)))
+ (-4 *3 (-13 (-1066) (-34))))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)) (-4 *2 (-534))))
- ((*1 *1 *1) (-4 *1 (-1027))))
-(((*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1229))))
- ((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1229)))))
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2))
+ (-4 *2 (-423 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *1 (-854))
+ (-5 *3 (-621 (-549)))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *1 (-854))
+ (-5 *3 (-621 (-549))))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *5 (-592 *4)) (-5 *6 (-1142))
+ (-4 *4 (-13 (-423 *7) (-27) (-1164)))
+ (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2619 (-621 *4))))
+ (-5 *1 (-551 *7 *4 *3)) (-4 *3 (-632 *4)) (-4 *3 (-1066)))))
+(((*1 *2 *3) (-12 (-5 *3 (-400 (-549))) (-5 *2 (-219)) (-5 *1 (-298)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-621 (-621 (-549)))) (-5 *1 (-942))
+ (-5 *3 (-621 (-549))))))
(((*1 *2 *3) (-12 (-5 *2 (-549)) (-5 *1 (-554 *3)) (-4 *3 (-1009 *2))))
((*1 *2 *1)
- (-12 (-4 *1 (-1070 *3 *4 *2 *5 *6)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *2 (-1067)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1018)) (-5 *1 (-1198 *3 *2)) (-4 *2 (-1202 *3)))))
+ (-12 (-4 *1 (-1069 *3 *4 *2 *5 *6)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *2 (-1066)))))
(((*1 *2 *3 *4)
(-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
(-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 *4))
- (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1067)) (-5 *1 (-876 *3)))))
+ (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1248 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-819)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-114)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-876 *3))) (-5 *1 (-875 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1231))
- (-5 *1 (-441 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1165) (-973)))
- (-5 *1 (-174 *3)))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-728)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-892)) (-4 *1 (-232 *3 *4)) (-4 *4 (-1018))
- (-4 *4 (-1180))))
- ((*1 *1 *2)
- (-12 (-14 *3 (-621 (-1143))) (-4 *4 (-170))
- (-4 *5 (-232 (-3775 *3) (-747)))
- (-14 *6
- (-1 (-112) (-2 (|:| -3493 *2) (|:| -3731 *5))
- (-2 (|:| -3493 *2) (|:| -3731 *5))))
- (-5 *1 (-453 *3 *4 *2 *5 *6 *7)) (-4 *2 (-823))
- (-4 *7 (-920 *4 *5 (-836 *3)))))
- ((*1 *2 *2) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1176)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-178))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-304))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-941))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-965))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1007))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1040)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-621 *10)) (-5 *5 (-112)) (-4 *10 (-1038 *6 *7 *8 *9))
- (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
- (-4 *9 (-1032 *6 *7 *8))
- (-5 *2
- (-621
- (-2 (|:| -2652 (-621 *9)) (|:| -1981 *10) (|:| |ineq| (-621 *9)))))
- (-5 *1 (-959 *6 *7 *8 *9 *10)) (-5 *3 (-621 *9))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-621 *10)) (-5 *5 (-112)) (-4 *10 (-1038 *6 *7 *8 *9))
- (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
- (-4 *9 (-1032 *6 *7 *8))
- (-5 *2
- (-621
- (-2 (|:| -2652 (-621 *9)) (|:| -1981 *10) (|:| |ineq| (-621 *9)))))
- (-5 *1 (-1074 *6 *7 *8 *9 *10)) (-5 *3 (-621 *9)))))
+ (-12 (-5 *2 (-621 (-876 *3))) (-5 *1 (-875 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-149 *2))
+ (-4 *2 (-1179)))))
+(((*1 *1 *1) (-12 (-5 *1 (-172 *2)) (-4 *2 (-300))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549))))
+ ((*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1179))))
+ ((*1 *1 *1) (-4 *1 (-840 *2)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-944 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-768))
+ (-4 *4 (-823)))))
+(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-250)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)))) (-5 *1 (-182 *3 *2))
- (-4 *2 (-13 (-27) (-1165) (-423 (-167 *3))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-541) (-823) (-1009 (-549))))
- (-5 *1 (-182 *4 *2)) (-4 *2 (-13 (-27) (-1165) (-423 (-167 *4))))))
+ (-12 (-4 *3 (-13 (-541) (-145))) (-5 *1 (-526 *3 *2))
+ (-4 *2 (-1216 *3))))
((*1 *2 *2)
- (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-1169 *3 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *3)))))
+ (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-4 *4 (-1201 *3))
+ (-4 *5 (-701 *3 *4)) (-5 *1 (-530 *3 *4 *5 *2)) (-4 *2 (-1216 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-5 *1 (-531 *3 *2))
+ (-4 *2 (-1216 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-13 (-541) (-145)))
+ (-5 *1 (-1118 *3)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-621 (-1138 *5))) (-5 *3 (-1138 *5))
+ (-4 *5 (-164 *4)) (-4 *4 (-534)) (-5 *1 (-147 *4 *5))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-1143))
- (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-1169 *4 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *4))))))
+ (|partial| -12 (-5 *2 (-621 *3)) (-4 *3 (-1201 *5))
+ (-4 *5 (-1201 *4)) (-4 *4 (-342)) (-5 *1 (-351 *4 *5 *3))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-621 (-1138 (-549)))) (-5 *3 (-1138 (-549)))
+ (-5 *1 (-557))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-621 (-1138 *1))) (-5 *3 (-1138 *1))
+ (-4 *1 (-880)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-178))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-304))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-941))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-965))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-1007))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-1040)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1142)) (-4 *5 (-356)) (-5 *2 (-621 (-1173 *5)))
+ (-5 *1 (-1233 *5)) (-5 *4 (-1173 *5)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1202 (-48))))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1107 *4 *5)) (-4 *4 (-13 (-1067) (-34)))
- (-4 *5 (-13 (-1067) (-34))) (-5 *2 (-112)) (-5 *1 (-1108 *4 *5)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
+ (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
+ (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
+ (|:| |abserr| (-219)) (|:| |relerr| (-219))))
+ (-5 *2 (-372)) (-5 *1 (-199)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-729)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1225 (-309 (-219))))
+ (-5 *2
+ (-2 (|:| |additions| (-549)) (|:| |multiplications| (-549))
+ (|:| |exponentiations| (-549)) (|:| |functionCalls| (-549))))
+ (-5 *1 (-298)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-892)) (-5 *4 (-411 *6)) (-4 *6 (-1202 *5))
- (-4 *5 (-1018)) (-5 *2 (-621 *6)) (-5 *1 (-436 *5 *6)))))
-(((*1 *1 *1) (-5 *1 (-1030))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-621 (-592 *6))) (-5 *4 (-1143)) (-5 *2 (-592 *6))
- (-4 *6 (-423 *5)) (-4 *5 (-823)) (-5 *1 (-558 *5 *6)))))
-(((*1 *1 *1 *1) (-4 *1 (-534))))
+ (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *9)) (-4 *8 (-1032 *5 *6 *7))
+ (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769))
+ (-4 *7 (-823)) (-5 *2 (-747)) (-5 *1 (-1036 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *9)) (-4 *8 (-1032 *5 *6 *7))
+ (-4 *9 (-1075 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769))
+ (-4 *7 (-823)) (-5 *2 (-747)) (-5 *1 (-1111 *5 *6 *7 *8 *9)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-745))
+ (-5 *2
+ (-2 (|:| -3947 (-372)) (|:| -2479 (-1124))
+ (|:| |explanations| (-621 (-1124))) (|:| |extra| (-1006))))
+ (-5 *1 (-550))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-745)) (-5 *4 (-1030))
+ (-5 *2
+ (-2 (|:| -3947 (-372)) (|:| -2479 (-1124))
+ (|:| |explanations| (-621 (-1124))) (|:| |extra| (-1006))))
+ (-5 *1 (-550))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-763)) (-5 *3 (-1030))
+ (-5 *4
+ (-2 (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219))
+ (|:| |relerr| (-219))))
+ (-5 *2
+ (-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))
+ (|:| |extra| (-1006))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-763)) (-5 *3 (-1030))
+ (-5 *4
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
+ (|:| |relerr| (-219))))
+ (-5 *2
+ (-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))
+ (|:| |extra| (-1006))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-776)) (-5 *3 (-1030))
+ (-5 *4
+ (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
+ (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
+ (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
+ (|:| |abserr| (-219)) (|:| |relerr| (-219))))
+ (-5 *2 (-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-784))
+ (-5 *2
+ (-2 (|:| -3947 (-372)) (|:| -2479 (-1124))
+ (|:| |explanations| (-621 (-1124)))))
+ (-5 *1 (-781))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-784)) (-5 *4 (-1030))
+ (-5 *2
+ (-2 (|:| -3947 (-372)) (|:| -2479 (-1124))
+ (|:| |explanations| (-621 (-1124)))))
+ (-5 *1 (-781))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-812)) (-5 *3 (-1030))
+ (-5 *4
+ (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))
+ (-5 *2 (-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-812)) (-5 *3 (-1030))
+ (-5 *4
+ (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219)))
+ (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219))))
+ (|:| |ub| (-621 (-816 (-219))))))
+ (-5 *2 (-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-814))
+ (-5 *2
+ (-2 (|:| -3947 (-372)) (|:| -2479 (-1124))
+ (|:| |explanations| (-621 (-1124)))))
+ (-5 *1 (-813))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-814)) (-5 *4 (-1030))
+ (-5 *2
+ (-2 (|:| -3947 (-372)) (|:| -2479 (-1124))
+ (|:| |explanations| (-621 (-1124)))))
+ (-5 *1 (-813))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-866)) (-5 *3 (-1030))
+ (-5 *4
+ (-2 (|:| |pde| (-621 (-309 (-219))))
+ (|:| |constraints|
+ (-621
+ (-2 (|:| |start| (-219)) (|:| |finish| (-219))
+ (|:| |grid| (-747)) (|:| |boundaryType| (-549))
+ (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219))))))
+ (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124))
+ (|:| |tol| (-219))))
+ (-5 *2 (-2 (|:| -3947 (-372)) (|:| |explanations| (-1124))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-869))
+ (-5 *2
+ (-2 (|:| -3947 (-372)) (|:| -2479 (-1124))
+ (|:| |explanations| (-621 (-1124)))))
+ (-5 *1 (-868))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-869)) (-5 *4 (-1030))
+ (-5 *2
+ (-2 (|:| -3947 (-372)) (|:| -2479 (-1124))
+ (|:| |explanations| (-621 (-1124)))))
+ (-5 *1 (-868)))))
+(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-549)) (-5 *3 (-892)) (-5 *1 (-675))))
+ ((*1 *2 *2 *2 *3 *4)
+ (-12 (-5 *2 (-665 *5)) (-5 *3 (-98 *5)) (-5 *4 (-1 *5 *5))
+ (-4 *5 (-356)) (-5 *1 (-949 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-164 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-411 *3)) (-4 *3 (-534)) (-4 *3 (-541))))
+ ((*1 *2 *1) (-12 (-4 *1 (-534)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-773 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-809 *3)) (-4 *3 (-534)) (-4 *3 (-1066))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-816 *3)) (-4 *3 (-534)) (-4 *3 (-1066))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-968 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-979 *3)) (-4 *3 (-1009 (-400 (-549)))))))
(((*1 *1 *2)
(-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5))
(-4 *4 (-366 *3)) (-4 *5 (-366 *3))))
((*1 *1 *2) (-12 (-5 *2 (-621 (-621 (-834)))) (-5 *1 (-834))))
((*1 *2 *1)
- (-12 (-5 *2 (-1109 *3 *4)) (-5 *1 (-964 *3 *4)) (-14 *3 (-892))
+ (-12 (-5 *2 (-1108 *3 *4)) (-5 *1 (-964 *3 *4)) (-14 *3 (-892))
(-4 *4 (-356))))
((*1 *1 *2)
(-12 (-5 *2 (-621 (-621 *5))) (-4 *5 (-1018))
(-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *6 (-232 *4 *5))
(-4 *7 (-232 *3 *5)))))
-(((*1 *2) (-12 (-4 *3 (-170)) (-5 *2 (-1226 *1)) (-4 *1 (-360 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1070 *3 *2 *4 *5 *6)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *2 (-1067)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
+ (-12 (-4 *1 (-1069 *3 *2 *4 *5 *6)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *2 (-1066)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-747)) (-5 *2 (-112))))
+ ((*1 *2 *3 *3)
+ (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1180 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1066)) (-5 *2 (-112))
+ (-5 *1 (-1180 *3)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-860 *4 *5)) (-5 *3 (-860 *4 *6)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *6 (-642 *5)) (-5 *1 (-856 *4 *5 *6)))))
(((*1 *1 *1) (-5 *1 (-525))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-892))
- (-5 *2 (-1226 (-621 (-2 (|:| -4161 *4) (|:| -3493 (-1087))))))
- (-5 *1 (-339 *4)) (-4 *4 (-342)))))
-(((*1 *1 *1) (-12 (-4 *1 (-423 *2)) (-4 *2 (-823)) (-4 *2 (-541))))
- ((*1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6)
- (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219)))
- (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-69 APROD)))) (-5 *4 (-219))
- (-5 *2 (-1006)) (-5 *1 (-733)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-534)) (-5 *2 (-112)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-863 *4)) (-4 *4 (-1067)) (-5 *1 (-860 *4 *3))
- (-4 *3 (-1067)))))
-(((*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-665 *2)) (-5 *4 (-747))
- (-4 *2 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $)))))
- (-4 *5 (-1202 *2)) (-5 *1 (-490 *2 *5 *6)) (-4 *6 (-402 *2 *5)))))
-(((*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-112))
- (-5 *6 (-219)) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-67 APROD))))
- (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-72 MSOLVE))))
- (-5 *2 (-1006)) (-5 *1 (-733)))))
-(((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1231)) (-5 *1 (-1105))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-834))) (-5 *2 (-1231)) (-5 *1 (-1105)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-724)))))
-(((*1 *2 *1) (-12 (-4 *1 (-926)) (-5 *2 (-621 (-621 (-914 (-219)))))))
- ((*1 *2 *1) (-12 (-4 *1 (-945)) (-5 *2 (-621 (-621 (-914 (-219))))))))
-(((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-736)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-112))
- (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-4 *3 (-13 (-27) (-1165) (-423 *6) (-10 -8 (-15 -3846 ($ *7)))))
- (-4 *7 (-821))
- (-4 *8
- (-13 (-1204 *3 *7) (-356) (-1165)
- (-10 -8 (-15 -3456 ($ $)) (-15 -3893 ($ $)))))
- (-5 *2
- (-3 (|:| |%series| *8)
- (|:| |%problem| (-2 (|:| |func| (-1125)) (|:| |prob| (-1125))))))
- (-5 *1 (-415 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1125)) (-4 *9 (-954 *8))
- (-14 *10 (-1143)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-5 *1 (-430)))))
-(((*1 *2 *2 *3 *4 *5)
- (-12 (-5 *2 (-621 *9)) (-5 *3 (-1 (-112) *9))
- (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9))
- (-4 *9 (-1032 *6 *7 *8)) (-4 *6 (-541)) (-4 *7 (-769))
- (-4 *8 (-823)) (-5 *1 (-948 *6 *7 *8 *9)))))
-(((*1 *1) (-5 *1 (-139))))
+ (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-5 *2 (-1124)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-411 *3)) (-4 *3 (-541)) (-5 *1 (-412 *3)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-997 (-816 (-549)))) (-5 *1 (-576 *3)) (-4 *3 (-1018)))))
+ (-12 (-4 *1 (-357 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1066)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892))
+ (-4 *4 (-1018)))))
+(((*1 *2 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-665 *11)) (-5 *4 (-621 (-400 (-923 *8))))
+ (-5 *5 (-747)) (-5 *6 (-1124)) (-4 *8 (-13 (-300) (-145)))
+ (-4 *11 (-920 *8 *10 *9)) (-4 *9 (-13 (-823) (-594 (-1142))))
+ (-4 *10 (-769))
+ (-5 *2
+ (-2
+ (|:| |rgl|
+ (-621
+ (-2 (|:| |eqzro| (-621 *11)) (|:| |neqzro| (-621 *11))
+ (|:| |wcond| (-621 (-923 *8)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1225 (-400 (-923 *8))))
+ (|:| -2619 (-621 (-1225 (-400 (-923 *8))))))))))
+ (|:| |rgsz| (-549))))
+ (-5 *1 (-895 *8 *9 *10 *11)) (-5 *7 (-549)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *1 (-1174 *3))
+ (-4 *3 (-945)))))
+(((*1 *2 *2) (|partial| -12 (-5 *2 (-309 (-219))) (-5 *1 (-260)))))
+(((*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227))))
+ ((*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227)))))
+(((*1 *1 *1 *2 *1)
+ (-12 (-5 *2 (-549)) (-5 *1 (-1122 *3)) (-4 *3 (-1179))))
+ ((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-1213 *2)) (-4 *2 (-1179)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-541))
- (-5 *2 (-2 (|:| -1570 *4) (|:| -4013 *3) (|:| -3675 *3)))
- (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-1032 *3 *4 *5))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-541)) (-4 *3 (-1018))
- (-5 *2 (-2 (|:| -1570 *3) (|:| -4013 *1) (|:| -3675 *1)))
- (-4 *1 (-1202 *3)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-246 *2 *3 *4 *5)) (-4 *2 (-1018)) (-4 *3 (-823))
- (-4 *4 (-259 *3)) (-4 *5 (-769)))))
+ (-12 (-5 *2 (-621 *3)) (-5 *1 (-932 *3)) (-4 *3 (-534)))))
+(((*1 *2 *3 *3 *2)
+ (|partial| -12 (-5 *2 (-747))
+ (-4 *3 (-13 (-703) (-361) (-10 -7 (-15 ** (*3 *3 (-549))))))
+ (-5 *1 (-240 *3)))))
+(((*1 *2)
+ (-12 (-4 *3 (-541)) (-5 *2 (-621 (-665 *3))) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-410 *3)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-747)) (-4 *4 (-300)) (-4 *6 (-1201 *4))
+ (-5 *2 (-1225 (-621 *6))) (-5 *1 (-447 *4 *6)) (-5 *5 (-621 *6)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-776))
+ (-12
(-5 *3
- (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
- (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
- (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
- (|:| |abserr| (-219)) (|:| |relerr| (-219))))
- (-5 *2 (-1006)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 *3)) (-4 *3 (-1076 *5 *6 *7 *8))
- (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *8 (-1032 *5 *6 *7)) (-5 *2 (-112))
- (-5 *1 (-572 *5 *6 *7 *8 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1199 *5 *4)) (-4 *4 (-444)) (-4 *4 (-796))
- (-14 *5 (-1143)) (-5 *2 (-549)) (-5 *1 (-1081 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-418 *3)) (-4 *3 (-1067)) (-5 *2 (-747)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1353 *4)))
- (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-342)) (-5 *2 (-747))))
- ((*1 *2 *1 *1) (|partial| -12 (-4 *1 (-395)) (-5 *2 (-747)))))
-(((*1 *1) (-5 *1 (-430))))
-(((*1 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *3 *4 *5 *6 *2 *7 *8)
- (|partial| -12 (-5 *2 (-621 (-1139 *11))) (-5 *3 (-1139 *11))
- (-5 *4 (-621 *10)) (-5 *5 (-621 *8)) (-5 *6 (-621 (-747)))
- (-5 *7 (-1226 (-621 (-1139 *8)))) (-4 *10 (-823))
- (-4 *8 (-300)) (-4 *11 (-920 *8 *9 *10)) (-4 *9 (-769))
- (-5 *1 (-684 *9 *10 *8 *11)))))
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-747)) (|:| |poli| *2)
+ (|:| |polj| *2)))
+ (-4 *5 (-769)) (-4 *2 (-920 *4 *5 *6)) (-5 *1 (-441 *4 *5 *6 *2))
+ (-4 *4 (-444)) (-4 *6 (-823)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-621 (-549))) (-5 *1 (-1076)) (-5 *3 (-549)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-372)) (-5 *1 (-762)))))
+(((*1 *1) (-5 *1 (-779))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1018))
+ (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1164) (-277)))
+ (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1201 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-356)) (-4 *4 (-541)) (-4 *5 (-1201 *4))
+ (-5 *2 (-2 (|:| -2507 (-601 *4 *5)) (|:| -2848 (-400 *5))))
+ (-5 *1 (-601 *4 *5)) (-5 *3 (-400 *5))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-1130 *3 *4))) (-5 *1 (-1130 *3 *4))
+ (-14 *3 (-892)) (-4 *4 (-1018))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-444)) (-4 *3 (-1018))
+ (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1)))
+ (-4 *1 (-1201 *3)))))
(((*1 *2 *1)
- (-12
- (-5 *2
- (-621
- (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1139 *3))
- (|:| |logand| (-1139 *3)))))
- (-5 *1 (-567 *3)) (-4 *3 (-356)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-665 *3))
- (-4 *3 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $)))))
- (-4 *4 (-1202 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))))
+ (-12 (-14 *3 (-621 (-1142))) (-4 *4 (-170))
+ (-4 *5 (-232 (-3774 *3) (-747)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -3494 *2) (|:| -1714 *5))
+ (-2 (|:| -3494 *2) (|:| -1714 *5))))
+ (-4 *2 (-823)) (-5 *1 (-453 *3 *4 *2 *5 *6 *7))
+ (-4 *7 (-920 *4 *5 (-836 *3))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-328 *3 *4 *5 *6)) (-4 *3 (-356)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-4 *6 (-335 *3 *4 *5)) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1230)) (-5 *1 (-977)))))
+(((*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1142))
+ (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
+ (-5 *2 (-1 *5 *5)) (-5 *1 (-780 *4 *5))
+ (-4 *5 (-13 (-29 *4) (-1164) (-930))))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
+ (-5 *2 (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4))))
+ (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+(((*1 *2 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-1153 *2)) (-4 *2 (-356)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -3726 (-758 *3)) (|:| |coef2| (-758 *3))))
+ (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *2 (-2 (|:| -3726 *1) (|:| |coef2| *1)))
+ (-4 *1 (-1032 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-942)) (-5 *1 (-876 *3)) (-4 *3 (-1066)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-621 (-309 (-219)))) (-5 *3 (-219)) (-5 *2 (-112))
+ (-5 *1 (-204)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1066)) (-4 *5 (-1066))
+ (-4 *6 (-1066)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-660 *4 *5 *6)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372)))
- (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1142))))
- (-5 *1 (-1142)))))
+ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372)))
+ (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1141))))
+ (-5 *1 (-1141)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-167 *4)) (-5 *1 (-179 *4 *3))
+ (-4 *4 (-13 (-356) (-821))) (-4 *3 (-1201 *2)))))
+(((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-729)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-335 *4 *5 *6)) (-4 *4 (-1183))
+ (-4 *5 (-1201 *4)) (-4 *6 (-1201 (-400 *5)))
+ (-5 *2 (-2 (|:| |num| (-665 *5)) (|:| |den| *5))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1124)) (-5 *3 (-621 (-256))) (-5 *1 (-254))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-256)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-309 *3)) (-4 *3 (-13 (-1018) (-823)))
+ (-5 *1 (-217 *3 *4)) (-14 *4 (-621 (-1142))))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3))
+ (-4 *3 (-1066)))))
(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-114)) (-5 *4 (-747)) (-4 *5 (-444)) (-4 *5 (-823))
- (-4 *5 (-1009 (-549))) (-4 *5 (-541)) (-5 *1 (-41 *5 *2))
- (-4 *2 (-423 *5))
- (-4 *2
- (-13 (-356) (-295)
- (-10 -8 (-15 -1394 ((-1092 *5 (-592 $)) $))
- (-15 -1403 ((-1092 *5 (-592 $)) $))
- (-15 -3846 ($ (-1092 *5 (-592 $))))))))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-549)) (-4 *1 (-1186 *4)) (-4 *4 (-1018)) (-4 *4 (-541))
- (-5 *2 (-400 (-923 *4)))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-549)) (-4 *1 (-1186 *4)) (-4 *4 (-1018)) (-4 *4 (-541))
- (-5 *2 (-400 (-923 *4))))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-621 *4)) (-4 *4 (-1067)) (-4 *4 (-1180)) (-5 *2 (-112))
- (-5 *1 (-1123 *4)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-316 *3 *4)) (-4 *3 (-1067))
- (-4 *4 (-130)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1158)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-621 (-621 *7)))
- (-5 *1 (-440 *4 *5 *6 *7)) (-5 *3 (-621 *7))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769))
- (-4 *7 (-823)) (-4 *8 (-920 *5 *6 *7)) (-5 *2 (-621 (-621 *8)))
- (-5 *1 (-440 *5 *6 *7 *8)) (-5 *3 (-621 *8))))
+ (|partial| -12 (-5 *3 (-621 (-592 *2))) (-5 *4 (-1142))
+ (-4 *2 (-13 (-27) (-1164) (-423 *5)))
+ (-4 *5 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-270 *5 *2)))))
+(((*1 *2 *2) (-12 (-5 *2 (-665 (-309 (-549)))) (-5 *1 (-1002)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018)) (-4 *2 (-356))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-356)) (-5 *1 (-635 *4 *2))
+ (-4 *2 (-632 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-164 *3)) (-4 *3 (-170)) (-4 *3 (-1027)) (-4 *3 (-1164))
+ (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1138 (-549))) (-5 *1 (-185)) (-5 *3 (-549))))
+ ((*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-759 *2)) (-4 *2 (-170))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-621 (-621 *7)))
- (-5 *1 (-440 *4 *5 *6 *7)) (-5 *3 (-621 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769))
- (-4 *7 (-823)) (-4 *8 (-920 *5 *6 *7)) (-5 *2 (-621 (-621 *8)))
- (-5 *1 (-440 *5 *6 *7 *8)) (-5 *3 (-621 *8)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-219)) (-5 *4 (-549))
- (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422))))
- (-5 *2 (-1006)) (-5 *1 (-725)))))
+ (-12 (-5 *2 (-1138 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-816 (-219)))) (-5 *4 (-219)) (-5 *2 (-621 *4))
- (-5 *1 (-260)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-747)))))
-(((*1 *2 *3 *4 *4 *5 *3 *6)
- (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-621 *3)) (-5 *6 (-1139 *3))
- (-4 *3 (-13 (-423 *7) (-27) (-1165)))
- (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-545 *7 *3 *8)) (-4 *8 (-1067))))
- ((*1 *2 *3 *4 *4 *5 *4 *3 *6)
- (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-621 *3))
- (-5 *6 (-400 (-1139 *3))) (-4 *3 (-13 (-423 *7) (-27) (-1165)))
- (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-545 *7 *3 *8)) (-4 *8 (-1067)))))
-(((*1 *1 *1) (-4 *1 (-1027)))
- ((*1 *1 *1 *2 *2)
- (-12 (-4 *1 (-1204 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1204 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-981 *3)) (-4 *3 (-1180)) (-4 *3 (-1067))
- (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1125)) (-4 *4 (-13 (-300) (-145)))
- (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769))
+ (-12 (-5 *4 (-1142))
+ (-4 *5 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-5 *2 (-567 *3)) (-5 *1 (-542 *5 *3))
+ (-4 *3 (-13 (-27) (-1164) (-423 *5))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1201 *6))
+ (-4 *6 (-13 (-27) (-423 *5)))
+ (-4 *5 (-13 (-823) (-541) (-1009 (-549)))) (-4 *8 (-1201 (-400 *7)))
+ (-5 *2 (-567 *3)) (-5 *1 (-537 *5 *6 *7 *8 *3))
+ (-4 *3 (-335 *6 *7 *8)))))
+(((*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1011)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1179)) (-5 *1 (-180 *3 *2)) (-4 *2 (-650 *3)))))
+(((*1 *2 *1)
+ (-12
(-5 *2
(-621
- (-2 (|:| |eqzro| (-621 *7)) (|:| |neqzro| (-621 *7))
- (|:| |wcond| (-621 (-923 *4)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1226 (-400 (-923 *4))))
- (|:| -1949 (-621 (-1226 (-400 (-923 *4))))))))))
- (-5 *1 (-895 *4 *5 *6 *7)) (-4 *7 (-920 *4 *6 *5)))))
+ (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1138 *3))
+ (|:| |logand| (-1138 *3)))))
+ (-5 *1 (-567 *3)) (-4 *3 (-356)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1059 (-816 *3))) (-4 *3 (-13 (-1165) (-930) (-29 *5)))
- (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
- (-5 *2
- (-3 (|:| |f1| (-816 *3)) (|:| |f2| (-621 (-816 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-213 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1059 (-816 *3))) (-5 *5 (-1125))
- (-4 *3 (-13 (-1165) (-930) (-29 *6)))
- (-4 *6 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
- (-5 *2
- (-3 (|:| |f1| (-816 *3)) (|:| |f2| (-621 (-816 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-213 *6 *3))))
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769))
+ (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)) (-5 *2 (-621 *3))
+ (-5 *1 (-572 *5 *6 *7 *8 *3)) (-4 *3 (-1075 *5 *6 *7 *8))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1059 (-816 (-309 *5))))
- (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
- (-5 *2
- (-3 (|:| |f1| (-816 (-309 *5))) (|:| |f2| (-621 (-816 (-309 *5))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-214 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-400 (-923 *6))) (-5 *4 (-1059 (-816 (-309 *6))))
- (-5 *5 (-1125))
- (-4 *6 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145)))
(-5 *2
- (-3 (|:| |f1| (-816 (-309 *6))) (|:| |f2| (-621 (-816 (-309 *6))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-214 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1059 (-816 (-400 (-923 *5))))) (-5 *3 (-400 (-923 *5)))
- (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-621 (-2 (|:| -3609 (-1138 *5)) (|:| -1981 (-621 (-923 *5))))))
+ (-5 *1 (-1044 *5 *6)) (-5 *3 (-621 (-923 *5)))
+ (-14 *6 (-621 (-1142)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-300) (-145)))
(-5 *2
- (-3 (|:| |f1| (-816 (-309 *5))) (|:| |f2| (-621 (-816 (-309 *5))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-214 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1059 (-816 (-400 (-923 *6))))) (-5 *5 (-1125))
- (-5 *3 (-400 (-923 *6)))
- (-4 *6 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-621 (-2 (|:| -3609 (-1138 *4)) (|:| -1981 (-621 (-923 *4))))))
+ (-5 *1 (-1044 *4 *5)) (-5 *3 (-621 (-923 *4)))
+ (-14 *5 (-621 (-1142)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145)))
(-5 *2
- (-3 (|:| |f1| (-816 (-309 *6))) (|:| |f2| (-621 (-816 (-309 *6))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-214 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1143))
- (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
- (-5 *2 (-3 *3 (-621 *3))) (-5 *1 (-421 *5 *3))
- (-4 *3 (-13 (-1165) (-930) (-29 *5)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-466 *3 *4 *5))
- (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3)))
- ((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-309 (-372))) (-5 *4 (-1061 (-816 (-372))))
- (-5 *5 (-372)) (-5 *6 (-1030)) (-5 *2 (-1006)) (-5 *1 (-550))))
- ((*1 *2 *3) (-12 (-5 *3 (-745)) (-5 *2 (-1006)) (-5 *1 (-550))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-309 (-372))) (-5 *4 (-1061 (-816 (-372))))
- (-5 *5 (-372)) (-5 *2 (-1006)) (-5 *1 (-550))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-309 (-372))) (-5 *4 (-1061 (-816 (-372))))
- (-5 *5 (-372)) (-5 *2 (-1006)) (-5 *1 (-550))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-309 (-372))) (-5 *4 (-1061 (-816 (-372))))
- (-5 *2 (-1006)) (-5 *1 (-550))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-1061 (-816 (-372)))))
- (-5 *2 (-1006)) (-5 *1 (-550))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-1061 (-816 (-372)))))
- (-5 *5 (-372)) (-5 *2 (-1006)) (-5 *1 (-550))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-1061 (-816 (-372)))))
- (-5 *5 (-372)) (-5 *2 (-1006)) (-5 *1 (-550))))
- ((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-1061 (-816 (-372)))))
- (-5 *5 (-372)) (-5 *6 (-1030)) (-5 *2 (-1006)) (-5 *1 (-550))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-309 (-372))) (-5 *4 (-1059 (-816 (-372))))
- (-5 *5 (-1125)) (-5 *2 (-1006)) (-5 *1 (-550))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-309 (-372))) (-5 *4 (-1059 (-816 (-372))))
- (-5 *5 (-1143)) (-5 *2 (-1006)) (-5 *1 (-550))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-549)))) (-4 *5 (-1202 *4))
- (-5 *2 (-567 (-400 *5))) (-5 *1 (-553 *4 *5)) (-5 *3 (-400 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1143)) (-4 *5 (-145))
- (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549))))
- (-5 *2 (-3 (-309 *5) (-621 (-309 *5)))) (-5 *1 (-570 *5))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-717 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-823))
- (-4 *3 (-38 (-400 (-549))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1143)) (-5 *1 (-923 *3)) (-4 *3 (-38 (-400 (-549))))
- (-4 *3 (-1018))))
- ((*1 *1 *1 *2 *3)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-4 *2 (-823))
- (-5 *1 (-1093 *3 *2 *4)) (-4 *4 (-920 *3 (-521 *2) *2))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018))
- (-5 *1 (-1127 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1134 *3 *4 *5))
- (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1140 *3 *4 *5))
- (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1141 *3 *4 *5))
- (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3)))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *1 (-1174 *3)) (-4 *3 (-38 (-400 (-549))))
- (-4 *3 (-1018))))
- ((*1 *1 *1 *2)
- (-1536
- (-12 (-5 *2 (-1143)) (-4 *1 (-1186 *3)) (-4 *3 (-1018))
- (-12 (-4 *3 (-29 (-549))) (-4 *3 (-930)) (-4 *3 (-1165))
- (-4 *3 (-38 (-400 (-549))))))
- (-12 (-5 *2 (-1143)) (-4 *1 (-1186 *3)) (-4 *3 (-1018))
- (-12 (|has| *3 (-15 -2272 ((-621 *2) *3)))
- (|has| *3 (-15 -3893 (*3 *3 *2))) (-4 *3 (-38 (-400 (-549))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1186 *2)) (-4 *2 (-1018)) (-4 *2 (-38 (-400 (-549))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1190 *3 *4 *5))
- (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1202 *2)) (-4 *2 (-1018)) (-4 *2 (-38 (-400 (-549))))))
- ((*1 *1 *1 *2)
- (-1536
- (-12 (-5 *2 (-1143)) (-4 *1 (-1207 *3)) (-4 *3 (-1018))
- (-12 (-4 *3 (-29 (-549))) (-4 *3 (-930)) (-4 *3 (-1165))
- (-4 *3 (-38 (-400 (-549))))))
- (-12 (-5 *2 (-1143)) (-4 *1 (-1207 *3)) (-4 *3 (-1018))
- (-12 (|has| *3 (-15 -2272 ((-621 *2) *3)))
- (|has| *3 (-15 -3893 (*3 *3 *2))) (-4 *3 (-38 (-400 (-549))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1207 *2)) (-4 *2 (-1018)) (-4 *2 (-38 (-400 (-549))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1211 *3 *4 *5))
- (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-1536
- (-12 (-5 *2 (-1143)) (-4 *1 (-1217 *3)) (-4 *3 (-1018))
- (-12 (-4 *3 (-29 (-549))) (-4 *3 (-930)) (-4 *3 (-1165))
- (-4 *3 (-38 (-400 (-549))))))
- (-12 (-5 *2 (-1143)) (-4 *1 (-1217 *3)) (-4 *3 (-1018))
- (-12 (|has| *3 (-15 -2272 ((-621 *2) *3)))
- (|has| *3 (-15 -3893 (*3 *3 *2))) (-4 *3 (-38 (-400 (-549))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1217 *2)) (-4 *2 (-1018)) (-4 *2 (-38 (-400 (-549))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1218 *3 *4 *5))
- (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *1 (-58 *3)) (-4 *3 (-1180))))
- ((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-5 *1 (-58 *3)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-1180)) (-4 *2 (-823))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-366 *3)) (-4 *3 (-1180))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-939 *2)) (-4 *2 (-823))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1101 *2)) (-4 *2 (-1018))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-621 *1)) (-4 *1 (-1101 *3)) (-4 *3 (-1018))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-621 (-1131 *3 *4))) (-5 *1 (-1131 *3 *4))
- (-14 *3 (-892)) (-4 *4 (-1018))))
- ((*1 *1 *1 *1)
- (-12 (-5 *1 (-1131 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))))
-(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-977)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1143)) (-5 *1 (-273)))))
+ (-621 (-2 (|:| -3609 (-1138 *5)) (|:| -1981 (-621 (-923 *5))))))
+ (-5 *1 (-1044 *5 *6)) (-5 *3 (-621 (-923 *5)))
+ (-14 *6 (-621 (-1142))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
+ ((*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))))
(((*1 *2 *2 *3)
(-12 (-5 *3 (-400 (-549))) (-4 *4 (-1009 (-549)))
(-4 *4 (-13 (-823) (-541))) (-5 *1 (-32 *4 *2)) (-4 *2 (-423 *4))))
@@ -2089,28 +2160,28 @@
((*1 *1 *1 *2) (-12 (-4 *1 (-237)) (-5 *2 (-549))))
((*1 *2 *2 *3)
(-12 (-5 *3 (-400 (-549))) (-4 *4 (-356)) (-4 *4 (-38 *3))
- (-4 *5 (-1217 *4)) (-5 *1 (-271 *4 *5 *2)) (-4 *2 (-1188 *4 *5))))
+ (-4 *5 (-1216 *4)) (-5 *1 (-271 *4 *5 *2)) (-4 *2 (-1187 *4 *5))))
((*1 *2 *2 *3)
(-12 (-5 *3 (-400 (-549))) (-4 *4 (-356)) (-4 *4 (-38 *3))
- (-4 *5 (-1186 *4)) (-5 *1 (-272 *4 *5 *2 *6)) (-4 *2 (-1209 *4 *5))
+ (-4 *5 (-1185 *4)) (-5 *1 (-272 *4 *5 *2 *6)) (-4 *2 (-1208 *4 *5))
(-4 *6 (-954 *5))))
((*1 *1 *1 *1) (-4 *1 (-277)))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-354 *2)) (-4 *2 (-1067))))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-354 *2)) (-4 *2 (-1066))))
((*1 *1 *1 *1) (-5 *1 (-372)))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-5 *1 (-379 *2)) (-4 *2 (-1067))))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-5 *1 (-379 *2)) (-4 *2 (-1066))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-423 *3)) (-4 *3 (-823)) (-4 *3 (-1079))))
+ (-12 (-5 *2 (-747)) (-4 *1 (-423 *3)) (-4 *3 (-823)) (-4 *3 (-1078))))
((*1 *1 *1 *2) (-12 (-4 *1 (-465)) (-5 *2 (-549))))
((*1 *1 *1 *2)
(-12 (-5 *2 (-747)) (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823))
(-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5))))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-1226 *4)) (-5 *3 (-549)) (-4 *4 (-342))
+ (-12 (-5 *2 (-1225 *4)) (-5 *3 (-549)) (-4 *4 (-342))
(-5 *1 (-519 *4))))
((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-525))))
((*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-525))))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-747)) (-4 *4 (-1067))
+ (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-747)) (-4 *4 (-1066))
(-5 *1 (-658 *4))))
((*1 *1 *1 *2)
(-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018))
@@ -2135,47 +2206,40 @@
((*1 *1 *2 *3)
(-12 (-5 *2 (-114)) (-5 *3 (-549)) (-5 *1 (-810 *4)) (-4 *4 (-1018))))
((*1 *1 *1 *1) (-5 *1 (-834)))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1067))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-863 *3)) (-4 *3 (-1067))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1066))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-863 *3)) (-4 *3 (-1066))))
((*1 *1 *1 *2) (-12 (-4 *1 (-973)) (-5 *2 (-400 (-549)))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1079)) (-5 *2 (-892))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1078)) (-5 *2 (-892))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-549)) (-4 *1 (-1090 *3 *4 *5 *6)) (-4 *4 (-1018))
+ (-12 (-5 *2 (-549)) (-4 *1 (-1089 *3 *4 *5 *6)) (-4 *4 (-1018))
(-4 *5 (-232 *3 *4)) (-4 *6 (-232 *3 *4)) (-4 *4 (-356))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3))))
((*1 *1 *1 *2)
- (-12 (-4 *1 (-1217 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
+ (-12 (-4 *1 (-1216 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
+(((*1 *2)
+ (-12
+ (-5 *2 (-2 (|:| -3999 (-621 (-1142))) (|:| -1332 (-621 (-1142)))))
+ (-5 *1 (-1181)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1006)) (-5 *3 (-1142)) (-5 *1 (-186)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-834)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549))))
- (-5 *2 (-167 (-309 *4))) (-5 *1 (-182 *4 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 (-167 *4))))))
+ (-12 (-5 *3 (-747)) (-5 *2 (-1230)) (-5 *1 (-837 *4 *5 *6 *7))
+ (-4 *4 (-1018)) (-14 *5 (-621 (-1142))) (-14 *6 (-621 *3))
+ (-14 *7 *3)))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *2 (-167 *3)) (-5 *1 (-1169 *4 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *4))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-621 *3)) (-4 *3 (-920 *4 *6 *5)) (-4 *4 (-444))
- (-4 *5 (-823)) (-4 *6 (-769)) (-5 *1 (-958 *4 *5 *6 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 (-621 *2))) (-5 *4 (-621 *5))
- (-4 *5 (-38 (-400 (-549)))) (-4 *2 (-1217 *5))
- (-5 *1 (-1219 *5 *2)))))
-(((*1 *2 *3 *4 *4 *3 *5)
- (-12 (-5 *4 (-592 *3)) (-5 *5 (-1139 *3))
- (-4 *3 (-13 (-423 *6) (-27) (-1165)))
- (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *2 (-567 *3)) (-5 *1 (-545 *6 *3 *7)) (-4 *7 (-1067))))
- ((*1 *2 *3 *4 *4 *4 *3 *5)
- (-12 (-5 *4 (-592 *3)) (-5 *5 (-400 (-1139 *3)))
- (-4 *3 (-13 (-423 *6) (-27) (-1165)))
- (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *2 (-567 *3)) (-5 *1 (-545 *6 *3 *7)) (-4 *7 (-1067)))))
-(((*1 *2 *1) (-12 (-5 *1 (-885 *2)) (-4 *2 (-300)))))
+ (-12 (-5 *3 (-747)) (-4 *4 (-1018)) (-4 *5 (-823)) (-4 *6 (-769))
+ (-14 *8 (-621 *5)) (-5 *2 (-1230))
+ (-5 *1 (-1237 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-920 *4 *6 *5))
+ (-14 *9 (-621 *3)) (-14 *10 *3))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-621 *8)) (-5 *4 (-135 *5 *6 *7)) (-14 *5 (-549))
(-14 *6 (-747)) (-4 *7 (-170)) (-4 *8 (-170))
@@ -2185,126 +2249,134 @@
(-4 *8 (-1018)) (-4 *2 (-920 *9 *7 *5))
(-5 *1 (-705 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-769))
(-4 *4 (-920 *8 *6 *5)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1123 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-665 *1)) (-5 *4 (-1226 *1)) (-4 *1 (-617 *5))
- (-4 *5 (-1018))
- (-5 *2 (-2 (|:| -3521 (-665 *5)) (|:| |vec| (-1226 *5))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-665 *1)) (-4 *1 (-617 *4)) (-4 *4 (-1018))
- (-5 *2 (-665 *4)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-549)) (-4 *5 (-342)) (-5 *2 (-411 (-1139 (-1139 *5))))
- (-5 *1 (-1178 *5)) (-5 *3 (-1139 (-1139 *5))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-892)) (-5 *2 (-1139 *4)) (-5 *1 (-350 *4))
- (-4 *4 (-342)))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-621 (-923 *6))) (-5 *4 (-621 (-1143))) (-4 *6 (-444))
- (-5 *2 (-621 (-621 *7))) (-5 *1 (-527 *6 *7 *5)) (-4 *7 (-356))
- (-4 *5 (-13 (-356) (-821))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-621 *5)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549))
- (-14 *4 (-747)) (-4 *5 (-170)))))
-(((*1 *2 *3 *3 *3 *4 *5)
- (-12 (-5 *5 (-621 (-621 (-219)))) (-5 *4 (-219))
- (-5 *2 (-621 (-914 *4))) (-5 *1 (-1176)) (-5 *3 (-914 *4)))))
-(((*1 *1 *2) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1165))))))
+(((*1 *1) (-5 *1 (-430))))
(((*1 *1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-256))))
((*1 *1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-256)))))
-(((*1 *1 *2)
- (-12
- (-5 *2
- (-621
- (-2
- (|:| -3337
- (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
- (|:| |fn| (-1226 (-309 (-219))))
- (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219)))
- (|:| |g| (-309 (-219))) (|:| |abserr| (-219))
- (|:| |relerr| (-219))))
- (|:| -1793
- (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372))
- (|:| |expense| (-372)) (|:| |accuracy| (-372))
- (|:| |intermediateResults| (-372)))))))
- (-5 *1 (-779)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-119 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *3 *2)
- (-12 (-4 *1 (-763)) (-5 *2 (-1006))
- (-5 *3
- (-2 (|:| |fn| (-309 (-219)))
- (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219))
- (|:| |relerr| (-219))))))
- ((*1 *2 *3 *2)
- (-12 (-4 *1 (-763)) (-5 *2 (-1006))
- (-5 *3
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
- (|:| |relerr| (-219)))))))
-(((*1 *2 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-724)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-300)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-897))))
- ((*1 *2 *1) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-898)))))
-(((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1125)) (-5 *1 (-687)))))
+(((*1 *1 *2) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))))
+(((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
+ (-4 *3 (-360 *4))))
+ ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1243 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
+ (-12 (-5 *2 (-621 *5)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549))
+ (-14 *4 (-747)) (-4 *5 (-170)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-273))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
(-5 *2 (-112))))
((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1249 *3 *4)) (-4 *3 (-1018))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1248 *3 *4)) (-4 *3 (-1018))
(-4 *4 (-819)))))
-(((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-396 *3)) (-4 *3 (-397))))
- ((*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-396 *3)) (-4 *3 (-397))))
- ((*1 *2 *2) (-12 (-5 *2 (-892)) (|has| *1 (-6 -4328)) (-4 *1 (-397))))
- ((*1 *2) (-12 (-4 *1 (-397)) (-5 *2 (-892))))
- ((*1 *2 *1) (-12 (-4 *1 (-840 *3)) (-5 *2 (-1123 (-549))))))
-(((*1 *1 *2 *3)
- (-12
- (-5 *3
- (-621
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2)
- (|:| |xpnt| (-549)))))
- (-4 *2 (-541)) (-5 *1 (-411 *2))))
- ((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |contp| (-549))
- (|:| -4024 (-621 (-2 (|:| |irr| *4) (|:| -2495 (-549)))))))
- (-4 *4 (-1202 (-549))) (-5 *2 (-411 *4)) (-5 *1 (-434 *4)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-621 (-549))) (-5 *3 (-665 (-549))) (-5 *1 (-1076)))))
+(((*1 *1 *1 *1) (-4 *1 (-465))) ((*1 *1 *1 *1) (-4 *1 (-738))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-621 (-495 *3 *4 *5 *6))) (-4 *3 (-356)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823))
+ (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-621 *1)) (-5 *3 (-621 *7)) (-4 *1 (-1038 *4 *5 *6 *7))
+ (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *1))
+ (-4 *1 (-1038 *4 *5 *6 *7))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 *1))
+ (-4 *1 (-1038 *4 *5 *6 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066)))))
+(((*1 *1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018))
+ (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-892)) (-5 *2 (-1230)) (-5 *1 (-1226))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-892)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-898))
+ (-5 *2
+ (-2 (|:| |brans| (-621 (-621 (-914 (-219)))))
+ (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))))
+ (-5 *1 (-151))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-898)) (-5 *4 (-400 (-549)))
+ (-5 *2
+ (-2 (|:| |brans| (-621 (-621 (-914 (-219)))))
+ (|:| |xValues| (-1060 (-219))) (|:| |yValues| (-1060 (-219)))))
+ (-5 *1 (-151)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-300)) (-4 *3 (-963 *2)) (-4 *4 (-1201 *3))
+ (-5 *1 (-406 *2 *3 *4 *5)) (-4 *5 (-13 (-402 *3 *4) (-1009 *3))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-621 *7)) (|:| |badPols| (-621 *7))))
+ (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))))
+(((*1 *2 *3 *4 *5 *3 *6 *3)
+ (-12 (-5 *3 (-549)) (-5 *5 (-167 (-219))) (-5 *6 (-1124))
+ (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
- (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-845)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-13 (-541) (-145))) (-5 *1 (-1196 *3 *2))
- (-4 *2 (-1202 *3)))))
+ (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5))
+ (-5 *2 (-2 (|:| -2679 (-621 *6)) (|:| -1358 (-621 *6)))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3))
+ (-4 *5 (-366 *3)) (-5 *2 (-549))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
+ (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-549)))))
+(((*1 *2 *2) (-12 (-5 *2 (-621 (-309 (-219)))) (-5 *1 (-260)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-238 *2)) (-4 *2 (-1179))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1179))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1179))))
+ ((*1 *1 *1 *2)
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-1213 *2)) (-4 *2 (-1179))))
+ ((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-1213 *2)) (-4 *2 (-1179)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
- ((*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
+ (-12 (-5 *3 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-5 *2 (-1230)) (-5 *1 (-1145))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1142))
+ (-5 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-5 *2 (-1230))
+ (-5 *1 (-1145))))
+ ((*1 *2 *3 *4 *1)
+ (-12 (-5 *3 (-1142))
+ (-5 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-5 *2 (-1230))
+ (-5 *1 (-1145)))))
(((*1 *2 *3 *2)
- (-12 (-5 *3 (-747)) (-5 *1 (-759 *2)) (-4 *2 (-38 (-400 (-549))))
- (-4 *2 (-170)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-1143)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-4 *1 (-149 *3))))
+ (-12 (-5 *2 (-621 (-621 (-621 *4)))) (-5 *3 (-621 *4)) (-4 *4 (-823))
+ (-5 *1 (-1150 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-665 (-309 (-219)))) (-5 *2 (-372)) (-5 *1 (-199)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-4 *1 (-149 *3))))
((*1 *1 *2)
(-12
- (-5 *2 (-621 (-2 (|:| -3731 (-747)) (|:| -2597 *4) (|:| |num| *4))))
- (-4 *4 (-1202 *3)) (-4 *3 (-13 (-356) (-145))) (-5 *1 (-392 *3 *4))))
+ (-5 *2 (-621 (-2 (|:| -1714 (-747)) (|:| -2596 *4) (|:| |num| *4))))
+ (-4 *4 (-1201 *3)) (-4 *3 (-13 (-356) (-145))) (-5 *1 (-392 *3 *4))))
((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
+ (-12 (-5 *2 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
(-5 *3 (-621 (-923 (-549)))) (-5 *4 (-112)) (-5 *1 (-430))))
((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-5 *3 (-621 (-1143))) (-5 *4 (-112)) (-5 *1 (-430))))
+ (-12 (-5 *2 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-5 *3 (-621 (-1142))) (-5 *4 (-112)) (-5 *1 (-430))))
((*1 *2 *1)
- (-12 (-5 *2 (-1123 *3)) (-5 *1 (-581 *3)) (-4 *3 (-1180))))
+ (-12 (-5 *2 (-1122 *3)) (-5 *1 (-581 *3)) (-4 *3 (-1179))))
((*1 *1 *1 *1) (-12 (-4 *1 (-612 *2)) (-4 *2 (-170))))
((*1 *1 *1 *2)
(-12 (-5 *2 (-648 *3)) (-4 *3 (-823)) (-5 *1 (-640 *3 *4))
@@ -2316,164 +2388,195 @@
(-12 (-5 *2 (-648 *3)) (-4 *3 (-823)) (-5 *1 (-640 *3 *4))
(-4 *4 (-170))))
((*1 *1 *2)
- (-12 (-5 *2 (-621 (-621 (-621 *3)))) (-4 *3 (-1067))
+ (-12 (-5 *2 (-621 (-621 (-621 *3)))) (-4 *3 (-1066))
(-5 *1 (-651 *3))))
((*1 *1 *2 *3)
- (-12 (-5 *1 (-690 *2 *3 *4)) (-4 *2 (-823)) (-4 *3 (-1067))
+ (-12 (-5 *1 (-690 *2 *3 *4)) (-4 *2 (-823)) (-4 *3 (-1066))
(-14 *4
- (-1 (-112) (-2 (|:| -3493 *2) (|:| -3731 *3))
- (-2 (|:| -3493 *2) (|:| -3731 *3))))))
+ (-1 (-112) (-2 (|:| -3494 *2) (|:| -1714 *3))
+ (-2 (|:| -3494 *2) (|:| -1714 *3))))))
((*1 *1 *2 *3)
- (-12 (-5 *1 (-844 *2 *3)) (-4 *2 (-1180)) (-4 *3 (-1180))))
+ (-12 (-5 *1 (-844 *2 *3)) (-4 *2 (-1179)) (-4 *3 (-1179))))
((*1 *1 *2)
- (-12 (-5 *2 (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 *4))))
- (-4 *4 (-1067)) (-5 *1 (-860 *3 *4)) (-4 *3 (-1067))))
+ (-12 (-5 *2 (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 *4))))
+ (-4 *4 (-1066)) (-5 *1 (-860 *3 *4)) (-4 *3 (-1066))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 *5)) (-4 *5 (-13 (-1067) (-34)))
- (-5 *2 (-621 (-1107 *3 *5))) (-5 *1 (-1107 *3 *5))
- (-4 *3 (-13 (-1067) (-34)))))
+ (-12 (-5 *4 (-621 *5)) (-4 *5 (-13 (-1066) (-34)))
+ (-5 *2 (-621 (-1106 *3 *5))) (-5 *1 (-1106 *3 *5))
+ (-4 *3 (-13 (-1066) (-34)))))
((*1 *2 *3)
- (-12 (-5 *3 (-621 (-2 (|:| |val| *4) (|:| -1981 *5))))
- (-4 *4 (-13 (-1067) (-34))) (-4 *5 (-13 (-1067) (-34)))
- (-5 *2 (-621 (-1107 *4 *5))) (-5 *1 (-1107 *4 *5))))
+ (-12 (-5 *3 (-621 (-2 (|:| |val| *4) (|:| -1979 *5))))
+ (-4 *4 (-13 (-1066) (-34))) (-4 *5 (-13 (-1066) (-34)))
+ (-5 *2 (-621 (-1106 *4 *5))) (-5 *1 (-1106 *4 *5))))
((*1 *1 *2)
- (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -1981 *4)))
- (-4 *3 (-13 (-1067) (-34))) (-4 *4 (-13 (-1067) (-34)))
- (-5 *1 (-1107 *3 *4))))
+ (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -1979 *4)))
+ (-4 *3 (-13 (-1066) (-34))) (-4 *4 (-13 (-1066) (-34)))
+ (-5 *1 (-1106 *3 *4))))
((*1 *1 *2 *3)
- (-12 (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1067) (-34)))
- (-4 *3 (-13 (-1067) (-34)))))
+ (-12 (-5 *1 (-1106 *2 *3)) (-4 *2 (-13 (-1066) (-34)))
+ (-4 *3 (-13 (-1066) (-34)))))
((*1 *1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1067) (-34)))
- (-4 *3 (-13 (-1067) (-34)))))
+ (-12 (-5 *4 (-112)) (-5 *1 (-1106 *2 *3)) (-4 *2 (-13 (-1066) (-34)))
+ (-4 *3 (-13 (-1066) (-34)))))
((*1 *1 *2 *3 *2 *4)
- (-12 (-5 *4 (-621 *3)) (-4 *3 (-13 (-1067) (-34)))
- (-5 *1 (-1108 *2 *3)) (-4 *2 (-13 (-1067) (-34)))))
+ (-12 (-5 *4 (-621 *3)) (-4 *3 (-13 (-1066) (-34)))
+ (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1066) (-34)))))
((*1 *1 *2 *3 *4)
- (-12 (-5 *4 (-621 (-1107 *2 *3))) (-4 *2 (-13 (-1067) (-34)))
- (-4 *3 (-13 (-1067) (-34))) (-5 *1 (-1108 *2 *3))))
+ (-12 (-5 *4 (-621 (-1106 *2 *3))) (-4 *2 (-13 (-1066) (-34)))
+ (-4 *3 (-13 (-1066) (-34))) (-5 *1 (-1107 *2 *3))))
((*1 *1 *2 *3 *4)
- (-12 (-5 *4 (-621 (-1108 *2 *3))) (-5 *1 (-1108 *2 *3))
- (-4 *2 (-13 (-1067) (-34))) (-4 *3 (-13 (-1067) (-34)))))
+ (-12 (-5 *4 (-621 (-1107 *2 *3))) (-5 *1 (-1107 *2 *3))
+ (-4 *2 (-13 (-1066) (-34))) (-4 *3 (-13 (-1066) (-34)))))
((*1 *1 *2)
- (-12 (-5 *2 (-1107 *3 *4)) (-4 *3 (-13 (-1067) (-34)))
- (-4 *4 (-13 (-1067) (-34))) (-5 *1 (-1108 *3 *4))))
+ (-12 (-5 *2 (-1106 *3 *4)) (-4 *3 (-13 (-1066) (-34)))
+ (-4 *4 (-13 (-1066) (-34))) (-5 *1 (-1107 *3 *4))))
((*1 *1 *2 *3)
- (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067)))))
-(((*1 *2 *2) (|partial| -12 (-5 *1 (-568 *2)) (-4 *2 (-534)))))
-(((*1 *2)
- (-12 (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4)))
- (-5 *2 (-1226 *1)) (-4 *1 (-335 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1067)) (-5 *2 (-1125)))))
-(((*1 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-356)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3))
- (-5 *1 (-512 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-541)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4))
- (-4 *7 (-963 *4)) (-4 *2 (-663 *7 *8 *9))
- (-5 *1 (-513 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-663 *4 *5 *6))
- (-4 *8 (-366 *7)) (-4 *9 (-366 *7))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018))
- (-4 *3 (-366 *2)) (-4 *4 (-366 *2)) (-4 *2 (-356))))
- ((*1 *2 *2)
- (|partial| -12 (-4 *3 (-356)) (-4 *3 (-170)) (-4 *4 (-366 *3))
- (-4 *5 (-366 *3)) (-5 *1 (-664 *3 *4 *5 *2))
- (-4 *2 (-663 *3 *4 *5))))
- ((*1 *1 *1)
- (|partial| -12 (-5 *1 (-665 *2)) (-4 *2 (-356)) (-4 *2 (-1018))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-1090 *2 *3 *4 *5)) (-4 *3 (-1018))
- (-4 *4 (-232 *2 *3)) (-4 *5 (-232 *2 *3)) (-4 *3 (-356))))
- ((*1 *2 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-1151 *3)))))
-(((*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1180))))
+ (-12 (-5 *1 (-1131 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066)))))
+(((*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1124)) (-5 *4 (-549)) (-5 *5 (-665 (-219)))
+ (-5 *6 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1138 *5)) (-4 *5 (-444)) (-5 *2 (-621 *6))
+ (-5 *1 (-527 *5 *6 *4)) (-4 *6 (-356)) (-4 *4 (-13 (-356) (-821)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-923 *5)) (-4 *5 (-444)) (-5 *2 (-621 *6))
+ (-5 *1 (-527 *5 *6 *4)) (-4 *6 (-356)) (-4 *4 (-13 (-356) (-821))))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1066)) (-5 *1 (-935 *3 *2)) (-4 *3 (-1066)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-860 *5 *3)) (-5 *4 (-863 *5)) (-4 *5 (-1066))
+ (-4 *3 (-164 *6)) (-4 (-923 *6) (-857 *5))
+ (-4 *6 (-13 (-857 *5) (-170))) (-5 *1 (-176 *5 *6 *3))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *2 (-860 *4 *1)) (-5 *3 (-863 *4)) (-4 *1 (-857 *4))
+ (-4 *4 (-1066))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-860 *5 *6)) (-5 *4 (-863 *5)) (-4 *5 (-1066))
+ (-4 *6 (-13 (-1066) (-1009 *3))) (-4 *3 (-857 *5))
+ (-5 *1 (-902 *5 *3 *6))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-860 *5 *3)) (-4 *5 (-1066))
+ (-4 *3 (-13 (-423 *6) (-594 *4) (-857 *5) (-1009 (-592 $))))
+ (-5 *4 (-863 *5)) (-4 *6 (-13 (-541) (-823) (-857 *5)))
+ (-5 *1 (-903 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-860 (-549) *3)) (-5 *4 (-863 (-549))) (-4 *3 (-534))
+ (-5 *1 (-904 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-860 *5 *6)) (-5 *3 (-592 *6)) (-4 *5 (-1066))
+ (-4 *6 (-13 (-823) (-1009 (-592 $)) (-594 *4) (-857 *5)))
+ (-5 *4 (-863 *5)) (-5 *1 (-905 *5 *6))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-856 *5 *6 *3)) (-5 *4 (-863 *5)) (-4 *5 (-1066))
+ (-4 *6 (-857 *5)) (-4 *3 (-642 *6)) (-5 *1 (-906 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2 *5)
+ (-12 (-5 *5 (-1 (-860 *6 *3) *8 (-863 *6) (-860 *6 *3)))
+ (-4 *8 (-823)) (-5 *2 (-860 *6 *3)) (-5 *4 (-863 *6))
+ (-4 *6 (-1066)) (-4 *3 (-13 (-920 *9 *7 *8) (-594 *4)))
+ (-4 *7 (-769)) (-4 *9 (-13 (-1018) (-823) (-857 *6)))
+ (-5 *1 (-907 *6 *7 *8 *9 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-860 *5 *3)) (-4 *5 (-1066))
+ (-4 *3 (-13 (-920 *8 *6 *7) (-594 *4))) (-5 *4 (-863 *5))
+ (-4 *7 (-857 *5)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *8 (-13 (-1018) (-823) (-857 *5)))
+ (-5 *1 (-907 *5 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-860 *5 *3)) (-4 *5 (-1066)) (-4 *3 (-963 *6))
+ (-4 *6 (-13 (-541) (-857 *5) (-594 *4))) (-5 *4 (-863 *5))
+ (-5 *1 (-910 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-860 *5 (-1142))) (-5 *3 (-1142)) (-5 *4 (-863 *5))
+ (-4 *5 (-1066)) (-5 *1 (-911 *5))))
+ ((*1 *2 *3 *4 *5 *2 *6)
+ (-12 (-5 *4 (-621 (-863 *7))) (-5 *5 (-1 *9 (-621 *9)))
+ (-5 *6 (-1 (-860 *7 *9) *9 (-863 *7) (-860 *7 *9))) (-4 *7 (-1066))
+ (-4 *9 (-13 (-1018) (-594 (-863 *7)) (-1009 *8)))
+ (-5 *2 (-860 *7 *9)) (-5 *3 (-621 *9)) (-4 *8 (-13 (-1018) (-823)))
+ (-5 *1 (-912 *7 *8 *9)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1179))))
((*1 *1 *1) (-12 (-5 *1 (-648 *2)) (-4 *2 (-823))))
((*1 *1 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823))))
((*1 *1 *1) (-5 *1 (-834)))
((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834))))
((*1 *2 *1)
(-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3))
- (-4 *3 (-1202 *2)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1125)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1231))
- (-5 *1 (-1039 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1125)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1231))
- (-5 *1 (-1075 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
+ (-4 *3 (-1201 *2)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-287 *2)) (-4 *2 (-703)) (-4 *2 (-1179)))))
(((*1 *1 *2) (-12 (-4 *1 (-38 *2)) (-4 *2 (-170))))
((*1 *1 *2)
- (-12 (-5 *2 (-1226 *3)) (-4 *3 (-356)) (-14 *6 (-1226 (-665 *3)))
- (-5 *1 (-44 *3 *4 *5 *6)) (-14 *4 (-892)) (-14 *5 (-621 (-1143)))))
- ((*1 *1 *2) (-12 (-5 *2 (-1092 (-549) (-592 (-48)))) (-5 *1 (-48))))
- ((*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1180))))
+ (-12 (-5 *2 (-1225 *3)) (-4 *3 (-356)) (-14 *6 (-1225 (-665 *3)))
+ (-5 *1 (-44 *3 *4 *5 *6)) (-14 *4 (-892)) (-14 *5 (-621 (-1142)))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1091 (-549) (-592 (-48)))) (-5 *1 (-48))))
+ ((*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1179))))
((*1 *1 *2)
- (-12 (-5 *2 (-1226 (-332 (-3854 'JINT 'X 'ELAM) (-3854) (-675))))
- (-5 *1 (-60 *3)) (-14 *3 (-1143))))
+ (-12 (-5 *2 (-1225 (-332 (-3853 'JINT 'X 'ELAM) (-3853) (-675))))
+ (-5 *1 (-60 *3)) (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-1226 (-332 (-3854) (-3854 'XC) (-675))))
- (-5 *1 (-62 *3)) (-14 *3 (-1143))))
+ (-12 (-5 *2 (-1225 (-332 (-3853) (-3853 'XC) (-675))))
+ (-5 *1 (-62 *3)) (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-332 (-3854 'X) (-3854) (-675))) (-5 *1 (-63 *3))
- (-14 *3 (-1143))))
+ (-12 (-5 *2 (-332 (-3853 'X) (-3853) (-675))) (-5 *1 (-63 *3))
+ (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-665 (-332 (-3854) (-3854 'X 'HESS) (-675))))
- (-5 *1 (-64 *3)) (-14 *3 (-1143))))
+ (-12 (-5 *2 (-665 (-332 (-3853) (-3853 'X 'HESS) (-675))))
+ (-5 *1 (-64 *3)) (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-332 (-3854) (-3854 'XC) (-675))) (-5 *1 (-65 *3))
- (-14 *3 (-1143))))
+ (-12 (-5 *2 (-332 (-3853) (-3853 'XC) (-675))) (-5 *1 (-65 *3))
+ (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-1226 (-332 (-3854 'X) (-3854 '-2663) (-675))))
- (-5 *1 (-70 *3)) (-14 *3 (-1143))))
+ (-12 (-5 *2 (-1225 (-332 (-3853 'X) (-3853 '-2661) (-675))))
+ (-5 *1 (-70 *3)) (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-1226 (-332 (-3854) (-3854 'X) (-675))))
- (-5 *1 (-73 *3)) (-14 *3 (-1143))))
+ (-12 (-5 *2 (-1225 (-332 (-3853) (-3853 'X) (-675))))
+ (-5 *1 (-73 *3)) (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-1226 (-332 (-3854 'X 'EPS) (-3854 '-2663) (-675))))
- (-5 *1 (-74 *3 *4 *5)) (-14 *3 (-1143)) (-14 *4 (-1143))
- (-14 *5 (-1143))))
+ (-12 (-5 *2 (-1225 (-332 (-3853 'X 'EPS) (-3853 '-2661) (-675))))
+ (-5 *1 (-74 *3 *4 *5)) (-14 *3 (-1142)) (-14 *4 (-1142))
+ (-14 *5 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-1226 (-332 (-3854 'EPS) (-3854 'YA 'YB) (-675))))
- (-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1143)) (-14 *4 (-1143))
- (-14 *5 (-1143))))
+ (-12 (-5 *2 (-1225 (-332 (-3853 'EPS) (-3853 'YA 'YB) (-675))))
+ (-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1142)) (-14 *4 (-1142))
+ (-14 *5 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-332 (-3854) (-3854 'X) (-675))) (-5 *1 (-76 *3))
- (-14 *3 (-1143))))
+ (-12 (-5 *2 (-332 (-3853) (-3853 'X) (-675))) (-5 *1 (-76 *3))
+ (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-332 (-3854) (-3854 'X) (-675))) (-5 *1 (-77 *3))
- (-14 *3 (-1143))))
+ (-12 (-5 *2 (-332 (-3853) (-3853 'X) (-675))) (-5 *1 (-77 *3))
+ (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-1226 (-332 (-3854) (-3854 'XC) (-675))))
- (-5 *1 (-78 *3)) (-14 *3 (-1143))))
+ (-12 (-5 *2 (-1225 (-332 (-3853) (-3853 'XC) (-675))))
+ (-5 *1 (-78 *3)) (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-1226 (-332 (-3854) (-3854 'X) (-675))))
- (-5 *1 (-79 *3)) (-14 *3 (-1143))))
+ (-12 (-5 *2 (-1225 (-332 (-3853) (-3853 'X) (-675))))
+ (-5 *1 (-79 *3)) (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-1226 (-332 (-3854) (-3854 'X) (-675))))
- (-5 *1 (-80 *3)) (-14 *3 (-1143))))
+ (-12 (-5 *2 (-1225 (-332 (-3853) (-3853 'X) (-675))))
+ (-5 *1 (-80 *3)) (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-1226 (-332 (-3854 'X '-2663) (-3854) (-675))))
- (-5 *1 (-81 *3)) (-14 *3 (-1143))))
+ (-12 (-5 *2 (-1225 (-332 (-3853 'X '-2661) (-3853) (-675))))
+ (-5 *1 (-81 *3)) (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-665 (-332 (-3854 'X '-2663) (-3854) (-675))))
- (-5 *1 (-82 *3)) (-14 *3 (-1143))))
+ (-12 (-5 *2 (-665 (-332 (-3853 'X '-2661) (-3853) (-675))))
+ (-5 *1 (-82 *3)) (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-665 (-332 (-3854 'X) (-3854) (-675)))) (-5 *1 (-83 *3))
- (-14 *3 (-1143))))
+ (-12 (-5 *2 (-665 (-332 (-3853 'X) (-3853) (-675)))) (-5 *1 (-83 *3))
+ (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-1226 (-332 (-3854 'X) (-3854) (-675))))
- (-5 *1 (-84 *3)) (-14 *3 (-1143))))
+ (-12 (-5 *2 (-1225 (-332 (-3853 'X) (-3853) (-675))))
+ (-5 *1 (-84 *3)) (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-1226 (-332 (-3854 'X) (-3854 '-2663) (-675))))
- (-5 *1 (-85 *3)) (-14 *3 (-1143))))
+ (-12 (-5 *2 (-1225 (-332 (-3853 'X) (-3853 '-2661) (-675))))
+ (-5 *1 (-85 *3)) (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-665 (-332 (-3854 'XL 'XR 'ELAM) (-3854) (-675))))
- (-5 *1 (-86 *3)) (-14 *3 (-1143))))
+ (-12 (-5 *2 (-665 (-332 (-3853 'XL 'XR 'ELAM) (-3853) (-675))))
+ (-5 *1 (-86 *3)) (-14 *3 (-1142))))
((*1 *1 *2)
- (-12 (-5 *2 (-332 (-3854 'X) (-3854 '-2663) (-675))) (-5 *1 (-88 *3))
- (-14 *3 (-1143))))
+ (-12 (-5 *2 (-332 (-3853 'X) (-3853 '-2661) (-675))) (-5 *1 (-88 *3))
+ (-14 *3 (-1142))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1147)) (-4 *1 (-92))))
((*1 *2 *1) (-12 (-5 *2 (-975 2)) (-5 *1 (-107))))
((*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-107))))
((*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-129))))
@@ -2484,45 +2587,45 @@
(-12 (-5 *2 (-621 *5)) (-4 *5 (-170)) (-5 *1 (-135 *3 *4 *5))
(-14 *3 (-549)) (-14 *4 (-747))))
((*1 *1 *2)
- (-12 (-5 *2 (-1109 *4 *5)) (-14 *4 (-747)) (-4 *5 (-170))
+ (-12 (-5 *2 (-1108 *4 *5)) (-14 *4 (-747)) (-4 *5 (-170))
(-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549))))
((*1 *1 *2)
(-12 (-5 *2 (-234 *4 *5)) (-14 *4 (-747)) (-4 *5 (-170))
(-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549))))
((*1 *2 *3)
- (-12 (-5 *3 (-1226 (-665 *4))) (-4 *4 (-170))
- (-5 *2 (-1226 (-665 (-400 (-923 *4))))) (-5 *1 (-183 *4))))
+ (-12 (-5 *3 (-1225 (-665 *4))) (-4 *4 (-170))
+ (-5 *2 (-1225 (-665 (-400 (-923 *4))))) (-5 *1 (-183 *4))))
((*1 *1 *2)
(-12 (-5 *2 (-621 *3))
(-4 *3
(-13 (-823)
- (-10 -8 (-15 -3341 ((-1125) $ (-1143))) (-15 -2699 ((-1231) $))
- (-15 -2684 ((-1231) $)))))
+ (-10 -8 (-15 -3339 ((-1124) $ (-1142))) (-15 -2697 ((-1230) $))
+ (-15 -1674 ((-1230) $)))))
(-5 *1 (-208 *3))))
((*1 *2 *1) (-12 (-5 *2 (-975 10)) (-5 *1 (-211))))
((*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-211))))
((*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-239 *3)) (-4 *3 (-823))))
((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-239 *3))))
((*1 *2 *3)
- (-12 (-5 *3 (-1059 (-309 *4)))
- (-4 *4 (-13 (-823) (-541) (-594 (-372)))) (-5 *2 (-1059 (-372)))
+ (-12 (-5 *3 (-1058 (-309 *4)))
+ (-4 *4 (-13 (-823) (-541) (-594 (-372)))) (-5 *2 (-1058 (-372)))
(-5 *1 (-251 *4))))
((*1 *1 *2) (-12 (-4 *1 (-259 *2)) (-4 *2 (-823))))
((*1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-268))))
((*1 *2 *1)
- (-12 (-4 *2 (-1202 *3)) (-5 *1 (-282 *3 *2 *4 *5 *6 *7))
+ (-12 (-4 *2 (-1201 *3)) (-5 *1 (-282 *3 *2 *4 *5 *6 *7))
(-4 *3 (-170)) (-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))))
((*1 *1 *2)
- (-12 (-5 *2 (-1211 *4 *5 *6)) (-4 *4 (-13 (-27) (-1165) (-423 *3)))
- (-14 *5 (-1143)) (-14 *6 *4)
+ (-12 (-5 *2 (-1210 *4 *5 *6)) (-4 *4 (-13 (-27) (-1164) (-423 *3)))
+ (-14 *5 (-1142)) (-14 *6 *4)
(-4 *3 (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444)))
(-5 *1 (-306 *3 *4 *5 *6))))
((*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-323))))
((*1 *2 *1)
(-12 (-5 *2 (-309 *5)) (-5 *1 (-332 *3 *4 *5))
- (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143))) (-4 *5 (-380))))
+ (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142))) (-4 *5 (-380))))
((*1 *2 *3)
(-12 (-4 *4 (-342)) (-4 *2 (-322 *4)) (-5 *1 (-340 *3 *4 *2))
(-4 *3 (-322 *4))))
@@ -2531,96 +2634,96 @@
(-4 *3 (-322 *4))))
((*1 *2 *1)
(-12 (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170))
- (-5 *2 (-1250 *3 *4))))
+ (-5 *2 (-1249 *3 *4))))
((*1 *2 *1)
(-12 (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170))
- (-5 *2 (-1241 *3 *4))))
+ (-5 *2 (-1240 *3 *4))))
((*1 *1 *2) (-12 (-4 *1 (-367 *2 *3)) (-4 *2 (-823)) (-4 *3 (-170))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323)))))
(-4 *1 (-376))))
((*1 *1 *2) (-12 (-5 *2 (-323)) (-4 *1 (-376))))
((*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-4 *1 (-376))))
((*1 *1 *2) (-12 (-5 *2 (-665 (-675))) (-4 *1 (-376))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323)))))
(-4 *1 (-377))))
((*1 *1 *2) (-12 (-5 *2 (-323)) (-4 *1 (-377))))
((*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-4 *1 (-377))))
- ((*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-1125))))
- ((*1 *1 *2) (-12 (-5 *2 (-1125)) (-4 *1 (-382))))
- ((*1 *2 *3) (-12 (-5 *2 (-387)) (-5 *1 (-386 *3)) (-4 *3 (-1067))))
+ ((*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-1124))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1124)) (-4 *1 (-382))))
+ ((*1 *2 *3) (-12 (-5 *2 (-387)) (-5 *1 (-386 *3)) (-4 *3 (-1066))))
((*1 *1 *2) (-12 (-5 *2 (-834)) (-5 *1 (-387))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323)))))
(-4 *1 (-389))))
((*1 *1 *2) (-12 (-5 *2 (-323)) (-4 *1 (-389))))
((*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-4 *1 (-389))))
((*1 *1 *2)
(-12 (-5 *2 (-287 (-309 (-167 (-372))))) (-5 *1 (-391 *3 *4 *5 *6))
- (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1147))))
+ (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1146))))
((*1 *1 *2)
(-12 (-5 *2 (-287 (-309 (-372)))) (-5 *1 (-391 *3 *4 *5 *6))
- (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1147))))
+ (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1146))))
((*1 *1 *2)
(-12 (-5 *2 (-287 (-309 (-549)))) (-5 *1 (-391 *3 *4 *5 *6))
- (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1147))))
+ (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1146))))
((*1 *1 *2)
(-12 (-5 *2 (-309 (-167 (-372)))) (-5 *1 (-391 *3 *4 *5 *6))
- (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1147))))
+ (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1146))))
((*1 *1 *2)
(-12 (-5 *2 (-309 (-372))) (-5 *1 (-391 *3 *4 *5 *6))
- (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1147))))
+ (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1146))))
((*1 *1 *2)
(-12 (-5 *2 (-309 (-549))) (-5 *1 (-391 *3 *4 *5 *6))
- (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1147))))
+ (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1146))))
((*1 *1 *2)
(-12 (-5 *2 (-287 (-309 (-670)))) (-5 *1 (-391 *3 *4 *5 *6))
- (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1147))))
+ (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1146))))
((*1 *1 *2)
(-12 (-5 *2 (-287 (-309 (-675)))) (-5 *1 (-391 *3 *4 *5 *6))
- (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1147))))
+ (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1146))))
((*1 *1 *2)
(-12 (-5 *2 (-287 (-309 (-677)))) (-5 *1 (-391 *3 *4 *5 *6))
- (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1147))))
+ (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1146))))
((*1 *1 *2)
(-12 (-5 *2 (-309 (-670))) (-5 *1 (-391 *3 *4 *5 *6))
- (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1147))))
+ (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1146))))
((*1 *1 *2)
(-12 (-5 *2 (-309 (-675))) (-5 *1 (-391 *3 *4 *5 *6))
- (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1147))))
+ (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1146))))
((*1 *1 *2)
(-12 (-5 *2 (-309 (-677))) (-5 *1 (-391 *3 *4 *5 *6))
- (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1147))))
+ (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1146))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323)))))
- (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1143))
- (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1147))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323)))))
+ (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1142))
+ (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1146))))
((*1 *1 *2)
(-12 (-5 *2 (-621 (-323))) (-5 *1 (-391 *3 *4 *5 *6))
- (-14 *3 (-1143)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1147))))
+ (-14 *3 (-1142)) (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1146))))
((*1 *1 *2)
- (-12 (-5 *2 (-323)) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1143))
- (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2903 "void")))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1147))))
+ (-12 (-5 *2 (-323)) (-5 *1 (-391 *3 *4 *5 *6)) (-14 *3 (-1142))
+ (-14 *4 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1146))))
((*1 *1 *2)
(-12 (-5 *2 (-324 *4)) (-4 *4 (-13 (-823) (-21)))
(-5 *1 (-420 *3 *4)) (-4 *3 (-13 (-170) (-38 (-400 (-549)))))))
@@ -2637,58 +2740,58 @@
(-12 (-5 *2 (-400 *3)) (-4 *3 (-541)) (-4 *3 (-823))
(-4 *1 (-423 *3))))
((*1 *1 *2)
- (-12 (-5 *2 (-1092 *3 (-592 *1))) (-4 *3 (-1018)) (-4 *3 (-823))
+ (-12 (-5 *2 (-1091 *3 (-592 *1))) (-4 *3 (-1018)) (-4 *3 (-823))
(-4 *1 (-423 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-1071)) (-5 *1 (-427))))
- ((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-427))))
- ((*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-427))))
- ((*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-427))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-427))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-427))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-427))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-427))))
((*1 *1 *2) (-12 (-5 *2 (-427)) (-5 *1 (-430))))
((*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-430))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323)))))
(-4 *1 (-432))))
((*1 *1 *2) (-12 (-5 *2 (-323)) (-4 *1 (-432))))
((*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-4 *1 (-432))))
- ((*1 *1 *2) (-12 (-5 *2 (-1226 (-675))) (-4 *1 (-432))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1225 (-675))) (-4 *1 (-432))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1147)) (|:| -2103 (-621 (-323)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1146)) (|:| -2099 (-621 (-323)))))
(-4 *1 (-433))))
((*1 *1 *2) (-12 (-5 *2 (-323)) (-4 *1 (-433))))
((*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-4 *1 (-433))))
((*1 *1 *2)
- (-12 (-5 *2 (-1226 (-400 (-923 *3)))) (-4 *3 (-170))
- (-14 *6 (-1226 (-665 *3))) (-5 *1 (-445 *3 *4 *5 *6))
- (-14 *4 (-892)) (-14 *5 (-621 (-1143)))))
+ (-12 (-5 *2 (-1225 (-400 (-923 *3)))) (-4 *3 (-170))
+ (-14 *6 (-1225 (-665 *3))) (-5 *1 (-445 *3 *4 *5 *6))
+ (-14 *4 (-892)) (-14 *5 (-621 (-1142)))))
((*1 *1 *2) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *1 (-460))))
((*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-460))))
((*1 *1 *2)
- (-12 (-5 *2 (-1211 *3 *4 *5)) (-4 *3 (-1018)) (-14 *4 (-1143))
+ (-12 (-5 *2 (-1210 *3 *4 *5)) (-4 *3 (-1018)) (-14 *4 (-1142))
(-14 *5 *3) (-5 *1 (-466 *3 *4 *5))))
((*1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-466 *3 *4 *5))
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-466 *3 *4 *5))
(-4 *3 (-1018)) (-14 *5 *3)))
((*1 *2 *1) (-12 (-5 *2 (-975 16)) (-5 *1 (-479))))
((*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-479))))
- ((*1 *1 *2) (-12 (-5 *2 (-1092 (-549) (-592 (-486)))) (-5 *1 (-486))))
- ((*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-493))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1091 (-549) (-592 (-486)))) (-5 *1 (-486))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-493))))
((*1 *1 *2)
(-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-356))
(-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6))))
- ((*1 *1 *2) (-12 (-5 *2 (-621 (-1179))) (-5 *1 (-515))))
+ ((*1 *1 *2) (-12 (-5 *2 (-621 (-1178))) (-5 *1 (-515))))
((*1 *1 *2) (-12 (-5 *2 (-129)) (-5 *1 (-585))))
- ((*1 *1 *2) (-12 (-5 *2 (-621 (-1179))) (-5 *1 (-586))))
+ ((*1 *1 *2) (-12 (-5 *2 (-621 (-1178))) (-5 *1 (-586))))
((*1 *1 *2)
(-12 (-4 *3 (-170)) (-5 *1 (-587 *3 *2)) (-4 *2 (-721 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-593 *2)) (-4 *2 (-1180))))
+ ((*1 *2 *1) (-12 (-4 *1 (-593 *2)) (-4 *2 (-1179))))
((*1 *1 *2) (-12 (-4 *1 (-598 *2)) (-4 *2 (-1018))))
((*1 *2 *1)
- (-12 (-5 *2 (-1246 *3 *4)) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823))
+ (-12 (-5 *2 (-1245 *3 *4)) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823))
(-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892))))
((*1 *2 *1)
- (-12 (-5 *2 (-1241 *3 *4)) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823))
+ (-12 (-5 *2 (-1240 *3 *4)) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823))
(-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892))))
((*1 *1 *2)
(-12 (-4 *3 (-170)) (-5 *1 (-613 *3 *2)) (-4 *2 (-721 *3))))
@@ -2696,13 +2799,13 @@
((*1 *2 *1) (-12 (-5 *2 (-795 *3)) (-5 *1 (-648 *3)) (-4 *3 (-823))))
((*1 *2 *1)
(-12 (-5 *2 (-929 (-929 (-929 *3)))) (-5 *1 (-651 *3))
- (-4 *3 (-1067))))
+ (-4 *3 (-1066))))
((*1 *1 *2)
- (-12 (-5 *2 (-929 (-929 (-929 *3)))) (-4 *3 (-1067))
+ (-12 (-5 *2 (-929 (-929 (-929 *3)))) (-4 *3 (-1066))
(-5 *1 (-651 *3))))
((*1 *2 *1) (-12 (-5 *2 (-795 *3)) (-5 *1 (-653 *3)) (-4 *3 (-823))))
- ((*1 *1 *2) (-12 (-5 *2 (-1085)) (-5 *1 (-657))))
- ((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-658 *3)) (-4 *3 (-1067))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1084)) (-5 *1 (-657))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-658 *3)) (-4 *3 (-1066))))
((*1 *1 *2)
(-12 (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *2)) (-4 *4 (-366 *3))
(-4 *2 (-366 *3))))
@@ -2717,27 +2820,27 @@
((*1 *2 *1) (-12 (-5 *2 (-372)) (-5 *1 (-675))))
((*1 *2 *3)
(-12 (-5 *3 (-309 (-549))) (-5 *2 (-309 (-677))) (-5 *1 (-677))))
- ((*1 *1 *2) (-12 (-5 *1 (-679 *2)) (-4 *2 (-1067))))
- ((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1125)) (-5 *1 (-687))))
+ ((*1 *1 *2) (-12 (-5 *1 (-679 *2)) (-4 *2 (-1066))))
+ ((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1124)) (-5 *1 (-687))))
((*1 *2 *1)
(-12 (-4 *2 (-170)) (-5 *1 (-688 *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))))
((*1 *1 *2)
- (-12 (-4 *3 (-1018)) (-5 *1 (-689 *3 *2)) (-4 *2 (-1202 *3))))
+ (-12 (-4 *3 (-1018)) (-5 *1 (-689 *3 *2)) (-4 *2 (-1201 *3))))
((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| -3493 *3) (|:| -3731 *4)))
- (-5 *1 (-690 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-1067))
+ (-12 (-5 *2 (-2 (|:| -3494 *3) (|:| -1714 *4)))
+ (-5 *1 (-690 *3 *4 *5)) (-4 *3 (-823)) (-4 *4 (-1066))
(-14 *5 (-1 (-112) *2 *2))))
((*1 *1 *2)
- (-12 (-5 *2 (-2 (|:| -3493 *3) (|:| -3731 *4))) (-4 *3 (-823))
- (-4 *4 (-1067)) (-5 *1 (-690 *3 *4 *5)) (-14 *5 (-1 (-112) *2 *2))))
+ (-12 (-5 *2 (-2 (|:| -3494 *3) (|:| -1714 *4))) (-4 *3 (-823))
+ (-4 *4 (-1066)) (-5 *1 (-690 *3 *4 *5)) (-14 *5 (-1 (-112) *2 *2))))
((*1 *2 *1)
(-12 (-4 *2 (-170)) (-5 *1 (-692 *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))))
((*1 *1 *2)
- (-12 (-5 *2 (-621 (-2 (|:| -1570 *3) (|:| -3526 *4))))
+ (-12 (-5 *2 (-621 (-2 (|:| -1569 *3) (|:| -3525 *4))))
(-4 *3 (-1018)) (-4 *4 (-703)) (-5 *1 (-712 *3 *4))))
((*1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-740))))
((*1 *1 *2)
@@ -2745,82 +2848,82 @@
(-5 *2
(-3
(|:| |nia|
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
(|:| |relerr| (-219))))
(|:| |mdnia|
(-2 (|:| |fn| (-309 (-219)))
- (|:| -1372 (-621 (-1061 (-816 (-219)))))
+ (|:| -2811 (-621 (-1060 (-816 (-219)))))
(|:| |abserr| (-219)) (|:| |relerr| (-219))))))
(-5 *1 (-745))))
((*1 *1 *2)
(-12
(-5 *2
(-2 (|:| |fn| (-309 (-219)))
- (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219))
+ (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219))
(|:| |relerr| (-219))))
(-5 *1 (-745))))
((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
(|:| |relerr| (-219))))
(-5 *1 (-745))))
((*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-745))))
- ((*1 *2 *3) (-12 (-5 *2 (-750)) (-5 *1 (-749 *3)) (-4 *3 (-1180))))
+ ((*1 *2 *3) (-12 (-5 *2 (-750)) (-5 *1 (-749 *3)) (-4 *3 (-1179))))
((*1 *1 *2)
(-12
(-5 *2
(-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
- (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
+ (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
(|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
(|:| |abserr| (-219)) (|:| |relerr| (-219))))
(-5 *1 (-784))))
((*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-784))))
((*1 *2 *1)
- (-12 (-4 *2 (-871 *3)) (-5 *1 (-793 *3 *2 *4)) (-4 *3 (-1067))
+ (-12 (-4 *2 (-871 *3)) (-5 *1 (-793 *3 *2 *4)) (-4 *3 (-1066))
(-14 *4 *3)))
((*1 *1 *2)
- (-12 (-4 *3 (-1067)) (-14 *4 *3) (-5 *1 (-793 *3 *2 *4))
+ (-12 (-4 *3 (-1066)) (-14 *4 *3) (-5 *1 (-793 *3 *2 *4))
(-4 *2 (-871 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-800))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-800))))
((*1 *1 *2)
(-12
(-5 *2
(-3
(|:| |noa|
- (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219)))
+ (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219)))
(|:| |lb| (-621 (-816 (-219))))
(|:| |cf| (-621 (-309 (-219))))
(|:| |ub| (-621 (-816 (-219))))))
(|:| |lsa|
(-2 (|:| |lfn| (-621 (-309 (-219))))
- (|:| -3060 (-621 (-219)))))))
+ (|:| -3059 (-621 (-219)))))))
(-5 *1 (-814))))
((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))
+ (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))
(-5 *1 (-814))))
((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219)))
+ (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219)))
(|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219))))
(|:| |ub| (-621 (-816 (-219))))))
(-5 *1 (-814))))
((*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-814))))
((*1 *1 *2)
- (-12 (-5 *2 (-1222 *3)) (-14 *3 (-1143)) (-5 *1 (-828 *3 *4 *5 *6))
+ (-12 (-5 *2 (-1221 *3)) (-14 *3 (-1142)) (-5 *1 (-828 *3 *4 *5 *6))
(-4 *4 (-1018)) (-14 *5 (-98 *4)) (-14 *6 (-1 *4 *4))))
((*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-831))))
((*1 *1 *2)
(-12 (-5 *2 (-923 *3)) (-4 *3 (-1018)) (-5 *1 (-837 *3 *4 *5 *6))
- (-14 *4 (-621 (-1143))) (-14 *5 (-621 (-747))) (-14 *6 (-747))))
+ (-14 *4 (-621 (-1142))) (-14 *5 (-621 (-747))) (-14 *6 (-747))))
((*1 *2 *1)
(-12 (-5 *2 (-923 *3)) (-5 *1 (-837 *3 *4 *5 *6)) (-4 *3 (-1018))
- (-14 *4 (-621 (-1143))) (-14 *5 (-621 (-747))) (-14 *6 (-747))))
+ (-14 *4 (-621 (-1142))) (-14 *5 (-621 (-747))) (-14 *6 (-747))))
((*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845))))
((*1 *2 *3)
(-12 (-5 *3 (-923 (-48))) (-5 *2 (-309 (-549))) (-5 *1 (-846))))
@@ -2838,37 +2941,37 @@
(-2 (|:| |start| (-219)) (|:| |finish| (-219))
(|:| |grid| (-747)) (|:| |boundaryType| (-549))
(|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219))))))
- (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125))
+ (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124))
(|:| |tol| (-219))))
(-5 *1 (-869))))
((*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-869))))
((*1 *2 *1)
- (-12 (-5 *2 (-1166 *3)) (-5 *1 (-872 *3)) (-4 *3 (-1067))))
+ (-12 (-5 *2 (-1165 *3)) (-5 *1 (-872 *3)) (-4 *3 (-1066))))
((*1 *1 *2)
- (-12 (-5 *2 (-621 (-876 *3))) (-4 *3 (-1067)) (-5 *1 (-875 *3))))
+ (-12 (-5 *2 (-621 (-876 *3))) (-4 *3 (-1066)) (-5 *1 (-875 *3))))
((*1 *2 *1)
- (-12 (-5 *2 (-621 (-876 *3))) (-5 *1 (-875 *3)) (-4 *3 (-1067))))
- ((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-5 *1 (-876 *3))))
+ (-12 (-5 *2 (-621 (-876 *3))) (-5 *1 (-875 *3)) (-4 *3 (-1066))))
+ ((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-5 *1 (-876 *3))))
((*1 *1 *2)
- (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1067)) (-5 *1 (-876 *3))))
+ (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1066)) (-5 *1 (-876 *3))))
((*1 *1 *2)
(-12 (-5 *2 (-400 (-411 *3))) (-4 *3 (-300)) (-5 *1 (-885 *3))))
((*1 *2 *1) (-12 (-5 *2 (-400 *3)) (-5 *1 (-885 *3)) (-4 *3 (-300))))
((*1 *2 *3)
(-12 (-5 *3 (-469)) (-5 *2 (-309 *4)) (-5 *1 (-890 *4))
(-4 *4 (-13 (-823) (-541)))))
- ((*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-937 *3)) (-4 *3 (-938))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-937 *3)) (-4 *3 (-938))))
((*1 *1 *2) (-12 (-5 *1 (-937 *2)) (-4 *2 (-938))))
((*1 *2 *1) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-942))))
((*1 *2 *1)
(-12 (-5 *2 (-400 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549))))
- ((*1 *2 *3) (-12 (-5 *2 (-1231)) (-5 *1 (-1004 *3)) (-4 *3 (-1180))))
- ((*1 *2 *3) (-12 (-5 *3 (-305)) (-5 *1 (-1004 *2)) (-4 *2 (-1180))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1230)) (-5 *1 (-1004 *3)) (-4 *3 (-1179))))
+ ((*1 *2 *3) (-12 (-5 *3 (-305)) (-5 *1 (-1004 *2)) (-4 *2 (-1179))))
((*1 *1 *2)
(-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823))
(-5 *1 (-1005 *3 *4 *5 *2 *6)) (-4 *2 (-920 *3 *4 *5))
(-14 *6 (-621 *2))))
- ((*1 *1 *2) (-12 (-4 *1 (-1009 *2)) (-4 *2 (-1180))))
+ ((*1 *1 *2) (-12 (-4 *1 (-1009 *2)) (-4 *2 (-1179))))
((*1 *2 *3)
(-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-1014 *3)) (-4 *3 (-541))))
((*1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-1018))))
@@ -2876,615 +2979,633 @@
(-12 (-5 *2 (-665 *5)) (-5 *1 (-1022 *3 *4 *5)) (-14 *3 (-747))
(-14 *4 (-747)) (-4 *5 (-1018))))
((*1 *1 *2)
- (-12 (-4 *3 (-1018)) (-4 *4 (-823)) (-5 *1 (-1093 *3 *4 *2))
+ (-12 (-4 *3 (-1018)) (-4 *4 (-823)) (-5 *1 (-1092 *3 *4 *2))
(-4 *2 (-920 *3 (-521 *4) *4))))
((*1 *1 *2)
- (-12 (-4 *3 (-1018)) (-4 *2 (-823)) (-5 *1 (-1093 *3 *2 *4))
+ (-12 (-4 *3 (-1018)) (-4 *2 (-823)) (-5 *1 (-1092 *3 *2 *4))
(-4 *4 (-920 *3 (-521 *2) *2))))
- ((*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-834))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-834))))
((*1 *2 *1)
- (-12 (-5 *2 (-665 *4)) (-5 *1 (-1109 *3 *4)) (-14 *3 (-747))
+ (-12 (-5 *2 (-665 *4)) (-5 *1 (-1108 *3 *4)) (-14 *3 (-747))
(-4 *4 (-1018))))
- ((*1 *1 *2) (-12 (-5 *2 (-142)) (-4 *1 (-1111))))
+ ((*1 *1 *2) (-12 (-5 *2 (-142)) (-4 *1 (-1110))))
((*1 *1 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-5 *1 (-1123 *3))))
+ (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-5 *1 (-1122 *3))))
((*1 *2 *3)
- (-12 (-5 *2 (-1123 *3)) (-5 *1 (-1127 *3)) (-4 *3 (-1018))))
+ (-12 (-5 *2 (-1122 *3)) (-5 *1 (-1126 *3)) (-4 *3 (-1018))))
((*1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1134 *3 *4 *5))
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1133 *3 *4 *5))
(-4 *3 (-1018)) (-14 *5 *3)))
((*1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1140 *3 *4 *5))
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1139 *3 *4 *5))
(-4 *3 (-1018)) (-14 *5 *3)))
((*1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1141 *3 *4 *5))
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1140 *3 *4 *5))
(-4 *3 (-1018)) (-14 *5 *3)))
((*1 *1 *2)
- (-12 (-5 *2 (-1199 *4 *3)) (-4 *3 (-1018)) (-14 *4 (-1143))
- (-14 *5 *3) (-5 *1 (-1141 *3 *4 *5))))
- ((*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1142))))
- ((*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1143))))
- ((*1 *2 *1) (-12 (-5 *2 (-1153 (-1143) (-430))) (-5 *1 (-1147))))
- ((*1 *2 *1) (-12 (-5 *2 (-1125)) (-5 *1 (-1148))))
- ((*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1148))))
- ((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-1148))))
- ((*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1148))))
- ((*1 *2 *1) (-12 (-5 *2 (-219)) (-5 *1 (-1148))))
- ((*1 *1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-1148))))
- ((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1148))))
- ((*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1148))))
- ((*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-1152 *3)) (-4 *3 (-1067))))
- ((*1 *2 *3) (-12 (-5 *2 (-1160)) (-5 *1 (-1159 *3)) (-4 *3 (-1067))))
- ((*1 *1 *2) (-12 (-5 *2 (-834)) (-5 *1 (-1160))))
+ (-12 (-5 *2 (-1198 *4 *3)) (-4 *3 (-1018)) (-14 *4 (-1142))
+ (-14 *5 *3) (-5 *1 (-1140 *3 *4 *5))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1141))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1142))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1152 (-1142) (-430))) (-5 *1 (-1146))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1124)) (-5 *1 (-1147))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1147))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-1147))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1147))))
+ ((*1 *2 *1) (-12 (-5 *2 (-219)) (-5 *1 (-1147))))
+ ((*1 *1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-1147))))
+ ((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1147))))
+ ((*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1147))))
+ ((*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-1151 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1159)) (-5 *1 (-1158 *3)) (-4 *3 (-1066))))
+ ((*1 *1 *2) (-12 (-5 *2 (-834)) (-5 *1 (-1159))))
((*1 *1 *2)
- (-12 (-5 *2 (-923 *3)) (-4 *3 (-1018)) (-5 *1 (-1174 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1174 *3)) (-4 *3 (-1018))))
+ (-12 (-5 *2 (-923 *3)) (-4 *3 (-1018)) (-5 *1 (-1173 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1173 *3)) (-4 *3 (-1018))))
((*1 *1 *2)
- (-12 (-5 *2 (-929 *3)) (-4 *3 (-1180)) (-5 *1 (-1177 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1148)) (-5 *1 (-1179))))
+ (-12 (-5 *2 (-929 *3)) (-4 *3 (-1179)) (-5 *1 (-1176 *3))))
((*1 *1 *2)
- (-12 (-4 *3 (-1018)) (-4 *1 (-1188 *3 *2)) (-4 *2 (-1217 *3))))
+ (-12 (-4 *3 (-1018)) (-4 *1 (-1187 *3 *2)) (-4 *2 (-1216 *3))))
((*1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1190 *3 *4 *5))
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1189 *3 *4 *5))
(-4 *3 (-1018)) (-14 *5 *3)))
((*1 *1 *2)
- (-12 (-5 *2 (-1061 *3)) (-4 *3 (-1180)) (-5 *1 (-1193 *3))))
+ (-12 (-5 *2 (-1060 *3)) (-4 *3 (-1179)) (-5 *1 (-1192 *3))))
((*1 *1 *2)
- (-12 (-5 *2 (-1222 *3)) (-14 *3 (-1143)) (-5 *1 (-1199 *3 *4))
+ (-12 (-5 *2 (-1221 *3)) (-14 *3 (-1142)) (-5 *1 (-1198 *3 *4))
(-4 *4 (-1018))))
((*1 *1 *2)
- (-12 (-4 *3 (-1018)) (-4 *1 (-1209 *3 *2)) (-4 *2 (-1186 *3))))
+ (-12 (-4 *3 (-1018)) (-4 *1 (-1208 *3 *2)) (-4 *2 (-1185 *3))))
((*1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1211 *3 *4 *5))
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1210 *3 *4 *5))
(-4 *3 (-1018)) (-14 *5 *3)))
((*1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1218 *3 *4 *5))
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1217 *3 *4 *5))
(-4 *3 (-1018)) (-14 *5 *3)))
((*1 *1 *2)
- (-12 (-5 *2 (-1199 *4 *3)) (-4 *3 (-1018)) (-14 *4 (-1143))
- (-14 *5 *3) (-5 *1 (-1218 *3 *4 *5))))
- ((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-1222 *3)) (-14 *3 *2)))
- ((*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-1227))))
- ((*1 *2 *3) (-12 (-5 *3 (-460)) (-5 *2 (-1227)) (-5 *1 (-1230))))
- ((*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-1231))))
+ (-12 (-5 *2 (-1198 *4 *3)) (-4 *3 (-1018)) (-14 *4 (-1142))
+ (-14 *5 *3) (-5 *1 (-1217 *3 *4 *5))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-1221 *3)) (-14 *3 *2)))
+ ((*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-1226))))
+ ((*1 *2 *3) (-12 (-5 *3 (-460)) (-5 *2 (-1226)) (-5 *1 (-1229))))
+ ((*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-1230))))
((*1 *1 *2)
(-12 (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-769)) (-14 *6 (-621 *4))
- (-5 *1 (-1238 *3 *4 *5 *2 *6 *7 *8)) (-4 *2 (-920 *3 *5 *4))
+ (-5 *1 (-1237 *3 *4 *5 *2 *6 *7 *8)) (-4 *2 (-920 *3 *5 *4))
(-14 *7 (-621 (-747))) (-14 *8 (-747))))
((*1 *2 *1)
- (-12 (-4 *2 (-920 *3 *5 *4)) (-5 *1 (-1238 *3 *4 *5 *2 *6 *7 *8))
+ (-12 (-4 *2 (-920 *3 *5 *4)) (-5 *1 (-1237 *3 *4 *5 *2 *6 *7 *8))
(-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-769)) (-14 *6 (-621 *4))
(-14 *7 (-621 (-747))) (-14 *8 (-747))))
- ((*1 *1 *2) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *2) (-12 (-4 *1 (-1239 *2)) (-4 *2 (-1018))))
((*1 *1 *2)
- (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018))))
+ (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018))))
((*1 *2 *1)
- (-12 (-5 *2 (-1250 *3 *4)) (-5 *1 (-1246 *3 *4)) (-4 *3 (-823))
+ (-12 (-5 *2 (-1249 *3 *4)) (-5 *1 (-1245 *3 *4)) (-4 *3 (-823))
(-4 *4 (-170))))
((*1 *2 *1)
- (-12 (-5 *2 (-1241 *3 *4)) (-5 *1 (-1246 *3 *4)) (-4 *3 (-823))
+ (-12 (-5 *2 (-1240 *3 *4)) (-5 *1 (-1245 *3 *4)) (-4 *3 (-823))
(-4 *4 (-170))))
((*1 *1 *2)
(-12 (-5 *2 (-640 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170))
- (-5 *1 (-1246 *3 *4))))
+ (-5 *1 (-1245 *3 *4))))
((*1 *1 *2)
- (-12 (-5 *1 (-1249 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-819)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1069 *3)) (-5 *1 (-876 *3)) (-4 *3 (-361))
- (-4 *3 (-1067)))))
-(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-250)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
- (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))))
-(((*1 *1 *1 *1) (-5 *1 (-834))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170))
- (-5 *2 (-665 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-665 *3)))))
+ (-12 (-5 *1 (-1248 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-819)))))
(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892))
+ (-4 *4 (-1018)))))
+(((*1 *2 *3)
(-12
- (-5 *2
- (-621
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3)
- (|:| |xpnt| (-549)))))
- (-5 *1 (-411 *3)) (-4 *3 (-541))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *4 (-747)) (-4 *3 (-342)) (-4 *5 (-1202 *3))
- (-5 *2 (-621 (-1139 *3))) (-5 *1 (-489 *3 *5 *6))
- (-4 *6 (-1202 *5)))))
+ (-5 *3
+ (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
+ (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
+ (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
+ (|:| |abserr| (-219)) (|:| |relerr| (-219))))
+ (-5 *2 (-372)) (-5 *1 (-199)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1138 *3)) (-4 *3 (-1018)) (-4 *1 (-1201 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *4 *5 *6)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-441 *4 *5 *6 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-801)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *1 (-113 *3)) (-4 *3 (-823)) (-4 *3 (-1067)))))
-(((*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1180))))
+ (|partial| -12 (-5 *3 (-1124)) (-5 *2 (-372)) (-5 *1 (-762)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-665 *5)) (-5 *4 (-1225 *5)) (-4 *5 (-356))
+ (-5 *2 (-112)) (-5 *1 (-643 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-356)) (-4 *6 (-13 (-366 *5) (-10 -7 (-6 -4337))))
+ (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4337)))) (-5 *2 (-112))
+ (-5 *1 (-644 *5 *6 *4 *3)) (-4 *3 (-663 *5 *6 *4)))))
+(((*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1179))))
((*1 *1 *1) (-12 (-5 *1 (-648 *2)) (-4 *2 (-823))))
((*1 *1 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823))))
((*1 *1 *1) (-5 *1 (-834)))
((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834))))
((*1 *2 *1)
(-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3))
- (-4 *3 (-1202 *2)))))
+ (-4 *3 (-1201 *2)))))
(((*1 *2 *3 *1)
- (|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-5 *2 (-2 (|:| -3337 *3) (|:| -1793 *4))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1188 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1217 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))))
+ (|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-5 *2 (-2 (|:| -3336 *3) (|:| -1791 *4))))))
+(((*1 *2 *1) (-12 (-5 *2 (-798)) (-5 *1 (-797)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-541))
+ (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3))) (-5 *1 (-1196 *4 *3))
+ (-4 *3 (-1201 *4)))))
+(((*1 *2 *1) (-12 (-5 *1 (-172 *2)) (-4 *2 (-300))))
+ ((*1 *2 *1) (-12 (-5 *1 (-885 *2)) (-4 *2 (-300))))
+ ((*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)) (-4 *2 (-300))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1027)) (-5 *2 (-549)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-101)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-834))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))))
-(((*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-729)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-169)))))
-(((*1 *2 *2 *2 *2 *2 *3)
- (-12 (-5 *2 (-665 *4)) (-5 *3 (-747)) (-4 *4 (-1018))
- (-5 *1 (-666 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1180))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1063))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 *2)) (-4 *2 (-1201 *4)) (-5 *1 (-528 *4 *2 *5 *6))
+ (-4 *4 (-300)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-747))))))
+(((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-350 *3)) (-4 *3 (-342)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-1146)))))
+(((*1 *2 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1179))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-1062))))
((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541))
+ (|partial| -12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541))
(-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-1214 *3)) (-4 *3 (-1180))))
- ((*1 *2 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))))
+ (-12 (-5 *2 (-747)) (-4 *1 (-1213 *3)) (-4 *3 (-1179))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4336)) (-4 *1 (-229 *3))
+ (-4 *3 (-1066))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-275 *3)) (-4 *3 (-1179)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1138 *2)) (-4 *2 (-423 *4)) (-4 *4 (-13 (-823) (-541)))
+ (-5 *1 (-32 *4 *2)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1142)) (-5 *5 (-621 (-400 (-923 *6))))
+ (-5 *3 (-400 (-923 *6)))
+ (-4 *6 (-13 (-541) (-1009 (-549)) (-145)))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-555 *6)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *6) (|:| -3847 *6) (|:| |sol?| (-112))) (-549)
+ *6))
+ (-4 *6 (-356)) (-4 *7 (-1201 *6))
+ (-5 *2 (-2 (|:| |answer| (-567 (-400 *7))) (|:| |a0| *6)))
+ (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))))
+(((*1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1228)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459))))
+ ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1122 (-400 *3))) (-5 *1 (-172 *3)) (-4 *3 (-300)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *2 (-621 *2))) (-5 *4 (-621 *5))
+ (-4 *5 (-38 (-400 (-549)))) (-4 *2 (-1216 *5))
+ (-5 *1 (-1218 *5 *2)))))
(((*1 *1 *1)
(-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170)))))
+ (-4 *4 (-823)) (-4 *2 (-541)))))
(((*1 *2 *3 *4)
- (-12 (-4 *6 (-541)) (-4 *2 (-920 *3 *5 *4))
- (-5 *1 (-709 *5 *4 *6 *2)) (-5 *3 (-400 (-923 *6))) (-4 *5 (-769))
- (-4 *4 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $))))))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2 (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4))))
- (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4)
- (-12 (-5 *3 (-1125)) (-5 *5 (-665 (-219))) (-5 *6 (-219))
- (-5 *7 (-665 (-549))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-729)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-219)) (-5 *4 (-549))
- (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) (-5 *2 (-1006))
- (-5 *1 (-725)))))
-(((*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-52)))))
+ (|partial| -12 (-5 *4 (-400 *2)) (-4 *2 (-1201 *5))
+ (-5 *1 (-783 *5 *2 *3 *6))
+ (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549)))))
+ (-4 *3 (-632 *2)) (-4 *6 (-632 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-621 (-400 *2))) (-4 *2 (-1201 *5))
+ (-5 *1 (-783 *5 *2 *3 *6))
+ (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *3 (-632 *2))
+ (-4 *6 (-632 (-400 *2))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1142))
+ (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-309 *5)))
+ (-5 *1 (-1095 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-400 (-923 *5)))) (-5 *4 (-621 (-1142)))
+ (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-621 (-309 *5))))
+ (-5 *1 (-1095 *5)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-4 *1 (-874 *3)))))
-(((*1 *1) (-5 *1 (-139))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-328 *3 *4 *5 *6)) (-4 *3 (-356)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-4 *6 (-335 *3 *4 *5))
- (-5 *2 (-406 *4 (-400 *4) *5 *6))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1226 *6)) (-4 *6 (-13 (-402 *4 *5) (-1009 *4)))
- (-4 *4 (-963 *3)) (-4 *5 (-1202 *4)) (-4 *3 (-300))
- (-5 *1 (-406 *3 *4 *5 *6))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-356))
- (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)))))
-(((*1 *2 *3 *4 *2 *5 *6)
- (-12
- (-5 *5
- (-2 (|:| |done| (-621 *11))
- (|:| |todo| (-621 (-2 (|:| |val| *3) (|:| -1981 *11))))))
- (-5 *6 (-747))
- (-5 *2 (-621 (-2 (|:| |val| (-621 *10)) (|:| -1981 *11))))
- (-5 *3 (-621 *10)) (-5 *4 (-621 *11)) (-4 *10 (-1032 *7 *8 *9))
- (-4 *11 (-1038 *7 *8 *9 *10)) (-4 *7 (-444)) (-4 *8 (-769))
- (-4 *9 (-823)) (-5 *1 (-1036 *7 *8 *9 *10 *11))))
- ((*1 *2 *3 *4 *2 *5 *6)
- (-12
- (-5 *5
- (-2 (|:| |done| (-621 *11))
- (|:| |todo| (-621 (-2 (|:| |val| *3) (|:| -1981 *11))))))
- (-5 *6 (-747))
- (-5 *2 (-621 (-2 (|:| |val| (-621 *10)) (|:| -1981 *11))))
- (-5 *3 (-621 *10)) (-5 *4 (-621 *11)) (-4 *10 (-1032 *7 *8 *9))
- (-4 *11 (-1076 *7 *8 *9 *10)) (-4 *7 (-444)) (-4 *8 (-769))
- (-4 *9 (-823)) (-5 *1 (-1112 *7 *8 *9 *10 *11)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-549)) (-4 *1 (-56 *4 *5 *3)) (-4 *4 (-1180))
- (-4 *5 (-366 *4)) (-4 *3 (-366 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-1231)) (-5 *1 (-1146))))
- ((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-1146)))))
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-145))
+ (-4 *3 (-300)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *1 (-948 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1124)) (-5 *4 (-549)) (-5 *5 (-665 (-219)))
+ (-5 *2 (-1006)) (-5 *1 (-731)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-5 *1 (-1114 *3)))))
+ (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-5 *1 (-1113 *3)))))
(((*1 *1 *2 *1)
- (-12 (|has| *1 (-6 -4337)) (-4 *1 (-149 *2)) (-4 *2 (-1180))
- (-4 *2 (-1067))))
+ (-12 (|has| *1 (-6 -4336)) (-4 *1 (-149 *2)) (-4 *2 (-1179))
+ (-4 *2 (-1066))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4337)) (-4 *1 (-149 *3))
- (-4 *3 (-1180))))
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4336)) (-4 *1 (-149 *3))
+ (-4 *3 (-1179))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-650 *3)) (-4 *3 (-1180))))
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-650 *3)) (-4 *3 (-1179))))
((*1 *1 *2 *1 *3)
- (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-549)) (-4 *4 (-1067))
+ (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-549)) (-4 *4 (-1066))
(-5 *1 (-714 *4))))
((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-549)) (-5 *1 (-714 *2)) (-4 *2 (-1067))))
+ (-12 (-5 *3 (-549)) (-5 *1 (-714 *2)) (-4 *2 (-1066))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1107 *3 *4)) (-4 *3 (-13 (-1067) (-34)))
- (-4 *4 (-13 (-1067) (-34))) (-5 *1 (-1108 *3 *4)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-119 *2)) (-4 *2 (-1180)))))
+ (-12 (-5 *2 (-1106 *3 *4)) (-4 *3 (-13 (-1066) (-34)))
+ (-4 *4 (-13 (-1066) (-34))) (-5 *1 (-1107 *3 *4)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-833)) (-5 *3 (-129)) (-5 *2 (-1086)))))
+(((*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-268)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372))
- (|:| |expense| (-372)) (|:| |accuracy| (-372))
- (|:| |intermediateResults| (-372))))
- (-5 *2 (-1006)) (-5 *1 (-298)))))
+ (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3))
+ (-4 *3 (-13 (-356) (-1164) (-973))))))
(((*1 *1 *1) (-12 (-5 *1 (-491 *2)) (-14 *2 (-549))))
- ((*1 *1 *1) (-5 *1 (-1087))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-809 *3)) (-4 *3 (-1067))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-816 *3)) (-4 *3 (-1067)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-534))))
-(((*1 *2 *3 *2)
- (-12
+ ((*1 *1 *1) (-5 *1 (-1086))))
+(((*1 *2 *3 *4 *5 *4 *4 *4)
+ (-12 (-4 *6 (-823)) (-5 *3 (-621 *6)) (-5 *5 (-621 *3))
(-5 *2
- (-621
- (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-747)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *3 (-769)) (-4 *6 (-920 *4 *3 *5)) (-4 *4 (-444)) (-4 *5 (-823))
- (-5 *1 (-441 *4 *3 *5 *6)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-58 *6)) (-4 *6 (-1180))
- (-4 *5 (-1180)) (-5 *2 (-58 *5)) (-5 *1 (-57 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-234 *6 *7)) (-14 *6 (-747))
- (-4 *7 (-1180)) (-4 *5 (-1180)) (-5 *2 (-234 *6 *5))
- (-5 *1 (-233 *6 *7 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1180)) (-4 *5 (-1180))
- (-4 *2 (-366 *5)) (-5 *1 (-364 *6 *4 *5 *2)) (-4 *4 (-366 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1067)) (-4 *5 (-1067))
- (-4 *2 (-418 *5)) (-5 *1 (-416 *6 *4 *5 *2)) (-4 *4 (-418 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-621 *6)) (-4 *6 (-1180))
- (-4 *5 (-1180)) (-5 *2 (-621 *5)) (-5 *1 (-619 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-929 *6)) (-4 *6 (-1180))
- (-4 *5 (-1180)) (-5 *2 (-929 *5)) (-5 *1 (-928 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1123 *6)) (-4 *6 (-1180))
- (-4 *3 (-1180)) (-5 *2 (-1123 *3)) (-5 *1 (-1121 *6 *3))))
+ (-2 (|:| |f1| *3) (|:| |f2| (-621 *5)) (|:| |f3| *5)
+ (|:| |f4| (-621 *5))))
+ (-5 *1 (-1150 *6)) (-5 *4 (-621 *5)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-14 *4 (-621 (-1142))) (-4 *2 (-170))
+ (-4 *3 (-232 (-3774 *4) (-747)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -3494 *5) (|:| -1714 *3))
+ (-2 (|:| -3494 *5) (|:| -1714 *3))))
+ (-5 *1 (-453 *4 *2 *5 *3 *6 *7)) (-4 *5 (-823))
+ (-4 *7 (-920 *2 *3 (-836 *4))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *3 (-1183)) (-4 *5 (-1201 *3)) (-4 *6 (-1201 (-400 *5)))
+ (-5 *2 (-112)) (-5 *1 (-334 *4 *3 *5 *6)) (-4 *4 (-335 *3 *5 *6))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1138 *1)) (-5 *4 (-1142)) (-4 *1 (-27))
+ (-5 *2 (-621 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1138 *1)) (-4 *1 (-27)) (-5 *2 (-621 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-923 *1)) (-4 *1 (-27)) (-5 *2 (-621 *1))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-621 *1))
+ (-4 *1 (-29 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *2 (-621 *1)) (-4 *1 (-29 *3))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1226 *6)) (-4 *6 (-1180))
- (-4 *5 (-1180)) (-5 *2 (-1226 *5)) (-5 *1 (-1225 *6 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *2 *3 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-728)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-1 (-219) (-219) (-219)))
- (-5 *4 (-3 (-1 (-219) (-219) (-219) (-219)) "undefined"))
- (-5 *5 (-1061 (-219))) (-5 *6 (-621 (-256))) (-5 *2 (-1100 (-219)))
- (-5 *1 (-673)))))
+ (-12 (-5 *3 (-309 (-219))) (-5 *4 (-621 (-1142)))
+ (-5 *5 (-1060 (-816 (-219)))) (-5 *2 (-1122 (-219))) (-5 *1 (-293)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-665 *3))
+ (-4 *3 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $)))))
+ (-4 *4 (-1201 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-549))) (-5 *4 (-876 (-549)))
+ (-5 *2 (-665 (-549))) (-5 *1 (-571))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-621 (-665 (-549))))
+ (-5 *1 (-571))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-549))) (-5 *4 (-621 (-876 (-549))))
+ (-5 *2 (-621 (-665 (-549)))) (-5 *1 (-571)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 (-1239 *4 *5 *6 *7)))
- (-5 *1 (-1239 *4 *5 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-621 *9)) (-5 *4 (-1 (-112) *9 *9))
- (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1032 *6 *7 *8)) (-4 *6 (-541))
- (-4 *7 (-769)) (-4 *8 (-823)) (-5 *2 (-621 (-1239 *6 *7 *8 *9)))
- (-5 *1 (-1239 *6 *7 *8 *9)))))
+ (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-621 (-621 *7)))
+ (-5 *1 (-440 *4 *5 *6 *7)) (-5 *3 (-621 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769))
+ (-4 *7 (-823)) (-4 *8 (-920 *5 *6 *7)) (-5 *2 (-621 (-621 *8)))
+ (-5 *1 (-440 *5 *6 *7 *8)) (-5 *3 (-621 *8)))))
+(((*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6)
+ (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219)))
+ (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-69 APROD)))) (-5 *4 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-733)))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-491 *2)) (-14 *2 (-549))))
- ((*1 *1 *1 *1) (-5 *1 (-1087))))
-(((*1 *2 *1) (-12 (-4 *1 (-1214 *3)) (-4 *3 (-1180)) (-5 *2 (-747)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1353 *4)))
- (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-219)) (-5 *3 (-747)) (-5 *1 (-220))))
+ ((*1 *1 *1 *1) (-5 *1 (-1086))))
+(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459))))
+ ((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459))))
+ ((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-172 *3)) (-4 *3 (-300))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-650 *3)) (-4 *3 (-1179))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-747)) (-4 *1 (-717 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-823))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-840 *3)) (-5 *2 (-549))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-621 *3)) (-4 *1 (-951 *3)) (-4 *3 (-1018))))
((*1 *2 *3 *2)
- (-12 (-5 *2 (-167 (-219))) (-5 *3 (-747)) (-5 *1 (-220))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
- (-4 *2 (-423 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1106))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-747)) (-4 *4 (-356)) (-4 *5 (-1202 *4)) (-5 *2 (-1231))
- (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1202 (-400 *5))) (-14 *7 *6))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-1143))
- (-4 *4 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-600 *4 *2)) (-4 *2 (-13 (-1165) (-930) (-29 *4))))))
-(((*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4)
- (-12 (-5 *3 (-1125)) (-5 *4 (-549)) (-5 *5 (-665 (-219)))
- (-5 *6 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))))
+ (-12 (-5 *2 (-621 *1)) (-5 *3 (-621 *7)) (-4 *1 (-1038 *4 *5 *6 *7))
+ (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *1))
+ (-4 *1 (-1038 *4 *5 *6 *7))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 *1))
+ (-4 *1 (-1038 *4 *5 *6 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1203 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))))
+(((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |mval| (-665 *3)) (|:| |invmval| (-665 *3))
+ (|:| |genIdeal| (-495 *3 *4 *5 *6))))
+ (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))))
+(((*1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-384)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *5 (-747)) (-4 *6 (-1066)) (-4 *7 (-871 *6))
+ (-5 *2 (-665 *7)) (-5 *1 (-668 *6 *7 *3 *4)) (-4 *3 (-366 *7))
+ (-4 *4 (-13 (-366 *6) (-10 -7 (-6 -4336)))))))
+(((*1 *2) (-12 (-5 *2 (-1099 (-219))) (-5 *1 (-1162)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1152 (-621 *4))) (-4 *4 (-823))
- (-5 *2 (-621 (-621 *4))) (-5 *1 (-1151 *4)))))
+ (-12 (-5 *4 (-1 (-621 *5) *6))
+ (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *6 (-1201 *5))
+ (-5 *2 (-621 (-2 (|:| -2587 *5) (|:| -2649 *3))))
+ (-5 *1 (-785 *5 *6 *3 *7)) (-4 *3 (-632 *6))
+ (-4 *7 (-632 (-400 *6))))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-372)) (-5 *1 (-96)))))
+(((*1 *2)
+ (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-410 *3)))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-491 *2)) (-14 *2 (-549))))
- ((*1 *1 *1 *1) (-5 *1 (-1087))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-892)) (-4 *4 (-361)) (-4 *4 (-356)) (-5 *2 (-1139 *1))
- (-4 *1 (-322 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-1139 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-363 *3 *2)) (-4 *3 (-170)) (-4 *3 (-356))
- (-4 *2 (-1202 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1226 *4)) (-4 *4 (-342)) (-5 *2 (-1139 *4))
- (-5 *1 (-519 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1226 *4)) (-4 *4 (-1018)) (-4 *2 (-1202 *4))
- (-5 *1 (-436 *4 *2))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-400 (-1139 (-309 *5)))) (-5 *3 (-1226 (-309 *5)))
- (-5 *4 (-549)) (-4 *5 (-13 (-541) (-823))) (-5 *1 (-1097 *5)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1202 *5)) (-4 *5 (-356))
- (-5 *2 (-2 (|:| -3440 (-400 *6)) (|:| |coeff| (-400 *6))))
- (-5 *1 (-559 *5 *6)) (-5 *3 (-400 *6)))))
-(((*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1231)) (-5 *1 (-372)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-665 (-400 (-923 (-549))))) (-5 *2 (-621 (-309 (-549))))
- (-5 *1 (-1002)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
+ ((*1 *1 *1 *1) (-5 *1 (-1086))))
+(((*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-1006)) (-5 *1 (-813))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-309 (-372)))) (-5 *4 (-621 (-372)))
+ (-5 *2 (-1006)) (-5 *1 (-813)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-1142)))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-1124)) (-5 *5 (-665 (-219)))
+ (-5 *2 (-1006)) (-5 *1 (-724)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-1179)) (-5 *2 (-112)))))
(((*1 *1 *1) (-4 *1 (-534))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
+(((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-1138 (-923 *4))) (-5 *1 (-409 *3 *4))
+ (-4 *3 (-410 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-4 *3 (-356))
+ (-5 *2 (-1138 (-923 *3)))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1138 (-400 (-923 *3)))) (-5 *1 (-445 *3 *4 *5 *6))
(-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-149 *2))
- (-4 *2 (-1180)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *6 (-1125))
- (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-665 *4)) (-4 *4 (-356)) (-5 *2 (-1139 *4))
- (-5 *1 (-522 *4 *5 *6)) (-4 *5 (-356)) (-4 *6 (-13 (-356) (-821))))))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-444)) (-4 *3 (-823)) (-4 *3 (-1009 (-549)))
+ (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-423 *3))
+ (-4 *2
+ (-13 (-356) (-295)
+ (-10 -8 (-15 -1392 ((-1091 *3 (-592 $)) $))
+ (-15 -1404 ((-1091 *3 (-592 $)) $))
+ (-15 -3845 ($ (-1091 *3 (-592 $))))))))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1202 *6))
- (-4 *6 (-13 (-27) (-423 *5)))
- (-4 *5 (-13 (-823) (-541) (-1009 (-549)))) (-4 *8 (-1202 (-400 *7)))
- (-5 *2 (-567 *3)) (-5 *1 (-537 *5 *6 *7 *8 *3))
- (-4 *3 (-335 *6 *7 *8)))))
-(((*1 *2 *1) (-12 (|has| *1 (-6 -4337)) (-4 *1 (-34)) (-5 *2 (-747))))
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-621 (-473 *4 *5))) (-5 *3 (-621 (-836 *4)))
+ (-14 *4 (-621 (-1142))) (-4 *5 (-444)) (-5 *1 (-463 *4 *5 *6))
+ (-4 *6 (-444)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-342)) (-5 *2 (-411 *3)) (-5 *1 (-210 *4 *3))
+ (-4 *3 (-1201 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3))
+ (-4 *3 (-1201 (-549)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-621 (-747))) (-5 *2 (-411 *3)) (-5 *1 (-434 *3))
+ (-4 *3 (-1201 (-549)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-621 (-747))) (-5 *5 (-747)) (-5 *2 (-411 *3))
+ (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3))
+ (-4 *3 (-1201 (-549)))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-411 *3)) (-5 *1 (-978 *3))
+ (-4 *3 (-1201 (-400 (-549))))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-411 *3)) (-5 *1 (-1190 *3)) (-4 *3 (-1201 (-549))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))))
+(((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
+ (-4 *3 (-360 *4))))
+ ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (|has| *1 (-6 -4336)) (-4 *1 (-34)) (-5 *2 (-747))))
((*1 *2 *1)
- (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-549))))
+ (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-549))))
((*1 *2 *1)
- (-12 (-5 *2 (-747)) (-5 *1 (-1249 *3 *4)) (-4 *3 (-1018))
+ (-12 (-5 *2 (-747)) (-5 *1 (-1248 *3 *4)) (-4 *3 (-1018))
(-4 *4 (-819)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-823)) (-5 *1 (-1150 *3)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1067))
- (-4 *6 (-1067)) (-4 *2 (-1067)) (-5 *1 (-656 *5 *6 *2)))))
-(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-728)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-795 *4)) (-4 *4 (-823)) (-5 *2 (-112))
- (-5 *1 (-648 *4)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-541)) (-4 *3 (-1018))
- (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-825 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-98 *5)) (-4 *5 (-541)) (-4 *5 (-1018))
- (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3))) (-5 *1 (-826 *5 *3))
- (-4 *3 (-825 *5)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-410 *4)))))
+ (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1066))
+ (-4 *6 (-1066)) (-4 *2 (-1066)) (-5 *1 (-656 *5 *6 *2)))))
+(((*1 *1 *1) (-4 *1 (-607)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973) (-1164))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
(((*1 *1 *2 *2)
(-12 (-5 *2 (-747)) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5))
(-4 *4 (-366 *3)) (-4 *5 (-366 *3))))
((*1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-1224 *3)) (-4 *3 (-23)) (-4 *3 (-1180)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-38 (-400 (-549))))
- (-4 *2 (-170)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
- (-5 *2 (-621 *4)) (-5 *1 (-1095 *3 *4)) (-4 *3 (-1202 *4))))
- ((*1 *2 *3 *3 *3)
- (-12 (-4 *3 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
- (-5 *2 (-621 *3)) (-5 *1 (-1095 *4 *3)) (-4 *4 (-1202 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))))
+ (-12 (-5 *2 (-747)) (-4 *1 (-1223 *3)) (-4 *3 (-23)) (-4 *3 (-1179)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| |cd| (-1124)) (|:| -2479 (-1124))))
+ (-5 *1 (-798)))))
+(((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))))
+(((*1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1145)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-892)) (-4 *1 (-721 *3)) (-4 *3 (-170)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))))
(((*1 *1 *1) (-5 *1 (-112))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-1139 *3)) (-5 *1 (-41 *4 *3))
- (-4 *3
- (-13 (-356) (-295)
- (-10 -8 (-15 -1394 ((-1092 *4 (-592 $)) $))
- (-15 -1403 ((-1092 *4 (-592 $)) $))
- (-15 -3846 ($ (-1092 *4 (-592 $))))))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-2 (|:| |val| (-621 *8)) (|:| -1981 *9))))
+ (-12 (-5 *3 (-621 (-2 (|:| |val| (-621 *8)) (|:| -1979 *9))))
(-5 *4 (-747)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1038 *5 *6 *7 *8))
- (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-1231))
+ (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-1230))
(-5 *1 (-1036 *5 *6 *7 *8 *9))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-2 (|:| |val| (-621 *8)) (|:| -1981 *9))))
- (-5 *4 (-747)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1076 *5 *6 *7 *8))
- (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-1231))
- (-5 *1 (-1112 *5 *6 *7 *8 *9)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-584 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1180))
- (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-541))
- (-4 *3 (-920 *7 *5 *6))
+ (-12 (-5 *3 (-621 (-2 (|:| |val| (-621 *8)) (|:| -1979 *9))))
+ (-5 *4 (-747)) (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1075 *5 *6 *7 *8))
+ (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-1230))
+ (-5 *1 (-1111 *5 *6 *7 *8 *9)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 (-112) *7 (-621 *7))) (-4 *1 (-1172 *4 *5 *6 *7))
+ (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-173))) (-5 *1 (-1051)))))
+(((*1 *2 *3 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-747)) (|:| |poli| *7)
+ (|:| |polj| *7)))
+ (-4 *5 (-769)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *6 (-823))
+ (-5 *2 (-112)) (-5 *1 (-441 *4 *5 *6 *7)))))
+(((*1 *1) (-5 *1 (-1030))))
+(((*1 *2 *1) (-12 (-5 *2 (-1122 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1183)) (-4 *5 (-1201 *4))
(-5 *2
- (-2 (|:| -3731 (-747)) (|:| -1570 *3) (|:| |radicand| (-621 *3))))
- (-5 *1 (-924 *5 *6 *7 *3 *8)) (-5 *4 (-747))
- (-4 *8
- (-13 (-356)
- (-10 -8 (-15 -1394 (*3 $)) (-15 -1403 (*3 $)) (-15 -3846 ($ *3))))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1018))
- (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1165) (-277)))
- (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1202 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-892)) (-4 *5 (-1018))
- (-4 *2 (-13 (-397) (-1009 *5) (-356) (-1165) (-277)))
- (-5 *1 (-435 *5 *3 *2)) (-4 *3 (-1202 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-947 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *2 (-823)) (-4 *5 (-1032 *3 *4 *2)))))
+ (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-400 *5))
+ (|:| |c2| (-400 *5)) (|:| |deg| (-747))))
+ (-5 *1 (-146 *4 *5 *3)) (-4 *3 (-1201 (-400 *5))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1143)) (-5 *2 (-1 *6 *5)) (-5 *1 (-683 *4 *5 *6))
- (-4 *4 (-594 (-525))) (-4 *5 (-1180)) (-4 *6 (-1180)))))
-(((*1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1229))))
- ((*1 *2 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1229)))))
-(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-538)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1217 *2)) (-4 *2 (-1018)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-541) (-145))) (-5 *1 (-526 *3 *2))
- (-4 *2 (-1217 *3))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-4 *4 (-1202 *3))
- (-4 *5 (-701 *3 *4)) (-5 *1 (-530 *3 *4 *5 *2)) (-4 *2 (-1217 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-5 *1 (-531 *3 *2))
- (-4 *2 (-1217 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-13 (-541) (-145)))
- (-5 *1 (-1119 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-897)))))
-(((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
- (|partial| -12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769))
- (-4 *8 (-823)) (-4 *9 (-1032 *6 *7 *8))
- (-5 *2
- (-2 (|:| -2652 (-621 *9)) (|:| -1981 *4) (|:| |ineq| (-621 *9))))
- (-5 *1 (-959 *6 *7 *8 *9 *4)) (-5 *3 (-621 *9))
- (-4 *4 (-1038 *6 *7 *8 *9))))
- ((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
- (|partial| -12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769))
- (-4 *8 (-823)) (-4 *9 (-1032 *6 *7 *8))
- (-5 *2
- (-2 (|:| -2652 (-621 *9)) (|:| -1981 *4) (|:| |ineq| (-621 *9))))
- (-5 *1 (-1074 *6 *7 *8 *9 *4)) (-5 *3 (-621 *9))
- (-4 *4 (-1038 *6 *7 *8 *9)))))
+ (-12 (-4 *4 (-13 (-356) (-821)))
+ (-5 *2 (-2 (|:| |start| *3) (|:| -3390 (-411 *3))))
+ (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4))))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1018)) (-4 *4 (-1067)) (-5 *2 (-621 *1))
- (-4 *1 (-375 *3 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-621 (-712 *3 *4))) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018))
- (-4 *4 (-703))))
+ (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3))
+ (-4 *5 (-366 *3)) (-5 *2 (-112))))
((*1 *2 *1)
- (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1))
- (-4 *1 (-920 *3 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-444)) (-4 *3 (-823)) (-4 *3 (-1009 (-549)))
- (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-423 *3))
- (-4 *2
- (-13 (-356) (-295)
- (-10 -8 (-15 -1394 ((-1092 *3 (-592 $)) $))
- (-15 -1403 ((-1092 *3 (-592 $)) $))
- (-15 -3846 ($ (-1092 *3 (-592 $))))))))))
-(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))))
-(((*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1125)) (-5 *1 (-762)))))
-(((*1 *2 *3 *3 *4 *5 *3 *6)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
- (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-80 FCN)))) (-5 *2 (-1006))
- (-5 *1 (-723)))))
-(((*1 *1 *1) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1180)) (-4 *2 (-1067))))
- ((*1 *1 *1) (-12 (-4 *1 (-671 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
- (-5 *2
- (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549))
- (|:| |success| (-112))))
- (-5 *1 (-765)) (-5 *5 (-549)))))
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
+ (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-112)))))
+(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-300))
+ (-5 *2 (-400 (-411 (-923 *4)))) (-5 *1 (-1013 *4)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *3 (-621 (-549)))
+ (-5 *1 (-854)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *1) (-12 (-4 *3 (-1179)) (-5 *2 (-621 *1)) (-4 *1 (-981 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1124)) (-5 *1 (-687)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1018)) (-4 *3 (-1201 *4)) (-4 *2 (-1216 *4))
+ (-5 *1 (-1219 *4 *3 *5 *2)) (-4 *5 (-632 *3)))))
+(((*1 *2 *3 *4 *4 *3 *5)
+ (-12 (-5 *4 (-592 *3)) (-5 *5 (-1138 *3))
+ (-4 *3 (-13 (-423 *6) (-27) (-1164)))
+ (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
+ (-5 *2 (-567 *3)) (-5 *1 (-545 *6 *3 *7)) (-4 *7 (-1066))))
+ ((*1 *2 *3 *4 *4 *4 *3 *5)
+ (-12 (-5 *4 (-592 *3)) (-5 *5 (-400 (-1138 *3)))
+ (-4 *3 (-13 (-423 *6) (-27) (-1164)))
+ (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
+ (-5 *2 (-567 *3)) (-5 *1 (-545 *6 *3 *7)) (-4 *7 (-1066)))))
(((*1 *1 *2 *2 *3)
- (-12 (-5 *2 (-747)) (-4 *3 (-1180)) (-4 *1 (-56 *3 *4 *5))
+ (-12 (-5 *2 (-747)) (-4 *3 (-1179)) (-4 *1 (-56 *3 *4 *5))
(-4 *4 (-366 *3)) (-4 *5 (-366 *3))))
((*1 *1) (-5 *1 (-169)))
- ((*1 *1) (-12 (-5 *1 (-207 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1067))))
- ((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1125)) (-4 *1 (-382))))
+ ((*1 *1) (-12 (-5 *1 (-207 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1066))))
+ ((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1124)) (-4 *1 (-382))))
((*1 *1) (-5 *1 (-387)))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-4 *1 (-627 *3)) (-4 *3 (-1180))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-4 *1 (-627 *3)) (-4 *3 (-1179))))
((*1 *1)
- (-12 (-4 *3 (-1067)) (-5 *1 (-856 *2 *3 *4)) (-4 *2 (-1067))
+ (-12 (-4 *3 (-1066)) (-5 *1 (-856 *2 *3 *4)) (-4 *2 (-1066))
(-4 *4 (-642 *3))))
- ((*1 *1) (-12 (-5 *1 (-860 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067))))
- ((*1 *1) (-12 (-5 *1 (-1131 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018))))
- ((*1 *1 *1) (-5 *1 (-1143))) ((*1 *1) (-5 *1 (-1143)))
- ((*1 *1) (-5 *1 (-1160))))
-(((*1 *1) (-4 *1 (-34))) ((*1 *1) (-5 *1 (-284)))
- ((*1 *1) (-5 *1 (-834)))
- ((*1 *1)
- (-12 (-4 *2 (-444)) (-4 *3 (-823)) (-4 *4 (-769))
- (-5 *1 (-958 *2 *3 *4 *5)) (-4 *5 (-920 *2 *4 *3))))
- ((*1 *1) (-5 *1 (-1052)))
- ((*1 *1)
- (-12 (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1067) (-34)))
- (-4 *3 (-13 (-1067) (-34)))))
- ((*1 *1) (-5 *1 (-1146))) ((*1 *1) (-5 *1 (-1147))))
-(((*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-1231)) (-5 *1 (-1146))))
- ((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-1147)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 *4)) (-4 *4 (-1067)) (-5 *2 (-1231))
- (-5 *1 (-1181 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 *4)) (-4 *4 (-1067)) (-5 *2 (-1231))
- (-5 *1 (-1181 *4)))))
+ ((*1 *1) (-12 (-5 *1 (-860 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066))))
+ ((*1 *1) (-12 (-5 *1 (-1130 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018))))
+ ((*1 *1 *1) (-5 *1 (-1142))) ((*1 *1) (-5 *1 (-1142)))
+ ((*1 *1) (-5 *1 (-1159))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-747)) (-4 *1 (-632 *3)) (-4 *3 (-1018)) (-4 *3 (-356))))
+ ((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-747)) (-5 *4 (-1 *5 *5)) (-4 *5 (-356))
+ (-5 *1 (-635 *5 *2)) (-4 *2 (-632 *5)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-3 (-400 (-923 *5)) (-1132 (-1143) (-923 *5))))
- (-4 *5 (-444)) (-5 *2 (-621 (-665 (-400 (-923 *5)))))
- (-5 *1 (-285 *5)) (-5 *4 (-665 (-400 (-923 *5)))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1067)) (-5 *1 (-876 *3)))))
-(((*1 *1) (-5 *1 (-112))) ((*1 *1) (-5 *1 (-596))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
+ (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1979 *4))))
+ (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-665 (-309 (-219)))) (-5 *2 (-372)) (-5 *1 (-199)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-925)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-621 (-2 (|:| -3337 *3) (|:| -1793 *4))))
- (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *1 (-1156 *3 *4))))
- ((*1 *1) (-12 (-4 *1 (-1156 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-729)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1211 *3 *4 *5)) (-5 *1 (-312 *3 *4 *5))
- (-4 *3 (-13 (-356) (-823))) (-14 *4 (-1143)) (-14 *5 *3)))
- ((*1 *2 *1) (-12 (-4 *1 (-397)) (-5 *2 (-549))))
- ((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-411 *3)) (-4 *3 (-541))))
- ((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-675))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-1067)) (-5 *1 (-690 *3 *2 *4)) (-4 *3 (-823))
- (-14 *4
- (-1 (-112) (-2 (|:| -3493 *3) (|:| -3731 *2))
- (-2 (|:| -3493 *3) (|:| -3731 *2)))))))
+ (-12
+ (-5 *3
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-747)) (|:| |poli| *7)
+ (|:| |polj| *7)))
+ (-4 *5 (-769)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *6 (-823))
+ (-5 *2 (-112)) (-5 *1 (-441 *4 *5 *6 *7)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *1 (-848 *2)) (-4 *2 (-1179))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *1 (-850 *2)) (-4 *2 (-1179))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *1 (-853 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1018)) (-4 *2 (-663 *4 *5 *6))
+ (-5 *1 (-103 *4 *3 *2 *5 *6)) (-4 *3 (-1201 *4)) (-4 *5 (-366 *4))
+ (-4 *6 (-366 *4)))))
+(((*1 *1 *1 *1) (-5 *1 (-834))) ((*1 *1 *1) (-5 *1 (-834)))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1138 (-549))) (-5 *3 (-549)) (-4 *1 (-840 *4)))))
+(((*1 *1) (-5 *1 (-112))) ((*1 *1) (-5 *1 (-596))))
(((*1 *2 *1)
- (-12 (-5 *2 (-747)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892))
- (-4 *4 (-1018)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
+ (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-1141)) (-5 *1 (-323)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1180 *2))
+ (-4 *2 (-1066))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 *2)) (-4 *2 (-1066)) (-4 *2 (-823))
+ (-5 *1 (-1180 *2)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-621 (-2 (|:| -3336 *3) (|:| -1791 *4))))
+ (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *1 (-1155 *3 *4))))
+ ((*1 *1) (-12 (-4 *1 (-1155 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066)))))
+(((*1 *2)
+ (-12
(-5 *2
- (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549))
- (|:| |success| (-112))))
- (-5 *1 (-765)) (-5 *5 (-549)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-1147)))))
+ (-1225 (-621 (-2 (|:| -4160 (-881 *3)) (|:| -3494 (-1086))))))
+ (-5 *1 (-344 *3 *4)) (-14 *3 (-892)) (-14 *4 (-892))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1225 (-621 (-2 (|:| -4160 *3) (|:| -3494 (-1086))))))
+ (-5 *1 (-345 *3 *4)) (-4 *3 (-342)) (-14 *4 (-3 (-1138 *3) *2))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1225 (-621 (-2 (|:| -4160 *3) (|:| -3494 (-1086))))))
+ (-5 *1 (-346 *3 *4)) (-4 *3 (-342)) (-14 *4 (-892)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-287 *2)) (-4 *2 (-703)) (-4 *2 (-1179)))))
+(((*1 *2 *3)
+ (-12 (-14 *4 (-621 (-1142))) (-14 *5 (-747))
+ (-5 *2
+ (-621
+ (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4)
+ (-241 *4 (-400 (-549))))))
+ (-5 *1 (-496 *4 *5))
+ (-5 *3
+ (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4)
+ (-241 *4 (-400 (-549))))))))
+(((*1 *2)
+ (-12 (-5 *2 (-892)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-892)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-963 *2)) (-4 *2 (-541)) (-5 *1 (-140 *2 *4 *3))
+ (-4 *3 (-366 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-963 *2)) (-4 *2 (-541)) (-5 *1 (-494 *2 *4 *5 *3))
+ (-4 *5 (-366 *2)) (-4 *3 (-366 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-665 *4)) (-4 *4 (-963 *2)) (-4 *2 (-541))
+ (-5 *1 (-669 *2 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-963 *2)) (-4 *2 (-541)) (-5 *1 (-1194 *2 *4 *3))
+ (-4 *3 (-1201 *4)))))
(((*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-444))))
((*1 *1 *1 *1) (-4 *1 (-444)))
((*1 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-5 *1 (-478 *2)) (-4 *2 (-1202 (-549)))))
+ (-12 (-5 *3 (-621 *2)) (-5 *1 (-478 *2)) (-4 *2 (-1201 (-549)))))
((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-549)) (-5 *1 (-672 *2)) (-4 *2 (-1202 *3))))
+ (-12 (-5 *3 (-549)) (-5 *1 (-672 *2)) (-4 *2 (-1201 *3))))
((*1 *1 *1 *1) (-5 *1 (-747)))
((*1 *2 *2 *2)
(-12 (-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-300))
@@ -3494,737 +3615,588 @@
(-5 *1 (-887 *4 *5 *6 *2)) (-4 *4 (-769)) (-4 *5 (-823))
(-4 *6 (-300))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1139 *6)) (-4 *6 (-920 *5 *3 *4)) (-4 *3 (-769))
+ (-12 (-5 *2 (-1138 *6)) (-4 *6 (-920 *5 *3 *4)) (-4 *3 (-769))
(-4 *4 (-823)) (-4 *5 (-300)) (-5 *1 (-887 *3 *4 *5 *6))))
((*1 *2 *3)
- (-12 (-5 *3 (-621 (-1139 *7))) (-4 *4 (-769)) (-4 *5 (-823))
- (-4 *6 (-300)) (-5 *2 (-1139 *7)) (-5 *1 (-887 *4 *5 *6 *7))
+ (-12 (-5 *3 (-621 (-1138 *7))) (-4 *4 (-769)) (-4 *5 (-823))
+ (-4 *6 (-300)) (-5 *2 (-1138 *7)) (-5 *1 (-887 *4 *5 *6 *7))
(-4 *7 (-920 *6 *4 *5))))
((*1 *1 *1 *1) (-5 *1 (-892)))
((*1 *2 *2 *2)
(-12 (-4 *3 (-444)) (-4 *3 (-541)) (-5 *1 (-940 *3 *2))
- (-4 *2 (-1202 *3))))
+ (-4 *2 (-1201 *3))))
((*1 *2 *2 *1)
(-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
(-4 *4 (-823)) (-4 *2 (-444)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-1231)) (-5 *1 (-807)))))
-(((*1 *2)
- (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-410 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 (-621 *8))) (-5 *3 (-621 *8))
- (-4 *8 (-920 *5 *7 *6)) (-4 *5 (-13 (-300) (-145)))
- (-4 *6 (-13 (-823) (-594 (-1143)))) (-4 *7 (-769)) (-5 *2 (-112))
- (-5 *1 (-895 *5 *6 *7 *8)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
-(((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-658 *3)) (-4 *3 (-1067)))))
-(((*1 *1 *2 *2)
- (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))))
-(((*1 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1180)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1139 *3)) (-4 *3 (-361)) (-4 *1 (-322 *3))
- (-4 *3 (-356)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1180)))))
+(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))))
+(((*1 *2 *1) (-12 (-4 *1 (-295)) (-5 *2 (-621 (-114))))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
(((*1 *2 *3)
- (-12 (-4 *2 (-356)) (-4 *2 (-821)) (-5 *1 (-916 *2 *3))
- (-4 *3 (-1202 *2)))))
-(((*1 *1) (-5 *1 (-219))) ((*1 *1) (-5 *1 (-372))))
-(((*1 *2 *2) (-12 (-5 *1 (-658 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-309 (-372))) (-5 *1 (-298)))))
-(((*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7)
- (-12 (-5 *3 (-1125)) (-5 *5 (-665 (-219))) (-5 *6 (-219))
- (-5 *7 (-665 (-549))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-729)))))
-(((*1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-384)))))
+ (-12
+ (-5 *2
+ (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))))
+ (-5 *1 (-991 *3)) (-4 *3 (-1201 (-549)))))
+ ((*1 *2 *3 *4)
+ (-12
+ (-5 *2
+ (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))))
+ (-5 *1 (-991 *3)) (-4 *3 (-1201 (-549)))
+ (-5 *4 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))))
+ ((*1 *2 *3 *4)
+ (-12
+ (-5 *2
+ (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))))
+ (-5 *1 (-991 *3)) (-4 *3 (-1201 (-549))) (-5 *4 (-400 (-549)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-400 (-549)))
+ (-5 *2 (-621 (-2 (|:| -3837 *5) (|:| -3847 *5)))) (-5 *1 (-991 *3))
+ (-4 *3 (-1201 (-549))) (-5 *4 (-2 (|:| -3837 *5) (|:| -3847 *5)))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *2
+ (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))))
+ (-5 *1 (-992 *3)) (-4 *3 (-1201 (-400 (-549))))))
+ ((*1 *2 *3 *4)
+ (-12
+ (-5 *2
+ (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))))
+ (-5 *1 (-992 *3)) (-4 *3 (-1201 (-400 (-549))))
+ (-5 *4 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-400 (-549)))
+ (-5 *2 (-621 (-2 (|:| -3837 *4) (|:| -3847 *4)))) (-5 *1 (-992 *3))
+ (-4 *3 (-1201 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-400 (-549)))
+ (-5 *2 (-621 (-2 (|:| -3837 *5) (|:| -3847 *5)))) (-5 *1 (-992 *3))
+ (-4 *3 (-1201 *5)) (-5 *4 (-2 (|:| -3837 *5) (|:| -3847 *5))))))
+(((*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-1018)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-335 *4 *3 *5)) (-4 *4 (-1184)) (-4 *3 (-1202 *4))
- (-4 *5 (-1202 (-400 *3))) (-5 *2 (-112))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))))
-(((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-747)) (-4 *5 (-356)) (-5 *2 (-400 *6))
- (-5 *1 (-838 *5 *4 *6)) (-4 *4 (-1217 *5)) (-4 *6 (-1202 *5))))
- ((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-747)) (-5 *4 (-1218 *5 *6 *7)) (-4 *5 (-356))
- (-14 *6 (-1143)) (-14 *7 *5) (-5 *2 (-400 (-1199 *6 *5)))
- (-5 *1 (-839 *5 *6 *7))))
- ((*1 *2 *3 *3 *4)
- (|partial| -12 (-5 *3 (-747)) (-5 *4 (-1218 *5 *6 *7)) (-4 *5 (-356))
- (-14 *6 (-1143)) (-14 *7 *5) (-5 *2 (-400 (-1199 *6 *5)))
- (-5 *1 (-839 *5 *6 *7)))))
-(((*1 *1 *1 *1) (-4 *1 (-637))) ((*1 *1 *1 *1) (-5 *1 (-1087))))
+(((*1 *2 *2) (|partial| -12 (-5 *1 (-543 *2)) (-4 *2 (-534)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-776))
+ (-5 *3
+ (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
+ (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
+ (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
+ (|:| |abserr| (-219)) (|:| |relerr| (-219))))
+ (-5 *2 (-1006)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1202 *5)) (-4 *5 (-356))
- (-4 *7 (-1202 (-400 *6)))
- (-5 *2 (-2 (|:| |answer| *3) (|:| -3910 *3)))
- (-5 *1 (-547 *5 *6 *7 *3)) (-4 *3 (-335 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1202 *5)) (-4 *5 (-356))
- (-5 *2
- (-2 (|:| |answer| (-400 *6)) (|:| -3910 (-400 *6))
- (|:| |specpart| (-400 *6)) (|:| |polypart| *6)))
- (-5 *1 (-548 *5 *6)) (-5 *3 (-400 *6)))))
-(((*1 *1 *1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018))
- (-4 *4 (-769)) (-4 *5 (-823)) (-4 *3 (-541)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-319 *3 *4)) (-4 *3 (-1018))
- (-4 *4 (-768)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-541))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1353 *4)))
- (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-892)) (-5 *1 (-762)))))
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-112)) (-5 *5 (-665 (-219)))
+ (-5 *2 (-1006)) (-5 *1 (-732)))))
+(((*1 *2 *2) (-12 (-5 *1 (-658 *2)) (-4 *2 (-1066)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-410 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-747)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018))
- (-14 *4 (-621 (-1143)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-549)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823)))
- (-14 *4 (-621 (-1143)))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-246 *4 *3 *5 *6)) (-4 *4 (-1018)) (-4 *3 (-823))
- (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-747))))
- ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-268))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1139 *8)) (-5 *4 (-621 *6)) (-4 *6 (-823))
- (-4 *8 (-920 *7 *5 *6)) (-4 *5 (-769)) (-4 *7 (-1018))
- (-5 *2 (-621 (-747))) (-5 *1 (-314 *5 *6 *7 *8))))
- ((*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-892))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170))
- (-5 *2 (-747))))
- ((*1 *2 *1) (-12 (-4 *1 (-462 *3 *2)) (-4 *3 (-170)) (-4 *2 (-23))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-541)) (-5 *2 (-549)) (-5 *1 (-601 *3 *4))
- (-4 *4 (-1202 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-685 *3)) (-4 *3 (-1018)) (-5 *2 (-747))))
- ((*1 *2 *1) (-12 (-4 *1 (-825 *3)) (-4 *3 (-1018)) (-5 *2 (-747))))
- ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-875 *3)) (-4 *3 (-1067))))
- ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-876 *3)) (-4 *3 (-1067))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-621 *6)) (-4 *1 (-920 *4 *5 *6)) (-4 *4 (-1018))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 (-747)))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-920 *4 *5 *3)) (-4 *4 (-1018)) (-4 *5 (-769))
- (-4 *3 (-823)) (-5 *2 (-747))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-944 *3 *2 *4)) (-4 *3 (-1018)) (-4 *4 (-823))
- (-4 *2 (-768))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-747))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1188 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1217 *3))
- (-5 *2 (-549))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1209 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1186 *3))
- (-5 *2 (-400 (-549)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1245 *3)) (-4 *3 (-356)) (-5 *2 (-809 (-892)))))
+ (-12 (-5 *3 (-1124)) (-5 *2 (-549)) (-5 *1 (-1161 *4))
+ (-4 *4 (-1018)))))
+(((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-1142)))))
+(((*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 (-665 (-219))) (-5 *5 (-112)) (-5 *6 (-219))
+ (-5 *7 (-665 (-549)))
+ (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-79 CONFUN))))
+ (-5 *9 (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN))))
+ (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-730)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-834)) (-5 *1 (-383 *3 *4 *5)) (-14 *3 (-747))
+ (-14 *4 (-747)) (-4 *5 (-170)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-256))) (-5 *4 (-1142)) (-5 *2 (-112))
+ (-5 *1 (-256)))))
+(((*1 *1 *1 *1) (-4 *1 (-637))) ((*1 *1 *1 *1) (-5 *1 (-1086))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1086)) (-5 *1 (-109))))
+ ((*1 *2 *1) (|partial| -12 (-5 *1 (-358 *2)) (-4 *2 (-1066))))
+ ((*1 *2 *1) (|partial| -12 (-5 *2 (-1124)) (-5 *1 (-1160)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1142)) (-5 *1 (-273))))
((*1 *2 *1)
- (-12 (-4 *1 (-1247 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
- (-5 *2 (-747)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-834)))))
-(((*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1011)))))
+ (-12 (-5 *2 (-3 (-549) (-219) (-1142) (-1124) (-1147)))
+ (-5 *1 (-1147)))))
+(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7)
+ (-12 (-5 *4 (-549)) (-5 *5 (-665 (-219)))
+ (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-83 FCNF))))
+ (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-84 FCNG)))) (-5 *3 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-726)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2))
- (-4 *4 (-13 (-823) (-541))))))
+ (-12 (-5 *3 (-621 (-219))) (-5 *2 (-1225 (-675))) (-5 *1 (-298)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-549) (-549))) (-5 *1 (-354 *3)) (-4 *3 (-1066))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-747) (-747))) (-5 *1 (-379 *3)) (-4 *3 (-1066))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4)
+ (-5 *1 (-625 *3 *4 *5)) (-4 *3 (-1066)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))))
+(((*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-834)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-356)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
+ (-5 *1 (-495 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))))
+(((*1 *2 *1)
+ (-12 (|has| *1 (-6 -4336)) (-4 *1 (-481 *3)) (-4 *3 (-1179))
+ (-5 *2 (-621 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-714 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-219))) (-5 *4 (-747)) (-5 *2 (-665 (-219)))
+ (-5 *1 (-298)))))
(((*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-444))))
((*1 *1 *1 *1) (-4 *1 (-444))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *1 *1 *1) (-4 *1 (-637))) ((*1 *1 *1 *1) (-5 *1 (-1087))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)))) (-5 *1 (-182 *3 *2))
- (-4 *2 (-13 (-27) (-1165) (-423 (-167 *3))))))
+(((*1 *1 *1) (-5 *1 (-219)))
+ ((*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
+ ((*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
((*1 *2 *2)
- (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-1169 *3 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *3))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-410 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-1052))) (-5 *1 (-284)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))))
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
+ (-4 *2 (-423 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
+ (-4 *2 (-423 *3))))
+ ((*1 *1 *1) (-4 *1 (-1105))) ((*1 *1 *1 *1) (-4 *1 (-1105))))
+(((*1 *1 *1 *1) (-4 *1 (-637))) ((*1 *1 *1 *1) (-5 *1 (-1086))))
+(((*1 *1 *1) (-5 *1 (-1030))))
(((*1 *2)
- (-12 (-4 *4 (-1184)) (-4 *5 (-1202 *4)) (-4 *6 (-1202 (-400 *5)))
- (-5 *2 (-621 (-621 *4))) (-5 *1 (-334 *3 *4 *5 *6))
- (-4 *3 (-335 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-4 *3 (-361)) (-5 *2 (-621 (-621 *3))))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 *1))
- (-4 *1 (-1038 *4 *5 *6 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-2 (|:| -2715 (-549)) (|:| -4024 (-621 *3))))
- (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-114)) (-5 *4 (-621 *2)) (-5 *1 (-113 *2))
- (-4 *2 (-1067))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 (-621 *4))) (-4 *4 (-1067))
- (-5 *1 (-113 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1067))
- (-5 *1 (-113 *4))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-114)) (-5 *2 (-1 *4 (-621 *4)))
- (-5 *1 (-113 *4)) (-4 *4 (-1067))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-624 *3)) (-4 *3 (-1018))
- (-5 *1 (-691 *3 *4))))
+ (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
+ (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))))
+(((*1 *1 *1) (-4 *1 (-1027)))
+ ((*1 *1 *1 *2 *2)
+ (-12 (-4 *1 (-1203 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-810 *3)))))
-(((*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
- (-5 *2 (-1006)) (-5 *1 (-728)))))
-(((*1 *2 *1) (-12 (-4 *1 (-300)) (-5 *2 (-747)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-549)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-747)) (-4 *5 (-170))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747))
- (-4 *4 (-170))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2))
- (-4 *4 (-366 *2))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-1018)) (-4 *1 (-663 *3 *2 *4)) (-4 *2 (-366 *3))
- (-4 *4 (-366 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1109 *2 *3)) (-14 *2 (-747)) (-4 *3 (-1018)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-876 (-549))) (-5 *4 (-549)) (-5 *2 (-665 *4))
- (-5 *1 (-999 *5)) (-4 *5 (-1018))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-665 (-549))) (-5 *1 (-999 *4))
- (-4 *4 (-1018))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-876 (-549)))) (-5 *4 (-549))
- (-5 *2 (-621 (-665 *4))) (-5 *1 (-999 *5)) (-4 *5 (-1018))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-621 (-549)))) (-5 *2 (-621 (-665 (-549))))
- (-5 *1 (-999 *4)) (-4 *4 (-1018)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-5 *1 (-714 *3))))
- ((*1 *1 *2) (-12 (-5 *1 (-714 *2)) (-4 *2 (-1067))))
- ((*1 *1) (-12 (-5 *1 (-714 *2)) (-4 *2 (-1067)))))
+ (-12 (-4 *1 (-1203 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-747)) (-5 *5 (-621 *3)) (-4 *3 (-300)) (-4 *6 (-823))
+ (-4 *7 (-769)) (-5 *2 (-112)) (-5 *1 (-603 *6 *7 *3 *8))
+ (-4 *8 (-920 *3 *7 *6)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-164 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-411 *3)) (-4 *3 (-534)) (-4 *3 (-541))))
- ((*1 *2 *1) (-12 (-4 *1 (-534)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-773 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-809 *3)) (-4 *3 (-534)) (-4 *3 (-1067))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-816 *3)) (-4 *3 (-534)) (-4 *3 (-1067))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-968 *3)) (-4 *3 (-170)) (-4 *3 (-534)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-979 *3)) (-4 *3 (-1009 (-400 (-549)))))))
-(((*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10)
- (-12 (-5 *4 (-549)) (-5 *5 (-1125)) (-5 *6 (-665 (-219)))
- (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))))
- (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))))
- (-5 *9 (-3 (|:| |fn| (-381)) (|:| |fp| (-70 PEDERV))))
- (-5 *10 (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))
- (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
+ (-12 (-5 *2 (-1068 (-1068 *3))) (-5 *1 (-875 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *3 *4 *5 *5 *2)
+ (|partial| -12 (-5 *2 (-112)) (-5 *3 (-923 *6)) (-5 *4 (-1142))
+ (-5 *5 (-816 *7))
+ (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
+ (-4 *7 (-13 (-1164) (-29 *6))) (-5 *1 (-218 *6 *7))))
+ ((*1 *2 *3 *4 *4 *2)
+ (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1138 *6)) (-5 *4 (-816 *6))
+ (-4 *6 (-13 (-1164) (-29 *5)))
+ (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-218 *5 *6)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-747)) (-4 *5 (-342)) (-4 *6 (-1201 *5))
+ (-5 *2
+ (-621
+ (-2 (|:| -2619 (-665 *6)) (|:| |basisDen| *6)
+ (|:| |basisInv| (-665 *6)))))
+ (-5 *1 (-489 *5 *6 *7))
+ (-5 *3
+ (-2 (|:| -2619 (-665 *6)) (|:| |basisDen| *6)
+ (|:| |basisInv| (-665 *6))))
+ (-4 *7 (-1201 *6)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-621 (-1138 *4))) (-5 *3 (-1138 *4))
+ (-4 *4 (-880)) (-5 *1 (-639 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-429))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-429)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-621 (-621 (-621 *5)))) (-5 *3 (-1 (-112) *5 *5))
+ (-5 *4 (-621 *5)) (-4 *5 (-823)) (-5 *1 (-1150 *5)))))
+(((*1 *2 *3 *3 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-733)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1156 *4 *5))
+ (-4 *4 (-1066)) (-4 *5 (-1066)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-1087 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-799)) (-5 *2 (-1230)) (-5 *1 (-798)))))
(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4337)) (-4 *1 (-149 *2)) (-4 *2 (-1180))
- (-4 *2 (-1067)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-947 *4 *5 *6 *3)) (-4 *4 (-1018)) (-4 *5 (-769))
- (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-4 *4 (-541))
- (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))))
+ (-12 (|has| *1 (-6 -4336)) (-4 *1 (-149 *2)) (-4 *2 (-1179))
+ (-4 *2 (-1066)))))
+(((*1 *1 *1) (-4 *1 (-141)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2))
+ (-4 *2 (-423 *3))))
+ ((*1 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-112)) (-5 *1 (-114))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-295)) (-5 *3 (-1142)) (-5 *2 (-112))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-295)) (-5 *3 (-114)) (-5 *2 (-112))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1142)) (-5 *2 (-112)) (-5 *1 (-592 *4)) (-4 *4 (-823))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-592 *4)) (-4 *4 (-823))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1066)) (-5 *2 (-112)) (-5 *1 (-858 *5 *3 *4))
+ (-4 *3 (-857 *5)) (-4 *4 (-594 (-863 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 *6)) (-4 *6 (-857 *5)) (-4 *5 (-1066))
+ (-5 *2 (-112)) (-5 *1 (-858 *5 *6 *4)) (-4 *4 (-594 (-863 *5))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-549))
+ (-5 *1 (-441 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-309 (-219)))) (-5 *2 (-112)) (-5 *1 (-260)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-665 *5)) (-4 *5 (-1018)) (-5 *1 (-1022 *3 *4 *5))
+ (-14 *3 (-747)) (-14 *4 (-747)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1243 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
- (-5 *2 (-795 *3))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-819)) (-5 *1 (-1249 *3 *2)) (-4 *3 (-1018)))))
-(((*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
- ((*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))))
+ (-12 (-4 *3 (-1018)) (-5 *2 (-621 *1)) (-4 *1 (-1100 *3)))))
(((*1 *2)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))))
+ (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-520 *3)) (-4 *3 (-13 (-703) (-25))))))
+(((*1 *1 *2 *2 *1) (-12 (-5 *1 (-623 *2)) (-4 *2 (-1066)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-329 *5 *6 *7 *8)) (-4 *5 (-423 *4)) (-4 *6 (-1202 *5))
- (-4 *7 (-1202 (-400 *6))) (-4 *8 (-335 *5 *6 *7))
- (-4 *4 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-112))
- (-5 *1 (-882 *4 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-329 (-400 (-549)) *4 *5 *6))
- (-4 *4 (-1202 (-400 (-549)))) (-4 *5 (-1202 (-400 *4)))
- (-4 *6 (-335 (-400 (-549)) *4 *5)) (-5 *2 (-112))
- (-5 *1 (-883 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-444)) (-4 *4 (-823)) (-4 *5 (-769)) (-5 *2 (-112))
- (-5 *1 (-958 *3 *4 *5 *6)) (-4 *6 (-920 *3 *5 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1107 *3 *4)) (-4 *3 (-13 (-1067) (-34)))
- (-4 *4 (-13 (-1067) (-34))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-747)) (-4 *1 (-1202 *3)) (-4 *3 (-1018)))))
-(((*1 *1 *2 *2 *1) (-12 (-5 *1 (-623 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-2 (|:| -3440 *6) (|:| |coeff| *6)) "failed") *6))
- (-4 *6 (-356)) (-4 *7 (-1202 *6))
- (-5 *2
- (-3 (-2 (|:| |answer| (-400 *7)) (|:| |a0| *6))
- (-2 (|:| -3440 (-400 *7)) (|:| |coeff| (-400 *7))) "failed"))
- (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))))
-(((*1 *2)
- (-12 (-5 *2 (-665 (-881 *3))) (-5 *1 (-344 *3 *4)) (-14 *3 (-892))
- (-14 *4 (-892))))
- ((*1 *2)
- (-12 (-5 *2 (-665 *3)) (-5 *1 (-345 *3 *4)) (-4 *3 (-342))
- (-14 *4
- (-3 (-1139 *3)
- (-1226 (-621 (-2 (|:| -4161 *3) (|:| -3493 (-1087)))))))))
- ((*1 *2)
- (-12 (-5 *2 (-665 *3)) (-5 *1 (-346 *3 *4)) (-4 *3 (-342))
- (-14 *4 (-892)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-863 *4)) (-4 *4 (-1067)) (-5 *1 (-861 *4 *3))
- (-4 *3 (-1180))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))))
-(((*1 *1 *1 *1) (-5 *1 (-834))))
+ (-12 (-5 *3 (-621 *4)) (-4 *4 (-823)) (-5 *2 (-621 (-640 *4 *5)))
+ (-5 *1 (-605 *4 *5 *6)) (-4 *5 (-13 (-170) (-694 (-400 (-549)))))
+ (-14 *6 (-892)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-13 (-356) (-145) (-1009 (-549))))
+ (-4 *5 (-1201 *4))
+ (-5 *2 (-2 (|:| -2677 (-400 *5)) (|:| |coeff| (-400 *5))))
+ (-5 *1 (-553 *4 *5)) (-5 *3 (-400 *5)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1142)) (-5 *5 (-621 *3))
+ (-4 *3 (-13 (-27) (-1164) (-423 *6)))
+ (-4 *6 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-542 *6 *3)))))
+(((*1 *2 *1) (-12 (-5 *1 (-885 *2)) (-4 *2 (-300)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1124)) (-5 *2 (-621 (-1147))) (-5 *1 (-851)))))
(((*1 *1 *2 *2 *3)
- (-12 (-5 *3 (-621 (-1143))) (-4 *4 (-1067))
+ (-12 (-5 *3 (-621 (-1142))) (-4 *4 (-1066))
(-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4))))
(-5 *1 (-1042 *4 *5 *2))
(-4 *2 (-13 (-423 *5) (-857 *4) (-594 (-863 *4))))))
((*1 *1 *2 *2)
- (-12 (-4 *3 (-1067))
+ (-12 (-4 *3 (-1066))
(-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3))))
(-5 *1 (-1042 *3 *4 *2))
(-4 *2 (-13 (-423 *4) (-857 *3) (-594 (-863 *3)))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *2 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1202 *5))
- (-4 *5 (-13 (-356) (-145) (-1009 (-549))))
- (-5 *2
- (-2 (|:| |a| *6) (|:| |b| (-400 *6)) (|:| |c| (-400 *6))
- (|:| -2632 *6)))
- (-5 *1 (-986 *5 *6)) (-5 *3 (-400 *6)))))
-(((*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-543 *3)) (-4 *3 (-534)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-13 (-356) (-145)))
- (-5 *2 (-621 (-2 (|:| -3731 (-747)) (|:| -2597 *4) (|:| |num| *4))))
- (-5 *1 (-392 *3 *4)) (-4 *4 (-1202 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-584 *3 *4)) (-4 *3 (-1066))
+ (-4 *4 (-1179)) (-5 *2 (-1230)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-629 (-400 *6))) (-5 *4 (-1 (-621 *5) *6))
+ (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-4 *6 (-1201 *5)) (-5 *2 (-621 (-400 *6))) (-5 *1 (-788 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-629 (-400 *7))) (-5 *4 (-1 (-621 *6) *7))
+ (-5 *5 (-1 (-411 *7) *7))
+ (-4 *6 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-4 *7 (-1201 *6)) (-5 *2 (-621 (-400 *7))) (-5 *1 (-788 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-630 *6 (-400 *6))) (-5 *4 (-1 (-621 *5) *6))
+ (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-4 *6 (-1201 *5)) (-5 *2 (-621 (-400 *6))) (-5 *1 (-788 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-630 *7 (-400 *7))) (-5 *4 (-1 (-621 *6) *7))
+ (-5 *5 (-1 (-411 *7) *7))
+ (-4 *6 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-4 *7 (-1201 *6)) (-5 *2 (-621 (-400 *7))) (-5 *1 (-788 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-629 (-400 *5))) (-4 *5 (-1201 *4)) (-4 *4 (-27))
+ (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-5 *2 (-621 (-400 *5))) (-5 *1 (-788 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-629 (-400 *6))) (-5 *4 (-1 (-411 *6) *6))
+ (-4 *6 (-1201 *5)) (-4 *5 (-27))
+ (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-5 *2 (-621 (-400 *6))) (-5 *1 (-788 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-630 *5 (-400 *5))) (-4 *5 (-1201 *4)) (-4 *4 (-27))
+ (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-5 *2 (-621 (-400 *5))) (-5 *1 (-788 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-630 *6 (-400 *6))) (-5 *4 (-1 (-411 *6) *6))
+ (-4 *6 (-1201 *5)) (-4 *5 (-27))
+ (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-5 *2 (-621 (-400 *6))) (-5 *1 (-788 *5 *6)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-549)) (-4 *4 (-170)) (-4 *5 (-366 *4))
+ (-4 *6 (-366 *4)) (-5 *1 (-664 *4 *5 *6 *2))
+ (-4 *2 (-663 *4 *5 *6)))))
(((*1 *1 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823))))
((*1 *1 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823))))
((*1 *1 *1) (-12 (-5 *1 (-864 *2)) (-4 *2 (-823))))
((*1 *1 *1)
- (|partial| -12 (-4 *1 (-1173 *2 *3 *4 *5)) (-4 *2 (-541))
+ (|partial| -12 (-4 *1 (-1172 *2 *3 *4 *5)) (-4 *2 (-541))
(-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-1032 *2 *3 *4))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-1214 *3)) (-4 *3 (-1180))))
- ((*1 *1 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))))
+ (-12 (-5 *2 (-747)) (-4 *1 (-1213 *3)) (-4 *3 (-1179))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1067)) (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 *2)))
+ (-12 (-4 *3 (-1066)) (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 *2)))
(-5 *2 (-863 *3)) (-5 *1 (-1042 *3 *4 *5))
(-4 *5 (-13 (-423 *4) (-857 *3) (-594 *2))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-621 (-495 *3 *4 *5 *6))) (-4 *3 (-356)) (-4 *4 (-769))
- (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823))
- (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-621 *1)) (-5 *3 (-621 *7)) (-4 *1 (-1038 *4 *5 *6 *7))
- (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *1))
- (-4 *1 (-1038 *4 *5 *6 *7))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 *1))
- (-4 *1 (-1038 *4 *5 *6 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067)))))
-(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459))))
- ((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459))))
- ((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-549) (-549))) (-5 *1 (-354 *3)) (-4 *3 (-1067))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-747) (-747))) (-5 *1 (-379 *3)) (-4 *3 (-1067))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4)
- (-5 *1 (-625 *3 *4 *5)) (-4 *3 (-1067)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-732)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-747))
- (-4 *3 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $)))))
- (-4 *4 (-1202 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))))
-(((*1 *2 *3) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-546)) (-5 *3 (-549))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1139 (-400 (-549)))) (-5 *1 (-913)) (-5 *3 (-549)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *4 *5 *6)) (-4 *4 (-300))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-439 *4 *5 *6 *2)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *5 *6)) (-4 *6 (-594 (-1143)))
- (-4 *4 (-356)) (-4 *5 (-769)) (-4 *6 (-823))
- (-5 *2 (-1132 (-621 (-923 *4)) (-621 (-287 (-923 *4)))))
- (-5 *1 (-495 *4 *5 *6 *7)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1067))
- (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-798)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1124)) (-5 *3 (-799)) (-5 *1 (-798)))))
+(((*1 *2 *2) (|partial| -12 (-5 *1 (-568 *2)) (-4 *2 (-534)))))
+(((*1 *2 *1 *1)
+ (|partial| -12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))))
+(((*1 *1 *1) (-5 *1 (-834))))
+(((*1 *2) (-12 (-5 *2 (-1113 (-1124))) (-5 *1 (-384)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-219)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-747)) (-4 *4 (-342)) (-5 *1 (-210 *4 *2))
+ (-4 *2 (-1201 *4)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-584 *3 *2)) (-4 *3 (-1067)) (-4 *3 (-823))
- (-4 *2 (-1180))))
+ (-12 (-4 *1 (-584 *3 *2)) (-4 *3 (-1066)) (-4 *3 (-823))
+ (-4 *2 (-1179))))
((*1 *2 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823))))
((*1 *2 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823))))
((*1 *2 *1)
- (-12 (-4 *2 (-1180)) (-5 *1 (-844 *2 *3)) (-4 *3 (-1180))))
+ (-12 (-4 *2 (-1179)) (-5 *1 (-844 *2 *3)) (-4 *3 (-1179))))
((*1 *2 *1) (-12 (-5 *2 (-648 *3)) (-5 *1 (-864 *3)) (-4 *3 (-823))))
((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541))
+ (|partial| -12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541))
(-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-1214 *3)) (-4 *3 (-1180))))
- ((*1 *2 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1226 *4)) (-5 *3 (-1087)) (-4 *4 (-342))
- (-5 *1 (-519 *4)))))
-(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-621 *1)) (-4 *1 (-891)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2))
- (-4 *2 (-423 *3)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1006)) (-5 *3 (-1143)) (-5 *1 (-186)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-549))) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549))
- (-14 *4 (-747)) (-4 *5 (-170)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1143)) (-5 *4 (-923 (-549))) (-5 *2 (-323))
- (-5 *1 (-325)))))
+ (-12 (-5 *2 (-747)) (-4 *1 (-1213 *3)) (-4 *3 (-1179))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *2 *3) (-12 (-5 *2 (-549)) (-5 *3 (-747)) (-5 *1 (-546)))))
+(((*1 *1) (-5 *1 (-544))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-112)) (-4 *4 (-13 (-356) (-821))) (-5 *2 (-411 *3))
+ (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-411 *3))
+ (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4))))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
- (|:| |relerr| (-219))))
- (-5 *2 (-1123 (-219))) (-5 *1 (-186))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-309 (-219))) (-5 *4 (-621 (-1143)))
- (-5 *5 (-1061 (-816 (-219)))) (-5 *2 (-1123 (-219))) (-5 *1 (-293))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1226 (-309 (-219)))) (-5 *4 (-621 (-1143)))
- (-5 *5 (-1061 (-816 (-219)))) (-5 *2 (-1123 (-219))) (-5 *1 (-293)))))
+ (-12 (-5 *3 (-241 *4 *5)) (-14 *4 (-621 (-1142))) (-4 *5 (-1018))
+ (-5 *2 (-923 *5)) (-5 *1 (-915 *4 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1124)) (-5 *1 (-762)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-892))
+ (-5 *2
+ (-3 (-1138 *4)
+ (-1225 (-621 (-2 (|:| -4160 *4) (|:| -3494 (-1086)))))))
+ (-5 *1 (-339 *4)) (-4 *4 (-342)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-621 (-914 *4))) (-4 *1 (-1100 *4)) (-4 *4 (-1018))
+ (-5 *2 (-747)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1067))
+ (-12 (-4 *3 (-1066))
(-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3))))
(-5 *2 (-621 (-1042 *3 *4 *5))) (-5 *1 (-1043 *3 *4 *5))
(-4 *5 (-13 (-423 *4) (-857 *3) (-594 (-863 *3)))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143))))
- (-4 *6 (-769)) (-5 *2 (-621 (-621 (-549))))
- (-5 *1 (-895 *4 *5 *6 *7)) (-5 *3 (-549)) (-4 *7 (-920 *4 *6 *5)))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1125)) (-5 *4 (-549)) (-5 *5 (-665 (-219)))
- (-5 *2 (-1006)) (-5 *1 (-734)))))
-(((*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
- ((*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
- (-4 *2 (-423 *3))))
- ((*1 *1 *1) (-4 *1 (-1106))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-1 (-112) *8))) (-4 *8 (-1032 *5 *6 *7))
+ (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-5 *2 (-2 (|:| |goodPols| (-621 *8)) (|:| |badPols| (-621 *8))))
+ (-5 *1 (-948 *5 *6 *7 *8)) (-5 *4 (-621 *8)))))
+(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))))
+(((*1 *2 *2) (-12 (-5 *2 (-621 (-309 (-219)))) (-5 *1 (-260)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-549)) (-5 *2 (-621 (-2 (|:| -2119 *3) (|:| -3977 *4))))
+ (-5 *1 (-672 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-114)) (-4 *2 (-1066)) (-4 *2 (-823))
+ (-5 *1 (-113 *2)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *1 *1) (-4 *1 (-277)))
((*1 *2 *3)
(-12 (-5 *3 (-411 *4)) (-4 *4 (-541))
- (-5 *2 (-621 (-2 (|:| -1570 (-747)) (|:| |logand| *4))))
+ (-5 *2 (-621 (-2 (|:| -1569 (-747)) (|:| |logand| *4))))
(-5 *1 (-313 *4))))
((*1 *1 *1)
- (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143)))
- (-14 *3 (-621 (-1143))) (-4 *4 (-380))))
+ (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142)))
+ (-14 *3 (-621 (-1142))) (-4 *4 (-380))))
((*1 *2 *1)
(-12 (-5 *2 (-640 *3 *4)) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823))
(-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3))))
((*1 *2 *2 *3)
(-12 (-5 *3 (-747)) (-4 *4 (-13 (-1018) (-694 (-400 (-549)))))
- (-4 *5 (-823)) (-5 *1 (-1242 *4 *5 *2)) (-4 *2 (-1247 *5 *4))))
+ (-4 *5 (-823)) (-5 *1 (-1241 *4 *5 *2)) (-4 *2 (-1246 *5 *4))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-5 *1 (-1246 *3 *4))
+ (-12 (-5 *2 (-747)) (-5 *1 (-1245 *3 *4))
(-4 *4 (-694 (-400 (-549)))) (-4 *3 (-823)) (-4 *4 (-170)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-400 (-923 *4))) (-5 *3 (-1143))
- (-4 *4 (-13 (-541) (-1009 (-549)) (-145))) (-5 *1 (-555 *4)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-592 (-48)))) (-5 *1 (-48))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-592 (-48))) (-5 *1 (-48))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1139 (-48))) (-5 *3 (-621 (-592 (-48)))) (-5 *1 (-48))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1139 (-48))) (-5 *3 (-592 (-48))) (-5 *1 (-48))))
- ((*1 *2 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-356) (-821))) (-5 *1 (-179 *2 *3))
- (-4 *3 (-1202 (-167 *2)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-892)) (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361))))
- ((*1 *2 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-356))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-363 *2 *3)) (-4 *3 (-1202 *2)) (-4 *2 (-170))))
- ((*1 *2 *1)
- (-12 (-4 *4 (-1202 *2)) (-4 *2 (-963 *3)) (-5 *1 (-406 *3 *2 *4 *5))
- (-4 *3 (-300)) (-4 *5 (-13 (-402 *2 *4) (-1009 *2)))))
- ((*1 *2 *1)
- (-12 (-4 *4 (-1202 *2)) (-4 *2 (-963 *3))
- (-5 *1 (-407 *3 *2 *4 *5 *6)) (-4 *3 (-300)) (-4 *5 (-402 *2 *4))
- (-14 *6 (-1226 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-892)) (-4 *5 (-1018))
- (-4 *2 (-13 (-397) (-1009 *5) (-356) (-1165) (-277)))
- (-5 *1 (-435 *5 *3 *2)) (-4 *3 (-1202 *5))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-592 (-486)))) (-5 *1 (-486))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-592 (-486))) (-5 *1 (-486))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1139 (-486))) (-5 *3 (-621 (-592 (-486))))
- (-5 *1 (-486))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1139 (-486))) (-5 *3 (-592 (-486))) (-5 *1 (-486))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1226 *4)) (-5 *3 (-892)) (-4 *4 (-342))
- (-5 *1 (-519 *4))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-411 (-1138 *1))) (-5 *1 (-309 *4)) (-5 *3 (-1138 *1))
+ (-4 *4 (-444)) (-4 *4 (-541)) (-4 *4 (-823))))
((*1 *2 *3)
- (-12 (-4 *4 (-444)) (-4 *5 (-701 *4 *2)) (-4 *2 (-1202 *4))
- (-5 *1 (-751 *4 *2 *5 *3)) (-4 *3 (-1202 *5))))
- ((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170))))
- ((*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170))))
- ((*1 *1 *1) (-4 *1 (-1027))))
+ (-12 (-4 *1 (-880)) (-5 *2 (-411 (-1138 *1))) (-5 *3 (-1138 *1)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-1145 (-400 (-549))))
- (-5 *1 (-184)))))
+ (-12 (-4 *4 (-444)) (-4 *3 (-769)) (-4 *5 (-823)) (-5 *2 (-112))
+ (-5 *1 (-441 *4 *3 *5 *6)) (-4 *6 (-920 *4 *3 *5)))))
+(((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-437 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112))
+ (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))))
+(((*1 *1 *1) (-12 (-4 *1 (-367 *2 *3)) (-4 *2 (-823)) (-4 *3 (-170))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-605 *2 *3 *4)) (-4 *2 (-823))
+ (-4 *3 (-13 (-170) (-694 (-400 (-549))))) (-14 *4 (-892))))
+ ((*1 *1 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823))))
+ ((*1 *1 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-411 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1202 (-48)))))
- ((*1 *2 *3 *1)
- (-12 (-5 *2 (-2 (|:| |less| (-121 *3)) (|:| |greater| (-121 *3))))
- (-5 *1 (-121 *3)) (-4 *3 (-823))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-567 *4)) (-4 *4 (-13 (-29 *3) (-1165)))
- (-4 *3 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549))))
- (-5 *1 (-565 *3 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-567 (-400 (-923 *3))))
- (-4 *3 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549))))
- (-5 *1 (-570 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1202 *5)) (-4 *5 (-356))
- (-5 *2 (-2 (|:| -4041 *3) (|:| |special| *3))) (-5 *1 (-704 *5 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1226 *5)) (-4 *5 (-356)) (-4 *5 (-1018))
- (-5 *2 (-621 (-621 (-665 *5)))) (-5 *1 (-1000 *5))
- (-5 *3 (-621 (-665 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1226 (-1226 *5))) (-4 *5 (-356)) (-4 *5 (-1018))
- (-5 *2 (-621 (-621 (-665 *5)))) (-5 *1 (-1000 *5))
- (-5 *3 (-621 (-665 *5)))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-139)) (-5 *2 (-621 *1)) (-4 *1 (-1111))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-142)) (-5 *2 (-621 *1)) (-4 *1 (-1111)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1107 *3 *4)) (-4 *3 (-13 (-1067) (-34)))
- (-4 *4 (-13 (-1067) (-34))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1199 *5 *4)) (-4 *4 (-796)) (-14 *5 (-1143))
- (-5 *2 (-621 *4)) (-5 *1 (-1081 *4 *5)))))
+ (-12 (-5 *3 (-1151 (-621 *4))) (-4 *4 (-823))
+ (-5 *2 (-621 (-621 *4))) (-5 *1 (-1150 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-335 *4 *3 *5)) (-4 *4 (-1183)) (-4 *3 (-1201 *4))
+ (-4 *5 (-1201 (-400 *3))) (-5 *2 (-112))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 (-1 *6 (-621 *6))))
+ (-4 *5 (-38 (-400 (-549)))) (-4 *6 (-1216 *5)) (-5 *2 (-621 *6))
+ (-5 *1 (-1218 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-411 *5)) (-4 *5 (-541))
+ (-5 *2
+ (-2 (|:| -1714 (-747)) (|:| -1569 *5) (|:| |radicand| (-621 *5))))
+ (-5 *1 (-313 *5)) (-5 *4 (-747))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-973)) (-5 *2 (-549)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-621 (-241 *4 *5))) (-5 *2 (-241 *4 *5))
- (-14 *4 (-621 (-1143))) (-4 *5 (-444)) (-5 *1 (-609 *4 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-4 *1 (-106 *3)))))
-(((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
- (-4 *3 (-360 *4))))
- ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+ (|partial| -12 (-5 *3 (-747)) (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-300)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4))
- (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3)))
- (-5 *1 (-1091 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-335 *4 *5 *6)) (-4 *4 (-1184))
- (-4 *5 (-1202 *4)) (-4 *6 (-1202 (-400 *5)))
- (-5 *2 (-2 (|:| |num| (-665 *5)) (|:| |den| *5))))))
-(((*1 *2 *1) (-12 (-5 *2 (-798)) (-5 *1 (-797)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1143)) (-4 *5 (-594 (-863 (-549))))
- (-4 *5 (-857 (-549)))
- (-4 *5 (-13 (-823) (-1009 (-549)) (-444) (-617 (-549))))
- (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
- (-5 *1 (-552 *5 *3)) (-4 *3 (-607))
- (-4 *3 (-13 (-27) (-1165) (-423 *5))))))
+ (-12 (-4 *4 (-13 (-356) (-1009 (-400 *2)))) (-5 *2 (-549))
+ (-5 *1 (-115 *4 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-898)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-219)) (-5 *5 (-549)) (-5 *2 (-1175 *3))
- (-5 *1 (-766 *3)) (-4 *3 (-945))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-112))
- (-5 *1 (-1175 *2)) (-4 *2 (-945)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2719 *4))))
- (-5 *1 (-625 *3 *4 *5)) (-4 *3 (-1067)) (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228))))
- ((*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228)))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))))
+ (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-621 (-400 *7)))
+ (-4 *7 (-1201 *6)) (-5 *3 (-400 *7)) (-4 *6 (-356))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-559 *6 *7)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-549)) (-5 *1 (-1161 *3)) (-4 *3 (-1018)))))
(((*1 *2)
- (-12 (-14 *4 *2) (-4 *5 (-1180)) (-5 *2 (-747))
+ (-12 (-14 *4 *2) (-4 *5 (-1179)) (-5 *2 (-747))
(-5 *1 (-231 *3 *4 *5)) (-4 *3 (-232 *4 *5))))
((*1 *2 *1)
- (-12 (-4 *1 (-316 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-130))
+ (-12 (-4 *1 (-316 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-130))
(-5 *2 (-747))))
((*1 *2)
(-12 (-4 *4 (-356)) (-5 *2 (-747)) (-5 *1 (-321 *3 *4))
(-4 *3 (-322 *4))))
- ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-354 *3)) (-4 *3 (-1067))))
+ ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-354 *3)) (-4 *3 (-1066))))
((*1 *2) (-12 (-4 *1 (-361)) (-5 *2 (-747))))
- ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-379 *3)) (-4 *3 (-1067))))
+ ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-379 *3)) (-4 *3 (-1066))))
((*1 *2)
- (-12 (-4 *4 (-1067)) (-5 *2 (-747)) (-5 *1 (-417 *3 *4))
+ (-12 (-4 *4 (-1066)) (-5 *2 (-747)) (-5 *1 (-417 *3 *4))
(-4 *3 (-418 *4))))
((*1 *2 *1)
- (-12 (-5 *2 (-747)) (-5 *1 (-625 *3 *4 *5)) (-4 *3 (-1067))
+ (-12 (-5 *2 (-747)) (-5 *1 (-625 *3 *4 *5)) (-4 *3 (-1066))
(-4 *4 (-23)) (-14 *5 *4)))
((*1 *2)
- (-12 (-4 *4 (-170)) (-4 *5 (-1202 *4)) (-5 *2 (-747))
+ (-12 (-4 *4 (-170)) (-4 *5 (-1201 *4)) (-5 *2 (-747))
(-5 *1 (-700 *3 *4 *5)) (-4 *3 (-701 *4 *5))))
((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-795 *3)) (-4 *3 (-823))))
((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-977))))
((*1 *2 *1)
(-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3))
- (-4 *3 (-1202 *2)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *1 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *1) (-12 (-4 *1 (-319 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768))))
- ((*1 *2 *1) (-12 (-4 *1 (-685 *3)) (-4 *3 (-1018)) (-5 *2 (-747))))
- ((*1 *2 *1) (-12 (-4 *1 (-825 *3)) (-4 *3 (-1018)) (-5 *2 (-747))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-621 *6)) (-4 *1 (-920 *4 *5 *6)) (-4 *4 (-1018))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 (-747)))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-920 *4 *5 *3)) (-4 *4 (-1018)) (-4 *5 (-769))
- (-4 *3 (-823)) (-5 *2 (-747)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-534))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6)
- (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-219))
- (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) (-5 *2 (-1006))
- (-5 *1 (-726)))))
+ (-4 *3 (-1201 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-621 *3)) (-4 *3 (-1075 *5 *6 *7 *8))
+ (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *8 (-1032 *5 *6 *7)) (-5 *2 (-112))
+ (-5 *1 (-572 *5 *6 *7 *8 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-816 (-372))) (-5 *2 (-816 (-219))) (-5 *1 (-298)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1225 *4)) (-5 *3 (-747)) (-4 *4 (-342))
+ (-5 *1 (-519 *4)))))
+(((*1 *1) (-5 *1 (-430))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-400 (-923 (-167 (-549))))) (-5 *2 (-621 (-167 *4)))
+ (-5 *1 (-371 *4)) (-4 *4 (-13 (-356) (-821)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-621 (-400 (-923 (-167 (-549))))))
+ (-5 *4 (-621 (-1142))) (-5 *2 (-621 (-621 (-167 *5))))
+ (-5 *1 (-371 *5)) (-4 *5 (-13 (-356) (-821))))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-460)) (-5 *3 (-621 (-256))) (-5 *1 (-1226))))
+ ((*1 *1 *1) (-5 *1 (-1226))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-732)))))
+(((*1 *2 *3 *4 *4 *5)
+ (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-621 *3))
+ (-4 *3 (-13 (-423 *6) (-27) (-1164)))
+ (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-551 *6 *3 *7)) (-4 *7 (-1066)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-981 *3)) (-4 *3 (-1179)) (-4 *3 (-1066))
+ (-5 *2 (-112)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-736)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823))))
+ ((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1110)) (-5 *2 (-139))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1110)) (-5 *2 (-142)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-1018)) (-5 *1 (-436 *3 *2)) (-4 *2 (-1201 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-923 (-400 (-549)))) (-5 *4 (-1142))
+ (-5 *5 (-1060 (-816 (-219)))) (-5 *2 (-621 (-219))) (-5 *1 (-293)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-300)) (-4 *6 (-366 *5)) (-4 *4 (-366 *5))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2619 (-621 *4))))
+ (-5 *1 (-1090 *5 *6 *4 *3)) (-4 *3 (-663 *5 *6 *4)))))
+(((*1 *2 *3 *4 *4 *5 *4 *6 *4 *5)
+ (-12 (-5 *3 (-1124)) (-5 *5 (-665 (-219))) (-5 *6 (-665 (-549)))
+ (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-734)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-541) (-823))) (-5 *2 (-167 *5))
+ (-5 *1 (-580 *4 *5 *3)) (-4 *5 (-13 (-423 *4) (-973) (-1164)))
+ (-4 *3 (-13 (-423 (-167 *4)) (-973) (-1164))))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-592 *3)) (-4 *3 (-13 (-423 *5) (-27) (-1164)))
+ (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
+ (-5 *2 (-567 *3)) (-5 *1 (-551 *5 *3 *6)) (-4 *6 (-1066)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-1145)) (-5 *3 (-1142)))))
(((*1 *2 *1)
(-12 (-5 *2 (-844 (-937 *3) (-937 *3))) (-5 *1 (-937 *3))
(-4 *3 (-938)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *3 *4 *4 *5 *6)
- (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-845))
- (-5 *5 (-892)) (-5 *6 (-621 (-256))) (-5 *2 (-460)) (-5 *1 (-1230))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *2 (-460))
- (-5 *1 (-1230))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-621 (-256)))
- (-5 *2 (-460)) (-5 *1 (-1230)))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *5 *3)
- (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219))
- (-5 *2 (-1006)) (-5 *1 (-730)))))
-(((*1 *2 *3 *2)
- (|partial| -12 (-5 *3 (-892)) (-5 *1 (-434 *2))
- (-4 *2 (-1202 (-549)))))
- ((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-892)) (-5 *4 (-747)) (-5 *1 (-434 *2))
- (-4 *2 (-1202 (-549)))))
- ((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-892)) (-5 *4 (-621 (-747))) (-5 *1 (-434 *2))
- (-4 *2 (-1202 (-549)))))
- ((*1 *2 *3 *2 *4 *5)
- (|partial| -12 (-5 *3 (-892)) (-5 *4 (-621 (-747))) (-5 *5 (-747))
- (-5 *1 (-434 *2)) (-4 *2 (-1202 (-549)))))
- ((*1 *2 *3 *2 *4 *5 *6)
- (|partial| -12 (-5 *3 (-892)) (-5 *4 (-621 (-747))) (-5 *5 (-747))
- (-5 *6 (-112)) (-5 *1 (-434 *2)) (-4 *2 (-1202 (-549)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-892)) (-5 *4 (-411 *2)) (-4 *2 (-1202 *5))
- (-5 *1 (-436 *5 *2)) (-4 *5 (-1018)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1111)) (-5 *2 (-139))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1111)) (-5 *2 (-142)))))
-(((*1 *2) (-12 (-4 *2 (-170)) (-5 *1 (-163 *3 *2)) (-4 *3 (-164 *2))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1226 *1)) (-4 *1 (-363 *2 *4)) (-4 *4 (-1202 *2))
- (-4 *2 (-170))))
- ((*1 *2)
- (-12 (-4 *4 (-1202 *2)) (-4 *2 (-170)) (-5 *1 (-401 *3 *2 *4))
- (-4 *3 (-402 *2 *4))))
- ((*1 *2) (-12 (-4 *1 (-402 *2 *3)) (-4 *3 (-1202 *2)) (-4 *2 (-170))))
- ((*1 *2)
- (-12 (-4 *3 (-1202 *2)) (-5 *2 (-549)) (-5 *1 (-744 *3 *4))
- (-4 *4 (-402 *2 *3))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *2 (-823)) (-4 *3 (-170))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-541)) (-5 *1 (-940 *2 *3)) (-4 *3 (-1202 *2))))
- ((*1 *2 *1) (-12 (-4 *1 (-1202 *2)) (-4 *2 (-1018)) (-4 *2 (-170)))))
-(((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-798)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1202 *3)) (-4 *3 (-1018)) (-5 *2 (-1139 *3)))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1074 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))))
(((*1 *2 *3 *4 *2)
(-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-624 *5)) (-4 *5 (-1018))
(-5 *1 (-53 *5 *2 *3)) (-4 *3 (-825 *5))))
@@ -4234,514 +4206,601 @@
((*1 *2 *3 *2 *2 *4 *5)
(-12 (-5 *4 (-98 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-1018))
(-5 *1 (-826 *2 *3)) (-4 *3 (-825 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-427))
- (-5 *2
- (-621
- (-3 (|:| -2481 (-1143))
- (|:| -3280 (-621 (-3 (|:| S (-1143)) (|:| P (-923 (-549)))))))))
- (-5 *1 (-1147)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3)
- (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *6 (-219))
- (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-729)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-621 *4)) (-5 *1 (-1108 *3 *4))
- (-4 *3 (-13 (-1067) (-34))) (-4 *4 (-13 (-1067) (-34))))))
-(((*1 *2 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1180)) (-5 *2 (-621 *3)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1111)) (-5 *2 (-139))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1111)) (-5 *2 (-142)))))
-(((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-112))
- (-5 *2 (-1006)) (-5 *1 (-722)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-621 (-549))) (-5 *1 (-1077)) (-5 *3 (-549)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-356)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3))
+ (-5 *1 (-512 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1123 (-400 *3))) (-5 *1 (-172 *3)) (-4 *3 (-300)))))
-(((*1 *2 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-999 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-621 (-665 *3))) (-4 *3 (-1018)) (-5 *1 (-999 *3))))
- ((*1 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-999 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-621 (-665 *3))) (-4 *3 (-1018)) (-5 *1 (-999 *3)))))
-(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5)
- (-12 (-5 *3 (-219)) (-5 *4 (-549))
- (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) (-5 *2 (-1006))
- (-5 *1 (-725)))))
+ (-12 (-5 *2 (-621 *4)) (-5 *1 (-1107 *3 *4))
+ (-4 *3 (-13 (-1066) (-34))) (-4 *4 (-13 (-1066) (-34))))))
+(((*1 *2 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1179)) (-5 *2 (-621 *3)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1066) (-34)))
+ (-5 *2 (-112)) (-5 *1 (-1106 *4 *5)) (-4 *4 (-13 (-1066) (-34))))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1110)) (-5 *2 (-139))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1110)) (-5 *2 (-142)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7))
+ (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 *10))
+ (-5 *1 (-602 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1038 *5 *6 *7 *8))
+ (-4 *10 (-1075 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444))
+ (-14 *6 (-621 (-1142))) (-5 *2 (-621 (-1015 *5 *6)))
+ (-5 *1 (-606 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444))
+ (-14 *6 (-621 (-1142)))
+ (-5 *2
+ (-621 (-1112 *5 (-521 (-836 *6)) (-836 *6) (-756 *5 (-836 *6)))))
+ (-5 *1 (-606 *5 *6))))
+ ((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7))
+ (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-5 *2 (-621 (-998 *5 *6 *7 *8))) (-5 *1 (-998 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7))
+ (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-5 *2 (-621 (-998 *5 *6 *7 *8))) (-5 *1 (-998 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444))
+ (-14 *6 (-621 (-1142))) (-5 *2 (-621 (-1015 *5 *6)))
+ (-5 *1 (-1015 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7))
+ (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 *1))
+ (-4 *1 (-1038 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7))
+ (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-5 *2 (-621 (-1112 *5 *6 *7 *8))) (-5 *1 (-1112 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7))
+ (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-5 *2 (-621 (-1112 *5 *6 *7 *8))) (-5 *1 (-1112 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *1))
+ (-4 *1 (-1172 *4 *5 *6 *7)))))
+(((*1 *2)
+ (-12 (-4 *3 (-541)) (-5 *2 (-621 (-665 *3))) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-410 *3)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-981 *3)) (-4 *3 (-1179)) (-4 *3 (-1066))
+ (-5 *2 (-112)))))
(((*1 *2 *2 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-716 *3)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))))
+(((*1 *1)
+ (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-541)) (-4 *2 (-170)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
+ (-5 *2
+ (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549))
+ (|:| |success| (-112))))
+ (-5 *1 (-765)) (-5 *5 (-549)))))
(((*1 *1 *1 *1)
- (-12 (-5 *1 (-621 *2)) (-4 *2 (-1067)) (-4 *2 (-1180)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4)))
- (-5 *2 (-2 (|:| |num| (-1226 *4)) (|:| |den| *4))))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-5 *1 (-90 *3)))))
-(((*1 *2) (-12 (-5 *2 (-621 (-747))) (-5 *1 (-1229))))
- ((*1 *2 *2) (-12 (-5 *2 (-621 (-747))) (-5 *1 (-1229)))))
-(((*1 *1 *1) (-4 *1 (-171)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-357 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067)))))
+ (-12 (-5 *1 (-621 *2)) (-4 *2 (-1066)) (-4 *2 (-1179)))))
+(((*1 *2)
+ (-12 (-5 *2 (-929 (-1086))) (-5 *1 (-336 *3 *4)) (-14 *3 (-892))
+ (-14 *4 (-892))))
+ ((*1 *2)
+ (-12 (-5 *2 (-929 (-1086))) (-5 *1 (-337 *3 *4)) (-4 *3 (-342))
+ (-14 *4 (-1138 *3))))
+ ((*1 *2)
+ (-12 (-5 *2 (-929 (-1086))) (-5 *1 (-338 *3 *4)) (-4 *3 (-342))
+ (-14 *4 (-892)))))
+(((*1 *1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1066))))
+ ((*1 *1 *2) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1066)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *2 (-823))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)))))
(((*1 *2 *3)
(-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3))
- (-4 *3 (-13 (-356) (-1165) (-973))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-1123 *3))) (-5 *1 (-1123 *3)) (-4 *3 (-1180)))))
+ (-4 *3 (-13 (-356) (-1164) (-973))))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-592 *6))) (-5 *4 (-1142)) (-5 *2 (-592 *6))
+ (-4 *6 (-423 *5)) (-4 *5 (-823)) (-5 *1 (-558 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-840 *3)) (-5 *2 (-549)))))
(((*1 *1)
- (-12 (-4 *1 (-397)) (-4008 (|has| *1 (-6 -4328)))
- (-4008 (|has| *1 (-6 -4320)))))
- ((*1 *2 *1) (-12 (-4 *1 (-418 *2)) (-4 *2 (-1067)) (-4 *2 (-823))))
+ (-12 (-4 *1 (-397)) (-4007 (|has| *1 (-6 -4327)))
+ (-4007 (|has| *1 (-6 -4319)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-418 *2)) (-4 *2 (-1066)) (-4 *2 (-823))))
((*1 *1 *1 *1) (-4 *1 (-823)))
((*1 *2 *1) (-12 (-4 *1 (-939 *2)) (-4 *2 (-823))))
- ((*1 *1) (-5 *1 (-1087))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-300)) (-5 *1 (-447 *3 *2)) (-4 *2 (-1202 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-300)) (-5 *1 (-452 *3 *2)) (-4 *2 (-1202 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-300)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-747)))
- (-5 *1 (-528 *3 *2 *4 *5)) (-4 *2 (-1202 *3)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-411 *3)) (-4 *3 (-541)))))
-(((*1 *2 *3 *4 *4 *5 *4 *6 *4 *5)
- (-12 (-5 *3 (-1125)) (-5 *5 (-665 (-219))) (-5 *6 (-665 (-549)))
- (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-734)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2))
- (-4 *4 (-366 *2)))))
+ ((*1 *1) (-5 *1 (-1086))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *6))
+ (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-876 *3))) (-5 *1 (-875 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
(((*1 *1 *1 *1)
- (-12 (-5 *1 (-621 *2)) (-4 *2 (-1067)) (-4 *2 (-1180)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1226 *3)) (-4 *3 (-1202 *4)) (-4 *4 (-1184))
- (-4 *1 (-335 *4 *3 *5)) (-4 *5 (-1202 (-400 *3))))))
+ (-12 (-5 *1 (-621 *2)) (-4 *2 (-1066)) (-4 *2 (-1179)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-25)) (-4 *3 (-823))
+ (-5 *2 (-2 (|:| -1569 (-549)) (|:| |var| (-592 *1))))
+ (-4 *1 (-423 *3)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-747)) (-4 *5 (-541))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-940 *5 *3)) (-4 *3 (-1201 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-335 *4 *3 *5)) (-4 *4 (-1183)) (-4 *3 (-1201 *4))
+ (-4 *5 (-1201 (-400 *3))) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))))
(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-621 (-1143))) (-5 *3 (-1143)) (-5 *1 (-525))))
+ (-12 (-5 *2 (-621 (-1142))) (-5 *3 (-1142)) (-5 *1 (-525))))
((*1 *2 *3 *2)
- (-12 (-5 *2 (-1143)) (-5 *1 (-681 *3)) (-4 *3 (-594 (-525)))))
+ (-12 (-5 *2 (-1142)) (-5 *1 (-681 *3)) (-4 *3 (-594 (-525)))))
((*1 *2 *3 *2 *2)
- (-12 (-5 *2 (-1143)) (-5 *1 (-681 *3)) (-4 *3 (-594 (-525)))))
+ (-12 (-5 *2 (-1142)) (-5 *1 (-681 *3)) (-4 *3 (-594 (-525)))))
((*1 *2 *3 *2 *2 *2)
- (-12 (-5 *2 (-1143)) (-5 *1 (-681 *3)) (-4 *3 (-594 (-525)))))
+ (-12 (-5 *2 (-1142)) (-5 *1 (-681 *3)) (-4 *3 (-594 (-525)))))
((*1 *2 *3 *2 *4)
- (-12 (-5 *4 (-621 (-1143))) (-5 *2 (-1143)) (-5 *1 (-681 *3))
+ (-12 (-5 *4 (-621 (-1142))) (-5 *2 (-1142)) (-5 *1 (-681 *3))
(-4 *3 (-594 (-525))))))
(((*1 *2 *3 *2)
- (-12 (-5 *1 (-655 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1067)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-354 (-114))) (-4 *2 (-1018)) (-5 *1 (-691 *2 *4))
- (-4 *4 (-624 *2))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-354 (-114))) (-5 *1 (-810 *2)) (-4 *2 (-1018)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1139 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *2 (-823))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-736)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-567 *3)) (-4 *3 (-356)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-747)) (-5 *2 (-1199 *5 *4)) (-5 *1 (-1141 *4 *5 *6))
- (-4 *4 (-1018)) (-14 *5 (-1143)) (-14 *6 *4)))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-747)) (-5 *2 (-1199 *5 *4)) (-5 *1 (-1218 *4 *5 *6))
- (-4 *4 (-1018)) (-14 *5 (-1143)) (-14 *6 *4))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-892)) (-5 *3 (-621 (-256))) (-5 *1 (-254))))
- ((*1 *1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-256)))))
+ (-12 (-5 *1 (-655 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1066)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1009 (-549))) (-4 *1 (-295)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-534)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-876 *3)) (-4 *3 (-1067)))))
+ (-12 (-5 *2 (-1122 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1067)) (-4 *5 (-1067))
- (-4 *6 (-1067)) (-5 *2 (-1 *6 *5)) (-5 *1 (-660 *4 *5 *6)))))
+ (-12 (-4 *5 (-1066)) (-4 *3 (-871 *5)) (-5 *2 (-665 *3))
+ (-5 *1 (-668 *5 *3 *6 *4)) (-4 *6 (-366 *3))
+ (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4336)))))))
+(((*1 *1 *2 *3 *4)
+ (-12
+ (-5 *3
+ (-621
+ (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1138 *2))
+ (|:| |logand| (-1138 *2)))))
+ (-5 *4 (-621 (-2 (|:| |integrand| *2) (|:| |intvar| *2))))
+ (-4 *2 (-356)) (-5 *1 (-567 *2)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-5 *1 (-971 *3)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-736)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-323)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-1124)) (-5 *3 (-549)) (-5 *1 (-235)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-621 (-1178))) (-5 *3 (-1178)) (-5 *1 (-657)))))
(((*1 *1 *1 *1)
- (-12 (-5 *1 (-621 *2)) (-4 *2 (-1067)) (-4 *2 (-1180)))))
+ (-12 (-5 *1 (-621 *2)) (-4 *2 (-1066)) (-4 *2 (-1179)))))
+(((*1 *2) (-12 (-5 *2 (-1113 (-1124))) (-5 *1 (-384)))))
+(((*1 *2)
+ (-12 (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4)))
+ (-5 *2 (-1225 *1)) (-4 *1 (-335 *3 *4 *5)))))
(((*1 *1 *2 *3)
- (-12 (-5 *3 (-621 (-1143))) (-5 *2 (-1143)) (-5 *1 (-323)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
+ (-12 (-5 *3 (-621 (-1142))) (-5 *2 (-1142)) (-5 *1 (-323)))))
(((*1 *2 *2 *3)
- (-12 (-5 *1 (-655 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067)))))
-(((*1 *1 *1) (-5 *1 (-219)))
- ((*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
- ((*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
- (-4 *2 (-423 *3))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
- (-4 *2 (-423 *3))))
- ((*1 *1 *1) (-4 *1 (-1106))) ((*1 *1 *1 *1) (-4 *1 (-1106))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-923 (-400 (-549)))) (-5 *4 (-1143))
- (-5 *5 (-1061 (-816 (-219)))) (-5 *2 (-621 (-219))) (-5 *1 (-293)))))
-(((*1 *1 *2 *2) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1165))))))
-(((*1 *1)
- (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-541)) (-4 *2 (-170)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1123 *3)) (-4 *3 (-1067))
- (-4 *3 (-1180)))))
-(((*1 *1) (-5 *1 (-1052))))
+ (-12 (-5 *1 (-655 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-823)) (-5 *2 (-621 (-621 *4))) (-5 *1 (-1151 *4))
- (-5 *3 (-621 *4)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1070 *2 *3 *4 *5 *6)) (-4 *2 (-1067)) (-4 *3 (-1067))
- (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)))))
+ (-12 (-5 *3 (-621 (-621 (-621 *4)))) (-5 *2 (-621 (-621 *4)))
+ (-5 *1 (-1150 *4)) (-4 *4 (-823)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-1178))) (-5 *1 (-515)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-665 (-167 (-400 (-549))))) (-5 *2 (-621 (-167 *4)))
- (-5 *1 (-741 *4)) (-4 *4 (-13 (-356) (-821))))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3)
- (-12 (-5 *3 (-549)) (-5 *5 (-112)) (-5 *6 (-665 (-219)))
- (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-732)))))
+ (-12 (-5 *3 (-549)) (-5 *4 (-411 *2)) (-4 *2 (-920 *7 *5 *6))
+ (-5 *1 (-719 *5 *6 *7 *2)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-300)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-287 (-400 (-923 *5)))) (-5 *4 (-1142))
+ (-4 *5 (-13 (-300) (-823) (-145)))
+ (-5 *2 (-1131 (-621 (-309 *5)) (-621 (-287 (-309 *5)))))
+ (-5 *1 (-1095 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1142))
+ (-4 *5 (-13 (-300) (-823) (-145)))
+ (-5 *2 (-1131 (-621 (-309 *5)) (-621 (-287 (-309 *5)))))
+ (-5 *1 (-1095 *5)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-525))) (-5 *2 (-1143)) (-5 *1 (-525)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -3727 (-758 *3)) (|:| |coef2| (-758 *3))))
- (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *2 (-2 (|:| -3727 *1) (|:| |coef2| *1)))
- (-4 *1 (-1032 *3 *4 *5)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-795 *3)) (-4 *3 (-823)) (-5 *1 (-648 *3)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1165) (-973)))
- (-5 *1 (-174 *3)))))
-(((*1 *1) (-5 *1 (-155))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-914 (-219)))) (-5 *1 (-1227)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-549)) (-4 *1 (-56 *4 *3 *5)) (-4 *4 (-1180))
- (-4 *3 (-366 *4)) (-4 *5 (-366 *4)))))
+ (-12 (-5 *3 (-621 (-525))) (-5 *2 (-1142)) (-5 *1 (-525)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4336)) (-4 *1 (-229 *3))
+ (-4 *3 (-1066))))
+ ((*1 *1 *2 *1)
+ (-12 (|has| *1 (-6 -4336)) (-4 *1 (-229 *2)) (-4 *2 (-1066))))
+ ((*1 *1 *2 *1)
+ (-12 (-4 *1 (-275 *2)) (-4 *2 (-1179)) (-4 *2 (-1066))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-275 *3)) (-4 *3 (-1179))))
+ ((*1 *2 *3 *1)
+ (|partial| -12 (-4 *1 (-590 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1066))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-549)) (-4 *4 (-1066))
+ (-5 *1 (-714 *4))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-549)) (-5 *1 (-714 *2)) (-4 *2 (-1066))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1106 *3 *4)) (-4 *3 (-13 (-1066) (-34)))
+ (-4 *4 (-13 (-1066) (-34))) (-5 *1 (-1107 *3 *4)))))
(((*1 *1 *1)
- (-12 (-4 *1 (-1070 *2 *3 *4 *5 *6)) (-4 *2 (-1067)) (-4 *3 (-1067))
- (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *2 (-541))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *2 (-541)))))
+ (-12 (-4 *1 (-1069 *2 *3 *4 *5 *6)) (-4 *2 (-1066)) (-4 *3 (-1066))
+ (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-892)) (-5 *2 (-1139 *4)) (-5 *1 (-350 *4))
- (-4 *4 (-342)))))
-(((*1 *1 *2 *3 *3 *3 *4)
- (-12 (-4 *4 (-356)) (-4 *3 (-1202 *4)) (-4 *5 (-1202 (-400 *3)))
- (-4 *1 (-328 *4 *3 *5 *2)) (-4 *2 (-335 *4 *3 *5))))
- ((*1 *1 *2 *2 *3)
- (-12 (-5 *3 (-549)) (-4 *2 (-356)) (-4 *4 (-1202 *2))
- (-4 *5 (-1202 (-400 *4))) (-4 *1 (-328 *2 *4 *5 *6))
- (-4 *6 (-335 *2 *4 *5))))
- ((*1 *1 *2 *2)
- (-12 (-4 *2 (-356)) (-4 *3 (-1202 *2)) (-4 *4 (-1202 (-400 *3)))
- (-4 *1 (-328 *2 *3 *4 *5)) (-4 *5 (-335 *2 *3 *4))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-356)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4)))
- (-4 *1 (-328 *3 *4 *5 *2)) (-4 *2 (-335 *3 *4 *5))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-406 *4 (-400 *4) *5 *6)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-4 *6 (-335 *3 *4 *5)) (-4 *3 (-356))
- (-4 *1 (-328 *3 *4 *5 *6)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-621 (-923 *3))) (-4 *3 (-444))
- (-5 *1 (-353 *3 *4)) (-14 *4 (-621 (-1143)))))
- ((*1 *2 *2)
- (|partial| -12 (-5 *2 (-621 (-756 *3 (-836 *4)))) (-4 *3 (-444))
- (-14 *4 (-621 (-1143))) (-5 *1 (-606 *3 *4)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1193 (-549))) (-4 *1 (-275 *3)) (-4 *3 (-1180))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-275 *3)) (-4 *3 (-1180)))))
+ (-12 (-5 *2 (-1138 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-444)) (-4 *4 (-541))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| -1874 *4))) (-5 *1 (-940 *4 *3))
+ (-4 *3 (-1201 *4)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-112))
- (-5 *1 (-182 *4 *3)) (-4 *3 (-13 (-27) (-1165) (-423 (-167 *4))))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427))))
+ (-12 (-5 *3 (-1142))
+ (-5 *2
+ (-2 (|:| |zeros| (-1122 (-219))) (|:| |ones| (-1122 (-219)))
+ (|:| |singularities| (-1122 (-219)))))
+ (-5 *1 (-104)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1179)) (-5 *2 (-549)))))
+(((*1 *2 *3 *3 *4 *5 *3 *6)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
+ (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-80 FCN)))) (-5 *2 (-1006))
+ (-5 *1 (-723)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-114)) (-5 *3 (-621 (-1 *4 (-621 *4)))) (-4 *4 (-1066))
+ (-5 *1 (-113 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1066))
+ (-5 *1 (-113 *4))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *2 (-112)) (-5 *1 (-1169 *4 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *4))))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-372)) (-5 *1 (-96))))
- ((*1 *2 *3 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-372)) (-5 *1 (-96)))))
+ (|partial| -12 (-5 *3 (-114)) (-5 *2 (-621 (-1 *4 (-621 *4))))
+ (-5 *1 (-113 *4)) (-4 *4 (-1066)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1142)) (-4 *4 (-444)) (-4 *4 (-823))
+ (-5 *1 (-558 *4 *2)) (-4 *2 (-277)) (-4 *2 (-423 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1066)) (-5 *1 (-935 *2 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *1) (-12 (-4 *1 (-106 *2)) (-4 *2 (-1179)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1069 *2 *3 *4 *5 *6)) (-4 *2 (-1066)) (-4 *3 (-1066))
+ (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)))))
+(((*1 *1 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-21)) (-4 *2 (-1179)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
+(((*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10)
+ (|partial| -12 (-5 *2 (-621 (-1138 *13))) (-5 *3 (-1138 *13))
+ (-5 *4 (-621 *12)) (-5 *5 (-621 *10)) (-5 *6 (-621 *13))
+ (-5 *7 (-621 (-621 (-2 (|:| -3447 (-747)) (|:| |pcoef| *13)))))
+ (-5 *8 (-621 (-747))) (-5 *9 (-1225 (-621 (-1138 *10))))
+ (-4 *12 (-823)) (-4 *10 (-300)) (-4 *13 (-920 *10 *11 *12))
+ (-4 *11 (-769)) (-5 *1 (-684 *11 *12 *10 *13)))))
(((*1 *1 *2 *3)
- (-12 (-5 *1 (-844 *2 *3)) (-4 *2 (-1180)) (-4 *3 (-1180)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4337)) (-4 *1 (-481 *4))
- (-4 *4 (-1180)) (-5 *2 (-112)))))
+ (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1066)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1138 *9)) (-5 *4 (-621 *7)) (-4 *7 (-823))
+ (-4 *9 (-920 *8 *6 *7)) (-4 *6 (-769)) (-4 *8 (-300))
+ (-5 *2 (-621 (-747))) (-5 *1 (-719 *6 *7 *8 *9)) (-5 *5 (-747)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-747)) (-5 *3 (-914 *5)) (-4 *5 (-1018))
+ (-5 *1 (-1130 *4 *5)) (-14 *4 (-892))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-621 (-747))) (-5 *3 (-747)) (-5 *1 (-1130 *4 *5))
+ (-14 *4 (-892)) (-4 *5 (-1018))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-621 (-747))) (-5 *3 (-914 *5)) (-4 *5 (-1018))
+ (-5 *1 (-1130 *4 *5)) (-14 *4 (-892)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-844 *2 *3)) (-4 *2 (-1179)) (-4 *3 (-1179)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1066)) (-4 *3 (-23))
+ (-14 *4 *3))))
(((*1 *1 *2 *3)
- (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1067))))
+ (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1066))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-549)) (-5 *2 (-1123 *3)) (-5 *1 (-1127 *3))
+ (-12 (-5 *4 (-549)) (-5 *2 (-1122 *3)) (-5 *1 (-1126 *3))
(-4 *3 (-1018))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-795 *4)) (-4 *4 (-823)) (-4 *1 (-1243 *4 *3))
+ (-12 (-5 *2 (-795 *4)) (-4 *4 (-823)) (-4 *1 (-1242 *4 *3))
(-4 *3 (-1018)))))
-(((*1 *1 *2) (-12 (-4 *1 (-642 *2)) (-4 *2 (-1180))))
- ((*1 *2 *1) (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-1143)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769))
- (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
- (-5 *2
- (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549))
- (|:| |success| (-112))))
- (-5 *1 (-765)) (-5 *5 (-549)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-892)) (-5 *2 (-1139 *4)) (-5 *1 (-350 *4))
- (-4 *4 (-342)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-219))) (-5 *4 (-747)) (-5 *2 (-665 (-219)))
- (-5 *1 (-298)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *2 (-549)) (-5 *1 (-1162 *3)) (-4 *3 (-1018)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-724)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-747)) (-5 *4 (-1226 *2)) (-4 *5 (-300))
- (-4 *6 (-963 *5)) (-4 *2 (-13 (-402 *6 *7) (-1009 *6)))
- (-5 *1 (-406 *5 *6 *7 *2)) (-4 *7 (-1202 *6)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769))
- (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *4 *5 *6)
+ (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-845))
+ (-5 *5 (-892)) (-5 *6 (-621 (-256))) (-5 *2 (-1226))
+ (-5 *1 (-1229))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-621 (-256)))
+ (-5 *2 (-1226)) (-5 *1 (-1229)))))
+(((*1 *1) (-5 *1 (-799))))
+(((*1 *1) (-5 *1 (-1145))))
+(((*1 *1 *2) (-12 (-4 *1 (-642 *2)) (-4 *2 (-1179))))
+ ((*1 *2 *1) (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-1142)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-444))
- (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-441 *3 *4 *5 *6)))))
+ (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1164) (-973)))
+ (-5 *1 (-174 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6))
- (-5 *2 (-621 (-2 (|:| -2681 *1) (|:| -1359 (-621 *7)))))
- (-5 *3 (-621 *7)) (-4 *1 (-1173 *4 *5 *6 *7)))))
+ (-12 (-5 *3 (-1015 *4 *5)) (-4 *4 (-13 (-821) (-300) (-145) (-993)))
+ (-14 *5 (-621 (-1142)))
+ (-5 *2
+ (-621 (-2 (|:| -3609 (-1138 *4)) (|:| -1981 (-621 (-923 *4))))))
+ (-5 *1 (-1251 *4 *5 *6)) (-14 *6 (-621 (-1142)))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993)))
+ (-5 *2
+ (-621 (-2 (|:| -3609 (-1138 *5)) (|:| -1981 (-621 (-923 *5))))))
+ (-5 *1 (-1251 *5 *6 *7)) (-5 *3 (-621 (-923 *5)))
+ (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993)))
+ (-5 *2
+ (-621 (-2 (|:| -3609 (-1138 *5)) (|:| -1981 (-621 (-923 *5))))))
+ (-5 *1 (-1251 *5 *6 *7)) (-5 *3 (-621 (-923 *5)))
+ (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-821) (-300) (-145) (-993)))
+ (-5 *2
+ (-621 (-2 (|:| -3609 (-1138 *5)) (|:| -1981 (-621 (-923 *5))))))
+ (-5 *1 (-1251 *5 *6 *7)) (-5 *3 (-621 (-923 *5)))
+ (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-821) (-300) (-145) (-993)))
+ (-5 *2
+ (-621 (-2 (|:| -3609 (-1138 *4)) (|:| -1981 (-621 (-923 *4))))))
+ (-5 *1 (-1251 *4 *5 *6)) (-5 *3 (-621 (-923 *4)))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-621 (-1142))))))
+(((*1 *2 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1124)) (-5 *1 (-298)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-395)) (-5 *2 (-747))))
+ ((*1 *1 *1) (-4 *1 (-395))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2))
+ (-4 *4 (-366 *2)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-738))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-892)) (-4 *4 (-361)) (-4 *4 (-356)) (-5 *2 (-1138 *1))
+ (-4 *1 (-322 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-1138 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-363 *3 *2)) (-4 *3 (-170)) (-4 *3 (-356))
+ (-4 *2 (-1201 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1225 *4)) (-4 *4 (-342)) (-5 *2 (-1138 *4))
+ (-5 *1 (-519 *4)))))
+(((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-747)) (-4 *5 (-356)) (-5 *2 (-400 *6))
+ (-5 *1 (-838 *5 *4 *6)) (-4 *4 (-1216 *5)) (-4 *6 (-1201 *5))))
+ ((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-747)) (-5 *4 (-1217 *5 *6 *7)) (-4 *5 (-356))
+ (-14 *6 (-1142)) (-14 *7 *5) (-5 *2 (-400 (-1198 *6 *5)))
+ (-5 *1 (-839 *5 *6 *7))))
+ ((*1 *2 *3 *3 *4)
+ (|partial| -12 (-5 *3 (-747)) (-5 *4 (-1217 *5 *6 *7)) (-4 *5 (-356))
+ (-14 *6 (-1142)) (-14 *7 *5) (-5 *2 (-400 (-1198 *6 *5)))
+ (-5 *1 (-839 *5 *6 *7)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1067)) (-4 *5 (-1067))
- (-4 *6 (-1067)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-660 *4 *5 *6)))))
-(((*1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1229)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-323)))))
+ (-12 (-5 *3 (-629 (-400 *2))) (-4 *2 (-1201 *4)) (-5 *1 (-786 *4 *2))
+ (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-630 *2 (-400 *2))) (-4 *2 (-1201 *4))
+ (-5 *1 (-786 *4 *2))
+ (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1198 *5 *4)) (-4 *4 (-444)) (-4 *4 (-796))
+ (-14 *5 (-1142)) (-5 *2 (-549)) (-5 *1 (-1080 *4 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-323)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-621 (-256))) (-5 *4 (-1143))
- (-5 *1 (-255 *2)) (-4 *2 (-1180))))
+ (|partial| -12 (-5 *3 (-621 (-256))) (-5 *4 (-1142))
+ (-5 *1 (-255 *2)) (-4 *2 (-1179))))
((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-621 (-256))) (-5 *4 (-1143)) (-5 *2 (-52))
+ (|partial| -12 (-5 *3 (-621 (-256))) (-5 *4 (-1142)) (-5 *2 (-52))
(-5 *1 (-256)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-621 (-549))) (-5 *1 (-1076)) (-5 *3 (-549)))))
+(((*1 *2)
+ (-12 (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-880))
+ (-5 *1 (-449 *3 *4 *2 *5)) (-4 *5 (-920 *2 *3 *4))))
+ ((*1 *2)
+ (-12 (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-880))
+ (-5 *1 (-877 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4))))
+ ((*1 *2) (-12 (-4 *2 (-880)) (-5 *1 (-878 *2 *3)) (-4 *3 (-1201 *2)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1226 (-1226 *4))) (-4 *4 (-1018)) (-5 *2 (-665 *4))
- (-5 *1 (-1000 *4)))))
-(((*1 *2 *3 *4 *5 *6 *5 *3 *7)
- (-12 (-5 *4 (-549))
- (-5 *6
- (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3043 (-372))))
- (-5 *7 (-1 (-1231) (-1226 *5) (-1226 *5) (-372)))
- (-5 *3 (-1226 (-372))) (-5 *5 (-372)) (-5 *2 (-1231))
- (-5 *1 (-764))))
- ((*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3)
- (-12 (-5 *4 (-549))
- (-5 *6
- (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3043 (-372))))
- (-5 *7 (-1 (-1231) (-1226 *5) (-1226 *5) (-372)))
- (-5 *3 (-1226 (-372))) (-5 *5 (-372)) (-5 *2 (-1231))
- (-5 *1 (-764)))))
-(((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823))
- (-5 *2 (-2 (|:| -1570 *1) (|:| |gap| (-747)) (|:| -3675 *1)))
- (-4 *1 (-1032 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *2 (-2 (|:| -1570 *1) (|:| |gap| (-747)) (|:| -3675 *1)))
- (-4 *1 (-1032 *3 *4 *5)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1226 *1)) (-4 *1 (-363 *4 *5)) (-4 *4 (-170))
- (-4 *5 (-1202 *4)) (-5 *2 (-665 *4))))
+ (-12 (-5 *2 (-411 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1201 (-48)))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *2 (-2 (|:| |less| (-121 *3)) (|:| |greater| (-121 *3))))
+ (-5 *1 (-121 *3)) (-4 *3 (-823))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-567 *4)) (-4 *4 (-13 (-29 *3) (-1164)))
+ (-4 *3 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549))))
+ (-5 *1 (-565 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-567 (-400 (-923 *3))))
+ (-4 *3 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549))))
+ (-5 *1 (-570 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1201 *5)) (-4 *5 (-356))
+ (-5 *2 (-2 (|:| -4039 *3) (|:| |special| *3))) (-5 *1 (-704 *5 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1225 *5)) (-4 *5 (-356)) (-4 *5 (-1018))
+ (-5 *2 (-621 (-621 (-665 *5)))) (-5 *1 (-1000 *5))
+ (-5 *3 (-621 (-665 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1225 (-1225 *5))) (-4 *5 (-356)) (-4 *5 (-1018))
+ (-5 *2 (-621 (-621 (-665 *5)))) (-5 *1 (-1000 *5))
+ (-5 *3 (-621 (-665 *5)))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-139)) (-5 *2 (-621 *1)) (-4 *1 (-1110))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-142)) (-5 *2 (-621 *1)) (-4 *1 (-1110)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549))))
((*1 *2 *1)
- (-12 (-4 *1 (-402 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1202 *3))
- (-5 *2 (-665 *3)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1071)) (-5 *1 (-273)))))
-(((*1 *2 *1) (-12 (-4 *1 (-106 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
- (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
- (-5 *1 (-1074 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
+ (-12 (-5 *2 (-1225 (-3 (-460) "undefined"))) (-5 *1 (-1226)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769))
+ (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-747))
+ (-4 *3 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $)))))
+ (-4 *4 (-1201 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-356))
- (-5 *2 (-621 (-2 (|:| C (-665 *5)) (|:| |g| (-1226 *5)))))
- (-5 *1 (-949 *5)) (-5 *3 (-665 *5)) (-5 *4 (-1226 *5)))))
+ (-12 (-5 *3 (-621 (-1 (-112) *8))) (-4 *8 (-1032 *5 *6 *7))
+ (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-5 *2 (-2 (|:| |goodPols| (-621 *8)) (|:| |badPols| (-621 *8))))
+ (-5 *1 (-948 *5 *6 *7 *8)) (-5 *4 (-621 *8)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-665 (-400 (-549))))
- (-5 *2
- (-621
- (-2 (|:| |outval| *4) (|:| |outmult| (-549))
- (|:| |outvect| (-621 (-665 *4))))))
- (-5 *1 (-755 *4)) (-4 *4 (-13 (-356) (-821))))))
-(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))))
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-32 *3 *4))
+ (-4 *4 (-423 *3))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-747)) (-5 *1 (-114))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-114))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *4))
+ (-4 *4 (-423 *3))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-114)) (-5 *1 (-161))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *4))
+ (-4 *4 (-13 (-423 *3) (-973)))))
+ ((*1 *2 *2) (-12 (-5 *2 (-114)) (-5 *1 (-294 *3)) (-4 *3 (-295))))
+ ((*1 *2 *2) (-12 (-4 *1 (-295)) (-5 *2 (-114))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *4 (-823)) (-5 *1 (-422 *3 *4))
+ (-4 *3 (-423 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *4))
+ (-4 *4 (-423 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-114)) (-5 *1 (-592 *3)) (-4 *3 (-823))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *4))
+ (-4 *4 (-13 (-423 *3) (-973) (-1164)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-990)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1202 (-549)))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1202 (-549))))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1123 *4)) (-5 *3 (-549)) (-4 *4 (-1018))
- (-5 *1 (-1127 *4))))
- ((*1 *1 *2 *2 *1)
- (-12 (-5 *2 (-549)) (-5 *1 (-1218 *3 *4 *5)) (-4 *3 (-1018))
- (-14 *4 (-1143)) (-14 *5 *3))))
-(((*1 *2 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1180)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1166 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
- (-5 *1 (-1095 *3 *2)) (-4 *3 (-1202 *2)))))
+ (|partial| -12 (-5 *3 (-665 *1)) (-4 *1 (-342)) (-5 *2 (-1225 *1))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-665 *1)) (-4 *1 (-143)) (-4 *1 (-880))
+ (-5 *2 (-1225 *1)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-4 *6 (-1201 *9)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *9 (-300))
+ (-4 *10 (-920 *9 *7 *8))
+ (-5 *2
+ (-2 (|:| |deter| (-621 (-1138 *10)))
+ (|:| |dterm|
+ (-621 (-621 (-2 (|:| -3447 (-747)) (|:| |pcoef| *10)))))
+ (|:| |nfacts| (-621 *6)) (|:| |nlead| (-621 *10))))
+ (-5 *1 (-754 *6 *7 *8 *9 *10)) (-5 *3 (-1138 *10)) (-5 *4 (-621 *6))
+ (-5 *5 (-621 *10)))))
+(((*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)) (-4 *2 (-534))))
+ ((*1 *1 *1) (-4 *1 (-1027))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549)))))
- (-4 *5 (-1202 *4))
- (-5 *2 (-621 (-2 (|:| |deg| (-747)) (|:| -2652 *5))))
- (-5 *1 (-785 *4 *5 *3 *6)) (-4 *3 (-632 *5))
- (-4 *6 (-632 (-400 *5))))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
+ (-12 (-5 *3 (-1124)) (-4 *4 (-13 (-300) (-145)))
+ (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769))
+ (-5 *2
+ (-621
+ (-2 (|:| |eqzro| (-621 *7)) (|:| |neqzro| (-621 *7))
+ (|:| |wcond| (-621 (-923 *4)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1225 (-400 (-923 *4))))
+ (|:| -2619 (-621 (-1225 (-400 (-923 *4))))))))))
+ (-5 *1 (-895 *4 *5 *6 *7)) (-4 *7 (-920 *4 *6 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-342)) (-4 *4 (-322 *3)) (-4 *5 (-1201 *4))
+ (-5 *1 (-753 *3 *4 *5 *2 *6)) (-4 *2 (-1201 *5)) (-14 *6 (-892))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-747)) (-4 *1 (-1244 *3)) (-4 *3 (-356)) (-4 *3 (-361))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-356)) (-4 *2 (-361)))))
(((*1 *1 *2) (-12 (-5 *2 (-892)) (-4 *1 (-361))))
((*1 *2 *3 *3)
- (-12 (-5 *3 (-892)) (-5 *2 (-1226 *4)) (-5 *1 (-519 *4))
+ (-12 (-5 *3 (-892)) (-5 *2 (-1225 *4)) (-5 *1 (-519 *4))
(-4 *4 (-342))))
((*1 *2 *1)
- (-12 (-4 *2 (-823)) (-5 *1 (-690 *2 *3 *4)) (-4 *3 (-1067))
+ (-12 (-4 *2 (-823)) (-5 *1 (-690 *2 *3 *4)) (-4 *3 (-1066))
(-14 *4
- (-1 (-112) (-2 (|:| -3493 *2) (|:| -3731 *3))
- (-2 (|:| -3493 *2) (|:| -3731 *3)))))))
-(((*1 *1 *2) (-12 (-5 *2 (-1226 *3)) (-4 *3 (-356)) (-4 *1 (-322 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1226 *3)) (-4 *3 (-1202 *4)) (-4 *4 (-1184))
- (-4 *1 (-335 *4 *3 *5)) (-4 *5 (-1202 (-400 *3)))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1226 *4)) (-5 *3 (-1226 *1)) (-4 *4 (-170))
- (-4 *1 (-360 *4))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1226 *4)) (-5 *3 (-1226 *1)) (-4 *4 (-170))
- (-4 *1 (-363 *4 *5)) (-4 *5 (-1202 *4))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1226 *3)) (-4 *3 (-170)) (-4 *1 (-402 *3 *4))
- (-4 *4 (-1202 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1226 *3)) (-4 *3 (-170)) (-4 *1 (-410 *3)))))
+ (-1 (-112) (-2 (|:| -3494 *2) (|:| -1714 *3))
+ (-2 (|:| -3494 *2) (|:| -1714 *3)))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1139 *4)) (-4 *4 (-342)) (-5 *2 (-929 (-1087)))
- (-5 *1 (-339 *4)))))
+ (-12 (-5 *3 (-1108 *4 *2)) (-14 *4 (-892))
+ (-4 *2 (-13 (-1018) (-10 -7 (-6 (-4338 "*")))))
+ (-5 *1 (-873 *4 *2)))))
+(((*1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-736)))))
+(((*1 *2 *3 *1) (-12 (-5 *3 (-1142)) (-5 *2 (-430)) (-5 *1 (-1146)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-1225 *5)) (-5 *3 (-747)) (-5 *4 (-1086)) (-4 *5 (-342))
+ (-5 *1 (-519 *5)))))
(((*1 *2 *3 *1)
- (|partial| -12 (-4 *1 (-590 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1067)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1067)) (-4 *1 (-874 *3)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170))))
- ((*1 *2 *3 *3 *2)
- (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170)))))
-(((*1 *1 *1 *1 *1) (-5 *1 (-834)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))))
-(((*1 *1) (-5 *1 (-799))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018)) (-4 *2 (-356))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-356)) (-5 *1 (-635 *4 *2))
- (-4 *2 (-632 *4)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-665 *6)) (-5 *5 (-1 (-411 (-1139 *6)) (-1139 *6)))
- (-4 *6 (-356))
+ (|partial| -12 (-4 *1 (-590 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1066)))))
+(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459))))
+ ((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459))))
+ ((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219)))
+ (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-62 LSFUN2))))
+ (-5 *2 (-1006)) (-5 *1 (-730)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-287 (-816 *3))) (-4 *3 (-13 (-27) (-1164) (-423 *5)))
+ (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2
- (-621
- (-2 (|:| |outval| *7) (|:| |outmult| (-549))
- (|:| |outvect| (-621 (-665 *7))))))
- (-5 *1 (-522 *6 *7 *4)) (-4 *7 (-356)) (-4 *4 (-13 (-356) (-821))))))
+ (-3 (-816 *3)
+ (-2 (|:| |leftHandLimit| (-3 (-816 *3) "failed"))
+ (|:| |rightHandLimit| (-3 (-816 *3) "failed")))
+ "failed"))
+ (-5 *1 (-614 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-287 *3)) (-5 *5 (-1124))
+ (-4 *3 (-13 (-27) (-1164) (-423 *6)))
+ (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *2 (-816 *3)) (-5 *1 (-614 *6 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-287 (-816 (-923 *5)))) (-4 *5 (-444))
+ (-5 *2
+ (-3 (-816 (-400 (-923 *5)))
+ (-2 (|:| |leftHandLimit| (-3 (-816 (-400 (-923 *5))) "failed"))
+ (|:| |rightHandLimit| (-3 (-816 (-400 (-923 *5))) "failed")))
+ "failed"))
+ (-5 *1 (-615 *5)) (-5 *3 (-400 (-923 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-287 (-400 (-923 *5)))) (-5 *3 (-400 (-923 *5)))
+ (-4 *5 (-444))
+ (-5 *2
+ (-3 (-816 *3)
+ (-2 (|:| |leftHandLimit| (-3 (-816 *3) "failed"))
+ (|:| |rightHandLimit| (-3 (-816 *3) "failed")))
+ "failed"))
+ (-5 *1 (-615 *5))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-287 (-400 (-923 *6)))) (-5 *5 (-1124))
+ (-5 *3 (-400 (-923 *6))) (-4 *6 (-444)) (-5 *2 (-816 *3))
+ (-5 *1 (-615 *6)))))
+(((*1 *1 *1 *1) (-4 *1 (-738))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-549)) (-4 *2 (-423 *3)) (-5 *1 (-32 *3 *2))
+ (-4 *3 (-1009 *4)) (-4 *3 (-13 (-823) (-541))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1142)) (-5 *5 (-1060 (-219))) (-5 *2 (-898))
+ (-5 *1 (-896 *3)) (-4 *3 (-594 (-525)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1142)) (-5 *2 (-898)) (-5 *1 (-896 *3))
+ (-4 *3 (-594 (-525)))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *1 (-898))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1060 (-219)))
+ (-5 *1 (-898)))))
(((*1 *2 *2 *2 *3 *4)
(-12 (-5 *3 (-98 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-1018))
(-5 *1 (-826 *5 *2)) (-4 *2 (-825 *5)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-316 *3 *4)) (-4 *3 (-1067))
- (-4 *4 (-130))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1067)) (-5 *1 (-354 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1067)) (-5 *1 (-379 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1067)) (-5 *1 (-625 *3 *4 *5))
- (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-621 (-400 *6))) (-5 *3 (-400 *6))
- (-4 *6 (-1202 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-553 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-4 *2 (-1202 *4)) (-5 *1 (-528 *4 *2 *5 *6))
- (-4 *4 (-300)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-747))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-892)) (-5 *2 (-1139 *4)) (-5 *1 (-350 *4))
- (-4 *4 (-342)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-287 *3))) (-5 *1 (-287 *3)) (-4 *3 (-541))
- (-4 *3 (-1180)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-497))) (-5 *1 (-212))))
- ((*1 *1 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1180))))
- ((*1 *2 *1) (-12 (-5 *2 (-621 (-497))) (-5 *1 (-652))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-621 *6)) (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5))
+ (-4 *3 (-541)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-4 *4 (-170)) (-4 *5 (-366 *4))
+ (-4 *6 (-366 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4)))
+ (-5 *1 (-664 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-170)) (-4 *2 (-1018)) (-5 *1 (-691 *2 *3))
+ (-4 *3 (-624 *2))))
((*1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541))
- (-4 *6 (-769)) (-4 *7 (-823))
- (-5 *2 (-2 (|:| |goodPols| (-621 *8)) (|:| |badPols| (-621 *8))))
- (-5 *1 (-948 *5 *6 *7 *8)) (-5 *4 (-621 *8)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-823)) (-5 *4 (-621 *6))
- (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-621 *4))))
- (-5 *1 (-1151 *6)) (-5 *5 (-621 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-1125)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1243 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
- (-5 *2 (-2 (|:| |k| (-795 *3)) (|:| |c| *4))))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-549)) (-4 *1 (-316 *4 *2)) (-4 *4 (-1067))
- (-4 *2 (-130)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-892)) (-5 *3 (-621 (-256))) (-5 *1 (-254))))
- ((*1 *1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-256)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-541))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3602 *4)))
- (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))))
-(((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-1123 (-2 (|:| |k| (-549)) (|:| |c| *6))))
- (-5 *4 (-997 (-816 (-549)))) (-5 *5 (-1143)) (-5 *7 (-400 (-549)))
- (-4 *6 (-1018)) (-5 *2 (-834)) (-5 *1 (-576 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-845)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-665 *5))) (-4 *5 (-300)) (-4 *5 (-1018))
- (-5 *2 (-1226 (-1226 *5))) (-5 *1 (-1000 *5)) (-5 *4 (-1226 *5)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *3 (-1184)) (-4 *5 (-1202 *3)) (-4 *6 (-1202 (-400 *5)))
- (-5 *2 (-112)) (-5 *1 (-334 *4 *3 *5 *6)) (-4 *4 (-335 *3 *5 *6))))
- ((*1 *2 *3 *3)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1981 *4))))
- (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
-(((*1 *1) (-5 *1 (-284))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-549)) (-4 *4 (-170)) (-4 *5 (-366 *4))
- (-4 *6 (-366 *4)) (-5 *1 (-664 *4 *5 *6 *2))
- (-4 *2 (-663 *4 *5 *6)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-1125)) (-5 *3 (-549)) (-5 *1 (-235)))))
+ (-12 (-4 *2 (-170)) (-4 *2 (-1018)) (-5 *1 (-691 *2 *3))
+ (-4 *3 (-624 *2))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-810 *2)) (-4 *2 (-170)) (-4 *2 (-1018))))
+ ((*1 *1 *1) (-12 (-5 *1 (-810 *2)) (-4 *2 (-170)) (-4 *2 (-1018)))))
+(((*1 *1 *2 *2) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1164))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
(((*1 *2 *2)
(-12 (-4 *3 (-356)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3))
(-5 *1 (-512 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5))))
@@ -4762,16 +4821,55 @@
((*1 *1 *1)
(-12 (-4 *1 (-1021 *2 *3 *4 *5 *6)) (-4 *4 (-1018))
(-4 *5 (-232 *3 *4)) (-4 *6 (-232 *2 *4)) (-4 *4 (-300)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-747)) (-4 *5 (-541))
- (-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-940 *5 *3)) (-4 *3 (-1202 *5)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-112))
+ (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
+ (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1979 *4))))
+ (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-621 (-592 *5))) (-5 *3 (-1142)) (-4 *5 (-423 *4))
+ (-4 *4 (-823)) (-5 *1 (-558 *4 *5)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-936))) (-5 *1 (-108)))))
+(((*1 *1 *1) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1179)) (-4 *2 (-1066))))
+ ((*1 *1 *1) (-12 (-4 *1 (-671 *2)) (-4 *2 (-1066)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-320 *3)) (-4 *3 (-1179))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-549)) (-5 *1 (-507 *3 *4)) (-4 *3 (-1179)) (-14 *4 *2))))
+(((*1 *1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-112)) (-5 *1 (-576 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-805)) (-5 *3 (-1124)))))
+(((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-1142))) (-4 *4 (-13 (-300) (-145)))
+ (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769))
+ (-5 *2 (-621 (-400 (-923 *4)))) (-5 *1 (-895 *4 *5 *6 *7))
+ (-4 *7 (-920 *4 *6 *5)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *1) (-5 *1 (-284))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-2 (|:| -4160 *4) (|:| -1518 (-549)))))
+ (-4 *4 (-1066)) (-5 *2 (-1 *4)) (-5 *1 (-988 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-665 *7)) (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *6 *5))
+ (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142))))
+ (-4 *6 (-769)) (-5 *1 (-895 *4 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-4 *1 (-360 *2)) (-4 *2 (-170)))))
+(((*1 *1 *1 *1) (-4 *1 (-534))))
(((*1 *2 *1)
- (-12 (-4 *1 (-671 *3)) (-4 *3 (-1067))
- (-5 *2 (-621 (-2 (|:| -1793 *3) (|:| -4000 (-747))))))))
-(((*1 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534))))
- ((*1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-942)))))
+ (-12 (-5 *2 (-400 (-549))) (-5 *1 (-312 *3 *4 *5))
+ (-4 *3 (-13 (-356) (-823))) (-14 *4 (-1142)) (-14 *5 *3))))
(((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-747)) (-4 *1 (-225 *4))
(-4 *4 (-1018))))
@@ -4782,387 +4880,617 @@
((*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-4 *1 (-259 *3)) (-4 *3 (-823))))
((*1 *1 *1) (-12 (-4 *1 (-259 *2)) (-4 *2 (-823))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184))
- (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4)))))
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183))
+ (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4)))))
((*1 *1 *1 *2)
(-12 (-5 *2 (-747)) (-4 *3 (-13 (-356) (-145))) (-5 *1 (-392 *3 *4))
- (-4 *4 (-1202 *3))))
+ (-4 *4 (-1201 *3))))
((*1 *1 *1)
(-12 (-4 *2 (-13 (-356) (-145))) (-5 *1 (-392 *2 *3))
- (-4 *3 (-1202 *2))))
+ (-4 *3 (-1201 *2))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-466 *3 *4 *5))
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-466 *3 *4 *5))
(-4 *3 (-1018)) (-14 *5 *3)))
((*1 *2 *1 *3)
(-12 (-4 *2 (-356)) (-4 *2 (-871 *3)) (-5 *1 (-567 *2))
- (-5 *3 (-1143))))
+ (-5 *3 (-1142))))
((*1 *2 *1 *3)
(-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-567 *2)) (-4 *2 (-356))))
((*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-834))))
((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-621 *4)) (-5 *3 (-621 (-747))) (-4 *1 (-871 *4))
- (-4 *4 (-1067))))
+ (-4 *4 (-1066))))
((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-747)) (-4 *1 (-871 *2)) (-4 *2 (-1067))))
+ (-12 (-5 *3 (-747)) (-4 *1 (-871 *2)) (-4 *2 (-1066))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *1 (-871 *3)) (-4 *3 (-1067))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-871 *2)) (-4 *2 (-1067))))
+ (-12 (-5 *2 (-621 *3)) (-4 *1 (-871 *3)) (-4 *3 (-1066))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-871 *2)) (-4 *2 (-1066))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1134 *3 *4 *5))
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1133 *3 *4 *5))
(-4 *3 (-1018)) (-14 *5 *3)))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1140 *3 *4 *5))
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1139 *3 *4 *5))
(-4 *3 (-1018)) (-14 *5 *3)))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1141 *3 *4 *5))
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1140 *3 *4 *5))
(-4 *3 (-1018)) (-14 *5 *3)))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1190 *3 *4 *5))
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1189 *3 *4 *5))
(-4 *3 (-1018)) (-14 *5 *3)))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1202 *3)) (-4 *3 (-1018))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1201 *3)) (-4 *3 (-1018))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1211 *3 *4 *5))
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1210 *3 *4 *5))
(-4 *3 (-1018)) (-14 *5 *3)))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1222 *4)) (-14 *4 (-1143)) (-5 *1 (-1218 *3 *4 *5))
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1217 *3 *4 *5))
(-4 *3 (-1018)) (-14 *5 *3))))
-(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-798)))))
-(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
- (-12 (-5 *3 (-1125)) (-5 *4 (-549)) (-5 *5 (-665 (-167 (-219))))
- (-5 *2 (-1006)) (-5 *1 (-731)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-621 *6)) (-4 *6 (-823)) (-4 *4 (-356)) (-4 *5 (-769))
- (-5 *2
- (-2 (|:| |mval| (-665 *4)) (|:| |invmval| (-665 *4))
- (|:| |genIdeal| (-495 *4 *5 *6 *7))))
- (-5 *1 (-495 *4 *5 *6 *7)) (-4 *7 (-920 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-268)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-621 (-309 (-219)))) (-5 *3 (-219)) (-5 *2 (-112))
- (-5 *1 (-204)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1086)) (-5 *1 (-816 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-219)) (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-1216 *3)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-1 (-219) (-219) (-219)))
+ (-5 *4 (-1 (-219) (-219) (-219) (-219)))
+ (-5 *2 (-1 (-914 (-219)) (-219) (-219))) (-5 *1 (-673)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1009 (-549))) (-4 *1 (-295)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-534)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-876 *3)) (-4 *3 (-1067)))))
+ (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
+ (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-356)) (-4 *3 (-1018))
+ (-5 *1 (-1126 *3)))))
(((*1 *2 *1)
(-12
(-5 *2
(-621
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
(|:| |relerr| (-219)))))
(-5 *1 (-544))))
((*1 *2 *1)
- (-12 (-4 *1 (-590 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067))
+ (-12 (-4 *1 (-590 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066))
(-5 *2 (-621 *3))))
((*1 *2 *1)
(-12
(-5 *2
(-621
(-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
- (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
+ (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
(|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
(|:| |abserr| (-219)) (|:| |relerr| (-219)))))
(-5 *1 (-779)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1067)) (-4 *2 (-871 *5)) (-5 *1 (-668 *5 *2 *3 *4))
- (-4 *3 (-366 *2)) (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4337)))))))
-(((*1 *2 *1) (-12 (-4 *1 (-518)) (-5 *2 (-1087)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-4 *2 (-534)) (-5 *1 (-157 *2)))))
+ (-12 (-5 *3 (-892)) (-5 *1 (-1003 *2))
+ (-4 *2 (-13 (-1066) (-10 -8 (-15 * ($ $ $))))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-665 *1)) (-5 *4 (-1225 *1)) (-4 *1 (-617 *5))
+ (-4 *5 (-1018))
+ (-5 *2 (-2 (|:| -3697 (-665 *5)) (|:| |vec| (-1225 *5))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-665 *1)) (-4 *1 (-617 *4)) (-4 *4 (-1018))
+ (-5 *2 (-665 *4)))))
+(((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-621 (-1225 *4))) (-5 *1 (-359 *3 *4))
+ (-4 *3 (-360 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-4 *3 (-541))
+ (-5 *2 (-621 (-1225 *3))))))
(((*1 *1 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-5 *1 (-1226 *3)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3)
- (-12 (-5 *4 (-665 (-549))) (-5 *5 (-112)) (-5 *7 (-665 (-219)))
- (-5 *3 (-549)) (-5 *6 (-219)) (-5 *2 (-1006)) (-5 *1 (-731)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1148)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+ (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-5 *1 (-1225 *3)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1217 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1142))
+ (-14 *4 *2))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-621 (-876 *3))) (-4 *3 (-1066)) (-5 *1 (-875 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1066)) (-5 *2 (-1124)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1201 *3)) (-4 *3 (-1018)) (-5 *2 (-1138 *3)))))
(((*1 *1 *1 *1)
- (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1067)) (-4 *3 (-23))
+ (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1066)) (-4 *3 (-23))
(-14 *4 *3)))
((*1 *1 *2 *3 *1)
- (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1067)) (-4 *3 (-23))
+ (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1066)) (-4 *3 (-23))
(-14 *4 *3)))
((*1 *1 *1 *1)
- (-12 (-5 *1 (-651 *2)) (-4 *2 (-1018)) (-4 *2 (-1067)))))
-(((*1 *2 *1) (-12 (-5 *1 (-567 *2)) (-4 *2 (-356)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
- (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1006)))))
-(((*1 *2 *2)
- (-12
+ (-12 (-5 *1 (-651 *2)) (-4 *2 (-1018)) (-4 *2 (-1066)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-549)) (-4 *1 (-56 *4 *2 *5)) (-4 *4 (-1179))
+ (-4 *5 (-366 *4)) (-4 *2 (-366 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-549)) (-4 *1 (-1021 *4 *5 *6 *2 *7)) (-4 *6 (-1018))
+ (-4 *7 (-232 *4 *6)) (-4 *2 (-232 *5 *6)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -4114 *4)))
+ (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112))
(-5 *2
- (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219)))
- (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219))))
- (|:| |ub| (-621 (-816 (-219))))))
- (-5 *1 (-260)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1139 *1)) (-4 *1 (-983)))))
-(((*1 *2 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-821)) (-5 *1 (-296 *3)))))
-(((*1 *2 *3 *3 *3)
- (|partial| -12 (-4 *4 (-13 (-356) (-145) (-1009 (-549))))
- (-4 *5 (-1202 *4)) (-5 *2 (-621 (-400 *5))) (-5 *1 (-987 *4 *5))
- (-5 *3 (-400 *5)))))
-(((*1 *1 *1 *1) (-4 *1 (-295))) ((*1 *1 *1) (-4 *1 (-295))))
-(((*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3)
- (-12 (-5 *4 (-621 (-112))) (-5 *5 (-665 (-219)))
- (-5 *6 (-665 (-549))) (-5 *7 (-219)) (-5 *3 (-549)) (-5 *2 (-1006))
- (-5 *1 (-731)))))
+ (-2 (|:| |contp| (-549))
+ (|:| -3390 (-621 (-2 (|:| |irr| *3) (|:| -2129 (-549)))))))
+ (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112))
+ (-5 *2
+ (-2 (|:| |contp| (-549))
+ (|:| -3390 (-621 (-2 (|:| |irr| *3) (|:| -2129 (-549)))))))
+ (-5 *1 (-1190 *3)) (-4 *3 (-1201 (-549))))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1061 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-186))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1061 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-293))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1061 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-298)))))
-(((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
- (-4 *3 (-360 *4))))
- ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+ (-12 (-5 *3 (-1225 *4)) (-4 *4 (-1018)) (-4 *2 (-1201 *4))
+ (-5 *1 (-436 *4 *2))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-400 (-1138 (-309 *5)))) (-5 *3 (-1225 (-309 *5)))
+ (-5 *4 (-549)) (-4 *5 (-13 (-541) (-823))) (-5 *1 (-1096 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-360 *2)) (-4 *2 (-170)))))
+(((*1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1145)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
+ (-5 *2 (-621 *4)) (-5 *1 (-1094 *3 *4)) (-4 *3 (-1201 *4))))
+ ((*1 *2 *3 *3 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
+ (-5 *2 (-621 *3)) (-5 *1 (-1094 *4 *3)) (-4 *4 (-1201 *3)))))
+(((*1 *2 *3 *4 *4 *4 *5 *6 *7)
+ (|partial| -12 (-5 *5 (-1142))
+ (-5 *6
+ (-1
+ (-3
+ (-2 (|:| |mainpart| *4)
+ (|:| |limitedlogs|
+ (-621 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
+ "failed")
+ *4 (-621 *4)))
+ (-5 *7
+ (-1 (-3 (-2 (|:| -2677 *4) (|:| |coeff| *4)) "failed") *4 *4))
+ (-4 *4 (-13 (-1164) (-27) (-423 *8)))
+ (-4 *8 (-13 (-444) (-823) (-145) (-1009 *3) (-617 *3)))
+ (-5 *3 (-549)) (-5 *2 (-621 *4)) (-5 *1 (-985 *8 *4)))))
(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-834)) (-5 *1 (-1123 *3)) (-4 *3 (-1067))
- (-4 *3 (-1180)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-112)) (-5 *1 (-805)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-108))) (-5 *1 (-173)))))
-(((*1 *2 *3 *4 *4 *3)
- (|partial| -12 (-5 *4 (-592 *3))
- (-4 *3 (-13 (-423 *5) (-27) (-1165)))
- (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *2 (-2 (|:| -3440 *3) (|:| |coeff| *3)))
- (-5 *1 (-551 *5 *3 *6)) (-4 *6 (-1067)))))
-(((*1 *2 *2 *3 *3 *4)
- (-12 (-5 *4 (-747)) (-4 *3 (-541)) (-5 *1 (-940 *3 *2))
- (-4 *2 (-1202 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-268)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-112)) (-5 *1 (-114))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-295)) (-5 *3 (-1143)) (-5 *2 (-112))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-295)) (-5 *3 (-114)) (-5 *2 (-112))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1143)) (-5 *2 (-112)) (-5 *1 (-592 *4)) (-4 *4 (-823))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-592 *4)) (-4 *4 (-823))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1067)) (-5 *2 (-112)) (-5 *1 (-858 *5 *3 *4))
- (-4 *3 (-857 *5)) (-4 *4 (-594 (-863 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1124)) (-5 *2 (-208 (-493))) (-5 *1 (-811)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-549)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime"))
+ (-5 *1 (-411 *4)) (-4 *4 (-541)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-732)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
+ (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4))))
+ (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170))))
+ ((*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142))))
+ (-4 *6 (-769)) (-4 *7 (-920 *4 *6 *5))
+ (-5 *2
+ (-2 (|:| |sysok| (-112)) (|:| |z0| (-621 *7)) (|:| |n0| (-621 *7))))
+ (-5 *1 (-895 *4 *5 *6 *7)) (-5 *3 (-621 *7)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-880)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-411 (-1138 *7)))
+ (-5 *1 (-877 *4 *5 *6 *7)) (-5 *3 (-1138 *7))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-880)) (-4 *5 (-1201 *4)) (-5 *2 (-411 (-1138 *5)))
+ (-5 *1 (-878 *4 *5)) (-5 *3 (-1138 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1201 *5)) (-4 *5 (-356))
+ (-4 *7 (-1201 (-400 *6)))
+ (-5 *2 (-2 (|:| |answer| *3) (|:| -3890 *3)))
+ (-5 *1 (-547 *5 *6 *7 *3)) (-4 *3 (-335 *5 *6 *7))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *6)) (-4 *6 (-857 *5)) (-4 *5 (-1067))
- (-5 *2 (-112)) (-5 *1 (-858 *5 *6 *4)) (-4 *4 (-594 (-863 *5))))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *2 (-823))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-4 *6 (-1202 *9)) (-4 *7 (-769)) (-4 *8 (-823)) (-4 *9 (-300))
- (-4 *10 (-920 *9 *7 *8))
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1201 *5)) (-4 *5 (-356))
(-5 *2
- (-2 (|:| |deter| (-621 (-1139 *10)))
- (|:| |dterm|
- (-621 (-621 (-2 (|:| -2099 (-747)) (|:| |pcoef| *10)))))
- (|:| |nfacts| (-621 *6)) (|:| |nlead| (-621 *10))))
- (-5 *1 (-754 *6 *7 *8 *9 *10)) (-5 *3 (-1139 *10)) (-5 *4 (-621 *6))
- (-5 *5 (-621 *10)))))
+ (-2 (|:| |answer| (-400 *6)) (|:| -3890 (-400 *6))
+ (|:| |specpart| (-400 *6)) (|:| |polypart| *6)))
+ (-5 *1 (-548 *5 *6)) (-5 *3 (-400 *6)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-1142)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1142)) (-5 *6 (-621 (-592 *3)))
+ (-5 *5 (-592 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *7)))
+ (-4 *7 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-5 *2 (-2 (|:| -2677 *3) (|:| |coeff| *3)))
+ (-5 *1 (-542 *7 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *2 (-621 (-167 *4))) (-5 *1 (-153 *3 *4))
+ (-4 *3 (-1201 (-167 (-549)))) (-4 *4 (-13 (-356) (-821)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-621 (-167 *4)))
+ (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-621 (-167 *4)))
+ (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4))))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-892)) (-5 *1 (-1067 *3 *4)) (-14 *3 *2)
+ (-14 *4 *2))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1225 *3)) (-4 *3 (-1201 *4)) (-4 *4 (-1183))
+ (-4 *1 (-335 *4 *3 *5)) (-4 *5 (-1201 (-400 *3))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-665 *3)) (-4 *3 (-300)) (-5 *1 (-676 *3)))))
+(((*1 *2 *3 *4 *4 *2 *2 *2 *2)
+ (-12 (-5 *2 (-549))
+ (-5 *3
+ (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-747)) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-4 *6 (-769)) (-4 *4 (-920 *5 *6 *7)) (-4 *5 (-444)) (-4 *7 (-823))
+ (-5 *1 (-441 *5 *6 *7 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-342)) (-5 *2 (-929 (-1138 *4))) (-5 *1 (-350 *4))
+ (-5 *3 (-1138 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549))
+ (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) (-5 *2 (-1006))
+ (-5 *1 (-725)))))
+(((*1 *1 *2 *2) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-665 (-400 (-923 (-549)))))
+ (-5 *2 (-621 (-665 (-309 (-549))))) (-5 *1 (-1002)))))
(((*1 *2 *3 *3 *4)
(-12 (-5 *4 (-112)) (-4 *5 (-13 (-356) (-821)))
- (-5 *2 (-621 (-2 (|:| -4024 (-621 *3)) (|:| -3042 *5))))
- (-5 *1 (-179 *5 *3)) (-4 *3 (-1202 (-167 *5)))))
+ (-5 *2 (-621 (-2 (|:| -3390 (-621 *3)) (|:| -3040 *5))))
+ (-5 *1 (-179 *5 *3)) (-4 *3 (-1201 (-167 *5)))))
((*1 *2 *3 *3)
(-12 (-4 *4 (-13 (-356) (-821)))
- (-5 *2 (-621 (-2 (|:| -4024 (-621 *3)) (|:| -3042 *4))))
- (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7))))
+ (-5 *2 (-621 (-2 (|:| -3390 (-621 *3)) (|:| -3040 *4))))
+ (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1058 (-816 *3))) (-4 *3 (-13 (-1164) (-930) (-29 *5)))
+ (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-5 *2
+ (-3 (|:| |f1| (-816 *3)) (|:| |f2| (-621 (-816 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-213 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1058 (-816 *3))) (-5 *5 (-1124))
+ (-4 *3 (-13 (-1164) (-930) (-29 *6)))
+ (-4 *6 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-5 *2
+ (-3 (|:| |f1| (-816 *3)) (|:| |f2| (-621 (-816 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-213 *6 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 *3)) (-4 *3 (-1038 *5 *6 *7 *8)) (-4 *5 (-444))
- (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7))
- (-5 *2 (-112)) (-5 *1 (-959 *5 *6 *7 *8 *3))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1074 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7))))
+ (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1058 (-816 (-309 *5))))
+ (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-5 *2
+ (-3 (|:| |f1| (-816 (-309 *5))) (|:| |f2| (-621 (-816 (-309 *5))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-214 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-400 (-923 *6))) (-5 *4 (-1058 (-816 (-309 *6))))
+ (-5 *5 (-1124))
+ (-4 *6 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-5 *2
+ (-3 (|:| |f1| (-816 (-309 *6))) (|:| |f2| (-621 (-816 (-309 *6))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-214 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 *3)) (-4 *3 (-1038 *5 *6 *7 *8)) (-4 *5 (-444))
- (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7))
- (-5 *2 (-112)) (-5 *1 (-1074 *5 *6 *7 *8 *3)))))
-(((*1 *2 *1 *1 *3 *4)
- (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6))
- (-4 *5 (-13 (-1067) (-34))) (-4 *6 (-13 (-1067) (-34)))
- (-5 *2 (-112)) (-5 *1 (-1107 *5 *6)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-400 (-549))) (-5 *1 (-576 *3)) (-4 *3 (-38 *2))
- (-4 *3 (-1018)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-549)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-747)) (-4 *5 (-170))))
- ((*1 *1 *1 *2 *1 *2)
- (-12 (-5 *2 (-549)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-747)) (-4 *5 (-170))))
- ((*1 *2 *2 *3)
- (-12
+ (-12 (-5 *4 (-1058 (-816 (-400 (-923 *5))))) (-5 *3 (-400 (-923 *5)))
+ (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
(-5 *2
- (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4)
- (-241 *4 (-400 (-549)))))
- (-5 *3 (-621 (-836 *4))) (-14 *4 (-621 (-1143))) (-14 *5 (-747))
- (-5 *1 (-496 *4 *5)))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
- (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN))))
- (-5 *2 (-1006)) (-5 *1 (-725)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-114)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018)) (-4 *2 (-356))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-356)) (-5 *1 (-635 *4 *2))
- (-4 *2 (-632 *4)))))
-(((*1 *1 *2 *2) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-621 (-1143)))
- (-5 *2 (-621 (-621 (-372)))) (-5 *1 (-994)) (-5 *5 (-372))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1015 *4 *5)) (-4 *4 (-13 (-821) (-300) (-145) (-993)))
- (-14 *5 (-621 (-1143))) (-5 *2 (-621 (-621 (-995 (-400 *4)))))
- (-5 *1 (-1252 *4 *5 *6)) (-14 *6 (-621 (-1143)))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-821) (-300) (-145) (-993)))
- (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1252 *5 *6 *7))
- (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-821) (-300) (-145) (-993)))
- (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1252 *5 *6 *7))
- (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143)))))
+ (-3 (|:| |f1| (-816 (-309 *5))) (|:| |f2| (-621 (-816 (-309 *5))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-214 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1058 (-816 (-400 (-923 *6))))) (-5 *5 (-1124))
+ (-5 *3 (-400 (-923 *6)))
+ (-4 *6 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-5 *2
+ (-3 (|:| |f1| (-816 (-309 *6))) (|:| |f2| (-621 (-816 (-309 *6))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-214 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-821) (-300) (-145) (-993)))
- (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1252 *5 *6 *7))
- (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143)))))
+ (-12 (-5 *4 (-1142))
+ (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-5 *2 (-3 *3 (-621 *3))) (-5 *1 (-421 *5 *3))
+ (-4 *3 (-13 (-1164) (-930) (-29 *5)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-466 *3 *4 *5))
+ (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3)))
+ ((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-309 (-372))) (-5 *4 (-1060 (-816 (-372))))
+ (-5 *5 (-372)) (-5 *6 (-1030)) (-5 *2 (-1006)) (-5 *1 (-550))))
+ ((*1 *2 *3) (-12 (-5 *3 (-745)) (-5 *2 (-1006)) (-5 *1 (-550))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-309 (-372))) (-5 *4 (-1060 (-816 (-372))))
+ (-5 *5 (-372)) (-5 *2 (-1006)) (-5 *1 (-550))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-309 (-372))) (-5 *4 (-1060 (-816 (-372))))
+ (-5 *5 (-372)) (-5 *2 (-1006)) (-5 *1 (-550))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-309 (-372))) (-5 *4 (-1060 (-816 (-372))))
+ (-5 *2 (-1006)) (-5 *1 (-550))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-1060 (-816 (-372)))))
+ (-5 *2 (-1006)) (-5 *1 (-550))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-1060 (-816 (-372)))))
+ (-5 *5 (-372)) (-5 *2 (-1006)) (-5 *1 (-550))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-1060 (-816 (-372)))))
+ (-5 *5 (-372)) (-5 *2 (-1006)) (-5 *1 (-550))))
+ ((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-309 (-372))) (-5 *4 (-621 (-1060 (-816 (-372)))))
+ (-5 *5 (-372)) (-5 *6 (-1030)) (-5 *2 (-1006)) (-5 *1 (-550))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-309 (-372))) (-5 *4 (-1058 (-816 (-372))))
+ (-5 *5 (-1124)) (-5 *2 (-1006)) (-5 *1 (-550))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-309 (-372))) (-5 *4 (-1058 (-816 (-372))))
+ (-5 *5 (-1142)) (-5 *2 (-1006)) (-5 *1 (-550))))
((*1 *2 *3)
- (-12 (-5 *3 (-621 (-923 *4)))
- (-4 *4 (-13 (-821) (-300) (-145) (-993)))
- (-5 *2 (-621 (-621 (-995 (-400 *4))))) (-5 *1 (-1252 *4 *5 *6))
- (-14 *5 (-621 (-1143))) (-14 *6 (-621 (-1143))))))
-(((*1 *1) (-5 *1 (-139))) ((*1 *1 *1) (-5 *1 (-142)))
- ((*1 *1 *1) (-4 *1 (-1111))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-747)) (-5 *2 (-1139 *4)) (-5 *1 (-519 *4))
- (-4 *4 (-342)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-164 *3)) (-4 *3 (-170)) (-4 *3 (-534))
- (-5 *2 (-400 (-549)))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-400 (-549))) (-5 *1 (-411 *3)) (-4 *3 (-534))
- (-4 *3 (-541))))
- ((*1 *2 *1) (|partial| -12 (-4 *1 (-534)) (-5 *2 (-400 (-549)))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-773 *3)) (-4 *3 (-170)) (-4 *3 (-534))
- (-5 *2 (-400 (-549)))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-400 (-549))) (-5 *1 (-809 *3)) (-4 *3 (-534))
- (-4 *3 (-1067))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-400 (-549))) (-5 *1 (-816 *3)) (-4 *3 (-534))
- (-4 *3 (-1067))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-968 *3)) (-4 *3 (-170)) (-4 *3 (-534))
- (-5 *2 (-400 (-549)))))
+ (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-549)))) (-4 *5 (-1201 *4))
+ (-5 *2 (-567 (-400 *5))) (-5 *1 (-553 *4 *5)) (-5 *3 (-400 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1142)) (-4 *5 (-145))
+ (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549))))
+ (-5 *2 (-3 (-309 *5) (-621 (-309 *5)))) (-5 *1 (-570 *5))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-717 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-823))
+ (-4 *3 (-38 (-400 (-549))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1142)) (-5 *1 (-923 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-4 *3 (-1018))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-4 *2 (-823))
+ (-5 *1 (-1092 *3 *2 *4)) (-4 *4 (-920 *3 (-521 *2) *2))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018))
+ (-5 *1 (-1126 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1133 *3 *4 *5))
+ (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1139 *3 *4 *5))
+ (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1140 *3 *4 *5))
+ (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3)))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *1 (-1173 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-4 *3 (-1018))))
+ ((*1 *1 *1 *2)
+ (-1536
+ (-12 (-5 *2 (-1142)) (-4 *1 (-1185 *3)) (-4 *3 (-1018))
+ (-12 (-4 *3 (-29 (-549))) (-4 *3 (-930)) (-4 *3 (-1164))
+ (-4 *3 (-38 (-400 (-549))))))
+ (-12 (-5 *2 (-1142)) (-4 *1 (-1185 *3)) (-4 *3 (-1018))
+ (-12 (|has| *3 (-15 -2270 ((-621 *2) *3)))
+ (|has| *3 (-15 -3405 (*3 *3 *2))) (-4 *3 (-38 (-400 (-549))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1185 *2)) (-4 *2 (-1018)) (-4 *2 (-38 (-400 (-549))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1189 *3 *4 *5))
+ (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1201 *2)) (-4 *2 (-1018)) (-4 *2 (-38 (-400 (-549))))))
+ ((*1 *1 *1 *2)
+ (-1536
+ (-12 (-5 *2 (-1142)) (-4 *1 (-1206 *3)) (-4 *3 (-1018))
+ (-12 (-4 *3 (-29 (-549))) (-4 *3 (-930)) (-4 *3 (-1164))
+ (-4 *3 (-38 (-400 (-549))))))
+ (-12 (-5 *2 (-1142)) (-4 *1 (-1206 *3)) (-4 *3 (-1018))
+ (-12 (|has| *3 (-15 -2270 ((-621 *2) *3)))
+ (|has| *3 (-15 -3405 (*3 *3 *2))) (-4 *3 (-38 (-400 (-549))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1206 *2)) (-4 *2 (-1018)) (-4 *2 (-38 (-400 (-549))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1210 *3 *4 *5))
+ (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-1536
+ (-12 (-5 *2 (-1142)) (-4 *1 (-1216 *3)) (-4 *3 (-1018))
+ (-12 (-4 *3 (-29 (-549))) (-4 *3 (-930)) (-4 *3 (-1164))
+ (-4 *3 (-38 (-400 (-549))))))
+ (-12 (-5 *2 (-1142)) (-4 *1 (-1216 *3)) (-4 *3 (-1018))
+ (-12 (|has| *3 (-15 -2270 ((-621 *2) *3)))
+ (|has| *3 (-15 -3405 (*3 *3 *2))) (-4 *3 (-38 (-400 (-549))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1216 *2)) (-4 *2 (-1018)) (-4 *2 (-38 (-400 (-549))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1221 *4)) (-14 *4 (-1142)) (-5 *1 (-1217 *3 *4 *5))
+ (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)) (-14 *5 *3))))
+(((*1 *2 *3) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-546)) (-5 *3 (-549))))
((*1 *2 *3)
- (|partial| -12 (-5 *2 (-400 (-549))) (-5 *1 (-979 *3))
- (-4 *3 (-1009 *2)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-621 (-758 *3))) (-5 *1 (-758 *3)) (-4 *3 (-541))
- (-4 *3 (-1018)))))
+ (-12 (-5 *2 (-1138 (-400 (-549)))) (-5 *1 (-913)) (-5 *3 (-549)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-844 (-937 *3) (-937 *3))) (-5 *1 (-937 *3))
- (-4 *3 (-938)))))
+ (-12 (-4 *3 (-1018)) (-5 *2 (-1225 *3)) (-5 *1 (-689 *3 *4))
+ (-4 *4 (-1201 *3)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-541)) (-4 *2 (-1018))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-541)) (-5 *1 (-940 *3 *2)) (-4 *2 (-1201 *3))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)) (-4 *2 (-541))))
+ ((*1 *2 *3 *3 *1)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *3 (-1032 *4 *5 *6))
+ (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *1))))
+ (-4 *1 (-1038 *4 *5 *6 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-541))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -4114 *4)))
+ (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-621 (-52))) (-5 *2 (-1230)) (-5 *1 (-835)))))
(((*1 *1 *1 *1) (-5 *1 (-834))))
-(((*1 *2 *3) (-12 (-5 *3 (-621 (-52))) (-5 *2 (-1231)) (-5 *1 (-835)))))
-(((*1 *2 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-1125)) (-5 *5 (-665 (-219)))
- (-5 *2 (-1006)) (-5 *1 (-724)))))
-(((*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| (-1123 (-219)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -1372
- (-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 (-1006)) (-5 *1 (-298)))))
+(((*1 *2 *1) (-12 (-4 *1 (-418 *3)) (-4 *3 (-1066)) (-5 *2 (-747)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372)))
- (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1142))))
- (-5 *1 (-1142)))))
-(((*1 *1 *1) (-12 (-5 *1 (-937 *2)) (-4 *2 (-938)))))
+ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372)))
+ (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1141))))
+ (-5 *1 (-1141)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-52)) (-5 *1 (-1157)))))
+(((*1 *2 *3 *4 *3 *3)
+ (-12 (-5 *3 (-287 *6)) (-5 *4 (-114)) (-4 *6 (-423 *5))
+ (-4 *5 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52))
+ (-5 *1 (-310 *5 *6))))
+ ((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-287 *7)) (-5 *4 (-114)) (-5 *5 (-621 *7))
+ (-4 *7 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525))))
+ (-5 *2 (-52)) (-5 *1 (-310 *6 *7))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-621 (-287 *7))) (-5 *4 (-621 (-114))) (-5 *5 (-287 *7))
+ (-4 *7 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525))))
+ (-5 *2 (-52)) (-5 *1 (-310 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-621 (-287 *8))) (-5 *4 (-621 (-114))) (-5 *5 (-287 *8))
+ (-5 *6 (-621 *8)) (-4 *8 (-423 *7))
+ (-4 *7 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52))
+ (-5 *1 (-310 *7 *8))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-621 *7)) (-5 *4 (-621 (-114))) (-5 *5 (-287 *7))
+ (-4 *7 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525))))
+ (-5 *2 (-52)) (-5 *1 (-310 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 (-114))) (-5 *6 (-621 (-287 *8)))
+ (-4 *8 (-423 *7)) (-5 *5 (-287 *8))
+ (-4 *7 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52))
+ (-5 *1 (-310 *7 *8))))
+ ((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-287 *5)) (-5 *4 (-114)) (-4 *5 (-423 *6))
+ (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52))
+ (-5 *1 (-310 *6 *5))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-114)) (-5 *5 (-287 *3)) (-4 *3 (-423 *6))
+ (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52))
+ (-5 *1 (-310 *6 *3))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-114)) (-5 *5 (-287 *3)) (-4 *3 (-423 *6))
+ (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52))
+ (-5 *1 (-310 *6 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-114)) (-5 *5 (-287 *3)) (-5 *6 (-621 *3))
+ (-4 *3 (-423 *7)) (-4 *7 (-13 (-823) (-541) (-594 (-525))))
+ (-5 *2 (-52)) (-5 *1 (-310 *7 *3)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1106 *3 *4)) (-4 *3 (-13 (-1066) (-34)))
+ (-4 *4 (-13 (-1066) (-34))))))
(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| -1353 *3) (|:| |coef1| (-758 *3)) (|:| |coef2| (-758 *3))))
- (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))))
-(((*1 *1 *1 *1) (-5 *1 (-834))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1131 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-892)) (-5 *1 (-762)))))
-(((*1 *1) (-5 *1 (-430))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1226 *4)) (-4 *4 (-617 (-549))) (-5 *2 (-112))
- (-5 *1 (-1253 *4)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-625 *3 *4 *5)) (-4 *3 (-1066))
+ (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-621 (-287 *4))) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823))
+ (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-863 *4)) (-4 *4 (-1067)) (-5 *1 (-860 *4 *3))
- (-4 *3 (-1067)))))
+ (|partial| -12 (-5 *2 (-1138 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2717 (-549)))))
+ (-5 *1 (-354 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2717 (-747)))))
+ (-5 *1 (-379 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-2 (|:| -2119 *3) (|:| -1714 (-549)))))
+ (-5 *1 (-411 *3)) (-4 *3 (-541))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2717 (-747)))))
+ (-5 *1 (-795 *3)) (-4 *3 (-823)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-621 *7)) (-5 *5 (-621 (-621 *8))) (-4 *7 (-823))
+ (-4 *8 (-300)) (-4 *6 (-769)) (-4 *9 (-920 *8 *6 *7))
+ (-5 *2
+ (-2 (|:| |unitPart| *9)
+ (|:| |suPart|
+ (-621 (-2 (|:| -2119 (-1138 *9)) (|:| -1714 (-549)))))))
+ (-5 *1 (-719 *6 *7 *8 *9)) (-5 *3 (-1138 *9)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *5 *5))
+ (-4 *5 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
+ (-5 *2
+ (-2 (|:| |solns| (-621 *5))
+ (|:| |maps| (-621 (-2 (|:| |arg| *5) (|:| |res| *5))))))
+ (-5 *1 (-1094 *3 *5)) (-4 *3 (-1201 *5)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372)))
- (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1142))))
- (-5 *1 (-1142)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-549)) (-5 *2 (-1231)) (-5 *1 (-1228))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1125)) (-5 *1 (-687)))))
-(((*1 *2 *2 *3) (-12 (-5 *2 (-549)) (-5 *3 (-747)) (-5 *1 (-546)))))
-(((*1 *1 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-21)) (-4 *2 (-1180)))))
+ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372)))
+ (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1141))))
+ (-5 *1 (-1141)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
+ (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-5 *2 (-112))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
+ (-5 *1 (-1073 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
+ (-5 *2
+ (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549))
+ (|:| |success| (-112))))
+ (-5 *1 (-765)) (-5 *5 (-549)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-769))
+ (-4 *3 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $))))) (-4 *5 (-541))
+ (-5 *1 (-709 *4 *3 *5 *2)) (-4 *2 (-920 (-400 (-923 *5)) *4 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *4 (-1018)) (-4 *5 (-769))
+ (-4 *3
+ (-13 (-823)
+ (-10 -8 (-15 -2843 ((-1142) $))
+ (-15 -3009 ((-3 $ "failed") (-1142))))))
+ (-5 *1 (-955 *4 *5 *3 *2)) (-4 *2 (-920 (-923 *4) *5 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-621 *6))
+ (-4 *6
+ (-13 (-823)
+ (-10 -8 (-15 -2843 ((-1142) $))
+ (-15 -3009 ((-3 $ "failed") (-1142))))))
+ (-4 *4 (-1018)) (-4 *5 (-769)) (-5 *1 (-955 *4 *5 *6 *2))
+ (-4 *2 (-920 (-923 *4) *5 *6)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-541)) (-5 *2 (-929 *3)) (-5 *1 (-1129 *4 *3))
+ (-4 *3 (-1201 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1125)) (-5 *2 (-621 (-1148))) (-5 *1 (-1103)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+ (-12 (-5 *3 (-1124)) (-5 *2 (-621 (-1147))) (-5 *1 (-1102)))))
(((*1 *2 *3)
- (-12 (-4 *2 (-1202 *4)) (-5 *1 (-785 *4 *2 *3 *5))
+ (-12 (-4 *2 (-1201 *4)) (-5 *1 (-785 *4 *2 *3 *5))
(-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *3 (-632 *2))
(-4 *5 (-632 (-400 *2))))))
-(((*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-525)))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-729)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *3))
+ (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-621 *3)) (-4 *3 (-1032 *4 *5 *6)) (-4 *4 (-541))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-948 *4 *5 *6 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-621 *7) (-621 *7))) (-5 *2 (-621 *7))
+ (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769))
+ (-4 *6 (-823)) (-5 *1 (-948 *4 *5 *6 *7)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-724)))))
(((*1 *2 *1)
(-12
(-5 *2
@@ -5175,164 +5503,166 @@
(|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save")
(|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")))
(-5 *1 (-323)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *1) (-5 *1 (-155))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1071)) (-5 *3 (-750)) (-5 *1 (-52)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1070)) (-5 *3 (-750)) (-5 *1 (-52)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372)))
- (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1142))))
- (-5 *1 (-1142)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1180)) (-5 *1 (-368 *4 *2))
- (-4 *2 (-13 (-366 *4) (-10 -7 (-6 -4338)))))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-747)) (-4 *4 (-300)) (-4 *6 (-1202 *4))
- (-5 *2 (-1226 (-621 *6))) (-5 *1 (-447 *4 *6)) (-5 *5 (-621 *6)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1139 *3)) (-4 *3 (-1018)) (-4 *1 (-1202 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-2 (|:| |deg| (-747)) (|:| -1968 *5))))
- (-4 *5 (-1202 *4)) (-4 *4 (-342)) (-5 *2 (-621 *5))
- (-5 *1 (-210 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-2 (|:| -2121 *5) (|:| -3701 (-549)))))
- (-5 *4 (-549)) (-4 *5 (-1202 *4)) (-5 *2 (-621 *5))
- (-5 *1 (-672 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-1131 3 *3))))
- ((*1 *1) (-12 (-5 *1 (-1131 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1100 (-219))) (-5 *1 (-1228))))
- ((*1 *2 *1) (-12 (-5 *2 (-1100 (-219))) (-5 *1 (-1228)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1139 (-549))) (-5 *1 (-913)) (-5 *3 (-549))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-300)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3))
- (-5 *1 (-1091 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-112)) (-5 *1 (-114)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-356)) (-4 *5 (-541))
+ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372)))
+ (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1141))))
+ (-5 *1 (-1141)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834))))
+ ((*1 *1 *1 *1) (-5 *1 (-834))))
+(((*1 *1)
+ (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-541)) (-4 *2 (-170)))))
+(((*1 *1 *1 *1) (-5 *1 (-160)))
+ ((*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-160)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-914 (-219)) (-219) (-219)))
+ (-5 *3 (-1 (-219) (-219) (-219) (-219))) (-5 *1 (-248)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-747)) (-4 *5 (-541))
(-5 *2
- (-2 (|:| |minor| (-621 (-892))) (|:| -2652 *3)
- (|:| |minors| (-621 (-621 (-892)))) (|:| |ops| (-621 *3))))
- (-5 *1 (-89 *5 *3)) (-5 *4 (-892)) (-4 *3 (-632 *5)))))
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-940 *5 *3)) (-4 *3 (-1201 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-800)))))
+(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-675))))
+ ((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-675)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *4 (-592 *3)) (-5 *5 (-1 (-1138 *3) (-1138 *3)))
+ (-4 *3 (-13 (-27) (-423 *6))) (-4 *6 (-13 (-823) (-541)))
+ (-5 *2 (-567 *3)) (-5 *1 (-536 *6 *3)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170))
+ (-5 *2 (-665 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-665 *3)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372)))
- (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1142))))
- (-5 *1 (-1142)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-621 (-1143))) (-5 *3 (-52)) (-5 *1 (-863 *4))
- (-4 *4 (-1067)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1143))
- (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
- (-5 *1 (-780 *4 *2)) (-4 *2 (-13 (-29 *4) (-1165) (-930))))))
-(((*1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1229))))
- ((*1 *2 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1229)))))
-(((*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-823)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-973))
- (-4 *2 (-1018)))))
-(((*1 *2 *2 *2 *2 *3 *3 *4)
- (|partial| -12 (-5 *3 (-592 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1143)))
- (-4 *2 (-13 (-423 *5) (-27) (-1165)))
- (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *1 (-551 *5 *2 *6)) (-4 *6 (-1067)))))
+ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372)))
+ (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1141))))
+ (-5 *1 (-1141)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1018)) (-4 *5 (-1201 *4)) (-5 *2 (-1 *6 (-621 *6)))
+ (-5 *1 (-1219 *4 *5 *3 *6)) (-4 *3 (-632 *5)) (-4 *6 (-1216 *4)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)) (-4 *2 (-444)))))
(((*1 *2 *3 *1)
- (-12 (-5 *3 (-876 *4)) (-4 *4 (-1067)) (-5 *2 (-621 (-747)))
- (-5 *1 (-875 *4)))))
-(((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1125)) (-4 *1 (-382)))))
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4336)) (-4 *1 (-481 *4))
+ (-4 *4 (-1179)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *2 (-1066)) (-5 *1 (-1156 *3 *2)) (-4 *3 (-1066)))))
+(((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1124)) (-4 *1 (-382)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1225 (-309 (-219)))) (-5 *2 (-1225 (-309 (-372))))
+ (-5 *1 (-298)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-724)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1142)) (-4 *5 (-1183)) (-4 *6 (-1201 *5))
+ (-4 *7 (-1201 (-400 *6))) (-5 *2 (-621 (-923 *5)))
+ (-5 *1 (-334 *4 *5 *6 *7)) (-4 *4 (-335 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1142)) (-4 *1 (-335 *4 *5 *6)) (-4 *4 (-1183))
+ (-4 *5 (-1201 *4)) (-4 *6 (-1201 (-400 *5))) (-4 *4 (-356))
+ (-5 *2 (-621 (-923 *4))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-665 *2)) (-4 *4 (-1201 *2))
+ (-4 *2 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $)))))
+ (-5 *1 (-490 *2 *4 *5)) (-4 *5 (-402 *2 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1089 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2))
+ (-4 *5 (-232 *3 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
(((*1 *2)
- (-12 (-5 *2 (-1226 (-1068 *3 *4))) (-5 *1 (-1068 *3 *4))
- (-14 *3 (-892)) (-14 *4 (-892)))))
-(((*1 *1 *2 *2 *3 *1)
- (-12 (-5 *2 (-1143)) (-5 *3 (-1071)) (-5 *1 (-284)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4))))
- (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+ (-12 (-4 *2 (-13 (-423 *3) (-973))) (-5 *1 (-269 *3 *2))
+ (-4 *3 (-13 (-823) (-541))))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-400 (-549))) (-5 *1 (-995 *3))
+ (-4 *3 (-13 (-821) (-356) (-993)))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3))
+ (-4 *3 (-1201 *2))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-4 *1 (-1035 *2 *3)) (-4 *2 (-13 (-821) (-356)))
+ (-4 *3 (-1201 *2)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
- (-5 *1 (-948 *4 *5 *6 *7)))))
+ (-12 (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112)) (-5 *1 (-269 *4 *3))
+ (-4 *3 (-13 (-423 *4) (-973))))))
+(((*1 *2) (-12 (-4 *3 (-170)) (-5 *2 (-1225 *1)) (-4 *1 (-360 *3)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-592 *4)) (-5 *1 (-591 *3 *4)) (-4 *3 (-823))
- (-4 *4 (-823)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-356)) (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3)))
- (-5 *1 (-743 *3 *4)) (-4 *3 (-685 *4))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-356)) (-4 *3 (-1018))
- (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-825 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-98 *5)) (-4 *5 (-356)) (-4 *5 (-1018))
- (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3))) (-5 *1 (-826 *5 *3))
- (-4 *3 (-825 *5)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-444))
- (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *1 (-948 *3 *4 *5 *6)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *6 (-892)) (-4 *5 (-300)) (-4 *3 (-1202 *5))
- (-5 *2 (-2 (|:| |plist| (-621 *3)) (|:| |modulo| *5)))
- (-5 *1 (-452 *5 *3)) (-5 *4 (-621 *3)))))
+ (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-549))) (-5 *1 (-1016)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-319 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768))
- (-5 *2 (-747))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1067))
- (-5 *2 (-747))))
+ (-12
+ (-5 *2
+ (-621
+ (-2
+ (|:| -3336
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
+ (|:| |relerr| (-219))))
+ (|:| -1791
+ (-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| (-1122 (-219)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -2811
+ (-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 (-544))))
((*1 *2 *1)
- (-12 (-5 *2 (-747)) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018))
- (-4 *4 (-703)))))
-(((*1 *1)
- (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747))
- (-4 *4 (-170)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1143)) (-4 *5 (-594 (-863 (-549))))
- (-4 *5 (-857 (-549)))
- (-4 *5 (-13 (-823) (-1009 (-549)) (-444) (-617 (-549))))
- (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
- (-5 *1 (-552 *5 *3)) (-4 *3 (-607))
- (-4 *3 (-13 (-27) (-1165) (-423 *5)))))
- ((*1 *2 *2 *3 *4 *4)
- (|partial| -12 (-5 *3 (-1143)) (-5 *4 (-816 *2)) (-4 *2 (-1106))
- (-4 *2 (-13 (-27) (-1165) (-423 *5)))
- (-4 *5 (-594 (-863 (-549)))) (-4 *5 (-857 (-549)))
- (-4 *5 (-13 (-823) (-1009 (-549)) (-444) (-617 (-549))))
- (-5 *1 (-552 *5 *2)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834))))
- ((*1 *1 *1 *1) (-5 *1 (-834))))
+ (-12 (-4 *1 (-584 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1179))
+ (-5 *2 (-621 *4)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-342)) (-5 *2 (-411 (-1139 (-1139 *4))))
- (-5 *1 (-1178 *4)) (-5 *3 (-1139 (-1139 *4))))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-923 (-549)))) (-5 *1 (-430))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1143)) (-5 *4 (-665 (-219))) (-5 *2 (-1071))
- (-5 *1 (-736))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1143)) (-5 *4 (-665 (-549))) (-5 *2 (-1071))
- (-5 *1 (-736)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
+ (|:| |relerr| (-219))))
+ (-5 *2 (-112)) (-5 *1 (-293)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-601 *4 *5))
+ (-5 *3
+ (-1 (-2 (|:| |ans| *4) (|:| -3847 *4) (|:| |sol?| (-112)))
+ (-549) *4))
+ (-4 *4 (-356)) (-4 *5 (-1201 *4)) (-5 *1 (-559 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-112)) (-5 *1 (-805)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-892)) (-5 *4 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1226)))))
+(((*1 *1 *1) (-4 *1 (-1110))))
(((*1 *2 *1 *3 *3 *2)
- (-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *2 (-1180))
+ (-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *2 (-1179))
(-4 *4 (-366 *2)) (-4 *5 (-366 *2))))
((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *4 (-366 *2))
- (-4 *5 (-366 *2)) (-4 *2 (-1180))))
+ (-4 *5 (-366 *2)) (-4 *2 (-1179))))
((*1 *1 *1 *2)
- (-12 (-5 *2 "right") (-4 *1 (-119 *3)) (-4 *3 (-1180))))
- ((*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-119 *3)) (-4 *3 (-1180))))
+ (-12 (-5 *2 "right") (-4 *1 (-119 *3)) (-4 *3 (-1179))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-119 *3)) (-4 *3 (-1179))))
((*1 *2 *1 *3)
(-12 (-5 *3 (-621 (-549))) (-4 *2 (-170)) (-5 *1 (-135 *4 *5 *2))
(-14 *4 (-549)) (-14 *5 (-747))))
@@ -5352,32 +5682,32 @@
(-12 (-4 *2 (-170)) (-5 *1 (-135 *3 *4 *2)) (-14 *3 (-549))
(-14 *4 (-747))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-747)) (-4 *2 (-1067)) (-5 *1 (-207 *4 *2))
+ (-12 (-5 *3 (-747)) (-4 *2 (-1066)) (-5 *1 (-207 *4 *2))
(-14 *4 (-892))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-1143)) (-5 *2 (-239 (-1125))) (-5 *1 (-208 *4))
+ (-12 (-5 *3 (-1142)) (-5 *2 (-239 (-1124))) (-5 *1 (-208 *4))
(-4 *4
(-13 (-823)
- (-10 -8 (-15 -3341 ((-1125) $ *3)) (-15 -2699 ((-1231) $))
- (-15 -2684 ((-1231) $)))))))
+ (-10 -8 (-15 -3339 ((-1124) $ *3)) (-15 -2697 ((-1230) $))
+ (-15 -1674 ((-1230) $)))))))
((*1 *1 *1 *2)
(-12 (-5 *2 (-960)) (-5 *1 (-208 *3))
(-4 *3
(-13 (-823)
- (-10 -8 (-15 -3341 ((-1125) $ (-1143))) (-15 -2699 ((-1231) $))
- (-15 -2684 ((-1231) $)))))))
+ (-10 -8 (-15 -3339 ((-1124) $ (-1142))) (-15 -2697 ((-1230) $))
+ (-15 -1674 ((-1230) $)))))))
((*1 *2 *1 *3)
(-12 (-5 *3 "count") (-5 *2 (-747)) (-5 *1 (-239 *4)) (-4 *4 (-823))))
((*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-239 *3)) (-4 *3 (-823))))
((*1 *1 *1 *2)
(-12 (-5 *2 "unique") (-5 *1 (-239 *3)) (-4 *3 (-823))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-279 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1180))))
+ (-12 (-4 *1 (-279 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1179))))
((*1 *2 *1 *3 *2)
- (-12 (-4 *1 (-281 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1180))))
+ (-12 (-4 *1 (-281 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1179))))
((*1 *2 *1 *2)
(-12 (-4 *3 (-170)) (-5 *1 (-282 *3 *2 *4 *5 *6 *7))
- (-4 *2 (-1202 *3)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4))
+ (-4 *2 (-1201 *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))))
((*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-621 *1)) (-4 *1 (-295))))
@@ -5386,32 +5716,32 @@
((*1 *1 *2 *1 *1) (-12 (-4 *1 (-295)) (-5 *2 (-114))))
((*1 *1 *2 *1) (-12 (-4 *1 (-295)) (-5 *2 (-114))))
((*1 *2 *1 *2 *2)
- (-12 (-4 *1 (-335 *2 *3 *4)) (-4 *2 (-1184)) (-4 *3 (-1202 *2))
- (-4 *4 (-1202 (-400 *3)))))
+ (-12 (-4 *1 (-335 *2 *3 *4)) (-4 *2 (-1183)) (-4 *3 (-1201 *2))
+ (-4 *4 (-1201 (-400 *3)))))
((*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-4 *1 (-410 *2)) (-4 *2 (-170))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-1125)) (-5 *1 (-493))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-52)) (-5 *1 (-610))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-1124)) (-5 *1 (-493))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-52)) (-5 *1 (-610))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1193 (-549))) (-4 *1 (-627 *3)) (-4 *3 (-1180))))
+ (-12 (-5 *2 (-1192 (-549))) (-4 *1 (-627 *3)) (-4 *3 (-1179))))
((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-747)) (-5 *1 (-651 *2)) (-4 *2 (-1067))))
+ (-12 (-5 *3 (-747)) (-5 *1 (-651 *2)) (-4 *2 (-1066))))
((*1 *1 *1 *2 *2)
(-12 (-5 *2 (-621 (-549))) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018))
(-4 *4 (-366 *3)) (-4 *5 (-366 *3))))
((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834))))
((*1 *1 *2 *3)
(-12 (-5 *2 (-114)) (-5 *3 (-621 (-863 *4))) (-5 *1 (-863 *4))
- (-4 *4 (-1067))))
- ((*1 *2 *1 *2) (-12 (-4 *1 (-874 *2)) (-4 *2 (-1067))))
+ (-4 *4 (-1066))))
+ ((*1 *2 *1 *2) (-12 (-4 *1 (-874 *2)) (-4 *2 (-1066))))
((*1 *2 *1 *3)
(-12 (-5 *3 (-747)) (-5 *2 (-876 *4)) (-5 *1 (-875 *4))
- (-4 *4 (-1067))))
+ (-4 *4 (-1066))))
((*1 *2 *1 *3)
(-12 (-5 *3 (-234 *4 *2)) (-14 *4 (-892)) (-4 *2 (-356))
(-5 *1 (-964 *4 *2))))
((*1 *2 *1 *3)
- (-12 (-5 *3 "value") (-4 *1 (-981 *2)) (-4 *2 (-1180))))
- ((*1 *2 *1) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1180))))
+ (-12 (-5 *3 "value") (-4 *1 (-981 *2)) (-4 *2 (-1179))))
+ ((*1 *2 *1) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1179))))
((*1 *2 *1 *3 *3 *2)
(-12 (-5 *3 (-549)) (-4 *1 (-1021 *4 *5 *2 *6 *7)) (-4 *2 (-1018))
(-4 *6 (-232 *5 *2)) (-4 *7 (-232 *4 *2))))
@@ -5419,151 +5749,191 @@
(-12 (-5 *3 (-549)) (-4 *1 (-1021 *4 *5 *2 *6 *7))
(-4 *6 (-232 *5 *2)) (-4 *7 (-232 *4 *2)) (-4 *2 (-1018))))
((*1 *2 *1 *2 *3)
- (-12 (-5 *3 (-892)) (-4 *4 (-1067))
+ (-12 (-5 *3 (-892)) (-4 *4 (-1066))
(-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4))))
(-5 *1 (-1042 *4 *5 *2))
(-4 *2 (-13 (-423 *5) (-857 *4) (-594 (-863 *4))))))
((*1 *2 *1 *2 *3)
- (-12 (-5 *3 (-892)) (-4 *4 (-1067))
+ (-12 (-5 *3 (-892)) (-4 *4 (-1066))
(-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4))))
(-5 *1 (-1043 *4 *5 *2))
(-4 *2 (-13 (-423 *5) (-857 *4) (-594 (-863 *4))))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-549))) (-4 *1 (-1070 *3 *4 *5 *6 *7))
- (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067))
- (-4 *7 (-1067))))
+ (-12 (-5 *2 (-621 (-549))) (-4 *1 (-1069 *3 *4 *5 *6 *7))
+ (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066))
+ (-4 *7 (-1066))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-549)) (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067))
- (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067))))
- ((*1 *1 *1 *1) (-4 *1 (-1111)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-1143))))
+ (-12 (-5 *2 (-549)) (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066))
+ (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066))))
+ ((*1 *1 *1 *1) (-4 *1 (-1110)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-1142))))
((*1 *2 *3 *2)
- (-12 (-5 *3 (-400 *1)) (-4 *1 (-1202 *2)) (-4 *2 (-1018))
+ (-12 (-5 *3 (-400 *1)) (-4 *1 (-1201 *2)) (-4 *2 (-1018))
(-4 *2 (-356))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-400 *1)) (-4 *1 (-1202 *3)) (-4 *3 (-1018))
+ (-12 (-5 *2 (-400 *1)) (-4 *1 (-1201 *3)) (-4 *3 (-1018))
(-4 *3 (-541))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1204 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018))))
+ (-12 (-4 *1 (-1203 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018))))
((*1 *2 *1 *3)
- (-12 (-5 *3 "last") (-4 *1 (-1214 *2)) (-4 *2 (-1180))))
+ (-12 (-5 *3 "last") (-4 *1 (-1213 *2)) (-4 *2 (-1179))))
((*1 *1 *1 *2)
- (-12 (-5 *2 "rest") (-4 *1 (-1214 *3)) (-4 *3 (-1180))))
+ (-12 (-5 *2 "rest") (-4 *1 (-1213 *3)) (-4 *3 (-1179))))
((*1 *2 *1 *3)
- (-12 (-5 *3 "first") (-4 *1 (-1214 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-747)) (-5 *1 (-568 *2)) (-4 *2 (-534))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-2 (|:| -1864 *3) (|:| -3731 (-747)))) (-5 *1 (-568 *3))
- (-4 *3 (-534)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1226 *1)) (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184))
- (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
+ (-12 (-5 *3 "first") (-4 *1 (-1213 *2)) (-4 *2 (-1179)))))
+(((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
+ (-4 *3 (-360 *4))))
+ ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1124)) (-5 *1 (-1160))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1160)))))
(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-460))))
- ((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1227))))
- ((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1228)))))
-(((*1 *2 *1)
- (-12 (-4 *4 (-1067)) (-5 *2 (-112)) (-5 *1 (-856 *3 *4 *5))
- (-4 *3 (-1067)) (-4 *5 (-642 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-860 *3 *4)) (-4 *3 (-1067))
- (-4 *4 (-1067)))))
-(((*1 *2 *3 *4 *3 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-733)))))
-(((*1 *2 *2) (-12 (-5 *1 (-932 *2)) (-4 *2 (-534)))))
-(((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1125)) (-5 *1 (-687)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-534))))
-(((*1 *2 *1) (-12 (-4 *1 (-1116 *3)) (-4 *3 (-1180)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-728)))))
-(((*1 *2 *1) (-12 (-5 *1 (-172 *2)) (-4 *2 (-300))))
- ((*1 *2 *1) (-12 (-5 *1 (-885 *2)) (-4 *2 (-300))))
- ((*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)) (-4 *2 (-300))))
- ((*1 *2 *1) (-12 (-4 *1 (-1027)) (-5 *2 (-549)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-1179))) (-5 *1 (-586)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1226))))
+ ((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1227)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1201 *5)) (-4 *5 (-356))
+ (-5 *2 (-2 (|:| -2677 (-400 *6)) (|:| |coeff| (-400 *6))))
+ (-5 *1 (-559 *5 *6)) (-5 *3 (-400 *6)))))
+(((*1 *1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-747)) (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-4 *3 (-541)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-747)) (|:| |poli| *7)
- (|:| |polj| *7)))
- (-4 *5 (-769)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *6 (-823))
- (-5 *2 (-112)) (-5 *1 (-441 *4 *5 *6 *7)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-219)))))
-(((*1 *2 *1) (-12 (-4 *1 (-106 *2)) (-4 *2 (-1180)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-621 (-876 *3))) (-4 *3 (-1067)) (-5 *1 (-875 *3)))))
+ (-12 (-5 *2 (-1122 (-549))) (-5 *1 (-1126 *4)) (-4 *4 (-1018))
+ (-5 *3 (-549)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1073 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
- (|:| |relerr| (-219))))
- (-5 *2 (-112)) (-5 *1 (-293)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
- (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))))
+ (-12 (-5 *3 (-1142)) (-5 *2 (-525)) (-5 *1 (-524 *4))
+ (-4 *4 (-1179)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1184)) (-4 *5 (-1202 *4))
- (-5 *2 (-2 (|:| -1570 (-400 *5)) (|:| |poly| *3)))
- (-5 *1 (-146 *4 *5 *3)) (-4 *3 (-1202 (-400 *5))))))
-(((*1 *1 *1) (-4 *1 (-607)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973) (-1165))))))
+ (-12 (-5 *3 (-665 (-400 (-923 *4)))) (-4 *4 (-444))
+ (-5 *2 (-621 (-3 (-400 (-923 *4)) (-1131 (-1142) (-923 *4)))))
+ (-5 *1 (-285 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-942)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-549)) (|has| *1 (-6 -4337)) (-4 *1 (-1213 *3))
+ (-4 *3 (-1179)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-1178))) (-5 *1 (-586)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-354 (-114))) (-4 *2 (-1018)) (-5 *1 (-691 *2 *4))
+ (-4 *4 (-624 *2))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-354 (-114))) (-5 *1 (-810 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7)
+ (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219)))
+ (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT))))
+ (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE)))) (-5 *4 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-732))))
+ ((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8)
+ (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219)))
+ (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT))))
+ (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE)))) (-5 *8 (-381))
+ (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-732)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3)
+ (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-727)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-518)) (-5 *3 (-128)) (-5 *2 (-1086)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-1051))) (-5 *1 (-284)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-309 (-219)))) (-5 *4 (-747))
- (-5 *2 (-665 (-219))) (-5 *1 (-260)))))
+ (-12
+ (-5 *3
+ (-621
+ (-2 (|:| |eqzro| (-621 *8)) (|:| |neqzro| (-621 *8))
+ (|:| |wcond| (-621 (-923 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1225 (-400 (-923 *5))))
+ (|:| -2619 (-621 (-1225 (-400 (-923 *5))))))))))
+ (-5 *4 (-1124)) (-4 *5 (-13 (-300) (-145))) (-4 *8 (-920 *5 *7 *6))
+ (-4 *6 (-13 (-823) (-594 (-1142)))) (-4 *7 (-769)) (-5 *2 (-549))
+ (-5 *1 (-895 *5 *6 *7 *8)))))
+(((*1 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1165 *3)) (-4 *3 (-1066)))))
+(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459))))
+ ((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459))))
+ ((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-549)) (-4 *4 (-13 (-541) (-145))) (-5 *1 (-526 *4 *2))
+ (-4 *2 (-1216 *4))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-549)) (-4 *4 (-13 (-356) (-361) (-594 *3)))
+ (-4 *5 (-1201 *4)) (-4 *6 (-701 *4 *5)) (-5 *1 (-530 *4 *5 *6 *2))
+ (-4 *2 (-1216 *6))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-549)) (-4 *4 (-13 (-356) (-361) (-594 *3)))
+ (-5 *1 (-531 *4 *2)) (-4 *2 (-1216 *4))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1122 *4)) (-5 *3 (-549)) (-4 *4 (-13 (-541) (-145)))
+ (-5 *1 (-1118 *4)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361))
- (-5 *2 (-1139 *3)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-411 *3)) (-4 *3 (-541)) (-5 *1 (-412 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-61 *3)) (-14 *3 (-1143))))
- ((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-68 *3)) (-14 *3 (-1143))))
- ((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-71 *3)) (-14 *3 (-1143))))
- ((*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-1231))))
- ((*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1231)) (-5 *1 (-390))))
+ (-12 (-4 *2 (-685 *3)) (-5 *1 (-803 *2 *3)) (-4 *3 (-1018)))))
+(((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-61 *3)) (-14 *3 (-1142))))
+ ((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-68 *3)) (-14 *3 (-1142))))
+ ((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-71 *3)) (-14 *3 (-1142))))
+ ((*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-1230))))
+ ((*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1230)) (-5 *1 (-390))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1125)) (-5 *4 (-834)) (-5 *2 (-1231)) (-5 *1 (-1105))))
- ((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1231)) (-5 *1 (-1105))))
+ (-12 (-5 *3 (-1124)) (-5 *4 (-834)) (-5 *2 (-1230)) (-5 *1 (-1104))))
+ ((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1230)) (-5 *1 (-1104))))
((*1 *2 *3)
- (-12 (-5 *3 (-621 (-834))) (-5 *2 (-1231)) (-5 *1 (-1105)))))
+ (-12 (-5 *3 (-621 (-834))) (-5 *2 (-1230)) (-5 *1 (-1104)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
+ (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4))))
+ (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-747)) (-4 *6 (-356)) (-5 *4 (-1173 *6))
+ (-5 *2 (-1 (-1122 *4) (-1122 *4))) (-5 *1 (-1233 *6))
+ (-5 *5 (-1122 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))))
(((*1 *2 *2)
- (-12
- (-5 *2
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4)
- (|:| |xpnt| (-549))))
- (-4 *4 (-13 (-1202 *3) (-541) (-10 -8 (-15 -3727 ($ $ $)))))
- (-4 *3 (-541)) (-5 *1 (-1205 *3 *4)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1123 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1018))
- (-5 *3 (-400 (-549))) (-5 *1 (-1127 *4)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-747)) (-4 *4 (-541)) (-5 *1 (-940 *4 *2))
- (-4 *2 (-1202 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-131)) (-5 *3 (-747)) (-5 *2 (-1231)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-898)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1143)) (-5 *2 (-1 (-219) (-219))) (-5 *1 (-680 *3))
- (-4 *3 (-594 (-525)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1143)) (-5 *2 (-1 (-219) (-219) (-219)))
- (-5 *1 (-680 *3)) (-4 *3 (-594 (-525))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-169))))))
-(((*1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1067)))))
+ (|partial| -12 (-5 *2 (-400 *4)) (-4 *4 (-1201 *3))
+ (-4 *3 (-13 (-356) (-145) (-1009 (-549)))) (-5 *1 (-553 *3 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-361)) (-5 *2 (-892))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1225 *4)) (-4 *4 (-342)) (-5 *2 (-892))
+ (-5 *1 (-519 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-621 *3)) (-4 *3 (-1038 *5 *6 *7 *8)) (-4 *5 (-444))
+ (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7))
+ (-5 *2 (-112)) (-5 *1 (-959 *5 *6 *7 *8 *3))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1073 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-621 *3)) (-4 *3 (-1038 *5 *6 *7 *8)) (-4 *5 (-444))
+ (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7))
+ (-5 *2 (-112)) (-5 *1 (-1073 *5 *6 *7 *8 *3)))))
+(((*1 *2 *3 *2 *4 *5)
+ (-12 (-5 *2 (-621 *3)) (-5 *5 (-892)) (-4 *3 (-1201 *4))
+ (-4 *4 (-300)) (-5 *1 (-452 *4 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-734)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *4 *5 *6)) (-4 *4 (-300))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-439 *4 *5 *6 *2)))))
+(((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-384)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-747)) (-5 *2 (-621 (-1143))) (-5 *1 (-204))
- (-5 *3 (-1143))))
+ (-12 (-5 *4 (-747)) (-5 *2 (-621 (-1142))) (-5 *1 (-204))
+ (-5 *3 (-1142))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-309 (-219))) (-5 *4 (-747)) (-5 *2 (-621 (-1143)))
+ (-12 (-5 *3 (-309 (-219))) (-5 *4 (-747)) (-5 *2 (-621 (-1142)))
(-5 *1 (-260))))
((*1 *2 *1)
(-12 (-4 *1 (-367 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170))
@@ -5576,850 +5946,776 @@
((*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-795 *3)) (-4 *3 (-823))))
((*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-864 *3)) (-4 *3 (-823))))
((*1 *2 *1)
- (-12 (-4 *1 (-1243 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
- (-5 *2 (-621 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-584 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1180))
+ (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
(-5 *2 (-621 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-923 (-549))) (-5 *2 (-621 *1)) (-4 *1 (-983))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-923 (-400 (-549)))) (-5 *2 (-621 *1)) (-4 *1 (-983))))
- ((*1 *2 *3) (-12 (-5 *3 (-923 *1)) (-4 *1 (-983)) (-5 *2 (-621 *1))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1139 (-549))) (-5 *2 (-621 *1)) (-4 *1 (-983))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1139 (-400 (-549)))) (-5 *2 (-621 *1)) (-4 *1 (-983))))
- ((*1 *2 *3) (-12 (-5 *3 (-1139 *1)) (-4 *1 (-983)) (-5 *2 (-621 *1))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-821) (-356))) (-4 *3 (-1202 *4)) (-5 *2 (-621 *1))
- (-4 *1 (-1035 *4 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1139 *5)) (-4 *5 (-356)) (-5 *2 (-621 *6))
- (-5 *1 (-522 *5 *6 *4)) (-4 *6 (-356)) (-4 *4 (-13 (-356) (-821))))))
-(((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-384)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *3 (-747)) (-4 *4 (-13 (-541) (-145)))
- (-5 *1 (-1196 *4 *2)) (-4 *2 (-1202 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-797)) (-5 *2 (-52)) (-5 *1 (-807)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2)
+ (-12 (-5 *2 (-892)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-892)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))))
+(((*1 *1 *2) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1164))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-747)) (-4 *4 (-1018))
+ (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-1201 *4)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |lm| (-379 *3)) (|:| |mm| (-379 *3)) (|:| |rm| (-379 *3))))
+ (-5 *1 (-379 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |lm| (-795 *3)) (|:| |mm| (-795 *3)) (|:| |rm| (-795 *3))))
+ (-5 *1 (-795 *3)) (-4 *3 (-823)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+ (|partial| -12 (-5 *3 (-114)) (-5 *4 (-621 *2)) (-5 *1 (-113 *2))
+ (-4 *2 (-1066))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 (-621 *4))) (-4 *4 (-1066))
+ (-5 *1 (-113 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1066))
+ (-5 *1 (-113 *4))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-114)) (-5 *2 (-1 *4 (-621 *4)))
+ (-5 *1 (-113 *4)) (-4 *4 (-1066))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-624 *3)) (-4 *3 (-1018))
+ (-5 *1 (-691 *3 *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-810 *3)))))
+(((*1 *1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
(((*1 *2 *3 *2)
- (-12 (-5 *3 (-114)) (-4 *4 (-1018)) (-5 *1 (-691 *4 *2))
- (-4 *2 (-624 *4))))
- ((*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-5 *1 (-810 *2)) (-4 *2 (-1018)))))
+ (-12 (-5 *3 (-400 (-549)))
+ (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-270 *4 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *4))))))
+(((*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1230)) (-5 *1 (-384))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-384)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-747)) (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-4 *3 (-541)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-747)) (-5 *2 (-1 (-1123 (-923 *4)) (-1123 (-923 *4))))
- (-5 *1 (-1234 *4)) (-4 *4 (-356)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-323)))))
-(((*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1231)) (-5 *1 (-384))))
- ((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-384)))))
-(((*1 *1 *1 *1) (-4 *1 (-465))) ((*1 *1 *1 *1) (-4 *1 (-738))))
+ (-12 (|has| *6 (-6 -4337)) (-4 *4 (-356)) (-4 *5 (-366 *4))
+ (-4 *6 (-366 *4)) (-5 *2 (-621 *6)) (-5 *1 (-512 *4 *5 *6 *3))
+ (-4 *3 (-663 *4 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (|has| *9 (-6 -4337)) (-4 *4 (-541)) (-4 *5 (-366 *4))
+ (-4 *6 (-366 *4)) (-4 *7 (-963 *4)) (-4 *8 (-366 *7))
+ (-4 *9 (-366 *7)) (-5 *2 (-621 *6))
+ (-5 *1 (-513 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-663 *4 *5 *6))
+ (-4 *10 (-663 *7 *8 *9))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3))
+ (-4 *5 (-366 *3)) (-4 *3 (-541)) (-5 *2 (-621 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-4 *4 (-170)) (-4 *5 (-366 *4))
+ (-4 *6 (-366 *4)) (-5 *2 (-621 *6)) (-5 *1 (-664 *4 *5 *6 *3))
+ (-4 *3 (-663 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
+ (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-4 *5 (-541))
+ (-5 *2 (-621 *7)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1018)) (-4 *2 (-663 *4 *5 *6))
- (-5 *1 (-103 *4 *3 *2 *5 *6)) (-4 *3 (-1202 *4)) (-4 *5 (-366 *4))
- (-4 *6 (-366 *4)))))
-(((*1 *2 *3)
- (-12 (-14 *4 (-621 (-1143))) (-4 *5 (-444))
- (-5 *2
- (-2 (|:| |glbase| (-621 (-241 *4 *5))) (|:| |glval| (-621 (-549)))))
- (-5 *1 (-609 *4 *5)) (-5 *3 (-621 (-241 *4 *5))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1226 (-747))) (-5 *1 (-651 *3)) (-4 *3 (-1067)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1139 *1)) (-5 *3 (-1143)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-1139 *1)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-923 *1)) (-4 *1 (-27))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1143)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-823) (-541)))))
- ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-823) (-541))))))
-(((*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-155))))
- ((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
+ (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -4114 *4)))
+ (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *1) (-4 *1 (-34))) ((*1 *1) (-5 *1 (-284)))
+ ((*1 *1) (-5 *1 (-834)))
+ ((*1 *1)
+ (-12 (-4 *2 (-444)) (-4 *3 (-823)) (-4 *4 (-769))
+ (-5 *1 (-958 *2 *3 *4 *5)) (-4 *5 (-920 *2 *4 *3))))
+ ((*1 *1) (-5 *1 (-1051)))
+ ((*1 *1)
+ (-12 (-5 *1 (-1106 *2 *3)) (-4 *2 (-13 (-1066) (-34)))
+ (-4 *3 (-13 (-1066) (-34)))))
+ ((*1 *1) (-5 *1 (-1145))) ((*1 *1) (-5 *1 (-1146))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769))
+ (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *3 (-1032 *4 *5 *6))
+ (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1979 *1))))
+ (-4 *1 (-1038 *4 *5 *6 *3)))))
(((*1 *1) (-12 (-4 *1 (-457 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23))))
((*1 *1) (-5 *1 (-525))) ((*1 *1) (-4 *1 (-699)))
((*1 *1) (-4 *1 (-703)))
- ((*1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1067))))
+ ((*1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1066))))
((*1 *1) (-12 (-5 *1 (-864 *2)) (-4 *2 (-823)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1067)) (-4 *6 (-857 *5)) (-5 *2 (-856 *5 *6 (-621 *6)))
- (-5 *1 (-858 *5 *6 *4)) (-5 *3 (-621 *6)) (-4 *4 (-594 (-863 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1067)) (-5 *2 (-621 (-287 *3))) (-5 *1 (-858 *5 *3 *4))
- (-4 *3 (-1009 (-1143))) (-4 *3 (-857 *5)) (-4 *4 (-594 (-863 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1067)) (-5 *2 (-621 (-287 (-923 *3))))
- (-5 *1 (-858 *5 *3 *4)) (-4 *3 (-1018))
- (-4008 (-4 *3 (-1009 (-1143)))) (-4 *3 (-857 *5))
- (-4 *4 (-594 (-863 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1067)) (-5 *2 (-860 *5 *3)) (-5 *1 (-858 *5 *3 *4))
- (-4008 (-4 *3 (-1009 (-1143)))) (-4008 (-4 *3 (-1018)))
- (-4 *3 (-857 *5)) (-4 *4 (-594 (-863 *5))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *6)) (-5 *4 (-1143)) (-4 *6 (-423 *5))
- (-4 *5 (-823)) (-5 *2 (-621 (-592 *6))) (-5 *1 (-558 *5 *6)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-356)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4)))
- (-5 *2 (-1226 *6)) (-5 *1 (-329 *3 *4 *5 *6))
- (-4 *6 (-335 *3 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1173 *4 *5 *6 *3)) (-4 *4 (-541)) (-4 *5 (-769))
- (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))))
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1179)) (-5 *1 (-368 *4 *2))
+ (-4 *2 (-13 (-366 *4) (-10 -7 (-6 -4337)))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-112)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1073 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))))
+(((*1 *1 *2) (-12 (-5 *2 (-181)) (-5 *1 (-242)))))
(((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-621 *6)) (-4 *6 (-823)) (-4 *4 (-356)) (-4 *5 (-769))
- (-5 *1 (-495 *4 *5 *6 *2)) (-4 *2 (-920 *4 *5 *6))))
- ((*1 *1 *1 *2)
- (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *1 (-495 *3 *4 *5 *2)) (-4 *2 (-920 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-1057)))))
-(((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-1229)))))
+ (-12 (-5 *2 (-1142)) (-5 *3 (-372)) (-5 *1 (-1030)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-38 (-400 (-549))))
- (-5 *2 (-2 (|:| -1486 (-1123 *4)) (|:| -1501 (-1123 *4))))
- (-5 *1 (-1129 *4)) (-5 *3 (-1123 *4)))))
+ (-12 (-5 *3 (-863 *4)) (-4 *4 (-1066)) (-5 *2 (-621 *5))
+ (-5 *1 (-861 *4 *5)) (-4 *5 (-1179)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170))
- (-5 *2 (-1226 (-665 *4)))))
- ((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-1226 (-665 *4))) (-5 *1 (-409 *3 *4))
- (-4 *3 (-410 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-1226 (-665 *3)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-1143))) (-4 *5 (-356))
- (-5 *2 (-1226 (-665 (-400 (-923 *5))))) (-5 *1 (-1053 *5))
- (-5 *4 (-665 (-400 (-923 *5))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-1143))) (-4 *5 (-356))
- (-5 *2 (-1226 (-665 (-923 *5)))) (-5 *1 (-1053 *5))
- (-5 *4 (-665 (-923 *5)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-665 *4))) (-4 *4 (-356))
- (-5 *2 (-1226 (-665 *4))) (-5 *1 (-1053 *4)))))
+ (-12 (-5 *3 (-621 (-892))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1122 *3)) (-4 *3 (-1066))
+ (-4 *3 (-1179)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-241 *4 *5)) (-14 *4 (-621 (-1142))) (-4 *5 (-444))
+ (-5 *2 (-473 *4 *5)) (-5 *1 (-609 *4 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1198 *5 *4)) (-4 *4 (-796)) (-14 *5 (-1142))
+ (-5 *2 (-621 *4)) (-5 *1 (-1080 *4 *5)))))
(((*1 *1) (-4 *1 (-23)))
((*1 *1) (-12 (-4 *1 (-462 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23))))
((*1 *1) (-5 *1 (-525)))
- ((*1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-2 (|:| -3440 *6) (|:| |coeff| *6)) "failed") *6))
- (-4 *6 (-356)) (-4 *7 (-1202 *6))
- (-5 *2 (-2 (|:| |answer| (-567 (-400 *7))) (|:| |a0| *6)))
- (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))))
+ ((*1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1066)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-541)) (-5 *2 (-621 *3)) (-5 *1 (-940 *4 *3))
+ (-4 *3 (-1201 *4)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-863 *4)) (-4 *4 (-1066)) (-5 *1 (-861 *4 *3))
+ (-4 *3 (-1179))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-235)) (-5 *3 (-1125))))
- ((*1 *2 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-235))))
+ (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-235)) (-5 *3 (-1124))))
+ ((*1 *2 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-235))))
((*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-476 *3)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 (-430)))))
- (-5 *1 (-1147)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-256))) (-5 *4 (-1143)) (-5 *2 (-112))
- (-5 *1 (-256)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823))))
- ((*1 *2 *2 *1)
- (-12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-621 *6)) (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018))
- (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5))
- (-4 *3 (-541)))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *4 (-592 *3)) (-5 *5 (-1 (-1139 *3) (-1139 *3)))
- (-4 *3 (-13 (-27) (-423 *6))) (-4 *6 (-13 (-823) (-541)))
- (-5 *2 (-567 *3)) (-5 *1 (-536 *6 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-892))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
-(((*1 *2 *1) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-1139 *3)))))
-(((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823))
- (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-920 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1018)) (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1)))
- (-4 *1 (-1202 *3)))))
+ (-12 (-5 *2 (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 (-430)))))
+ (-5 *1 (-1146)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-1 (-219) (-219) (-219)))
+ (-5 *4 (-3 (-1 (-219) (-219) (-219) (-219)) "undefined"))
+ (-5 *5 (-1060 (-219))) (-5 *6 (-621 (-256))) (-5 *2 (-1099 (-219)))
+ (-5 *1 (-673)))))
+(((*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227))))
+ ((*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-525)))))
+(((*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-1179)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-621 *5)) (-5 *4 (-549)) (-4 *5 (-821)) (-4 *5 (-356))
+ (-5 *2 (-747)) (-5 *1 (-916 *5 *6)) (-4 *6 (-1201 *5)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-2 (|:| |k| (-648 *3)) (|:| |c| *4))))
+ (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823))
+ (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))))
(((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| -1805)) (-5 *2 (-112)) (-5 *1 (-596))))
+ (-12 (-5 *3 (|[\|\|]| -1808)) (-5 *2 (-112)) (-5 *1 (-596))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| -1750)) (-5 *2 (-112)) (-5 *1 (-596))))
+ (-12 (-5 *3 (|[\|\|]| -1749)) (-5 *2 (-112)) (-5 *1 (-596))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| -3737)) (-5 *2 (-112)) (-5 *1 (-596))))
+ (-12 (-5 *3 (|[\|\|]| -3736)) (-5 *2 (-112)) (-5 *1 (-596))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| -4095)) (-5 *2 (-112)) (-5 *1 (-667 *4))
+ (-12 (-5 *3 (|[\|\|]| -4094)) (-5 *2 (-112)) (-5 *1 (-667 *4))
(-4 *4 (-593 (-834)))))
((*1 *2 *1 *3)
(-12 (-5 *3 (|[\|\|]| *4)) (-4 *4 (-593 (-834))) (-5 *2 (-112))
(-5 *1 (-667 *4))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-573))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-573))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-470))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-470))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-136))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-136))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-154))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-154))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1133))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1132))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-604))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-604))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1063))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1062))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1057))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1056))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1040))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1040))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-941))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-941))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-178))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-178))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1007))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1007))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-304))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-304))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-647))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-647))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-152))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-152))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-516))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-516))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1237))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1236))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1033))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1033))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-508))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-508))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-657))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-657))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-95))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-95))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1082))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1081))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-132))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-132))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-137))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-137))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-1236))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-1235))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-652))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-652))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-212))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-212))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1104)) (-5 *3 (|[\|\|]| (-515))) (-5 *2 (-112))))
+ (-12 (-4 *1 (-1103)) (-5 *3 (|[\|\|]| (-515))) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| (-1125))) (-5 *2 (-112)) (-5 *1 (-1148))))
+ (-12 (-5 *3 (|[\|\|]| (-1124))) (-5 *2 (-112)) (-5 *1 (-1147))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| (-1143))) (-5 *2 (-112)) (-5 *1 (-1148))))
+ (-12 (-5 *3 (|[\|\|]| (-1142))) (-5 *2 (-112)) (-5 *1 (-1147))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| (-219))) (-5 *2 (-112)) (-5 *1 (-1148))))
+ (-12 (-5 *3 (|[\|\|]| (-219))) (-5 *2 (-112)) (-5 *1 (-1147))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| (-549))) (-5 *2 (-112)) (-5 *1 (-1148)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1))
- (-4 *1 (-1032 *3 *4 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-400 (-549))) (-5 *2 (-219)) (-5 *1 (-298)))))
+ (-12 (-5 *3 (|[\|\|]| (-549))) (-5 *2 (-112)) (-5 *1 (-1147)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-747)) (-5 *2 (-1231)) (-5 *1 (-837 *4 *5 *6 *7))
- (-4 *4 (-1018)) (-14 *5 (-621 (-1143))) (-14 *6 (-621 *3))
- (-14 *7 *3)))
+ (-12 (-5 *3 (-567 *2)) (-4 *2 (-13 (-29 *4) (-1164)))
+ (-5 *1 (-565 *4 *2))
+ (-4 *4 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549))))))
((*1 *2 *3)
- (-12 (-5 *3 (-747)) (-4 *4 (-1018)) (-4 *5 (-823)) (-4 *6 (-769))
- (-14 *8 (-621 *5)) (-5 *2 (-1231))
- (-5 *1 (-1238 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-920 *4 *6 *5))
- (-14 *9 (-621 *3)) (-14 *10 *3))))
-(((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
- (-4 *3 (-360 *4))))
- ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+ (-12 (-5 *3 (-567 (-400 (-923 *4))))
+ (-4 *4 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549))))
+ (-5 *2 (-309 *4)) (-5 *1 (-570 *4)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
+ (-5 *2
+ (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549))
+ (|:| |success| (-112))))
+ (-5 *1 (-765)) (-5 *5 (-549)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *3 (-621 (-845)))
+ (-5 *1 (-460)))))
+(((*1 *2 *2)
+ (-12
+ (-5 *2
+ (-621
+ (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-747)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *4 (-769)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-444)) (-4 *5 (-823))
+ (-5 *1 (-441 *3 *4 *5 *6)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-356) (-821))) (-5 *1 (-179 *3 *2))
+ (-4 *2 (-1201 (-167 *3))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))))
-(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-4 *3 (-1018)) (-4 *3 (-823))
+ (-5 *2 (-2 (|:| |val| *1) (|:| -1714 (-549)))) (-4 *1 (-423 *3))))
+ ((*1 *2 *1)
(|partial| -12
- (-5 *3
- (-1 (-3 (-2 (|:| -3440 *4) (|:| |coeff| *4)) "failed") *4))
- (-4 *4 (-356)) (-5 *1 (-559 *4 *2)) (-4 *2 (-1202 *4)))))
+ (-5 *2 (-2 (|:| |val| (-863 *3)) (|:| -1714 (-863 *3))))
+ (-5 *1 (-863 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018))
+ (-4 *7 (-920 *6 *4 *5))
+ (-5 *2 (-2 (|:| |val| *3) (|:| -1714 (-549))))
+ (-5 *1 (-921 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-356)
+ (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $))
+ (-15 -1404 (*7 $))))))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-1225 *5)) (-4 *5 (-617 *4)) (-4 *4 (-541))
+ (-5 *2 (-1225 *4)) (-5 *1 (-616 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-508)))))
+(((*1 *2)
+ (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1230))
+ (-5 *1 (-1039 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1230))
+ (-5 *1 (-1074 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-621 *3)) (-4 *3 (-1179)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |pde| (-621 (-309 (-219))))
+ (|:| |constraints|
+ (-621
+ (-2 (|:| |start| (-219)) (|:| |finish| (-219))
+ (|:| |grid| (-747)) (|:| |boundaryType| (-549))
+ (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219))))))
+ (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124))
+ (|:| |tol| (-219))))
+ (-5 *2 (-112)) (-5 *1 (-204)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-621 (-1142))) (-4 *4 (-1066))
+ (-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4))))
+ (-5 *1 (-54 *4 *5 *2))
+ (-4 *2 (-13 (-423 *5) (-857 *4) (-594 (-863 *4)))))))
(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1180)) (-5 *1 (-368 *4 *2))
- (-4 *2 (-13 (-366 *4) (-10 -7 (-6 -4338)))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-621 *3)) (-4 *3 (-1180)))))
+ (|partial| -12 (-5 *2 (-1225 *4)) (-5 *3 (-665 *4)) (-4 *4 (-356))
+ (-5 *1 (-643 *4))))
+ ((*1 *2 *3 *2)
+ (|partial| -12 (-4 *4 (-356))
+ (-4 *5 (-13 (-366 *4) (-10 -7 (-6 -4337))))
+ (-4 *2 (-13 (-366 *4) (-10 -7 (-6 -4337))))
+ (-5 *1 (-644 *4 *5 *2 *3)) (-4 *3 (-663 *4 *5 *2))))
+ ((*1 *2 *3 *2 *4 *5)
+ (|partial| -12 (-5 *4 (-621 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-356))
+ (-5 *1 (-790 *2 *3)) (-4 *3 (-632 *2))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
+ (-5 *1 (-1094 *3 *2)) (-4 *3 (-1201 *2)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-167 *5)) (-4 *5 (-13 (-423 *4) (-973) (-1165)))
- (-4 *4 (-13 (-541) (-823)))
- (-4 *2 (-13 (-423 (-167 *4)) (-973) (-1165)))
- (-5 *1 (-580 *4 *5 *2)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
- (-4 *2 (-423 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-923 (-219))) (-5 *2 (-219)) (-5 *1 (-298)))))
-(((*1 *1 *1) (-4 *1 (-1027))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2))
- (-4 *2 (-423 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-156 *4 *2))
- (-4 *2 (-423 *4))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-158)) (-5 *2 (-1143))))
- ((*1 *1 *1) (-4 *1 (-158))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-169)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892))
- (-4 *4 (-1018)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-444)) (-4 *3 (-823)) (-4 *4 (-769))
- (-5 *1 (-958 *2 *3 *4 *5)) (-4 *5 (-920 *2 *4 *3)))))
+ (-12 (-4 *4 (-356)) (-5 *2 (-621 *3)) (-5 *1 (-916 *4 *3))
+ (-4 *3 (-1201 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1138 (-923 *6))) (-4 *6 (-541))
+ (-4 *2 (-920 (-400 (-923 *6)) *5 *4)) (-5 *1 (-709 *5 *4 *6 *2))
+ (-4 *5 (-769))
+ (-4 *4 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $))))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
- (-5 *2 (-621 *4)) (-5 *1 (-1095 *3 *4)) (-4 *3 (-1202 *4))))
- ((*1 *2 *3 *3 *3 *3)
- (-12 (-4 *3 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
- (-5 *2 (-621 *3)) (-5 *1 (-1095 *4 *3)) (-4 *4 (-1202 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *1) (-12 (-4 *1 (-840 *3)) (-5 *2 (-549)))))
+ (-12 (-4 *4 (-823)) (-5 *2 (-1151 (-621 *4))) (-5 *1 (-1150 *4))
+ (-5 *3 (-621 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-892)) (-5 *2 (-1225 (-1225 (-549)))) (-5 *1 (-458)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1226))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
(((*1 *2 *3)
(-12 (-4 *4 (-823))
(-5 *2
(-2 (|:| |f1| (-621 *4)) (|:| |f2| (-621 (-621 (-621 *4))))
(|:| |f3| (-621 (-621 *4))) (|:| |f4| (-621 (-621 (-621 *4))))))
- (-5 *1 (-1151 *4)) (-5 *3 (-621 (-621 (-621 *4)))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-400 (-549))) (-5 *1 (-312 *3 *4 *5))
- (-4 *3 (-13 (-356) (-823))) (-14 *4 (-1143)) (-14 *5 *3))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
- (-5 *2
- (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549))
- (|:| |success| (-112))))
- (-5 *1 (-765)) (-5 *5 (-549)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
- (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-309 *3)) (-4 *3 (-541)) (-4 *3 (-823)))))
+ (-5 *1 (-1150 *4)) (-5 *3 (-621 (-621 (-621 *4)))))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-729)))))
+(((*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
+ ((*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
+ (-4 *2 (-423 *3))))
+ ((*1 *1 *1) (-4 *1 (-1105))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -4114 *3) (|:| |coef1| (-758 *3))))
+ (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-920 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)) (-4 *2 (-444))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *3 (-1032 *4 *5 *6))
+ (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *1))))
+ (-4 *1 (-1038 *4 *5 *6 *3))))
+ ((*1 *1 *1) (-4 *1 (-1183)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-541)) (-5 *1 (-1204 *3 *2))
+ (-4 *2 (-13 (-1201 *3) (-541) (-10 -8 (-15 -3726 ($ $ $))))))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *7 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-541))
+ (-4 *8 (-920 *7 *5 *6))
+ (-5 *2 (-2 (|:| -1714 (-747)) (|:| -1569 *3) (|:| |radicand| *3)))
+ (-5 *1 (-924 *5 *6 *7 *8 *3)) (-5 *4 (-747))
+ (-4 *3
+ (-13 (-356)
+ (-10 -8 (-15 -1392 (*8 $)) (-15 -1404 (*8 $)) (-15 -3845 ($ *8))))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-892)) (-5 *2 (-1139 *4)) (-5 *1 (-350 *4))
+ (-12 (-5 *3 (-892)) (-5 *2 (-1138 *4)) (-5 *1 (-350 *4))
(-4 *4 (-342))))
((*1 *2 *3 *3)
- (-12 (-5 *3 (-892)) (-5 *2 (-1139 *4)) (-5 *1 (-350 *4))
+ (-12 (-5 *3 (-892)) (-5 *2 (-1138 *4)) (-5 *1 (-350 *4))
(-4 *4 (-342))))
((*1 *1) (-4 *1 (-361)))
((*1 *2 *3)
- (-12 (-5 *3 (-892)) (-5 *2 (-1226 *4)) (-5 *1 (-519 *4))
+ (-12 (-5 *3 (-892)) (-5 *2 (-1225 *4)) (-5 *1 (-519 *4))
(-4 *4 (-342))))
((*1 *1 *1) (-4 *1 (-534))) ((*1 *1) (-4 *1 (-534)))
((*1 *1 *1) (-5 *1 (-549))) ((*1 *1 *1) (-5 *1 (-747)))
- ((*1 *2 *1) (-12 (-5 *2 (-876 *3)) (-5 *1 (-875 *3)) (-4 *3 (-1067))))
+ ((*1 *2 *1) (-12 (-5 *2 (-876 *3)) (-5 *1 (-875 *3)) (-4 *3 (-1066))))
((*1 *2 *1 *3)
(-12 (-5 *3 (-549)) (-5 *2 (-876 *4)) (-5 *1 (-875 *4))
- (-4 *4 (-1067))))
+ (-4 *4 (-1066))))
((*1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-534)) (-4 *2 (-541)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1139 (-923 *6))) (-4 *6 (-541))
- (-4 *2 (-920 (-400 (-923 *6)) *5 *4)) (-5 *1 (-709 *5 *4 *6 *2))
- (-4 *5 (-769))
- (-4 *4 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $))))))))
-(((*1 *2 *2) (-12 (-5 *2 (-892)) (|has| *1 (-6 -4328)) (-4 *1 (-397))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-387))))
+ ((*1 *2 *1) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1159)))))
+(((*1 *2 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-728)))))
+(((*1 *2 *2) (-12 (-5 *2 (-892)) (|has| *1 (-6 -4327)) (-4 *1 (-397))))
((*1 *2) (-12 (-4 *1 (-397)) (-5 *2 (-892))))
((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-675))))
((*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-675)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1143)) (-4 *4 (-541)) (-4 *4 (-823))
- (-5 *1 (-558 *4 *2)) (-4 *2 (-423 *4)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1143))
- (-4 *5 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549))))
- (-5 *2 (-2 (|:| -3440 *3) (|:| |coeff| *3))) (-5 *1 (-542 *5 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *5))))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-429)))))
+(((*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-112)))))
+(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1067) (-1009 *5)))
- (-4 *5 (-857 *4)) (-4 *4 (-1067)) (-5 *2 (-1 (-112) *5))
- (-5 *1 (-902 *4 *5 *6)))))
-(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))))
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1230))
+ (-5 *1 (-441 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))))
+(((*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1011)))))
+(((*1 *2 *2 *2 *2 *3 *3 *4)
+ (|partial| -12 (-5 *3 (-592 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1142)))
+ (-4 *2 (-13 (-423 *5) (-27) (-1164)))
+ (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
+ (-5 *1 (-551 *5 *2 *6)) (-4 *6 (-1066)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-411 (-1139 *1))) (-5 *1 (-309 *4)) (-5 *3 (-1139 *1))
- (-4 *4 (-444)) (-4 *4 (-541)) (-4 *4 (-823))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-880)) (-5 *2 (-411 (-1139 *1))) (-5 *3 (-1139 *1)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1180)) (-5 *2 (-549)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1353 *4)))
- (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))))
-(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459))))
- ((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459))))
- ((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))))
+ (-12 (-5 *3 (-621 (-1142))) (-5 *2 (-1230)) (-5 *1 (-1145))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-621 (-1142))) (-5 *3 (-1142)) (-5 *2 (-1230))
+ (-5 *1 (-1145))))
+ ((*1 *2 *3 *4 *1)
+ (-12 (-5 *4 (-621 (-1142))) (-5 *3 (-1142)) (-5 *2 (-1230))
+ (-5 *1 (-1145)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-4 *1 (-229 *3))))
+ ((*1 *1) (-12 (-4 *1 (-229 *2)) (-4 *2 (-1066)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-747)) (-5 *4 (-1225 *2)) (-4 *5 (-300))
+ (-4 *6 (-963 *5)) (-4 *2 (-13 (-402 *6 *7) (-1009 *6)))
+ (-5 *1 (-406 *5 *6 *7 *2)) (-4 *7 (-1201 *6)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-319 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-768)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-798)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-747)) (-4 *4 (-13 (-541) (-145)))
+ (-5 *1 (-1195 *4 *2)) (-4 *2 (-1201 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-1178))) (-5 *1 (-657))))
+ ((*1 *2 *1) (-12 (-5 *2 (-621 (-1147))) (-5 *1 (-1084)))))
+(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-834)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-3 (-112) (-621 *1)))
+ (-4 *1 (-1038 *4 *5 *6 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *3 *4 *3 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-733)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-356) (-821))) (-5 *1 (-179 *3 *2))
- (-4 *2 (-1202 (-167 *3))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2))
- (-4 *4 (-13 (-823) (-541))))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-295))))
- ((*1 *1 *1) (-4 *1 (-295)))
- ((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834))))
- ((*1 *1 *1) (-5 *1 (-834))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-1179))) (-5 *1 (-657))))
- ((*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-1085)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1226 (-621 (-2 (|:| -4161 *4) (|:| -3493 (-1087))))))
- (-4 *4 (-342)) (-5 *2 (-747)) (-5 *1 (-339 *4))))
- ((*1 *2)
- (-12 (-5 *2 (-747)) (-5 *1 (-344 *3 *4)) (-14 *3 (-892))
- (-14 *4 (-892))))
- ((*1 *2)
- (-12 (-5 *2 (-747)) (-5 *1 (-345 *3 *4)) (-4 *3 (-342))
- (-14 *4
- (-3 (-1139 *3)
- (-1226 (-621 (-2 (|:| -4161 *3) (|:| -3493 (-1087)))))))))
- ((*1 *2)
- (-12 (-5 *2 (-747)) (-5 *1 (-346 *3 *4)) (-4 *3 (-342))
- (-14 *4 (-892)))))
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 *5)) (-5 *4 (-892)) (-4 *5 (-823))
+ (-5 *2 (-58 (-621 (-648 *5)))) (-5 *1 (-648 *5)))))
+(((*1 *1 *1) (-12 (-5 *1 (-885 *2)) (-4 *2 (-300)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1110)) (-5 *2 (-139))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1110)) (-5 *2 (-142)))))
+(((*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112))
+ (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1035 *4 *3)) (-4 *4 (-13 (-821) (-356)))
+ (-4 *3 (-1201 *4)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *5 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-1124)) (-5 *5 (-665 (-219)))
+ (-5 *2 (-1006)) (-5 *1 (-724)))))
+(((*1 *1 *1 *1) (-5 *1 (-834))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7)
+ (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219)))
+ (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-74 FCN JACOBF JACEPS))))
+ (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-75 G JACOBG JACGEP))))
+ (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
- (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
- (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
- (|:| |abserr| (-219)) (|:| |relerr| (-219))))
- (-5 *2 (-372)) (-5 *1 (-199)))))
+ (-12 (-5 *3 (-621 (-2 (|:| |den| (-549)) (|:| |gcdnum| (-549)))))
+ (-4 *4 (-1201 (-400 *2))) (-5 *2 (-549)) (-5 *1 (-884 *4 *5))
+ (-4 *5 (-1201 (-400 *4))))))
+(((*1 *1 *1 *1) (-4 *1 (-295))) ((*1 *1 *1) (-4 *1 (-295))))
+(((*1 *1 *2 *3 *3 *4 *4)
+ (-12 (-5 *2 (-923 (-549))) (-5 *3 (-1142))
+ (-5 *4 (-1060 (-400 (-549)))) (-5 *1 (-30)))))
+(((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7))
+ (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-5 *2 (-621 (-998 *5 *6 *7 *8))) (-5 *1 (-998 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7))
+ (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-5 *2 (-621 (-1112 *5 *6 *7 *8))) (-5 *1 (-1112 *5 *6 *7 *8)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-549)) (-4 *1 (-316 *4 *2)) (-4 *4 (-1066))
+ (-4 *2 (-130)))))
+(((*1 *1 *1 *1) (-4 *1 (-534))))
+(((*1 *1) (-5 *1 (-284))))
+(((*1 *1 *1 *1) (-4 *1 (-534))))
+(((*1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1228))))
+ ((*1 *2 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1228)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-621 *7)) (|:| |badPols| (-621 *7))))
- (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))))
+ (-12 (-5 *2 (-621 (-1138 (-549)))) (-5 *1 (-185)) (-5 *3 (-549)))))
+(((*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-592 *5))) (-4 *4 (-823)) (-5 *2 (-592 *5))
- (-5 *1 (-558 *4 *5)) (-4 *5 (-423 *4)))))
-(((*1 *2)
- (|partial| -12 (-4 *3 (-541)) (-4 *3 (-170))
- (-5 *2 (-2 (|:| |particular| *1) (|:| -1949 (-621 *1))))
- (-4 *1 (-360 *3))))
- ((*1 *2)
- (|partial| -12
- (-5 *2
- (-2 (|:| |particular| (-445 *3 *4 *5 *6))
- (|:| -1949 (-621 (-445 *3 *4 *5 *6)))))
- (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-892))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-356)) (-4 *3 (-1018))
- (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-825 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-98 *5)) (-4 *5 (-356)) (-4 *5 (-1018))
- (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3))) (-5 *1 (-826 *5 *3))
- (-4 *3 (-825 *5)))))
-(((*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7)
- (-12 (-5 *4 (-549)) (-5 *5 (-665 (-219)))
- (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))))
- (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) (-5 *3 (-219))
- (-5 *2 (-1006)) (-5 *1 (-726)))))
-(((*1 *2)
- (-12 (-4 *4 (-356)) (-5 *2 (-747)) (-5 *1 (-321 *3 *4))
- (-4 *3 (-322 *4))))
- ((*1 *2) (-12 (-4 *1 (-1245 *3)) (-4 *3 (-356)) (-5 *2 (-747)))))
-(((*1 *2 *3 *3 *3 *4 *5 *4 *6)
- (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219)))
- (-5 *5 (-1061 (-219))) (-5 *6 (-549)) (-5 *2 (-1175 (-897)))
- (-5 *1 (-311))))
- ((*1 *2 *3 *3 *3 *4 *5 *4 *6 *7)
- (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219)))
- (-5 *5 (-1061 (-219))) (-5 *6 (-549)) (-5 *7 (-1125))
- (-5 *2 (-1175 (-897))) (-5 *1 (-311))))
- ((*1 *2 *3 *3 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219)))
- (-5 *5 (-1061 (-219))) (-5 *6 (-219)) (-5 *7 (-549))
- (-5 *2 (-1175 (-897))) (-5 *1 (-311))))
- ((*1 *2 *3 *3 *3 *4 *5 *6 *7 *8)
- (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219)))
- (-5 *5 (-1061 (-219))) (-5 *6 (-219)) (-5 *7 (-549)) (-5 *8 (-1125))
- (-5 *2 (-1175 (-897))) (-5 *1 (-311)))))
-(((*1 *1 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)) (-4 *2 (-1027))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143)))
- (-14 *3 (-621 (-1143))) (-4 *4 (-380))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
- (-4 *2 (-423 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)) (-4 *2 (-1027))))
- ((*1 *1 *1) (-4 *1 (-821)))
- ((*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)) (-4 *2 (-1027))))
- ((*1 *1 *1) (-4 *1 (-1027))) ((*1 *1 *1) (-4 *1 (-1106))))
-(((*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 (-1238 *4 *5 *6 *7)))
+ (-5 *1 (-1238 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-621 *9)) (-5 *4 (-1 (-112) *9 *9))
+ (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1032 *6 *7 *8)) (-4 *6 (-541))
+ (-4 *7 (-769)) (-4 *8 (-823)) (-5 *2 (-621 (-1238 *6 *7 *8 *9)))
+ (-5 *1 (-1238 *6 *7 *8 *9)))))
+(((*1 *2 *3 *4 *3 *4 *4 *4)
+ (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *2 (-1006))
+ (-5 *1 (-733)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-367 *3 *4)) (-4 *3 (-823))
- (-4 *4 (-170))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-1247 *3 *4)) (-4 *3 (-823))
- (-4 *4 (-1018)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-621 (-473 *3 *4))) (-14 *3 (-621 (-1143)))
- (-4 *4 (-444)) (-5 *1 (-609 *3 *4)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-238 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1 *8 *8))
- (-5 *5
- (-1 (-3 (-2 (|:| -3440 *7) (|:| |coeff| *7)) "failed") *7))
- (-5 *6 (-621 (-400 *8))) (-4 *7 (-356)) (-4 *8 (-1202 *7))
- (-5 *3 (-400 *8))
- (-5 *2
- (-2
- (|:| |answer|
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (|:| |a0| *7)))
- (-5 *1 (-559 *7 *8)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))))
-(((*1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1146)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-1088 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
-(((*1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1146)))))
-(((*1 *2)
- (-12 (-5 *2 (-892)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-892)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-400 (-923 *5)))) (-5 *4 (-621 (-1143)))
- (-4 *5 (-541)) (-5 *2 (-621 (-621 (-923 *5)))) (-5 *1 (-1149 *5)))))
-(((*1 *1 *2 *2 *2 *2 *2 *2 *2 *2)
- (-12 (-4 *1 (-773 *2)) (-4 *2 (-170))))
- ((*1 *1 *2 *2)
- (-12 (-5 *2 (-970 *3)) (-4 *3 (-170)) (-5 *1 (-775 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-898))
- (-5 *2
- (-2 (|:| |brans| (-621 (-621 (-914 (-219)))))
- (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))))
- (-5 *1 (-151))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-898)) (-5 *4 (-400 (-549)))
- (-5 *2
- (-2 (|:| |brans| (-621 (-621 (-914 (-219)))))
- (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))))
- (-5 *1 (-151))))
- ((*1 *2 *3)
- (-12
- (-5 *2
- (-2 (|:| |brans| (-621 (-621 (-914 (-219)))))
- (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))))
- (-5 *1 (-151)) (-5 *3 (-621 (-914 (-219))))))
- ((*1 *2 *3)
- (-12
- (-5 *2
- (-2 (|:| |brans| (-621 (-621 (-914 (-219)))))
- (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))))
- (-5 *1 (-151)) (-5 *3 (-621 (-621 (-914 (-219)))))))
- ((*1 *1 *2) (-12 (-5 *2 (-621 (-1061 (-372)))) (-5 *1 (-256))))
- ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-256)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
- (-5 *2
- (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549))
- (|:| |success| (-112))))
- (-5 *1 (-765)) (-5 *5 (-549)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-238 *2)) (-4 *2 (-1180))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1180))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1180))))
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-624 *3)) (-4 *3 (-1018))
+ (-5 *1 (-691 *3 *4))))
((*1 *1 *1 *2)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-1214 *2)) (-4 *2 (-1180))))
- ((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-1214 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-133))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-809 *3)) (-4 *3 (-1067))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-816 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-747)) (-5 *2 (-112))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-1181 *3)) (-4 *3 (-823))
- (-4 *3 (-1067)))))
-(((*1 *1 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-1180)) (-4 *2 (-823))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-810 *3)))))
+(((*1 *1 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-1179)) (-4 *2 (-823))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-366 *3)) (-4 *3 (-1180))))
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-366 *3)) (-4 *3 (-1179))))
((*1 *2 *2)
- (-12 (-5 *2 (-621 (-876 *3))) (-5 *1 (-876 *3)) (-4 *3 (-1067))))
+ (-12 (-5 *2 (-621 (-876 *3))) (-5 *1 (-876 *3)) (-4 *3 (-1066))))
((*1 *2 *1 *3)
(-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823))
(-4 *6 (-1032 *4 *5 *3))
- (-5 *2 (-2 (|:| |under| *1) (|:| -3967 *1) (|:| |upper| *1)))
+ (-5 *2 (-2 (|:| |under| *1) (|:| -1349 *1) (|:| |upper| *1)))
(-4 *1 (-947 *4 *5 *3 *6)))))
-(((*1 *1) (-5 *1 (-142)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-254))))
- ((*1 *1 *2) (-12 (-5 *2 (-1100 (-219))) (-5 *1 (-256)))))
-(((*1 *2 *3) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-546)) (-5 *3 (-549)))))
-(((*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-747)) (-5 *1 (-571)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-2 (|:| |totdeg| (-747)) (|:| -3028 *4))) (-5 *5 (-747))
- (-4 *4 (-920 *6 *7 *8)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
- (-5 *2
- (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-5 *1 (-441 *6 *7 *8 *4)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-621 *6)) (-4 *1 (-920 *4 *5 *6)) (-4 *4 (-1018))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-747))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-920 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-823)) (-5 *2 (-747)))))
-(((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-779)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1218 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1143))
- (-14 *4 *2))))
(((*1 *2 *1)
- (-12 (-4 *4 (-1067)) (-5 *2 (-860 *3 *5)) (-5 *1 (-856 *3 *4 *5))
- (-4 *3 (-1067)) (-4 *5 (-642 *4)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5))
- (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *1 (-1239 *3 *4 *5 *6))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-621 *8)) (-5 *3 (-1 (-112) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541))
- (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1239 *5 *6 *7 *8)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-52))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))))
+ (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
+ (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))))
+(((*1 *2 *1) (-12 (-4 *1 (-342)) (-5 *2 (-747))))
+ ((*1 *2 *1 *1) (|partial| -12 (-4 *1 (-395)) (-5 *2 (-747)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1226 *4)) (-4 *4 (-617 (-549)))
- (-5 *2 (-1226 (-400 (-549)))) (-5 *1 (-1253 *4)))))
-(((*1 *1 *1 *1) (-4 *1 (-141)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2))
- (-4 *2 (-423 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534))))
- ((*1 *1 *1 *1) (-5 *1 (-834)))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-549))) (-5 *1 (-1016))
- (-5 *3 (-549)))))
+ (-12 (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-541))
+ (-4 *7 (-920 *3 *5 *6))
+ (-5 *2 (-2 (|:| -1714 (-747)) (|:| -1569 *8) (|:| |radicand| *8)))
+ (-5 *1 (-924 *5 *6 *3 *7 *8)) (-5 *4 (-747))
+ (-4 *8
+ (-13 (-356)
+ (-10 -8 (-15 -1392 (*7 $)) (-15 -1404 (*7 $)) (-15 -3845 ($ *7))))))))
+(((*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1179)))))
+(((*1 *1 *1 *1) (-5 *1 (-834))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1142)) (-5 *2 (-621 (-936))) (-5 *1 (-284)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1018)) (-5 *2 (-549)) (-5 *1 (-435 *4 *3 *5))
+ (-4 *3 (-1201 *4))
+ (-4 *5 (-13 (-397) (-1009 *4) (-356) (-1164) (-277))))))
+(((*1 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170))))
+ ((*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))))
(((*1 *2 *1)
- (-12 (-4 *4 (-1067)) (-5 *2 (-860 *3 *4)) (-5 *1 (-856 *3 *4 *5))
- (-4 *3 (-1067)) (-4 *5 (-642 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))))
-(((*1 *1 *2 *3 *4)
- (-12
- (-5 *3
- (-621
- (-2 (|:| |scalar| (-400 (-549))) (|:| |coeff| (-1139 *2))
- (|:| |logand| (-1139 *2)))))
- (-5 *4 (-621 (-2 (|:| |integrand| *2) (|:| |intvar| *2))))
- (-4 *2 (-356)) (-5 *1 (-567 *2)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-732)))))
+ (-12 (-4 *4 (-1066)) (-5 *2 (-860 *3 *5)) (-5 *1 (-856 *3 *4 *5))
+ (-4 *3 (-1066)) (-4 *5 (-642 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-169)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *2 (-1032 *4 *5 *6)) (-5 *1 (-752 *4 *5 *6 *2 *3))
+ (-4 *3 (-1038 *4 *5 *6 *2)))))
+(((*1 *2)
+ (-12 (-4 *3 (-541)) (-5 *2 (-621 (-665 *3))) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-410 *3)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-549)) (|has| *1 (-6 -4338)) (-4 *1 (-1214 *3))
- (-4 *3 (-1180)))))
-(((*1 *1 *2 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1180))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-1123 *2)) (-4 *2 (-1180)))))
+ (-12 (-5 *2 (-747)) (-4 *1 (-367 *3 *4)) (-4 *3 (-823))
+ (-4 *4 (-170))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-747)) (-4 *1 (-1246 *3 *4)) (-4 *3 (-823))
+ (-4 *4 (-1018)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-564)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-5 *1 (-216 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-4 *1 (-247 *3))))
+ ((*1 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1179)))))
+(((*1 *1 *2 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1179))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-1122 *2)) (-4 *2 (-1179)))))
+(((*1 *1 *1 *2 *2)
+ (|partial| -12 (-5 *2 (-892)) (-5 *1 (-1067 *3 *4)) (-14 *3 *2)
+ (-14 *4 *2))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1217 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1142))
+ (-14 *4 *2))))
(((*1 *2 *3)
- (-12 (-4 *3 (-1202 (-400 (-549))))
- (-5 *2 (-2 (|:| |den| (-549)) (|:| |gcdnum| (-549))))
- (-5 *1 (-884 *3 *4)) (-4 *4 (-1202 (-400 *3)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-1202 (-400 *2))) (-5 *2 (-549)) (-5 *1 (-884 *4 *3))
- (-4 *3 (-1202 (-400 *4))))))
-(((*1 *2 *3 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219))
- (-5 *2 (-1006)) (-5 *1 (-729)))))
-(((*1 *1) (-4 *1 (-342))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 *4))
- (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *3 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-658 *2)) (-4 *2 (-1066))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 (-621 *5) (-621 *5))) (-5 *4 (-549))
+ (-5 *2 (-621 *5)) (-5 *1 (-658 *5)) (-4 *5 (-1066)))))
+(((*1 *2 *3 *3 *3 *4 *3)
(-12 (-5 *3 (-549)) (-5 *4 (-665 (-167 (-219)))) (-5 *2 (-1006))
- (-5 *1 (-733)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-632 *3)) (-4 *3 (-1018)) (-4 *3 (-356))))
- ((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-747)) (-5 *4 (-1 *5 *5)) (-4 *5 (-356))
- (-5 *1 (-635 *5 *2)) (-4 *2 (-632 *5)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-444)) (-4 *3 (-769)) (-4 *5 (-823)) (-5 *2 (-112))
- (-5 *1 (-441 *4 *3 *5 *6)) (-4 *6 (-920 *4 *3 *5)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-395)) (-5 *2 (-747))))
- ((*1 *1 *1) (-4 *1 (-395))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-621 (-1143))) (-4 *4 (-1067))
- (-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4))))
- (-5 *1 (-54 *4 *5 *2))
- (-4 *2 (-13 (-423 *5) (-857 *4) (-594 (-863 *4)))))))
-(((*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))))
+ (-5 *1 (-731)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *6 *5))
- (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143))))
- (-4 *6 (-769)) (-5 *2 (-112)) (-5 *1 (-895 *4 *5 *6 *7))))
+ (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170))
+ (-5 *2 (-621 (-923 *4)))))
+ ((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-621 (-923 *4))) (-5 *1 (-409 *3 *4))
+ (-4 *3 (-410 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-621 (-923 *3)))))
+ ((*1 *2)
+ (-12 (-5 *2 (-621 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
+ (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3)))))
((*1 *2 *3)
- (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-13 (-300) (-145)))
- (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *2 (-112))
- (-5 *1 (-895 *4 *5 *6 *7)) (-4 *7 (-920 *4 *6 *5)))))
-(((*1 *1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-112)) (-5 *1 (-863 *4))
- (-4 *4 (-1067)))))
+ (-12 (-5 *3 (-1225 (-445 *4 *5 *6 *7))) (-5 *2 (-621 (-923 *4)))
+ (-5 *1 (-445 *4 *5 *6 *7)) (-4 *4 (-541)) (-4 *4 (-170))
+ (-14 *5 (-892)) (-14 *6 (-621 (-1142))) (-14 *7 (-1225 (-665 *4))))))
+(((*1 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-621 *4)) (-4 *4 (-356)) (-5 *2 (-1225 *4))
+ (-5 *1 (-790 *4 *3)) (-4 *3 (-632 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-1138 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1209 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1186 *3))
- (-5 *2 (-400 (-549))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-860 *4 *5)) (-5 *3 (-860 *4 *6)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *6 (-642 *5)) (-5 *1 (-856 *4 *5 *6)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1018)) (-5 *2 (-549)) (-5 *1 (-435 *4 *3 *5))
- (-4 *3 (-1202 *4))
- (-4 *5 (-13 (-397) (-1009 *4) (-356) (-1165) (-277))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-444) (-145))) (-5 *2 (-411 *3))
- (-5 *1 (-99 *4 *3)) (-4 *3 (-1202 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 *3)) (-4 *3 (-1202 *5)) (-4 *5 (-13 (-444) (-145)))
- (-5 *2 (-411 *3)) (-5 *1 (-99 *5 *3)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-1202 *3)) (-4 *3 (-1018)))))
+ (-12 (-4 *2 (-920 *3 *5 *4)) (-5 *1 (-958 *3 *4 *5 *2))
+ (-4 *3 (-444)) (-4 *4 (-823)) (-4 *5 (-769)))))
(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-621 (-1139 *7))) (-5 *3 (-1139 *7))
- (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-880)) (-4 *5 (-769))
- (-4 *6 (-823)) (-5 *1 (-877 *4 *5 *6 *7))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-621 (-1139 *5))) (-5 *3 (-1139 *5))
- (-4 *5 (-1202 *4)) (-4 *4 (-880)) (-5 *1 (-878 *4 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-126 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-834)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769))
- (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1226 *6)) (-5 *4 (-1226 (-549))) (-5 *5 (-549))
- (-4 *6 (-1067)) (-5 *2 (-1 *6)) (-5 *1 (-988 *6)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-300))))
- ((*1 *2 *1 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |lm| (-379 *3)) (|:| |rm| (-379 *3))))
- (-5 *1 (-379 *3)) (-4 *3 (-1067))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -4013 (-747)) (|:| -3675 (-747))))
- (-5 *1 (-747))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3)))
- (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))))
-(((*1 *1 *1 *1)
- (|partial| -12 (-4 *2 (-170)) (-5 *1 (-282 *2 *3 *4 *5 *6 *7))
- (-4 *3 (-1202 *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 (-688 *2 *3 *4 *5 *6)) (-4 *2 (-170))
- (-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 *1)
- (|partial| -12 (-5 *1 (-692 *2 *3 *4 *5 *6)) (-4 *2 (-170))
- (-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 *1 *3 *4 *4 *5)
- (-12 (-5 *3 (-914 (-219))) (-5 *4 (-845)) (-5 *5 (-892))
- (-5 *2 (-1231)) (-5 *1 (-460))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-914 (-219))) (-5 *2 (-1231)) (-5 *1 (-460))))
- ((*1 *2 *1 *3 *4 *4 *5)
- (-12 (-5 *3 (-621 (-914 (-219)))) (-5 *4 (-845)) (-5 *5 (-892))
- (-5 *2 (-1231)) (-5 *1 (-460)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-323)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-372)) (-5 *1 (-96))))
- ((*1 *2 *3 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-372)) (-5 *1 (-96)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-444)) (-4 *4 (-541))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2558 *4)))
- (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))))
+ (-12 (-5 *3 (-1142)) (-4 *4 (-541)) (-4 *4 (-823))
+ (-5 *1 (-558 *4 *2)) (-4 *2 (-423 *4)))))
+(((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *2 (-1006))
+ (-5 *1 (-732)))))
+(((*1 *2)
+ (-12 (-4 *3 (-1018)) (-5 *2 (-929 (-689 *3 *4))) (-5 *1 (-689 *3 *4))
+ (-4 *4 (-1201 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-400 (-549))) (-5 *4 (-549)) (-5 *2 (-52))
+ (-5 *1 (-976)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-342))
- (-5 *2 (-621 (-2 (|:| |deg| (-747)) (|:| -1968 *3))))
- (-5 *1 (-210 *4 *3)) (-4 *3 (-1202 *4)))))
+ (-12 (-5 *3 (-400 *5)) (-4 *5 (-1201 *4)) (-4 *4 (-541))
+ (-4 *4 (-1018)) (-4 *2 (-1216 *4)) (-5 *1 (-1219 *4 *5 *6 *2))
+ (-4 *6 (-632 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1067)) (-4 *6 (-1067))
- (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-660 *4 *5 *6)) (-4 *5 (-1067)))))
-(((*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
+ (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-4 *5 (-423 *4))
+ (-5 *2
+ (-3 (|:| |overq| (-1138 (-400 (-549))))
+ (|:| |overan| (-1138 (-48))) (|:| -4150 (-112))))
+ (-5 *1 (-428 *4 *5 *3)) (-4 *3 (-1201 *5)))))
+(((*1 *2 *3 *3 *3 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1201 *5)) (-4 *5 (-356))
+ (-5 *2 (-2 (|:| -4039 (-411 *3)) (|:| |special| (-411 *3))))
+ (-5 *1 (-704 *5 *3)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1142)) (-5 *4 (-923 (-549))) (-5 *2 (-323))
+ (-5 *1 (-325)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-892)) (-5 *4 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1226)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
+ (-4 *3 (-1032 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-621 *4))
+ (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4))))))
+ (-5 *1 (-1036 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-621 *4))
+ (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4))))))
+ (-5 *1 (-1111 *5 *6 *7 *3 *4)) (-4 *4 (-1075 *5 *6 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *3 (-1201 (-400 (-549))))
+ (-5 *2 (-2 (|:| |den| (-549)) (|:| |gcdnum| (-549))))
+ (-5 *1 (-884 *3 *4)) (-4 *4 (-1201 (-400 *3)))))
((*1 *2 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-799)) (-5 *2 (-1231)) (-5 *1 (-798)))))
+ (-12 (-4 *4 (-1201 (-400 *2))) (-5 *2 (-549)) (-5 *1 (-884 *4 *3))
+ (-4 *3 (-1201 (-400 *4))))))
(((*1 *2 *3 *3 *4)
(-12 (-5 *4 (-747)) (-4 *5 (-541))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-940 *5 *3)) (-4 *3 (-1202 *5)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
- (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-665 *2)) (-4 *4 (-1202 *2))
- (-4 *2 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $)))))
- (-5 *1 (-490 *2 *4 *5)) (-4 *5 (-402 *2 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1090 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2))
- (-4 *5 (-232 *3 *2)) (-4 *2 (-1018)))))
-(((*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1139 *4)) (-4 *4 (-342))
- (-4 *2
- (-13 (-395)
- (-10 -7 (-15 -3846 (*2 *4)) (-15 -1881 ((-892) *2))
- (-15 -1949 ((-1226 *2) (-892))) (-15 -1933 (*2 *2)))))
- (-5 *1 (-349 *2 *4)))))
-(((*1 *1 *1 *1) (-5 *1 (-834))))
-(((*1 *2 *3 *4 *4 *5 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
- (-5 *2 (-1006)) (-5 *1 (-729)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-541) (-145))) (-5 *1 (-526 *3 *2))
- (-4 *2 (-1217 *3))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-4 *4 (-1202 *3))
- (-4 *5 (-701 *3 *4)) (-5 *1 (-530 *3 *4 *5 *2)) (-4 *2 (-1217 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-5 *1 (-531 *3 *2))
- (-4 *2 (-1217 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-13 (-541) (-145)))
- (-5 *1 (-1119 *3)))))
+ (-5 *2
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-940 *5 *3)) (-4 *3 (-1201 *5)))))
+(((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *4 (-1 (-3 (-549) "failed") *5)) (-4 *5 (-1018))
+ (-5 *2 (-549)) (-5 *1 (-532 *5 *3)) (-4 *3 (-1201 *5))))
+ ((*1 *2 *3 *4 *2 *5)
+ (|partial| -12 (-5 *5 (-1 (-3 (-549) "failed") *4)) (-4 *4 (-1018))
+ (-5 *2 (-549)) (-5 *1 (-532 *4 *3)) (-4 *3 (-1201 *4))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1 (-3 (-549) "failed") *4)) (-4 *4 (-1018))
+ (-5 *2 (-549)) (-5 *1 (-532 *4 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
+ (-4 *2 (-423 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1105))))
+(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1061 *3)) (-5 *1 (-1059 *3)) (-4 *3 (-1180))))
- ((*1 *1 *2 *2) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1180))))
- ((*1 *1 *2) (-12 (-5 *1 (-1193 *2)) (-4 *2 (-1180)))))
+ (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-973))
+ (-4 *2 (-1018)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-112)) (-5 *5 (-665 (-167 (-219))))
+ (-5 *2 (-1006)) (-5 *1 (-732)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1086)) (-5 *1 (-323)))))
+(((*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3)
+ (-12 (-5 *4 (-621 (-112))) (-5 *5 (-665 (-219)))
+ (-5 *6 (-665 (-549))) (-5 *7 (-219)) (-5 *3 (-549)) (-5 *2 (-1006))
+ (-5 *1 (-731)))))
+(((*1 *2 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-1124)) (-5 *5 (-665 (-219)))
+ (-5 *2 (-1006)) (-5 *1 (-724)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-621 (-549))) (-5 *1 (-241 *3 *4))
+ (-14 *3 (-621 (-1142))) (-4 *4 (-1018))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-621 (-549))) (-14 *3 (-621 (-1142)))
+ (-5 *1 (-446 *3 *4 *5)) (-4 *4 (-1018))
+ (-4 *5 (-232 (-3774 *3) (-747)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-621 (-549))) (-5 *1 (-473 *3 *4))
+ (-14 *3 (-621 (-1142))) (-4 *4 (-1018)))))
+(((*1 *2 *2) (-12 (-5 *1 (-932 *2)) (-4 *2 (-534)))))
(((*1 *2 *3 *2)
- (-12 (-5 *2 (-621 (-621 (-621 *4)))) (-5 *3 (-621 *4)) (-4 *4 (-823))
- (-5 *1 (-1151 *4)))))
+ (-12 (-5 *2 (-892)) (-5 *3 (-621 (-256))) (-5 *1 (-254))))
+ ((*1 *1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-256)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-892)) (-5 *1 (-762)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3)
+ (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-729)))))
+(((*1 *2 *3) (-12 (-5 *3 (-798)) (-5 *2 (-52)) (-5 *1 (-805)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-897)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143))))
- (-4 *6 (-769)) (-5 *2 (-621 *3)) (-5 *1 (-895 *4 *5 *6 *3))
- (-4 *3 (-920 *4 *6 *5)))))
+ (-12 (-5 *2 (-834)) (-5 *1 (-383 *3 *4 *5)) (-14 *3 (-747))
+ (-14 *4 (-747)) (-4 *5 (-170)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300))
- (-5 *2 (-621 (-747))) (-5 *1 (-754 *3 *4 *5 *6 *7))
- (-4 *3 (-1202 *6)) (-4 *7 (-920 *6 *4 *5)))))
-(((*1 *2 *3 *3 *4 *4 *4 *3)
+ (-12
+ (-5 *3
+ (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))))
+ (-5 *2 (-621 (-219))) (-5 *1 (-298)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-747)) (-4 *4 (-356)) (-5 *1 (-867 *2 *4))
+ (-4 *2 (-1201 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-538)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1060 *3)) (-5 *1 (-1058 *3)) (-4 *3 (-1179))))
+ ((*1 *1 *2 *2) (-12 (-4 *1 (-1059 *2)) (-4 *2 (-1179))))
+ ((*1 *1 *2) (-12 (-5 *1 (-1192 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-1018)) (-5 *1 (-436 *3 *2)) (-4 *2 (-1201 *3)))))
+(((*1 *2)
+ (-12 (-4 *1 (-342))
+ (-5 *2 (-621 (-2 (|:| -2119 (-549)) (|:| -1714 (-549))))))))
+(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
(-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-733)))))
+ (-5 *1 (-728)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1138 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))))
+(((*1 *1 *1 *1) (-5 *1 (-834))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1179)))))
(((*1 *2 *1)
(-12 (-5 *2 (-747)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549))
(-14 *4 *2) (-4 *5 (-170))))
@@ -6428,17 +6724,17 @@
(-4 *3 (-164 *4))))
((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-892))))
((*1 *2)
- (-12 (-4 *1 (-363 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1202 *3))
+ (-12 (-4 *1 (-363 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1201 *3))
(-5 *2 (-892))))
((*1 *2 *3)
(-12 (-4 *4 (-356)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4))
(-5 *2 (-747)) (-5 *1 (-512 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-665 *5)) (-5 *4 (-1226 *5)) (-4 *5 (-356))
+ (-12 (-5 *3 (-665 *5)) (-5 *4 (-1225 *5)) (-4 *5 (-356))
(-5 *2 (-747)) (-5 *1 (-643 *5))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-356)) (-4 *6 (-13 (-366 *5) (-10 -7 (-6 -4338))))
- (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4338)))) (-5 *2 (-747))
+ (-12 (-4 *5 (-356)) (-4 *6 (-13 (-366 *5) (-10 -7 (-6 -4337))))
+ (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4337)))) (-5 *2 (-747))
(-5 *1 (-644 *5 *6 *4 *3)) (-4 *3 (-663 *5 *6 *4))))
((*1 *2 *1)
(-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3))
@@ -6451,1419 +6747,1481 @@
(-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
(-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-4 *5 (-541))
(-5 *2 (-747)))))
-(((*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7)
- (-12 (-5 *3 (-549)) (-5 *5 (-112)) (-5 *6 (-665 (-219)))
- (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN))))
- (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-730)))))
-(((*1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-211)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-923 *5)) (-4 *5 (-1018)) (-5 *2 (-241 *4 *5))
- (-5 *1 (-915 *4 *5)) (-14 *4 (-621 (-1143))))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-549))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-549))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-549)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-697)) (-5 *2 (-892))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-699)) (-5 *2 (-747)))))
-(((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-411 *3)) (-4 *3 (-541))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-2 (|:| -2121 *4) (|:| -3701 (-549)))))
- (-4 *4 (-1202 (-549))) (-5 *2 (-747)) (-5 *1 (-434 *4)))))
+(((*1 *2 *3 *1) (-12 (-5 *3 (-1142)) (-5 *2 (-1146)) (-5 *1 (-1145)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *1 (-58 *3)) (-4 *3 (-1179))))
+ ((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-5 *1 (-58 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-112)) (-5 *3 (-621 (-256))) (-5 *1 (-254))))
+ ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-256))))
+ ((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459))))
+ ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1213 *3)) (-4 *3 (-1179)) (-5 *2 (-747)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112))
- (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-342)) (-4 *2 (-1018)) (-5 *1 (-689 *2 *3))
- (-4 *3 (-1202 *2)))))
-(((*1 *2 *1 *2)
- (-12 (-4 *1 (-357 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1067)))))
-(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-834)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
-(((*1 *2 *1) (-12 (-5 *2 (-181)) (-5 *1 (-273)))))
-(((*1 *1 *1 *1 *2 *3)
- (-12 (-5 *2 (-914 *5)) (-5 *3 (-747)) (-4 *5 (-1018))
- (-5 *1 (-1131 *4 *5)) (-14 *4 (-892)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-541) (-823)))
- (-4 *2 (-13 (-423 *4) (-973) (-1165))) (-5 *1 (-580 *4 *2 *3))
- (-4 *3 (-13 (-423 (-167 *4)) (-973) (-1165))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1202 *2)) (-4 *2 (-1184)) (-5 *1 (-146 *2 *4 *3))
- (-4 *3 (-1202 (-400 *4))))))
+ (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018))
+ (-5 *2 (-621 (-621 (-621 (-914 *3))))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 *5)) (-4 *5 (-423 *4)) (-4 *4 (-13 (-823) (-541)))
- (-5 *2 (-834)) (-5 *1 (-32 *4 *5)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-747)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
- (-4 *3 (-1032 *6 *7 *8))
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
+ (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
+ (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
+ (|:| |abserr| (-219)) (|:| |relerr| (-219))))
+ (-5 *2 (-372)) (-5 *1 (-199)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-372)) (-5 *1 (-96))))
+ ((*1 *2 *3 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-372)) (-5 *1 (-96)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
+ (-4 *2 (-423 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1105))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1201 *4)) (-4 *4 (-1183))
+ (-4 *6 (-1201 (-400 *5)))
(-5 *2
- (-2 (|:| |done| (-621 *4))
- (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4))))))
- (-5 *1 (-1036 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3))))
+ (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5)
+ (|:| |gd| *5)))
+ (-4 *1 (-335 *4 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-400 (-923 (-167 (-549))))))
+ (-5 *2 (-621 (-621 (-287 (-923 (-167 *4)))))) (-5 *1 (-371 *4))
+ (-4 *4 (-13 (-356) (-821)))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-621 *4))
- (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4))))))
- (-5 *1 (-1036 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-747)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
- (-4 *3 (-1032 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-621 *4))
- (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4))))))
- (-5 *1 (-1112 *6 *7 *8 *3 *4)) (-4 *4 (-1076 *6 *7 *8 *3))))
+ (-12 (-5 *3 (-621 (-287 (-400 (-923 (-167 (-549)))))))
+ (-5 *2 (-621 (-621 (-287 (-923 (-167 *4)))))) (-5 *1 (-371 *4))
+ (-4 *4 (-13 (-356) (-821)))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-621 *4))
- (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4))))))
- (-5 *1 (-1112 *5 *6 *7 *3 *4)) (-4 *4 (-1076 *5 *6 *7 *3)))))
+ (-12 (-5 *3 (-400 (-923 (-167 (-549)))))
+ (-5 *2 (-621 (-287 (-923 (-167 *4))))) (-5 *1 (-371 *4))
+ (-4 *4 (-13 (-356) (-821)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-287 (-400 (-923 (-167 (-549))))))
+ (-5 *2 (-621 (-287 (-923 (-167 *4))))) (-5 *1 (-371 *4))
+ (-4 *4 (-13 (-356) (-821))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-549)) (-4 *4 (-1202 (-400 *3))) (-5 *2 (-892))
- (-5 *1 (-884 *4 *5)) (-4 *5 (-1202 (-400 *4))))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-372)) (-5 *1 (-96)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *1) (-5 *1 (-430))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-621 (-549))) (-5 *1 (-1077)) (-5 *3 (-549)))))
-(((*1 *2 *3 *4 *3 *3)
- (-12 (-5 *3 (-287 *6)) (-5 *4 (-114)) (-4 *6 (-423 *5))
- (-4 *5 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52))
- (-5 *1 (-310 *5 *6))))
- ((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-287 *7)) (-5 *4 (-114)) (-5 *5 (-621 *7))
- (-4 *7 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525))))
- (-5 *2 (-52)) (-5 *1 (-310 *6 *7))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-621 (-287 *7))) (-5 *4 (-621 (-114))) (-5 *5 (-287 *7))
- (-4 *7 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525))))
- (-5 *2 (-52)) (-5 *1 (-310 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-621 (-287 *8))) (-5 *4 (-621 (-114))) (-5 *5 (-287 *8))
- (-5 *6 (-621 *8)) (-4 *8 (-423 *7))
- (-4 *7 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52))
- (-5 *1 (-310 *7 *8))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-621 *7)) (-5 *4 (-621 (-114))) (-5 *5 (-287 *7))
- (-4 *7 (-423 *6)) (-4 *6 (-13 (-823) (-541) (-594 (-525))))
- (-5 *2 (-52)) (-5 *1 (-310 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 (-114))) (-5 *6 (-621 (-287 *8)))
- (-4 *8 (-423 *7)) (-5 *5 (-287 *8))
- (-4 *7 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52))
- (-5 *1 (-310 *7 *8))))
- ((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-287 *5)) (-5 *4 (-114)) (-4 *5 (-423 *6))
- (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52))
- (-5 *1 (-310 *6 *5))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-114)) (-5 *5 (-287 *3)) (-4 *3 (-423 *6))
- (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52))
- (-5 *1 (-310 *6 *3))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-114)) (-5 *5 (-287 *3)) (-4 *3 (-423 *6))
- (-4 *6 (-13 (-823) (-541) (-594 (-525)))) (-5 *2 (-52))
- (-5 *1 (-310 *6 *3))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-114)) (-5 *5 (-287 *3)) (-5 *6 (-621 *3))
- (-4 *3 (-423 *7)) (-4 *7 (-13 (-823) (-541) (-594 (-525))))
- (-5 *2 (-52)) (-5 *1 (-310 *7 *3)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-747)) (-4 *4 (-1018))
- (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-1202 *4)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 (-2 (|:| -2121 (-1139 *6)) (|:| -3731 (-549)))))
- (-4 *6 (-300)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112))
- (-5 *1 (-719 *4 *5 *6 *7)) (-4 *7 (-920 *6 *4 *5))))
- ((*1 *1 *1) (-12 (-4 *1 (-1101 *2)) (-4 *2 (-1018)))))
-(((*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-1125)) (-5 *1 (-762)))))
-(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-372)) (-5 *3 (-1125)) (-5 *1 (-96))))
- ((*1 *2 *3 *2) (-12 (-5 *2 (-372)) (-5 *3 (-1125)) (-5 *1 (-96)))))
-(((*1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1150)))))
-(((*1 *1) (-5 *1 (-779))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 (-621 *8))) (-5 *3 (-621 *8))
- (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769))
- (-4 *7 (-823)) (-5 *2 (-112)) (-5 *1 (-948 *5 *6 *7 *8)))))
+ (-12 (-5 *3 (-621 (-1124))) (-5 *2 (-1124)) (-5 *1 (-186))))
+ ((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))))
+(((*1 *2 *1) (-12 (-5 *2 (-181)) (-5 *1 (-273)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-219)) (-5 *2 (-112)) (-5 *1 (-292 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3)))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1060 (-816 (-219)))) (-5 *3 (-219)) (-5 *2 (-112))
+ (-5 *1 (-298))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112))
+ (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1069 *3)) (-5 *1 (-875 *3)) (-4 *3 (-1067))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1069 *3)) (-5 *1 (-876 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-305)) (-5 *1 (-805)))))
+ (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823))
+ (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-914 *5)) (-5 *3 (-747)) (-4 *5 (-1018))
+ (-5 *1 (-1130 *4 *5)) (-14 *4 (-892)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-834)) (-5 *1 (-1122 *3)) (-4 *3 (-1066))
+ (-4 *3 (-1179)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-473 *4 *5))) (-14 *4 (-621 (-1143)))
- (-4 *5 (-444))
- (-5 *2
- (-2 (|:| |gblist| (-621 (-241 *4 *5)))
- (|:| |gvlist| (-621 (-549)))))
- (-5 *1 (-609 *4 *5)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1201 (-549)))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1201 (-549))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
- (|:| |relerr| (-219))))
- (-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 (-186)))))
-(((*1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1229))))
- ((*1 *2 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1229)))))
-(((*1 *2 *3 *4 *2 *5)
- (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 (-863 *6)))
- (-5 *5 (-1 (-860 *6 *8) *8 (-863 *6) (-860 *6 *8))) (-4 *6 (-1067))
- (-4 *8 (-13 (-1018) (-594 (-863 *6)) (-1009 *7)))
- (-5 *2 (-860 *6 *8)) (-4 *7 (-13 (-1018) (-823)))
- (-5 *1 (-912 *6 *7 *8)))))
-(((*1 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-300)) (-5 *1 (-676 *3)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1139 *7))
- (-4 *5 (-1018)) (-4 *7 (-1018)) (-4 *2 (-1202 *5))
- (-5 *1 (-492 *5 *2 *6 *7)) (-4 *6 (-1202 *2)))))
-(((*1 *2 *1 *1 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1)))
- (-4 *1 (-300))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4248 *1)))
- (-4 *1 (-300)))))
+ (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4)
+ (-241 *4 (-400 (-549)))))
+ (-14 *4 (-621 (-1142))) (-14 *5 (-747)) (-5 *2 (-112))
+ (-5 *1 (-496 *4 *5)))))
(((*1 *1 *1 *2)
- (-12 (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1067) (-34)))
- (-4 *3 (-13 (-1067) (-34))))))
+ (-12 (-5 *2 (-1138 *3)) (-4 *3 (-361)) (-4 *1 (-322 *3))
+ (-4 *3 (-356)))))
+(((*1 *2 *3) (-12 (-5 *3 (-112)) (-5 *2 (-1124)) (-5 *1 (-52)))))
+(((*1 *2 *2 *3 *4 *5)
+ (-12 (-5 *2 (-621 *9)) (-5 *3 (-1 (-112) *9))
+ (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9))
+ (-4 *9 (-1032 *6 *7 *8)) (-4 *6 (-541)) (-4 *7 (-769))
+ (-4 *8 (-823)) (-5 *1 (-948 *6 *7 *8 *9)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-800)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-287 (-923 (-549))))
+ (-5 *2
+ (-2 (|:| |varOrder| (-621 (-1142)))
+ (|:| |inhom| (-3 (-621 (-1225 (-747))) "failed"))
+ (|:| |hom| (-621 (-1225 (-747))))))
+ (-5 *1 (-230)))))
+(((*1 *2) (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-104)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1138 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1138 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1122 *4)) (-5 *3 (-1 *4 (-549))) (-4 *4 (-1018))
+ (-5 *1 (-1126 *4)))))
+(((*1 *2)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-5 *2 (-665 (-400 *4))))))
+(((*1 *1 *1) (-12 (-5 *1 (-172 *2)) (-4 *2 (-300)))))
+(((*1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-805)))))
+(((*1 *2 *2 *3 *4 *4)
+ (-12 (-5 *4 (-549)) (-4 *3 (-170)) (-4 *5 (-366 *3))
+ (-4 *6 (-366 *3)) (-5 *1 (-664 *3 *5 *6 *2))
+ (-4 *2 (-663 *3 *5 *6)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170)))))
+(((*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))))
+(((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
+ (-4 *3 (-360 *4))))
+ ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-845)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))))
+(((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-1228)))))
(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-239 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-834)) (-5 *1 (-383 *3 *4 *5)) (-14 *3 (-747))
- (-14 *4 (-747)) (-4 *5 (-170)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-541))
- (-5 *2 (-2 (|:| -3521 (-665 *5)) (|:| |vec| (-1226 (-621 (-892))))))
- (-5 *1 (-89 *5 *3)) (-5 *4 (-892)) (-4 *3 (-632 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-5 *1 (-1154 *2)) (-4 *2 (-356)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-747)) (-4 *5 (-541))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-940 *5 *3)) (-4 *3 (-1202 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *2)) (-4 *2 (-170))))
- ((*1 *2) (-12 (-4 *2 (-170)) (-5 *1 (-409 *3 *2)) (-4 *3 (-410 *2))))
- ((*1 *2) (-12 (-4 *1 (-410 *2)) (-4 *2 (-170)))))
-(((*1 *2 *1) (-12 (-4 *3 (-1180)) (-5 *2 (-621 *1)) (-4 *1 (-981 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-621 (-400 (-923 (-549))))) (-5 *4 (-621 (-1142)))
+ (-5 *2 (-621 (-621 *5))) (-5 *1 (-373 *5))
+ (-4 *5 (-13 (-821) (-356)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-400 (-923 (-549)))) (-5 *2 (-621 *4)) (-5 *1 (-373 *4))
+ (-4 *4 (-13 (-821) (-356))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1109 *4 *2)) (-14 *4 (-892))
- (-4 *2 (-13 (-1018) (-10 -7 (-6 (-4339 "*")))))
- (-5 *1 (-873 *4 *2)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-541)) (-4 *2 (-1018))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-541)) (-5 *1 (-940 *3 *2)) (-4 *2 (-1202 *3))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *2 (-541))))
- ((*1 *2 *3 *3 *1)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *3 (-1032 *4 *5 *6))
- (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *1))))
- (-4 *1 (-1038 *4 *5 *6 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-429)))))
+ (-12 (-5 *3 (-1060 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-186))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1060 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-293))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1060 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-298)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-356)) (-4 *3 (-1018))
+ (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4247 *1)))
+ (-4 *1 (-825 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-541))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2740 *4)))
+ (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))))
(((*1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *6 (-1125))
- (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-1106 *3 *2)) (-4 *3 (-13 (-1066) (-34)))
+ (-4 *2 (-13 (-1066) (-34))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-621 (-473 *3 *4))) (-14 *3 (-621 (-1142)))
+ (-4 *4 (-444)) (-5 *1 (-609 *3 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-629 *4)) (-4 *4 (-335 *5 *6 *7))
+ (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-4 *6 (-1201 *5)) (-4 *7 (-1201 (-400 *6)))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2619 (-621 *4))))
+ (-5 *1 (-782 *5 *6 *7 *4)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1051)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1210 *3 *4 *5)) (-4 *3 (-13 (-356) (-823)))
+ (-14 *4 (-1142)) (-14 *5 *3) (-5 *1 (-312 *3 *4 *5))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1 (-372))) (-5 *1 (-1011)) (-5 *3 (-372)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5))
+ (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *1 (-1238 *3 *4 *5 *6))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-621 *8)) (-5 *3 (-1 (-112) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541))
+ (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1238 *5 *6 *7 *8)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1225 (-1142))) (-5 *3 (-1225 (-445 *4 *5 *6 *7)))
+ (-5 *1 (-445 *4 *5 *6 *7)) (-4 *4 (-170)) (-14 *5 (-892))
+ (-14 *6 (-621 (-1142))) (-14 *7 (-1225 (-665 *4)))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-445 *4 *5 *6 *7)))
+ (-5 *1 (-445 *4 *5 *6 *7)) (-4 *4 (-170)) (-14 *5 (-892))
+ (-14 *6 (-621 *2)) (-14 *7 (-1225 (-665 *4)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1225 (-445 *3 *4 *5 *6))) (-5 *1 (-445 *3 *4 *5 *6))
+ (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142)))
+ (-14 *6 (-1225 (-665 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1225 (-1142))) (-5 *1 (-445 *3 *4 *5 *6))
+ (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1142)))
+ (-14 *6 (-1225 (-665 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1142)) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-170))
+ (-14 *4 (-892)) (-14 *5 (-621 *2)) (-14 *6 (-1225 (-665 *3)))))
+ ((*1 *1)
+ (-12 (-5 *1 (-445 *2 *3 *4 *5)) (-4 *2 (-170)) (-14 *3 (-892))
+ (-14 *4 (-621 (-1142))) (-14 *5 (-1225 (-665 *2))))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-246 *4 *3 *5 *6)) (-4 *4 (-1018)) (-4 *3 (-823))
+ (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-621 (-747)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823))
+ (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-621 (-747))))))
+(((*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1179)))))
+(((*1 *1 *2) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1164))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892))
- (-4 *4 (-1018)))))
-(((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-350 *3)) (-4 *3 (-342)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-410 *4)))))
-(((*1 *1 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-1180))))
+ (-12 (-4 *1 (-584 *2 *3)) (-4 *3 (-1179)) (-4 *2 (-1066))
+ (-4 *2 (-823)))))
+(((*1 *1 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-1179))))
((*1 *2 *2)
- (-12 (-4 *3 (-1018)) (-5 *1 (-436 *3 *2)) (-4 *2 (-1202 *3))))
+ (-12 (-4 *3 (-1018)) (-5 *1 (-436 *3 *2)) (-4 *2 (-1201 *3))))
((*1 *1 *1)
- (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1067)) (-4 *3 (-23))
+ (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1066)) (-4 *3 (-23))
(-14 *4 *3))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-356)) (-4 *3 (-1018))
- (-5 *1 (-1127 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-342)) (-5 *3 (-549)) (-5 *2 (-1153 (-892) (-747))))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1181 *3)) (-4 *3 (-1067)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1216 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-541)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3))
+ (-5 *1 (-1169 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))))
(((*1 *1 *1)
(-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
(-4 *4 (-823))))
- ((*1 *1) (-4 *1 (-1118))))
-(((*1 *2) (-12 (-5 *2 (-816 (-549))) (-5 *1 (-523))))
- ((*1 *1) (-12 (-5 *1 (-816 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-892)) (-5 *2 (-460)) (-5 *1 (-1227)))))
-(((*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))))
+ ((*1 *1) (-4 *1 (-1117))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-1124)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
+ (-4 *4 (-1032 *6 *7 *8)) (-5 *2 (-1230))
+ (-5 *1 (-752 *6 *7 *8 *4 *5)) (-4 *5 (-1038 *6 *7 *8 *4)))))
(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1188 *3 *2)) (-4 *3 (-1018))
- (-4 *2 (-1217 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-133)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-114))))
+ (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3))
+ (-4 *5 (-366 *3)) (-5 *2 (-549))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
+ (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-549)))))
+(((*1 *2) (-12 (-5 *2 (-816 (-549))) (-5 *1 (-523))))
+ ((*1 *1) (-12 (-5 *1 (-816 *2)) (-4 *2 (-1066)))))
+(((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))))
+(((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1124)) (-5 *1 (-687)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *1) (-5 *1 (-430))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-114))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-1125)) (-4 *4 (-823)) (-5 *1 (-900 *4 *2))
+ (-12 (-5 *3 (-1124)) (-4 *4 (-823)) (-5 *1 (-900 *4 *2))
(-4 *2 (-423 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1143)) (-5 *4 (-1125)) (-5 *2 (-309 (-549)))
+ (-12 (-5 *3 (-1142)) (-5 *4 (-1124)) (-5 *2 (-309 (-549)))
(-5 *1 (-901)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-914 *3)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-1179)) (-4 *2 (-823))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-366 *3)) (-4 *3 (-1179))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-939 *2)) (-4 *2 (-823))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1100 *2)) (-4 *2 (-1018))))
((*1 *1 *2)
- (-12 (-5 *2 (-621 (-914 *3))) (-4 *3 (-1018)) (-4 *1 (-1101 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-621 *3))) (-4 *1 (-1101 *3)) (-4 *3 (-1018))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-914 *3))) (-4 *1 (-1101 *3)) (-4 *3 (-1018)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2)
- (-12 (-4 *4 (-356)) (-5 *2 (-892)) (-5 *1 (-321 *3 *4))
- (-4 *3 (-322 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-356)) (-5 *2 (-809 (-892))) (-5 *1 (-321 *3 *4))
- (-4 *3 (-322 *4))))
- ((*1 *2) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-892))))
- ((*1 *2)
- (-12 (-4 *1 (-1245 *3)) (-4 *3 (-356)) (-5 *2 (-809 (-892))))))
+ (-12 (-5 *2 (-621 *1)) (-4 *1 (-1100 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-621 (-1130 *3 *4))) (-5 *1 (-1130 *3 *4))
+ (-14 *3 (-892)) (-4 *4 (-1018))))
+ ((*1 *1 *1 *1)
+ (-12 (-5 *1 (-1130 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1225 *4)) (-5 *3 (-549)) (-4 *4 (-342))
+ (-5 *1 (-519 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-549)) (-5 *1 (-437 *3)) (-4 *3 (-397)) (-4 *3 (-1018)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -4114 *4)))
+ (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))))
(((*1 *2) (-12 (-5 *2 (-816 (-549))) (-5 *1 (-523))))
- ((*1 *1) (-12 (-5 *1 (-816 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-300) (-145))) (-4 *4 (-13 (-823) (-594 (-1143))))
- (-4 *5 (-769)) (-5 *1 (-895 *3 *4 *5 *2)) (-4 *2 (-920 *3 *5 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-14 *5 (-621 (-1143))) (-4 *2 (-170))
- (-4 *4 (-232 (-3775 *5) (-747)))
- (-14 *6
- (-1 (-112) (-2 (|:| -3493 *3) (|:| -3731 *4))
- (-2 (|:| -3493 *3) (|:| -3731 *4))))
- (-5 *1 (-453 *5 *2 *3 *4 *6 *7)) (-4 *3 (-823))
- (-4 *7 (-920 *2 *4 (-836 *5))))))
-(((*1 *1 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-305)) (-5 *1 (-289))))
+ ((*1 *1) (-12 (-5 *1 (-816 *2)) (-4 *2 (-1066)))))
+(((*1 *2 *1) (-12 (-5 *2 (-411 *3)) (-5 *1 (-885 *3)) (-4 *3 (-300)))))
+(((*1 *1 *1) (-4 *1 (-541))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 (-167 (-219)) (-167 (-219)))) (-5 *4 (-1060 (-219)))
+ (-5 *2 (-1227)) (-5 *1 (-250)))))
+(((*1 *1 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-372)) (-5 *1 (-96))))
+ ((*1 *2 *3 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-372)) (-5 *1 (-96)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-305)) (-5 *1 (-289))))
((*1 *2 *3)
- (-12 (-5 *3 (-621 (-1125))) (-5 *2 (-305)) (-5 *1 (-289))))
- ((*1 *2 *3 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-305)) (-5 *1 (-289))))
+ (-12 (-5 *3 (-621 (-1124))) (-5 *2 (-305)) (-5 *1 (-289))))
+ ((*1 *2 *3 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-305)) (-5 *1 (-289))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 (-1125))) (-5 *3 (-1125)) (-5 *2 (-305))
+ (-12 (-5 *4 (-621 (-1124))) (-5 *3 (-1124)) (-5 *2 (-305))
(-5 *1 (-289)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1199 *5 *4)) (-4 *4 (-796)) (-14 *5 (-1143))
- (-5 *2 (-549)) (-5 *1 (-1081 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-444))
+ (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *1 (-948 *3 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-621 *7)) (-5 *3 (-112)) (-4 *7 (-1032 *4 *5 *6))
+ (-4 *4 (-444)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-5 *1 (-948 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-400 (-549))) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-541)) (-4 *8 (-920 *7 *5 *6))
+ (-5 *2 (-2 (|:| -1714 (-747)) (|:| -1569 *9) (|:| |radicand| *9)))
+ (-5 *1 (-924 *5 *6 *7 *8 *9)) (-5 *4 (-747))
+ (-4 *9
+ (-13 (-356)
+ (-10 -8 (-15 -1392 (*8 $)) (-15 -1404 (*8 $)) (-15 -3845 ($ *8))))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *1 *1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018))
+ (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-227)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-259 *4))
- (-4 *6 (-769)) (-5 *2 (-1 *1 (-747))) (-4 *1 (-246 *3 *4 *5 *6))))
+ (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112))
+ (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-621 *6)) (-4 *6 (-823)) (-4 *4 (-356)) (-4 *5 (-769))
+ (-5 *2 (-112)) (-5 *1 (-495 *4 *5 *6 *7)) (-4 *7 (-920 *4 *5 *6)))))
+(((*1 *1) (-4 *1 (-23))) ((*1 *1) (-4 *1 (-34)))
+ ((*1 *1)
+ (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747))
+ (-4 *4 (-170))))
+ ((*1 *1) (-4 *1 (-703))) ((*1 *1) (-5 *1 (-1142))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-30))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-411 *4) *4)) (-4 *4 (-541)) (-5 *2 (-411 *4))
+ (-5 *1 (-412 *4))))
+ ((*1 *1 *1) (-5 *1 (-897)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-897))))
+ ((*1 *1 *1) (-5 *1 (-898)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-898))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))
+ (-5 *4 (-400 (-549))) (-5 *1 (-991 *3)) (-4 *3 (-1201 (-549)))))
+ ((*1 *2 *3 *2 *2)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))
+ (-5 *1 (-991 *3)) (-4 *3 (-1201 (-549)))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))
+ (-5 *4 (-400 (-549))) (-5 *1 (-992 *3)) (-4 *3 (-1201 *4))))
+ ((*1 *2 *3 *2 *2)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))
+ (-5 *1 (-992 *3)) (-4 *3 (-1201 (-400 (-549))))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3))
+ (-4 *3 (-1201 *2)))))
+(((*1 *2 *3 *4 *4 *5 *6)
+ (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-845))
+ (-5 *5 (-892)) (-5 *6 (-621 (-256))) (-5 *2 (-460)) (-5 *1 (-1229))))
((*1 *2 *3)
- (-12 (-4 *4 (-1018)) (-4 *3 (-823)) (-4 *5 (-259 *3)) (-4 *6 (-769))
- (-5 *2 (-1 *1 (-747))) (-4 *1 (-246 *4 *3 *5 *6))))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-259 *2)) (-4 *2 (-823)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1161)))))
-(((*1 *1 *1)
- (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-170)) (-4 *2 (-541))))
- ((*1 *1 *1) (|partial| -4 *1 (-699))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-648 *3)) (-4 *3 (-823)) (-4 *1 (-367 *3 *4))
- (-4 *4 (-170)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-473 *4 *5))) (-14 *4 (-621 (-1143)))
- (-4 *5 (-444)) (-5 *2 (-621 (-241 *4 *5))) (-5 *1 (-609 *4 *5)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1160)))))
+ (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *2 (-460))
+ (-5 *1 (-1229))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-621 (-256)))
+ (-5 *2 (-460)) (-5 *1 (-1229)))))
+(((*1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1149)))))
+(((*1 *1 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *3 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-729)))))
+(((*1 *2 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1179)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892))
+ (-4 *4 (-1018)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-621 *1)) (-4 *1 (-1101 *3)) (-4 *3 (-1018))))
- ((*1 *2 *2 *1)
- (|partial| -12 (-5 *2 (-400 *1)) (-4 *1 (-1202 *3)) (-4 *3 (-1018))
- (-4 *3 (-541))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-1202 *2)) (-4 *2 (-1018)) (-4 *2 (-541)))))
-(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-845))))
- ((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
+ (-12 (-5 *2 (-400 *4)) (-4 *4 (-1201 *3)) (-4 *3 (-13 (-356) (-145)))
+ (-5 *1 (-392 *3 *4)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-621 *8)) (-5 *3 (-1 (-112) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541))
+ (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-948 *5 *6 *7 *8)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4336)) (-4 *1 (-481 *4))
+ (-4 *4 (-1179)) (-5 *2 (-112)))))
(((*1 *2)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-534))))
-(((*1 *1 *2) (-12 (-5 *2 (-309 (-167 (-372)))) (-5 *1 (-323))))
- ((*1 *1 *2) (-12 (-5 *2 (-309 (-549))) (-5 *1 (-323))))
- ((*1 *1 *2) (-12 (-5 *2 (-309 (-372))) (-5 *1 (-323))))
- ((*1 *1 *2) (-12 (-5 *2 (-309 (-670))) (-5 *1 (-323))))
- ((*1 *1 *2) (-12 (-5 *2 (-309 (-677))) (-5 *1 (-323))))
- ((*1 *1 *2) (-12 (-5 *2 (-309 (-675))) (-5 *1 (-323))))
- ((*1 *1) (-5 *1 (-323))))
+ (-12 (-4 *1 (-342))
+ (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-112)) (-5 *1 (-805)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1226 *4)) (-4 *4 (-342)) (-5 *2 (-1139 *4))
- (-5 *1 (-519 *4)))))
+ (-12 (-4 *4 (-13 (-541) (-823)))
+ (-4 *2 (-13 (-423 *4) (-973) (-1164))) (-5 *1 (-580 *4 *2 *3))
+ (-4 *3 (-13 (-423 (-167 *4)) (-973) (-1164))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1179)) (-4 *2 (-823))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-275 *3)) (-4 *3 (-1179))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-939 *2)) (-4 *2 (-823)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-1101))) (-5 *1 (-152))))
+ ((*1 *2 *1) (-12 (-5 *2 (-621 (-1101))) (-5 *1 (-1033)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1149)))))
+(((*1 *2 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1201 *5))
+ (-4 *5 (-13 (-356) (-145) (-1009 (-549))))
+ (-5 *2
+ (-2 (|:| |a| *6) (|:| |b| (-400 *6)) (|:| |c| (-400 *6))
+ (|:| -2630 *6)))
+ (-5 *1 (-986 *5 *6)) (-5 *3 (-400 *6)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-1226 (-665 *4))) (-5 *1 (-89 *4 *5))
- (-5 *3 (-665 *4)) (-4 *5 (-632 *4)))))
-(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-863 *4)) (-4 *4 (-1067)) (-5 *2 (-112))
- (-5 *1 (-860 *4 *5)) (-4 *5 (-1067))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-863 *5)) (-4 *5 (-1067)) (-5 *2 (-112))
- (-5 *1 (-861 *5 *3)) (-4 *3 (-1180))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *6)) (-5 *4 (-863 *5)) (-4 *5 (-1067))
- (-4 *6 (-1180)) (-5 *2 (-112)) (-5 *1 (-861 *5 *6)))))
+ (|partial| -12 (-5 *3 (-592 *4)) (-4 *4 (-823)) (-4 *2 (-823))
+ (-5 *1 (-591 *2 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *2 (-356)) (-4 *2 (-821)) (-5 *1 (-916 *2 *3))
+ (-4 *3 (-1201 *2)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
+ (-12 (-5 *2 (-1225 *1)) (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183))
+ (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-4 *5 (-423 *4))
- (-5 *2
- (-3 (|:| |overq| (-1139 (-400 (-549))))
- (|:| |overan| (-1139 (-48))) (|:| -4151 (-112))))
- (-5 *1 (-428 *4 *5 *3)) (-4 *3 (-1202 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-152))))
- ((*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-1033)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1150)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1139 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))))
-(((*1 *2 *1) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1165))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-797)) (-5 *4 (-52)) (-5 *2 (-1231)) (-5 *1 (-807)))))
-(((*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1231)) (-5 *1 (-372))))
- ((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-372)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1116 *3)) (-4 *3 (-1180)) (-5 *2 (-112)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-295)) (-4 *2 (-1180))))
+ (-12 (-5 *3 (-923 (-219))) (-5 *2 (-309 (-372))) (-5 *1 (-298)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-295)) (-4 *2 (-1179))))
((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-621 (-592 *1))) (-5 *3 (-621 *1)) (-4 *1 (-295))))
((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-287 *1))) (-4 *1 (-295))))
((*1 *1 *1 *2) (-12 (-5 *2 (-287 *1)) (-4 *1 (-295)))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-541))
- (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3))) (-5 *1 (-1197 *4 *3))
- (-4 *3 (-1202 *4)))))
-(((*1 *1) (-5 *1 (-1030))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-1230)) (-5 *1 (-798)))))
(((*1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-520 *3)) (-4 *3 (-13 (-703) (-25))))))
+ (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
+ (-4 *3 (-360 *4))))
+ ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1122 *4)) (-5 *3 (-549)) (-4 *4 (-1018))
+ (-5 *1 (-1126 *4))))
+ ((*1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-549)) (-5 *1 (-1217 *3 *4 *5)) (-4 *3 (-1018))
+ (-14 *4 (-1142)) (-14 *5 *3))))
(((*1 *2 *1) (-12 (-4 *1 (-259 *2)) (-4 *2 (-823))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1143)) (-5 *1 (-836 *3)) (-14 *3 (-621 *2))))
- ((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-937 *3)) (-4 *3 (-938))))
- ((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-960))))
- ((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-1059 *3)) (-4 *3 (-1180))))
+ (|partial| -12 (-5 *2 (-1142)) (-5 *1 (-836 *3)) (-14 *3 (-621 *2))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-937 *3)) (-4 *3 (-938))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-960))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-1058 *3)) (-4 *3 (-1179))))
((*1 *2 *1)
- (-12 (-4 *1 (-1204 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768))
- (-5 *2 (-1143))))
- ((*1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1222 *3)) (-14 *3 *2))))
+ (-12 (-4 *1 (-1203 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768))
+ (-5 *2 (-1142))))
+ ((*1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1221 *3)) (-14 *3 *2))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-541) (-823))) (-5 *2 (-167 *5))
- (-5 *1 (-580 *4 *5 *3)) (-4 *5 (-13 (-423 *4) (-973) (-1165)))
- (-4 *3 (-13 (-423 (-167 *4)) (-973) (-1165))))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-1226 *5)) (-5 *3 (-747)) (-5 *4 (-1087)) (-4 *5 (-342))
- (-5 *1 (-519 *5)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-621 (-287 *4))) (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823))
- (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-400 *4)) (-4 *4 (-1202 *3))
- (-4 *3 (-13 (-356) (-145) (-1009 (-549)))) (-5 *1 (-553 *3 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1217 *4))
- (-4 *4 (-38 (-400 (-549)))) (-5 *2 (-1 (-1123 *4) (-1123 *4)))
- (-5 *1 (-1219 *4 *5)))))
-(((*1 *2 *3 *3 *3)
- (|partial| -12
- (-4 *4 (-13 (-145) (-27) (-1009 (-549)) (-1009 (-400 (-549)))))
- (-4 *5 (-1202 *4)) (-5 *2 (-1139 (-400 *5))) (-5 *1 (-595 *4 *5))
- (-5 *3 (-400 *5))))
- ((*1 *2 *3 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 (-411 *6) *6)) (-4 *6 (-1202 *5))
- (-4 *5 (-13 (-145) (-27) (-1009 (-549)) (-1009 (-400 (-549)))))
- (-5 *2 (-1139 (-400 *6))) (-5 *1 (-595 *5 *6)) (-5 *3 (-400 *6)))))
+ (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2740 *4)))
+ (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1164))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1 (-914 (-219)) (-914 (-219)))) (-5 *3 (-621 (-256)))
+ (-5 *1 (-254))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-914 (-219)) (-914 (-219)))) (-5 *1 (-256))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-621 (-473 *5 *6))) (-5 *3 (-473 *5 *6))
+ (-14 *5 (-621 (-1142))) (-4 *6 (-444)) (-5 *2 (-1225 *6))
+ (-5 *1 (-609 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-541))
+ (-5 *2 (-2 (|:| -3697 (-665 *5)) (|:| |vec| (-1225 (-621 (-892))))))
+ (-5 *1 (-89 *5 *3)) (-5 *4 (-892)) (-4 *3 (-632 *5)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-319 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768))
+ (-4 *2 (-444))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-335 *2 *3 *4)) (-4 *2 (-1183)) (-4 *3 (-1201 *2))
+ (-4 *4 (-1201 (-400 *3)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-444))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *2 (-823)) (-4 *3 (-444))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-920 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)) (-4 *2 (-444))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-300)) (-4 *3 (-541)) (-5 *1 (-1129 *3 *2))
+ (-4 *2 (-1201 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-549)) (-5 *1 (-478 *4))
- (-4 *4 (-1202 *2)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-747)) (-4 *4 (-342)) (-5 *1 (-210 *4 *2))
- (-4 *2 (-1202 *4))))
- ((*1 *2 *2 *3 *2 *3)
- (-12 (-5 *3 (-549)) (-5 *1 (-672 *2)) (-4 *2 (-1202 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-621 *5)))))
+ (-12 (-5 *3 (-1060 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-186))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1060 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-293))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1060 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-298)))))
+(((*1 *2 *3 *4 *2 *2 *5)
+ (|partial| -12 (-5 *2 (-816 *4)) (-5 *3 (-592 *4)) (-5 *5 (-112))
+ (-4 *4 (-13 (-1164) (-29 *6)))
+ (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-218 *6 *4)))))
+(((*1 *2 *2 *2)
+ (-12
+ (-5 *2
+ (-621
+ (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-747)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *4 (-769)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-444)) (-4 *5 (-823))
+ (-5 *1 (-441 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-1122 (-2 (|:| |k| (-549)) (|:| |c| *6))))
+ (-5 *4 (-997 (-816 (-549)))) (-5 *5 (-1142)) (-5 *7 (-400 (-549)))
+ (-4 *6 (-1018)) (-5 *2 (-834)) (-5 *1 (-576 *6)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-357 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1067)))))
-(((*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
- ((*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
- (-4 *2 (-423 *3))))
- ((*1 *1 *1) (-4 *1 (-1106))))
-(((*1 *1)
- (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747))
- (-4 *4 (-170)))))
+ (-12 (-5 *2 (-1122 (-400 *3))) (-5 *1 (-172 *3)) (-4 *3 (-300)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 *6)) (-5 *4 (-621 (-1142))) (-4 *6 (-356))
+ (-5 *2 (-621 (-287 (-923 *6)))) (-5 *1 (-527 *5 *6 *7))
+ (-4 *5 (-444)) (-4 *7 (-13 (-356) (-821))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-621 (-1042 *4 *5 *2))) (-4 *4 (-1066))
+ (-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4))))
+ (-4 *2 (-13 (-423 *5) (-857 *4) (-594 (-863 *4))))
+ (-5 *1 (-54 *4 *5 *2))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-621 (-1042 *5 *6 *2))) (-5 *4 (-892)) (-4 *5 (-1066))
+ (-4 *6 (-13 (-1018) (-857 *5) (-823) (-594 (-863 *5))))
+ (-4 *2 (-13 (-423 *6) (-857 *5) (-594 (-863 *5))))
+ (-5 *1 (-54 *5 *6 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-885 *3)) (-4 *3 (-300)))))
+(((*1 *1 *2 *3 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-914 (-219)) (-219))) (-5 *3 (-1060 (-219)))
+ (-5 *1 (-897))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-914 (-219)) (-219))) (-5 *3 (-1060 (-219)))
+ (-5 *1 (-897))))
+ ((*1 *1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-914 (-219)) (-219))) (-5 *3 (-1060 (-219)))
+ (-5 *1 (-898))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-914 (-219)) (-219))) (-5 *3 (-1060 (-219)))
+ (-5 *1 (-898)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1138 *1)) (-4 *1 (-444))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1138 *6)) (-4 *6 (-920 *5 *3 *4)) (-4 *3 (-769))
+ (-4 *4 (-823)) (-4 *5 (-880)) (-5 *1 (-449 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-1138 *1)) (-4 *1 (-880)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-400 *6)) (-4 *5 (-1183)) (-4 *6 (-1201 *5))
+ (-5 *2 (-2 (|:| -1714 (-747)) (|:| -1569 *3) (|:| |radicand| *6)))
+ (-5 *1 (-146 *5 *6 *7)) (-5 *4 (-747)) (-4 *7 (-1201 *3)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-549)) (-5 *2 (-1231)) (-5 *1 (-875 *4))
- (-4 *4 (-1067))))
- ((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-875 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3))
- (-4 *3 (-13 (-356) (-1165) (-973))))))
-(((*1 *1) (-5 *1 (-155))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-472)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 *4)) (-4 *4 (-821)) (-4 *4 (-356)) (-5 *2 (-747))
- (-5 *1 (-916 *4 *5)) (-4 *5 (-1202 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-309 (-219))) (-5 *2 (-400 (-549))) (-5 *1 (-298)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-1202 *3)) (-4 *3 (-1018))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-892)) (-4 *1 (-1204 *3 *4)) (-4 *3 (-1018))
- (-4 *4 (-768))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-400 (-549))) (-4 *1 (-1207 *3)) (-4 *3 (-1018)))))
-(((*1 *2 *3 *3 *4 *4)
- (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *2 (-1006))
- (-5 *1 (-725)))))
+ (-12 (-5 *3 (-747)) (-5 *2 (-400 (-549))) (-5 *1 (-219))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-747)) (-5 *2 (-400 (-549))) (-5 *1 (-219))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-747)) (-5 *2 (-400 (-549))) (-5 *1 (-372))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-747)) (-5 *2 (-400 (-549))) (-5 *1 (-372)))))
(((*1 *2 *2 *2)
- (-12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
+ (|partial| -12 (-4 *3 (-13 (-541) (-145))) (-5 *1 (-1195 *3 *2))
+ (-4 *2 (-1201 *3)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
+ (-5 *2
+ (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549))
+ (|:| |success| (-112))))
+ (-5 *1 (-765)) (-5 *5 (-549)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3))
+ (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768))
+ (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1066))
+ (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-576 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-541)) (-5 *2 (-112)) (-5 *1 (-601 *3 *4))
+ (-4 *4 (-1201 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-703))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
+ (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3))
(-4 *5 (-366 *3)) (-5 *2 (-621 *3))))
((*1 *2 *1)
- (-12 (|has| *1 (-6 -4337)) (-4 *1 (-481 *3)) (-4 *3 (-1180))
+ (-12 (|has| *1 (-6 -4336)) (-4 *1 (-481 *3)) (-4 *3 (-1179))
(-5 *2 (-621 *3)))))
-(((*1 *2 *3 *4 *3 *5 *5 *3 *5 *4)
- (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *3 (-549))
- (-5 *2 (-1006)) (-5 *1 (-733)))))
+(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-977)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-549)) (-5 *2 (-112)) (-5 *1 (-538)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *6 (-541)) (-4 *2 (-920 *3 *5 *4))
+ (-5 *1 (-709 *5 *4 *6 *2)) (-5 *3 (-400 (-923 *6))) (-4 *5 (-769))
+ (-4 *4 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $))))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-621 (-892))) (-5 *1 (-1067 *3 *4)) (-14 *3 (-892))
+ (-14 *4 (-892)))))
+(((*1 *1 *1 *1) (-5 *1 (-834))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1225 *4)) (-4 *4 (-617 (-549))) (-5 *2 (-112))
+ (-5 *1 (-1252 *4)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-541) (-145))) (-5 *1 (-526 *3 *2))
+ (-4 *2 (-1216 *3))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-4 *4 (-1201 *3))
+ (-4 *5 (-701 *3 *4)) (-5 *1 (-530 *3 *4 *5 *2)) (-4 *2 (-1216 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-5 *1 (-531 *3 *2))
+ (-4 *2 (-1216 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-13 (-541) (-145)))
+ (-5 *1 (-1118 *3)))))
+(((*1 *2 *1) (-12 (-5 *1 (-937 *2)) (-4 *2 (-938)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-356)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4)))
- (-5 *2 (-1226 *6)) (-5 *1 (-329 *3 *4 *5 *6))
- (-4 *6 (-335 *3 *4 *5)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-747)) (-5 *3 (-914 *4)) (-4 *1 (-1101 *4))
- (-4 *4 (-1018))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-747)) (-5 *4 (-914 (-219))) (-5 *2 (-1231))
- (-5 *1 (-1228)))))
-(((*1 *2)
- (-12 (-14 *4 (-747)) (-4 *5 (-1180)) (-5 *2 (-133))
- (-5 *1 (-231 *3 *4 *5)) (-4 *3 (-232 *4 *5))))
- ((*1 *2)
- (-12 (-4 *4 (-356)) (-5 *2 (-133)) (-5 *1 (-321 *3 *4))
- (-4 *3 (-322 *4))))
- ((*1 *2)
- (-12 (-5 *2 (-747)) (-5 *1 (-383 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
- (-4 *5 (-170))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-549))
- (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-621 *6)) (-4 *6 (-823)) (-4 *4 (-356)) (-4 *5 (-769))
- (-5 *2 (-549)) (-5 *1 (-495 *4 *5 *6 *7)) (-4 *7 (-920 *4 *5 *6))))
- ((*1 *2 *1) (-12 (-4 *1 (-951 *3)) (-4 *3 (-1018)) (-5 *2 (-892))))
- ((*1 *2) (-12 (-4 *1 (-1233 *3)) (-4 *3 (-356)) (-5 *2 (-133)))))
-(((*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-112)) (-5 *1 (-260)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219))
- (-5 *2 (-1006)) (-5 *1 (-729)))))
-(((*1 *2)
- (-12 (-4 *3 (-1018)) (-5 *2 (-929 (-689 *3 *4))) (-5 *1 (-689 *3 *4))
- (-4 *4 (-1202 *3)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
+ (-12 (-5 *2 (-621 (-52))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1069 *3 *4 *5 *6 *2)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *2 (-1066)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-219)) (-5 *3 (-747)) (-5 *1 (-220))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-167 (-219))) (-5 *3 (-747)) (-5 *1 (-220))))
((*1 *2 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
(-4 *2 (-423 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1106))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1061 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-186))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1061 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-293))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1061 (-816 (-219)))) (-5 *2 (-219)) (-5 *1 (-298)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-295)) (-5 *3 (-1143)) (-5 *2 (-112))))
- ((*1 *2 *1 *1) (-12 (-4 *1 (-295)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 (-621 *5))) (-4 *5 (-1217 *4))
- (-4 *4 (-38 (-400 (-549))))
- (-5 *2 (-1 (-1123 *4) (-621 (-1123 *4)))) (-5 *1 (-1219 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1070 *3 *4 *5 *6 *2)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *2 (-1067)))))
-(((*1 *2 *3 *1)
+ ((*1 *1 *1 *1) (-4 *1 (-1105))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-534))))
+(((*1 *2 *3 *2)
(-12
(-5 *2
- (-2 (|:| |cycle?| (-112)) (|:| -1888 (-747)) (|:| |period| (-747))))
- (-5 *1 (-1123 *4)) (-4 *4 (-1180)) (-5 *3 (-747)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1125)) (-5 *2 (-372)) (-5 *1 (-762)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3))
- (-4 *5 (-366 *3)) (-5 *2 (-112))))
+ (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219))
+ (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219))
+ (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))
+ (-5 *3 (-621 (-256))) (-5 *1 (-254))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219))
+ (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219))
+ (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))
+ (-5 *1 (-256))))
+ ((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227))))
+ ((*1 *2 *1 *3 *3 *4 *4 *4)
+ (-12 (-5 *3 (-549)) (-5 *4 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227))))
+ ((*1 *2 *1 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219))
+ (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219))
+ (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))
+ (-5 *2 (-1230)) (-5 *1 (-1227))))
((*1 *2 *1)
- (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
- (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-112)))))
-(((*1 *2)
- (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
- (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1226 *4)) (-5 *3 (-747)) (-4 *4 (-342))
- (-5 *1 (-519 *4)))))
-(((*1 *2)
- (-12 (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-880))
- (-5 *1 (-449 *3 *4 *2 *5)) (-4 *5 (-920 *2 *3 *4))))
- ((*1 *2)
- (-12 (-4 *3 (-769)) (-4 *4 (-823)) (-4 *2 (-880))
- (-5 *1 (-877 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4))))
- ((*1 *2) (-12 (-4 *2 (-880)) (-5 *1 (-878 *2 *3)) (-4 *3 (-1202 *2)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1125)) (-5 *2 (-208 (-493))) (-5 *1 (-811)))))
-(((*1 *1 *1) (-4 *1 (-1111))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -3727 *3)))
- (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823))
- (-4 *6 (-1032 *3 *4 *5)) (-5 *1 (-602 *3 *4 *5 *6 *7 *2))
- (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *2 (-1076 *3 *4 *5 *6)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-497)) (-5 *3 (-1085)) (-5 *1 (-1082)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-219))) (-5 *2 (-621 (-1125))) (-5 *1 (-186))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-219))) (-5 *2 (-621 (-1125))) (-5 *1 (-293))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-219))) (-5 *2 (-621 (-1125))) (-5 *1 (-298)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1226 (-621 (-2 (|:| -4161 *4) (|:| -3493 (-1087))))))
- (-4 *4 (-342)) (-5 *2 (-665 *4)) (-5 *1 (-339 *4)))))
-(((*1 *2 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-1154 *2)) (-4 *2 (-356)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-549)))) (-4 *5 (-1202 *4))
- (-5 *2 (-2 (|:| |ans| (-400 *5)) (|:| |nosol| (-112))))
- (-5 *1 (-986 *4 *5)) (-5 *3 (-400 *5)))))
-(((*1 *2 *3 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1202 *5))
- (-4 *5 (-13 (-356) (-145) (-1009 (-549))))
- (-5 *2
- (-2 (|:| |a| *6) (|:| |b| (-400 *6)) (|:| |h| *6)
- (|:| |c1| (-400 *6)) (|:| |c2| (-400 *6)) (|:| -2632 *6)))
- (-5 *1 (-987 *5 *6)) (-5 *3 (-400 *6)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *3 (-621 (-256))) (-5 *1 (-254))))
- ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-256)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-316 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-130))
- (-4 *3 (-768)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-444))
+ (-12
(-5 *2
- (-621
- (-2 (|:| |eigval| (-3 (-400 (-923 *4)) (-1132 (-1143) (-923 *4))))
- (|:| |geneigvec| (-621 (-665 (-400 (-923 *4))))))))
- (-5 *1 (-285 *4)) (-5 *3 (-665 (-400 (-923 *4)))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-5 *1 (-102 *3)))))
+ (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2828 (-219))
+ (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219))
+ (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))
+ (-5 *1 (-1227))))
+ ((*1 *2 *1 *3 *3 *3 *3 *3)
+ (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-747)) (-4 *6 (-1066)) (-4 *3 (-871 *6))
+ (-5 *2 (-665 *3)) (-5 *1 (-668 *6 *3 *7 *4)) (-4 *7 (-366 *3))
+ (-4 *4 (-13 (-366 *6) (-10 -7 (-6 -4336)))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-38 (-400 (-549))))
+ (-5 *2 (-2 (|:| -1483 (-1122 *4)) (|:| -1500 (-1122 *4))))
+ (-5 *1 (-1128 *4)) (-5 *3 (-1122 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-898)))))
+(((*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 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-651 (-219)))
+ (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-727)))))
(((*1 *2)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-5 *2 (-665 (-400 *4))))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-356)) (-4 *6 (-1201 (-400 *2)))
+ (-4 *2 (-1201 *5)) (-5 *1 (-209 *5 *2 *6 *3))
+ (-4 *3 (-335 *5 *2 *6)))))
+(((*1 *1 *1) (|partial| -4 *1 (-1117))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1074 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-621 *6)) (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018))
- (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5))
- (-4 *3 (-541)))))
-(((*1 *2 *2 *2 *2 *3)
- (-12 (-4 *3 (-541)) (-5 *1 (-940 *3 *2)) (-4 *2 (-1202 *3)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6))
- (-5 *2 (-2 (|:| |bas| (-468 *4 *5 *6 *7)) (|:| -2317 (-621 *7))))
- (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))))
-(((*1 *1 *1 *1) (-4 *1 (-534))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-112)) (-5 *5 (-665 (-167 (-219))))
- (-5 *2 (-1006)) (-5 *1 (-732)))))
-(((*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1180)))))
+ (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *3))
+ (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))))
+(((*1 *1) (-5 *1 (-139))))
+(((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-1235)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
+ (-4 *3 (-360 *4))))
+ ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+(((*1 *2)
+ (-12 (-5 *2 (-2 (|:| -1332 (-621 *3)) (|:| -3999 (-621 *3))))
+ (-5 *1 (-1180 *3)) (-4 *3 (-1066)))))
+(((*1 *2)
+ (-12 (-4 *2 (-13 (-423 *3) (-973))) (-5 *1 (-269 *3 *2))
+ (-4 *3 (-13 (-823) (-541))))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-238 *2)) (-4 *2 (-1179)))))
(((*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-52)))))
-(((*1 *1) (-5 *1 (-139))) ((*1 *1 *1) (-5 *1 (-142)))
- ((*1 *1 *1) (-4 *1 (-1111))))
-(((*1 *1 *2 *2 *2)
- (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1165)))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356))))
- ((*1 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356))))
- ((*1 *2 *1 *3 *4 *4)
- (-12 (-5 *3 (-892)) (-5 *4 (-372)) (-5 *2 (-1231)) (-5 *1 (-1227)))))
-(((*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-892)) (-4 *1 (-721 *3)) (-4 *3 (-170)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1157 *4 *5))
- (-4 *4 (-1067)) (-4 *5 (-1067)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-335 *4 *3 *5)) (-4 *4 (-1184)) (-4 *3 (-1202 *4))
- (-4 *5 (-1202 (-400 *3))) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-621 (-592 *5))) (-5 *3 (-1143)) (-4 *5 (-423 *4))
- (-4 *4 (-823)) (-5 *1 (-558 *4 *5)))))
+ (-12 (-4 *4 (-444)) (-4 *4 (-541))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1874 *4)))
+ (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *7)) (-4 *7 (-823))
+ (-4 *8 (-920 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1225 (-400 *8)) "failed"))
+ (|:| -2619 (-621 (-1225 (-400 *8))))))
+ (-5 *1 (-645 *5 *6 *7 *8)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
+ (-12 (-4 *3 (-1201 (-400 (-549)))) (-5 *1 (-884 *3 *2))
+ (-4 *2 (-1201 (-400 *3))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1201 *2)) (-4 *2 (-1183)) (-5 *1 (-146 *2 *4 *3))
+ (-4 *3 (-1201 (-400 *4))))))
+(((*1 *1) (-4 *1 (-342))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
+ ((*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-797)) (-5 *4 (-52)) (-5 *2 (-1230)) (-5 *1 (-807)))))
+(((*1 *1 *1 *1) (-5 *1 (-834))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-621 (-497))) (-5 *2 (-497)) (-5 *1 (-475)))))
(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018))
- (-4 *4 (-769)) (-4 *5 (-823)) (-4 *3 (-541)))))
-(((*1 *1 *1 *1 *1 *1)
+ (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *2 (-823))))
+ ((*1 *1 *1 *1)
(-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *2 (-541)))))
+ (-4 *4 (-823)))))
(((*1 *2 *1)
- (-12 (-14 *3 (-621 (-1143))) (-4 *4 (-170))
- (-14 *6
- (-1 (-112) (-2 (|:| -3493 *5) (|:| -3731 *2))
- (-2 (|:| -3493 *5) (|:| -3731 *2))))
- (-4 *2 (-232 (-3775 *3) (-747))) (-5 *1 (-453 *3 *4 *5 *2 *6 *7))
- (-4 *5 (-823)) (-4 *7 (-920 *4 *2 (-836 *3))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1139 *4)) (-4 *4 (-342))
- (-5 *2 (-1226 (-621 (-2 (|:| -4161 *4) (|:| -3493 (-1087))))))
- (-5 *1 (-339 *4)))))
+ (|partial| -12
+ (-5 *2 (-2 (|:| -2718 (-114)) (|:| |arg| (-621 (-863 *3)))))
+ (-5 *1 (-863 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-114)) (-5 *2 (-621 (-863 *4)))
+ (-5 *1 (-863 *4)) (-4 *4 (-1066)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-732)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-549)) (-4 *1 (-316 *2 *4)) (-4 *4 (-130))
+ (-4 *2 (-1066))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-354 *2)) (-4 *2 (-1066))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-379 *2)) (-4 *2 (-1066))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-549)) (-4 *2 (-1066)) (-5 *1 (-625 *2 *4 *5))
+ (-4 *4 (-23)) (-14 *5 *4)))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-795 *2)) (-4 *2 (-823)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9))
+ (-4 *9 (-1032 *6 *7 *8)) (-4 *6 (-541)) (-4 *7 (-769))
+ (-4 *8 (-823)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2316 (-621 *9))))
+ (-5 *3 (-621 *9)) (-4 *1 (-1172 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1032 *5 *6 *7))
+ (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-5 *2 (-2 (|:| |bas| *1) (|:| -2316 (-621 *8))))
+ (-5 *3 (-621 *8)) (-4 *1 (-1172 *5 *6 *7 *8)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1123 (-1123 *4))) (-5 *2 (-1123 *4)) (-5 *1 (-1127 *4))
- (-4 *4 (-1018)))))
-(((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-621 (-592 *2))) (-5 *4 (-1143))
- (-4 *2 (-13 (-27) (-1165) (-423 *5)))
- (-4 *5 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-270 *5 *2)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-860 *5 *3)) (-5 *4 (-863 *5)) (-4 *5 (-1067))
- (-4 *3 (-164 *6)) (-4 (-923 *6) (-857 *5))
- (-4 *6 (-13 (-857 *5) (-170))) (-5 *1 (-176 *5 *6 *3))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *2 (-860 *4 *1)) (-5 *3 (-863 *4)) (-4 *1 (-857 *4))
- (-4 *4 (-1067))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-860 *5 *6)) (-5 *4 (-863 *5)) (-4 *5 (-1067))
- (-4 *6 (-13 (-1067) (-1009 *3))) (-4 *3 (-857 *5))
- (-5 *1 (-902 *5 *3 *6))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-860 *5 *3)) (-4 *5 (-1067))
- (-4 *3 (-13 (-423 *6) (-594 *4) (-857 *5) (-1009 (-592 $))))
- (-5 *4 (-863 *5)) (-4 *6 (-13 (-541) (-823) (-857 *5)))
- (-5 *1 (-903 *5 *6 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-860 (-549) *3)) (-5 *4 (-863 (-549))) (-4 *3 (-534))
- (-5 *1 (-904 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-860 *5 *6)) (-5 *3 (-592 *6)) (-4 *5 (-1067))
- (-4 *6 (-13 (-823) (-1009 (-592 $)) (-594 *4) (-857 *5)))
- (-5 *4 (-863 *5)) (-5 *1 (-905 *5 *6))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-856 *5 *6 *3)) (-5 *4 (-863 *5)) (-4 *5 (-1067))
- (-4 *6 (-857 *5)) (-4 *3 (-642 *6)) (-5 *1 (-906 *5 *6 *3))))
- ((*1 *2 *3 *4 *2 *5)
- (-12 (-5 *5 (-1 (-860 *6 *3) *8 (-863 *6) (-860 *6 *3)))
- (-4 *8 (-823)) (-5 *2 (-860 *6 *3)) (-5 *4 (-863 *6))
- (-4 *6 (-1067)) (-4 *3 (-13 (-920 *9 *7 *8) (-594 *4)))
- (-4 *7 (-769)) (-4 *9 (-13 (-1018) (-823) (-857 *6)))
- (-5 *1 (-907 *6 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-860 *5 *3)) (-4 *5 (-1067))
- (-4 *3 (-13 (-920 *8 *6 *7) (-594 *4))) (-5 *4 (-863 *5))
- (-4 *7 (-857 *5)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *8 (-13 (-1018) (-823) (-857 *5)))
- (-5 *1 (-907 *5 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-860 *5 *3)) (-4 *5 (-1067)) (-4 *3 (-963 *6))
- (-4 *6 (-13 (-541) (-857 *5) (-594 *4))) (-5 *4 (-863 *5))
- (-5 *1 (-910 *5 *6 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-860 *5 (-1143))) (-5 *3 (-1143)) (-5 *4 (-863 *5))
- (-4 *5 (-1067)) (-5 *1 (-911 *5))))
- ((*1 *2 *3 *4 *5 *2 *6)
- (-12 (-5 *4 (-621 (-863 *7))) (-5 *5 (-1 *9 (-621 *9)))
- (-5 *6 (-1 (-860 *7 *9) *9 (-863 *7) (-860 *7 *9))) (-4 *7 (-1067))
- (-4 *9 (-13 (-1018) (-594 (-863 *7)) (-1009 *8)))
- (-5 *2 (-860 *7 *9)) (-5 *3 (-621 *9)) (-4 *8 (-13 (-1018) (-823)))
- (-5 *1 (-912 *7 *8 *9)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-623 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1226 *5)) (-4 *5 (-768)) (-5 *2 (-112))
- (-5 *1 (-818 *4 *5)) (-14 *4 (-747)))))
+ (-12 (-4 *4 (-1179)) (-5 *2 (-747)) (-5 *1 (-180 *4 *3))
+ (-4 *3 (-650 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-621 *2)) (-5 *1 (-1153 *2)) (-4 *2 (-356)))))
+(((*1 *1) (-5 *1 (-219))) ((*1 *1) (-5 *1 (-372))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *5 *3)
+ (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-730)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1018)) (-14 *3 (-621 (-1143)))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-217 *2 *3)) (-4 *2 (-13 (-1018) (-823)))
- (-14 *3 (-621 (-1143))))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-320 *3)) (-4 *3 (-1180))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-507 *3 *4)) (-4 *3 (-1180))
- (-14 *4 (-549)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| |polnum| (-758 *3)) (|:| |polden| *3) (|:| -3063 (-747))))
- (-5 *1 (-758 *3)) (-4 *3 (-1018))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -3063 (-747))))
- (-4 *1 (-1032 *3 *4 *5)))))
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-295)) (-5 *3 (-1142)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1) (-12 (-4 *1 (-295)) (-5 *2 (-112)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1139 *2)) (-4 *2 (-920 (-400 (-923 *6)) *5 *4))
- (-5 *1 (-709 *5 *4 *6 *2)) (-4 *5 (-769))
- (-4 *4 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $)))))
- (-4 *6 (-541)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1226 (-621 *3))) (-4 *4 (-300))
- (-5 *2 (-621 *3)) (-5 *1 (-447 *4 *3)) (-4 *3 (-1202 *4)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-747)) (-4 *5 (-342)) (-4 *6 (-1202 *5))
- (-5 *2
- (-621
- (-2 (|:| -1949 (-665 *6)) (|:| |basisDen| *6)
- (|:| |basisInv| (-665 *6)))))
- (-5 *1 (-489 *5 *6 *7))
- (-5 *3
- (-2 (|:| -1949 (-665 *6)) (|:| |basisDen| *6)
- (|:| |basisInv| (-665 *6))))
- (-4 *7 (-1202 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *2)) (-4 *2 (-170))))
- ((*1 *2) (-12 (-4 *2 (-170)) (-5 *1 (-409 *3 *2)) (-4 *3 (-410 *2))))
- ((*1 *2) (-12 (-4 *1 (-410 *2)) (-4 *2 (-170)))))
-(((*1 *1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-256))))
- ((*1 *1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-256)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-473 *4 *5)) (-14 *4 (-621 (-1143))) (-4 *5 (-1018))
- (-5 *2 (-923 *5)) (-5 *1 (-915 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 (-836 *5))) (-14 *5 (-621 (-1143))) (-4 *6 (-444))
- (-5 *2
- (-2 (|:| |dpolys| (-621 (-241 *5 *6)))
- (|:| |coords| (-621 (-549)))))
- (-5 *1 (-463 *5 *6 *7)) (-5 *3 (-621 (-241 *5 *6))) (-4 *7 (-444)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-665 (-400 (-923 (-549)))))
- (-5 *2 (-621 (-665 (-309 (-549))))) (-5 *1 (-1002))
- (-5 *3 (-309 (-549))))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 (-1142)))
+ (-14 *4 (-621 (-1142))) (-4 *5 (-380))))
+ ((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 (-1142)))
+ (-14 *4 (-621 (-1142))) (-4 *5 (-380)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
+(((*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-543 *3)) (-4 *3 (-534)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769))
+ (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3))
- (-4 *5 (-366 *3)) (-5 *2 (-621 (-621 *3)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
- (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-621 (-621 *5)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-621 (-621 *3))) (-5 *1 (-1152 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-665 (-167 (-400 (-549)))))
- (-5 *2
- (-621
- (-2 (|:| |outval| (-167 *4)) (|:| |outmult| (-549))
- (|:| |outvect| (-621 (-665 (-167 *4)))))))
- (-5 *1 (-741 *4)) (-4 *4 (-13 (-356) (-821))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-131)) (-5 *1 (-1051 *2))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-549) *2 *2)) (-4 *2 (-131)) (-5 *1 (-1051 *2)))))
-(((*1 *2 *3 *4 *4)
+ (-12 (-5 *2 (-747)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892))
+ (-4 *4 (-1018)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1142)) (-5 *1 (-273)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-108))) (-5 *1 (-173)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1015 *4 *5)) (-4 *4 (-13 (-821) (-300) (-145) (-993)))
+ (-14 *5 (-621 (-1142))) (-5 *2 (-621 (-621 (-995 (-400 *4)))))
+ (-5 *1 (-1251 *4 *5 *6)) (-14 *6 (-621 (-1142)))))
+ ((*1 *2 *3 *4 *4)
(-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112))
(-4 *5 (-13 (-821) (-300) (-145) (-993)))
- (-5 *2 (-621 (-1015 *5 *6))) (-5 *1 (-1252 *5 *6 *7))
- (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143)))))
+ (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1251 *5 *6 *7))
+ (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142)))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112))
(-4 *5 (-13 (-821) (-300) (-145) (-993)))
- (-5 *2 (-621 (-1015 *5 *6))) (-5 *1 (-1252 *5 *6 *7))
- (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143)))))
+ (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1251 *5 *6 *7))
+ (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142)))))
((*1 *2 *3)
(-12 (-5 *3 (-621 (-923 *4)))
(-4 *4 (-13 (-821) (-300) (-145) (-993)))
- (-5 *2 (-621 (-1015 *4 *5))) (-5 *1 (-1252 *4 *5 *6))
- (-14 *5 (-621 (-1143))) (-14 *6 (-621 (-1143))))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *6 (-1125))
- (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1123 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))))
+ (-5 *2 (-621 (-621 (-995 (-400 *4))))) (-5 *1 (-1251 *4 *5 *6))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-621 (-1142))))))
+(((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
+ (-4 *3 (-360 *4))))
+ ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+(((*1 *2)
+ (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-410 *3)))))
+(((*1 *2 *3 *3 *3 *4 *5)
+ (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1201 *6))
+ (-4 *6 (-13 (-356) (-145) (-1009 *4))) (-5 *4 (-549))
+ (-5 *2
+ (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112))))
+ (|:| -2649
+ (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3)
+ (|:| |beta| *3)))))
+ (-5 *1 (-986 *6 *3)))))
+(((*1 *2 *2 *3)
+ (|partial| -12
+ (-5 *3 (-621 (-2 (|:| |func| *2) (|:| |pole| (-112)))))
+ (-4 *2 (-13 (-423 *4) (-973))) (-4 *4 (-13 (-823) (-541)))
+ (-5 *1 (-269 *4 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1225 (-665 *4))) (-4 *4 (-170))
+ (-5 *2 (-1225 (-665 (-923 *4)))) (-5 *1 (-183 *4)))))
+(((*1 *2 *3 *4 *5 *6 *7 *8 *9)
+ (|partial| -12 (-5 *4 (-621 *11)) (-5 *5 (-621 (-1138 *9)))
+ (-5 *6 (-621 *9)) (-5 *7 (-621 *12)) (-5 *8 (-621 (-747)))
+ (-4 *11 (-823)) (-4 *9 (-300)) (-4 *12 (-920 *9 *10 *11))
+ (-4 *10 (-769)) (-5 *2 (-621 (-1138 *12)))
+ (-5 *1 (-684 *10 *11 *9 *12)) (-5 *3 (-1138 *12)))))
+(((*1 *1 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1179))))
+ ((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-366 *2)) (-4 *2 (-1179))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1066)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1179)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1165 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-659 *4 *3)) (-4 *4 (-1066))
+ (-4 *3 (-1066)))))
+(((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
+ (-4 *3 (-360 *4))))
+ ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+(((*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5)
+ (-12 (-5 *3 (-892)) (-5 *4 (-219)) (-5 *5 (-549)) (-5 *6 (-845))
+ (-5 *2 (-1230)) (-5 *1 (-1226)))))
+(((*1 *1) (-5 *1 (-139))) ((*1 *1 *1) (-5 *1 (-142)))
+ ((*1 *1 *1) (-4 *1 (-1110))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-621 *6)) (-5 *4 (-621 (-241 *5 *6))) (-4 *6 (-444))
+ (-5 *2 (-241 *5 *6)) (-14 *5 (-621 (-1142))) (-5 *1 (-609 *5 *6)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-897)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-648 *3)) (-4 *3 (-823))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-653 *3)) (-4 *3 (-823))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-795 *3)) (-4 *3 (-823)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-356)) (-5 *1 (-278 *3 *2)) (-4 *2 (-1216 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1138 (-400 (-923 *3)))) (-5 *1 (-445 *3 *4 *5 *6))
+ (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))))
+(((*1 *2 *3)
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
+ (|:| |relerr| (-219))))
+ (-5 *2 (-2 (|:| -2718 (-114)) (|:| |w| (-219)))) (-5 *1 (-198)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -4114 *3) (|:| |coef2| (-758 *3))))
+ (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
(((*1 *1 *1 *2)
(-12 (-5 *2 (-892)) (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361))))
((*1 *2 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-356))))
((*1 *2 *1)
- (-12 (-4 *1 (-363 *2 *3)) (-4 *3 (-1202 *2)) (-4 *2 (-170))))
+ (-12 (-4 *1 (-363 *2 *3)) (-4 *3 (-1201 *2)) (-4 *2 (-170))))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-1226 *4)) (-5 *3 (-892)) (-4 *4 (-342))
+ (-12 (-5 *2 (-1225 *4)) (-5 *3 (-892)) (-4 *4 (-342))
(-5 *1 (-519 *4))))
((*1 *2 *1)
- (-12 (-4 *1 (-1090 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2))
+ (-12 (-4 *1 (-1089 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2))
(-4 *5 (-232 *3 *2)) (-4 *2 (-1018)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-880)) (-5 *2 (-411 (-1139 *1))) (-5 *3 (-1139 *1)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-49))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-997 (-816 (-549)))) (-5 *1 (-576 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-49))))
((*1 *2 *1) (-12 (-5 *2 (-621 (-497))) (-5 *1 (-475)))))
-(((*1 *1) (-5 *1 (-1231))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4))))
- (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1226 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-356))
- (-4 *1 (-701 *5 *6)) (-4 *5 (-170)) (-4 *6 (-1202 *5))
- (-5 *2 (-665 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-5 *1 (-876 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-4 *1 (-229 *3))))
- ((*1 *1) (-12 (-4 *1 (-229 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-747)) (-4 *5 (-541))
- (-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-940 *5 *3)) (-4 *3 (-1202 *5)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *1 *1 *1) (-5 *1 (-834))))
+(((*1 *1) (-5 *1 (-1230))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-724)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-621 *3)) (-4 *3 (-300)) (-5 *1 (-177 *3)))))
(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
- (|:| |relerr| (-219))))
- (-5 *2 (-2 (|:| -2721 (-114)) (|:| |w| (-219)))) (-5 *1 (-198)))))
-(((*1 *2 *2 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
- (-5 *1 (-1095 *3 *2)) (-4 *3 (-1202 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1139 *5)) (-4 *5 (-444)) (-5 *2 (-621 *6))
- (-5 *1 (-527 *5 *6 *4)) (-4 *6 (-356)) (-4 *4 (-13 (-356) (-821)))))
+ (-12 (-5 *3 (-621 *5)) (-4 *5 (-423 *4)) (-4 *4 (-13 (-823) (-541)))
+ (-5 *2 (-834)) (-5 *1 (-32 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1115 *3)) (-4 *3 (-1179)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-747)) (-4 *4 (-356)) (-4 *5 (-1201 *4)) (-5 *2 (-1230))
+ (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1201 (-400 *5))) (-14 *7 *6))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-747)) (-5 *2 (-1198 *5 *4)) (-5 *1 (-1140 *4 *5 *6))
+ (-4 *4 (-1018)) (-14 *5 (-1142)) (-14 *6 *4)))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-747)) (-5 *2 (-1198 *5 *4)) (-5 *1 (-1217 *4 *5 *6))
+ (-4 *4 (-1018)) (-14 *5 (-1142)) (-14 *6 *4))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
+ ((*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170))
+ (-5 *2 (-1225 (-665 *4)))))
+ ((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-1225 (-665 *4))) (-5 *1 (-409 *3 *4))
+ (-4 *3 (-410 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-1225 (-665 *3)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-923 *5)) (-4 *5 (-444)) (-5 *2 (-621 *6))
- (-5 *1 (-527 *5 *6 *4)) (-4 *6 (-356)) (-4 *4 (-13 (-356) (-821))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |cd| (-1125)) (|:| -2481 (-1125))))
- (-5 *1 (-798)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-621 (-621 (-621 *5)))) (-5 *3 (-1 (-112) *5 *5))
- (-5 *4 (-621 *5)) (-4 *5 (-823)) (-5 *1 (-1151 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1071)) (-5 *1 (-323)))))
+ (-12 (-5 *3 (-621 (-1142))) (-4 *5 (-356))
+ (-5 *2 (-1225 (-665 (-400 (-923 *5))))) (-5 *1 (-1052 *5))
+ (-5 *4 (-665 (-400 (-923 *5))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-1142))) (-4 *5 (-356))
+ (-5 *2 (-1225 (-665 (-923 *5)))) (-5 *1 (-1052 *5))
+ (-5 *4 (-665 (-923 *5)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-665 *4))) (-4 *4 (-356))
+ (-5 *2 (-1225 (-665 *4))) (-5 *1 (-1052 *4)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-621 *6) "failed") (-549) *6 *6)) (-4 *6 (-356))
+ (-4 *7 (-1201 *6))
+ (-5 *2 (-2 (|:| |answer| (-567 (-400 *7))) (|:| |a0| *6)))
+ (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-1143))) (-4 *4 (-13 (-300) (-145)))
- (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769))
- (-5 *2 (-621 (-400 (-923 *4)))) (-5 *1 (-895 *4 *5 *6 *7))
- (-4 *7 (-920 *4 *6 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-800)))))
+ (-12 (-5 *3 (-1 *5 (-621 *5))) (-4 *5 (-1216 *4))
+ (-4 *4 (-38 (-400 (-549))))
+ (-5 *2 (-1 (-1122 *4) (-621 (-1122 *4)))) (-5 *1 (-1218 *4 *5)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-892)) (-5 *3 (-621 (-256))) (-5 *1 (-254))))
+ ((*1 *1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-256)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1225 *4)) (-4 *4 (-617 (-549)))
+ (-5 *2 (-1225 (-400 (-549)))) (-5 *1 (-1252 *4)))))
+(((*1 *2 *3 *4 *5 *6 *7 *6)
+ (|partial| -12
+ (-5 *5
+ (-2 (|:| |contp| *3)
+ (|:| -3390 (-621 (-2 (|:| |irr| *10) (|:| -2129 (-549)))))))
+ (-5 *6 (-621 *3)) (-5 *7 (-621 *8)) (-4 *8 (-823)) (-4 *3 (-300))
+ (-4 *10 (-920 *3 *9 *8)) (-4 *9 (-769))
+ (-5 *2
+ (-2 (|:| |polfac| (-621 *10)) (|:| |correct| *3)
+ (|:| |corrfact| (-621 (-1138 *3)))))
+ (-5 *1 (-603 *8 *9 *3 *10)) (-5 *4 (-621 (-1138 *3))))))
+(((*1 *1) (-5 *1 (-430))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1142)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1225 (-1225 (-549)))) (-5 *3 (-892)) (-5 *1 (-458)))))
(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-892)) (-5 *4 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1227)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-541))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3727 *3)))
- (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-697)) (-5 *2 (-892))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-699)) (-5 *2 (-747)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1087)) (-5 *1 (-109))))
+ (-12 (-5 *3 (-892)) (-5 *4 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1226)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-1142)) (-5 *1 (-567 *2)) (-4 *2 (-1009 *3))
+ (-4 *2 (-356))))
+ ((*1 *1 *2 *2) (-12 (-5 *1 (-567 *2)) (-4 *2 (-356))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-608 *4 *2))
+ (-4 *2 (-13 (-423 *4) (-973) (-1164)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1058 *2)) (-4 *2 (-13 (-423 *4) (-973) (-1164)))
+ (-4 *4 (-13 (-823) (-541))) (-5 *1 (-608 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-930)) (-5 *2 (-1142))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1058 *1)) (-4 *1 (-930)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1086)) (-5 *1 (-109))))
((*1 *2 *1) (-12 (-4 *1 (-131)) (-5 *2 (-747))))
((*1 *2 *3 *1 *2)
- (-12 (-5 *2 (-549)) (-4 *1 (-366 *3)) (-4 *3 (-1180))
- (-4 *3 (-1067))))
+ (-12 (-5 *2 (-549)) (-4 *1 (-366 *3)) (-4 *3 (-1179))
+ (-4 *3 (-1066))))
((*1 *2 *3 *1)
- (-12 (-4 *1 (-366 *3)) (-4 *3 (-1180)) (-4 *3 (-1067))
+ (-12 (-4 *1 (-366 *3)) (-4 *3 (-1179)) (-4 *3 (-1066))
(-5 *2 (-549))))
((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-366 *4)) (-4 *4 (-1180))
+ (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-366 *4)) (-4 *4 (-1179))
(-5 *2 (-549))))
- ((*1 *2 *3 *1 *2) (-12 (-4 *1 (-1111)) (-5 *2 (-549)) (-5 *3 (-139))))
- ((*1 *2 *1 *1 *2) (-12 (-4 *1 (-1111)) (-5 *2 (-549)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *2 (-823))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-444)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
- (-5 *2 (-621 *3)) (-5 *1 (-948 *4 *5 *6 *3))
- (-4 *3 (-1032 *4 *5 *6)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
- (-5 *2 (-1006)) (-5 *1 (-729)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *2 (-444)))))
+ ((*1 *2 *3 *1 *2) (-12 (-4 *1 (-1110)) (-5 *2 (-549)) (-5 *3 (-139))))
+ ((*1 *2 *1 *1 *2) (-12 (-4 *1 (-1110)) (-5 *2 (-549)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)))) (-5 *1 (-182 *3 *2))
+ (-4 *2 (-13 (-27) (-1164) (-423 (-167 *3))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-541) (-823) (-1009 (-549))))
+ (-5 *1 (-182 *4 *2)) (-4 *2 (-13 (-27) (-1164) (-423 (-167 *4))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-1168 *3 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1142))
+ (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-1168 *4 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *4))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1122 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))))
(((*1 *2)
(-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4))
(-4 *4 (-410 *3)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-549))) (-4 *3 (-1018)) (-5 *1 (-576 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-549))) (-4 *1 (-1186 *3)) (-4 *3 (-1018))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-549))) (-4 *1 (-1217 *3)) (-4 *3 (-1018)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1143))
- (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
- (-5 *2 (-567 *3)) (-5 *1 (-419 *5 *3))
- (-4 *3 (-13 (-1165) (-29 *5))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-4 *5 (-423 *4))
- (-5 *2 (-411 *3)) (-5 *1 (-428 *4 *5 *3)) (-4 *3 (-1202 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-107))))
- ((*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-211))))
- ((*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-479))))
- ((*1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)) (-4 *2 (-300))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-400 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549))))
- ((*1 *1 *1) (-4 *1 (-1027))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-181)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-577 *3)) (-4 *3 (-1018))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-768))
- (-4 *5 (-823)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170))
- (-5 *2 (-665 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-665 *4)) (-5 *1 (-409 *3 *4))
- (-4 *3 (-410 *4))))
- ((*1 *2) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-665 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-747)) (-5 *2 (-1230)) (-5 *1 (-1226))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-747)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-1165 *3))) (-5 *1 (-1165 *3)) (-4 *3 (-1066)))))
+(((*1 *1 *1) (-12 (-5 *1 (-885 *2)) (-4 *2 (-300)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-621 *1)) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5))
+ (-4 *4 (-366 *3)) (-4 *5 (-366 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-621 *3)) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5))
+ (-4 *4 (-366 *3)) (-4 *5 (-366 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1225 *3)) (-4 *3 (-1018)) (-5 *1 (-665 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-621 *4)) (-4 *4 (-1018)) (-4 *1 (-1089 *3 *4 *5 *6))
+ (-4 *5 (-232 *3 *4)) (-4 *6 (-232 *3 *4)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *1 (-441 *3 *4 *5 *2)) (-4 *2 (-920 *3 *4 *5)))))
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *2 *1) (-12 (-4 *1 (-360 *2)) (-4 *2 (-170)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-309 (-219)))) (-5 *2 (-112)) (-5 *1 (-260)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7))
- (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 *10))
- (-5 *1 (-602 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1038 *5 *6 *7 *8))
- (-4 *10 (-1076 *5 *6 *7 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444))
- (-14 *6 (-621 (-1143))) (-5 *2 (-621 (-1015 *5 *6)))
- (-5 *1 (-606 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444))
- (-14 *6 (-621 (-1143)))
- (-5 *2
- (-621 (-1113 *5 (-521 (-836 *6)) (-836 *6) (-756 *5 (-836 *6)))))
- (-5 *1 (-606 *5 *6))))
- ((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7))
- (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-5 *2 (-621 (-998 *5 *6 *7 *8))) (-5 *1 (-998 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7))
- (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-5 *2 (-621 (-998 *5 *6 *7 *8))) (-5 *1 (-998 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444))
- (-14 *6 (-621 (-1143))) (-5 *2 (-621 (-1015 *5 *6)))
- (-5 *1 (-1015 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7))
- (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823)) (-5 *2 (-621 *1))
- (-4 *1 (-1038 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7))
- (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-5 *2 (-621 (-1113 *5 *6 *7 *8))) (-5 *1 (-1113 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-621 *8)) (-5 *4 (-112)) (-4 *8 (-1032 *5 *6 *7))
- (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-5 *2 (-621 (-1113 *5 *6 *7 *8))) (-5 *1 (-1113 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *1))
- (-4 *1 (-1173 *4 *5 *6 *7)))))
-(((*1 *1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-112)) (-5 *1 (-576 *3)) (-4 *3 (-1018)))))
-(((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
- (-4 *3 (-360 *4))))
- ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
-(((*1 *1)
- (-12 (-4 *1 (-397)) (-4008 (|has| *1 (-6 -4328)))
- (-4008 (|has| *1 (-6 -4320)))))
- ((*1 *2 *1) (-12 (-4 *1 (-418 *2)) (-4 *2 (-1067)) (-4 *2 (-823))))
- ((*1 *2 *1) (-12 (-4 *1 (-806 *2)) (-4 *2 (-823))))
- ((*1 *1 *1 *1) (-4 *1 (-823))) ((*1 *1) (-5 *1 (-1087))))
-(((*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1011)))))
-(((*1 *2 *1) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1165)))))
- ((*1 *1 *1 *1) (-4 *1 (-769))))
-(((*1 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-524 *2)) (-4 *2 (-1180))))
- ((*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-525)))))
+ (-12 (-5 *2 (-2 (|:| -2382 (-549)) (|:| -3390 (-621 *3))))
+ (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-1147))) (-5 *1 (-181)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-897)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1018)) (-4 *7 (-1018))
- (-4 *6 (-1202 *5)) (-5 *2 (-1139 (-1139 *7)))
- (-5 *1 (-492 *5 *6 *4 *7)) (-4 *4 (-1202 *6)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-947 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *2 (-823)) (-4 *5 (-1032 *3 *4 *2)))))
+ (-12 (-5 *3 (-1225 (-621 (-2 (|:| -4160 *4) (|:| -3494 (-1086))))))
+ (-4 *4 (-342)) (-5 *2 (-1230)) (-5 *1 (-519 *4)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1139 *7)) (-4 *5 (-1018))
- (-4 *7 (-1018)) (-4 *2 (-1202 *5)) (-5 *1 (-492 *5 *2 *6 *7))
- (-4 *6 (-1202 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1018)) (-4 *7 (-1018))
- (-4 *4 (-1202 *5)) (-5 *2 (-1139 *7)) (-5 *1 (-492 *5 *4 *6 *7))
- (-4 *6 (-1202 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1139 (-549))) (-5 *1 (-185)) (-5 *3 (-549))))
- ((*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-759 *2)) (-4 *2 (-170))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1139 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))))
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 *4))
+ (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1230)) (-5 *1 (-372))))
+ ((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-372)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *2 *1) (-12 (-5 *1 (-1174 *2)) (-4 *2 (-945)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1 *8 *8))
+ (-5 *5
+ (-1 (-3 (-2 (|:| -2677 *7) (|:| |coeff| *7)) "failed") *7))
+ (-5 *6 (-621 (-400 *8))) (-4 *7 (-356)) (-4 *8 (-1201 *7))
+ (-5 *3 (-400 *8))
+ (-5 *2
+ (-2
+ (|:| |answer|
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (|:| |a0| *7)))
+ (-5 *1 (-559 *7 *8)))))
(((*1 *2)
(-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4))
(-4 *4 (-410 *3)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *2 (-823))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 *5)) (-4 *5 (-1202 *3)) (-4 *3 (-300))
- (-5 *2 (-112)) (-5 *1 (-447 *3 *5)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-1184)) (-4 *5 (-1202 *4))
- (-5 *2 (-2 (|:| |radicand| (-400 *5)) (|:| |deg| (-747))))
- (-5 *1 (-146 *4 *5 *3)) (-4 *3 (-1202 (-400 *5))))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-549)) (-4 *1 (-56 *4 *5 *2)) (-4 *4 (-1180))
- (-4 *5 (-366 *4)) (-4 *2 (-366 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-549)) (-4 *1 (-1021 *4 *5 *6 *7 *2)) (-4 *6 (-1018))
- (-4 *7 (-232 *5 *6)) (-4 *2 (-232 *4 *6)))))
+(((*1 *1)
+ (-12 (-4 *1 (-397)) (-4007 (|has| *1 (-6 -4327)))
+ (-4007 (|has| *1 (-6 -4319)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-418 *2)) (-4 *2 (-1066)) (-4 *2 (-823))))
+ ((*1 *2 *1) (-12 (-4 *1 (-806 *2)) (-4 *2 (-823))))
+ ((*1 *1 *1 *1) (-4 *1 (-823))) ((*1 *1) (-5 *1 (-1086))))
(((*1 *2 *3)
- (-12 (-4 *1 (-812))
- (-5 *3
- (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219)))
- (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219))))
- (|:| |ub| (-621 (-816 (-219))))))
- (-5 *2 (-1006))))
+ (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549))))
+ (-5 *2 (-167 (-309 *4))) (-5 *1 (-182 *4 *3))
+ (-4 *3 (-13 (-27) (-1164) (-423 (-167 *4))))))
((*1 *2 *3)
- (-12 (-4 *1 (-812))
+ (-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *2 (-167 *3)) (-5 *1 (-1168 *4 *3))
+ (-4 *3 (-13 (-27) (-1164) (-423 *4))))))
+(((*1 *2 *3 *4 *4 *3)
+ (|partial| -12 (-5 *4 (-592 *3))
+ (-4 *3 (-13 (-423 *5) (-27) (-1164)))
+ (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
+ (-5 *2 (-2 (|:| -2677 *3) (|:| |coeff| *3)))
+ (-5 *1 (-551 *5 *3 *6)) (-4 *6 (-1066)))))
+(((*1 *2 *3 *3 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-1 (-219) (-219) (-219)))
+ (-5 *4 (-3 (-1 (-219) (-219) (-219) (-219)) "undefined"))
+ (-5 *5 (-1060 (-219))) (-5 *6 (-621 (-256))) (-5 *2 (-1099 (-219)))
+ (-5 *1 (-673))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1060 (-219)))
+ (-5 *5 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-673))))
+ ((*1 *2 *2 *3 *4 *4 *5)
+ (-12 (-5 *2 (-1099 (-219))) (-5 *3 (-1 (-914 (-219)) (-219) (-219)))
+ (-5 *4 (-1060 (-219))) (-5 *5 (-621 (-256))) (-5 *1 (-673)))))
+(((*1 *2 *3) (-12 (-5 *3 (-525)) (-5 *1 (-524 *2)) (-4 *2 (-1179))))
+ ((*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-525)))))
+(((*1 *2 *1 *3 *3 *4)
+ (-12 (-5 *3 (-1 (-834) (-834) (-834))) (-5 *4 (-549)) (-5 *2 (-834))
+ (-5 *1 (-625 *5 *6 *7)) (-4 *5 (-1066)) (-4 *6 (-23)) (-14 *7 *6)))
+ ((*1 *2 *1 *2)
+ (-12 (-5 *2 (-834)) (-5 *1 (-827 *3 *4 *5)) (-4 *3 (-1018))
+ (-14 *4 (-98 *3)) (-14 *5 (-1 *3 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-834))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-834))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-834))))
+ ((*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834))))
+ ((*1 *2 *1 *2)
+ (-12 (-5 *2 (-834)) (-5 *1 (-1138 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-3 (-400 (-923 *6)) (-1131 (-1142) (-923 *6))))
+ (-5 *5 (-747)) (-4 *6 (-444)) (-5 *2 (-621 (-665 (-400 (-923 *6)))))
+ (-5 *1 (-285 *6)) (-5 *4 (-665 (-400 (-923 *6))))))
+ ((*1 *2 *3 *4)
+ (-12
(-5 *3
- (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))
- (-5 *2 (-1006)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-109)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1218 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1143))
- (-14 *4 *2))))
+ (-2 (|:| |eigval| (-3 (-400 (-923 *5)) (-1131 (-1142) (-923 *5))))
+ (|:| |eigmult| (-747)) (|:| |eigvec| (-621 *4))))
+ (-4 *5 (-444)) (-5 *2 (-621 (-665 (-400 (-923 *5)))))
+ (-5 *1 (-285 *5)) (-5 *4 (-665 (-400 (-923 *5)))))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
+ (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4))))
+ (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-1143))) (-5 *2 (-1231)) (-5 *1 (-1182))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 (-1143))) (-5 *2 (-1231)) (-5 *1 (-1182)))))
+ (-12 (-5 *3 (-621 (-621 (-914 (-219)))))
+ (-5 *2 (-621 (-1060 (-219)))) (-5 *1 (-899)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
- ((*1 *2 *3) (-12 (-5 *3 (-942)) (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
+ (-12 (-4 *4 (-342))
+ (-5 *2 (-621 (-2 (|:| |deg| (-747)) (|:| -2538 *3))))
+ (-5 *1 (-210 *4 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-747)) (-5 *2 (-112)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-747)) (-5 *1 (-651 *3)) (-4 *3 (-1018))
+ (-4 *3 (-1066)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-13 (-356) (-145)))
+ (-5 *2 (-621 (-2 (|:| -1714 (-747)) (|:| -2596 *4) (|:| |num| *4))))
+ (-5 *1 (-392 *3 *4)) (-4 *4 (-1201 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-845)) (-5 *3 (-621 (-256))) (-5 *1 (-254)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-621
+ (-2 (|:| -3121 (-747))
+ (|:| |eqns|
+ (-621
+ (-2 (|:| |det| *7) (|:| |rows| (-621 (-549)))
+ (|:| |cols| (-621 (-549))))))
+ (|:| |fgb| (-621 *7)))))
+ (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145)))
+ (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *2 (-747))
+ (-5 *1 (-895 *4 *5 *6 *7)))))
+(((*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-309 (-372))) (-5 *1 (-298)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1144 (-400 (-549)))) (-5 *2 (-400 (-549)))
+ (-5 *1 (-184)))))
(((*1 *2 *3)
(-12 (-4 *5 (-13 (-594 *2) (-170))) (-5 *2 (-863 *4))
- (-5 *1 (-168 *4 *5 *3)) (-4 *4 (-1067)) (-4 *3 (-164 *5))))
+ (-5 *1 (-168 *4 *5 *3)) (-4 *4 (-1066)) (-4 *3 (-164 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-621 (-1061 (-816 (-372)))))
- (-5 *2 (-621 (-1061 (-816 (-219))))) (-5 *1 (-298))))
+ (-12 (-5 *3 (-621 (-1060 (-816 (-372)))))
+ (-5 *2 (-621 (-1060 (-816 (-219))))) (-5 *1 (-298))))
((*1 *1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-372))))
((*1 *1 *2 *3) (-12 (-5 *2 (-834)) (-5 *3 (-549)) (-5 *1 (-387))))
((*1 *1 *2)
- (-12 (-5 *2 (-1226 *3)) (-4 *3 (-170)) (-4 *1 (-402 *3 *4))
- (-4 *4 (-1202 *3))))
+ (-12 (-5 *2 (-1225 *3)) (-4 *3 (-170)) (-4 *1 (-402 *3 *4))
+ (-4 *4 (-1201 *3))))
((*1 *2 *1)
- (-12 (-4 *1 (-402 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1202 *3))
- (-5 *2 (-1226 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1226 *3)) (-4 *3 (-170)) (-4 *1 (-410 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-1226 *3))))
+ (-12 (-4 *1 (-402 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1201 *3))
+ (-5 *2 (-1225 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1225 *3)) (-4 *3 (-170)) (-4 *1 (-410 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-1225 *3))))
((*1 *1 *2)
(-12 (-5 *2 (-411 *1)) (-4 *1 (-423 *3)) (-4 *3 (-541))
(-4 *3 (-823))))
((*1 *1 *2)
(-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-1018))
(-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-455 *3 *4 *5 *6))))
- ((*1 *1 *2) (-12 (-5 *2 (-1071)) (-5 *1 (-525))))
- ((*1 *2 *1) (-12 (-4 *1 (-594 *2)) (-4 *2 (-1180))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-525))))
+ ((*1 *2 *1) (-12 (-4 *1 (-594 *2)) (-4 *2 (-1179))))
((*1 *1 *2)
- (-12 (-4 *3 (-170)) (-4 *1 (-701 *3 *2)) (-4 *2 (-1202 *3))))
+ (-12 (-4 *3 (-170)) (-4 *1 (-701 *3 *2)) (-4 *2 (-1201 *3))))
((*1 *1 *2)
- (-12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3)) (-4 *3 (-1067))))
+ (-12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3)) (-4 *3 (-1066))))
((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1018)) (-4 *1 (-951 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1029))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1029))))
((*1 *1 *2)
(-12 (-5 *2 (-923 *3)) (-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5))
- (-4 *5 (-594 (-1143))) (-4 *4 (-769)) (-4 *5 (-823))))
+ (-4 *5 (-594 (-1142))) (-4 *4 (-769)) (-4 *5 (-823))))
((*1 *1 *2)
(-1536
(-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5))
- (-12 (-4008 (-4 *3 (-38 (-400 (-549))))) (-4 *3 (-38 (-549)))
- (-4 *5 (-594 (-1143))))
+ (-12 (-4007 (-4 *3 (-38 (-400 (-549))))) (-4 *3 (-38 (-549)))
+ (-4 *5 (-594 (-1142))))
(-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)))
(-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5))
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1143))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1142))))
(-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)))))
((*1 *1 *2)
(-12 (-5 *2 (-923 (-400 (-549)))) (-4 *1 (-1032 *3 *4 *5))
- (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1143))) (-4 *3 (-1018))
+ (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1142))) (-4 *3 (-1018))
(-4 *4 (-769)) (-4 *5 (-823))))
((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-621 *7)) (|:| -1981 *8)))
+ (-12 (-5 *3 (-2 (|:| |val| (-621 *7)) (|:| -1979 *8)))
(-4 *7 (-1032 *4 *5 *6)) (-4 *8 (-1038 *4 *5 *6 *7)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1125))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1124))
(-5 *1 (-1036 *4 *5 *6 *7 *8))))
- ((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-1048))))
- ((*1 *1 *2) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1180))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-1048))))
+ ((*1 *1 *2) (-12 (-4 *1 (-1059 *2)) (-4 *2 (-1179))))
((*1 *1 *2)
- (-12 (-4 *1 (-1070 *3 *4 *5 *6 *2)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *2 (-1067))))
+ (-12 (-4 *1 (-1069 *3 *4 *5 *6 *2)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *2 (-1066))))
((*1 *1 *2)
- (-12 (-4 *1 (-1070 *3 *4 *5 *2 *6)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *2 (-1067)) (-4 *6 (-1067))))
+ (-12 (-4 *1 (-1069 *3 *4 *5 *2 *6)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *2 (-1066)) (-4 *6 (-1066))))
((*1 *1 *2)
- (-12 (-4 *1 (-1070 *3 *4 *2 *5 *6)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *2 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067))))
+ (-12 (-4 *1 (-1069 *3 *4 *2 *5 *6)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *2 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066))))
((*1 *1 *2)
- (-12 (-4 *1 (-1070 *3 *2 *4 *5 *6)) (-4 *3 (-1067)) (-4 *2 (-1067))
- (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067))))
+ (-12 (-4 *1 (-1069 *3 *2 *4 *5 *6)) (-4 *3 (-1066)) (-4 *2 (-1066))
+ (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066))))
((*1 *1 *2)
- (-12 (-4 *1 (-1070 *2 *3 *4 *5 *6)) (-4 *2 (-1067)) (-4 *3 (-1067))
- (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067))))
+ (-12 (-4 *1 (-1069 *2 *3 *4 *5 *6)) (-4 *2 (-1066)) (-4 *3 (-1066))
+ (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066))))
((*1 *1 *2)
- (-12 (-5 *2 (-621 *1)) (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067))
- (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-621 *7)) (|:| -1981 *8)))
- (-4 *7 (-1032 *4 *5 *6)) (-4 *8 (-1076 *4 *5 *6 *7)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1125))
- (-5 *1 (-1112 *4 *5 *6 *7 *8))))
- ((*1 *1 *2) (-12 (-5 *2 (-1071)) (-5 *1 (-1148))))
- ((*1 *2 *1) (-12 (-5 *2 (-1071)) (-5 *1 (-1148))))
- ((*1 *1 *2 *3 *2) (-12 (-5 *2 (-834)) (-5 *3 (-549)) (-5 *1 (-1160))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-834)) (-5 *3 (-549)) (-5 *1 (-1160))))
+ (-12 (-5 *2 (-621 *1)) (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066))
+ (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-2 (|:| |val| (-621 *7)) (|:| -1979 *8)))
+ (-4 *7 (-1032 *4 *5 *6)) (-4 *8 (-1075 *4 *5 *6 *7)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1124))
+ (-5 *1 (-1111 *4 *5 *6 *7 *8))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1070)) (-5 *1 (-1147))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-1147))))
+ ((*1 *1 *2 *3 *2) (-12 (-5 *2 (-834)) (-5 *3 (-549)) (-5 *1 (-1159))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-834)) (-5 *3 (-549)) (-5 *1 (-1159))))
((*1 *2 *3)
(-12 (-5 *3 (-756 *4 (-836 *5)))
- (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *5 (-621 (-1143)))
- (-5 *2 (-756 *4 (-836 *6))) (-5 *1 (-1252 *4 *5 *6))
- (-14 *6 (-621 (-1143)))))
+ (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *5 (-621 (-1142)))
+ (-5 *2 (-756 *4 (-836 *6))) (-5 *1 (-1251 *4 *5 *6))
+ (-14 *6 (-621 (-1142)))))
((*1 *2 *3)
(-12 (-5 *3 (-923 *4)) (-4 *4 (-13 (-821) (-300) (-145) (-993)))
- (-5 *2 (-923 (-995 (-400 *4)))) (-5 *1 (-1252 *4 *5 *6))
- (-14 *5 (-621 (-1143))) (-14 *6 (-621 (-1143)))))
+ (-5 *2 (-923 (-995 (-400 *4)))) (-5 *1 (-1251 *4 *5 *6))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-621 (-1142)))))
((*1 *2 *3)
(-12 (-5 *3 (-756 *4 (-836 *6)))
- (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *6 (-621 (-1143)))
- (-5 *2 (-923 (-995 (-400 *4)))) (-5 *1 (-1252 *4 *5 *6))
- (-14 *5 (-621 (-1143)))))
+ (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *6 (-621 (-1142)))
+ (-5 *2 (-923 (-995 (-400 *4)))) (-5 *1 (-1251 *4 *5 *6))
+ (-14 *5 (-621 (-1142)))))
((*1 *2 *3)
- (-12 (-5 *3 (-1139 *4)) (-4 *4 (-13 (-821) (-300) (-145) (-993)))
- (-5 *2 (-1139 (-995 (-400 *4)))) (-5 *1 (-1252 *4 *5 *6))
- (-14 *5 (-621 (-1143))) (-14 *6 (-621 (-1143)))))
+ (-12 (-5 *3 (-1138 *4)) (-4 *4 (-13 (-821) (-300) (-145) (-993)))
+ (-5 *2 (-1138 (-995 (-400 *4)))) (-5 *1 (-1251 *4 *5 *6))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-621 (-1142)))))
((*1 *2 *3)
(-12
- (-5 *3 (-1113 *4 (-521 (-836 *6)) (-836 *6) (-756 *4 (-836 *6))))
- (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *6 (-621 (-1143)))
- (-5 *2 (-621 (-756 *4 (-836 *6)))) (-5 *1 (-1252 *4 *5 *6))
- (-14 *5 (-621 (-1143))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1157 *4 *5))
- (-4 *4 (-1067)) (-4 *5 (-1067)))))
+ (-5 *3 (-1112 *4 (-521 (-836 *6)) (-836 *6) (-756 *4 (-836 *6))))
+ (-4 *4 (-13 (-821) (-300) (-145) (-993))) (-14 *6 (-621 (-1142)))
+ (-5 *2 (-621 (-756 *4 (-836 *6)))) (-5 *1 (-1251 *4 *5 *6))
+ (-14 *5 (-621 (-1142))))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
- (|:| |relerr| (-219))))
- (-5 *2 (-372)) (-5 *1 (-186)))))
-(((*1 *1 *1) (-12 (-5 *1 (-172 *2)) (-4 *2 (-300)))))
-(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-885 *3)) (-4 *3 (-300)))))
-(((*1 *2 *1) (-12 (-4 *1 (-360 *2)) (-4 *2 (-170)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-981 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-444)) (-4 *4 (-823)) (-4 *5 (-769)) (-5 *2 (-621 *6))
- (-5 *1 (-958 *3 *4 *5 *6)) (-4 *6 (-920 *3 *5 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-963 *2)) (-4 *2 (-541)) (-5 *1 (-140 *2 *4 *3))
- (-4 *3 (-366 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-963 *2)) (-4 *2 (-541)) (-5 *1 (-494 *2 *4 *5 *3))
- (-4 *5 (-366 *2)) (-4 *3 (-366 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-665 *4)) (-4 *4 (-963 *2)) (-4 *2 (-541))
- (-5 *1 (-669 *2 *4))))
+ (-12 (-4 *4 (-366 *2)) (-4 *5 (-366 *2)) (-4 *2 (-356))
+ (-5 *1 (-512 *2 *4 *5 *3)) (-4 *3 (-663 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2))
+ (|has| *2 (-6 (-4338 "*"))) (-4 *2 (-1018))))
((*1 *2 *3)
- (-12 (-4 *4 (-963 *2)) (-4 *2 (-541)) (-5 *1 (-1195 *2 *4 *3))
- (-4 *3 (-1202 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 (-1 *6 (-621 *6))))
- (-4 *5 (-38 (-400 (-549)))) (-4 *6 (-1217 *5)) (-5 *2 (-621 *6))
- (-5 *1 (-1219 *5 *6)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-32 *3 *4))
- (-4 *4 (-423 *3))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-747)) (-5 *1 (-114))))
- ((*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-114))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *4))
- (-4 *4 (-423 *3))))
- ((*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-114)) (-5 *1 (-161))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *4))
- (-4 *4 (-13 (-423 *3) (-973)))))
- ((*1 *2 *2) (-12 (-5 *2 (-114)) (-5 *1 (-294 *3)) (-4 *3 (-295))))
- ((*1 *2 *2) (-12 (-4 *1 (-295)) (-5 *2 (-114))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *4 (-823)) (-5 *1 (-422 *3 *4))
- (-4 *3 (-423 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *4))
- (-4 *4 (-423 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-114)) (-5 *1 (-592 *3)) (-4 *3 (-823))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *4))
- (-4 *4 (-13 (-423 *3) (-973) (-1165)))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-990)))))
-(((*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-219)) (-5 *4 (-549))
- (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) (-5 *2 (-1006))
- (-5 *1 (-725)))))
+ (-12 (-4 *4 (-366 *2)) (-4 *5 (-366 *2)) (-4 *2 (-170))
+ (-5 *1 (-664 *2 *4 *5 *3)) (-4 *3 (-663 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1089 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2))
+ (-4 *5 (-232 *3 *2)) (|has| *2 (-6 (-4338 "*"))) (-4 *2 (-1018)))))
+(((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
+ (|partial| -12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769))
+ (-4 *8 (-823)) (-4 *9 (-1032 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| -2649 (-621 *9)) (|:| -1979 *4) (|:| |ineq| (-621 *9))))
+ (-5 *1 (-959 *6 *7 *8 *9 *4)) (-5 *3 (-621 *9))
+ (-4 *4 (-1038 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
+ (|partial| -12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769))
+ (-4 *8 (-823)) (-4 *9 (-1032 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| -2649 (-621 *9)) (|:| -1979 *4) (|:| |ineq| (-621 *9))))
+ (-5 *1 (-1073 *6 *7 *8 *9 *4)) (-5 *3 (-621 *9))
+ (-4 *4 (-1038 *6 *7 *8 *9)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *1 *1 *1) (-4 *1 (-534))))
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
(((*1 *2 *1)
- (-12 (-4 *2 (-1180)) (-5 *1 (-844 *3 *2)) (-4 *3 (-1180))))
- ((*1 *2 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))))
+ (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3))
+ (-4 *5 (-366 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
+ (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-112)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-747)) (-5 *2 (-112)) (-5 *1 (-568 *3)) (-4 *3 (-534)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1202 *5)) (-4 *5 (-356))
+ (-12 (-5 *2 (-621 (-621 *6))) (-4 *6 (-920 *3 *5 *4))
+ (-4 *3 (-13 (-300) (-145))) (-4 *4 (-13 (-823) (-594 (-1142))))
+ (-4 *5 (-769)) (-5 *1 (-895 *3 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1124)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1230))
+ (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1124)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1230))
+ (-5 *1 (-1073 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
(-5 *2
- (-2 (|:| |ir| (-567 (-400 *6))) (|:| |specpart| (-400 *6))
- (|:| |polypart| *6)))
- (-5 *1 (-559 *5 *6)) (-5 *3 (-400 *6)))))
+ (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549))
+ (|:| |success| (-112))))
+ (-5 *1 (-765)) (-5 *5 (-549)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-52))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-747)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
+ (-4 *3 (-1032 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-621 *4))
+ (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4))))))
+ (-5 *1 (-1036 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-621 *4))
+ (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4))))))
+ (-5 *1 (-1036 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-747)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
+ (-4 *3 (-1032 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-621 *4))
+ (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4))))))
+ (-5 *1 (-1111 *6 *7 *8 *3 *4)) (-4 *4 (-1075 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-621 *4))
+ (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4))))))
+ (-5 *1 (-1111 *5 *6 *7 *3 *4)) (-4 *4 (-1075 *5 *6 *7 *3)))))
+(((*1 *1) (-12 (-4 *1 (-418 *2)) (-4 *2 (-361)) (-4 *2 (-1066)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
+ (-5 *1 (-1094 *3 *2)) (-4 *3 (-1201 *2)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *2 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
+ (-5 *1 (-1094 *3 *2)) (-4 *3 (-1201 *2)))))
+(((*1 *1 *2 *2 *2)
+ (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1164)))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356))))
+ ((*1 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356))))
+ ((*1 *2 *1 *3 *4 *4)
+ (-12 (-5 *3 (-892)) (-5 *4 (-372)) (-5 *2 (-1230)) (-5 *1 (-1226)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1179)) (-5 *1 (-844 *3 *2)) (-4 *3 (-1179))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-747)) (-4 *5 (-541))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-940 *5 *3)) (-4 *3 (-1201 *5)))))
+(((*1 *2 *3 *2)
+ (|partial| -12 (-5 *3 (-892)) (-5 *1 (-434 *2))
+ (-4 *2 (-1201 (-549)))))
+ ((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-892)) (-5 *4 (-747)) (-5 *1 (-434 *2))
+ (-4 *2 (-1201 (-549)))))
+ ((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-892)) (-5 *4 (-621 (-747))) (-5 *1 (-434 *2))
+ (-4 *2 (-1201 (-549)))))
+ ((*1 *2 *3 *2 *4 *5)
+ (|partial| -12 (-5 *3 (-892)) (-5 *4 (-621 (-747))) (-5 *5 (-747))
+ (-5 *1 (-434 *2)) (-4 *2 (-1201 (-549)))))
+ ((*1 *2 *3 *2 *4 *5 *6)
+ (|partial| -12 (-5 *3 (-892)) (-5 *4 (-621 (-747))) (-5 *5 (-747))
+ (-5 *6 (-112)) (-5 *1 (-434 *2)) (-4 *2 (-1201 (-549)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-892)) (-5 *4 (-411 *2)) (-4 *2 (-1201 *5))
+ (-5 *1 (-436 *5 *2)) (-4 *5 (-1018)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1143))
+ (-12 (-5 *3 (-1142))
(-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *4 *5))
- (-4 *5 (-13 (-27) (-1165) (-423 *4)))))
+ (-4 *5 (-13 (-27) (-1164) (-423 *4)))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *4 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *4)))))
+ (-4 *3 (-13 (-27) (-1164) (-423 *4)))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-400 (-549)))
(-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *5 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *5)))))
+ (-4 *3 (-13 (-27) (-1164) (-423 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5)))
+ (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5)))
(-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *5 *3))))
((*1 *2 *3 *4 *5)
(-12 (-5 *4 (-287 *3)) (-5 *5 (-400 (-549)))
- (-4 *3 (-13 (-27) (-1165) (-423 *6)))
+ (-4 *3 (-13 (-27) (-1164) (-423 *6)))
(-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *6 *3))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 (-549))) (-5 *4 (-287 *6))
- (-4 *6 (-13 (-27) (-1165) (-423 *5)))
+ (-4 *6 (-13 (-27) (-1164) (-423 *5)))
(-4 *5 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-451 *5 *6))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1143)) (-5 *5 (-287 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *6)))
+ (-12 (-5 *4 (-1142)) (-5 *5 (-287 *3))
+ (-4 *3 (-13 (-27) (-1164) (-423 *6)))
(-4 *6 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-451 *6 *3))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *7 (-549))) (-5 *4 (-287 *7)) (-5 *5 (-1193 (-549)))
- (-4 *7 (-13 (-27) (-1165) (-423 *6)))
+ (-12 (-5 *3 (-1 *7 (-549))) (-5 *4 (-287 *7)) (-5 *5 (-1192 (-549)))
+ (-4 *7 (-13 (-27) (-1164) (-423 *6)))
(-4 *6 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-451 *6 *7))))
((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-1143)) (-5 *5 (-287 *3)) (-5 *6 (-1193 (-549)))
- (-4 *3 (-13 (-27) (-1165) (-423 *7)))
+ (-12 (-5 *4 (-1142)) (-5 *5 (-287 *3)) (-5 *6 (-1192 (-549)))
+ (-4 *3 (-13 (-27) (-1164) (-423 *7)))
(-4 *7 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-451 *7 *3))))
((*1 *2 *3 *4 *5 *6)
(-12 (-5 *3 (-1 *8 (-400 (-549)))) (-5 *4 (-287 *8))
- (-5 *5 (-1193 (-400 (-549)))) (-5 *6 (-400 (-549)))
- (-4 *8 (-13 (-27) (-1165) (-423 *7)))
+ (-5 *5 (-1192 (-400 (-549)))) (-5 *6 (-400 (-549)))
+ (-4 *8 (-13 (-27) (-1164) (-423 *7)))
(-4 *7 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-451 *7 *8))))
((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *4 (-1143)) (-5 *5 (-287 *3)) (-5 *6 (-1193 (-400 (-549))))
- (-5 *7 (-400 (-549))) (-4 *3 (-13 (-27) (-1165) (-423 *8)))
+ (-12 (-5 *4 (-1142)) (-5 *5 (-287 *3)) (-5 *6 (-1192 (-400 (-549))))
+ (-5 *7 (-400 (-549))) (-4 *3 (-13 (-27) (-1164) (-423 *8)))
(-4 *8 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-451 *8 *3))))
((*1 *1 *2)
- (-12 (-5 *2 (-1123 (-2 (|:| |k| (-549)) (|:| |c| *3))))
+ (-12 (-5 *2 (-1122 (-2 (|:| |k| (-549)) (|:| |c| *3))))
(-4 *3 (-1018)) (-5 *1 (-576 *3))))
((*1 *1 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-577 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-577 *3))))
((*1 *1 *2)
- (-12 (-5 *2 (-1123 (-2 (|:| |k| (-549)) (|:| |c| *3))))
- (-4 *3 (-1018)) (-4 *1 (-1186 *3))))
+ (-12 (-5 *2 (-1122 (-2 (|:| |k| (-549)) (|:| |c| *3))))
+ (-4 *3 (-1018)) (-4 *1 (-1185 *3))))
((*1 *1 *2 *3)
(-12 (-5 *2 (-747))
- (-5 *3 (-1123 (-2 (|:| |k| (-400 (-549))) (|:| |c| *4))))
- (-4 *4 (-1018)) (-4 *1 (-1207 *4))))
+ (-5 *3 (-1122 (-2 (|:| |k| (-400 (-549))) (|:| |c| *4))))
+ (-4 *4 (-1018)) (-4 *1 (-1206 *4))))
((*1 *1 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-4 *1 (-1217 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-4 *1 (-1216 *3))))
((*1 *1 *2)
- (-12 (-5 *2 (-1123 (-2 (|:| |k| (-747)) (|:| |c| *3))))
- (-4 *3 (-1018)) (-4 *1 (-1217 *3)))))
+ (-12 (-5 *2 (-1122 (-2 (|:| |k| (-747)) (|:| |c| *3))))
+ (-4 *3 (-1018)) (-4 *1 (-1216 *3)))))
(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-460)) (-5 *4 (-892)) (-5 *2 (-1231)) (-5 *1 (-1227)))))
+ (-12 (-5 *3 (-460)) (-5 *4 (-892)) (-5 *2 (-1230)) (-5 *1 (-1226)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-863 *4)) (-4 *4 (-1067)) (-5 *2 (-1 (-112) *5))
- (-5 *1 (-861 *4 *5)) (-4 *5 (-1180))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1133)))))
-(((*1 *2 *2) (-12 (-5 *2 (-665 (-309 (-549)))) (-5 *1 (-1002)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1125)) (-5 *4 (-549)) (-5 *5 (-665 (-219)))
- (-5 *2 (-1006)) (-5 *1 (-731)))))
+ (-12 (-5 *3 (-863 *4)) (-4 *4 (-1066)) (-5 *2 (-1 (-112) *5))
+ (-5 *1 (-861 *4 *5)) (-4 *5 (-1179))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-1132)))))
+(((*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1011)))))
+(((*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-219)) (-5 *1 (-298)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-1061 *3)) (-4 *3 (-920 *7 *6 *4)) (-4 *6 (-769))
+ (-12 (-5 *5 (-1060 *3)) (-4 *3 (-920 *7 *6 *4)) (-4 *6 (-769))
(-4 *4 (-823)) (-4 *7 (-541))
(-5 *2 (-2 (|:| |num| *3) (|:| |den| (-549))))
(-5 *1 (-575 *6 *4 *7 *3))))
@@ -7874,145 +8232,154 @@
((*1 *1 *1 *1 *1) (-5 *1 (-834))) ((*1 *1 *1 *1) (-5 *1 (-834)))
((*1 *1 *1) (-5 *1 (-834)))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-1143))
+ (-12 (-5 *3 (-1142))
(-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-1135 *4 *2)) (-4 *2 (-13 (-423 *4) (-158) (-27) (-1165)))))
+ (-5 *1 (-1134 *4 *2)) (-4 *2 (-13 (-423 *4) (-158) (-27) (-1164)))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-1059 *2)) (-4 *2 (-13 (-423 *4) (-158) (-27) (-1165)))
+ (-12 (-5 *3 (-1058 *2)) (-4 *2 (-13 (-423 *4) (-158) (-27) (-1164)))
(-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-1135 *4 *2))))
+ (-5 *1 (-1134 *4 *2))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1143)) (-4 *5 (-13 (-541) (-823) (-1009 (-549))))
- (-5 *2 (-400 (-923 *5))) (-5 *1 (-1136 *5)) (-5 *3 (-923 *5))))
+ (-12 (-5 *4 (-1142)) (-4 *5 (-13 (-541) (-823) (-1009 (-549))))
+ (-5 *2 (-400 (-923 *5))) (-5 *1 (-1135 *5)) (-5 *3 (-923 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1143)) (-4 *5 (-13 (-541) (-823) (-1009 (-549))))
- (-5 *2 (-3 (-400 (-923 *5)) (-309 *5))) (-5 *1 (-1136 *5))
+ (-12 (-5 *4 (-1142)) (-4 *5 (-13 (-541) (-823) (-1009 (-549))))
+ (-5 *2 (-3 (-400 (-923 *5)) (-309 *5))) (-5 *1 (-1135 *5))
(-5 *3 (-400 (-923 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1059 (-923 *5))) (-5 *3 (-923 *5))
+ (-12 (-5 *4 (-1058 (-923 *5))) (-5 *3 (-923 *5))
(-4 *5 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-400 *3))
- (-5 *1 (-1136 *5))))
+ (-5 *1 (-1135 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1059 (-400 (-923 *5)))) (-5 *3 (-400 (-923 *5)))
+ (-12 (-5 *4 (-1058 (-400 (-923 *5)))) (-5 *3 (-400 (-923 *5)))
(-4 *5 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-3 *3 (-309 *5)))
- (-5 *1 (-1136 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
- (-4 *2 (-423 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-444)) (-5 *2 (-112))
- (-5 *1 (-353 *4 *5)) (-14 *5 (-621 (-1143)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-756 *4 (-836 *5)))) (-4 *4 (-444))
- (-14 *5 (-621 (-1143))) (-5 *2 (-112)) (-5 *1 (-606 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *1 (-460)))))
-(((*1 *2 *2)
- (-12 (-4 *2 (-170)) (-4 *2 (-1018)) (-5 *1 (-691 *2 *3))
- (-4 *3 (-624 *2))))
- ((*1 *2 *2) (-12 (-5 *1 (-810 *2)) (-4 *2 (-170)) (-4 *2 (-1018)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-342)) (-5 *2 (-112)) (-5 *1 (-210 *4 *3))
- (-4 *3 (-1202 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-1009 (-549))) (-4 *3 (-13 (-823) (-541)))
- (-5 *1 (-32 *3 *2)) (-4 *2 (-423 *3))))
- ((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-1139 *4)) (-5 *1 (-163 *3 *4))
- (-4 *3 (-164 *4))))
- ((*1 *1 *1) (-12 (-4 *1 (-1018)) (-4 *1 (-295))))
- ((*1 *2) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-1139 *3))))
- ((*1 *2) (-12 (-4 *1 (-701 *3 *2)) (-4 *3 (-170)) (-4 *2 (-1202 *3))))
+ (-5 *1 (-1135 *5)))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-621 (-665 *6))) (-5 *4 (-112)) (-5 *5 (-549))
+ (-5 *2 (-665 *6)) (-5 *1 (-1000 *6)) (-4 *6 (-356)) (-4 *6 (-1018))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-621 (-665 *4))) (-5 *2 (-665 *4)) (-5 *1 (-1000 *4))
+ (-4 *4 (-356)) (-4 *4 (-1018))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-621 (-665 *5))) (-5 *4 (-549)) (-5 *2 (-665 *5))
+ (-5 *1 (-1000 *5)) (-4 *5 (-356)) (-4 *5 (-1018)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-1142))
+ (-4 *4 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-600 *4 *2)) (-4 *2 (-13 (-1164) (-930) (-29 *4))))))
+(((*1 *1) (-5 *1 (-430))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-863 *4)) (-4 *4 (-1066)) (-5 *1 (-860 *4 *3))
+ (-4 *3 (-1066)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
+ (-5 *2
+ (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549))
+ (|:| |success| (-112))))
+ (-5 *1 (-765)) (-5 *5 (-549)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3))
+ (-4 *5 (-366 *3)) (-5 *2 (-549))))
((*1 *2 *1)
- (-12 (-4 *1 (-1035 *3 *2)) (-4 *3 (-13 (-821) (-356)))
- (-4 *2 (-1202 *3)))))
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
+ (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-549)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-621 (-549))) (-5 *3 (-112)) (-5 *1 (-1076)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 (-1060 (-400 (-549))))) (-5 *1 (-256))))
+ ((*1 *1 *2) (-12 (-5 *2 (-621 (-1060 (-372)))) (-5 *1 (-256)))))
+(((*1 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
+ (-5 *1 (-948 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-1142))
+ (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
+ (-4 *4 (-13 (-29 *6) (-1164) (-930)))
+ (-5 *2 (-2 (|:| |particular| *4) (|:| -2619 (-621 *4))))
+ (-5 *1 (-777 *6 *4 *3)) (-4 *3 (-632 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-584 *2 *3)) (-4 *3 (-1179)) (-4 *2 (-1066))
+ (-4 *2 (-823)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-145))
- (-4 *3 (-300)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *1 (-948 *3 *4 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 *3)) (-4 *3 (-920 *5 *6 *7)) (-4 *5 (-444))
- (-4 *6 (-769)) (-4 *7 (-823))
- (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5)))
- (-5 *1 (-441 *5 *6 *7 *3)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-621 *1)) (-4 *1 (-1032 *4 *5 *6)) (-4 *4 (-1018))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))))
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-541))
+ (-5 *2 (-2 (|:| -1569 *4) (|:| -2262 *3) (|:| -1809 *3)))
+ (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4))))
((*1 *2 *1 *1)
- (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-823)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1173 *4 *5 *6 *3)) (-4 *4 (-541)) (-4 *5 (-769))
- (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-52)) (-5 *1 (-805)))))
+ (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-1032 *3 *4 *5))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-541)) (-4 *3 (-1018))
+ (-5 *2 (-2 (|:| -1569 *3) (|:| -2262 *1) (|:| -1809 *1)))
+ (-4 *1 (-1201 *3)))))
+(((*1 *2 *3 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |cycle?| (-112)) (|:| -1887 (-747)) (|:| |period| (-747))))
+ (-5 *1 (-1122 *4)) (-4 *4 (-1179)) (-5 *3 (-747)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1009 (-549))) (-4 *1 (-295)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-534)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-876 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1106 *4 *5)) (-4 *4 (-13 (-1066) (-34)))
+ (-4 *5 (-13 (-1066) (-34))) (-5 *2 (-112)) (-5 *1 (-1107 *4 *5)))))
(((*1 *2)
- (-12 (-4 *4 (-1184)) (-4 *5 (-1202 *4)) (-4 *6 (-1202 (-400 *5)))
- (-5 *2 (-112)) (-5 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-335 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-5 *1 (-971 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-625 *3 *4 *5)) (-4 *3 (-1067))
- (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-400 (-549)))
- (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-270 *4 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *4))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-747)) (-4 *4 (-356)) (-5 *1 (-867 *2 *4))
- (-4 *2 (-1202 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-541)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3))
- (-5 *1 (-1170 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *1 (-937 *2)) (-4 *2 (-938)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *1) (-12 (-4 *1 (-541)) (-5 *2 (-112)))))
+ (-12 (-5 *2 (-1230)) (-5 *1 (-1156 *3 *4)) (-4 *3 (-1066))
+ (-4 *4 (-1066)))))
+(((*1 *2 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-728)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-482)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1138 *1)) (-5 *4 (-1142)) (-4 *1 (-27))
+ (-5 *2 (-621 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1138 *1)) (-4 *1 (-27)) (-5 *2 (-621 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-923 *1)) (-4 *1 (-27)) (-5 *2 (-621 *1))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-621 *1))
+ (-4 *1 (-29 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *2 (-621 *1)) (-4 *1 (-29 *3)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-981 *2)) (-4 *2 (-1179)))))
(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-914 (-219))) (-5 *4 (-845)) (-5 *2 (-1231))
+ (-12 (-5 *3 (-914 (-219))) (-5 *4 (-845)) (-5 *2 (-1230))
(-5 *1 (-460))))
((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1018)) (-4 *1 (-951 *3))))
((*1 *2 *1)
- (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-914 *3))))
+ (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-914 *3))))
((*1 *1 *2)
- (-12 (-5 *2 (-914 *3)) (-4 *3 (-1018)) (-4 *1 (-1101 *3))))
+ (-12 (-5 *2 (-914 *3)) (-4 *3 (-1018)) (-4 *1 (-1100 *3))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-1101 *3)) (-4 *3 (-1018))))
+ (-12 (-5 *2 (-747)) (-4 *1 (-1100 *3)) (-4 *3 (-1018))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *1 (-1101 *3)) (-4 *3 (-1018))))
+ (-12 (-5 *2 (-621 *3)) (-4 *1 (-1100 *3)) (-4 *3 (-1018))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-914 *3)) (-4 *1 (-1101 *3)) (-4 *3 (-1018))))
+ (-12 (-5 *2 (-914 *3)) (-4 *1 (-1100 *3)) (-4 *3 (-1018))))
((*1 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1176)) (-5 *3 (-219)))))
+ (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1175)) (-5 *3 (-219)))))
(((*1 *1 *2 *1)
(-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-47 *3 *4)) (-4 *3 (-1018))
(-4 *4 (-768))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-50 *3 *4))
- (-14 *4 (-621 (-1143)))))
+ (-14 *4 (-621 (-1142)))))
((*1 *1 *2 *1 *1 *3)
- (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180))
+ (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179))
(-4 *4 (-366 *3)) (-4 *5 (-366 *3))))
((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180))
+ (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179))
(-4 *4 (-366 *3)) (-4 *5 (-366 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179))
(-4 *4 (-366 *3)) (-4 *5 (-366 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-58 *5)) (-4 *5 (-1180))
- (-4 *6 (-1180)) (-5 *2 (-58 *6)) (-5 *1 (-57 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-58 *5)) (-4 *5 (-1179))
+ (-4 *6 (-1179)) (-5 *2 (-58 *6)) (-5 *1 (-57 *5 *6))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-135 *5 *6 *7)) (-14 *5 (-549))
(-14 *6 (-747)) (-4 *7 (-170)) (-4 *8 (-170))
@@ -8022,19 +8389,19 @@
(-4 *6 (-170)) (-5 *2 (-167 *6)) (-5 *1 (-166 *5 *6))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-309 *3) (-309 *3))) (-4 *3 (-13 (-1018) (-823)))
- (-5 *1 (-217 *3 *4)) (-14 *4 (-621 (-1143)))))
+ (-5 *1 (-217 *3 *4)) (-14 *4 (-621 (-1142)))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-234 *5 *6)) (-14 *5 (-747))
- (-4 *6 (-1180)) (-4 *7 (-1180)) (-5 *2 (-234 *5 *7))
+ (-4 *6 (-1179)) (-4 *7 (-1179)) (-5 *2 (-234 *5 *7))
(-5 *1 (-233 *5 *6 *7))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-287 *5)) (-4 *5 (-1180))
- (-4 *6 (-1180)) (-5 *2 (-287 *6)) (-5 *1 (-286 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-287 *5)) (-4 *5 (-1179))
+ (-4 *6 (-1179)) (-5 *2 (-287 *6)) (-5 *1 (-286 *5 *6))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1180)) (-5 *1 (-287 *3))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1179)) (-5 *1 (-287 *3))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1125)) (-5 *5 (-592 *6))
- (-4 *6 (-295)) (-4 *2 (-1180)) (-5 *1 (-290 *6 *2))))
+ (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1124)) (-5 *5 (-592 *6))
+ (-4 *6 (-295)) (-4 *2 (-1179)) (-5 *1 (-290 *6 *2))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-592 *5)) (-4 *5 (-295))
(-4 *2 (-295)) (-5 *1 (-291 *5 *2))))
@@ -8048,24 +8415,24 @@
(-4 *6 (-823)) (-5 *2 (-309 *6)) (-5 *1 (-307 *5 *6))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-329 *5 *6 *7 *8)) (-4 *5 (-356))
- (-4 *6 (-1202 *5)) (-4 *7 (-1202 (-400 *6))) (-4 *8 (-335 *5 *6 *7))
- (-4 *9 (-356)) (-4 *10 (-1202 *9)) (-4 *11 (-1202 (-400 *10)))
+ (-4 *6 (-1201 *5)) (-4 *7 (-1201 (-400 *6))) (-4 *8 (-335 *5 *6 *7))
+ (-4 *9 (-356)) (-4 *10 (-1201 *9)) (-4 *11 (-1201 (-400 *10)))
(-5 *2 (-329 *9 *10 *11 *12))
(-5 *1 (-326 *5 *6 *7 *8 *9 *10 *11 *12))
(-4 *12 (-335 *9 *10 *11))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-331 *3)) (-4 *3 (-1067))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-331 *3)) (-4 *3 (-1066))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1184)) (-4 *8 (-1184))
- (-4 *6 (-1202 *5)) (-4 *7 (-1202 (-400 *6))) (-4 *9 (-1202 *8))
+ (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1183)) (-4 *8 (-1183))
+ (-4 *6 (-1201 *5)) (-4 *7 (-1201 (-400 *6))) (-4 *9 (-1201 *8))
(-4 *2 (-335 *8 *9 *10)) (-5 *1 (-333 *5 *6 *7 *4 *8 *9 *10 *2))
- (-4 *4 (-335 *5 *6 *7)) (-4 *10 (-1202 (-400 *9)))))
+ (-4 *4 (-335 *5 *6 *7)) (-4 *10 (-1201 (-400 *9)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1180)) (-4 *6 (-1180))
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1179)) (-4 *6 (-1179))
(-4 *2 (-366 *6)) (-5 *1 (-364 *5 *4 *6 *2)) (-4 *4 (-366 *5))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-375 *3 *4)) (-4 *3 (-1018))
- (-4 *4 (-1067))))
+ (-4 *4 (-1066))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-411 *5)) (-4 *5 (-541))
(-4 *6 (-541)) (-5 *2 (-411 *6)) (-5 *1 (-398 *5 *6))))
@@ -8074,9 +8441,9 @@
(-4 *6 (-541)) (-5 *2 (-400 *6)) (-5 *1 (-399 *5 *6))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-406 *5 *6 *7 *8)) (-4 *5 (-300))
- (-4 *6 (-963 *5)) (-4 *7 (-1202 *6))
+ (-4 *6 (-963 *5)) (-4 *7 (-1201 *6))
(-4 *8 (-13 (-402 *6 *7) (-1009 *6))) (-4 *9 (-300))
- (-4 *10 (-963 *9)) (-4 *11 (-1202 *10))
+ (-4 *10 (-963 *9)) (-4 *11 (-1201 *10))
(-5 *2 (-406 *9 *10 *11 *12))
(-5 *1 (-405 *5 *6 *7 *8 *9 *10 *11 *12))
(-4 *12 (-13 (-402 *10 *11) (-1009 *10)))))
@@ -8090,21 +8457,21 @@
(-4 *6 (-13 (-1018) (-823))) (-4 *2 (-423 *6))
(-5 *1 (-414 *5 *4 *6 *2)) (-4 *4 (-423 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1067)) (-4 *6 (-1067))
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1066)) (-4 *6 (-1066))
(-4 *2 (-418 *6)) (-5 *1 (-416 *5 *4 *6 *2)) (-4 *4 (-418 *5))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-481 *3)) (-4 *3 (-1180))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-481 *3)) (-4 *3 (-1179))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-500 *3 *4)) (-4 *3 (-1067))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-500 *3 *4)) (-4 *3 (-1066))
(-4 *4 (-823))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-567 *5)) (-4 *5 (-356))
(-4 *6 (-356)) (-5 *2 (-567 *6)) (-5 *1 (-566 *5 *6))))
((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-1 *6 *5))
- (-5 *4 (-3 (-2 (|:| -3440 *5) (|:| |coeff| *5)) "failed"))
+ (-5 *4 (-3 (-2 (|:| -2677 *5) (|:| |coeff| *5)) "failed"))
(-4 *5 (-356)) (-4 *6 (-356))
- (-5 *2 (-2 (|:| -3440 *6) (|:| |coeff| *6)))
+ (-5 *2 (-2 (|:| -2677 *6) (|:| |coeff| *6)))
(-5 *1 (-566 *5 *6))))
((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed"))
@@ -8124,31 +8491,31 @@
(-621 (-2 (|:| |coeff| *6) (|:| |logand| *6))))))
(-5 *1 (-566 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-581 *5)) (-4 *5 (-1180))
- (-4 *6 (-1180)) (-5 *2 (-581 *6)) (-5 *1 (-578 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-581 *5)) (-4 *5 (-1179))
+ (-4 *6 (-1179)) (-5 *2 (-581 *6)) (-5 *1 (-578 *5 *6))))
((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-581 *6)) (-5 *5 (-581 *7))
- (-4 *6 (-1180)) (-4 *7 (-1180)) (-4 *8 (-1180)) (-5 *2 (-581 *8))
+ (-4 *6 (-1179)) (-4 *7 (-1179)) (-4 *8 (-1179)) (-5 *2 (-581 *8))
(-5 *1 (-579 *6 *7 *8))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1123 *6)) (-5 *5 (-581 *7))
- (-4 *6 (-1180)) (-4 *7 (-1180)) (-4 *8 (-1180)) (-5 *2 (-1123 *8))
+ (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1122 *6)) (-5 *5 (-581 *7))
+ (-4 *6 (-1179)) (-4 *7 (-1179)) (-4 *8 (-1179)) (-5 *2 (-1122 *8))
(-5 *1 (-579 *6 *7 *8))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-581 *6)) (-5 *5 (-1123 *7))
- (-4 *6 (-1180)) (-4 *7 (-1180)) (-4 *8 (-1180)) (-5 *2 (-1123 *8))
+ (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-581 *6)) (-5 *5 (-1122 *7))
+ (-4 *6 (-1179)) (-4 *7 (-1179)) (-4 *8 (-1179)) (-5 *2 (-1122 *8))
(-5 *1 (-579 *6 *7 *8))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1180)) (-5 *1 (-581 *3))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1179)) (-5 *1 (-581 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-621 *5)) (-4 *5 (-1180))
- (-4 *6 (-1180)) (-5 *2 (-621 *6)) (-5 *1 (-619 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-621 *5)) (-4 *5 (-1179))
+ (-4 *6 (-1179)) (-5 *2 (-621 *6)) (-5 *1 (-619 *5 *6))))
((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-621 *6)) (-5 *5 (-621 *7))
- (-4 *6 (-1180)) (-4 *7 (-1180)) (-4 *8 (-1180)) (-5 *2 (-621 *8))
+ (-4 *6 (-1179)) (-4 *7 (-1179)) (-4 *8 (-1179)) (-5 *2 (-621 *8))
(-5 *1 (-620 *6 *7 *8))))
((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-627 *3)) (-4 *3 (-1180))))
+ (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-627 *3)) (-4 *3 (-1179))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1018)) (-4 *8 (-1018))
(-4 *6 (-366 *5)) (-4 *7 (-366 *5)) (-4 *2 (-663 *8 *9 *10))
@@ -8161,9 +8528,9 @@
(-4 *4 (-663 *5 *6 *7)) (-4 *9 (-366 *8)) (-4 *10 (-366 *8))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-541)) (-4 *7 (-541))
- (-4 *6 (-1202 *5)) (-4 *2 (-1202 (-400 *8)))
- (-5 *1 (-686 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1202 (-400 *6)))
- (-4 *8 (-1202 *7))))
+ (-4 *6 (-1201 *5)) (-4 *2 (-1201 (-400 *8)))
+ (-5 *1 (-686 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1201 (-400 *6)))
+ (-4 *8 (-1201 *7))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-1018)) (-4 *9 (-1018))
(-4 *5 (-823)) (-4 *6 (-769)) (-4 *2 (-920 *9 *7 *5))
@@ -8188,33 +8555,33 @@
(-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-170)) (-4 *6 (-170))
(-4 *2 (-773 *6)) (-5 *1 (-774 *4 *5 *2 *6)) (-4 *4 (-773 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-809 *5)) (-4 *5 (-1067))
- (-4 *6 (-1067)) (-5 *2 (-809 *6)) (-5 *1 (-808 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-809 *5)) (-4 *5 (-1066))
+ (-4 *6 (-1066)) (-5 *2 (-809 *6)) (-5 *1 (-808 *5 *6))))
((*1 *2 *3 *4 *2)
(-12 (-5 *2 (-809 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-809 *5))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-5 *1 (-808 *5 *6))))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-5 *1 (-808 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-816 *5)) (-4 *5 (-1067))
- (-4 *6 (-1067)) (-5 *2 (-816 *6)) (-5 *1 (-815 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-816 *5)) (-4 *5 (-1066))
+ (-4 *6 (-1066)) (-5 *2 (-816 *6)) (-5 *1 (-815 *5 *6))))
((*1 *2 *3 *4 *2 *2)
(-12 (-5 *2 (-816 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-816 *5))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-5 *1 (-815 *5 *6))))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-5 *1 (-815 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-848 *5)) (-4 *5 (-1180))
- (-4 *6 (-1180)) (-5 *2 (-848 *6)) (-5 *1 (-847 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-848 *5)) (-4 *5 (-1179))
+ (-4 *6 (-1179)) (-5 *2 (-848 *6)) (-5 *1 (-847 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-850 *5)) (-4 *5 (-1180))
- (-4 *6 (-1180)) (-5 *2 (-850 *6)) (-5 *1 (-849 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-850 *5)) (-4 *5 (-1179))
+ (-4 *6 (-1179)) (-5 *2 (-850 *6)) (-5 *1 (-849 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-853 *5)) (-4 *5 (-1180))
- (-4 *6 (-1180)) (-5 *2 (-853 *6)) (-5 *1 (-852 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-853 *5)) (-4 *5 (-1179))
+ (-4 *6 (-1179)) (-5 *2 (-853 *6)) (-5 *1 (-852 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-860 *5 *6)) (-4 *5 (-1067))
- (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-860 *5 *7))
+ (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-860 *5 *6)) (-4 *5 (-1066))
+ (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-860 *5 *7))
(-5 *1 (-859 *5 *6 *7))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-863 *5)) (-4 *5 (-1067))
- (-4 *6 (-1067)) (-5 *2 (-863 *6)) (-5 *1 (-862 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-863 *5)) (-4 *5 (-1066))
+ (-4 *6 (-1066)) (-5 *2 (-863 *6)) (-5 *1 (-862 *5 *6))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-923 *5)) (-4 *5 (-1018))
(-4 *6 (-1018)) (-5 *2 (-923 *6)) (-5 *1 (-917 *5 *6))))
@@ -8222,12 +8589,12 @@
(-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-823))
(-4 *8 (-1018)) (-4 *6 (-769))
(-4 *2
- (-13 (-1067)
- (-10 -8 (-15 -2486 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-747))))))
+ (-13 (-1066)
+ (-10 -8 (-15 -2484 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-747))))))
(-5 *1 (-922 *6 *7 *8 *5 *2)) (-4 *5 (-920 *8 *6 *7))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-929 *5)) (-4 *5 (-1180))
- (-4 *6 (-1180)) (-5 *2 (-929 *6)) (-5 *1 (-928 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-929 *5)) (-4 *5 (-1179))
+ (-4 *6 (-1179)) (-5 *2 (-929 *6)) (-5 *1 (-928 *5 *6))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-914 *5)) (-4 *5 (-1018))
(-4 *6 (-1018)) (-5 *2 (-914 *6)) (-5 *1 (-952 *5 *6))))
@@ -8236,8 +8603,8 @@
(-4 *2 (-920 (-923 *4) *5 *6)) (-4 *5 (-769))
(-4 *6
(-13 (-823)
- (-10 -8 (-15 -2845 ((-1143) $))
- (-15 -3011 ((-3 $ "failed") (-1143))))))
+ (-10 -8 (-15 -2843 ((-1142) $))
+ (-15 -3009 ((-3 $ "failed") (-1142))))))
(-5 *1 (-955 *4 *5 *6 *2))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-541)) (-4 *6 (-541))
@@ -8259,207 +8626,199 @@
(-4 *4 (-1021 *5 *6 *7 *8 *9)) (-4 *11 (-232 *6 *10))
(-4 *12 (-232 *5 *10))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1061 *5)) (-4 *5 (-1180))
- (-4 *6 (-1180)) (-5 *2 (-1061 *6)) (-5 *1 (-1056 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1060 *5)) (-4 *5 (-1179))
+ (-4 *6 (-1179)) (-5 *2 (-1060 *6)) (-5 *1 (-1055 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1061 *5)) (-4 *5 (-821))
- (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-621 *6))
- (-5 *1 (-1056 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1060 *5)) (-4 *5 (-821))
+ (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-621 *6))
+ (-5 *1 (-1055 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1059 *5)) (-4 *5 (-1180))
- (-4 *6 (-1180)) (-5 *2 (-1059 *6)) (-5 *1 (-1058 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1058 *5)) (-4 *5 (-1179))
+ (-4 *6 (-1179)) (-5 *2 (-1058 *6)) (-5 *1 (-1057 *5 *6))))
((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1062 *4 *2)) (-4 *4 (-821))
- (-4 *2 (-1116 *4))))
+ (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1061 *4 *2)) (-4 *4 (-821))
+ (-4 *2 (-1115 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1123 *5)) (-4 *5 (-1180))
- (-4 *6 (-1180)) (-5 *2 (-1123 *6)) (-5 *1 (-1121 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1122 *5)) (-4 *5 (-1179))
+ (-4 *6 (-1179)) (-5 *2 (-1122 *6)) (-5 *1 (-1120 *5 *6))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1123 *6)) (-5 *5 (-1123 *7))
- (-4 *6 (-1180)) (-4 *7 (-1180)) (-4 *8 (-1180)) (-5 *2 (-1123 *8))
- (-5 *1 (-1122 *6 *7 *8))))
+ (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1122 *6)) (-5 *5 (-1122 *7))
+ (-4 *6 (-1179)) (-4 *7 (-1179)) (-4 *8 (-1179)) (-5 *2 (-1122 *8))
+ (-5 *1 (-1121 *6 *7 *8))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1139 *5)) (-4 *5 (-1018))
- (-4 *6 (-1018)) (-5 *2 (-1139 *6)) (-5 *1 (-1137 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1138 *5)) (-4 *5 (-1018))
+ (-4 *6 (-1018)) (-5 *2 (-1138 *6)) (-5 *1 (-1136 *5 *6))))
((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1156 *3 *4)) (-4 *3 (-1067))
- (-4 *4 (-1067))))
+ (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1155 *3 *4)) (-4 *3 (-1066))
+ (-4 *4 (-1066))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1190 *5 *7 *9)) (-4 *5 (-1018))
- (-4 *6 (-1018)) (-14 *7 (-1143)) (-14 *9 *5) (-14 *10 *6)
- (-5 *2 (-1190 *6 *8 *10)) (-5 *1 (-1185 *5 *6 *7 *8 *9 *10))
- (-14 *8 (-1143))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1189 *5 *7 *9)) (-4 *5 (-1018))
+ (-4 *6 (-1018)) (-14 *7 (-1142)) (-14 *9 *5) (-14 *10 *6)
+ (-5 *2 (-1189 *6 *8 *10)) (-5 *1 (-1184 *5 *6 *7 *8 *9 *10))
+ (-14 *8 (-1142))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1193 *5)) (-4 *5 (-1180))
- (-4 *6 (-1180)) (-5 *2 (-1193 *6)) (-5 *1 (-1192 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1192 *5)) (-4 *5 (-1179))
+ (-4 *6 (-1179)) (-5 *2 (-1192 *6)) (-5 *1 (-1191 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1193 *5)) (-4 *5 (-821))
- (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-1123 *6))
- (-5 *1 (-1192 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1192 *5)) (-4 *5 (-821))
+ (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-1122 *6))
+ (-5 *1 (-1191 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1199 *5 *6)) (-14 *5 (-1143))
- (-4 *6 (-1018)) (-4 *8 (-1018)) (-5 *2 (-1199 *7 *8))
- (-5 *1 (-1194 *5 *6 *7 *8)) (-14 *7 (-1143))))
+ (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1198 *5 *6)) (-14 *5 (-1142))
+ (-4 *6 (-1018)) (-4 *8 (-1018)) (-5 *2 (-1198 *7 *8))
+ (-5 *1 (-1193 *5 *6 *7 *8)) (-14 *7 (-1142))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1018)) (-4 *6 (-1018))
- (-4 *2 (-1202 *6)) (-5 *1 (-1200 *5 *4 *6 *2)) (-4 *4 (-1202 *5))))
+ (-4 *2 (-1201 *6)) (-5 *1 (-1199 *5 *4 *6 *2)) (-4 *4 (-1201 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1211 *5 *7 *9)) (-4 *5 (-1018))
- (-4 *6 (-1018)) (-14 *7 (-1143)) (-14 *9 *5) (-14 *10 *6)
- (-5 *2 (-1211 *6 *8 *10)) (-5 *1 (-1206 *5 *6 *7 *8 *9 *10))
- (-14 *8 (-1143))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1210 *5 *7 *9)) (-4 *5 (-1018))
+ (-4 *6 (-1018)) (-14 *7 (-1142)) (-14 *9 *5) (-14 *10 *6)
+ (-5 *2 (-1210 *6 *8 *10)) (-5 *1 (-1205 *5 *6 *7 *8 *9 *10))
+ (-14 *8 (-1142))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1018)) (-4 *6 (-1018))
- (-4 *2 (-1217 *6)) (-5 *1 (-1215 *5 *6 *4 *2)) (-4 *4 (-1217 *5))))
+ (-4 *2 (-1216 *6)) (-5 *1 (-1214 *5 *6 *4 *2)) (-4 *4 (-1216 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1226 *5)) (-4 *5 (-1180))
- (-4 *6 (-1180)) (-5 *2 (-1226 *6)) (-5 *1 (-1225 *5 *6))))
+ (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1225 *5)) (-4 *5 (-1179))
+ (-4 *6 (-1179)) (-5 *2 (-1225 *6)) (-5 *1 (-1224 *5 *6))))
((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1226 *5))
- (-4 *5 (-1180)) (-4 *6 (-1180)) (-5 *2 (-1226 *6))
- (-5 *1 (-1225 *5 *6))))
+ (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1225 *5))
+ (-4 *5 (-1179)) (-4 *6 (-1179)) (-5 *2 (-1225 *6))
+ (-5 *1 (-1224 *5 *6))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1243 *3 *4)) (-4 *3 (-823))
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1242 *3 *4)) (-4 *3 (-823))
(-4 *4 (-1018))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-1249 *3 *4))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-1248 *3 *4))
(-4 *4 (-819)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-833)) (-5 *3 (-129)) (-5 *2 (-1087)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-323)))))
-(((*1 *1 *1) (-5 *1 (-834))))
-(((*1 *2 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1125)) (-5 *1 (-298)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *2 (-621 (-167 *4))) (-5 *1 (-153 *3 *4))
- (-4 *3 (-1202 (-167 (-549)))) (-4 *4 (-13 (-356) (-821)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-621 (-167 *4)))
- (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-621 (-167 *4)))
- (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4))))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-892)) (-5 *4 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1227)))))
+(((*1 *2 *3 *3 *4 *5 *5)
+ (-12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
+ (-4 *3 (-1032 *6 *7 *8))
+ (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4))))
+ (-5 *1 (-1074 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-621 (-2 (|:| |val| (-621 *8)) (|:| -1979 *9))))
+ (-5 *5 (-112)) (-4 *8 (-1032 *6 *7 *4)) (-4 *9 (-1038 *6 *7 *4 *8))
+ (-4 *6 (-444)) (-4 *7 (-769)) (-4 *4 (-823))
+ (-5 *2 (-621 (-2 (|:| |val| *8) (|:| -1979 *9))))
+ (-5 *1 (-1074 *6 *7 *4 *8 *9)))))
+(((*1 *2)
+ (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1230))
+ (-5 *1 (-1039 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1230))
+ (-5 *1 (-1074 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1115 *3)) (-4 *3 (-1179)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1066)) (-5 *1 (-102 *3))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-102 *2)) (-4 *2 (-1066)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-1225 *4)) (-4 *4 (-617 (-549)))
+ (-5 *2 (-1225 (-549))) (-5 *1 (-1252 *4)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-914 *3))))))
-(((*1 *1 *1) (-5 *1 (-1030))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1131 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))))
+ (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-914 *3))))))
(((*1 *1 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-4 *1 (-1065 *3))))
- ((*1 *1) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-914 *5)) (-4 *5 (-1018)) (-5 *2 (-747))
- (-5 *1 (-1131 *4 *5)) (-14 *4 (-892))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-621 (-747))) (-5 *3 (-747)) (-5 *1 (-1131 *4 *5))
- (-14 *4 (-892)) (-4 *5 (-1018))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-621 (-747))) (-5 *3 (-914 *5)) (-4 *5 (-1018))
- (-5 *1 (-1131 *4 *5)) (-14 *4 (-892)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1139 *1)) (-4 *1 (-983)))))
-(((*1 *2 *3 *4 *4 *3 *3 *5)
- (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-1139 *3))
- (-4 *3 (-13 (-423 *6) (-27) (-1165)))
- (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *2 (-2 (|:| -3440 *3) (|:| |coeff| *3)))
- (-5 *1 (-545 *6 *3 *7)) (-4 *7 (-1067))))
- ((*1 *2 *3 *4 *4 *3 *4 *3 *5)
- (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-400 (-1139 *3)))
- (-4 *3 (-13 (-423 *6) (-27) (-1165)))
- (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *2 (-2 (|:| -3440 *3) (|:| |coeff| *3)))
- (-5 *1 (-545 *6 *3 *7)) (-4 *7 (-1067)))))
+ (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-4 *1 (-1064 *3))))
+ ((*1 *1) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-747)) (-5 *1 (-759 *2)) (-4 *2 (-38 (-400 (-549))))
+ (-4 *2 (-170)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-3
+ (|:| |noa|
+ (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219)))
+ (|:| |lb| (-621 (-816 (-219))))
+ (|:| |cf| (-621 (-309 (-219))))
+ (|:| |ub| (-621 (-816 (-219))))))
+ (|:| |lsa|
+ (-2 (|:| |lfn| (-621 (-309 (-219))))
+ (|:| -3059 (-621 (-219)))))))
+ (-5 *2 (-621 (-1124))) (-5 *1 (-260)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-621 *3)) (-4 *3 (-920 *4 *6 *5)) (-4 *4 (-444))
+ (-4 *5 (-823)) (-4 *6 (-769)) (-5 *1 (-958 *4 *5 *6 *3)))))
+(((*1 *2 *2 *3 *3 *4)
+ (-12 (-5 *4 (-747)) (-4 *3 (-541)) (-5 *1 (-940 *3 *2))
+ (-4 *2 (-1201 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-621 (-169)))))))
(((*1 *1 *2 *2 *2)
- (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1165)))))
+ (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1164)))))
((*1 *2 *1 *3 *4 *4)
- (-12 (-5 *3 (-892)) (-5 *4 (-372)) (-5 *2 (-1231)) (-5 *1 (-1227))))
+ (-12 (-5 *3 (-892)) (-5 *4 (-372)) (-5 *2 (-1230)) (-5 *1 (-1226))))
((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
+ (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769))
- (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)) (-5 *2 (-621 *3))
- (-5 *1 (-572 *5 *6 *7 *8 *3)) (-4 *3 (-1076 *5 *6 *7 *8))))
+ (-12 (-5 *3 (-621 (-665 *5))) (-4 *5 (-300)) (-4 *5 (-1018))
+ (-5 *2 (-1225 (-1225 *5))) (-5 *1 (-1000 *5)) (-5 *4 (-1225 *5)))))
+(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123))))
+(((*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1029))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1029)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-872 *2)) (-4 *2 (-1066))))
+ ((*1 *1 *2) (-12 (-5 *1 (-872 *2)) (-4 *2 (-1066)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-747)) (-5 *1 (-759 *2)) (-4 *2 (-38 (-400 (-549))))
+ (-4 *2 (-170)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-2 (|:| -2677 *6) (|:| |coeff| *6)) "failed") *6))
+ (-4 *6 (-356)) (-4 *7 (-1201 *6))
+ (-5 *2 (-2 (|:| |answer| (-567 (-400 *7))) (|:| |a0| *6)))
+ (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))))
+(((*1 *2 *1) (-12 (-4 *1 (-541)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))))
+(((*1 *1 *1 *1) (-4 *1 (-141)))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2))
+ (-4 *2 (-423 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534))))
+ ((*1 *1 *1 *1) (-5 *1 (-834)))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145)))
- (-5 *2
- (-621 (-2 (|:| -1298 (-1139 *5)) (|:| -4263 (-621 (-923 *5))))))
- (-5 *1 (-1044 *5 *6)) (-5 *3 (-621 (-923 *5)))
- (-14 *6 (-621 (-1143)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-300) (-145)))
- (-5 *2
- (-621 (-2 (|:| -1298 (-1139 *4)) (|:| -4263 (-621 (-923 *4))))))
- (-5 *1 (-1044 *4 *5)) (-5 *3 (-621 (-923 *4)))
- (-14 *5 (-621 (-1143)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145)))
- (-5 *2
- (-621 (-2 (|:| -1298 (-1139 *5)) (|:| -4263 (-621 (-923 *5))))))
- (-5 *1 (-1044 *5 *6)) (-5 *3 (-621 (-923 *5)))
- (-14 *6 (-621 (-1143))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-935 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-1214 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-621 (-747)))) (-5 *1 (-875 *3)) (-4 *3 (-1067)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-872 *2)) (-4 *2 (-1067))))
- ((*1 *1 *2) (-12 (-5 *1 (-872 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-1143))
- (-4 *4 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-542 *4 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *4))))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-1018)))))
-(((*1 *2 *3 *3)
- (-12 (|has| *2 (-6 (-4339 "*"))) (-4 *5 (-366 *2)) (-4 *6 (-366 *2))
- (-4 *2 (-1018)) (-5 *1 (-103 *2 *3 *4 *5 *6)) (-4 *3 (-1202 *2))
- (-4 *4 (-663 *2 *5 *6)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-1143)))))
+ (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-549))) (-5 *1 (-1016))
+ (-5 *3 (-549)))))
(((*1 *2 *1) (-12 (-5 *2 (-621 (-936))) (-5 *1 (-108))))
- ((*1 *2 *1) (-12 (-5 *2 (-45 (-1125) (-750))) (-5 *1 (-114)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-539 *3)) (-4 *3 (-13 (-397) (-1165))) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-821)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1035 *4 *3)) (-4 *4 (-13 (-821) (-356)))
- (-4 *3 (-1202 *4)) (-5 *2 (-112)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))))
-(((*1 *2 *3 *4 *4 *5 *6 *7)
- (-12 (-5 *5 (-1143))
- (-5 *6
- (-1
- (-3
- (-2 (|:| |mainpart| *4)
- (|:| |limitedlogs|
- (-621 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
- "failed")
- *4 (-621 *4)))
- (-5 *7
- (-1 (-3 (-2 (|:| -3440 *4) (|:| |coeff| *4)) "failed") *4 *4))
- (-4 *4 (-13 (-1165) (-27) (-423 *8)))
- (-4 *8 (-13 (-444) (-823) (-145) (-1009 *3) (-617 *3)))
- (-5 *3 (-549))
- (-5 *2 (-2 (|:| |ans| *4) (|:| -3848 *4) (|:| |sol?| (-112))))
- (-5 *1 (-984 *8 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1018)) (-5 *2 (-549)) (-5 *1 (-435 *4 *3 *5))
- (-4 *3 (-1202 *4))
- (-4 *5 (-13 (-397) (-1009 *4) (-356) (-1165) (-277))))))
-(((*1 *2)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-5 *2 (-665 (-400 *4))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-45 (-1124) (-750))) (-5 *1 (-114)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1226 *4)) (-4 *4 (-617 (-549)))
- (-5 *2 (-1226 (-549))) (-5 *1 (-1253 *4)))))
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-621 (-665 (-549))))
+ (-5 *1 (-1076)))))
+(((*1 *2 *2 *3 *3)
+ (|partial| -12 (-5 *3 (-1142))
+ (-4 *4 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-560 *4 *2))
+ (-4 *2 (-13 (-1164) (-930) (-1105) (-29 *4))))))
+(((*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7)
+ (-12 (-5 *3 (-1124)) (-5 *5 (-665 (-219))) (-5 *6 (-219))
+ (-5 *7 (-665 (-549))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-729)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-549)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-300))
+ (-4 *9 (-920 *8 *6 *7))
+ (-5 *2 (-2 (|:| -2443 (-1138 *9)) (|:| |polval| (-1138 *8))))
+ (-5 *1 (-719 *6 *7 *8 *9)) (-5 *3 (-1138 *9)) (-5 *4 (-1138 *8)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823))
+ (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))))
+(((*1 *1 *1 *1) (-4 *1 (-938))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-914 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-621 (-914 *3))) (-4 *3 (-1018)) (-4 *1 (-1100 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-621 (-621 *3))) (-4 *1 (-1100 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-621 (-914 *3))) (-4 *1 (-1100 *3)) (-4 *3 (-1018)))))
(((*1 *2 *3)
(|partial| -12
(-5 *3
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
(|:| |relerr| (-219))))
(-5 *2
(-2
@@ -8474,10 +8833,10 @@
(|:| |notEvaluated|
"End point continuity not yet evaluated")))
(|:| |singularitiesStream|
- (-3 (|:| |str| (-1123 (-219)))
+ (-3 (|:| |str| (-1122 (-219)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -1372
+ (|:| -2811
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite| "The bottom of range is infinite")
(|:| |upperInfinite| "The top of range is infinite")
@@ -8485,307 +8844,306 @@
"Both top and bottom points are infinite")
(|:| |notEvaluated| "Range not yet evaluated")))))
(-5 *1 (-544)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-172 *3)) (-4 *3 (-300))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-650 *3)) (-4 *3 (-1180))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-717 *3 *4)) (-4 *3 (-1018))
- (-4 *4 (-823))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-840 *3)) (-5 *2 (-549))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *1 (-951 *3)) (-4 *3 (-1018))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-621 *1)) (-5 *3 (-621 *7)) (-4 *1 (-1038 *4 *5 *6 *7))
- (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *1))
- (-4 *1 (-1038 *4 *5 *6 *7))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 *1))
- (-4 *1 (-1038 *4 *5 *6 *3))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1204 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1069 (-1069 *3))) (-5 *1 (-875 *3)) (-4 *3 (-1067)))))
+(((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1122 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1066)) (-4 *6 (-1066))
+ (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-660 *4 *5 *6)) (-4 *5 (-1066)))))
(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-25)) (-4 *3 (-823))
- (-5 *2 (-2 (|:| -1570 (-549)) (|:| |var| (-592 *1))))
- (-4 *1 (-423 *3)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-5 *1 (-1219 *3 *2))
- (-4 *2 (-1217 *3)))))
+ (-12 (-4 *3 (-1018)) (-4 *4 (-1066)) (-5 *2 (-621 *1))
+ (-4 *1 (-375 *3 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-712 *3 *4))) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-703))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1))
+ (-4 *1 (-920 *3 *4 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1143)) (-5 *2 (-525)) (-5 *1 (-524 *4))
- (-4 *4 (-1180)))))
+ (-12 (-5 *3 (-549)) (-4 *4 (-1201 (-400 *3))) (-5 *2 (-892))
+ (-5 *1 (-884 *4 *5)) (-4 *5 (-1201 (-400 *4))))))
+(((*1 *2 *3 *4 *3 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-167 (-219)))) (-5 *2 (-1006))
+ (-5 *1 (-733)))))
(((*1 *2 *3 *4)
- (-12 (-4 *2 (-1202 *4)) (-5 *1 (-783 *4 *2 *3 *5))
- (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *3 (-632 *2))
- (-4 *5 (-632 (-400 *2)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *2 (-1202 *4)) (-5 *1 (-783 *4 *2 *5 *3))
- (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *5 (-632 *2))
- (-4 *3 (-632 (-400 *2))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-169))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1175 *3)) (-4 *3 (-945)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1125))
- (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *2 (-112)) (-5 *1 (-218 *4 *5)) (-4 *5 (-13 (-1165) (-29 *4))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
- (-4 *3 (-360 *4))))
- ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+ (-12 (-4 *5 (-1066)) (-4 *3 (-871 *5)) (-5 *2 (-1225 *3))
+ (-5 *1 (-668 *5 *3 *6 *4)) (-4 *6 (-366 *3))
+ (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4336)))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *2 *1 *3 *3 *4 *4)
+ (-12 (-5 *3 (-747)) (-5 *4 (-892)) (-5 *2 (-1230)) (-5 *1 (-1226))))
+ ((*1 *2 *1 *3 *3 *4 *4)
+ (-12 (-5 *3 (-747)) (-5 *4 (-892)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))))
(((*1 *1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-610)))))
-(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-250)))))
-(((*1 *1 *2 *1) (-12 (-4 *1 (-106 *2)) (-4 *2 (-1180))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-823))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-126 *2)) (-4 *2 (-823))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-549)) (-4 *1 (-275 *3)) (-4 *3 (-1180))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-549)) (-4 *1 (-275 *2)) (-4 *2 (-1180))))
- ((*1 *1 *2)
+(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *1 (-854))
+ (-5 *3 (-621 (-549))))))
+(((*1 *1 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-21)) (-4 *2 (-1179)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-13 (-541) (-145)))
+ (-5 *2 (-2 (|:| -3837 *3) (|:| -3847 *3))) (-5 *1 (-1195 *4 *3))
+ (-4 *3 (-1201 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-242)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1201 (-549))))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1124)) (-5 *1 (-1160)))))
+(((*1 *2 *2 *3 *4 *4)
+ (-12 (-5 *4 (-549)) (-4 *3 (-170)) (-4 *5 (-366 *3))
+ (-4 *6 (-366 *3)) (-5 *1 (-664 *3 *5 *6 *2))
+ (-4 *2 (-663 *3 *5 *6)))))
+(((*1 *2 *1 *1)
(-12
(-5 *2
- (-2
- (|:| -3337
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
- (|:| |relerr| (-219))))
- (|:| -1793
- (-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| (-1123 (-219)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -1372
- (-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 (-544))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-747)) (-4 *1 (-671 *2)) (-4 *2 (-1067))))
- ((*1 *1 *2)
- (-12
+ (-2 (|:| -1569 *3) (|:| |gap| (-747)) (|:| -2262 (-758 *3))
+ (|:| -1809 (-758 *3))))
+ (-5 *1 (-758 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823))
(-5 *2
- (-2
- (|:| -3337
- (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
- (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
- (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
- (|:| |abserr| (-219)) (|:| |relerr| (-219))))
- (|:| -1793
- (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372))
- (|:| |expense| (-372)) (|:| |accuracy| (-372))
- (|:| |intermediateResults| (-372))))))
- (-5 *1 (-779))))
- ((*1 *2 *3 *4)
- (-12 (-5 *2 (-1231)) (-5 *1 (-1157 *3 *4)) (-4 *3 (-1067))
- (-4 *4 (-1067)))))
-(((*1 *2 *3 *3 *2 *4)
- (-12 (-5 *3 (-665 *2)) (-5 *4 (-549))
- (-4 *2 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $)))))
- (-4 *5 (-1202 *2)) (-5 *1 (-490 *2 *5 *6)) (-4 *6 (-402 *2 *5)))))
+ (-2 (|:| -1569 *1) (|:| |gap| (-747)) (|:| -2262 *1)
+ (|:| -1809 *1)))
+ (-4 *1 (-1032 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *2
+ (-2 (|:| -1569 *1) (|:| |gap| (-747)) (|:| -2262 *1)
+ (|:| -1809 *1)))
+ (-4 *1 (-1032 *3 *4 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
+(((*1 *2) (-12 (-4 *2 (-170)) (-5 *1 (-163 *3 *2)) (-4 *3 (-164 *2))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1225 *1)) (-4 *1 (-363 *2 *4)) (-4 *4 (-1201 *2))
+ (-4 *2 (-170))))
+ ((*1 *2)
+ (-12 (-4 *4 (-1201 *2)) (-4 *2 (-170)) (-5 *1 (-401 *3 *2 *4))
+ (-4 *3 (-402 *2 *4))))
+ ((*1 *2) (-12 (-4 *1 (-402 *2 *3)) (-4 *3 (-1201 *2)) (-4 *2 (-170))))
+ ((*1 *2)
+ (-12 (-4 *3 (-1201 *2)) (-5 *2 (-549)) (-5 *1 (-744 *3 *4))
+ (-4 *4 (-402 *2 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *2 (-823)) (-4 *3 (-170))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-541)) (-5 *1 (-940 *2 *3)) (-4 *3 (-1201 *2))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1201 *2)) (-4 *2 (-1018)) (-4 *2 (-170)))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-1 (-525) (-621 (-525)))) (-5 *1 (-114))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-525) (-621 (-525)))) (-5 *1 (-114)))))
+(((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-1124)) (-5 *4 (-167 (-219))) (-5 *5 (-549))
+ (-5 *2 (-1006)) (-5 *1 (-735)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-747)) (-5 *4 (-549)) (-5 *1 (-437 *2)) (-4 *2 (-1018)))))
-(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-621 *1)) (-4 *1 (-300)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-242)))))
+ (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1066)) (-4 *5 (-1066))
+ (-4 *6 (-1066)) (-5 *2 (-1 *6 *5)) (-5 *1 (-660 *4 *5 *6)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1201 *5))
+ (-4 *5 (-13 (-27) (-423 *4)))
+ (-4 *4 (-13 (-823) (-541) (-1009 (-549))))
+ (-4 *7 (-1201 (-400 *6))) (-5 *1 (-537 *4 *5 *6 *7 *2))
+ (-4 *2 (-335 *5 *6 *7)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *2)) (-4 *2 (-170))))
+ ((*1 *2) (-12 (-4 *2 (-170)) (-5 *1 (-409 *3 *2)) (-4 *3 (-410 *2))))
+ ((*1 *2) (-12 (-4 *1 (-410 *2)) (-4 *2 (-170)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-199))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-621 (-372))) (-5 *2 (-372)) (-5 *1 (-199)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1138 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-541) (-145))) (-5 *2 (-621 *3))
- (-5 *1 (-1196 *4 *3)) (-4 *3 (-1202 *4)))))
+ (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549)))))
+ (-4 *5 (-1201 *4))
+ (-5 *2 (-621 (-2 (|:| |deg| (-747)) (|:| -2649 *5))))
+ (-5 *1 (-785 *4 *5 *3 *6)) (-4 *3 (-632 *5))
+ (-4 *6 (-632 (-400 *5))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-947 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-1032 *3 *4 *2)) (-4 *2 (-823))))
+ (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823))
+ (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-747))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-246 *4 *3 *5 *6)) (-4 *4 (-1018)) (-4 *3 (-823))
+ (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-747))))
+ ((*1 *2 *1) (-12 (-4 *1 (-259 *3)) (-4 *3 (-823)) (-5 *2 (-747))))
+ ((*1 *2 *1) (-12 (-4 *1 (-342)) (-5 *2 (-892))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-329 *4 *5 *6 *7)) (-4 *4 (-13 (-361) (-356)))
+ (-4 *5 (-1201 *4)) (-4 *6 (-1201 (-400 *5))) (-4 *7 (-335 *4 *5 *6))
+ (-5 *2 (-747)) (-5 *1 (-385 *4 *5 *6 *7))))
+ ((*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-809 (-892)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-397)) (-5 *2 (-549))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-577 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-577 *3)) (-4 *3 (-1018))))
((*1 *2 *1)
- (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *2 (-823)))))
-(((*1 *2 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
- (-5 *1 (-1095 *3 *2)) (-4 *3 (-1202 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *1) (-12 (-4 *3 (-1180)) (-5 *2 (-621 *1)) (-4 *1 (-981 *3))))
+ (-12 (-4 *3 (-541)) (-5 *2 (-549)) (-5 *1 (-601 *3 *4))
+ (-4 *4 (-1201 *3))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *2 (-747)) (-4 *1 (-717 *4 *3)) (-4 *4 (-1018))
+ (-4 *3 (-823))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-717 *4 *3)) (-4 *4 (-1018)) (-4 *3 (-823))
+ (-5 *2 (-747))))
+ ((*1 *2 *1) (-12 (-4 *1 (-840 *3)) (-5 *2 (-747))))
+ ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-875 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-876 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-329 *5 *6 *7 *8)) (-4 *5 (-423 *4))
+ (-4 *6 (-1201 *5)) (-4 *7 (-1201 (-400 *6)))
+ (-4 *8 (-335 *5 *6 *7))
+ (-4 *4 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-747))
+ (-5 *1 (-882 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-329 (-400 (-549)) *4 *5 *6))
+ (-4 *4 (-1201 (-400 (-549)))) (-4 *5 (-1201 (-400 *4)))
+ (-4 *6 (-335 (-400 (-549)) *4 *5)) (-5 *2 (-747))
+ (-5 *1 (-883 *4 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-329 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-356))
+ (-4 *7 (-1201 *6)) (-4 *4 (-1201 (-400 *7))) (-4 *8 (-335 *6 *7 *4))
+ (-4 *9 (-13 (-361) (-356))) (-5 *2 (-747))
+ (-5 *1 (-989 *6 *7 *4 *8 *9))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1201 *3)) (-4 *3 (-1018)) (-4 *3 (-541))
+ (-5 *2 (-747))))
+ ((*1 *2 *1 *2)
+ (-12 (-4 *1 (-1203 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768))))
((*1 *2 *1)
- (-12 (-5 *2 (-621 (-1131 *3 *4))) (-5 *1 (-1131 *3 *4))
- (-14 *3 (-892)) (-4 *4 (-1018)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1 (-525) (-621 (-525)))) (-5 *1 (-114))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-525) (-621 (-525)))) (-5 *1 (-114)))))
-(((*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-897))))
- ((*1 *1 *1 *2 *2) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-898))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-898))))
- ((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-356)) (-4 *3 (-1018))
- (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4248 *1)))
- (-4 *1 (-825 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-621 *3)) (-4 *3 (-300)) (-5 *1 (-177 *3)))))
-(((*1 *2 *2 *1 *3 *4)
- (-12 (-5 *2 (-621 *8)) (-5 *3 (-1 *8 *8 *8))
- (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1173 *5 *6 *7 *8)) (-4 *5 (-541))
- (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-1 (-567 *3) *3 (-1143)))
- (-5 *6
- (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3
- (-1143)))
- (-4 *3 (-277)) (-4 *3 (-607)) (-4 *3 (-1009 *4)) (-4 *3 (-423 *7))
- (-5 *4 (-1143)) (-4 *7 (-594 (-863 (-549)))) (-4 *7 (-444))
- (-4 *7 (-857 (-549))) (-4 *7 (-823)) (-5 *2 (-567 *3))
- (-5 *1 (-558 *7 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *1 (-854)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-621 (-1061 (-372)))) (-5 *3 (-621 (-256)))
- (-5 *1 (-254))))
- ((*1 *1 *2) (-12 (-5 *2 (-621 (-1061 (-372)))) (-5 *1 (-256))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1061 (-372)))) (-5 *1 (-460))))
- ((*1 *2 *1) (-12 (-5 *2 (-621 (-1061 (-372)))) (-5 *1 (-460)))))
+ (-12 (-4 *1 (-1203 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
- (|:| |relerr| (-219))))
- (-5 *2 (-549)) (-5 *1 (-198)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1217 *4)) (-5 *1 (-1219 *4 *2))
- (-4 *4 (-38 (-400 (-549)))))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-549)) (|has| *1 (-6 -4338)) (-4 *1 (-366 *3))
- (-4 *3 (-1180)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
+ (-12 (-5 *3 (-329 *5 *6 *7 *8)) (-4 *5 (-423 *4)) (-4 *6 (-1201 *5))
+ (-4 *7 (-1201 (-400 *6))) (-4 *8 (-335 *5 *6 *7))
+ (-4 *4 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-112))
+ (-5 *1 (-882 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-329 (-400 (-549)) *4 *5 *6))
+ (-4 *4 (-1201 (-400 (-549)))) (-4 *5 (-1201 (-400 *4)))
+ (-4 *6 (-335 (-400 (-549)) *4 *5)) (-5 *2 (-112))
+ (-5 *1 (-883 *4 *5 *6)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-549)) (-5 *2 (-1230)) (-5 *1 (-1227))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-621 (-665 *4))) (-5 *2 (-665 *4)) (-4 *4 (-1018))
+ (-5 *1 (-1000 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-155))))
+ ((*1 *2 *1) (-12 (-5 *2 (-155)) (-5 *1 (-845))))
+ ((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
(((*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892))
- (-4 *4 (-1018)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-525)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4)))
- (-5 *2 (-2 (|:| |num| (-1226 *4)) (|:| |den| *4))))))
+(((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-525)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-430)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3))
- (-4 *3 (-13 (-356) (-1165) (-973))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 *1)) (|has| *1 (-6 -4338)) (-4 *1 (-981 *3))
- (-4 *3 (-1180)))))
+ (-12 (-4 *3 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $)))))
+ (-4 *4 (-1201 *3))
+ (-5 *2
+ (-2 (|:| -2619 (-665 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-665 *3))))
+ (-5 *1 (-343 *3 *4 *5)) (-4 *5 (-402 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-549)) (-4 *4 (-1201 *3))
+ (-5 *2
+ (-2 (|:| -2619 (-665 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-665 *3))))
+ (-5 *1 (-744 *4 *5)) (-4 *5 (-402 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-342)) (-4 *3 (-1201 *4)) (-4 *5 (-1201 *3))
+ (-5 *2
+ (-2 (|:| -2619 (-665 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-665 *3))))
+ (-5 *1 (-956 *4 *3 *5 *6)) (-4 *6 (-701 *3 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-342)) (-4 *3 (-1201 *4)) (-4 *5 (-1201 *3))
+ (-5 *2
+ (-2 (|:| -2619 (-665 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-665 *3))))
+ (-5 *1 (-1234 *4 *3 *5 *6)) (-4 *6 (-402 *3 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-876 *3)) (-4 *3 (-1066)))))
(((*1 *1 *2)
(-12 (-4 *3 (-1018)) (-5 *1 (-803 *2 *3)) (-4 *2 (-685 *3)))))
-(((*1 *2 *2 *3 *4 *4)
- (-12 (-5 *4 (-549)) (-4 *3 (-170)) (-4 *5 (-366 *3))
- (-4 *6 (-366 *3)) (-5 *1 (-664 *3 *5 *6 *2))
- (-4 *2 (-663 *3 *5 *6)))))
(((*1 *1 *2)
(-12 (-5 *2 (-621 (-549))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018))
- (-14 *4 (-621 (-1143)))))
+ (-14 *4 (-621 (-1142)))))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *1 *1) (-4 *1 (-277)))
((*1 *1 *1)
- (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143)))
- (-14 *3 (-621 (-1143))) (-4 *4 (-380))))
+ (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142)))
+ (-14 *3 (-621 (-1142))) (-4 *4 (-380))))
((*1 *1 *2)
(-12 (-5 *2 (-640 *3 *4)) (-4 *3 (-823))
(-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-5 *1 (-605 *3 *4 *5))
(-14 *5 (-892))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3))))
((*1 *2 *2 *3)
(-12 (-5 *3 (-747)) (-4 *4 (-13 (-1018) (-694 (-400 (-549)))))
- (-4 *5 (-823)) (-5 *1 (-1242 *4 *5 *2)) (-4 *2 (-1247 *5 *4))))
+ (-4 *5 (-823)) (-5 *1 (-1241 *4 *5 *2)) (-4 *2 (-1246 *5 *4))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-5 *1 (-1246 *3 *4))
+ (-12 (-5 *2 (-747)) (-5 *1 (-1245 *3 *4))
(-4 *4 (-694 (-400 (-549)))) (-4 *3 (-823)) (-4 *4 (-170)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-1059 (-923 (-549)))) (-5 *3 (-923 (-549)))
- (-5 *1 (-323))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-1059 (-923 (-549)))) (-5 *1 (-323)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 *4)) (-4 *4 (-356)) (-5 *2 (-665 *4))
- (-5 *1 (-790 *4 *5)) (-4 *5 (-632 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *5)) (-5 *4 (-747)) (-4 *5 (-356))
- (-5 *2 (-665 *5)) (-5 *1 (-790 *5 *6)) (-4 *6 (-632 *5)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-834))))
- ((*1 *1 *1) (-5 *1 (-834))))
+ (-12 (-4 *4 (-1018))
+ (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1164) (-277)))
+ (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1201 *4)))))
+(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-892)) (-5 *2 (-1138 *4)) (-5 *1 (-350 *4))
+ (-4 *4 (-342)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-444)) (-4 *4 (-823)) (-4 *5 (-769)) (-5 *2 (-621 *6))
+ (-5 *1 (-958 *3 *4 *5 *6)) (-4 *6 (-920 *3 *5 *4)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1180))))
+ (|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1179))))
((*1 *1 *2)
(|partial| -12 (-5 *2 (-923 (-372))) (-5 *1 (-332 *3 *4 *5))
- (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1143)))
- (-14 *4 (-621 (-1143))) (-4 *5 (-380))))
+ (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1142)))
+ (-14 *4 (-621 (-1142))) (-4 *5 (-380))))
((*1 *1 *2)
(|partial| -12 (-5 *2 (-400 (-923 (-372)))) (-5 *1 (-332 *3 *4 *5))
- (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1143)))
- (-14 *4 (-621 (-1143))) (-4 *5 (-380))))
+ (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1142)))
+ (-14 *4 (-621 (-1142))) (-4 *5 (-380))))
((*1 *1 *2)
(|partial| -12 (-5 *2 (-309 (-372))) (-5 *1 (-332 *3 *4 *5))
- (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1143)))
- (-14 *4 (-621 (-1143))) (-4 *5 (-380))))
+ (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1142)))
+ (-14 *4 (-621 (-1142))) (-4 *5 (-380))))
((*1 *1 *2)
(|partial| -12 (-5 *2 (-923 (-549))) (-5 *1 (-332 *3 *4 *5))
- (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1143)))
- (-14 *4 (-621 (-1143))) (-4 *5 (-380))))
+ (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1142)))
+ (-14 *4 (-621 (-1142))) (-4 *5 (-380))))
((*1 *1 *2)
(|partial| -12 (-5 *2 (-400 (-923 (-549)))) (-5 *1 (-332 *3 *4 *5))
- (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1143)))
- (-14 *4 (-621 (-1143))) (-4 *5 (-380))))
+ (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1142)))
+ (-14 *4 (-621 (-1142))) (-4 *5 (-380))))
((*1 *1 *2)
(|partial| -12 (-5 *2 (-309 (-549))) (-5 *1 (-332 *3 *4 *5))
- (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1143)))
- (-14 *4 (-621 (-1143))) (-4 *5 (-380))))
+ (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1142)))
+ (-14 *4 (-621 (-1142))) (-4 *5 (-380))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1143)) (-5 *1 (-332 *3 *4 *5))
+ (|partial| -12 (-5 *2 (-1142)) (-5 *1 (-332 *3 *4 *5))
(-14 *3 (-621 *2)) (-14 *4 (-621 *2)) (-4 *5 (-380))))
((*1 *1 *2)
(|partial| -12 (-5 *2 (-309 *5)) (-4 *5 (-380))
- (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 (-1143)))
- (-14 *4 (-621 (-1143)))))
+ (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 (-1142)))
+ (-14 *4 (-621 (-1142)))))
((*1 *1 *2)
(|partial| -12 (-5 *2 (-665 (-400 (-923 (-549))))) (-4 *1 (-377))))
((*1 *1 *2)
@@ -8807,286 +9165,188 @@
((*1 *1 *2) (|partial| -12 (-5 *2 (-309 (-549))) (-4 *1 (-389))))
((*1 *1 *2) (|partial| -12 (-5 *2 (-309 (-372))) (-4 *1 (-389))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1226 (-400 (-923 (-549))))) (-4 *1 (-433))))
+ (|partial| -12 (-5 *2 (-1225 (-400 (-923 (-549))))) (-4 *1 (-433))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1226 (-400 (-923 (-372))))) (-4 *1 (-433))))
+ (|partial| -12 (-5 *2 (-1225 (-400 (-923 (-372))))) (-4 *1 (-433))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1226 (-923 (-549)))) (-4 *1 (-433))))
+ (|partial| -12 (-5 *2 (-1225 (-923 (-549)))) (-4 *1 (-433))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1226 (-923 (-372)))) (-4 *1 (-433))))
+ (|partial| -12 (-5 *2 (-1225 (-923 (-372)))) (-4 *1 (-433))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1226 (-309 (-549)))) (-4 *1 (-433))))
+ (|partial| -12 (-5 *2 (-1225 (-309 (-549)))) (-4 *1 (-433))))
((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1226 (-309 (-372)))) (-4 *1 (-433))))
+ (|partial| -12 (-5 *2 (-1225 (-309 (-372)))) (-4 *1 (-433))))
((*1 *2 *3)
- (|partial| -12 (-4 *4 (-342)) (-4 *5 (-322 *4)) (-4 *6 (-1202 *5))
- (-5 *2 (-1139 (-1139 *4))) (-5 *1 (-753 *4 *5 *6 *3 *7))
- (-4 *3 (-1202 *6)) (-14 *7 (-892))))
+ (|partial| -12 (-4 *4 (-342)) (-4 *5 (-322 *4)) (-4 *6 (-1201 *5))
+ (-5 *2 (-1138 (-1138 *4))) (-5 *1 (-753 *4 *5 *6 *3 *7))
+ (-4 *3 (-1201 *6)) (-14 *7 (-892))))
((*1 *1 *2)
(|partial| -12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5))
(-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
(-4 *1 (-947 *3 *4 *5 *6))))
- ((*1 *2 *1) (|partial| -12 (-4 *1 (-1009 *2)) (-4 *2 (-1180))))
+ ((*1 *2 *1) (|partial| -12 (-4 *1 (-1009 *2)) (-4 *2 (-1179))))
((*1 *1 *2)
(|partial| -1536
(-12 (-5 *2 (-923 *3))
- (-12 (-4008 (-4 *3 (-38 (-400 (-549)))))
- (-4008 (-4 *3 (-38 (-549)))) (-4 *5 (-594 (-1143))))
+ (-12 (-4007 (-4 *3 (-38 (-400 (-549)))))
+ (-4007 (-4 *3 (-38 (-549)))) (-4 *5 (-594 (-1142))))
(-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769))
(-4 *5 (-823)))
(-12 (-5 *2 (-923 *3))
- (-12 (-4008 (-4 *3 (-534))) (-4008 (-4 *3 (-38 (-400 (-549)))))
- (-4 *3 (-38 (-549))) (-4 *5 (-594 (-1143))))
+ (-12 (-4007 (-4 *3 (-534))) (-4007 (-4 *3 (-38 (-400 (-549)))))
+ (-4 *3 (-38 (-549))) (-4 *5 (-594 (-1142))))
(-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769))
(-4 *5 (-823)))
(-12 (-5 *2 (-923 *3))
- (-12 (-4008 (-4 *3 (-963 (-549)))) (-4 *3 (-38 (-400 (-549))))
- (-4 *5 (-594 (-1143))))
+ (-12 (-4007 (-4 *3 (-963 (-549)))) (-4 *3 (-38 (-400 (-549))))
+ (-4 *5 (-594 (-1142))))
(-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769))
(-4 *5 (-823)))))
((*1 *1 *2)
(|partial| -1536
(-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5))
- (-12 (-4008 (-4 *3 (-38 (-400 (-549))))) (-4 *3 (-38 (-549)))
- (-4 *5 (-594 (-1143))))
+ (-12 (-4007 (-4 *3 (-38 (-400 (-549))))) (-4 *3 (-38 (-549)))
+ (-4 *5 (-594 (-1142))))
(-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)))
(-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5))
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1143))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1142))))
(-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)))))
((*1 *1 *2)
(|partial| -12 (-5 *2 (-923 (-400 (-549)))) (-4 *1 (-1032 *3 *4 *5))
- (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1143)))
+ (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1142)))
(-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-400 (-1139 (-309 *3)))) (-4 *3 (-13 (-541) (-823)))
- (-5 *1 (-1097 *3)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-923 (-549))))
- (-5 *4 (-309 (-167 (-372)))) (-5 *1 (-323))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-923 (-549))))
- (-5 *4 (-309 (-372))) (-5 *1 (-323))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-923 (-549))))
- (-5 *4 (-309 (-549))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-309 (-167 (-372)))))
- (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-309 (-372)))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-309 (-549)))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-309 (-167 (-372)))))
- (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-309 (-372)))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-309 (-549)))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-309 (-167 (-372)))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-309 (-372))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-309 (-549))) (-5 *1 (-323))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-923 (-549))))
- (-5 *4 (-309 (-670))) (-5 *1 (-323))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-923 (-549))))
- (-5 *4 (-309 (-675))) (-5 *1 (-323))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-923 (-549))))
- (-5 *4 (-309 (-677))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-309 (-670)))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-309 (-675)))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-309 (-677)))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-309 (-670)))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-309 (-675)))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-309 (-677)))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-670))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-675))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-677))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-670))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-675))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-665 (-677))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-309 (-670))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-309 (-675))) (-5 *1 (-323))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-309 (-677))) (-5 *1 (-323))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1125)) (-5 *1 (-323))))
- ((*1 *1 *1 *1) (-5 *1 (-834))))
-(((*1 *2 *2)
- (-12
- (-5 *2
- (-621
- (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-747)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *4 (-769)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-444)) (-4 *5 (-823))
- (-5 *1 (-441 *3 *4 *5 *6)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1143)) (-5 *2 (-621 (-936))) (-5 *1 (-284)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823))
- (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-137)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112))
- (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-621 *6)) (-4 *6 (-823)) (-4 *4 (-356)) (-4 *5 (-769))
- (-5 *2 (-112)) (-5 *1 (-495 *4 *5 *6 *7)) (-4 *7 (-920 *4 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-356)) (-4 *6 (-1202 (-400 *2)))
- (-4 *2 (-1202 *5)) (-5 *1 (-209 *5 *2 *6 *3))
- (-4 *3 (-335 *5 *2 *6)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1139 (-400 (-923 *3)))) (-5 *1 (-445 *3 *4 *5 *6))
- (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))))
+(((*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
+ ((*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
+ (-4 *2 (-423 *3))))
+ ((*1 *1 *1) (-4 *1 (-1105))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3))
- (-4 *5 (-366 *3)) (-5 *2 (-549))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
- (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-549)))))
-(((*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-1006)) (-5 *1 (-813))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-309 (-372)))) (-5 *4 (-621 (-372)))
- (-5 *2 (-1006)) (-5 *1 (-813)))))
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-300))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-439 *3 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-621 *7)) (-5 *3 (-1124)) (-4 *7 (-920 *4 *5 *6))
+ (-4 *4 (-300)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-5 *1 (-439 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-621 *7)) (-5 *3 (-1124)) (-4 *7 (-920 *4 *5 *6))
+ (-4 *4 (-300)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-5 *1 (-439 *4 *5 *6 *7)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1125)) (-5 *2 (-549)) (-5 *1 (-1162 *4))
- (-4 *4 (-1018)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-621 (-400 *7)))
- (-4 *7 (-1202 *6)) (-5 *3 (-400 *7)) (-4 *6 (-356))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-559 *6 *7)))))
+ (-12 (-4 *4 (-342)) (-4 *5 (-322 *4)) (-4 *6 (-1201 *5))
+ (-5 *2 (-621 *3)) (-5 *1 (-753 *4 *5 *6 *3 *7)) (-4 *3 (-1201 *6))
+ (-14 *7 (-892)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1068 *4)) (-4 *4 (-1066)) (-5 *2 (-1 *4))
+ (-5 *1 (-988 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-372))) (-5 *1 (-1011)) (-5 *3 (-372))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1060 (-549))) (-5 *2 (-1 (-549))) (-5 *1 (-1016)))))
+(((*1 *2)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-137)))))
+(((*1 *2 *3 *2 *2)
+ (-12 (-5 *2 (-621 (-473 *4 *5))) (-5 *3 (-836 *4))
+ (-14 *4 (-621 (-1142))) (-4 *5 (-444)) (-5 *1 (-609 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-549)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-5 *2 (-1230)) (-5 *1 (-441 *4 *5 *6 *7)) (-4 *7 (-920 *4 *5 *6)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-246 *2 *3 *4 *5)) (-4 *2 (-1018)) (-4 *3 (-823))
+ (-4 *4 (-259 *3)) (-4 *5 (-769)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))))
+(((*1 *1 *2 *3 *1 *3)
+ (-12 (-5 *2 (-863 *4)) (-4 *4 (-1066)) (-5 *1 (-860 *4 *3))
+ (-4 *3 (-1066)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-665 *3))
+ (-4 *3 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $)))))
+ (-4 *4 (-1201 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-665 *3))
+ (-4 *3 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $)))))
+ (-4 *4 (-1201 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-914 (-219))) (-5 *2 (-1230)) (-5 *1 (-460)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-323)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-834) (-834))) (-5 *1 (-114))))
((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-834) (-621 (-834)))) (-5 *1 (-114))))
((*1 *2 *1)
(|partial| -12 (-5 *2 (-1 (-834) (-621 (-834)))) (-5 *1 (-114))))
((*1 *2 *1)
- (-12 (-5 *2 (-1231)) (-5 *1 (-208 *3))
+ (-12 (-5 *2 (-1230)) (-5 *1 (-208 *3))
(-4 *3
(-13 (-823)
- (-10 -8 (-15 -3341 ((-1125) $ (-1143))) (-15 -2699 (*2 $))
- (-15 -2684 (*2 $)))))))
- ((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-387))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1231)) (-5 *1 (-387))))
- ((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-493))))
- ((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-687))))
- ((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-1160))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1231)) (-5 *1 (-1160)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1067)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170))))
- ((*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))))
-(((*1 *2 *1)
- (-12
+ (-10 -8 (-15 -3339 ((-1124) $ (-1142))) (-15 -2697 (*2 $))
+ (-15 -1674 (*2 $)))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-387))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1230)) (-5 *1 (-387))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-493))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-687))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-1159))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1230)) (-5 *1 (-1159)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1066)) (-4 *6 (-1066))
+ (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-660 *4 *5 *6)) (-4 *4 (-1066)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *6) (|:| -3847 *6) (|:| |sol?| (-112))) (-549)
+ *6))
+ (-4 *6 (-356)) (-4 *7 (-1201 *6))
(-5 *2
- (-621
- (-2
- (|:| -3337
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
- (|:| |relerr| (-219))))
- (|:| -1793
- (-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| (-1123 (-219)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -1372
- (-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 (-544))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-584 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1180))
- (-5 *2 (-621 *4)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1065 *3)) (-4 *3 (-1067)) (-5 *2 (-112)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-1250 *3 *4)) (-4 *1 (-367 *3 *4)) (-4 *3 (-823))
- (-4 *4 (-170))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-379 *2)) (-4 *2 (-1067))))
- ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-795 *2)) (-4 *2 (-823))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-795 *2)) (-4 *2 (-823))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-795 *3)) (-4 *1 (-1243 *3 *4)) (-4 *3 (-823))
- (-4 *4 (-1018))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
+ (-3 (-2 (|:| |answer| (-400 *7)) (|:| |a0| *6))
+ (-2 (|:| -2677 (-400 *7)) (|:| |coeff| (-400 *7))) "failed"))
+ (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-309 (-219))) (-5 *2 (-400 (-549))) (-5 *1 (-298)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-594 (-863 *3))) (-4 *3 (-857 *3))
- (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-594 (-863 *3))) (-4 *2 (-857 *3))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *1 *1 *2 *3 *1)
- (-12 (-4 *1 (-319 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1067) (-34)))
- (-4 *3 (-13 (-1067) (-34))))))
-(((*1 *2)
- (-12
- (-5 *2 (-2 (|:| -1667 (-621 (-1143))) (|:| -1578 (-621 (-1143)))))
- (-5 *1 (-1182)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-1231)) (-5 *1 (-1146)))))
-(((*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1231)) (-5 *1 (-372))))
- ((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-372)))))
+ (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *1 (-441 *3 *4 *5 *2)) (-4 *2 (-920 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-892)) (-5 *2 (-1138 *4)) (-5 *1 (-350 *4))
+ (-4 *4 (-342)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1122 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *3 (-112)) (-5 *1 (-110))))
+ ((*1 *2 *2) (-12 (-5 *2 (-892)) (|has| *1 (-6 -4327)) (-4 *1 (-397))))
+ ((*1 *2) (-12 (-4 *1 (-397)) (-5 *2 (-892)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-5 *1 (-102 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
+ (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1979 *4))))
+ (-5 *1 (-752 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-356)) (-4 *3 (-1018))
+ (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4247 *1)))
+ (-4 *1 (-825 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170))
+ (-5 *2 (-665 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-665 *4)) (-5 *1 (-409 *3 *4))
+ (-4 *3 (-410 *4))))
+ ((*1 *2) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-665 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-892)) (-5 *4 (-411 *6)) (-4 *6 (-1201 *5))
+ (-4 *5 (-1018)) (-5 *2 (-621 *6)) (-5 *1 (-436 *5 *6)))))
(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-400 *5)) (-4 *4 (-1184)) (-4 *5 (-1202 *4))
- (-5 *1 (-146 *4 *5 *2)) (-4 *2 (-1202 *3))))
+ (-12 (-5 *3 (-400 *5)) (-4 *4 (-1183)) (-4 *5 (-1201 *4))
+ (-5 *1 (-146 *4 *5 *2)) (-4 *2 (-1201 *3))))
((*1 *2 *3)
- (-12 (-5 *3 (-1145 (-400 (-549)))) (-5 *2 (-400 (-549)))
+ (-12 (-5 *3 (-1144 (-400 (-549)))) (-5 *2 (-400 (-549)))
(-5 *1 (-184))))
((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-665 (-309 (-219)))) (-5 *3 (-621 (-1143)))
- (-5 *4 (-1226 (-309 (-219)))) (-5 *1 (-199))))
+ (-12 (-5 *2 (-665 (-309 (-219)))) (-5 *3 (-621 (-1142)))
+ (-5 *4 (-1225 (-309 (-219)))) (-5 *1 (-199))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-287 *3))) (-4 *3 (-302 *3)) (-4 *3 (-1067))
- (-4 *3 (-1180)) (-5 *1 (-287 *3))))
+ (-12 (-5 *2 (-621 (-287 *3))) (-4 *3 (-302 *3)) (-4 *3 (-1066))
+ (-4 *3 (-1179)) (-5 *1 (-287 *3))))
((*1 *1 *1 *1)
- (-12 (-4 *2 (-302 *2)) (-4 *2 (-1067)) (-4 *2 (-1180))
+ (-12 (-4 *2 (-302 *2)) (-4 *2 (-1066)) (-4 *2 (-1179))
(-5 *1 (-287 *2))))
((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-114)) (-5 *3 (-1 *1 *1)) (-4 *1 (-295))))
@@ -9098,20 +9358,20 @@
((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-621 (-114))) (-5 *3 (-621 (-1 *1 *1))) (-4 *1 (-295))))
((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-1 *1 *1)) (-4 *1 (-295))))
+ (-12 (-5 *2 (-1142)) (-5 *3 (-1 *1 *1)) (-4 *1 (-295))))
((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-1 *1 (-621 *1))) (-4 *1 (-295))))
+ (-12 (-5 *2 (-1142)) (-5 *3 (-1 *1 (-621 *1))) (-4 *1 (-295))))
((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-621 (-1143))) (-5 *3 (-621 (-1 *1 (-621 *1))))
+ (-12 (-5 *2 (-621 (-1142))) (-5 *3 (-621 (-1 *1 (-621 *1))))
(-4 *1 (-295))))
((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-621 (-1143))) (-5 *3 (-621 (-1 *1 *1))) (-4 *1 (-295))))
+ (-12 (-5 *2 (-621 (-1142))) (-5 *3 (-621 (-1 *1 *1))) (-4 *1 (-295))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-287 *3))) (-4 *1 (-302 *3)) (-4 *3 (-1067))))
+ (-12 (-5 *2 (-621 (-287 *3))) (-4 *1 (-302 *3)) (-4 *3 (-1066))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-287 *3)) (-4 *1 (-302 *3)) (-4 *3 (-1067))))
+ (-12 (-5 *2 (-287 *3)) (-4 *1 (-302 *3)) (-4 *3 (-1066))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 (-549))) (-5 *4 (-1145 (-400 (-549))))
+ (-12 (-5 *3 (-1 *2 (-549))) (-5 *4 (-1144 (-400 (-549))))
(-5 *1 (-303 *2)) (-4 *2 (-38 (-400 (-549))))))
((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-621 *4)) (-5 *3 (-621 *1)) (-4 *1 (-367 *4 *5))
@@ -9119,47 +9379,47 @@
((*1 *1 *1 *2 *1)
(-12 (-4 *1 (-367 *2 *3)) (-4 *2 (-823)) (-4 *3 (-170))))
((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1143)) (-5 *3 (-747)) (-5 *4 (-1 *1 *1))
+ (-12 (-5 *2 (-1142)) (-5 *3 (-747)) (-5 *4 (-1 *1 *1))
(-4 *1 (-423 *5)) (-4 *5 (-823)) (-4 *5 (-1018))))
((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1143)) (-5 *3 (-747)) (-5 *4 (-1 *1 (-621 *1)))
+ (-12 (-5 *2 (-1142)) (-5 *3 (-747)) (-5 *4 (-1 *1 (-621 *1)))
(-4 *1 (-423 *5)) (-4 *5 (-823)) (-4 *5 (-1018))))
((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-621 (-1143))) (-5 *3 (-621 (-747)))
+ (-12 (-5 *2 (-621 (-1142))) (-5 *3 (-621 (-747)))
(-5 *4 (-621 (-1 *1 (-621 *1)))) (-4 *1 (-423 *5)) (-4 *5 (-823))
(-4 *5 (-1018))))
((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-621 (-1143))) (-5 *3 (-621 (-747)))
+ (-12 (-5 *2 (-621 (-1142))) (-5 *3 (-621 (-747)))
(-5 *4 (-621 (-1 *1 *1))) (-4 *1 (-423 *5)) (-4 *5 (-823))
(-4 *5 (-1018))))
((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-621 (-114))) (-5 *3 (-621 *1)) (-5 *4 (-1143))
+ (-12 (-5 *2 (-621 (-114))) (-5 *3 (-621 *1)) (-5 *4 (-1142))
(-4 *1 (-423 *5)) (-4 *5 (-823)) (-4 *5 (-594 (-525)))))
((*1 *1 *1 *2 *1 *3)
- (-12 (-5 *2 (-114)) (-5 *3 (-1143)) (-4 *1 (-423 *4)) (-4 *4 (-823))
+ (-12 (-5 *2 (-114)) (-5 *3 (-1142)) (-4 *1 (-423 *4)) (-4 *4 (-823))
(-4 *4 (-594 (-525)))))
((*1 *1 *1)
(-12 (-4 *1 (-423 *2)) (-4 *2 (-823)) (-4 *2 (-594 (-525)))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-1143))) (-4 *1 (-423 *3)) (-4 *3 (-823))
+ (-12 (-5 *2 (-621 (-1142))) (-4 *1 (-423 *3)) (-4 *3 (-823))
(-4 *3 (-594 (-525)))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1143)) (-4 *1 (-423 *3)) (-4 *3 (-823))
+ (-12 (-5 *2 (-1142)) (-4 *1 (-423 *3)) (-4 *3 (-823))
(-4 *3 (-594 (-525)))))
((*1 *1 *1 *2 *3)
- (-12 (-4 *1 (-505 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1180))))
+ (-12 (-4 *1 (-505 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1179))))
((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-621 *4)) (-5 *3 (-621 *5)) (-4 *1 (-505 *4 *5))
- (-4 *4 (-1067)) (-4 *5 (-1180))))
+ (-4 *4 (-1066)) (-4 *5 (-1179))))
((*1 *2 *1 *2)
(-12 (-5 *2 (-809 *3)) (-4 *3 (-356)) (-5 *1 (-695 *3))))
((*1 *2 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356))))
- ((*1 *2 *1 *2) (-12 (-4 *1 (-874 *2)) (-4 *2 (-1067))))
+ ((*1 *2 *1 *2) (-12 (-4 *1 (-874 *2)) (-4 *2 (-1066))))
((*1 *2 *2 *3 *2)
- (-12 (-5 *2 (-400 (-923 *4))) (-5 *3 (-1143)) (-4 *4 (-541))
+ (-12 (-5 *2 (-400 (-923 *4))) (-5 *3 (-1142)) (-4 *4 (-541))
(-5 *1 (-1014 *4))))
((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-621 (-1143))) (-5 *4 (-621 (-400 (-923 *5))))
+ (-12 (-5 *3 (-621 (-1142))) (-5 *4 (-621 (-400 (-923 *5))))
(-5 *2 (-400 (-923 *5))) (-4 *5 (-541)) (-5 *1 (-1014 *5))))
((*1 *2 *2 *3)
(-12 (-5 *3 (-287 (-400 (-923 *4)))) (-5 *2 (-400 (-923 *4)))
@@ -9168,88 +9428,78 @@
(-12 (-5 *3 (-621 (-287 (-400 (-923 *4))))) (-5 *2 (-400 (-923 *4)))
(-4 *4 (-541)) (-5 *1 (-1014 *4))))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1204 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768))
- (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1123 *3)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-892)) (-5 *2 (-1231)) (-5 *1 (-208 *4))
- (-4 *4
- (-13 (-823)
- (-10 -8 (-15 -3341 ((-1125) $ (-1143))) (-15 -2699 (*2 $))
- (-15 -2684 (*2 $)))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1231)) (-5 *1 (-208 *3))
- (-4 *3
- (-13 (-823)
- (-10 -8 (-15 -3341 ((-1125) $ (-1143))) (-15 -2699 (*2 $))
- (-15 -2684 (*2 $)))))))
- ((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-493)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *3 (-549)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime"))
- (-5 *1 (-411 *2)) (-4 *2 (-541)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-133)))))
+ (-12 (-4 *1 (-1203 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768))
+ (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1122 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-342)) (-5 *2 (-411 (-1138 (-1138 *4))))
+ (-5 *1 (-1177 *4)) (-5 *3 (-1138 (-1138 *4))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549))
+ (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421))))
+ (-5 *2 (-1006)) (-5 *1 (-725)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-300)) (-5 *2 (-112)))))
(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-169))))
- ((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-1227))))
- ((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-430)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-1226))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-476 *3)))))
+(((*1 *2 *1) (-12 (-5 *1 (-567 *2)) (-4 *2 (-356)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1201 (-48))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-2 (|:| |k| (-1143)) (|:| |c| (-1248 *3)))))
- (-5 *1 (-1248 *3)) (-4 *3 (-1018))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-621 (-2 (|:| |k| *3) (|:| |c| (-1250 *3 *4)))))
- (-5 *1 (-1250 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)))))
-(((*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-675)) (-5 *1 (-298)))))
-(((*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1229))))
- ((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1229)))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
- (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN))))
- (-5 *2 (-1006)) (-5 *1 (-725)))))
+ (-12 (-4 *4 (-1066)) (-5 *2 (-860 *3 *4)) (-5 *1 (-856 *3 *4 *5))
+ (-4 *3 (-1066)) (-4 *5 (-642 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-809 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-816 *3)) (-4 *3 (-1066)))))
+(((*1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1228))))
+ ((*1 *2 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1228)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112))
- (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5))))
- ((*1 *2 *1) (-12 (-4 *1 (-699)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-703)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1143)) (-4 *5 (-356)) (-5 *2 (-1123 (-1123 (-923 *5))))
- (-5 *1 (-1234 *5)) (-5 *4 (-1123 (-923 *5))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-52))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444))
- (-14 *6 (-621 (-1143)))
- (-5 *2
- (-621 (-1113 *5 (-521 (-836 *6)) (-836 *6) (-756 *5 (-836 *6)))))
- (-5 *1 (-606 *5 *6)))))
+ (-12 (-5 *2 (-844 (-937 *3) (-937 *3))) (-5 *1 (-937 *3))
+ (-4 *3 (-938)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1217 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1142))
+ (-14 *4 *2))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1122 (-549))) (-5 *1 (-1126 *4)) (-4 *4 (-1018))
+ (-5 *3 (-549)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-898)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))))
-(((*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-1125)) (-5 *5 (-665 (-219)))
- (-5 *2 (-1006)) (-5 *1 (-724)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1226 *4)) (-5 *3 (-549)) (-4 *4 (-342))
- (-5 *1 (-519 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-898)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-724)))))
+ (-12 (-5 *2 (-621 (-2 (|:| |integrand| *3) (|:| |intvar| *3))))
+ (-5 *1 (-567 *3)) (-4 *3 (-356)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-1058 (-923 (-549)))) (-5 *3 (-923 (-549)))
+ (-5 *1 (-323))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-1058 (-923 (-549)))) (-5 *1 (-323)))))
+(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-977))))
+ ((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-977)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1225 *3)) (-4 *3 (-1018)) (-5 *1 (-689 *3 *4))
+ (-4 *4 (-1201 *3)))))
(((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-747)) (-4 *2 (-1067))
+ (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-747)) (-4 *2 (-1066))
(-5 *1 (-654 *2)))))
-(((*1 *1) (-12 (-4 *1 (-418 *2)) (-4 *2 (-361)) (-4 *2 (-1067)))))
+(((*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 (-1123 *4) (-1123 *4))) (-5 *2 (-1123 *4))
- (-5 *1 (-1251 *4)) (-4 *4 (-1180))))
+ (-12 (-5 *3 (-1 (-1122 *4) (-1122 *4))) (-5 *2 (-1122 *4))
+ (-5 *1 (-1250 *4)) (-4 *4 (-1179))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-621 (-1123 *5)) (-621 (-1123 *5)))) (-5 *4 (-549))
- (-5 *2 (-621 (-1123 *5))) (-5 *1 (-1251 *5)) (-4 *5 (-1180)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-892)) (-5 *2 (-747)) (-5 *1 (-1068 *4 *5)) (-14 *4 *3)
- (-14 *5 *3))))
+ (-12 (-5 *3 (-1 (-621 (-1122 *5)) (-621 (-1122 *5)))) (-5 *4 (-549))
+ (-5 *2 (-621 (-1122 *5))) (-5 *1 (-1250 *5)) (-4 *5 (-1179)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-2 (|:| |k| (-1142)) (|:| |c| (-1247 *3)))))
+ (-5 *1 (-1247 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-2 (|:| |k| *3) (|:| |c| (-1249 *3 *4)))))
+ (-5 *1 (-1249 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018)))))
(((*1 *2 *1 *3)
(-12 (-5 *2 (-400 (-549))) (-5 *1 (-117 *4)) (-14 *4 *3)
(-5 *3 (-549))))
@@ -9263,45 +9513,45 @@
((*1 *2 *1 *1) (-12 (-4 *1 (-983)) (-5 *2 (-400 (-549)))))
((*1 *2 *3 *1 *2)
(-12 (-4 *1 (-1035 *2 *3)) (-4 *2 (-13 (-821) (-356)))
- (-4 *3 (-1202 *2))))
+ (-4 *3 (-1201 *2))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-1204 *2 *3)) (-4 *3 (-768))
- (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -3846 (*2 (-1143))))
+ (-12 (-4 *1 (-1203 *2 *3)) (-4 *3 (-768))
+ (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -3845 (*2 (-1142))))
(-4 *2 (-1018)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *1 (-854))
- (-5 *3 (-621 (-549))))))
-(((*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1180))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-892)) (-5 *2 (-747)) (-5 *1 (-1067 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3))))
+(((*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1179))))
((*1 *1 *2)
(-12 (-5 *2 (-923 (-372))) (-5 *1 (-332 *3 *4 *5))
- (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1143)))
- (-14 *4 (-621 (-1143))) (-4 *5 (-380))))
+ (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1142)))
+ (-14 *4 (-621 (-1142))) (-4 *5 (-380))))
((*1 *1 *2)
(-12 (-5 *2 (-400 (-923 (-372)))) (-5 *1 (-332 *3 *4 *5))
- (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1143)))
- (-14 *4 (-621 (-1143))) (-4 *5 (-380))))
+ (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1142)))
+ (-14 *4 (-621 (-1142))) (-4 *5 (-380))))
((*1 *1 *2)
(-12 (-5 *2 (-309 (-372))) (-5 *1 (-332 *3 *4 *5))
- (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1143)))
- (-14 *4 (-621 (-1143))) (-4 *5 (-380))))
+ (-4 *5 (-1009 (-372))) (-14 *3 (-621 (-1142)))
+ (-14 *4 (-621 (-1142))) (-4 *5 (-380))))
((*1 *1 *2)
(-12 (-5 *2 (-923 (-549))) (-5 *1 (-332 *3 *4 *5))
- (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1143)))
- (-14 *4 (-621 (-1143))) (-4 *5 (-380))))
+ (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1142)))
+ (-14 *4 (-621 (-1142))) (-4 *5 (-380))))
((*1 *1 *2)
(-12 (-5 *2 (-400 (-923 (-549)))) (-5 *1 (-332 *3 *4 *5))
- (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1143)))
- (-14 *4 (-621 (-1143))) (-4 *5 (-380))))
+ (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1142)))
+ (-14 *4 (-621 (-1142))) (-4 *5 (-380))))
((*1 *1 *2)
(-12 (-5 *2 (-309 (-549))) (-5 *1 (-332 *3 *4 *5))
- (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1143)))
- (-14 *4 (-621 (-1143))) (-4 *5 (-380))))
+ (-4 *5 (-1009 (-549))) (-14 *3 (-621 (-1142)))
+ (-14 *4 (-621 (-1142))) (-4 *5 (-380))))
((*1 *1 *2)
- (-12 (-5 *2 (-1143)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 *2))
+ (-12 (-5 *2 (-1142)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 *2))
(-14 *4 (-621 *2)) (-4 *5 (-380))))
((*1 *1 *2)
(-12 (-5 *2 (-309 *5)) (-4 *5 (-380)) (-5 *1 (-332 *3 *4 *5))
- (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-1143)))))
+ (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-1142)))))
((*1 *1 *2) (-12 (-5 *2 (-665 (-400 (-923 (-549))))) (-4 *1 (-377))))
((*1 *1 *2) (-12 (-5 *2 (-665 (-400 (-923 (-372))))) (-4 *1 (-377))))
((*1 *1 *2) (-12 (-5 *2 (-665 (-923 (-549)))) (-4 *1 (-377))))
@@ -9314,30 +9564,30 @@
((*1 *1 *2) (-12 (-5 *2 (-923 (-372))) (-4 *1 (-389))))
((*1 *1 *2) (-12 (-5 *2 (-309 (-549))) (-4 *1 (-389))))
((*1 *1 *2) (-12 (-5 *2 (-309 (-372))) (-4 *1 (-389))))
- ((*1 *1 *2) (-12 (-5 *2 (-1226 (-400 (-923 (-549))))) (-4 *1 (-433))))
- ((*1 *1 *2) (-12 (-5 *2 (-1226 (-400 (-923 (-372))))) (-4 *1 (-433))))
- ((*1 *1 *2) (-12 (-5 *2 (-1226 (-923 (-549)))) (-4 *1 (-433))))
- ((*1 *1 *2) (-12 (-5 *2 (-1226 (-923 (-372)))) (-4 *1 (-433))))
- ((*1 *1 *2) (-12 (-5 *2 (-1226 (-309 (-549)))) (-4 *1 (-433))))
- ((*1 *1 *2) (-12 (-5 *2 (-1226 (-309 (-372)))) (-4 *1 (-433))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1225 (-400 (-923 (-549))))) (-4 *1 (-433))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1225 (-400 (-923 (-372))))) (-4 *1 (-433))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1225 (-923 (-549)))) (-4 *1 (-433))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1225 (-923 (-372)))) (-4 *1 (-433))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1225 (-309 (-549)))) (-4 *1 (-433))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1225 (-309 (-372)))) (-4 *1 (-433))))
((*1 *2 *1)
(-12
(-5 *2
(-3
(|:| |nia|
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
(|:| |relerr| (-219))))
(|:| |mdnia|
(-2 (|:| |fn| (-309 (-219)))
- (|:| -1372 (-621 (-1061 (-816 (-219)))))
+ (|:| -2811 (-621 (-1060 (-816 (-219)))))
(|:| |abserr| (-219)) (|:| |relerr| (-219))))))
(-5 *1 (-745))))
((*1 *2 *1)
(-12
(-5 *2
(-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
- (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
+ (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
(|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
(|:| |abserr| (-219)) (|:| |relerr| (-219))))
(-5 *1 (-784))))
@@ -9346,13 +9596,13 @@
(-5 *2
(-3
(|:| |noa|
- (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219)))
+ (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219)))
(|:| |lb| (-621 (-816 (-219))))
(|:| |cf| (-621 (-309 (-219))))
(|:| |ub| (-621 (-816 (-219))))))
(|:| |lsa|
(-2 (|:| |lfn| (-621 (-309 (-219))))
- (|:| -3060 (-621 (-219)))))))
+ (|:| -3059 (-621 (-219)))))))
(-5 *1 (-814))))
((*1 *2 *1)
(-12
@@ -9363,490 +9613,560 @@
(-2 (|:| |start| (-219)) (|:| |finish| (-219))
(|:| |grid| (-747)) (|:| |boundaryType| (-549))
(|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219))))))
- (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125))
+ (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124))
(|:| |tol| (-219))))
(-5 *1 (-869))))
((*1 *1 *2)
(-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-1018))
(-4 *4 (-769)) (-4 *5 (-823)) (-4 *1 (-947 *3 *4 *5 *6))))
- ((*1 *2 *1) (-12 (-4 *1 (-1009 *2)) (-4 *2 (-1180))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1009 *2)) (-4 *2 (-1179))))
((*1 *1 *2)
(-1536
(-12 (-5 *2 (-923 *3))
- (-12 (-4008 (-4 *3 (-38 (-400 (-549)))))
- (-4008 (-4 *3 (-38 (-549)))) (-4 *5 (-594 (-1143))))
+ (-12 (-4007 (-4 *3 (-38 (-400 (-549)))))
+ (-4007 (-4 *3 (-38 (-549)))) (-4 *5 (-594 (-1142))))
(-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769))
(-4 *5 (-823)))
(-12 (-5 *2 (-923 *3))
- (-12 (-4008 (-4 *3 (-534))) (-4008 (-4 *3 (-38 (-400 (-549)))))
- (-4 *3 (-38 (-549))) (-4 *5 (-594 (-1143))))
+ (-12 (-4007 (-4 *3 (-534))) (-4007 (-4 *3 (-38 (-400 (-549)))))
+ (-4 *3 (-38 (-549))) (-4 *5 (-594 (-1142))))
(-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769))
(-4 *5 (-823)))
(-12 (-5 *2 (-923 *3))
- (-12 (-4008 (-4 *3 (-963 (-549)))) (-4 *3 (-38 (-400 (-549))))
- (-4 *5 (-594 (-1143))))
+ (-12 (-4007 (-4 *3 (-963 (-549)))) (-4 *3 (-38 (-400 (-549))))
+ (-4 *5 (-594 (-1142))))
(-4 *3 (-1018)) (-4 *1 (-1032 *3 *4 *5)) (-4 *4 (-769))
(-4 *5 (-823)))))
((*1 *1 *2)
(-1536
(-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5))
- (-12 (-4008 (-4 *3 (-38 (-400 (-549))))) (-4 *3 (-38 (-549)))
- (-4 *5 (-594 (-1143))))
+ (-12 (-4007 (-4 *3 (-38 (-400 (-549))))) (-4 *3 (-38 (-549)))
+ (-4 *5 (-594 (-1142))))
(-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)))
(-12 (-5 *2 (-923 (-549))) (-4 *1 (-1032 *3 *4 *5))
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1143))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1142))))
(-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)))))
((*1 *1 *2)
(-12 (-5 *2 (-923 (-400 (-549)))) (-4 *1 (-1032 *3 *4 *5))
- (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1143))) (-4 *3 (-1018))
+ (-4 *3 (-38 (-400 (-549)))) (-4 *5 (-594 (-1142))) (-4 *3 (-1018))
(-4 *4 (-769)) (-4 *5 (-823)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-621 *5) *6))
- (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *6 (-1202 *5))
- (-5 *2 (-621 (-2 (|:| -2589 *5) (|:| -2652 *3))))
- (-5 *1 (-785 *5 *6 *3 *7)) (-4 *3 (-632 *6))
- (-4 *7 (-632 (-400 *6))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-437 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4)
+ (-12 (-5 *3 (-1124)) (-5 *5 (-665 (-219))) (-5 *6 (-219))
+ (-5 *7 (-665 (-549))) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-729)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1 (-167 (-219)) (-167 (-219)))) (-5 *4 (-1060 (-219)))
+ (-5 *5 (-112)) (-5 *2 (-1227)) (-5 *1 (-250)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1179)) (-5 *1 (-1098 *4 *2))
+ (-4 *2 (-13 (-584 (-549) *4) (-10 -7 (-6 -4336) (-6 -4337))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-823)) (-4 *3 (-1179)) (-5 *1 (-1098 *3 *2))
+ (-4 *2 (-13 (-584 (-549) *3) (-10 -7 (-6 -4336) (-6 -4337)))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-621 (-621 *4)))) (-5 *2 (-621 (-621 *4)))
- (-5 *1 (-1151 *4)) (-4 *4 (-823)))))
-(((*1 *2 *1) (-12 (-4 *1 (-360 *2)) (-4 *2 (-170)))))
-(((*1 *1 *1)
+ (-12 (-5 *3 (-309 (-219))) (-5 *2 (-309 (-372))) (-5 *1 (-298)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *1 *1 *1)
(-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *2 (-444)))))
+ (-4 *4 (-823)) (-4 *2 (-541))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)) (-4 *2 (-541)))))
(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-241 *4 *5)) (-14 *4 (-621 (-1143))) (-4 *5 (-444))
- (-5 *2 (-473 *4 *5)) (-5 *1 (-609 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
-(((*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-1125)) (-5 *1 (-186))))
- ((*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-1125)) (-5 *1 (-293))))
- ((*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-1125)) (-5 *1 (-298)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-342))
+ (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *4 *5 *6)) (-4 *4 (-356))
+ (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-5 *1 (-442 *4 *5 *6 *2))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-98 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-356))
(-5 *2
- (-2 (|:| |cont| *5)
- (|:| -4024 (-621 (-2 (|:| |irr| *3) (|:| -2495 (-549)))))))
- (-5 *1 (-210 *5 *3)) (-4 *3 (-1202 *5)))))
+ (-2 (|:| R (-665 *6)) (|:| A (-665 *6)) (|:| |Ainv| (-665 *6))))
+ (-5 *1 (-949 *6)) (-5 *3 (-665 *6)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
+ (-5 *2 (-621 *4)) (-5 *1 (-1094 *3 *4)) (-4 *3 (-1201 *4))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
+ (-5 *2 (-621 *3)) (-5 *1 (-1094 *4 *3)) (-4 *4 (-1201 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-1 (-567 *3) *3 (-1142)))
+ (-5 *6
+ (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3
+ (-1142)))
+ (-4 *3 (-277)) (-4 *3 (-607)) (-4 *3 (-1009 *4)) (-4 *3 (-423 *7))
+ (-5 *4 (-1142)) (-4 *7 (-594 (-863 (-549)))) (-4 *7 (-444))
+ (-4 *7 (-857 (-549))) (-4 *7 (-823)) (-5 *2 (-567 *3))
+ (-5 *1 (-558 *7 *3)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1070)) (-5 *1 (-273)))))
+(((*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-444)) (-4 *4 (-823)) (-4 *5 (-769)) (-5 *2 (-112))
+ (-5 *1 (-958 *3 *4 *5 *6)) (-4 *6 (-920 *3 *5 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1106 *3 *4)) (-4 *3 (-13 (-1066) (-34)))
+ (-4 *4 (-13 (-1066) (-34))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-621 (-2 (|:| |val| (-621 *6)) (|:| -1979 *7))))
+ (-4 *6 (-1032 *3 *4 *5)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-959 *3 *4 *5 *6 *7))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-621 (-2 (|:| |val| (-621 *6)) (|:| -1979 *7))))
+ (-4 *6 (-1032 *3 *4 *5)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-1073 *3 *4 *5 *6 *7)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-769))
+ (-4 *3 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $))))) (-4 *5 (-541))
+ (-5 *1 (-709 *4 *3 *5 *2)) (-4 *2 (-920 (-400 (-923 *5)) *4 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *4 (-1018)) (-4 *5 (-769))
+ (-4 *3
+ (-13 (-823)
+ (-10 -8 (-15 -2843 ((-1142) $))
+ (-15 -3009 ((-3 $ "failed") (-1142))))))
+ (-5 *1 (-955 *4 *5 *3 *2)) (-4 *2 (-920 (-923 *4) *5 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-621 *6))
+ (-4 *6
+ (-13 (-823)
+ (-10 -8 (-15 -2843 ((-1142) $))
+ (-15 -3009 ((-3 $ "failed") (-1142))))))
+ (-4 *4 (-1018)) (-4 *5 (-769)) (-5 *1 (-955 *4 *5 *6 *2))
+ (-4 *2 (-920 (-923 *4) *5 *6)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1086)) (-5 *2 (-1230)) (-5 *1 (-807)))))
+(((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1244 *3)) (-4 *3 (-356)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *3 *4 *5 *6)
+ (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219)))
+ (-5 *5 (-1060 (-219))) (-5 *6 (-621 (-256))) (-5 *2 (-1099 (-219)))
+ (-5 *1 (-673)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-541) (-145))) (-5 *2 (-621 *3))
+ (-5 *1 (-1195 *4 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
(((*1 *2)
(-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
(-4 *3 (-360 *4))))
((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-357 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-5 *2 (-1125)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-273))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1243 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
- (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1249 *3 *4)) (-4 *3 (-1018))
- (-4 *4 (-819)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-621 (-2 (|:| -3838 (-400 (-549))) (|:| -3848 (-400 (-549))))))
- (-5 *2 (-621 (-400 (-549)))) (-5 *1 (-991 *4))
- (-4 *4 (-1202 (-549))))))
-(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-1214 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *3 *3 *4 *5 *5)
- (-12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
- (-4 *3 (-1032 *6 *7 *8))
- (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4))))
- (-5 *1 (-1039 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-621 (-2 (|:| |val| (-621 *8)) (|:| -1981 *9))))
- (-5 *5 (-112)) (-4 *8 (-1032 *6 *7 *4)) (-4 *9 (-1038 *6 *7 *4 *8))
- (-4 *6 (-444)) (-4 *7 (-769)) (-4 *4 (-823))
- (-5 *2 (-621 (-2 (|:| |val| *8) (|:| -1981 *9))))
- (-5 *1 (-1039 *6 *7 *4 *8 *9)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *1 *1 *2)
- (|partial| -12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541))
- (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-534))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *1 *2)
- (-12
- (-5 *2
- (-621
- (-2
- (|:| -3337
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
- (|:| |relerr| (-219))))
- (|:| -1793
- (-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| (-1123 (-219)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -1372
- (-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 (-544)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459))))
- ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-823)) (-5 *2 (-112)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-592 *1)) (-4 *1 (-295)))))
-(((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-1051 *3)) (-4 *3 (-131)))))
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-1050 *3)) (-4 *3 (-131)))))
(((*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1 (-372))) (-5 *1 (-1011)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1067))
- (-5 *2 (-621 (-2 (|:| |k| *4) (|:| |c| *3))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-621 (-2 (|:| |k| (-864 *3)) (|:| |c| *4))))
- (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823))
- (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-621 (-648 *3))) (-5 *1 (-864 *3)) (-4 *3 (-823)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-406 *3 *4 *5 *6)) (-4 *6 (-1009 *4)) (-4 *3 (-300))
+ (-4 *4 (-963 *3)) (-4 *5 (-1201 *4)) (-4 *6 (-402 *4 *5))
+ (-14 *7 (-1225 *6)) (-5 *1 (-407 *3 *4 *5 *6 *7))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1225 *6)) (-4 *6 (-402 *4 *5)) (-4 *4 (-963 *3))
+ (-4 *5 (-1201 *4)) (-4 *3 (-300)) (-5 *1 (-407 *3 *4 *5 *6 *7))
+ (-14 *7 *2))))
+(((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-142)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-621 *3)) (-4 *3 (-1201 *5)) (-4 *5 (-300))
+ (-5 *2 (-747)) (-5 *1 (-447 *5 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-219)) (-5 *1 (-798)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-624 *3)) (-4 *3 (-1018))
- (-5 *1 (-691 *3 *4))))
+ (-12 (-5 *2 (-747)) (-4 *1 (-1201 *3)) (-4 *3 (-1018))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-810 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-621 *8)) (-5 *3 (-1 (-112) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541))
- (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-948 *5 *6 *7 *8)))))
-(((*1 *1 *1 *1) (-5 *1 (-834))))
-(((*1 *2 *1) (-12 (-5 *1 (-1175 *2)) (-4 *2 (-945)))))
-(((*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1029))))
- ((*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-1029)))))
-(((*1 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1180)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-14 *4 (-621 (-1143))) (-4 *2 (-170))
- (-4 *3 (-232 (-3775 *4) (-747)))
- (-14 *6
- (-1 (-112) (-2 (|:| -3493 *5) (|:| -3731 *3))
- (-2 (|:| -3493 *5) (|:| -3731 *3))))
- (-5 *1 (-453 *4 *2 *5 *3 *6 *7)) (-4 *5 (-823))
- (-4 *7 (-920 *2 *3 (-836 *4))))))
-(((*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 (-665 (-219))) (-5 *5 (-112)) (-5 *6 (-219))
- (-5 *7 (-665 (-549)))
- (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-79 CONFUN))))
- (-5 *9 (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN))))
- (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-730)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-816 (-372))) (-5 *2 (-816 (-219))) (-5 *1 (-298)))))
-(((*1 *1) (-5 *1 (-1146))))
+ (-12 (-5 *2 (-892)) (-4 *1 (-1203 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-768))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-400 (-549))) (-4 *1 (-1206 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))))
+(((*1 *1) (-12 (-5 *1 (-621 *2)) (-4 *2 (-1179)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
- (-5 *2 (-621 *4)) (-5 *1 (-1095 *3 *4)) (-4 *3 (-1202 *4))))
- ((*1 *2 *3 *3 *3 *3 *3)
- (-12 (-4 *3 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
- (-5 *2 (-621 *3)) (-5 *1 (-1095 *4 *3)) (-4 *4 (-1202 *3)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-518)) (-5 *3 (-128)) (-5 *2 (-1087)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-387))))
- ((*1 *2 *1) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1160)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-549)) (-4 *1 (-627 *3)) (-4 *3 (-1180))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-549)) (-4 *1 (-627 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1202 *5)) (-4 *5 (-356))
- (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3)))
- (-5 *1 (-559 *5 *3)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1100 (-219))) (-5 *3 (-621 (-256))) (-5 *1 (-1228))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1100 (-219))) (-5 *3 (-1125)) (-5 *1 (-1228))))
- ((*1 *1 *1) (-5 *1 (-1228))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-356)) (-5 *1 (-867 *2 *3))
- (-4 *2 (-1202 *3)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *5 (-592 *4)) (-5 *6 (-1143))
- (-4 *4 (-13 (-423 *7) (-27) (-1165)))
- (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1949 (-621 *4))))
- (-5 *1 (-551 *7 *4 *3)) (-4 *3 (-632 *4)) (-4 *3 (-1067)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-834)))))
-(((*1 *2 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))))
-(((*1 *2)
- (-12 (-4 *4 (-1184)) (-4 *5 (-1202 *4)) (-4 *6 (-1202 (-400 *5)))
- (-5 *2 (-747)) (-5 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-335 *4 *5 *6))))
+ (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3))
+ (-4 *3 (-13 (-356) (-1164) (-973)))))
((*1 *2)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-5 *2 (-747))))
- ((*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-747)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-539 *3)) (-4 *3 (-13 (-397) (-1165))) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-387))))
- ((*1 *2 *1) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1160)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1123 (-549))) (-5 *1 (-1127 *4)) (-4 *4 (-1018))
- (-5 *3 (-549)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-923 *4)) (-4 *4 (-13 (-300) (-145)))
- (-4 *2 (-920 *4 *6 *5)) (-5 *1 (-895 *4 *5 *6 *2))
- (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-309 (-219)))) (-5 *2 (-112)) (-5 *1 (-260))))
- ((*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-112)) (-5 *1 (-260))))
+ (|partial| -12 (-4 *4 (-1183)) (-4 *5 (-1201 (-400 *2)))
+ (-4 *2 (-1201 *4)) (-5 *1 (-334 *3 *4 *2 *5))
+ (-4 *3 (-335 *4 *2 *5))))
+ ((*1 *2)
+ (|partial| -12 (-4 *1 (-335 *3 *2 *4)) (-4 *3 (-1183))
+ (-4 *4 (-1201 (-400 *2))) (-4 *2 (-1201 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-543 *3)) (-4 *3 (-534))))
((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
- (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-549)) (-5 *1 (-235))))
+ (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)) (-5 *2 (-411 *3))
+ (-5 *1 (-719 *4 *5 *6 *3)) (-4 *3 (-920 *6 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300))
+ (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-411 (-1138 *7)))
+ (-5 *1 (-719 *4 *5 *6 *7)) (-5 *3 (-1138 *7))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-444)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *2 (-411 *1)) (-4 *1 (-920 *3 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-823)) (-4 *5 (-769)) (-4 *6 (-444)) (-5 *2 (-411 *3))
+ (-5 *1 (-950 *4 *5 *6 *3)) (-4 *3 (-920 *6 *5 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-444))
+ (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-411 (-1138 (-400 *7))))
+ (-5 *1 (-1137 *4 *5 *6 *7)) (-5 *3 (-1138 (-400 *7)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-411 *1)) (-4 *1 (-1183))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-5 *2 (-411 *3)) (-5 *1 (-1204 *4 *3))
+ (-4 *3 (-13 (-1201 *4) (-541) (-10 -8 (-15 -3726 ($ $ $)))))))
((*1 *2 *3)
- (-12 (-5 *3 (-621 (-1125))) (-5 *2 (-549)) (-5 *1 (-235)))))
+ (-12 (-5 *3 (-1015 *4 *5)) (-4 *4 (-13 (-821) (-300) (-145) (-993)))
+ (-14 *5 (-621 (-1142)))
+ (-5 *2
+ (-621 (-1112 *4 (-521 (-836 *6)) (-836 *6) (-756 *4 (-836 *6)))))
+ (-5 *1 (-1251 *4 *5 *6)) (-14 *6 (-621 (-1142))))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)))) (-5 *1 (-182 *3 *2))
- (-4 *2 (-13 (-27) (-1165) (-423 (-167 *3))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-541) (-823) (-1009 (-549))))
- (-5 *1 (-182 *4 *2)) (-4 *2 (-13 (-27) (-1165) (-423 (-167 *4))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-1169 *3 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1143))
- (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-1169 *4 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *4))))))
+ (-12 (-5 *2 (-1225 *4)) (-4 *4 (-410 *3)) (-4 *3 (-300))
+ (-4 *3 (-541)) (-5 *1 (-43 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-892)) (-4 *4 (-356)) (-5 *2 (-1225 *1))
+ (-4 *1 (-322 *4))))
+ ((*1 *2) (-12 (-4 *3 (-356)) (-5 *2 (-1225 *1)) (-4 *1 (-322 *3))))
+ ((*1 *2)
+ (-12 (-4 *3 (-170)) (-4 *4 (-1201 *3)) (-5 *2 (-1225 *1))
+ (-4 *1 (-402 *3 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-300)) (-4 *4 (-963 *3)) (-4 *5 (-1201 *4))
+ (-5 *2 (-1225 *6)) (-5 *1 (-406 *3 *4 *5 *6))
+ (-4 *6 (-13 (-402 *4 *5) (-1009 *4)))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-300)) (-4 *4 (-963 *3)) (-4 *5 (-1201 *4))
+ (-5 *2 (-1225 *6)) (-5 *1 (-407 *3 *4 *5 *6 *7))
+ (-4 *6 (-402 *4 *5)) (-14 *7 *2)))
+ ((*1 *2) (-12 (-4 *3 (-170)) (-5 *2 (-1225 *1)) (-4 *1 (-410 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-892)) (-5 *2 (-1225 (-1225 *4))) (-5 *1 (-519 *4))
+ (-4 *4 (-342)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-4 *3 (-1066))
+ (-4 *4 (-1066)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1124)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1230))
+ (-5 *1 (-1039 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1124)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1230))
+ (-5 *1 (-1074 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 *4))
+ (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-549)) (-4 *1 (-627 *3)) (-4 *3 (-1179))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-549)) (-4 *1 (-627 *2)) (-4 *2 (-1179)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+ (|partial| -12 (-5 *1 (-150 *2 *3 *4)) (-14 *2 (-892)) (-4 *3 (-356))
+ (-14 *4 (-964 *2 *3))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *2 (-170)) (-5 *1 (-282 *2 *3 *4 *5 *6 *7))
+ (-4 *3 (-1201 *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 (-360 *2)) (-4 *2 (-170)) (-4 *2 (-541))))
+ ((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-692 *2 *3 *4 *5 *6)) (-4 *2 (-170))
+ (-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 (-695 *2)) (-4 *2 (-356))))
+ ((*1 *1) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356))))
+ ((*1 *1 *1) (|partial| -4 *1 (-699)))
+ ((*1 *1 *1) (|partial| -4 *1 (-703)))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3)))
+ (-5 *1 (-752 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3))))
+ ((*1 *2 *2 *1)
+ (|partial| -12 (-4 *1 (-1035 *3 *2)) (-4 *3 (-13 (-821) (-356)))
+ (-4 *2 (-1201 *3))))
+ ((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018))
+ (-5 *2 (-621 (-621 (-621 (-747))))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1018)) (-5 *2 (-112)) (-5 *1 (-436 *4 *3))
- (-4 *3 (-1202 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-823)) (-5 *2 (-112)))))
-(((*1 *1 *2) (-12 (-5 *2 (-795 *3)) (-4 *3 (-823)) (-5 *1 (-648 *3)))))
+ (-12 (-5 *3 (-621 *2)) (-5 *1 (-478 *2)) (-4 *2 (-1201 (-549))))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-880)) (-5 *2 (-411 (-1138 *1))) (-5 *3 (-1138 *1)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-287 *3))) (-5 *1 (-287 *3)) (-4 *3 (-541))
+ (-4 *3 (-1179)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-897))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-898)))))
+(((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1230)) (-5 *1 (-1104))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-834))) (-5 *2 (-1230)) (-5 *1 (-1104)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018))
+ (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1142)) (-5 *4 (-923 (-549))) (-5 *2 (-323))
+ (-5 *1 (-325))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1142)) (-5 *4 (-1058 (-923 (-549)))) (-5 *2 (-323))
+ (-5 *1 (-325))))
+ ((*1 *1 *2 *2 *2)
+ (-12 (-5 *2 (-747)) (-5 *1 (-651 *3)) (-4 *3 (-1018))
+ (-4 *3 (-1066)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-549)))))
-(((*1 *2 *2 *3 *2) (-12 (-5 *2 (-1125)) (-5 *3 (-549)) (-5 *1 (-235))))
+ (-12 (-4 *4 (-300)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4))
+ (-5 *2
+ (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3)))
+ (-5 *1 (-1090 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6)))))
+(((*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7)
+ (-12 (-5 *4 (-549)) (-5 *5 (-665 (-219)))
+ (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))))
+ (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) (-5 *3 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-726)))))
+(((*1 *2 *2 *3 *2) (-12 (-5 *2 (-1124)) (-5 *3 (-549)) (-5 *1 (-235))))
((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-621 (-1125))) (-5 *3 (-549)) (-5 *4 (-1125))
+ (-12 (-5 *2 (-621 (-1124))) (-5 *3 (-549)) (-5 *4 (-1124))
(-5 *1 (-235))))
((*1 *1 *1) (-5 *1 (-834)))
((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834))))
((*1 *2 *1)
- (-12 (-4 *1 (-1204 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
- (-5 *2 (-112)))))
+ (-12 (-4 *1 (-1203 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018)))))
+(((*1 *2 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-1124)) (-5 *5 (-665 (-219)))
+ (-5 *2 (-1006)) (-5 *1 (-724)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-1086)) (-5 *1 (-109)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-300))
+ (-5 *1 (-887 *3 *4 *5 *2)) (-4 *2 (-920 *5 *3 *4))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1138 *6)) (-4 *6 (-920 *5 *3 *4)) (-4 *3 (-769))
+ (-4 *4 (-823)) (-4 *5 (-300)) (-5 *1 (-887 *3 *4 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *6 *4 *5))
+ (-5 *1 (-887 *4 *5 *6 *2)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-4 *6 (-300)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *3 *2)
- (-12
- (-5 *2
- (-621
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-747)) (|:| |poli| *3)
- (|:| |polj| *3))))
- (-4 *5 (-769)) (-4 *3 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *6 (-823))
- (-5 *1 (-441 *4 *5 *6 *3)))))
-(((*1 *2 *2) (|partial| -12 (-5 *2 (-309 (-219))) (-5 *1 (-260)))))
-(((*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3)
- (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *3 (-549))
- (-5 *2 (-1006)) (-5 *1 (-733)))))
-(((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-429)))))
+ (-12 (-5 *4 (-1142)) (-5 *2 (-1 (-219) (-219))) (-5 *1 (-680 *3))
+ (-4 *3 (-594 (-525)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-1142)) (-5 *2 (-1 (-219) (-219) (-219)))
+ (-5 *1 (-680 *3)) (-4 *3 (-594 (-525))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-1147))) (-5 *1 (-1147))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-1147))) (-5 *1 (-1147)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1142))
+ (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
+ (-5 *1 (-780 *4 *2)) (-4 *2 (-13 (-29 *4) (-1164) (-930))))))
+(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5)) (-4 *5 (-1067)) (-5 *2 (-1 *5 *4))
- (-5 *1 (-659 *4 *5)) (-4 *4 (-1067))))
+ (-12 (-5 *3 (-621 *4)) (-4 *4 (-356)) (-5 *2 (-665 *4))
+ (-5 *1 (-790 *4 *5)) (-4 *5 (-632 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 *5)) (-5 *4 (-747)) (-4 *5 (-356))
+ (-5 *2 (-665 *5)) (-5 *1 (-790 *5 *6)) (-4 *6 (-632 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5)) (-4 *5 (-1066)) (-5 *2 (-1 *5 *4))
+ (-5 *1 (-659 *4 *5)) (-4 *4 (-1066))))
((*1 *2 *2)
(-12 (-4 *3 (-823)) (-5 *1 (-900 *3 *2)) (-4 *2 (-423 *3))))
((*1 *2 *3)
- (-12 (-5 *3 (-1143)) (-5 *2 (-309 (-549))) (-5 *1 (-901))))
+ (-12 (-5 *3 (-1142)) (-5 *2 (-309 (-549))) (-5 *1 (-901))))
((*1 *2 *1)
- (-12 (-4 *1 (-1243 *3 *2)) (-4 *3 (-823)) (-4 *2 (-1018))))
+ (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-823)) (-4 *2 (-1018))))
((*1 *2 *1)
- (-12 (-4 *2 (-1018)) (-5 *1 (-1249 *2 *3)) (-4 *3 (-819)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-1147)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-621 *7)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444))
- (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5))
- (-5 *1 (-959 *3 *4 *5 *6 *7))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-621 *7)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444))
- (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5))
- (-5 *1 (-1074 *3 *4 *5 *6 *7)))))
-(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-675))))
- ((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-675)))))
-(((*1 *2 *2 *2)
- (-12
- (-5 *2
- (-2 (|:| -1949 (-665 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-665 *3))))
- (-4 *3 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $)))))
- (-4 *4 (-1202 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-876 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *2 (-541)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-621 *3)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-410 *4)))))
+ (-12 (-4 *2 (-1018)) (-5 *1 (-1248 *2 *3)) (-4 *3 (-819)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018))
- (-5 *2 (-621 (-621 (-914 *3))))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-621 (-621 (-914 *4)))) (-5 *3 (-112)) (-4 *4 (-1018))
- (-4 *1 (-1101 *4))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-621 (-621 (-914 *3)))) (-4 *3 (-1018))
- (-4 *1 (-1101 *3))))
- ((*1 *1 *1 *2 *3 *3)
- (-12 (-5 *2 (-621 (-621 (-621 *4)))) (-5 *3 (-112))
- (-4 *1 (-1101 *4)) (-4 *4 (-1018))))
- ((*1 *1 *1 *2 *3 *3)
- (-12 (-5 *2 (-621 (-621 (-914 *4)))) (-5 *3 (-112))
- (-4 *1 (-1101 *4)) (-4 *4 (-1018))))
- ((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-621 (-621 (-621 *5)))) (-5 *3 (-621 (-169)))
- (-5 *4 (-169)) (-4 *1 (-1101 *5)) (-4 *5 (-1018))))
- ((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-621 (-621 (-914 *5)))) (-5 *3 (-621 (-169)))
- (-5 *4 (-169)) (-4 *1 (-1101 *5)) (-4 *5 (-1018)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1217 *4)) (-5 *1 (-1219 *4 *2))
- (-4 *4 (-38 (-400 (-549)))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-356) (-821))) (-5 *1 (-179 *3 *2))
- (-4 *2 (-1202 (-167 *3))))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *2 (-1032 *4 *5 *6)) (-5 *1 (-752 *4 *5 *6 *2 *3))
- (-4 *3 (-1038 *4 *5 *6 *2)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1139 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))))
+ (|partial| -12 (-5 *2 (-1028 (-995 *3) (-1138 (-995 *3))))
+ (-5 *1 (-995 *3)) (-4 *3 (-13 (-821) (-356) (-993))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-316 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-130))
+ (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2717 *4))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-2 (|:| -1569 *3) (|:| -3525 *4))))
+ (-5 *1 (-712 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-703))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1203 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768))
+ (-5 *2 (-1122 (-2 (|:| |k| *4) (|:| |c| *3)))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3602 *4)))
- (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9))
- (-4 *9 (-1032 *6 *7 *8)) (-4 *6 (-541)) (-4 *7 (-769))
- (-4 *8 (-823)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2317 (-621 *9))))
- (-5 *3 (-621 *9)) (-4 *1 (-1173 *6 *7 *8 *9))))
+ (-12 (-5 *3 (-549)) (|has| *1 (-6 -4327)) (-4 *1 (-397))
+ (-5 *2 (-892)))))
+(((*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1230)) (-5 *1 (-372))))
+ ((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-372)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-732)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
+ (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-892)) (-5 *2 (-460)) (-5 *1 (-1226)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1066)) (-4 *5 (-1066))
+ (-5 *2 (-1 *5 *4)) (-5 *1 (-659 *4 *5)))))
+(((*1 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-361)) (-4 *2 (-356)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-923 (-549)))) (-5 *1 (-430))))
((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1032 *5 *6 *7))
- (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823))
- (-5 *2 (-2 (|:| |bas| *1) (|:| -2317 (-621 *8))))
- (-5 *3 (-621 *8)) (-4 *1 (-1173 *5 *6 *7 *8)))))
-(((*1 *2 *1 *3 *3 *4)
- (-12 (-5 *3 (-1 (-834) (-834) (-834))) (-5 *4 (-549)) (-5 *2 (-834))
- (-5 *1 (-625 *5 *6 *7)) (-4 *5 (-1067)) (-4 *6 (-23)) (-14 *7 *6)))
- ((*1 *2 *1 *2)
- (-12 (-5 *2 (-834)) (-5 *1 (-827 *3 *4 *5)) (-4 *3 (-1018))
- (-14 *4 (-98 *3)) (-14 *5 (-1 *3 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-834))))
- ((*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-834))))
- ((*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-834))))
- ((*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834))))
- ((*1 *2 *1 *2)
- (-12 (-5 *2 (-834)) (-5 *1 (-1139 *3)) (-4 *3 (-1018)))))
+ (-12 (-5 *3 (-1142)) (-5 *4 (-665 (-219))) (-5 *2 (-1070))
+ (-5 *1 (-736))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1142)) (-5 *4 (-665 (-549))) (-5 *2 (-1070))
+ (-5 *1 (-736)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-534))))
+(((*1 *2)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-5 *2 (-665 (-400 *4))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-621 (-665 (-549))))
- (-5 *1 (-1077)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-1143)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-898)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))
+ (-5 *2 (-372)) (-5 *1 (-260))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1225 (-309 (-219)))) (-5 *2 (-372)) (-5 *1 (-298)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-549)) (-4 *2 (-423 *3)) (-5 *1 (-32 *3 *2))
- (-4 *3 (-1009 *4)) (-4 *3 (-13 (-823) (-541))))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1139 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1165) (-973)))
- (-5 *1 (-174 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
- (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-747)) (-4 *4 (-541)) (-5 *1 (-940 *4 *2))
- (-4 *2 (-1202 *4)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1028 (-995 *4) (-1139 (-995 *4)))) (-5 *3 (-834))
- (-5 *1 (-995 *4)) (-4 *4 (-13 (-821) (-356) (-993))))))
+ (-12 (-5 *3 (-621 *6)) (-5 *4 (-1142)) (-4 *6 (-423 *5))
+ (-4 *5 (-823)) (-5 *2 (-621 (-592 *6))) (-5 *1 (-558 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-400 (-923 *4))) (-5 *3 (-1142))
+ (-4 *4 (-13 (-541) (-1009 (-549)) (-145))) (-5 *1 (-555 *4)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-621 *5)))))
+ (-12 (-4 *1 (-328 *3 *4 *5 *6)) (-4 *3 (-356)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-4 *6 (-335 *3 *4 *5))
+ (-5 *2
+ (-2 (|:| -3713 (-406 *4 (-400 *4) *5 *6)) (|:| |principalPart| *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1201 *5)) (-4 *5 (-356))
+ (-5 *2
+ (-2 (|:| |poly| *6) (|:| -4039 (-400 *6))
+ (|:| |special| (-400 *6))))
+ (-5 *1 (-704 *5 *6)) (-5 *3 (-400 *6))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-356)) (-5 *2 (-621 *3)) (-5 *1 (-867 *3 *4))
+ (-4 *3 (-1201 *4))))
+ ((*1 *2 *3 *4 *4)
+ (|partial| -12 (-5 *4 (-747)) (-4 *5 (-356))
+ (-5 *2 (-2 (|:| -3837 *3) (|:| -3847 *3))) (-5 *1 (-867 *3 *5))
+ (-4 *3 (-1201 *5))))
+ ((*1 *2 *3 *2 *4 *4)
+ (-12 (-5 *2 (-621 *9)) (-5 *3 (-621 *8)) (-5 *4 (-112))
+ (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444))
+ (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1036 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
+ (-12 (-5 *2 (-621 *9)) (-5 *3 (-621 *8)) (-5 *4 (-112))
+ (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444))
+ (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1036 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4)
+ (-12 (-5 *2 (-621 *9)) (-5 *3 (-621 *8)) (-5 *4 (-112))
+ (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1075 *5 *6 *7 *8)) (-4 *5 (-444))
+ (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1111 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
+ (-12 (-5 *2 (-621 *9)) (-5 *3 (-621 *8)) (-5 *4 (-112))
+ (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1075 *5 *6 *7 *8)) (-4 *5 (-444))
+ (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1111 *5 *6 *7 *8 *9)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-309 *3)) (-4 *3 (-13 (-1018) (-823)))
- (-5 *1 (-217 *3 *4)) (-14 *4 (-621 (-1143))))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-1226 (-549))) (-5 *3 (-549)) (-5 *1 (-1077))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-1226 (-549))) (-5 *3 (-621 (-549))) (-5 *4 (-549))
- (-5 *1 (-1077)))))
+ (-12 (-5 *2 (-1 *3 *3 (-549))) (-4 *3 (-1018)) (-5 *1 (-98 *3))))
+ ((*1 *1 *2 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-98 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-98 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-923 (-219))) (-5 *2 (-219)) (-5 *1 (-298)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-621 (-747))) (-5 *3 (-112)) (-5 *1 (-1130 *4 *5))
+ (-14 *4 (-892)) (-4 *5 (-1018)))))
(((*1 *2 *3 *3)
- (-12 (-4 *2 (-541)) (-4 *2 (-444)) (-5 *1 (-940 *2 *3))
- (-4 *3 (-1202 *2)))))
+ (-12 (-5 *2 (-1138 *3)) (-5 *1 (-885 *3)) (-4 *3 (-300)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-1122 *2)) (-4 *2 (-300)) (-5 *1 (-172 *2)))))
+(((*1 *2 *3 *3)
+ (-12 (|has| *2 (-6 (-4338 "*"))) (-4 *5 (-366 *2)) (-4 *6 (-366 *2))
+ (-4 *2 (-1018)) (-5 *1 (-103 *2 *3 *4 *5 *6)) (-4 *3 (-1201 *2))
+ (-4 *4 (-663 *2 *5 *6)))))
+(((*1 *2 *3)
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
+ (|:| |relerr| (-219))))
+ (-5 *2 (-621 (-219))) (-5 *1 (-198)))))
+(((*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-675)) (-5 *1 (-298)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-133)))))
+(((*1 *2 *1)
+ (|partial| -12
+ (-4 *3 (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444)))
+ (-5 *2
+ (-2
+ (|:| |%term|
+ (-2 (|:| |%coef| (-1210 *4 *5 *6))
+ (|:| |%expon| (-312 *4 *5 *6))
+ (|:| |%expTerms|
+ (-621 (-2 (|:| |k| (-400 (-549))) (|:| |c| *4))))))
+ (|:| |%type| (-1124))))
+ (-5 *1 (-1211 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1164) (-423 *3)))
+ (-14 *5 (-1142)) (-14 *6 *4))))
+(((*1 *2 *2) (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *1 (-854)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018))
+ (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))))
(((*1 *1 *1) (-5 *1 (-48)))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-58 *5)) (-4 *5 (-1180))
- (-4 *2 (-1180)) (-5 *1 (-57 *5 *2))))
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-58 *5)) (-4 *5 (-1179))
+ (-4 *2 (-1179)) (-5 *1 (-57 *5 *2))))
((*1 *2 *3 *1 *2 *2)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1067)) (|has| *1 (-6 -4337))
- (-4 *1 (-149 *2)) (-4 *2 (-1180))))
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1066)) (|has| *1 (-6 -4336))
+ (-4 *1 (-149 *2)) (-4 *2 (-1179))))
((*1 *2 *3 *1 *2)
- (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4337)) (-4 *1 (-149 *2))
- (-4 *2 (-1180))))
+ (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4336)) (-4 *1 (-149 *2))
+ (-4 *2 (-1179))))
((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4337)) (-4 *1 (-149 *2))
- (-4 *2 (-1180))))
+ (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4336)) (-4 *1 (-149 *2))
+ (-4 *2 (-1179))))
((*1 *2 *3)
(-12 (-4 *4 (-1018))
- (-5 *2 (-2 (|:| -3028 (-1139 *4)) (|:| |deg| (-892))))
- (-5 *1 (-215 *4 *5)) (-5 *3 (-1139 *4)) (-4 *5 (-13 (-541) (-823)))))
+ (-5 *2 (-2 (|:| -2443 (-1138 *4)) (|:| |deg| (-892))))
+ (-5 *1 (-215 *4 *5)) (-5 *3 (-1138 *4)) (-4 *5 (-13 (-541) (-823)))))
((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-234 *5 *6)) (-14 *5 (-747))
- (-4 *6 (-1180)) (-4 *2 (-1180)) (-5 *1 (-233 *5 *6 *2))))
+ (-4 *6 (-1179)) (-4 *2 (-1179)) (-5 *1 (-233 *5 *6 *2))))
((*1 *1 *2 *3)
(-12 (-4 *4 (-170)) (-5 *1 (-282 *4 *2 *3 *5 *6 *7))
- (-4 *2 (-1202 *4)) (-4 *3 (-23)) (-14 *5 (-1 *2 *2 *3))
+ (-4 *2 (-1201 *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))))
((*1 *1 *1) (-12 (-5 *1 (-309 *2)) (-4 *2 (-541)) (-4 *2 (-823))))
((*1 *1 *1)
- (-12 (-4 *1 (-328 *2 *3 *4 *5)) (-4 *2 (-356)) (-4 *3 (-1202 *2))
- (-4 *4 (-1202 (-400 *3))) (-4 *5 (-335 *2 *3 *4))))
+ (-12 (-4 *1 (-328 *2 *3 *4 *5)) (-4 *2 (-356)) (-4 *3 (-1201 *2))
+ (-4 *4 (-1201 (-400 *3))) (-4 *5 (-335 *2 *3 *4))))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1180)) (-4 *2 (-1180))
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1179)) (-4 *2 (-1179))
(-5 *1 (-364 *5 *4 *2 *6)) (-4 *4 (-366 *5)) (-4 *6 (-366 *2))))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1067)) (-4 *2 (-1067))
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1066)) (-4 *2 (-1066))
(-5 *1 (-416 *5 *4 *2 *6)) (-4 *4 (-418 *5)) (-4 *6 (-418 *2))))
((*1 *1 *1) (-5 *1 (-486)))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-621 *5)) (-4 *5 (-1180))
- (-4 *2 (-1180)) (-5 *1 (-619 *5 *2))))
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-621 *5)) (-4 *5 (-1179))
+ (-4 *2 (-1179)) (-5 *1 (-619 *5 *2))))
((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1018)) (-4 *2 (-1018))
(-4 *6 (-366 *5)) (-4 *7 (-366 *5)) (-4 *8 (-366 *2))
@@ -9857,19 +10177,19 @@
(-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 (-4 *3 (-1018)) (-5 *1 (-689 *3 *2)) (-4 *2 (-1202 *3))))
+ (-12 (-4 *3 (-1018)) (-5 *1 (-689 *3 *2)) (-4 *2 (-1201 *3))))
((*1 *1 *2 *3)
(-12 (-5 *1 (-692 *2 *3 *4 *5 *6)) (-4 *2 (-170)) (-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)
- (|partial| -12 (-5 *2 (-400 *4)) (-4 *4 (-1202 *3)) (-4 *3 (-356))
+ (|partial| -12 (-5 *2 (-400 *4)) (-4 *4 (-1201 *3)) (-4 *3 (-356))
(-4 *3 (-170)) (-4 *1 (-701 *3 *4))))
((*1 *1 *2)
- (-12 (-4 *3 (-170)) (-4 *1 (-701 *3 *2)) (-4 *2 (-1202 *3))))
+ (-12 (-4 *3 (-170)) (-4 *1 (-701 *3 *2)) (-4 *2 (-1201 *3))))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-929 *5)) (-4 *5 (-1180))
- (-4 *2 (-1180)) (-5 *1 (-928 *5 *2))))
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-929 *5)) (-4 *5 (-1179))
+ (-4 *2 (-1179)) (-5 *1 (-928 *5 *2))))
((*1 *1 *2)
(-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823))
(-5 *1 (-1005 *3 *4 *5 *2 *6)) (-4 *2 (-920 *3 *4 *5))
@@ -9881,249 +10201,231 @@
(-5 *1 (-1023 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12))
(-4 *4 (-1021 *5 *6 *7 *8 *9)) (-4 *12 (-1021 *5 *6 *2 *10 *11))))
((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1123 *5)) (-4 *5 (-1180))
- (-4 *2 (-1180)) (-5 *1 (-1121 *5 *2))))
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1122 *5)) (-4 *5 (-1179))
+ (-4 *2 (-1179)) (-5 *1 (-1120 *5 *2))))
((*1 *2 *2 *1 *3 *4)
(-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-112) *2 *2))
- (-4 *1 (-1173 *5 *6 *7 *2)) (-4 *5 (-541)) (-4 *6 (-769))
+ (-4 *1 (-1172 *5 *6 *7 *2)) (-4 *5 (-541)) (-4 *6 (-769))
(-4 *7 (-823)) (-4 *2 (-1032 *5 *6 *7))))
((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1226 *5)) (-4 *5 (-1180))
- (-4 *2 (-1180)) (-5 *1 (-1225 *5 *2)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-1243 *3 *4)) (-4 *3 (-823))
- (-4 *4 (-1018)) (-4 *4 (-170))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018))
- (-4 *3 (-170)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
- (-5 *2 (-112)))))
-(((*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-96)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1202 (-400 *2))) (-5 *2 (-549)) (-5 *1 (-884 *4 *3))
- (-4 *3 (-1202 (-400 *4))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *3 *3 *3 *4 *5 *6)
- (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219)))
- (-5 *5 (-1061 (-219))) (-5 *6 (-621 (-256))) (-5 *2 (-1100 (-219)))
- (-5 *1 (-673)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-133)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1006)))))
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1225 *5)) (-4 *5 (-1179))
+ (-4 *2 (-1179)) (-5 *1 (-1224 *5 *2)))))
+(((*1 *2 *3 *4 *2 *5)
+ (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 (-863 *6)))
+ (-5 *5 (-1 (-860 *6 *8) *8 (-863 *6) (-860 *6 *8))) (-4 *6 (-1066))
+ (-4 *8 (-13 (-1018) (-594 (-863 *6)) (-1009 *7)))
+ (-5 *2 (-860 *6 *8)) (-4 *7 (-13 (-1018) (-823)))
+ (-5 *1 (-912 *6 *7 *8)))))
+(((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-621
+ (-2
+ (|:| -3336
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
+ (|:| |relerr| (-219))))
+ (|:| -1791
+ (-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| (-1122 (-219)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -2811
+ (-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 (-544)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769))
+ (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *1 *2) (-12 (-5 *2 (-309 (-167 (-372)))) (-5 *1 (-323))))
+ ((*1 *1 *2) (-12 (-5 *2 (-309 (-549))) (-5 *1 (-323))))
+ ((*1 *1 *2) (-12 (-5 *2 (-309 (-372))) (-5 *1 (-323))))
+ ((*1 *1 *2) (-12 (-5 *2 (-309 (-670))) (-5 *1 (-323))))
+ ((*1 *1 *2) (-12 (-5 *2 (-309 (-677))) (-5 *1 (-323))))
+ ((*1 *1 *2) (-12 (-5 *2 (-309 (-675))) (-5 *1 (-323))))
+ ((*1 *1) (-5 *1 (-323))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)) (-4 *2 (-444)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-592 *6)) (-4 *6 (-13 (-423 *5) (-27) (-1165)))
+ (|partial| -12 (-5 *4 (-287 (-809 *3)))
+ (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *2 (-809 *3)) (-5 *1 (-614 *5 *3))
+ (-4 *3 (-13 (-27) (-1164) (-423 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-287 (-809 (-923 *5)))) (-4 *5 (-444))
+ (-5 *2 (-809 (-400 (-923 *5)))) (-5 *1 (-615 *5))
+ (-5 *3 (-400 (-923 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-287 (-400 (-923 *5)))) (-5 *3 (-400 (-923 *5)))
+ (-4 *5 (-444)) (-5 *2 (-809 *3)) (-5 *1 (-615 *5)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549))
+ (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) (-5 *2 (-1006))
+ (-5 *1 (-725)))))
+(((*1 *2 *1) (-12 (-4 *1 (-106 *2)) (-4 *2 (-1179)))))
+(((*1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-211)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)) (-4 *2 (-541)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-592 *6)) (-4 *6 (-13 (-423 *5) (-27) (-1164)))
(-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *2 (-1139 (-400 (-1139 *6)))) (-5 *1 (-545 *5 *6 *7))
- (-5 *3 (-1139 *6)) (-4 *7 (-1067))))
+ (-5 *2 (-1138 (-400 (-1138 *6)))) (-5 *1 (-545 *5 *6 *7))
+ (-5 *3 (-1138 *6)) (-4 *7 (-1066))))
((*1 *2 *1)
- (-12 (-4 *2 (-1202 *3)) (-5 *1 (-689 *3 *2)) (-4 *3 (-1018))))
+ (-12 (-4 *2 (-1201 *3)) (-5 *1 (-689 *3 *2)) (-4 *3 (-1018))))
((*1 *2 *1)
- (-12 (-4 *1 (-701 *3 *2)) (-4 *3 (-170)) (-4 *2 (-1202 *3))))
+ (-12 (-4 *1 (-701 *3 *2)) (-4 *3 (-170)) (-4 *2 (-1201 *3))))
((*1 *2 *3 *4 *4 *5 *6 *7 *8)
- (|partial| -12 (-5 *4 (-1139 *11)) (-5 *6 (-621 *10))
+ (|partial| -12 (-5 *4 (-1138 *11)) (-5 *6 (-621 *10))
(-5 *7 (-621 (-747))) (-5 *8 (-621 *11)) (-4 *10 (-823))
(-4 *11 (-300)) (-4 *9 (-769)) (-4 *5 (-920 *11 *9 *10))
- (-5 *2 (-621 (-1139 *5))) (-5 *1 (-719 *9 *10 *11 *5))
- (-5 *3 (-1139 *5))))
+ (-5 *2 (-621 (-1138 *5))) (-5 *1 (-719 *9 *10 *11 *5))
+ (-5 *3 (-1138 *5))))
((*1 *2 *1)
(-12 (-4 *2 (-920 *3 *4 *5)) (-5 *1 (-1005 *3 *4 *5 *2 *6))
(-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-14 *6 (-621 *2)))))
-(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-112))
- (-5 *2 (-1006)) (-5 *1 (-730)))))
-(((*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)) (-4 *2 (-534))))
- ((*1 *1 *1) (-4 *1 (-1027))))
-(((*1 *1 *1 *1) (-5 *1 (-160)))
- ((*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-160)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-567 *2)) (-4 *2 (-13 (-29 *4) (-1165)))
- (-5 *1 (-565 *4 *2))
- (-4 *4 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-567 (-400 (-923 *4))))
- (-4 *4 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549))))
- (-5 *2 (-309 *4)) (-5 *1 (-570 *4)))))
-(((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *4 (-219))
- (-5 *2
- (-2 (|:| |brans| (-621 (-621 (-914 *4))))
- (|:| |xValues| (-1061 *4)) (|:| |yValues| (-1061 *4))))
- (-5 *1 (-151)) (-5 *3 (-621 (-621 (-914 *4)))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
- (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))))
-(((*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1229))))
- ((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1229)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-621 *3)) (-5 *1 (-932 *3)) (-4 *3 (-534)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-732)))))
(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1143)) (-5 *5 (-621 (-400 (-923 *6))))
- (-5 *3 (-400 (-923 *6)))
- (-4 *6 (-13 (-541) (-1009 (-549)) (-145)))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-555 *6)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-486)))))
+ (-12 (-5 *3 (-309 (-219))) (-5 *4 (-1142))
+ (-5 *5 (-1060 (-816 (-219)))) (-5 *2 (-621 (-219))) (-5 *1 (-186))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-309 (-219))) (-5 *4 (-1142))
+ (-5 *5 (-1060 (-816 (-219)))) (-5 *2 (-621 (-219))) (-5 *1 (-293)))))
+(((*1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-479)))))
+(((*1 *2)
+ (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-410 *3)))))
+(((*1 *2 *3 *4 *3 *5 *5 *3 *5 *4)
+ (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *3 (-549))
+ (-5 *2 (-1006)) (-5 *1 (-733)))))
+(((*1 *2 *3 *3 *4 *4)
+ (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *2 (-1006))
+ (-5 *1 (-725)))))
+(((*1 *1 *1 *1 *1) (-5 *1 (-834))) ((*1 *1 *1 *1) (-5 *1 (-834)))
+ ((*1 *1 *1) (-5 *1 (-834))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-724)))))
+(((*1 *2) (-12 (-5 *2 (-621 (-747))) (-5 *1 (-1228))))
+ ((*1 *2 *2) (-12 (-5 *2 (-621 (-747))) (-5 *1 (-1228)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-997 (-816 (-549))))
+ (-5 *3 (-1122 (-2 (|:| |k| (-549)) (|:| |c| *4)))) (-4 *4 (-1018))
+ (-5 *1 (-576 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-5 *1 (-323)))))
(((*1 *1) (-5 *1 (-323))))
+(((*1 *2 *1) (-12 (-5 *2 (-475)) (-5 *1 (-212))))
+ ((*1 *1 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1179))))
+ ((*1 *2 *1) (-12 (-5 *2 (-475)) (-5 *1 (-652))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-892)) (-5 *2 (-1139 *3)) (-5 *1 (-1154 *3))
- (-4 *3 (-356)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-25)) (-4 *3 (-823)) (-5 *2 (-621 *1))
- (-4 *1 (-423 *3))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3))
- (-4 *3 (-1067))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *2 (-621 *1)) (-4 *1 (-920 *3 *4 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018))
- (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-621 *3))
- (-5 *1 (-921 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-356)
- (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $))
- (-15 -1403 (*7 $))))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-164 *3)) (-4 *3 (-170)) (-4 *3 (-534))
- (-5 *2 (-400 (-549)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-400 (-549))) (-5 *1 (-411 *3)) (-4 *3 (-534))
- (-4 *3 (-541))))
- ((*1 *2 *1) (-12 (-4 *1 (-534)) (-5 *2 (-400 (-549)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-773 *3)) (-4 *3 (-170)) (-4 *3 (-534))
- (-5 *2 (-400 (-549)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-400 (-549))) (-5 *1 (-809 *3)) (-4 *3 (-534))
- (-4 *3 (-1067))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-400 (-549))) (-5 *1 (-816 *3)) (-4 *3 (-534))
- (-4 *3 (-1067))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-968 *3)) (-4 *3 (-170)) (-4 *3 (-534))
- (-5 *2 (-400 (-549)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-400 (-549))) (-5 *1 (-979 *3)) (-4 *3 (-1009 *2)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-866))
- (-5 *3
- (-2 (|:| |pde| (-621 (-309 (-219))))
- (|:| |constraints|
- (-621
- (-2 (|:| |start| (-219)) (|:| |finish| (-219))
- (|:| |grid| (-747)) (|:| |boundaryType| (-549))
- (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219))))))
- (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125))
- (|:| |tol| (-219))))
- (-5 *2 (-1006)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1143)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-678 *3 *5 *6 *7))
- (-4 *3 (-594 (-525))) (-4 *5 (-1180)) (-4 *6 (-1180))
- (-4 *7 (-1180))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1143)) (-5 *2 (-1 *6 *5)) (-5 *1 (-683 *3 *5 *6))
- (-4 *3 (-594 (-525))) (-4 *5 (-1180)) (-4 *6 (-1180)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-665 *4)) (-5 *3 (-892)) (|has| *4 (-6 (-4339 "*")))
- (-4 *4 (-1018)) (-5 *1 (-999 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-621 (-665 *4))) (-5 *3 (-892))
- (|has| *4 (-6 (-4339 "*"))) (-4 *4 (-1018)) (-5 *1 (-999 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-554 *3)) (-4 *3 (-1009 (-549)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
- (-5 *2 (-112)))))
+ (-12 (-5 *3 (-892)) (-5 *2 (-1138 *4)) (-5 *1 (-350 *4))
+ (-4 *4 (-342)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *1 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-549)) (-5 *1 (-437 *3)) (-4 *3 (-397)) (-4 *3 (-1018)))))
+ (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-621 *7)) (|:| |badPols| (-621 *7))))
+ (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1225 (-621 *3))) (-4 *4 (-300))
+ (-5 *2 (-621 *3)) (-5 *1 (-447 *4 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-219) (-219) (-219) (-219))) (-5 *1 (-256))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-219) (-219) (-219))) (-5 *1 (-256))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *1 (-256)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2))
+ (-4 *4 (-13 (-823) (-541))))))
(((*1 *2 *1 *2 *3)
- (-12 (-5 *3 (-621 (-1125))) (-5 *2 (-1125)) (-5 *1 (-1227))))
- ((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1227))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1227))))
+ (-12 (-5 *3 (-621 (-1124))) (-5 *2 (-1124)) (-5 *1 (-1226))))
+ ((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1226))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1226))))
((*1 *2 *1 *2 *3)
- (-12 (-5 *3 (-621 (-1125))) (-5 *2 (-1125)) (-5 *1 (-1228))))
- ((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1228))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1228)))))
-(((*1 *1 *1 *1) (-5 *1 (-834))))
+ (-12 (-5 *3 (-621 (-1124))) (-5 *2 (-1124)) (-5 *1 (-1227))))
+ ((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1227))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1227)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3726 *3)))
+ (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-410 *4)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-621 (-621 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
+ (-5 *4 (-621 (-3 (|:| |array| (-621 *3)) (|:| |scalar| (-1142)))))
+ (-5 *6 (-621 (-1142))) (-5 *3 (-1142)) (-5 *2 (-1070))
+ (-5 *1 (-390))))
+ ((*1 *2 *3 *4 *5 *6 *3)
+ (-12 (-5 *5 (-621 (-621 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
+ (-5 *4 (-621 (-3 (|:| |array| (-621 *3)) (|:| |scalar| (-1142)))))
+ (-5 *6 (-621 (-1142))) (-5 *3 (-1142)) (-5 *2 (-1070))
+ (-5 *1 (-390))))
+ ((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *4 (-621 (-1142))) (-5 *5 (-1145)) (-5 *3 (-1142))
+ (-5 *2 (-1070)) (-5 *1 (-390)))))
(((*1 *2)
- (-12 (-4 *1 (-342))
- (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-5 *2 (-665 (-400 *4))))))
+(((*1 *1 *1) (-12 (-4 *1 (-418 *2)) (-4 *2 (-1066)) (-4 *2 (-361)))))
+(((*1 *1) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1164))))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-1142)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-678 *3 *5 *6 *7))
+ (-4 *3 (-594 (-525))) (-4 *5 (-1179)) (-4 *6 (-1179))
+ (-4 *7 (-1179))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1142)) (-5 *2 (-1 *6 *5)) (-5 *1 (-683 *3 *5 *6))
+ (-4 *3 (-594 (-525))) (-4 *5 (-1179)) (-4 *6 (-1179)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-181)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1226 (-665 *4))) (-4 *4 (-170))
- (-5 *2 (-1226 (-665 (-923 *4)))) (-5 *1 (-183 *4)))))
+ (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
+ (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-52))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1139 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *4 *5 *6)) (-4 *4 (-356))
- (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-5 *1 (-442 *4 *5 *6 *2))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-98 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-356))
- (-5 *2
- (-2 (|:| R (-665 *6)) (|:| A (-665 *6)) (|:| |Ainv| (-665 *6))))
- (-5 *1 (-949 *6)) (-5 *3 (-665 *6)))))
-(((*1 *1) (-5 *1 (-544))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1139 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-181)))))
-(((*1 *2 *3 *4 *4 *4 *5 *6 *7)
- (|partial| -12 (-5 *5 (-1143))
- (-5 *6
- (-1
- (-3
- (-2 (|:| |mainpart| *4)
- (|:| |limitedlogs|
- (-621 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
- "failed")
- *4 (-621 *4)))
- (-5 *7
- (-1 (-3 (-2 (|:| -3440 *4) (|:| |coeff| *4)) "failed") *4 *4))
- (-4 *4 (-13 (-1165) (-27) (-423 *8)))
- (-4 *8 (-13 (-444) (-823) (-145) (-1009 *3) (-617 *3)))
- (-5 *3 (-549)) (-5 *2 (-621 *4)) (-5 *1 (-985 *8 *4)))))
-(((*1 *2 *3 *4)
- (-12
- (-5 *3
- (-621
- (-2 (|:| |eqzro| (-621 *8)) (|:| |neqzro| (-621 *8))
- (|:| |wcond| (-621 (-923 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1226 (-400 (-923 *5))))
- (|:| -1949 (-621 (-1226 (-400 (-923 *5))))))))))
- (-5 *4 (-1125)) (-4 *5 (-13 (-300) (-145))) (-4 *8 (-920 *5 *7 *6))
- (-4 *6 (-13 (-823) (-594 (-1143)))) (-4 *7 (-769)) (-5 *2 (-549))
- (-5 *1 (-895 *5 *6 *7 *8)))))
+ (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-169))))))
(((*1 *1 *1 *2)
(-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768))
(-4 *2 (-356))))
((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-219))))
((*1 *1 *1 *1)
- (-1536 (-12 (-5 *1 (-287 *2)) (-4 *2 (-356)) (-4 *2 (-1180)))
- (-12 (-5 *1 (-287 *2)) (-4 *2 (-465)) (-4 *2 (-1180)))))
+ (-1536 (-12 (-5 *1 (-287 *2)) (-4 *2 (-356)) (-4 *2 (-1179)))
+ (-12 (-5 *1 (-287 *2)) (-4 *2 (-465)) (-4 *2 (-1179)))))
((*1 *1 *1 *1) (-4 *1 (-356)))
((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-372))))
((*1 *1 *2 *2)
- (-12 (-5 *2 (-1092 *3 (-592 *1))) (-4 *3 (-541)) (-4 *3 (-823))
+ (-12 (-5 *2 (-1091 *3 (-592 *1))) (-4 *3 (-541)) (-4 *3 (-823))
(-4 *1 (-423 *3))))
((*1 *1 *1 *1) (-4 *1 (-465)))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1226 *3)) (-4 *3 (-342)) (-5 *1 (-519 *3))))
+ (-12 (-5 *2 (-1225 *3)) (-4 *3 (-342)) (-5 *1 (-519 *3))))
((*1 *1 *1 *1) (-5 *1 (-525)))
((*1 *1 *2 *3)
(-12 (-4 *4 (-170)) (-5 *1 (-599 *2 *4 *3)) (-4 *2 (-38 *4))
@@ -10144,59 +10446,76 @@
((*1 *1 *1 *1) (-5 *1 (-834)))
((*1 *1 *1 *1)
(|partial| -12 (-5 *1 (-837 *2 *3 *4 *5)) (-4 *2 (-356))
- (-4 *2 (-1018)) (-14 *3 (-621 (-1143))) (-14 *4 (-621 (-747)))
+ (-4 *2 (-1018)) (-14 *3 (-621 (-1142))) (-14 *4 (-621 (-747)))
(-14 *5 (-747))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1067))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1066))))
((*1 *1 *2 *2) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541))))
((*1 *1 *1 *2)
(-12 (-4 *1 (-1021 *3 *4 *2 *5 *6)) (-4 *2 (-1018))
(-4 *5 (-232 *4 *2)) (-4 *6 (-232 *3 *2)) (-4 *2 (-356))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1233 *2)) (-4 *2 (-356))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-356))))
((*1 *1 *1 *1)
(|partial| -12 (-4 *2 (-356)) (-4 *2 (-1018)) (-4 *3 (-823))
(-4 *4 (-769)) (-14 *6 (-621 *3))
- (-5 *1 (-1238 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-920 *2 *4 *3))
+ (-5 *1 (-1237 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-920 *2 *4 *3))
(-14 *7 (-621 (-747))) (-14 *8 (-747))))
((*1 *1 *1 *2)
- (-12 (-5 *1 (-1249 *2 *3)) (-4 *2 (-356)) (-4 *2 (-1018))
+ (-12 (-5 *1 (-1248 *2 *3)) (-4 *2 (-356)) (-4 *2 (-1018))
(-4 *3 (-819)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-798)))))
-(((*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))))
-(((*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-1180)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-541) (-823) (-1009 (-549))))
- (-4 *5 (-423 *4)) (-5 *2 (-411 (-1139 (-400 (-549)))))
- (-5 *1 (-428 *4 *5 *3)) (-4 *3 (-1202 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-947 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *5 (-1032 *3 *4 *2)) (-4 *2 (-823))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *2 (-823)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-796)) (-14 *5 (-1142)) (-5 *2 (-621 (-1198 *5 *4)))
+ (-5 *1 (-1080 *4 *5)) (-5 *3 (-1198 *5 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1201 *3)) (-5 *1 (-392 *3 *2))
+ (-4 *3 (-13 (-356) (-145))))))
(((*1 *2 *3)
- (-12 (-5 *2 (-167 *4)) (-5 *1 (-179 *4 *3))
- (-4 *4 (-13 (-356) (-821))) (-4 *3 (-1202 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-621 *7)) (-5 *3 (-549)) (-4 *7 (-920 *4 *5 *6))
- (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-5 *1 (-441 *4 *5 *6 *7)))))
+ (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2))
+ (-4 *4 (-13 (-823) (-541))))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-914 *4)) (-4 *4 (-1018)) (-5 *1 (-1130 *3 *4))
+ (-14 *3 (-892)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
+ (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4))))
+ (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *5 (-361))
+ (-5 *2 (-747)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-356)) (-5 *2 (-621 *3)) (-5 *1 (-916 *4 *3))
- (-4 *3 (-1202 *4)))))
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1073 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-1142)) (-5 *1 (-592 *3)) (-4 *3 (-823)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1006)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-473 *4 *5)) (-14 *4 (-621 (-1143))) (-4 *5 (-1018))
- (-5 *2 (-241 *4 *5)) (-5 *1 (-915 *4 *5)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-173)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+ (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2))
+ (-4 *4 (-13 (-823) (-541))))))
(((*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)
(-12 (-5 *1 (-208 *2))
(-4 *2
(-13 (-823)
- (-10 -8 (-15 -3341 ((-1125) $ (-1143))) (-15 -2699 ((-1231) $))
- (-15 -2684 ((-1231) $)))))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-21)) (-4 *2 (-1180))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-21)) (-4 *2 (-1180))))
+ (-10 -8 (-15 -3339 ((-1124) $ (-1142))) (-15 -2697 ((-1230) $))
+ (-15 -1674 ((-1230) $)))))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-21)) (-4 *2 (-1179))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-21)) (-4 *2 (-1179))))
((*1 *1 *1 *1)
(-12 (-4 *1 (-462 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23))))
((*1 *1 *1) (-12 (-4 *1 (-462 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23))))
@@ -10208,73 +10527,73 @@
(-4 *4 (-366 *2))))
((*1 *1 *1) (-5 *1 (-834))) ((*1 *1 *1 *1) (-5 *1 (-834)))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1176))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-21))))
- ((*1 *1 *1) (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-21)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3727 *3)))
- (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-1227))))
- ((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1139 (-400 (-549)))) (-5 *1 (-913)) (-5 *3 (-549)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1139 *6)) (-5 *3 (-549)) (-4 *6 (-300)) (-4 *4 (-769))
- (-4 *5 (-823)) (-5 *1 (-719 *4 *5 *6 *7)) (-4 *7 (-920 *6 *4 *5)))))
-(((*1 *2)
- (-12 (-4 *3 (-1018)) (-5 *2 (-929 (-689 *3 *4))) (-5 *1 (-689 *3 *4))
- (-4 *4 (-1202 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-1182)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1108 *2 *3)) (-4 *2 (-13 (-1067) (-34)))
- (-4 *3 (-13 (-1067) (-34))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-31))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-49))))
- ((*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-132))))
- ((*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-137))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-152))))
- ((*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-159))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-212))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-652))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-990))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1033))))
- ((*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-1063)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-747)) (-5 *3 (-914 *5)) (-4 *5 (-1018))
- (-5 *1 (-1131 *4 *5)) (-14 *4 (-892))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-621 (-747))) (-5 *3 (-747)) (-5 *1 (-1131 *4 *5))
- (-14 *4 (-892)) (-4 *5 (-1018))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-621 (-747))) (-5 *3 (-914 *5)) (-4 *5 (-1018))
- (-5 *1 (-1131 *4 *5)) (-14 *4 (-892)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-734)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3)
- (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219))
- (-5 *2 (-1006)) (-5 *1 (-729)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1175))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-21))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-21)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-1124)) (-5 *4 (-1086)) (-5 *2 (-112)) (-5 *1 (-797)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-1226))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-145))
+ (-4 *3 (-300)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *1 (-948 *3 *4 *5 *6)))))
+(((*1 *2 *3) (-12 (-5 *3 (-621 (-549))) (-5 *2 (-747)) (-5 *1 (-571)))))
+(((*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-823)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-31))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1147)) (-5 *1 (-49))))
+ ((*1 *2 *1) (-12 (-5 *2 (-621 (-1101))) (-5 *1 (-132))))
+ ((*1 *2 *1) (-12 (-5 *2 (-621 (-1101))) (-5 *1 (-137))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-152))))
+ ((*1 *2 *1) (-12 (-5 *2 (-621 (-1101))) (-5 *1 (-159))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-212))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-652))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-990))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-1033))))
+ ((*1 *2 *1) (-12 (-5 *2 (-621 (-1101))) (-5 *1 (-1062)))))
+(((*1 *2 *3 *2)
+ (-12
+ (-5 *2
+ (-621
+ (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-747)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *3 (-769)) (-4 *6 (-920 *4 *3 *5)) (-4 *4 (-444)) (-4 *5 (-823))
+ (-5 *1 (-441 *4 *3 *5 *6)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-1142)))))
+(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-1124)) (-5 *3 (-799)) (-5 *1 (-798)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1217 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1142))
+ (-14 *4 *2))))
+(((*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-1122 *3))) (-5 *2 (-1122 *3)) (-5 *1 (-1126 *3))
+ (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-270 *3 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1142))
+ (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-270 *4 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *4))))))
(((*1 *1 *1 *1) (-4 *1 (-25))) ((*1 *1 *1 *1) (-5 *1 (-155)))
((*1 *1 *1 *1)
(-12 (-5 *1 (-208 *2))
(-4 *2
(-13 (-823)
- (-10 -8 (-15 -3341 ((-1125) $ (-1143))) (-15 -2699 ((-1231) $))
- (-15 -2684 ((-1231) $)))))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-25)) (-4 *2 (-1180))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-25)) (-4 *2 (-1180))))
+ (-10 -8 (-15 -3339 ((-1124) $ (-1142))) (-15 -2697 ((-1230) $))
+ (-15 -1674 ((-1230) $)))))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-25)) (-4 *2 (-1179))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-25)) (-4 *2 (-1179))))
((*1 *1 *2 *1)
- (-12 (-4 *1 (-316 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-130))))
+ (-12 (-4 *1 (-316 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-130))))
((*1 *1 *2 *1)
(-12 (-4 *3 (-13 (-356) (-145))) (-5 *1 (-392 *3 *2))
- (-4 *2 (-1202 *3))))
+ (-4 *2 (-1201 *3))))
((*1 *1 *1 *1)
(-12 (-4 *1 (-462 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23))))
((*1 *1 *1 *1)
@@ -10285,1361 +10604,1039 @@
(-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2))
(-4 *4 (-366 *2))))
((*1 *1 *1 *1) (-5 *1 (-834)))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1067))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1066))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1176))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-25)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-549))) (-5 *4 (-876 (-549)))
- (-5 *2 (-665 (-549))) (-5 *1 (-571))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-621 (-665 (-549))))
- (-5 *1 (-571))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-549))) (-5 *4 (-621 (-876 (-549))))
- (-5 *2 (-621 (-665 (-549)))) (-5 *1 (-571)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1217 *4))
- (-4 *4 (-38 (-400 (-549))))
- (-5 *2 (-1 (-1123 *4) (-1123 *4) (-1123 *4))) (-5 *1 (-1219 *4 *5)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1226 (-1226 (-549)))) (-5 *3 (-892)) (-5 *1 (-458)))))
-(((*1 *2)
- (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-410 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-95))))
- ((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-108))))
- ((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-114))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1175))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-25)))))
+(((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-568 *3)) (-4 *3 (-534)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549))
+ (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421))))
+ (-5 *2 (-1006)) (-5 *1 (-725)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-538)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *1 (-102 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-95))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-108))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-114))))
((*1 *2 *1)
- (-12 (-4 *1 (-357 *2 *3)) (-4 *3 (-1067)) (-4 *2 (-1067))))
- ((*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-1125))))
- ((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-431 *3)) (-14 *3 *2)))
+ (-12 (-4 *1 (-357 *2 *3)) (-4 *3 (-1066)) (-4 *2 (-1066))))
+ ((*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-1124))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-431 *3)) (-14 *3 *2)))
((*1 *2 *1) (-12 (-5 *2 (-497)) (-5 *1 (-475))))
- ((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-592 *3)) (-4 *3 (-823))))
- ((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-936))))
- ((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-1041 *3)) (-14 *3 *2)))
- ((*1 *2 *1) (-12 (-5 *2 (-497)) (-5 *1 (-1082))))
- ((*1 *1 *1) (-5 *1 (-1143))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-621 (-549))) (-5 *3 (-112)) (-5 *1 (-1077)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-592 *3)) (-4 *3 (-823))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-936))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-1041 *3)) (-14 *3 *2)))
+ ((*1 *2 *1) (-12 (-5 *2 (-497)) (-5 *1 (-1081))))
+ ((*1 *1 *1) (-5 *1 (-1142))))
+(((*1 *2 *3 *1)
+ (-12 (|has| *1 (-6 -4336)) (-4 *1 (-584 *4 *3)) (-4 *4 (-1066))
+ (-4 *3 (-1179)) (-4 *3 (-1066)) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1124)) (-5 *1 (-687)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-724)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-665 *5)) (-5 *4 (-1226 *5)) (-4 *5 (-356))
- (-5 *2 (-112)) (-5 *1 (-643 *5))))
+ (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *9)) (-4 *8 (-1032 *5 *6 *7))
+ (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769))
+ (-4 *7 (-823)) (-5 *2 (-747)) (-5 *1 (-1036 *5 *6 *7 *8 *9))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-356)) (-4 *6 (-13 (-366 *5) (-10 -7 (-6 -4338))))
- (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4338)))) (-5 *2 (-112))
- (-5 *1 (-644 *5 *6 *4 *3)) (-4 *3 (-663 *5 *6 *4)))))
-(((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-1139 (-923 *4))) (-5 *1 (-409 *3 *4))
- (-4 *3 (-410 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-4 *3 (-356))
- (-5 *2 (-1139 (-923 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-1139 (-400 (-923 *3)))) (-5 *1 (-445 *3 *4 *5 *6))
- (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-621 (-1139 *4))) (-5 *3 (-1139 *4))
- (-4 *4 (-880)) (-5 *1 (-639 *4)))))
-(((*1 *2)
- (-12 (-4 *3 (-541)) (-5 *2 (-621 (-665 *3))) (-5 *1 (-43 *3 *4))
- (-4 *4 (-410 *3)))))
+ (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *9)) (-4 *8 (-1032 *5 *6 *7))
+ (-4 *9 (-1075 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769))
+ (-4 *7 (-823)) (-5 *2 (-747)) (-5 *1 (-1111 *5 *6 *7 *8 *9)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 *6)) (-4 *5 (-1067))
- (-4 *6 (-1180)) (-5 *2 (-1 *6 *5)) (-5 *1 (-618 *5 *6))))
+ (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 *6)) (-4 *5 (-1066))
+ (-4 *6 (-1179)) (-5 *2 (-1 *6 *5)) (-5 *1 (-618 *5 *6))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 *2)) (-4 *5 (-1067))
- (-4 *2 (-1180)) (-5 *1 (-618 *5 *2))))
+ (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 *2)) (-4 *5 (-1066))
+ (-4 *2 (-1179)) (-5 *1 (-618 *5 *2))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-621 *6)) (-5 *4 (-621 *5)) (-4 *6 (-1067))
- (-4 *5 (-1180)) (-5 *2 (-1 *5 *6)) (-5 *1 (-618 *6 *5))))
+ (-12 (-5 *3 (-621 *6)) (-5 *4 (-621 *5)) (-4 *6 (-1066))
+ (-4 *5 (-1179)) (-5 *2 (-1 *5 *6)) (-5 *1 (-618 *6 *5))))
((*1 *2 *3 *4 *5 *2)
- (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 *2)) (-4 *5 (-1067))
- (-4 *2 (-1180)) (-5 *1 (-618 *5 *2))))
+ (-12 (-5 *3 (-621 *5)) (-5 *4 (-621 *2)) (-4 *5 (-1066))
+ (-4 *2 (-1179)) (-5 *1 (-618 *5 *2))))
((*1 *2 *3 *4 *2)
(-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-621 *5)) (-5 *4 (-621 *6))
- (-4 *5 (-1067)) (-4 *6 (-1180)) (-5 *1 (-618 *5 *6))))
+ (-4 *5 (-1066)) (-4 *6 (-1179)) (-5 *1 (-618 *5 *6))))
((*1 *2 *3 *4 *5 *6)
(-12 (-5 *3 (-621 *5)) (-5 *4 (-621 *2)) (-5 *6 (-1 *2 *5))
- (-4 *5 (-1067)) (-4 *2 (-1180)) (-5 *1 (-618 *5 *2))))
- ((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1111)) (-5 *3 (-142)) (-5 *2 (-747)))))
-(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459))))
- ((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-459))))
- ((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
- (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-823)) (-5 *2 (-112))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
- (-5 *1 (-1074 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-621 *5)) (-5 *4 (-549)) (-4 *5 (-821)) (-4 *5 (-356))
- (-5 *2 (-747)) (-5 *1 (-916 *5 *6)) (-4 *6 (-1202 *5)))))
+ (-4 *5 (-1066)) (-4 *2 (-1179)) (-5 *1 (-618 *5 *2))))
+ ((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1110)) (-5 *3 (-142)) (-5 *2 (-747)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
+ (-5 *2
+ (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549))
+ (|:| |success| (-112))))
+ (-5 *1 (-765)) (-5 *5 (-549)))))
+(((*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1228))))
+ ((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1228)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-592 (-48)))) (-5 *1 (-48))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-592 (-48))) (-5 *1 (-48))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1138 (-48))) (-5 *3 (-621 (-592 (-48)))) (-5 *1 (-48))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1138 (-48))) (-5 *3 (-592 (-48))) (-5 *1 (-48))))
+ ((*1 *2 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-13 (-356) (-821))) (-5 *1 (-179 *2 *3))
+ (-4 *3 (-1201 (-167 *2)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-892)) (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361))))
+ ((*1 *2 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-356))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-363 *2 *3)) (-4 *3 (-1201 *2)) (-4 *2 (-170))))
+ ((*1 *2 *1)
+ (-12 (-4 *4 (-1201 *2)) (-4 *2 (-963 *3)) (-5 *1 (-406 *3 *2 *4 *5))
+ (-4 *3 (-300)) (-4 *5 (-13 (-402 *2 *4) (-1009 *2)))))
+ ((*1 *2 *1)
+ (-12 (-4 *4 (-1201 *2)) (-4 *2 (-963 *3))
+ (-5 *1 (-407 *3 *2 *4 *5 *6)) (-4 *3 (-300)) (-4 *5 (-402 *2 *4))
+ (-14 *6 (-1225 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-892)) (-4 *5 (-1018))
+ (-4 *2 (-13 (-397) (-1009 *5) (-356) (-1164) (-277)))
+ (-5 *1 (-435 *5 *3 *2)) (-4 *3 (-1201 *5))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-592 (-486)))) (-5 *1 (-486))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-592 (-486))) (-5 *1 (-486))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1138 (-486))) (-5 *3 (-621 (-592 (-486))))
+ (-5 *1 (-486))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1138 (-486))) (-5 *3 (-592 (-486))) (-5 *1 (-486))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1225 *4)) (-5 *3 (-892)) (-4 *4 (-342))
+ (-5 *1 (-519 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-444)) (-4 *5 (-701 *4 *2)) (-4 *2 (-1201 *4))
+ (-5 *1 (-751 *4 *2 *5 *3)) (-4 *3 (-1201 *5))))
+ ((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170))))
+ ((*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170))))
+ ((*1 *1 *1) (-4 *1 (-1027))))
+(((*1 *1 *1) (-4 *1 (-1027))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-621 (-1060 (-372)))) (-5 *3 (-621 (-256)))
+ (-5 *1 (-254))))
+ ((*1 *1 *2) (-12 (-5 *2 (-621 (-1060 (-372)))) (-5 *1 (-256))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1060 (-372)))) (-5 *1 (-460))))
+ ((*1 *2 *1) (-12 (-5 *2 (-621 (-1060 (-372)))) (-5 *1 (-460)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-747)) (-5 *1 (-568 *2)) (-4 *2 (-534))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-2 (|:| -1863 *3) (|:| -1714 (-747)))) (-5 *1 (-568 *3))
+ (-4 *3 (-534)))))
+(((*1 *2)
+ (-12 (-4 *4 (-356)) (-5 *2 (-747)) (-5 *1 (-321 *3 *4))
+ (-4 *3 (-322 *4))))
+ ((*1 *2) (-12 (-4 *1 (-1244 *3)) (-4 *3 (-356)) (-5 *2 (-747)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-665 (-400 (-923 (-549)))))
+ (-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| (-1122 (-219)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -2811
+ (-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 (-1006)) (-5 *1 (-298)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123)))
+ ((*1 *1 *1 *1) (-5 *1 (-1086))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1006)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))))
+(((*1 *2 *1) (-12 (-5 *2 (-834)) (-5 *1 (-52)))))
+(((*1 *2 *1)
+ (-12
(-5 *2
(-621
- (-2 (|:| |radval| (-309 (-549))) (|:| |radmult| (-549))
- (|:| |radvect| (-621 (-665 (-309 (-549))))))))
- (-5 *1 (-1002)))))
-(((*1 *2 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-390)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3))
- (-4 *3 (-13 (-356) (-1165) (-973))))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-1018)))))
+ (-621
+ (-3 (|:| -2479 (-1142))
+ (|:| -1961 (-621 (-3 (|:| S (-1142)) (|:| P (-923 (-549))))))))))
+ (-5 *1 (-1146)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-164 *3)) (-4 *3 (-170)) (-4 *3 (-1027)) (-4 *3 (-1165))
- (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))))
+ (-12 (-5 *2 (-172 (-400 (-549)))) (-5 *1 (-117 *3)) (-14 *3 (-549))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *3 (-1122 *2)) (-4 *2 (-300)) (-5 *1 (-172 *2))))
+ ((*1 *1 *2) (-12 (-5 *2 (-400 *3)) (-4 *3 (-300)) (-5 *1 (-172 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-172 (-549))) (-5 *1 (-742 *3)) (-4 *3 (-397))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-172 (-400 (-549)))) (-5 *1 (-842 *3)) (-14 *3 (-549))))
+ ((*1 *2 *1)
+ (-12 (-14 *3 (-549)) (-5 *2 (-172 (-400 (-549))))
+ (-5 *1 (-843 *3 *4)) (-4 *4 (-840 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1139 (-549))) (-5 *2 (-549)) (-5 *1 (-913)))))
-(((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-350 *3)) (-4 *3 (-342)))))
-(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123)))
- ((*1 *1 *1 *1) (-5 *1 (-1087))))
-(((*1 *2 *3 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-725)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-863 *4)) (-4 *4 (-1067)) (-4 *2 (-1067))
- (-5 *1 (-860 *4 *2)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
+ (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-923 (-167 *4))) (-4 *4 (-170))
+ (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-923 (-167 *5))) (-5 *4 (-892)) (-4 *5 (-170))
+ (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-923 *4)) (-4 *4 (-1018))
+ (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-923 *5)) (-5 *4 (-892)) (-4 *5 (-1018))
+ (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541))
+ (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-892)) (-4 *5 (-541))
+ (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-400 (-923 (-167 *4)))) (-4 *4 (-541))
+ (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-400 (-923 (-167 *5)))) (-5 *4 (-892))
+ (-4 *5 (-541)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372)))
+ (-5 *1 (-761 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-309 *4)) (-4 *4 (-541)) (-4 *4 (-823))
+ (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-309 *5)) (-5 *4 (-892)) (-4 *5 (-541))
+ (-4 *5 (-823)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372)))
+ (-5 *1 (-761 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-309 (-167 *4))) (-4 *4 (-541)) (-4 *4 (-823))
+ (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-309 (-167 *5))) (-5 *4 (-892)) (-4 *5 (-541))
+ (-4 *5 (-823)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372)))
+ (-5 *1 (-761 *5)))))
+(((*1 *2 *1)
+ (|partial| -12
+ (-4 *3 (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444)))
+ (-5 *2 (-816 *4)) (-5 *1 (-306 *3 *4 *5 *6))
+ (-4 *4 (-13 (-27) (-1164) (-423 *3))) (-14 *5 (-1142))
+ (-14 *6 *4)))
+ ((*1 *2 *1)
+ (|partial| -12
+ (-4 *3 (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444)))
+ (-5 *2 (-816 *4)) (-5 *1 (-1211 *3 *4 *5 *6))
+ (-4 *4 (-13 (-27) (-1164) (-423 *3))) (-14 *5 (-1142))
+ (-14 *6 *4))))
(((*1 *1 *2)
- (-12 (-5 *2 (-406 *3 *4 *5 *6)) (-4 *6 (-1009 *4)) (-4 *3 (-300))
- (-4 *4 (-963 *3)) (-4 *5 (-1202 *4)) (-4 *6 (-402 *4 *5))
- (-14 *7 (-1226 *6)) (-5 *1 (-407 *3 *4 *5 *6 *7))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1226 *6)) (-4 *6 (-402 *4 *5)) (-4 *4 (-963 *3))
- (-4 *5 (-1202 *4)) (-4 *3 (-300)) (-5 *1 (-407 *3 *4 *5 *6 *7))
- (-14 *7 *2))))
-(((*1 *1) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1165))))))
-(((*1 *2 *3 *4 *5 *6 *7 *7 *8)
- (-12
- (-5 *3
- (-2 (|:| |det| *12) (|:| |rows| (-621 (-549)))
- (|:| |cols| (-621 (-549)))))
- (-5 *4 (-665 *12)) (-5 *5 (-621 (-400 (-923 *9))))
- (-5 *6 (-621 (-621 *12))) (-5 *7 (-747)) (-5 *8 (-549))
- (-4 *9 (-13 (-300) (-145))) (-4 *12 (-920 *9 *11 *10))
- (-4 *10 (-13 (-823) (-594 (-1143)))) (-4 *11 (-769))
- (-5 *2
- (-2 (|:| |eqzro| (-621 *12)) (|:| |neqzro| (-621 *12))
- (|:| |wcond| (-621 (-923 *9)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1226 (-400 (-923 *9))))
- (|:| -1949 (-621 (-1226 (-400 (-923 *9)))))))))
- (-5 *1 (-895 *9 *10 *11 *12)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
- (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
- (-5 *1 (-1074 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1125) (-750))) (-5 *1 (-114)))))
-(((*1 *2 *2 *2 *3 *3 *4 *2 *5)
- (|partial| -12 (-5 *3 (-592 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1143))) (-5 *5 (-1139 *2))
- (-4 *2 (-13 (-423 *6) (-27) (-1165)))
- (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *1 (-545 *6 *2 *7)) (-4 *7 (-1067))))
- ((*1 *2 *2 *2 *3 *3 *4 *3 *2 *5)
- (|partial| -12 (-5 *3 (-592 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1143)))
- (-5 *5 (-400 (-1139 *2))) (-4 *2 (-13 (-423 *6) (-27) (-1165)))
- (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *1 (-545 *6 *2 *7)) (-4 *7 (-1067)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1226 *1)) (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184))
- (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))))))
-(((*1 *2 *3 *3 *3 *4 *5)
- (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1202 *6))
- (-4 *6 (-13 (-356) (-145) (-1009 *4))) (-5 *4 (-549))
- (-5 *2
- (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112))))
- (|:| -2652
- (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3)
- (|:| |beta| *3)))))
- (-5 *1 (-986 *6 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-621 (-665 *4))) (-5 *2 (-665 *4)) (-4 *4 (-1018))
- (-5 *1 (-1000 *4)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *1 (-848 *2)) (-4 *2 (-1180))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *1 (-850 *2)) (-4 *2 (-1180))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-5 *1 (-853 *2)) (-4 *2 (-1180)))))
+ (-12 (-5 *2 (-665 *4)) (-4 *4 (-1018)) (-5 *1 (-1108 *3 *4))
+ (-14 *3 (-747)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-891)) (-5 *2 (-2 (|:| -1569 (-621 *1)) (|:| -4247 *1)))
+ (-5 *3 (-621 *1)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-823)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-834))))
-(((*1 *2)
- (-12 (-5 *2 (-929 (-1087))) (-5 *1 (-336 *3 *4)) (-14 *3 (-892))
- (-14 *4 (-892))))
- ((*1 *2)
- (-12 (-5 *2 (-929 (-1087))) (-5 *1 (-337 *3 *4)) (-4 *3 (-342))
- (-14 *4 (-1139 *3))))
- ((*1 *2)
- (-12 (-5 *2 (-929 (-1087))) (-5 *1 (-338 *3 *4)) (-4 *3 (-342))
- (-14 *4 (-892)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-112))
- (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1981 *4))))
- (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-601 *4 *5))
- (-5 *3
- (-1 (-2 (|:| |ans| *4) (|:| -3848 *4) (|:| |sol?| (-112)))
- (-549) *4))
- (-4 *4 (-356)) (-4 *5 (-1202 *4)) (-5 *1 (-559 *4 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228))))
- ((*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228)))))
-(((*1 *2 *1) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-1139 *3)))))
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1142)) (-5 *4 (-923 (-549))) (-5 *2 (-323))
+ (-5 *1 (-325)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112))
+ (-5 *1 (-32 *4 *5)) (-4 *5 (-423 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112))
+ (-5 *1 (-156 *4 *5)) (-4 *5 (-423 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112))
+ (-5 *1 (-269 *4 *5)) (-4 *5 (-13 (-423 *4) (-973)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-294 *4)) (-4 *4 (-295))))
+ ((*1 *2 *3) (-12 (-4 *1 (-295)) (-5 *3 (-114)) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *5 (-823)) (-5 *2 (-112))
+ (-5 *1 (-422 *4 *5)) (-4 *4 (-423 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112))
+ (-5 *1 (-424 *4 *5)) (-4 *5 (-423 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112))
+ (-5 *1 (-608 *4 *5)) (-4 *5 (-13 (-423 *4) (-973) (-1164))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1225 *4)) (-4 *4 (-342)) (-5 *2 (-1138 *4))
+ (-5 *1 (-519 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-621 (-621 *8))) (-5 *3 (-621 *8))
+ (-4 *8 (-920 *5 *7 *6)) (-4 *5 (-13 (-300) (-145)))
+ (-4 *6 (-13 (-823) (-594 (-1142)))) (-4 *7 (-769)) (-5 *2 (-112))
+ (-5 *1 (-895 *5 *6 *7 *8)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-541)) (-5 *2 (-112)))))
(((*1 *1 *1 *1) (-4 *1 (-938))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-156 *4 *2))
- (-4 *2 (-423 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1059 *2)) (-4 *2 (-423 *4)) (-4 *4 (-13 (-823) (-541)))
- (-5 *1 (-156 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1059 *1)) (-4 *1 (-158))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-158)) (-5 *2 (-1143)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1231)) (-5 *1 (-977)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-372)) (-5 *3 (-621 (-256))) (-5 *1 (-254))))
+ ((*1 *1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-256)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
+(((*1 *2 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-731)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-823)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-834)))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-875 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-729)))))
-(((*1 *1)
- (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1067)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-875 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9)
+ (-12 (-5 *4 (-549)) (-5 *5 (-1124)) (-5 *6 (-665 (-219)))
+ (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))))
+ (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))))
+ (-5 *9 (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))
+ (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-592 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *4)))
+ (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-270 *4 *2)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-1202 *3)) (-4 *3 (-1018)))))
+ (|partial| -12 (-5 *2 (-747)) (-4 *1 (-1201 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541))
+ (-4 *6 (-769)) (-4 *7 (-823))
+ (-5 *2 (-2 (|:| |goodPols| (-621 *8)) (|:| |badPols| (-621 *8))))
+ (-5 *1 (-948 *5 *6 *7 *8)) (-5 *4 (-621 *8)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))))
(((*1 *1 *1) (-4 *1 (-534))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-747)) (-4 *1 (-1202 *4)) (-4 *4 (-1018))
- (-5 *2 (-1226 *4)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-1108 *2 *3)) (-4 *2 (-13 (-1067) (-34)))
- (-4 *3 (-13 (-1067) (-34))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459))))
+ ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))))
+(((*1 *2 *3 *4 *3 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-733)))))
(((*1 *2 *1)
- (|partial| -12
- (-4 *3 (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444)))
- (-5 *2
- (-2
- (|:| |%term|
- (-2 (|:| |%coef| (-1211 *4 *5 *6))
- (|:| |%expon| (-312 *4 *5 *6))
- (|:| |%expTerms|
- (-621 (-2 (|:| |k| (-400 (-549))) (|:| |c| *4))))))
- (|:| |%type| (-1125))))
- (-5 *1 (-1212 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1165) (-423 *3)))
- (-14 *5 (-1143)) (-14 *6 *4))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-549)) (|has| *1 (-6 -4328)) (-4 *1 (-397))
- (-5 *2 (-892)))))
-(((*1 *2 *1 *2 *3)
- (|partial| -12 (-5 *2 (-1125)) (-5 *3 (-549)) (-5 *1 (-1030)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-590 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-5 *2 (-112)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
+ (-12 (-4 *3 (-356)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4)))
+ (-5 *2 (-1225 *6)) (-5 *1 (-329 *3 *4 *5 *6))
+ (-4 *6 (-335 *3 *4 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-823)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-834))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *3 (-621 (-256))) (-5 *1 (-254))))
- ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-256))))
- ((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459))))
- ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))))
-(((*1 *2 *2 *2)
- (-12
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-629 (-400 *6))) (-5 *4 (-400 *6)) (-4 *6 (-1201 *5))
+ (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
(-5 *2
- (-621
- (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-747)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *4 (-769)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-444)) (-4 *5 (-823))
- (-5 *1 (-441 *3 *4 *5 *6)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-235))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-1125))) (-5 *2 (-1231)) (-5 *1 (-235)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1015 *4 *5)) (-4 *4 (-13 (-821) (-300) (-145) (-993)))
- (-14 *5 (-621 (-1143))) (-5 *2 (-621 (-621 (-995 (-400 *4)))))
- (-5 *1 (-1252 *4 *5 *6)) (-14 *6 (-621 (-1143)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-821) (-300) (-145) (-993)))
- (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1252 *5 *6 *7))
- (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143)))))
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2619 (-621 *4))))
+ (-5 *1 (-786 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-821) (-300) (-145) (-993)))
- (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1252 *5 *6 *7))
- (-14 *6 (-621 (-1143))) (-14 *7 (-621 (-1143)))))
+ (-12 (-5 *3 (-629 (-400 *6))) (-4 *6 (-1201 *5))
+ (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-5 *2 (-2 (|:| -2619 (-621 (-400 *6))) (|:| -3697 (-665 *5))))
+ (-5 *1 (-786 *5 *6)) (-5 *4 (-621 (-400 *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-630 *6 (-400 *6))) (-5 *4 (-400 *6)) (-4 *6 (-1201 *5))
+ (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2619 (-621 *4))))
+ (-5 *1 (-786 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-630 *6 (-400 *6))) (-4 *6 (-1201 *5))
+ (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-5 *2 (-2 (|:| -2619 (-621 (-400 *6))) (|:| -3697 (-665 *5))))
+ (-5 *1 (-786 *5 *6)) (-5 *4 (-621 (-400 *6))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-235))))
((*1 *2 *3)
- (-12 (-5 *3 (-621 (-923 *4)))
- (-4 *4 (-13 (-821) (-300) (-145) (-993)))
- (-5 *2 (-621 (-621 (-995 (-400 *4))))) (-5 *1 (-1252 *4 *5 *6))
- (-14 *5 (-621 (-1143))) (-14 *6 (-621 (-1143))))))
+ (-12 (-5 *3 (-621 (-1124))) (-5 *2 (-1230)) (-5 *1 (-235)))))
(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-834)))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-621 (-665 *6))) (-5 *4 (-112)) (-5 *5 (-549))
- (-5 *2 (-665 *6)) (-5 *1 (-1000 *6)) (-4 *6 (-356)) (-4 *6 (-1018))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 (-665 *4))) (-5 *2 (-665 *4)) (-5 *1 (-1000 *4))
- (-4 *4 (-356)) (-4 *4 (-1018))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-621 (-665 *5))) (-5 *4 (-549)) (-5 *2 (-665 *5))
- (-5 *1 (-1000 *5)) (-4 *5 (-356)) (-4 *5 (-1018)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-800)) (-5 *3 (-621 (-1142))) (-5 *1 (-801)))))
+(((*1 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-300)) (-5 *1 (-676 *3)))))
+(((*1 *1 *1 *1) (|partial| -4 *1 (-130))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1225 *6)) (-5 *4 (-1225 (-549))) (-5 *5 (-549))
+ (-4 *6 (-1066)) (-5 *2 (-1 *6)) (-5 *1 (-988 *6)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-342)) (-4 *5 (-322 *4)) (-4 *6 (-1202 *5))
- (-5 *2 (-621 *3)) (-5 *1 (-753 *4 *5 *6 *3 *7)) (-4 *3 (-1202 *6))
- (-14 *7 (-892)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-112)) (-5 *5 (-665 (-219)))
- (-5 *2 (-1006)) (-5 *1 (-732)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))))
+ (-12 (-4 *4 (-541)) (-5 *2 (-621 *3)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-410 *4)))))
(((*1 *2 *2)
(-12 (-4 *3 (-823)) (-5 *1 (-900 *3 *2)) (-4 *2 (-423 *3))))
((*1 *2 *3)
- (-12 (-5 *3 (-1143)) (-5 *2 (-309 (-549))) (-5 *1 (-901)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5))
- (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *1 (-1239 *3 *4 *5 *6))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-621 *8)) (-5 *3 (-1 (-112) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541))
- (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1239 *5 *6 *7 *8)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-411 (-1139 *1))) (-5 *1 (-309 *4)) (-5 *3 (-1139 *1))
- (-4 *4 (-444)) (-4 *4 (-541)) (-4 *4 (-823))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-880)) (-5 *2 (-411 (-1139 *1))) (-5 *3 (-1139 *1)))))
+ (-12 (-5 *3 (-1142)) (-5 *2 (-309 (-549))) (-5 *1 (-901)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1018)) (-5 *1 (-1197 *3 *2)) (-4 *2 (-1201 *3)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-747)) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5))
+ (-4 *4 (-366 *3)) (-4 *5 (-366 *3))))
+ ((*1 *1 *2)
+ (-12 (-4 *2 (-1018)) (-4 *1 (-1089 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2))
+ (-4 *5 (-232 *3 *2)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
+ (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
+ (-5 *1 (-1073 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-823)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-834)))
- ((*1 *2 *1 *1) (-12 (-4 *1 (-874 *3)) (-4 *3 (-1067)) (-5 *2 (-112))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-875 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1226 *5)) (-4 *5 (-768)) (-5 *2 (-112))
- (-5 *1 (-818 *4 *5)) (-14 *4 (-747)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
- (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
- (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
- (|:| |abserr| (-219)) (|:| |relerr| (-219))))
- (-5 *2 (-372)) (-5 *1 (-199)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-541)) (-5 *1 (-41 *3 *2))
- (-4 *2
- (-13 (-356) (-295)
- (-10 -8 (-15 -1394 ((-1092 *3 (-592 $)) $))
- (-15 -1403 ((-1092 *3 (-592 $)) $))
- (-15 -3846 ($ (-1092 *3 (-592 $))))))))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1067))
- (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3))))
- (-5 *2 (-621 (-1143))) (-5 *1 (-1042 *3 *4 *5))
- (-4 *5 (-13 (-423 *4) (-857 *3) (-594 (-863 *3)))))))
-(((*1 *1) (-4 *1 (-342)))
+ ((*1 *2 *1 *1) (-12 (-4 *1 (-874 *3)) (-4 *3 (-1066)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-875 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546))))
((*1 *2 *3)
- (-12 (-5 *3 (-621 *5)) (-4 *5 (-423 *4))
- (-4 *4 (-13 (-541) (-823) (-145)))
- (-5 *2
- (-2 (|:| |primelt| *5) (|:| |poly| (-621 (-1139 *5)))
- (|:| |prim| (-1139 *5))))
- (-5 *1 (-425 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-541) (-823) (-145)))
- (-5 *2
- (-2 (|:| |primelt| *3) (|:| |pol1| (-1139 *3))
- (|:| |pol2| (-1139 *3)) (|:| |prim| (-1139 *3))))
- (-5 *1 (-425 *4 *3)) (-4 *3 (-27)) (-4 *3 (-423 *4))))
- ((*1 *2 *3 *4 *3 *4)
- (-12 (-5 *3 (-923 *5)) (-5 *4 (-1143)) (-4 *5 (-13 (-356) (-145)))
- (-5 *2
- (-2 (|:| |coef1| (-549)) (|:| |coef2| (-549))
- (|:| |prim| (-1139 *5))))
- (-5 *1 (-931 *5))))
+ (-12 (-5 *2 (-1138 (-400 (-549)))) (-5 *1 (-913)) (-5 *3 (-549)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-14 *5 (-621 (-1142))) (-4 *2 (-170))
+ (-4 *4 (-232 (-3774 *5) (-747)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -3494 *3) (|:| -1714 *4))
+ (-2 (|:| -3494 *3) (|:| -1714 *4))))
+ (-5 *1 (-453 *5 *2 *3 *4 *6 *7)) (-4 *3 (-823))
+ (-4 *7 (-920 *2 *4 (-836 *5))))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1138 *1)) (-5 *3 (-1142)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1138 *1)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-923 *1)) (-4 *1 (-27))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1142)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-823) (-541)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-823) (-541)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-621 (-1143)))
- (-4 *5 (-13 (-356) (-145)))
- (-5 *2
- (-2 (|:| -1570 (-621 (-549))) (|:| |poly| (-621 (-1139 *5)))
- (|:| |prim| (-1139 *5))))
- (-5 *1 (-931 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-621 (-923 *6))) (-5 *4 (-621 (-1143))) (-5 *5 (-1143))
- (-4 *6 (-13 (-356) (-145)))
+ (-12 (-5 *3 (-1138 *2)) (-5 *4 (-1142)) (-4 *2 (-423 *5))
+ (-5 *1 (-32 *5 *2)) (-4 *5 (-13 (-823) (-541)))))
+ ((*1 *1 *2 *3)
+ (|partial| -12 (-5 *2 (-1138 *1)) (-5 *3 (-892)) (-4 *1 (-983))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-1138 *1)) (-5 *3 (-892)) (-5 *4 (-834))
+ (-4 *1 (-983))))
+ ((*1 *1 *2 *3)
+ (|partial| -12 (-5 *3 (-892)) (-4 *4 (-13 (-821) (-356)))
+ (-4 *1 (-1035 *4 *2)) (-4 *2 (-1201 *4)))))
+(((*1 *1 *1) (-4 *1 (-607)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973) (-1164))))))
+(((*1 *2 *3 *4 *5 *6 *7 *7 *8)
+ (-12
+ (-5 *3
+ (-2 (|:| |det| *12) (|:| |rows| (-621 (-549)))
+ (|:| |cols| (-621 (-549)))))
+ (-5 *4 (-665 *12)) (-5 *5 (-621 (-400 (-923 *9))))
+ (-5 *6 (-621 (-621 *12))) (-5 *7 (-747)) (-5 *8 (-549))
+ (-4 *9 (-13 (-300) (-145))) (-4 *12 (-920 *9 *11 *10))
+ (-4 *10 (-13 (-823) (-594 (-1142)))) (-4 *11 (-769))
(-5 *2
- (-2 (|:| -1570 (-621 (-549))) (|:| |poly| (-621 (-1139 *6)))
- (|:| |prim| (-1139 *6))))
- (-5 *1 (-931 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *5)) (-5 *4 (-892)) (-4 *5 (-823))
- (-5 *2 (-621 (-648 *5))) (-5 *1 (-648 *5)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-914 (-219))) (-5 *2 (-1231)) (-5 *1 (-460)))))
-(((*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-543 *3)) (-4 *3 (-534))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)) (-5 *2 (-411 *3))
- (-5 *1 (-719 *4 *5 *6 *3)) (-4 *3 (-920 *6 *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300))
- (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-411 (-1139 *7)))
- (-5 *1 (-719 *4 *5 *6 *7)) (-5 *3 (-1139 *7))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-444)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *2 (-411 *1)) (-4 *1 (-920 *3 *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-823)) (-4 *5 (-769)) (-4 *6 (-444)) (-5 *2 (-411 *3))
- (-5 *1 (-950 *4 *5 *6 *3)) (-4 *3 (-920 *6 *5 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-444))
- (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-411 (-1139 (-400 *7))))
- (-5 *1 (-1138 *4 *5 *6 *7)) (-5 *3 (-1139 (-400 *7)))))
- ((*1 *2 *1) (-12 (-5 *2 (-411 *1)) (-4 *1 (-1184))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-411 *3)) (-5 *1 (-1205 *4 *3))
- (-4 *3 (-13 (-1202 *4) (-541) (-10 -8 (-15 -3727 ($ $ $)))))))
+ (-2 (|:| |eqzro| (-621 *12)) (|:| |neqzro| (-621 *12))
+ (|:| |wcond| (-621 (-923 *9)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1225 (-400 (-923 *9))))
+ (|:| -2619 (-621 (-1225 (-400 (-923 *9)))))))))
+ (-5 *1 (-895 *9 *10 *11 *12)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-880)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-411 (-1138 *7)))
+ (-5 *1 (-877 *4 *5 *6 *7)) (-5 *3 (-1138 *7))))
((*1 *2 *3)
- (-12 (-5 *3 (-1015 *4 *5)) (-4 *4 (-13 (-821) (-300) (-145) (-993)))
- (-14 *5 (-621 (-1143)))
+ (-12 (-4 *4 (-880)) (-4 *5 (-1201 *4)) (-5 *2 (-411 (-1138 *5)))
+ (-5 *1 (-878 *4 *5)) (-5 *3 (-1138 *5)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-665 *4)) (-5 *3 (-892)) (|has| *4 (-6 (-4338 "*")))
+ (-4 *4 (-1018)) (-5 *1 (-999 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-621 (-665 *4))) (-5 *3 (-892))
+ (|has| *4 (-6 (-4338 "*"))) (-4 *4 (-1018)) (-5 *1 (-999 *4)))))
+(((*1 *2 *3) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-438)) (-5 *3 (-549)))))
+(((*1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1066)))))
+(((*1 *2 *2)
+ (-12
(-5 *2
- (-621 (-1113 *4 (-521 (-836 *6)) (-836 *6) (-756 *4 (-836 *6)))))
- (-5 *1 (-1252 *4 *5 *6)) (-14 *6 (-621 (-1143))))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-621 (-621 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
- (-5 *4 (-621 (-3 (|:| |array| (-621 *3)) (|:| |scalar| (-1143)))))
- (-5 *6 (-621 (-1143))) (-5 *3 (-1143)) (-5 *2 (-1071))
- (-5 *1 (-390))))
- ((*1 *2 *3 *4 *5 *6 *3)
- (-12 (-5 *5 (-621 (-621 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
- (-5 *4 (-621 (-3 (|:| |array| (-621 *3)) (|:| |scalar| (-1143)))))
- (-5 *6 (-621 (-1143))) (-5 *3 (-1143)) (-5 *2 (-1071))
- (-5 *1 (-390))))
- ((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *4 (-621 (-1143))) (-5 *5 (-1146)) (-5 *3 (-1143))
- (-5 *2 (-1071)) (-5 *1 (-390)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-800)) (-5 *3 (-621 (-1143))) (-5 *1 (-801)))))
-(((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-320 *3)) (-4 *3 (-1180))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-747)) (-5 *1 (-507 *3 *4)) (-4 *3 (-1180))
- (-14 *4 (-549)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1030)) (-5 *3 (-1125)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
- (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-1143))) (-5 *2 (-1231)) (-5 *1 (-1146))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 (-1143))) (-5 *3 (-1143)) (-5 *2 (-1231))
- (-5 *1 (-1146))))
- ((*1 *2 *3 *4 *1)
- (-12 (-5 *4 (-621 (-1143))) (-5 *3 (-1143)) (-5 *2 (-1231))
- (-5 *1 (-1146)))))
-(((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *4 (-1 (-3 (-549) "failed") *5)) (-4 *5 (-1018))
- (-5 *2 (-549)) (-5 *1 (-532 *5 *3)) (-4 *3 (-1202 *5))))
- ((*1 *2 *3 *4 *2 *5)
- (|partial| -12 (-5 *5 (-1 (-3 (-549) "failed") *4)) (-4 *4 (-1018))
- (-5 *2 (-549)) (-5 *1 (-532 *4 *3)) (-4 *3 (-1202 *4))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1 (-3 (-549) "failed") *4)) (-4 *4 (-1018))
- (-5 *2 (-549)) (-5 *1 (-532 *4 *3)) (-4 *3 (-1202 *4)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1226 (-1143))) (-5 *3 (-1226 (-445 *4 *5 *6 *7)))
- (-5 *1 (-445 *4 *5 *6 *7)) (-4 *4 (-170)) (-14 *5 (-892))
- (-14 *6 (-621 (-1143))) (-14 *7 (-1226 (-665 *4)))))
+ (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219)))
+ (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219))))
+ (|:| |ub| (-621 (-816 (-219))))))
+ (-5 *1 (-260)))))
+(((*1 *1 *1) (-12 (-5 *1 (-411 *2)) (-4 *2 (-541)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1225 *3)) (-4 *3 (-356)) (-4 *1 (-322 *3))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-1226 (-445 *4 *5 *6 *7)))
- (-5 *1 (-445 *4 *5 *6 *7)) (-4 *4 (-170)) (-14 *5 (-892))
- (-14 *6 (-621 *2)) (-14 *7 (-1226 (-665 *4)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1226 (-445 *3 *4 *5 *6))) (-5 *1 (-445 *3 *4 *5 *6))
- (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143)))
- (-14 *6 (-1226 (-665 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1226 (-1143))) (-5 *1 (-445 *3 *4 *5 *6))
- (-4 *3 (-170)) (-14 *4 (-892)) (-14 *5 (-621 (-1143)))
- (-14 *6 (-1226 (-665 *3)))))
+ (-12 (-5 *2 (-1225 *3)) (-4 *3 (-1201 *4)) (-4 *4 (-1183))
+ (-4 *1 (-335 *4 *3 *5)) (-4 *5 (-1201 (-400 *3)))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1225 *4)) (-5 *3 (-1225 *1)) (-4 *4 (-170))
+ (-4 *1 (-360 *4))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1225 *4)) (-5 *3 (-1225 *1)) (-4 *4 (-170))
+ (-4 *1 (-363 *4 *5)) (-4 *5 (-1201 *4))))
((*1 *1 *2)
- (-12 (-5 *2 (-1143)) (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-170))
- (-14 *4 (-892)) (-14 *5 (-621 *2)) (-14 *6 (-1226 (-665 *3)))))
- ((*1 *1)
- (-12 (-5 *1 (-445 *2 *3 *4 *5)) (-4 *2 (-170)) (-14 *3 (-892))
- (-14 *4 (-621 (-1143))) (-14 *5 (-1226 (-665 *2))))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-747)) (-5 *2 (-400 (-549))) (-5 *1 (-219))))
+ (-12 (-5 *2 (-1225 *3)) (-4 *3 (-170)) (-4 *1 (-402 *3 *4))
+ (-4 *4 (-1201 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1225 *3)) (-4 *3 (-170)) (-4 *1 (-410 *3)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1076)))))
+(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1138 (-400 (-549)))) (-5 *1 (-913)) (-5 *3 (-549)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-58 *6)) (-4 *6 (-1179))
+ (-4 *5 (-1179)) (-5 *2 (-58 *5)) (-5 *1 (-57 *6 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-234 *6 *7)) (-14 *6 (-747))
+ (-4 *7 (-1179)) (-4 *5 (-1179)) (-5 *2 (-234 *6 *5))
+ (-5 *1 (-233 *6 *7 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1179)) (-4 *5 (-1179))
+ (-4 *2 (-366 *5)) (-5 *1 (-364 *6 *4 *5 *2)) (-4 *4 (-366 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1066)) (-4 *5 (-1066))
+ (-4 *2 (-418 *5)) (-5 *1 (-416 *6 *4 *5 *2)) (-4 *4 (-418 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-621 *6)) (-4 *6 (-1179))
+ (-4 *5 (-1179)) (-5 *2 (-621 *5)) (-5 *1 (-619 *6 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-929 *6)) (-4 *6 (-1179))
+ (-4 *5 (-1179)) (-5 *2 (-929 *5)) (-5 *1 (-928 *6 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1122 *6)) (-4 *6 (-1179))
+ (-4 *3 (-1179)) (-5 *2 (-1122 *3)) (-5 *1 (-1120 *6 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1225 *6)) (-4 *6 (-1179))
+ (-4 *5 (-1179)) (-5 *2 (-1225 *5)) (-5 *1 (-1224 *6 *5)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-621 *6)) (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5))
+ (-4 *3 (-541)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *1) (-12 (-4 *1 (-319 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768))))
+ ((*1 *2 *1) (-12 (-4 *1 (-685 *3)) (-4 *3 (-1018)) (-5 *2 (-747))))
+ ((*1 *2 *1) (-12 (-4 *1 (-825 *3)) (-4 *3 (-1018)) (-5 *2 (-747))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-747)) (-5 *2 (-400 (-549))) (-5 *1 (-219))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-747)) (-5 *2 (-400 (-549))) (-5 *1 (-372))))
+ (-12 (-5 *3 (-621 *6)) (-4 *1 (-920 *4 *5 *6)) (-4 *4 (-1018))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 (-747)))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-747)) (-5 *2 (-400 (-549))) (-5 *1 (-372)))))
-(((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
- (-4 *3 (-360 *4))))
- ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
-(((*1 *1 *2 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1180))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1125)) (-5 *1 (-960))))
+ (-12 (-4 *1 (-920 *4 *5 *3)) (-4 *4 (-1018)) (-4 *5 (-769))
+ (-4 *3 (-823)) (-5 *2 (-747)))))
+(((*1 *1 *2 *3 *3 *3 *4)
+ (-12 (-4 *4 (-356)) (-4 *3 (-1201 *4)) (-4 *5 (-1201 (-400 *3)))
+ (-4 *1 (-328 *4 *3 *5 *2)) (-4 *2 (-335 *4 *3 *5))))
+ ((*1 *1 *2 *2 *3)
+ (-12 (-5 *3 (-549)) (-4 *2 (-356)) (-4 *4 (-1201 *2))
+ (-4 *5 (-1201 (-400 *4))) (-4 *1 (-328 *2 *4 *5 *6))
+ (-4 *6 (-335 *2 *4 *5))))
+ ((*1 *1 *2 *2)
+ (-12 (-4 *2 (-356)) (-4 *3 (-1201 *2)) (-4 *4 (-1201 (-400 *3)))
+ (-4 *1 (-328 *2 *3 *4 *5)) (-4 *5 (-335 *2 *3 *4))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-356)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4)))
+ (-4 *1 (-328 *3 *4 *5 *2)) (-4 *2 (-335 *3 *4 *5))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-406 *4 (-400 *4) *5 *6)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-4 *6 (-335 *3 *4 *5)) (-4 *3 (-356))
+ (-4 *1 (-328 *3 *4 *5 *6)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1122 *4)) (-5 *3 (-549)) (-4 *4 (-1018))
+ (-5 *1 (-1126 *4))))
+ ((*1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-549)) (-5 *1 (-1217 *3 *4 *5)) (-4 *3 (-1018))
+ (-14 *4 (-1142)) (-14 *5 *3))))
+(((*1 *1 *2 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1179))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1124)) (-5 *1 (-960))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-1061 *4)) (-4 *4 (-1180))
- (-5 *1 (-1059 *4)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-3 (-400 (-923 *6)) (-1132 (-1143) (-923 *6))))
- (-5 *5 (-747)) (-4 *6 (-444)) (-5 *2 (-621 (-665 (-400 (-923 *6)))))
- (-5 *1 (-285 *6)) (-5 *4 (-665 (-400 (-923 *6))))))
- ((*1 *2 *3 *4)
- (-12
- (-5 *3
- (-2 (|:| |eigval| (-3 (-400 (-923 *5)) (-1132 (-1143) (-923 *5))))
- (|:| |eigmult| (-747)) (|:| |eigvec| (-621 *4))))
- (-4 *5 (-444)) (-5 *2 (-621 (-665 (-400 (-923 *5)))))
- (-5 *1 (-285 *5)) (-5 *4 (-665 (-400 (-923 *5)))))))
+ (-12 (-5 *2 (-1142)) (-5 *3 (-1060 *4)) (-4 *4 (-1179))
+ (-5 *1 (-1058 *4)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-101)) (-5 *2 (-112))))
- ((*1 *1 *2 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1180))))
+ ((*1 *1 *2 *2) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1179))))
((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427))))
((*1 *1 *1 *1) (-5 *1 (-834)))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-997 *3)) (-4 *3 (-1180)))))
-(((*1 *2 *2 *3 *3)
- (|partial| -12 (-5 *3 (-1143))
- (-4 *4 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-560 *4 *2))
- (-4 *2 (-13 (-1165) (-930) (-1106) (-29 *4))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-145))
- (-4 *3 (-300)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *1 (-948 *3 *4 *5 *6)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-287 *2)) (-4 *2 (-703)) (-4 *2 (-1180)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-747)) (-4 *4 (-342)) (-5 *1 (-210 *4 *2))
- (-4 *2 (-1202 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *6))
- (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-621 (-876 *3))) (-5 *1 (-875 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-929 *3)) (-5 *1 (-1130 *4 *3))
- (-4 *3 (-1202 *4)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-541))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-997 *3)) (-4 *3 (-1179)))))
+(((*1 *2 *3 *4 *5 *5 *4 *6)
+ (-12 (-5 *5 (-592 *4)) (-5 *6 (-1138 *4))
+ (-4 *4 (-13 (-423 *7) (-27) (-1164)))
+ (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
(-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))))
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2619 (-621 *4))))
+ (-5 *1 (-545 *7 *4 *3)) (-4 *3 (-632 *4)) (-4 *3 (-1066))))
+ ((*1 *2 *3 *4 *5 *5 *5 *4 *6)
+ (-12 (-5 *5 (-592 *4)) (-5 *6 (-400 (-1138 *4)))
+ (-4 *4 (-13 (-423 *7) (-27) (-1164)))
+ (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2619 (-621 *4))))
+ (-5 *1 (-545 *7 *4 *3)) (-4 *3 (-632 *4)) (-4 *3 (-1066)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4)
- (-241 *4 (-400 (-549)))))
- (-14 *4 (-621 (-1143))) (-14 *5 (-747)) (-5 *2 (-112))
- (-5 *1 (-496 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-444)) (-4 *3 (-823)) (-4 *3 (-1009 (-549)))
- (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-423 *3))
- (-4 *2
- (-13 (-356) (-295)
- (-10 -8 (-15 -1394 ((-1092 *3 (-592 $)) $))
- (-15 -1403 ((-1092 *3 (-592 $)) $))
- (-15 -3846 ($ (-1092 *3 (-592 $))))))))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-947 *4 *5 *3 *6)) (-4 *4 (-1018)) (-4 *5 (-769))
- (-4 *3 (-823)) (-4 *6 (-1032 *4 *5 *3)) (-5 *2 (-112)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-411 *2)) (-4 *2 (-300)) (-5 *1 (-885 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1143))
- (-4 *5 (-13 (-300) (-145))) (-5 *2 (-52)) (-5 *1 (-886 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-411 (-923 *6))) (-5 *5 (-1143)) (-5 *3 (-923 *6))
- (-4 *6 (-13 (-300) (-145))) (-5 *2 (-52)) (-5 *1 (-886 *6)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *2 *1)
- (-12 (-14 *3 (-621 (-1143))) (-4 *4 (-170))
- (-4 *5 (-232 (-3775 *3) (-747)))
- (-14 *6
- (-1 (-112) (-2 (|:| -3493 *2) (|:| -3731 *5))
- (-2 (|:| -3493 *2) (|:| -3731 *5))))
- (-4 *2 (-823)) (-5 *1 (-453 *3 *4 *2 *5 *6 *7))
- (-4 *7 (-920 *4 *5 (-836 *3))))))
+ (-12 (-5 *3 (-549)) (|has| *1 (-6 -4327)) (-4 *1 (-397))
+ (-5 *2 (-892)))))
+(((*1 *1 *1) (-4 *1 (-171)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-357 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-834))))
+ ((*1 *1 *1) (-5 *1 (-834))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1225 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-356))
+ (-4 *1 (-701 *5 *6)) (-4 *5 (-170)) (-4 *6 (-1201 *5))
+ (-5 *2 (-665 *5)))))
+(((*1 *1 *1) (-12 (-5 *1 (-937 *2)) (-4 *2 (-938)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-320 *3)) (-4 *3 (-1179))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-507 *3 *4)) (-4 *3 (-1179))
+ (-14 *4 (-549)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-665 *8)) (-5 *4 (-747)) (-4 *8 (-920 *5 *7 *6))
+ (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1142))))
+ (-4 *7 (-769))
+ (-5 *2
+ (-621
+ (-2 (|:| |det| *8) (|:| |rows| (-621 (-549)))
+ (|:| |cols| (-621 (-549))))))
+ (-5 *1 (-895 *5 *6 *7 *8)))))
+(((*1 *2 *1) (-12 (-4 *1 (-500 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-823)))))
+(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-112))
+ (-5 *2 (-1006)) (-5 *1 (-730)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
+ (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-77 FUNCTN))))
+ (-5 *2 (-1006)) (-5 *1 (-725)))))
+(((*1 *2 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
+ (-5 *1 (-1094 *3 *2)) (-4 *3 (-1201 *2)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-724)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-621 *3)) (-4 *3 (-920 *5 *6 *7)) (-4 *5 (-444))
+ (-4 *6 (-769)) (-4 *7 (-823))
+ (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5)))
+ (-5 *1 (-441 *5 *6 *7 *3)))))
+(((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-747)) (-5 *1 (-163 *3 *4))
+ (-4 *3 (-164 *4))))
+ ((*1 *2)
+ (-12 (-14 *4 *2) (-4 *5 (-1179)) (-5 *2 (-747))
+ (-5 *1 (-231 *3 *4 *5)) (-4 *3 (-232 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *4 (-823)) (-5 *2 (-747)) (-5 *1 (-422 *3 *4))
+ (-4 *3 (-423 *4))))
+ ((*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-533 *3)) (-4 *3 (-534))))
+ ((*1 *2) (-12 (-4 *1 (-740)) (-5 *2 (-747))))
+ ((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-747)) (-5 *1 (-772 *3 *4))
+ (-4 *3 (-773 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-962 *3 *4))
+ (-4 *3 (-963 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-747)) (-5 *1 (-967 *3 *4))
+ (-4 *3 (-968 *4))))
+ ((*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-982 *3)) (-4 *3 (-983))))
+ ((*1 *2) (-12 (-4 *1 (-1018)) (-5 *2 (-747))))
+ ((*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-1026 *3)) (-4 *3 (-1027)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-1124))
+ (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-81 PDEF))))
+ (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-82 BNDY)))) (-5 *2 (-1006))
+ (-5 *1 (-727)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-539 *3)) (-4 *3 (-13 (-397) (-1165))) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-821)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1035 *4 *3)) (-4 *4 (-13 (-821) (-356)))
- (-4 *3 (-1202 *4)) (-5 *2 (-112)))))
-(((*1 *2 *1) (|partial| -12 (-4 *1 (-983)) (-5 *2 (-834)))))
-(((*1 *2 *1) (-12 (-5 *2 (-800)) (-5 *1 (-801)))))
+ (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
+ (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1248 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-819)))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3))))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-1142))) (-5 *2 (-1230)) (-5 *1 (-1181))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-621 (-1142))) (-5 *2 (-1230)) (-5 *1 (-1181)))))
(((*1 *2 *3 *3)
- (-12 (-4 *2 (-541)) (-5 *1 (-940 *2 *3)) (-4 *3 (-1202 *2)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-52))) (-5 *1 (-863 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1065 *3)) (-4 *3 (-1067)) (-5 *2 (-112)))))
-(((*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-155)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-356)) (-4 *3 (-1018))
- (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4248 *1)))
- (-4 *1 (-825 *3)))))
+ (-12 (-5 *3 (-621 *2)) (-5 *1 (-177 *2)) (-4 *2 (-300))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *3 (-621 (-621 *4))) (-5 *2 (-621 *4)) (-4 *4 (-300))
+ (-5 *1 (-177 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-621 *8))
+ (-5 *4
+ (-621
+ (-2 (|:| -2619 (-665 *7)) (|:| |basisDen| *7)
+ (|:| |basisInv| (-665 *7)))))
+ (-5 *5 (-747)) (-4 *8 (-1201 *7)) (-4 *7 (-1201 *6)) (-4 *6 (-342))
+ (-5 *2
+ (-2 (|:| -2619 (-665 *7)) (|:| |basisDen| *7)
+ (|:| |basisInv| (-665 *7))))
+ (-5 *1 (-489 *6 *7 *8))))
+ ((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1143))
+ (-12 (-5 *3 (-1142))
(-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *4 *5))
- (-4 *5 (-13 (-27) (-1165) (-423 *4)))))
+ (-4 *5 (-13 (-27) (-1164) (-423 *4)))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *4 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *4)))))
+ (-4 *3 (-13 (-27) (-1164) (-423 *4)))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-400 (-549)))
(-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *5 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *5)))))
+ (-4 *3 (-13 (-27) (-1164) (-423 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5)))
+ (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5)))
(-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *5 *3))))
((*1 *2 *3 *4 *5)
(-12 (-5 *4 (-287 *3)) (-5 *5 (-400 (-549)))
- (-4 *3 (-13 (-27) (-1165) (-423 *6)))
+ (-4 *3 (-13 (-27) (-1164) (-423 *6)))
(-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *6 *3))))
((*1 *2 *3 *4 *5 *6)
(-12 (-5 *3 (-1 *8 (-400 (-549)))) (-5 *4 (-287 *8))
- (-5 *5 (-1193 (-400 (-549)))) (-5 *6 (-400 (-549)))
- (-4 *8 (-13 (-27) (-1165) (-423 *7)))
+ (-5 *5 (-1192 (-400 (-549)))) (-5 *6 (-400 (-549)))
+ (-4 *8 (-13 (-27) (-1164) (-423 *7)))
(-4 *7 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-451 *7 *8))))
((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *4 (-1143)) (-5 *5 (-287 *3)) (-5 *6 (-1193 (-400 (-549))))
- (-5 *7 (-400 (-549))) (-4 *3 (-13 (-27) (-1165) (-423 *8)))
+ (-12 (-5 *4 (-1142)) (-5 *5 (-287 *3)) (-5 *6 (-1192 (-400 (-549))))
+ (-5 *7 (-400 (-549))) (-4 *3 (-13 (-27) (-1164) (-423 *8)))
(-4 *8 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-451 *8 *3))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-400 (-549))) (-4 *4 (-1018)) (-4 *1 (-1209 *4 *3))
- (-4 *3 (-1186 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
+ (-12 (-5 *2 (-400 (-549))) (-4 *4 (-1018)) (-4 *1 (-1208 *4 *3))
+ (-4 *3 (-1185 *4)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-796)) (-14 *5 (-1143)) (-5 *2 (-621 (-1199 *5 *4)))
- (-5 *1 (-1081 *4 *5)) (-5 *3 (-1199 *5 *4)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1018)) (-5 *1 (-1198 *3 *2)) (-4 *2 (-1202 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-309 (-219))) (-5 *1 (-204)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1199 *5 *4)) (-4 *4 (-444)) (-4 *4 (-796))
- (-14 *5 (-1143)) (-5 *2 (-549)) (-5 *1 (-1081 *4 *5)))))
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-1144 (-400 (-549))))
+ (-5 *1 (-184)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
- ((*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
+ (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-549))) (-5 *1 (-1016)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
- (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))))
-(((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *2 (-1006))
- (-5 *1 (-732)))))
-(((*1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-805)))))
-(((*1 *2 *3 *4 *2 *2 *5)
- (|partial| -12 (-5 *2 (-816 *4)) (-5 *3 (-592 *4)) (-5 *5 (-112))
- (-4 *4 (-13 (-1165) (-29 *6)))
- (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-218 *6 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-800)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-1231)) (-5 *1 (-798)))))
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-621 *5) *6))
+ (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *6 (-1201 *5))
+ (-5 *2 (-621 (-2 (|:| |poly| *6) (|:| -2649 *3))))
+ (-5 *1 (-785 *5 *6 *3 *7)) (-4 *3 (-632 *6))
+ (-4 *7 (-632 (-400 *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-621 *5) *6))
+ (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-4 *6 (-1201 *5))
+ (-5 *2 (-621 (-2 (|:| |poly| *6) (|:| -2649 (-630 *6 (-400 *6))))))
+ (-5 *1 (-788 *5 *6)) (-5 *3 (-630 *6 (-400 *6))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-5 *2 (-1138 *3)) (-5 *1 (-41 *4 *3))
+ (-4 *3
+ (-13 (-356) (-295)
+ (-10 -8 (-15 -1392 ((-1091 *4 (-592 $)) $))
+ (-15 -1404 ((-1091 *4 (-592 $)) $))
+ (-15 -3845 ($ (-1091 *4 (-592 $))))))))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-892)) (-5 *4 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1226)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1142))
+ (-4 *5 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-5 *2 (-2 (|:| -2677 *3) (|:| |coeff| *3))) (-5 *1 (-542 *5 *3))
+ (-4 *3 (-13 (-27) (-1164) (-423 *5))))))
(((*1 *2 *1)
- (|partial| -12
- (-5 *2 (-2 (|:| -2721 (-114)) (|:| |arg| (-621 (-863 *3)))))
- (-5 *1 (-863 *3)) (-4 *3 (-1067))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-114)) (-5 *2 (-621 (-863 *4)))
- (-5 *1 (-863 *4)) (-4 *4 (-1067)))))
+ (-12 (-4 *1 (-539 *3)) (-4 *3 (-13 (-397) (-1164))) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-821)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1035 *4 *3)) (-4 *4 (-13 (-821) (-356)))
+ (-4 *3 (-1201 *4)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-2 (|:| -2119 (-1138 *6)) (|:| -1714 (-549)))))
+ (-4 *6 (-300)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-549))
+ (-5 *1 (-719 *4 *5 *6 *7)) (-4 *7 (-920 *6 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-926)) (-5 *2 (-621 (-621 (-914 (-219)))))))
+ ((*1 *2 *1) (-12 (-4 *1 (-945)) (-5 *2 (-621 (-621 (-914 (-219))))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1225 *1)) (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183))
+ (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))))))
+(((*1 *1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-621 (-1106 *4 *5))) (-5 *3 (-1 (-112) *5 *5))
+ (-4 *4 (-13 (-1066) (-34))) (-4 *5 (-13 (-1066) (-34)))
+ (-5 *1 (-1107 *4 *5))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-621 (-1106 *3 *4))) (-4 *3 (-13 (-1066) (-34)))
+ (-4 *4 (-13 (-1066) (-34))) (-5 *1 (-1107 *3 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1143))
+ (-12 (-5 *3 (-1142))
(-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *4 *5))
- (-4 *5 (-13 (-27) (-1165) (-423 *4)))))
+ (-4 *5 (-13 (-27) (-1164) (-423 *4)))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *4 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *4)))))
+ (-4 *3 (-13 (-27) (-1164) (-423 *4)))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-549)) (-4 *5 (-13 (-444) (-823) (-1009 *4) (-617 *4)))
(-5 *2 (-52)) (-5 *1 (-308 *5 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *5)))))
+ (-4 *3 (-13 (-27) (-1164) (-423 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5)))
+ (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5)))
(-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *5 *3))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *6)))
+ (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *6)))
(-4 *6 (-13 (-444) (-823) (-1009 *5) (-617 *5))) (-5 *5 (-549))
(-5 *2 (-52)) (-5 *1 (-308 *6 *3))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *7 (-549))) (-5 *4 (-287 *7)) (-5 *5 (-1193 (-549)))
- (-4 *7 (-13 (-27) (-1165) (-423 *6)))
+ (-12 (-5 *3 (-1 *7 (-549))) (-5 *4 (-287 *7)) (-5 *5 (-1192 (-549)))
+ (-4 *7 (-13 (-27) (-1164) (-423 *6)))
(-4 *6 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-451 *6 *7))))
((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-1143)) (-5 *5 (-287 *3)) (-5 *6 (-1193 (-549)))
- (-4 *3 (-13 (-27) (-1165) (-423 *7)))
+ (-12 (-5 *4 (-1142)) (-5 *5 (-287 *3)) (-5 *6 (-1192 (-549)))
+ (-4 *3 (-13 (-27) (-1164) (-423 *7)))
(-4 *7 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-451 *7 *3))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-549)) (-4 *4 (-1018)) (-4 *1 (-1188 *4 *3))
- (-4 *3 (-1217 *4))))
+ (-12 (-5 *2 (-549)) (-4 *4 (-1018)) (-4 *1 (-1187 *4 *3))
+ (-4 *3 (-1216 *4))))
((*1 *2 *1)
- (-12 (-4 *1 (-1209 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1186 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-897)))))
+ (-12 (-4 *1 (-1208 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1185 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-729)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-1111)) (-5 *2 (-112)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *2 (-541)))))
+ (-12 (-5 *3 (-1142)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-678 *4 *5 *6 *7))
+ (-4 *4 (-594 (-525))) (-4 *5 (-1179)) (-4 *6 (-1179))
+ (-4 *7 (-1179)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1018)) (-4 *3 (-1202 *4)) (-4 *2 (-1217 *4))
- (-5 *1 (-1220 *4 *3 *5 *2)) (-4 *5 (-632 *3)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
+ (|:| |relerr| (-219))))
+ (-5 *2 (-549)) (-5 *1 (-198)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-1110)) (-5 *2 (-112)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-747)) (-4 *2 (-541)) (-5 *1 (-940 *2 *4))
+ (-4 *4 (-1201 *2)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-621 (-621 (-621 *4)))) (-5 *2 (-621 (-621 *4)))
+ (-4 *4 (-823)) (-5 *1 (-1150 *4)))))
+(((*1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-235)))))
+(((*1 *1 *1) (|partial| -4 *1 (-143))) ((*1 *1 *1) (-4 *1 (-342)))
+ ((*1 *1 *1) (|partial| -12 (-4 *1 (-143)) (-4 *1 (-880)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *4 (-1142)) (-5 *6 (-112))
+ (-4 *7 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-4 *3 (-13 (-1164) (-930) (-29 *7)))
+ (-5 *2
+ (-3 (|:| |f1| (-816 *3)) (|:| |f2| (-621 (-816 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-213 *7 *3)) (-5 *5 (-816 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1125)) (-5 *2 (-621 (-1148))) (-5 *1 (-851)))))
-(((*1 *2 *1 *1 *3)
- (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1067) (-34)))
- (-5 *2 (-112)) (-5 *1 (-1107 *4 *5)) (-4 *4 (-13 (-1067) (-34))))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219)))
- (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-62 LSFUN2))))
- (-5 *2 (-1006)) (-5 *1 (-730)))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1143)) (-5 *6 (-621 (-592 *3)))
- (-5 *5 (-592 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *7)))
- (-4 *7 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549))))
- (-5 *2 (-2 (|:| -3440 *3) (|:| |coeff| *3)))
- (-5 *1 (-542 *7 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1165)))))
+ (-12 (-4 *4 (-541)) (-5 *2 (-1225 (-665 *4))) (-5 *1 (-89 *4 *5))
+ (-5 *3 (-665 *4)) (-4 *5 (-632 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1164)))))
((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834))))
((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-834)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1166 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3))
- (-4 *5 (-366 *3)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
- (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-747)) (-4 *5 (-356)) (-5 *2 (-172 *6))
- (-5 *1 (-838 *5 *4 *6)) (-4 *4 (-1217 *5)) (-4 *6 (-1202 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1143))
+ (-12 (-5 *3 (-747)) (-5 *2 (-1 (-1122 (-923 *4)) (-1122 (-923 *4))))
+ (-5 *1 (-1233 *4)) (-4 *4 (-356)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1138 *1)) (-4 *1 (-983)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1142))
(-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *4 *5))
- (-4 *5 (-13 (-27) (-1165) (-423 *4)))))
+ (-4 *5 (-13 (-27) (-1164) (-423 *4)))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *4 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *4)))))
+ (-4 *3 (-13 (-27) (-1164) (-423 *4)))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-747))
(-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *5 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *5)))))
+ (-4 *3 (-13 (-27) (-1164) (-423 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5)))
+ (-12 (-5 *4 (-287 *3)) (-4 *3 (-13 (-27) (-1164) (-423 *5)))
(-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *5 *3))))
((*1 *2 *3 *4 *5)
(-12 (-5 *4 (-287 *3)) (-5 *5 (-747))
- (-4 *3 (-13 (-27) (-1165) (-423 *6)))
+ (-4 *3 (-13 (-27) (-1164) (-423 *6)))
(-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-308 *6 *3))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 (-549))) (-5 *4 (-287 *6))
- (-4 *6 (-13 (-27) (-1165) (-423 *5)))
+ (-4 *6 (-13 (-27) (-1164) (-423 *5)))
(-4 *5 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-451 *5 *6))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1143)) (-5 *5 (-287 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *6)))
+ (-12 (-5 *4 (-1142)) (-5 *5 (-287 *3))
+ (-4 *3 (-13 (-27) (-1164) (-423 *6)))
(-4 *6 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-451 *6 *3))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *7 (-549))) (-5 *4 (-287 *7)) (-5 *5 (-1193 (-747)))
- (-4 *7 (-13 (-27) (-1165) (-423 *6)))
+ (-12 (-5 *3 (-1 *7 (-549))) (-5 *4 (-287 *7)) (-5 *5 (-1192 (-747)))
+ (-4 *7 (-13 (-27) (-1164) (-423 *6)))
(-4 *6 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-451 *6 *7))))
((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-1143)) (-5 *5 (-287 *3)) (-5 *6 (-1193 (-747)))
- (-4 *3 (-13 (-27) (-1165) (-423 *7)))
+ (-12 (-5 *4 (-1142)) (-5 *5 (-287 *3)) (-5 *6 (-1192 (-747)))
+ (-4 *3 (-13 (-27) (-1164) (-423 *7)))
(-4 *7 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2 (-52)) (-5 *1 (-451 *7 *3))))
((*1 *2 *1)
- (-12 (-4 *1 (-1188 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1217 *3)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1139 (-549))) (-5 *1 (-913)) (-5 *3 (-549)))))
-(((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
+ (-12 (-4 *1 (-1187 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1216 *3)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3)
+ (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-729)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-665 *5))) (-5 *4 (-1226 *5)) (-4 *5 (-300))
- (-4 *5 (-1018)) (-5 *2 (-665 *5)) (-5 *1 (-1000 *5)))))
-(((*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 (-665 (-219))) (-5 *6 (-112)) (-5 *7 (-665 (-549)))
- (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-64 QPHESS))))
- (-5 *3 (-549)) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-730)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-541) (-823)))
- (-4 *2 (-13 (-423 (-167 *4)) (-973) (-1165)))
- (-5 *1 (-580 *4 *3 *2)) (-4 *3 (-13 (-423 *4) (-973) (-1165))))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-335 *4 *3 *5)) (-4 *4 (-1184)) (-4 *3 (-1202 *4))
- (-4 *5 (-1202 (-400 *3))) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-323)))))
-(((*1 *1 *1 *1) (-5 *1 (-129))))
-(((*1 *2 *3 *1 *4)
- (-12 (-5 *3 (-1107 *5 *6)) (-5 *4 (-1 (-112) *6 *6))
- (-4 *5 (-13 (-1067) (-34))) (-4 *6 (-13 (-1067) (-34)))
- (-5 *2 (-112)) (-5 *1 (-1108 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *2 (-621 (-219)))
- (-5 *1 (-460)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
+ (-12 (-5 *3 (-621 (-816 (-219)))) (-5 *4 (-219)) (-5 *2 (-621 *4))
+ (-5 *1 (-260)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-549)) (|has| *1 (-6 -4328)) (-4 *1 (-397))
- (-5 *2 (-892)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
-(((*1 *2 *1) (-12 (-5 *1 (-667 *2)) (-4 *2 (-593 (-834)))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-573))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-470))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-136))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-154))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1133))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-604))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1063))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1057))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1040))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-941))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-178))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1007))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-304))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-647))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-152))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-516))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1237))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1033))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-508))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-657))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-95))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1082))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-132))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-137))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-1236))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-652))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-212))))
- ((*1 *2 *1) (-12 (-4 *1 (-1104)) (-5 *2 (-515))))
- ((*1 *2 *1) (-12 (-5 *2 (-1125)) (-5 *1 (-1148))))
- ((*1 *2 *1) (-12 (-5 *2 (-1143)) (-5 *1 (-1148))))
- ((*1 *2 *1) (-12 (-5 *2 (-219)) (-5 *1 (-1148))))
- ((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1148)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1131 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-1111)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170))))
- ((*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1088 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *1)
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-1144 (-400 (-549))))
+ (-5 *1 (-184)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-823)) (-5 *4 (-621 *6))
+ (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-621 *4))))
+ (-5 *1 (-1150 *6)) (-5 *5 (-621 *4)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-621 (-273))) (-5 *1 (-273))))
+ ((*1 *2 *1) (-12 (-5 *2 (-621 (-1147))) (-5 *1 (-1147)))))
+(((*1 *2 *1 *1)
(-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
(-4 *5 (-823)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-728)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 (-167 (-219)) (-167 (-219)))) (-5 *4 (-1061 (-219)))
- (-5 *2 (-1228)) (-5 *1 (-250)))))
+(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-356)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4)))
+ (-5 *2 (-1225 *6)) (-5 *1 (-329 *3 *4 *5 *6))
+ (-4 *6 (-335 *3 *4 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1086)) (-5 *1 (-323)))))
+(((*1 *2 *3 *3 *3 *4 *5 *4 *6)
+ (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219)))
+ (-5 *5 (-1060 (-219))) (-5 *6 (-549)) (-5 *2 (-1174 (-897)))
+ (-5 *1 (-311))))
+ ((*1 *2 *3 *3 *3 *4 *5 *4 *6 *7)
+ (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219)))
+ (-5 *5 (-1060 (-219))) (-5 *6 (-549)) (-5 *7 (-1124))
+ (-5 *2 (-1174 (-897))) (-5 *1 (-311))))
+ ((*1 *2 *3 *3 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219)))
+ (-5 *5 (-1060 (-219))) (-5 *6 (-219)) (-5 *7 (-549))
+ (-5 *2 (-1174 (-897))) (-5 *1 (-311))))
+ ((*1 *2 *3 *3 *3 *4 *5 *6 *7 *8)
+ (-12 (-5 *3 (-309 (-549))) (-5 *4 (-1 (-219) (-219)))
+ (-5 *5 (-1060 (-219))) (-5 *6 (-219)) (-5 *7 (-549)) (-5 *8 (-1124))
+ (-5 *2 (-1174 (-897))) (-5 *1 (-311)))))
(((*1 *1 *1 *1) (-5 *1 (-129))))
-(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1111)) (-5 *3 (-142)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-747)) (-4 *6 (-1067)) (-4 *3 (-871 *6))
- (-5 *2 (-665 *3)) (-5 *1 (-668 *6 *3 *7 *4)) (-4 *7 (-366 *3))
- (-4 *4 (-13 (-366 *6) (-10 -7 (-6 -4337)))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-621 *6) "failed") (-549) *6 *6)) (-4 *6 (-356))
- (-4 *7 (-1202 *6))
- (-5 *2 (-2 (|:| |answer| (-567 (-400 *7))) (|:| |a0| *6)))
- (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-3
- (|:| |noa|
- (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219)))
- (|:| |lb| (-621 (-816 (-219))))
- (|:| |cf| (-621 (-309 (-219))))
- (|:| |ub| (-621 (-816 (-219))))))
- (|:| |lsa|
- (-2 (|:| |lfn| (-621 (-309 (-219))))
- (|:| -3060 (-621 (-219)))))))
- (-5 *2 (-621 (-1125))) (-5 *1 (-260)))))
-(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1018)) (-4 *2 (-663 *4 *5 *6))
- (-5 *1 (-103 *4 *3 *2 *5 *6)) (-4 *3 (-1202 *4)) (-4 *5 (-366 *4))
- (-4 *6 (-366 *4)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1125)) (-5 *3 (-799)) (-5 *1 (-798)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-621 (-1179))) (-5 *3 (-1179)) (-5 *1 (-657)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-1 (-219) (-219) (-219)))
- (-5 *4 (-1 (-219) (-219) (-219) (-219)))
- (-5 *2 (-1 (-914 (-219)) (-219) (-219))) (-5 *1 (-673)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1226 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170))
- (-5 *2 (-665 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-665 *3)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-747)) (-5 *3 (-914 *4)) (-4 *1 (-1100 *4))
+ (-4 *4 (-1018))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-747)) (-5 *4 (-914 (-219))) (-5 *2 (-1230))
+ (-5 *1 (-1227)))))
+(((*1 *2 *2) (-12 (-5 *2 (-309 (-219))) (-5 *1 (-204)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-892)) (-5 *2 (-1226 (-1226 (-549)))) (-5 *1 (-458)))))
-(((*1 *1 *1) (-5 *1 (-219)))
- ((*1 *1 *1)
- (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143)))
- (-14 *3 (-621 (-1143))) (-4 *4 (-380))))
- ((*1 *1 *1) (-5 *1 (-372))) ((*1 *1) (-5 *1 (-372))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1165) (-973)))
- (-5 *1 (-174 *3)))))
-(((*1 *2 *2)
- (-12
+ (-12 (-5 *3 (-1198 *5 *4)) (-4 *4 (-796)) (-14 *5 (-1142))
+ (-5 *2 (-549)) (-5 *1 (-1080 *4 *5)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-2 (|:| |totdeg| (-747)) (|:| -2443 *4))) (-5 *5 (-747))
+ (-4 *4 (-920 *6 *7 *8)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
(-5 *2
- (-958 (-400 (-549)) (-836 *3) (-234 *4 (-747))
- (-241 *3 (-400 (-549)))))
- (-14 *3 (-621 (-1143))) (-14 *4 (-747)) (-5 *1 (-957 *3 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1139 *7)) (-5 *3 (-549)) (-4 *7 (-920 *6 *4 *5))
- (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018))
- (-5 *1 (-314 *4 *5 *6 *7)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| -2207 *1) (|:| -4324 *1) (|:| |associate| *1)))
- (-4 *1 (-541)))))
-(((*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-112)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459))))
- ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-459)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-117 *3)) (-14 *3 *2)))
- ((*1 *1 *1) (-12 (-5 *1 (-117 *2)) (-14 *2 (-549))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-842 *3)) (-14 *3 *2)))
- ((*1 *1 *1) (-12 (-5 *1 (-842 *2)) (-14 *2 (-549))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-549)) (-14 *3 *2) (-5 *1 (-843 *3 *4))
- (-4 *4 (-840 *3))))
- ((*1 *1 *1)
- (-12 (-14 *2 (-549)) (-5 *1 (-843 *2 *3)) (-4 *3 (-840 *2))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-549)) (-4 *1 (-1188 *3 *4)) (-4 *3 (-1018))
- (-4 *4 (-1217 *3))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1188 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1217 *2)))))
-(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1111)) (-5 *3 (-549)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-112))
- (-5 *2 (-1006)) (-5 *1 (-722)))))
-(((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
- (-4 *3 (-360 *4))))
- ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1202 *2)) (-4 *2 (-1018)) (-4 *2 (-541)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-4 *3 (-541))
- (-5 *2 (-1139 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-342)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1139 *4)) (-4 *4 (-342)) (-5 *2 (-112))
- (-5 *1 (-350 *4)))))
+ (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-5 *1 (-441 *6 *7 *8 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1067)) (-4 *5 (-1067))
- (-5 *2 (-1 *5 *4)) (-5 *1 (-659 *4 *5)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-747)) (-5 *1 (-114)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-1202 *3)) (-5 *1 (-392 *3 *2))
- (-4 *3 (-13 (-356) (-145))))))
+ (-12 (-5 *3 (-923 *5)) (-4 *5 (-1018)) (-5 *2 (-241 *4 *5))
+ (-5 *1 (-915 *4 *5)) (-14 *4 (-621 (-1142))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1061 (-816 (-372)))) (-5 *2 (-1061 (-816 (-219))))
- (-5 *1 (-298)))))
-(((*1 *2)
- (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823))
- (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1231))
- (-5 *1 (-1039 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823))
- (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1231))
- (-5 *1 (-1075 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067)))))
-(((*1 *1 *1) (-4 *1 (-34))) ((*1 *1 *1) (-5 *1 (-114)))
- ((*1 *1 *1) (-5 *1 (-169))) ((*1 *1 *1) (-4 *1 (-534)))
- ((*1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1067))))
- ((*1 *1 *1) (-12 (-4 *1 (-1101 *2)) (-4 *2 (-1018))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1067) (-34)))
- (-4 *3 (-13 (-1067) (-34))))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *2 (-444)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-665 (-549))) (-5 *1 (-1077)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *1 *1 *1) (-5 *1 (-834))))
-(((*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-129)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-5 *1 (-1123 *3)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-444)) (-4 *4 (-823))
- (-4 *5 (-769)) (-5 *1 (-958 *3 *4 *5 *6)) (-4 *6 (-920 *3 *5 *4)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
+ (-12 (-5 *3 (-923 *4)) (-4 *4 (-13 (-300) (-145)))
+ (-4 *2 (-920 *4 *6 *5)) (-5 *1 (-895 *4 *5 *6 *2))
+ (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)))))
+(((*1 *2 *1) (-12 (-5 *1 (-667 *2)) (-4 *2 (-593 (-834)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-573))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-470))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-136))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-154))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1132))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-604))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1062))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1056))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1040))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-941))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-178))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1007))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-304))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-647))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-152))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-516))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1236))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1033))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-508))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-657))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-95))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1081))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-132))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-137))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-1235))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-652))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-212))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1103)) (-5 *2 (-515))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1124)) (-5 *1 (-1147))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-1147))))
+ ((*1 *2 *1) (-12 (-5 *2 (-219)) (-5 *1 (-1147))))
+ ((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-1147)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-1110)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018))
+ (-5 *2 (-621 (-621 (-914 *3))))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-621 (-621 (-914 *4)))) (-5 *3 (-112)) (-4 *4 (-1018))
+ (-4 *1 (-1100 *4))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-621 (-621 (-914 *3)))) (-4 *3 (-1018))
+ (-4 *1 (-1100 *3))))
+ ((*1 *1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-621 (-621 (-621 *4)))) (-5 *3 (-112))
+ (-4 *1 (-1100 *4)) (-4 *4 (-1018))))
+ ((*1 *1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-621 (-621 (-914 *4)))) (-5 *3 (-112))
+ (-4 *1 (-1100 *4)) (-4 *4 (-1018))))
+ ((*1 *1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-621 (-621 (-621 *5)))) (-5 *3 (-621 (-169)))
+ (-5 *4 (-169)) (-4 *1 (-1100 *5)) (-4 *5 (-1018))))
+ ((*1 *1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-621 (-621 (-914 *5)))) (-5 *3 (-621 (-169)))
+ (-5 *4 (-169)) (-4 *1 (-1100 *5)) (-4 *5 (-1018)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1087 *2)) (-4 *2 (-1179)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219)))
+ (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-78 LSFUN1))))
+ (-5 *2 (-1006)) (-5 *1 (-730)))))
+(((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-320 *3)) (-4 *3 (-1179))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-747)) (-5 *1 (-507 *3 *4)) (-4 *3 (-1179))
+ (-14 *4 (-549)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))
- (-5 *2 (-621 (-1143))) (-5 *1 (-260))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1139 *7)) (-4 *7 (-920 *6 *4 *5)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1018)) (-5 *2 (-621 *5))
- (-5 *1 (-314 *4 *5 *6 *7))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-332 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 *2) (-4 *5 (-380))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-423 *3)) (-4 *3 (-823)) (-5 *2 (-621 (-1143)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3)) (-4 *3 (-1067))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-920 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-823)) (-5 *2 (-621 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018))
- (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-621 *5))
- (-5 *1 (-921 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-356)
- (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $)) (-15 -1403 (*7 $)))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1069 (-1143))) (-5 *1 (-937 *3)) (-4 *3 (-938))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-768))
- (-4 *5 (-823)) (-5 *2 (-621 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-621 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541)) (-5 *2 (-621 (-1143)))
- (-5 *1 (-1014 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228))))
- ((*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1139 *9)) (-5 *4 (-621 *7)) (-5 *5 (-621 *8))
- (-4 *7 (-823)) (-4 *8 (-1018)) (-4 *9 (-920 *8 *6 *7))
- (-4 *6 (-769)) (-5 *2 (-1139 *8)) (-5 *1 (-314 *6 *7 *8 *9)))))
-(((*1 *1) (-5 *1 (-1048))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1067)) (-4 *3 (-871 *5)) (-5 *2 (-1226 *3))
- (-5 *1 (-668 *5 *3 *6 *4)) (-4 *6 (-366 *3))
- (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4337)))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))))
-(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4337)) (-4 *1 (-584 *4 *3)) (-4 *4 (-1067))
- (-4 *3 (-1180)) (-4 *3 (-1067)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 *2)) (-5 *1 (-177 *2)) (-4 *2 (-300))))
- ((*1 *2 *3 *2)
- (-12 (-5 *3 (-621 (-621 *4))) (-5 *2 (-621 *4)) (-4 *4 (-300))
- (-5 *1 (-177 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-621 *8))
- (-5 *4
- (-621
- (-2 (|:| -1949 (-665 *7)) (|:| |basisDen| *7)
- (|:| |basisInv| (-665 *7)))))
- (-5 *5 (-747)) (-4 *8 (-1202 *7)) (-4 *7 (-1202 *6)) (-4 *6 (-342))
+ (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
+ (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
+ (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
+ (|:| |abserr| (-219)) (|:| |relerr| (-219))))
(-5 *2
- (-2 (|:| -1949 (-665 *7)) (|:| |basisDen| *7)
- (|:| |basisInv| (-665 *7))))
- (-5 *1 (-489 *6 *7 *8))))
- ((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1226 *1)) (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184))
- (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4))))))
-(((*1 *1 *1) (-5 *1 (-1030))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1139 (-400 (-1139 *2)))) (-5 *4 (-592 *2))
- (-4 *2 (-13 (-423 *5) (-27) (-1165)))
- (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *1 (-545 *5 *2 *6)) (-4 *6 (-1067))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1139 *1)) (-4 *1 (-920 *4 *5 *3)) (-4 *4 (-1018))
- (-4 *5 (-769)) (-4 *3 (-823))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1139 *4)) (-4 *4 (-1018)) (-4 *1 (-920 *4 *5 *3))
- (-4 *5 (-769)) (-4 *3 (-823))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-400 (-1139 *2))) (-4 *5 (-769)) (-4 *4 (-823))
- (-4 *6 (-1018))
- (-4 *2
- (-13 (-356)
- (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $)) (-15 -1403 (*7 $)))))
- (-5 *1 (-921 *5 *4 *6 *7 *2)) (-4 *7 (-920 *6 *5 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-400 (-1139 (-400 (-923 *5))))) (-5 *4 (-1143))
- (-5 *2 (-400 (-923 *5))) (-5 *1 (-1014 *5)) (-4 *5 (-541)))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *5 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-1125)) (-5 *5 (-665 (-219)))
- (-5 *2 (-1006)) (-5 *1 (-724)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-1018)) (-5 *1 (-436 *3 *2)) (-4 *2 (-1202 *3)))))
-(((*1 *1 *1) (-4 *1 (-541))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))))
-(((*1 *2 *3 *4 *5 *6 *7 *6)
- (|partial| -12
- (-5 *5
- (-2 (|:| |contp| *3)
- (|:| -4024 (-621 (-2 (|:| |irr| *10) (|:| -2495 (-549)))))))
- (-5 *6 (-621 *3)) (-5 *7 (-621 *8)) (-4 *8 (-823)) (-4 *3 (-300))
- (-4 *10 (-920 *3 *9 *8)) (-4 *9 (-769))
- (-5 *2
- (-2 (|:| |polfac| (-621 *10)) (|:| |correct| *3)
- (|:| |corrfact| (-621 (-1139 *3)))))
- (-5 *1 (-603 *8 *9 *3 *10)) (-5 *4 (-621 (-1139 *3))))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-246 *2 *3 *4 *5)) (-4 *2 (-1018)) (-4 *3 (-823))
- (-4 *4 (-259 *3)) (-4 *5 (-769)))))
-(((*1 *2 *1 *3 *3 *2)
- (-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *2 (-1180))
- (-4 *4 (-366 *2)) (-4 *5 (-366 *2))))
- ((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "right") (|has| *1 (-6 -4338)) (-4 *1 (-119 *3))
- (-4 *3 (-1180))))
- ((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "left") (|has| *1 (-6 -4338)) (-4 *1 (-119 *3))
- (-4 *3 (-1180))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *3 (-747)) (-5 *1 (-207 *4 *2)) (-14 *4 (-892))
- (-4 *2 (-1067))))
- ((*1 *2 *1 *3 *2)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-281 *3 *2)) (-4 *3 (-1067))
- (-4 *2 (-1180))))
- ((*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1143)) (-5 *1 (-610))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *3 (-1193 (-549))) (|has| *1 (-6 -4338)) (-4 *1 (-627 *2))
- (-4 *2 (-1180))))
- ((*1 *1 *1 *2 *2 *1)
- (-12 (-5 *2 (-621 (-549))) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018))
- (-4 *4 (-366 *3)) (-4 *5 (-366 *3))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "value") (|has| *1 (-6 -4338)) (-4 *1 (-981 *2))
- (-4 *2 (-1180))))
- ((*1 *2 *1 *2) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1180))))
- ((*1 *2 *1 *3 *2)
- (-12 (-4 *1 (-1156 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1067))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "last") (|has| *1 (-6 -4338)) (-4 *1 (-1214 *2))
- (-4 *2 (-1180))))
- ((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "rest") (|has| *1 (-6 -4338)) (-4 *1 (-1214 *3))
- (-4 *3 (-1180))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "first") (|has| *1 (-6 -4338)) (-4 *1 (-1214 *2))
- (-4 *2 (-1180)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
- (-5 *1 (-948 *4 *5 *6 *7)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 (-400 *6))) (-5 *4 (-1 (-621 *5) *6))
- (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
- (-4 *6 (-1202 *5)) (-5 *2 (-621 (-400 *6))) (-5 *1 (-788 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-629 (-400 *7))) (-5 *4 (-1 (-621 *6) *7))
- (-5 *5 (-1 (-411 *7) *7))
- (-4 *6 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
- (-4 *7 (-1202 *6)) (-5 *2 (-621 (-400 *7))) (-5 *1 (-788 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-630 *6 (-400 *6))) (-5 *4 (-1 (-621 *5) *6))
- (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
- (-4 *6 (-1202 *5)) (-5 *2 (-621 (-400 *6))) (-5 *1 (-788 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-630 *7 (-400 *7))) (-5 *4 (-1 (-621 *6) *7))
- (-5 *5 (-1 (-411 *7) *7))
- (-4 *6 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
- (-4 *7 (-1202 *6)) (-5 *2 (-621 (-400 *7))) (-5 *1 (-788 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-629 (-400 *5))) (-4 *5 (-1202 *4)) (-4 *4 (-27))
- (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
- (-5 *2 (-621 (-400 *5))) (-5 *1 (-788 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 (-400 *6))) (-5 *4 (-1 (-411 *6) *6))
- (-4 *6 (-1202 *5)) (-4 *5 (-27))
- (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
- (-5 *2 (-621 (-400 *6))) (-5 *1 (-788 *5 *6))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-630 *5 (-400 *5))) (-4 *5 (-1202 *4)) (-4 *4 (-27))
- (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
- (-5 *2 (-621 (-400 *5))) (-5 *1 (-788 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-630 *6 (-400 *6))) (-5 *4 (-1 (-411 *6) *6))
- (-4 *6 (-1202 *5)) (-4 *5 (-27))
- (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
- (-5 *2 (-621 (-400 *6))) (-5 *1 (-788 *5 *6)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *1) (-12 (-4 *1 (-360 *2)) (-4 *2 (-170)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-665 (-400 (-923 *4)))) (-4 *4 (-444))
- (-5 *2 (-621 (-3 (-400 (-923 *4)) (-1132 (-1143) (-923 *4)))))
- (-5 *1 (-285 *4)))))
-(((*1 *1 *2 *3)
- (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-621 (-892))) (-5 *1 (-150 *4 *2 *5)) (-14 *4 (-892))
- (-4 *2 (-356)) (-14 *5 (-964 *4 *2))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-690 *5 *6 *7)) (-4 *5 (-823))
- (-4 *6 (-232 (-3775 *4) (-747)))
- (-14 *7
- (-1 (-112) (-2 (|:| -3493 *5) (|:| -3731 *6))
- (-2 (|:| -3493 *5) (|:| -3731 *6))))
- (-14 *4 (-621 (-1143))) (-4 *2 (-170))
- (-5 *1 (-453 *4 *2 *5 *6 *7 *8)) (-4 *8 (-920 *2 *6 (-836 *4)))))
- ((*1 *1 *2 *3)
- (-12 (-4 *1 (-500 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-823))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-549)) (-4 *2 (-541)) (-5 *1 (-601 *2 *4))
- (-4 *4 (-1202 *2))))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-685 *2)) (-4 *2 (-1018))))
- ((*1 *1 *2 *3)
- (-12 (-5 *1 (-712 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-703))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-621 *5)) (-5 *3 (-621 (-747))) (-4 *1 (-717 *4 *5))
- (-4 *4 (-1018)) (-4 *5 (-823))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-747)) (-4 *1 (-717 *4 *2)) (-4 *4 (-1018))
- (-4 *2 (-823))))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-825 *2)) (-4 *2 (-1018))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-621 *6)) (-5 *3 (-621 (-747))) (-4 *1 (-920 *4 *5 *6))
- (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-747)) (-4 *1 (-920 *4 *5 *2)) (-4 *4 (-1018))
- (-4 *5 (-769)) (-4 *2 (-823))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-621 *6)) (-5 *3 (-621 *5)) (-4 *1 (-944 *4 *5 *6))
- (-4 *4 (-1018)) (-4 *5 (-768)) (-4 *6 (-823))))
- ((*1 *1 *1 *2 *3)
- (-12 (-4 *1 (-944 *4 *3 *2)) (-4 *4 (-1018)) (-4 *3 (-768))
- (-4 *2 (-823)))))
-(((*1 *2 *3 *4 *4 *5 *4 *4 *5)
- (-12 (-5 *3 (-1125)) (-5 *4 (-549)) (-5 *5 (-665 (-219)))
- (-5 *2 (-1006)) (-5 *1 (-734)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-429)))))
-(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-125 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-387)))))
-(((*1 *2)
- (-12 (-5 *2 (-747)) (-5 *1 (-120 *3)) (-4 *3 (-1202 (-549)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-747)) (-5 *1 (-120 *3)) (-4 *3 (-1202 (-549))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-747)) (-4 *5 (-1018)) (-4 *2 (-1202 *5))
- (-5 *1 (-1220 *5 *2 *6 *3)) (-4 *6 (-632 *2)) (-4 *3 (-1217 *5)))))
-(((*1 *2)
- (-12 (-4 *3 (-541)) (-5 *2 (-621 (-665 *3))) (-5 *1 (-43 *3 *4))
- (-4 *4 (-410 *3)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1 (-1093 *4 *3 *5))) (-4 *4 (-38 (-400 (-549))))
- (-4 *4 (-1018)) (-4 *3 (-823)) (-5 *1 (-1093 *4 *3 *5))
- (-4 *5 (-920 *4 (-521 *3) *3))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1 (-1174 *4))) (-5 *3 (-1143)) (-5 *1 (-1174 *4))
- (-4 *4 (-38 (-400 (-549)))) (-4 *4 (-1018)))))
-(((*1 *1 *2 *2) (-12 (-5 *1 (-848 *2)) (-4 *2 (-1180))))
- ((*1 *1 *2 *2 *2) (-12 (-5 *1 (-850 *2)) (-4 *2 (-1180))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-914 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-621 (-914 *3))) (-4 *3 (-1018)) (-4 *1 (-1101 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-621 *3))) (-4 *1 (-1101 *3)) (-4 *3 (-1018))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-914 *3))) (-4 *1 (-1101 *3)) (-4 *3 (-1018)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-665 (-549))) (-5 *1 (-1077)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1018)) (-5 *2 (-1226 *3)) (-5 *1 (-689 *3 *4))
- (-4 *4 (-1202 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-665 (-400 (-549)))) (-5 *2 (-621 *4)) (-5 *1 (-755 *4))
- (-4 *4 (-13 (-356) (-821))))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-167 (-219)) (-167 (-219)))) (-5 *4 (-1061 (-219)))
- (-5 *5 (-112)) (-5 *2 (-1228)) (-5 *1 (-250)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2))
- (-4 *4 (-13 (-823) (-541))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-747)) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5))
- (-4 *4 (-366 *3)) (-4 *5 (-366 *3))))
- ((*1 *1 *2)
- (-12 (-4 *2 (-1018)) (-4 *1 (-1090 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2))
- (-4 *5 (-232 *3 *2)))))
+ (-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372))))
+ (-5 *1 (-199)))))
+(((*1 *1 *1 *1) (-5 *1 (-129))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-621 (-400 (-923 (-549)))))
(-5 *2 (-621 (-621 (-287 (-923 *4))))) (-5 *1 (-373 *4))
@@ -11656,153 +11653,153 @@
(-5 *2 (-621 (-287 (-923 *4)))) (-5 *1 (-373 *4))
(-4 *4 (-13 (-821) (-356)))))
((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1143))
+ (|partial| -12 (-5 *5 (-1142))
(-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
- (-4 *4 (-13 (-29 *6) (-1165) (-930)))
- (-5 *2 (-2 (|:| |particular| *4) (|:| -1949 (-621 *4))))
+ (-4 *4 (-13 (-29 *6) (-1164) (-930)))
+ (-5 *2 (-2 (|:| |particular| *4) (|:| -2619 (-621 *4))))
(-5 *1 (-628 *6 *4 *3)) (-4 *3 (-632 *4))))
((*1 *2 *3 *2 *4 *2 *5)
- (|partial| -12 (-5 *4 (-1143)) (-5 *5 (-621 *2))
- (-4 *2 (-13 (-29 *6) (-1165) (-930)))
+ (|partial| -12 (-5 *4 (-1142)) (-5 *5 (-621 *2))
+ (-4 *2 (-13 (-29 *6) (-1164) (-930)))
(-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
(-5 *1 (-628 *6 *2 *3)) (-4 *3 (-632 *2))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-665 *5)) (-4 *5 (-356))
(-5 *2
- (-2 (|:| |particular| (-3 (-1226 *5) "failed"))
- (|:| -1949 (-621 (-1226 *5)))))
- (-5 *1 (-643 *5)) (-5 *4 (-1226 *5))))
+ (-2 (|:| |particular| (-3 (-1225 *5) "failed"))
+ (|:| -2619 (-621 (-1225 *5)))))
+ (-5 *1 (-643 *5)) (-5 *4 (-1225 *5))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-621 (-621 *5))) (-4 *5 (-356))
(-5 *2
- (-2 (|:| |particular| (-3 (-1226 *5) "failed"))
- (|:| -1949 (-621 (-1226 *5)))))
- (-5 *1 (-643 *5)) (-5 *4 (-1226 *5))))
+ (-2 (|:| |particular| (-3 (-1225 *5) "failed"))
+ (|:| -2619 (-621 (-1225 *5)))))
+ (-5 *1 (-643 *5)) (-5 *4 (-1225 *5))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-665 *5)) (-4 *5 (-356))
(-5 *2
(-621
- (-2 (|:| |particular| (-3 (-1226 *5) "failed"))
- (|:| -1949 (-621 (-1226 *5))))))
- (-5 *1 (-643 *5)) (-5 *4 (-621 (-1226 *5)))))
+ (-2 (|:| |particular| (-3 (-1225 *5) "failed"))
+ (|:| -2619 (-621 (-1225 *5))))))
+ (-5 *1 (-643 *5)) (-5 *4 (-621 (-1225 *5)))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-621 (-621 *5))) (-4 *5 (-356))
(-5 *2
(-621
- (-2 (|:| |particular| (-3 (-1226 *5) "failed"))
- (|:| -1949 (-621 (-1226 *5))))))
- (-5 *1 (-643 *5)) (-5 *4 (-621 (-1226 *5)))))
+ (-2 (|:| |particular| (-3 (-1225 *5) "failed"))
+ (|:| -2619 (-621 (-1225 *5))))))
+ (-5 *1 (-643 *5)) (-5 *4 (-621 (-1225 *5)))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-356)) (-4 *6 (-13 (-366 *5) (-10 -7 (-6 -4338))))
- (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4338))))
+ (-12 (-4 *5 (-356)) (-4 *6 (-13 (-366 *5) (-10 -7 (-6 -4337))))
+ (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4337))))
(-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1949 (-621 *4))))
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -2619 (-621 *4))))
(-5 *1 (-644 *5 *6 *4 *3)) (-4 *3 (-663 *5 *6 *4))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-356)) (-4 *6 (-13 (-366 *5) (-10 -7 (-6 -4338))))
- (-4 *7 (-13 (-366 *5) (-10 -7 (-6 -4338))))
+ (-12 (-4 *5 (-356)) (-4 *6 (-13 (-366 *5) (-10 -7 (-6 -4337))))
+ (-4 *7 (-13 (-366 *5) (-10 -7 (-6 -4337))))
(-5 *2
(-621
- (-2 (|:| |particular| (-3 *7 "failed")) (|:| -1949 (-621 *7)))))
+ (-2 (|:| |particular| (-3 *7 "failed")) (|:| -2619 (-621 *7)))))
(-5 *1 (-644 *5 *6 *7 *3)) (-5 *4 (-621 *7))
(-4 *3 (-663 *5 *6 *7))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-621 (-1143))) (-4 *5 (-541))
+ (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-621 (-1142))) (-4 *5 (-541))
(-5 *2 (-621 (-621 (-287 (-400 (-923 *5)))))) (-5 *1 (-746 *5))))
((*1 *2 *3)
(-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-541))
(-5 *2 (-621 (-621 (-287 (-400 (-923 *4)))))) (-5 *1 (-746 *4))))
((*1 *2 *2 *2 *3 *4)
- (|partial| -12 (-5 *3 (-114)) (-5 *4 (-1143))
+ (|partial| -12 (-5 *3 (-114)) (-5 *4 (-1142))
(-4 *5 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
- (-5 *1 (-748 *5 *2)) (-4 *2 (-13 (-29 *5) (-1165) (-930)))))
+ (-5 *1 (-748 *5 *2)) (-4 *2 (-13 (-29 *5) (-1164) (-930)))))
((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-665 *7)) (-5 *5 (-1143))
- (-4 *7 (-13 (-29 *6) (-1165) (-930)))
+ (|partial| -12 (-5 *3 (-665 *7)) (-5 *5 (-1142))
+ (-4 *7 (-13 (-29 *6) (-1164) (-930)))
(-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
(-5 *2
- (-2 (|:| |particular| (-1226 *7)) (|:| -1949 (-621 (-1226 *7)))))
- (-5 *1 (-778 *6 *7)) (-5 *4 (-1226 *7))))
+ (-2 (|:| |particular| (-1225 *7)) (|:| -2619 (-621 (-1225 *7)))))
+ (-5 *1 (-778 *6 *7)) (-5 *4 (-1225 *7))))
((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-665 *6)) (-5 *4 (-1143))
- (-4 *6 (-13 (-29 *5) (-1165) (-930)))
+ (|partial| -12 (-5 *3 (-665 *6)) (-5 *4 (-1142))
+ (-4 *6 (-13 (-29 *5) (-1164) (-930)))
(-4 *5 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
- (-5 *2 (-621 (-1226 *6))) (-5 *1 (-778 *5 *6))))
+ (-5 *2 (-621 (-1225 *6))) (-5 *1 (-778 *5 *6))))
((*1 *2 *3 *4 *5)
(|partial| -12 (-5 *3 (-621 (-287 *7))) (-5 *4 (-621 (-114)))
- (-5 *5 (-1143)) (-4 *7 (-13 (-29 *6) (-1165) (-930)))
+ (-5 *5 (-1142)) (-4 *7 (-13 (-29 *6) (-1164) (-930)))
(-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
(-5 *2
- (-2 (|:| |particular| (-1226 *7)) (|:| -1949 (-621 (-1226 *7)))))
+ (-2 (|:| |particular| (-1225 *7)) (|:| -2619 (-621 (-1225 *7)))))
(-5 *1 (-778 *6 *7))))
((*1 *2 *3 *4 *5)
(|partial| -12 (-5 *3 (-621 *7)) (-5 *4 (-621 (-114)))
- (-5 *5 (-1143)) (-4 *7 (-13 (-29 *6) (-1165) (-930)))
+ (-5 *5 (-1142)) (-4 *7 (-13 (-29 *6) (-1164) (-930)))
(-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
(-5 *2
- (-2 (|:| |particular| (-1226 *7)) (|:| -1949 (-621 (-1226 *7)))))
+ (-2 (|:| |particular| (-1225 *7)) (|:| -2619 (-621 (-1225 *7)))))
(-5 *1 (-778 *6 *7))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-287 *7)) (-5 *4 (-114)) (-5 *5 (-1143))
- (-4 *7 (-13 (-29 *6) (-1165) (-930)))
+ (-12 (-5 *3 (-287 *7)) (-5 *4 (-114)) (-5 *5 (-1142))
+ (-4 *7 (-13 (-29 *6) (-1164) (-930)))
(-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
(-5 *2
- (-3 (-2 (|:| |particular| *7) (|:| -1949 (-621 *7))) *7 "failed"))
+ (-3 (-2 (|:| |particular| *7) (|:| -2619 (-621 *7))) *7 "failed"))
(-5 *1 (-778 *6 *7))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-114)) (-5 *5 (-1143))
+ (-12 (-5 *4 (-114)) (-5 *5 (-1142))
(-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
(-5 *2
- (-3 (-2 (|:| |particular| *3) (|:| -1949 (-621 *3))) *3 "failed"))
- (-5 *1 (-778 *6 *3)) (-4 *3 (-13 (-29 *6) (-1165) (-930)))))
+ (-3 (-2 (|:| |particular| *3) (|:| -2619 (-621 *3))) *3 "failed"))
+ (-5 *1 (-778 *6 *3)) (-4 *3 (-13 (-29 *6) (-1164) (-930)))))
((*1 *2 *3 *4 *3 *5)
(|partial| -12 (-5 *3 (-287 *2)) (-5 *4 (-114)) (-5 *5 (-621 *2))
- (-4 *2 (-13 (-29 *6) (-1165) (-930))) (-5 *1 (-778 *6 *2))
+ (-4 *2 (-13 (-29 *6) (-1164) (-930))) (-5 *1 (-778 *6 *2))
(-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))))
((*1 *2 *2 *3 *4 *5)
(|partial| -12 (-5 *3 (-114)) (-5 *4 (-287 *2)) (-5 *5 (-621 *2))
- (-4 *2 (-13 (-29 *6) (-1165) (-930)))
+ (-4 *2 (-13 (-29 *6) (-1164) (-930)))
(-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
(-5 *1 (-778 *6 *2))))
((*1 *2 *3) (-12 (-5 *3 (-784)) (-5 *2 (-1006)) (-5 *1 (-781))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-784)) (-5 *4 (-1030)) (-5 *2 (-1006)) (-5 *1 (-781))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1226 (-309 (-372)))) (-5 *4 (-372)) (-5 *5 (-621 *4))
+ (-12 (-5 *3 (-1225 (-309 (-372)))) (-5 *4 (-372)) (-5 *5 (-621 *4))
(-5 *2 (-1006)) (-5 *1 (-781))))
((*1 *2 *3 *4 *4 *5 *4)
- (-12 (-5 *3 (-1226 (-309 (-372)))) (-5 *4 (-372)) (-5 *5 (-621 *4))
+ (-12 (-5 *3 (-1225 (-309 (-372)))) (-5 *4 (-372)) (-5 *5 (-621 *4))
(-5 *2 (-1006)) (-5 *1 (-781))))
((*1 *2 *3 *4 *4 *5 *6 *4)
- (-12 (-5 *3 (-1226 (-309 *4))) (-5 *5 (-621 (-372)))
+ (-12 (-5 *3 (-1225 (-309 *4))) (-5 *5 (-621 (-372)))
(-5 *6 (-309 (-372))) (-5 *4 (-372)) (-5 *2 (-1006)) (-5 *1 (-781))))
((*1 *2 *3 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1226 (-309 (-372)))) (-5 *4 (-372)) (-5 *5 (-621 *4))
+ (-12 (-5 *3 (-1225 (-309 (-372)))) (-5 *4 (-372)) (-5 *5 (-621 *4))
(-5 *2 (-1006)) (-5 *1 (-781))))
((*1 *2 *3 *4 *4 *5 *6 *5 *4)
- (-12 (-5 *3 (-1226 (-309 *4))) (-5 *5 (-621 (-372)))
+ (-12 (-5 *3 (-1225 (-309 *4))) (-5 *5 (-621 (-372)))
(-5 *6 (-309 (-372))) (-5 *4 (-372)) (-5 *2 (-1006)) (-5 *1 (-781))))
((*1 *2 *3 *4 *4 *5 *6 *5 *4 *4)
- (-12 (-5 *3 (-1226 (-309 *4))) (-5 *5 (-621 (-372)))
+ (-12 (-5 *3 (-1225 (-309 *4))) (-5 *5 (-621 (-372)))
(-5 *6 (-309 (-372))) (-5 *4 (-372)) (-5 *2 (-1006)) (-5 *1 (-781))))
((*1 *2 *3 *4 *5)
(|partial| -12
(-5 *5
(-1
- (-3 (-2 (|:| |particular| *6) (|:| -1949 (-621 *6))) "failed")
+ (-3 (-2 (|:| |particular| *6) (|:| -2619 (-621 *6))) "failed")
*7 *6))
(-4 *6 (-356)) (-4 *7 (-632 *6))
- (-5 *2 (-2 (|:| |particular| (-1226 *6)) (|:| -1949 (-665 *6))))
- (-5 *1 (-789 *6 *7)) (-5 *3 (-665 *6)) (-5 *4 (-1226 *6))))
+ (-5 *2 (-2 (|:| |particular| (-1225 *6)) (|:| -2619 (-665 *6))))
+ (-5 *1 (-789 *6 *7)) (-5 *3 (-665 *6)) (-5 *4 (-1225 *6))))
((*1 *2 *3) (-12 (-5 *3 (-869)) (-5 *2 (-1006)) (-5 *1 (-868))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-869)) (-5 *4 (-1030)) (-5 *2 (-1006)) (-5 *1 (-868))))
((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8)
- (-12 (-5 *4 (-747)) (-5 *6 (-621 (-621 (-309 *3)))) (-5 *7 (-1125))
+ (-12 (-5 *4 (-747)) (-5 *6 (-621 (-621 (-309 *3)))) (-5 *7 (-1124))
(-5 *8 (-219)) (-5 *5 (-621 (-309 (-372)))) (-5 *3 (-372))
(-5 *2 (-1006)) (-5 *1 (-868))))
((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7)
- (-12 (-5 *4 (-747)) (-5 *6 (-621 (-621 (-309 *3)))) (-5 *7 (-1125))
+ (-12 (-5 *4 (-747)) (-5 *6 (-621 (-621 (-309 *3)))) (-5 *7 (-1124))
(-5 *5 (-621 (-309 (-372)))) (-5 *3 (-372)) (-5 *2 (-1006))
(-5 *1 (-868))))
((*1 *2 *3 *4)
@@ -11813,330 +11810,459 @@
(-5 *4 (-372))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
- (-5 *2 (-621 *4)) (-5 *1 (-1095 *3 *4)) (-4 *3 (-1202 *4))))
+ (-5 *2 (-621 *4)) (-5 *1 (-1094 *3 *4)) (-4 *3 (-1201 *4))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
- (-5 *2 (-621 (-287 (-309 *4)))) (-5 *1 (-1098 *4))
+ (-5 *2 (-621 (-287 (-309 *4)))) (-5 *1 (-1097 *4))
(-5 *3 (-309 *4))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
- (-5 *2 (-621 (-287 (-309 *4)))) (-5 *1 (-1098 *4))
+ (-5 *2 (-621 (-287 (-309 *4)))) (-5 *1 (-1097 *4))
(-5 *3 (-287 (-309 *4)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1143))
+ (-12 (-5 *4 (-1142))
(-4 *5 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
- (-5 *2 (-621 (-287 (-309 *5)))) (-5 *1 (-1098 *5))
+ (-5 *2 (-621 (-287 (-309 *5)))) (-5 *1 (-1097 *5))
(-5 *3 (-287 (-309 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1143))
+ (-12 (-5 *4 (-1142))
(-4 *5 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
- (-5 *2 (-621 (-287 (-309 *5)))) (-5 *1 (-1098 *5))
+ (-5 *2 (-621 (-287 (-309 *5)))) (-5 *1 (-1097 *5))
(-5 *3 (-309 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 (-1143)))
+ (-12 (-5 *4 (-621 (-1142)))
(-4 *5 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
- (-5 *2 (-621 (-621 (-287 (-309 *5))))) (-5 *1 (-1098 *5))
+ (-5 *2 (-621 (-621 (-287 (-309 *5))))) (-5 *1 (-1097 *5))
(-5 *3 (-621 (-287 (-309 *5))))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-400 (-923 *5)))) (-5 *4 (-621 (-1143)))
+ (-12 (-5 *3 (-621 (-400 (-923 *5)))) (-5 *4 (-621 (-1142)))
(-4 *5 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *5))))))
- (-5 *1 (-1149 *5))))
+ (-5 *1 (-1148 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 (-1143))) (-4 *5 (-541))
- (-5 *2 (-621 (-621 (-287 (-400 (-923 *5)))))) (-5 *1 (-1149 *5))
+ (-12 (-5 *4 (-621 (-1142))) (-4 *5 (-541))
+ (-5 *2 (-621 (-621 (-287 (-400 (-923 *5)))))) (-5 *1 (-1148 *5))
(-5 *3 (-621 (-287 (-400 (-923 *5)))))))
((*1 *2 *3)
(-12 (-5 *3 (-621 (-400 (-923 *4)))) (-4 *4 (-541))
- (-5 *2 (-621 (-621 (-287 (-400 (-923 *4)))))) (-5 *1 (-1149 *4))))
+ (-5 *2 (-621 (-621 (-287 (-400 (-923 *4)))))) (-5 *1 (-1148 *4))))
((*1 *2 *3)
(-12 (-4 *4 (-541)) (-5 *2 (-621 (-621 (-287 (-400 (-923 *4))))))
- (-5 *1 (-1149 *4)) (-5 *3 (-621 (-287 (-400 (-923 *4)))))))
+ (-5 *1 (-1148 *4)) (-5 *3 (-621 (-287 (-400 (-923 *4)))))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1143)) (-4 *5 (-541))
- (-5 *2 (-621 (-287 (-400 (-923 *5))))) (-5 *1 (-1149 *5))
+ (-12 (-5 *4 (-1142)) (-4 *5 (-541))
+ (-5 *2 (-621 (-287 (-400 (-923 *5))))) (-5 *1 (-1148 *5))
(-5 *3 (-400 (-923 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1143)) (-4 *5 (-541))
- (-5 *2 (-621 (-287 (-400 (-923 *5))))) (-5 *1 (-1149 *5))
+ (-12 (-5 *4 (-1142)) (-4 *5 (-541))
+ (-5 *2 (-621 (-287 (-400 (-923 *5))))) (-5 *1 (-1148 *5))
(-5 *3 (-287 (-400 (-923 *5))))))
((*1 *2 *3)
(-12 (-4 *4 (-541)) (-5 *2 (-621 (-287 (-400 (-923 *4)))))
- (-5 *1 (-1149 *4)) (-5 *3 (-400 (-923 *4)))))
+ (-5 *1 (-1148 *4)) (-5 *3 (-400 (-923 *4)))))
((*1 *2 *3)
(-12 (-4 *4 (-541)) (-5 *2 (-621 (-287 (-400 (-923 *4)))))
- (-5 *1 (-1149 *4)) (-5 *3 (-287 (-400 (-923 *4)))))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 *4)) (-4 *4 (-356)) (-4 *2 (-1202 *4))
- (-5 *1 (-893 *4 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *5)) (-5 *4 (-892)) (-4 *5 (-823))
- (-5 *2 (-58 (-621 (-648 *5)))) (-5 *1 (-648 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-549)) (-5 *1 (-309 *3)) (-4 *3 (-541)) (-4 *3 (-823)))))
+ (-5 *1 (-1148 *4)) (-5 *3 (-287 (-400 (-923 *4)))))))
+(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1110)) (-5 *3 (-142)) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-541)) (-4 *4 (-963 *3)) (-5 *1 (-140 *3 *4 *2))
+ (-4 *2 (-366 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-4 *5 (-963 *4)) (-4 *2 (-366 *4))
+ (-5 *1 (-494 *4 *5 *2 *3)) (-4 *3 (-366 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-665 *5)) (-4 *5 (-963 *4)) (-4 *4 (-541))
+ (-5 *2 (-665 *4)) (-5 *1 (-669 *4 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-541)) (-4 *4 (-963 *3)) (-5 *1 (-1194 *3 *4 *2))
+ (-4 *2 (-1201 *4)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-444))
- (-5 *2
+ (-12
+ (-5 *3
(-621
- (-2 (|:| |eigval| (-3 (-400 (-923 *4)) (-1132 (-1143) (-923 *4))))
- (|:| |eigmult| (-747))
- (|:| |eigvec| (-621 (-665 (-400 (-923 *4))))))))
- (-5 *1 (-285 *4)) (-5 *3 (-665 (-400 (-923 *4)))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-342)) (-5 *2 (-411 (-1139 (-1139 *4))))
- (-5 *1 (-1178 *4)) (-5 *3 (-1139 (-1139 *4))))))
+ (-2 (|:| -3121 (-747))
+ (|:| |eqns|
+ (-621
+ (-2 (|:| |det| *7) (|:| |rows| (-621 (-549)))
+ (|:| |cols| (-621 (-549))))))
+ (|:| |fgb| (-621 *7)))))
+ (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145)))
+ (-4 *5 (-13 (-823) (-594 (-1142)))) (-4 *6 (-769)) (-5 *2 (-747))
+ (-5 *1 (-895 *4 *5 *6 *7)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444))
- (-14 *6 (-621 (-1143))) (-5 *2 (-621 (-1015 *5 *6)))
- (-5 *1 (-606 *5 *6)))))
-(((*1 *1 *2) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1180)))))
+ (-12 (-5 *3 (-1225 (-309 (-219)))) (-5 *4 (-621 (-1142)))
+ (-5 *2 (-665 (-309 (-219)))) (-5 *1 (-199))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1066)) (-4 *6 (-871 *5)) (-5 *2 (-665 *6))
+ (-5 *1 (-668 *5 *6 *3 *4)) (-4 *3 (-366 *6))
+ (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4336)))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-665 (-309 (-219))))
+ (-5 *2
+ (-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372))))
+ (-5 *1 (-199)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-2 (|:| -2677 *6) (|:| |coeff| *6)) "failed") *6))
+ (-4 *6 (-356)) (-4 *7 (-1201 *6))
+ (-5 *2
+ (-3 (-2 (|:| |answer| (-400 *7)) (|:| |a0| *6))
+ (-2 (|:| -2677 (-400 *7)) (|:| |coeff| (-400 *7))) "failed"))
+ (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))))
+(((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-544)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1086)) (-5 *1 (-797)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-823)) (-4 *5 (-880)) (-4 *6 (-769))
- (-4 *8 (-920 *5 *6 *7)) (-5 *2 (-411 (-1139 *8)))
- (-5 *1 (-877 *5 *6 *7 *8)) (-5 *4 (-1139 *8))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-880)) (-4 *5 (-1202 *4)) (-5 *2 (-411 (-1139 *5)))
- (-5 *1 (-878 *4 *5)) (-5 *3 (-1139 *5)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-621 *1)) (-4 *1 (-1032 *4 *5 *6)) (-4 *4 (-1018))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-823)) (-5 *2 (-112))))
- ((*1 *2 *3 *1 *4)
- (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1173 *5 *6 *7 *3))
- (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-112)))))
+ (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1138 *7))
+ (-4 *5 (-1018)) (-4 *7 (-1018)) (-4 *2 (-1201 *5))
+ (-5 *1 (-492 *5 *2 *6 *7)) (-4 *6 (-1201 *2)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-319 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018))
- (-4 *2 (-444))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 *4)) (-4 *4 (-1202 (-549))) (-5 *2 (-621 (-549)))
- (-5 *1 (-478 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-444))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *2 (-823)) (-4 *3 (-444)))))
-(((*1 *2 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-219)) (-5 *4 (-549))
- (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422))))
- (-5 *2 (-1006)) (-5 *1 (-725)))))
+ (-12 (-4 *1 (-1208 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1185 *3)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))))
+(((*1 *1 *1) (-5 *1 (-219)))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142)))
+ (-14 *3 (-621 (-1142))) (-4 *4 (-380))))
+ ((*1 *1 *1) (-5 *1 (-372))) ((*1 *1) (-5 *1 (-372))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112))
+ (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5))))
+ ((*1 *2 *1) (-12 (-4 *1 (-699)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-703)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-584 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1179))
+ (-5 *2 (-621 *3)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5))
+ (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *1 (-1238 *3 *4 *5 *6))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-621 *8)) (-5 *3 (-1 (-112) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541))
+ (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1238 *5 *6 *7 *8)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-1187 *3 *2)) (-4 *3 (-1018))
+ (-4 *2 (-1216 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1138 *6)) (-5 *3 (-549)) (-4 *6 (-300)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-5 *1 (-719 *4 *5 *6 *7)) (-4 *7 (-920 *6 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-1101))) (-5 *1 (-647))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-892))) (-5 *1 (-1067 *3 *4)) (-14 *3 (-892))
+ (-14 *4 (-892)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892))
+ (-4 *4 (-1018)))))
+(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1110)) (-5 *3 (-549)) (-5 *2 (-112)))))
(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -3727 (-758 *3)) (|:| |coef1| (-758 *3))))
- (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018))))
+ (-12 (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-300))))
((*1 *2 *1 *1)
- (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *2 (-2 (|:| -3727 *1) (|:| |coef1| *1)))
+ (|partial| -12 (-5 *2 (-2 (|:| |lm| (-379 *3)) (|:| |rm| (-379 *3))))
+ (-5 *1 (-379 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -2262 (-747)) (|:| -1809 (-747))))
+ (-5 *1 (-747))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3)))
+ (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *2 *3 *3 *4 *4 *3 *3 *5 *3)
+ (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-732)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1164) (-973)))
+ (-5 *1 (-174 *3)))))
+(((*1 *2) (-12 (-5 *2 (-621 (-892))) (-5 *1 (-1228))))
+ ((*1 *2 *2) (-12 (-5 *2 (-621 (-892))) (-5 *1 (-1228)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-584 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1179))
+ (-5 *2 (-112)))))
+(((*1 *2 *1 *2 *3)
+ (|partial| -12 (-5 *2 (-1124)) (-5 *3 (-549)) (-5 *1 (-1030)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1138 *4)) (-4 *4 (-342)) (-5 *2 (-929 (-1086)))
+ (-5 *1 (-339 *4)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-732)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |polnum| (-758 *3)) (|:| |polden| *3) (|:| -1742 (-747))))
+ (-5 *1 (-758 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -1742 (-747))))
(-4 *1 (-1032 *3 *4 *5)))))
-(((*1 *1 *2 *3 *3 *4 *5)
- (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *3 (-621 (-845)))
- (-5 *4 (-621 (-892))) (-5 *5 (-621 (-256))) (-5 *1 (-460))))
- ((*1 *1 *2 *3 *3 *4)
- (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *3 (-621 (-845)))
- (-5 *4 (-621 (-892))) (-5 *1 (-460))))
- ((*1 *1 *2) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *1 (-460))))
- ((*1 *1 *1) (-5 *1 (-460))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-316 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-130))
- (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2719 *4))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-621 (-2 (|:| -1570 *3) (|:| -3526 *4))))
- (-5 *1 (-712 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-703))))
+(((*1 *1 *1) (-4 *1 (-34))) ((*1 *1 *1) (-5 *1 (-114)))
+ ((*1 *1 *1) (-5 *1 (-169))) ((*1 *1 *1) (-4 *1 (-534)))
+ ((*1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1066))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1100 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1106 *2 *3)) (-4 *2 (-13 (-1066) (-34)))
+ (-4 *3 (-13 (-1066) (-34))))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-400 (-1138 (-309 *3)))) (-4 *3 (-13 (-541) (-823)))
+ (-5 *1 (-1096 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
+ (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
+ (-5 *1 (-1073 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-554 *3)) (-4 *3 (-1009 (-549)))))
((*1 *2 *1)
- (-12 (-4 *1 (-1204 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768))
- (-5 *2 (-1123 (-2 (|:| |k| *4) (|:| |c| *3)))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-372)) (-5 *3 (-621 (-256))) (-5 *1 (-254))))
- ((*1 *1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-256)))))
-(((*1 *1 *1) (|partial| -4 *1 (-143))) ((*1 *1 *1) (-4 *1 (-342)))
- ((*1 *1 *1) (|partial| -12 (-4 *1 (-143)) (-4 *1 (-880)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 (-836 *5))) (-14 *5 (-621 (-1143))) (-4 *6 (-444))
- (-5 *2 (-621 (-621 (-241 *5 *6)))) (-5 *1 (-463 *5 *6 *7))
- (-5 *3 (-621 (-241 *5 *6))) (-4 *7 (-444)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-5 *1 (-320 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-5 *1 (-507 *3 *4))
- (-14 *4 (-549)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 (-372))) (-5 *1 (-256))))
- ((*1 *1)
- (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-541)) (-4 *2 (-170))))
- ((*1 *2 *1) (-12 (-5 *1 (-411 *2)) (-4 *2 (-541)))))
+ (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))))
+(((*1 *2 *2 *2 *2 *3)
+ (-12 (-4 *3 (-541)) (-5 *1 (-940 *3 *2)) (-4 *2 (-1201 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3))
+ (-4 *3 (-13 (-356) (-1164) (-973))))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3)) (-4 *3 (-945)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-621 (-219)))) (-5 *1 (-897)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-629 *4)) (-4 *4 (-335 *5 *6 *7))
- (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
- (-4 *6 (-1202 *5)) (-4 *7 (-1202 (-400 *6)))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1949 (-621 *4))))
- (-5 *1 (-782 *5 *6 *7 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768))
- (-5 *2 (-112))))
+ (-12 (-4 *5 (-356))
+ (-5 *2 (-621 (-2 (|:| C (-665 *5)) (|:| |g| (-1225 *5)))))
+ (-5 *1 (-949 *5)) (-5 *3 (-665 *5)) (-5 *4 (-1225 *5)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))
+ (-5 *2 (-621 (-1142))) (-5 *1 (-260))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1138 *7)) (-4 *7 (-920 *6 *4 *5)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1018)) (-5 *2 (-621 *5))
+ (-5 *1 (-314 *4 *5 *6 *7))))
((*1 *2 *1)
- (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1067))
- (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-576 *3)) (-4 *3 (-1018))))
+ (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-332 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 *2) (-4 *5 (-380))))
((*1 *2 *1)
- (-12 (-4 *3 (-541)) (-5 *2 (-112)) (-5 *1 (-601 *3 *4))
- (-4 *4 (-1202 *3))))
+ (-12 (-4 *1 (-423 *3)) (-4 *3 (-823)) (-5 *2 (-621 (-1142)))))
((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018))
- (-4 *4 (-703))))
+ (-12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3)) (-4 *3 (-1066))))
((*1 *2 *1)
- (-12 (-4 *1 (-1243 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
- (-5 *2 (-112)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1143)) (-5 *1 (-567 *2)) (-4 *2 (-1009 *3))
- (-4 *2 (-356))))
- ((*1 *1 *2 *2) (-12 (-5 *1 (-567 *2)) (-4 *2 (-356))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-608 *4 *2))
- (-4 *2 (-13 (-423 *4) (-973) (-1165)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1059 *2)) (-4 *2 (-13 (-423 *4) (-973) (-1165)))
- (-4 *4 (-13 (-823) (-541))) (-5 *1 (-608 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-930)) (-5 *2 (-1143))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1059 *1)) (-4 *1 (-930)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-136))))
- ((*1 *2 *1) (-12 (-5 *2 (-1179)) (-5 *1 (-154))))
- ((*1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1180))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-470))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-573))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-604))))
+ (-12 (-4 *1 (-920 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-5 *2 (-621 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018))
+ (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-621 *5))
+ (-5 *1 (-921 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-356)
+ (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $)) (-15 -1404 (*7 $)))))))
((*1 *2 *1)
- (-12 (-4 *3 (-1067))
- (-4 *2 (-13 (-423 *4) (-857 *3) (-594 (-863 *3))))
- (-5 *1 (-1042 *3 *4 *2))
- (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3))))))
+ (-12 (-5 *2 (-1068 (-1142))) (-5 *1 (-937 *3)) (-4 *3 (-938))))
((*1 *2 *1)
- (-12 (-4 *2 (-1067)) (-5 *1 (-1132 *3 *2)) (-4 *3 (-1067)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-747)) (-5 *1 (-759 *2)) (-4 *2 (-38 (-400 (-549))))
- (-4 *2 (-170)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1067)) (-4 *6 (-1067))
- (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-660 *4 *5 *6)) (-4 *4 (-1067)))))
-(((*1 *2 *3 *4 *5 *5 *2)
- (|partial| -12 (-5 *2 (-112)) (-5 *3 (-923 *6)) (-5 *4 (-1143))
- (-5 *5 (-816 *7))
- (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-4 *7 (-13 (-1165) (-29 *6))) (-5 *1 (-218 *6 *7))))
- ((*1 *2 *3 *4 *4 *2)
- (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1139 *6)) (-5 *4 (-816 *6))
- (-4 *6 (-13 (-1165) (-29 *5)))
- (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-218 *5 *6)))))
-(((*1 *1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1067))))
- ((*1 *1 *2) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *3 *1) (-12 (-5 *3 (-1143)) (-5 *2 (-430)) (-5 *1 (-1147)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-2 (|:| -3337 (-1143)) (|:| -1793 *4))))
- (-5 *1 (-860 *3 *4)) (-4 *3 (-1067)) (-4 *4 (-1067))))
+ (-12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-768))
+ (-4 *5 (-823)) (-5 *2 (-621 *5))))
((*1 *2 *1)
- (-12 (-4 *3 (-1067)) (-4 *4 (-1067)) (-4 *5 (-1067)) (-4 *6 (-1067))
- (-4 *7 (-1067)) (-5 *2 (-621 *1)) (-4 *1 (-1070 *3 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *5 *5))
- (-4 *5 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
- (-5 *2
- (-2 (|:| |solns| (-621 *5))
- (|:| |maps| (-621 (-2 (|:| |arg| *5) (|:| |res| *5))))))
- (-5 *1 (-1095 *3 *5)) (-4 *3 (-1202 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-508)))))
-(((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170))))
- ((*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-112))
- (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-4 *3 (-13 (-27) (-1165) (-423 *6) (-10 -8 (-15 -3846 ($ *7)))))
- (-4 *7 (-821))
- (-4 *8
- (-13 (-1204 *3 *7) (-356) (-1165)
- (-10 -8 (-15 -3456 ($ $)) (-15 -3893 ($ $)))))
- (-5 *2
- (-3 (|:| |%series| *8)
- (|:| |%problem| (-2 (|:| |func| (-1125)) (|:| |prob| (-1125))))))
- (-5 *1 (-415 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1125)) (-4 *9 (-954 *8))
- (-14 *10 (-1143)))))
+ (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-621 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541)) (-5 *2 (-621 (-1142)))
+ (-5 *1 (-1014 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1066)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3))
+ (-4 *3 (-13 (-356) (-1164) (-973))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1247 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
- (-5 *2 (-795 *3))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-819)) (-5 *1 (-1249 *3 *2)) (-4 *3 (-1018)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *2 (-541))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *2 (-541)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-136))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-154))))
- ((*1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1180))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-470))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-573))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-604))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-1067))
- (-4 *2 (-13 (-423 *4) (-857 *3) (-594 (-863 *3))))
- (-5 *1 (-1042 *3 *4 *2))
- (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3))))))
+ (-12 (-4 *1 (-1089 *3 *4 *2 *5)) (-4 *4 (-1018)) (-4 *5 (-232 *3 *4))
+ (-4 *2 (-232 *3 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-219) (-219))) (-5 *1 (-311)) (-5 *3 (-219)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-379 *2)) (-4 *2 (-1066))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-621 (-923 *3))) (-4 *3 (-444))
+ (-5 *1 (-353 *3 *4)) (-14 *4 (-621 (-1142)))))
+ ((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-621 (-756 *3 (-836 *4)))) (-4 *3 (-444))
+ (-14 *4 (-621 (-1142))) (-5 *1 (-606 *3 *4)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-534))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *1 (-495 *3 *4 *5 *2)) (-4 *2 (-920 *3 *4 *5))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823))
+ (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))))
+(((*1 *2)
+ (-12 (-14 *4 (-747)) (-4 *5 (-1179)) (-5 *2 (-133))
+ (-5 *1 (-231 *3 *4 *5)) (-4 *3 (-232 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *4 (-356)) (-5 *2 (-133)) (-5 *1 (-321 *3 *4))
+ (-4 *3 (-322 *4))))
+ ((*1 *2)
+ (-12 (-5 *2 (-747)) (-5 *1 (-383 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
+ (-4 *5 (-170))))
((*1 *2 *1)
- (-12 (-4 *2 (-1067)) (-5 *1 (-1132 *2 *3)) (-4 *3 (-1067)))))
+ (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-549))
+ (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-621 *6)) (-4 *6 (-823)) (-4 *4 (-356)) (-4 *5 (-769))
+ (-5 *2 (-549)) (-5 *1 (-495 *4 *5 *6 *7)) (-4 *7 (-920 *4 *5 *6))))
+ ((*1 *2 *1) (-12 (-4 *1 (-951 *3)) (-4 *3 (-1018)) (-5 *2 (-892))))
+ ((*1 *2) (-12 (-4 *1 (-1232 *3)) (-4 *3 (-356)) (-5 *2 (-133)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1138 (-400 (-1138 *2)))) (-5 *4 (-592 *2))
+ (-4 *2 (-13 (-423 *5) (-27) (-1164)))
+ (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
+ (-5 *1 (-545 *5 *2 *6)) (-4 *6 (-1066))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1138 *1)) (-4 *1 (-920 *4 *5 *3)) (-4 *4 (-1018))
+ (-4 *5 (-769)) (-4 *3 (-823))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1138 *4)) (-4 *4 (-1018)) (-4 *1 (-920 *4 *5 *3))
+ (-4 *5 (-769)) (-4 *3 (-823))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-400 (-1138 *2))) (-4 *5 (-769)) (-4 *4 (-823))
+ (-4 *6 (-1018))
+ (-4 *2
+ (-13 (-356)
+ (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $)) (-15 -1404 (*7 $)))))
+ (-5 *1 (-921 *5 *4 *6 *7 *2)) (-4 *7 (-920 *6 *5 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-400 (-1138 (-400 (-923 *5))))) (-5 *4 (-1142))
+ (-5 *2 (-400 (-923 *5))) (-5 *1 (-1014 *5)) (-4 *5 (-541)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1216 *4)) (-5 *1 (-1218 *4 *2))
+ (-4 *4 (-38 (-400 (-549)))))))
+(((*1 *1 *2 *2 *2) (-12 (-5 *1 (-853 *2)) (-4 *2 (-1179)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *5 (-747)) (-4 *6 (-1067)) (-4 *7 (-871 *6))
- (-5 *2 (-665 *7)) (-5 *1 (-668 *6 *7 *3 *4)) (-4 *3 (-366 *7))
- (-4 *4 (-13 (-366 *6) (-10 -7 (-6 -4337)))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1139 (-400 (-923 *3)))) (-5 *1 (-445 *3 *4 *5 *6))
- (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-1142)) (-5 *1 (-323)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-747)) (-5 *2 (-665 (-923 *4))) (-5 *1 (-999 *4))
- (-4 *4 (-1018)))))
+ (-12 (-4 *2 (-342)) (-4 *2 (-1018)) (-5 *1 (-689 *2 *3))
+ (-4 *3 (-1201 *2)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-246 *2 *3 *4 *5)) (-4 *2 (-1018)) (-4 *3 (-823))
+ (-4 *4 (-259 *3)) (-4 *5 (-769)))))
+(((*1 *1 *1) (-5 *1 (-1030))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2))
+ (-4 *2 (-423 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-156 *4 *2))
+ (-4 *2 (-423 *4))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-158)) (-5 *2 (-1142))))
+ ((*1 *1 *1) (-4 *1 (-158))))
(((*1 *2 *3)
- (-12 (-5 *3 (-892)) (-5 *2 (-1139 *4)) (-5 *1 (-350 *4))
- (-4 *4 (-342)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-833)) (-5 *3 (-128)) (-5 *2 (-1087)))))
-(((*1 *2 *1) (-12 (-4 *1 (-360 *2)) (-4 *2 (-170)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-621 *5) *6))
- (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *6 (-1202 *5))
- (-5 *2 (-621 (-2 (|:| |poly| *6) (|:| -2652 *3))))
- (-5 *1 (-785 *5 *6 *3 *7)) (-4 *3 (-632 *6))
- (-4 *7 (-632 (-400 *6)))))
+ (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1066) (-1009 *5)))
+ (-4 *5 (-857 *4)) (-4 *4 (-1066)) (-5 *2 (-1 (-112) *5))
+ (-5 *1 (-902 *4 *5 *6)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2 *1 *3 *3 *2)
+ (-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *2 (-1179))
+ (-4 *4 (-366 *2)) (-4 *5 (-366 *2))))
+ ((*1 *1 *1 *2 *1)
+ (-12 (-5 *2 "right") (|has| *1 (-6 -4337)) (-4 *1 (-119 *3))
+ (-4 *3 (-1179))))
+ ((*1 *1 *1 *2 *1)
+ (-12 (-5 *2 "left") (|has| *1 (-6 -4337)) (-4 *1 (-119 *3))
+ (-4 *3 (-1179))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *3 (-747)) (-5 *1 (-207 *4 *2)) (-14 *4 (-892))
+ (-4 *2 (-1066))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-281 *3 *2)) (-4 *3 (-1066))
+ (-4 *2 (-1179))))
+ ((*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1142)) (-5 *1 (-610))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *3 (-1192 (-549))) (|has| *1 (-6 -4337)) (-4 *1 (-627 *2))
+ (-4 *2 (-1179))))
+ ((*1 *1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-621 (-549))) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018))
+ (-4 *4 (-366 *3)) (-4 *5 (-366 *3))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *3 "value") (|has| *1 (-6 -4337)) (-4 *1 (-981 *2))
+ (-4 *2 (-1179))))
+ ((*1 *2 *1 *2) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1179))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-4 *1 (-1155 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1066))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *3 "last") (|has| *1 (-6 -4337)) (-4 *1 (-1213 *2))
+ (-4 *2 (-1179))))
+ ((*1 *1 *1 *2 *1)
+ (-12 (-5 *2 "rest") (|has| *1 (-6 -4337)) (-4 *1 (-1213 *3))
+ (-4 *3 (-1179))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *3 "first") (|has| *1 (-6 -4337)) (-4 *1 (-1213 *2))
+ (-4 *2 (-1179)))))
+(((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-863 *4)) (-4 *4 (-1066)) (-5 *2 (-112))
+ (-5 *1 (-860 *4 *5)) (-4 *5 (-1066))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-621 *5) *6))
- (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
- (-4 *6 (-1202 *5))
- (-5 *2 (-621 (-2 (|:| |poly| *6) (|:| -2652 (-630 *6 (-400 *6))))))
- (-5 *1 (-788 *5 *6)) (-5 *3 (-630 *6 (-400 *6))))))
+ (-12 (-5 *4 (-863 *5)) (-4 *5 (-1066)) (-5 *2 (-112))
+ (-5 *1 (-861 *5 *3)) (-4 *3 (-1179))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 *6)) (-5 *4 (-863 *5)) (-4 *5 (-1066))
+ (-4 *6 (-1179)) (-5 *2 (-112)) (-5 *1 (-861 *5 *6)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-665 *5)) (-4 *5 (-1018)) (-5 *1 (-1022 *3 *4 *5))
- (-14 *3 (-747)) (-14 *4 (-747)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1143)) (-4 *4 (-444)) (-4 *4 (-823))
- (-5 *1 (-558 *4 *2)) (-4 *2 (-277)) (-4 *2 (-423 *4)))))
-(((*1 *1 *1 *1) (-4 *1 (-738))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1 (-914 (-219)) (-219) (-219)))
- (-5 *3 (-1 (-219) (-219) (-219) (-219))) (-5 *1 (-248)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-621 *3)) (-5 *1 (-940 *4 *3))
- (-4 *3 (-1202 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-5 *1 (-216 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1180)) (-4 *1 (-247 *3))))
- ((*1 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1180)))))
+ (-12 (-5 *1 (-1130 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-665 (-549))) (-5 *3 (-621 (-549))) (-5 *1 (-1076)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-621 *3)) (-4 *3 (-1201 (-549))) (-5 *1 (-478 *3)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1018)) (-14 *3 (-621 (-1142)))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-217 *2 *3)) (-4 *2 (-13 (-1018) (-823)))
+ (-14 *3 (-621 (-1142))))))
+(((*1 *1 *2 *3)
+ (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-621 (-892))) (-5 *1 (-150 *4 *2 *5)) (-14 *4 (-892))
+ (-4 *2 (-356)) (-14 *5 (-964 *4 *2))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-690 *5 *6 *7)) (-4 *5 (-823))
+ (-4 *6 (-232 (-3774 *4) (-747)))
+ (-14 *7
+ (-1 (-112) (-2 (|:| -3494 *5) (|:| -1714 *6))
+ (-2 (|:| -3494 *5) (|:| -1714 *6))))
+ (-14 *4 (-621 (-1142))) (-4 *2 (-170))
+ (-5 *1 (-453 *4 *2 *5 *6 *7 *8)) (-4 *8 (-920 *2 *6 (-836 *4)))))
+ ((*1 *1 *2 *3)
+ (-12 (-4 *1 (-500 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-823))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-549)) (-4 *2 (-541)) (-5 *1 (-601 *2 *4))
+ (-4 *4 (-1201 *2))))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-685 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *1 (-712 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-703))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-621 *5)) (-5 *3 (-621 (-747))) (-4 *1 (-717 *4 *5))
+ (-4 *4 (-1018)) (-4 *5 (-823))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-747)) (-4 *1 (-717 *4 *2)) (-4 *4 (-1018))
+ (-4 *2 (-823))))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-825 *2)) (-4 *2 (-1018))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-621 *6)) (-5 *3 (-621 (-747))) (-4 *1 (-920 *4 *5 *6))
+ (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-747)) (-4 *1 (-920 *4 *5 *2)) (-4 *4 (-1018))
+ (-4 *5 (-769)) (-4 *2 (-823))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-621 *6)) (-5 *3 (-621 *5)) (-4 *1 (-944 *4 *5 *6))
+ (-4 *4 (-1018)) (-4 *5 (-768)) (-4 *6 (-823))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-4 *1 (-944 *4 *3 *2)) (-4 *4 (-1018)) (-4 *3 (-768))
+ (-4 *2 (-823)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1138 *9)) (-5 *4 (-621 *7)) (-5 *5 (-621 (-621 *8)))
+ (-4 *7 (-823)) (-4 *8 (-300)) (-4 *9 (-920 *8 *6 *7)) (-4 *6 (-769))
+ (-5 *2
+ (-2 (|:| |upol| (-1138 *8)) (|:| |Lval| (-621 *8))
+ (|:| |Lfact|
+ (-621 (-2 (|:| -2119 (-1138 *8)) (|:| -1714 (-549)))))
+ (|:| |ctpol| *8)))
+ (-5 *1 (-719 *6 *7 *8 *9)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-4 *1 (-874 *3)))))
+(((*1 *1) (-5 *1 (-430))))
(((*1 *2 *1 *3)
(-12 (-5 *3 (-621 *1)) (-4 *1 (-1032 *4 *5 *6)) (-4 *4 (-1018))
(-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))))
@@ -12144,335 +12270,621 @@
(-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
(-4 *5 (-823)) (-5 *2 (-112))))
((*1 *2 *1)
- (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
+ (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
(-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112))))
((*1 *2 *3 *1)
- (-12 (-4 *1 (-1173 *4 *5 *6 *3)) (-4 *4 (-541)) (-4 *5 (-769))
+ (-12 (-4 *1 (-1172 *4 *5 *6 *3)) (-4 *4 (-541)) (-4 *5 (-769))
(-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-366 *3)) (-4 *3 (-1179)) (-4 *3 (-823)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-366 *4)) (-4 *4 (-1179))
+ (-5 *2 (-112)))))
+(((*1 *1 *1) (-5 *1 (-1030))))
+(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-125 *2)) (-4 *2 (-1066)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *2 (-823))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-769)) (-4 *5 (-1018)) (-4 *6 (-920 *5 *4 *2))
+ (-4 *2 (-823)) (-5 *1 (-921 *4 *2 *5 *6 *3))
+ (-4 *3
+ (-13 (-356)
+ (-10 -8 (-15 -3845 ($ *6)) (-15 -1392 (*6 $))
+ (-15 -1404 (*6 $)))))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541))
+ (-5 *2 (-1142)) (-5 *1 (-1014 *4)))))
+(((*1 *1 *1) (-12 (-5 *1 (-588 *2)) (-4 *2 (-1066))))
+ ((*1 *1 *1) (-5 *1 (-610))))
+(((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-396 *3)) (-4 *3 (-397))))
+ ((*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-396 *3)) (-4 *3 (-397))))
+ ((*1 *2 *2) (-12 (-5 *2 (-892)) (|has| *1 (-6 -4327)) (-4 *1 (-397))))
+ ((*1 *2) (-12 (-4 *1 (-397)) (-5 *2 (-892))))
+ ((*1 *2 *1) (-12 (-4 *1 (-840 *3)) (-5 *2 (-1122 (-549))))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| -4114 *3) (|:| |coef1| (-758 *3)) (|:| |coef2| (-758 *3))))
+ (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
+ ((*1 *2 *3) (-12 (-5 *3 (-942)) (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1225 *1)) (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183))
+ (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1198 *5 *4)) (-4 *4 (-444)) (-4 *4 (-796))
+ (-14 *5 (-1142)) (-5 *2 (-549)) (-5 *1 (-1080 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-923 (-549))) (-5 *2 (-621 *1)) (-4 *1 (-983))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-923 (-400 (-549)))) (-5 *2 (-621 *1)) (-4 *1 (-983))))
+ ((*1 *2 *3) (-12 (-5 *3 (-923 *1)) (-4 *1 (-983)) (-5 *2 (-621 *1))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1138 (-549))) (-5 *2 (-621 *1)) (-4 *1 (-983))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1138 (-400 (-549)))) (-5 *2 (-621 *1)) (-4 *1 (-983))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1138 *1)) (-4 *1 (-983)) (-5 *2 (-621 *1))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-821) (-356))) (-4 *3 (-1201 *4)) (-5 *2 (-621 *1))
+ (-4 *1 (-1035 *4 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-169)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892))
+ (-4 *4 (-1018)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-356)) (-5 *1 (-996 *3 *2)) (-4 *2 (-632 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-356)) (-5 *2 (-2 (|:| -2649 *3) (|:| -2718 (-621 *5))))
+ (-5 *1 (-996 *5 *3)) (-5 *4 (-621 *5)) (-4 *3 (-632 *5)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1122 *4)) (-5 *3 (-549)) (-4 *4 (-1018))
+ (-5 *1 (-1126 *4))))
+ ((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-549)) (-5 *1 (-1217 *3 *4 *5)) (-4 *3 (-1018))
+ (-14 *4 (-1142)) (-14 *5 *3))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1030)) (-5 *3 (-1124)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-736)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-1226 *4)) (-4 *4 (-1180)) (-4 *1 (-232 *3 *4)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-951 *2)) (-4 *2 (-1018))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1176))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-1018)))))
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-356))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-821)) (-5 *1 (-296 *3)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-1030)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-621 *6)) (-4 *1 (-920 *4 *5 *6)) (-4 *4 (-1018))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-747))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-920 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-5 *2 (-747)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *3 *1 *4 *4 *4 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-5 *2 (-621 (-998 *5 *6 *7 *3))) (-5 *1 (-998 *5 *6 *7 *3))
+ (-4 *3 (-1032 *5 *6 *7))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-621 *6)) (-4 *1 (-1038 *3 *4 *5 *6)) (-4 *3 (-444))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5))))
+ ((*1 *1 *2 *1)
+ (-12 (-4 *1 (-1038 *3 *4 *5 *2)) (-4 *3 (-444)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5))))
+ ((*1 *2 *3 *1 *4 *4 *4 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-5 *2 (-621 (-1112 *5 *6 *7 *3))) (-5 *1 (-1112 *5 *6 *7 *3))
+ (-4 *3 (-1032 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-4 *1 (-382)) (-5 *2 (-1124)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-747)) (-4 *4 (-13 (-541) (-145)))
+ (-5 *1 (-1195 *4 *2)) (-4 *2 (-1201 *4)))))
+(((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-658 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1172 *4 *5 *6 *3)) (-4 *4 (-541)) (-4 *5 (-769))
+ (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-400 (-549))) (-5 *1 (-298)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-460)) (-5 *4 (-892)) (-5 *2 (-1230)) (-5 *1 (-1226)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3))
+ (-4 *3 (-1201 *2)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-227)) (-4 *3 (-1018)) (-4 *4 (-823)) (-4 *5 (-259 *4))
+ (-4 *6 (-769)) (-5 *2 (-1 *1 (-747))) (-4 *1 (-246 *3 *4 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-1018)) (-4 *3 (-823)) (-4 *5 (-259 *3)) (-4 *6 (-769))
+ (-5 *2 (-1 *1 (-747))) (-4 *1 (-246 *4 *3 *5 *6))))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-747)) (-4 *1 (-259 *2)) (-4 *2 (-823)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-309 (-219)))) (-5 *2 (-112)) (-5 *1 (-260))))
+ ((*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-112)) (-5 *1 (-260))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
+ (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1216 *4)) (-5 *1 (-1218 *4 *2))
+ (-4 *4 (-38 (-400 (-549)))))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-329 *5 *6 *7 *8)) (-4 *5 (-423 *4))
+ (-4 *6 (-1201 *5)) (-4 *7 (-1201 (-400 *6)))
+ (-4 *8 (-335 *5 *6 *7))
+ (-4 *4 (-13 (-823) (-541) (-1009 (-549))))
+ (-5 *2 (-2 (|:| -2729 (-747)) (|:| -3567 *8)))
+ (-5 *1 (-882 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-329 (-400 (-549)) *4 *5 *6))
+ (-4 *4 (-1201 (-400 (-549)))) (-4 *5 (-1201 (-400 *4)))
+ (-4 *6 (-335 (-400 (-549)) *4 *5))
+ (-5 *2 (-2 (|:| -2729 (-747)) (|:| -3567 *6)))
+ (-5 *1 (-883 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-136))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1178)) (-5 *1 (-154))))
+ ((*1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1179))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-470))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-573))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-604))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-1066))
+ (-4 *2 (-13 (-423 *4) (-857 *3) (-594 (-863 *3))))
+ (-5 *1 (-1042 *3 *4 *2))
+ (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3))))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-1066)) (-5 *1 (-1131 *3 *2)) (-4 *3 (-1066)))))
+(((*1 *1 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)) (-4 *2 (-1027))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142)))
+ (-14 *3 (-621 (-1142))) (-4 *4 (-380))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
+ (-4 *2 (-423 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)) (-4 *2 (-1027))))
+ ((*1 *1 *1) (-4 *1 (-821)))
+ ((*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)) (-4 *2 (-1027))))
+ ((*1 *1 *1) (-4 *1 (-1027))) ((*1 *1 *1) (-4 *1 (-1105))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-621 (-836 *5))) (-14 *5 (-621 (-1142))) (-4 *6 (-444))
+ (-5 *2 (-621 (-621 (-241 *5 *6)))) (-5 *1 (-463 *5 *6 *7))
+ (-5 *3 (-621 (-241 *5 *6))) (-4 *7 (-444)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-592 *1)) (-4 *1 (-295)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1142)) (-4 *5 (-356)) (-5 *2 (-1122 (-1122 (-923 *5))))
+ (-5 *1 (-1233 *5)) (-5 *4 (-1122 (-923 *5))))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1193 (-549))) (-4 *1 (-627 *3)) (-4 *3 (-1180))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-627 *3)) (-4 *3 (-1180)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-747)) (-5 *6 (-112)) (-4 *7 (-444)) (-4 *8 (-769))
- (-4 *9 (-823)) (-4 *3 (-1032 *7 *8 *9))
+ (-12 (-4 *1 (-947 *3 *4 *2 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *2 (-823)) (-4 *5 (-1032 *3 *4 *2)))))
+(((*1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1149)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-411 (-1138 *1))) (-5 *1 (-309 *4)) (-5 *3 (-1138 *1))
+ (-4 *4 (-444)) (-4 *4 (-541)) (-4 *4 (-823))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-880)) (-5 *2 (-411 (-1138 *1))) (-5 *3 (-1138 *1)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-2 (|:| -3336 (-1142)) (|:| -1791 *4))))
+ (-5 *1 (-860 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-1066)) (-4 *4 (-1066)) (-4 *5 (-1066)) (-4 *6 (-1066))
+ (-4 *7 (-1066)) (-5 *2 (-621 *1)) (-4 *1 (-1069 *3 *4 *5 *6 *7)))))
+(((*1 *2 *2) (-12 (-5 *2 (-309 (-219))) (-5 *1 (-260)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-923 (-549))))
+ (-5 *4 (-309 (-167 (-372)))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-923 (-549))))
+ (-5 *4 (-309 (-372))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-923 (-549))))
+ (-5 *4 (-309 (-549))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-309 (-167 (-372)))))
+ (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-309 (-372)))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-309 (-549)))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-309 (-167 (-372)))))
+ (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-309 (-372)))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-309 (-549)))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-309 (-167 (-372)))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-309 (-372))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-309 (-549))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-923 (-549))))
+ (-5 *4 (-309 (-670))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-923 (-549))))
+ (-5 *4 (-309 (-675))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-923 (-549))))
+ (-5 *4 (-309 (-677))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-309 (-670)))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-309 (-675)))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-309 (-677)))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-309 (-670)))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-309 (-675)))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-309 (-677)))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-670))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-675))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-1225 (-677))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-670))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-675))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-665 (-677))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-309 (-670))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-309 (-675))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-309 (-677))) (-5 *1 (-323))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1124)) (-5 *1 (-323))))
+ ((*1 *1 *1 *1) (-5 *1 (-834))))
+(((*1 *2)
+ (-12 (-5 *2 (-665 (-881 *3))) (-5 *1 (-344 *3 *4)) (-14 *3 (-892))
+ (-14 *4 (-892))))
+ ((*1 *2)
+ (-12 (-5 *2 (-665 *3)) (-5 *1 (-345 *3 *4)) (-4 *3 (-342))
+ (-14 *4
+ (-3 (-1138 *3)
+ (-1225 (-621 (-2 (|:| -4160 *3) (|:| -3494 (-1086)))))))))
+ ((*1 *2)
+ (-12 (-5 *2 (-665 *3)) (-5 *1 (-346 *3 *4)) (-4 *3 (-342))
+ (-14 *4 (-892)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-136))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-154))))
+ ((*1 *2 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1179))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-470))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-573))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-604))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-1066))
+ (-4 *2 (-13 (-423 *4) (-857 *3) (-594 (-863 *3))))
+ (-5 *1 (-1042 *3 *4 *2))
+ (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3))))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-1066)) (-5 *1 (-1131 *2 *3)) (-4 *3 (-1066)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-400 (-549))) (-4 *1 (-539 *3))
+ (-4 *3 (-13 (-397) (-1164)))))
+ ((*1 *1 *2) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1164)))))
+ ((*1 *1 *2 *2) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1164))))))
+(((*1 *2)
+ (-12 (-4 *4 (-1183)) (-4 *5 (-1201 *4)) (-4 *6 (-1201 (-400 *5)))
+ (-5 *2 (-621 (-621 *4))) (-5 *1 (-334 *3 *4 *5 *6))
+ (-4 *3 (-335 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-4 *3 (-361)) (-5 *2 (-621 (-621 *3))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-444)) (-4 *3 (-823)) (-4 *3 (-1009 (-549)))
+ (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-423 *3))
+ (-4 *2
+ (-13 (-356) (-295)
+ (-10 -8 (-15 -1392 ((-1091 *3 (-592 $)) $))
+ (-15 -1404 ((-1091 *3 (-592 $)) $))
+ (-15 -3845 ($ (-1091 *3 (-592 $))))))))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-769)) (-4 *6 (-823)) (-4 *7 (-541))
+ (-4 *3 (-920 *7 *5 *6))
(-5 *2
- (-2 (|:| |done| (-621 *4))
- (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4))))))
- (-5 *1 (-1036 *7 *8 *9 *3 *4)) (-4 *4 (-1038 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-747)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
- (-4 *3 (-1032 *6 *7 *8))
+ (-2 (|:| -1714 (-747)) (|:| -1569 *3) (|:| |radicand| (-621 *3))))
+ (-5 *1 (-924 *5 *6 *7 *3 *8)) (-5 *4 (-747))
+ (-4 *8
+ (-13 (-356)
+ (-10 -8 (-15 -1392 (*3 $)) (-15 -1404 (*3 $)) (-15 -3845 ($ *3))))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-756 *5 (-836 *6)))) (-5 *4 (-112)) (-4 *5 (-444))
+ (-14 *6 (-621 (-1142)))
(-5 *2
- (-2 (|:| |done| (-621 *4))
- (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4))))))
- (-5 *1 (-1036 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3))))
+ (-621 (-1112 *5 (-521 (-836 *6)) (-836 *6) (-756 *5 (-836 *6)))))
+ (-5 *1 (-606 *5 *6)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1066)) (-4 *1 (-874 *3)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-169)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-947 *4 *5 *6 *3)) (-4 *4 (-1018)) (-4 *5 (-769))
+ (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-4 *4 (-541))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-273))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-923 *4)) (-4 *4 (-1018)) (-4 *4 (-594 *2))
+ (-5 *2 (-372)) (-5 *1 (-761 *4))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-621 *4))
- (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4))))))
- (-5 *1 (-1036 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-747)) (-5 *6 (-112)) (-4 *7 (-444)) (-4 *8 (-769))
- (-4 *9 (-823)) (-4 *3 (-1032 *7 *8 *9))
- (-5 *2
- (-2 (|:| |done| (-621 *4))
- (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4))))))
- (-5 *1 (-1112 *7 *8 *9 *3 *4)) (-4 *4 (-1076 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-747)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
- (-4 *3 (-1032 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-621 *4))
- (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4))))))
- (-5 *1 (-1112 *6 *7 *8 *3 *4)) (-4 *4 (-1076 *6 *7 *8 *3))))
+ (|partial| -12 (-5 *3 (-923 *5)) (-5 *4 (-892)) (-4 *5 (-1018))
+ (-4 *5 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541))
+ (-4 *4 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *4))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-621 *4))
- (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4))))))
- (-5 *1 (-1112 *5 *6 *7 *3 *4)) (-4 *4 (-1076 *5 *6 *7 *3)))))
+ (|partial| -12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-892)) (-4 *5 (-541))
+ (-4 *5 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-309 *4)) (-4 *4 (-541)) (-4 *4 (-823))
+ (-4 *4 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-309 *5)) (-5 *4 (-892)) (-4 *5 (-541))
+ (-4 *5 (-823)) (-4 *5 (-594 *2)) (-5 *2 (-372))
+ (-5 *1 (-761 *5)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-387))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1159)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1130 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))))
+(((*1 *2 *3 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-728)))))
+(((*1 *1 *1 *1)
+ (|partial| -12 (-4 *2 (-170)) (-5 *1 (-282 *2 *3 *4 *5 *6 *7))
+ (-4 *3 (-1201 *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 (-688 *2 *3 *4 *5 *6)) (-4 *2 (-170))
+ (-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 *1)
+ (|partial| -12 (-5 *1 (-692 *2 *3 *4 *5 *6)) (-4 *2 (-170))
+ (-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 *5 *6 *5)
+ (-12 (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *6 (-1124))
+ (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1143)) (-5 *4 (-923 (-549))) (-5 *2 (-323))
- (-5 *1 (-325)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *5 (-1125))
- (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-81 PDEF))))
- (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-82 BNDY)))) (-5 *2 (-1006))
- (-5 *1 (-727)))))
-(((*1 *2 *3) (-12 (-5 *3 (-219)) (-5 *2 (-400 (-549))) (-5 *1 (-298)))))
-(((*1 *2 *1) (-12 (-4 *1 (-295)) (-5 *2 (-621 (-114))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-241 *4 *5)) (-14 *4 (-621 (-1143))) (-4 *5 (-1018))
- (-5 *2 (-923 *5)) (-5 *1 (-915 *4 *5)))))
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-800)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-797)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-549))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-549))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-549)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1225 *4)) (-4 *4 (-1179)) (-4 *1 (-232 *3 *4)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *4 (-549))) (-5 *5 (-1 (-1122 *4))) (-4 *4 (-356))
+ (-4 *4 (-1018)) (-5 *2 (-1122 *4)) (-5 *1 (-1126 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1244 *3)) (-4 *3 (-356)) (-5 *2 (-112)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-145)) (-4 *2 (-300)) (-4 *2 (-444)) (-4 *3 (-823))
+ (-4 *4 (-769)) (-5 *1 (-958 *2 *3 *4 *5)) (-4 *5 (-920 *2 *4 *3))))
+ ((*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-309 (-549))) (-5 *1 (-1085))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1124)) (-5 *4 (-549)) (-5 *5 (-665 (-167 (-219))))
+ (-5 *2 (-1006)) (-5 *1 (-731)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1192 (-549))) (-4 *1 (-627 *3)) (-4 *3 (-1179))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-627 *3)) (-4 *3 (-1179)))))
+(((*1 *2 *1 *1 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1)))
+ (-4 *1 (-300))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4247 *1)))
+ (-4 *1 (-300)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1142))
+ (-5 *2 (-3 (|:| |fst| (-427)) (|:| -2901 "void"))) (-5 *1 (-1145)))))
(((*1 *2 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-309 *4))
- (-5 *1 (-182 *4 *3)) (-4 *3 (-13 (-27) (-1165) (-423 (-167 *4))))))
+ (-5 *1 (-182 *4 *3)) (-4 *3 (-13 (-27) (-1164) (-423 (-167 *4))))))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-1169 *3 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *3))))))
-(((*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10)
- (|partial| -12 (-5 *2 (-621 (-1139 *13))) (-5 *3 (-1139 *13))
- (-5 *4 (-621 *12)) (-5 *5 (-621 *10)) (-5 *6 (-621 *13))
- (-5 *7 (-621 (-621 (-2 (|:| -2099 (-747)) (|:| |pcoef| *13)))))
- (-5 *8 (-621 (-747))) (-5 *9 (-1226 (-621 (-1139 *10))))
- (-4 *12 (-823)) (-4 *10 (-300)) (-4 *13 (-920 *10 *11 *12))
- (-4 *11 (-769)) (-5 *1 (-684 *11 *12 *10 *13)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-549)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime"))
- (-5 *1 (-411 *4)) (-4 *4 (-541)))))
-(((*1 *2 *3 *2 *4 *5)
- (-12 (-5 *2 (-621 *3)) (-5 *5 (-892)) (-4 *3 (-1202 *4))
- (-4 *4 (-300)) (-5 *1 (-452 *4 *3)))))
+ (-5 *1 (-1168 *3 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *3))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018))
- (-14 *4 (-621 (-1143)))))
+ (-12 (-4 *1 (-319 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768))
+ (-5 *2 (-621 *3))))
((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823)))
- (-14 *4 (-621 (-1143))))))
+ (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1066))
+ (-5 *2 (-621 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1122 *3)) (-5 *1 (-577 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-621 *3)) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-703))))
+ ((*1 *2 *1) (-12 (-4 *1 (-825 *3)) (-4 *3 (-1018)) (-5 *2 (-621 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1216 *3)) (-4 *3 (-1018)) (-5 *2 (-1122 *3)))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-1122 *3))) (-5 *1 (-1122 *3)) (-4 *3 (-1179)))))
+(((*1 *2 *3 *3 *3 *3)
+ (-12 (-5 *3 (-549)) (-5 *2 (-112)) (-5 *1 (-472)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3))
+ (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3))
(-4 *5 (-366 *3)) (-5 *2 (-747))))
((*1 *2 *1)
(-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
(-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-747)))))
-(((*1 *2 *1 *2) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-621 (-923 *4))) (-5 *3 (-621 (-1143))) (-4 *4 (-444))
- (-5 *1 (-889 *4)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018))))
- ((*1 *2 *1 *1)
- (-12 (-4 *2 (-1018)) (-5 *1 (-50 *2 *3)) (-14 *3 (-621 (-1143)))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-621 (-892))) (-4 *2 (-356)) (-5 *1 (-150 *4 *2 *5))
- (-14 *4 (-892)) (-14 *5 (-964 *4 *2))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-309 *3)) (-5 *1 (-217 *3 *4))
- (-4 *3 (-13 (-1018) (-823))) (-14 *4 (-621 (-1143)))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-316 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-130))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1067)) (-4 *2 (-1018))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-549)) (-4 *2 (-541)) (-5 *1 (-601 *2 *4))
- (-4 *4 (-1202 *2))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *1 (-685 *2)) (-4 *2 (-1018))))
- ((*1 *2 *1 *3)
- (-12 (-4 *2 (-1018)) (-5 *1 (-712 *2 *3)) (-4 *3 (-703))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-621 *5)) (-5 *3 (-621 (-747))) (-4 *1 (-717 *4 *5))
- (-4 *4 (-1018)) (-4 *5 (-823))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-747)) (-4 *1 (-717 *4 *2)) (-4 *4 (-1018))
- (-4 *2 (-823))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-747)) (-4 *1 (-825 *2)) (-4 *2 (-1018))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-621 *6)) (-5 *3 (-621 (-747))) (-4 *1 (-920 *4 *5 *6))
- (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *6 (-823))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-747)) (-4 *1 (-920 *4 *5 *2)) (-4 *4 (-1018))
- (-4 *5 (-769)) (-4 *2 (-823))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-747)) (-4 *2 (-920 *4 (-521 *5) *5))
- (-5 *1 (-1093 *4 *5 *2)) (-4 *4 (-1018)) (-4 *5 (-823))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-747)) (-5 *2 (-923 *4)) (-5 *1 (-1174 *4))
- (-4 *4 (-1018)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-621 *4))
- (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-621 (-549))) (-5 *3 (-665 (-549))) (-5 *1 (-1077)))))
-(((*1 *2 *2 *3) (-12 (-5 *3 (-747)) (-5 *1 (-568 *2)) (-4 *2 (-534)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-155)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-541)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3))
- (-5 *1 (-1170 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-52)) (-5 *1 (-805)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-5 *1 (-876 *3)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6))
+ (-5 *2 (-2 (|:| |bas| (-468 *4 *5 *6 *7)) (|:| -2316 (-621 *7))))
+ (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1192 (-549))) (-4 *1 (-275 *3)) (-4 *3 (-1179))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-275 *3)) (-4 *3 (-1179)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
+ (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
(((*1 *2 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-309 *4))
- (-5 *1 (-182 *4 *3)) (-4 *3 (-13 (-27) (-1165) (-423 (-167 *4))))))
+ (-5 *1 (-182 *4 *3)) (-4 *3 (-13 (-27) (-1164) (-423 (-167 *4))))))
((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170))))
((*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170))))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-1169 *3 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *3))))))
-(((*1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-107))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-525))) (-5 *1 (-525)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))
- (-5 *2 (-372)) (-5 *1 (-260))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1226 (-309 (-219)))) (-5 *2 (-372)) (-5 *1 (-298)))))
+ (-5 *1 (-1168 *3 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *3))))))
+(((*1 *2 *1 *2)
+ (-12 (-4 *1 (-357 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1066)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-665 (-400 (-549))))
+ (-5 *2
+ (-621
+ (-2 (|:| |outval| *4) (|:| |outmult| (-549))
+ (|:| |outvect| (-621 (-665 *4))))))
+ (-5 *1 (-755 *4)) (-4 *4 (-13 (-356) (-821))))))
+(((*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-112)) (-5 *1 (-260)))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3))
+ (-4 *3 (-1066)))))
+(((*1 *1) (-5 *1 (-139))))
(((*1 *2 *1)
- (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3))
+ (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3))
(-4 *5 (-366 *3)) (-5 *2 (-747))))
((*1 *2 *1)
(-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
(-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-747)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-621 (-621 (-621 *4)))) (-5 *2 (-621 (-621 *4)))
- (-4 *4 (-823)) (-5 *1 (-1151 *4)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-747)) (-4 *4 (-13 (-541) (-145)))
- (-5 *1 (-1196 *4 *2)) (-4 *2 (-1202 *4)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1123 (-2 (|:| |k| (-549)) (|:| |c| *3))))
- (-5 *1 (-576 *3)) (-4 *3 (-1018)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541)))))
-(((*1 *1 *2) (-12 (-5 *1 (-221 *2)) (-4 *2 (-13 (-356) (-1165))))))
+(((*1 *1 *1) (-5 *1 (-1030))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-665 *5))) (-5 *4 (-549)) (-4 *5 (-356))
+ (-4 *5 (-1018)) (-5 *2 (-112)) (-5 *1 (-1000 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-665 *4))) (-4 *4 (-356)) (-4 *4 (-1018))
+ (-5 *2 (-112)) (-5 *1 (-1000 *4)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1066)) (-5 *1 (-1151 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170))))
+ ((*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6)
+ (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-219))
+ (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN)))) (-5 *2 (-1006))
+ (-5 *1 (-726)))))
+(((*1 *2)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-5 *2 (-665 (-400 *4))))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *3))
- (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6)))))
+ (-12 (-5 *3 (-621 *4)) (-4 *4 (-356)) (-4 *2 (-1201 *4))
+ (-5 *1 (-893 *4 *2)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143)))
- (-14 *3 (-621 (-1143))) (-4 *4 (-380))))
+ (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142)))
+ (-14 *3 (-621 (-1142))) (-4 *4 (-380))))
((*1 *1 *1 *2) (-12 (-4 *1 (-840 *3)) (-5 *2 (-549))))
((*1 *1 *1) (-4 *1 (-973)))
((*1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-983))))
((*1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-4 *1 (-983))))
((*1 *1 *1 *2) (-12 (-4 *1 (-983)) (-5 *2 (-892))))
((*1 *1 *1) (-4 *1 (-983))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-621 *1)) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5))
- (-4 *4 (-366 *3)) (-4 *5 (-366 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *3 (-1018)) (-4 *1 (-663 *3 *4 *5))
- (-4 *4 (-366 *3)) (-4 *5 (-366 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1226 *3)) (-4 *3 (-1018)) (-5 *1 (-665 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-621 *4)) (-4 *4 (-1018)) (-4 *1 (-1090 *3 *4 *5 *6))
- (-4 *5 (-232 *3 *4)) (-4 *6 (-232 *3 *4)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-549)) (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-300))
- (-4 *9 (-920 *8 *6 *7))
- (-5 *2 (-2 (|:| -3028 (-1139 *9)) (|:| |polval| (-1139 *8))))
- (-5 *1 (-719 *6 *7 *8 *9)) (-5 *3 (-1139 *9)) (-5 *4 (-1139 *8)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-342)) (-5 *2 (-411 *3)) (-5 *1 (-210 *4 *3))
- (-4 *3 (-1202 *4))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3))
- (-4 *3 (-1202 (-549)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 (-747))) (-5 *2 (-411 *3)) (-5 *1 (-434 *3))
- (-4 *3 (-1202 (-549)))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-621 (-747))) (-5 *5 (-747)) (-5 *2 (-411 *3))
- (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3))
- (-4 *3 (-1202 (-549)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-411 *3)) (-5 *1 (-978 *3))
- (-4 *3 (-1202 (-400 (-549))))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-411 *3)) (-5 *1 (-1191 *3)) (-4 *3 (-1202 (-549))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 *4)) (-4 *4 (-823)) (-5 *2 (-621 (-640 *4 *5)))
- (-5 *1 (-605 *4 *5 *6)) (-4 *5 (-13 (-170) (-694 (-400 (-549)))))
- (-14 *6 (-892)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4337)) (-4 *1 (-229 *3))
- (-4 *3 (-1067))))
- ((*1 *1 *2 *1)
- (-12 (|has| *1 (-6 -4337)) (-4 *1 (-229 *2)) (-4 *2 (-1067))))
- ((*1 *1 *2 *1)
- (-12 (-4 *1 (-275 *2)) (-4 *2 (-1180)) (-4 *2 (-1067))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-275 *3)) (-4 *3 (-1180))))
- ((*1 *2 *3 *1)
- (|partial| -12 (-4 *1 (-590 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1067))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-549)) (-4 *4 (-1067))
- (-5 *1 (-714 *4))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-549)) (-5 *1 (-714 *2)) (-4 *2 (-1067))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1107 *3 *4)) (-4 *3 (-13 (-1067) (-34)))
- (-4 *4 (-13 (-1067) (-34))) (-5 *1 (-1108 *3 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1160)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-590 *3 *4)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-5 *2 (-112)))))
+(((*1 *2)
+ (-12 (-4 *3 (-1018)) (-5 *2 (-929 (-689 *3 *4))) (-5 *1 (-689 *3 *4))
+ (-4 *4 (-1201 *3)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-936))) (-5 *1 (-284)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-112)) (-5 *5 (-1069 (-747))) (-5 *6 (-747))
- (-5 *2
- (-2 (|:| |contp| (-549))
- (|:| -4024 (-621 (-2 (|:| |irr| *3) (|:| -2495 (-549)))))))
- (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-541)) (-4 *3 (-170)) (-4 *4 (-366 *3))
- (-4 *5 (-366 *3)) (-5 *1 (-664 *3 *4 *5 *2))
- (-4 *2 (-663 *3 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *4 (-356)) (-5 *2 (-621 (-1123 *4))) (-5 *1 (-278 *4 *5))
- (-5 *3 (-1123 *4)) (-4 *5 (-1217 *4)))))
+ (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
+ (-5 *2 (-2 (|:| |k| (-795 *3)) (|:| |c| *4))))))
+(((*1 *2 *1)
+ (-12 (-4 *4 (-1066)) (-5 *2 (-112)) (-5 *1 (-856 *3 *4 *5))
+ (-4 *3 (-1066)) (-4 *5 (-642 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-860 *3 *4)) (-4 *3 (-1066))
+ (-4 *4 (-1066)))))
+(((*1 *1 *1 *1) (-5 *1 (-834))))
+(((*1 *2 *3 *3 *1)
+ (|partial| -12 (-5 *3 (-1142)) (-5 *2 (-1070)) (-5 *1 (-284)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1147)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1124) (-750))) (-5 *1 (-114)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-549)) (-4 *1 (-1060 *3)) (-4 *3 (-1180)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1199 *5 *4)) (-4 *4 (-796)) (-14 *5 (-1143))
- (-5 *2 (-549)) (-5 *1 (-1081 *4 *5)))))
+ (-12 (-5 *2 (-549)) (-4 *1 (-1059 *3)) (-4 *3 (-1179)))))
+(((*1 *2 *3 *3 *3)
+ (|partial| -12 (-4 *4 (-13 (-356) (-145) (-1009 (-549))))
+ (-4 *5 (-1201 *4)) (-5 *2 (-621 (-400 *5))) (-5 *1 (-987 *4 *5))
+ (-5 *3 (-400 *5)))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-621 (-48))) (-5 *2 (-411 *3)) (-5 *1 (-39 *3))
- (-4 *3 (-1202 (-48)))))
+ (-4 *3 (-1201 (-48)))))
((*1 *2 *3)
- (-12 (-5 *2 (-411 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1202 (-48)))))
+ (-12 (-5 *2 (-411 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1201 (-48)))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-621 (-48))) (-4 *5 (-823)) (-4 *6 (-769))
(-5 *2 (-411 *3)) (-5 *1 (-42 *5 *6 *3)) (-4 *3 (-920 (-48) *6 *5))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-621 (-48))) (-4 *5 (-823)) (-4 *6 (-769))
- (-4 *7 (-920 (-48) *6 *5)) (-5 *2 (-411 (-1139 *7)))
- (-5 *1 (-42 *5 *6 *7)) (-5 *3 (-1139 *7))))
+ (-4 *7 (-920 (-48) *6 *5)) (-5 *2 (-411 (-1138 *7)))
+ (-5 *1 (-42 *5 *6 *7)) (-5 *3 (-1138 *7))))
((*1 *2 *3)
(-12 (-4 *4 (-300)) (-5 *2 (-411 *3)) (-5 *1 (-165 *4 *3))
- (-4 *3 (-1202 (-167 *4)))))
+ (-4 *3 (-1201 (-167 *4)))))
((*1 *2 *3 *4 *5)
(-12 (-5 *5 (-112)) (-4 *4 (-13 (-356) (-821))) (-5 *2 (-411 *3))
- (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4)))))
+ (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4)))))
((*1 *2 *3 *4)
(-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-411 *3))
- (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4)))))
+ (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4)))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-411 *3))
- (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4)))))
+ (-5 *1 (-179 *4 *3)) (-4 *3 (-1201 (-167 *4)))))
((*1 *2 *3)
(-12 (-4 *4 (-342)) (-5 *2 (-411 *3)) (-5 *1 (-210 *4 *3))
- (-4 *3 (-1202 *4))))
+ (-4 *3 (-1201 *4))))
((*1 *2 *3)
- (-12 (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549)))))
+ (-12 (-5 *2 (-411 *3)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549)))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3))
- (-4 *3 (-1202 (-549)))))
+ (-4 *3 (-1201 (-549)))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-621 (-747))) (-5 *2 (-411 *3)) (-5 *1 (-434 *3))
- (-4 *3 (-1202 (-549)))))
+ (-4 *3 (-1201 (-549)))))
((*1 *2 *3 *4 *5)
(-12 (-5 *4 (-621 (-747))) (-5 *5 (-747)) (-5 *2 (-411 *3))
- (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549)))))
+ (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549)))))
((*1 *2 *3 *4 *4)
(-12 (-5 *4 (-747)) (-5 *2 (-411 *3)) (-5 *1 (-434 *3))
- (-4 *3 (-1202 (-549)))))
+ (-4 *3 (-1201 (-549)))))
((*1 *2 *3)
(-12 (-5 *2 (-411 (-167 (-549)))) (-5 *1 (-438))
(-5 *3 (-167 (-549)))))
@@ -12480,63 +12892,63 @@
(-12
(-4 *4
(-13 (-823)
- (-10 -8 (-15 -2845 ((-1143) $))
- (-15 -3011 ((-3 $ "failed") (-1143))))))
+ (-10 -8 (-15 -2843 ((-1142) $))
+ (-15 -3009 ((-3 $ "failed") (-1142))))))
(-4 *5 (-769)) (-4 *7 (-541)) (-5 *2 (-411 *3))
(-5 *1 (-448 *4 *5 *6 *7 *3)) (-4 *6 (-541))
(-4 *3 (-920 *7 *5 *4))))
((*1 *2 *3)
- (-12 (-4 *4 (-300)) (-5 *2 (-411 (-1139 *4))) (-5 *1 (-450 *4))
- (-5 *3 (-1139 *4))))
+ (-12 (-4 *4 (-300)) (-5 *2 (-411 (-1138 *4))) (-5 *1 (-450 *4))
+ (-5 *3 (-1138 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-411 *6) *6)) (-4 *6 (-1202 *5)) (-4 *5 (-356))
+ (-12 (-5 *4 (-1 (-411 *6) *6)) (-4 *6 (-1201 *5)) (-4 *5 (-356))
(-4 *7 (-13 (-356) (-145) (-701 *5 *6))) (-5 *2 (-411 *3))
- (-5 *1 (-485 *5 *6 *7 *3)) (-4 *3 (-1202 *7))))
+ (-5 *1 (-485 *5 *6 *7 *3)) (-4 *3 (-1201 *7))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-411 (-1139 *7)) (-1139 *7)))
+ (-12 (-5 *4 (-1 (-411 (-1138 *7)) (-1138 *7)))
(-4 *7 (-13 (-300) (-145))) (-4 *5 (-823)) (-4 *6 (-769))
(-5 *2 (-411 *3)) (-5 *1 (-529 *5 *6 *7 *3))
(-4 *3 (-920 *7 *6 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-411 (-1139 *7)) (-1139 *7)))
+ (-12 (-5 *4 (-1 (-411 (-1138 *7)) (-1138 *7)))
(-4 *7 (-13 (-300) (-145))) (-4 *5 (-823)) (-4 *6 (-769))
- (-4 *8 (-920 *7 *6 *5)) (-5 *2 (-411 (-1139 *8)))
- (-5 *1 (-529 *5 *6 *7 *8)) (-5 *3 (-1139 *8))))
+ (-4 *8 (-920 *7 *6 *5)) (-5 *2 (-411 (-1138 *8)))
+ (-5 *1 (-529 *5 *6 *7 *8)) (-5 *3 (-1138 *8))))
((*1 *2 *3) (-12 (-5 *2 (-411 *3)) (-5 *1 (-543 *3)) (-4 *3 (-534))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-1 (-621 *5) *6))
(-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
- (-4 *6 (-1202 *5)) (-5 *2 (-621 (-629 (-400 *6))))
+ (-4 *6 (-1201 *5)) (-5 *2 (-621 (-629 (-400 *6))))
(-5 *1 (-633 *5 *6)) (-5 *3 (-629 (-400 *6)))))
((*1 *2 *3)
(-12 (-4 *4 (-27))
(-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
- (-4 *5 (-1202 *4)) (-5 *2 (-621 (-629 (-400 *5))))
+ (-4 *5 (-1201 *4)) (-5 *2 (-621 (-629 (-400 *5))))
(-5 *1 (-633 *4 *5)) (-5 *3 (-629 (-400 *5)))))
((*1 *2 *3)
(-12 (-5 *3 (-795 *4)) (-4 *4 (-823)) (-5 *2 (-621 (-648 *4)))
(-5 *1 (-648 *4))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-549)) (-5 *2 (-621 *3)) (-5 *1 (-672 *3))
- (-4 *3 (-1202 *4))))
+ (-4 *3 (-1201 *4))))
((*1 *2 *3)
(-12 (-4 *4 (-823)) (-4 *5 (-769)) (-4 *6 (-342)) (-5 *2 (-411 *3))
(-5 *1 (-674 *4 *5 *6 *3)) (-4 *3 (-920 *6 *5 *4))))
((*1 *2 *3)
(-12 (-4 *4 (-823)) (-4 *5 (-769)) (-4 *6 (-342))
- (-4 *7 (-920 *6 *5 *4)) (-5 *2 (-411 (-1139 *7)))
- (-5 *1 (-674 *4 *5 *6 *7)) (-5 *3 (-1139 *7))))
+ (-4 *7 (-920 *6 *5 *4)) (-5 *2 (-411 (-1138 *7)))
+ (-5 *1 (-674 *4 *5 *6 *7)) (-5 *3 (-1138 *7))))
((*1 *2 *3)
(-12 (-4 *4 (-769))
(-4 *5
(-13 (-823)
- (-10 -8 (-15 -2845 ((-1143) $))
- (-15 -3011 ((-3 $ "failed") (-1143))))))
+ (-10 -8 (-15 -2843 ((-1142) $))
+ (-15 -3009 ((-3 $ "failed") (-1142))))))
(-4 *6 (-300)) (-5 *2 (-411 *3)) (-5 *1 (-707 *4 *5 *6 *3))
(-4 *3 (-920 (-923 *6) *4 *5))))
((*1 *2 *3)
(-12 (-4 *4 (-769))
- (-4 *5 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $))))) (-4 *6 (-541))
+ (-4 *5 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $))))) (-4 *6 (-541))
(-5 *2 (-411 *3)) (-5 *1 (-709 *4 *5 *6 *3))
(-4 *3 (-920 (-400 (-923 *6)) *4 *5))))
((*1 *2 *3)
@@ -12549,402 +12961,336 @@
(-4 *3 (-920 *6 *5 *4))))
((*1 *2 *3)
(-12 (-4 *4 (-823)) (-4 *5 (-769)) (-4 *6 (-13 (-300) (-145)))
- (-4 *7 (-920 *6 *5 *4)) (-5 *2 (-411 (-1139 *7)))
- (-5 *1 (-718 *4 *5 *6 *7)) (-5 *3 (-1139 *7))))
+ (-4 *7 (-920 *6 *5 *4)) (-5 *2 (-411 (-1138 *7)))
+ (-5 *1 (-718 *4 *5 *6 *7)) (-5 *3 (-1138 *7))))
((*1 *2 *3)
(-12 (-5 *2 (-411 *3)) (-5 *1 (-978 *3))
- (-4 *3 (-1202 (-400 (-549))))))
+ (-4 *3 (-1201 (-400 (-549))))))
((*1 *2 *3)
(-12 (-5 *2 (-411 *3)) (-5 *1 (-1012 *3))
- (-4 *3 (-1202 (-400 (-923 (-549)))))))
+ (-4 *3 (-1201 (-400 (-923 (-549)))))))
((*1 *2 *3)
- (-12 (-4 *4 (-1202 (-400 (-549))))
+ (-12 (-4 *4 (-1201 (-400 (-549))))
(-4 *5 (-13 (-356) (-145) (-701 (-400 (-549)) *4)))
- (-5 *2 (-411 *3)) (-5 *1 (-1045 *4 *5 *3)) (-4 *3 (-1202 *5))))
+ (-5 *2 (-411 *3)) (-5 *1 (-1045 *4 *5 *3)) (-4 *3 (-1201 *5))))
((*1 *2 *3)
- (-12 (-4 *4 (-1202 (-400 (-923 (-549)))))
+ (-12 (-4 *4 (-1201 (-400 (-923 (-549)))))
(-4 *5 (-13 (-356) (-145) (-701 (-400 (-923 (-549))) *4)))
- (-5 *2 (-411 *3)) (-5 *1 (-1047 *4 *5 *3)) (-4 *3 (-1202 *5))))
+ (-5 *2 (-411 *3)) (-5 *1 (-1047 *4 *5 *3)) (-4 *3 (-1201 *5))))
((*1 *2 *3)
(-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-444))
- (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-411 (-1139 (-400 *7))))
- (-5 *1 (-1138 *4 *5 *6 *7)) (-5 *3 (-1139 (-400 *7)))))
- ((*1 *2 *1) (-12 (-5 *2 (-411 *1)) (-4 *1 (-1184))))
+ (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-411 (-1138 (-400 *7))))
+ (-5 *1 (-1137 *4 *5 *6 *7)) (-5 *3 (-1138 (-400 *7)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-411 *1)) (-4 *1 (-1183))))
((*1 *2 *3)
- (-12 (-5 *2 (-411 *3)) (-5 *1 (-1191 *3)) (-4 *3 (-1202 (-549))))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-892)) (-5 *2 (-1231)) (-5 *1 (-1227))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-892)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
+ (-12 (-5 *2 (-411 *3)) (-5 *1 (-1190 *3)) (-4 *3 (-1201 (-549))))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-621 (-747))) (-5 *3 (-169)) (-5 *1 (-1130 *4 *5))
+ (-14 *4 (-892)) (-4 *5 (-1018)))))
+(((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1142)) (-5 *1 (-651 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-747)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-167 (-219))) (-5 *4 (-549)) (-5 *2 (-1006))
- (-5 *1 (-735)))))
-(((*1 *2)
- (-12 (-4 *4 (-1184)) (-4 *5 (-1202 *4)) (-4 *6 (-1202 (-400 *5)))
- (-5 *2 (-747)) (-5 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-335 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-5 *2 (-747)))))
-(((*1 *1) (-5 *1 (-139))))
-(((*1 *1) (-5 *1 (-1227))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-150 *2 *3 *4)) (-14 *2 (-892)) (-4 *3 (-356))
- (-14 *4 (-964 *2 *3))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *2 (-170)) (-5 *1 (-282 *2 *3 *4 *5 *6 *7))
- (-4 *3 (-1202 *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 (-360 *2)) (-4 *2 (-170)) (-4 *2 (-541))))
- ((*1 *1 *1)
- (|partial| -12 (-5 *1 (-692 *2 *3 *4 *5 *6)) (-4 *2 (-170))
- (-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 (-695 *2)) (-4 *2 (-356))))
- ((*1 *1) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356))))
- ((*1 *1 *1) (|partial| -4 *1 (-699)))
- ((*1 *1 *1) (|partial| -4 *1 (-703)))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3)))
- (-5 *1 (-752 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3))))
- ((*1 *2 *2 *1)
- (|partial| -12 (-4 *1 (-1035 *3 *2)) (-4 *3 (-13 (-821) (-356)))
- (-4 *2 (-1202 *3))))
- ((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))))
-(((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-568 *3)) (-4 *3 (-534)))))
+ (-12 (-5 *3 (-1138 *5)) (-4 *5 (-356)) (-5 *2 (-621 *6))
+ (-5 *1 (-522 *5 *6 *4)) (-4 *6 (-356)) (-4 *4 (-13 (-356) (-821))))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 *1))
+ (-4 *1 (-1038 *4 *5 *6 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
+ (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-798)) (-5 *1 (-797)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-621 (-747))) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892))
+ (-4 *4 (-1018)))))
(((*1 *2 *3)
- (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-549))) (-5 *1 (-1016)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-621 (-592 *2))) (-5 *4 (-621 (-1143)))
- (-4 *2 (-13 (-423 (-167 *5)) (-973) (-1165)))
- (-4 *5 (-13 (-541) (-823))) (-5 *1 (-580 *5 *6 *2))
- (-4 *6 (-13 (-423 *5) (-973) (-1165))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-1125)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
- (-4 *4 (-1032 *6 *7 *8)) (-5 *2 (-1231))
- (-5 *1 (-752 *6 *7 *8 *4 *5)) (-4 *5 (-1038 *6 *7 *8 *4)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 (-1143)))
- (-14 *4 (-621 (-1143))) (-4 *5 (-380))))
- ((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-332 *3 *4 *5)) (-14 *3 (-621 (-1143)))
- (-14 *4 (-621 (-1143))) (-4 *5 (-380)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-747)) (-5 *2 (-1231)) (-5 *1 (-1227))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-747)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
+ (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1156 *4 *5))
+ (-4 *4 (-1066)) (-4 *5 (-1066)))))
+(((*1 *2 *3 *4 *4 *5 *6 *7)
+ (-12 (-5 *5 (-1142))
+ (-5 *6
+ (-1
+ (-3
+ (-2 (|:| |mainpart| *4)
+ (|:| |limitedlogs|
+ (-621 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
+ "failed")
+ *4 (-621 *4)))
+ (-5 *7
+ (-1 (-3 (-2 (|:| -2677 *4) (|:| |coeff| *4)) "failed") *4 *4))
+ (-4 *4 (-13 (-1164) (-27) (-423 *8)))
+ (-4 *8 (-13 (-444) (-823) (-145) (-1009 *3) (-617 *3)))
+ (-5 *3 (-549))
+ (-5 *2 (-2 (|:| |ans| *4) (|:| -3847 *4) (|:| |sol?| (-112))))
+ (-5 *1 (-984 *8 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
+ ((*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-621 (-169)))))))
-(((*1 *2 *3 *3)
+ (-12 (-4 *3 (-170)) (-4 *2 (-23)) (-5 *1 (-282 *3 *4 *2 *5 *6 *7))
+ (-4 *4 (-1201 *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 (-688 *3 *2 *4 *5 *6)) (-4 *3 (-170))
+ (-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 (-1201 *3)) (-5 *1 (-689 *3 *2)) (-4 *3 (-1018))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-23)) (-5 *1 (-692 *3 *2 *4 *5 *6)) (-4 *3 (-170))
+ (-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 (-840 *3)) (-5 *2 (-549)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170))))
+ ((*1 *2 *3 *3 *2)
+ (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-170)))))
+(((*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-133)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2 *2) (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-1018))))
+ ((*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-1018)))))
+(((*1 *1 *2 *2)
+ (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))))
+(((*1 *1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-747)) (|:| |poli| *7)
- (|:| |polj| *7)))
- (-4 *5 (-769)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444)) (-4 *6 (-823))
- (-5 *2 (-112)) (-5 *1 (-441 *4 *5 *6 *7)))))
+ (-621
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2)
+ (|:| |xpnt| (-549)))))
+ (-4 *2 (-541)) (-5 *1 (-411 *2))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |contp| (-549))
+ (|:| -3390 (-621 (-2 (|:| |irr| *4) (|:| -2129 (-549)))))))
+ (-4 *4 (-1201 (-549))) (-5 *2 (-411 *4)) (-5 *1 (-434 *4)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-112))
+ (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
+ (-4 *3 (-13 (-27) (-1164) (-423 *6) (-10 -8 (-15 -3845 ($ *7)))))
+ (-4 *7 (-821))
+ (-4 *8
+ (-13 (-1203 *3 *7) (-356) (-1164)
+ (-10 -8 (-15 -3455 ($ $)) (-15 -3405 ($ $)))))
+ (-5 *2
+ (-3 (|:| |%series| *8)
+ (|:| |%problem| (-2 (|:| |func| (-1124)) (|:| |prob| (-1124))))))
+ (-5 *1 (-415 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1124)) (-4 *9 (-954 *8))
+ (-14 *10 (-1142)))))
(((*1 *2 *1)
(-12
(-5 *2
(-3 (|:| |nullBranch| "null")
(|:| |assignmentBranch|
- (-2 (|:| |var| (-1143))
+ (-2 (|:| |var| (-1142))
(|:| |arrayIndex| (-621 (-923 (-549))))
(|:| |rand|
- (-2 (|:| |ints2Floats?| (-112)) (|:| -2977 (-834))))))
+ (-2 (|:| |ints2Floats?| (-112)) (|:| -2975 (-834))))))
(|:| |arrayAssignmentBranch|
- (-2 (|:| |var| (-1143)) (|:| |rand| (-834))
+ (-2 (|:| |var| (-1142)) (|:| |rand| (-834))
(|:| |ints2Floats?| (-112))))
(|:| |conditionalBranch|
- (-2 (|:| |switch| (-1142)) (|:| |thenClause| (-323))
+ (-2 (|:| |switch| (-1141)) (|:| |thenClause| (-323))
(|:| |elseClause| (-323))))
(|:| |returnBranch|
- (-2 (|:| -3670 (-112))
- (|:| -4161
- (-2 (|:| |ints2Floats?| (-112)) (|:| -2977 (-834))))))
+ (-2 (|:| -2643 (-112))
+ (|:| -4160
+ (-2 (|:| |ints2Floats?| (-112)) (|:| -2975 (-834))))))
(|:| |blockBranch| (-621 (-323)))
- (|:| |commentBranch| (-621 (-1125))) (|:| |callBranch| (-1125))
+ (|:| |commentBranch| (-621 (-1124))) (|:| |callBranch| (-1124))
(|:| |forBranch|
- (-2 (|:| -1372 (-1059 (-923 (-549))))
+ (-2 (|:| -2811 (-1058 (-923 (-549))))
(|:| |span| (-923 (-549))) (|:| -2492 (-323))))
- (|:| |labelBranch| (-1087))
- (|:| |loopBranch| (-2 (|:| |switch| (-1142)) (|:| -2492 (-323))))
+ (|:| |labelBranch| (-1086))
+ (|:| |loopBranch| (-2 (|:| |switch| (-1141)) (|:| -2492 (-323))))
(|:| |commonBranch|
- (-2 (|:| -2481 (-1143)) (|:| |contents| (-621 (-1143)))))
+ (-2 (|:| -2479 (-1142)) (|:| |contents| (-621 (-1142)))))
(|:| |printBranch| (-621 (-834)))))
(-5 *1 (-323)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-892))
- (-5 *2
- (-3 (-1139 *4)
- (-1226 (-621 (-2 (|:| -4161 *4) (|:| -3493 (-1087)))))))
- (-5 *1 (-339 *4)) (-4 *4 (-342)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *3 (-621 (-1 *4 (-621 *4)))) (-4 *4 (-1067))
- (-5 *1 (-113 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1067))
- (-5 *1 (-113 *4))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-114)) (-5 *2 (-621 (-1 *4 (-621 *4))))
- (-5 *1 (-113 *4)) (-4 *4 (-1067)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1179)) (-5 *1 (-178))))
- ((*1 *2 *1) (-12 (-5 *2 (-1179)) (-5 *1 (-657))))
- ((*1 *2 *1) (-12 (-5 *2 (-1179)) (-5 *1 (-941))))
- ((*1 *2 *1) (-12 (-5 *2 (-1179)) (-5 *1 (-1040))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1085)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-892)) (-5 *1 (-1003 *2))
- (-4 *2 (-13 (-1067) (-10 -8 (-15 * ($ $ $))))))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-549)) (-4 *4 (-13 (-541) (-145))) (-5 *1 (-526 *4 *2))
- (-4 *2 (-1217 *4))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-549)) (-4 *4 (-13 (-356) (-361) (-594 *3)))
- (-4 *5 (-1202 *4)) (-4 *6 (-701 *4 *5)) (-5 *1 (-530 *4 *5 *6 *2))
- (-4 *2 (-1217 *6))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-549)) (-4 *4 (-13 (-356) (-361) (-594 *3)))
- (-5 *1 (-531 *4 *2)) (-4 *2 (-1217 *4))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1123 *4)) (-5 *3 (-549)) (-4 *4 (-13 (-541) (-145)))
- (-5 *1 (-1119 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-747))
- (-5 *1 (-441 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))))
-(((*1 *1 *1 *1) (-5 *1 (-219)))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
- (-4 *2 (-423 *3))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-747)) (-5 *2 (-1 (-372))) (-5 *1 (-1011))))
- ((*1 *1 *1 *1) (-4 *1 (-1106))))
+(((*1 *2 *1) (-12 (-5 *2 (-1178)) (-5 *1 (-178))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1178)) (-5 *1 (-657))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1178)) (-5 *1 (-941))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1178)) (-5 *1 (-1040))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1147)) (-5 *1 (-1084)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))))
+(((*1 *1 *1) (-12 (-4 *1 (-423 *2)) (-4 *2 (-823)) (-4 *2 (-1018))))
+ ((*1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)))))
+(((*1 *2 *1) (-12 (-4 *3 (-1179)) (-5 *2 (-621 *1)) (-4 *1 (-981 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-1130 *3 *4))) (-5 *1 (-1130 *3 *4))
+ (-14 *3 (-892)) (-4 *4 (-1018)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-444)) (-4 *3 (-823)) (-4 *4 (-769))
+ (-5 *1 (-958 *2 *3 *4 *5)) (-4 *5 (-920 *2 *4 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1225 *5)) (-4 *5 (-768)) (-5 *2 (-112))
+ (-5 *1 (-818 *4 *5)) (-14 *4 (-747)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-665 (-400 (-923 (-549)))))
+ (-5 *2 (-621 (-665 (-309 (-549))))) (-5 *1 (-1002))
+ (-5 *3 (-309 (-549))))))
(((*1 *1 *1 *1) (-4 *1 (-300))) ((*1 *1 *1 *1) (-5 *1 (-747)))
((*1 *1 *1 *1) (-5 *1 (-834))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-1018)) (-5 *1 (-689 *3 *2)) (-4 *2 (-1202 *3)))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-525))) (-5 *1 (-525)))))
+ (-12 (-5 *2 (-1142)) (-5 *3 (-621 (-525))) (-5 *1 (-525)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-387)))))
+(((*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3))
- (-4 *5 (-366 *3)) (-5 *2 (-112))))
+ (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1066))
+ (-5 *2 (-621 (-2 (|:| |k| *4) (|:| |c| *3))))))
((*1 *2 *1)
- (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
- (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-112)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-420 *3 *2)) (-4 *3 (-13 (-170) (-38 (-400 (-549)))))
- (-4 *2 (-13 (-823) (-21))))))
-(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4337)) (-4 *1 (-481 *3)) (-4 *3 (-1180))
- (-4 *3 (-1067)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-876 *4)) (-4 *4 (-1067)) (-5 *2 (-112))
- (-5 *1 (-875 *4))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-892)) (-5 *2 (-112)) (-5 *1 (-1068 *4 *5)) (-14 *4 *3)
- (-14 *5 *3))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-372)) (-5 *1 (-1030)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823))
- (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-747))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-246 *4 *3 *5 *6)) (-4 *4 (-1018)) (-4 *3 (-823))
- (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-747))))
- ((*1 *2 *1) (-12 (-4 *1 (-259 *3)) (-4 *3 (-823)) (-5 *2 (-747))))
- ((*1 *2 *1) (-12 (-4 *1 (-342)) (-5 *2 (-892))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-329 *4 *5 *6 *7)) (-4 *4 (-13 (-361) (-356)))
- (-4 *5 (-1202 *4)) (-4 *6 (-1202 (-400 *5))) (-4 *7 (-335 *4 *5 *6))
- (-5 *2 (-747)) (-5 *1 (-385 *4 *5 *6 *7))))
- ((*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-809 (-892)))))
- ((*1 *2 *1) (-12 (-4 *1 (-397)) (-5 *2 (-549))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-577 *3)) (-4 *3 (-1018))))
- ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-577 *3)) (-4 *3 (-1018))))
+ (-12 (-5 *2 (-621 (-2 (|:| |k| (-864 *3)) (|:| |c| *4))))
+ (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823))
+ (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892))))
((*1 *2 *1)
- (-12 (-4 *3 (-541)) (-5 *2 (-549)) (-5 *1 (-601 *3 *4))
- (-4 *4 (-1202 *3))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-717 *4 *3)) (-4 *4 (-1018))
- (-4 *3 (-823))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-717 *4 *3)) (-4 *4 (-1018)) (-4 *3 (-823))
- (-5 *2 (-747))))
- ((*1 *2 *1) (-12 (-4 *1 (-840 *3)) (-5 *2 (-747))))
- ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-875 *3)) (-4 *3 (-1067))))
- ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-876 *3)) (-4 *3 (-1067))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-329 *5 *6 *7 *8)) (-4 *5 (-423 *4))
- (-4 *6 (-1202 *5)) (-4 *7 (-1202 (-400 *6)))
- (-4 *8 (-335 *5 *6 *7))
- (-4 *4 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-747))
- (-5 *1 (-882 *4 *5 *6 *7 *8))))
+ (-12 (-5 *2 (-621 (-648 *3))) (-5 *1 (-864 *3)) (-4 *3 (-823)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-5 *1 (-320 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-5 *1 (-507 *3 *4))
+ (-14 *4 (-549)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-4 *3 (-541))
+ (-5 *2 (-1138 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-549)) (-5 *1 (-235))))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-329 (-400 (-549)) *4 *5 *6))
- (-4 *4 (-1202 (-400 (-549)))) (-4 *5 (-1202 (-400 *4)))
- (-4 *6 (-335 (-400 (-549)) *4 *5)) (-5 *2 (-747))
- (-5 *1 (-883 *4 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-329 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-356))
- (-4 *7 (-1202 *6)) (-4 *4 (-1202 (-400 *7))) (-4 *8 (-335 *6 *7 *4))
- (-4 *9 (-13 (-361) (-356))) (-5 *2 (-747))
- (-5 *1 (-989 *6 *7 *4 *8 *9))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1202 *3)) (-4 *3 (-1018)) (-4 *3 (-541))
- (-5 *2 (-747))))
- ((*1 *2 *1 *2)
- (-12 (-4 *1 (-1204 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1204 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-768)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-387)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-309 (-219))) (-5 *2 (-309 (-372))) (-5 *1 (-298)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-621 (-747))) (-5 *3 (-112)) (-5 *1 (-1131 *4 *5))
- (-14 *4 (-892)) (-4 *5 (-1018)))))
+ (-12 (-5 *3 (-621 (-1124))) (-5 *2 (-549)) (-5 *1 (-235)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-621 (-52))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))))
(((*1 *2 *1 *3)
(-12 (-5 *3 (-592 *1)) (-4 *1 (-423 *4)) (-4 *4 (-823))
- (-4 *4 (-541)) (-5 *2 (-400 (-1139 *1)))))
+ (-4 *4 (-541)) (-5 *2 (-400 (-1138 *1)))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *4 (-592 *3)) (-4 *3 (-13 (-423 *6) (-27) (-1165)))
+ (-12 (-5 *4 (-592 *3)) (-4 *3 (-13 (-423 *6) (-27) (-1164)))
(-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *2 (-1139 (-400 (-1139 *3)))) (-5 *1 (-545 *6 *3 *7))
- (-5 *5 (-1139 *3)) (-4 *7 (-1067))))
+ (-5 *2 (-1138 (-400 (-1138 *3)))) (-5 *1 (-545 *6 *3 *7))
+ (-5 *5 (-1138 *3)) (-4 *7 (-1066))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1222 *5)) (-14 *5 (-1143)) (-4 *6 (-1018))
- (-5 *2 (-1199 *5 (-923 *6))) (-5 *1 (-918 *5 *6)) (-5 *3 (-923 *6))))
+ (-12 (-5 *4 (-1221 *5)) (-14 *5 (-1142)) (-4 *6 (-1018))
+ (-5 *2 (-1198 *5 (-923 *6))) (-5 *1 (-918 *5 *6)) (-5 *3 (-923 *6))))
((*1 *2 *1)
(-12 (-4 *1 (-920 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-823)) (-5 *2 (-1139 *3))))
+ (-4 *5 (-823)) (-5 *2 (-1138 *3))))
((*1 *2 *1 *3)
- (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-5 *2 (-1139 *1))
+ (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823)) (-5 *2 (-1138 *1))
(-4 *1 (-920 *4 *5 *3))))
((*1 *2 *3 *4)
(-12 (-4 *5 (-769)) (-4 *4 (-823)) (-4 *6 (-1018))
- (-4 *7 (-920 *6 *5 *4)) (-5 *2 (-400 (-1139 *3)))
+ (-4 *7 (-920 *6 *5 *4)) (-5 *2 (-400 (-1138 *3)))
(-5 *1 (-921 *5 *4 *6 *7 *3))
(-4 *3
(-13 (-356)
- (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $)) (-15 -1403 (*7 $)))))))
+ (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $)) (-15 -1404 (*7 $)))))))
((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-1139 *3))
+ (-12 (-5 *2 (-1138 *3))
(-4 *3
(-13 (-356)
- (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $)) (-15 -1403 (*7 $)))))
+ (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $)) (-15 -1404 (*7 $)))))
(-4 *7 (-920 *6 *5 *4)) (-4 *5 (-769)) (-4 *4 (-823))
(-4 *6 (-1018)) (-5 *1 (-921 *5 *4 *6 *7 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1143)) (-4 *5 (-541))
- (-5 *2 (-400 (-1139 (-400 (-923 *5))))) (-5 *1 (-1014 *5))
+ (-12 (-5 *4 (-1142)) (-4 *5 (-541))
+ (-5 *2 (-400 (-1138 (-400 (-923 *5))))) (-5 *1 (-1014 *5))
(-5 *3 (-400 (-923 *5))))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-1018))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-1225 *5))) (-5 *4 (-549)) (-5 *2 (-1225 *5))
+ (-5 *1 (-1000 *5)) (-4 *5 (-356)) (-4 *5 (-361)) (-4 *5 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1142)) (-5 *2 (-1 *6 *5)) (-5 *1 (-683 *4 *5 *6))
+ (-4 *4 (-594 (-525))) (-4 *5 (-1179)) (-4 *6 (-1179)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-52)) (-5 *1 (-805)))))
+(((*1 *2 *2 *2 *2 *2 *3)
+ (-12 (-5 *2 (-665 *4)) (-5 *3 (-747)) (-4 *4 (-1018))
+ (-5 *1 (-666 *4)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-621 *3)) (-4 *3 (-1179)) (-5 *1 (-1122 *3)))))
+(((*1 *2 *3 *4 *2 *5 *6)
+ (-12
+ (-5 *5
+ (-2 (|:| |done| (-621 *11))
+ (|:| |todo| (-621 (-2 (|:| |val| *3) (|:| -1979 *11))))))
+ (-5 *6 (-747))
+ (-5 *2 (-621 (-2 (|:| |val| (-621 *10)) (|:| -1979 *11))))
+ (-5 *3 (-621 *10)) (-5 *4 (-621 *11)) (-4 *10 (-1032 *7 *8 *9))
+ (-4 *11 (-1038 *7 *8 *9 *10)) (-4 *7 (-444)) (-4 *8 (-769))
+ (-4 *9 (-823)) (-5 *1 (-1036 *7 *8 *9 *10 *11))))
+ ((*1 *2 *3 *4 *2 *5 *6)
+ (-12
+ (-5 *5
+ (-2 (|:| |done| (-621 *11))
+ (|:| |todo| (-621 (-2 (|:| |val| *3) (|:| -1979 *11))))))
+ (-5 *6 (-747))
+ (-5 *2 (-621 (-2 (|:| |val| (-621 *10)) (|:| -1979 *11))))
+ (-5 *3 (-621 *10)) (-5 *4 (-621 *11)) (-4 *10 (-1032 *7 *8 *9))
+ (-4 *11 (-1075 *7 *8 *9 *10)) (-4 *7 (-444)) (-4 *8 (-769))
+ (-4 *9 (-823)) (-5 *1 (-1111 *7 *8 *9 *10 *11)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1198 *4 *5)) (-5 *3 (-621 *5)) (-14 *4 (-1142))
+ (-4 *5 (-356)) (-5 *1 (-894 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-621 *5)) (-4 *5 (-356)) (-5 *2 (-1138 *5))
+ (-5 *1 (-894 *4 *5)) (-14 *4 (-1142))))
+ ((*1 *2 *3 *3 *4 *4)
+ (-12 (-5 *3 (-621 *6)) (-5 *4 (-747)) (-4 *6 (-356))
+ (-5 *2 (-400 (-923 *6))) (-5 *1 (-1019 *5 *6)) (-14 *5 (-1142)))))
+(((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-1145))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-1230)) (-5 *1 (-1145))))
+ ((*1 *2 *3 *1) (-12 (-5 *3 (-1142)) (-5 *2 (-1230)) (-5 *1 (-1145)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-835))))
+ ((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1230)) (-5 *1 (-835))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1124)) (-5 *4 (-834)) (-5 *2 (-1230)) (-5 *1 (-835))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-549)) (-5 *2 (-1230)) (-5 *1 (-1122 *4))
+ (-4 *4 (-1066)) (-4 *4 (-1179)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1122 (-2 (|:| |k| (-549)) (|:| |c| *3))))
+ (-5 *1 (-576 *3)) (-4 *3 (-1018)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-621 *6)) (-4 *6 (-823)) (-4 *4 (-356)) (-4 *5 (-769))
+ (-5 *1 (-495 *4 *5 *6 *2)) (-4 *2 (-920 *4 *5 *6))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *1 (-495 *3 *4 *5 *2)) (-4 *2 (-920 *3 *4 *5)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-541)) (-5 *1 (-940 *3 *2)) (-4 *2 (-1201 *3))))
((*1 *1 *1 *1)
(-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)))))
-(((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-747)) (-5 *1 (-163 *3 *4))
- (-4 *3 (-164 *4))))
- ((*1 *2)
- (-12 (-14 *4 *2) (-4 *5 (-1180)) (-5 *2 (-747))
- (-5 *1 (-231 *3 *4 *5)) (-4 *3 (-232 *4 *5))))
- ((*1 *2)
- (-12 (-4 *4 (-823)) (-5 *2 (-747)) (-5 *1 (-422 *3 *4))
- (-4 *3 (-423 *4))))
- ((*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-533 *3)) (-4 *3 (-534))))
- ((*1 *2) (-12 (-4 *1 (-740)) (-5 *2 (-747))))
- ((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-747)) (-5 *1 (-772 *3 *4))
- (-4 *3 (-773 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-962 *3 *4))
- (-4 *3 (-963 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-747)) (-5 *1 (-967 *3 *4))
- (-4 *3 (-968 *4))))
- ((*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-982 *3)) (-4 *3 (-983))))
- ((*1 *2) (-12 (-4 *1 (-1018)) (-5 *2 (-747))))
- ((*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-1026 *3)) (-4 *3 (-1027)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1090 *3 *4 *2 *5)) (-4 *4 (-1018)) (-4 *5 (-232 *3 *4))
- (-4 *2 (-232 *3 *4)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1125)) (-5 *4 (-549)) (-5 *5 (-665 (-167 (-219))))
- (-5 *2 (-1006)) (-5 *1 (-731)))))
-(((*1 *2 *3 *2)
- (|partial| -12 (-5 *2 (-1226 *4)) (-5 *3 (-665 *4)) (-4 *4 (-356))
- (-5 *1 (-643 *4))))
- ((*1 *2 *3 *2)
- (|partial| -12 (-4 *4 (-356))
- (-4 *5 (-13 (-366 *4) (-10 -7 (-6 -4338))))
- (-4 *2 (-13 (-366 *4) (-10 -7 (-6 -4338))))
- (-5 *1 (-644 *4 *5 *2 *3)) (-4 *3 (-663 *4 *5 *2))))
- ((*1 *2 *3 *2 *4 *5)
- (|partial| -12 (-5 *4 (-621 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-356))
- (-5 *1 (-790 *2 *3)) (-4 *3 (-632 *2))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
- (-5 *1 (-1095 *3 *2)) (-4 *3 (-1202 *2)))))
-(((*1 *2)
- (-12 (-4 *3 (-541)) (-5 *2 (-621 (-665 *3))) (-5 *1 (-43 *3 *4))
- (-4 *4 (-410 *3)))))
+ (-4 *4 (-823)) (-4 *2 (-541))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1201 *2)) (-4 *2 (-1018)) (-4 *2 (-541)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4)
- (-241 *4 (-400 (-549)))))
- (-14 *4 (-621 (-1143))) (-14 *5 (-747)) (-5 *2 (-112))
- (-5 *1 (-496 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-981 *3)) (-4 *3 (-1180)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892))
- (-4 *4 (-1018)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-835))))
- ((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1231)) (-5 *1 (-835))))
+ (-12 (-4 *4 (-1018))
+ (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1164) (-277)))
+ (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1201 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1125)) (-5 *4 (-834)) (-5 *2 (-1231)) (-5 *1 (-835))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-549)) (-5 *2 (-1231)) (-5 *1 (-1123 *4))
- (-4 *4 (-1067)) (-4 *4 (-1180)))))
-(((*1 *2)
- (-12 (-5 *2 (-2 (|:| -1578 (-621 *3)) (|:| -1667 (-621 *3))))
- (-5 *1 (-1181 *3)) (-4 *3 (-1067)))))
-(((*1 *1) (-5 *1 (-430))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-1143))
- (-4 *6 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
- (-4 *4 (-13 (-29 *6) (-1165) (-930)))
- (-5 *2 (-2 (|:| |particular| *4) (|:| -1949 (-621 *4))))
- (-5 *1 (-777 *6 *4 *3)) (-4 *3 (-632 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-592 *1))) (-4 *1 (-295)))))
+ (-12 (-5 *4 (-892)) (-4 *5 (-1018))
+ (-4 *2 (-13 (-397) (-1009 *5) (-356) (-1164) (-277)))
+ (-5 *1 (-435 *5 *3 *2)) (-4 *3 (-1201 *5)))))
(((*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768))))
((*1 *1 *1)
- (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1018)) (-14 *3 (-621 (-1143)))))
+ (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1018)) (-14 *3 (-621 (-1142)))))
((*1 *1 *1)
(-12 (-5 *1 (-217 *2 *3)) (-4 *2 (-13 (-1018) (-823)))
- (-14 *3 (-621 (-1143)))))
+ (-14 *3 (-621 (-1142)))))
((*1 *1 *1)
- (-12 (-4 *1 (-375 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1067))))
+ (-12 (-4 *1 (-375 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1066))))
((*1 *1 *1)
- (-12 (-14 *2 (-621 (-1143))) (-4 *3 (-170))
- (-4 *5 (-232 (-3775 *2) (-747)))
+ (-12 (-14 *2 (-621 (-1142))) (-4 *3 (-170))
+ (-4 *5 (-232 (-3774 *2) (-747)))
(-14 *6
- (-1 (-112) (-2 (|:| -3493 *4) (|:| -3731 *5))
- (-2 (|:| -3493 *4) (|:| -3731 *5))))
+ (-1 (-112) (-2 (|:| -3494 *4) (|:| -1714 *5))
+ (-2 (|:| -3494 *4) (|:| -1714 *5))))
(-5 *1 (-453 *2 *3 *4 *5 *6 *7)) (-4 *4 (-823))
(-4 *7 (-920 *3 *5 (-836 *2)))))
- ((*1 *1 *1) (-12 (-4 *1 (-500 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-823))))
+ ((*1 *1 *1) (-12 (-4 *1 (-500 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-823))))
((*1 *1 *1)
- (-12 (-4 *2 (-541)) (-5 *1 (-601 *2 *3)) (-4 *3 (-1202 *2))))
+ (-12 (-4 *2 (-541)) (-5 *1 (-601 *2 *3)) (-4 *3 (-1201 *2))))
((*1 *1 *1) (-12 (-4 *1 (-685 *2)) (-4 *2 (-1018))))
((*1 *1 *1)
(-12 (-5 *1 (-712 *2 *3)) (-4 *3 (-823)) (-4 *2 (-1018))
@@ -12954,128 +13300,102 @@
(-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
(-4 *2 (-823))))
((*1 *1 *1)
- (-12 (-5 *1 (-1249 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-819)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892))
- (-4 *4 (-1018)))))
-(((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))))
+ (-12 (-5 *1 (-1248 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-819)))))
+(((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-779)))))
+(((*1 *1 *1) (-4 *1 (-840 *2))))
(((*1 *1 *1 *1) (-4 *1 (-300))) ((*1 *1 *1 *1) (-5 *1 (-747)))
((*1 *1 *1 *1) (-5 *1 (-834))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *3 *4 *4 *5)
- (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-621 *3))
- (-4 *3 (-13 (-423 *6) (-27) (-1165)))
- (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-551 *6 *3 *7)) (-4 *7 (-1067)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-356)) (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3)))
+ (-5 *1 (-743 *3 *4)) (-4 *3 (-685 *4))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-356)) (-4 *3 (-1018))
+ (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-825 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-98 *5)) (-4 *5 (-356)) (-4 *5 (-1018))
+ (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3))) (-5 *1 (-826 *5 *3))
+ (-4 *3 (-825 *5)))))
+(((*1 *1 *1) (-12 (-5 *1 (-1165 *2)) (-4 *2 (-1066)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1038 *3 *4 *5 *6)) (-4 *3 (-444)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444)) (-4 *5 (-769))
- (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *4 *2 *2 *2 *2)
- (-12 (-5 *2 (-549))
- (-5 *3
- (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-747)) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-4 *6 (-769)) (-4 *4 (-920 *5 *6 *7)) (-4 *5 (-444)) (-4 *7 (-823))
- (-5 *1 (-441 *5 *6 *7 *4)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3)
- (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219))
- (-5 *2 (-1006)) (-5 *1 (-727)))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *6)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
- (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-73 FCN)))) (-5 *2 (-1006))
- (-5 *1 (-723)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1125)) (-4 *1 (-357 *3 *4)) (-4 *3 (-1067))
- (-4 *4 (-1067)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
+ (-12 (-4 *1 (-328 *3 *4 *5 *6)) (-4 *3 (-356)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-4 *6 (-335 *3 *4 *5))
+ (-5 *2 (-406 *4 (-400 *4) *5 *6))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1225 *6)) (-4 *6 (-13 (-402 *4 *5) (-1009 *4)))
+ (-4 *4 (-963 *3)) (-4 *5 (-1201 *4)) (-4 *3 (-300))
+ (-5 *1 (-406 *3 *4 *5 *6))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-356))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-747)) (-4 *4 (-13 (-1018) (-694 (-400 (-549)))))
+ (-4 *5 (-823)) (-5 *1 (-1241 *4 *5 *2)) (-4 *2 (-1246 *5 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-592 *1))) (-4 *1 (-295)))))
+(((*1 *2 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)) (-4 *2 (-1164))))
+ ((*1 *2 *1) (-12 (-5 *1 (-324 *2)) (-4 *2 (-823))))
+ ((*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-592 *3)) (-4 *3 (-823)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-411 (-1138 (-549)))) (-5 *1 (-185)) (-5 *3 (-549)))))
(((*1 *2 *1)
(-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1))
(-4 *1 (-920 *3 *4 *5)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-541)) (-4 *3 (-1018))
- (-5 *2 (-2 (|:| -4013 *1) (|:| -3675 *1))) (-4 *1 (-825 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-98 *5)) (-4 *5 (-541)) (-4 *5 (-1018))
- (-5 *2 (-2 (|:| -4013 *3) (|:| -3675 *3))) (-5 *1 (-826 *5 *3))
- (-4 *3 (-825 *5)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-592 *2))) (-5 *4 (-621 (-1142)))
+ (-4 *2 (-13 (-423 (-167 *5)) (-973) (-1164)))
+ (-4 *5 (-13 (-541) (-823))) (-5 *1 (-580 *5 *6 *2))
+ (-4 *6 (-13 (-423 *5) (-973) (-1164))))))
+(((*1 *2)
+ (-12 (-5 *2 (-1230)) (-5 *1 (-1156 *3 *4)) (-4 *3 (-1066))
+ (-4 *4 (-1066)))))
(((*1 *2 *1 *1)
(|partial| -12 (-5 *2 (-2 (|:| |lm| (-795 *3)) (|:| |rm| (-795 *3))))
(-5 *1 (-795 *3)) (-4 *3 (-823))))
((*1 *1 *1 *1) (-5 *1 (-834))))
-(((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
- (-4 *3 (-360 *4))))
- ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1226 (-309 (-219))))
- (-5 *2
- (-2 (|:| |additions| (-549)) (|:| |multiplications| (-549))
- (|:| |exponentiations| (-549)) (|:| |functionCalls| (-549))))
- (-5 *1 (-298)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-1018)) (-4 *4 (-1202 *3)) (-5 *1 (-162 *3 *4 *2))
- (-4 *2 (-1202 *4))))
- ((*1 *1 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-4 *2 (-1032 *4 *5 *6)) (-4 *4 (-541))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-948 *4 *5 *6 *2)))))
-(((*1 *1) (-5 *1 (-142))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-4 *5 (-963 *4))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-140 *4 *5 *3))
- (-4 *3 (-366 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-4 *5 (-963 *4))
- (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4)))
- (-5 *1 (-494 *4 *5 *6 *3)) (-4 *6 (-366 *4)) (-4 *3 (-366 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-665 *5)) (-4 *5 (-963 *4)) (-4 *4 (-541))
- (-5 *2 (-2 (|:| |num| (-665 *4)) (|:| |den| *4)))
- (-5 *1 (-669 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549)))))
- (-4 *6 (-1202 *5))
- (-5 *2 (-2 (|:| -2652 *7) (|:| |rh| (-621 (-400 *6)))))
- (-5 *1 (-783 *5 *6 *7 *3)) (-5 *4 (-621 (-400 *6)))
- (-4 *7 (-632 *6)) (-4 *3 (-632 (-400 *6)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-4 *5 (-963 *4))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1195 *4 *5 *3))
- (-4 *3 (-1202 *5)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-38 (-400 (-549))))
- (-5 *2 (-2 (|:| -1640 (-1123 *4)) (|:| -1651 (-1123 *4))))
- (-5 *1 (-1129 *4)) (-5 *3 (-1123 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549)))))
- (-4 *3 (-1202 *4)) (-5 *1 (-785 *4 *3 *2 *5)) (-4 *2 (-632 *3))
- (-4 *5 (-632 (-400 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-400 *5))
- (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *5 (-1202 *4))
- (-5 *1 (-785 *4 *5 *2 *6)) (-4 *2 (-632 *5)) (-4 *6 (-632 *3)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-300))
- (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-439 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-621 *7)) (-5 *3 (-1125)) (-4 *7 (-920 *4 *5 *6))
- (-4 *4 (-300)) (-4 *5 (-769)) (-4 *6 (-823))
- (-5 *1 (-439 *4 *5 *6 *7))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-621 *7)) (-5 *3 (-1125)) (-4 *7 (-920 *4 *5 *6))
- (-4 *4 (-300)) (-4 *5 (-769)) (-4 *6 (-823))
- (-5 *1 (-439 *4 *5 *6 *7)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
+ (-4 *2 (-423 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1105))))
+(((*1 *1 *1 *1) (-5 *1 (-219)))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
+ (-4 *2 (-423 *3))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-747)) (-5 *2 (-1 (-372))) (-5 *1 (-1011))))
+ ((*1 *1 *1 *1) (-4 *1 (-1105))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1138 *2)) (-4 *2 (-920 (-400 (-923 *6)) *5 *4))
+ (-5 *1 (-709 *5 *4 *6 *2)) (-4 *5 (-769))
+ (-4 *4 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $)))))
+ (-4 *6 (-541)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-549)) (|has| *1 (-6 -4337)) (-4 *1 (-366 *3))
+ (-4 *3 (-1179)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-1106 *2 *3)) (-4 *2 (-13 (-1066) (-34)))
+ (-4 *3 (-13 (-1066) (-34))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-923 *6))) (-5 *4 (-621 (-1142)))
+ (-4 *6 (-13 (-541) (-1009 *5))) (-4 *5 (-541))
+ (-5 *2 (-621 (-621 (-287 (-400 (-923 *6)))))) (-5 *1 (-1010 *5 *6)))))
+(((*1 *2 *1 *3 *4 *4 *5)
+ (-12 (-5 *3 (-914 (-219))) (-5 *4 (-845)) (-5 *5 (-892))
+ (-5 *2 (-1230)) (-5 *1 (-460))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-914 (-219))) (-5 *2 (-1230)) (-5 *1 (-460))))
+ ((*1 *2 *1 *3 *4 *4 *5)
+ (-12 (-5 *3 (-621 (-914 (-219)))) (-5 *4 (-845)) (-5 *5 (-892))
+ (-5 *2 (-1230)) (-5 *1 (-460)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)) (-4 *2 (-444)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *6 (-1124))
+ (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))))
(((*1 *2 *3)
(-12 (-5 *2 (-167 (-372))) (-5 *1 (-761 *3)) (-4 *3 (-594 (-372)))))
((*1 *2 *3 *4)
@@ -13124,25 +13444,24 @@
(-12 (-5 *3 (-309 (-167 *5))) (-5 *4 (-892)) (-4 *5 (-541))
(-4 *5 (-823)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372)))
(-5 *1 (-761 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1245 *3)) (-4 *3 (-356)) (-5 *2 (-112)))))
(((*1 *2 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018))))
((*1 *2 *1)
- (-12 (-4 *2 (-1018)) (-5 *1 (-50 *2 *3)) (-14 *3 (-621 (-1143)))))
+ (-12 (-4 *2 (-1018)) (-5 *1 (-50 *2 *3)) (-14 *3 (-621 (-1142)))))
((*1 *2 *1)
(-12 (-5 *2 (-309 *3)) (-5 *1 (-217 *3 *4))
- (-4 *3 (-13 (-1018) (-823))) (-14 *4 (-621 (-1143)))))
+ (-4 *3 (-13 (-1018) (-823))) (-14 *4 (-621 (-1142)))))
((*1 *2 *1)
- (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1067)) (-4 *2 (-1018))))
+ (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1066)) (-4 *2 (-1018))))
((*1 *2 *1)
- (-12 (-14 *3 (-621 (-1143))) (-4 *5 (-232 (-3775 *3) (-747)))
+ (-12 (-14 *3 (-621 (-1142))) (-4 *5 (-232 (-3774 *3) (-747)))
(-14 *6
- (-1 (-112) (-2 (|:| -3493 *4) (|:| -3731 *5))
- (-2 (|:| -3493 *4) (|:| -3731 *5))))
+ (-1 (-112) (-2 (|:| -3494 *4) (|:| -1714 *5))
+ (-2 (|:| -3494 *4) (|:| -1714 *5))))
(-4 *2 (-170)) (-5 *1 (-453 *3 *2 *4 *5 *6 *7)) (-4 *4 (-823))
(-4 *7 (-920 *2 *5 (-836 *3)))))
- ((*1 *2 *1) (-12 (-4 *1 (-500 *2 *3)) (-4 *3 (-823)) (-4 *2 (-1067))))
+ ((*1 *2 *1) (-12 (-4 *1 (-500 *2 *3)) (-4 *3 (-823)) (-4 *2 (-1066))))
((*1 *2 *1)
- (-12 (-4 *2 (-541)) (-5 *1 (-601 *2 *3)) (-4 *3 (-1202 *2))))
+ (-12 (-4 *2 (-541)) (-5 *1 (-601 *2 *3)) (-4 *3 (-1201 *2))))
((*1 *2 *1) (-12 (-4 *1 (-685 *2)) (-4 *2 (-1018))))
((*1 *2 *1)
(-12 (-4 *2 (-1018)) (-5 *1 (-712 *2 *3)) (-4 *3 (-823))
@@ -13154,6 +13473,18 @@
((*1 *1 *1 *2)
(-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
(-4 *2 (-823)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| -3697 (-665 (-400 (-923 *4))))
+ (|:| |vec| (-621 (-400 (-923 *4)))) (|:| -3121 (-747))
+ (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))
+ (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142))))
+ (-4 *6 (-769))
+ (-5 *2
+ (-2 (|:| |partsol| (-1225 (-400 (-923 *4))))
+ (|:| -2619 (-621 (-1225 (-400 (-923 *4)))))))
+ (-5 *1 (-895 *4 *5 *6 *7)) (-4 *7 (-920 *4 *6 *5)))))
(((*1 *1 *1 *2)
(|partial| -12 (-4 *1 (-164 *2)) (-4 *2 (-170)) (-4 *2 (-541))))
((*1 *1 *1 *2)
@@ -13168,97 +13499,76 @@
(|partial| -12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-541))))
((*1 *1 *1 *1) (-5 *1 (-834)))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-1226 *4)) (-4 *4 (-1202 *3)) (-4 *3 (-541))
+ (-12 (-5 *2 (-1225 *4)) (-4 *4 (-1201 *3)) (-4 *3 (-541))
(-5 *1 (-940 *3 *4))))
((*1 *1 *1 *2)
(|partial| -12 (-4 *1 (-1021 *3 *4 *2 *5 *6)) (-4 *2 (-1018))
(-4 *5 (-232 *4 *2)) (-4 *6 (-232 *3 *2)) (-4 *2 (-541))))
((*1 *2 *2 *2)
- (|partial| -12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-287 (-809 *3)))
- (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *2 (-809 *3)) (-5 *1 (-614 *5 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-287 (-809 (-923 *5)))) (-4 *5 (-444))
- (-5 *2 (-809 (-400 (-923 *5)))) (-5 *1 (-615 *5))
- (-5 *3 (-400 (-923 *5)))))
+ (|partial| -12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-697)) (-5 *2 (-892))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-699)) (-5 *2 (-747)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1179)) (-5 *1 (-1098 *4 *2))
+ (-4 *2 (-13 (-584 (-549) *4) (-10 -7 (-6 -4336) (-6 -4337))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-823)) (-4 *3 (-1179)) (-5 *1 (-1098 *3 *2))
+ (-4 *2 (-13 (-584 (-549) *3) (-10 -7 (-6 -4336) (-6 -4337)))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1142))
+ (-4 *4 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-419 *4 *2)) (-4 *2 (-13 (-1164) (-29 *4)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-287 (-400 (-923 *5)))) (-5 *3 (-400 (-923 *5)))
- (-4 *5 (-444)) (-5 *2 (-809 *3)) (-5 *1 (-615 *5)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-665 *4)) (-4 *4 (-1018)) (-5 *1 (-1109 *3 *4))
- (-14 *3 (-747)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-621 (-219)))) (-5 *1 (-897)))))
-(((*1 *2 *3 *3 *3 *3)
- (-12 (-5 *3 (-549)) (-5 *2 (-112)) (-5 *1 (-472)))))
+ (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1142)) (-4 *5 (-145))
+ (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549))))
+ (-5 *2 (-309 *5)) (-5 *1 (-570 *5)))))
+(((*1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1228))))
+ ((*1 *2 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1228)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-747))
+ (-5 *1 (-441 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))))
(((*1 *2 *3 *2)
(-12 (-5 *2 (-621 (-372))) (-5 *3 (-621 (-256))) (-5 *1 (-254))))
((*1 *2 *1 *2) (-12 (-5 *2 (-621 (-372))) (-5 *1 (-460))))
((*1 *2 *1) (-12 (-5 *2 (-621 (-372))) (-5 *1 (-460))))
((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-892)) (-5 *4 (-845)) (-5 *2 (-1231)) (-5 *1 (-1227))))
+ (-12 (-5 *3 (-892)) (-5 *4 (-845)) (-5 *2 (-1230)) (-5 *1 (-1226))))
((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-892)) (-5 *4 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1227)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1227))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-541))
- (-4 *7 (-920 *3 *5 *6))
- (-5 *2 (-2 (|:| -3731 (-747)) (|:| -1570 *8) (|:| |radicand| *8)))
- (-5 *1 (-924 *5 *6 *3 *7 *8)) (-5 *4 (-747))
- (-4 *8
- (-13 (-356)
- (-10 -8 (-15 -1394 (*7 $)) (-15 -1403 (*7 $)) (-15 -3846 ($ *7))))))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1202 *4)) (-4 *4 (-1184))
- (-4 *6 (-1202 (-400 *5)))
- (-5 *2
- (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5)
- (|:| |gd| *5)))
- (-4 *1 (-335 *4 *5 *6)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-444))
- (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *1 (-948 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-621 *7)) (-5 *3 (-112)) (-4 *7 (-1032 *4 *5 *6))
- (-4 *4 (-444)) (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
- (-5 *1 (-948 *4 *5 *6 *7)))))
-(((*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 (-549)) (-5 *5 (-665 (-219))) (-5 *6 (-651 (-219)))
- (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-727)))))
-(((*1 *2 *3 *4 *5 *6 *7 *8 *9)
- (|partial| -12 (-5 *4 (-621 *11)) (-5 *5 (-621 (-1139 *9)))
- (-5 *6 (-621 *9)) (-5 *7 (-621 *12)) (-5 *8 (-621 (-747)))
- (-4 *11 (-823)) (-4 *9 (-300)) (-4 *12 (-920 *9 *10 *11))
- (-4 *10 (-769)) (-5 *2 (-621 (-1139 *12)))
- (-5 *1 (-684 *10 *11 *9 *12)) (-5 *3 (-1139 *12)))))
+ (-12 (-5 *3 (-892)) (-5 *4 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1226)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-366 *2)) (-4 *5 (-366 *2)) (-4 *2 (-356))
- (-5 *1 (-512 *2 *4 *5 *3)) (-4 *3 (-663 *2 *4 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2))
- (|has| *2 (-6 (-4339 "*"))) (-4 *2 (-1018))))
+ (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-5 *2 (-112))
+ (-5 *1 (-182 *4 *3)) (-4 *3 (-13 (-27) (-1164) (-423 (-167 *4))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427))))
((*1 *2 *3)
- (-12 (-4 *4 (-366 *2)) (-4 *5 (-366 *2)) (-4 *2 (-170))
- (-5 *1 (-664 *2 *4 *5 *3)) (-4 *3 (-663 *2 *4 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1090 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2))
- (-4 *5 (-232 *3 *2)) (|has| *2 (-6 (-4339 "*"))) (-4 *2 (-1018)))))
+ (-12 (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *2 (-112)) (-5 *1 (-1168 *4 *3))
+ (-4 *3 (-13 (-27) (-1164) (-423 *4))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1130 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-2 (|:| -2119 *4) (|:| -3977 (-549)))))
+ (-4 *4 (-1201 (-549))) (-5 *2 (-714 (-747))) (-5 *1 (-434 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-411 *5)) (-4 *5 (-1201 *4)) (-4 *4 (-1018))
+ (-5 *2 (-714 (-747))) (-5 *1 (-436 *4 *5)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-1230))
+ (-5 *1 (-441 *4 *5 *6 *7)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1018)) (-4 *4 (-1201 *3)) (-5 *1 (-162 *3 *4 *2))
+ (-4 *2 (-1201 *4))))
+ ((*1 *1 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-1179)))))
(((*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768))))
((*1 *2 *1)
- (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1067))))
+ (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1066))))
((*1 *2 *1)
- (-12 (-14 *3 (-621 (-1143))) (-4 *4 (-170))
- (-4 *6 (-232 (-3775 *3) (-747)))
+ (-12 (-14 *3 (-621 (-1142))) (-4 *4 (-170))
+ (-4 *6 (-232 (-3774 *3) (-747)))
(-14 *7
- (-1 (-112) (-2 (|:| -3493 *5) (|:| -3731 *6))
- (-2 (|:| -3493 *5) (|:| -3731 *6))))
+ (-1 (-112) (-2 (|:| -3494 *5) (|:| -1714 *6))
+ (-2 (|:| -3494 *5) (|:| -1714 *6))))
(-5 *2 (-690 *5 *6 *7)) (-5 *1 (-453 *3 *4 *5 *6 *7 *8))
(-4 *5 (-823)) (-4 *8 (-920 *4 *6 (-836 *3)))))
((*1 *2 *1)
@@ -13267,1012 +13577,1093 @@
((*1 *1 *1)
(-12 (-4 *1 (-944 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-768))
(-4 *4 (-823)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *3) (-12 (-5 *3 (-309 (-219))) (-5 *2 (-219)) (-5 *1 (-298)))))
-(((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-1125)) (-5 *4 (-167 (-219))) (-5 *5 (-549))
- (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *1 *1) (-4 *1 (-607)))
+(((*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3)
+ (-12 (-5 *5 (-665 (-219))) (-5 *6 (-665 (-549))) (-5 *3 (-549))
+ (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-729)))))
+(((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-1181)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))))
+(((*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3)
+ (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *3 (-549))
+ (-5 *2 (-1006)) (-5 *1 (-733)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-648 *3)) (-4 *3 (-823)) (-4 *1 (-367 *3 *4))
+ (-4 *4 (-170)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-747)) (-5 *1 (-114)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-5 *2 (-112)))))
+(((*1 *2 *2 *2 *3 *3 *4 *2 *5)
+ (|partial| -12 (-5 *3 (-592 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1142))) (-5 *5 (-1138 *2))
+ (-4 *2 (-13 (-423 *6) (-27) (-1164)))
+ (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
+ (-5 *1 (-545 *6 *2 *7)) (-4 *7 (-1066))))
+ ((*1 *2 *2 *2 *3 *3 *4 *3 *2 *5)
+ (|partial| -12 (-5 *3 (-592 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1142)))
+ (-5 *5 (-400 (-1138 *2))) (-4 *2 (-13 (-423 *6) (-27) (-1164)))
+ (-4 *6 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
+ (-5 *1 (-545 *6 *2 *7)) (-4 *7 (-1066)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-844 (-937 *3) (-937 *3))) (-5 *1 (-937 *3))
+ (-4 *3 (-938)))))
+(((*1 *2 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4)
+ (|:| |xpnt| (-549))))
+ (-4 *4 (-13 (-1201 *3) (-541) (-10 -8 (-15 -3726 ($ $ $)))))
+ (-4 *3 (-541)) (-5 *1 (-1204 *3 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
+ ((*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973) (-1165))))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1087)) (-5 *1 (-109))))
- ((*1 *2 *1) (|partial| -12 (-5 *1 (-358 *2)) (-4 *2 (-1067))))
- ((*1 *2 *1) (|partial| -12 (-5 *2 (-1125)) (-5 *1 (-1161)))))
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
+ (-4 *2 (-423 *3))))
+ ((*1 *1 *1) (-4 *1 (-1105))))
+(((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-366 *2)) (-4 *2 (-1179))
+ (-4 *2 (-823))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4337))
+ (-4 *1 (-366 *3)) (-4 *3 (-1179)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-170)) (-4 *2 (-541))))
+ ((*1 *1 *1) (|partial| -4 *1 (-699))))
(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-747)) (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1067)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-356)) (-4 *3 (-1018))
- (-5 *1 (-1127 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834))))
- ((*1 *1 *1 *1) (-5 *1 (-834))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-2 (|:| |k| (-648 *3)) (|:| |c| *4))))
- (-5 *1 (-605 *3 *4 *5)) (-4 *3 (-823))
- (-4 *4 (-13 (-170) (-694 (-400 (-549))))) (-14 *5 (-892)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-892)) (-5 *3 (-621 (-256))) (-5 *1 (-254))))
- ((*1 *1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-256)))))
+ (-12 (-4 *3 (-300)) (-5 *1 (-447 *3 *2)) (-4 *2 (-1201 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-300)) (-5 *1 (-452 *3 *2)) (-4 *2 (-1201 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-300)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-747)))
+ (-5 *1 (-528 *3 *2 *4 *5)) (-4 *2 (-1201 *3)))))
(((*1 *2 *1) (-12 (-4 *1 (-319 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018))))
((*1 *2 *1) (-12 (-4 *1 (-423 *2)) (-4 *2 (-823)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1139 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))))
-(((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-1139 (-923 *4))) (-5 *1 (-409 *3 *4))
- (-4 *3 (-410 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-4 *3 (-356))
- (-5 *2 (-1139 (-923 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-1139 (-400 (-923 *3)))) (-5 *1 (-445 *3 *4 *5 *6))
- (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))))
+(((*1 *1) (-5 *1 (-799))))
+(((*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10)
+ (-12 (-5 *4 (-549)) (-5 *5 (-1124)) (-5 *6 (-665 (-219)))
+ (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-88 G))))
+ (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))))
+ (-5 *9 (-3 (|:| |fn| (-381)) (|:| |fp| (-70 PEDERV))))
+ (-5 *10 (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))
+ (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))))
(((*1 *2 *3 *2)
- (-12 (-4 *2 (-13 (-356) (-821))) (-5 *1 (-179 *2 *3))
- (-4 *3 (-1202 (-167 *2)))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-356) (-821))) (-5 *1 (-179 *2 *3))
- (-4 *3 (-1202 (-167 *2))))))
-(((*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228))))
- ((*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228)))))
-(((*1 *2 *3 *4 *5 *3 *6 *3)
- (-12 (-5 *3 (-549)) (-5 *5 (-167 (-219))) (-5 *6 (-1125))
- (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-354 *3)) (-4 *3 (-1067))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-549)) (-5 *2 (-747)) (-5 *1 (-379 *4)) (-4 *4 (-1067))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-549)) (-4 *2 (-23)) (-5 *1 (-625 *4 *2 *5))
- (-4 *4 (-1067)) (-14 *5 *2)))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-549)) (-5 *2 (-747)) (-5 *1 (-795 *4)) (-4 *4 (-823)))))
-(((*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1 (-372))) (-5 *1 (-1011)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-133)))))
-(((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1231)) (-5 *1 (-1105))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-834))) (-5 *2 (-1231)) (-5 *1 (-1105)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-444))
- (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *1 (-948 *3 *4 *5 *6)))))
+ (-12 (-5 *2 (-621 *1)) (-5 *3 (-621 *7)) (-4 *1 (-1038 *4 *5 *6 *7))
+ (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *1))
+ (-4 *1 (-1038 *4 *5 *6 *7))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 *1))
+ (-4 *1 (-1038 *4 *5 *6 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-549)) (-5 *1 (-437 *3)) (-4 *3 (-397)) (-4 *3 (-1018)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1 (-1092 *4 *3 *5))) (-4 *4 (-38 (-400 (-549))))
+ (-4 *4 (-1018)) (-4 *3 (-823)) (-5 *1 (-1092 *4 *3 *5))
+ (-4 *5 (-920 *4 (-521 *3) *3))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1 (-1173 *4))) (-5 *3 (-1142)) (-5 *1 (-1173 *4))
+ (-4 *4 (-38 (-400 (-549)))) (-4 *4 (-1018)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-844 (-937 *3) (-937 *3))) (-5 *1 (-937 *3))
+ (-4 *3 (-938)))))
+(((*1 *1 *1 *1 *1) (-5 *1 (-834)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))))
+(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))))
+(((*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3)
+ (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *6 (-219))
+ (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-728)))))
(((*1 *2 *1)
(-12 (-4 *1 (-319 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768))
(-5 *2 (-112))))
((*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-823)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-142)))))
+(((*1 *1) (-5 *1 (-1051))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-541)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-356) (-295)
+ (-10 -8 (-15 -1392 ((-1091 *3 (-592 $)) $))
+ (-15 -1404 ((-1091 *3 (-592 $)) $))
+ (-15 -3845 ($ (-1091 *3 (-592 $))))))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018))
+ (-14 *4 (-621 (-1142)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1179))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823)))
+ (-14 *4 (-621 (-1142)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-648 *3)) (-4 *3 (-823))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-653 *3)) (-4 *3 (-823))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-864 *3)) (-4 *3 (-823)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-1124)) (-5 *2 (-750)) (-5 *1 (-114))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1142)) (-5 *3 (-1070)) (-5 *1 (-936)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *1 *1 *1) (|partial| -4 *1 (-130))))
-(((*1 *1 *2) (-12 (-5 *2 (-1087)) (-5 *1 (-797)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))))
-(((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-1146))))
- ((*1 *2 *3) (-12 (-5 *3 (-1143)) (-5 *2 (-1231)) (-5 *1 (-1146))))
- ((*1 *2 *3 *1) (-12 (-5 *3 (-1143)) (-5 *2 (-1231)) (-5 *1 (-1146)))))
-(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-1125)) (-5 *2 (-750)) (-5 *1 (-114))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1143)) (-5 *3 (-1071)) (-5 *1 (-936)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-564)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1123 *4)) (-5 *3 (-1 *4 (-549))) (-4 *4 (-1018))
- (-5 *1 (-1127 *4)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1 (-914 (-219)) (-914 (-219)))) (-5 *3 (-621 (-256)))
- (-5 *1 (-254))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1 (-914 (-219)) (-914 (-219)))) (-5 *1 (-256))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 (-473 *5 *6))) (-5 *3 (-473 *5 *6))
- (-14 *5 (-621 (-1143))) (-4 *6 (-444)) (-5 *2 (-1226 *6))
- (-5 *1 (-609 *5 *6)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-541)) (-5 *1 (-601 *2 *3)) (-4 *3 (-1201 *2)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1172 *4 *5 *3 *6)) (-4 *4 (-541)) (-4 *5 (-769))
+ (-4 *3 (-823)) (-4 *6 (-1032 *4 *5 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1244 *3)) (-4 *3 (-356)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-539 *3)) (-4 *3 (-13 (-397) (-1164))) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-821)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1035 *4 *3)) (-4 *4 (-13 (-821) (-356)))
+ (-4 *3 (-1201 *4)) (-5 *2 (-112)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1108 *3 *4)) (-14 *3 (-892)) (-4 *4 (-356))
+ (-5 *1 (-964 *3 *4)))))
(((*1 *1 *1) (-4 *1 (-237)))
((*1 *1 *1)
(-12 (-4 *2 (-170)) (-5 *1 (-282 *2 *3 *4 *5 *6 *7))
- (-4 *3 (-1202 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4))
+ (-4 *3 (-1201 *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)
- (-1536 (-12 (-5 *1 (-287 *2)) (-4 *2 (-356)) (-4 *2 (-1180)))
- (-12 (-5 *1 (-287 *2)) (-4 *2 (-465)) (-4 *2 (-1180)))))
+ (-1536 (-12 (-5 *1 (-287 *2)) (-4 *2 (-356)) (-4 *2 (-1179)))
+ (-12 (-5 *1 (-287 *2)) (-4 *2 (-465)) (-4 *2 (-1179)))))
((*1 *1 *1) (-4 *1 (-465)))
- ((*1 *2 *2) (-12 (-5 *2 (-1226 *3)) (-4 *3 (-342)) (-5 *1 (-519 *3))))
+ ((*1 *2 *2) (-12 (-5 *2 (-1225 *3)) (-4 *3 (-342)) (-5 *1 (-519 *3))))
((*1 *1 *1)
(-12 (-5 *1 (-692 *2 *3 *4 *5 *6)) (-4 *2 (-170)) (-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 (-4 *1 (-773 *2)) (-4 *2 (-170)) (-4 *2 (-356)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4))))
- (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1123 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-1125)) (-5 *5 (-665 (-219)))
- (-5 *2 (-1006)) (-5 *1 (-724)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-356)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
- (-5 *1 (-495 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-981 *3)) (-4 *3 (-1180)) (-4 *3 (-1067))
- (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *3 *4 *4 *5 *3 *6)
+ (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-621 *3)) (-5 *6 (-1138 *3))
+ (-4 *3 (-13 (-423 *7) (-27) (-1164)))
+ (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-545 *7 *3 *8)) (-4 *8 (-1066))))
+ ((*1 *2 *3 *4 *4 *5 *4 *3 *6)
+ (|partial| -12 (-5 *4 (-592 *3)) (-5 *5 (-621 *3))
+ (-5 *6 (-400 (-1138 *3))) (-4 *3 (-13 (-423 *7) (-27) (-1164)))
+ (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-545 *7 *3 *8)) (-4 *8 (-1066)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-342)) (-5 *2 (-929 (-1139 *4))) (-5 *1 (-350 *4))
- (-5 *3 (-1139 *4)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-747)) (-4 *6 (-356)) (-5 *4 (-1174 *6))
- (-5 *2 (-1 (-1123 *4) (-1123 *4))) (-5 *1 (-1234 *6))
- (-5 *5 (-1123 *4)))))
-(((*1 *2 *1 *1)
- (|partial| -12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361))
- (-5 *2 (-1139 *3))))
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
+ (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
+ (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
+ (|:| |abserr| (-219)) (|:| |relerr| (-219))))
+ (-5 *2 (-372)) (-5 *1 (-199)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3))
+ (-4 *5 (-366 *3)) (-5 *2 (-621 (-621 *3)))))
((*1 *2 *1)
- (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361))
- (-5 *2 (-1139 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-372)) (-5 *2 (-219)) (-5 *1 (-298)))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-592 *1))) (-4 *1 (-295)))))
-(((*1 *1 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-541) (-145))) (-5 *1 (-526 *3 *2))
- (-4 *2 (-1217 *3))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-4 *4 (-1202 *3))
- (-4 *5 (-701 *3 *4)) (-5 *1 (-530 *3 *4 *5 *2)) (-4 *2 (-1217 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-356) (-361) (-594 (-549)))) (-5 *1 (-531 *3 *2))
- (-4 *2 (-1217 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-13 (-541) (-145)))
- (-5 *1 (-1119 *3)))))
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
+ (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-621 (-621 *5)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-621 *3))) (-5 *1 (-1151 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3)
+ (-12 (-5 *6 (-621 (-112))) (-5 *7 (-665 (-219)))
+ (-5 *8 (-665 (-549))) (-5 *3 (-549)) (-5 *4 (-219)) (-5 *5 (-112))
+ (-5 *2 (-1006)) (-5 *1 (-731)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-621 (-621 *8))) (-5 *3 (-621 *8))
+ (-4 *8 (-1032 *5 *6 *7)) (-4 *5 (-541)) (-4 *6 (-769))
+ (-4 *7 (-823)) (-5 *2 (-112)) (-5 *1 (-948 *5 *6 *7 *8)))))
+(((*1 *1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-834)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-623 *3)) (-4 *3 (-1066)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))))
-(((*1 *1 *1) (-12 (-5 *1 (-172 *2)) (-4 *2 (-300))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549))))
- ((*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1180))))
- ((*1 *1 *1) (-4 *1 (-840 *2)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-944 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-768))
- (-4 *4 (-823)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *2 (-621 (-1139 *7))) (-5 *3 (-1139 *7))
- (-4 *7 (-920 *5 *6 *4)) (-4 *5 (-880)) (-4 *6 (-769))
- (-4 *4 (-823)) (-5 *1 (-877 *5 *6 *4 *7)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-800)))))
-(((*1 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-361)) (-4 *2 (-356))))
+ (-12 (-5 *2 (-3 (|:| |fst| (-427)) (|:| -2901 "void")))
+ (-5 *1 (-430)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-914 (-219)) (-914 (-219)))) (-5 *1 (-256))))
((*1 *2 *3)
- (-12 (-5 *3 (-892)) (-5 *2 (-1226 *4)) (-5 *1 (-519 *4))
- (-4 *4 (-342)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1123 (-219))) (-5 *2 (-621 (-1125))) (-5 *1 (-186))))
+ (-12 (-5 *3 (-1225 *1)) (-4 *1 (-322 *4)) (-4 *4 (-356))
+ (-5 *2 (-665 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-1225 *3))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170))
+ (-5 *2 (-665 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170))
+ (-5 *2 (-1225 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1225 *1)) (-4 *1 (-363 *4 *5)) (-4 *4 (-170))
+ (-4 *5 (-1201 *4)) (-5 *2 (-665 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1225 *1)) (-4 *1 (-363 *4 *5)) (-4 *4 (-170))
+ (-4 *5 (-1201 *4)) (-5 *2 (-1225 *4))))
((*1 *2 *3)
- (-12 (-5 *3 (-1123 (-219))) (-5 *2 (-621 (-1125))) (-5 *1 (-293))))
+ (-12 (-5 *3 (-1225 *1)) (-4 *1 (-402 *4 *5)) (-4 *4 (-170))
+ (-4 *5 (-1201 *4)) (-5 *2 (-665 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-402 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1201 *3))
+ (-5 *2 (-1225 *3))))
((*1 *2 *3)
- (-12 (-5 *3 (-1123 (-219))) (-5 *2 (-621 (-1125))) (-5 *1 (-298)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-356))
- (-5 *2
- (-2 (|:| A (-665 *5))
- (|:| |eqs|
- (-621
- (-2 (|:| C (-665 *5)) (|:| |g| (-1226 *5)) (|:| -2652 *6)
- (|:| |rh| *5))))))
- (-5 *1 (-789 *5 *6)) (-5 *3 (-665 *5)) (-5 *4 (-1226 *5))
- (-4 *6 (-632 *5))))
+ (-12 (-5 *3 (-1225 *1)) (-4 *1 (-410 *4)) (-4 *4 (-170))
+ (-5 *2 (-665 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-1225 *3))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-356)) (-4 *6 (-632 *5))
- (-5 *2 (-2 (|:| -3521 (-665 *6)) (|:| |vec| (-1226 *5))))
- (-5 *1 (-789 *5 *6)) (-5 *3 (-665 *6)) (-5 *4 (-1226 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
+ (-12 (-5 *4 (-621 (-665 *5))) (-5 *3 (-665 *5)) (-4 *5 (-356))
+ (-5 *2 (-1225 *5)) (-5 *1 (-1052 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1009 (-549))) (-4 *1 (-295)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-534)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-876 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-592 *1))) (-4 *1 (-295)))))
+(((*1 *1 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1179)))))
+(((*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-897))))
+ ((*1 *1 *1 *2 *2) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-898))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1060 (-219))) (-5 *1 (-898))))
+ ((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2))
+ (-4 *4 (-366 *2)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3))
- (-4 *3 (-13 (-356) (-1165) (-973)))))
- ((*1 *2)
- (|partial| -12 (-4 *4 (-1184)) (-4 *5 (-1202 (-400 *2)))
- (-4 *2 (-1202 *4)) (-5 *1 (-334 *3 *4 *2 *5))
- (-4 *3 (-335 *4 *2 *5))))
- ((*1 *2)
- (|partial| -12 (-4 *1 (-335 *3 *2 *4)) (-4 *3 (-1184))
- (-4 *4 (-1202 (-400 *2))) (-4 *2 (-1202 *3)))))
-(((*1 *1 *1 *1 *1) (-5 *1 (-834))) ((*1 *1 *1 *1) (-5 *1 (-834)))
- ((*1 *1 *1) (-5 *1 (-834))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-592 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *4)))
- (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-270 *4 *2)))))
+ (-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
+ (-5 *2 (-621 *4)) (-5 *1 (-1094 *3 *4)) (-4 *3 (-1201 *4))))
+ ((*1 *2 *3 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
+ (-5 *2 (-621 *3)) (-5 *1 (-1094 *4 *3)) (-4 *4 (-1201 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-1145 (-400 (-549))))
- (-5 *1 (-184)))))
-(((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
-(((*1 *2)
- (-12 (-4 *2 (-13 (-423 *3) (-973))) (-5 *1 (-269 *3 *2))
- (-4 *3 (-13 (-823) (-541))))))
+ (-12 (-5 *3 (-241 *4 *5)) (-14 *4 (-621 (-1142))) (-4 *5 (-1018))
+ (-5 *2 (-473 *4 *5)) (-5 *1 (-915 *4 *5)))))
+(((*1 *2 *1 *3 *3 *3 *2)
+ (-12 (-5 *3 (-747)) (-5 *1 (-651 *2)) (-4 *2 (-1066)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 *4)) (-4 *4 (-1018)) (-5 *2 (-1226 *4))
- (-5 *1 (-1144 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-892)) (-5 *2 (-1226 *3)) (-5 *1 (-1144 *3))
- (-4 *3 (-1018)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1173 *2 *3 *4 *5)) (-4 *2 (-541)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *5 (-1032 *2 *3 *4)))))
+ (-12 (-5 *3 (-1138 (-549))) (-5 *2 (-549)) (-5 *1 (-913)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1142))
+ (-4 *5 (-13 (-541) (-1009 (-549)) (-145)))
+ (-5 *2
+ (-2 (|:| -2677 (-400 (-923 *5))) (|:| |coeff| (-400 (-923 *5)))))
+ (-5 *1 (-555 *5)) (-5 *3 (-400 (-923 *5))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
+ (|:| |relerr| (-219))))
+ (-5 *2 (-372)) (-5 *1 (-186)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-1225 (-549))) (-5 *3 (-549)) (-5 *1 (-1076))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-1225 (-549))) (-5 *3 (-621 (-549))) (-5 *4 (-549))
+ (-5 *1 (-1076)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228))))
- ((*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1228)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *5 (-1009 (-48)))
- (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-4 *5 (-423 *4))
- (-5 *2 (-411 (-1139 (-48)))) (-5 *1 (-428 *4 *5 *3))
- (-4 *3 (-1202 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-372)) (-5 *1 (-762)))))
-(((*1 *1) (-5 *1 (-1052))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-112)) (-5 *5 (-549)) (-4 *6 (-356)) (-4 *6 (-361))
- (-4 *6 (-1018)) (-5 *2 (-621 (-621 (-665 *6)))) (-5 *1 (-1000 *6))
- (-5 *3 (-621 (-665 *6)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-1208 *3 *2)) (-4 *3 (-1018))
+ (-4 *2 (-1185 *3)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-444)) (-4 *4 (-823))
+ (-4 *5 (-769)) (-5 *1 (-958 *3 *4 *5 *6)) (-4 *6 (-920 *3 *5 *4)))))
+(((*1 *2 *3 *3 *3 *3)
+ (-12 (-4 *4 (-444)) (-4 *3 (-769)) (-4 *5 (-823)) (-5 *2 (-112))
+ (-5 *1 (-441 *4 *3 *5 *6)) (-4 *6 (-920 *4 *3 *5)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-621 (-923 (-549)))) (-5 *4 (-621 (-1142)))
+ (-5 *2 (-621 (-621 (-372)))) (-5 *1 (-994)) (-5 *5 (-372))))
((*1 *2 *3)
- (-12 (-4 *4 (-356)) (-4 *4 (-361)) (-4 *4 (-1018))
- (-5 *2 (-621 (-621 (-665 *4)))) (-5 *1 (-1000 *4))
- (-5 *3 (-621 (-665 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-356)) (-4 *5 (-361)) (-4 *5 (-1018))
- (-5 *2 (-621 (-621 (-665 *5)))) (-5 *1 (-1000 *5))
- (-5 *3 (-621 (-665 *5)))))
+ (-12 (-5 *3 (-1015 *4 *5)) (-4 *4 (-13 (-821) (-300) (-145) (-993)))
+ (-14 *5 (-621 (-1142))) (-5 *2 (-621 (-621 (-995 (-400 *4)))))
+ (-5 *1 (-1251 *4 *5 *6)) (-14 *6 (-621 (-1142)))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-821) (-300) (-145) (-993)))
+ (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1251 *5 *6 *7))
+ (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-821) (-300) (-145) (-993)))
+ (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1251 *5 *6 *7))
+ (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-892)) (-4 *5 (-356)) (-4 *5 (-361)) (-4 *5 (-1018))
- (-5 *2 (-621 (-621 (-665 *5)))) (-5 *1 (-1000 *5))
- (-5 *3 (-621 (-665 *5))))))
-(((*1 *1 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170))))
- ((*1 *1 *1 *1) (-4 *1 (-465)))
- ((*1 *1 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170))))
- ((*1 *2 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-854))))
- ((*1 *1 *1) (-5 *1 (-942)))
- ((*1 *1 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-420 *3 *2)) (-4 *3 (-13 (-170) (-38 (-400 (-549)))))
- (-4 *2 (-13 (-823) (-21))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1087)) (-5 *2 (-112)) (-5 *1 (-797)))))
+ (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-821) (-300) (-145) (-993)))
+ (-5 *2 (-621 (-621 (-995 (-400 *5))))) (-5 *1 (-1251 *5 *6 *7))
+ (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-923 *4)))
+ (-4 *4 (-13 (-821) (-300) (-145) (-993)))
+ (-5 *2 (-621 (-621 (-995 (-400 *4))))) (-5 *1 (-1251 *4 *5 *6))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-621 (-1142))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-885 *3)) (-4 *3 (-300)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-1101))) (-5 *1 (-1056)))))
+(((*1 *2 *2 *2 *3 *3)
+ (-12 (-5 *3 (-747)) (-4 *4 (-1018)) (-5 *1 (-1197 *4 *2))
+ (-4 *2 (-1201 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-1230)) (-5 *1 (-1145)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-729)))))
+(((*1 *2 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-747)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892))
+ (-4 *4 (-1018)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-444))
+ (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *1 (-948 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-665 *5))) (-5 *4 (-1225 *5)) (-4 *5 (-300))
+ (-4 *5 (-1018)) (-5 *2 (-665 *5)) (-5 *1 (-1000 *5)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-795 *3)) (-4 *3 (-823)) (-5 *1 (-648 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 (-372))) (-5 *1 (-256))))
+ ((*1 *1)
+ (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-541)) (-4 *2 (-170))))
+ ((*1 *2 *1) (-12 (-5 *1 (-411 *2)) (-4 *2 (-541)))))
(((*1 *2 *2 *2) (-12 (-5 *2 (-1006)) (-5 *1 (-298))))
((*1 *2 *3)
(-12 (-5 *3 (-621 (-1006))) (-5 *2 (-1006)) (-5 *1 (-298))))
- ((*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-627 *3)) (-4 *3 (-1180))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-627 *2)) (-4 *2 (-1180))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-627 *2)) (-4 *2 (-1180))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-627 *2)) (-4 *2 (-1180))))
+ ((*1 *1 *2) (-12 (-5 *2 (-621 *1)) (-4 *1 (-627 *3)) (-4 *3 (-1179))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-627 *2)) (-4 *2 (-1179))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-627 *2)) (-4 *2 (-1179))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-627 *2)) (-4 *2 (-1179))))
((*1 *1 *1 *1) (-5 *1 (-1030)))
((*1 *2 *3)
- (-12 (-5 *3 (-1123 (-1123 *4))) (-5 *2 (-1123 *4)) (-5 *1 (-1120 *4))
- (-4 *4 (-1180))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)) (-5 *2 (-411 *3))
- (-5 *1 (-719 *4 *5 *6 *3)) (-4 *3 (-920 *6 *4 *5)))))
+ (-12 (-5 *3 (-1122 (-1122 *4))) (-5 *2 (-1122 *4)) (-5 *1 (-1119 *4))
+ (-4 *4 (-1179))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-621 *2)) (-4 *2 (-1032 *4 *5 *6)) (-4 *4 (-541))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-948 *4 *5 *6 *2)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1225 *5)) (-4 *5 (-768)) (-5 *2 (-112))
+ (-5 *1 (-818 *4 *5)) (-14 *4 (-747)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1069 *4)) (-4 *4 (-1067)) (-5 *2 (-1 *4))
- (-5 *1 (-988 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-372))) (-5 *1 (-1011)) (-5 *3 (-372))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1061 (-549))) (-5 *2 (-1 (-549))) (-5 *1 (-1016)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1226 *4)) (-4 *4 (-410 *3)) (-4 *3 (-300))
- (-4 *3 (-541)) (-5 *1 (-43 *3 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-892)) (-4 *4 (-356)) (-5 *2 (-1226 *1))
- (-4 *1 (-322 *4))))
- ((*1 *2) (-12 (-4 *3 (-356)) (-5 *2 (-1226 *1)) (-4 *1 (-322 *3))))
- ((*1 *2)
- (-12 (-4 *3 (-170)) (-4 *4 (-1202 *3)) (-5 *2 (-1226 *1))
- (-4 *1 (-402 *3 *4))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-300)) (-4 *4 (-963 *3)) (-4 *5 (-1202 *4))
- (-5 *2 (-1226 *6)) (-5 *1 (-406 *3 *4 *5 *6))
- (-4 *6 (-13 (-402 *4 *5) (-1009 *4)))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-300)) (-4 *4 (-963 *3)) (-4 *5 (-1202 *4))
- (-5 *2 (-1226 *6)) (-5 *1 (-407 *3 *4 *5 *6 *7))
- (-4 *6 (-402 *4 *5)) (-14 *7 *2)))
- ((*1 *2) (-12 (-4 *3 (-170)) (-5 *2 (-1226 *1)) (-4 *1 (-410 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-892)) (-5 *2 (-1226 (-1226 *4))) (-5 *1 (-519 *4))
- (-4 *4 (-342)))))
+ (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2))
+ (-4 *4 (-13 (-823) (-541))))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-621 (-549))) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-549))
+ (-14 *4 (-747)) (-4 *5 (-170)))))
(((*1 *2)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-5 *2 (-665 (-400 *4))))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1139 *1)) (-5 *3 (-1143)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-1139 *1)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-923 *1)) (-4 *1 (-27))))
+ (-12 (-4 *4 (-1183)) (-4 *5 (-1201 *4)) (-4 *6 (-1201 (-400 *5)))
+ (-5 *2 (-112)) (-5 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-335 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-56 *2 *3 *4)) (-4 *2 (-1179)) (-4 *3 (-366 *2))
+ (-4 *4 (-366 *2))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-1143)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-823) (-541)))))
- ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-823) (-541)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1139 *2)) (-5 *4 (-1143)) (-4 *2 (-423 *5))
- (-5 *1 (-32 *5 *2)) (-4 *5 (-13 (-823) (-541)))))
- ((*1 *1 *2 *3)
- (|partial| -12 (-5 *2 (-1139 *1)) (-5 *3 (-892)) (-4 *1 (-983))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-1139 *1)) (-5 *3 (-892)) (-5 *4 (-834))
- (-4 *1 (-983))))
- ((*1 *1 *2 *3)
- (|partial| -12 (-5 *3 (-892)) (-4 *4 (-13 (-821) (-356)))
- (-4 *1 (-1035 *4 *2)) (-4 *2 (-1202 *4)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892))
- (-4 *4 (-1018)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-273))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-937 *3)) (-4 *3 (-938)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-356)) (-5 *1 (-743 *2 *3)) (-4 *2 (-685 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
-(((*1 *2 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-167 (-219)))) (-5 *2 (-1006))
- (-5 *1 (-731)))))
-(((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
- (-4 *3 (-360 *4))))
- ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1123 (-400 *3))) (-5 *1 (-172 *3)) (-4 *3 (-300)))))
-(((*1 *2)
- (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-410 *3)))))
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-584 *3 *2)) (-4 *3 (-1066))
+ (-4 *2 (-1179)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1142)) (-5 *2 (-108)) (-5 *1 (-173))))
+ ((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1142)) (-5 *2 (-108)) (-5 *1 (-1051)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-400 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1201 *5))
+ (-5 *1 (-704 *5 *2)) (-4 *5 (-356)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-621 (-621 *6))) (-4 *6 (-920 *3 *5 *4))
- (-4 *3 (-13 (-300) (-145))) (-4 *4 (-13 (-823) (-594 (-1143))))
- (-4 *5 (-769)) (-5 *1 (-895 *3 *4 *5 *6)))))
-(((*1 *2 *2) (-12 (-5 *2 (-621 (-309 (-219)))) (-5 *1 (-260)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-621 (-473 *4 *5))) (-5 *3 (-621 (-836 *4)))
- (-14 *4 (-621 (-1143))) (-4 *5 (-444)) (-5 *1 (-463 *4 *5 *6))
- (-4 *6 (-444)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-747)) (-5 *5 (-621 *3)) (-4 *3 (-300)) (-4 *6 (-823))
- (-4 *7 (-769)) (-5 *2 (-112)) (-5 *1 (-603 *6 *7 *3 *8))
- (-4 *8 (-920 *3 *7 *6)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-592 *3)) (-4 *3 (-13 (-423 *5) (-27) (-1165)))
- (-4 *5 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *2 (-567 *3)) (-5 *1 (-551 *5 *3 *6)) (-4 *6 (-1067)))))
+ (-12 (-4 *2 (-13 (-356) (-821))) (-5 *1 (-179 *2 *3))
+ (-4 *3 (-1201 (-167 *2))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-665 *4)) (-4 *4 (-356)) (-5 *2 (-1138 *4))
+ (-5 *1 (-522 *4 *5 *6)) (-4 *5 (-356)) (-4 *6 (-13 (-356) (-821))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-427)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-621 (-1138 *7))) (-5 *3 (-1138 *7))
+ (-4 *7 (-920 *5 *6 *4)) (-4 *5 (-880)) (-4 *6 (-769))
+ (-4 *4 (-823)) (-5 *1 (-877 *5 *6 *4 *7)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-621 *3)) (-4 *3 (-300)) (-5 *1 (-177 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-411 *3)) (-4 *3 (-541))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-2 (|:| -2119 *4) (|:| -3977 (-549)))))
+ (-4 *4 (-1201 (-549))) (-5 *2 (-747)) (-5 *1 (-434 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1018)) (-5 *1 (-689 *3 *2)) (-4 *2 (-1201 *3)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-342)) (-4 *4 (-322 *3)) (-4 *5 (-1202 *4))
- (-5 *1 (-753 *3 *4 *5 *2 *6)) (-4 *2 (-1202 *5)) (-14 *6 (-892))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-1245 *3)) (-4 *3 (-356)) (-4 *3 (-361))))
- ((*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-356)) (-4 *2 (-361)))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-729)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *4 (-549)) (-5 *6 (-1 (-1231) (-1226 *5) (-1226 *5) (-372)))
- (-5 *3 (-1226 (-372))) (-5 *5 (-372)) (-5 *2 (-1231))
- (-5 *1 (-764))))
- ((*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3)
- (-12 (-5 *4 (-549)) (-5 *6 (-1 (-1231) (-1226 *5) (-1226 *5) (-372)))
- (-5 *3 (-1226 (-372))) (-5 *5 (-372)) (-5 *2 (-1231))
- (-5 *1 (-764)))))
-(((*1 *2)
- (-12 (-4 *3 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-1231))
- (-5 *1 (-426 *3 *4)) (-4 *4 (-423 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *3 (-366 *2)) (-4 *4 (-366 *2))
- (|has| *2 (-6 (-4339 "*"))) (-4 *2 (-1018))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-366 *2)) (-4 *5 (-366 *2)) (-4 *2 (-170))
- (-5 *1 (-664 *2 *4 *5 *3)) (-4 *3 (-663 *2 *4 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1090 *3 *2 *4 *5)) (-4 *4 (-232 *3 *2))
- (-4 *5 (-232 *3 *2)) (|has| *2 (-6 (-4339 "*"))) (-4 *2 (-1018)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219)))
- (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-65 FUNCT1))))
- (-5 *2 (-1006)) (-5 *1 (-730)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-508))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-13 (-1067) (-34))) (-5 *1 (-1107 *3 *2))
- (-4 *3 (-13 (-1067) (-34)))))
- ((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1237)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-621 *7)) (|:| |badPols| (-621 *7))))
- (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))))
-(((*1 *1 *1) (-5 *1 (-1030))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1202 *6))
- (-4 *6 (-13 (-27) (-423 *5)))
- (-4 *5 (-13 (-823) (-541) (-1009 (-549)))) (-4 *8 (-1202 (-400 *7)))
- (-5 *2 (-567 *3)) (-5 *1 (-537 *5 *6 *7 *8 *3))
- (-4 *3 (-335 *6 *7 *8)))))
-(((*1 *2 *2 *2 *3 *3)
- (-12 (-5 *3 (-747)) (-4 *4 (-1018)) (-5 *1 (-1198 *4 *2))
- (-4 *2 (-1202 *4)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-387))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1160)))))
+ (-12
+ (-5 *3
+ (-621 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549))))))
+ (-5 *2 (-621 (-400 (-549)))) (-5 *1 (-991 *4))
+ (-4 *4 (-1201 (-549))))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-935 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-1241 (-1143) *3)) (-4 *3 (-1018)) (-5 *1 (-1248 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1241 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
- (-5 *1 (-1250 *3 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823))
- (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-621 *4)))))
+ (-12 (-5 *2 (-1130 3 *3)) (-4 *3 (-1018)) (-4 *1 (-1100 *3))))
+ ((*1 *1) (-12 (-4 *1 (-1100 *2)) (-4 *2 (-1018)))))
+(((*1 *2)
+ (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-410 *3)))))
+(((*1 *1 *1 *1) (-5 *1 (-834))))
+(((*1 *1 *1 *1) (-4 *1 (-141)))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2))
+ (-4 *2 (-423 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-508))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-1066) (-34))) (-5 *1 (-1106 *3 *2))
+ (-4 *3 (-13 (-1066) (-34)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-1236)))))
(((*1 *1 *1)
- (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-170)) (-4 *2 (-541))))
- ((*1 *1 *1) (|partial| -4 *1 (-699))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 (-142))) (-5 *1 (-139))))
- ((*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-139)))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5
- (-1 (-2 (|:| |ans| *6) (|:| -3848 *6) (|:| |sol?| (-112))) (-549)
- *6))
- (-4 *6 (-356)) (-4 *7 (-1202 *6))
- (-5 *2
- (-3 (-2 (|:| |answer| (-400 *7)) (|:| |a0| *6))
- (-2 (|:| -3440 (-400 *7)) (|:| |coeff| (-400 *7))) "failed"))
- (-5 *1 (-559 *6 *7)) (-5 *3 (-400 *7)))))
+ (-12 (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1066) (-34)))
+ (-4 *3 (-13 (-1066) (-34))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1086)) (-5 *1 (-925)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-5 *1 (-478 *2)) (-4 *2 (-1202 (-549))))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *2 (-444)))))
-(((*1 *2 *1)
- (|partial| -12
- (-4 *3 (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444)))
- (-5 *2 (-816 *4)) (-5 *1 (-306 *3 *4 *5 *6))
- (-4 *4 (-13 (-27) (-1165) (-423 *3))) (-14 *5 (-1143))
- (-14 *6 *4)))
- ((*1 *2 *1)
- (|partial| -12
- (-4 *3 (-13 (-823) (-1009 (-549)) (-617 (-549)) (-444)))
- (-5 *2 (-816 *4)) (-5 *1 (-1212 *3 *4 *5 *6))
- (-4 *4 (-13 (-27) (-1165) (-423 *3))) (-14 *5 (-1143))
- (-14 *6 *4))))
-(((*1 *1 *1 *1 *2 *3)
- (-12 (-5 *2 (-621 (-1107 *4 *5))) (-5 *3 (-1 (-112) *5 *5))
- (-4 *4 (-13 (-1067) (-34))) (-4 *5 (-13 (-1067) (-34)))
- (-5 *1 (-1108 *4 *5))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-1107 *3 *4))) (-4 *3 (-13 (-1067) (-34)))
- (-4 *4 (-13 (-1067) (-34))) (-5 *1 (-1108 *3 *4)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1175 *3)) (-4 *3 (-945)))))
+ (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142))))
+ (-4 *6 (-769)) (-5 *2 (-400 (-923 *4))) (-5 *1 (-895 *4 *5 *6 *3))
+ (-4 *3 (-920 *4 *6 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-665 *7)) (-4 *7 (-920 *4 *6 *5))
+ (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142))))
+ (-4 *6 (-769)) (-5 *2 (-665 (-400 (-923 *4))))
+ (-5 *1 (-895 *4 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *6 *5))
+ (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142))))
+ (-4 *6 (-769)) (-5 *2 (-621 (-400 (-923 *4))))
+ (-5 *1 (-895 *4 *5 *6 *7)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-541)) (-5 *1 (-940 *3 *2)) (-4 *2 (-1202 *3))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *2 (-541))))
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-823)) (-4 *5 (-880)) (-4 *6 (-769))
+ (-4 *8 (-920 *5 *6 *7)) (-5 *2 (-411 (-1138 *8)))
+ (-5 *1 (-877 *5 *6 *7 *8)) (-5 *4 (-1138 *8))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-880)) (-4 *5 (-1201 *4)) (-5 *2 (-411 (-1138 *5)))
+ (-5 *1 (-878 *4 *5)) (-5 *3 (-1138 *5)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-951 *2)) (-4 *2 (-1018))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1175))))
((*1 *1 *1 *1)
- (-12 (-4 *1 (-1202 *2)) (-4 *2 (-1018)) (-4 *2 (-541)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-169)))))
-(((*1 *2 *3 *1) (-12 (-5 *3 (-1143)) (-5 *2 (-1147)) (-5 *1 (-1146)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-400 (-549))) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-541)) (-4 *8 (-920 *7 *5 *6))
- (-5 *2 (-2 (|:| -3731 (-747)) (|:| -1570 *9) (|:| |radicand| *9)))
- (-5 *1 (-924 *5 *6 *7 *8 *9)) (-5 *4 (-747))
- (-4 *9
- (-13 (-356)
- (-10 -8 (-15 -1394 (*8 $)) (-15 -1403 (*8 $)) (-15 -3846 ($ *8))))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *1) (-12 (-5 *2 (-942)) (-5 *1 (-876 *3)) (-4 *3 (-1067)))))
+ (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-1018)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1122 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1018))
+ (-5 *3 (-400 (-549))) (-5 *1 (-1126 *4)))))
+(((*1 *1)
+ (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747))
+ (-4 *4 (-170)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-250)))))
+(((*1 *2 *3 *4 *4 *2 *2 *2)
+ (-12 (-5 *2 (-549))
+ (-5 *3
+ (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-747)) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-4 *6 (-769)) (-4 *4 (-920 *5 *6 *7)) (-4 *5 (-444)) (-4 *7 (-823))
+ (-5 *1 (-441 *5 *6 *7 *4)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-400 *2)) (-4 *2 (-1202 *5))
- (-5 *1 (-783 *5 *2 *3 *6))
- (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549)))))
- (-4 *3 (-632 *2)) (-4 *6 (-632 *4))))
+ (-12 (-5 *4 (-1142))
+ (-4 *5 (-13 (-823) (-1009 (-549)) (-444) (-617 (-549))))
+ (-5 *2 (-2 (|:| -2916 *3) (|:| |nconst| *3))) (-5 *1 (-552 *5 *3))
+ (-4 *3 (-13 (-27) (-1164) (-423 *5))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-621
+ (-2
+ (|:| -3336
+ (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
+ (|:| |fn| (-1225 (-309 (-219))))
+ (|:| |yinit| (-621 (-219))) (|:| |intvals| (-621 (-219)))
+ (|:| |g| (-309 (-219))) (|:| |abserr| (-219))
+ (|:| |relerr| (-219))))
+ (|:| -1791
+ (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372))
+ (|:| |expense| (-372)) (|:| |accuracy| (-372))
+ (|:| |intermediateResults| (-372)))))))
+ (-5 *1 (-779)))))
+(((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-429)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1018)) (-4 *2 (-663 *4 *5 *6))
+ (-5 *1 (-103 *4 *3 *2 *5 *6)) (-4 *3 (-1201 *4)) (-4 *5 (-366 *4))
+ (-4 *6 (-366 *4)))))
+(((*1 *1 *2 *2) (-12 (-5 *1 (-848 *2)) (-4 *2 (-1179))))
+ ((*1 *1 *2 *2 *2) (-12 (-5 *1 (-850 *2)) (-4 *2 (-1179))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-914 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-621 (-914 *3))) (-4 *3 (-1018)) (-4 *1 (-1100 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-621 (-621 *3))) (-4 *1 (-1100 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-621 (-914 *3))) (-4 *1 (-1100 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *1) (|partial| -12 (-4 *1 (-983)) (-5 *2 (-834)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-117 *3)) (-14 *3 *2)))
+ ((*1 *1 *1) (-12 (-5 *1 (-117 *2)) (-14 *2 (-549))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-842 *3)) (-14 *3 *2)))
+ ((*1 *1 *1) (-12 (-5 *1 (-842 *2)) (-14 *2 (-549))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-549)) (-14 *3 *2) (-5 *1 (-843 *3 *4))
+ (-4 *4 (-840 *3))))
+ ((*1 *1 *1)
+ (-12 (-14 *2 (-549)) (-5 *1 (-843 *2 *3)) (-4 *3 (-840 *2))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-549)) (-4 *1 (-1187 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-1216 *3))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1187 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1216 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-133))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-809 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-816 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-411 *3)) (-4 *3 (-541)))))
+(((*1 *1) (-5 *1 (-1227))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-112)) (-5 *5 (-549)) (-4 *6 (-356)) (-4 *6 (-361))
+ (-4 *6 (-1018)) (-5 *2 (-621 (-621 (-665 *6)))) (-5 *1 (-1000 *6))
+ (-5 *3 (-621 (-665 *6)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-356)) (-4 *4 (-361)) (-4 *4 (-1018))
+ (-5 *2 (-621 (-621 (-665 *4)))) (-5 *1 (-1000 *4))
+ (-5 *3 (-621 (-665 *4)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 (-400 *2))) (-4 *2 (-1202 *5))
- (-5 *1 (-783 *5 *2 *3 *6))
- (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *3 (-632 *2))
- (-4 *6 (-632 (-400 *2))))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1173 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-665 *3)) (-4 *3 (-300)) (-5 *1 (-676 *3)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-729)))))
+ (-12 (-5 *4 (-112)) (-4 *5 (-356)) (-4 *5 (-361)) (-4 *5 (-1018))
+ (-5 *2 (-621 (-621 (-665 *5)))) (-5 *1 (-1000 *5))
+ (-5 *3 (-621 (-665 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-892)) (-4 *5 (-356)) (-4 *5 (-361)) (-4 *5 (-1018))
+ (-5 *2 (-621 (-621 (-665 *5)))) (-5 *1 (-1000 *5))
+ (-5 *3 (-621 (-665 *5))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-1235)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *2 (-621 *1)) (-4 *1 (-1032 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-892)) (-5 *2 (-1138 *4)) (-5 *1 (-569 *4))
+ (-4 *4 (-342)))))
(((*1 *1 *1) (-4 *1 (-534))))
-(((*1 *1 *1) (-5 *1 (-1030))))
(((*1 *2)
- (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
- (-4 *3 (-360 *4))))
- ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1074 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1143)) (-5 *1 (-592 *3)) (-4 *3 (-823)))))
+ (-12 (-5 *2 (-1230)) (-5 *1 (-1156 *3 *4)) (-4 *3 (-1066))
+ (-4 *4 (-1066)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-665 *8)) (-5 *4 (-747)) (-4 *8 (-920 *5 *7 *6))
- (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1143))))
- (-4 *7 (-769))
+ (-12 (-4 *5 (-1066)) (-4 *2 (-871 *5)) (-5 *1 (-668 *5 *2 *3 *4))
+ (-4 *3 (-366 *2)) (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4336)))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-167 (-219))) (-5 *4 (-549)) (-5 *2 (-1006))
+ (-5 *1 (-735)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-2 (|:| |deg| (-747)) (|:| -2538 *5))))
+ (-4 *5 (-1201 *4)) (-4 *4 (-342)) (-5 *2 (-621 *5))
+ (-5 *1 (-210 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-2 (|:| -2119 *5) (|:| -3977 (-549)))))
+ (-5 *4 (-549)) (-4 *5 (-1201 *4)) (-5 *2 (-621 *5))
+ (-5 *1 (-672 *5)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-665 (-167 (-400 (-549)))))
(-5 *2
(-621
- (-2 (|:| |det| *8) (|:| |rows| (-621 (-549)))
- (|:| |cols| (-621 (-549))))))
- (-5 *1 (-895 *5 *6 *7 *8)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *3 (-1202 (-549))) (-5 *1 (-478 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1148)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-541)) (-5 *1 (-601 *2 *3)) (-4 *3 (-1202 *2)))))
-(((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-923 (-219))) (-5 *2 (-309 (-372))) (-5 *1 (-298)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-747)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892))
- (-4 *4 (-1018)))))
+ (-2 (|:| |outval| (-167 *4)) (|:| |outmult| (-549))
+ (|:| |outvect| (-621 (-665 (-167 *4)))))))
+ (-5 *1 (-741 *4)) (-4 *4 (-13 (-356) (-821))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-549)))) (-4 *5 (-1201 *4))
+ (-5 *2 (-2 (|:| |ans| (-400 *5)) (|:| |nosol| (-112))))
+ (-5 *1 (-986 *4 *5)) (-5 *3 (-400 *5)))))
+(((*1 *2 *2 *3) (-12 (-5 *3 (-747)) (-5 *1 (-568 *2)) (-4 *2 (-534)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3))
- (-4 *5 (-366 *3)) (-5 *2 (-549))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
- (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-549)))))
-(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-155))))
- ((*1 *2 *1) (-12 (-5 *2 (-155)) (-5 *1 (-845))))
- ((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
-(((*1 *1 *1 *1) (-5 *1 (-834))) ((*1 *1 *1) (-5 *1 (-834)))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1139 (-549))) (-5 *3 (-549)) (-4 *1 (-840 *4)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-747)) (-4 *4 (-342)) (-5 *1 (-210 *4 *2))
+ (-4 *2 (-1201 *4)))))
+(((*1 *2)
+ (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1230))
+ (-5 *1 (-959 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1230))
+ (-5 *1 (-1073 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-549)) (-5 *2 (-621 (-2 (|:| -2121 *3) (|:| -3701 *4))))
- (-5 *1 (-672 *3)) (-4 *3 (-1202 *4)))))
-(((*1 *1) (-5 *1 (-799))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-1143)))))
-(((*1 *2 *1) (-12 (-4 *1 (-361)) (-5 *2 (-892))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1226 *4)) (-4 *4 (-342)) (-5 *2 (-892))
- (-5 *1 (-519 *4)))))
+ (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1066)) (-4 *4 (-1066))
+ (-4 *6 (-1066)) (-5 *2 (-1 *6 *5)) (-5 *1 (-660 *5 *4 *6)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-621 *7)) (-5 *3 (-549)) (-4 *7 (-920 *4 *5 *6))
+ (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-5 *1 (-441 *4 *5 *6 *7)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018)) (-4 *2 (-356))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-356)) (-5 *1 (-635 *4 *2))
+ (-4 *2 (-632 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1179)))))
+(((*1 *1 *1 *1) (-5 *1 (-834))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-2 (|:| |den| (-549)) (|:| |gcdnum| (-549)))))
- (-4 *4 (-1202 (-400 *2))) (-5 *2 (-549)) (-5 *1 (-884 *4 *5))
- (-4 *5 (-1202 (-400 *4))))))
+ (-12 (-5 *3 (-621 (-592 *5))) (-4 *4 (-823)) (-5 *2 (-592 *5))
+ (-5 *1 (-558 *4 *5)) (-4 *5 (-423 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1018)) (-5 *2 (-549)) (-5 *1 (-435 *4 *3 *5))
+ (-4 *3 (-1201 *4))
+ (-4 *5 (-13 (-397) (-1009 *4) (-356) (-1164) (-277))))))
(((*1 *2 *1 *3 *3 *2)
- (-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *2 (-1180))
+ (-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *2 (-1179))
(-4 *4 (-366 *2)) (-4 *5 (-366 *2))))
((*1 *2 *1 *3 *2)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-281 *3 *2)) (-4 *3 (-1067))
- (-4 *2 (-1180)))))
-(((*1 *2 *3 *3 *1)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-3 *3 (-621 *1)))
- (-4 *1 (-1038 *4 *5 *6 *3)))))
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-281 *3 *2)) (-4 *3 (-1066))
+ (-4 *2 (-1179)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *2 (-541)) (-4 *2 (-444)) (-5 *1 (-940 *2 *3))
+ (-4 *3 (-1201 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1201 *6))
+ (-4 *6 (-13 (-27) (-423 *5)))
+ (-4 *5 (-13 (-823) (-541) (-1009 (-549)))) (-4 *8 (-1201 (-400 *7)))
+ (-5 *2 (-567 *3)) (-5 *1 (-537 *5 *6 *7 *8 *3))
+ (-4 *3 (-335 *6 *7 *8)))))
+(((*1 *2)
+ (-12 (-4 *4 (-1183)) (-4 *5 (-1201 *4)) (-4 *6 (-1201 (-400 *5)))
+ (-5 *2 (-747)) (-5 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-335 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-5 *2 (-747))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-747)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
+ (|:| |relerr| (-219))))
+ (-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 (-186)))))
+(((*1 *2 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *1) (-5 *1 (-799))))
+(((*1 *1) (-5 *1 (-139))) ((*1 *1 *1) (-5 *1 (-142)))
+ ((*1 *1 *1) (-4 *1 (-1110))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1))
- (-4 *1 (-1032 *3 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1143))
- (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
- (-5 *2 (-1 *5 *5)) (-5 *1 (-780 *4 *5))
- (-4 *5 (-13 (-29 *4) (-1165) (-930))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1071)) (-5 *1 (-1147)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
- ((*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
-(((*1 *2 *1) (-12 (-4 *1 (-821)) (-5 *2 (-549))))
- ((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-876 *3)) (-4 *3 (-1067))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1035 *4 *3)) (-4 *4 (-13 (-821) (-356)))
- (-4 *3 (-1202 *4)) (-5 *2 (-549))))
- ((*1 *2 *3)
- (|partial| -12
- (-4 *4 (-13 (-541) (-823) (-1009 *2) (-617 *2) (-444)))
- (-5 *2 (-549)) (-5 *1 (-1083 *4 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *4)))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1143)) (-5 *5 (-816 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *6)))
- (-4 *6 (-13 (-541) (-823) (-1009 *2) (-617 *2) (-444)))
- (-5 *2 (-549)) (-5 *1 (-1083 *6 *3))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *4 (-1143)) (-5 *5 (-1125))
- (-4 *6 (-13 (-541) (-823) (-1009 *2) (-617 *2) (-444)))
- (-5 *2 (-549)) (-5 *1 (-1083 *6 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *6)))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-444)) (-5 *2 (-549))
- (-5 *1 (-1084 *4))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1143)) (-5 *5 (-816 (-400 (-923 *6))))
- (-5 *3 (-400 (-923 *6))) (-4 *6 (-444)) (-5 *2 (-549))
- (-5 *1 (-1084 *6))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *3 (-400 (-923 *6))) (-5 *4 (-1143))
- (-5 *5 (-1125)) (-4 *6 (-444)) (-5 *2 (-549)) (-5 *1 (-1084 *6))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *2 (-549)) (-5 *1 (-1162 *3)) (-4 *3 (-1018)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *2 *3 *4 *4 *4 *5 *5 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
- (-5 *2 (-1006)) (-5 *1 (-728)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-1250 *3 *4)) (-4 *1 (-367 *3 *4)) (-4 *3 (-823))
- (-4 *4 (-170))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-379 *2)) (-4 *2 (-1067))))
- ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-795 *2)) (-4 *2 (-823))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-795 *2)) (-4 *2 (-823))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-795 *3)) (-4 *1 (-1243 *3 *4)) (-4 *3 (-823))
- (-4 *4 (-1018))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))))
+ (-12 (-5 *2 (-1068 *3)) (-5 *1 (-875 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1068 *3)) (-5 *1 (-876 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1142)) (-4 *5 (-594 (-863 (-549))))
+ (-4 *5 (-857 (-549)))
+ (-4 *5 (-13 (-823) (-1009 (-549)) (-444) (-617 (-549))))
+ (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
+ (-5 *1 (-552 *5 *3)) (-4 *3 (-607))
+ (-4 *3 (-13 (-27) (-1164) (-423 *5))))))
(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179))
(-4 *4 (-366 *3)) (-4 *5 (-366 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4338)) (-4 *1 (-481 *3))
- (-4 *3 (-1180)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-621 *7)) (|:| |badPols| (-621 *7))))
- (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2))
- (-4 *4 (-13 (-823) (-541))))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1077)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-31))))
+ (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4337)) (-4 *1 (-481 *3))
+ (-4 *3 (-1179)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-31))))
((*1 *2) (-12 (-4 *1 (-397)) (-5 *2 (-892)))) ((*1 *1) (-4 *1 (-534)))
((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-675))))
((*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-675))))
- ((*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-875 *3)) (-4 *3 (-1067)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-875 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1230)) (-5 *1 (-372))))
+ ((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-372)))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-863 *4)) (-5 *3 (-1 (-112) *5)) (-4 *4 (-1067))
- (-4 *5 (-1180)) (-5 *1 (-861 *4 *5))))
+ (-12 (-5 *2 (-863 *4)) (-5 *3 (-1 (-112) *5)) (-4 *4 (-1066))
+ (-4 *5 (-1179)) (-5 *1 (-861 *4 *5))))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-863 *4)) (-5 *3 (-621 (-1 (-112) *5))) (-4 *4 (-1067))
- (-4 *5 (-1180)) (-5 *1 (-861 *4 *5))))
+ (-12 (-5 *2 (-863 *4)) (-5 *3 (-621 (-1 (-112) *5))) (-4 *4 (-1066))
+ (-4 *5 (-1179)) (-5 *1 (-861 *4 *5))))
((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-863 *5)) (-5 *3 (-621 (-1143)))
- (-5 *4 (-1 (-112) (-621 *6))) (-4 *5 (-1067)) (-4 *6 (-1180))
+ (-12 (-5 *2 (-863 *5)) (-5 *3 (-621 (-1142)))
+ (-5 *4 (-1 (-112) (-621 *6))) (-4 *5 (-1066)) (-4 *6 (-1179))
(-5 *1 (-861 *5 *6))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-112) *5)) (-4 *5 (-1180)) (-4 *4 (-823))
+ (-12 (-5 *3 (-1 (-112) *5)) (-4 *5 (-1179)) (-4 *4 (-823))
(-5 *1 (-908 *4 *2 *5)) (-4 *2 (-423 *4))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-621 (-1 (-112) *5))) (-4 *5 (-1180)) (-4 *4 (-823))
+ (-12 (-5 *3 (-621 (-1 (-112) *5))) (-4 *5 (-1179)) (-4 *4 (-823))
(-5 *1 (-908 *4 *2 *5)) (-4 *2 (-423 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1143)) (-5 *4 (-1 (-112) *5)) (-4 *5 (-1180))
+ (-12 (-5 *3 (-1142)) (-5 *4 (-1 (-112) *5)) (-4 *5 (-1179))
(-5 *2 (-309 (-549))) (-5 *1 (-909 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1143)) (-5 *4 (-621 (-1 (-112) *5))) (-4 *5 (-1180))
+ (-12 (-5 *3 (-1142)) (-5 *4 (-621 (-1 (-112) *5))) (-4 *5 (-1179))
(-5 *2 (-309 (-549))) (-5 *1 (-909 *5))))
((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-621 (-1143))) (-5 *3 (-1 (-112) (-621 *6)))
- (-4 *6 (-13 (-423 *5) (-857 *4) (-594 (-863 *4)))) (-4 *4 (-1067))
+ (-12 (-5 *2 (-621 (-1142))) (-5 *3 (-1 (-112) (-621 *6)))
+ (-4 *6 (-13 (-423 *5) (-857 *4) (-594 (-863 *4)))) (-4 *4 (-1066))
(-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4))))
(-5 *1 (-1042 *4 *5 *6)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-732)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3))
- (-4 *3 (-1067)))))
-(((*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3)
- (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *6 (-219))
- (-5 *3 (-549)) (-5 *2 (-1006)) (-5 *1 (-728)))))
-(((*1 *2 *3 *4 *4 *2 *2 *2)
- (-12 (-5 *2 (-549))
- (-5 *3
- (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-747)) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-4 *6 (-769)) (-4 *4 (-920 *5 *6 *7)) (-4 *5 (-444)) (-4 *7 (-823))
- (-5 *1 (-441 *5 *6 *7 *4)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-460)) (-5 *3 (-621 (-256))) (-5 *1 (-1227))))
- ((*1 *1 *1) (-5 *1 (-1227))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1226 (-3 (-460) "undefined"))) (-5 *1 (-1227)))))
-(((*1 *2 *1) (-12 (-4 *1 (-945)) (-5 *2 (-1061 (-219))))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4))))
- (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
+ ((*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1142)) (-5 *4 (-923 (-549))) (-5 *2 (-323))
+ (-5 *1 (-325)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-621 *5)) (-4 *5 (-170)) (-5 *1 (-135 *3 *4 *5))
+ (-14 *3 (-549)) (-14 *4 (-747)))))
(((*1 *1 *1) (-5 *1 (-834))) ((*1 *1 *1 *1) (-5 *1 (-834)))
- ((*1 *1 *2 *2) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1180))))
- ((*1 *1 *2) (-12 (-5 *1 (-1193 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-685 *3)) (-5 *1 (-803 *2 *3)) (-4 *3 (-1018)))))
-(((*1 *1 *1) (-12 (-5 *1 (-287 *2)) (-4 *2 (-21)) (-4 *2 (-1180)))))
-(((*1 *2) (-12 (-5 *2 (-1100 (-219))) (-5 *1 (-1163)))))
+ ((*1 *1 *2 *2) (-12 (-4 *1 (-1059 *2)) (-4 *2 (-1179))))
+ ((*1 *1 *2) (-12 (-5 *1 (-1192 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *1) (-12 (-4 *1 (-945)) (-5 *2 (-1060 (-219))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))))
+(((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-541)) (-4 *3 (-170)) (-4 *4 (-366 *3))
+ (-4 *5 (-366 *3)) (-5 *1 (-664 *3 *4 *5 *2))
+ (-4 *2 (-663 *3 *4 *5)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *6 (-892)) (-4 *5 (-300)) (-4 *3 (-1201 *5))
+ (-5 *2 (-2 (|:| |plist| (-621 *3)) (|:| |modulo| *5)))
+ (-5 *1 (-452 *5 *3)) (-5 *4 (-621 *3)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-387))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1159)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018))
+ (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018))
(-5 *2
- (-2 (|:| -4115 (-747)) (|:| |curves| (-747))
+ (-2 (|:| -2359 (-747)) (|:| |curves| (-747))
(|:| |polygons| (-747)) (|:| |constructs| (-747)))))))
-(((*1 *1 *1) (-5 *1 (-1030))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-724)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1028 (-995 *3) (-1139 (-995 *3))))
- (-5 *1 (-995 *3)) (-4 *3 (-13 (-821) (-356) (-993))))))
-(((*1 *1 *1) (-4 *1 (-607)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973) (-1165))))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-647))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-621 (-892))) (-5 *1 (-1068 *3 *4)) (-14 *3 (-892))
- (-14 *4 (-892)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-923 *4)) (-4 *4 (-1018)) (-4 *4 (-594 *2))
- (-5 *2 (-372)) (-5 *1 (-761 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-923 *5)) (-5 *4 (-892)) (-4 *5 (-1018))
- (-4 *5 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *5))))
+ (-12 (-5 *3 (-1225 (-1225 *4))) (-4 *4 (-1018)) (-5 *2 (-665 *4))
+ (-5 *1 (-1000 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-800)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
+ (-4 *2 (-423 *3)))))
+(((*1 *1) (-5 *1 (-142))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-549)) (-4 *1 (-56 *4 *5 *3)) (-4 *4 (-1179))
+ (-4 *5 (-366 *4)) (-4 *3 (-366 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-541)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-356) (-295)
+ (-10 -8 (-15 -1392 ((-1091 *3 (-592 $)) $))
+ (-15 -1404 ((-1091 *3 (-592 $)) $))
+ (-15 -3845 ($ (-1091 *3 (-592 $)))))))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-541)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-356) (-295)
+ (-10 -8 (-15 -1392 ((-1091 *3 (-592 $)) $))
+ (-15 -1404 ((-1091 *3 (-592 $)) $))
+ (-15 -3845 ($ (-1091 *3 (-592 $)))))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-621 *2))
+ (-4 *2
+ (-13 (-356) (-295)
+ (-10 -8 (-15 -1392 ((-1091 *4 (-592 $)) $))
+ (-15 -1404 ((-1091 *4 (-592 $)) $))
+ (-15 -3845 ($ (-1091 *4 (-592 $)))))))
+ (-4 *4 (-541)) (-5 *1 (-41 *4 *2))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-621 (-592 *2)))
+ (-4 *2
+ (-13 (-356) (-295)
+ (-10 -8 (-15 -1392 ((-1091 *4 (-592 $)) $))
+ (-15 -1404 ((-1091 *4 (-592 $)) $))
+ (-15 -3845 ($ (-1091 *4 (-592 $)))))))
+ (-4 *4 (-541)) (-5 *1 (-41 *4 *2)))))
+(((*1 *2 *1) (-12 (-4 *1 (-926)) (-5 *2 (-1060 (-219)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-945)) (-5 *2 (-1060 (-219))))))
+(((*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 (-665 (-219))) (-5 *6 (-112)) (-5 *7 (-665 (-549)))
+ (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-64 QPHESS))))
+ (-5 *3 (-549)) (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-730)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-486)))))
+(((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-350 *3)) (-4 *3 (-342)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 (-549))) (-4 *3 (-1018)) (-5 *1 (-576 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 (-549))) (-4 *1 (-1185 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 (-549))) (-4 *1 (-1216 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-549)) (-5 *2 (-1230)) (-5 *1 (-875 *4))
+ (-4 *4 (-1066))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-875 *3)) (-4 *3 (-1066)))))
+(((*1 *1)
+ (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1066)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-747)) (-4 *5 (-1018)) (-5 *2 (-549))
+ (-5 *1 (-435 *5 *3 *6)) (-4 *3 (-1201 *5))
+ (-4 *6 (-13 (-397) (-1009 *5) (-356) (-1164) (-277)))))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541))
- (-4 *4 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-892)) (-4 *5 (-541))
- (-4 *5 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *5))))
+ (-12 (-4 *4 (-1018)) (-5 *2 (-549)) (-5 *1 (-435 *4 *3 *5))
+ (-4 *3 (-1201 *4))
+ (-4 *5 (-13 (-397) (-1009 *4) (-356) (-1164) (-277))))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-114)) (-5 *4 (-747)) (-4 *5 (-444)) (-4 *5 (-823))
+ (-4 *5 (-1009 (-549))) (-4 *5 (-541)) (-5 *1 (-41 *5 *2))
+ (-4 *2 (-423 *5))
+ (-4 *2
+ (-13 (-356) (-295)
+ (-10 -8 (-15 -1392 ((-1091 *5 (-592 $)) $))
+ (-15 -1404 ((-1091 *5 (-592 $)) $))
+ (-15 -3845 ($ (-1091 *5 (-592 $))))))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1142))
+ (-4 *4 (-13 (-823) (-300) (-1009 (-549)) (-617 (-549)) (-145)))
+ (-5 *1 (-780 *4 *2)) (-4 *2 (-13 (-29 *4) (-1164) (-930)))))
+ ((*1 *1 *1 *1 *1) (-5 *1 (-834))) ((*1 *1 *1 *1) (-5 *1 (-834)))
+ ((*1 *1 *1) (-5 *1 (-834)))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-309 *4)) (-4 *4 (-541)) (-4 *4 (-823))
- (-4 *4 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-309 *5)) (-5 *4 (-892)) (-4 *5 (-541))
- (-4 *5 (-823)) (-4 *5 (-594 *2)) (-5 *2 (-372))
- (-5 *1 (-761 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-926)) (-5 *2 (-1061 (-219)))))
- ((*1 *2 *1) (-12 (-4 *1 (-945)) (-5 *2 (-1061 (-219))))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1199 *4 *5)) (-5 *3 (-621 *5)) (-14 *4 (-1143))
- (-4 *5 (-356)) (-5 *1 (-894 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 *5)) (-4 *5 (-356)) (-5 *2 (-1139 *5))
- (-5 *1 (-894 *4 *5)) (-14 *4 (-1143))))
- ((*1 *2 *3 *3 *4 *4)
- (-12 (-5 *3 (-621 *6)) (-5 *4 (-747)) (-4 *6 (-356))
- (-5 *2 (-400 (-923 *6))) (-5 *1 (-1019 *5 *6)) (-14 *5 (-1143)))))
-(((*1 *2 *1) (-12 (-5 *2 (-219)) (-5 *1 (-798)))))
+ (-12 (-5 *2 (-1122 *3)) (-5 *1 (-1126 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3))
+ (-4 *5 (-366 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
+ (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-4 *1 (-926)) (-5 *2 (-1060 (-219)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-945)) (-5 *2 (-1060 (-219))))))
+(((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-1213 *2)) (-4 *2 (-1179)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1032 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *2 (-823))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1164) (-973)))
+ (-5 *1 (-174 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-665 *8)) (-4 *8 (-920 *5 *7 *6))
- (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1143))))
- (-4 *7 (-769))
+ (-12 (-5 *4 (-112))
+ (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
(-5 *2
- (-621
- (-2 (|:| -3123 (-747))
- (|:| |eqns|
- (-621
- (-2 (|:| |det| *8) (|:| |rows| (-621 (-549)))
- (|:| |cols| (-621 (-549))))))
- (|:| |fgb| (-621 *8)))))
- (-5 *1 (-895 *5 *6 *7 *8)) (-5 *4 (-747)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1018)) (-4 *5 (-1202 *4)) (-5 *2 (-1 *6 (-621 *6)))
- (-5 *1 (-1220 *4 *5 *3 *6)) (-4 *3 (-632 *5)) (-4 *6 (-1217 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-923 *5)) (-4 *5 (-1018)) (-5 *2 (-473 *4 *5))
- (-5 *1 (-915 *4 *5)) (-14 *4 (-621 (-1143))))))
-(((*1 *2 *3 *3 *3 *3 *4 *5)
- (-12 (-5 *3 (-219)) (-5 *4 (-549))
- (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422))))
- (-5 *2 (-1006)) (-5 *1 (-723)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1125)) (-5 *1 (-525)))))
-(((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-747)) (-5 *1 (-758 *3)) (-4 *3 (-1018))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *1 (-934 *3 *2)) (-4 *2 (-130)) (-4 *3 (-541))
- (-4 *3 (-1018)) (-4 *2 (-768))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-747)) (-5 *1 (-1139 *3)) (-4 *3 (-1018))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-942)) (-4 *2 (-130)) (-5 *1 (-1145 *3)) (-4 *3 (-541))
- (-4 *3 (-1018))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-747)) (-5 *1 (-1199 *4 *3)) (-14 *4 (-1143))
- (-4 *3 (-1018)))))
+ (-3 (|:| |%expansion| (-306 *5 *3 *6 *7))
+ (|:| |%problem| (-2 (|:| |func| (-1124)) (|:| |prob| (-1124))))))
+ (-5 *1 (-413 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1164) (-423 *5)))
+ (-14 *6 (-1142)) (-14 *7 *3))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-729)))))
-(((*1 *2 *1) (-12 (-4 *1 (-926)) (-5 *2 (-1061 (-219)))))
- ((*1 *2 *1) (-12 (-4 *1 (-945)) (-5 *2 (-1061 (-219))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-885 *3)) (-4 *3 (-300)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1226 *4)) (-4 *4 (-617 *5)) (-4 *5 (-356))
- (-4 *5 (-541)) (-5 *2 (-1226 *5)) (-5 *1 (-616 *5 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1226 *4)) (-4 *4 (-617 *5))
- (-4008 (-4 *5 (-356))) (-4 *5 (-541)) (-5 *2 (-1226 (-400 *5)))
- (-5 *1 (-616 *5 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1125)) (-5 *1 (-298)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *1) (-12 (-5 *2 (-181)) (-5 *1 (-242)))))
+ (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1164) (-973)))
+ (-5 *1 (-174 *3)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-621 (-1042 *3 *4 *5))) (-4 *3 (-1067))
+ (-12 (-5 *2 (-621 (-1042 *3 *4 *5))) (-4 *3 (-1066))
(-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3))))
(-4 *5 (-13 (-423 *4) (-857 *3) (-594 (-863 *3))))
(-5 *1 (-1043 *3 *4 *5)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-769))
- (-4 *3 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $))))) (-4 *5 (-541))
- (-5 *1 (-709 *4 *3 *5 *2)) (-4 *2 (-920 (-400 (-923 *5)) *4 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *4 (-1018)) (-4 *5 (-769))
- (-4 *3
- (-13 (-823)
- (-10 -8 (-15 -2845 ((-1143) $))
- (-15 -3011 ((-3 $ "failed") (-1143))))))
- (-5 *1 (-955 *4 *5 *3 *2)) (-4 *2 (-920 (-923 *4) *5 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-621 *6))
- (-4 *6
- (-13 (-823)
- (-10 -8 (-15 -2845 ((-1143) $))
- (-15 -3011 ((-3 $ "failed") (-1143))))))
- (-4 *4 (-1018)) (-4 *5 (-769)) (-5 *1 (-955 *4 *5 *6 *2))
- (-4 *2 (-920 (-923 *4) *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-335 *4 *3 *5)) (-4 *4 (-1183)) (-4 *3 (-1201 *4))
+ (-4 *5 (-1201 (-400 *3))) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *5 (-361))
- (-5 *2 (-747)))))
-(((*1 *2 *1) (-12 (-4 *1 (-500 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-823)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-665 (-549))) (-5 *3 (-621 (-549))) (-5 *1 (-1077)))))
+ (-12 (-4 *1 (-1069 *3 *4 *5 *6 *7)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1138 *6)) (-4 *6 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *2 (-1138 *7)) (-5 *1 (-314 *4 *5 *6 *7))
+ (-4 *7 (-920 *6 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-1146)))))
(((*1 *1 *1 *1) (-4 *1 (-123))) ((*1 *1 *1 *1) (-5 *1 (-834)))
((*1 *1 *1 *1) (-4 *1 (-938))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-1067)) (-5 *1 (-1152 *3)))))
-(((*1 *1 *1 *1) (-5 *1 (-834))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-219)) (-5 *2 (-112)) (-5 *1 (-292 *4 *5)) (-14 *4 *3)
- (-14 *5 *3)))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1061 (-816 (-219)))) (-5 *3 (-219)) (-5 *2 (-112))
- (-5 *1 (-298))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112))
- (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-621 (-1042 *4 *5 *2))) (-4 *4 (-1067))
- (-4 *5 (-13 (-1018) (-857 *4) (-823) (-594 (-863 *4))))
- (-4 *2 (-13 (-423 *5) (-857 *4) (-594 (-863 *4))))
- (-5 *1 (-54 *4 *5 *2))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-621 (-1042 *5 *6 *2))) (-5 *4 (-892)) (-4 *5 (-1067))
- (-4 *6 (-13 (-1018) (-857 *5) (-823) (-594 (-863 *5))))
- (-4 *2 (-13 (-423 *6) (-857 *5) (-594 (-863 *5))))
- (-5 *1 (-54 *5 *6 *2)))))
-(((*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5)
- (-12 (-5 *3 (-892)) (-5 *4 (-219)) (-5 *5 (-549)) (-5 *6 (-845))
- (-5 *2 (-1231)) (-5 *1 (-1227)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-729)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1139 *1)) (-5 *4 (-1143)) (-4 *1 (-27))
- (-5 *2 (-621 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-1139 *1)) (-4 *1 (-27)) (-5 *2 (-621 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-923 *1)) (-4 *1 (-27)) (-5 *2 (-621 *1))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-621 *1))
- (-4 *1 (-29 *4))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *2 (-621 *1)) (-4 *1 (-29 *3)))))
-(((*1 *2 *3 *2 *2)
- (-12 (-5 *2 (-621 (-473 *4 *5))) (-5 *3 (-836 *4))
- (-14 *4 (-621 (-1143))) (-4 *5 (-444)) (-5 *1 (-609 *4 *5)))))
-(((*1 *2 *2) (|partial| -12 (-5 *1 (-543 *2)) (-4 *2 (-534)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-844 (-937 *3) (-937 *3))) (-5 *1 (-937 *3))
- (-4 *3 (-938)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1143)) (-5 *5 (-1061 (-219))) (-5 *2 (-898))
- (-5 *1 (-896 *3)) (-4 *3 (-594 (-525)))))
+ (|partial| -12 (-5 *3 (-1225 *4)) (-4 *4 (-617 *5)) (-4 *5 (-356))
+ (-4 *5 (-541)) (-5 *2 (-1225 *5)) (-5 *1 (-616 *5 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1143)) (-5 *2 (-898)) (-5 *1 (-896 *3))
- (-4 *3 (-594 (-525)))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *1 (-898))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1061 (-219)))
- (-5 *1 (-898)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-724)))))
+ (|partial| -12 (-5 *3 (-1225 *4)) (-4 *4 (-617 *5))
+ (-4007 (-4 *5 (-356))) (-4 *5 (-541)) (-5 *2 (-1225 (-400 *5)))
+ (-5 *1 (-616 *5 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-473 *4 *5))) (-14 *4 (-621 (-1142)))
+ (-4 *5 (-444)) (-5 *2 (-621 (-241 *4 *5))) (-5 *1 (-609 *4 *5)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-534)) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-800)) (-5 *1 (-801)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-914 *4)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892))
+ (-4 *4 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-410 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1138 (-400 (-923 *3)))) (-5 *1 (-445 *3 *4 *5 *6))
+ (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-947 *4 *5 *6 *3)) (-4 *4 (-1018)) (-4 *5 (-769))
+ (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-4 *4 (-541))
+ (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))))
+(((*1 *1) (-5 *1 (-112))) ((*1 *1) (-5 *1 (-596))))
(((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-549)) (-4 *1 (-56 *2 *4 *5)) (-4 *4 (-366 *2))
- (-4 *5 (-366 *2)) (-4 *2 (-1180))))
+ (-4 *5 (-366 *2)) (-4 *2 (-1179))))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-281 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-1180))))
+ (-12 (-4 *1 (-281 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-1179))))
((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-549)) (-4 *1 (-1021 *4 *5 *2 *6 *7))
(-4 *6 (-232 *5 *2)) (-4 *7 (-232 *4 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-1213 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-354 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-549)) (-5 *2 (-747)) (-5 *1 (-379 *4)) (-4 *4 (-1066))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-549)) (-4 *2 (-23)) (-5 *1 (-625 *4 *2 *5))
+ (-4 *4 (-1066)) (-14 *5 *2)))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-549)) (-5 *2 (-747)) (-5 *1 (-795 *4)) (-4 *4 (-823)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-621 *1)) (-4 *1 (-1032 *4 *5 *6)) (-4 *4 (-1018))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1 *4)
+ (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1172 *5 *6 *7 *3))
+ (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-834))))
+ ((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1230)) (-5 *1 (-933)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-747)) (-4 *4 (-541)) (-5 *1 (-940 *4 *2))
+ (-4 *2 (-1201 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-518)) (-5 *2 (-1086)))))
+(((*1 *1 *2 *1) (-12 (-4 *1 (-106 *2)) (-4 *2 (-1179))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-823))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-126 *2)) (-4 *2 (-823))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-549)) (-4 *1 (-275 *3)) (-4 *3 (-1179))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-549)) (-4 *1 (-275 *2)) (-4 *2 (-1179))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2
+ (|:| -3336
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
+ (|:| |relerr| (-219))))
+ (|:| -1791
+ (-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| (-1122 (-219)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -2811
+ (-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 (-544))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-747)) (-4 *1 (-671 *2)) (-4 *2 (-1066))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2
+ (|:| -3336
+ (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
+ (|:| |fn| (-1225 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
+ (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
+ (|:| |abserr| (-219)) (|:| |relerr| (-219))))
+ (|:| -1791
+ (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372))
+ (|:| |expense| (-372)) (|:| |accuracy| (-372))
+ (|:| |intermediateResults| (-372))))))
+ (-5 *1 (-779))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *2 (-1230)) (-5 *1 (-1156 *3 *4)) (-4 *3 (-1066))
+ (-4 *4 (-1066)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-621 (-914 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-621 (-914 *3))) (-4 *3 (-1018)) (-4 *1 (-1100 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-621 (-621 *3))) (-4 *1 (-1100 *3)) (-4 *3 (-1018))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-621 (-914 *3))) (-4 *1 (-1100 *3)) (-4 *3 (-1018)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-356)) (-5 *2 (-621 *3)) (-5 *1 (-916 *4 *3))
- (-4 *3 (-1202 *4)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
- (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-621 *7)) (-5 *3 (-112)) (-4 *7 (-1032 *4 *5 *6))
- (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
- (-5 *1 (-948 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-834))))
- ((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1231)) (-5 *1 (-933)))))
-(((*1 *1) (-5 *1 (-112))) ((*1 *1) (-5 *1 (-596))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-309 (-219))) (-5 *2 (-309 (-400 (-549))))
- (-5 *1 (-298)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4))))
- (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3))
- (-4 *3 (-1067)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1226 *5)) (-4 *5 (-768)) (-5 *2 (-112))
- (-5 *1 (-818 *4 *5)) (-14 *4 (-747)))))
+ (-12 (-5 *3 (-592 *5)) (-4 *5 (-423 *4)) (-4 *4 (-1009 (-549)))
+ (-4 *4 (-13 (-823) (-541))) (-5 *2 (-1138 *5)) (-5 *1 (-32 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-592 *1)) (-4 *1 (-1018)) (-4 *1 (-295))
+ (-5 *2 (-1138 *1)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-914 *4))) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892))
+ (-4 *4 (-1018)))))
+(((*1 *1 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170))))
+ ((*1 *1 *1 *1) (-4 *1 (-465)))
+ ((*1 *1 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170))))
+ ((*1 *2 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-854))))
+ ((*1 *1 *1) (-5 *1 (-942)))
+ ((*1 *1 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-170)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1087 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| |preimage| (-621 *3)) (|:| |image| (-621 *3))))
+ (-5 *1 (-876 *3)) (-4 *3 (-1066)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1139 *6)) (-4 *6 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *2 (-1139 *7)) (-5 *1 (-314 *4 *5 *6 *7))
- (-4 *7 (-920 *6 *4 *5)))))
-(((*1 *2 *3 *4 *3 *4 *4 *4 *4 *4)
- (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *2 (-1006))
- (-5 *1 (-732)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-876 *4)) (-4 *4 (-1067)) (-5 *2 (-621 (-747)))
- (-5 *1 (-875 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834))))
- ((*1 *1 *1) (-5 *1 (-834))))
-(((*1 *2 *1) (-12 (-5 *2 (-1125)) (-5 *1 (-1161)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 (-323))) (-5 *1 (-323)))))
-(((*1 *1 *1) (-12 (-5 *1 (-411 *2)) (-4 *2 (-541)))))
+ (-12 (-14 *4 (-621 (-1142))) (-4 *5 (-444))
+ (-5 *2
+ (-2 (|:| |glbase| (-621 (-241 *4 *5))) (|:| |glval| (-621 (-549)))))
+ (-5 *1 (-609 *4 *5)) (-5 *3 (-621 (-241 *4 *5))))))
(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
(|:| |relerr| (-219))))
(-5 *2
(-2
@@ -14287,10 +14678,10 @@
(|:| |notEvaluated|
"End point continuity not yet evaluated")))
(|:| |singularitiesStream|
- (-3 (|:| |str| (-1123 (-219)))
+ (-3 (|:| |str| (-1122 (-219)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -1372
+ (|:| -2811
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite| "The bottom of range is infinite")
(|:| |upperInfinite| "The top of range is infinite")
@@ -14298,473 +14689,506 @@
"Both top and bottom points are infinite")
(|:| |notEvaluated| "Range not yet evaluated")))))
(-5 *1 (-544)))))
-(((*1 *1 *2 *2 *2) (-12 (-5 *1 (-853 *2)) (-4 *2 (-1180)))))
-(((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1143)) (-5 *1 (-651 *3)) (-4 *3 (-1067)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1109 *3 *4)) (-14 *3 (-892)) (-4 *4 (-356))
- (-5 *1 (-964 *3 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1228))))
+ ((*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1228)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1225 *1)) (-4 *1 (-363 *4 *5)) (-4 *4 (-170))
+ (-4 *5 (-1201 *4)) (-5 *2 (-665 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-170)) (-4 *5 (-1201 *4)) (-5 *2 (-665 *4))
+ (-5 *1 (-401 *3 *4 *5)) (-4 *3 (-402 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *1 (-402 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1201 *3))
+ (-5 *2 (-665 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1100 *3)) (-4 *3 (-1018)) (-5 *2 (-1130 3 *3))))
+ ((*1 *1) (-12 (-5 *1 (-1130 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1099 (-219))) (-5 *1 (-1227))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1099 (-219))) (-5 *1 (-1227)))))
(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-621 *1)) (-4 *1 (-423 *4))
+ (-12 (-5 *2 (-1142)) (-5 *3 (-621 *1)) (-4 *1 (-423 *4))
(-4 *4 (-823))))
((*1 *1 *2 *1 *1 *1 *1)
- (-12 (-5 *2 (-1143)) (-4 *1 (-423 *3)) (-4 *3 (-823))))
+ (-12 (-5 *2 (-1142)) (-4 *1 (-423 *3)) (-4 *3 (-823))))
((*1 *1 *2 *1 *1 *1)
- (-12 (-5 *2 (-1143)) (-4 *1 (-423 *3)) (-4 *3 (-823))))
+ (-12 (-5 *2 (-1142)) (-4 *1 (-423 *3)) (-4 *3 (-823))))
((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1143)) (-4 *1 (-423 *3)) (-4 *3 (-823))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-1143)) (-4 *1 (-423 *3)) (-4 *3 (-823)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-400 (-923 (-167 (-549))))))
- (-5 *2 (-621 (-621 (-287 (-923 (-167 *4)))))) (-5 *1 (-371 *4))
- (-4 *4 (-13 (-356) (-821)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-287 (-400 (-923 (-167 (-549)))))))
- (-5 *2 (-621 (-621 (-287 (-923 (-167 *4)))))) (-5 *1 (-371 *4))
- (-4 *4 (-13 (-356) (-821)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-400 (-923 (-167 (-549)))))
- (-5 *2 (-621 (-287 (-923 (-167 *4))))) (-5 *1 (-371 *4))
- (-4 *4 (-13 (-356) (-821)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-287 (-400 (-923 (-167 (-549))))))
- (-5 *2 (-621 (-287 (-923 (-167 *4))))) (-5 *1 (-371 *4))
- (-4 *4 (-13 (-356) (-821))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-400 *6)) (-4 *5 (-1184)) (-4 *6 (-1202 *5))
- (-5 *2 (-2 (|:| -3731 (-747)) (|:| -1570 *3) (|:| |radicand| *6)))
- (-5 *1 (-146 *5 *6 *7)) (-5 *4 (-747)) (-4 *7 (-1202 *3)))))
+ (-12 (-5 *2 (-1142)) (-4 *1 (-423 *3)) (-4 *3 (-823))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-1142)) (-4 *1 (-423 *3)) (-4 *3 (-823)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-897)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170))
+ (-5 *2 (-665 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-665 *3)))))
(((*1 *2 *2 *3)
- (-12 (-4 *3 (-356)) (-5 *1 (-278 *3 *2)) (-4 *2 (-1217 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1180)))))
+ (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-131)) (-5 *1 (-1050 *2))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-549) *2 *2)) (-4 *2 (-131)) (-5 *1 (-1050 *2)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-155)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2 *3 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1201 *5))
+ (-4 *5 (-13 (-356) (-145) (-1009 (-549))))
+ (-5 *2
+ (-2 (|:| |a| *6) (|:| |b| (-400 *6)) (|:| |h| *6)
+ (|:| |c1| (-400 *6)) (|:| |c2| (-400 *6)) (|:| -2630 *6)))
+ (-5 *1 (-987 *5 *6)) (-5 *3 (-400 *6)))))
(((*1 *2 *3)
- (-12 (-4 *3 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $)))))
- (-4 *4 (-1202 *3))
- (-5 *2
- (-2 (|:| -1949 (-665 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-665 *3))))
- (-5 *1 (-343 *3 *4 *5)) (-4 *5 (-402 *3 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-549)) (-4 *4 (-1202 *3))
- (-5 *2
- (-2 (|:| -1949 (-665 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-665 *3))))
- (-5 *1 (-744 *4 *5)) (-4 *5 (-402 *3 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-342)) (-4 *3 (-1202 *4)) (-4 *5 (-1202 *3))
- (-5 *2
- (-2 (|:| -1949 (-665 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-665 *3))))
- (-5 *1 (-956 *4 *3 *5 *6)) (-4 *6 (-701 *3 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-342)) (-4 *3 (-1202 *4)) (-4 *5 (-1202 *3))
- (-5 *2
- (-2 (|:| -1949 (-665 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-665 *3))))
- (-5 *1 (-1235 *4 *3 *5 *6)) (-4 *6 (-402 *3 *5)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1143)) (-5 *1 (-273))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-3 (-549) (-219) (-1143) (-1125) (-1148)))
- (-5 *1 (-1148)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-300)) (-4 *6 (-366 *5)) (-4 *4 (-366 *5))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1949 (-621 *4))))
- (-5 *1 (-1091 *5 *6 *4 *3)) (-4 *3 (-663 *5 *6 *4)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4337)) (-4 *1 (-481 *4))
- (-4 *4 (-1180)) (-5 *2 (-112)))))
+ (|partial| -12 (-5 *2 (-549)) (-5 *1 (-554 *3)) (-4 *3 (-1009 *2)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-250)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-747)) (-5 *2 (-112))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1180 *3)) (-4 *3 (-823))
+ (-4 *3 (-1066)))))
(((*1 *2 *2)
(-12 (-4 *3 (-823)) (-5 *1 (-900 *3 *2)) (-4 *2 (-423 *3))))
((*1 *2 *3)
- (-12 (-5 *3 (-1143)) (-5 *2 (-309 (-549))) (-5 *1 (-901)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -1353 *3) (|:| |coef1| (-758 *3))))
- (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))))
+ (-12 (-5 *3 (-1142)) (-5 *2 (-309 (-549))) (-5 *1 (-901)))))
+(((*1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-736)))))
+(((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-112))
+ (-5 *2 (-1006)) (-5 *1 (-722)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-13 (-821) (-356))) (-5 *2 (-112)) (-5 *1 (-1028 *4 *3))
+ (-4 *3 (-1201 *4)))))
(((*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-372)) (-5 *1 (-1011)))))
-(((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -1391 (-372)) (|:| -2481 (-1125))
- (|:| |explanations| (-621 (-1125)))))
- (-5 *2 (-1006)) (-5 *1 (-298))))
- ((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -1391 (-372)) (|:| -2481 (-1125))
- (|:| |explanations| (-621 (-1125))) (|:| |extra| (-1006))))
- (-5 *2 (-1006)) (-5 *1 (-298)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-219)) (-5 *4 (-549))
- (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1422))))
- (-5 *2 (-1006)) (-5 *1 (-725)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018))
- (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1124)) (-5 *1 (-798)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-823)) (-4 *5 (-769))
+ (-4 *6 (-541)) (-4 *7 (-920 *6 *5 *3))
+ (-5 *1 (-454 *5 *3 *6 *7 *2))
+ (-4 *2
+ (-13 (-1009 (-400 (-549))) (-356)
+ (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $))
+ (-15 -1404 (*7 $))))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-444) (-145))) (-5 *2 (-411 *3))
+ (-5 *1 (-99 *4 *3)) (-4 *3 (-1201 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-621 *3)) (-4 *3 (-1201 *5)) (-4 *5 (-13 (-444) (-145)))
+ (-5 *2 (-411 *3)) (-5 *1 (-99 *5 *3)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-914 *4)) (-4 *4 (-1018)) (-5 *1 (-1131 *3 *4))
- (-14 *3 (-892)))))
-(((*1 *2 *3) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-438)) (-5 *3 (-549)))))
-(((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-544)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-329 *5 *6 *7 *8)) (-4 *5 (-423 *4))
- (-4 *6 (-1202 *5)) (-4 *7 (-1202 (-400 *6)))
- (-4 *8 (-335 *5 *6 *7))
- (-4 *4 (-13 (-823) (-541) (-1009 (-549))))
- (-5 *2 (-2 (|:| -2088 (-747)) (|:| -3568 *8)))
- (-5 *1 (-882 *4 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-329 (-400 (-549)) *4 *5 *6))
- (-4 *4 (-1202 (-400 (-549)))) (-4 *5 (-1202 (-400 *4)))
- (-4 *6 (-335 (-400 (-549)) *4 *5))
- (-5 *2 (-2 (|:| -2088 (-747)) (|:| -3568 *6)))
- (-5 *1 (-883 *4 *5 *6)))))
-(((*1 *1 *2) (-12 (-5 *2 (-181)) (-5 *1 (-242)))))
-(((*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112))
- (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1035 *4 *3)) (-4 *4 (-13 (-821) (-356)))
- (-4 *3 (-1202 *4)) (-5 *2 (-112)))))
-(((*1 *2)
- (-12 (-4 *1 (-342))
- (-5 *2 (-621 (-2 (|:| -2121 (-549)) (|:| -3731 (-549))))))))
+ (-12 (-5 *2 (-747)) (-4 *1 (-1242 *3 *4)) (-4 *3 (-823))
+ (-4 *4 (-1018)) (-4 *4 (-170))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018))
+ (-4 *3 (-170)))))
+(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-728)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3))
+ (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1179)) (-4 *4 (-366 *3))
(-4 *5 (-366 *3)) (-5 *2 (-549))))
((*1 *2 *1)
(-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
(-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-549)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-621 (-892))) (-5 *1 (-1068 *3 *4)) (-14 *3 (-892))
- (-14 *4 (-892)))))
+(((*1 *2)
+ (-12 (-4 *4 (-1183)) (-4 *5 (-1201 *4)) (-4 *6 (-1201 (-400 *5)))
+ (-5 *2 (-747)) (-5 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-335 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-5 *2 (-747)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-999 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-621 (-665 *3))) (-4 *3 (-1018)) (-5 *1 (-999 *3))))
+ ((*1 *2 *2) (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-999 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-621 (-665 *3))) (-4 *3 (-1018)) (-5 *1 (-999 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227))))
+ ((*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
+ (-5 *1 (-1094 *3 *2)) (-4 *3 (-1201 *2)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-659 *4 *3)) (-4 *4 (-1067))
- (-4 *3 (-1067)))))
+ (-12 (-4 *4 (-13 (-541) (-823)))
+ (-4 *2 (-13 (-423 (-167 *4)) (-973) (-1164)))
+ (-5 *1 (-580 *4 *3 *2)) (-4 *3 (-13 (-423 *4) (-973) (-1164))))))
+(((*1 *2)
+ (|partial| -12 (-4 *3 (-541)) (-4 *3 (-170))
+ (-5 *2 (-2 (|:| |particular| *1) (|:| -2619 (-621 *1))))
+ (-4 *1 (-360 *3))))
+ ((*1 *2)
+ (|partial| -12
+ (-5 *2
+ (-2 (|:| |particular| (-445 *3 *4 *5 *6))
+ (|:| -2619 (-621 (-445 *3 *4 *5 *6)))))
+ (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-892))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-219)) (-5 *5 (-549)) (-5 *2 (-1174 *3))
+ (-5 *1 (-766 *3)) (-4 *3 (-945))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-112))
+ (-5 *1 (-1174 *2)) (-4 *2 (-945)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-4 *5 (-963 *4))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-140 *4 *5 *3))
+ (-4 *3 (-366 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-4 *5 (-963 *4))
+ (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4)))
+ (-5 *1 (-494 *4 *5 *6 *3)) (-4 *6 (-366 *4)) (-4 *3 (-366 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-665 *5)) (-4 *5 (-963 *4)) (-4 *4 (-541))
+ (-5 *2 (-2 (|:| |num| (-665 *4)) (|:| |den| *4)))
+ (-5 *1 (-669 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549)))))
+ (-4 *6 (-1201 *5))
+ (-5 *2 (-2 (|:| -2649 *7) (|:| |rh| (-621 (-400 *6)))))
+ (-5 *1 (-783 *5 *6 *7 *3)) (-5 *4 (-621 (-400 *6)))
+ (-4 *7 (-632 *6)) (-4 *3 (-632 (-400 *6)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-4 *5 (-963 *4))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1194 *4 *5 *3))
+ (-4 *3 (-1201 *5)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 (-621 *7) *7 (-1138 *7))) (-5 *5 (-1 (-411 *7) *7))
+ (-4 *7 (-1201 *6)) (-4 *6 (-13 (-356) (-145) (-1009 (-400 (-549)))))
+ (-5 *2 (-621 (-2 (|:| |frac| (-400 *7)) (|:| -2649 *3))))
+ (-5 *1 (-785 *6 *7 *3 *8)) (-4 *3 (-632 *7))
+ (-4 *8 (-632 (-400 *7)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-411 *6) *6)) (-4 *6 (-1201 *5))
+ (-4 *5 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-5 *2
+ (-621 (-2 (|:| |frac| (-400 *6)) (|:| -2649 (-630 *6 (-400 *6))))))
+ (-5 *1 (-788 *5 *6)) (-5 *3 (-630 *6 (-400 *6))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3)) (-4 *3 (-945)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)))) (-5 *1 (-182 *3 *2))
+ (-4 *2 (-13 (-27) (-1164) (-423 (-167 *3))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-1168 *3 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *3))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-356)) (-5 *2 (-621 *3)) (-5 *1 (-916 *4 *3))
+ (-4 *3 (-1201 *4)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
+ (|:| |relerr| (-219))))
+ (-5 *2 (-1122 (-219))) (-5 *1 (-186))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-309 (-219))) (-5 *4 (-621 (-1142)))
+ (-5 *5 (-1060 (-816 (-219)))) (-5 *2 (-1122 (-219))) (-5 *1 (-293))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1225 (-309 (-219)))) (-5 *4 (-621 (-1142)))
+ (-5 *5 (-1060 (-816 (-219)))) (-5 *2 (-1122 (-219))) (-5 *1 (-293)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3))
- (-4 *5 (-366 *3)) (-5 *2 (-112))))
+ (-12 (-4 *1 (-319 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-768))
+ (-5 *2 (-747))))
((*1 *2 *1)
- (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
- (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-112)))))
-(((*1 *1 *1 *2 *2 *1)
- (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018))
- (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))))
-(((*1 *1 *2)
- (-12
- (-5 *2
- (-2 (|:| |mval| (-665 *3)) (|:| |invmval| (-665 *3))
- (|:| |genIdeal| (-495 *3 *4 *5 *6))))
- (-4 *3 (-356)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *1 (-495 *3 *4 *5 *6)) (-4 *6 (-920 *3 *4 *5)))))
-(((*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-1018)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-1 (-112) *8))) (-4 *8 (-1032 *5 *6 *7))
- (-4 *5 (-541)) (-4 *6 (-769)) (-4 *7 (-823))
- (-5 *2 (-2 (|:| |goodPols| (-621 *8)) (|:| |badPols| (-621 *8))))
- (-5 *1 (-948 *5 *6 *7 *8)) (-5 *4 (-621 *8)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1143))
+ (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-1018)) (-4 *4 (-1066))
+ (-5 *2 (-747))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-747)) (-5 *1 (-712 *3 *4)) (-4 *3 (-1018))
+ (-4 *4 (-703)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-665 *6)) (-5 *5 (-1 (-411 (-1138 *6)) (-1138 *6)))
+ (-4 *6 (-356))
(-5 *2
- (-2 (|:| |zeros| (-1123 (-219))) (|:| |ones| (-1123 (-219)))
- (|:| |singularities| (-1123 (-219)))))
- (-5 *1 (-104)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-219)) (-5 *2 (-1231)) (-5 *1 (-798)))))
+ (-621
+ (-2 (|:| |outval| *7) (|:| |outmult| (-549))
+ (|:| |outvect| (-621 (-665 *7))))))
+ (-5 *1 (-522 *6 *7 *4)) (-4 *7 (-356)) (-4 *4 (-13 (-356) (-821))))))
(((*1 *1) (-5 *1 (-596))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1226 (-309 (-219)))) (-5 *2 (-1226 (-309 (-372))))
- (-5 *1 (-298)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-356)) (-5 *1 (-278 *3 *2)) (-4 *2 (-1217 *3)))))
+ (-12 (-5 *3 (-747)) (-5 *2 (-1138 *4)) (-5 *1 (-519 *4))
+ (-4 *4 (-342)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
(((*1 *1 *1 *1)
- (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747))
- (-4 *4 (-170))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-156 *4 *2))
- (-4 *2 (-423 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1059 *2)) (-4 *2 (-423 *4)) (-4 *4 (-13 (-823) (-541)))
- (-5 *1 (-156 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1059 *1)) (-4 *1 (-158))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-158)) (-5 *2 (-1143))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-457 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-5 *1 (-1246 *3 *4)) (-4 *3 (-823))
- (-4 *4 (-170)))))
-(((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-1016)))))
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-238 *2)) (-4 *2 (-1179)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1240 (-1142) *3)) (-4 *3 (-1018)) (-5 *1 (-1247 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1240 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
+ (-5 *1 (-1249 *3 *4)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
- ((*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-549)) (-5 *1 (-672 *2)) (-4 *2 (-1202 *3)))))
-(((*1 *2)
- (|partial| -12 (-4 *3 (-541)) (-4 *3 (-170))
- (-5 *2 (-2 (|:| |particular| *1) (|:| -1949 (-621 *1))))
- (-4 *1 (-360 *3))))
- ((*1 *2)
- (|partial| -12
- (-5 *2
- (-2 (|:| |particular| (-445 *3 *4 *5 *6))
- (|:| -1949 (-621 (-445 *3 *4 *5 *6)))))
- (-5 *1 (-445 *3 *4 *5 *6)) (-4 *3 (-170)) (-14 *4 (-892))
- (-14 *5 (-621 (-1143))) (-14 *6 (-1226 (-665 *3))))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1125)) (-5 *3 (-621 (-256))) (-5 *1 (-254))))
- ((*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-256)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-747)) (-4 *4 (-342)) (-5 *1 (-210 *4 *2))
- (-4 *2 (-1202 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1226 *1)) (-4 *1 (-363 *4 *5)) (-4 *4 (-170))
- (-4 *5 (-1202 *4)) (-5 *2 (-665 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-170)) (-4 *5 (-1202 *4)) (-5 *2 (-665 *4))
- (-5 *1 (-401 *3 *4 *5)) (-4 *3 (-402 *4 *5))))
- ((*1 *2)
- (-12 (-4 *1 (-402 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1202 *3))
- (-5 *2 (-665 *3)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-356)) (-4 *3 (-1018))
+ (-5 *1 (-1126 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-821)) (-5 *2 (-549))))
+ ((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-876 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1035 *4 *3)) (-4 *4 (-13 (-821) (-356)))
+ (-4 *3 (-1201 *4)) (-5 *2 (-549))))
+ ((*1 *2 *3)
+ (|partial| -12
+ (-4 *4 (-13 (-541) (-823) (-1009 *2) (-617 *2) (-444)))
+ (-5 *2 (-549)) (-5 *1 (-1082 *4 *3))
+ (-4 *3 (-13 (-27) (-1164) (-423 *4)))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1142)) (-5 *5 (-816 *3))
+ (-4 *3 (-13 (-27) (-1164) (-423 *6)))
+ (-4 *6 (-13 (-541) (-823) (-1009 *2) (-617 *2) (-444)))
+ (-5 *2 (-549)) (-5 *1 (-1082 *6 *3))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *4 (-1142)) (-5 *5 (-1124))
+ (-4 *6 (-13 (-541) (-823) (-1009 *2) (-617 *2) (-444)))
+ (-5 *2 (-549)) (-5 *1 (-1082 *6 *3))
+ (-4 *3 (-13 (-27) (-1164) (-423 *6)))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-444)) (-5 *2 (-549))
+ (-5 *1 (-1083 *4))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1142)) (-5 *5 (-816 (-400 (-923 *6))))
+ (-5 *3 (-400 (-923 *6))) (-4 *6 (-444)) (-5 *2 (-549))
+ (-5 *1 (-1083 *6))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *3 (-400 (-923 *6))) (-5 *4 (-1142))
+ (-5 *5 (-1124)) (-4 *6 (-444)) (-5 *2 (-549)) (-5 *1 (-1083 *6))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-549)) (-5 *1 (-1161 *3)) (-4 *3 (-1018)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-539 *3)) (-4 *3 (-13 (-397) (-1164))) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-621 *3)) (-4 *3 (-1201 (-549))) (-5 *1 (-478 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-1230)) (-5 *1 (-1145))))
+ ((*1 *2) (-12 (-5 *2 (-1230)) (-5 *1 (-1145)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-444))
+ (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *1 (-948 *3 *4 *5 *6)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-119 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-665 *3)) (-4 *3 (-300)) (-5 *1 (-676 *3)))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-728)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-309 (-372))) (-5 *2 (-309 (-219))) (-5 *1 (-298)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-4 *3 (-1067))
- (-4 *4 (-1067)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+ (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3))
+ (-4 *3 (-13 (-356) (-1164) (-973))))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1123 (-549))) (-5 *1 (-1127 *4)) (-4 *4 (-1018))
- (-5 *3 (-549)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-769)) (-4 *4 (-823)) (-4 *5 (-300))
- (-5 *1 (-887 *3 *4 *5 *2)) (-4 *2 (-920 *5 *3 *4))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1139 *6)) (-4 *6 (-920 *5 *3 *4)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *5 (-300)) (-5 *1 (-887 *3 *4 *5 *6))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-549)) (-4 *1 (-1185 *4)) (-4 *4 (-1018)) (-4 *4 (-541))
+ (-5 *2 (-400 (-923 *4)))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-549)) (-4 *1 (-1185 *4)) (-4 *4 (-1018)) (-4 *4 (-541))
+ (-5 *2 (-400 (-923 *4))))))
+(((*1 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-361)) (-4 *2 (-356))))
((*1 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-4 *2 (-920 *6 *4 *5))
- (-5 *1 (-887 *4 *5 *6 *2)) (-4 *4 (-769)) (-4 *5 (-823))
- (-4 *6 (-300)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-270 *3 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1143))
- (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-270 *4 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *4))))))
-(((*1 *2 *3 *4 *5 *5 *4 *6)
- (-12 (-5 *5 (-592 *4)) (-5 *6 (-1139 *4))
- (-4 *4 (-13 (-423 *7) (-27) (-1165)))
- (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1949 (-621 *4))))
- (-5 *1 (-545 *7 *4 *3)) (-4 *3 (-632 *4)) (-4 *3 (-1067))))
- ((*1 *2 *3 *4 *5 *5 *5 *4 *6)
- (-12 (-5 *5 (-592 *4)) (-5 *6 (-400 (-1139 *4)))
- (-4 *4 (-13 (-423 *7) (-27) (-1165)))
- (-4 *7 (-13 (-444) (-1009 (-549)) (-823) (-145) (-617 (-549))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1949 (-621 *4))))
- (-5 *1 (-545 *7 *4 *3)) (-4 *3 (-632 *4)) (-4 *3 (-1067)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-665 (-309 (-219))))
- (-5 *2
- (-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372))))
- (-5 *1 (-199)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-460)) (-5 *4 (-892)) (-5 *2 (-1231)) (-5 *1 (-1227)))))
-(((*1 *1 *1) (-12 (-4 *1 (-423 *2)) (-4 *2 (-823)) (-4 *2 (-1018))))
- ((*1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)))))
+ (-12 (-5 *3 (-892)) (-5 *2 (-1225 *4)) (-5 *1 (-519 *4))
+ (-4 *4 (-342)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-621 (-1139 (-549)))) (-5 *1 (-185)) (-5 *3 (-549)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-892)) (-5 *4 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1227)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-1052)))))
+ (-12 (-4 *4 (-769))
+ (-4 *5 (-13 (-823) (-10 -8 (-15 -2843 ((-1142) $))))) (-4 *6 (-541))
+ (-5 *2 (-2 (|:| -4280 (-923 *6)) (|:| -3007 (-923 *6))))
+ (-5 *1 (-709 *4 *5 *6 *3)) (-4 *3 (-920 (-400 (-923 *6)) *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4)))
+ (-5 *2 (-2 (|:| |num| (-1225 *4)) (|:| |den| *4))))))
+(((*1 *2 *3 *3 *4 *5 *5)
+ (-12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
+ (-4 *3 (-1032 *6 *7 *8))
+ (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4))))
+ (-5 *1 (-1039 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-621 (-2 (|:| |val| (-621 *8)) (|:| -1979 *9))))
+ (-5 *5 (-112)) (-4 *8 (-1032 *6 *7 *4)) (-4 *9 (-1038 *6 *7 *4 *8))
+ (-4 *6 (-444)) (-4 *7 (-769)) (-4 *4 (-823))
+ (-5 *2 (-621 (-2 (|:| |val| *8) (|:| -1979 *9))))
+ (-5 *1 (-1039 *6 *7 *4 *8 *9)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-305)) (-5 *1 (-805)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-863 *4)) (-4 *4 (-1066)) (-5 *1 (-860 *4 *3))
+ (-4 *3 (-1066)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *2 (-541)) (-5 *1 (-940 *2 *3)) (-4 *3 (-1201 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1142))
+ (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-5 *2 (-567 *3)) (-5 *1 (-419 *5 *3))
+ (-4 *3 (-13 (-1164) (-29 *5))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1217 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1142))
+ (-14 *4 *2))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1139 *1)) (-4 *1 (-444))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1139 *6)) (-4 *6 (-920 *5 *3 *4)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *5 (-880)) (-5 *1 (-449 *3 *4 *5 *6))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-1139 *1)) (-4 *1 (-880)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-732)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1226 (-621 (-2 (|:| -4161 *4) (|:| -3493 (-1087))))))
- (-4 *4 (-342)) (-5 *2 (-1231)) (-5 *1 (-519 *4)))))
-(((*1 *2 *3 *3 *4 *5 *5)
- (-12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
- (-4 *3 (-1032 *6 *7 *8))
- (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4))))
- (-5 *1 (-1075 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-621 (-2 (|:| |val| (-621 *8)) (|:| -1981 *9))))
- (-5 *5 (-112)) (-4 *8 (-1032 *6 *7 *4)) (-4 *9 (-1038 *6 *7 *4 *8))
- (-4 *6 (-444)) (-4 *7 (-769)) (-4 *4 (-823))
- (-5 *2 (-621 (-2 (|:| |val| *8) (|:| -1981 *9))))
- (-5 *1 (-1075 *6 *7 *4 *8 *9)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4337)) (-4 *1 (-229 *3))
- (-4 *3 (-1067))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-275 *3)) (-4 *3 (-1180)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 (-112) *7 (-621 *7))) (-4 *1 (-1173 *4 *5 *6 *7))
- (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
+(((*1 *2 *3 *4 *5 *6 *5 *3 *7)
+ (-12 (-5 *4 (-549))
+ (-5 *6
+ (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3042 (-372))))
+ (-5 *7 (-1 (-1230) (-1225 *5) (-1225 *5) (-372)))
+ (-5 *3 (-1225 (-372))) (-5 *5 (-372)) (-5 *2 (-1230))
+ (-5 *1 (-764))))
+ ((*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3)
+ (-12 (-5 *4 (-549))
+ (-5 *6
+ (-2 (|:| |try| (-372)) (|:| |did| (-372)) (|:| -3042 (-372))))
+ (-5 *7 (-1 (-1230) (-1225 *5) (-1225 *5) (-372)))
+ (-5 *3 (-1225 (-372))) (-5 *5 (-372)) (-5 *2 (-1230))
+ (-5 *1 (-764)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-549))
- (-5 *1 (-441 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))))
+ (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-444)) (-5 *2 (-112))
+ (-5 *1 (-353 *4 *5)) (-14 *5 (-621 (-1142)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-756 *4 (-836 *5)))) (-4 *4 (-444))
+ (-14 *5 (-621 (-1142))) (-5 *2 (-112)) (-5 *1 (-606 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-823)) (-4 *4 (-1018))
+ (-5 *2 (-795 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-819)) (-5 *1 (-1248 *3 *2)) (-4 *3 (-1018)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-420 *3 *2)) (-4 *3 (-13 (-170) (-38 (-400 (-549)))))
+ (-4 *2 (-13 (-823) (-21))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1210 *3 *4 *5)) (-5 *1 (-312 *3 *4 *5))
+ (-4 *3 (-13 (-356) (-823))) (-14 *4 (-1142)) (-14 *5 *3)))
+ ((*1 *2 *1) (-12 (-4 *1 (-397)) (-5 *2 (-549))))
+ ((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-411 *3)) (-4 *3 (-541))))
+ ((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-675))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-1066)) (-5 *1 (-690 *3 *2 *4)) (-4 *3 (-823))
+ (-14 *4
+ (-1 (-112) (-2 (|:| -3494 *3) (|:| -1714 *2))
+ (-2 (|:| -3494 *3) (|:| -1714 *2)))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1142))
+ (-4 *5 (-13 (-300) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-5 *2 (-567 *3)) (-5 *1 (-419 *5 *3))
+ (-4 *3 (-13 (-1164) (-29 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1142)) (-4 *5 (-13 (-541) (-1009 (-549)) (-145)))
+ (-5 *2 (-567 (-400 (-923 *5)))) (-5 *1 (-555 *5))
+ (-5 *3 (-400 (-923 *5))))))
(((*1 *1 *1) (-4 *1 (-607)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973) (-1165))))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3))
- (-4 *3 (-13 (-356) (-1165) (-973))))))
-(((*1 *2 *1 *1)
- (|partial| -12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018))
- (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112)))))
+ (-4 *2 (-13 (-423 *3) (-973) (-1164))))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1067)) (-4 *3 (-871 *5)) (-5 *2 (-665 *3))
- (-5 *1 (-668 *5 *3 *6 *4)) (-4 *6 (-366 *3))
- (-4 *4 (-13 (-366 *5) (-10 -7 (-6 -4337)))))))
+ (-12 (-5 *4 (-621 *5)) (-4 *5 (-1201 *3)) (-4 *3 (-300))
+ (-5 *2 (-112)) (-5 *1 (-447 *3 *5)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-665 (-549))) (-5 *1 (-1076)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-309 (-372))) (-5 *2 (-309 (-219))) (-5 *1 (-298)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
-(((*1 *1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-4 *4 (-170)) (-4 *5 (-366 *4))
- (-4 *6 (-366 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4)))
- (-5 *1 (-664 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-170)) (-4 *2 (-1018)) (-5 *1 (-691 *2 *3))
- (-4 *3 (-624 *2))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-170)) (-4 *2 (-1018)) (-5 *1 (-691 *2 *3))
- (-4 *3 (-624 *2))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-810 *2)) (-4 *2 (-170)) (-4 *2 (-1018))))
- ((*1 *1 *1) (-12 (-5 *1 (-810 *2)) (-4 *2 (-170)) (-4 *2 (-1018)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-52)) (-5 *1 (-1158)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| |lm| (-379 *3)) (|:| |mm| (-379 *3)) (|:| |rm| (-379 *3))))
- (-5 *1 (-379 *3)) (-4 *3 (-1067))))
- ((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| |lm| (-795 *3)) (|:| |mm| (-795 *3)) (|:| |rm| (-795 *3))))
- (-5 *1 (-795 *3)) (-4 *3 (-823)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-232 *3 *2)) (-4 *2 (-1180)) (-4 *2 (-1018))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-834))))
- ((*1 *1 *1) (-5 *1 (-834)))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-914 (-219))) (-5 *2 (-219)) (-5 *1 (-1176))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-1018)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3)
- (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *3 (-549))
- (-5 *2 (-1006)) (-5 *1 (-733)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-372)) (-5 *1 (-1030)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1143))
- (-4 *5 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *2
- (-2 (|:| |func| *3) (|:| |kers| (-621 (-592 *3)))
- (|:| |vals| (-621 *3))))
- (-5 *1 (-270 *5 *3)) (-4 *3 (-13 (-27) (-1165) (-423 *5))))))
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12
+ (-5 *3
+ (-1 (-3 (-2 (|:| -2677 *4) (|:| |coeff| *4)) "failed") *4))
+ (-4 *4 (-356)) (-5 *1 (-559 *4 *2)) (-4 *2 (-1201 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-1165 *3))) (-5 *1 (-1165 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-621 *7)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5))
+ (-5 *1 (-959 *3 *4 *5 *6 *7))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-621 *7)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5))
+ (-5 *1 (-1073 *3 *4 *5 *6 *7)))))
+(((*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1 (-372))) (-5 *1 (-1011)))))
+(((*1 *2 *3 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-725)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-319 *2 *3)) (-4 *3 (-768)) (-4 *2 (-1018))
+ (-4 *2 (-444))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 *4)) (-4 *4 (-1201 (-549))) (-5 *2 (-621 (-549)))
+ (-5 *1 (-478 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-444))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *2 (-823)) (-4 *3 (-444)))))
(((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-747)) (-4 *1 (-225 *4))
(-4 *4 (-1018))))
@@ -14774,224 +15198,198 @@
((*1 *1 *1) (-4 *1 (-227)))
((*1 *1 *1 *2)
(-12 (-5 *2 (-747)) (-4 *3 (-13 (-356) (-145))) (-5 *1 (-392 *3 *4))
- (-4 *4 (-1202 *3))))
+ (-4 *4 (-1201 *3))))
((*1 *1 *1)
(-12 (-4 *2 (-13 (-356) (-145))) (-5 *1 (-392 *2 *3))
- (-4 *3 (-1202 *2))))
+ (-4 *3 (-1201 *2))))
((*1 *1) (-12 (-4 *1 (-632 *2)) (-4 *2 (-1018))))
((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-621 *4)) (-5 *3 (-621 (-747))) (-4 *1 (-871 *4))
- (-4 *4 (-1067))))
+ (-4 *4 (-1066))))
((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-747)) (-4 *1 (-871 *2)) (-4 *2 (-1067))))
+ (-12 (-5 *3 (-747)) (-4 *1 (-871 *2)) (-4 *2 (-1066))))
((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *1 (-871 *3)) (-4 *3 (-1067))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-871 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *3 *4 *3 *5 *3)
- (-12 (-5 *4 (-665 (-219))) (-5 *5 (-665 (-549))) (-5 *3 (-549))
- (-5 *2 (-1006)) (-5 *1 (-731)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
- ((*1 *2) (-12 (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-400 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1202 *5))
- (-5 *1 (-704 *5 *2)) (-4 *5 (-356)))))
+ (-12 (-5 *2 (-621 *3)) (-4 *1 (-871 *3)) (-4 *3 (-1066))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-871 *2)) (-4 *2 (-1066)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-621 *2)) (-4 *2 (-534)) (-5 *1 (-157 *2)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *1 *1) (-4 *1 (-484)))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-444))
- (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *1 (-948 *3 *4 *5 *6)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-1006)) (-5 *3 (-1143)) (-5 *1 (-260)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
+(((*1 *2 *3 *4 *3 *4 *4 *4 *4 *4)
+ (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *2 (-1006))
+ (-5 *1 (-732)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-1141)) (-5 *1 (-323)))))
(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1139 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1139 *7)) (-4 *7 (-920 *6 *4 *5)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1018)) (-5 *2 (-1139 *6))
- (-5 *1 (-314 *4 *5 *6 *7)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1226 *3)) (-4 *3 (-1018)) (-5 *1 (-689 *3 *4))
- (-4 *4 (-1202 *3)))))
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1159)))))
(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1123 *2)) (-4 *2 (-300)) (-5 *1 (-172 *2)))))
+ (-12 (-5 *1 (-420 *3 *2)) (-4 *3 (-13 (-170) (-38 (-400 (-549)))))
+ (-4 *2 (-13 (-823) (-21))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-508)))))
+(((*1 *1) (-5 *1 (-155))))
(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-898)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1225 (-747))) (-5 *1 (-651 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-732)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-2 (|:| -2121 (-1139 *6)) (|:| -3731 (-549)))))
- (-4 *6 (-300)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-549))
- (-5 *1 (-719 *4 *5 *6 *7)) (-4 *7 (-920 *6 *4 *5)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-356))
- (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-495 *3 *4 *5 *6)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-747))) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892))
- (-4 *4 (-1018)))))
+ (-12 (-5 *3 (-795 *4)) (-4 *4 (-823)) (-5 *2 (-112))
+ (-5 *1 (-648 *4)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *1 *1) (-4 *1 (-484)))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7)
- (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219)))
- (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-74 FCN JACOBF JACEPS))))
- (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-75 G JACOBG JACGEP))))
- (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
- (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
- (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
- (|:| |abserr| (-219)) (|:| |relerr| (-219))))
- (-5 *2 (-372)) (-5 *1 (-199)))))
-(((*1 *1) (-4 *1 (-23))) ((*1 *1) (-4 *1 (-34)))
- ((*1 *1)
- (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747))
- (-4 *4 (-170))))
- ((*1 *1) (-4 *1 (-703))) ((*1 *1) (-5 *1 (-1143))))
-(((*1 *1 *1) (|partial| -4 *1 (-1118))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1143)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-482)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-549)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-5 *2 (-1231)) (-5 *1 (-441 *4 *5 *6 *7)) (-4 *7 (-920 *4 *5 *6)))))
-(((*1 *2)
- (-12 (-5 *2 (-892)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549)))))
+ (-12 (-5 *2 (-1138 (-549))) (-5 *1 (-913)) (-5 *3 (-549))))
((*1 *2 *2)
- (-12 (-5 *2 (-892)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))))
+ (-12 (-4 *3 (-300)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3))
+ (-5 *1 (-1090 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-114)) (-4 *2 (-1067)) (-4 *2 (-823))
- (-5 *1 (-113 *2)))))
+ (-12 (-5 *2 (-1144 (-400 (-549)))) (-5 *1 (-184)) (-5 *3 (-549)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-121 *3)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-821) (-300) (-145) (-993)))
+ (-5 *2 (-621 (-1015 *5 *6))) (-5 *1 (-1251 *5 *6 *7))
+ (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-821) (-300) (-145) (-993)))
+ (-5 *2 (-621 (-1015 *5 *6))) (-5 *1 (-1251 *5 *6 *7))
+ (-14 *6 (-621 (-1142))) (-14 *7 (-621 (-1142)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-923 *4)))
+ (-4 *4 (-13 (-821) (-300) (-145) (-993)))
+ (-5 *2 (-621 (-1015 *4 *5))) (-5 *1 (-1251 *4 *5 *6))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-621 (-1142))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-621 *7)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5))
+ (-5 *1 (-959 *3 *4 *5 *6 *7))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-621 *7)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5))
+ (-5 *1 (-1073 *3 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-729)))))
+(((*1 *2 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1124)) (-5 *1 (-298)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-796)) (-14 *5 (-1142)) (-5 *2 (-621 (-1198 *5 *4)))
+ (-5 *1 (-1080 *4 *5)) (-5 *3 (-1198 *5 *4)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-892)) (-5 *2 (-1230)) (-5 *1 (-208 *4))
+ (-4 *4
+ (-13 (-823)
+ (-10 -8 (-15 -3339 ((-1124) $ (-1142))) (-15 -2697 (*2 $))
+ (-15 -1674 (*2 $)))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1230)) (-5 *1 (-208 *3))
+ (-4 *3
+ (-13 (-823)
+ (-10 -8 (-15 -3339 ((-1124) $ (-1142))) (-15 -2697 (*2 $))
+ (-15 -1674 (*2 $)))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-493)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *1 *1) (-4 *1 (-484)))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-444)) (-4 *4 (-541))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| -2558 *4))) (-5 *1 (-940 *4 *3))
- (-4 *3 (-1202 *4)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
+(((*1 *2 *3 *3 *2 *4)
+ (-12 (-5 *3 (-665 *2)) (-5 *4 (-549))
+ (-4 *2 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $)))))
+ (-4 *5 (-1201 *2)) (-5 *1 (-490 *2 *5 *6)) (-4 *6 (-402 *2 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1143)) (-4 *5 (-1184)) (-4 *6 (-1202 *5))
- (-4 *7 (-1202 (-400 *6))) (-5 *2 (-621 (-923 *5)))
- (-5 *1 (-334 *4 *5 *6 *7)) (-4 *4 (-335 *5 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1143)) (-4 *1 (-335 *4 *5 *6)) (-4 *4 (-1184))
- (-4 *5 (-1202 *4)) (-4 *6 (-1202 (-400 *5))) (-4 *4 (-356))
- (-5 *2 (-621 (-923 *4))))))
+ (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142))))
+ (-4 *6 (-769)) (-5 *2 (-621 *3)) (-5 *1 (-895 *4 *5 *6 *3))
+ (-4 *3 (-920 *4 *6 *5)))))
+(((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
+ (-4 *3 (-360 *4))))
+ ((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1018)) (-4 *3 (-823))
- (-5 *2 (-2 (|:| |val| *1) (|:| -3731 (-549)))) (-4 *1 (-423 *3))))
- ((*1 *2 *1)
- (|partial| -12
- (-5 *2 (-2 (|:| |val| (-863 *3)) (|:| -3731 (-863 *3))))
- (-5 *1 (-863 *3)) (-4 *3 (-1067))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018))
- (-4 *7 (-920 *6 *4 *5))
- (-5 *2 (-2 (|:| |val| *3) (|:| -3731 (-549))))
- (-5 *1 (-921 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-356)
- (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $))
- (-15 -1403 (*7 $))))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-621 (-1143))) (-4 *5 (-541))
- (-5 *2 (-621 (-621 (-287 (-400 (-923 *5)))))) (-5 *1 (-746 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 (-923 *4))) (-4 *4 (-541))
- (-5 *2 (-621 (-621 (-287 (-400 (-923 *4)))))) (-5 *1 (-746 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-665 *7))
- (-5 *5
- (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -1949 (-621 *6)))
- *7 *6))
- (-4 *6 (-356)) (-4 *7 (-632 *6))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1226 *6) "failed"))
- (|:| -1949 (-621 (-1226 *6)))))
- (-5 *1 (-789 *6 *7)) (-5 *4 (-1226 *6)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-892)) (-5 *4 (-845)) (-5 *2 (-1231)) (-5 *1 (-1227))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-892)) (-5 *4 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1227))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1180)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+ (-12 (-4 *3 (-1066))
+ (-4 *4 (-13 (-1018) (-857 *3) (-823) (-594 (-863 *3))))
+ (-5 *2 (-621 (-1142))) (-5 *1 (-1042 *3 *4 *5))
+ (-4 *5 (-13 (-423 *4) (-857 *3) (-594 (-863 *3)))))))
+(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-621 (-549))) (-5 *1 (-1076)) (-5 *3 (-549)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-112)) (-5 *3 (-621 (-256))) (-5 *1 (-254))))
+ ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-256)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-747)) (-4 *1 (-1201 *3)) (-4 *3 (-1018)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-4 *2 (-1202 *4)) (-5 *1 (-528 *4 *2 *5 *6))
- (-4 *4 (-300)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-747))))))
+ (-12 (-4 *4 (-38 (-400 (-549))))
+ (-5 *2 (-2 (|:| -1638 (-1122 *4)) (|:| -1648 (-1122 *4))))
+ (-5 *1 (-1128 *4)) (-5 *3 (-1122 *4)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
+ (-5 *2 (-112)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *1 *1)
- (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143)))
- (-14 *3 (-621 (-1143))) (-4 *4 (-380))))
+ (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142)))
+ (-14 *3 (-621 (-1142))) (-4 *4 (-380))))
((*1 *1 *1) (-4 *1 (-484)))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
-(((*1 *2)
- (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823))
- (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1231))
- (-5 *1 (-959 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-444)) (-4 *4 (-769)) (-4 *5 (-823))
- (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-1231))
- (-5 *1 (-1074 *3 *4 *5 *6 *7)) (-4 *7 (-1038 *3 *4 *5 *6)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
(((*1 *1 *2 *1) (-12 (-4 *1 (-21)) (-5 *2 (-549))))
((*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-747))))
((*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-892))))
@@ -15001,32 +15399,32 @@
((*1 *1 *2 *1) (-12 (-5 *2 (-219)) (-5 *1 (-155))))
((*1 *1 *2 *1) (-12 (-5 *2 (-892)) (-5 *1 (-155))))
((*1 *2 *1 *2)
- (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1165)))
+ (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1164)))
(-5 *1 (-221 *3))))
((*1 *1 *2 *1)
- (-12 (-4 *1 (-232 *3 *2)) (-4 *2 (-1180)) (-4 *2 (-703))))
+ (-12 (-4 *1 (-232 *3 *2)) (-4 *2 (-1179)) (-4 *2 (-703))))
((*1 *1 *1 *2)
- (-12 (-4 *1 (-232 *3 *2)) (-4 *2 (-1180)) (-4 *2 (-703))))
+ (-12 (-4 *1 (-232 *3 *2)) (-4 *2 (-1179)) (-4 *2 (-703))))
((*1 *1 *2 *1)
- (-12 (-5 *1 (-287 *2)) (-4 *2 (-1079)) (-4 *2 (-1180))))
+ (-12 (-5 *1 (-287 *2)) (-4 *2 (-1078)) (-4 *2 (-1179))))
((*1 *1 *1 *2)
- (-12 (-5 *1 (-287 *2)) (-4 *2 (-1079)) (-4 *2 (-1180))))
+ (-12 (-5 *1 (-287 *2)) (-4 *2 (-1078)) (-4 *2 (-1179))))
((*1 *1 *2 *3)
- (-12 (-4 *1 (-316 *3 *2)) (-4 *3 (-1067)) (-4 *2 (-130))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-354 *2)) (-4 *2 (-1067))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-354 *2)) (-4 *2 (-1067))))
+ (-12 (-4 *1 (-316 *3 *2)) (-4 *3 (-1066)) (-4 *2 (-130))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-354 *2)) (-4 *2 (-1066))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-354 *2)) (-4 *2 (-1066))))
((*1 *1 *2 *3)
(-12 (-5 *1 (-374 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-823))))
((*1 *1 *2 *3)
- (-12 (-4 *1 (-375 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1067))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-379 *2)) (-4 *2 (-1067))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-379 *2)) (-4 *2 (-1067))))
+ (-12 (-4 *1 (-375 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-1066))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-379 *2)) (-4 *2 (-1066))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-379 *2)) (-4 *2 (-1066))))
((*1 *1 *2 *1)
- (-12 (-14 *3 (-621 (-1143))) (-4 *4 (-170))
- (-4 *6 (-232 (-3775 *3) (-747)))
+ (-12 (-14 *3 (-621 (-1142))) (-4 *4 (-170))
+ (-4 *6 (-232 (-3774 *3) (-747)))
(-14 *7
- (-1 (-112) (-2 (|:| -3493 *5) (|:| -3731 *6))
- (-2 (|:| -3493 *5) (|:| -3731 *6))))
+ (-1 (-112) (-2 (|:| -3494 *5) (|:| -1714 *6))
+ (-2 (|:| -3494 *5) (|:| -1714 *6))))
(-5 *1 (-453 *3 *4 *5 *6 *7 *2)) (-4 *5 (-823))
(-4 *2 (-920 *4 *6 (-836 *3)))))
((*1 *1 *1 *2)
@@ -15037,7 +15435,7 @@
(-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823))
(-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1226 *3)) (-4 *3 (-342)) (-5 *1 (-519 *3))))
+ (-12 (-5 *2 (-1225 *3)) (-4 *3 (-342)) (-5 *1 (-519 *3))))
((*1 *1 *1 *1) (-5 *1 (-525)))
((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-577 *3)) (-4 *3 (-1018))))
((*1 *1 *1 *2) (-12 (-5 *1 (-577 *2)) (-4 *2 (-1018))))
@@ -15045,8 +15443,8 @@
((*1 *1 *2 *1) (-12 (-4 *1 (-624 *2)) (-4 *2 (-1025))))
((*1 *1 *1 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-823))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1067))
- (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-1 *7 *5))
+ (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1066))
+ (-4 *6 (-1066)) (-4 *7 (-1066)) (-5 *2 (-1 *7 *5))
(-5 *1 (-660 *5 *6 *7))))
((*1 *2 *2 *1)
(-12 (-4 *1 (-663 *3 *2 *4)) (-4 *3 (-1018)) (-4 *2 (-366 *3))
@@ -15070,321 +15468,253 @@
((*1 *1 *1 *2) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823))))
((*1 *1 *2 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823))))
((*1 *1 *1 *1) (-5 *1 (-834)))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1067))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-863 *2)) (-4 *2 (-1066))))
((*1 *2 *3 *2)
- (-12 (-5 *2 (-1226 *4)) (-4 *4 (-1202 *3)) (-4 *3 (-541))
+ (-12 (-5 *2 (-1225 *4)) (-4 *4 (-1201 *3)) (-4 *3 (-541))
(-5 *1 (-940 *3 *4))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1024 *2)) (-4 *2 (-1025))))
- ((*1 *1 *1 *1) (-4 *1 (-1079)))
+ ((*1 *1 *1 *1) (-4 *1 (-1078)))
((*1 *2 *2 *1)
- (-12 (-4 *1 (-1090 *3 *4 *2 *5)) (-4 *4 (-1018)) (-4 *2 (-232 *3 *4))
+ (-12 (-4 *1 (-1089 *3 *4 *2 *5)) (-4 *4 (-1018)) (-4 *2 (-232 *3 *4))
(-4 *5 (-232 *3 *4))))
((*1 *2 *1 *2)
- (-12 (-4 *1 (-1090 *3 *4 *5 *2)) (-4 *4 (-1018)) (-4 *5 (-232 *3 *4))
+ (-12 (-4 *1 (-1089 *3 *4 *5 *2)) (-4 *4 (-1018)) (-4 *5 (-232 *3 *4))
(-4 *2 (-232 *3 *4))))
((*1 *1 *2 *1)
- (-12 (-4 *3 (-1018)) (-4 *4 (-823)) (-5 *1 (-1093 *3 *4 *2))
+ (-12 (-4 *3 (-1018)) (-4 *4 (-823)) (-5 *1 (-1092 *3 *4 *2))
(-4 *2 (-920 *3 (-521 *4) *4))))
((*1 *2 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3))))
((*1 *2 *3 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3))))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-1018)) (-5 *1 (-1126 *3))))
((*1 *2 *3 *2)
- (-12 (-5 *2 (-914 (-219))) (-5 *3 (-219)) (-5 *1 (-1176))))
+ (-12 (-5 *2 (-914 (-219))) (-5 *3 (-219)) (-5 *1 (-1175))))
((*1 *1 *1 *2)
- (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-703))))
+ (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-703))))
((*1 *1 *2 *1)
- (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1180)) (-4 *2 (-703))))
+ (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-703))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-549)) (-4 *1 (-1224 *3)) (-4 *3 (-1180)) (-4 *3 (-21))))
+ (-12 (-5 *2 (-549)) (-4 *1 (-1223 *3)) (-4 *3 (-1179)) (-4 *3 (-21))))
((*1 *1 *2 *1)
- (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018))))
+ (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018))))
((*1 *1 *1 *2)
- (-12 (-4 *1 (-1243 *3 *2)) (-4 *3 (-823)) (-4 *2 (-1018))))
+ (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-823)) (-4 *2 (-1018))))
((*1 *1 *1 *2)
- (-12 (-5 *1 (-1249 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-819)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-56 *3 *4 *5)) (-4 *3 (-1180)) (-4 *4 (-366 *3))
- (-4 *5 (-366 *3)) (-5 *2 (-549))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
- (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-549)))))
-(((*1 *1 *2) (-12 (-5 *1 (-1166 *2)) (-4 *2 (-1067))))
+ (-12 (-5 *1 (-1248 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-819)))))
+(((*1 *1 *2) (-12 (-5 *1 (-1165 *2)) (-4 *2 (-1066))))
((*1 *1 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *3 (-1067)) (-5 *1 (-1166 *3))))
+ (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-5 *1 (-1165 *3))))
((*1 *1 *2 *3)
- (-12 (-5 *3 (-621 (-1166 *2))) (-5 *1 (-1166 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *1) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *2) (-12 (-5 *1 (-568 *2)) (-4 *2 (-534)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-823)) (-5 *2 (-621 (-621 (-621 *4))))
- (-5 *1 (-1151 *4)) (-5 *3 (-621 (-621 *4))))))
+ (-12 (-5 *3 (-621 (-1165 *2))) (-5 *1 (-1165 *2)) (-4 *2 (-1066)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-328 *3 *4 *5 *6)) (-4 *3 (-356)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-4 *6 (-335 *3 *4 *5))
+ (-12
(-5 *2
- (-2 (|:| -3715 (-406 *4 (-400 *4) *5 *6)) (|:| |principalPart| *6)))))
+ (-621
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3)
+ (|:| |xpnt| (-549)))))
+ (-5 *1 (-411 *3)) (-4 *3 (-541))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *4 (-747)) (-4 *3 (-342)) (-4 *5 (-1201 *3))
+ (-5 *2 (-621 (-1138 *3))) (-5 *1 (-489 *3 *5 *6))
+ (-4 *6 (-1201 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *4)) (-4 *4 (-170))
+ (-5 *2 (-665 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-665 *4)) (-5 *1 (-409 *3 *4))
+ (-4 *3 (-410 *4))))
+ ((*1 *2) (-12 (-4 *1 (-410 *3)) (-4 *3 (-170)) (-5 *2 (-665 *3)))))
+(((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1138 *9)) (-5 *4 (-621 *7)) (-5 *5 (-621 *8))
+ (-4 *7 (-823)) (-4 *8 (-1018)) (-4 *9 (-920 *8 *6 *7))
+ (-4 *6 (-769)) (-5 *2 (-1138 *8)) (-5 *1 (-314 *6 *7 *8 *9)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-665 (-400 (-923 (-549)))))
+ (-5 *2 (-665 (-309 (-549)))) (-5 *1 (-1002)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))))
+(((*1 *2)
+ (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-410 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7)) (-5 *2 (-112))
+ (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1202 *5)) (-4 *5 (-356))
- (-5 *2
- (-2 (|:| |poly| *6) (|:| -4041 (-400 *6))
- (|:| |special| (-400 *6))))
- (-5 *1 (-704 *5 *6)) (-5 *3 (-400 *6))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-356)) (-5 *2 (-621 *3)) (-5 *1 (-867 *3 *4))
- (-4 *3 (-1202 *4))))
- ((*1 *2 *3 *4 *4)
- (|partial| -12 (-5 *4 (-747)) (-4 *5 (-356))
- (-5 *2 (-2 (|:| -3838 *3) (|:| -3848 *3))) (-5 *1 (-867 *3 *5))
- (-4 *3 (-1202 *5))))
- ((*1 *2 *3 *2 *4 *4)
- (-12 (-5 *2 (-621 *9)) (-5 *3 (-621 *8)) (-5 *4 (-112))
- (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444))
- (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1036 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
- (-12 (-5 *2 (-621 *9)) (-5 *3 (-621 *8)) (-5 *4 (-112))
- (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444))
- (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1036 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4)
- (-12 (-5 *2 (-621 *9)) (-5 *3 (-621 *8)) (-5 *4 (-112))
- (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1076 *5 *6 *7 *8)) (-4 *5 (-444))
- (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1112 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
- (-12 (-5 *2 (-621 *9)) (-5 *3 (-621 *8)) (-5 *4 (-112))
- (-4 *8 (-1032 *5 *6 *7)) (-4 *9 (-1076 *5 *6 *7 *8)) (-4 *5 (-444))
- (-4 *6 (-769)) (-4 *7 (-823)) (-5 *1 (-1112 *5 *6 *7 *8 *9)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-538)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-724)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1067)) (-4 *3 (-23))
- (-14 *4 *3))))
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
+ (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1979 *4))))
+ (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-387))))
+ ((*1 *2 *1) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1159)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *1 *1)
- (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143)))
- (-14 *3 (-621 (-1143))) (-4 *4 (-380))))
+ (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142)))
+ (-14 *3 (-621 (-1142))) (-4 *4 (-380))))
((*1 *1 *1) (-4 *1 (-484)))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-800)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-473 *4 *5)) (-14 *4 (-621 (-1142))) (-4 *5 (-1018))
+ (-5 *2 (-241 *4 *5)) (-5 *1 (-915 *4 *5)))))
+(((*1 *1) (-5 *1 (-142)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-254))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1099 (-219))) (-5 *1 (-256)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-621 *6)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-621 (-923 *4))) (-5 *3 (-621 (-1142))) (-4 *4 (-444))
+ (-5 *1 (-889 *4)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-541)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3))
+ (-5 *1 (-1169 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-335 *4 *3 *5)) (-4 *4 (-1183)) (-4 *3 (-1201 *4))
+ (-4 *5 (-1201 (-400 *3))) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-1226 *5))) (-5 *4 (-549)) (-5 *2 (-1226 *5))
- (-5 *1 (-1000 *5)) (-4 *5 (-356)) (-4 *5 (-361)) (-4 *5 (-1018)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-366 *2))
- (-4 *4 (-366 *2)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3)
- (-12 (-5 *6 (-621 (-112))) (-5 *7 (-665 (-219)))
- (-5 *8 (-665 (-549))) (-5 *3 (-549)) (-5 *4 (-219)) (-5 *5 (-112))
- (-5 *2 (-1006)) (-5 *1 (-731)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-621 (-473 *5 *6))) (-5 *4 (-836 *5))
- (-14 *5 (-621 (-1143))) (-5 *2 (-473 *5 *6)) (-5 *1 (-609 *5 *6))
- (-4 *6 (-444))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-473 *5 *6))) (-5 *4 (-836 *5))
- (-14 *5 (-621 (-1143))) (-5 *2 (-473 *5 *6)) (-5 *1 (-609 *5 *6))
- (-4 *6 (-444)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1143)) (-5 *5 (-1061 (-219))) (-5 *2 (-898))
- (-5 *1 (-896 *3)) (-4 *3 (-594 (-525)))))
- ((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *4 (-1143)) (-5 *5 (-1061 (-219))) (-5 *2 (-898))
- (-5 *1 (-896 *3)) (-4 *3 (-594 (-525)))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-897))))
- ((*1 *1 *2 *2 *2 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1061 (-219)))
- (-5 *1 (-897))))
- ((*1 *1 *2 *2 *2 *2 *3)
- (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1061 (-219)))
- (-5 *1 (-897))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1061 (-219))) (-5 *1 (-898))))
- ((*1 *1 *2 *2 *3 *3 *3)
- (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1061 (-219)))
- (-5 *1 (-898))))
- ((*1 *1 *2 *2 *3)
- (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1061 (-219)))
- (-5 *1 (-898))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-621 (-1 (-219) (-219)))) (-5 *3 (-1061 (-219)))
- (-5 *1 (-898))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-621 (-1 (-219) (-219)))) (-5 *3 (-1061 (-219)))
- (-5 *1 (-898))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1061 (-219)))
- (-5 *1 (-898))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-219) (-219))) (-5 *3 (-1061 (-219)))
- (-5 *1 (-898)))))
-(((*1 *1) (-5 *1 (-799))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
- (-4 *2 (-423 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1106))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-56 *2 *3 *4)) (-4 *2 (-1180)) (-4 *3 (-366 *2))
- (-4 *4 (-366 *2))))
- ((*1 *1 *1 *2)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-584 *3 *2)) (-4 *3 (-1067))
- (-4 *2 (-1180)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-541)) (-5 *1 (-41 *3 *2))
- (-4 *2
- (-13 (-356) (-295)
- (-10 -8 (-15 -1394 ((-1092 *3 (-592 $)) $))
- (-15 -1403 ((-1092 *3 (-592 $)) $))
- (-15 -3846 ($ (-1092 *3 (-592 $)))))))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-541)) (-5 *1 (-41 *3 *2))
- (-4 *2
- (-13 (-356) (-295)
- (-10 -8 (-15 -1394 ((-1092 *3 (-592 $)) $))
- (-15 -1403 ((-1092 *3 (-592 $)) $))
- (-15 -3846 ($ (-1092 *3 (-592 $)))))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-621 *2))
- (-4 *2
- (-13 (-356) (-295)
- (-10 -8 (-15 -1394 ((-1092 *4 (-592 $)) $))
- (-15 -1403 ((-1092 *4 (-592 $)) $))
- (-15 -3846 ($ (-1092 *4 (-592 $)))))))
- (-4 *4 (-541)) (-5 *1 (-41 *4 *2))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-621 (-592 *2)))
- (-4 *2
- (-13 (-356) (-295)
- (-10 -8 (-15 -1394 ((-1092 *4 (-592 $)) $))
- (-15 -1403 ((-1092 *4 (-592 $)) $))
- (-15 -3846 ($ (-1092 *4 (-592 $)))))))
- (-4 *4 (-541)) (-5 *1 (-41 *4 *2)))))
+ (-12 (-5 *4 (-892)) (-5 *2 (-1138 *3)) (-5 *1 (-1153 *3))
+ (-4 *3 (-356)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823))
+ (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-621 *4)))))
+(((*1 *1) (-5 *1 (-155))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *1 *1)
- (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143)))
- (-14 *3 (-621 (-1143))) (-4 *4 (-380))))
+ (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142)))
+ (-14 *3 (-621 (-1142))) (-4 *4 (-380))))
((*1 *1 *1) (-4 *1 (-484)))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-758 *2)) (-4 *2 (-1018)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1122 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))))
+(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549))
+ (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) (-5 *2 (-1006))
+ (-5 *1 (-725)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-410 *4)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-316 *3 *4)) (-4 *3 (-1066))
+ (-4 *4 (-130))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1066)) (-5 *1 (-354 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1066)) (-5 *1 (-379 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1066)) (-5 *1 (-625 *3 *4 *5))
+ (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-892)) (-5 *1 (-150 *3 *4 *5)) (-14 *3 *2)
+ (-4 *4 (-356)) (-14 *5 (-964 *3 *4)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-621 *6)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-114))))
- ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-114))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-246 *4 *3 *5 *6)) (-4 *4 (-1018)) (-4 *3 (-823))
- (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-747))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823))
- (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-747))))
- ((*1 *2 *1) (-12 (-4 *1 (-259 *3)) (-4 *3 (-823)) (-5 *2 (-747)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1125)) (-5 *1 (-1161)))))
+ (-12 (-5 *2 (-621 (-621 (-747)))) (-5 *1 (-875 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-1006)) (-5 *3 (-1142)) (-5 *1 (-260)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-2 (|:| |integrand| *3) (|:| |intvar| *3))))
- (-5 *1 (-567 *3)) (-4 *3 (-356)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1139 *3)) (-5 *1 (-885 *3)) (-4 *3 (-300)))))
-(((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-747)) (-4 *2 (-541)) (-5 *1 (-940 *2 *4))
- (-4 *4 (-1202 *2)))))
+ (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2717 *4))))
+ (-5 *1 (-625 *3 *4 *5)) (-4 *3 (-1066)) (-4 *4 (-23)) (-14 *5 *4))))
(((*1 *2 *2)
(-12
(-5 *2
(-495 (-400 (-549)) (-234 *4 (-747)) (-836 *3)
(-241 *3 (-400 (-549)))))
- (-14 *3 (-621 (-1143))) (-14 *4 (-747)) (-5 *1 (-496 *3 *4)))))
+ (-14 *3 (-621 (-1142))) (-14 *4 (-747)) (-5 *1 (-496 *3 *4)))))
+(((*1 *1)
+ (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747))
+ (-4 *4 (-170)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-892)) (-5 *1 (-150 *3 *4 *5)) (-14 *3 *2)
- (-4 *4 (-356)) (-14 *5 (-964 *3 *4)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1123 *4)) (-5 *3 (-549)) (-4 *4 (-1018))
- (-5 *1 (-1127 *4))))
- ((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-549)) (-5 *1 (-1218 *3 *4 *5)) (-4 *3 (-1018))
- (-14 *4 (-1143)) (-14 *5 *3))))
-(((*1 *2 *1) (-12 (-5 *2 (-798)) (-5 *1 (-797)))))
+ (-12 (-5 *2 (-892)) (-4 *1 (-232 *3 *4)) (-4 *4 (-1018))
+ (-4 *4 (-1179))))
+ ((*1 *1 *2)
+ (-12 (-14 *3 (-621 (-1142))) (-4 *4 (-170))
+ (-4 *5 (-232 (-3774 *3) (-747)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -3494 *2) (|:| -1714 *5))
+ (-2 (|:| -3494 *2) (|:| -1714 *5))))
+ (-5 *1 (-453 *3 *4 *2 *5 *6 *7)) (-4 *2 (-823))
+ (-4 *7 (-920 *4 *5 (-836 *3)))))
+ ((*1 *2 *2) (-12 (-5 *2 (-914 (-219))) (-5 *1 (-1175)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-621 (-52))) (-5 *1 (-863 *3)) (-4 *3 (-1066)))))
(((*1 *1 *1) (-4 *1 (-94)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1101 *3)) (-4 *3 (-1018))
- (-5 *2 (-621 (-621 (-621 (-914 *3))))))))
-(((*1 *1 *1 *2 *2 *2 *2)
- (-12 (-5 *2 (-549)) (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018))
- (-4 *4 (-366 *3)) (-4 *5 (-366 *3)))))
-(((*1 *2)
- (-12 (-4 *2 (-13 (-423 *3) (-973))) (-5 *1 (-269 *3 *2))
- (-4 *3 (-13 (-823) (-541))))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-323)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
+(((*1 *1) (-5 *1 (-139))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-665 *4)) (-5 *3 (-892)) (-4 *4 (-1018))
+ (-5 *1 (-999 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-621 (-665 *4))) (-5 *3 (-892)) (-4 *4 (-1018))
+ (-5 *1 (-999 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-914 *3) (-914 *3))) (-5 *1 (-174 *3))
+ (-4 *3 (-13 (-356) (-1164) (-973))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-1166 *3))) (-5 *1 (-1166 *3)) (-4 *3 (-1067)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1067)) (-5 *1 (-102 *3))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-102 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1143))
- (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-309 *5)))
- (-5 *1 (-1096 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-400 (-923 *5)))) (-5 *4 (-621 (-1143)))
- (-4 *5 (-13 (-300) (-823) (-145))) (-5 *2 (-621 (-621 (-309 *5))))
- (-5 *1 (-1096 *5)))))
-(((*1 *2)
- (-12
- (-5 *2
- (-1226 (-621 (-2 (|:| -4161 (-881 *3)) (|:| -3493 (-1087))))))
- (-5 *1 (-344 *3 *4)) (-14 *3 (-892)) (-14 *4 (-892))))
- ((*1 *2)
- (-12 (-5 *2 (-1226 (-621 (-2 (|:| -4161 *3) (|:| -3493 (-1087))))))
- (-5 *1 (-345 *3 *4)) (-4 *3 (-342)) (-14 *4 (-3 (-1139 *3) *2))))
- ((*1 *2)
- (-12 (-5 *2 (-1226 (-621 (-2 (|:| -4161 *3) (|:| -3493 (-1087))))))
- (-5 *1 (-346 *3 *4)) (-4 *3 (-342)) (-14 *4 (-892)))))
+ (-12 (-5 *2 (-747)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892))
+ (-4 *4 (-1018)))))
+(((*1 *2 *3 *2)
+ (-12 (-4 *1 (-763)) (-5 *2 (-1006))
+ (-5 *3
+ (-2 (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-621 (-1060 (-816 (-219))))) (|:| |abserr| (-219))
+ (|:| |relerr| (-219))))))
+ ((*1 *2 *3 *2)
+ (-12 (-4 *1 (-763)) (-5 *2 (-1006))
+ (-5 *3
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
+ (|:| |relerr| (-219)))))))
(((*1 *2 *3) (-12 (-5 *2 (-372)) (-5 *1 (-761 *3)) (-4 *3 (-594 *2))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-892)) (-5 *2 (-372)) (-5 *1 (-761 *3))
@@ -15407,646 +15737,611 @@
((*1 *2 *3 *4)
(-12 (-5 *3 (-309 *5)) (-5 *4 (-892)) (-4 *5 (-541)) (-4 *5 (-823))
(-4 *5 (-594 *2)) (-5 *2 (-372)) (-5 *1 (-761 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-621 (-309 (-219)))) (-5 *1 (-260)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1165) (-973)))
- (-5 *1 (-174 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143))))
- (-4 *6 (-769)) (-4 *7 (-920 *4 *6 *5))
- (-5 *2
- (-2 (|:| |sysok| (-112)) (|:| |z0| (-621 *7)) (|:| |n0| (-621 *7))))
- (-5 *1 (-895 *4 *5 *6 *7)) (-5 *3 (-621 *7)))))
-(((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7)
- (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219)))
- (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT))))
- (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE)))) (-5 *4 (-219))
- (-5 *2 (-1006)) (-5 *1 (-732))))
- ((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8)
- (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219)))
- (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-66 DOT))))
- (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-67 IMAGE)))) (-5 *8 (-381))
- (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-732)))))
-(((*1 *2)
- (-12 (-4 *3 (-1184)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 (-400 *4)))
- (-5 *2 (-1226 *1)) (-4 *1 (-335 *3 *4 *5))))
- ((*1 *2)
- (-12 (-4 *3 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $)))))
- (-4 *4 (-1202 *3))
- (-5 *2
- (-2 (|:| -1949 (-665 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-665 *3))))
- (-5 *1 (-343 *3 *4 *5)) (-4 *5 (-402 *3 *4))))
- ((*1 *2)
- (-12 (-4 *3 (-1202 (-549)))
- (-5 *2
- (-2 (|:| -1949 (-665 (-549))) (|:| |basisDen| (-549))
- (|:| |basisInv| (-665 (-549)))))
- (-5 *1 (-744 *3 *4)) (-4 *4 (-402 (-549) *3))))
- ((*1 *2)
- (-12 (-4 *3 (-342)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 *4))
- (-5 *2
- (-2 (|:| -1949 (-665 *4)) (|:| |basisDen| *4)
- (|:| |basisInv| (-665 *4))))
- (-5 *1 (-956 *3 *4 *5 *6)) (-4 *6 (-701 *4 *5))))
- ((*1 *2)
- (-12 (-4 *3 (-342)) (-4 *4 (-1202 *3)) (-4 *5 (-1202 *4))
+(((*1 *2 *3 *3 *4 *4 *4 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-729)))))
+(((*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-728)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-665 *8)) (-4 *8 (-920 *5 *7 *6))
+ (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1142))))
+ (-4 *7 (-769))
(-5 *2
- (-2 (|:| -1949 (-665 *4)) (|:| |basisDen| *4)
- (|:| |basisInv| (-665 *4))))
- (-5 *1 (-1235 *3 *4 *5 *6)) (-4 *6 (-402 *4 *5)))))
+ (-621
+ (-2 (|:| -3121 (-747))
+ (|:| |eqns|
+ (-621
+ (-2 (|:| |det| *8) (|:| |rows| (-621 (-549)))
+ (|:| |cols| (-621 (-549))))))
+ (|:| |fgb| (-621 *8)))))
+ (-5 *1 (-895 *5 *6 *7 *8)) (-5 *4 (-747)))))
(((*1 *1 *1) (-4 *1 (-94)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
- (-4 *2 (-423 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1106))))
-(((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7)
- (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-219))
- (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN))))
- (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL))))
- (-5 *2 (-1006)) (-5 *1 (-726))))
- ((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8)
- (-12 (-5 *3 (-665 (-219))) (-5 *4 (-549)) (-5 *5 (-219))
- (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-60 COEFFN))))
- (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-86 BDYVAL))))
- (-5 *8 (-381)) (-5 *2 (-1006)) (-5 *1 (-726)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1067)) (-4 *5 (-1067))
- (-5 *2 (-1 *5)) (-5 *1 (-659 *4 *5)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-328 *3 *4 *5 *6)) (-4 *3 (-356)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-4 *6 (-335 *3 *4 *5)) (-5 *2 (-112)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1173 *4 *5 *3 *6)) (-4 *4 (-541)) (-4 *5 (-769))
- (-4 *3 (-823)) (-4 *6 (-1032 *4 *5 *3)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-1245 *3)) (-4 *3 (-356)) (-5 *2 (-112)))))
-(((*1 *2)
- (-12 (-5 *2 (-1231)) (-5 *1 (-1157 *3 *4)) (-4 *3 (-1067))
- (-4 *4 (-1067)))))
-(((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1229))))
- ((*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-1229)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3)
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
+(((*1 *2 *3 *3 *4 *3)
(-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
(-5 *1 (-732)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-273)))))
-(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-1180)) (-5 *1 (-180 *3 *2))
- (-4 *2 (-650 *3)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-621 *4)) (-4 *4 (-1066)) (-4 *4 (-1179)) (-5 *2 (-112))
+ (-5 *1 (-1122 *4)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-621 (-2 (|:| |gen| *3) (|:| -2717 *4))))
+ (-4 *3 (-1066)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-625 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-541) (-823) (-1009 (-549)))) (-4 *5 (-423 *4))
+ (-5 *2 (-411 *3)) (-5 *1 (-428 *4 *5 *3)) (-4 *3 (-1201 *5)))))
+(((*1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-675))))
+ ((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-675)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-119 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
+ (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1979 *4))))
+ (-5 *1 (-1074 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356)))))
+(((*1 *1 *2) (-12 (-5 *2 (-795 *3)) (-4 *3 (-823)) (-5 *1 (-648 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3)
+ (-12 (-5 *4 (-665 (-549))) (-5 *5 (-112)) (-5 *7 (-665 (-219)))
+ (-5 *3 (-549)) (-5 *6 (-219)) (-5 *2 (-1006)) (-5 *1 (-731)))))
(((*1 *1 *1) (-4 *1 (-94)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
-(((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-732)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-342)) (-5 *3 (-549)) (-5 *2 (-1152 (-892) (-747))))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *1 (-460)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1122 (-219))) (-5 *2 (-621 (-1124))) (-5 *1 (-186))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1122 (-219))) (-5 *2 (-621 (-1124))) (-5 *1 (-293))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1122 (-219))) (-5 *2 (-621 (-1124))) (-5 *1 (-298)))))
(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1125)) (-5 *3 (-621 (-256))) (-5 *1 (-254))))
- ((*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-256))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1227))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-1123 *3))) (-5 *2 (-1123 *3)) (-5 *1 (-1127 *3))
- (-4 *3 (-38 (-400 (-549)))) (-4 *3 (-1018)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1123 *4)) (-5 *3 (-549)) (-4 *4 (-1018))
- (-5 *1 (-1127 *4))))
- ((*1 *1 *2 *2 *1)
- (-12 (-5 *2 (-549)) (-5 *1 (-1218 *3 *4 *5)) (-4 *3 (-1018))
- (-14 *4 (-1143)) (-14 *5 *3))))
-(((*1 *2) (-12 (-5 *2 (-621 (-892))) (-5 *1 (-1229))))
- ((*1 *2 *2) (-12 (-5 *2 (-621 (-892))) (-5 *1 (-1229)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3))
- (-4 *3 (-1202 *2)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-170)) (-4 *2 (-23)) (-5 *1 (-282 *3 *4 *2 *5 *6 *7))
- (-4 *4 (-1202 *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 (-688 *3 *2 *4 *5 *6)) (-4 *3 (-170))
- (-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 (-1202 *3)) (-5 *1 (-689 *3 *2)) (-4 *3 (-1018))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-23)) (-5 *1 (-692 *3 *2 *4 *5 *6)) (-4 *3 (-170))
- (-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 (-840 *3)) (-5 *2 (-549)))))
-(((*1 *1 *2 *3 *3 *4 *4)
- (-12 (-5 *2 (-923 (-549))) (-5 *3 (-1143))
- (-5 *4 (-1061 (-400 (-549)))) (-5 *1 (-30)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-112)) (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
- (-4 *3 (-1032 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-621 *4))
- (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4))))))
- (-5 *1 (-1036 *6 *7 *8 *3 *4)) (-4 *4 (-1038 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-621 *4))
- (|:| |todo| (-621 (-2 (|:| |val| (-621 *3)) (|:| -1981 *4))))))
- (-5 *1 (-1112 *5 *6 *7 *3 *4)) (-4 *4 (-1076 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-621 (-400 (-923 (-549))))) (-5 *4 (-621 (-1143)))
- (-5 *2 (-621 (-621 *5))) (-5 *1 (-373 *5))
- (-4 *5 (-13 (-821) (-356)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-400 (-923 (-549)))) (-5 *2 (-621 *4)) (-5 *1 (-373 *4))
- (-4 *4 (-13 (-821) (-356))))))
+ (-12 (-5 *2 (-1124)) (-5 *3 (-621 (-256))) (-5 *1 (-254))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-256))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1226))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2 *3 *1)
+ (-12 (|has| *1 (-6 -4336)) (-4 *1 (-481 *3)) (-4 *3 (-1179))
+ (-4 *3 (-1066)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-876 *4)) (-4 *4 (-1066)) (-5 *2 (-112))
+ (-5 *1 (-875 *4))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-892)) (-5 *2 (-112)) (-5 *1 (-1067 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
+ ((*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-1183)) (-4 *5 (-1201 *4))
+ (-5 *2 (-2 (|:| |radicand| (-400 *5)) (|:| |deg| (-747))))
+ (-5 *1 (-146 *4 *5 *3)) (-4 *3 (-1201 (-400 *5))))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-133)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-541)) (-4 *3 (-1018))
+ (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-825 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-98 *5)) (-4 *5 (-541)) (-4 *5 (-1018))
+ (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3))) (-5 *1 (-826 *5 *3))
+ (-4 *3 (-825 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-747)) (-4 *1 (-1201 *3)) (-4 *3 (-1018)))))
(((*1 *1 *1) (-4 *1 (-94))) ((*1 *1 *1 *1) (-5 *1 (-219)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *1 *1)
- (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143)))
- (-14 *3 (-621 (-1143))) (-4 *4 (-380))))
+ (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142)))
+ (-14 *3 (-621 (-1142))) (-4 *4 (-380))))
((*1 *1 *1 *1) (-5 *1 (-372)))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
-(((*1 *1 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-1 (-914 (-219)) (-219))) (-5 *3 (-1061 (-219)))
- (-5 *1 (-897))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-914 (-219)) (-219))) (-5 *3 (-1061 (-219)))
- (-5 *1 (-897))))
- ((*1 *1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1 (-914 (-219)) (-219))) (-5 *3 (-1061 (-219)))
- (-5 *1 (-898))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-914 (-219)) (-219))) (-5 *3 (-1061 (-219)))
- (-5 *1 (-898)))))
-(((*1 *1 *1) (-12 (-4 *1 (-247 *2)) (-4 *2 (-1180))))
- ((*1 *1 *1)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-366 *2)) (-4 *2 (-1180))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-625 *2 *3 *4)) (-4 *2 (-1067)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-747)) (-5 *2 (-112)))))
-(((*1 *1 *1 *1) (-4 *1 (-938))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-621 (-621 *7)))
- (-5 *1 (-440 *4 *5 *6 *7)) (-5 *3 (-621 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-300) (-145))) (-4 *6 (-769))
- (-4 *7 (-823)) (-4 *8 (-920 *5 *6 *7)) (-5 *2 (-621 (-621 *8)))
- (-5 *1 (-440 *5 *6 *7 *8)) (-5 *3 (-621 *8)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *1) (-5 *1 (-1030))))
-(((*1 *2 *1) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1180)))))
+ (|partial| -12 (-5 *4 (-892)) (-4 *5 (-541)) (-5 *2 (-665 *5))
+ (-5 *1 (-927 *5 *3)) (-4 *3 (-632 *5)))))
(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
- (|:| |relerr| (-219))))
- (-5 *2 (-621 (-219))) (-5 *1 (-198)))))
+ (-12 (-5 *3 (-747)) (-5 *2 (-665 (-923 *4))) (-5 *1 (-999 *4))
+ (-4 *4 (-1018)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-621 *1)) (-4 *1 (-1100 *3)) (-4 *3 (-1018))))
+ ((*1 *2 *2 *1)
+ (|partial| -12 (-5 *2 (-400 *1)) (-4 *1 (-1201 *3)) (-4 *3 (-1018))
+ (-4 *3 (-541))))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-1201 *2)) (-4 *2 (-1018)) (-4 *2 (-541)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1086)) (-5 *2 (-112)) (-5 *1 (-797)))))
+(((*1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1228))))
+ ((*1 *2 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1228)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549))
+ (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 -1421))))
+ (-5 *2 (-1006)) (-5 *1 (-725)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *3 (-549)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime"))
+ (-5 *1 (-411 *2)) (-4 *2 (-541)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-273)))))
(((*1 *1 *1) (-4 *1 (-94)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *1 *1)
- (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143)))
- (-14 *3 (-621 (-1143))) (-4 *4 (-380))))
+ (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142)))
+ (-14 *3 (-621 (-1142))) (-4 *4 (-380))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-923 (-167 *4))) (-4 *4 (-170))
- (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-923 (-167 *5))) (-5 *4 (-892)) (-4 *5 (-170))
- (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-923 *4)) (-4 *4 (-1018))
- (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-923 *5)) (-5 *4 (-892)) (-4 *5 (-1018))
- (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541))
- (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-892)) (-4 *5 (-541))
- (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-400 (-923 (-167 *4)))) (-4 *4 (-541))
- (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-400 (-923 (-167 *5)))) (-5 *4 (-892))
- (-4 *5 (-541)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372)))
- (-5 *1 (-761 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-309 *4)) (-4 *4 (-541)) (-4 *4 (-823))
- (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-309 *5)) (-5 *4 (-892)) (-4 *5 (-541))
- (-4 *5 (-823)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372)))
- (-5 *1 (-761 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-309 (-167 *4))) (-4 *4 (-541)) (-4 *4 (-823))
- (-4 *4 (-594 (-372))) (-5 *2 (-167 (-372))) (-5 *1 (-761 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-309 (-167 *5))) (-5 *4 (-892)) (-4 *5 (-541))
- (-4 *5 (-823)) (-4 *5 (-594 (-372))) (-5 *2 (-167 (-372)))
- (-5 *1 (-761 *5)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219)))
- (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-78 LSFUN1))))
- (-5 *2 (-1006)) (-5 *1 (-730)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-444)) (-4 *3 (-823)) (-4 *3 (-1009 (-549)))
- (-4 *3 (-541)) (-5 *1 (-41 *3 *2)) (-4 *2 (-423 *3))
- (-4 *2
- (-13 (-356) (-295)
- (-10 -8 (-15 -1394 ((-1092 *3 (-592 $)) $))
- (-15 -1403 ((-1092 *3 (-592 $)) $))
- (-15 -3846 ($ (-1092 *3 (-592 $))))))))))
-(((*1 *2 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)) (-4 *2 (-1165))))
- ((*1 *2 *1) (-12 (-5 *1 (-324 *2)) (-4 *2 (-823))))
- ((*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-592 *3)) (-4 *3 (-823)))))
-(((*1 *2 *2)
- (-12 (-4 *2 (-13 (-356) (-821))) (-5 *1 (-179 *2 *3))
- (-4 *3 (-1202 (-167 *2))))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-876 *4)) (-4 *4 (-1066)) (-5 *2 (-621 (-747)))
+ (-5 *1 (-875 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1250 *4 *2)) (-4 *1 (-367 *4 *2)) (-4 *4 (-823))
+ (-12 (-4 *4 (-356)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
+ (-5 *1 (-495 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-379 *2)) (-4 *2 (-1066))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-795 *2)) (-4 *2 (-823)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *6 (-1124))
+ (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1249 *4 *2)) (-4 *1 (-367 *4 *2)) (-4 *4 (-823))
(-4 *2 (-170))))
((*1 *2 *1 *1)
- (-12 (-4 *1 (-1243 *3 *2)) (-4 *3 (-823)) (-4 *2 (-1018))))
+ (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-823)) (-4 *2 (-1018))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-795 *4)) (-4 *1 (-1243 *4 *2)) (-4 *4 (-823))
+ (-12 (-5 *3 (-795 *4)) (-4 *1 (-1242 *4 *2)) (-4 *4 (-823))
(-4 *2 (-1018))))
((*1 *2 *1 *3)
- (-12 (-4 *2 (-1018)) (-5 *1 (-1249 *2 *3)) (-4 *3 (-819)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-584 *2 *3)) (-4 *3 (-1180)) (-4 *2 (-1067))
- (-4 *2 (-823)))))
-(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))))
-(((*1 *2)
- (-12 (-4 *3 (-541)) (-5 *2 (-621 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-410 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4)))
- (-5 *1 (-682 *3 *4)) (-4 *3 (-1180)) (-4 *4 (-1180)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823))
- (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4)))))
+ (-12 (-4 *2 (-1018)) (-5 *1 (-1248 *2 *3)) (-4 *3 (-819)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-473 *4 *5))) (-14 *4 (-621 (-1142)))
+ (-4 *5 (-444))
+ (-5 *2
+ (-2 (|:| |gblist| (-621 (-241 *4 *5)))
+ (|:| |gvlist| (-621 (-549)))))
+ (-5 *1 (-609 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-400 (-549)))
+ (-5 *1 (-426 *4 *3)) (-4 *3 (-423 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-592 *3)) (-4 *3 (-423 *5))
+ (-4 *5 (-13 (-823) (-541) (-1009 (-549))))
+ (-5 *2 (-1138 (-400 (-549)))) (-5 *1 (-426 *5 *3)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1138 *1)) (-5 *3 (-1142)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1138 *1)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-923 *1)) (-4 *1 (-27))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1142)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-823) (-541)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-823) (-541))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1142))))
+ (-4 *6 (-769)) (-5 *2 (-621 (-621 (-549))))
+ (-5 *1 (-895 *4 *5 *6 *7)) (-5 *3 (-549)) (-4 *7 (-920 *4 *6 *5)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549)))))
+ (-4 *3 (-1201 *4)) (-5 *1 (-785 *4 *3 *2 *5)) (-4 *2 (-632 *3))
+ (-4 *5 (-632 (-400 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-400 *5))
+ (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *5 (-1201 *4))
+ (-5 *1 (-785 *4 *5 *2 *6)) (-4 *2 (-632 *5)) (-4 *6 (-632 *3)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1201 *2)) (-4 *2 (-1018)) (-4 *2 (-541)))))
(((*1 *1 *1) (-4 *1 (-94)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *1 *1)
- (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143)))
- (-14 *3 (-621 (-1143))) (-4 *4 (-380))))
+ (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142)))
+ (-14 *3 (-621 (-1142))) (-4 *4 (-380))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-1018)) (-4 *5 (-769)) (-4 *3 (-823))
+ (-5 *2 (-2 (|:| -1569 *1) (|:| |gap| (-747)) (|:| -1809 *1)))
+ (-4 *1 (-1032 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *2 (-2 (|:| -1569 *1) (|:| |gap| (-747)) (|:| -1809 *1)))
+ (-4 *1 (-1032 *3 *4 *5)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1981 *4))))
- (-5 *1 (-752 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+ (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4)))
+ (-5 *1 (-682 *3 *4)) (-4 *3 (-1179)) (-4 *4 (-1179)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1179)) (-5 *1 (-368 *4 *2))
+ (-4 *2 (-13 (-366 *4) (-10 -7 (-6 -4337)))))))
(((*1 *2 *1)
- (-12 (|has| *1 (-6 -4337)) (-4 *1 (-481 *3)) (-4 *3 (-1180))
- (-5 *2 (-621 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-621 *3)) (-5 *1 (-714 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-356)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3))
- (-5 *1 (-512 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-936))) (-5 *1 (-108)))))
+ (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
- (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *3))
- (-5 *1 (-948 *4 *5 *6 *3)) (-4 *3 (-1032 *4 *5 *6))))
+ (-12 (-5 *2 (-621 (-923 *3))) (-4 *3 (-444)) (-5 *1 (-353 *3 *4))
+ (-14 *4 (-621 (-1142)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-920 *3 *4 *5)) (-4 *3 (-444))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-442 *3 *4 *5 *6))))
((*1 *2 *2 *3)
- (-12 (-5 *2 (-621 *3)) (-4 *3 (-1032 *4 *5 *6)) (-4 *4 (-541))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *1 (-948 *4 *5 *6 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
- (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 (-621 *7) (-621 *7))) (-5 *2 (-621 *7))
- (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-541)) (-4 *5 (-769))
- (-4 *6 (-823)) (-5 *1 (-948 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-1180)) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *1 *1) (-4 *1 (-1111))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
- (-4 *4 (-769)) (-4 *5 (-823)) (-5 *1 (-948 *3 *4 *5 *6)))))
+ (-12 (-5 *2 (-621 *7)) (-5 *3 (-1124)) (-4 *7 (-920 *4 *5 *6))
+ (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-5 *1 (-442 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-621 *7)) (-5 *3 (-1124)) (-4 *7 (-920 *4 *5 *6))
+ (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-5 *1 (-442 *4 *5 *6 *7))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-356)) (-4 *3 (-769)) (-4 *4 (-823))
+ (-5 *1 (-495 *2 *3 *4 *5)) (-4 *5 (-920 *2 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-621 (-756 *3 (-836 *4)))) (-4 *3 (-444))
+ (-14 *4 (-621 (-1142))) (-5 *1 (-606 *3 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-914 (-219)))) (-5 *1 (-1226)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-316 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-130))
+ (-4 *3 (-768)))))
(((*1 *1 *1)
- (-12 (-4 *2 (-300)) (-4 *3 (-963 *2)) (-4 *4 (-1202 *3))
- (-5 *1 (-406 *2 *3 *4 *5)) (-4 *5 (-13 (-402 *3 *4) (-1009 *3))))))
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-472)))))
+(((*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-96)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3))))
- ((*1 *1 *1) (-4 *1 (-1168))))
-(((*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-1180)) (-5 *2 (-112)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3))))
+ ((*1 *1 *1) (-4 *1 (-1167))))
+(((*1 *2)
+ (|partial| -12 (-4 *4 (-1183)) (-4 *5 (-1201 (-400 *2)))
+ (-4 *2 (-1201 *4)) (-5 *1 (-334 *3 *4 *2 *5))
+ (-4 *3 (-335 *4 *2 *5))))
+ ((*1 *2)
+ (|partial| -12 (-4 *1 (-335 *3 *2 *4)) (-4 *3 (-1183))
+ (-4 *4 (-1201 (-400 *2))) (-4 *2 (-1201 *3)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372)))
- (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1142))))
- (-5 *1 (-1142)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-592 *5)) (-4 *5 (-423 *4)) (-4 *4 (-1009 (-549)))
- (-4 *4 (-13 (-823) (-541))) (-5 *2 (-1139 *5)) (-5 *1 (-32 *4 *5))))
+ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372)))
+ (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1141))))
+ (-5 *1 (-1141)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-541))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-112)) (-5 *1 (-114)))))
+(((*1 *1) (-5 *1 (-1048))))
+(((*1 *1) (-4 *1 (-342)))
((*1 *2 *3)
- (-12 (-5 *3 (-592 *1)) (-4 *1 (-1018)) (-4 *1 (-295))
- (-5 *2 (-1139 *1)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-121 *3)))))
+ (-12 (-5 *3 (-621 *5)) (-4 *5 (-423 *4))
+ (-4 *4 (-13 (-541) (-823) (-145)))
+ (-5 *2
+ (-2 (|:| |primelt| *5) (|:| |poly| (-621 (-1138 *5)))
+ (|:| |prim| (-1138 *5))))
+ (-5 *1 (-425 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-541) (-823) (-145)))
+ (-5 *2
+ (-2 (|:| |primelt| *3) (|:| |pol1| (-1138 *3))
+ (|:| |pol2| (-1138 *3)) (|:| |prim| (-1138 *3))))
+ (-5 *1 (-425 *4 *3)) (-4 *3 (-27)) (-4 *3 (-423 *4))))
+ ((*1 *2 *3 *4 *3 *4)
+ (-12 (-5 *3 (-923 *5)) (-5 *4 (-1142)) (-4 *5 (-13 (-356) (-145)))
+ (-5 *2
+ (-2 (|:| |coef1| (-549)) (|:| |coef2| (-549))
+ (|:| |prim| (-1138 *5))))
+ (-5 *1 (-931 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-923 *5))) (-5 *4 (-621 (-1142)))
+ (-4 *5 (-13 (-356) (-145)))
+ (-5 *2
+ (-2 (|:| -1569 (-621 (-549))) (|:| |poly| (-621 (-1138 *5)))
+ (|:| |prim| (-1138 *5))))
+ (-5 *1 (-931 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-621 (-923 *6))) (-5 *4 (-621 (-1142))) (-5 *5 (-1142))
+ (-4 *6 (-13 (-356) (-145)))
+ (-5 *2
+ (-2 (|:| -1569 (-621 (-549))) (|:| |poly| (-621 (-1138 *6)))
+ (|:| |prim| (-1138 *6))))
+ (-5 *1 (-931 *6)))))
+(((*1 *2 *3 *1 *4)
+ (-12 (-5 *3 (-1106 *5 *6)) (-5 *4 (-1 (-112) *6 *6))
+ (-4 *5 (-13 (-1066) (-34))) (-4 *6 (-13 (-1066) (-34)))
+ (-5 *2 (-112)) (-5 *1 (-1107 *5 *6)))))
(((*1 *2 *3 *1)
- (-12 (-4 *4 (-356)) (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
- (-5 *1 (-495 *4 *5 *6 *3)) (-4 *3 (-920 *4 *5 *6)))))
-(((*1 *1) (-5 *1 (-460))))
-(((*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-1180)) (-5 *2 (-747)))))
-(((*1 *1) (-12 (-4 *1 (-322 *2)) (-4 *2 (-361)) (-4 *2 (-356)))))
+ (|partial| -12 (-5 *3 (-863 *4)) (-4 *4 (-1066)) (-4 *2 (-1066))
+ (-5 *1 (-860 *4 *2)))))
(((*1 *2 *1)
- (-12
- (-5 *2
- (-621
- (-621
- (-3 (|:| -2481 (-1143))
- (|:| -3280 (-621 (-3 (|:| S (-1143)) (|:| P (-923 (-549))))))))))
- (-5 *1 (-1147)))))
+ (-12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-621 *1))
+ (-4 *1 (-1032 *3 *4 *5)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-850 (-1 (-219) (-219)))) (-5 *4 (-1061 (-372)))
- (-5 *5 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-248))))
+ (-12 (-5 *3 (-850 (-1 (-219) (-219)))) (-5 *4 (-1060 (-372)))
+ (-5 *5 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-248))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-850 (-1 (-219) (-219)))) (-5 *4 (-1061 (-372)))
- (-5 *2 (-1100 (-219))) (-5 *1 (-248))))
+ (-12 (-5 *3 (-850 (-1 (-219) (-219)))) (-5 *4 (-1060 (-372)))
+ (-5 *2 (-1099 (-219))) (-5 *1 (-248))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 (-914 (-219)) (-219))) (-5 *4 (-1061 (-372)))
- (-5 *5 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-248))))
+ (-12 (-5 *3 (-1 (-914 (-219)) (-219))) (-5 *4 (-1060 (-372)))
+ (-5 *5 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-248))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-914 (-219)) (-219))) (-5 *4 (-1061 (-372)))
- (-5 *2 (-1100 (-219))) (-5 *1 (-248))))
+ (-12 (-5 *3 (-1 (-914 (-219)) (-219))) (-5 *4 (-1060 (-372)))
+ (-5 *2 (-1099 (-219))) (-5 *1 (-248))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1061 (-372)))
- (-5 *5 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-248))))
+ (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1060 (-372)))
+ (-5 *5 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-248))))
((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1061 (-372)))
- (-5 *2 (-1100 (-219))) (-5 *1 (-248))))
+ (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1060 (-372)))
+ (-5 *2 (-1099 (-219))) (-5 *1 (-248))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1061 (-372)))
- (-5 *5 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-248))))
+ (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1060 (-372)))
+ (-5 *5 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-248))))
((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1061 (-372)))
- (-5 *2 (-1100 (-219))) (-5 *1 (-248))))
+ (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1060 (-372)))
+ (-5 *2 (-1099 (-219))) (-5 *1 (-248))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-853 (-1 (-219) (-219) (-219)))) (-5 *4 (-1061 (-372)))
- (-5 *5 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-248))))
+ (-12 (-5 *3 (-853 (-1 (-219) (-219) (-219)))) (-5 *4 (-1060 (-372)))
+ (-5 *5 (-621 (-256))) (-5 *2 (-1099 (-219))) (-5 *1 (-248))))
((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-853 (-1 (-219) (-219) (-219)))) (-5 *4 (-1061 (-372)))
- (-5 *2 (-1100 (-219))) (-5 *1 (-248))))
+ (-12 (-5 *3 (-853 (-1 (-219) (-219) (-219)))) (-5 *4 (-1060 (-372)))
+ (-5 *2 (-1099 (-219))) (-5 *1 (-248))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-850 *6)) (-5 *4 (-1059 (-372))) (-5 *5 (-621 (-256)))
- (-4 *6 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1100 (-219)))
+ (-12 (-5 *3 (-850 *6)) (-5 *4 (-1058 (-372))) (-5 *5 (-621 (-256)))
+ (-4 *6 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1099 (-219)))
(-5 *1 (-252 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-850 *5)) (-5 *4 (-1059 (-372)))
- (-4 *5 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1100 (-219)))
+ (-12 (-5 *3 (-850 *5)) (-5 *4 (-1058 (-372)))
+ (-4 *5 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1099 (-219)))
(-5 *1 (-252 *5))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *4 (-1059 (-372))) (-5 *5 (-621 (-256)))
- (-5 *2 (-1100 (-219))) (-5 *1 (-252 *3))
- (-4 *3 (-13 (-594 (-525)) (-1067)))))
+ (-12 (-5 *4 (-1058 (-372))) (-5 *5 (-621 (-256)))
+ (-5 *2 (-1099 (-219))) (-5 *1 (-252 *3))
+ (-4 *3 (-13 (-594 (-525)) (-1066)))))
((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1059 (-372))) (-5 *2 (-1100 (-219))) (-5 *1 (-252 *3))
- (-4 *3 (-13 (-594 (-525)) (-1067)))))
+ (-12 (-5 *4 (-1058 (-372))) (-5 *2 (-1099 (-219))) (-5 *1 (-252 *3))
+ (-4 *3 (-13 (-594 (-525)) (-1066)))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-853 *6)) (-5 *4 (-1059 (-372))) (-5 *5 (-621 (-256)))
- (-4 *6 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1100 (-219)))
+ (-12 (-5 *3 (-853 *6)) (-5 *4 (-1058 (-372))) (-5 *5 (-621 (-256)))
+ (-4 *6 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1099 (-219)))
(-5 *1 (-252 *6))))
((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-853 *5)) (-5 *4 (-1059 (-372)))
- (-4 *5 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1100 (-219)))
+ (-12 (-5 *3 (-853 *5)) (-5 *4 (-1058 (-372)))
+ (-4 *5 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1099 (-219)))
(-5 *1 (-252 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1143)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-678 *4 *5 *6 *7))
- (-4 *4 (-594 (-525))) (-4 *5 (-1180)) (-4 *6 (-1180))
- (-4 *7 (-1180)))))
-(((*1 *2 *2) (-12 (-5 *2 (-309 (-219))) (-5 *1 (-260)))))
+(((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-360 *2)) (-4 *2 (-170)) (-4 *2 (-541))))
+ ((*1 *1 *1) (|partial| -4 *1 (-699))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3))))
- ((*1 *1 *1) (-4 *1 (-1168))))
-(((*1 *1 *1) (-4 *1 (-840 *2))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1209 *3 *2)) (-4 *3 (-1018))
- (-4 *2 (-1186 *3)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3))))
+ ((*1 *1 *1) (-4 *1 (-1167))))
+(((*1 *2 *1) (-12 (-5 *1 (-997 *2)) (-4 *2 (-1179)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372)))
- (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1142))))
- (-5 *1 (-1142)))))
-(((*1 *2 *1 *3 *3)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-584 *3 *4)) (-4 *3 (-1067))
- (-4 *4 (-1180)) (-5 *2 (-1231)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-287 (-400 (-923 *5)))) (-5 *4 (-1143))
- (-4 *5 (-13 (-300) (-823) (-145)))
- (-5 *2 (-1132 (-621 (-309 *5)) (-621 (-287 (-309 *5)))))
- (-5 *1 (-1096 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-400 (-923 *5))) (-5 *4 (-1143))
- (-4 *5 (-13 (-300) (-823) (-145)))
- (-5 *2 (-1132 (-621 (-309 *5)) (-621 (-287 (-309 *5)))))
- (-5 *1 (-1096 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-805)) (-5 *3 (-1125)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *2 (-1067)) (-5 *1 (-1157 *3 *2)) (-4 *3 (-1067)))))
+ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372)))
+ (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1141))))
+ (-5 *1 (-1141)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |pde| (-621 (-309 (-219))))
- (|:| |constraints|
- (-621
- (-2 (|:| |start| (-219)) (|:| |finish| (-219))
- (|:| |grid| (-747)) (|:| |boundaryType| (-549))
- (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219))))))
- (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125))
- (|:| |tol| (-219))))
- (-5 *2 (-112)) (-5 *1 (-204)))))
+ (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300))
+ (-5 *2 (-621 (-747))) (-5 *1 (-754 *3 *4 *5 *6 *7))
+ (-4 *3 (-1201 *6)) (-4 *7 (-920 *6 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-747)) (-5 *4 (-549)) (-5 *1 (-437 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-621 (-400 *6))) (-5 *3 (-400 *6))
+ (-4 *6 (-1201 *5)) (-4 *5 (-13 (-356) (-145) (-1009 (-549))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-553 *5 *6)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1142)) (-4 *5 (-594 (-863 (-549))))
+ (-4 *5 (-857 (-549)))
+ (-4 *5 (-13 (-823) (-1009 (-549)) (-444) (-617 (-549))))
+ (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
+ (-5 *1 (-552 *5 *3)) (-4 *3 (-607))
+ (-4 *3 (-13 (-27) (-1164) (-423 *5)))))
+ ((*1 *2 *2 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-1142)) (-5 *4 (-816 *2)) (-4 *2 (-1105))
+ (-4 *2 (-13 (-27) (-1164) (-423 *5)))
+ (-4 *5 (-594 (-863 (-549)))) (-4 *5 (-857 (-549)))
+ (-4 *5 (-13 (-823) (-1009 (-549)) (-444) (-617 (-549))))
+ (-5 *1 (-552 *5 *2)))))
(((*1 *2 *1)
- (-12 (-4 *2 (-920 *3 *5 *4)) (-5 *1 (-958 *3 *4 *5 *2))
- (-4 *3 (-444)) (-4 *4 (-823)) (-4 *5 (-769)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1071)) (-5 *1 (-52)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *2 *3)
- (-12 (|has| *2 (-6 (-4339 "*"))) (-4 *5 (-366 *2)) (-4 *6 (-366 *2))
- (-4 *2 (-1018)) (-5 *1 (-103 *2 *3 *4 *5 *6)) (-4 *3 (-1202 *2))
- (-4 *4 (-663 *2 *5 *6)))))
+ (|partial| -12 (-4 *1 (-164 *3)) (-4 *3 (-170)) (-4 *3 (-534))
+ (-5 *2 (-400 (-549)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-400 (-549))) (-5 *1 (-411 *3)) (-4 *3 (-534))
+ (-4 *3 (-541))))
+ ((*1 *2 *1) (|partial| -12 (-4 *1 (-534)) (-5 *2 (-400 (-549)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-773 *3)) (-4 *3 (-170)) (-4 *3 (-534))
+ (-5 *2 (-400 (-549)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-400 (-549))) (-5 *1 (-809 *3)) (-4 *3 (-534))
+ (-4 *3 (-1066))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-400 (-549))) (-5 *1 (-816 *3)) (-4 *3 (-534))
+ (-4 *3 (-1066))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-968 *3)) (-4 *3 (-170)) (-4 *3 (-534))
+ (-5 *2 (-400 (-549)))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-400 (-549))) (-5 *1 (-979 *3))
+ (-4 *3 (-1009 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-621 (-1138 *7))) (-5 *3 (-1138 *7))
+ (-4 *7 (-920 *4 *5 *6)) (-4 *4 (-880)) (-4 *5 (-769))
+ (-4 *6 (-823)) (-5 *1 (-877 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-621 (-1138 *5))) (-5 *3 (-1138 *5))
+ (-4 *5 (-1201 *4)) (-4 *4 (-880)) (-5 *1 (-878 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1070)) (-5 *1 (-52)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1147)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-621 *10)) (-5 *5 (-112)) (-4 *10 (-1038 *6 *7 *8 *9))
+ (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
+ (-4 *9 (-1032 *6 *7 *8))
+ (-5 *2
+ (-621
+ (-2 (|:| -2649 (-621 *9)) (|:| -1979 *10) (|:| |ineq| (-621 *9)))))
+ (-5 *1 (-959 *6 *7 *8 *9 *10)) (-5 *3 (-621 *9))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-621 *10)) (-5 *5 (-112)) (-4 *10 (-1038 *6 *7 *8 *9))
+ (-4 *6 (-444)) (-4 *7 (-769)) (-4 *8 (-823))
+ (-4 *9 (-1032 *6 *7 *8))
+ (-5 *2
+ (-621
+ (-2 (|:| -2649 (-621 *9)) (|:| -1979 *10) (|:| |ineq| (-621 *9)))))
+ (-5 *1 (-1073 *6 *7 *8 *9 *10)) (-5 *3 (-621 *9)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3))))
- ((*1 *1 *1) (-4 *1 (-1168))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3))))
+ ((*1 *1 *1) (-4 *1 (-1167))))
(((*1 *1 *1) (-5 *1 (-834)))
((*1 *2 *1)
- (-12 (-4 *1 (-1070 *2 *3 *4 *5 *6)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *2 (-1067))))
- ((*1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-1124))))
- ((*1 *2 *1) (-12 (-5 *2 (-1125)) (-5 *1 (-1143)))))
-(((*1 *1 *1) (-5 *1 (-1142)))
+ (-12 (-4 *1 (-1069 *2 *3 *4 *5 *6)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *2 (-1066))))
+ ((*1 *1 *2) (-12 (-5 *2 (-549)) (-4 *1 (-1123))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1124)) (-5 *1 (-1142)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-983)) (-5 *2 (-834)))))
+(((*1 *1 *1) (-5 *1 (-1141)))
((*1 *1 *2)
(-12
(-5 *2
- (-3 (|:| I (-309 (-549))) (|:| -1422 (-309 (-372)))
- (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1142))))
- (-5 *1 (-1142)))))
-(((*1 *2 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-728)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-621 *3)) (-4 *3 (-1202 *5)) (-4 *5 (-300))
- (-5 *2 (-747)) (-5 *1 (-447 *5 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-235)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *2 (-823))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-769)) (-4 *5 (-1018)) (-4 *6 (-920 *5 *4 *2))
- (-4 *2 (-823)) (-5 *1 (-921 *4 *2 *5 *6 *3))
- (-4 *3
- (-13 (-356)
- (-10 -8 (-15 -3846 ($ *6)) (-15 -1394 (*6 $))
- (-15 -1403 (*6 $)))))))
+ (-3 (|:| I (-309 (-549))) (|:| -1421 (-309 (-372)))
+ (|:| CF (-309 (-167 (-372)))) (|:| |switch| (-1141))))
+ (-5 *1 (-1141)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-716 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-114)) (-5 *1 (-113 *3)) (-4 *3 (-823)) (-4 *3 (-1066)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| -3947 (-372)) (|:| -2479 (-1124))
+ (|:| |explanations| (-621 (-1124)))))
+ (-5 *2 (-1006)) (-5 *1 (-298))))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-400 (-923 *4))) (-4 *4 (-541))
- (-5 *2 (-1143)) (-5 *1 (-1014 *4)))))
-(((*1 *2)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-5 *2 (-665 (-400 *4))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-621 *1)) (-5 *3 (-621 *7)) (-4 *1 (-1038 *4 *5 *6 *7))
- (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-621 *1))
- (-4 *1 (-1038 *4 *5 *6 *7))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-621 *1)) (-4 *1 (-1038 *4 *5 *6 *3)) (-4 *4 (-444))
- (-4 *5 (-769)) (-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-621 *1))
- (-4 *1 (-1038 *4 *5 *6 *3)))))
+ (-12
+ (-5 *3
+ (-2 (|:| -3947 (-372)) (|:| -2479 (-1124))
+ (|:| |explanations| (-621 (-1124))) (|:| |extra| (-1006))))
+ (-5 *2 (-1006)) (-5 *1 (-298)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-114))))
+ ((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-114))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-246 *4 *3 *5 *6)) (-4 *4 (-1018)) (-4 *3 (-823))
+ (-4 *5 (-259 *3)) (-4 *6 (-769)) (-5 *2 (-747))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-246 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-823))
+ (-4 *5 (-259 *4)) (-4 *6 (-769)) (-5 *2 (-747))))
+ ((*1 *2 *1) (-12 (-4 *1 (-259 *3)) (-4 *3 (-823)) (-5 *2 (-747)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-874 *3)) (-4 *3 (-1066)) (-5 *2 (-1068 *3))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *4 (-1066)) (-5 *2 (-1068 (-621 *4))) (-5 *1 (-875 *4))
+ (-5 *3 (-621 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *4 (-1066)) (-5 *2 (-1068 (-1068 *4))) (-5 *1 (-875 *4))
+ (-5 *3 (-1068 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *2 (-1068 *3)) (-5 *1 (-875 *3)) (-4 *3 (-1066)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-814)) (-5 *4 (-1030)) (-5 *2 (-1006)) (-5 *1 (-813))))
((*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-1006)) (-5 *1 (-813))))
@@ -16063,514 +16358,442 @@
((*1 *2 *3 *4)
(-12 (-5 *3 (-621 (-309 (-372)))) (-5 *4 (-621 (-372)))
(-5 *2 (-1006)) (-5 *1 (-813)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *9)) (-4 *8 (-1032 *5 *6 *7))
- (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769))
- (-4 *7 (-823)) (-5 *2 (-747)) (-5 *1 (-1036 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *9)) (-4 *8 (-1032 *5 *6 *7))
- (-4 *9 (-1076 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769))
- (-4 *7 (-823)) (-5 *2 (-747)) (-5 *1 (-1112 *5 *6 *7 *8 *9)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-3 (-112) (-621 *1)))
- (-4 *1 (-1038 *4 *5 *6 *3)))))
-(((*1 *2 *2) (-12 (-5 *1 (-932 *2)) (-4 *2 (-534)))))
+(((*1 *2 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227))))
+ ((*1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-1227)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1138 *3)) (-4 *3 (-342)) (-5 *1 (-350 *3)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1064 *3)) (-4 *3 (-1066)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-107))))
+ ((*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-211))))
+ ((*1 *2 *1) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-479))))
+ ((*1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)) (-4 *2 (-300))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-400 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549))))
+ ((*1 *1 *1) (-4 *1 (-1027))))
+(((*1 *1) (-5 *1 (-1226))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *1 *1)
- (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143)))
- (-14 *3 (-621 (-1143))) (-4 *4 (-380))))
+ (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142)))
+ (-14 *3 (-621 (-1142))) (-4 *4 (-380))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3))))
- ((*1 *1 *1) (-4 *1 (-1168))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549)))))
- (-4 *5 (-1202 *4)) (-5 *2 (-621 (-2 (|:| -2597 *5) (|:| -2391 *5))))
- (-5 *1 (-783 *4 *5 *3 *6)) (-4 *3 (-632 *5))
- (-4 *6 (-632 (-400 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549)))))
- (-4 *4 (-1202 *5)) (-5 *2 (-621 (-2 (|:| -2597 *4) (|:| -2391 *4))))
- (-5 *1 (-783 *5 *4 *3 *6)) (-4 *3 (-632 *4))
- (-4 *6 (-632 (-400 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549)))))
- (-4 *5 (-1202 *4)) (-5 *2 (-621 (-2 (|:| -2597 *5) (|:| -2391 *5))))
- (-5 *1 (-783 *4 *5 *6 *3)) (-4 *6 (-632 *5))
- (-4 *3 (-632 (-400 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549)))))
- (-4 *4 (-1202 *5)) (-5 *2 (-621 (-2 (|:| -2597 *4) (|:| -2391 *4))))
- (-5 *1 (-783 *5 *4 *6 *3)) (-4 *6 (-632 *4))
- (-4 *3 (-632 (-400 *4))))))
-(((*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7)
- (-12 (-5 *4 (-549)) (-5 *5 (-665 (-219)))
- (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-85 FCN))))
- (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-87 OUTPUT))))
- (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-726)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-747)) (-4 *1 (-319 *3 *4)) (-4 *3 (-1018))
- (-4 *4 (-768)) (-4 *3 (-170)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-747)) (-5 *2 (-112))))
- ((*1 *2 *3 *3)
- (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1181 *3)) (-4 *3 (-1067))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1067)) (-5 *2 (-112))
- (-5 *1 (-1181 *3)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1145 (-400 (-549)))) (-5 *1 (-184)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *2 (-621 *1)) (-4 *1 (-1032 *3 *4 *5)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4338)) (-4 *1 (-238 *2)) (-4 *2 (-1180)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3))))
+ ((*1 *1 *1) (-4 *1 (-1167))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2 (-621 (-2 (|:| |val| (-112)) (|:| -1981 *4))))
- (-5 *1 (-1075 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
-(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-1143)) (-4 *4 (-1018)) (-4 *4 (-823))
- (-5 *2 (-2 (|:| |var| (-592 *1)) (|:| -3731 (-549))))
- (-4 *1 (-423 *4))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-114)) (-4 *4 (-1018)) (-4 *4 (-823))
- (-5 *2 (-2 (|:| |var| (-592 *1)) (|:| -3731 (-549))))
- (-4 *1 (-423 *4))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1079)) (-4 *3 (-823))
- (-5 *2 (-2 (|:| |var| (-592 *1)) (|:| -3731 (-549))))
+ (-12 (-4 *5 (-356))
+ (-5 *2
+ (-2 (|:| A (-665 *5))
+ (|:| |eqs|
+ (-621
+ (-2 (|:| C (-665 *5)) (|:| |g| (-1225 *5)) (|:| -2649 *6)
+ (|:| |rh| *5))))))
+ (-5 *1 (-789 *5 *6)) (-5 *3 (-665 *5)) (-5 *4 (-1225 *5))
+ (-4 *6 (-632 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-356)) (-4 *6 (-632 *5))
+ (-5 *2 (-2 (|:| -3697 (-665 *6)) (|:| |vec| (-1225 *5))))
+ (-5 *1 (-789 *5 *6)) (-5 *3 (-665 *6)) (-5 *4 (-1225 *5)))))
+(((*1 *2 *3 *4 *4 *4 *5 *5 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-728)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1201 *2)) (-4 *2 (-1018)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-621 *1)) (|has| *1 (-6 -4337)) (-4 *1 (-981 *3))
+ (-4 *3 (-1179)))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541))
+ (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))))
+(((*1 *2 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-724)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-25)) (-4 *3 (-823)) (-5 *2 (-621 *1))
(-4 *1 (-423 *3))))
((*1 *2 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |val| (-863 *3)) (|:| -3731 (-747))))
- (-5 *1 (-863 *3)) (-4 *3 (-1067))))
+ (|partial| -12 (-5 *2 (-621 (-863 *3))) (-5 *1 (-863 *3))
+ (-4 *3 (-1066))))
((*1 *2 *1)
- (|partial| -12 (-4 *1 (-920 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-823)) (-5 *2 (-2 (|:| |var| *5) (|:| -3731 (-747))))))
+ (|partial| -12 (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *2 (-621 *1)) (-4 *1 (-920 *3 *4 *5))))
((*1 *2 *3)
(|partial| -12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018))
- (-4 *7 (-920 *6 *4 *5))
- (-5 *2 (-2 (|:| |var| *5) (|:| -3731 (-549))))
+ (-4 *7 (-920 *6 *4 *5)) (-5 *2 (-621 *3))
(-5 *1 (-921 *4 *5 *6 *7 *3))
(-4 *3
(-13 (-356)
- (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $))
- (-15 -1403 (*7 $))))))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *3 (-112)) (-5 *1 (-110))))
- ((*1 *2 *2) (-12 (-5 *2 (-892)) (|has| *1 (-6 -4328)) (-4 *1 (-397))))
- ((*1 *2) (-12 (-4 *1 (-397)) (-5 *2 (-892)))))
+ (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $))
+ (-15 -1404 (*7 $))))))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-4 *3 (-1066))
+ (-4 *4 (-1066)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *1 *2) (-12 (-5 *1 (-324 *2)) (-4 *2 (-823))))
((*1 *1 *1)
- (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143)))
- (-14 *3 (-621 (-1143))) (-4 *4 (-380))))
+ (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142)))
+ (-14 *3 (-621 (-1142))) (-4 *4 (-380))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3))))
- ((*1 *1 *1) (-4 *1 (-1168))))
-(((*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1231)) (-5 *1 (-372))))
- ((*1 *2) (-12 (-5 *2 (-1231)) (-5 *1 (-372)))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3))))
+ ((*1 *1 *1) (-4 *1 (-1167))))
+(((*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4))))
- (-5 *1 (-1108 *3 *4)) (-4 *3 (-13 (-1067) (-34)))
- (-4 *4 (-13 (-1067) (-34))))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-541)) (-5 *2 (-112)))))
-(((*1 *2 *3)
+ (-12 (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1979 *4))))
+ (-5 *1 (-1107 *3 *4)) (-4 *3 (-13 (-1066) (-34)))
+ (-4 *4 (-13 (-1066) (-34))))))
+(((*1 *2 *3) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-546)) (-5 *3 (-549)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-108)) (-5 *1 (-173)))))
+(((*1 *2 *2 *2)
(-12
- (-5 *3
- (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
- (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
- (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
- (|:| |abserr| (-219)) (|:| |relerr| (-219))))
(-5 *2
- (-2 (|:| |stiffnessFactor| (-372)) (|:| |stabilityFactor| (-372))))
- (-5 *1 (-199)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-400 (-549))) (-4 *1 (-539 *3))
- (-4 *3 (-13 (-397) (-1165)))))
- ((*1 *1 *2) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1165)))))
- ((*1 *1 *2 *2) (-12 (-4 *1 (-539 *2)) (-4 *2 (-13 (-397) (-1165))))))
+ (-2 (|:| -2619 (-665 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-665 *3))))
+ (-4 *3 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $)))))
+ (-4 *4 (-1201 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-411 (-1139 (-549)))) (-5 *1 (-185)) (-5 *3 (-549)))))
-(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-304))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-747)) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892))
- (-4 *4 (-1018)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-621 *4)) (-4 *4 (-356)) (-5 *2 (-1226 *4))
- (-5 *1 (-790 *4 *3)) (-4 *3 (-632 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-773 *2)) (-4 *2 (-170)))))
-(((*1 *2 *3 *2)
- (-12
- (-5 *2
- (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219))
- (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219))
- (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))
- (-5 *3 (-621 (-256))) (-5 *1 (-254))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219))
- (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219))
- (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))
- (-5 *1 (-256))))
- ((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228))))
- ((*1 *2 *1 *3 *3 *4 *4 *4)
- (-12 (-5 *3 (-549)) (-5 *4 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228))))
- ((*1 *2 *1 *3)
(-12
(-5 *3
- (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219))
- (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219))
- (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))
- (-5 *2 (-1231)) (-5 *1 (-1228))))
+ (-2 (|:| |stiffness| (-372)) (|:| |stability| (-372))
+ (|:| |expense| (-372)) (|:| |accuracy| (-372))
+ (|:| |intermediateResults| (-372))))
+ (-5 *2 (-1006)) (-5 *1 (-298)))))
+(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-304))))
((*1 *2 *1)
- (-12
+ (-12 (-5 *2 (-747)) (-5 *1 (-1130 *3 *4)) (-14 *3 (-892))
+ (-4 *4 (-1018)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1124)) (-5 *2 (-52)) (-5 *1 (-805)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
(-5 *2
- (-2 (|:| |theta| (-219)) (|:| |phi| (-219)) (|:| -2945 (-219))
- (|:| |scaleX| (-219)) (|:| |scaleY| (-219)) (|:| |scaleZ| (-219))
- (|:| |deltaX| (-219)) (|:| |deltaY| (-219))))
- (-5 *1 (-1228))))
- ((*1 *2 *1 *3 *3 *3 *3 *3)
- (-12 (-5 *3 (-372)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
+ (-2 (|:| -4160 *4) (|:| -3040 *4) (|:| |totalpts| (-549))
+ (|:| |success| (-112))))
+ (-5 *1 (-765)) (-5 *5 (-549)))))
+(((*1 *1 *1) (-5 *1 (-1030))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 (-219) (-219))) (-5 *4 (-1061 (-372)))
- (-5 *5 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-248))))
+ (-12 (-5 *3 (-1 (-219) (-219))) (-5 *4 (-1060 (-372)))
+ (-5 *5 (-621 (-256))) (-5 *2 (-1226)) (-5 *1 (-248))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-219) (-219))) (-5 *4 (-1061 (-372)))
- (-5 *2 (-1227)) (-5 *1 (-248))))
+ (-12 (-5 *3 (-1 (-219) (-219))) (-5 *4 (-1060 (-372)))
+ (-5 *2 (-1226)) (-5 *1 (-248))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-848 (-1 (-219) (-219)))) (-5 *4 (-1061 (-372)))
- (-5 *5 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-248))))
+ (-12 (-5 *3 (-848 (-1 (-219) (-219)))) (-5 *4 (-1060 (-372)))
+ (-5 *5 (-621 (-256))) (-5 *2 (-1226)) (-5 *1 (-248))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-848 (-1 (-219) (-219)))) (-5 *4 (-1061 (-372)))
- (-5 *2 (-1227)) (-5 *1 (-248))))
+ (-12 (-5 *3 (-848 (-1 (-219) (-219)))) (-5 *4 (-1060 (-372)))
+ (-5 *2 (-1226)) (-5 *1 (-248))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-850 (-1 (-219) (-219)))) (-5 *4 (-1061 (-372)))
- (-5 *5 (-621 (-256))) (-5 *2 (-1228)) (-5 *1 (-248))))
+ (-12 (-5 *3 (-850 (-1 (-219) (-219)))) (-5 *4 (-1060 (-372)))
+ (-5 *5 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-248))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-850 (-1 (-219) (-219)))) (-5 *4 (-1061 (-372)))
- (-5 *2 (-1228)) (-5 *1 (-248))))
+ (-12 (-5 *3 (-850 (-1 (-219) (-219)))) (-5 *4 (-1060 (-372)))
+ (-5 *2 (-1227)) (-5 *1 (-248))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 (-914 (-219)) (-219))) (-5 *4 (-1061 (-372)))
- (-5 *5 (-621 (-256))) (-5 *2 (-1228)) (-5 *1 (-248))))
+ (-12 (-5 *3 (-1 (-914 (-219)) (-219))) (-5 *4 (-1060 (-372)))
+ (-5 *5 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-248))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-914 (-219)) (-219))) (-5 *4 (-1061 (-372)))
- (-5 *2 (-1228)) (-5 *1 (-248))))
+ (-12 (-5 *3 (-1 (-914 (-219)) (-219))) (-5 *4 (-1060 (-372)))
+ (-5 *2 (-1227)) (-5 *1 (-248))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1061 (-372)))
- (-5 *5 (-621 (-256))) (-5 *2 (-1228)) (-5 *1 (-248))))
+ (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1060 (-372)))
+ (-5 *5 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-248))))
((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1061 (-372)))
- (-5 *2 (-1228)) (-5 *1 (-248))))
+ (-12 (-5 *3 (-1 (-219) (-219) (-219))) (-5 *4 (-1060 (-372)))
+ (-5 *2 (-1227)) (-5 *1 (-248))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1061 (-372)))
- (-5 *5 (-621 (-256))) (-5 *2 (-1228)) (-5 *1 (-248))))
+ (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1060 (-372)))
+ (-5 *5 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-248))))
((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1061 (-372)))
- (-5 *2 (-1228)) (-5 *1 (-248))))
+ (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1060 (-372)))
+ (-5 *2 (-1227)) (-5 *1 (-248))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-853 (-1 (-219) (-219) (-219)))) (-5 *4 (-1061 (-372)))
- (-5 *5 (-621 (-256))) (-5 *2 (-1228)) (-5 *1 (-248))))
+ (-12 (-5 *3 (-853 (-1 (-219) (-219) (-219)))) (-5 *4 (-1060 (-372)))
+ (-5 *5 (-621 (-256))) (-5 *2 (-1227)) (-5 *1 (-248))))
((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-853 (-1 (-219) (-219) (-219)))) (-5 *4 (-1061 (-372)))
- (-5 *2 (-1228)) (-5 *1 (-248))))
+ (-12 (-5 *3 (-853 (-1 (-219) (-219) (-219)))) (-5 *4 (-1060 (-372)))
+ (-5 *2 (-1227)) (-5 *1 (-248))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-287 *7)) (-5 *4 (-1143)) (-5 *5 (-621 (-256)))
+ (-12 (-5 *3 (-287 *7)) (-5 *4 (-1142)) (-5 *5 (-621 (-256)))
(-4 *7 (-423 *6)) (-4 *6 (-13 (-541) (-823) (-1009 (-549))))
- (-5 *2 (-1227)) (-5 *1 (-249 *6 *7))))
+ (-5 *2 (-1226)) (-5 *1 (-249 *6 *7))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1059 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1227))
- (-5 *1 (-252 *3)) (-4 *3 (-13 (-594 (-525)) (-1067)))))
+ (-12 (-5 *4 (-1058 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1226))
+ (-5 *1 (-252 *3)) (-4 *3 (-13 (-594 (-525)) (-1066)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1059 (-372))) (-5 *2 (-1227)) (-5 *1 (-252 *3))
- (-4 *3 (-13 (-594 (-525)) (-1067)))))
+ (-12 (-5 *4 (-1058 (-372))) (-5 *2 (-1226)) (-5 *1 (-252 *3))
+ (-4 *3 (-13 (-594 (-525)) (-1066)))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-848 *6)) (-5 *4 (-1059 (-372))) (-5 *5 (-621 (-256)))
- (-4 *6 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1227))
+ (-12 (-5 *3 (-848 *6)) (-5 *4 (-1058 (-372))) (-5 *5 (-621 (-256)))
+ (-4 *6 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1226))
(-5 *1 (-252 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-848 *5)) (-5 *4 (-1059 (-372)))
- (-4 *5 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1227))
+ (-12 (-5 *3 (-848 *5)) (-5 *4 (-1058 (-372)))
+ (-4 *5 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1226))
(-5 *1 (-252 *5))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-850 *6)) (-5 *4 (-1059 (-372))) (-5 *5 (-621 (-256)))
- (-4 *6 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1228))
+ (-12 (-5 *3 (-850 *6)) (-5 *4 (-1058 (-372))) (-5 *5 (-621 (-256)))
+ (-4 *6 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1227))
(-5 *1 (-252 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-850 *5)) (-5 *4 (-1059 (-372)))
- (-4 *5 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1228))
+ (-12 (-5 *3 (-850 *5)) (-5 *4 (-1058 (-372)))
+ (-4 *5 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1227))
(-5 *1 (-252 *5))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *4 (-1059 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1228))
- (-5 *1 (-252 *3)) (-4 *3 (-13 (-594 (-525)) (-1067)))))
+ (-12 (-5 *4 (-1058 (-372))) (-5 *5 (-621 (-256))) (-5 *2 (-1227))
+ (-5 *1 (-252 *3)) (-4 *3 (-13 (-594 (-525)) (-1066)))))
((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1059 (-372))) (-5 *2 (-1228)) (-5 *1 (-252 *3))
- (-4 *3 (-13 (-594 (-525)) (-1067)))))
+ (-12 (-5 *4 (-1058 (-372))) (-5 *2 (-1227)) (-5 *1 (-252 *3))
+ (-4 *3 (-13 (-594 (-525)) (-1066)))))
((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-853 *6)) (-5 *4 (-1059 (-372))) (-5 *5 (-621 (-256)))
- (-4 *6 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1228))
+ (-12 (-5 *3 (-853 *6)) (-5 *4 (-1058 (-372))) (-5 *5 (-621 (-256)))
+ (-4 *6 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1227))
(-5 *1 (-252 *6))))
((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-853 *5)) (-5 *4 (-1059 (-372)))
- (-4 *5 (-13 (-594 (-525)) (-1067))) (-5 *2 (-1228))
+ (-12 (-5 *3 (-853 *5)) (-5 *4 (-1058 (-372)))
+ (-4 *5 (-13 (-594 (-525)) (-1066))) (-5 *2 (-1227))
(-5 *1 (-252 *5))))
((*1 *2 *3 *3)
- (-12 (-5 *3 (-621 (-219))) (-5 *2 (-1227)) (-5 *1 (-253))))
+ (-12 (-5 *3 (-621 (-219))) (-5 *2 (-1226)) (-5 *1 (-253))))
((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-621 (-219))) (-5 *4 (-621 (-256))) (-5 *2 (-1227))
+ (-12 (-5 *3 (-621 (-219))) (-5 *4 (-621 (-256))) (-5 *2 (-1226))
(-5 *1 (-253))))
((*1 *2 *3)
- (-12 (-5 *3 (-621 (-914 (-219)))) (-5 *2 (-1227)) (-5 *1 (-253))))
+ (-12 (-5 *3 (-621 (-914 (-219)))) (-5 *2 (-1226)) (-5 *1 (-253))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-621 (-914 (-219)))) (-5 *4 (-621 (-256)))
- (-5 *2 (-1227)) (-5 *1 (-253))))
+ (-5 *2 (-1226)) (-5 *1 (-253))))
((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-621 (-219))) (-5 *2 (-1228)) (-5 *1 (-253))))
+ (-12 (-5 *3 (-621 (-219))) (-5 *2 (-1227)) (-5 *1 (-253))))
((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-621 (-219))) (-5 *4 (-621 (-256))) (-5 *2 (-1228))
+ (-12 (-5 *3 (-621 (-219))) (-5 *4 (-621 (-256))) (-5 *2 (-1227))
(-5 *1 (-253)))))
(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4337)) (-4 *1 (-149 *3))
- (-4 *3 (-1180))))
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4336)) (-4 *1 (-149 *3))
+ (-4 *3 (-1179))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1180)) (-5 *1 (-581 *3))))
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1179)) (-5 *1 (-581 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-650 *3)) (-4 *3 (-1180))))
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-650 *3)) (-4 *3 (-1179))))
((*1 *2 *1 *3)
- (|partial| -12 (-4 *1 (-1173 *4 *5 *3 *2)) (-4 *4 (-541))
+ (|partial| -12 (-4 *1 (-1172 *4 *5 *3 *2)) (-4 *4 (-541))
(-4 *5 (-769)) (-4 *3 (-823)) (-4 *2 (-1032 *4 *5 *3))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-747)) (-5 *1 (-1177 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-621 (-621 (-914 (-219)))))
- (-5 *2 (-621 (-1061 (-219)))) (-5 *1 (-899)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-256))) (-5 *1 (-1227))))
- ((*1 *2 *1) (-12 (-5 *2 (-621 (-256))) (-5 *1 (-1227))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-256))) (-5 *1 (-1228))))
- ((*1 *2 *1) (-12 (-5 *2 (-621 (-256))) (-5 *1 (-1228)))))
+ (-12 (-5 *3 (-747)) (-5 *1 (-1176 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1018)) (-5 *2 (-1225 *3)) (-5 *1 (-689 *3 *4))
+ (-4 *4 (-1201 *3)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1240 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170))
+ (-5 *1 (-640 *3 *4))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-640 *3 *4)) (-5 *1 (-1245 *3 *4))
+ (-4 *3 (-823)) (-4 *4 (-170)))))
+(((*1 *2)
+ (-12 (-4 *4 (-356)) (-5 *2 (-892)) (-5 *1 (-321 *3 *4))
+ (-4 *3 (-322 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-356)) (-5 *2 (-809 (-892))) (-5 *1 (-321 *3 *4))
+ (-4 *3 (-322 *4))))
+ ((*1 *2) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-892))))
+ ((*1 *2)
+ (-12 (-4 *1 (-1244 *3)) (-4 *3 (-356)) (-5 *2 (-809 (-892))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-256))) (-5 *1 (-1226))))
+ ((*1 *2 *1) (-12 (-5 *2 (-621 (-256))) (-5 *1 (-1226))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-256))) (-5 *1 (-1227))))
+ ((*1 *2 *1) (-12 (-5 *2 (-621 (-256))) (-5 *1 (-1227)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
(-4 *2 (-13 (-423 *3) (-973)))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1217 *3))
- (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1188 *3 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1216 *3))
+ (-5 *1 (-271 *3 *4 *2)) (-4 *2 (-1187 *3 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1186 *3))
- (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1209 *3 *4)) (-4 *5 (-954 *4))))
+ (-12 (-4 *3 (-38 (-400 (-549)))) (-4 *4 (-1185 *3))
+ (-5 *1 (-272 *3 *4 *2 *5)) (-4 *2 (-1208 *3 *4)) (-4 *5 (-954 *4))))
((*1 *1 *2) (-12 (-5 *1 (-324 *2)) (-4 *2 (-823))))
((*1 *1 *1)
- (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143)))
- (-14 *3 (-621 (-1143))) (-4 *4 (-380))))
+ (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142)))
+ (-14 *3 (-621 (-1142))) (-4 *4 (-380))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1128 *3))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1127 *3))))
((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-38 (-400 (-549))))
- (-5 *1 (-1129 *3))))
- ((*1 *1 *1) (-4 *1 (-1168))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-1160)))))
-(((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-112)) (-4 *4 (-13 (-356) (-821))) (-5 *2 (-411 *3))
- (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *4 (-13 (-356) (-821))) (-5 *2 (-411 *3))
- (-5 *1 (-179 *4 *3)) (-4 *3 (-1202 (-167 *4))))))
-(((*1 *2 *3 *4 *4 *5 *6)
- (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-845))
- (-5 *5 (-892)) (-5 *6 (-621 (-256))) (-5 *2 (-1227))
- (-5 *1 (-1230))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *4 (-621 (-256)))
- (-5 *2 (-1227)) (-5 *1 (-1230)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-880)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-411 (-1139 *7)))
- (-5 *1 (-877 *4 *5 *6 *7)) (-5 *3 (-1139 *7))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-880)) (-4 *5 (-1202 *4)) (-5 *2 (-411 (-1139 *5)))
- (-5 *1 (-878 *4 *5)) (-5 *3 (-1139 *5)))))
-(((*1 *2 *3)
- (-12 (|has| *6 (-6 -4338)) (-4 *4 (-356)) (-4 *5 (-366 *4))
- (-4 *6 (-366 *4)) (-5 *2 (-621 *6)) (-5 *1 (-512 *4 *5 *6 *3))
- (-4 *3 (-663 *4 *5 *6))))
+ (-12 (-5 *2 (-1122 *3)) (-4 *3 (-38 (-400 (-549))))
+ (-5 *1 (-1128 *3))))
+ ((*1 *1 *1) (-4 *1 (-1167))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-1159)))))
+(((*1 *2 *2)
+ (-12 (-4 *2 (-170)) (-4 *2 (-1018)) (-5 *1 (-691 *2 *3))
+ (-4 *3 (-624 *2))))
+ ((*1 *2 *2) (-12 (-5 *1 (-810 *2)) (-4 *2 (-170)) (-4 *2 (-1018)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-372)) (-5 *1 (-1030)))))
+(((*1 *2)
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-834)) (-5 *2 (-1230)) (-5 *1 (-1104))))
((*1 *2 *3)
- (-12 (|has| *9 (-6 -4338)) (-4 *4 (-541)) (-4 *5 (-366 *4))
- (-4 *6 (-366 *4)) (-4 *7 (-963 *4)) (-4 *8 (-366 *7))
- (-4 *9 (-366 *7)) (-5 *2 (-621 *6))
- (-5 *1 (-513 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-663 *4 *5 *6))
- (-4 *10 (-663 *7 *8 *9))))
+ (-12 (-5 *3 (-621 (-834))) (-5 *2 (-1230)) (-5 *1 (-1104)))))
+(((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-1142)) (-4 *4 (-1018)) (-4 *4 (-823))
+ (-5 *2 (-2 (|:| |var| (-592 *1)) (|:| -1714 (-549))))
+ (-4 *1 (-423 *4))))
+ ((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-114)) (-4 *4 (-1018)) (-4 *4 (-823))
+ (-5 *2 (-2 (|:| |var| (-592 *1)) (|:| -1714 (-549))))
+ (-4 *1 (-423 *4))))
((*1 *2 *1)
- (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3))
- (-4 *5 (-366 *3)) (-4 *3 (-541)) (-5 *2 (-621 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-4 *4 (-170)) (-4 *5 (-366 *4))
- (-4 *6 (-366 *4)) (-5 *2 (-621 *6)) (-5 *1 (-664 *4 *5 *6 *3))
- (-4 *3 (-663 *4 *5 *6))))
+ (|partial| -12 (-4 *3 (-1078)) (-4 *3 (-823))
+ (-5 *2 (-2 (|:| |var| (-592 *1)) (|:| -1714 (-549))))
+ (-4 *1 (-423 *3))))
((*1 *2 *1)
- (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
- (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-4 *5 (-541))
- (-5 *2 (-621 *7)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3))))
- ((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 (-747) *2)) (-5 *4 (-747)) (-4 *2 (-1067))
- (-5 *1 (-654 *2))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1 *3 (-747) *3)) (-4 *3 (-1067)) (-5 *1 (-658 *3)))))
+ (|partial| -12 (-5 *2 (-2 (|:| |val| (-863 *3)) (|:| -1714 (-747))))
+ (-5 *1 (-863 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-920 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-5 *2 (-2 (|:| |var| *5) (|:| -1714 (-747))))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1018))
+ (-4 *7 (-920 *6 *4 *5))
+ (-5 *2 (-2 (|:| |var| *5) (|:| -1714 (-549))))
+ (-5 *1 (-921 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-356)
+ (-10 -8 (-15 -3845 ($ *7)) (-15 -1392 (*7 $))
+ (-15 -1404 (*7 $))))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-549)) (-4 *1 (-56 *4 *5 *2)) (-4 *4 (-1179))
+ (-4 *5 (-366 *4)) (-4 *2 (-366 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-549)) (-4 *1 (-1021 *4 *5 *6 *7 *2)) (-4 *6 (-1018))
+ (-4 *7 (-232 *5 *6)) (-4 *2 (-232 *4 *6)))))
(((*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-621 *1)) (-4 *1 (-295))))
((*1 *1 *2 *1) (-12 (-4 *1 (-295)) (-5 *2 (-114))))
- ((*1 *1 *2) (-12 (-5 *2 (-1143)) (-5 *1 (-592 *3)) (-4 *3 (-823))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1142)) (-5 *1 (-592 *3)) (-4 *3 (-823))))
((*1 *1 *2 *3 *4)
(-12 (-5 *2 (-114)) (-5 *3 (-621 *5)) (-5 *4 (-747)) (-4 *5 (-823))
(-5 *1 (-592 *5)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-1 (-621 *2) *2 *2 *2)) (-4 *2 (-1067))
- (-5 *1 (-102 *2))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1067)) (-5 *1 (-102 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-133)))))
(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1180)) (-5 *1 (-581 *3))))
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1179)) (-5 *1 (-581 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1180)) (-5 *1 (-1123 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *1 (-854))
- (-5 *3 (-621 (-549)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1123 (-621 (-549)))) (-5 *1 (-854))
- (-5 *3 (-621 (-549))))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-1067)) (-5 *1 (-935 *3 *2)) (-4 *3 (-1067)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1067)) (-4 *4 (-1067))
- (-4 *6 (-1067)) (-5 *2 (-1 *6 *5)) (-5 *1 (-660 *5 *4 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1175 *3)) (-4 *3 (-945)))))
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1179)) (-5 *1 (-1122 *3)))))
+(((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-1179)) (-5 *1 (-180 *3 *2))
+ (-4 *2 (-650 *3)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-145))
+ (-4 *3 (-300)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *1 (-948 *3 *4 *5 *6)))))
(((*1 *1 *1) (-4 *1 (-607)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973) (-1165))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1123 *3)) (-5 *1 (-172 *3)) (-4 *3 (-300)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1241 *3 *4)) (-4 *3 (-823)) (-4 *4 (-170))
- (-5 *1 (-640 *3 *4))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-640 *3 *4)) (-5 *1 (-1246 *3 *4))
- (-4 *3 (-823)) (-4 *4 (-170)))))
+ (-4 *2 (-13 (-423 *3) (-973) (-1164))))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-316 *3 *4)) (-4 *3 (-1066))
+ (-4 *4 (-130)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1060 (-816 (-219)))) (-5 *1 (-298)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-27))
- (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
- (-4 *5 (-1202 *4)) (-5 *2 (-621 (-629 (-400 *5))))
- (-5 *1 (-633 *4 *5)) (-5 *3 (-629 (-400 *5))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-1148))) (-5 *1 (-1148))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1143)) (-5 *3 (-621 (-1148))) (-5 *1 (-1148)))))
+ (-12 (-4 *4 (-541)) (-5 *2 (-747)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-410 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-845))))
+ ((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-300)) (-5 *2 (-411 *3))
+ (-5 *1 (-719 *4 *5 *6 *3)) (-4 *3 (-920 *6 *4 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-167 (-549))) (-5 *2 (-112)) (-5 *1 (-438))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4)
+ (-241 *4 (-400 (-549)))))
+ (-14 *4 (-621 (-1142))) (-14 *5 (-747)) (-5 *2 (-112))
+ (-5 *1 (-496 *4 *5))))
+ ((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-932 *3)) (-4 *3 (-534))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1183)) (-5 *2 (-112)))))
(((*1 *2 *1)
(|partial| -12 (-4 *3 (-444)) (-4 *4 (-823)) (-4 *5 (-769))
(-5 *2 (-112)) (-5 *1 (-958 *3 *4 *5 *6))
(-4 *6 (-920 *3 *5 *4))))
((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1107 *3 *4)) (-4 *3 (-13 (-1067) (-34)))
- (-4 *4 (-13 (-1067) (-34))))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
- (-5 *2
- (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549))
- (|:| |success| (-112))))
- (-5 *1 (-765)) (-5 *5 (-549)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3)
- (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219))
- (-5 *2 (-1006)) (-5 *1 (-729)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1106 *3 *4)) (-4 *3 (-13 (-1066) (-34)))
+ (-4 *4 (-13 (-1066) (-34))))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -3726 (-758 *3)) (|:| |coef1| (-758 *3))))
+ (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *2 (-2 (|:| -3726 *1) (|:| |coef1| *1)))
+ (-4 *1 (-1032 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1179)))))
(((*1 *2 *1) (-12 (-4 *1 (-397)) (-5 *2 (-549))))
((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-675)))))
(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1180)) (-5 *1 (-581 *3))))
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1179)) (-5 *1 (-581 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1180)) (-5 *1 (-1123 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1150)))))
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1179)) (-5 *1 (-1122 *3)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -3521 (-665 (-400 (-923 *4))))
- (|:| |vec| (-621 (-400 (-923 *4)))) (|:| -3123 (-747))
- (|:| |rows| (-621 (-549))) (|:| |cols| (-621 (-549)))))
- (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143))))
- (-4 *6 (-769))
- (-5 *2
- (-2 (|:| |partsol| (-1226 (-400 (-923 *4))))
- (|:| -1949 (-621 (-1226 (-400 (-923 *4)))))))
- (-5 *1 (-895 *4 *5 *6 *7)) (-4 *7 (-920 *4 *6 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-549))) (-5 *1 (-241 *3 *4))
- (-14 *3 (-621 (-1143))) (-4 *4 (-1018))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-549))) (-14 *3 (-621 (-1143)))
- (-5 *1 (-446 *3 *4 *5)) (-4 *4 (-1018))
- (-4 *5 (-232 (-3775 *3) (-747)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-621 (-549))) (-5 *1 (-473 *3 *4))
- (-14 *3 (-621 (-1143))) (-4 *4 (-1018)))))
+ (-12 (-4 *4 (-1201 (-400 *2))) (-5 *2 (-549)) (-5 *1 (-884 *4 *3))
+ (-4 *3 (-1201 (-400 *4))))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1180 *3)) (-4 *3 (-1066)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-356)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-549)) (-5 *1 (-437 *3)) (-4 *3 (-397)) (-4 *3 (-1018)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))))
-(((*1 *2 *3 *3 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-1 (-219) (-219) (-219)))
- (-5 *4 (-3 (-1 (-219) (-219) (-219) (-219)) "undefined"))
- (-5 *5 (-1061 (-219))) (-5 *6 (-621 (-256))) (-5 *2 (-1100 (-219)))
- (-5 *1 (-673))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-914 (-219)) (-219) (-219))) (-5 *4 (-1061 (-219)))
- (-5 *5 (-621 (-256))) (-5 *2 (-1100 (-219))) (-5 *1 (-673))))
- ((*1 *2 *2 *3 *4 *4 *5)
- (-12 (-5 *2 (-1100 (-219))) (-5 *3 (-1 (-914 (-219)) (-219) (-219)))
- (-5 *4 (-1061 (-219))) (-5 *5 (-621 (-256))) (-5 *1 (-673)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-665 *3)) (-4 *3 (-1018)) (-5 *1 (-666 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2) (-12 (-5 *2 (-1114 (-1125))) (-5 *1 (-384)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-549)) (-5 *4 (-411 *2)) (-4 *2 (-920 *7 *5 *6))
- (-5 *1 (-719 *5 *6 *7 *2)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-300)))))
+ (-12 (-5 *3 (-167 *5)) (-4 *5 (-13 (-423 *4) (-973) (-1164)))
+ (-4 *4 (-13 (-541) (-823)))
+ (-4 *2 (-13 (-423 (-167 *4)) (-973) (-1164)))
+ (-5 *1 (-580 *4 *5 *2)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-413 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1164) (-423 *3)))
+ (-14 *4 (-1142)) (-14 *5 *2)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
+ (-4 *2 (-13 (-27) (-1164) (-423 *3) (-10 -8 (-15 -3845 ($ *4)))))
+ (-4 *4 (-821))
+ (-4 *5
+ (-13 (-1203 *2 *4) (-356) (-1164)
+ (-10 -8 (-15 -3455 ($ $)) (-15 -3405 ($ $)))))
+ (-5 *1 (-415 *3 *2 *4 *5 *6 *7)) (-4 *6 (-954 *5)) (-14 *7 (-1142)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-1124)) (-5 *4 (-167 (-219))) (-5 *5 (-549))
+ (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164))))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-1142))
+ (-4 *4 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-542 *4 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *4))))))
+(((*1 *1) (-5 *1 (-1030))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-892)) (-4 *6 (-13 (-541) (-823)))
(-5 *2 (-621 (-309 *6))) (-5 *1 (-215 *5 *6)) (-5 *3 (-309 *6))
(-4 *5 (-1018))))
((*1 *2 *1) (-12 (-5 *1 (-411 *2)) (-4 *2 (-541))))
((*1 *2 *3)
- (-12 (-5 *3 (-567 *5)) (-4 *5 (-13 (-29 *4) (-1165)))
+ (-12 (-5 *3 (-567 *5)) (-4 *5 (-13 (-29 *4) (-1164)))
(-4 *4 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549))))
(-5 *2 (-621 *5)) (-5 *1 (-565 *4 *5))))
((*1 *2 *3)
@@ -16578,251 +16801,160 @@
(-4 *4 (-13 (-444) (-1009 (-549)) (-823) (-617 (-549))))
(-5 *2 (-621 (-309 *4))) (-5 *1 (-570 *4))))
((*1 *2 *1)
- (-12 (-4 *1 (-1062 *3 *2)) (-4 *3 (-821)) (-4 *2 (-1116 *3))))
+ (-12 (-4 *1 (-1061 *3 *2)) (-4 *3 (-821)) (-4 *2 (-1115 *3))))
((*1 *2 *3)
- (-12 (-5 *3 (-621 *1)) (-4 *1 (-1062 *4 *2)) (-4 *4 (-821))
- (-4 *2 (-1116 *4))))
+ (-12 (-5 *3 (-621 *1)) (-4 *1 (-1061 *4 *2)) (-4 *4 (-821))
+ (-4 *2 (-1115 *4))))
((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1171 *3 *2))
- (-4 *2 (-13 (-423 *3) (-1165)))))
+ (-12 (-4 *3 (-13 (-823) (-444))) (-5 *1 (-1170 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-1164)))))
((*1 *2 *1)
- (-12 (-5 *2 (-1241 (-1143) *3)) (-5 *1 (-1248 *3)) (-4 *3 (-1018))))
+ (-12 (-5 *2 (-1240 (-1142) *3)) (-5 *1 (-1247 *3)) (-4 *3 (-1018))))
((*1 *2 *1)
- (-12 (-5 *2 (-1241 *3 *4)) (-5 *1 (-1250 *3 *4)) (-4 *3 (-823))
+ (-12 (-5 *2 (-1240 *3 *4)) (-5 *1 (-1249 *3 *4)) (-4 *3 (-823))
(-4 *4 (-1018)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112))
- (-5 *2
- (-2 (|:| |contp| (-549))
- (|:| -4024 (-621 (-2 (|:| |irr| *3) (|:| -2495 (-549)))))))
- (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112))
- (-5 *2
- (-2 (|:| |contp| (-549))
- (|:| -4024 (-621 (-2 (|:| |irr| *3) (|:| -2495 (-549)))))))
- (-5 *1 (-1191 *3)) (-4 *3 (-1202 (-549))))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
+ (-5 *1 (-959 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-1032 *4 *5 *6)) (-4 *4 (-444))
+ (-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
+ (-5 *1 (-1073 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
(((*1 *1 *1 *2)
(-12
(-5 *2
- (-2 (|:| -2895 (-621 (-834))) (|:| -2861 (-621 (-834)))
- (|:| |presup| (-621 (-834))) (|:| -3395 (-621 (-834)))
+ (-2 (|:| -2982 (-621 (-834))) (|:| -4280 (-621 (-834)))
+ (|:| |presup| (-621 (-834))) (|:| -2125 (-621 (-834)))
(|:| |args| (-621 (-834)))))
- (-5 *1 (-1143))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-621 (-834)))) (-5 *1 (-1143)))))
-(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-897)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1111)) (-5 *2 (-139))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1111)) (-5 *2 (-142)))))
-(((*1 *2 *1 *1)
+ (-5 *1 (-1142))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-621 (-834)))) (-5 *1 (-1142)))))
+(((*1 *2 *2 *3)
(-12
(-5 *2
- (-2 (|:| -3727 (-758 *3)) (|:| |coef1| (-758 *3))
- (|:| |coef2| (-758 *3))))
- (-5 *1 (-758 *3)) (-4 *3 (-541)) (-4 *3 (-1018))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-541)) (-4 *3 (-1018)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *2 (-2 (|:| -3727 *1) (|:| |coef1| *1) (|:| |coef2| *1)))
- (-4 *1 (-1032 *3 *4 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-546)))))
+ (-2 (|:| |partsol| (-1225 (-400 (-923 *4))))
+ (|:| -2619 (-621 (-1225 (-400 (-923 *4)))))))
+ (-5 *3 (-621 *7)) (-4 *4 (-13 (-300) (-145)))
+ (-4 *7 (-920 *4 *6 *5)) (-4 *5 (-13 (-823) (-594 (-1142))))
+ (-4 *6 (-769)) (-5 *1 (-895 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1124)) (-5 *4 (-549)) (-5 *5 (-665 (-219)))
+ (-5 *2 (-1006)) (-5 *1 (-734)))))
+(((*1 *1) (-5 *1 (-460))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-4 *3 (-541))
+ (-5 *2 (-1138 *3)))))
(((*1 *2 *2 *2)
(-12 (-5 *2 (-621 (-592 *4))) (-4 *4 (-423 *3)) (-4 *3 (-823))
(-5 *1 (-558 *3 *4))))
((*1 *1 *1 *1)
- (-12 (-5 *1 (-860 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-397)) (-4 *3 (-1018))))
- ((*1 *2)
- (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-397)) (-4 *3 (-1018)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1243 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1249 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-819)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5))
- (-5 *2 (-2 (|:| -2681 (-621 *6)) (|:| -1359 (-621 *6)))))))
+ (-12 (-5 *1 (-860 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2)) (-4 *2 (-1066)))))
+(((*1 *2 *3 *4 *5 *5 *4 *6)
+ (-12 (-5 *4 (-549)) (-5 *6 (-1 (-1230) (-1225 *5) (-1225 *5) (-372)))
+ (-5 *3 (-1225 (-372))) (-5 *5 (-372)) (-5 *2 (-1230))
+ (-5 *1 (-764)))))
(((*1 *2) (-12 (-5 *2 (-809 (-549))) (-5 *1 (-523))))
- ((*1 *1) (-12 (-5 *1 (-809 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-892)) (-5 *2 (-1139 *4)) (-5 *1 (-569 *4))
- (-4 *4 (-342)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-823) (-541))) (-5 *2 (-112)) (-5 *1 (-269 *4 *3))
- (-4 *3 (-13 (-423 *4) (-973))))))
-(((*1 *2 *2) (-12 (-5 *2 (-621 (-665 (-309 (-549))))) (-5 *1 (-1002)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-520 *3)) (-4 *3 (-13 (-703) (-25))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-947 *3 *4 *5 *6)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-541))
- (-5 *2 (-112)))))
+ ((*1 *1) (-12 (-5 *1 (-809 *2)) (-4 *2 (-1066)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-356)) (-4 *7 (-1202 *5)) (-4 *4 (-701 *5 *7))
- (-5 *2 (-2 (|:| -3521 (-665 *6)) (|:| |vec| (-1226 *5))))
- (-5 *1 (-787 *5 *6 *7 *4 *3)) (-4 *6 (-632 *5)) (-4 *3 (-632 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-665 *8)) (-4 *8 (-920 *5 *7 *6))
- (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1143))))
- (-4 *7 (-769))
- (-5 *2
- (-621
- (-2 (|:| |eqzro| (-621 *8)) (|:| |neqzro| (-621 *8))
- (|:| |wcond| (-621 (-923 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1226 (-400 (-923 *5))))
- (|:| -1949 (-621 (-1226 (-400 (-923 *5))))))))))
- (-5 *1 (-895 *5 *6 *7 *8)) (-5 *4 (-621 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-665 *8)) (-5 *4 (-621 (-1143))) (-4 *8 (-920 *5 *7 *6))
- (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1143))))
- (-4 *7 (-769))
- (-5 *2
- (-621
- (-2 (|:| |eqzro| (-621 *8)) (|:| |neqzro| (-621 *8))
- (|:| |wcond| (-621 (-923 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1226 (-400 (-923 *5))))
- (|:| -1949 (-621 (-1226 (-400 (-923 *5))))))))))
- (-5 *1 (-895 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-665 *7)) (-4 *7 (-920 *4 *6 *5))
- (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143))))
- (-4 *6 (-769))
- (-5 *2
- (-621
- (-2 (|:| |eqzro| (-621 *7)) (|:| |neqzro| (-621 *7))
- (|:| |wcond| (-621 (-923 *4)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1226 (-400 (-923 *4))))
- (|:| -1949 (-621 (-1226 (-400 (-923 *4))))))))))
- (-5 *1 (-895 *4 *5 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-665 *9)) (-5 *5 (-892)) (-4 *9 (-920 *6 *8 *7))
- (-4 *6 (-13 (-300) (-145))) (-4 *7 (-13 (-823) (-594 (-1143))))
- (-4 *8 (-769))
- (-5 *2
- (-621
- (-2 (|:| |eqzro| (-621 *9)) (|:| |neqzro| (-621 *9))
- (|:| |wcond| (-621 (-923 *6)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1226 (-400 (-923 *6))))
- (|:| -1949 (-621 (-1226 (-400 (-923 *6))))))))))
- (-5 *1 (-895 *6 *7 *8 *9)) (-5 *4 (-621 *9))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-665 *9)) (-5 *4 (-621 (-1143))) (-5 *5 (-892))
- (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145)))
- (-4 *7 (-13 (-823) (-594 (-1143)))) (-4 *8 (-769))
+ (-12 (-5 *3 (-621 *5)) (-5 *4 (-892)) (-4 *5 (-823))
+ (-5 *2 (-621 (-648 *5))) (-5 *1 (-648 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-155))))
+ ((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-444))
(-5 *2
(-621
- (-2 (|:| |eqzro| (-621 *9)) (|:| |neqzro| (-621 *9))
- (|:| |wcond| (-621 (-923 *6)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1226 (-400 (-923 *6))))
- (|:| -1949 (-621 (-1226 (-400 (-923 *6))))))))))
- (-5 *1 (-895 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-665 *8)) (-5 *4 (-892)) (-4 *8 (-920 *5 *7 *6))
- (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1143))))
- (-4 *7 (-769))
+ (-2 (|:| |eigval| (-3 (-400 (-923 *4)) (-1131 (-1142) (-923 *4))))
+ (|:| |geneigvec| (-621 (-665 (-400 (-923 *4))))))))
+ (-5 *1 (-285 *4)) (-5 *3 (-665 (-400 (-923 *4)))))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1142)) (|:| |fn| (-309 (-219)))
+ (|:| -2811 (-1060 (-816 (-219)))) (|:| |abserr| (-219))
+ (|:| |relerr| (-219))))
(-5 *2
- (-621
- (-2 (|:| |eqzro| (-621 *8)) (|:| |neqzro| (-621 *8))
- (|:| |wcond| (-621 (-923 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1226 (-400 (-923 *5))))
- (|:| -1949 (-621 (-1226 (-400 (-923 *5))))))))))
- (-5 *1 (-895 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-665 *9)) (-5 *4 (-621 *9)) (-5 *5 (-1125))
- (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145)))
- (-4 *7 (-13 (-823) (-594 (-1143)))) (-4 *8 (-769)) (-5 *2 (-549))
- (-5 *1 (-895 *6 *7 *8 *9))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-665 *9)) (-5 *4 (-621 (-1143))) (-5 *5 (-1125))
- (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145)))
- (-4 *7 (-13 (-823) (-594 (-1143)))) (-4 *8 (-769)) (-5 *2 (-549))
- (-5 *1 (-895 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-665 *8)) (-5 *4 (-1125)) (-4 *8 (-920 *5 *7 *6))
- (-4 *5 (-13 (-300) (-145))) (-4 *6 (-13 (-823) (-594 (-1143))))
- (-4 *7 (-769)) (-5 *2 (-549)) (-5 *1 (-895 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-665 *10)) (-5 *4 (-621 *10)) (-5 *5 (-892))
- (-5 *6 (-1125)) (-4 *10 (-920 *7 *9 *8)) (-4 *7 (-13 (-300) (-145)))
- (-4 *8 (-13 (-823) (-594 (-1143)))) (-4 *9 (-769)) (-5 *2 (-549))
- (-5 *1 (-895 *7 *8 *9 *10))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-665 *10)) (-5 *4 (-621 (-1143))) (-5 *5 (-892))
- (-5 *6 (-1125)) (-4 *10 (-920 *7 *9 *8)) (-4 *7 (-13 (-300) (-145)))
- (-4 *8 (-13 (-823) (-594 (-1143)))) (-4 *9 (-769)) (-5 *2 (-549))
- (-5 *1 (-895 *7 *8 *9 *10))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-665 *9)) (-5 *4 (-892)) (-5 *5 (-1125))
- (-4 *9 (-920 *6 *8 *7)) (-4 *6 (-13 (-300) (-145)))
- (-4 *7 (-13 (-823) (-594 (-1143)))) (-4 *8 (-769)) (-5 *2 (-549))
- (-5 *1 (-895 *6 *7 *8 *9)))))
+ (-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 (-186)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 *4)) (-4 *4 (-821)) (-4 *4 (-356)) (-5 *2 (-747))
+ (-5 *1 (-916 *4 *5)) (-4 *5 (-1201 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-520 *3)) (-4 *3 (-13 (-703) (-25))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-747)) (-4 *1 (-1201 *4)) (-4 *4 (-1018))
+ (-5 *2 (-1225 *4)))))
(((*1 *1 *1) (-4 *1 (-607)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-608 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973) (-1165))))))
-(((*1 *1) (-12 (-4 *1 (-164 *2)) (-4 *2 (-170)))))
+ (-4 *2 (-13 (-423 *3) (-973) (-1164))))))
+(((*1 *2 *2) (-12 (-5 *1 (-568 *2)) (-4 *2 (-534)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1018))
- (-4 *2 (-13 (-397) (-1009 *4) (-356) (-1165) (-277)))
- (-5 *1 (-435 *4 *3 *2)) (-4 *3 (-1202 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
- (-4 *2 (-13 (-423 *3) (-973))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-1236)))))
+ (-12 (-5 *3 (-892)) (-5 *2 (-1138 *4)) (-5 *1 (-350 *4))
+ (-4 *4 (-342)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 (-142))) (-5 *1 (-139))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-139)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834))))
+ ((*1 *1 *1 *1) (-5 *1 (-834))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 *2)) (-4 *2 (-1201 *4)) (-5 *1 (-528 *4 *2 *5 *6))
+ (-4 *4 (-300)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-747))))))
(((*1 *2)
(-12 (-4 *2 (-13 (-423 *3) (-973))) (-5 *1 (-269 *3 *2))
(-4 *3 (-13 (-823) (-541)))))
((*1 *1)
- (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1143)))
- (-14 *3 (-621 (-1143))) (-4 *4 (-380))))
- ((*1 *1) (-5 *1 (-469))) ((*1 *1) (-4 *1 (-1165))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |preimage| (-621 *3)) (|:| |image| (-621 *3))))
- (-5 *1 (-876 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1148)) (-5 *1 (-508)))))
+ (-12 (-5 *1 (-332 *2 *3 *4)) (-14 *2 (-621 (-1142)))
+ (-14 *3 (-621 (-1142))) (-4 *4 (-380))))
+ ((*1 *1) (-5 *1 (-469))) ((*1 *1) (-4 *1 (-1164))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-621 (-758 *3))) (-5 *1 (-758 *3)) (-4 *3 (-541))
+ (-4 *3 (-1018)))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-665 *2)) (-5 *4 (-747))
+ (-4 *2 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $)))))
+ (-4 *5 (-1201 *2)) (-5 *1 (-490 *2 *5 *6)) (-4 *6 (-402 *2 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-269 *3 *2))
+ (-4 *2 (-13 (-423 *3) (-973))))))
(((*1 *2 *3 *3)
(-12 (-5 *3 (-747)) (-5 *2 (-1 (-372))) (-5 *1 (-1011)))))
-(((*1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1229))))
- ((*1 *2 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1229)))))
-(((*1 *2 *3) (-12 (-5 *3 (-167 (-549))) (-5 *2 (-112)) (-5 *1 (-438))))
- ((*1 *2 *3)
- (-12
- (-5 *3
- (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4)
- (-241 *4 (-400 (-549)))))
- (-14 *4 (-621 (-1143))) (-14 *5 (-747)) (-5 *2 (-112))
- (-5 *1 (-496 *4 *5))))
- ((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-932 *3)) (-4 *3 (-534))))
- ((*1 *2 *1) (-12 (-4 *1 (-1184)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1125)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1231))
- (-5 *1 (-1039 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1125)) (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-1231))
- (-5 *1 (-1075 *4 *5 *6 *7 *8)) (-4 *8 (-1038 *4 *5 *6 *7)))))
-(((*1 *1 *1) (-12 (-4 *1 (-418 *2)) (-4 *2 (-1067)) (-4 *2 (-361)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)))) (-5 *1 (-182 *3 *2))
+ (-4 *2 (-13 (-27) (-1164) (-423 (-167 *3))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-541) (-823) (-1009 (-549))))
+ (-5 *1 (-182 *4 *2)) (-4 *2 (-13 (-27) (-1164) (-423 (-167 *4))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-1168 *3 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1142))
+ (-4 *4 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
+ (-5 *1 (-1168 *4 *2)) (-4 *2 (-13 (-27) (-1164) (-423 *4))))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 (-834))) (-5 *1 (-834))))
+ ((*1 *1 *1) (-5 *1 (-834))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-372)) (-5 *2 (-1230)) (-5 *1 (-1227)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-356)) (-4 *5 (-541))
+ (-5 *2
+ (-2 (|:| |minor| (-621 (-892))) (|:| -2649 *3)
+ (|:| |minors| (-621 (-621 (-892)))) (|:| |ops| (-621 *3))))
+ (-5 *1 (-89 *5 *3)) (-5 *4 (-892)) (-4 *3 (-632 *5)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-880)) (-4 *5 (-769)) (-4 *6 (-823))
- (-4 *7 (-920 *4 *5 *6)) (-5 *2 (-411 (-1139 *7)))
- (-5 *1 (-877 *4 *5 *6 *7)) (-5 *3 (-1139 *7))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-880)) (-4 *5 (-1202 *4)) (-5 *2 (-411 (-1139 *5)))
- (-5 *1 (-878 *4 *5)) (-5 *3 (-1139 *5)))))
-(((*1 *2 *3 *3 *4 *4 *3 *3 *5 *3)
- (-12 (-5 *3 (-549)) (-5 *5 (-665 (-219))) (-5 *4 (-219))
- (-5 *2 (-1006)) (-5 *1 (-732)))))
+ (-12 (-5 *3 (-621 (-621 (-914 (-219))))) (-5 *2 (-621 (-219)))
+ (-5 *1 (-460)))))
+(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1124)) (-5 *3 (-750)) (-5 *1 (-114)))))
(((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-747)) (-4 *1 (-717 *4 *5)) (-4 *4 (-1018))
(-4 *5 (-823)) (-5 *2 (-923 *4))))
@@ -16830,56 +16962,48 @@
(-12 (-5 *3 (-747)) (-4 *1 (-717 *4 *5)) (-4 *4 (-1018))
(-4 *5 (-823)) (-5 *2 (-923 *4))))
((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-747)) (-4 *1 (-1217 *4)) (-4 *4 (-1018))
+ (-12 (-5 *3 (-747)) (-4 *1 (-1216 *4)) (-4 *4 (-1018))
(-5 *2 (-923 *4))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-747)) (-4 *1 (-1217 *4)) (-4 *4 (-1018))
+ (-12 (-5 *3 (-747)) (-4 *1 (-1216 *4)) (-4 *4 (-1018))
(-5 *2 (-923 *4)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1131 *2 *3)) (-14 *2 (-892)) (-4 *3 (-1018)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-324 *3)) (-4 *3 (-823)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-747)) (-5 *2 (-1226 (-621 (-549)))) (-5 *1 (-472))))
+ (-12 (-5 *3 (-747)) (-5 *2 (-1225 (-621 (-549)))) (-5 *1 (-472))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1180)) (-5 *1 (-581 *3))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1179)) (-5 *1 (-581 *3))))
((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1180)) (-5 *1 (-1123 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1180)) (-5 *1 (-1123 *3)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-747)) (-4 *4 (-13 (-1018) (-694 (-400 (-549)))))
- (-4 *5 (-823)) (-5 *1 (-1242 *4 *5 *2)) (-4 *2 (-1247 *5 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *6)) (-5 *4 (-621 (-1143))) (-4 *6 (-356))
- (-5 *2 (-621 (-287 (-923 *6)))) (-5 *1 (-527 *5 *6 *7))
- (-4 *5 (-444)) (-4 *7 (-13 (-356) (-821))))))
-(((*1 *2 *2 *3)
- (|partial| -12
- (-5 *3 (-621 (-2 (|:| |func| *2) (|:| |pole| (-112)))))
- (-4 *2 (-13 (-423 *4) (-973))) (-4 *4 (-13 (-823) (-541)))
- (-5 *1 (-269 *4 *2)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-372) (-372))) (-5 *4 (-372))
- (-5 *2
- (-2 (|:| -4161 *4) (|:| -3042 *4) (|:| |totalpts| (-549))
- (|:| |success| (-112))))
- (-5 *1 (-765)) (-5 *5 (-549)))))
-(((*1 *2 *1 *3 *3 *4 *4)
- (-12 (-5 *3 (-747)) (-5 *4 (-892)) (-5 *2 (-1231)) (-5 *1 (-1227))))
- ((*1 *2 *1 *3 *3 *4 *4)
- (-12 (-5 *3 (-747)) (-5 *4 (-892)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1067))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1179)) (-5 *1 (-1122 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1179)) (-5 *1 (-1122 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-577 *3)) (-4 *3 (-1018))))
((*1 *2 *1)
- (-12 (-4 *1 (-1070 *3 *4 *5 *6 *7)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *7 (-1067)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1092 (-549) (-592 (-48)))) (-5 *1 (-48))))
+ (-12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-768))
+ (-4 *5 (-823)) (-5 *2 (-112)))))
+(((*1 *2 *2 *1 *3 *4)
+ (-12 (-5 *2 (-621 *8)) (-5 *3 (-1 *8 *8 *8))
+ (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1172 *5 *6 *7 *8)) (-4 *5 (-541))
+ (-4 *6 (-769)) (-4 *7 (-823)) (-4 *8 (-1032 *5 *6 *7)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1225 *1)) (-4 *1 (-363 *4 *5)) (-4 *4 (-170))
+ (-4 *5 (-1201 *4)) (-5 *2 (-665 *4))))
((*1 *2 *1)
- (-12 (-4 *3 (-963 *2)) (-4 *4 (-1202 *3)) (-4 *2 (-300))
+ (-12 (-4 *1 (-402 *3 *4)) (-4 *3 (-170)) (-4 *4 (-1201 *3))
+ (-5 *2 (-665 *3)))))
+(((*1 *2 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
+ (-5 *1 (-733)))))
+(((*1 *2) (-12 (-5 *2 (-892)) (-5 *1 (-155)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1225 *1)) (-4 *1 (-360 *2)) (-4 *2 (-170))))
+ ((*1 *2) (-12 (-4 *2 (-170)) (-5 *1 (-409 *3 *2)) (-4 *3 (-410 *2))))
+ ((*1 *2) (-12 (-4 *1 (-410 *2)) (-4 *2 (-170)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1091 (-549) (-592 (-48)))) (-5 *1 (-48))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-963 *2)) (-4 *4 (-1201 *3)) (-4 *2 (-300))
(-5 *1 (-406 *2 *3 *4 *5)) (-4 *5 (-13 (-402 *3 *4) (-1009 *3)))))
((*1 *2 *1)
- (-12 (-4 *3 (-541)) (-4 *3 (-823)) (-5 *2 (-1092 *3 (-592 *1)))
+ (-12 (-4 *3 (-541)) (-4 *3 (-823)) (-5 *2 (-1091 *3 (-592 *1)))
(-4 *1 (-423 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-1092 (-549) (-592 (-486)))) (-5 *1 (-486))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1091 (-549) (-592 (-486)))) (-5 *1 (-486))))
((*1 *2 *1)
(-12 (-4 *4 (-170)) (-4 *2 (|SubsetCategory| (-703) *4))
(-5 *1 (-599 *3 *4 *2)) (-4 *3 (-38 *4))))
@@ -16887,30 +17011,44 @@
(-12 (-4 *4 (-170)) (-4 *2 (|SubsetCategory| (-703) *4))
(-5 *1 (-638 *3 *4 *2)) (-4 *3 (-694 *4))))
((*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)))))
-(((*1 *2 *3) (-12 (-5 *3 (-914 *2)) (-5 *1 (-953 *2)) (-4 *2 (-1018)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1138 *7)) (-4 *7 (-920 *6 *4 *5)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *6 (-1018)) (-5 *2 (-1138 *6))
+ (-5 *1 (-314 *4 *5 *6 *7)))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1172 *3 *4 *5 *2)) (-4 *3 (-541)) (-4 *4 (-769))
+ (-4 *5 (-823)) (-4 *2 (-1032 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-181)) (-5 *1 (-242)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-665 (-400 (-549)))) (-5 *2 (-621 *4)) (-5 *1 (-755 *4))
+ (-4 *4 (-13 (-356) (-821))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1187 *3 *2)) (-4 *3 (-1018)) (-4 *2 (-1216 *3)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
+ (-4 *3 (-1032 *5 *6 *7))
+ (-5 *2 (-621 (-2 (|:| |val| (-621 *3)) (|:| -1979 *4))))
+ (-5 *1 (-1039 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-966 *2)) (-4 *2 (-1179)))))
(((*1 *2 *3 *1)
- (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-1146)) (-5 *3 (-1143)))))
-(((*1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-736)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-541))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1353 *4)))
- (-5 *1 (-940 *4 *3)) (-4 *3 (-1202 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-797)) (-5 *2 (-52)) (-5 *1 (-807)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-621 (-2 (|:| |totdeg| (-747)) (|:| -3028 *3))))
- (-5 *4 (-747)) (-4 *3 (-920 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769))
- (-4 *7 (-823)) (-5 *1 (-441 *5 *6 *7 *3)))))
-(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123))))
-(((*1 *1) (-5 *1 (-155))))
-(((*1 *2 *1) (-12 (-5 *2 (-1092 (-549) (-592 (-48)))) (-5 *1 (-48))))
+ (-12 (-5 *3 (-876 *4)) (-4 *4 (-1066)) (-5 *2 (-621 (-747)))
+ (-5 *1 (-875 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 *6)) (-5 *4 (-621 (-1122 *7))) (-4 *6 (-823))
+ (-4 *7 (-920 *5 (-521 *6) *6)) (-4 *5 (-1018))
+ (-5 *2 (-1 (-1122 *7) *7)) (-5 *1 (-1092 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-5 *2 (-621 (-1142))) (-5 *1 (-1146)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1091 (-549) (-592 (-48)))) (-5 *1 (-48))))
((*1 *2 *1)
- (-12 (-4 *3 (-300)) (-4 *4 (-963 *3)) (-4 *5 (-1202 *4))
- (-5 *2 (-1226 *6)) (-5 *1 (-406 *3 *4 *5 *6))
+ (-12 (-4 *3 (-300)) (-4 *4 (-963 *3)) (-4 *5 (-1201 *4))
+ (-5 *2 (-1225 *6)) (-5 *1 (-406 *3 *4 *5 *6))
(-4 *6 (-13 (-402 *4 *5) (-1009 *4)))))
((*1 *2 *1)
- (-12 (-4 *3 (-1018)) (-4 *3 (-823)) (-5 *2 (-1092 *3 (-592 *1)))
+ (-12 (-4 *3 (-1018)) (-4 *3 (-823)) (-5 *2 (-1091 *3 (-592 *1)))
(-4 *1 (-423 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-1092 (-549) (-592 (-486)))) (-5 *1 (-486))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1091 (-549) (-592 (-486)))) (-5 *1 (-486))))
((*1 *2 *1)
(-12 (-4 *3 (-170)) (-4 *2 (-38 *3)) (-5 *1 (-599 *2 *3 *4))
(-4 *4 (|SubsetCategory| (-703) *3))))
@@ -16918,361 +17056,334 @@
(-12 (-4 *3 (-170)) (-4 *2 (-694 *3)) (-5 *1 (-638 *2 *3 *4))
(-4 *4 (|SubsetCategory| (-703) *3))))
((*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)))))
-(((*1 *1 *1) (-5 *1 (-219))) ((*1 *1 *1) (-5 *1 (-372)))
- ((*1 *1) (-5 *1 (-372))))
(((*1 *2 *3)
(-12 (-4 *4 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
- (-5 *2 (-621 *4)) (-5 *1 (-1095 *3 *4)) (-4 *3 (-1202 *4))))
+ (-5 *2 (-621 *4)) (-5 *1 (-1094 *3 *4)) (-4 *3 (-1201 *4))))
((*1 *2 *3 *3)
(-12 (-4 *3 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
- (-5 *2 (-621 *3)) (-5 *1 (-1095 *4 *3)) (-4 *4 (-1202 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-745))
- (-5 *2
- (-2 (|:| -1391 (-372)) (|:| -2481 (-1125))
- (|:| |explanations| (-621 (-1125))) (|:| |extra| (-1006))))
- (-5 *1 (-550))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-745)) (-5 *4 (-1030))
- (-5 *2
- (-2 (|:| -1391 (-372)) (|:| -2481 (-1125))
- (|:| |explanations| (-621 (-1125))) (|:| |extra| (-1006))))
- (-5 *1 (-550))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-763)) (-5 *3 (-1030))
- (-5 *4
- (-2 (|:| |fn| (-309 (-219)))
- (|:| -1372 (-621 (-1061 (-816 (-219))))) (|:| |abserr| (-219))
- (|:| |relerr| (-219))))
- (-5 *2
- (-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))
- (|:| |extra| (-1006))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-763)) (-5 *3 (-1030))
- (-5 *4
- (-2 (|:| |var| (-1143)) (|:| |fn| (-309 (-219)))
- (|:| -1372 (-1061 (-816 (-219)))) (|:| |abserr| (-219))
- (|:| |relerr| (-219))))
- (-5 *2
- (-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))
- (|:| |extra| (-1006))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-776)) (-5 *3 (-1030))
- (-5 *4
- (-2 (|:| |xinit| (-219)) (|:| |xend| (-219))
- (|:| |fn| (-1226 (-309 (-219)))) (|:| |yinit| (-621 (-219)))
- (|:| |intvals| (-621 (-219))) (|:| |g| (-309 (-219)))
- (|:| |abserr| (-219)) (|:| |relerr| (-219))))
- (-5 *2 (-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-784))
- (-5 *2
- (-2 (|:| -1391 (-372)) (|:| -2481 (-1125))
- (|:| |explanations| (-621 (-1125)))))
- (-5 *1 (-781))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-784)) (-5 *4 (-1030))
- (-5 *2
- (-2 (|:| -1391 (-372)) (|:| -2481 (-1125))
- (|:| |explanations| (-621 (-1125)))))
- (-5 *1 (-781))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-812)) (-5 *3 (-1030))
- (-5 *4
- (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3060 (-621 (-219)))))
- (-5 *2 (-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-812)) (-5 *3 (-1030))
- (-5 *4
- (-2 (|:| |fn| (-309 (-219))) (|:| -3060 (-621 (-219)))
- (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219))))
- (|:| |ub| (-621 (-816 (-219))))))
- (-5 *2 (-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-814))
- (-5 *2
- (-2 (|:| -1391 (-372)) (|:| -2481 (-1125))
- (|:| |explanations| (-621 (-1125)))))
- (-5 *1 (-813))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-814)) (-5 *4 (-1030))
- (-5 *2
- (-2 (|:| -1391 (-372)) (|:| -2481 (-1125))
- (|:| |explanations| (-621 (-1125)))))
- (-5 *1 (-813))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-866)) (-5 *3 (-1030))
- (-5 *4
- (-2 (|:| |pde| (-621 (-309 (-219))))
- (|:| |constraints|
- (-621
- (-2 (|:| |start| (-219)) (|:| |finish| (-219))
- (|:| |grid| (-747)) (|:| |boundaryType| (-549))
- (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219))))))
- (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1125))
- (|:| |tol| (-219))))
- (-5 *2 (-2 (|:| -1391 (-372)) (|:| |explanations| (-1125))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-869))
- (-5 *2
- (-2 (|:| -1391 (-372)) (|:| -2481 (-1125))
- (|:| |explanations| (-621 (-1125)))))
- (-5 *1 (-868))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-869)) (-5 *4 (-1030))
- (-5 *2
- (-2 (|:| -1391 (-372)) (|:| -2481 (-1125))
- (|:| |explanations| (-621 (-1125)))))
- (-5 *1 (-868)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-898))
- (-5 *2
- (-2 (|:| |brans| (-621 (-621 (-914 (-219)))))
- (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))))
- (-5 *1 (-151))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-898)) (-5 *4 (-400 (-549)))
- (-5 *2
- (-2 (|:| |brans| (-621 (-621 (-914 (-219)))))
- (|:| |xValues| (-1061 (-219))) (|:| |yValues| (-1061 (-219)))))
- (-5 *1 (-151)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1125)) (-5 *2 (-1231)) (-5 *1 (-1228)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-335 *4 *3 *5)) (-4 *4 (-1184)) (-4 *3 (-1202 *4))
- (-4 *5 (-1202 (-400 *3))) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1218 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1143))
- (-14 *4 *2))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-732)))))
-(((*1 *1 *2) (-12 (-5 *2 (-155)) (-5 *1 (-845)))))
-(((*1 *1) (-5 *1 (-1228))))
+ (-5 *2 (-621 *3)) (-5 *1 (-1094 *4 *3)) (-4 *4 (-1201 *3)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-914 *4))) (-5 *1 (-1131 *3 *4)) (-14 *3 (-892))
- (-4 *4 (-1018)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-621 *7)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444))
- (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5))
- (-5 *1 (-959 *3 *4 *5 *6 *7))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-621 *7)) (-4 *7 (-1038 *3 *4 *5 *6)) (-4 *3 (-444))
- (-4 *4 (-769)) (-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5))
- (-5 *1 (-1074 *3 *4 *5 *6 *7)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-167 (-219))) (-5 *5 (-549)) (-5 *6 (-1125))
- (-5 *3 (-219)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-665 (-400 (-923 (-549)))))
- (-5 *2 (-665 (-309 (-549)))) (-5 *1 (-1002)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-4 *3 (-541))
- (-5 *2 (-1139 *3)))))
-(((*1 *2 *3 *3 *3 *3)
- (-12 (-4 *4 (-444)) (-4 *3 (-769)) (-4 *5 (-823)) (-5 *2 (-112))
- (-5 *1 (-441 *4 *3 *5 *6)) (-4 *6 (-920 *4 *3 *5)))))
+ (-12 (-4 *1 (-164 *3)) (-4 *3 (-170)) (-4 *3 (-534))
+ (-5 *2 (-400 (-549)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-400 (-549))) (-5 *1 (-411 *3)) (-4 *3 (-534))
+ (-4 *3 (-541))))
+ ((*1 *2 *1) (-12 (-4 *1 (-534)) (-5 *2 (-400 (-549)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-773 *3)) (-4 *3 (-170)) (-4 *3 (-534))
+ (-5 *2 (-400 (-549)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-400 (-549))) (-5 *1 (-809 *3)) (-4 *3 (-534))
+ (-4 *3 (-1066))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-400 (-549))) (-5 *1 (-816 *3)) (-4 *3 (-534))
+ (-4 *3 (-1066))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-968 *3)) (-4 *3 (-170)) (-4 *3 (-534))
+ (-5 *2 (-400 (-549)))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-400 (-549))) (-5 *1 (-979 *3)) (-4 *3 (-1009 *2)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-549)) (-4 *1 (-56 *4 *3 *5)) (-4 *4 (-1179))
+ (-4 *3 (-366 *4)) (-4 *5 (-366 *4)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-747)) (-5 *1 (-829 *2)) (-4 *2 (-38 (-400 (-549))))
+ (-4 *2 (-170)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-131)) (-5 *3 (-747)) (-5 *2 (-1230)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-621 *1)) (-4 *1 (-300)))))
(((*1 *2 *1)
- (-12 (-4 *2 (-1067)) (-5 *1 (-935 *2 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1218 *2 *3 *4)) (-4 *2 (-1018)) (-14 *3 (-1143))
- (-14 *4 *2))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1211 *3 *4 *5)) (-4 *3 (-13 (-356) (-823)))
- (-14 *4 (-1143)) (-14 *5 *3) (-5 *1 (-312 *3 *4 *5))))
- ((*1 *2 *3) (-12 (-5 *2 (-1 (-372))) (-5 *1 (-1011)) (-5 *3 (-372)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-549)) (-5 *2 (-112)) (-5 *1 (-538)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 (-1061 (-400 (-549))))) (-5 *1 (-256))))
- ((*1 *1 *2) (-12 (-5 *2 (-621 (-1061 (-372)))) (-5 *1 (-256)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1125)) (-5 *1 (-1161))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-1161)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
- (-4 *2 (-423 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1106))))
-(((*1 *2 *2) (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-1018))))
- ((*1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-437 *3)) (-4 *3 (-1018)))))
+ (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1183)) (-4 *4 (-1201 *3))
+ (-4 *5 (-1201 (-400 *4)))
+ (-5 *2 (-2 (|:| |num| (-1225 *4)) (|:| |den| *4))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-863 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1164)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-769)) (-4 *4 (-823)) (-4 *6 (-300)) (-5 *2 (-411 *3))
+ (-5 *1 (-719 *5 *4 *6 *3)) (-4 *3 (-920 *6 *5 *4)))))
(((*1 *2)
(-12 (-4 *4 (-170)) (-5 *2 (-112)) (-5 *1 (-359 *3 *4))
(-4 *3 (-360 *4))))
((*1 *2) (-12 (-4 *1 (-360 *3)) (-4 *3 (-170)) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-892)) (-5 *2 (-875 (-549))) (-5 *1 (-888))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-621 (-549))) (-5 *2 (-875 (-549))) (-5 *1 (-888)))))
+(((*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
+ (-5 *2 (-1006)) (-5 *1 (-728)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-1249 *3 *4)) (-4 *1 (-367 *3 *4)) (-4 *3 (-823))
+ (-4 *4 (-170))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-379 *2)) (-4 *2 (-1066))))
+ ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-795 *2)) (-4 *2 (-823))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-795 *2)) (-4 *2 (-823))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-795 *3)) (-4 *1 (-1242 *3 *4)) (-4 *3 (-823))
+ (-4 *4 (-1018))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1242 *2 *3)) (-4 *2 (-823)) (-4 *3 (-1018)))))
+(((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-350 *3)) (-4 *3 (-342)))))
(((*1 *2 *2 *2)
- (-12 (-5 *2 (-665 *3))
- (-4 *3 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $)))))
- (-4 *4 (-1202 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-665 *3))
- (-4 *3 (-13 (-300) (-10 -8 (-15 -2402 ((-411 $) $)))))
- (-4 *4 (-1202 *3)) (-5 *1 (-490 *3 *4 *5)) (-4 *5 (-402 *3 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))))
+ (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-444))
+ (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
+ (-5 *1 (-948 *3 *4 *5 *6)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-576 *2)) (-4 *2 (-1018)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-126 *3)))))
+(((*1 *2 *3)
+ (-12 (|has| *2 (-6 (-4338 "*"))) (-4 *5 (-366 *2)) (-4 *6 (-366 *2))
+ (-4 *2 (-1018)) (-5 *1 (-103 *2 *3 *4 *5 *6)) (-4 *3 (-1201 *2))
+ (-4 *4 (-663 *2 *5 *6)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-541))
+ (-5 *2
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1164) (-973)))
+ (-5 *1 (-174 *3)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4337)) (-4 *1 (-1213 *2)) (-4 *2 (-1179)))))
(((*1 *1 *1)
(-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
-(((*1 *2 *3) (-12 (-5 *3 (-372)) (-5 *2 (-219)) (-5 *1 (-1229))))
- ((*1 *2) (-12 (-5 *2 (-219)) (-5 *1 (-1229)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *9)) (-4 *8 (-1032 *5 *6 *7))
- (-4 *9 (-1038 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769))
- (-4 *7 (-823)) (-5 *2 (-747)) (-5 *1 (-1036 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *8)) (-5 *4 (-621 *9)) (-4 *8 (-1032 *5 *6 *7))
- (-4 *9 (-1076 *5 *6 *7 *8)) (-4 *5 (-444)) (-4 *6 (-769))
- (-4 *7 (-823)) (-5 *2 (-747)) (-5 *1 (-1112 *5 *6 *7 *8 *9)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-769))
- (-4 *3 (-13 (-823) (-10 -8 (-15 -2845 ((-1143) $))))) (-4 *5 (-541))
- (-5 *1 (-709 *4 *3 *5 *2)) (-4 *2 (-920 (-400 (-923 *5)) *4 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *4 (-1018)) (-4 *5 (-769))
- (-4 *3
- (-13 (-823)
- (-10 -8 (-15 -2845 ((-1143) $))
- (-15 -3011 ((-3 $ "failed") (-1143))))))
- (-5 *1 (-955 *4 *5 *3 *2)) (-4 *2 (-920 (-923 *4) *5 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-621 *6))
- (-4 *6
- (-13 (-823)
- (-10 -8 (-15 -2845 ((-1143) $))
- (-15 -3011 ((-3 $ "failed") (-1143))))))
- (-4 *4 (-1018)) (-4 *5 (-769)) (-5 *1 (-955 *4 *5 *6 *2))
- (-4 *2 (-920 (-923 *4) *5 *6)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1180)) (-5 *1 (-368 *4 *2))
- (-4 *2 (-13 (-366 *4) (-10 -7 (-6 -4338)))))))
+(((*1 *2 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-1157)))))
+(((*1 *2 *2) (-12 (-5 *1 (-932 *2)) (-4 *2 (-534)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-621 (-549))) (-5 *1 (-975 *3)) (-14 *3 (-549)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-356)) (-4 *3 (-1018))
+ (-5 *2 (-2 (|:| -2262 *1) (|:| -1809 *1))) (-4 *1 (-825 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-98 *5)) (-4 *5 (-356)) (-4 *5 (-1018))
+ (-5 *2 (-2 (|:| -2262 *3) (|:| -1809 *3))) (-5 *1 (-826 *5 *3))
+ (-4 *3 (-825 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-812))
+ (-5 *3
+ (-2 (|:| |fn| (-309 (-219))) (|:| -3059 (-621 (-219)))
+ (|:| |lb| (-621 (-816 (-219)))) (|:| |cf| (-621 (-309 (-219))))
+ (|:| |ub| (-621 (-816 (-219))))))
+ (-5 *2 (-1006))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-812))
+ (-5 *3
+ (-2 (|:| |lfn| (-621 (-309 (-219)))) (|:| -3059 (-621 (-219)))))
+ (-5 *2 (-1006)))))
+(((*1 *1) (-5 *1 (-139))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *4 (-549)) (-5 *6 (-1 (-1230) (-1225 *5) (-1225 *5) (-372)))
+ (-5 *3 (-1225 (-372))) (-5 *5 (-372)) (-5 *2 (-1230))
+ (-5 *1 (-764))))
+ ((*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3)
+ (-12 (-5 *4 (-549)) (-5 *6 (-1 (-1230) (-1225 *5) (-1225 *5) (-372)))
+ (-5 *3 (-1225 (-372))) (-5 *5 (-372)) (-5 *2 (-1230))
+ (-5 *1 (-764)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-671 *3)) (-4 *3 (-1066))
+ (-5 *2 (-621 (-2 (|:| -1791 *3) (|:| -3997 (-747))))))))
(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1125)) (-4 *1 (-357 *2 *4)) (-4 *2 (-1067))
- (-4 *4 (-1067))))
+ (-12 (-5 *3 (-1124)) (-4 *1 (-357 *2 *4)) (-4 *2 (-1066))
+ (-4 *4 (-1066))))
((*1 *1 *2)
- (-12 (-4 *1 (-357 *2 *3)) (-4 *2 (-1067)) (-4 *3 (-1067)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-356)) (-4 *4 (-541)) (-4 *5 (-1202 *4))
- (-5 *2 (-2 (|:| -2285 (-601 *4 *5)) (|:| -3658 (-400 *5))))
- (-5 *1 (-601 *4 *5)) (-5 *3 (-400 *5))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-621 (-1131 *3 *4))) (-5 *1 (-1131 *3 *4))
- (-14 *3 (-892)) (-4 *4 (-1018))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-444)) (-4 *3 (-1018))
- (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1)))
- (-4 *1 (-1202 *3)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-287 *2)) (-4 *2 (-703)) (-4 *2 (-1180)))))
+ (-12 (-4 *1 (-357 *2 *3)) (-4 *2 (-1066)) (-4 *3 (-1066)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-621 (-621 *3))) (-4 *3 (-823)) (-5 *1 (-1151 *3)))))
+ (-12 (-4 *3 (-13 (-300) (-145))) (-4 *4 (-13 (-823) (-594 (-1142))))
+ (-4 *5 (-769)) (-5 *1 (-895 *3 *4 *5 *2)) (-4 *2 (-920 *3 *5 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-27))
+ (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))
+ (-4 *5 (-1201 *4)) (-5 *2 (-621 (-629 (-400 *5))))
+ (-5 *1 (-633 *4 *5)) (-5 *3 (-629 (-400 *5))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-342)) (-5 *2 (-112)) (-5 *1 (-210 *4 *3))
+ (-4 *3 (-1201 *4)))))
(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-549)) (-5 *3 (-892)) (-4 *1 (-397))))
((*1 *1 *2 *2) (-12 (-5 *2 (-549)) (-4 *1 (-397))))
((*1 *2 *1)
- (-12 (-4 *1 (-1070 *3 *4 *5 *2 *6)) (-4 *3 (-1067)) (-4 *4 (-1067))
- (-4 *5 (-1067)) (-4 *6 (-1067)) (-4 *2 (-1067)))))
-(((*1 *1 *1) (-5 *1 (-1030))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *2 (-823)) (-4 *3 (-170))))
- ((*1 *2 *3 *3)
- (-12 (-4 *2 (-541)) (-5 *1 (-940 *2 *3)) (-4 *3 (-1202 *2))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *2 (-541))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1202 *2)) (-4 *2 (-1018)) (-4 *2 (-170)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143))))
- (-4 *6 (-769)) (-5 *2 (-400 (-923 *4))) (-5 *1 (-895 *4 *5 *6 *3))
- (-4 *3 (-920 *4 *6 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-665 *7)) (-4 *7 (-920 *4 *6 *5))
- (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143))))
- (-4 *6 (-769)) (-5 *2 (-665 (-400 (-923 *4))))
- (-5 *1 (-895 *4 *5 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *6 *5))
- (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143))))
- (-4 *6 (-769)) (-5 *2 (-621 (-400 (-923 *4))))
- (-5 *1 (-895 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1088 *2)) (-4 *2 (-1180)))))
+ (-12 (-4 *1 (-1069 *3 *4 *5 *2 *6)) (-4 *3 (-1066)) (-4 *4 (-1066))
+ (-4 *5 (-1066)) (-4 *6 (-1066)) (-4 *2 (-1066)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-983)) (-5 *2 (-834)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-549)) (-4 *4 (-769)) (-4 *5 (-823)) (-4 *2 (-1018))
- (-5 *1 (-314 *4 *5 *2 *6)) (-4 *6 (-920 *2 *4 *5)))))
+ (-12 (-5 *3 (-2 (|:| -3837 (-400 (-549))) (|:| -3847 (-400 (-549)))))
+ (-5 *2 (-400 (-549))) (-5 *1 (-991 *4)) (-4 *4 (-1201 (-549))))))
+(((*1 *1 *2) (-12 (-5 *2 (-400 (-549))) (-5 *1 (-107))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-621 (-525))) (-5 *1 (-525)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1066)) (-4 *6 (-857 *5)) (-5 *2 (-856 *5 *6 (-621 *6)))
+ (-5 *1 (-858 *5 *6 *4)) (-5 *3 (-621 *6)) (-4 *4 (-594 (-863 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1066)) (-5 *2 (-621 (-287 *3))) (-5 *1 (-858 *5 *3 *4))
+ (-4 *3 (-1009 (-1142))) (-4 *3 (-857 *5)) (-4 *4 (-594 (-863 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1066)) (-5 *2 (-621 (-287 (-923 *3))))
+ (-5 *1 (-858 *5 *3 *4)) (-4 *3 (-1018))
+ (-4007 (-4 *3 (-1009 (-1142)))) (-4 *3 (-857 *5))
+ (-4 *4 (-594 (-863 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1066)) (-5 *2 (-860 *5 *3)) (-5 *1 (-858 *5 *3 *4))
+ (-4007 (-4 *3 (-1009 (-1142)))) (-4007 (-4 *3 (-1018)))
+ (-4 *3 (-857 *5)) (-4 *4 (-594 (-863 *5))))))
+(((*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-541)) (-4 *2 (-534))))
+ ((*1 *1 *1) (-4 *1 (-1027))))
(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-621 (-1139 *5))) (-5 *3 (-1139 *5))
- (-4 *5 (-164 *4)) (-4 *4 (-534)) (-5 *1 (-147 *4 *5))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-621 *3)) (-4 *3 (-1202 *5))
- (-4 *5 (-1202 *4)) (-4 *4 (-342)) (-5 *1 (-351 *4 *5 *3))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-621 (-1139 (-549)))) (-5 *3 (-1139 (-549)))
- (-5 *1 (-557))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-621 (-1139 *1))) (-5 *3 (-1139 *1))
- (-4 *1 (-880)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-413 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1165) (-423 *3)))
- (-14 *4 (-1143)) (-14 *5 *2)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-4 *2 (-13 (-27) (-1165) (-423 *3) (-10 -8 (-15 -3846 ($ *4)))))
- (-4 *4 (-821))
- (-4 *5
- (-13 (-1204 *2 *4) (-356) (-1165)
- (-10 -8 (-15 -3456 ($ $)) (-15 -3893 ($ $)))))
- (-5 *1 (-415 *3 *2 *4 *5 *6 *7)) (-4 *6 (-954 *5)) (-14 *7 (-1143)))))
+ (-12 (-4 *3 (-356)) (-5 *1 (-278 *3 *2)) (-4 *2 (-1216 *3)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-621 *7)) (|:| -1981 *8)))
+ (-12 (-5 *3 (-2 (|:| |val| (-621 *7)) (|:| -1979 *8)))
(-4 *7 (-1032 *4 *5 *6)) (-4 *8 (-1038 *4 *5 *6 *7)) (-4 *4 (-444))
(-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
(-5 *1 (-959 *4 *5 *6 *7 *8))))
((*1 *2 *3 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-621 *7)) (|:| -1981 *8)))
+ (-12 (-5 *3 (-2 (|:| |val| (-621 *7)) (|:| -1979 *8)))
(-4 *7 (-1032 *4 *5 *6)) (-4 *8 (-1038 *4 *5 *6 *7)) (-4 *4 (-444))
(-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))
- (-5 *1 (-1074 *4 *5 *6 *7 *8)))))
+ (-5 *1 (-1073 *4 *5 *6 *7 *8)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1018)) (-5 *2 (-621 *1)) (-4 *1 (-1101 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1193 *3)) (-4 *3 (-1180)))))
-(((*1 *1 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1180))))
+ (-12 (-5 *2 (-2 (|:| |var| (-621 (-1142))) (|:| |pred| (-52))))
+ (-5 *1 (-863 *3)) (-4 *3 (-1066)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-833)) (-5 *3 (-128)) (-5 *2 (-1086)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1122 (-621 (-549)))) (-5 *1 (-854)) (-5 *3 (-549)))))
+(((*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-112))
+ (-5 *6 (-219)) (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-67 APROD))))
+ (-5 *8 (-3 (|:| |fn| (-381)) (|:| |fp| (-72 MSOLVE))))
+ (-5 *2 (-1006)) (-5 *1 (-733)))))
+(((*1 *1 *1) (-12 (-4 *1 (-238 *2)) (-4 *2 (-1179))))
((*1 *1 *1)
(-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
(-4 *4 (-823))))
- ((*1 *1 *1) (-12 (-4 *1 (-1214 *2)) (-4 *2 (-1180)))))
-(((*1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1229))))
- ((*1 *2 *2) (-12 (-5 *2 (-845)) (-5 *1 (-1229)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1018)) (-5 *1 (-865 *2 *3)) (-4 *2 (-1202 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1123 *3)) (-4 *3 (-1018)) (-5 *1 (-1127 *3)))))
-(((*1 *1 *1) (-4 *1 (-637))) ((*1 *1 *1) (-5 *1 (-1087))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-241 *4 *5)) (-14 *4 (-621 (-1143))) (-4 *5 (-1018))
- (-5 *2 (-473 *4 *5)) (-5 *1 (-915 *4 *5)))))
-(((*1 *1) (-5 *1 (-799))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-320 *3)) (-4 *3 (-1180))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-549)) (-5 *1 (-507 *3 *4)) (-4 *3 (-1180)) (-14 *4 *2))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1213 *2)) (-4 *2 (-1179)))))
(((*1 *2 *1 *1)
- (-12 (-5 *2 (-400 (-549))) (-5 *1 (-995 *3))
- (-4 *3 (-13 (-821) (-356) (-993)))))
- ((*1 *2 *3 *1 *2)
- (-12 (-4 *2 (-13 (-821) (-356))) (-5 *1 (-1028 *2 *3))
- (-4 *3 (-1202 *2))))
- ((*1 *2 *3 *1 *2)
- (-12 (-4 *1 (-1035 *2 *3)) (-4 *2 (-13 (-821) (-356)))
- (-4 *3 (-1202 *2)))))
+ (-12 (-4 *1 (-1064 *3)) (-4 *3 (-1066)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-541))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3726 *3)))
+ (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *1 *1) (-4 *1 (-637))) ((*1 *1 *1) (-5 *1 (-1086))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-621 (-1142))) (-5 *3 (-52)) (-5 *1 (-863 *4))
+ (-4 *4 (-1066)))))
+(((*1 *1) (-5 *1 (-142))) ((*1 *1 *1) (-5 *1 (-834))))
+(((*1 *2 *1) (-12 (-4 *1 (-650 *3)) (-4 *3 (-1179)) (-5 *2 (-747)))))
+(((*1 *2 *1) (-12 (-4 *1 (-300)) (-5 *2 (-747)))))
+(((*1 *2 *2) (-12 (-5 *2 (-621 (-665 (-309 (-549))))) (-5 *1 (-1002)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-923 *5)) (-4 *5 (-1018)) (-5 *2 (-473 *4 *5))
+ (-5 *1 (-915 *4 *5)) (-14 *4 (-621 (-1142))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1059 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *3 *4 *4 *5 *4 *4 *5)
+ (-12 (-5 *3 (-1124)) (-5 *4 (-549)) (-5 *5 (-665 (-219)))
+ (-5 *2 (-1006)) (-5 *1 (-734)))))
+(((*1 *2 *3) (-12 (-5 *3 (-747)) (-5 *2 (-1230)) (-5 *1 (-372)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-823)) (-5 *2 (-621 (-621 (-621 *4))))
+ (-5 *1 (-1150 *4)) (-5 *3 (-621 (-621 *4))))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-1107 *2 *3)) (-4 *2 (-13 (-1066) (-34)))
+ (-4 *3 (-13 (-1066) (-34))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
+ (-4 *2 (-423 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 *4)) (-4 *4 (-1018)) (-5 *2 (-1225 *4))
+ (-5 *1 (-1143 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-892)) (-5 *2 (-1225 *3)) (-5 *1 (-1143 *3))
+ (-4 *3 (-1018)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-549)) (-4 *5 (-342)) (-5 *2 (-411 (-1138 (-1138 *5))))
+ (-5 *1 (-1177 *5)) (-5 *3 (-1138 (-1138 *5))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-541)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -3726 *3)))
+ (-5 *1 (-940 *4 *3)) (-4 *3 (-1201 *4)))))
+(((*1 *1 *2 *3 *3 *4 *5)
+ (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *3 (-621 (-845)))
+ (-5 *4 (-621 (-892))) (-5 *5 (-621 (-256))) (-5 *1 (-460))))
+ ((*1 *1 *2 *3 *3 *4)
+ (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *3 (-621 (-845)))
+ (-5 *4 (-621 (-892))) (-5 *1 (-460))))
+ ((*1 *1 *2) (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *1 (-460))))
+ ((*1 *1 *1) (-5 *1 (-460))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *6)
+ (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
+ (-5 *6 (-3 (|:| |fn| (-381)) (|:| |fp| (-73 FCN)))) (-5 *2 (-1006))
+ (-5 *1 (-723)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
+ (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1124)) (-5 *1 (-1160)))))
+(((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-863 *3)) (-4 *3 (-1066))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1087 *3)) (-4 *3 (-1179)) (-5 *2 (-747)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1142)) (-5 *3 (-427)) (-4 *5 (-823))
+ (-5 *1 (-1072 *5 *4)) (-4 *4 (-423 *5)))))
+(((*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7)
+ (-12 (-5 *3 (-549)) (-5 *5 (-112)) (-5 *6 (-665 (-219)))
+ (-5 *7 (-3 (|:| |fn| (-381)) (|:| |fp| (-76 OBJFUN))))
+ (-5 *4 (-219)) (-5 *2 (-1006)) (-5 *1 (-730)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1225 *5)) (-4 *5 (-617 *4)) (-4 *4 (-541))
+ (-5 *2 (-112)) (-5 *1 (-616 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-342)) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1138 *4)) (-4 *4 (-342)) (-5 *2 (-112))
+ (-5 *1 (-350 *4)))))
+(((*1 *1 *1) (-5 *1 (-1030))))
+(((*1 *2 *1) (-12 (-5 *2 (-1101)) (-5 *1 (-516)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1142)) (-5 *2 (-1 (-1138 (-923 *4)) (-923 *4)))
+ (-5 *1 (-1233 *4)) (-4 *4 (-356)))))
+(((*1 *2)
+ (-12 (-4 *3 (-1183)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 (-400 *4)))
+ (-5 *2 (-1225 *1)) (-4 *1 (-335 *3 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *3 (-13 (-300) (-10 -8 (-15 -2620 ((-411 $) $)))))
+ (-4 *4 (-1201 *3))
+ (-5 *2
+ (-2 (|:| -2619 (-665 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-665 *3))))
+ (-5 *1 (-343 *3 *4 *5)) (-4 *5 (-402 *3 *4))))
+ ((*1 *2)
+ (-12 (-4 *3 (-1201 (-549)))
+ (-5 *2
+ (-2 (|:| -2619 (-665 (-549))) (|:| |basisDen| (-549))
+ (|:| |basisInv| (-665 (-549)))))
+ (-5 *1 (-744 *3 *4)) (-4 *4 (-402 (-549) *3))))
+ ((*1 *2)
+ (-12 (-4 *3 (-342)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 *4))
+ (-5 *2
+ (-2 (|:| -2619 (-665 *4)) (|:| |basisDen| *4)
+ (|:| |basisInv| (-665 *4))))
+ (-5 *1 (-956 *3 *4 *5 *6)) (-4 *6 (-701 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *3 (-342)) (-4 *4 (-1201 *3)) (-4 *5 (-1201 *4))
+ (-5 *2
+ (-2 (|:| -2619 (-665 *4)) (|:| |basisDen| *4)
+ (|:| |basisInv| (-665 *4))))
+ (-5 *1 (-1234 *3 *4 *5 *6)) (-4 *6 (-402 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1216 *4))
+ (-4 *4 (-38 (-400 (-549)))) (-5 *2 (-1 (-1122 *4) (-1122 *4)))
+ (-5 *1 (-1218 *4 *5)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-372))))
+ ((*1 *1 *1 *1) (-4 *1 (-534)))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356))))
+ ((*1 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-747)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-914 *3)) (-4 *3 (-13 (-356) (-1164) (-973)))
+ (-5 *1 (-174 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-845)) (-5 *1 (-256))))
+ ((*1 *1 *2) (-12 (-5 *2 (-372)) (-5 *1 (-256)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-142))))
+ ((*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-142)))))
+(((*1 *2 *1 *1 *3 *4)
+ (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6))
+ (-4 *5 (-13 (-1066) (-34))) (-4 *6 (-13 (-1066) (-34)))
+ (-5 *2 (-112)) (-5 *1 (-1106 *5 *6)))))
(((*1 *2 *1 *3)
(-12 (-5 *3 (-621 *1)) (-4 *1 (-1032 *4 *5 *6)) (-4 *4 (-1018))
(-4 *5 (-769)) (-4 *6 (-823)) (-5 *2 (-112))))
@@ -17280,1116 +17391,1005 @@
(-12 (-4 *1 (-1032 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-769))
(-4 *5 (-823)) (-5 *2 (-112))))
((*1 *2 *1)
- (-12 (-4 *1 (-1173 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
+ (-12 (-4 *1 (-1172 *3 *4 *5 *6)) (-4 *3 (-541)) (-4 *4 (-769))
(-4 *5 (-823)) (-4 *6 (-1032 *3 *4 *5)) (-5 *2 (-112))))
((*1 *2 *3 *1)
- (-12 (-4 *1 (-1173 *4 *5 *6 *3)) (-4 *4 (-541)) (-4 *5 (-769))
+ (-12 (-4 *1 (-1172 *4 *5 *6 *3)) (-4 *4 (-541)) (-4 *5 (-769))
(-4 *6 (-823)) (-4 *3 (-1032 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1065 *2)) (-4 *2 (-1067)))))
-(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))))
-(((*1 *2 *1) (-12 (-5 *2 (-411 *3)) (-5 *1 (-885 *3)) (-4 *3 (-300)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-621
- (-2 (|:| -3123 (-747))
- (|:| |eqns|
- (-621
- (-2 (|:| |det| *7) (|:| |rows| (-621 (-549)))
- (|:| |cols| (-621 (-549))))))
- (|:| |fgb| (-621 *7)))))
- (-4 *7 (-920 *4 *6 *5)) (-4 *4 (-13 (-300) (-145)))
- (-4 *5 (-13 (-823) (-594 (-1143)))) (-4 *6 (-769)) (-5 *2 (-747))
- (-5 *1 (-895 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1139 *1)) (-5 *4 (-1143)) (-4 *1 (-27))
- (-5 *2 (-621 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-1139 *1)) (-4 *1 (-27)) (-5 *2 (-621 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-923 *1)) (-4 *1 (-27)) (-5 *2 (-621 *1))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1143)) (-4 *4 (-13 (-823) (-541))) (-5 *2 (-621 *1))
- (-4 *1 (-29 *4))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *2 (-621 *1)) (-4 *1 (-29 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-309 (-219))) (-5 *4 (-621 (-1143)))
- (-5 *5 (-1061 (-816 (-219)))) (-5 *2 (-1123 (-219))) (-5 *1 (-293)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-834)) (-5 *1 (-383 *3 *4 *5)) (-14 *3 (-747))
- (-14 *4 (-747)) (-4 *5 (-170)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-736)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-629 (-400 *2))) (-4 *2 (-1202 *4)) (-5 *1 (-786 *4 *2))
- (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549)))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-630 *2 (-400 *2))) (-4 *2 (-1202 *4))
- (-5 *1 (-786 *4 *2))
- (-4 *4 (-13 (-356) (-145) (-1009 (-549)) (-1009 (-400 (-549))))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-621 *7)) (-5 *5 (-621 (-621 *8))) (-4 *7 (-823))
- (-4 *8 (-300)) (-4 *6 (-769)) (-4 *9 (-920 *8 *6 *7))
- (-5 *2
- (-2 (|:| |unitPart| *9)
- (|:| |suPart|
- (-621 (-2 (|:| -2121 (-1139 *9)) (|:| -3731 (-549)))))))
- (-5 *1 (-719 *6 *7 *8 *9)) (-5 *3 (-1139 *9)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-863 *4)) (-4 *4 (-1067)) (-5 *2 (-621 *5))
- (-5 *1 (-861 *4 *5)) (-4 *5 (-1180)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-356)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4))
- (-5 *2 (-747)) (-5 *1 (-512 *4 *5 *6 *3)) (-4 *3 (-663 *4 *5 *6))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1018))
+ (-14 *4 (-621 (-1142)))))
((*1 *2 *1)
- (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3))
- (-4 *5 (-366 *3)) (-4 *3 (-541)) (-5 *2 (-747))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-217 *3 *4)) (-4 *3 (-13 (-1018) (-823)))
+ (-14 *4 (-621 (-1142))))))
+(((*1 *2 *1) (-12 (-5 *2 (-549)) (-5 *1 (-834)))))
+(((*1 *2 *2) (-12 (-5 *2 (-549)) (-5 *1 (-898)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-798)))))
+(((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-356)) (-4 *4 (-366 *3)) (-4 *5 (-366 *3))
+ (-5 *1 (-512 *3 *4 *5 *2)) (-4 *2 (-663 *3 *4 *5))))
((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-4 *4 (-170)) (-4 *5 (-366 *4))
- (-4 *6 (-366 *4)) (-5 *2 (-747)) (-5 *1 (-664 *4 *5 *6 *3))
- (-4 *3 (-663 *4 *5 *6))))
+ (|partial| -12 (-4 *4 (-541)) (-4 *5 (-366 *4)) (-4 *6 (-366 *4))
+ (-4 *7 (-963 *4)) (-4 *2 (-663 *7 *8 *9))
+ (-5 *1 (-513 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-663 *4 *5 *6))
+ (-4 *8 (-366 *7)) (-4 *9 (-366 *7))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-663 *2 *3 *4)) (-4 *2 (-1018))
+ (-4 *3 (-366 *2)) (-4 *4 (-366 *2)) (-4 *2 (-356))))
+ ((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-356)) (-4 *3 (-170)) (-4 *4 (-366 *3))
+ (-4 *5 (-366 *3)) (-5 *1 (-664 *3 *4 *5 *2))
+ (-4 *2 (-663 *3 *4 *5))))
+ ((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-665 *2)) (-4 *2 (-356)) (-4 *2 (-1018))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-1089 *2 *3 *4 *5)) (-4 *3 (-1018))
+ (-4 *4 (-232 *2 *3)) (-4 *5 (-232 *2 *3)) (-4 *3 (-356))))
+ ((*1 *2 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-823)) (-5 *1 (-1150 *3)))))
+(((*1 *2 *1 *1)
+ (|partial| -12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361))
+ (-5 *2 (-1138 *3))))
((*1 *2 *1)
- (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
- (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-4 *5 (-541))
- (-5 *2 (-747)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-270 *3 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1143))
- (-4 *4 (-13 (-541) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *1 (-270 *4 *2)) (-4 *2 (-13 (-27) (-1165) (-423 *4)))))
- ((*1 *1 *1) (-5 *1 (-372)))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-444)) (-4 *6 (-769)) (-4 *7 (-823))
- (-4 *3 (-1032 *5 *6 *7))
- (-5 *2 (-621 (-2 (|:| |val| *3) (|:| -1981 *4))))
- (-5 *1 (-752 *5 *6 *7 *3 *4)) (-4 *4 (-1038 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-747)) (-5 *1 (-863 *3)) (-4 *3 (-1067))))
- ((*1 *2 *1) (-12 (-4 *1 (-1088 *3)) (-4 *3 (-1180)) (-5 *2 (-747)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1143)) (-5 *3 (-427)) (-4 *5 (-823))
- (-5 *1 (-1073 *5 *4)) (-4 *4 (-423 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-798)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1180)) (-5 *1 (-180 *3 *2)) (-4 *2 (-650 *3)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-621 *3)) (-4 *3 (-300)) (-5 *1 (-177 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-621 *5)) (-4 *5 (-170)) (-5 *1 (-135 *3 *4 *5))
- (-14 *3 (-549)) (-14 *4 (-747)))))
+ (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-4 *3 (-361))
+ (-5 *2 (-1138 *3)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-219)) (-5 *4 (-549)) (-5 *2 (-1006)) (-5 *1 (-735)))))
(((*1 *2)
- (|partial| -12 (-4 *4 (-1184)) (-4 *5 (-1202 (-400 *2)))
- (-4 *2 (-1202 *4)) (-5 *1 (-334 *3 *4 *2 *5))
- (-4 *3 (-335 *4 *2 *5))))
- ((*1 *2)
- (|partial| -12 (-4 *1 (-335 *3 *2 *4)) (-4 *3 (-1184))
- (-4 *4 (-1202 (-400 *2))) (-4 *2 (-1202 *3)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-621 *6)) (-4 *6 (-1032 *3 *4 *5)) (-4 *3 (-145))
- (-4 *3 (-300)) (-4 *3 (-541)) (-4 *4 (-769)) (-4 *5 (-823))
- (-5 *1 (-948 *3 *4 *5 *6)))))
+ (-12 (-5 *2 (-1225 (-1067 *3 *4))) (-5 *1 (-1067 *3 *4))
+ (-14 *3 (-892)) (-14 *4 (-892)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |var| (-621 (-1143))) (|:| |pred| (-52))))
- (-5 *1 (-863 *3)) (-4 *3 (-1067)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3 (-549))) (-4 *3 (-1018)) (-5 *1 (-98 *3))))
- ((*1 *1 *2 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-98 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1018)) (-5 *1 (-98 *3)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-372))))
- ((*1 *1 *1 *1) (-4 *1 (-534)))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356))))
- ((*1 *1 *2) (-12 (-5 *1 (-695 *2)) (-4 *2 (-356))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-549)) (-5 *1 (-747)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-891)) (-5 *2 (-2 (|:| -1570 (-621 *1)) (|:| -4248 *1)))
- (-5 *3 (-621 *1)))))
+ (-12 (-4 *1 (-663 *3 *4 *5)) (-4 *3 (-1018)) (-4 *4 (-366 *3))
+ (-4 *5 (-366 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1021 *3 *4 *5 *6 *7)) (-4 *5 (-1018))
+ (-4 *6 (-232 *4 *5)) (-4 *7 (-232 *3 *5)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-309 *3)) (-4 *3 (-541)) (-4 *3 (-823)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-541)) (-4 *4 (-963 *3)) (-5 *1 (-140 *3 *4 *2))
- (-4 *2 (-366 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-541)) (-4 *5 (-963 *4)) (-4 *2 (-366 *4))
- (-5 *1 (-494 *4 *5 *2 *3)) (-4 *3 (-366 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-665 *5)) (-4 *5 (-963 *4)) (-4 *4 (-541))
- (-5 *2 (-665 *4)) (-5 *1 (-669 *4 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-541)) (-4 *4 (-963 *3)) (-5 *1 (-1195 *3 *4 *2))
- (-4 *2 (-1202 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-142))))
- ((*1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-142)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-797)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-142)))))
-(((*1 *2) (-12 (-5 *2 (-621 (-1143))) (-5 *1 (-104)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-275 *2)) (-4 *2 (-1180)) (-4 *2 (-823))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-275 *3)) (-4 *3 (-1180))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-939 *2)) (-4 *2 (-823)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-549)) (-4 *1 (-316 *2 *4)) (-4 *4 (-130))
- (-4 *2 (-1067))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-354 *2)) (-4 *2 (-1067))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-379 *2)) (-4 *2 (-1067))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-411 *2)) (-4 *2 (-541))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-549)) (-4 *2 (-1067)) (-5 *1 (-625 *2 *4 *5))
- (-4 *4 (-23)) (-14 *5 *4)))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-549)) (-5 *1 (-795 *2)) (-4 *2 (-823)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-747)) (-5 *1 (-651 *3)) (-4 *3 (-1018))
- (-4 *3 (-1067)))))
+ (-12 (-4 *3 (-13 (-356) (-821))) (-5 *1 (-179 *3 *2))
+ (-4 *2 (-1201 (-167 *3))))))
(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-541) (-145)))
- (-5 *2 (-2 (|:| -3838 *3) (|:| -3848 *3))) (-5 *1 (-1196 *4 *3))
- (-4 *3 (-1202 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-621 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1181 *2))
- (-4 *2 (-1067))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-621 *2)) (-4 *2 (-1067)) (-4 *2 (-823))
- (-5 *1 (-1181 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-400 (-923 (-167 (-549))))) (-5 *2 (-621 (-167 *4)))
- (-5 *1 (-371 *4)) (-4 *4 (-13 (-356) (-821)))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-621 (-400 (-923 (-167 (-549))))))
- (-5 *4 (-621 (-1143))) (-5 *2 (-621 (-621 (-167 *5))))
- (-5 *1 (-371 *5)) (-4 *5 (-13 (-356) (-821))))))
+ (-12 (-4 *1 (-866))
+ (-5 *3
+ (-2 (|:| |pde| (-621 (-309 (-219))))
+ (|:| |constraints|
+ (-621
+ (-2 (|:| |start| (-219)) (|:| |finish| (-219))
+ (|:| |grid| (-747)) (|:| |boundaryType| (-549))
+ (|:| |dStart| (-665 (-219))) (|:| |dFinish| (-665 (-219))))))
+ (|:| |f| (-621 (-621 (-309 (-219))))) (|:| |st| (-1124))
+ (|:| |tol| (-219))))
+ (-5 *2 (-1006)))))
+(((*1 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534))))
+ ((*1 *1 *2) (-12 (-5 *2 (-621 (-549))) (-5 *1 (-942)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *5 *6)) (-4 *6 (-594 (-1142)))
+ (-4 *4 (-356)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-5 *2 (-1131 (-621 (-923 *4)) (-621 (-287 (-923 *4)))))
+ (-5 *1 (-495 *4 *5 *6 *7)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-287 (-816 *3))) (-4 *3 (-13 (-27) (-1165) (-423 *5)))
- (-4 *5 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *2
- (-3 (-816 *3)
- (-2 (|:| |leftHandLimit| (-3 (-816 *3) "failed"))
- (|:| |rightHandLimit| (-3 (-816 *3) "failed")))
- "failed"))
- (-5 *1 (-614 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-287 *3)) (-5 *5 (-1125))
- (-4 *3 (-13 (-27) (-1165) (-423 *6)))
- (-4 *6 (-13 (-444) (-823) (-1009 (-549)) (-617 (-549))))
- (-5 *2 (-816 *3)) (-5 *1 (-614 *6 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-287 (-816 (-923 *5)))) (-4 *5 (-444))
- (-5 *2
- (-3 (-816 (-400 (-923 *5)))
- (-2 (|:| |leftHandLimit| (-3 (-816 (-400 (-923 *5))) "failed"))
- (|:| |rightHandLimit| (-3 (-816 (-400 (-923 *5))) "failed")))
- "failed"))
- (-5 *1 (-615 *5)) (-5 *3 (-400 (-923 *5)))))
+ (-12 (-4 *2 (-1201 *4)) (-5 *1 (-783 *4 *2 *3 *5))
+ (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *3 (-632 *2))
+ (-4 *5 (-632 (-400 *2)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-287 (-400 (-923 *5)))) (-5 *3 (-400 (-923 *5)))
- (-4 *5 (-444))
- (-5 *2
- (-3 (-816 *3)
- (-2 (|:| |leftHandLimit| (-3 (-816 *3) "failed"))
- (|:| |rightHandLimit| (-3 (-816 *3) "failed")))
- "failed"))
- (-5 *1 (-615 *5))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-287 (-400 (-923 *6)))) (-5 *5 (-1125))
- (-5 *3 (-400 (-923 *6))) (-4 *6 (-444)) (-5 *2 (-816 *3))
- (-5 *1 (-615 *6)))))
+ (-12 (-4 *2 (-1201 *4)) (-5 *1 (-783 *4 *2 *5 *3))
+ (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549))))) (-4 *5 (-632 *2))
+ (-4 *3 (-632 (-400 *2))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1059 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-621 (-2 (|:| |totdeg| (-747)) (|:| -2443 *3))))
+ (-5 *4 (-747)) (-4 *3 (-920 *5 *6 *7)) (-4 *5 (-444)) (-4 *6 (-769))
+ (-4 *7 (-823)) (-5 *1 (-441 *5 *6 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1060 (-816 (-372)))) (-5 *2 (-1060 (-816 (-219))))
+ (-5 *1 (-298)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-541)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-621 *7)) (|:| |badPols| (-621 *7))))
+ (-5 *1 (-948 *4 *5 *6 *7)) (-5 *3 (-621 *7)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)) (-4 *2 (-444)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-232 *3 *2)) (-4 *2 (-1179)) (-4 *2 (-1018))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-747)) (-5 *1 (-834))))
+ ((*1 *1 *1) (-5 *1 (-834)))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-914 (-219))) (-5 *2 (-219)) (-5 *1 (-1175))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1223 *2)) (-4 *2 (-1179)) (-4 *2 (-1018)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-541)) (-5 *2 (-621 (-747))) (-5 *1 (-940 *4 *3))
- (-4 *3 (-1202 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1143))
- (-4 *5 (-13 (-444) (-823) (-145) (-1009 (-549)) (-617 (-549))))
- (-5 *2 (-567 *3)) (-5 *1 (-542 *5 *3))
- (-4 *3 (-13 (-27) (-1165) (-423 *5))))))
-(((*1 *2 *1) (-12 (-5 *2 (-621 (-1179))) (-5 *1 (-515)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-665 *7)) (-5 *3 (-621 *7)) (-4 *7 (-920 *4 *6 *5))
- (-4 *4 (-13 (-300) (-145))) (-4 *5 (-13 (-823) (-594 (-1143))))
- (-4 *6 (-769)) (-5 *1 (-895 *4 *5 *6 *7)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1143)) (-5 *2 (-108)) (-5 *1 (-173))))
- ((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1143)) (-5 *2 (-108)) (-5 *1 (-1052)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-823)) (-4 *5 (-769))
- (-4 *6 (-541)) (-4 *7 (-920 *6 *5 *3))
- (-5 *1 (-454 *5 *3 *6 *7 *2))
- (-4 *2
- (-13 (-1009 (-400 (-549))) (-356)
- (-10 -8 (-15 -3846 ($ *7)) (-15 -1394 (*7 $))
- (-15 -1403 (*7 $))))))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-621 (-549))) (-5 *1 (-1077)) (-5 *3 (-549)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1180)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-874 *3)) (-4 *3 (-1067)) (-5 *2 (-1069 *3))))
- ((*1 *2 *1 *3)
- (-12 (-4 *4 (-1067)) (-5 *2 (-1069 (-621 *4))) (-5 *1 (-875 *4))
- (-5 *3 (-621 *4))))
- ((*1 *2 *1 *3)
- (-12 (-4 *4 (-1067)) (-5 *2 (-1069 (-1069 *4))) (-5 *1 (-875 *4))
- (-5 *3 (-1069 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *2 (-1069 *3)) (-5 *1 (-875 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-769)) (-4 *4 (-823)) (-4 *6 (-300)) (-5 *2 (-411 *3))
- (-5 *1 (-719 *5 *4 *6 *3)) (-4 *3 (-920 *6 *5 *4)))))
+ (-12 (-5 *3 (-621 (-2 (|:| -2119 (-1138 *6)) (|:| -1714 (-549)))))
+ (-4 *6 (-300)) (-4 *4 (-769)) (-4 *5 (-823)) (-5 *2 (-112))
+ (-5 *1 (-719 *4 *5 *6 *7)) (-4 *7 (-920 *6 *4 *5))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1100 *2)) (-4 *2 (-1018)))))
+(((*1 *2) (-12 (-5 *2 (-621 *3)) (-5 *1 (-1050 *3)) (-4 *3 (-131)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-959 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-444)) (-4 *5 (-769)) (-4 *6 (-823))
+ (-4 *7 (-1032 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1073 *4 *5 *6 *7 *3)) (-4 *3 (-1038 *4 *5 *6 *7)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-495 (-400 (-549)) (-234 *5 (-747)) (-836 *4)
+ (-241 *4 (-400 (-549)))))
+ (-14 *4 (-621 (-1142))) (-14 *5 (-747)) (-5 *2 (-112))
+ (-5 *1 (-496 *4 *5)))))
(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1157 *3 *4)) (-4 *3 (-1067))
- (-4 *4 (-1067)))))
+ (-12 (-5 *2 (-400 (-923 *3))) (-5 *1 (-445 *3 *4 *5 *6))
+ (-4 *3 (-541)) (-4 *3 (-170)) (-14 *4 (-892))
+ (-14 *5 (-621 (-1142))) (-14 *6 (-1225 (-665 *3))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-621 (-400 (-923 *5)))) (-5 *4 (-621 (-1142)))
+ (-4 *5 (-541)) (-5 *2 (-621 (-621 (-923 *5)))) (-5 *1 (-1148 *5)))))
+(((*1 *1 *1 *1 *1 *1)
+ (-12 (-4 *1 (-1032 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
+ (-4 *4 (-823)) (-4 *2 (-541)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1059 *3)) (-4 *3 (-1179)) (-5 *2 (-549)))))
(((*1 *1 *1)
- (-12 (-4 *1 (-319 *2 *3)) (-4 *2 (-1018)) (-4 *3 (-768))
- (-4 *2 (-444))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-335 *2 *3 *4)) (-4 *2 (-1184)) (-4 *3 (-1202 *2))
- (-4 *4 (-1202 (-400 *3)))))
- ((*1 *1 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-1018)) (-4 *2 (-444))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-920 *3 *4 *2)) (-4 *3 (-1018)) (-4 *4 (-769))
- (-4 *2 (-823)) (-4 *3 (-444))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-920 *2 *3 *4)) (-4 *2 (-1018)) (-4 *3 (-769))
- (-4 *4 (-823)) (-4 *2 (-444))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-300)) (-4 *3 (-541)) (-5 *1 (-1130 *3 *2))
- (-4 *2 (-1202 *3)))))
-(((*1 *2) (-12 (-5 *2 (-621 *3)) (-5 *1 (-1051 *3)) (-4 *3 (-131)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-621 *6)) (-5 *4 (-621 (-241 *5 *6))) (-4 *6 (-444))
- (-5 *2 (-241 *5 *6)) (-14 *5 (-621 (-1143))) (-5 *1 (-609 *5 *6)))))
+ (-12 (-5 *1 (-576 *2)) (-4 *2 (-38 (-400 (-549)))) (-4 *2 (-1018)))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 *3)) (-4 *3 (-1066)) (-5 *1 (-90 *3)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-434 *3)) (-4 *3 (-1202 (-549))))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *2 (-1006))
- (-5 *1 (-724)))))
+ (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549)))))
+ (-4 *5 (-1201 *4)) (-5 *2 (-621 (-2 (|:| -2596 *5) (|:| -2388 *5))))
+ (-5 *1 (-783 *4 *5 *3 *6)) (-4 *3 (-632 *5))
+ (-4 *6 (-632 (-400 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549)))))
+ (-4 *4 (-1201 *5)) (-5 *2 (-621 (-2 (|:| -2596 *4) (|:| -2388 *4))))
+ (-5 *1 (-783 *5 *4 *3 *6)) (-4 *3 (-632 *4))
+ (-4 *6 (-632 (-400 *4)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-356) (-145) (-1009 (-400 (-549)))))
+ (-4 *5 (-1201 *4)) (-5 *2 (-621 (-2 (|:| -2596 *5) (|:| -2388 *5))))
+ (-5 *1 (-783 *4 *5 *6 *3)) (-4 *6 (-632 *5))
+ (-4 *3 (-632 (-400 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-13 (-356) (-145) (-1009 (-400 (-549)))))
+ (-4 *4 (-1201 *5)) (-5 *2 (-621 (-2 (|:| -2596 *4) (|:| -2388 *4))))
+ (-5 *1 (-783 *5 *4 *6 *3)) (-4 *6 (-632 *4))
+ (-4 *3 (-632 (-400 *4))))))
(((*1 *2 *3 *4 *5 *5 *5 *5 *4 *6)
- (-12 (-5 *4 (-549)) (-5 *6 (-1 (-1231) (-1226 *5) (-1226 *5) (-372)))
- (-5 *3 (-1226 (-372))) (-5 *5 (-372)) (-5 *2 (-1231))
+ (-12 (-5 *4 (-549)) (-5 *6 (-1 (-1230) (-1225 *5) (-1225 *5) (-372)))
+ (-5 *3 (-1225 (-372))) (-5 *5 (-372)) (-5 *2 (-1230))
(-5 *1 (-764)))))
-(((*1 *2)
- (-12 (-4 *1 (-335 *3 *4 *5)) (-4 *3 (-1184)) (-4 *4 (-1202 *3))
- (-4 *5 (-1202 (-400 *4))) (-5 *2 (-112)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *2 (-13 (-356) (-10 -8 (-15 ** ($ $ (-400 (-549)))))))
- (-5 *1 (-1095 *3 *2)) (-4 *3 (-1202 *2)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-621 (-923 *4))) (-5 *3 (-621 (-1143))) (-4 *4 (-444))
- (-5 *1 (-889 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1060 *3)) (-4 *3 (-1180)) (-5 *2 (-549)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-747)) (-5 *1 (-102 *3)) (-4 *3 (-1067)))))
-(((*1 *2 *3) (-12 (-5 *3 (-798)) (-5 *2 (-52)) (-5 *1 (-805)))))
-(((*1 *2 *2) (-12 (-5 *2 (-219)) (-5 *1 (-220))))
- ((*1 *2 *2) (-12 (-5 *2 (-167 (-219))) (-5 *1 (-220))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-424 *3 *2))
- (-4 *2 (-423 *3))))
- ((*1 *1 *1) (-4 *1 (-1106))))
-(((*1 *2 *2) (-12 (-5 *2 (-892)) (-5 *1 (-350 *3)) (-4 *3 (-342)))))
-(((*1 *1 *1 *1) (-4 *1 (-141)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-823) (-541))) (-5 *1 (-156 *3 *2))
- (-4 *2 (-423 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *1 (-157 *2)) (-4 *2 (-534)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-217 *2 *3)) (-4 *2 (-13 (-1018) (-823)))
+ (-14 *3 (-621 (-1142))))))
(((*1 *2 *1) (-12 (-5 *2 (-750)) (-5 *1 (-52)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-747)) (-4 *5 (-1018)) (-5 *2 (-549))
- (-5 *1 (-435 *5 *3 *6)) (-4 *3 (-1202 *5))
- (-4 *6 (-13 (-397) (-1009 *5) (-356) (-1165) (-277)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-1018)) (-5 *2 (-549)) (-5 *1 (-435 *4 *3 *5))
- (-4 *3 (-1202 *4))
- (-4 *5 (-13 (-397) (-1009 *4) (-356) (-1165) (-277))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1231)) (-5 *1 (-323)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1180)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-983)) (-5 *2 (-834)))))
-(((*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3)
- (-12 (-5 *3 (-549)) (-5 *4 (-665 (-219))) (-5 *5 (-219))
- (-5 *2 (-1006)) (-5 *1 (-728)))))
-(((*1 *1 *2) (-12 (-5 *2 (-621 (-1125))) (-5 *1 (-323))))
- ((*1 *1 *2) (-12 (-5 *2 (-1125)) (-5 *1 (-323)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-954 *2)) (-4 *2 (-1165)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-219) (-219) (-219) (-219))) (-5 *1 (-256))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-219) (-219) (-219))) (-5 *1 (-256))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-219) (-219))) (-5 *1 (-256)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1143)) (-5 *4 (-923 (-549))) (-5 *2 (-323))
- (-5 *1 (-325)))))
-(((*1 *2 *1)
- (-12
+(((*1 *1 *1 *1)
+ (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-549)) (-14 *3 (-747))
+ (-4 *4 (-170))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1142)) (-4 *4 (-13 (-823) (-541))) (-5 *1 (-156 *4 *2))
+ (-4 *2 (-423 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1058 *2)) (-4 *2 (-423 *4)) (-4 *4 (-13 (-823) (-541)))
+ (-5 *1 (-156 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1058 *1)) (-4 *1 (-158))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-158)) (-5 *2 (-1142))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-457 *2 *3)) (-4 *2 (-170)) (-4 *3 (-23))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-747)) (-5 *1 (-1245 *3 *4)) (-4 *3 (-823))
+ (-4 *4 (-170)))))
+(((*1 *2)
+ (-12 (-4 *3 (-13 (-823) (-541) (-1009 (-549)))) (-5 *2 (-1230))
+ (-5 *1 (-426 *3 *4)) (-4 *4 (-423 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1059 *2)) (-4 *2 (-1179)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1 *8 *8))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *7) (|:| -3847 *7) (|:| |sol?| (-112)))
+ (-549) *7))
+ (-5 *6 (-621 (-400 *8))) (-4 *7 (-356)) (-4 *8 (-1201 *7))
+ (-5 *3 (-400 *8))
+ (-5 *2
+ (-2
+ (|:| |answer|
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-621 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (|:| |a0| *7)))
+ (-5 *1 (-559 *7 *8)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-112)) (-5 *5 (-1068 (-747))) (-5 *6 (-747))
(-5 *2
- (-1226
- (-2 (|:| |scaleX| (-219)) (|:| |scaleY| (-219))
- (|:| |deltaX| (-219)) (|:| |deltaY| (-219)) (|:| -4115 (-549))
- (|:| -2791 (-549)) (|:| |spline| (-549)) (|:| -1669 (-549))
- (|:| |axesColor| (-845)) (|:| -2036 (-549))
- (|:| |unitsColor| (-845)) (|:| |showing| (-549)))))
- (-5 *1 (-1227)))))
+ (-2 (|:| |contp| (-549))
+ (|:| -3390 (-621 (-2 (|:| |irr| *3) (|:| -2129 (-549)))))))
+ (-5 *1 (-434 *3)) (-4 *3 (-1201 (-549))))))
+(((*1 *1 *2) (-12 (-5 *2 (-621 (-1124))) (-5 *1 (-323))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1124)) (-5 *1 (-323)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1009 (-549))) (-4 *3 (-13 (-823) (-541)))
+ (-5 *1 (-32 *3 *2)) (-4 *2 (-423 *3))))
+ ((*1 *2)
+ (-12 (-4 *4 (-170)) (-5 *2 (-1138 *4)) (-5 *1 (-163 *3 *4))
+ (-4 *3 (-164 *4))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1018)) (-4 *1 (-295))))
+ ((*1 *2) (-12 (-4 *1 (-322 *3)) (-4 *3 (-356)) (-5 *2 (-1138 *3))))
+ ((*1 *2) (-12 (-4 *1 (-701 *3 *2)) (-4 *3 (-170)) (-4 *2 (-1201 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1035 *3 *2)) (-4 *3 (-13 (-821) (-356)))
+ (-4 *2 (-1201 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-621 *2)) (-4 *2 (-423 *4)) (-5 *1 (-156 *4 *2))
+ (-4 *4 (-13 (-823) (-541))))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-219)) (-5 *4 (-549))
+ (-5 *5 (-3 (|:| |fn| (-381)) (|:| |fp| (-63 G)))) (-5 *2 (-1006))
+ (-5 *1 (-725)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1142)) (-5 *2 (-1230)) (-5 *1 (-1145))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1230)) (-5 *1 (-1146)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-621 (-621 (-914 (-219))))) (-5 *1 (-1175 *3))
- (-4 *3 (-945)))))
-((-1259 . 737257) (-1260 . 736897) (-1261 . 736799) (-1262 . 736588)
- (-1263 . 736522) (-1264 . 736411) (-1265 . 736277) (-1266 . 736222)
- (-1267 . 736165) (-1268 . 736112) (-1269 . 735780) (-1270 . 735729)
- (-1271 . 735544) (-1272 . 735474) (-1273 . 735243) (-1274 . 735177)
- (-1275 . 735103) (-1276 . 735031) (-1277 . 734920) (-1278 . 734790)
- (-1279 . 734666) (-1280 . 734481) (-1281 . 734377) (-1282 . 734297)
- (-1283 . 734137) (-1284 . 734066) (-1285 . 733471) (-1286 . 733378)
- (-1287 . 733234) (-1288 . 732862) (-1289 . 732805) (-1290 . 732722)
- (-1291 . 732416) (-1292 . 732251) (-1293 . 732052) (-1294 . 731992)
- (-1295 . 731799) (-1296 . 731692) (-1297 . 730380) (-1298 . 730065)
- (-1299 . 729863) (-1300 . 729705) (-1301 . 729613) (-1302 . 729121)
- (-1303 . 728903) (-1304 . 728846) (-1305 . 728794) (-1306 . 728741)
- (-1307 . 728638) (-1308 . 728198) (-1309 . 728088) (-1310 . 727839)
- (-1311 . 727607) (-1312 . 727487) (-1313 . 727309) (-1314 . 727034)
- (-1315 . 726946) (-1316 . 726830) (-1317 . 726752) (-1318 . 726670)
- (-1319 . 726617) (-1320 . 726498) (-1321 . 726357) (-1322 . 725810)
- (-1323 . 725228) (-1324 . 725112) (-1325 . 724794) (-1326 . 724476)
- (-1327 . 724423) (-1328 . 724310) (-1329 . 723736) (-1330 . 723343)
- (-1331 . 723290) (-1332 . 723217) (-1333 . 723165) (-1334 . 723047)
- (-1335 . 722520) (-1336 . 722215) (-1337 . 722052) (-1338 . 722024)
- (-1339 . 721894) (-1340 . 721834) (-1341 . 721672) (-1342 . 721571)
- (-1343 . 721364) (-1344 . 721292) (-1345 . 721215) (-1346 . 720758)
- (-1347 . 720240) (-1348 . 719752) (-1349 . 719613) (-1350 . 719556)
- (-1351 . 718949) (-1352 . 718861) (-1353 . 718474) (-1354 . 718442)
- (-1355 . 718180) (-1356 . 718097) (-1357 . 718014) (-1358 . 717591)
- (-1359 . 717417) (-1360 . 717280) (-1361 . 716623) (-1362 . 716199)
- (-1363 . 716083) (-1364 . 715997) (-1365 . 715916) (-1366 . 715828)
- (-1367 . 715487) (-1368 . 715329) (-1369 . 715192) (-1370 . 714949)
- (-1371 . 714840) (-1372 . 714701) (-1373 . 714631) (-1374 . 714427)
- (-1375 . 714254) (-1376 . 714177) (-1377 . 714030) (-1378 . 713936)
- (-1379 . 713815) (-1380 . 713677) (-1381 . 713597) (-1382 . 713246)
- (-1383 . 713140) (-1384 . 713111) (-1385 . 713059) (-1386 . 712955)
- (-1387 . 712782) (-1388 . 712530) (-1389 . 712457) (-1390 . 712059)
- (-1391 . 708760) (-1392 . 708469) (-1393 . 708384) (-1394 . 707683)
- (-1395 . 707655) (-1396 . 707590) (-1397 . 707386) (-1398 . 707320)
- (-1399 . 707170) (-1400 . 707120) (-1401 . 707038) (-1402 . 706964)
- (-1403 . 706286) (-1404 . 706064) (-1405 . 705870) (-1406 . 705651)
- (-1407 . 705460) (-1408 . 705272) (-1409 . 705216) (-1410 . 705160)
- (-1411 . 705007) (-1412 . 704692) (-1413 . 704614) (-1414 . 704188)
- (-1415 . 704057) (-1416 . 703761) (-1417 . 703690) (-1418 . 703298)
- (-1419 . 703218) (-1420 . 702829) (-1421 . 702728) (-1422 . 702650)
- (-1423 . 702597) (-1424 . 702472) (-1425 . 702207) (-1426 . 702153)
- (-1427 . 702046) (-1428 . 701903) (-1429 . 701851) (-1430 . 701707)
- (-1431 . 697547) (-1432 . 697335) (-1433 . 697177) (-1434 . 697089)
- (-1435 . 697015) (-1436 . 696893) (-1437 . 696799) (-1438 . 696692)
- (-1439 . 696507) (-1440 . 696355) (-1441 . 696184) (-1442 . 695823)
- (-1443 . 695771) (-1444 . 695418) (-1445 . 695308) (-1446 . 695256)
- (-1447 . 694978) (-1448 . 694599) (-1449 . 693589) (-1450 . 693427)
- (-1451 . 693369) (-1452 . 693316) (-1453 . 693237) (-1454 . 692692)
- (-1455 . 692615) (-1456 . 692527) (-1457 . 692153) (-1458 . 691705)
- (-1459 . 691654) (-1460 . 691487) (-1461 . 691385) (-1462 . 691251)
- (-1463 . 691029) (-1464 . 690754) (-1465 . 690610) (-1466 . 690401)
- (-1467 . 690177) (-1468 . 690103) (-1469 . 689959) (-1470 . 689888)
- (-1471 . 689745) (-1472 . 689668) (-1473 . 689479) (-1474 . 689312)
- (-1475 . 689129) (-1476 . 688822) (-1477 . 688632) (-1478 . 688473)
- (-1479 . 687586) (-1480 . 687290) (-1481 . 687010) (-1482 . 686748)
- (-1483 . 686662) (-1484 . 686588) (-1485 . 686527) (-1486 . 685786)
- (-1487 . 685546) (-1488 . 685438) (-1489 . 684951) (-1490 . 680888)
- (-1491 . 679548) (-1492 . 679493) (-1493 . 679356) (-1494 . 679210)
- (-1495 . 679126) (-1496 . 678893) (-1497 . 678534) (-1498 . 678479)
- (-1499 . 678321) (-1500 . 678205) (-1501 . 677464) (-1502 . 677275)
- (-1503 . 676200) (-1504 . 675981) (-1505 . 675898) (-1506 . 675764)
- (-1507 . 675694) (-1508 . 675433) (-1509 . 675318) (-1510 . 675068)
- (-1511 . 674180) (-1512 . 673492) (-1513 . 673437) (-1514 . 673276)
- (-1515 . 673190) (-1516 . 672766) (-1517 . 672087) (-1518 . 671464)
- (-1519 . 671330) (-1520 . 670852) (-1521 . 670802) (-1522 . 670684)
- (-1523 . 670577) (-1524 . 670378) (-1525 . 670108) (-1526 . 669532)
- (-1527 . 669349) (-1528 . 669283) (-1529 . 669231) (-1530 . 669108)
- (-1531 . 668680) (-1532 . 668592) (-1533 . 668514) (-1534 . 668133)
- (-1535 . 668009) (-1536 . 667837) (-1537 . 667740) (-1538 . 667706)
- (-1539 . 667130) (-1540 . 667071) (-1541 . 666906) (-1542 . 664561)
- (-1543 . 664384) (-1544 . 664317) (-1545 . 664246) (-1546 . 664218)
- (-1547 . 664077) (-1548 . 664004) (-1549 . 663758) (-12 . 663586)
- (-1551 . 663515) (-1552 . 662939) (-1553 . 662795) (-1554 . 662653)
- (-1555 . 662621) (-1556 . 662555) (-1557 . 662446) (-1558 . 662375)
- (-1559 . 661622) (-1560 . 661542) (-1561 . 661413) (-1562 . 661240)
- (-1563 . 661022) (-1564 . 660336) (-1565 . 660213) (-1566 . 660083)
- (-1567 . 659988) (-1568 . 659936) (-1569 . 659841) (-1570 . 659483)
- (-1571 . 659381) (-1572 . 659186) (-1573 . 658884) (-1574 . 658713)
- (-1575 . 656857) (-1576 . 656171) (-1577 . 655929) (-1578 . 655872)
- (-1579 . 655843) (-1580 . 655757) (-1581 . 655669) (-1582 . 655289)
- (-1583 . 655255) (-1584 . 655186) (-1585 . 654961) (-1586 . 654544)
- (-1587 . 653795) (-1588 . 653508) (-1589 . 652948) (-1590 . 652827)
- (-1591 . 652114) (-1592 . 652018) (-1593 . 651903) (-1594 . 651685)
- (-1595 . 651549) (-1596 . 651276) (-1597 . 651166) (-1598 . 651100)
- (-1599 . 651014) (-1600 . 650440) (-1601 . 650345) (-1602 . 650293)
- (-1603 . 650183) (-1604 . 650082) (-1605 . 649988) (-1606 . 649776)
- (-1607 . 649623) (-1608 . 649525) (-1609 . 649407) (-1610 . 648864)
- (-1611 . 648621) (-1612 . 648047) (-1613 . 647049) (-1614 . 646511)
- (-1615 . 646247) (-1616 . 646148) (-1617 . 646082) (-1618 . 645161)
- (-1619 . 644721) (-1620 . 644396) (-1621 . 644223) (-1622 . 644138)
- (-1623 . 644034) (-1624 . 643904) (-1625 . 643803) (-1626 . 643750)
- (-1627 . 643176) (-1628 . 643124) (-1629 . 642906) (-1630 . 642791)
- (-1631 . 642611) (-1632 . 642508) (-1633 . 642453) (-1634 . 642374)
- (-1635 . 642255) (-1636 . 642191) (-1637 . 641753) (-1638 . 641610)
- (-1639 . 641551) (-1640 . 640864) (-1641 . 639900) (-1642 . 639692)
- (-1643 . 639449) (-1644 . 639421) (-1645 . 638241) (-1646 . 637920)
- (-1647 . 637715) (-1648 . 637609) (-1649 . 637454) (-1650 . 637402)
- (-1651 . 636715) (-1652 . 636619) (-1653 . 636518) (-1654 . 636463)
- (-1655 . 634886) (-1656 . 634768) (-1657 . 634713) (-1658 . 634657)
- (-1659 . 634604) (-1660 . 634386) (-1661 . 634140) (* . 629594)
- (-1663 . 629253) (-1664 . 628566) (-1665 . 628421) (-1666 . 628335)
- (-1667 . 628278) (-1668 . 628169) (-1669 . 627915) (-1670 . 627311)
- (-1671 . 626726) (-1672 . 626374) (-1673 . 626288) (-1674 . 626140)
- (-1675 . 625565) (-1676 . 625461) (-1677 . 625306) (-1678 . 625152)
- (-1679 . 625099) (-1680 . 625046) (-1681 . 625004) (-1682 . 624808)
- (-1683 . 624516) (-1684 . 624222) (-1685 . 623647) (-1686 . 623541)
- (-1687 . 623400) (-1688 . 623197) (-1689 . 623113) (-1690 . 623061)
- (-1691 . 622982) (-1692 . 622880) (-1693 . 622715) (-1694 . 622629)
- (-1695 . 622557) (-1696 . 622394) (-1697 . 622341) (-1698 . 621766)
- (-1699 . 621644) (-1700 . 621507) (-1701 . 621378) (-1702 . 620546)
- (-1703 . 620287) (-1704 . 620131) (-1705 . 620059) (-1706 . 619743)
- (-1707 . 619452) (-1708 . 619384) (-1709 . 618800) (-1710 . 618226)
- (-1711 . 618052) (-1712 . 617923) (-1713 . 617809) (-1714 . 617665)
- (-1715 . 617527) (-1716 . 617348) (-1717 . 617157) (-1718 . 616627)
- (-1719 . 616485) (-1720 . 616372) (-1721 . 616113) (-1722 . 615539)
- (-1723 . 615483) (-1724 . 615390) (-1725 . 615306) (-1726 . 615182)
- (-1727 . 615090) (-1728 . 614937) (-1729 . 614283) (-1730 . 613977)
- (-1731 . 613566) (-1732 . 613466) (-1733 . 612892) (-1734 . 612806)
- (-1735 . 612713) (-1736 . 612647) (-1737 . 612564) (-1738 . 612231)
- (-1739 . 612128) (-1740 . 612040) (-1741 . 611909) (-1742 . 611501)
- (-1743 . 611422) (-1744 . 611285) (-1745 . 610711) (-1746 . 610649)
- (-1747 . 610039) (-1748 . 609957) (-1749 . 609855) (-1750 . 609827)
- (-1751 . 609756) (-1752 . 609579) (-1753 . 609332) (-1754 . 609264)
- (-1755 . 609028) (-1756 . 608901) (-1757 . 608654) (-1758 . 608080)
- (-1759 . 607981) (-1760 . 607878) (-1761 . 607632) (-1762 . 607535)
- (-1763 . 607236) (-1764 . 607184) (-1765 . 606630) (-1766 . 606580)
- (-1767 . 606506) (-1768 . 606404) (-1769 . 606280) (-1770 . 606114)
- (-1771 . 606028) (-1772 . 605692) (-1773 . 605612) (-1774 . 605544)
- (-1775 . 605391) (-1776 . 605339) (-1777 . 605253) (-1778 . 605122)
- (-1779 . 604969) (-1780 . 604845) (-1781 . 604779) (-1782 . 604568)
- (-1783 . 604413) (-1784 . 603534) (-1785 . 603478) (-1786 . 603396)
- (-1787 . 603185) (-1788 . 602533) (-1789 . 602124) (-1790 . 602023)
- (-1791 . 601943) (-1792 . 601881) (-1793 . 600679) (-1794 . 600624)
- (-1795 . 600565) (-1796 . 600511) (-1797 . 600423) (-1798 . 600319)
- (-1799 . 600203) (-1800 . 600038) (-1801 . 599922) (-1802 . 599823)
- (-1803 . 599605) (-1804 . 599512) (-1805 . 599459) (-1806 . 599340)
- (-1807 . 599031) (-1808 . 598931) (-1809 . 598595) (-1810 . 598494)
- (-1811 . 598113) (-1812 . 598018) (-1813 . 597953) (-1814 . 597814)
- (-1815 . 597384) (-1816 . 597226) (-1817 . 596782) (-1818 . 596438)
- (-1819 . 596404) (-1820 . 596320) (-1821 . 596223) (-1822 . 596133)
- (-1823 . 596059) (-1824 . 595901) (-1825 . 595244) (-1826 . 595031)
- (-1827 . 594979) (-1828 . 594891) (-1829 . 594823) (-1830 . 594504)
- (-1831 . 594431) (-1832 . 594313) (-1833 . 594194) (-1834 . 594085)
- (-1835 . 593588) (-1836 . 593535) (-1837 . 593375) (-1838 . 593248)
- (-1839 . 593095) (-1840 . 592681) (-1841 . 592629) (-1842 . 592239)
- (-1843 . 592121) (-1844 . 591281) (-1845 . 591120) (-1846 . 590976)
- (-1847 . 590839) (-1848 . 590738) (-1849 . 590706) (-1850 . 590531)
- (-1851 . 590473) (-1852 . 590403) (-1853 . 590324) (-1854 . 590149)
- (-1855 . 589931) (-1856 . 589871) (-1857 . 589709) (-1858 . 589599)
- (-1859 . 589346) (-1860 . 589190) (-1861 . 589091) (-1862 . 588975)
- (-1863 . 587818) (-1864 . 587525) (-1865 . 587469) (-1866 . 587357)
- (-1867 . 587143) (-1868 . 586916) (-1869 . 586359) (-1870 . 586231)
- (-1871 . 586165) (-1872 . 584789) (-1873 . 584652) (-1874 . 584598)
- (-1875 . 584407) (-1876 . 584291) (-1877 . 584207) (-1878 . 584047)
- (-1879 . 583815) (-1880 . 583636) (-1881 . 583492) (-1882 . 583429)
- (-1883 . 583401) (-1884 . 583269) (-1885 . 583126) (-1886 . 582952)
- (-1887 . 582706) (-1888 . 582644) (-1889 . 582548) (-1890 . 582465)
- (-1891 . 582391) (-1892 . 582312) (-1893 . 582259) (-1894 . 582176)
- (-1895 . 581870) (-1896 . 581787) (-1897 . 581436) (-1898 . 581278)
- (-1899 . 581246) (-1900 . 581215) (-1901 . 581102) (-1902 . 581021)
- (-1903 . 580893) (-1904 . 580490) (-1905 . 580419) (-1906 . 580346)
- (-1907 . 580008) (-1908 . 579935) (-1909 . 579883) (-1910 . 579612)
- (-1911 . 579524) (-1912 . 579450) (-1913 . 579140) (-1914 . 578687)
- (-1915 . 578574) (-1916 . 578491) (-1917 . 578141) (-1918 . 578031)
- (-1919 . 577910) (-1920 . 577774) (-1921 . 577588) (-1922 . 577463)
- (-1923 . 577355) (-1924 . 577107) (-1925 . 577075) (-1926 . 576861)
- (-1927 . 576653) (-1928 . 576476) (-1929 . 576079) (-1930 . 575957)
- (-1931 . 575595) (-1932 . 575491) (-1933 . 575189) (-1934 . 574615)
- (-1935 . 574401) (-1936 . 574221) (-1937 . 574041) (-1938 . 573975)
- (-1939 . 573790) (-1940 . 573695) (-1941 . 573612) (-1942 . 573454)
- (-1943 . 573340) (-1944 . 573187) (-1945 . 573067) (-1946 . 572971)
- (-1947 . 572195) (-1948 . 572061) (-1949 . 571195) (-1950 . 570942)
- (-1951 . 570801) (-1952 . 570171) (-1953 . 570100) (-1954 . 569981)
- (-1955 . 569702) (-1956 . 569025) (-1957 . 568996) (-1958 . 568928)
- (-1959 . 568721) (-1960 . 568620) (-1961 . 568532) (-1962 . 568407)
- (-1963 . 568211) (-1964 . 568107) (-1965 . 568033) (-1966 . 567939)
- (-1967 . 567772) (-1968 . 567675) (-1969 . 567288) (-1970 . 567235)
- (-1971 . 566763) (-1972 . 566512) (-1973 . 566353) (-1974 . 566301)
- (-1975 . 566108) (-1976 . 566036) (-1977 . 565718) (-1978 . 565565)
- (-1979 . 565119) (-1980 . 565063) (-1981 . 565001) (-1982 . 564934)
- (-1983 . 564732) (-1984 . 564574) (-1985 . 564469) (-1986 . 564381)
- (-1987 . 564286) (-1988 . 564145) (-1989 . 564016) (-1990 . 563942)
- (-1991 . 563727) (-1992 . 562991) (-1993 . 562838) (-1994 . 562493)
- (-1995 . 562386) (-1996 . 562317) (-1997 . 562164) (-1998 . 561974)
- (-1999 . 561917) (-2000 . 561864) (-2001 . 561820) (-2002 . 561713)
- (-2003 . 561661) (-2004 . 561499) (-2005 . 561336) (-2006 . 561191)
- (-2007 . 561142) (-2008 . 561069) (-2009 . 560709) (-2010 . 560656)
- (-2011 . 560515) (-2012 . 560414) (-2013 . 560209) (-2014 . 559827)
- (-2015 . 559741) (-2016 . 559614) (-2017 . 559485) (-2018 . 559305)
- (-2019 . 559214) (-2020 . 559115) (-2021 . 559019) (-2022 . 558933)
- (-2023 . 558744) (-2024 . 558600) (-2025 . 558480) (-2026 . 558406)
- (-2027 . 558353) (-2028 . 557709) (-2029 . 557185) (-2030 . 556854)
- (-2031 . 556647) (-2032 . 556311) (-2033 . 556085) (-2034 . 555769)
- (-2035 . 555625) (-2036 . 555241) (-2037 . 555163) (-2038 . 555097)
- (-2039 . 555009) (-2040 . 554910) (-2041 . 554407) (-2042 . 553546)
- (-2043 . 552374) (-2044 . 552303) (-2045 . 550171) (-2046 . 549705)
- (-2047 . 549631) (-2048 . 549278) (-2049 . 549123) (-2050 . 548253)
- (-2051 . 548225) (-2052 . 548080) (-2053 . 547921) (-2054 . 547708)
- (-2055 . 547550) (-2056 . 547387) (-2057 . 547101) (-2058 . 546986)
- (-2059 . 546879) (-2060 . 546780) (-2061 . 546597) (-2062 . 546460)
- (-2063 . 546204) (-2064 . 545923) (-2065 . 545550) (-2066 . 545464)
- (-2067 . 545367) (-2068 . 545312) (-2069 . 545216) (-2070 . 544079)
- (-2071 . 544017) (-2072 . 543758) (-2073 . 543730) (-2074 . 543614)
- (-2075 . 543282) (-2076 . 543117) (-2077 . 542919) (-2078 . 542817)
- (-2079 . 542234) (-2080 . 542095) (-2081 . 541982) (-2082 . 541123)
- (-2083 . 540965) (-2084 . 539557) (-2085 . 539433) (-2086 . 539350)
- (-2087 . 539290) (-2088 . 537022) (-2089 . 536950) (-2090 . 536634)
- (-2091 . 536515) (-2092 . 536268) (-2093 . 536188) (-2094 . 536108)
- (-2095 . 536011) (-2096 . 535660) (-2097 . 535522) (-2098 . 534997)
- (-2099 . 534886) (-2100 . 534627) (-2101 . 534299) (-2102 . 534133)
- (-2103 . 532952) (-2104 . 532711) (-2105 . 532623) (-2106 . 532471)
- (-2107 . 532218) (-2108 . 532019) (-2109 . 531967) (-2110 . 531743)
- (-2111 . 531636) (-2112 . 531551) (-2113 . 531481) (-2114 . 530265)
- (-2115 . 530179) (-2116 . 530150) (-2117 . 530122) (-2118 . 529849)
- (-2119 . 529751) (-2120 . 529599) (-2121 . 524086) (-2122 . 523965)
- (-2123 . 523888) (-2124 . 523758) (-2125 . 523611) (-2126 . 523377)
- (-2127 . 523322) (-2128 . 523195) (-2129 . 522452) (-2130 . 522279)
- (-2131 . 521482) (-2132 . 521232) (-2133 . 520788) (-2134 . 520400)
- (-2135 . 520255) (-2136 . 520186) (-2137 . 520113) (-2138 . 520001)
- (-2139 . 519874) (-2140 . 519753) (-2141 . 519687) (-2142 . 519441)
- (-2143 . 519223) (-2144 . 519104) (-2145 . 518649) (-2146 . 518582)
- (-2147 . 518449) (-2148 . 518372) (-2149 . 518299) (-2150 . 518209)
- (-2151 . 518029) (-2152 . 516441) (-2153 . 516330) (-2154 . 516271)
- (-2155 . 516025) (-2156 . 515809) (-2157 . 515685) (-2158 . 515565)
- (-2159 . 515144) (-2160 . 514795) (-2161 . 514668) (-2162 . 514609)
- (-2163 . 514535) (-2164 . 514289) (-2165 . 514191) (-2166 . 512461)
- (-2167 . 512305) (-2168 . 512109) (-2169 . 512029) (-2170 . 511502)
- (-2171 . 511305) (-2172 . 511202) (-2173 . 511075) (-2174 . 511041)
- (-2175 . 510911) (-2176 . 510793) (-2177 . 510705) (-2178 . 510632)
- (-2179 . 510546) (-2180 . 510027) (-2181 . 509939) (-2182 . 509884)
- (-2183 . 509813) (-2184 . 509719) (-2185 . 509618) (-2186 . 509562)
- (-2187 . 509375) (-2188 . 509180) (-2189 . 509094) (-2190 . 508528)
- (-2191 . 508298) (-2192 . 508125) (-2193 . 507633) (-2194 . 507525)
- (-2195 . 507472) (-2196 . 507216) (-2197 . 506927) (-2198 . 506855)
- (-2199 . 506739) (-2200 . 506279) (-2201 . 506139) (-2202 . 506033)
- (-2203 . 505467) (-2204 . 504935) (-2205 . 504400) (-2206 . 504107)
- (-2207 . 503918) (-2208 . 503748) (-2209 . 503549) (-2210 . 503420)
- (-2211 . 503291) (-2212 . 502910) (-2213 . 502525) (-2214 . 502225)
- (-2215 . 502059) (-2216 . 501677) (-2217 . 501256) (-2218 . 500939)
- (-2219 . 500883) (-2220 . 500711) (-2221 . 500589) (-2222 . 500321)
- (-2223 . 500231) (-2224 . 500104) (-2225 . 500001) (-2226 . 499919)
- (-2227 . 490359) (-2228 . 490127) (-2229 . 490015) (-2230 . 489906)
- (-2231 . 489760) (-2232 . 489637) (-2233 . 489535) (-2234 . 489482)
- (-2235 . 489392) (-2236 . 489314) (-2237 . 488861) (-2238 . 488546)
- (-2239 . 488444) (-2240 . 488299) (-2241 . 488144) (-2242 . 488081)
- (-2243 . 488019) (-2244 . 487950) (-2245 . 487821) (-2246 . 486192)
- (-2247 . 486034) (-2248 . 485979) (-2249 . 485893) (-2250 . 484115)
- (-2251 . 484062) (-2252 . 483996) (-2253 . 483833) (-2254 . 482432)
- (-2255 . 482314) (-2256 . 481863) (-2257 . 481790) (-2258 . 481759)
- (-2259 . 481676) (-2260 . 481544) (-2261 . 480678) (-2262 . 480646)
- (-2263 . 480515) (-2264 . 479929) (-2265 . 479793) (-2266 . 479744)
- (-2267 . 479635) (-2268 . 479460) (-2269 . 479431) (-2270 . 479224)
- (-2271 . 479123) (-2272 . 477749) (-2273 . 477683) (-2274 . 477528)
- (-2275 . 477451) (-2276 . 477399) (-2277 . 477365) (-2278 . 477299)
- (-2279 . 477212) (-2280 . 477099) (-2281 . 476772) (-2282 . 476701)
- (-2283 . 476359) (-2284 . 476257) (-2285 . 476162) (-2286 . 476100)
- (-2287 . 475979) (-2288 . 475835) (-2289 . 475741) (-2290 . 475664)
- (-2291 . 475506) (-2292 . 475387) (-2293 . 475313) (-2294 . 474717)
- (-2295 . 474618) (-2296 . 474566) (-2297 . 474460) (-2298 . 474296)
- (-2299 . 474116) (-2300 . 474017) (-2301 . 473820) (-2302 . 473735)
- (-2303 . 473564) (-2304 . 473394) (-2305 . 473313) (-2306 . 473242)
- (-2307 . 473084) (-2308 . 473035) (-2309 . 472636) (-2310 . 472393)
- (-2311 . 472201) (-2312 . 472127) (-2313 . 472093) (-2314 . 471965)
- (-2315 . 471852) (-2316 . 471739) (-2317 . 471682) (-2318 . 471574)
- (-2319 . 471518) (-2320 . 471440) (-2321 . 469736) (-2322 . 469561)
- (-2323 . 469475) (-2324 . 469381) (-2325 . 469311) (-2326 . 469211)
- (-2327 . 469034) (-2328 . 469000) (-2329 . 468947) (-2330 . 468695)
- (-2331 . 468528) (-2332 . 468248) (-2333 . 468106) (-2334 . 468032)
- (-2335 . 467884) (-2336 . 466046) (-2337 . 465887) (-2338 . 465778)
- (-2339 . 465669) (-2340 . 465422) (-2341 . 465345) (-2342 . 465179)
- (-2343 . 464885) (-2344 . 464714) (-2345 . 464562) (-2346 . 464484)
- (-2347 . 464357) (-2348 . 464244) (-2349 . 464188) (-2350 . 464104)
- (-2351 . 464052) (-2352 . 462542) (-2353 . 462286) (-2354 . 462214)
- (-2355 . 462162) (-2356 . 461938) (-2357 . 461881) (-2358 . 461774)
- (-2359 . 461632) (-2360 . 461495) (-2361 . 461362) (-2362 . 461303)
- (-2363 . 461219) (-2364 . 461084) (-2365 . 460975) (-2366 . 459427)
- (-2367 . 459283) (-2368 . 459234) (-2369 . 459157) (-2370 . 459075)
- (-2371 . 458993) (-2372 . 458941) (-2373 . 458879) (-2374 . 458631)
- (-2375 . 458344) (-2376 . 458278) (-2377 . 457921) (-2378 . 457778)
- (-2379 . 457476) (-2380 . 457278) (-2381 . 457115) (-2382 . 457011)
- (-2383 . 456937) (-2384 . 456715) (-2385 . 456612) (-2386 . 456529)
- (-2387 . 456354) (-2388 . 456149) (-2389 . 455880) (-2390 . 455395)
- (-2391 . 455168) (-2392 . 455010) (-2393 . 454694) (-2394 . 453698)
- (-2395 . 453237) (-2396 . 452957) (-2397 . 452799) (-2398 . 452717)
- (-2399 . 452553) (-2400 . 452473) (-2401 . 451870) (-2402 . 450598)
- (-2403 . 450518) (-2404 . 450397) (-2405 . 449232) (-2406 . 449028)
- (-2407 . 448946) (-2408 . 448872) (-2409 . 448644) (-2410 . 448352)
- (-2411 . 448236) (-2412 . 448005) (-2413 . 447788) (-2414 . 447412)
- (-2415 . 447259) (-2416 . 447207) (-2417 . 447064) (-2418 . 446899)
- (-2419 . 446480) (-2420 . 446428) (-2421 . 445553) (-2422 . 445408)
- (-2423 . 445169) (-2424 . 444943) (-2425 . 444856) (-2426 . 444790)
- (-2427 . 444692) (-2428 . 444605) (-2429 . 444511) (-2430 . 444035)
- (-2431 . 443917) (-2432 . 443818) (-2433 . 443787) (-2434 . 443710)
- (-2435 . 443626) (-2436 . 443536) (-2437 . 443408) (-2438 . 443249)
- (-2439 . 443181) (-2440 . 443121) (-2441 . 442783) (-2442 . 442749)
- (-2443 . 442675) (-2444 . 442574) (-2445 . 442356) (-2446 . 441962)
- (-2447 . 441664) (-2448 . 441577) (-2449 . 441359) (-2450 . 441251)
- (-2451 . 441144) (-2452 . 440801) (-2453 . 440670) (-2454 . 440611)
- (-2455 . 440005) (-2456 . 439936) (-2457 . 439549) (-2458 . 438915)
- (-2459 . 438849) (-2460 . 438488) (-2461 . 438381) (-2462 . 438267)
- (-2463 . 438167) (-2464 . 438069) (-2465 . 437999) (-2466 . 437922)
- (-2467 . 437789) (-2468 . 437730) (-2469 . 437616) (-2470 . 437556)
- (-2471 . 437343) (-2472 . 437192) (-2473 . 436550) (-2474 . 436404)
- (-2475 . 435531) (-2476 . 435429) (-2477 . 435308) (-2478 . 434926)
- (-2479 . 434611) (-2480 . 434528) (-2481 . 433864) (-2482 . 433769)
- (-2483 . 433681) (-2484 . 433514) (-2485 . 433189) (-2486 . 432003)
- (-2487 . 431866) (-2488 . 431762) (-2489 . 431680) (-2490 . 431313)
- (-2491 . 431260) (-2492 . 430669) (-2493 . 430564) (-2494 . 430513)
- (-2495 . 430405) (-2496 . 430245) (-2497 . 430108) (-2498 . 430002)
- (-2499 . 429872) (-2500 . 428690) (-2501 . 428602) (-2502 . 428543)
- (-2503 . 428488) (-2504 . 428358) (-2505 . 428255) (-2506 . 428090)
- (-2507 . 428037) (-2508 . 427924) (-2509 . 427737) (-2510 . 427666)
- (-2511 . 427614) (-2512 . 427561) (-2513 . 425355) (-2514 . 424907)
- (-2515 . 424386) (-2516 . 424333) (-2517 . 424256) (-2518 . 424228)
- (-2519 . 423869) (-2520 . 423783) (-2521 . 423704) (-2522 . 423585)
- (-2523 . 423494) (-2524 . 423460) (-2525 . 423066) (-2526 . 422978)
- (-2527 . 422820) (-2528 . 422539) (-2529 . 422284) (-2530 . 421972)
- (-2531 . 421543) (-2532 . 420831) (-2533 . 420224) (-2534 . 420126)
- (-2535 . 420019) (-2536 . 419991) (-2537 . 419936) (-2538 . 419610)
- (-2539 . 419532) (-2540 . 419466) (-2541 . 419365) (-2542 . 419226)
- (-2543 . 419008) (-2544 . 418698) (-2545 . 418614) (-2546 . 418514)
- (-2547 . 418362) (-2548 . 417513) (-2549 . 417460) (-2550 . 417408)
- (-2551 . 417231) (-2552 . 417160) (-2553 . 417045) (-2554 . 416994)
- (-2555 . 416833) (-2556 . 416624) (-2557 . 413003) (-2558 . 412903)
- (-2559 . 412712) (-2560 . 412593) (-2561 . 412450) (-2562 . 412308)
- (-2563 . 412205) (-2564 . 412133) (-2565 . 411957) (-2566 . 411858)
- (-2567 . 411772) (-2568 . 411642) (-2569 . 411590) (-2570 . 411539)
- (-2571 . 411453) (-2572 . 411359) (-2573 . 410795) (-2574 . 410277)
- (-2575 . 410150) (-2576 . 410076) (-2577 . 409915) (-2578 . 409813)
- (-2579 . 409695) (-2580 . 408888) (-2581 . 408790) (-2582 . 408677)
- (-2583 . 408570) (-2584 . 408499) (-2585 . 408253) (-2586 . 408154)
- (-2587 . 407803) (-2588 . 407742) (-2589 . 407326) (-2590 . 407276)
- (-2591 . 407129) (-2592 . 407060) (-2593 . 406821) (-2594 . 406733)
- (-2595 . 406572) (-2596 . 406520) (-2597 . 406189) (-2598 . 406105)
- (-2599 . 406032) (-2600 . 405823) (-2601 . 405737) (-2602 . 405142)
- (-2603 . 404999) (-2604 . 404707) (-2605 . 404529) (-2606 . 404429)
- (-2607 . 404310) (-2608 . 404221) (-2609 . 403878) (-2610 . 403820)
- (-2611 . 403751) (-2612 . 403434) (-2613 . 403336) (-2614 . 403138)
- (-2615 . 402980) (-2616 . 402824) (-2617 . 402705) (-2618 . 402634)
- (-2619 . 402334) (-2620 . 402305) (-2621 . 402222) (-2622 . 401818)
- (-2623 . 401525) (-2624 . 401472) (-2625 . 401367) (-2626 . 401311)
- (-2627 . 401277) (-2628 . 401078) (-2629 . 401006) (-2630 . 400824)
- (-2631 . 400440) (-2632 . 400367) (-2633 . 400298) (-2634 . 400233)
- (-2635 . 400117) (-2636 . 400018) (-2637 . 398572) (-2638 . 398463)
- (-2639 . 398397) (-2640 . 398256) (-2641 . 398203) (-2642 . 397673)
- (-2643 . 397592) (-2644 . 397413) (-2645 . 397106) (-2646 . 397010)
- (-2647 . 396852) (-2648 . 396653) (-2649 . 396453) (-2650 . 396383)
- (-2651 . 396254) (-2652 . 396098) (-2653 . 395985) (-2654 . 395930)
- (-2655 . 395812) (-2656 . 395743) (-2657 . 395655) (-2658 . 395401)
- (-2659 . 390063) (-2660 . 389966) (-2661 . 389291) (-2662 . 389182)
- (-2663 . 388913) (-2664 . 388845) (-2665 . 388744) (-2666 . 388640)
- (-2667 . 388588) (-2668 . 388491) (-2669 . 388365) (-2670 . 388309)
- (-2671 . 388156) (-2672 . 387933) (-2673 . 387851) (-2674 . 387711)
- (-2675 . 387473) (-2676 . 387278) (-2677 . 387177) (-2678 . 387110)
- (-2679 . 386854) (-2680 . 386802) (-2681 . 386643) (-2682 . 386591)
- (-2683 . 386468) (-2684 . 386046) (-2685 . 385980) (-2686 . 381982)
- (-2687 . 381866) (-2688 . 381796) (-2689 . 381686) (-2690 . 381581)
- (-2691 . 381496) (-2692 . 381295) (-2693 . 381242) (-2694 . 380685)
- (-2695 . 380608) (-2696 . 379066) (-2697 . 378958) (-2698 . 378862)
- (-2699 . 378108) (-2700 . 377805) (-2701 . 377712) (-2702 . 377534)
- (-2703 . 377288) (-2704 . 377179) (-2705 . 376992) (-2706 . 376829)
- (-2707 . 376534) (-2708 . 376481) (-2709 . 376348) (-2710 . 376258)
- (-2711 . 376022) (-2712 . 373241) (-2713 . 373128) (-2714 . 368586)
- (-2715 . 368502) (-2716 . 368422) (-2717 . 368172) (-2718 . 368004)
- (-2719 . 366792) (-2720 . 366636) (-2721 . 366557) (-2722 . 366453)
- (-2723 . 366339) (-2724 . 366173) (-2725 . 366110) (-2726 . 366016)
- (-2727 . 365917) (-2728 . 365865) (-2729 . 365795) (-2730 . 365691)
- (-2731 . 365563) (-2732 . 365439) (-2733 . 365229) (-2734 . 364934)
- (-2735 . 364867) (-2736 . 364490) (-2737 . 364287) (-2738 . 364209)
- (-2739 . 364065) (-2740 . 363723) (-2741 . 363568) (-2742 . 363386)
- (-2743 . 363333) (-2744 . 363197) (-2745 . 362976) (-2746 . 362862)
- (-2747 . 362809) (-2748 . 362741) (-2749 . 362650) (-2750 . 362459)
- (-2751 . 360044) (-2752 . 359992) (-2753 . 359940) (-2754 . 359782)
- (-2755 . 359673) (-2756 . 359503) (-2757 . 359382) (-2758 . 359040)
- (-2759 . 358948) (-2760 . 358849) (-2761 . 358702) (-2762 . 358617)
- (-2763 . 357419) (-2764 . 356123) (-2765 . 356000) (-2766 . 355916)
- (-2767 . 355850) (-2768 . 355716) (-2769 . 355558) (-2770 . 355038)
- (-2771 . 354956) (-2772 . 354708) (-2773 . 354585) (-2774 . 354522)
- (-2775 . 354336) (-2776 . 354277) (-2777 . 354089) (-2778 . 353976)
- (-2779 . 353889) (-2780 . 353805) (-2781 . 353725) (-2782 . 352861)
- (-2783 . 352616) (-2784 . 352014) (-2785 . 351948) (-2786 . 351584)
- (-2787 . 351455) (-2788 . 351377) (-2789 . 351345) (-2790 . 351261)
- (-2791 . 351168) (-2792 . 350781) (-2793 . 350713) (-2794 . 350682)
- (-2795 . 350626) (-2796 . 350555) (-2797 . 336441) (-2798 . 335803)
- (-2799 . 335751) (-2800 . 335665) (-2801 . 335567) (-2802 . 335512)
- (-2803 . 335379) (-2804 . 335279) (-2805 . 335108) (-2806 . 334997)
- (-2807 . 334911) (-2808 . 334837) (-2809 . 334728) (-2810 . 334455)
- (-2811 . 334388) (-2812 . 333861) (-2813 . 333666) (-2814 . 333491)
- (-2815 . 332994) (-2816 . 332897) (-2817 . 332731) (-2818 . 332658)
- (-2819 . 332396) (-2820 . 332302) (-2821 . 330832) (-2822 . 330700)
- (-2823 . 330633) (-2824 . 330460) (-2825 . 330368) (-2826 . 327441)
- (-2827 . 327219) (-2828 . 327129) (-2829 . 327020) (-2830 . 326888)
- (-2831 . 326854) (-2832 . 326745) (-2833 . 326577) (-2834 . 325490)
- (-2835 . 325319) (-2836 . 324897) (-2837 . 324756) (-2838 . 324673)
- (-2839 . 324616) (-2840 . 324561) (-2841 . 324491) (-2842 . 324436)
- (-2843 . 324226) (-2844 . 324113) (-2845 . 319394) (-2846 . 319239)
- (-2847 . 319080) (-2848 . 318907) (-2849 . 318851) (-2850 . 318481)
- (-2851 . 318229) (-2852 . 318039) (-2853 . 317921) (-2854 . 317718)
- (-2855 . 317623) (-2856 . 317400) (-2857 . 317066) (-2858 . 316938)
- (-2859 . 316762) (-2860 . 316642) (-2861 . 316541) (-2862 . 316491)
- (-2863 . 316212) (-2864 . 316054) (-2865 . 315965) (-2866 . 314001)
- (-2867 . 313918) (-2868 . 313795) (-2869 . 313724) (-2870 . 313465)
- (-2871 . 313284) (-2872 . 313224) (-2873 . 312875) (-2874 . 312726)
- (-2875 . 312540) (-2876 . 312290) (-2877 . 312195) (-2878 . 312082)
- (-2879 . 311963) (-2880 . 311877) (-2881 . 311717) (-2882 . 311514)
- (-2883 . 310993) (-2884 . 310885) (-2885 . 310735) (-2886 . 310642)
- (-2887 . 310590) (-2888 . 310372) (-2889 . 310319) (-2890 . 310176)
- (-2891 . 310082) (-2892 . 309787) (-2893 . 309648) (-2894 . 309379)
- (-2895 . 309345) (-2896 . 309259) (-2897 . 309078) (-2898 . 308953)
- (-2899 . 308879) (-2900 . 308827) (-2901 . 308668) (-2902 . 308450)
- (-2903 . 308421) (-2904 . 308305) (-2905 . 308221) (-2906 . 307795)
- (-2907 . 307721) (-2908 . 307668) (-2909 . 307530) (-2910 . 306889)
- (-2911 . 306720) (-2912 . 306482) (-2913 . 306133) (-2914 . 305990)
- (-2915 . 305920) (-2916 . 305670) (-2917 . 305543) (-2918 . 305471)
- (-2919 . 305369) (-2920 . 305174) (-2921 . 305086) (-2922 . 304757)
- (-2923 . 304612) (-2924 . 304408) (-2925 . 304301) (-2926 . 303985)
- (-2927 . 303821) (-2928 . 303638) (-2929 . 303522) (-2930 . 303451)
- (-2931 . 303380) (-2932 . 301117) (-2933 . 300902) (-2934 . 300794)
- (-2935 . 300649) (-2936 . 300365) (-2937 . 300243) (-2938 . 300109)
- (-2939 . 300002) (-2940 . 299877) (-2941 . 299625) (-2942 . 299509)
- (-2943 . 299436) (-2944 . 299281) (-2945 . 299002) (-2946 . 298916)
- (-2947 . 298865) (-2948 . 298809) (-2949 . 298659) (-2950 . 298625)
- (-2951 . 298392) (-2952 . 298304) (-2953 . 298140) (-2954 . 297789)
- (-2955 . 297655) (-2956 . 297576) (-2957 . 297334) (-2958 . 297237)
- (-2959 . 297108) (-2960 . 296796) (-2961 . 296606) (-2962 . 296554)
- (-2963 . 296480) (-2964 . 296339) (-2965 . 296091) (-2966 . 296019)
- (-2967 . 295830) (-2968 . 295700) (-2969 . 295668) (-2970 . 295591)
- (-2971 . 295281) (-2972 . 295184) (-2973 . 295008) (-2974 . 294761)
- (-2975 . 294681) (-2976 . 294518) (-2977 . 294380) (-2978 . 294213)
- (-2979 . 294089) (-2980 . 293841) (-2981 . 293598) (-2982 . 293490)
- (-2983 . 293359) (-2984 . 293285) (-2985 . 292550) (-2986 . 292349)
- (-2987 . 292189) (-2988 . 292051) (-2989 . 291832) (-2990 . 291679)
- (-2991 . 291575) (-2992 . 291320) (-2993 . 291237) (-2994 . 291107)
- (-2995 . 291052) (-2996 . 291024) (-2997 . 290910) (-2998 . 290742)
- (-2999 . 290647) (-3000 . 290416) (-3001 . 290339) (-3002 . 290196)
- (-3003 . 290010) (-3004 . 289909) (-3005 . 289476) (-3006 . 289323)
- (-3007 . 289182) (-3008 . 289030) (-3009 . 288914) (-3010 . 288729)
- (-3011 . 288240) (-3012 . 288155) (-3013 . 288126) (-3014 . 287978)
- (-3015 . 287699) (-3016 . 287627) (-3017 . 287511) (-3018 . 287424)
- (-3019 . 287355) (-3020 . 287207) (-3021 . 287137) (-3022 . 287018)
- (-3023 . 286778) (-3024 . 286725) (-3025 . 286616) (-3026 . 286241)
- (-3027 . 286117) (-3028 . 286019) (-3029 . 285642) (-3030 . 285605)
- (-3031 . 285481) (-3032 . 285357) (-3033 . 285086) (-3034 . 285022)
- (-3035 . 284879) (-3036 . 284770) (-3037 . 284674) (-3038 . 284553)
- (-3039 . 284500) (-3040 . 284134) (-3041 . 284016) (-3042 . 283707)
- (-3043 . 283651) (-3044 . 283358) (-3045 . 283305) (-3046 . 283252)
- (-3047 . 283095) (-3048 . 282988) (-3049 . 282657) (-3050 . 282569)
- (-3051 . 282462) (-3052 . 282126) (-3053 . 281875) (-3054 . 281823)
- (-3055 . 281726) (-3056 . 281674) (-3057 . 281603) (-3058 . 281551)
- (-3059 . 281444) (-3060 . 281319) (-3061 . 281250) (-3062 . 281166)
- (-3063 . 281067) (-3064 . 280842) (-3065 . 280747) (-3066 . 280677)
- (-3067 . 280581) (-3068 . 280443) (-3069 . 280377) (-3070 . 280279)
- (-3071 . 280210) (-3072 . 279757) (-3073 . 279620) (-3074 . 279549)
- (-3075 . 279475) (-3076 . 279280) (-3077 . 279120) (-3078 . 279046)
- (-3079 . 278876) (-3080 . 278763) (-3081 . 278690) (-3082 . 278582)
- (-3083 . 278369) (-3084 . 278171) (-3085 . 278098) (-3086 . 277818)
- (-3087 . 277717) (-3088 . 277144) (-3089 . 276937) (-3090 . 276866)
- (-3091 . 276714) (-3092 . 276526) (-3093 . 276498) (-3094 . 276447)
- (-3095 . 276306) (-3096 . 276238) (-3097 . 275977) (-3098 . 275854)
- (-3099 . 274003) (-3100 . 273920) (-3101 . 273892) (-3102 . 273839)
- (-3103 . 273769) (-3104 . 273639) (-3105 . 272521) (-3106 . 272395)
- (-3107 . 272280) (-3108 . 272113) (-3109 . 271990) (-3110 . 271938)
- (-3111 . 271868) (-3112 . 271816) (-3113 . 271736) (-3114 . 271638)
- (-3115 . 271500) (-3116 . 271295) (-3117 . 271187) (-3118 . 270930)
- (-3119 . 270803) (-3120 . 270696) (-3121 . 270637) (-3122 . 270412)
- (-3123 . 269162) (-3124 . 269052) (-3125 . 268882) (-3126 . 268704)
- (-3127 . 268655) (-3128 . 268502) (-3129 . 268388) (-3130 . 268197)
- (-3131 . 267751) (-3132 . 267629) (-3133 . 267595) (-3134 . 267369)
- (-3135 . 267317) (-3136 . 267039) (-3137 . 266860) (-3138 . 266700)
- (-3139 . 266629) (-3140 . 266474) (-3141 . 266334) (-3142 . 266195)
- (-3143 . 266030) (-3144 . 265895) (-3145 . 265842) (-3146 . 265515)
- (-3147 . 264855) (-3148 . 264420) (-3149 . 264280) (-3150 . 264137)
- (-3151 . 264085) (-3152 . 264012) (-3153 . 263681) (-3154 . 263604)
- (-3155 . 263358) (-3156 . 263200) (-3157 . 263123) (-3158 . 262977)
- (-3159 . 262871) (-3160 . 262770) (-3161 . 262379) (-3162 . 262315)
- (-3163 . 262110) (-3164 . 262044) (-3165 . 261960) (-3166 . 261819)
- (-3167 . 261609) (-3168 . 261486) (-3169 . 261306) (-3170 . 261278)
- (-3171 . 261150) (-3172 . 260876) (-3173 . 260759) (-3174 . 260657)
- (-3175 . 260547) (-3176 . 260301) (-3177 . 260249) (-3178 . 260127)
- (-3179 . 259806) (-3180 . 259673) (-3181 . 259594) (-3182 . 259218)
- (-3183 . 259096) (-3184 . 258923) (-3185 . 258873) (-3186 . 258630)
- (-3187 . 258340) (-3188 . 258266) (-3189 . 258195) (-3190 . 258040)
- (-3191 . 257966) (-3192 . 257798) (-3193 . 257367) (-3194 . 257205)
- (-3195 . 257015) (-3196 . 256654) (-3197 . 256435) (-3198 . 255519)
- (-3199 . 255365) (-3200 . 255214) (-3201 . 255059) (-3202 . 255008)
- (-3203 . 254956) (-3204 . 254896) (-3205 . 254845) (-3206 . 254793)
- (-3207 . 254326) (-3208 . 254243) (-3209 . 254128) (-3210 . 253936)
- (-3211 . 253781) (-3212 . 253280) (-3213 . 252526) (-3214 . 252367)
- (-3215 . 252122) (-3216 . 251836) (-3217 . 251780) (-3218 . 251721)
- (-3219 . 251313) (-3220 . 251189) (-3221 . 250975) (-3222 . 250683)
- (-3223 . 250204) (-3224 . 250085) (-3225 . 249915) (-3226 . 249803)
- (-3227 . 249701) (-3228 . 249555) (-3229 . 249425) (-3230 . 249351)
- (-3231 . 249134) (-3232 . 249082) (-3233 . 248915) (-3234 . 248673)
- (-3235 . 248558) (-3236 . 248340) (-3237 . 248129) (-3238 . 248067)
- (-3239 . 247417) (-3240 . 247330) (-3241 . 247191) (-3242 . 246969)
- (-3243 . 246896) (-3244 . 246766) (-3245 . 246529) (-3246 . 246474)
- (-3247 . 246388) (-3248 . 246091) (-3249 . 245968) (-3250 . 245872)
- (-3251 . 245584) (-3252 . 245552) (-3253 . 245478) (-3254 . 245384)
- (-3255 . 245196) (-3256 . 245125) (-3257 . 244988) (-3258 . 244807)
- (-3259 . 244654) (-3260 . 244496) (-3261 . 244116) (-3262 . 244042)
- (-3263 . 243926) (-3264 . 240837) (-3265 . 240585) (-3266 . 240511)
- (-3267 . 240428) (-3268 . 240239) (-3269 . 240075) (-3270 . 239848)
- (-3271 . 239750) (-3272 . 239648) (-3273 . 239575) (-3274 . 239389)
- (-3275 . 239129) (-3276 . 238958) (-3277 . 238257) (-3278 . 238102)
- (-3279 . 238051) (-3280 . 237990) (-3281 . 237719) (-3282 . 237438)
- (-3283 . 237278) (-3284 . 237212) (-3285 . 237069) (-3286 . 236359)
- (-3287 . 236112) (-3288 . 235988) (-3289 . 235658) (-3290 . 235577)
- (-3291 . 235379) (-3292 . 235221) (-3293 . 235156) (-3294 . 235021)
- (-3295 . 234968) (-3296 . 234843) (-3297 . 234671) (-3298 . 234583)
- (-3299 . 234453) (-3300 . 234403) (-3301 . 234254) (-3302 . 233673)
- (-3303 . 233575) (-3304 . 232759) (-3305 . 232703) (-3306 . 232622)
- (-3307 . 232388) (-3308 . 232339) (-3309 . 232268) (-3310 . 232202)
- (-3311 . 232136) (-3312 . 232065) (-3313 . 231962) (-3314 . 231839)
- (-3315 . 231604) (-3316 . 231053) (-3317 . 230975) (-3318 . 230881)
- (-3319 . 230770) (-3320 . 230626) (-3321 . 230460) (-3322 . 230281)
- (-3323 . 230071) (-3324 . 229988) (-3325 . 229932) (-3326 . 229879)
- (-3327 . 229641) (-3328 . 229581) (-3329 . 229354) (-3330 . 229244)
- (-3331 . 229172) (-3332 . 229135) (-3333 . 229067) (-3334 . 229012)
- (-3335 . 228905) (-3336 . 228696) (-3337 . 228542) (-3338 . 228469)
- (-3339 . 228338) (-3340 . 228148) (-3341 . 222941) (-3342 . 222681)
- (-3343 . 222559) (-3344 . 222468) (-3345 . 221868) (-3346 . 221773)
- (-3347 . 221494) (-3348 . 221312) (-3349 . 221149) (-3350 . 220738)
- (-3351 . 220642) (-3352 . 220482) (-3353 . 220267) (-3354 . 220187)
- (-3355 . 220079) (-3356 . 220020) (-3357 . 219916) (-3358 . 219639)
- (-3359 . 219546) (-3360 . 219488) (-3361 . 219371) (-3362 . 219199)
- (-3363 . 219095) (-3364 . 218923) (-3365 . 218684) (-3366 . 218613)
- (-3367 . 218408) (-3368 . 218136) (-3369 . 217824) (-3370 . 217754)
- (-3371 . 217676) (-3372 . 217516) (-3373 . 217379) (-3374 . 217226)
- (-3375 . 217054) (-3376 . 216984) (-3377 . 216956) (-3378 . 216849)
- (-3379 . 216334) (-3380 . 216281) (-3381 . 216112) (-3382 . 216018)
- (-3383 . 215939) (-3384 . 215869) (-3385 . 215799) (-3386 . 215731)
- (-3387 . 215579) (-3388 . 215407) (-3389 . 215303) (-3390 . 215196)
- (-3391 . 215094) (-3392 . 215066) (-3393 . 214998) (-3394 . 214920)
- (-3395 . 214886) (-3396 . 214724) (-3397 . 214669) (-3398 . 214497)
- (-3399 . 213432) (-3400 . 213306) (-3401 . 213232) (-3402 . 213198)
- (-3403 . 213103) (-3404 . 212999) (-3405 . 212183) (-3406 . 212128)
- (-3407 . 212034) (-3408 . 211948) (-3409 . 210697) (-3410 . 210639)
- (-3411 . 210461) (-3412 . 210405) (-3413 . 210213) (-3414 . 209773)
- (-3415 . 209670) (-3416 . 209486) (-3417 . 208750) (-3418 . 208404)
- (-3419 . 207995) (-3420 . 207792) (-3421 . 207137) (-3422 . 206997)
- (-3423 . 206945) (-3424 . 206839) (-3425 . 206567) (-3426 . 206508)
- (-3427 . 206437) (-3428 . 206344) (-3429 . 206292) (-3430 . 206134)
- (-3431 . 205886) (-3432 . 205699) (-3433 . 205637) (-3434 . 205459)
- (-3435 . 205386) (-3436 . 205320) (-3437 . 205101) (-3438 . 205048)
- (-3439 . 204866) (-3440 . 204811) (-3441 . 204543) (-3442 . 204449)
- (-3443 . 204396) (-3444 . 204213) (-3445 . 204136) (-3446 . 204058)
- (-3447 . 204005) (-3448 . 203852) (-3449 . 203257) (-3450 . 203061)
- (-3451 . 202954) (-3452 . 202895) (-3453 . 202641) (-3454 . 202493)
- (-3455 . 202441) (-3456 . 200279) (-3457 . 200167) (-3458 . 200052)
- (-3459 . 199871) (-3460 . 199053) (-3461 . 198982) (-3462 . 198829)
- (-3463 . 198801) (-3464 . 198582) (-3465 . 198297) (-3466 . 198146)
- (-3467 . 198067) (-3468 . 197997) (-3469 . 197788) (-3470 . 197641)
- (-3471 . 197512) (-3472 . 197415) (-3473 . 197289) (-3474 . 197236)
- (-3475 . 197038) (-3476 . 196798) (-3477 . 196532) (-3478 . 196431)
- (-3479 . 196337) (-3480 . 196192) (-3481 . 195883) (-3482 . 195513)
- (-3483 . 195386) (-3484 . 195096) (-3485 . 194918) (-3486 . 194890)
- (-3487 . 194793) (-3488 . 194644) (-3489 . 194561) (-3490 . 194471)
- (-3491 . 194369) (-3492 . 193772) (-3493 . 193445) (-3494 . 193292)
- (-3495 . 193063) (-3496 . 192930) (-3497 . 192789) (-3498 . 192571)
- (-3499 . 192410) (-3500 . 192358) (-3501 . 192141) (-3502 . 191979)
- (-3503 . 191592) (-3504 . 191536) (-3505 . 191473) (-3506 . 191253)
- (-3507 . 190920) (-3508 . 190377) (-3509 . 190270) (-3510 . 190047)
- (-3511 . 189994) (-3512 . 189936) (-3513 . 189793) (-3514 . 189587)
- (-3515 . 189446) (-3516 . 189303) (-3517 . 189119) (-3518 . 189015)
- (-3519 . 188908) (-3520 . 188824) (-3521 . 188720) (-3522 . 188626)
- (-3523 . 188407) (-3524 . 188264) (-3525 . 188149) (-3526 . 187873)
- (-3527 . 187749) (-3528 . 187669) (-3529 . 187534) (-3530 . 187173)
- (-3531 . 187017) (-3532 . 186759) (-3533 . 186001) (-3534 . 185907)
- (-3535 . 185677) (-3536 . 185539) (-3537 . 185416) (-3538 . 185349)
- (-3539 . 185321) (-3540 . 185222) (-3541 . 185137) (-3542 . 184837)
- (-3543 . 184760) (-3544 . 184611) (-3545 . 184474) (-3546 . 184336)
- (-3547 . 184232) (-3548 . 184203) (-3549 . 184113) (-3550 . 184034)
- (-3551 . 183962) (-3552 . 183817) (-3553 . 183430) (-3554 . 183350)
- (-3555 . 183243) (-3556 . 183162) (-3557 . 183085) (-3558 . 182942)
- (-3559 . 182746) (-3560 . 182617) (-3561 . 182345) (-3562 . 182275)
- (-3563 . 182226) (-3564 . 182023) (-3565 . 181937) (-3566 . 181749)
- (-3567 . 181669) (-3568 . 181223) (-3569 . 181089) (-3570 . 181012)
- (-3571 . 180906) (-3572 . 180752) (-3573 . 180679) (-3574 . 180389)
- (-3575 . 180109) (-3576 . 180026) (-3577 . 179912) (-3578 . 179806)
- (-3579 . 179691) (-3580 . 179618) (-3581 . 179452) (-3582 . 179375)
- (-3583 . 179297) (-3584 . 179132) (-3585 . 178816) (-3586 . 178758)
- (-3587 . 178675) (-3588 . 178592) (-3589 . 178473) (-3590 . 178363)
- (-3591 . 178289) (-3592 . 178166) (-3593 . 177992) (-3594 . 177811)
- (-3595 . 177758) (-3596 . 177367) (-3597 . 176984) (-3598 . 176906)
- (-3599 . 176833) (-3600 . 176780) (-3601 . 176713) (-3602 . 176010)
- (-3603 . 175900) (-3604 . 175149) (-3605 . 175018) (-3606 . 174651)
- (-3607 . 174563) (-3608 . 174468) (-3609 . 174267) (-3610 . 174230)
- (-3611 . 173767) (-3612 . 173710) (-3613 . 173603) (-3614 . 172600)
- (-3615 . 172472) (-3616 . 172371) (-3617 . 172228) (-3618 . 171997)
- (-3619 . 171679) (-3620 . 171627) (-3621 . 171443) (-3622 . 171261)
- (-3623 . 171103) (-3624 . 171029) (-3625 . 170890) (-3626 . 170766)
- (-3627 . 170643) (-3628 . 169534) (-3629 . 169437) (-3630 . 167654)
- (-3631 . 167509) (-3632 . 166271) (-3633 . 166164) (-3634 . 165933)
- (-3635 . 165813) (-3636 . 165606) (-3637 . 165526) (-3638 . 165313)
- (-3639 . 164799) (-3640 . 164701) (-3641 . 164578) (-3642 . 164501)
- (-3643 . 164407) (-3644 . 164339) (-3645 . 164238) (-3646 . 163625)
- (-3647 . 163506) (-3648 . 163279) (-3649 . 163135) (-3650 . 162979)
- (-3651 . 162812) (-3652 . 162708) (-3653 . 162421) (-3654 . 162275)
- (-3655 . 161315) (-3656 . 161133) (-3657 . 160706) (-3658 . 160539)
- (-3659 . 160466) (-3660 . 160192) (-3661 . 160083) (-3662 . 159691)
- (-3663 . 159657) (-3664 . 159485) (-3665 . 159126) (-3666 . 158796)
- (-3667 . 158734) (-3668 . 158647) (-3669 . 158540) (-3670 . 158235)
- (-3671 . 157801) (-3672 . 157677) (-3673 . 157568) (-3674 . 157395)
- (-3675 . 157187) (-3676 . 157088) (-3677 . 157035) (-3678 . 156647)
- (-3679 . 155998) (-3680 . 155819) (-3681 . 155349) (-3682 . 154860)
- (-3683 . 154788) (-3684 . 154736) (-3685 . 154602) (-3686 . 154000)
- (-3687 . 153893) (-3688 . 153771) (-3689 . 153622) (-3690 . 153311)
- (-3691 . 153238) (-3692 . 153178) (-3693 . 153083) (-3694 . 152805)
- (-3695 . 152739) (-3696 . 152673) (-3697 . 152586) (-3698 . 152474)
- (-3699 . 152424) (-3700 . 152371) (-3701 . 150257) (-3702 . 150162)
- (-3703 . 150094) (-3704 . 149944) (-3705 . 149843) (-3706 . 149706)
- (-3707 . 149255) (-3708 . 149189) (-3709 . 148653) (-3710 . 148270)
- (-3711 . 148182) (-3712 . 148132) (-3713 . 147948) (-3714 . 147874)
- (-3715 . 147818) (-3716 . 147765) (-3717 . 147668) (-3718 . 147609)
- (-3719 . 147512) (-3720 . 147456) (-3721 . 147373) (-3722 . 147301)
- (-3723 . 147227) (-3724 . 147003) (-3725 . 146908) (-3726 . 146836)
- (-3727 . 145734) (-3728 . 145673) (-3729 . 145454) (-3730 . 145358)
- (-3731 . 144877) (-3732 . 144764) (-3733 . 144562) (-3734 . 144509)
- (-3735 . 144426) (-3736 . 144317) (-3737 . 144264) (-3738 . 144181)
- (-3739 . 143988) (-3740 . 143795) (-3741 . 143673) (-3742 . 143297)
- (-3743 . 142603) (-3744 . 142384) (-3745 . 142258) (-3746 . 142078)
- (-3747 . 142010) (-3748 . 141961) (-3749 . 141659) (-3750 . 141343)
- (-3751 . 140704) (-3752 . 140652) (-3753 . 140206) (-3754 . 140149)
- (-3755 . 140097) (-3756 . 139996) (-3757 . 139856) (-3758 . 139728)
- (-3759 . 139426) (-3760 . 139099) (-3761 . 139001) (-3762 . 138497)
- (-3763 . 138250) (-3764 . 138219) (-3765 . 138145) (-3766 . 138057)
- (-3767 . 137763) (-3768 . 137657) (-3769 . 137450) (-3770 . 137355)
- (-3771 . 137069) (-3772 . 136976) (-3773 . 136863) (-3774 . 136720)
- (-3775 . 136403) (-3776 . 136155) (-3777 . 136009) (-3778 . 135871)
- (-3779 . 135771) (-3780 . 135592) (-3781 . 135561) (-3782 . 135508)
- (-3783 . 135399) (-3784 . 135291) (-3785 . 135223) (-3786 . 135020)
- (-3787 . 134766) (-3788 . 134391) (-3789 . 134299) (-3790 . 134187)
- (-3791 . 134107) (-3792 . 134019) (-3793 . 133845) (-3794 . 133670)
- (-3795 . 133514) (-3796 . 133239) (-3797 . 133109) (-3798 . 133037)
- (-3799 . 132945) (-3800 . 132528) (-3801 . 132308) (-3802 . 132198)
- (-3803 . 132089) (-3804 . 130908) (-3805 . 130669) (-3806 . 130632)
- (-3807 . 130492) (-3808 . 130406) (-3809 . 130320) (-3810 . 130100)
- (-3811 . 130017) (-3812 . 129418) (-3813 . 129341) (-3814 . 129222)
- (-3815 . 129099) (-3816 . 129025) (-3817 . 128223) (-3818 . 127745)
- (-3819 . 127717) (-3820 . 127643) (-3821 . 127536) (-3822 . 127485)
- (-3823 . 127314) (-3824 . 127115) (-3825 . 126890) (-3826 . 126697)
- (-3827 . 126624) (-3828 . 126526) (-3829 . 126152) (-3830 . 126046)
- (-3831 . 125991) (-3832 . 125869) (-3833 . 125817) (-3834 . 125730)
- (-3835 . 125678) (-3836 . 125597) (-3837 . 125459) (-3838 . 125121)
- (-3839 . 125033) (-3840 . 124698) (-3841 . 124527) (-3842 . 124493)
- (-3843 . 124351) (-3844 . 124299) (-3845 . 124204) (-3846 . 100782)
- (-3847 . 100390) (-3848 . 100052) (-3849 . 99086) (-3850 . 99030)
- (-3851 . 98976) (-3852 . 98848) (-3853 . 98783) (-3854 . 96031)
- (-3855 . 95968) (-3856 . 95862) (-3857 . 95725) (-3858 . 95613)
- (-3859 . 95534) (-3860 . 95355) (-3861 . 94984) (-3862 . 94669)
- (-3863 . 94481) (-3864 . 94413) (-3865 . 94295) (-3866 . 94240)
- (-3867 . 94133) (-3868 . 93726) (-3869 . 93643) (-3870 . 93097)
- (-3871 . 92995) (-3872 . 92926) (-3873 . 92784) (-3874 . 92668)
- (-3875 . 92474) (-3876 . 92380) (-3877 . 92240) (-3878 . 92149)
- (-3879 . 91892) (-3880 . 91811) (-3881 . 91410) (-3882 . 91355)
- (-3883 . 90863) (-3884 . 90717) (-3885 . 90573) (-3886 . 90246)
- (** . 87157) (-3888 . 87094) (-3889 . 87045) (-3890 . 86507)
- (-3891 . 86363) (-3892 . 86284) (-3893 . 79285) (-3894 . 78858)
- (-3895 . 78763) (-3896 . 78572) (-3897 . 77768) (-3898 . 77696)
- (-3899 . 77587) (-3900 . 77480) (-3901 . 77314) (-3902 . 76550)
- (-3903 . 76496) (-3904 . 76395) (-3905 . 76281) (-3906 . 76040)
- (-3907 . 75699) (-3908 . 75527) (-3909 . 75357) (-3910 . 75179)
- (-3911 . 74834) (-3912 . 74778) (-3913 . 74750) (-3914 . 74635)
- (-3915 . 74505) (-3916 . 74434) (-3917 . 74298) (-3918 . 74088)
- (-3919 . 73795) (-3920 . 73677) (-3921 . 73250) (-3922 . 73163)
- (-3923 . 73135) (-3924 . 72907) (-3925 . 72814) (-3926 . 72322)
- (-3927 . 72272) (-3928 . 72128) (-3929 . 72027) (-3930 . 71882)
- (-3931 . 71609) (-3932 . 71421) (-3933 . 71357) (-3934 . 71253)
- (-3935 . 71198) (-3936 . 70995) (-3937 . 70936) (-3938 . 70821)
- (-3939 . 70698) (-3940 . 70541) (-3941 . 70510) (-3942 . 70454)
- (-3943 . 70388) (-3944 . 70250) (-3945 . 70179) (-3946 . 69746)
- (-3947 . 69712) (-3948 . 69566) (-3949 . 69534) (-3950 . 69397)
- (-3951 . 69252) (-3952 . 69174) (-3953 . 68579) (-3954 . 67946)
- (-3955 . 67636) (-3956 . 67198) (-3957 . 67094) (-3958 . 66995)
- (-3959 . 66943) (-3960 . 66783) (-3961 . 66700) (-3962 . 66617)
- (-3963 . 66437) (-3964 . 66353) (-3965 . 66143) (-3966 . 66042)
- (-3967 . 65942) (-3968 . 65835) (-3969 . 65763) (-3970 . 65710)
- (-3971 . 65633) (-3972 . 65559) (-3973 . 65267) (-3974 . 65239)
- (-3975 . 65081) (-3976 . 65008) (-3977 . 64727) (-3978 . 64564)
- (-3979 . 64117) (-3980 . 64046) (-3981 . 63929) (-3982 . 63841)
- (-3983 . 63789) (-3984 . 63585) (-3985 . 63281) (-3986 . 63096)
- (-3987 . 63037) (-3988 . 62858) (-3989 . 62041) (-3990 . 61922)
- (-3991 . 61870) (-3992 . 61756) (-3993 . 61700) (-3994 . 61615)
- (-3995 . 61390) (-3996 . 61262) (-3997 . 61213) (-3998 . 61161)
- (-3999 . 61129) (-4000 . 60890) (-4001 . 60775) (-4002 . 60693)
- (-4003 . 60625) (-4004 . 60522) (-4005 . 60346) (-4006 . 60199)
- (-4007 . 60142) (-4008 . 60025) (-4009 . 59956) (-4010 . 59807)
- (-4011 . 59726) (-4012 . 59592) (-4013 . 59342) (-4014 . 59128)
- (-4015 . 58888) (-4016 . 58697) (-4017 . 58324) (-4018 . 57704)
- (-4019 . 57631) (-4020 . 57449) (-4021 . 56970) (-4022 . 56484)
- (-4023 . 56407) (-4024 . 55955) (-4025 . 55869) (-4026 . 55647)
- (-4027 . 55298) (-4028 . 55183) (-4029 . 54950) (-4030 . 54818)
- (-4031 . 54723) (-4032 . 54592) (-4033 . 54373) (-4034 . 54265)
- (-4035 . 54168) (-4036 . 53741) (-4037 . 53545) (-4038 . 53213)
- (-4039 . 53098) (-4040 . 52756) (-4041 . 52678) (-4042 . 52604)
- (-4043 . 52495) (-4044 . 52340) (-4045 . 52231) (-4046 . 51939)
- (-4047 . 51814) (-4048 . 51761) (-4049 . 51727) (-4050 . 51628)
- (-4051 . 51573) (-4052 . 51455) (-4053 . 51427) (-4054 . 51286)
- (-4055 . 51202) (-4056 . 51122) (-4057 . 50986) (-4058 . 50933)
- (-4059 . 50881) (-4060 . 50629) (-4061 . 49332) (-4062 . 49249)
- (-4063 . 49144) (-4064 . 49084) (-4065 . 48969) (-4066 . 48627)
- (-4067 . 48553) (-4068 . 48449) (-4069 . 48398) (-4070 . 48242)
- (-4071 . 48189) (-4072 . 48082) (-4073 . 47943) (-4074 . 47830)
- (-4075 . 47464) (-4076 . 47339) (-4077 . 47232) (-4078 . 47137)
- (-4079 . 47030) (-4080 . 46918) (-4081 . 46846) (-4082 . 46739)
- (-4083 . 46352) (-4084 . 46278) (-4085 . 45884) (-4086 . 45801)
- (-4087 . 45472) (-4088 . 45340) (-4089 . 45245) (-4090 . 45099)
- (-4091 . 44828) (-4092 . 44772) (-4093 . 44719) (-4094 . 43434)
- (-4095 . 43375) (-4096 . 43323) (-4097 . 43254) (-4098 . 43152)
- (-4099 . 43075) (-4100 . 42589) (-4101 . 42510) (-4102 . 42379)
- (-4103 . 42282) (-4104 . 42002) (-4105 . 41908) (-4106 . 41853)
- (-4107 . 41756) (-4108 . 41647) (-4109 . 41534) (-4110 . 41482)
- (-4111 . 40814) (-4112 . 40483) (-4113 . 40233) (-4114 . 40148)
- (-4115 . 40055) (-4116 . 39546) (-4117 . 39272) (-4118 . 38843)
- (-4119 . 38700) (-4120 . 38485) (-4121 . 38365) (-4122 . 38250)
- (-4123 . 38165) (-4124 . 38088) (-4125 . 37874) (-4126 . 37807)
- (-4127 . 37511) (-4128 . 37334) (-4129 . 37210) (-4130 . 37153)
- (-4131 . 36760) (-4132 . 35732) (-4133 . 35640) (-4134 . 35542)
- (-4135 . 35458) (-4136 . 35391) (-4137 . 35279) (-4138 . 35149)
- (-4139 . 35072) (-4140 . 34973) (-4141 . 34462) (-4142 . 34271)
- (-4143 . 34200) (-4144 . 34146) (-4145 . 34090) (-4146 . 33796)
- (-4147 . 33653) (-4148 . 33573) (-4149 . 33082) (-4150 . 33054)
- (-4151 . 32886) (-4152 . 32742) (-4153 . 32519) (-4154 . 31434)
- (-4155 . 31379) (-4156 . 31249) (-4157 . 31117) (-4158 . 31018)
- (-4159 . 30771) (-4160 . 30722) (-4161 . 30411) (-4162 . 30126)
- (-4163 . 29580) (-4164 . 29189) (-4165 . 29103) (-4166 . 28037)
- (-4167 . 27970) (-4168 . 27942) (-4169 . 27817) (-4170 . 27718)
- (-4171 . 27659) (-4172 . 27549) (-4173 . 27450) (-4174 . 27376)
- (-4175 . 27323) (-4176 . 26972) (-4177 . 26809) (-4178 . 26743)
- (-4179 . 26581) (-4180 . 26437) (-4181 . 25934) (-4182 . 25825)
- (-4183 . 25724) (-4184 . 25395) (-4185 . 25280) (-4186 . 25089)
- (-4187 . 24859) (-4188 . 24595) (-4189 . 24507) (-4190 . 24427)
- (-4191 . 24377) (-4192 . 24162) (-4193 . 24108) (-4194 . 24052)
- (-4195 . 23835) (-4196 . 23630) (-4197 . 23581) (-4198 . 23498)
- (-4199 . 23470) (-4200 . 23365) (-4201 . 23281) (-4202 . 23187)
- (-4203 . 22998) (-4204 . 22699) (-4205 . 22377) (-4206 . 22253)
- (-4207 . 22156) (-4208 . 22057) (-4209 . 21985) (-4210 . 21311)
- (-4211 . 21169) (-4212 . 20910) (-4213 . 20860) (-4214 . 20703)
- (-4215 . 20643) (-4216 . 20449) (-4217 . 20351) (-4218 . 20248)
- (-4219 . 20182) (-4220 . 19915) (-4221 . 19810) (-4222 . 19757)
- (-4223 . 19626) (-4224 . 19568) (-4225 . 19353) (-4226 . 19180)
- (-4227 . 19128) (-4228 . 19031) (-4229 . 18952) (-4230 . 18843)
- (-4231 . 18700) (-4232 . 18435) (-4233 . 18328) (-4234 . 18247)
- (-4235 . 18175) (-4236 . 18116) (-4237 . 17998) (-4238 . 17928)
- (-4239 . 17812) (-4240 . 17717) (-4241 . 17631) (-4242 . 17545)
- (-4243 . 17431) (-4244 . 17306) (-4245 . 16493) (-4246 . 16419)
- (-4247 . 16306) (-4248 . 15695) (-4249 . 15289) (-4250 . 15218)
- (-4251 . 15114) (-4252 . 14908) (-4253 . 14787) (-4254 . 14669)
- (-4255 . 14333) (-4256 . 14226) (-4257 . 14068) (-4258 . 13980)
- (-4259 . 13884) (-4260 . 13749) (-4261 . 13697) (-4262 . 13590)
- (-4263 . 12398) (-4264 . 12309) (-4265 . 12115) (-4266 . 11506)
- (-4267 . 11407) (-4268 . 11314) (-4269 . 11261) (-4270 . 11043)
- (-4271 . 10965) (-4272 . 10928) (-4273 . 10552) (-4274 . 9128)
- (-4275 . 8903) (-4276 . 8838) (-4277 . 8731) (-4278 . 8594)
- (-4279 . 8481) (-4280 . 8346) (-4281 . 8236) (-4282 . 7885)
- (-4283 . 7227) (-4284 . 7099) (-4285 . 6195) (-4286 . 6136)
- (-4287 . 5840) (-4288 . 5588) (-4289 . 5528) (-4290 . 5329)
- (-4291 . 5090) (-4292 . 4747) (-4293 . 4694) (-4294 . 4349)
- (-4295 . 4256) (-4296 . 4027) (-4297 . 3730) (-4298 . 3503)
- (-4299 . 3338) (-4300 . 3283) (-4301 . 3228) (-4302 . 3116)
- (-4303 . 2542) (-4304 . 2038) (-4305 . 1951) (-4306 . 1720)
- (-4307 . 1668) (-4308 . 1488) (-4309 . 1278) (-4310 . 1250)
- (-4311 . 1042) (-4312 . 764) (-4313 . 596) (-4314 . 511) (-4315 . 311)
- (-4316 . 158) (-4317 . 30)) \ No newline at end of file
+ (-12 (-4 *3 (-1018)) (-5 *2 (-621 *1)) (-4 *1 (-1100 *3)))))
+((-1258 . 737261) (-1259 . 737139) (-1260 . 736974) (-1261 . 736862)
+ (-1262 . 736365) (-1263 . 736254) (-1264 . 736020) (-1265 . 735534)
+ (-1266 . 735477) (-1267 . 735355) (-1268 . 734745) (-1269 . 734694)
+ (-1270 . 734593) (-1271 . 734408) (-1272 . 733520) (-1273 . 733447)
+ (-1274 . 733361) (-1275 . 733289) (-1276 . 733167) (-1277 . 733016)
+ (-1278 . 732840) (-1279 . 732642) (-1280 . 732291) (-1281 . 732220)
+ (-1282 . 731959) (-1283 . 731643) (-1284 . 731530) (-1285 . 731316)
+ (-1286 . 731214) (-1287 . 731010) (-1288 . 730953) (-1289 . 730611)
+ (-1290 . 730384) (-1291 . 730272) (-1292 . 729843) (-1293 . 729741)
+ (-1294 . 729654) (-1295 . 729407) (-1296 . 729299) (-1297 . 729211)
+ (-1298 . 729009) (-1299 . 728043) (-1300 . 727990) (-1301 . 727938)
+ (-1302 . 727886) (-1303 . 727670) (-1304 . 727143) (-1305 . 726959)
+ (-1306 . 726856) (-1307 . 726754) (-1308 . 726655) (-1309 . 726406)
+ (-1310 . 726253) (-1311 . 725255) (-1312 . 725137) (-1313 . 725084)
+ (-1314 . 725052) (-1315 . 724908) (-1316 . 724793) (-1317 . 724568)
+ (-1318 . 724449) (-1319 . 724308) (-1320 . 724254) (-1321 . 724075)
+ (-1322 . 723892) (-1323 . 723507) (-1324 . 723377) (-1325 . 723237)
+ (-1326 . 723041) (-1327 . 722947) (-1328 . 722829) (-1329 . 722711)
+ (-1330 . 722643) (-1331 . 722514) (-1332 . 722457) (-1333 . 722330)
+ (-1334 . 722256) (-1335 . 722204) (-1336 . 722133) (-1337 . 722077)
+ (-1338 . 721973) (-1339 . 721913) (-1340 . 721763) (-1341 . 721686)
+ (-1342 . 721479) (-1343 . 721206) (-1344 . 721122) (-1345 . 721051)
+ (-1346 . 720931) (-1347 . 720474) (-1348 . 720392) (-1349 . 720292)
+ (-1350 . 719582) (-1351 . 719463) (-1352 . 719308) (-1353 . 719253)
+ (-1354 . 718991) (-1355 . 718894) (-1356 . 718685) (-1357 . 718528)
+ (-1358 . 718354) (-1359 . 718239) (-1360 . 717877) (-1361 . 717849)
+ (-1362 . 717479) (-1363 . 717193) (-1364 . 717113) (-1365 . 717058)
+ (-1366 . 717004) (-1367 . 716918) (-1368 . 716834) (-1369 . 716735)
+ (-1370 . 716572) (-1371 . 716389) (-1372 . 716316) (-1373 . 716257)
+ (-1374 . 716094) (-1375 . 716024) (-1376 . 715467) (-1377 . 715333)
+ (-1378 . 715178) (-1379 . 715020) (-1380 . 714876) (-1381 . 714810)
+ (-1382 . 714739) (-1383 . 714668) (-1384 . 714502) (-1385 . 714434)
+ (-1386 . 714381) (-1387 . 714310) (-1388 . 714204) (-1389 . 714081)
+ (-1390 . 713369) (-1391 . 713078) (-1392 . 712377) (-1393 . 712316)
+ (-1394 . 712125) (-1395 . 712021) (-1396 . 711962) (-1397 . 711737)
+ (-1398 . 711656) (-1399 . 711570) (-1400 . 711447) (-1401 . 711395)
+ (-1402 . 711267) (-1403 . 711102) (-1404 . 710424) (-1405 . 710229)
+ (-1406 . 710180) (-1407 . 710070) (-1408 . 709850) (-1409 . 709647)
+ (-1410 . 709466) (-1411 . 709151) (-1412 . 709081) (-1413 . 708655)
+ (-1414 . 708581) (-1415 . 708481) (-1416 . 708242) (-1417 . 708170)
+ (-1418 . 708076) (-1419 . 707988) (-1420 . 707393) (-1421 . 707315)
+ (-1422 . 707208) (-1423 . 707020) (-1424 . 706916) (-1425 . 706651)
+ (-1426 . 706506) (-1427 . 706415) (-1428 . 706305) (-1429 . 706211)
+ (-1430 . 706156) (-1431 . 706012) (-1432 . 705913) (-1433 . 705825)
+ (-1434 . 705695) (-1435 . 705122) (-1436 . 704880) (-1437 . 704756)
+ (-1438 . 704635) (-1439 . 704528) (-1440 . 704349) (-1441 . 703988)
+ (-1442 . 703894) (-1443 . 703866) (-1444 . 703746) (-1445 . 703452)
+ (-1446 . 703174) (-1447 . 702787) (-1448 . 701777) (-1449 . 701748)
+ (-1450 . 701560) (-1451 . 701451) (-1452 . 701331) (-1453 . 701278)
+ (-1454 . 700760) (-1455 . 700572) (-1456 . 700498) (-1457 . 700429)
+ (-1458 . 700314) (-1459 . 700147) (-1460 . 700045) (-1461 . 699989)
+ (-1462 . 699689) (-1463 . 699414) (-1464 . 699025) (-1465 . 698884)
+ (-1466 . 698760) (-1467 . 698665) (-1468 . 698598) (-1469 . 698497)
+ (-1470 . 698353) (-1471 . 698175) (-1472 . 698080) (-1473 . 697913)
+ (-1474 . 697861) (-1475 . 697554) (-1476 . 697302) (-1477 . 696227)
+ (-1478 . 696082) (-1479 . 695958) (-1480 . 695886) (-1481 . 695720)
+ (-1482 . 695659) (-1483 . 694918) (-1484 . 694678) (-1485 . 694347)
+ (-1486 . 694123) (-1487 . 694021) (-1488 . 693534) (-1489 . 689471)
+ (-1490 . 689439) (-1491 . 689220) (-1492 . 689153) (-1493 . 689007)
+ (-1494 . 688787) (-1495 . 688541) (-1496 . 688486) (-1497 . 688412)
+ (-1498 . 688254) (-1499 . 688202) (-1500 . 687461) (-1501 . 687395)
+ (-1502 . 687302) (-1503 . 686695) (-1504 . 686588) (-1505 . 686447)
+ (-1506 . 686343) (-1507 . 686283) (-1508 . 686155) (-1509 . 685683)
+ (-1510 . 684995) (-1511 . 684966) (-1512 . 684617) (-1513 . 684540)
+ (-1514 . 684454) (-1515 . 684353) (-1516 . 683674) (-1517 . 683302)
+ (-1518 . 682864) (-1519 . 682528) (-1520 . 682440) (-1521 . 682362)
+ (-1522 . 682163) (-1523 . 682108) (-1524 . 681838) (-1525 . 681262)
+ (-1526 . 680629) (-1527 . 680576) (-1528 . 680524) (-1529 . 680193)
+ (-1530 . 680105) (-1531 . 679289) (-1532 . 678689) (-1533 . 678380)
+ (-1534 . 678289) (-1535 . 678119) (-1536 . 677947) (-1537 . 677891)
+ (-1538 . 677315) (-1539 . 677241) (-1540 . 677120) (-1541 . 674775)
+ (-1542 . 674659) (-1543 . 674545) (-1544 . 674368) (-1545 . 673203)
+ (-1546 . 673174) (-1547 . 673103) (-1548 . 672961) (-12 . 672789)
+ (-1550 . 672514) (-1551 . 671938) (-1552 . 671887) (-1553 . 671832)
+ (-1554 . 671746) (-1555 . 671649) (-1556 . 671582) (-1557 . 670765)
+ (-1558 . 670685) (-1559 . 670548) (-1560 . 670418) (-1561 . 670085)
+ (-1562 . 669399) (-1563 . 669322) (-1564 . 668969) (-1565 . 668762)
+ (-1566 . 668432) (-1567 . 668140) (-1568 . 667933) (-1569 . 667575)
+ (-1570 . 667437) (-1571 . 667322) (-1572 . 667181) (-1573 . 667093)
+ (-1574 . 666989) (-1575 . 666303) (-1576 . 666251) (-1577 . 666128)
+ (-1578 . 665962) (-1579 . 665909) (-1580 . 665808) (-1581 . 665737)
+ (-1582 . 665466) (-1583 . 665365) (-1584 . 665235) (-1585 . 664486)
+ (-1586 . 664409) (-1587 . 664356) (-1588 . 664070) (-1589 . 664021)
+ (-1590 . 663831) (-1591 . 663722) (-1592 . 663663) (-1593 . 663347)
+ (-1594 . 663074) (-1595 . 662823) (-1596 . 662750) (-1597 . 662666)
+ (-1598 . 662092) (-1599 . 661909) (-1600 . 661843) (-1601 . 661770)
+ (-1602 . 661706) (-1603 . 661653) (-1604 . 661434) (-1605 . 661351)
+ (-1606 . 661252) (-1607 . 661103) (-1608 . 660960) (-1609 . 660846)
+ (-1610 . 660742) (-1611 . 660168) (-1612 . 659754) (-1613 . 659688)
+ (-1614 . 659554) (-1615 . 659441) (-1616 . 658520) (-1617 . 658113)
+ (-1618 . 658017) (-1619 . 657903) (-1620 . 657704) (-1621 . 657676)
+ (-1622 . 657569) (-1623 . 657503) (-1624 . 657450) (-1625 . 656876)
+ (-1626 . 656794) (-1627 . 656356) (-1628 . 656261) (-1629 . 656081)
+ (-1630 . 655938) (-1631 . 655866) (-1632 . 655779) (-1633 . 655664)
+ (-1634 . 655294) (-1635 . 655199) (-1636 . 655034) (-1637 . 654960)
+ (-1638 . 654273) (-1639 . 654245) (-1640 . 654109) (-1641 . 654011)
+ (-1642 . 653759) (-1643 . 653626) (-1644 . 653515) (-1645 . 653372)
+ (-1646 . 653204) (-1647 . 653074) (-1648 . 652387) (-1649 . 652268)
+ (-1650 . 652188) (-1651 . 651794) (-1652 . 651699) (-1653 . 651644)
+ (-1654 . 651523) (-1655 . 651316) (-1656 . 651236) (-1657 . 650977)
+ (-1658 . 650642) (-1659 . 650424) (* . 645878) (-1661 . 645825)
+ (-1662 . 645138) (-1663 . 644977) (-1664 . 644822) (-1665 . 644745)
+ (-1666 . 644616) (-1667 . 644533) (-1668 . 644481) (-1669 . 644277)
+ (-1670 . 644119) (-1671 . 643941) (-1672 . 643750) (-1673 . 643175)
+ (-1674 . 642753) (-1675 . 642618) (-1676 . 642530) (-1677 . 642462)
+ (-1678 . 642337) (-1679 . 641986) (-1680 . 641345) (-1681 . 641272)
+ (-1682 . 641188) (-1683 . 640983) (-1684 . 640408) (-1685 . 640315)
+ (-1686 . 640205) (-1687 . 640124) (-1688 . 640072) (-1689 . 640044)
+ (-1690 . 639991) (-1691 . 639872) (-1692 . 639808) (-1693 . 639701)
+ (-1694 . 639645) (-1695 . 639529) (-1696 . 638954) (-1697 . 638876)
+ (-1698 . 638805) (-1699 . 637973) (-1700 . 637591) (-1701 . 637491)
+ (-1702 . 637418) (-1703 . 637067) (-1704 . 636982) (-1705 . 636801)
+ (-1706 . 636713) (-1707 . 636636) (-1708 . 636062) (-1709 . 635979)
+ (-1710 . 635889) (-1711 . 635771) (-1712 . 635627) (-1713 . 635276)
+ (-1714 . 634795) (-1715 . 634676) (-1716 . 634503) (-1717 . 634241)
+ (-1718 . 633698) (-1719 . 633124) (-1720 . 632951) (-1721 . 632765)
+ (-1722 . 632683) (-1723 . 632579) (-1724 . 632508) (-1725 . 631978)
+ (-1726 . 631812) (-1727 . 631573) (-1728 . 631414) (-1729 . 631173)
+ (-1730 . 631093) (-1731 . 630519) (-1732 . 630405) (-1733 . 630301)
+ (-1734 . 630220) (-1735 . 630137) (-1736 . 629974) (-1737 . 629915)
+ (-1738 . 629796) (-1739 . 629713) (-1740 . 629624) (-1741 . 628248)
+ (-1742 . 628149) (-1743 . 627575) (-1744 . 627489) (-1745 . 627303)
+ (-1746 . 627220) (-1747 . 627113) (-1748 . 627019) (-1749 . 626991)
+ (-1750 . 626701) (-1751 . 626422) (-1752 . 625908) (-1753 . 625334)
+ (-1754 . 625231) (-1755 . 624953) (-1756 . 624882) (-1757 . 624308)
+ (-1758 . 623438) (-1759 . 623207) (-1760 . 622799) (-1761 . 622632)
+ (-1762 . 622502) (-1763 . 622401) (-1764 . 622085) (-1765 . 621812)
+ (-1766 . 621566) (-1767 . 621453) (-1768 . 621244) (-1769 . 620998)
+ (-1770 . 620692) (-1771 . 620639) (-1772 . 620571) (-1773 . 620457)
+ (-1774 . 620338) (-1775 . 620288) (-1776 . 620135) (-1777 . 619973)
+ (-1778 . 619921) (-1779 . 619855) (-1780 . 619769) (-1781 . 619457)
+ (-1782 . 619380) (-1783 . 619298) (-1784 . 619129) (-1785 . 618958)
+ (-1786 . 618909) (-1787 . 618500) (-1788 . 618228) (-1789 . 617895)
+ (-1790 . 617794) (-1791 . 616592) (-1792 . 616394) (-1793 . 616269)
+ (-1794 . 616212) (-1795 . 615933) (-1796 . 615827) (-1797 . 615581)
+ (-1798 . 615245) (-1799 . 612830) (-1800 . 612777) (-1801 . 612674)
+ (-1802 . 612597) (-1803 . 612478) (-1804 . 612057) (-1805 . 611697)
+ (-1806 . 611613) (-1807 . 611277) (-1808 . 611224) (-1809 . 611016)
+ (-1810 . 610829) (-1811 . 610734) (-1812 . 610635) (-1813 . 610583)
+ (-1814 . 610505) (-1815 . 610450) (-1816 . 610307) (-1817 . 609988)
+ (-1818 . 609875) (-1819 . 609778) (-1820 . 609717) (-1821 . 609552)
+ (-1822 . 609399) (-1823 . 609147) (-1824 . 608934) (-1825 . 608835)
+ (-1826 . 608506) (-1827 . 608407) (-1828 . 608204) (-1829 . 608123)
+ (-1830 . 608005) (-1831 . 607758) (-1832 . 607415) (-1833 . 607074)
+ (-1834 . 606742) (-1835 . 606652) (-1836 . 606484) (-1837 . 606234)
+ (-1838 . 606164) (-1839 . 606109) (-1840 . 605829) (-1841 . 605711)
+ (-1842 . 604747) (-1843 . 604624) (-1844 . 604596) (-1845 . 604502)
+ (-1846 . 604450) (-1847 . 604343) (-1848 . 604168) (-1849 . 604043)
+ (-1850 . 603861) (-1851 . 603698) (-1852 . 603570) (-1853 . 603517)
+ (-1854 . 603457) (-1855 . 603363) (-1856 . 603188) (-1857 . 603072)
+ (-1858 . 602974) (-1859 . 602837) (-1860 . 602771) (-1861 . 601614)
+ (-1862 . 601498) (-1863 . 601205) (-1864 . 600978) (-1865 . 600660)
+ (-1866 . 600508) (-1867 . 600422) (-1868 . 600394) (-1869 . 600328)
+ (-1870 . 600270) (-1871 . 599779) (-1872 . 599436) (-1873 . 599188)
+ (-1874 . 599088) (-1875 . 598856) (-1876 . 598698) (-1877 . 598574)
+ (-1878 . 598540) (-1879 . 598484) (-1880 . 598306) (-1881 . 598141)
+ (-1882 . 597998) (-1883 . 597657) (-1884 . 597554) (-1885 . 597447)
+ (-1886 . 597361) (-1887 . 597299) (-1888 . 597226) (-1889 . 597036)
+ (-1890 . 596798) (-1891 . 596724) (-1892 . 596412) (-1893 . 596314)
+ (-1894 . 596161) (-1895 . 596067) (-1896 . 596036) (-1897 . 595942)
+ (-1898 . 595808) (-1899 . 595754) (-1900 . 595077) (-1901 . 595048)
+ (-1902 . 594975) (-1903 . 594785) (-1904 . 594189) (-1905 . 594127)
+ (-1906 . 593674) (-1907 . 593516) (-1908 . 593466) (-1909 . 592920)
+ (-1910 . 592867) (-1911 . 592653) (-1912 . 592591) (-1913 . 592338)
+ (-1914 . 592286) (-1915 . 592213) (-1916 . 592118) (-1917 . 591995)
+ (-1918 . 591799) (-1919 . 591482) (-1920 . 590875) (-1921 . 590822)
+ (-1922 . 590769) (-1923 . 590660) (-1924 . 590555) (-1925 . 590347)
+ (-1926 . 590162) (-1927 . 590128) (-1928 . 590033) (-1929 . 589901)
+ (-1930 . 589821) (-1931 . 589642) (-1932 . 589068) (-1933 . 588988)
+ (-1934 . 588935) (-1935 . 588730) (-1936 . 588652) (-1937 . 588459)
+ (-1938 . 588407) (-1939 . 588261) (-1940 . 588159) (-1941 . 588037)
+ (-1942 . 587872) (-1943 . 587664) (-1944 . 587590) (-1945 . 587317)
+ (-1946 . 587194) (-1947 . 587082) (-1948 . 586966) (-1949 . 586821)
+ (-1950 . 586191) (-1951 . 586002) (-1952 . 585917) (-1953 . 585775)
+ (-1954 . 585612) (-1955 . 585513) (-1956 . 585425) (-1957 . 585367)
+ (-1958 . 585239) (-1959 . 585169) (-1960 . 585061) (-1961 . 585000)
+ (-1962 . 584927) (-1963 . 583676) (-1964 . 583529) (-1965 . 583374)
+ (-1966 . 583277) (-1967 . 583189) (-1968 . 582998) (-1969 . 582788)
+ (-1970 . 582736) (-1971 . 582496) (-1972 . 582419) (-1973 . 582334)
+ (-1974 . 582204) (-1975 . 581907) (-1976 . 581801) (-1977 . 581459)
+ (-1978 . 581403) (-1979 . 581341) (-1980 . 581145) (-1981 . 579953)
+ (-1982 . 579860) (-1983 . 579789) (-1984 . 579734) (-1985 . 579546)
+ (-1986 . 579341) (-1987 . 578992) (-1988 . 578700) (-1989 . 577896)
+ (-1990 . 577160) (-1991 . 577059) (-1992 . 576811) (-1993 . 576599)
+ (-1994 . 576520) (-1995 . 576413) (-1996 . 576260) (-1997 . 576194)
+ (-1998 . 575690) (-1999 . 575462) (-2000 . 575433) (-2001 . 575271)
+ (-2002 . 575115) (-2003 . 575063) (-2004 . 574966) (-2005 . 574871)
+ (-2006 . 574556) (-2007 . 574468) (-2008 . 573845) (-2009 . 573457)
+ (-2010 . 573429) (-2011 . 573302) (-2012 . 573012) (-2013 . 572891)
+ (-2014 . 572825) (-2015 . 572617) (-2016 . 572386) (-2017 . 572151)
+ (-2018 . 572056) (-2019 . 571450) (-2020 . 571337) (-2021 . 571275)
+ (-2022 . 571179) (-2023 . 571032) (-2024 . 570980) (-2025 . 570929)
+ (-2026 . 570752) (-2027 . 570108) (-2028 . 569949) (-2029 . 569789)
+ (-2030 . 569723) (-2031 . 569458) (-2032 . 569380) (-2033 . 569019)
+ (-2034 . 568635) (-2035 . 568497) (-2036 . 568380) (-2037 . 568035)
+ (-2038 . 567739) (-2039 . 567631) (-2040 . 566770) (-2041 . 566322)
+ (-2042 . 565150) (-2043 . 563018) (-2044 . 562880) (-2045 . 562767)
+ (-2046 . 562440) (-2047 . 562244) (-2048 . 562136) (-2049 . 562032)
+ (-2050 . 561828) (-2051 . 561477) (-2052 . 561234) (-2053 . 561071)
+ (-2054 . 560977) (-2055 . 560753) (-2056 . 560638) (-2057 . 560554)
+ (-2058 . 560359) (-2059 . 560297) (-2060 . 560144) (-2061 . 559666)
+ (-2062 . 559609) (-2063 . 559198) (-2064 . 559128) (-2065 . 559031)
+ (-2066 . 558997) (-2067 . 558947) (-2068 . 557810) (-2069 . 557508)
+ (-2070 . 557237) (-2071 . 556966) (-2072 . 556854) (-2073 . 556522)
+ (-2074 . 556332) (-2075 . 555942) (-2076 . 555140) (-2077 . 555063)
+ (-2078 . 554957) (-2079 . 554890) (-2080 . 554750) (-2081 . 554595)
+ (-2082 . 553187) (-2083 . 553105) (-2084 . 552962) (-2085 . 552868)
+ (-2086 . 552698) (-2087 . 552314) (-2088 . 552159) (-2089 . 552099)
+ (-2090 . 552019) (-2091 . 551922) (-2092 . 551779) (-2093 . 551663)
+ (-2094 . 551540) (-2095 . 551358) (-2096 . 551234) (-2097 . 551081)
+ (-2098 . 550822) (-2099 . 549641) (-2100 . 549149) (-2101 . 548778)
+ (-2102 . 548695) (-2103 . 548558) (-2104 . 548485) (-2105 . 548433)
+ (-2106 . 548284) (-2107 . 547571) (-2108 . 547434) (-2109 . 546914)
+ (-2110 . 546801) (-2111 . 546695) (-2112 . 546643) (-2113 . 546485)
+ (-2114 . 546336) (-2115 . 546187) (-2116 . 546115) (-2117 . 546035)
+ (-2118 . 545911) (-2119 . 540398) (-2120 . 540220) (-2121 . 540143)
+ (-2122 . 540074) (-2123 . 540021) (-2124 . 539934) (-2125 . 539900)
+ (-2126 . 539691) (-2127 . 539565) (-2128 . 539482) (-2129 . 539374)
+ (-2130 . 539276) (-2131 . 539223) (-2132 . 538835) (-2133 . 538732)
+ (-2134 . 538598) (-2135 . 538397) (-2136 . 538289) (-2137 . 538205)
+ (-2138 . 537955) (-2139 . 537923) (-2140 . 537677) (-2141 . 537649)
+ (-2142 . 537550) (-2143 . 537476) (-2144 . 537259) (-2145 . 537179)
+ (-2146 . 536724) (-2147 . 536617) (-2148 . 536459) (-2149 . 536303)
+ (-2150 . 536070) (-2151 . 535996) (-2152 . 535887) (-2153 . 535641)
+ (-2154 . 535563) (-2155 . 535480) (-2156 . 535352) (-2157 . 534841)
+ (-2158 . 534492) (-2159 . 534379) (-2160 . 534272) (-2161 . 534059)
+ (-2162 . 533903) (-2163 . 533764) (-2164 . 533432) (-2165 . 533361)
+ (-2166 . 533212) (-2167 . 533132) (-2168 . 532875) (-2169 . 532822)
+ (-2170 . 532770) (-2171 . 532682) (-2172 . 532544) (-2173 . 531884)
+ (-2174 . 531774) (-2175 . 531696) (-2176 . 531571) (-2177 . 530731)
+ (-2178 . 530611) (-2179 . 530422) (-2180 . 530367) (-2181 . 530284)
+ (-2182 . 530061) (-2183 . 529734) (-2184 . 529432) (-2185 . 529121)
+ (-2186 . 528888) (-2187 . 528322) (-2188 . 528265) (-2189 . 527906)
+ (-2190 . 525125) (-2191 . 525066) (-2192 . 524777) (-2193 . 524560)
+ (-2194 . 524509) (-2195 . 524381) (-2196 . 524241) (-2197 . 524176)
+ (-2198 . 523977) (-2199 . 523476) (-2200 . 522910) (-2201 . 522356)
+ (-2202 . 522238) (-2203 . 521946) (-2204 . 521860) (-2205 . 521494)
+ (-2206 . 521387) (-2207 . 521291) (-2208 . 521199) (-2209 . 521125)
+ (-2210 . 520844) (-2211 . 520772) (-2212 . 520645) (-2213 . 520592)
+ (-2214 . 519934) (-2215 . 519825) (-2216 . 519582) (-2217 . 519525)
+ (-2218 . 519452) (-2219 . 519370) (-2220 . 519229) (-2221 . 519179)
+ (-2222 . 519097) (-2223 . 519015) (-2224 . 518797) (-2225 . 518566)
+ (-2226 . 518470) (-2227 . 518417) (-2228 . 518343) (-2229 . 517762)
+ (-2230 . 517629) (-2231 . 517498) (-2232 . 517343) (-2233 . 517181)
+ (-2234 . 516866) (-2235 . 516781) (-2236 . 516303) (-2237 . 516241)
+ (-2238 . 516209) (-2239 . 516018) (-2240 . 515491) (-2241 . 515463)
+ (-2242 . 515389) (-2243 . 515023) (-2244 . 513394) (-2245 . 513211)
+ (-2246 . 513128) (-2247 . 513038) (-2248 . 512960) (-2249 . 512585)
+ (-2250 . 511184) (-2251 . 511111) (-2252 . 510944) (-2253 . 510656)
+ (-2254 . 510624) (-2255 . 510506) (-2256 . 510408) (-2257 . 510346)
+ (-2258 . 510222) (-2259 . 509356) (-2260 . 508621) (-2261 . 508569)
+ (-2262 . 508319) (-2263 . 508282) (-2264 . 508024) (-2265 . 507909)
+ (-2266 . 507828) (-2267 . 507715) (-2268 . 507601) (-2269 . 507505)
+ (-2270 . 506131) (-2271 . 505969) (-2272 . 505903) (-2273 . 505829)
+ (-2274 . 505712) (-2275 . 505624) (-2276 . 505343) (-2277 . 504956)
+ (-2278 . 504843) (-2279 . 504516) (-2280 . 504200) (-2281 . 504084)
+ (-2282 . 503982) (-2283 . 503895) (-2284 . 503797) (-2285 . 503682)
+ (-2286 . 503583) (-2287 . 503452) (-2288 . 503017) (-2289 . 502943)
+ (-2290 . 502847) (-2291 . 502738) (-2292 . 502577) (-2293 . 502417)
+ (-2294 . 502320) (-2295 . 501944) (-2296 . 501846) (-2297 . 501608)
+ (-2298 . 501411) (-2299 . 501338) (-2300 . 501257) (-2301 . 501059)
+ (-2302 . 501006) (-2303 . 500956) (-2304 . 500626) (-2305 . 500473)
+ (-2306 . 500174) (-2307 . 499781) (-2308 . 499341) (-2309 . 499267)
+ (-2310 . 489707) (-2311 . 489673) (-2312 . 489314) (-2313 . 489150)
+ (-2314 . 488979) (-2315 . 488905) (-2316 . 488848) (-2317 . 488041)
+ (-2318 . 487985) (-2319 . 486281) (-2320 . 486103) (-2321 . 485976)
+ (-2322 . 485686) (-2323 . 485568) (-2324 . 485509) (-2325 . 485308)
+ (-2326 . 485274) (-2327 . 484520) (-2328 . 484467) (-2329 . 484307)
+ (-2330 . 484255) (-2331 . 484139) (-2332 . 484011) (-2333 . 483813)
+ (-2334 . 483719) (-2335 . 483612) (-2336 . 483478) (-2337 . 481640)
+ (-2338 . 481574) (-2339 . 481449) (-2340 . 481283) (-2341 . 481159)
+ (-2342 . 480817) (-2343 . 480688) (-2344 . 480638) (-2345 . 480517)
+ (-2346 . 480414) (-2347 . 480358) (-2348 . 480148) (-2349 . 479983)
+ (-2350 . 479861) (-2351 . 479773) (-2352 . 478263) (-2353 . 477953)
+ (-2354 . 477822) (-2355 . 477678) (-2356 . 477475) (-2357 . 477227)
+ (-2358 . 476985) (-2359 . 476892) (-2360 . 476645) (-2361 . 476126)
+ (-2362 . 476019) (-2363 . 475934) (-2364 . 475837) (-2365 . 474289)
+ (-2366 . 473703) (-2367 . 473544) (-2368 . 473369) (-2369 . 473181)
+ (-2370 . 472935) (-2371 . 472076) (-2372 . 471881) (-2373 . 471780)
+ (-2374 . 471644) (-2375 . 471449) (-2376 . 471297) (-2377 . 471223)
+ (-2378 . 470917) (-2379 . 470753) (-2380 . 470698) (-2381 . 470539)
+ (-2382 . 470455) (-2383 . 470403) (-2384 . 470297) (-2385 . 470203)
+ (-2386 . 469549) (-2387 . 469280) (-2388 . 469053) (-2389 . 468835)
+ (-2390 . 468077) (-2391 . 467614) (-2392 . 467526) (-2393 . 467362)
+ (-2394 . 466181) (-2395 . 466047) (-2396 . 465991) (-2397 . 465394)
+ (-2398 . 465339) (-2399 . 465120) (-2400 . 465064) (-2401 . 464990)
+ (-2402 . 464735) (-2403 . 464439) (-2404 . 463805) (-2405 . 463661)
+ (-2406 . 462885) (-2407 . 462592) (-2408 . 462455) (-2409 . 462224)
+ (-2410 . 461837) (-2411 . 461605) (-2412 . 461521) (-2413 . 461368)
+ (-2414 . 461270) (-2415 . 461130) (-2416 . 461086) (-2417 . 461013)
+ (-2418 . 460933) (-2419 . 460881) (-2420 . 460736) (-2421 . 460629)
+ (-2422 . 459601) (-2423 . 459514) (-2424 . 459462) (-2425 . 459302)
+ (-2426 . 459195) (-2427 . 459096) (-2428 . 459024) (-2429 . 458993)
+ (-2430 . 458934) (-2431 . 458694) (-2432 . 458607) (-2433 . 458440)
+ (-2434 . 458118) (-2435 . 458047) (-2436 . 457888) (-2437 . 457781)
+ (-2438 . 457628) (-2439 . 457499) (-2440 . 457465) (-2441 . 457410)
+ (-2442 . 457186) (-2443 . 457088) (-2444 . 456184) (-2445 . 456086)
+ (-2446 . 455998) (-2447 . 455911) (-2448 . 455801) (-2449 . 455702)
+ (-2450 . 455249) (-2451 . 453393) (-2452 . 453309) (-2453 . 453243)
+ (-2454 . 453188) (-2455 . 452679) (-2456 . 452502) (-2457 . 452451)
+ (-2458 . 452399) (-2459 . 452325) (-2460 . 452272) (-2461 . 452174)
+ (-2462 . 452108) (-2463 . 451043) (-2464 . 450884) (-2465 . 450694)
+ (-2466 . 450536) (-2467 . 450241) (-2468 . 450209) (-2469 . 448426)
+ (-2470 . 448325) (-2471 . 448103) (-2472 . 447230) (-2473 . 446806)
+ (-2474 . 446726) (-2475 . 446625) (-2476 . 446539) (-2477 . 446471)
+ (-2478 . 446335) (-2479 . 445671) (-2480 . 445597) (-2481 . 445542)
+ (-2482 . 445376) (-2483 . 445306) (-2484 . 444120) (-2485 . 443814)
+ (-2486 . 443678) (-2487 . 443626) (-2488 . 443453) (-2489 . 443379)
+ (-2490 . 443316) (-2491 . 443077) (-2492 . 442486) (-2493 . 442428)
+ (-2494 . 442354) (-2495 . 442179) (-2496 . 442073) (-2497 . 441981)
+ (-2498 . 440799) (-2499 . 440687) (-2500 . 440634) (-2501 . 440551)
+ (-2502 . 440200) (-2503 . 440042) (-2504 . 439824) (-2505 . 439722)
+ (-2506 . 439610) (-2507 . 439515) (-2508 . 439380) (-2509 . 439327)
+ (-2510 . 439106) (-2511 . 436900) (-2512 . 436819) (-2513 . 436680)
+ (-2514 . 436627) (-2515 . 436315) (-2516 . 436249) (-2517 . 436178)
+ (-2518 . 436044) (-2519 . 435441) (-2520 . 435387) (-2521 . 435292)
+ (-2522 . 435162) (-2523 . 434768) (-2524 . 434656) (-2525 . 434445)
+ (-2526 . 434300) (-2527 . 434086) (-2528 . 434029) (-2529 . 433922)
+ (-2530 . 433828) (-2531 . 433721) (-2532 . 433469) (-2533 . 433441)
+ (-2534 . 433382) (-2535 . 433235) (-2536 . 433120) (-2537 . 433019)
+ (-2538 . 432922) (-2539 . 432818) (-2540 . 432680) (-2541 . 432585)
+ (-2542 . 432526) (-2543 . 432252) (-2544 . 432142) (-2545 . 431293)
+ (-2546 . 431180) (-2547 . 431121) (-2548 . 431065) (-2549 . 430894)
+ (-2550 . 430391) (-2551 . 430278) (-2552 . 429901) (-2553 . 429758)
+ (-2554 . 428312) (-2555 . 428032) (-2556 . 424411) (-2557 . 424352)
+ (-2558 . 424228) (-2559 . 424161) (-2560 . 423685) (-2561 . 423633)
+ (-2562 . 423566) (-2563 . 423324) (-2564 . 423138) (-2565 . 423059)
+ (-2566 . 422980) (-2567 . 422856) (-2568 . 422782) (-2569 . 422550)
+ (-2570 . 420973) (-2571 . 420828) (-2572 . 420740) (-2573 . 420597)
+ (-2574 . 420379) (-2575 . 420245) (-2576 . 420208) (-2577 . 419948)
+ (-2578 . 419881) (-2579 . 419760) (-2580 . 419689) (-2581 . 419507)
+ (-2582 . 419397) (-2583 . 419281) (-2584 . 419187) (-2585 . 418806)
+ (-2586 . 418669) (-2587 . 418253) (-2588 . 418003) (-2589 . 417954)
+ (-2590 . 417782) (-2591 . 417638) (-2592 . 417404) (-2593 . 416993)
+ (-2594 . 416937) (-2595 . 416811) (-2596 . 416480) (-2597 . 416235)
+ (-2598 . 416025) (-2599 . 415721) (-2600 . 415597) (-2601 . 415544)
+ (-2602 . 415473) (-2603 . 415364) (-2604 . 415255) (-2605 . 415110)
+ (-2606 . 414992) (-2607 . 414883) (-2608 . 414782) (-2609 . 414698)
+ (-2610 . 414615) (-2611 . 414517) (-2612 . 413301) (-2613 . 413145)
+ (-2614 . 413073) (-2615 . 412893) (-2616 . 412786) (-2617 . 412394)
+ (-2618 . 412301) (-2619 . 411435) (-2620 . 410163) (-2621 . 410056)
+ (-2622 . 409669) (-2623 . 409616) (-2624 . 409564) (-2625 . 409309)
+ (-2626 . 409257) (-2627 . 409139) (-2628 . 409087) (-2629 . 408726)
+ (-2630 . 408653) (-2631 . 408584) (-2632 . 408477) (-2633 . 408440)
+ (-2634 . 408282) (-2635 . 408216) (-2636 . 408102) (-2637 . 407925)
+ (-2638 . 407854) (-2639 . 407787) (-2640 . 407715) (-2641 . 407058)
+ (-2642 . 406629) (-2643 . 406324) (-2644 . 406261) (-2645 . 405884)
+ (-2646 . 405818) (-2647 . 405524) (-2648 . 405165) (-2649 . 405009)
+ (-2650 . 404779) (-2651 . 404670) (-2652 . 404587) (-2653 . 404291)
+ (-2654 . 404145) (-2655 . 404093) (-2656 . 403894) (-2657 . 398556)
+ (-2658 . 398447) (-2659 . 397772) (-2660 . 397516) (-2661 . 397247)
+ (-2662 . 397092) (-2663 . 396991) (-2664 . 396889) (-2665 . 396790)
+ (-2666 . 396622) (-2667 . 396503) (-2668 . 396454) (-2669 . 396354)
+ (-2670 . 396181) (-2671 . 396086) (-2672 . 395985) (-2673 . 395845)
+ (-2674 . 395736) (-2675 . 395614) (-2676 . 395536) (-2677 . 395481)
+ (-2678 . 395408) (-2679 . 395249) (-2680 . 395194) (-2681 . 395028)
+ (-2682 . 394958) (-2683 . 394836) (-2684 . 390838) (-2685 . 390701)
+ (-2686 . 390442) (-2687 . 390298) (-2688 . 390080) (-2689 . 390001)
+ (-2690 . 389812) (-2691 . 389738) (-2692 . 389644) (-2693 . 389521)
+ (-2694 . 389438) (-2695 . 389088) (-2696 . 388948) (-2697 . 388194)
+ (-2698 . 388135) (-2699 . 388055) (-2700 . 387714) (-2701 . 387607)
+ (-2702 . 387536) (-2703 . 387418) (-2704 . 387264) (-2705 . 387125)
+ (-2706 . 387072) (-2707 . 386948) (-2708 . 386695) (-2709 . 386530)
+ (-2710 . 386064) (-2711 . 385833) (-2712 . 381291) (-2713 . 381150)
+ (-2714 . 381056) (-2715 . 381007) (-2716 . 380864) (-2717 . 379652)
+ (-2718 . 379573) (-2719 . 379502) (-2720 . 378623) (-2721 . 378571)
+ (-2722 . 378508) (-2723 . 378422) (-2724 . 378370) (-2725 . 378196)
+ (-2726 . 378088) (-2727 . 377936) (-2728 . 377502) (-2729 . 375234)
+ (-2730 . 375005) (-2731 . 374919) (-2732 . 374787) (-2733 . 374592)
+ (-2734 . 374340) (-2735 . 374254) (-2736 . 374175) (-2737 . 374032)
+ (-2738 . 373912) (-2739 . 373757) (-2740 . 373054) (-2741 . 372899)
+ (-2742 . 372353) (-2743 . 372197) (-2744 . 372133) (-2745 . 372053)
+ (-2746 . 372000) (-2747 . 371842) (-2748 . 371772) (-2749 . 371675)
+ (-2750 . 371623) (-2751 . 371571) (-2752 . 371519) (-2753 . 371325)
+ (-2754 . 371239) (-2755 . 371064) (-2756 . 370941) (-2757 . 370811)
+ (-2758 . 370495) (-2759 . 370355) (-2760 . 370281) (-2761 . 370207)
+ (-2762 . 368911) (-2763 . 368575) (-2764 . 368522) (-2765 . 368488)
+ (-2766 . 368365) (-2767 . 368115) (-2768 . 367931) (-2769 . 367726)
+ (-2770 . 367632) (-2771 . 367509) (-2772 . 367188) (-2773 . 367104)
+ (-2774 . 367052) (-2775 . 366792) (-2776 . 366686) (-2777 . 366573)
+ (-2778 . 366468) (-2779 . 366403) (-2780 . 366252) (-2781 . 366007)
+ (-2782 . 365919) (-2783 . 365813) (-2784 . 365669) (-2785 . 365270)
+ (-2786 . 365164) (-2787 . 365035) (-2788 . 364951) (-2789 . 364828)
+ (-2790 . 364655) (-2791 . 364583) (-2792 . 364512) (-2793 . 364170)
+ (-2794 . 363640) (-2795 . 349526) (-2796 . 348888) (-2797 . 348805)
+ (-2798 . 348375) (-2799 . 348322) (-2800 . 348212) (-2801 . 348118)
+ (-2802 . 347973) (-2803 . 347777) (-2804 . 347614) (-2805 . 347187)
+ (-2806 . 347080) (-2807 . 346985) (-2808 . 346726) (-2809 . 346563)
+ (-2810 . 346507) (-2811 . 346368) (-2812 . 346285) (-2813 . 346039)
+ (-2814 . 345820) (-2815 . 345716) (-2816 . 345688) (-2817 . 345513)
+ (-2818 . 345094) (-2819 . 343624) (-2820 . 343550) (-2821 . 343500)
+ (-2822 . 343327) (-2823 . 343235) (-2824 . 340308) (-2825 . 339557)
+ (-2826 . 339397) (-2827 . 339265) (-2828 . 338986) (-2829 . 338847)
+ (-2830 . 338738) (-2831 . 338605) (-2832 . 338537) (-2833 . 337419)
+ (-2834 . 337340) (-2835 . 337121) (-2836 . 336730) (-2837 . 336673)
+ (-2838 . 336488) (-2839 . 336241) (-2840 . 336134) (-2841 . 335495)
+ (-2842 . 334971) (-2843 . 330252) (-2844 . 330155) (-2845 . 330081)
+ (-2846 . 329688) (-2847 . 329609) (-2848 . 329442) (-2849 . 329350)
+ (-2850 . 329281) (-2851 . 329195) (-2852 . 329056) (-2853 . 328948)
+ (-2854 . 328733) (-2855 . 328248) (-2856 . 327684) (-2857 . 327564)
+ (-2858 . 327019) (-2859 . 326747) (-2860 . 326420) (-2861 . 326141)
+ (-2862 . 326046) (-2863 . 325579) (-2864 . 325523) (-2865 . 325416)
+ (-2866 . 325300) (-2867 . 325120) (-2868 . 324978) (-2869 . 324926)
+ (-2870 . 324866) (-2871 . 324744) (-2872 . 324689) (-2873 . 324582)
+ (-2874 . 324138) (-2875 . 324083) (-2876 . 323998) (-2877 . 323846)
+ (-2878 . 323751) (-2879 . 323677) (-2880 . 323082) (-2881 . 322561)
+ (-2882 . 322477) (-2883 . 321945) (-2884 . 321852) (-2885 . 321764)
+ (-2886 . 321711) (-2887 . 321683) (-2888 . 321232) (-2889 . 321099)
+ (-2890 . 320970) (-2891 . 320803) (-2892 . 320560) (-2893 . 319859)
+ (-2894 . 319722) (-2895 . 319450) (-2896 . 319294) (-2897 . 319222)
+ (-2898 . 319096) (-2899 . 319018) (-2900 . 318914) (-2901 . 318885)
+ (-2902 . 318769) (-2903 . 318682) (-2904 . 318256) (-2905 . 318170)
+ (-2906 . 318039) (-2907 . 317770) (-2908 . 317583) (-2909 . 317501)
+ (-2910 . 317286) (-2911 . 317234) (-2912 . 317074) (-2913 . 316988)
+ (-2914 . 316830) (-2915 . 316672) (-2916 . 316573) (-2917 . 316432)
+ (-2918 . 316207) (-2919 . 315876) (-2920 . 315757) (-2921 . 315566)
+ (-2922 . 315223) (-2923 . 315128) (-2924 . 314970) (-2925 . 314095)
+ (-2926 . 314036) (-2927 . 313973) (-2928 . 313877) (-2929 . 313724)
+ (-2930 . 313581) (-2931 . 313508) (-2932 . 313438) (-2933 . 313185)
+ (-2934 . 313061) (-2935 . 312963) (-2936 . 312832) (-2937 . 312779)
+ (-2938 . 312705) (-2939 . 312608) (-2940 . 312090) (-2941 . 311598)
+ (-2942 . 311485) (-2943 . 311229) (-2944 . 311026) (-2945 . 310947)
+ (-2946 . 310894) (-2947 . 310860) (-2948 . 310773) (-2949 . 310636)
+ (-2950 . 310608) (-2951 . 310493) (-2952 . 310389) (-2953 . 310111)
+ (-2954 . 309946) (-2955 . 309895) (-2956 . 309812) (-2957 . 309708)
+ (-2958 . 309592) (-2959 . 309434) (-2960 . 309361) (-2961 . 309307)
+ (-2962 . 309279) (-2963 . 309134) (-2964 . 309092) (-2965 . 308929)
+ (-2966 . 308856) (-2967 . 308779) (-2968 . 308572) (-2969 . 308520)
+ (-2970 . 308365) (-2971 . 308173) (-2972 . 306833) (-2973 . 306796)
+ (-2974 . 306521) (-2975 . 306383) (-2976 . 306304) (-2977 . 306249)
+ (-2978 . 305803) (-2979 . 305751) (-2980 . 305685) (-2981 . 305583)
+ (-2982 . 305549) (-2983 . 305446) (-2984 . 305253) (-2985 . 305183)
+ (-2986 . 305134) (-2987 . 304915) (-2988 . 304380) (-2989 . 304161)
+ (-2990 . 304049) (-2991 . 303733) (-2992 . 303660) (-2993 . 303449)
+ (-2994 . 303190) (-2995 . 302773) (-2996 . 302703) (-2997 . 302259)
+ (-2998 . 302071) (-2999 . 301988) (-3000 . 301779) (-3001 . 301540)
+ (-3002 . 301316) (-3003 . 301068) (-3004 . 300473) (-3005 . 300303)
+ (-3006 . 299958) (-3007 . 299889) (-3008 . 299762) (-3009 . 299273)
+ (-3010 . 299055) (-3011 . 298897) (-3012 . 298825) (-3013 . 298546)
+ (-3014 . 298463) (-3015 . 298332) (-3016 . 298235) (-3017 . 298126)
+ (-3018 . 297852) (-3019 . 297782) (-3020 . 297663) (-3021 . 297445)
+ (-3022 . 297278) (-3023 . 297207) (-3024 . 297116) (-3025 . 296992)
+ (-3026 . 296793) (-3027 . 296680) (-3028 . 296515) (-3029 . 296387)
+ (-3030 . 296331) (-3031 . 296280) (-3032 . 295913) (-3033 . 294847)
+ (-3034 . 294651) (-3035 . 294356) (-3036 . 294226) (-3037 . 294138)
+ (-3038 . 293800) (-3039 . 293464) (-3040 . 293155) (-3041 . 293020)
+ (-3042 . 292964) (-3043 . 292836) (-3044 . 292805) (-3045 . 292732)
+ (-3046 . 292625) (-3047 . 292495) (-3048 . 292407) (-3049 . 292310)
+ (-3050 . 291772) (-3051 . 291521) (-3052 . 291493) (-3053 . 291384)
+ (-3054 . 291316) (-3055 . 291261) (-3056 . 291154) (-3057 . 290908)
+ (-3058 . 290709) (-3059 . 290584) (-3060 . 290451) (-3061 . 290394)
+ (-3062 . 290169) (-3063 . 290074) (-3064 . 290005) (-3065 . 289949)
+ (-3066 . 289668) (-3067 . 288672) (-3068 . 288296) (-3069 . 288092)
+ (-3070 . 288036) (-3071 . 287743) (-3072 . 287628) (-3073 . 287520)
+ (-3074 . 287434) (-3075 . 287287) (-3076 . 287143) (-3077 . 286895)
+ (-3078 . 286608) (-3079 . 286535) (-3080 . 286484) (-3081 . 286405)
+ (-3082 . 286349) (-3083 . 286191) (-3084 . 286139) (-3085 . 286066)
+ (-3086 . 285910) (-3087 . 285853) (-3088 . 285798) (-3089 . 285664)
+ (-3090 . 285557) (-3091 . 285483) (-3092 . 285335) (-3093 . 285278)
+ (-3094 . 285061) (-3095 . 285009) (-3096 . 284781) (-3097 . 284714)
+ (-3098 . 284617) (-3099 . 284419) (-3100 . 284310) (-3101 . 284149)
+ (-3102 . 284056) (-3103 . 283933) (-3104 . 283800) (-3105 . 283726)
+ (-3106 . 283382) (-3107 . 283310) (-3108 . 283258) (-3109 . 283123)
+ (-3110 . 282471) (-3111 . 282245) (-3112 . 282002) (-3113 . 281914)
+ (-3114 . 281779) (-3115 . 281487) (-3116 . 281386) (-3117 . 281314)
+ (-3118 . 281088) (-3119 . 280944) (-3120 . 280871) (-3121 . 279621)
+ (-3122 . 279562) (-3123 . 279528) (-3124 . 279442) (-3125 . 279329)
+ (-3126 . 279232) (-3127 . 279149) (-3128 . 278958) (-3129 . 278906)
+ (-3130 . 278854) (-3131 . 278754) (-3132 . 278611) (-3133 . 278498)
+ (-3134 . 278432) (-3135 . 278295) (-3136 . 278227) (-3137 . 278098)
+ (-3138 . 278043) (-3139 . 277669) (-3140 . 277543) (-3141 . 277356)
+ (-3142 . 277303) (-3143 . 277153) (-3144 . 277060) (-3145 . 277008)
+ (-3146 . 276765) (-3147 . 276304) (-3148 . 276123) (-3149 . 275849)
+ (-3150 . 275289) (-3151 . 275196) (-3152 . 275098) (-3153 . 275025)
+ (-3154 . 274857) (-3155 . 274760) (-3156 . 274520) (-3157 . 274357)
+ (-3158 . 274261) (-3159 . 274153) (-3160 . 274046) (-3161 . 273931)
+ (-3162 . 273808) (-3163 . 273734) (-3164 . 273597) (-3165 . 273541)
+ (-3166 . 272873) (-3167 . 272759) (-3168 . 272554) (-3169 . 272381)
+ (-3170 . 272274) (-3171 . 272157) (-3172 . 271960) (-3173 . 271851)
+ (-3174 . 271782) (-3175 . 271590) (-3176 . 271488) (-3177 . 271327)
+ (-3178 . 271229) (-3179 . 271177) (-3180 . 271107) (-3181 . 270985)
+ (-3182 . 270877) (-3183 . 270821) (-3184 . 270663) (-3185 . 270573)
+ (-3186 . 270539) (-3187 . 270483) (-3188 . 270167) (-3189 . 270052)
+ (-3190 . 269873) (-3191 . 269442) (-3192 . 269260) (-3193 . 269150)
+ (-3194 . 268733) (-3195 . 268669) (-3196 . 268585) (-3197 . 268484)
+ (-3198 . 268450) (-3199 . 268422) (-3200 . 268388) (-3201 . 268291)
+ (-3202 . 268238) (-3203 . 267832) (-3204 . 267711) (-3205 . 267649)
+ (-3206 . 267470) (-3207 . 267176) (-3208 . 267142) (-3209 . 267010)
+ (-3210 . 266711) (-3211 . 266601) (-3212 . 266546) (-3213 . 266419)
+ (-3214 . 266277) (-3215 . 266224) (-3216 . 266117) (-3217 . 266064)
+ (-3218 . 265998) (-3219 . 265837) (-3220 . 265785) (-3221 . 265666)
+ (-3222 . 265536) (-3223 . 265483) (-3224 . 265382) (-3225 . 265198)
+ (-3226 . 265073) (-3227 . 264793) (-3228 . 264516) (-3229 . 264466)
+ (-3230 . 264327) (-3231 . 264278) (-3232 . 264226) (-3233 . 264157)
+ (-3234 . 263939) (-3235 . 263832) (-3236 . 263713) (-3237 . 263063)
+ (-3238 . 262732) (-3239 . 262285) (-3240 . 262154) (-3241 . 261923)
+ (-3242 . 261792) (-3243 . 261555) (-3244 . 261411) (-3245 . 261326)
+ (-3246 . 261221) (-3247 . 261010) (-3248 . 260910) (-3249 . 260757)
+ (-3250 . 260174) (-3251 . 259969) (-3252 . 259541) (-3253 . 259470)
+ (-3254 . 259128) (-3255 . 259075) (-3256 . 258943) (-3257 . 258358)
+ (-3258 . 258256) (-3259 . 258020) (-3260 . 257917) (-3261 . 257695)
+ (-3262 . 257385) (-3263 . 254296) (-3264 . 254116) (-3265 . 253965)
+ (-3266 . 253894) (-3267 . 253841) (-3268 . 253740) (-3269 . 253520)
+ (-3270 . 253418) (-3271 . 253232) (-3272 . 253060) (-3273 . 252957)
+ (-3274 . 252786) (-3275 . 252662) (-3276 . 252533) (-3277 . 252443)
+ (-3278 . 252360) (-3279 . 252244) (-3280 . 252167) (-3281 . 252115)
+ (-3282 . 251764) (-3283 . 251685) (-3284 . 251548) (-3285 . 251460)
+ (-3286 . 251213) (-3287 . 250884) (-3288 . 250508) (-3289 . 250378)
+ (-3290 . 249491) (-3291 . 249357) (-3292 . 249222) (-3293 . 249051)
+ (-3294 . 248980) (-3295 . 248378) (-3296 . 248087) (-3297 . 247964)
+ (-3298 . 247895) (-3299 . 247740) (-3300 . 247631) (-3301 . 247565)
+ (-3302 . 246749) (-3303 . 246699) (-3304 . 246555) (-3305 . 246451)
+ (-3306 . 246399) (-3307 . 246275) (-3308 . 245539) (-3309 . 245395)
+ (-3310 . 245254) (-3311 . 245199) (-3312 . 245041) (-3313 . 244823)
+ (-3314 . 244272) (-3315 . 244193) (-3316 . 243668) (-3317 . 243522)
+ (-3318 . 243445) (-3319 . 243389) (-3320 . 242941) (-3321 . 242881)
+ (-3322 . 242810) (-3323 . 242673) (-3324 . 242135) (-3325 . 241947)
+ (-3326 . 241887) (-3327 . 241785) (-3328 . 241694) (-3329 . 241642)
+ (-3330 . 241484) (-3331 . 241392) (-3332 . 241009) (-3333 . 240909)
+ (-3334 . 240772) (-3335 . 240569) (-3336 . 240415) (-3337 . 240306)
+ (-3338 . 240148) (-3339 . 234941) (-3340 . 234909) (-3341 . 234816)
+ (-3342 . 234748) (-3343 . 234695) (-3344 . 234588) (-3345 . 234370)
+ (-3346 . 234160) (-3347 . 232618) (-3348 . 232533) (-3349 . 232462)
+ (-3350 . 232340) (-3351 . 232035) (-3352 . 231931) (-3353 . 231824)
+ (-3354 . 231546) (-3355 . 231194) (-3356 . 231093) (-3357 . 230991)
+ (-3358 . 230932) (-3359 . 230844) (-3360 . 230720) (-3361 . 230607)
+ (-3362 . 230454) (-3363 . 230282) (-3364 . 230111) (-3365 . 229922)
+ (-3366 . 229823) (-3367 . 229771) (-3368 . 229701) (-3369 . 229520)
+ (-3370 . 229393) (-3371 . 229309) (-3372 . 229230) (-3373 . 229139)
+ (-3374 . 228967) (-3375 . 228897) (-3376 . 228382) (-3377 . 228278)
+ (-3378 . 227525) (-3379 . 227421) (-3380 . 227252) (-3381 . 227173)
+ (-3382 . 227069) (-3383 . 226996) (-3384 . 226339) (-3385 . 226120)
+ (-3386 . 225478) (-3387 . 225306) (-3388 . 225050) (-3389 . 224732)
+ (-3390 . 224280) (-3391 . 224194) (-3392 . 224042) (-3393 . 223931)
+ (-3394 . 223808) (-3395 . 221957) (-3396 . 221889) (-3397 . 221717)
+ (-3398 . 221646) (-3399 . 221612) (-3400 . 221538) (-3401 . 221388)
+ (-3402 . 220935) (-3403 . 220833) (-3404 . 220677) (-3405 . 213678)
+ (-3406 . 213612) (-3407 . 213266) (-3408 . 213151) (-3409 . 213093)
+ (-3410 . 212925) (-3411 . 212798) (-3412 . 212693) (-3413 . 212437)
+ (-3414 . 212359) (-3415 . 212225) (-3416 . 212121) (-3417 . 211734)
+ (-3418 . 211440) (-3419 . 211377) (-3420 . 210926) (-3421 . 210630)
+ (-3422 . 210366) (-3423 . 210258) (-3424 . 210040) (-3425 . 209930)
+ (-3426 . 209810) (-3427 . 209733) (-3428 . 209681) (-3429 . 209160)
+ (-3430 . 208860) (-3431 . 208809) (-3432 . 208754) (-3433 . 208500)
+ (-3434 . 208418) (-3435 . 208039) (-3436 . 207909) (-3437 . 207657)
+ (-3438 . 207571) (-3439 . 207303) (-3440 . 207225) (-3441 . 207171)
+ (-3442 . 207088) (-3443 . 206915) (-3444 . 206838) (-3445 . 206638)
+ (-3446 . 206381) (-3447 . 206270) (-3448 . 205675) (-3449 . 205576)
+ (-3450 . 205397) (-3451 . 205227) (-3452 . 205128) (-3453 . 205057)
+ (-3454 . 204985) (-3455 . 202823) (-3456 . 202693) (-3457 . 202659)
+ (-3458 . 202604) (-3459 . 202405) (-3460 . 202298) (-3461 . 202167)
+ (-3462 . 202139) (-3463 . 202045) (-3464 . 201827) (-3465 . 201753)
+ (-3466 . 201675) (-3467 . 201586) (-3468 . 201423) (-3469 . 201297)
+ (-3470 . 201217) (-3471 . 201092) (-3472 . 200698) (-3473 . 200612)
+ (-3474 . 199794) (-3475 . 199708) (-3476 . 199642) (-3477 . 199570)
+ (-3478 . 198986) (-3479 . 198900) (-3480 . 198736) (-3481 . 198609)
+ (-3482 . 198228) (-3483 . 198098) (-3484 . 198021) (-3485 . 197987)
+ (-3486 . 196675) (-3487 . 196504) (-3488 . 196358) (-3489 . 196268)
+ (-3490 . 196152) (-3491 . 196080) (-3492 . 196030) (-3493 . 195893)
+ (-3494 . 195566) (-3495 . 195264) (-3496 . 194837) (-3497 . 194737)
+ (-3498 . 194328) (-3499 . 194137) (-3500 . 193050) (-3501 . 192962)
+ (-3502 . 192715) (-3503 . 192548) (-3504 . 192267) (-3505 . 192105)
+ (-3506 . 190996) (-3507 . 190686) (-3508 . 190603) (-3509 . 190380)
+ (-3510 . 190327) (-3511 . 190191) (-3512 . 189873) (-3513 . 189337)
+ (-3514 . 188962) (-3515 . 188925) (-3516 . 188819) (-3517 . 188735)
+ (-3518 . 188667) (-3519 . 187370) (-3520 . 187271) (-3521 . 187156)
+ (-3522 . 187127) (-3523 . 187099) (-3524 . 186819) (-3525 . 186543)
+ (-3526 . 186447) (-3527 . 186367) (-3528 . 186000) (-3529 . 185794)
+ (-3530 . 185698) (-3531 . 185277) (-3532 . 185225) (-3533 . 185152)
+ (-3534 . 185082) (-3535 . 184944) (-3536 . 184888) (-3537 . 184811)
+ (-3538 . 184681) (-3539 . 184353) (-3540 . 184173) (-3541 . 184099)
+ (-3542 . 183922) (-3543 . 183774) (-3544 . 183697) (-3545 . 183559)
+ (-3546 . 182816) (-3547 . 182739) (-3548 . 182653) (-3549 . 182272)
+ (-3550 . 182110) (-3551 . 182050) (-3552 . 181932) (-3553 . 181852)
+ (-3554 . 181771) (-3555 . 181643) (-3556 . 181585) (-3557 . 181508)
+ (-3558 . 181427) (-3559 . 181356) (-3560 . 181303) (-3561 . 181254)
+ (-3562 . 181180) (-3563 . 180934) (-3564 . 180760) (-3565 . 180679)
+ (-3566 . 180599) (-3567 . 180153) (-3568 . 179901) (-3569 . 179741)
+ (-3570 . 179594) (-3571 . 179517) (-3572 . 179464) (-3573 . 179242)
+ (-3574 . 178962) (-3575 . 178907) (-3576 . 178761) (-3577 . 178647)
+ (-3578 . 178444) (-3579 . 178328) (-3580 . 178030) (-3581 . 177953)
+ (-3582 . 177731) (-3583 . 177652) (-3584 . 177571) (-3585 . 177476)
+ (-3586 . 177374) (-3587 . 175410) (-3588 . 175300) (-3589 . 175148)
+ (-3590 . 175074) (-3591 . 174951) (-3592 . 174822) (-3593 . 174431)
+ (-3594 . 174336) (-3595 . 174254) (-3596 . 174040) (-3597 . 173855)
+ (-3598 . 173701) (-3599 . 173490) (-3600 . 173345) (-3601 . 173262)
+ (-3602 . 173152) (-3603 . 172925) (-3604 . 172872) (-3605 . 172777)
+ (-3606 . 172404) (-3607 . 172300) (-3608 . 172190) (-3609 . 171875)
+ (-3610 . 171847) (-3611 . 171750) (-3612 . 171667) (-3613 . 171457)
+ (-3614 . 170454) (-3615 . 170370) (-3616 . 170067) (-3617 . 170015)
+ (-3618 . 169962) (-3619 . 169841) (-3620 . 169755) (-3621 . 169525)
+ (-3622 . 169354) (-3623 . 168971) (-3624 . 168900) (-3625 . 168788)
+ (-3626 . 168412) (-3627 . 168274) (-3628 . 168205) (-3629 . 168064)
+ (-3630 . 167847) (-3631 . 166609) (-3632 . 166505) (-3633 . 166373)
+ (-3634 . 166307) (-3635 . 166258) (-3636 . 166011) (-3637 . 165798)
+ (-3638 . 165693) (-3639 . 165527) (-3640 . 165459) (-3641 . 165332)
+ (-3642 . 165070) (-3643 . 165042) (-3644 . 164972) (-3645 . 164359)
+ (-3646 . 164256) (-3647 . 164203) (-3648 . 164117) (-3649 . 164059)
+ (-3650 . 164028) (-3651 . 163899) (-3652 . 163834) (-3653 . 163763)
+ (-3654 . 163710) (-3655 . 163528) (-3656 . 163101) (-3657 . 162948)
+ (-3658 . 161170) (-3659 . 161046) (-3660 . 160994) (-3661 . 160602)
+ (-3662 . 160524) (-3663 . 160469) (-3664 . 160120) (-3665 . 159905)
+ (-3666 . 159732) (-3667 . 159670) (-3668 . 159585) (-3669 . 159508)
+ (-3670 . 159390) (-3671 . 159307) (-3672 . 159169) (-3673 . 158514)
+ (-3674 . 158338) (-3675 . 158239) (-3676 . 158168) (-3677 . 158108)
+ (-3678 . 157992) (-3679 . 157861) (-3680 . 157718) (-3681 . 157609)
+ (-3682 . 157521) (-3683 . 157416) (-3684 . 157295) (-3685 . 156966)
+ (-3686 . 156506) (-3687 . 156421) (-3688 . 156347) (-3689 . 156261)
+ (-3690 . 156081) (-3691 . 155890) (-3692 . 155714) (-3693 . 155682)
+ (-3694 . 155616) (-3695 . 155229) (-3696 . 155142) (-3697 . 155038)
+ (-3698 . 154865) (-3699 . 154724) (-3700 . 154671) (-3701 . 154591)
+ (-3702 . 154304) (-3703 . 154220) (-3704 . 153956) (-3705 . 153801)
+ (-3706 . 153612) (-3707 . 153546) (-3708 . 153448) (-3709 . 153335)
+ (-3710 . 152931) (-3711 . 152880) (-3712 . 152787) (-3713 . 152731)
+ (-3714 . 152588) (-3715 . 152500) (-3716 . 152447) (-3717 . 152388)
+ (-3718 . 152095) (-3719 . 152030) (-3720 . 151942) (-3721 . 151874)
+ (-3722 . 150450) (-3723 . 150297) (-3724 . 150238) (-3725 . 150189)
+ (-3726 . 149087) (-3727 . 148665) (-3728 . 148510) (-3729 . 148225)
+ (-3730 . 148142) (-3731 . 147702) (-3732 . 147500) (-3733 . 147298)
+ (-3734 . 147242) (-3735 . 147102) (-3736 . 147049) (-3737 . 146906)
+ (-3738 . 146748) (-3739 . 146530) (-3740 . 146292) (-3741 . 146073)
+ (-3742 . 145863) (-3743 . 145169) (-3744 . 144677) (-3745 . 144550)
+ (-3746 . 144482) (-3747 . 144408) (-3748 . 144355) (-3749 . 144258)
+ (-3750 . 144140) (-3751 . 144088) (-3752 . 143841) (-3753 . 143684)
+ (-3754 . 143451) (-3755 . 143365) (-3756 . 143291) (-3757 . 143262)
+ (-3758 . 143021) (-3759 . 142961) (-3760 . 142782) (-3761 . 142278)
+ (-3762 . 142247) (-3763 . 142094) (-3764 . 142021) (-3765 . 141970)
+ (-3766 . 141915) (-3767 . 141821) (-3768 . 141614) (-3769 . 141507)
+ (-3770 . 141454) (-3771 . 141310) (-3772 . 141167) (-3773 . 141084)
+ (-3774 . 140767) (-3775 . 140609) (-3776 . 140387) (-3777 . 139590)
+ (-3778 . 139410) (-3779 . 139322) (-3780 . 139020) (-3781 . 138638)
+ (-3782 . 138607) (-3783 . 138536) (-3784 . 138450) (-3785 . 138321)
+ (-3786 . 138258) (-3787 . 138080) (-3788 . 137988) (-3789 . 137893)
+ (-3790 . 137823) (-3791 . 137569) (-3792 . 137511) (-3793 . 137316)
+ (-3794 . 137266) (-3795 . 137030) (-3796 . 135832) (-3797 . 135686)
+ (-3798 . 135594) (-3799 . 135391) (-3800 . 135011) (-3801 . 134923)
+ (-3802 . 134598) (-3803 . 134428) (-3804 . 133854) (-3805 . 133569)
+ (-3806 . 133276) (-3807 . 133051) (-3808 . 132965) (-3809 . 132851)
+ (-3810 . 132799) (-3811 . 132728) (-3812 . 132129) (-3813 . 132052)
+ (-3814 . 131920) (-3815 . 131745) (-3816 . 131420) (-3817 . 131017)
+ (-3818 . 130904) (-3819 . 130758) (-3820 . 130675) (-3821 . 130576)
+ (-3822 . 130518) (-3823 . 130238) (-3824 . 130172) (-3825 . 129846)
+ (-3826 . 129731) (-3827 . 129540) (-3828 . 129166) (-3829 . 129112)
+ (-3830 . 129042) (-3831 . 128897) (-3832 . 128810) (-3833 . 128583)
+ (-3834 . 128435) (-3835 . 128383) (-3836 . 128245) (-3837 . 127907)
+ (-3838 . 127592) (-3839 . 127512) (-3840 . 127452) (-3841 . 127308)
+ (-3842 . 127230) (-3843 . 126938) (-3844 . 126842) (-3845 . 103422)
+ (-3846 . 103339) (-3847 . 103001) (-3848 . 102948) (-3849 . 100685)
+ (-3850 . 100608) (-3851 . 100313) (-3852 . 100139) (-3853 . 97387)
+ (-3854 . 97310) (-3855 . 97240) (-3856 . 97157) (-3857 . 97043)
+ (-3858 . 96670) (-3859 . 96309) (-3860 . 96243) (-3861 . 95997)
+ (-3862 . 95812) (-3863 . 95671) (-3864 . 95457) (-3865 . 95313)
+ (-3866 . 94915) (-3867 . 94763) (-3868 . 94636) (-3869 . 93676)
+ (-3870 . 93611) (-3871 . 93521) (-3872 . 93214) (-3873 . 93098)
+ (-3874 . 93012) (-3875 . 92854) (-3876 . 92782) (-3877 . 92726)
+ (-3878 . 92624) (-3879 . 92596) (-3880 . 92195) (-3881 . 91815)
+ (-3882 . 91746) (-3883 . 91604) (-3884 . 91527) (-3885 . 91417)
+ (** . 88328) (-3887 . 88269) (-3888 . 88132) (-3889 . 87268)
+ (-3890 . 87090) (-3891 . 87008) (-3892 . 86958) (-3893 . 86710)
+ (-3894 . 86517) (-3895 . 86294) (-3896 . 86161) (-3897 . 85983)
+ (-3898 . 85916) (-3899 . 85701) (-3900 . 85602) (-3901 . 85483)
+ (-3902 . 85352) (-3903 . 85168) (-3904 . 85049) (-3905 . 84975)
+ (-3906 . 84862) (-3907 . 84690) (-3908 . 84604) (-3909 . 84461)
+ (-3910 . 84354) (-3911 . 84265) (-3912 . 84194) (-3913 . 83894)
+ (-3914 . 83820) (-3915 . 83595) (-3916 . 83404) (-3917 . 83352)
+ (-3918 . 83284) (-3919 . 83131) (-3920 . 82844) (-3921 . 82421)
+ (-3922 . 82278) (-3923 . 82250) (-3924 . 82182) (-3925 . 82099)
+ (-3926 . 81876) (-3927 . 81716) (-3928 . 81614) (-3929 . 81468)
+ (-3930 . 81390) (-3931 . 81228) (-3932 . 81127) (-3933 . 81058)
+ (-3934 . 80961) (-3935 . 80341) (-3936 . 80245) (-3937 . 80168)
+ (-3938 . 80090) (-3939 . 79994) (-3940 . 79963) (-3941 . 79817)
+ (-3942 . 79556) (-3943 . 79418) (-3944 . 78985) (-3945 . 78336)
+ (-3946 . 78142) (-3947 . 74843) (-3948 . 74419) (-3949 . 74206)
+ (-3950 . 74087) (-3951 . 73795) (-3952 . 73670) (-3953 . 73561)
+ (-3954 . 73251) (-3955 . 72763) (-3956 . 72317) (-3957 . 72265)
+ (-3958 . 71947) (-3959 . 71847) (-3960 . 71764) (-3961 . 71708)
+ (-3962 . 71556) (-3963 . 71376) (-3964 . 71166) (-3965 . 71073)
+ (-3966 . 70999) (-3967 . 70682) (-3968 . 70493) (-3969 . 70399)
+ (-3970 . 70294) (-3971 . 70241) (-3972 . 70172) (-3973 . 70043)
+ (-3974 . 70015) (-3975 . 69793) (-3976 . 69574) (-3977 . 67460)
+ (-3978 . 67353) (-3979 . 67321) (-3980 . 66719) (-3981 . 66547)
+ (-3982 . 66343) (-3983 . 66195) (-3984 . 66143) (-3985 . 65958)
+ (-3986 . 65821) (-3987 . 65679) (-3988 . 65560) (-3989 . 65439)
+ (-3990 . 65380) (-3991 . 65237) (-3992 . 65122) (-3993 . 64981)
+ (-3994 . 64872) (-3995 . 64776) (-3996 . 64694) (-3997 . 64455)
+ (-3998 . 64225) (-3999 . 64168) (-4000 . 64059) (-4001 . 63651)
+ (-4002 . 63457) (-4003 . 63123) (-4004 . 62982) (-4005 . 62833)
+ (-4006 . 62763) (-4007 . 62646) (-4008 . 62301) (-4009 . 62232)
+ (-4010 . 62126) (-4011 . 61988) (-4012 . 61900) (-4013 . 61802)
+ (-4014 . 61736) (-4015 . 61684) (-4016 . 61625) (-4017 . 61497)
+ (-4018 . 61393) (-4019 . 60308) (-4020 . 60190) (-4021 . 60096)
+ (-4022 . 60030) (-4023 . 59848) (-4024 . 59643) (-4025 . 59499)
+ (-4026 . 59292) (-4027 . 59177) (-4028 . 58990) (-4029 . 58930)
+ (-4030 . 58822) (-4031 . 58551) (-4032 . 58406) (-4033 . 58336)
+ (-4034 . 58178) (-4035 . 57365) (-4036 . 56938) (-4037 . 56887)
+ (-4038 . 56648) (-4039 . 56570) (-4040 . 56454) (-4041 . 56236)
+ (-4042 . 56163) (-4043 . 56077) (-4044 . 55934) (-4045 . 55767)
+ (-4046 . 55652) (-4047 . 55546) (-4048 . 55463) (-4049 . 55364)
+ (-4050 . 55185) (-4051 . 55067) (-4052 . 54948) (-4053 . 54863)
+ (-4054 . 54701) (-4055 . 54543) (-4056 . 54460) (-4057 . 54289)
+ (-4058 . 54030) (-4059 . 53551) (-4060 . 53412) (-4061 . 53052)
+ (-4062 . 52957) (-4063 . 52751) (-4064 . 52666) (-4065 . 52452)
+ (-4066 . 52330) (-4067 . 52138) (-4068 . 50550) (-4069 . 50321)
+ (-4070 . 50268) (-4071 . 50170) (-4072 . 50117) (-4073 . 49964)
+ (-4074 . 49785) (-4075 . 49717) (-4076 . 49592) (-4077 . 49433)
+ (-4078 . 49367) (-4079 . 48187) (-4080 . 48065) (-4081 . 47882)
+ (-4082 . 47784) (-4083 . 47530) (-4084 . 47388) (-4085 . 47260)
+ (-4086 . 47012) (-4087 . 46870) (-4088 . 46836) (-4089 . 46756)
+ (-4090 . 46592) (-4091 . 46476) (-4092 . 46397) (-4093 . 45788)
+ (-4094 . 45729) (-4095 . 45606) (-4096 . 45522) (-4097 . 45025)
+ (-4098 . 44865) (-4099 . 44379) (-4100 . 44347) (-4101 . 44177)
+ (-4102 . 44032) (-4103 . 43914) (-4104 . 43557) (-4105 . 43404)
+ (-4106 . 43290) (-4107 . 39130) (-4108 . 39081) (-4109 . 38968)
+ (-4110 . 38852) (-4111 . 37936) (-4112 . 37827) (-4113 . 37672)
+ (-4114 . 37285) (-4115 . 37127) (-4116 . 36928) (-4117 . 36791)
+ (-4118 . 36541) (-4119 . 36326) (-4120 . 36153) (-4121 . 36023)
+ (-4122 . 35496) (-4123 . 35385) (-4124 . 35329) (-4125 . 35262)
+ (-4126 . 35161) (-4127 . 35020) (-4128 . 34638) (-4129 . 34537)
+ (-4130 . 34447) (-4131 . 34352) (-4132 . 34199) (-4133 . 34013)
+ (-4134 . 33853) (-4135 . 33779) (-4136 . 33667) (-4137 . 33474)
+ (-4138 . 32971) (-4139 . 32883) (-4140 . 32827) (-4141 . 32489)
+ (-4142 . 32307) (-4143 . 32254) (-4144 . 32074) (-4145 . 31973)
+ (-4146 . 31533) (-4147 . 31283) (-4148 . 31255) (-4149 . 30785)
+ (-4150 . 30617) (-4151 . 30533) (-4152 . 30505) (-4153 . 30412)
+ (-4154 . 30311) (-4155 . 30025) (-4156 . 29973) (-4157 . 29817)
+ (-4158 . 29647) (-4159 . 29350) (-4160 . 29039) (-4161 . 28968)
+ (-4162 . 28913) (-4163 . 28467) (-4164 . 28290) (-4165 . 28089)
+ (-4166 . 27821) (-4167 . 27710) (-4168 . 27601) (-4169 . 27280)
+ (-4170 . 27106) (-4171 . 26965) (-4172 . 26897) (-4173 . 26760)
+ (-4174 . 26657) (-4175 . 26500) (-4176 . 26306) (-4177 . 26226)
+ (-4178 . 26160) (-4179 . 26057) (-4180 . 25859) (-4181 . 25758)
+ (-4182 . 25659) (-4183 . 25511) (-4184 . 25339) (-4185 . 25267)
+ (-4186 . 24903) (-4187 . 24688) (-4188 . 24654) (-4189 . 24501)
+ (-4190 . 23954) (-4191 . 23891) (-4192 . 23748) (-4193 . 23572)
+ (-4194 . 23512) (-4195 . 23300) (-4196 . 23248) (-4197 . 22756)
+ (-4198 . 22690) (-4199 . 22436) (-4200 . 22335) (-4201 . 21792)
+ (-4202 . 21740) (-4203 . 21654) (-4204 . 21601) (-4205 . 21474)
+ (-4206 . 21377) (-4207 . 21349) (-4208 . 21283) (-4209 . 21093)
+ (-4210 . 20419) (-4211 . 20366) (-4212 . 20222) (-4213 . 20148)
+ (-4214 . 19948) (-4215 . 19844) (-4216 . 19756) (-4217 . 19609)
+ (-4218 . 19357) (-4219 . 19090) (-4220 . 18910) (-4221 . 18803)
+ (-4222 . 18600) (-4223 . 18461) (-4224 . 18268) (-4225 . 18196)
+ (-4226 . 18035) (-4227 . 18007) (-4228 . 17723) (-4229 . 17569)
+ (-4230 . 17516) (-4231 . 17432) (-4232 . 17041) (-4233 . 16917)
+ (-4234 . 16849) (-4235 . 16360) (-4236 . 16251) (-4237 . 15772)
+ (-4238 . 15380) (-4239 . 14983) (-4240 . 14874) (-4241 . 14761)
+ (-4242 . 14689) (-4243 . 14580) (-4244 . 14353) (-4245 . 14288)
+ (-4246 . 14128) (-4247 . 13517) (-4248 . 13396) (-4249 . 13277)
+ (-4250 . 13215) (-4251 . 12862) (-4252 . 12750) (-4253 . 12647)
+ (-4254 . 12567) (-4255 . 12515) (-4256 . 12448) (-4257 . 12374)
+ (-4258 . 12072) (-4259 . 12000) (-4260 . 11910) (-4261 . 11851)
+ (-4262 . 11742) (-4263 . 11655) (-4264 . 9925) (-4265 . 9744)
+ (-4266 . 9586) (-4267 . 9443) (-4268 . 9391) (-4269 . 9298)
+ (-4270 . 9210) (-4271 . 9116) (-4272 . 8927) (-4273 . 8811)
+ (-4274 . 8779) (-4275 . 8553) (-4276 . 8403) (-4277 . 8094)
+ (-4278 . 7928) (-4279 . 7495) (-4280 . 7394) (-4281 . 7258)
+ (-4282 . 7180) (-4283 . 7108) (-4284 . 7042) (-4285 . 6914)
+ (-4286 . 6816) (-4287 . 5531) (-4288 . 5288) (-4289 . 5232)
+ (-4290 . 5072) (-4291 . 4914) (-4292 . 4789) (-4293 . 4690)
+ (-4294 . 4560) (-4295 . 4461) (-4296 . 4392) (-4297 . 4306)
+ (-4298 . 4177) (-4299 . 3964) (-4300 . 3912) (-4301 . 3857)
+ (-4302 . 3253) (-4303 . 2671) (-4304 . 2563) (-4305 . 2455)
+ (-4306 . 2237) (-4307 . 2167) (-4308 . 2138) (-4309 . 2066)
+ (-4310 . 1302) (-4311 . 1195) (-4312 . 1036) (-4313 . 827)
+ (-4314 . 726) (-4315 . 169) (-4316 . 30)) \ No newline at end of file